From 7be4d98302f023e521f21a7e6c9d23a209b33c10 Mon Sep 17 00:00:00 2001 From: droplister Date: Sun, 8 Sep 2024 23:44:16 -0400 Subject: [PATCH 001/138] Improved Asset Sorting --- counterparty-core/counterpartycore/lib/api/queries.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 0289b1ba35..4a4dd36afc 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -245,7 +245,9 @@ def select_rows( sort_order = "ASC" if sort_order.upper() not in ["ASC", "DESC"]: sort_order = "ASC" - if sort_name in SUPPORTED_SORT_FIELDS.get(table, []): + if sort_name == "asset": + order_by.append(f"COALESCE(asset_longname, asset) {sort_order.upper()}") + elif sort_name in SUPPORTED_SORT_FIELDS.get(table, []): order_by.append(f"{sort_name} {sort_order.upper()}") if len(order_by) == 0: order_by.append(f"{cursor_field} {order}") From 4e396b4e625c54235f6a08d42d60b28ee337e837 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 13:27:57 +0000 Subject: [PATCH 002/138] Spend UTXO when detaching assets --- .../counterpartycore/lib/api/api_server.py | 5 +- .../counterpartycore/lib/api/compose.py | 10 +- .../counterpartycore/lib/blocks.py | 31 ++- .../counterpartycore/lib/messages/utxo.py | 242 +++++++++++------- .../counterpartycore/lib/transaction.py | 13 +- .../transaction_helper/transaction_inputs.py | 30 ++- 6 files changed, 217 insertions(+), 114 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 3fe82003a9..d2eddc8f1a 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -321,8 +321,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/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 2a58aabcf4..256a24b8e1 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -630,8 +630,8 @@ def compose_utxo( db, source: str, destination: str, - asset: str, - quantity: int, + asset: str = None, + quantity: int = None, **construct_args, ): params = { @@ -679,23 +679,17 @@ 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, ) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 5889462d0c..2c0c3ce3cc 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -107,8 +107,22 @@ def parse_tx(db, tx): try: with db: + if len(tx["data"]) > 1: + try: + message_type_id, message = message_type.unpack(tx["data"], tx["block_index"]) + except struct.error: # Deterministically raised. + message_type_id = None + message = None + else: + message_type_id = None + message = None + if "utxos_info" in tx and tx["utxos_info"]: - utxo.move_assets(db, tx) + if not util.enabled("spend_utxo_to_detach"): + utxo.move_assets(db, tx) + elif message_type_id != utxo.ID: + # if attach or detach we move assets after parsing + utxo.move_assets(db, tx) if not tx["source"]: # utxos move only return @@ -125,16 +139,6 @@ def parse_tx(db, tx): burn.parse(db, tx, MAINNET_BURNS) return - if len(tx["data"]) > 1: - try: - message_type_id, message = message_type.unpack(tx["data"], tx["block_index"]) - except struct.error: # Deterministically raised. - message_type_id = None - message = None - else: - message_type_id = None - message = None - # Protocol change. rps_enabled = tx["block_index"] >= 308500 or config.TESTNET or config.REGTEST @@ -238,6 +242,11 @@ def parse_tx(db, tx): util.CURRENT_TX_HASH = None return False + # if attach or detach we move assets after parsing + if "utxos_info" in tx and tx["utxos_info"]: + if util.enabled("spend_utxo_to_detach") and message_type_id == utxo.ID: + utxo.move_assets(db, tx) + # NOTE: for debugging (check asset conservation after every `N` transactions). # if not tx['tx_index'] % N: # check.asset_conservation(db) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index eb012f4f7b..2c9ad36ffb 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -8,7 +8,7 @@ ID = 100 -def validate(db, source, destination, asset, quantity, block_index=None): +def validate_asset_and_quantity(asset, quantity): problems = [] if asset == config.BTC: @@ -25,6 +25,33 @@ def validate(db, source, destination, asset, quantity, block_index=None): if quantity > config.MAX_INT: problems.append("integer overflow") + return problems + + +def validate_balance(db, source, source_is_address, asset, quantity, fee): + problems = [] + # check if source has enough funds + asset_balance = ledger.get_balance(db, source, asset) + if asset == config.XCP: + # fee is always paid in XCP + if asset_balance < quantity + fee: + problems.append("insufficient funds for transfer and fee") + else: + if asset_balance < quantity: + problems.append("insufficient funds for transfer") + if source_is_address: + xcp_balance = ledger.get_balance(db, source, config.XCP) + if xcp_balance < fee: + problems.append("insufficient funds for fee") + return problems + + +def validate(db, source, destination, asset=None, quantity=None, block_index=None): + problems = [] + + if not util.enabled("spend_utxo_to_detach"): + problems += validate_asset_and_quantity(asset, quantity) + source_is_address = True destination_is_address = True # check if source is an address @@ -60,19 +87,11 @@ def validate(db, source, destination, asset, quantity, block_index=None): else: fee = 0 - # check if source has enough funds - asset_balance = ledger.get_balance(db, source, asset) - if asset == config.XCP: - # fee is always paid in XCP - if asset_balance < quantity + fee: - problems.append("insufficient funds for transfer and fee") - else: - if asset_balance < quantity: - problems.append("insufficient funds for transfer") - if source_is_address: - xcp_balance = ledger.get_balance(db, source, config.XCP) - if xcp_balance < fee: - problems.append("insufficient funds for fee") + if source_is_address and util.enabled("spend_utxo_to_detach"): + problems += validate_asset_and_quantity(config.XCP, fee) + + if source_is_address or not util.enabled("spend_utxo_to_detach"): + problems += validate_balance(db, source, source_is_address, asset, quantity, fee) return problems @@ -116,16 +135,12 @@ def compose(db, source, destination, asset, quantity): ).encode("utf-8") data += struct.pack(f">{len(data_content)}s", data_content) - source_address = source destinations = [] - # if source is a UTXO, we get the corresponding address - if util.is_utxo_format(source): # detach from utxo - source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) - elif not destination: # attach to utxo + if not util.is_utxo_format(source) and not destination: # attach to utxo # if no destination, we use the source address as the destination - destinations.append((source_address, None)) + destinations.append((source, None)) - return (source_address, destinations, data) + return (source, destinations, data) def unpack(message, return_dict=False): @@ -147,6 +162,71 @@ def unpack(message, return_dict=False): raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e +def pay_fee(db, tx, action, source, recipient): + # fee payment only for attach to utxo + if action == "attach to utxo": + fee = gas.get_transaction_fee(db, ID, tx["block_index"]) + else: + fee = 0 + if fee > 0: + # fee is always paid by the address + if action == "attach to utxo": + fee_payer = source + else: + fee_payer = recipient + # debit fee from the fee payer + ledger.debit( + db, + fee_payer, + config.XCP, + fee, + tx["tx_index"], + action=f"{action} fee", + event=tx["tx_hash"], + ) + # destroy fee + destroy_bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "block_index": tx["block_index"], + "source": tx["source"], + "asset": config.XCP, + "quantity": fee, + "tag": f"{action} fee", + "status": "valid", + } + ledger.insert_record(db, "destructions", destroy_bindings, "ASSET_DESTRUCTION") + return fee + + +def proceed_send(db, tx, action, source, recipient, asset, quantity, event, fee_paid): + # debit asset from source and credit to recipient + ledger.debit(db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"]) + ledger.credit( + db, + recipient, + asset, + quantity, + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + # we store parameters only if the transaction is valid + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": "valid", + "source": source, + "destination": recipient, + "asset": asset, + "quantity": quantity, + "fee_paid": fee_paid, + } + ledger.insert_record(db, "sends", bindings, event) + + def parse(db, tx, message): (source, destination, asset, quantity) = unpack(message) @@ -160,9 +240,14 @@ def parse(db, tx, message): # detach if source is a UTXO if util.is_utxo_format(source): - source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) - if source_address != tx["source"]: - problems.append("source does not match the UTXO source") + if util.enabled("spend_utxo_to_detach"): + utxos = tx["utxos_info"].split(" ") + if len(utxos) < 2 and source not in utxos[:-1]: + problems.append("UTXO not in the transaction inputs") + else: + source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) + if source_address != tx["source"]: + problems.append("source does not match the UTXO source") action = "detach from utxo" event = "DETACH_FROM_UTXO" # attach if source is an address @@ -176,87 +261,62 @@ def parse(db, tx, message): if problems: status = "invalid: " + "; ".join(problems) - # prepare bindings - bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), - "block_index": tx["block_index"], - "status": status, - } - if status == "valid": - # fee payment only for attach to utxo - if action == "attach to utxo": - fee = gas.get_transaction_fee(db, ID, tx["block_index"]) - else: - fee = 0 - if fee > 0: - # fee is always paid by the address - if action == "attach to utxo": - fee_payer = source - else: - fee_payer = recipient - # debit fee from the fee payer - ledger.debit( - db, - fee_payer, - config.XCP, - fee, - tx["tx_index"], - action=f"{action} fee", - event=tx["tx_hash"], - ) - # destroy fee - destroy_bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "block_index": tx["block_index"], - "source": tx["source"], - "asset": config.XCP, - "quantity": fee, - "tag": f"{action} fee", - "status": "valid", - } - ledger.insert_record(db, "destructions", destroy_bindings, "ASSET_DESTRUCTION") - # debit asset from source and credit to recipient - ledger.debit( - db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"] - ) - ledger.credit( - db, - recipient, - asset, - quantity, - tx["tx_index"], - action=action, - event=tx["tx_hash"], - ) - # we store parameters only if the transaction is valid - bindings = bindings | { - "source": source, - "destination": recipient, - "asset": asset, - "quantity": quantity, - "fee_paid": fee, - } + fee_paid = pay_fee(db, tx, action, source, recipient) + # update counter if action == "attach to utxo": gas.increment_counter(db, ID, tx["block_index"]) - ledger.insert_record(db, "sends", bindings, event) + if action == "attach to utxo" or not util.enabled("spend_utxo_to_detach"): + proceed_send(db, tx, action, source, recipient, asset, quantity, event, fee_paid) + + if action == "detach from utxo" and util.enabled("spend_utxo_to_detach"): + # we detach all the assets from the source UTXO + balances = ledger.get_utxo_balances(db, source) + for balance in balances: + if balance["quantity"] == 0: + continue + proceed_send( + db, + tx, + action, + source, + recipient, + balance["asset"], + balance["quantity"], + event, + fee_paid, + ) + else: + # store the invalid transaction + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": status, + } + ledger.insert_record(db, "sends", bindings, event) # log valid transactions if status == "valid": + log_bindings = { + "tx_hash": tx["tx_hash"], + "source": source, + "destination": recipient, + "asset": asset, + "status": status, + } if util.is_utxo_format(source): logger.info( - "Detach %(asset)s from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", - bindings, + "Detach assets from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", + log_bindings, ) else: logger.info( "Attach %(asset)s from %(source)s to utxo: %(destination)s (%(tx_hash)s) [%(status)s]", - bindings, + log_bindings, ) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 9cb9224fc0..d6ae3e9a4e 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -12,6 +12,7 @@ from counterpartycore.lib import ( arc4, # noqa: F401 # TODO: need for test: clean that up + backend, config, deserialize, exceptions, @@ -80,6 +81,8 @@ def determine_encoding( def check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs): (desired_source, desired_destination_outputs, desired_data) = tx_info + if util.is_utxo_format(desired_source): + desired_source, _ = backend.bitcoind.get_utxo_address_and_value(desired_source) desired_source = script.make_canonical(desired_source) desired_destination = ( script.make_canonical(desired_destination_outputs[0][0]) @@ -195,7 +198,14 @@ def construct( exclude_utxos_with_balances=False, ): # Extract tx_info - (source, destinations, data) = tx_info + (address_or_utxo, destinations, data) = tx_info + + force_utxo = None + if util.is_utxo_format(address_or_utxo): + source, _value = backend.bitcoind.get_utxo_address_and_value(address_or_utxo) + force_utxo = address_or_utxo + else: + source = address_or_utxo # Collect pubkeys provided_pubkeys = collect_public_keys(pubkeys) @@ -261,6 +271,7 @@ def construct( exclude_utxos, use_utxos_with_balances, exclude_utxos_with_balances, + force_utxo, ) """Finish""" diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 6d9b0cacbc..6ffe216b48 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -189,6 +189,7 @@ def construct_coin_selection( exclude_utxos, use_utxos_with_balances, exclude_utxos_with_balances, + force_utxo, ): if inputs_set: if isinstance(inputs_set, str): @@ -253,7 +254,7 @@ def construct_coin_selection( filtered_unspent = [] for utxo in unspent: str_input = f"{utxo['txid']}:{utxo['vout']}" - if len(ledger.get_utxo_balances(db, str_input)) > 0: + if len(ledger.get_utxo_balances(db, str_input)) > 0 and str_input != force_utxo: if not exclude_utxos_with_balances and inputs_set: raise exceptions.ComposeError(f"invalid UTXO: {str_input}") else: @@ -262,6 +263,31 @@ def construct_coin_selection( else: use_inputs = unspent + # forced utxo always in first position + if force_utxo is not None: + txid, vout = force_utxo.split(":") + included_pos = None + for i, v in enumerate(unspent): + if v["txid"] == txid and v["vout"] == int(vout): + included_pos = i + break + if included_pos is None: + try: + amount = backend.bitcoind.get_tx_out_amount(txid, int(vout)) + except Exception as e: + raise exceptions.ComposeError(f"invalid UTXO: {txid}:{vout}") from e + unspent.insert( + 0, + { + "txid": txid, + "vout": int(vout), + "amount": amount, + }, + ) + else: + unspent.insert(0, unspent.pop(included_pos)) + use_inputs = unspent + # dont override fee_per_kb if specified estimate_fee_per_kb = None if fee_per_kb is not None: @@ -388,6 +414,7 @@ def prepare_inputs( exclude_utxos, use_utxos_with_balances, exclude_utxos_with_balances, + force_utxo, ): btc_in = 0 final_fee = 0 @@ -438,6 +465,7 @@ def prepare_inputs( exclude_utxos, use_utxos_with_balances, exclude_utxos_with_balances, + force_utxo, ) btc_in = n_btc_in final_fee = n_final_fee From 0279fe2952c162195f8c5a1261acf5d2aa818883 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 14:40:39 +0000 Subject: [PATCH 003/138] fix pytest; fixes --- .../counterpartycore/lib/blocks.py | 7 +- .../counterpartycore/lib/messages/utxo.py | 4 +- .../counterpartycore/protocol_changes.json | 7 + .../test/fixtures/api_v2_fixtures.json | 40 +- .../test/fixtures/contract_vectors/ledger.py | 4 +- .../test/fixtures/contract_vectors/utxo.py | 11 +- .../scenarios/parseblock_unittest_fixture.sql | 1260 ++++++++--------- .../fixtures/scenarios/unittest_fixture.sql | 1258 ++++++++-------- .../counterpartycore/test/parse_block_test.py | 2 +- .../test/regtest/scenarios/scenario_7_utxo.py | 30 +- .../test/regtest/testscenarios.py | 2 +- 11 files changed, 1314 insertions(+), 1311 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 2c0c3ce3cc..c19adffee5 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -107,7 +107,7 @@ def parse_tx(db, tx): try: with db: - if len(tx["data"]) > 1: + if "data" in tx and len(tx["data"]) > 1: try: message_type_id, message = message_type.unpack(tx["data"], tx["block_index"]) except struct.error: # Deterministically raised. @@ -253,7 +253,10 @@ def parse_tx(db, tx): util.CURRENT_TX_HASH = None return True except Exception as e: - raise exceptions.ParseTransactionError(f"{e}") # noqa: B904 + import traceback + + print(traceback.format_exc()) + raise exceptions.ParseTransactionError(f"{e}") from e finally: cursor.close() util.CURRENT_TX_HASH = None diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 2c9ad36ffb..ca21ee5cc3 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -88,7 +88,9 @@ def validate(db, source, destination, asset=None, quantity=None, block_index=Non fee = 0 if source_is_address and util.enabled("spend_utxo_to_detach"): - problems += validate_asset_and_quantity(config.XCP, fee) + problems += validate_asset_and_quantity(asset, quantity) + if len(problems) > 0: + return problems if source_is_address or not util.enabled("spend_utxo_to_detach"): problems += validate_balance(db, source, source_is_address, asset, quantity, fee) diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 9ff7e587a2..f65b740147 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -644,5 +644,12 @@ "minimum_version_revision": 0, "block_index": 868300, "testnet_block_index": 3195137 + }, + "spend_utxo_to_detach": { + "minimum_version_major": 10, + "minimum_version_minor": 6, + "minimum_version_revision": 0, + "block_index": 870000, + "testnet_block_index": 3195137 } } diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 8f119c8954..28db492539 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -9,7 +9,7 @@ "difficulty": null, "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", - "messages_hash": "afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629", + "messages_hash": "f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358", "transaction_count": 0, "confirmed": true }, @@ -21,7 +21,7 @@ "difficulty": null, "ledger_hash": "059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2", "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c", - "messages_hash": "5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4", + "messages_hash": "5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63", "transaction_count": 0, "confirmed": true }, @@ -33,7 +33,7 @@ "difficulty": null, "ledger_hash": "f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5", "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f", - "messages_hash": "b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150", + "messages_hash": "270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5", "transaction_count": 0, "confirmed": true }, @@ -45,7 +45,7 @@ "difficulty": null, "ledger_hash": "43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8", "txlist_hash": "1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084", - "messages_hash": "a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f", + "messages_hash": "03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43", "transaction_count": 0, "confirmed": true }, @@ -57,7 +57,7 @@ "difficulty": null, "ledger_hash": "66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7", "txlist_hash": "d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94", - "messages_hash": "f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea", + "messages_hash": "e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40", "transaction_count": 0, "confirmed": true }, @@ -69,7 +69,7 @@ "difficulty": null, "ledger_hash": "aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc", "txlist_hash": "9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58", - "messages_hash": "6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f", + "messages_hash": "d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297", "transaction_count": 0, "confirmed": true }, @@ -81,7 +81,7 @@ "difficulty": null, "ledger_hash": "ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55", "txlist_hash": "663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708", - "messages_hash": "b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3", + "messages_hash": "ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578", "transaction_count": 0, "confirmed": true }, @@ -93,7 +93,7 @@ "difficulty": null, "ledger_hash": "75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383", "txlist_hash": "deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973", - "messages_hash": "ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366", + "messages_hash": "6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4", "transaction_count": 0, "confirmed": true }, @@ -105,7 +105,7 @@ "difficulty": null, "ledger_hash": "d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80", "txlist_hash": "9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3", - "messages_hash": "cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d", + "messages_hash": "fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc", "transaction_count": 0, "confirmed": true }, @@ -117,7 +117,7 @@ "difficulty": null, "ledger_hash": "582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1", "txlist_hash": "52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1", - "messages_hash": "44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0", + "messages_hash": "a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343", "transaction_count": 0, "confirmed": true } @@ -134,7 +134,7 @@ "difficulty": null, "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", - "messages_hash": "afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629", + "messages_hash": "f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358", "transaction_count": 0, "confirmed": true } @@ -6229,7 +6229,7 @@ "params": { "block_index": 310703, "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", - "messages_hash": "afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629", + "messages_hash": "f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358", "transaction_count": 0, "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", "block_time": 310703000 @@ -6260,7 +6260,7 @@ "params": { "block_index": 310702, "ledger_hash": "059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2", - "messages_hash": "5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4", + "messages_hash": "5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63", "transaction_count": 0, "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c", "block_time": 310702000 @@ -6291,7 +6291,7 @@ "params": { "block_index": 310701, "ledger_hash": "f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5", - "messages_hash": "b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150", + "messages_hash": "270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5", "transaction_count": 0, "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f", "block_time": 310701000 @@ -14475,18 +14475,6 @@ "type": "str", "description": "The address to detach the assets to (e.g. $ADDRESS_1)" }, - { - "name": "asset", - "required": true, - "type": "str", - "description": "The asset or subasset to detach (e.g. XCP)" - }, - { - "name": "quantity", - "required": true, - "type": "int", - "description": "The quantity of the asset to detach (in satoshis, hence integer) (e.g. 1000)" - }, { "name": "encoding", "type": "str", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py index 2f9af7a636..31a711eeb6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py @@ -59,11 +59,11 @@ "block_index": 310703, "command": "parse", "category": "blocks", - "bindings": '{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}', + "bindings": '{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}', "timestamp": 0, "event": "BLOCK_PARSED", "tx_hash": None, - "event_hash": "fedce5d97e17f27770b0093b4c37deaa145b777afe9ffb057cc2d02664686ee6", + "event_hash": "9ea84cde1c958baeda4bb00845dd86f37f9526d118ec201e8e3503e28e36839a", }, } ], diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py index 0ac51c987e..fc774e62c4 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py @@ -29,7 +29,6 @@ "in": (UTXO_1, UTXO_1, "XCP", 100), "out": [ "If source is a UTXO, destination must be an address", - "insufficient funds for transfer and fee", ], }, { @@ -47,7 +46,7 @@ "BTC", 100, ), - "out": ["cannot send bitcoins", "insufficient funds for transfer"], + "out": ["cannot send bitcoins"], }, { "in": ( @@ -56,7 +55,7 @@ "XCP", config.MAX_INT + 1, ), - "out": ["integer overflow", "insufficient funds for transfer and fee"], + "out": ["integer overflow"], }, { "in": ( @@ -97,7 +96,7 @@ 100, ), "out": ( - ADDR[0], + UTXO_2, [], b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", ), @@ -144,6 +143,7 @@ "destination": ADDR[0], "block_time": 310501000, "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "", }, ), "records": [ @@ -224,6 +224,7 @@ "destination": ADDR[0], "block_time": 310501000, "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", }, ), "records": [ @@ -272,7 +273,7 @@ "block_index": DP["default_block_index"], "command": "insert", "category": "sends", - "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":0,"quantity":100,"source":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":1,"quantity":100,"source":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', "event": "DETACH_FROM_UTXO", }, }, diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 20a4e3e202..747ed3c5df 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358',NULL,NULL,0); INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) @@ -2631,439 +2631,439 @@ INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45 INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'5fe355dbe799ec8db520c97841a29075d0f611d03a8c1194ba28ca1fc1b3c0f8'); INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','4c9c59be5128e3f4924d4576485ccbff9bb8e725df4d5c5099519c04d1ed71ca'); INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6513212f3c6f39e30f9a146dc496586a117f53fda9551d1c1c369d45c538cecc'); -INSERT INTO messages VALUES(1307,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2e8715bf8c4cc2b2cc62bc042e95ba2e24d6282afd2928802572fec4621f7d7'); -INSERT INTO messages VALUES(1308,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','eaf1d0a762c50322172871ce30579d08a76b3b0269ac903031270af744c26283'); -INSERT INTO messages VALUES(1309,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','2601c615484c624fddb00df8f33f78745710a5cc2d5ae962d08461445ac815c3'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','df9fcee2826e03af7192f4c6ee6de1b1706705c8068e1d4aea2ada95da5a82b2'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','3a7568756c9765dd1c6c36e9a29fd251df74b3db8246aadfc5b482ad822cff50'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'a2b6385b04cf39977dd789726f93996f2cc7792f0a8c7bd9b86ec56a45717717'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bcd5d65956b137fcd9c188b67034e44e09d49fbe34e785a23e0c307efa2026e'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'164c7df55299533aeeb396a7dcd6aebf1126a3b1dadf9995f9ad0644bf76d778'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','4855b3e0c820fb13abaec2dea1866fb2012165f33d784ada485328ba94211e64'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','d214f11427dc6cebe849df235acaea007ea86a1a3b070b8c3fafa1043a24b5d4'); -INSERT INTO messages VALUES(1317,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','58b4e25d6870d957925452376f02d78da275b68ac72577540eb63f3c8c55df13'); -INSERT INTO messages VALUES(1318,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','c5de6f4bbd1ef3e48d076ed72808968ade8fa609aeb0a47f412b0ab581b89ab2'); -INSERT INTO messages VALUES(1319,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','fee54e2c82f5c1d99c78ffb436e80c6067ae33d485718940d47c720d5f821d61'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','003b318ad6f3fb817b98be5c2c1c25dcee4bb0e1fdcb13dede9ba654a37141e3'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','5645ad674eabbf0f478524c856fed40616ff6f906e14522b75a1194a89a9e284'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'e7ccac37e572914bae84b772d9f1316423def15c058342ecbe8d4edf7cb1e612'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d93604ed0bd0f7710efb4f172ed7b28bd6c6add36597ac87b4709ddcdcae562a'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'31bbedddfb6bf6dc22cd7bc5b6b1586770b6d4bda24b9de4f0aa5c59abdd6a73'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ff4e04a1d9bbd84efca3252f89a31a1ef4b3072400139ef5540194e4052530d6'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','595339925744a1e36f2a1e762ccce73fca459a39183ccf73d2e3d5b54b5a720f'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a699663ff764af1f83b737bf5ad9caf891fb20b4b78cc075c34021e06e599711'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','97f2ea0b721a66bd252db6223a1508035cafeb2387389f9c59cfc84d7a7ed59f'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e8a3b2ef33d5862a923bfc27c5c6c754469b5ad49a3ca7514111a2eb524c5f61'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'bc296161dbe1f64834a4fc15dfeb29f34f50a1619fc9cd9078432ad0b02d442e'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff6bff671f11cfa1e9d08270dae356829bdf3b4a7b5a7490fc40e0dd908253b4'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a5951b94da45d2ab5954de6363315469a6d262a5670eed7f61b461908931270b'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','4f1c26ea4adfc7a5d036065e24a911d06ba95de8d9d83945b1e316c415ad72f6'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1455e883f0f5b991877872fba68ce5dd0848c912c67d3bae072fd39bf7290757'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9758d99b74e9a498d4be51effdf643a800fcb6c79b18b1fae731ce6c222d0e8'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'1bc4b92c40616d724de6cf9f544acfdf37c5cc1884cce09c448c3c69725a9844'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e625d315bac56f9d85844bcb9b5999ed081fadb5ce6c3ca5de17b3acf3942f3f'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'1529197882c6cee43d99310f3897b7495d8fb557ee8f9d6b31e401b7e27a1670'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddaf3adb7368bfbd0842c7ec3d1ffbc536c9dfcaf28b92047b9e13cd26cdea55'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'20e53542d8726035fe98a906c6d5a1c005c72f762bf31bdbdaea16dd949c6522'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4f9757ee1e943f3c5b577d47819a4f0e5c95137b2cac3c64ddc0cc6aca718e3'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'5bd380cacbf0b9e38db7dcaad2ac14261d8491a7c7da7d259ddee5654b461367'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'68bb7f9c4d20724eff4e75f74f41b77e599c68694f5c62ed4d70a68af9d4d93f'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'6f354be6ea3f752fada2ce0cfa036374193b72daaba137dbb67cd1e9d4576aa7'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'415b7fe80da5ccae4b8aac18c88d46e358f22cb3aabf6ba0576389d2aa66a807'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'5e3c5ed9e4e7611d097d478d3ac3cb5f3fdf01464a556e6f0c57b762054e8cc4'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66a436e0f332a8e7412a12af1468faae8a11022eaf9b048344f4474164557dc2'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'c56359a4b4396cf50ff124d6017fc0a2c18837d89adc096ee52dd8bf5ab11e47'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4001dd0628287bd209a1a258a278ec517f3baefc9d13f60bdb81534c85f3ef4e'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'c7669bbdf72cb23fab8b2e54969c4974ac8793b06a35a6baef64794c0b77bc4f'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947461d1a1098e144ce284860ade500a346032901cfcb061a70b55fdc69a6c85'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'171afa1146909cf9518f7d43052a51ae59534afbf3d732c06ebdc219540b4601'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa3b754d9d44124c4ad6ccbcfb89b65644cb9d63a7570de4548c245d3109eeed'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'b7d33b7ffea5b23e8dcf599baadc840c39fb706162c62223728189037327ed06'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386e7fd3b4bd4582dbafaea6cce970da8f83ccd8acdf5958d3383c38945fae17'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'98eacd907de1f462ec2294bcb5e8c8cf9a3aa7b3cae7fe53e98d4ae6e57d4d41'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b02b81b1831217317c6c83ba2707fb2dda0dca0b76d5ced5d9f4ee3a822b72'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'197fd9b45a0f86aafe80fec3e27fad316f69227fc42f5ae5a332275b092a3b63'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cace5c772c3a54e04c9d7ce8c07e76f881cd9faf3218c4ace531393b64afe5b'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'178ed3d8fba9b9cdf66f1014102e827f91d7b485181ce14ae47bc967b57eb7a9'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'efead171a53302d4208eaad19cd2b85e274ab6fbc0bb1e80fe1f26552cead4f6'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'67494ea21e679181ec7c27dede3ad0aad431073be62070b660bd99a42f3e7baa'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8b3d615ea7d3f1524aa4298404a06958c5ec96b593272077ff1c9a9060123719'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dde9e5229c84d263a108fc017f6543e9a2ef140de375986d610ce89468e908f'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a88fa915990ec3da3ea63df7068c9ef80fc4fc9abcac1cb53985527a862254b7'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'421aa14bdbc545cb71cd6de256dc4304a73195ef56ae5354eb6c8811d165e419'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4b6fafbb329231577f8042cf90ec953d7f07be40b215fcc0c489f632d5fbd5d2'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'42dfc5d21af17c4f23493ecc049c08a79831900cc3eb99e02bb8ff605e8c84be'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'a6b6a328219f5db213f3b38622fb198501c727b2362809d7ff9d645bc0be7f95'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d7513ccc6daa39401ba798f2bb000d160a2a9ab722a928ff16804972f6956d5'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'44296a650e83b9dfde852bd556f8100df3db3f2132bc0d0654e9feda0eff6ebc'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460260cf32220964efbd180348094e83c256e691c003702f2ac89df02bd05692'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'fbbdab7d892fad19e5542d1c5c97e1eb0bcb4a0cfc3942a9790e0440976120c0'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04c8e815e7b401c5be2c0526ad245b8da6617406033b6eef653bef5db619fb5'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'a166be05877341cd4b1a17f0e931f7e4e2bff819f51df803bb7fb3125565a83b'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d2bc745ffb6fc719b172d52cc58b64f2e4bd92e97e78acec222b731c9fdf855'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'d97663974dd1eb228f6b2414222b00b3acd85ede4e27121d0ba7525ba418eeac'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6e8a168952d7ee899dce75aeacefe21c14267044f0d04a39c87431f8996cddd'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'6052a562c93c943090b280c5c7dd2ab0756dc458918c122021a998124c7d9795'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5333a39b266e3663387c8f5d75a400ae40e6fd7aee3798f6ace3c7bd88aa3321'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'58909f770d50dbe365b1950748d7d3735b21b1923adea5163952b190f76394a4'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c219e51e272f104c32adf91ada0883599039c98f762a1c445d17d191471ebf6'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'999a883eaa71420cfdc958e95792a8a5b3d1362c54d623a103ace25f23e37b4a'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50363049ad1cd8a00ecf9e040164bc0fa19a480fbeb01956a5db159a9cb60966'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'68a35a74e1ae82fa8ba63f25b8792df0cc03294a93197761c978b49a61d6a41f'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c6334b0adb6811790818da49b49b8de4bb1b2fb90e9ffac73db2a6e8b160286'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'1293a66bb99ca96cdaf7d9b325011110860e41af5169a917ec2500d595f1df0f'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8ba68cab63d9c150a278c81448947c03dc52bf20ac912feacb79537ccb0cd33'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'6baa76ffc962a3d995c6519b7b11268f4e13b17ecc1d149d668cd3e4e7c2b6e0'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e73f843c3c9e23dde2f7e84086e07bbbec6edee5d8980cffe462a230fbf1640'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'45ba3b88c4c05fe02f693612eaafe404acbf7c3949866cf17da8e3940da73526'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95dd6aa199f429368a7aa3039606a00ea812ae24076c97d15a5de4270ba6614c'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'4c6a24b7d833853bff2d4ae825cf8db28085172ca4673e533663dd93b9c36725'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d9f5517cd4e6a02239ccbb8ecf2a4a3e44c9455bacedcb6b8c065834a339d49'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'1aedb07231b579180aee797b4b83c383445bd7ab02ac0619c3e945fc38aa5290'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83af295c62e68fba70083078e5d3f301a441d6aa99b613bd85cb8cac4e3fd4a2'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'fab093bad528eda03d2ef9bab85e02148af6a3d24a800b398d59be1dacb92273'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d564f3e67764690bccea40ba8e231b1e56b6410a67717c2456f6966a97425d09'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'9b48ae19957ae55e59e08901d714df39e4e1a02a7782c442aa67e8861c81556f'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39e455df5d7605c0cddf480edd79fc37c1ed4ea658a0907e83d5056e8ae1e4e'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'878e2b94eef585388b239a8bd68cbb7e756cc65ea458b372c5e2cd4c936be266'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86ea359f58c49992401e5afa61f828a172e93c3fbcfb02c9ad7769e782a584ee'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'318ff9cb17d162caa3a2bb363a3e1a4f0bda48dce81d89867933a00f8d19e994'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'457e1c10f7348df0a5677177d6ec16b6be773a5993822b435623a61c5843dea9'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'307a3d8b5fbed7fcceffd2033f58c8f4487ffdf5e04a004db4182343a6fab054'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e2cd4e914a449ee33b0a43e27490898a17d0ee1c31c67bb8edd4b6537fbc29b'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'2c533d0a50124e2f464b778fb10f46f2f91598d47d21d61b76e37e2c39f142db'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceb271d0492f204a12fd456023f5ed50ea8b68280e01005bbb218e23fa1ba9bb'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'ca2ac1164bfb00f6449c6f016d3dbe64cda89061ac27b6de7255e47f18776824'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573f8f1a17db184e1e2a01b1b516261d106f477a9bac850e4c33cffd492cd5c3'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'62b27be73fa05b519205e268cd3346b1b5f1d8ee334a642ba6d2f723bf6d14bf'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e112f80d68823df1c1199850f93595d53c2db20eef9e7a71de08a4e2cdf46593'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'e36af530e41af8da36000473689e2e06ea8e7be42360337d9d85c96f9d29e9eb'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e124b0852295b570d18011e60476981d6057aaba3816db454f29e0b046969b'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'7f17d86fe650c191694d2c41d71eb9697c2f615f0c9607cb61a738c96fec540b'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e82a123bfe849f027da2c17aa3b097597c4185cd21545f6488d114eb1f862b60'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'adef9c6a655eac8a735208f52609c8230976e9e42dcb817ba26f6e6d2c69e999'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'600bc063a6770631cafbfdc78b8a3e34e270f122f713016a40c1986ce4a3d823'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'942438eefb02a5cad1d5be739a85d6911f21e5bdbdcb4afa45ac22d06b7e524f'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e868524ec246a4d1b6d77bbd1be3d5269f3c6558d5b5e78574e12229ea00c1a3'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'6d8078736714939f880184c99e23d6ad8f7dd512f9ae7624aa302019b23cb392'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33f698d55c776440f75b494b394265cf4b011fde3cfbeb9190262548923cd36'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'10c2f847ead991f5369af03dba541cac5500a310062fbbc69e934d2728b4a9d4'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f59284a7b33e34959b23156277b4878fdc44de1143a5389251f3219f8dc32a35'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'647723c6bd98961bfd647e66bc1f630539da4b3b4b2416735077aa69edb51a12'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35a27aecbffa8dbed4892bf585a2945c046c90c6a0c6b99673b27cb12e2c3fc8'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'a462851f42ff4906922dce3d091eedf35723c4f77d45bff8c06a541b1229c53f'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdd5bdc48d3fdd4d31c609550c1164165e003f82e6207943af58f4fc5320aca1'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'d54b913c044160a4cd7ae4e2b256f4572a10ba2c16df671208216b7526387c0f'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e67967008befd4ab4596bbec1364ade01de0809b0f511723aedb23c22fedc6'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'a744ec7001e8d86cc3bbca9ab0beb6a12759387683aca8c05393825f76f9b0b2'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b55083488d2a7238266fea82cce8caec75b0418be66892681ffb0d13cfaf2ea'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'889ca209f44be5d96f741398a9b3cdd3993463ef5629b5d85e1e42de1e3aa096'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e35708cf19ce02b8758ef191e0129a6aefa6d07ca5b3f47b34a7ebafd543aadf'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'f437595f4d4cef21835666c52da1a80d7b6324ee52a3816d2c99ddf4632a4fb9'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de9afc52dcab4151f9c9f448a2394dd69861bb190807bd6dc87c073a73403f71'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'3c2b938737c9d6e08efdca0eb90079e7079e41cefe101467af1b5a035dc011a6'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13bf66816135055b06ed64611b89ccaf23a059685343a2bd6f9d8b961f0850c3'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'4551e20d9ff9778ab00c58a97579f0da1893406c64fb37e428a723e03cb9323a'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a488b6e7e3856d9bb43a4a8d238ed258fb3b0f1ddeb1ed3a87f9f25b24841825'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'c0b7bd08cea89a1b491ba675fd5855eacfc45f516e62b4c4ed6dcfbdaa0351b3'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c06bb6c0877e700c0050b39ce4d3645da8d6e161154fdd80420c1d2497232971'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'eeaf4beb264075470906f2c631ab6ba1b593a556670fabd814e7cb9bb4e21a1e'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f53f3158851aee38de16aa2a76b0eef5982e5993706c1ce1bcb860d9e992cd4d'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'797379ee9c14b9ccd872a5984928b1f59f419df1e0f3e15453bb56eeb1e65c3f'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea42a06b498de965b8f88f47cbd34e6c3bc1d7a35cc146d00781c0b0d56d26e6'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'b6da6af5df6785facdf7f3f26ea53770d16004ddf3c20fb2d960fcf62f5f1243'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'204990311c6f830955b666b92f02d29b2f88e24d648a22febb7e42930fcfc8fe'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'8e5df9ab64fcdae5b0fa00be0d4d355e5b0a19e00710c99678475543ceaa8f4b'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b8f394c91c4ed87649d6df685d0e3e60572636641f6aad1fb1d45dc358f98c'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'af0ee91a9707b59f72d6108e32fec1dd7680f8652911dca605c05987274c0d81'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92d4aba3caa43cf7bbf80c47dbe5743114e557fc50bb44fda78f29f9680831d4'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'ce1d24eb4722ec16bb6a50a58b36e0981d160858d83f91e47435d836e5b3dea2'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06a6604b251326090b9e725a55438cfcc2969f936c5c436b3c5ab3253c161c1e'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'62c37533f1cceea74cfe318373a194e84556c59f4dbf7557b686953bd276b3f9'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44fa2c2124b569e367b1ac8e89facd865869649103cea11c88f31aac54ea707f'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'29a788e782c9a7b3ca7e296f2654516e318c5fffe6868b81488380a39b16aa5c'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6a14780e075ff3ef444bd0cd4169241dfab93992fd3f1c633a5c1e4719d006c'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ad5eb4e4633ca96b2c5e3e7fbebf99f3871944d00957604f499e20c2449390e3'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83201abca19ae547683f8c8d8ead2cc7dd807efe78c81c29db5632a1d778903b'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'87d0f877c6321fbd4c2cd3a7b186a9a4143f6b665435499f3ffbc4f17cdcb0e1'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a343c2fa4c4aec117b381bdabc89d7a5a83e7c44204735bccd593cb53f064ec4'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'12b9494d8301ed830927553c2187bd9576774e83e1c11ad314b43816e9332385'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42a947034042df892bae46cf87785d6a05102c1c4c7ea90343e9c79dc17630e'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'84a42a87dd26a9c61cb57e5db757b07d431f2119d87f4fea658223f7d70e94a2'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40373084505c3bfeed5baf143df0854fd2479bb7e6b3ff78ca683b855ce23a2d'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'14c370b4ebb65d34eb8577b6cfdb4f29a53bdb5a6405544fdff6bb4b6d413eeb'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a365e90bd011bf44e17981808dc60092a03fcde583acb666d52061d20fb2d08b'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'f4397f970994f8c314dc6ba089fc8843333b6bae03dcb931283c81e55a0d7317'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15a690f86408afcafed8f8f61c4b99638e989aba51e785ffdbd80960fd82412'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'2276d35544c4bc0ba71994ca9fcc3e5dbefe66e35e53f542983860c66b44a35f'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f296aea4458ccb68b2b6d3ace936e9e746538bc3d00d34da49831b4facbf9f94'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'ad4fd0764c911819a05c41c0726baca5a27583868c4e9eaea9a4320832badfbf'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e8f305cd02a67ef3e42daf7536fea83400b5b2390ba86bace84fa435620a854'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'c986426435020150355b2c688e31a46933695f202da5ae558895be5c1f7e594f'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45692b86d50c5dfc0f15a42506a8385785e71a25db6f1a0ebb74cf3b107f4318'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'7a34a84046d890651843a8d1f68b0e9365de995c04edb65119de817065317a15'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bb5dc1e7bdb7ce66d71ff0fc80bacf5e9e9fb8c65770dd9e09f4d8d4b4db781'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'dd0af465db62462637b601c8cbb708d3d33f7a64be0a45873ae12e53cbdf460a'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12645ba3aafd49e5e791ba1a73e62b11888269c61c04ff61cb0fcdfd51c1d7e3'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'a2df3709affbebe220cdeae4689cfc785b4c5f01bca162da083b2d5f6f32bc24'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9051e63be76807537a0e63c034d81ae13badc03ebe824e7c340a1edf4eea100a'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'6f0a4f0c23b80ffa02a597e971b34566f626a470488ae5095b39cfc13eb5aa38'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c876bf3a97c56cb147be26f81e031b5ce3131081c2adab8de2d63ebd878cb40f'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'ffa97cec7e666b6d03f9d5bca205ad59908bf8d591c54ef0df876cc187f44dc8'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3bdacac1c332d8116b2f027dfe09f8b3beb4f043a19a928475bad69360daa'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'aa1b23e7dd2d9bf045d066add03a6578c94236598e90d085398a710e59270f2a'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f565d71513a4d6b0b79304d415d372b1564377d4d3be31409fe2df47ea9e1eba'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'1a001ac91c5c69d0d3773e9495512adc0d88d68240726129fee328ffdca964db'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c3f66c68660dcc968eae9dcd6421a77e6a7cfe69b7953c328504af55dfcc57c'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'60ac9c4208634ee32a86fa1f5bde0fc88115bc137d23bf3ea52def841bcbf399'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145bb5e6c7131237b090cf1e9d14fb2850b95814a7a80b437cfe8b9e3a95481f'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'18cfa8e4c19ff21f6a7a36996869fb8d3a121c58e7da3f63ec1d84c9373366ce'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad023bbf7c2cf45988a9134954b4a08e482d970f03bef160336808ba29fc78e9'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'d011f2fc21bc0ca9e843ed2294c21e102c73b569d006731ed6742a4aa1df8276'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aba8811fb3e87b7d818db5d9c82b3b5e11ad9c0f7db7d0977560b883c1625cd'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'023ac2c14c859722b5755b9d5488cce68eb500d2d1305f6fdf401a474e0fd90c'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cedd62f88bf15ed1ee57ebf84d5f77c3160f3c7c208582393a352b078bf9ca7'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'fe581083f8c833bddceabb65d92706da4987e404f960690ee34bf123c13418fb'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e359b4e6daf25511632be6849c900092dfbb1587a59566a6121c014f21285abc'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'2b5068cccbf894d2656d1c570162d11b9772619cf4f6a46c7d2b8ff295d64354'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1a656acb96ade2e91fc09d981f994916a956cbf7d9522fe3ac4b428b7effb96'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'d1036abdc5bbb8eead5b0456d4a0ca1cc74c8e7dc860dea4aa6c3268b59b2cb3'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8380022e9edbb2a3f3b33cc616a668d7afd6ba116c5d33a0c2662ae51a62713'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'35f0b9696be44c3f306fd87efd0102f9d7216e0a9b61f6d9e09d8f3f328c4101'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b6f46609e9c50e2a6c95c893f30810aba0ee1a5c5b6bdf615c0577667f952d8c'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'ef0d52247b39e6020b00f560f41d96a9ff0c25b440ac74d89bfbaa2572514470'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'a5923cd7766c1ee8cea0a8f4027ad881042ecd1528d603ab128b6200375bd509'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5285e2aaaada6e30919a9209e2d31a4fa48c86f824ac6485c90466b3bace4354'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'801ae54466eb54871bf3e93eaa1226138141becdce8a62eb4105f84499ddf406'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78472d4d486ed1c09d8811f86d8b90b8950e2282be768a5f61c07a6613fb54ce'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'d551c392a609b467d5311d95831546af20f5358a9f05d4a14b5a8e532b6771c4'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03f6cea83b49d534401d97f9c8c1633ff4110325fafcdbca6ccd41b6cfa9c6b6'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ca60ee15e1076eb64aadf99317f0d4a7e4ab955e78933da73651014ab6145dfe'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6abb9db3c96a10650ba4bb86f97ff42250fda1fec7031ba436c9dc311ca1a70'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'909ad9da9ee317fa1ede3877cec185ef56158738c0d02d060d812e66df1f33cd'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'704be20e23e38b20cb612176cbb0b7519fadb99ed348a3ce3b3405388b039678'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'feaaa30f4cb2526796a0d8422144c1b0ecf37a70b2443ea45d403ec74af6cbd6'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'027c84507b48637eaead8fb127509a7904ce3721f82cc3ea5d1aaa33d9427642'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'d19495326381811c85137ec123e110d5f5fa1ddde81ca6aebbd9d2a8d1da48a7'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f0f2013e12d2bc3690a0f65247b8c0645b604f09e64032ea130da1fa52dd0ba'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'2e7d5ffe756bdf073bc2c47e3850832681eeef7388b66832817436c739dcd742'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00789ef95cc349d5d9b30c88308be9fd7df97637c8398cd8735b689f460ea3b7'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'82819083bfd7e80818e422bf0d933ecedf2267d16cabbed59c238f63dad07c1f'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f21831fe0165013284f8de70e4f4fa257e6a8213af19321ed5844c99b7fbe39'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'559084bcf036807fb153331776c84fdea9e4151e8f80ddb659bd5ba20cc58f4b'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'febeb2e845b963a9d894a6ce2d6390abe8331ee55b6ba3bad83508f04f7cd620'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'d57058cdabe4f2b4293fcd03ce238a9a73c4ae6135bfad1f5605650161ccb640'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cb88624b94fad8dbc12ebe52f4af5b2d8fbdb53ea52c5b1852634425414cd1a'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'63de3682cbf600fcf8f71ed24b3729c6ceccdc769a3057d1c6b41ef139e0155c'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86b61256af3179bc85cb21e4cfeaf8ee9baefb604ae0461172aa0b4392b33749'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'cf55bd1532f3a0cf83153f4007068bcd3dc49cc9ac52eebafaf88596896443ac'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fb3f91200410053f1b6ce8877aa1271b2b1295a99019dd6979162856003963a'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'5f17b9733222f6a506f0e0b90d462425797645b18e63f54ed649a2fbfca146c4'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3c1336baaddee92afae07f006f41b1b4e2772ab99d97f843953abb37bbb6103'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'cbe7be68fb25d055ba83b78779db4c9397db5544d5194055f54cef81f8b34818'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49ae1080db94b9e5a287194942d95866d8c0b685af7a6ab3991c54dbe3093214'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'dd0bbed6fe1753889ef9c81dd3f6427434d8595f741e0eea789a3ceaa3deff16'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a997ad1980da7d674743c6bca6d497e6a5354d89b1b2a908927f1e0b715b2e48'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'c43d1ce44f4fa116596544dff8b935e1531da7891292b2c2b27924780296c90c'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6edbaf8cd97d48bea1c1e0be52680239bcbddd3843359790e9db54d73614542'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'7844595b57da168b9b2a41fe4ea5559d52ee416a8323e91a83a42280aa1f52d6'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf9921538a04fbbe1b8f6b5137ba42ed40f8d821cdee10f2af335b4d424c4ccb'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'5e765dfeaa8fbd4228ababded999d3ca9dfed1f52e6c900babdcf88dd7f217d4'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22bf8198fe2f31bd70881e346333dd4fb9ee642af8b94c9ad0029ace8eadc842'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'8cda5056ea9543c3afceae03fbd63b296a87bc6178f1bdb5518b89e6a800c048'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99b897a39e9b627ff885ac710ae41468bfcfe6ab05f02d2609393c25130f7c71'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'6b48f574ed8a5022163f379fa455b40d8f9da552d514cbf324af40f85fa9ed51'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfcdcc30d21950919baf2dd3959ef455706c388c46212dd2fc6dab9c2272a815'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'f98d20d9b43d54de282ca42d6cf47c6f742451825c355d4eb883357c0b23c620'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84778346e41afb1d6b479375e0960225a2b0b6beacd8e5a8a90d7998b04053c2'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'3e1386adfc6baf4942a0a0d9d72846d2992aad2646b99598dff1e93852af475d'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dedea01aa4e2b00624574f803ea3db965f1b3b31fc13e1570765ca360f9d33a'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'1318826db86121311fac27c11a1233b440b11ca604429f031fadd11c1e8d94b1'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c78a07736d85c2323333f4507ff1e37ba6bea2096466ada9a6e66737fc7c2c58'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'d8ad0d725cf6276016d641ed33e639d3d1c0d438ec23360373df83a3240ba617'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8010c0fb1584edfcc35adc8632c22805092dcbcb851702a59bfaf631d61792b3'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'a3416bf61ee38aaa029a1af3d0740bdd5e7853b6128910e21b726d9c86a18279'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9be71fba4807eb57edc3818277e994cae8157e8eec52275f6e6e0e5d0cd2a28'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'e06636ff3b8ca7e6bc183b4b351bfc8a79cdce1faf70bd53c4578989bd01c8ff'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef7ddfe2a6654256eb70060d9562896075529e14c667899576e92ee663b2d0c9'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'9899809feb32ec47d94d5458cc5eb62aa4b2f145f7444950d57501d61e5eb691'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dd1d8938a6e2f61dd3e4bc44885fd62ebaf9f3bfc7287e4f6b7b112261f7713'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'9285a75df13deea8e4cb1dedaa0421ffe1cbdb95e5bc73320800c7b88b022951'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08deb1a383453b52199dd2cf2084238d0eeba9d95ed1c56d3c34420f13bf03ac'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'42651147d49b80d9fc49663e6713980de90ff0dcc7de5c66250c8ae6a1a02525'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b852704eda5d40a25274f066f3f8246140794fee65b86d497f4120f10ae27ed0'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'f250aee77e43d5cf774945ba11b999b92423aa5b31f0d12d47ba2df2fe9b27bd'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9a8a4da01690cc498da88d68b9e7b567c32eff8f17819c835e26cbd373f9ce3'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'be96efe94bd27bd8a972ac2bf84ff30cfa61104e49c660cd79a996e9c259099a'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'758edc6b802501bf099e3b0b482cabc1255fbef9033fceaf1058cdeeba543342'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'aec8472eb14b5c193e16db2c13c550e59a47f0ea0bb22221be461c2292a92952'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3cc9a88aa9a2f6ec64b9c4e5d9eab1f4459b8e0242d1c27645c2c2dfb0ff806'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'b16ac908524cdd198ba8cffba13311e405ac2b5642d99918f4d8d964f098893f'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ec5096f59cdbd777466b99f027a694c71f76b866d262034610f2bb3783cee27'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'0bb12183be96eef52e7b1c9648cf9d72b16b49b663a8e71a155049a6bd2cc10f'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dc214c1d678394c2d9cf53c8b7b64e650245eb6b071b37ff5bddee365918b23'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'d8b514e206aaa05a6bdeed691719817a73e21b4a27071322fb1b5bca7ee2c738'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa6e34851c6eff6109f83ed198b042483a08c93329c96e46546c0bc24a714e3b'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'2a4f251a95e638ad6b4f12531577f90a30ca6603ff9f02e1f99374f52f18b306'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ccd688ad2dcdf1331a536374b004bb957217047ee8fa0e188e2a29781eb388d'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'600c84cb36e14a7f20e2f449313255ed35e2ed7e2a7e1df0740e937ae83318d9'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b7a67b2434ca05375e2b0a63eab52fa9f6d0099d28a419c4654daf4ab8fe59'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'3abb4b8b1a1b0d558d1047f99c115b28c8309a56e18f9016e9db1685f06aea8b'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'473ecd7d7d48556a7b9f98eebc98f1edddc2feefe2e2f64aeba45fe85be95e5f'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'8b6f679b5e798b6a96f952ed5df17d7e6f11649e77d4af9f05d9f49ce51fdb13'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca5c388317f78f1c4e0ae76a816a5309892d0d14ea36664aa5caab48a37cca6'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'f9bae0d36b8952496787b7f3255e0dd854df854048bfd5667fd81fef2ef768b4'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cc19a4ea5dd4889b8c29c37f597f4abff7424b0ef65fa6475a6a6ac0890882b'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'7107a772c5ed00a55ac1f2d945b35624f941266be2d7a763823154273f1e4e48'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ca0a1d983669c2151c43d38faec6ba1aa7d9c6e012f5c9d90917cc3c244978'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'a1d2d7fdc2d331880c2848dbf7f178b7bf881ec23c6acd0f22218d802ae92ced'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c143b5247124971dff1eee7fe8127017df448f3bf4477a0b5863d54b7bc67ff6'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'1f6f53d4d828aa062eac1a35a67b9ad5ae92afd069cc813ea6834bbd0b526b00'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb8987b4f808accb2b71ad92198da5dae256f9aef7ebad3736cd2f7ff581271f'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'8880377fc08bbfff5869666e891d407b3e2aeffc74a0f083644054f8dc060d5c'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc9cb13827545f4f6fb03e70c7655bd86ff6a281f537c6089ae750d63d4d769d'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'557af1d24afbc2017583176185a44190f45d7f95fb3d8b0e6f10e0e26223c997'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a64930adfea6fa2f8aa0b99eee381e2ce3c2d606cfadaa9bcff7aa7ea10e601'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'95b9e21d9a3aeccd5e2594c1f93c60523afa6c30e5d1d31e30abb650dde23f95'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d086e58b340d3d5be20c6dae15426391b7d84dd78afe16b8c336797809625e35'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'c13e4e3ffd25768aaf356d5fbce5e3b77b18f4d5b81bb024d95bb71c26bf5e71'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e19ae53f4b30d17f942d05e4423591bcc92d685a19a0157506d0f99073ec9937'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'d2703560e37419b9cf0011a5fa7b53b1d7a56a36fcb5511eba63c284ccab1930'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5586c9838dc4dafbfa90f09521fd5471862352bd335b5dc70b5cb1f160be7c99'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'f95ee2c1ffb1221b94711995cd681cf312bbc0d42a2a8b52a6f7de1f97fb3e0d'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4798bda5230820e05bcd3cf965b07c2c1609b9aee6642cce830c9edaa44dc5a'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'5e12519e23383f7ed600c996c3e449f849a81fa55ec31dd0672c096b30319bb4'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc3c3624c88a029e410228b835ee39f7f4056379c3191192af984cb7172badc7'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'b7925cad900c9a19442496f70b46e4ec5a3faa592801323214de2fe2f7f944cd'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d40c0ba533e22cb8e1c552a786ba178468338d4b290d75126b8e0730d945b9e'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'087e87a26f7dad8805a6e76fc4e7b5def5d6f9b86dcb58e458a23708fcc220e2'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'974a250410e6defa9f885752c1b93eab2337becd3f2c0221a85d783acf273742'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'928c328918565de06a39112bcd03ac1aaf85b845199ea657462756317c535df3'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45163c8afcbcf3ed65efd91d31c9fa1cad0ad8de2f97e907549c517c7609810f'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'2097a05b52b2e7a8030820b146d898e047603fd998d656b919da9c47c6295f48'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3aaeb7b93716439d61a4cd2afb9738d991e1e4b91ba422ff0721d600cce5419'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'cf6b9cfb20f6825854fe0a8c5851d8c4231c4759ca0bf1e771514abb897092c8'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8b4ea9feeee8dd9981e832c52a4291f713e8dbabd8e552a1fd34ae6fff968b7'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'ff5d5539d3dcfb2eaf5259c083a5a42418d131632cb989cb765c2c6590dea5bc'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32e817e0ccb842619c87e6d16cc8316dd2615dfbfe0a277108f1e34a1f4ffdad'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'a216a0fdfbb0a9143abd428075ed0e166d4a6c4c9e81a0a66077b9f19445ac4c'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4281ea394558294f441026c2530217e5bbe03fdd875c44af26870057650e9ee'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'8300e43df399e62d283bb364a02a6e9e217b65603de0ef67ea06781e5be9b13e'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1fc7adfc95765aa0f1842086edaf581ef5f9040bbcf4077648bffb00000a62e'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'2cf56b9c05d53cd3b4b3eae3eece1a2cf96d475c1cad38912c06f8c838809914'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcceb51b1a8dc20a63f46e16b1d4096a74b4d257c9e7d2aedfb1de42fb056335'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'af3f668740ec1d3f795baf6c12f394081d9d23af2b727738e117eb5ad2980374'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61510491528b5b0d2a970135e42f8d37aa7664e709b6b42ed16302b2c1b2ac55'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'d90ced88554ac4974236288f742e4e9e7e41421a388316351e85c816b88583d3'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c12ff6777664765114f3cf779b74e82fdb6a0bc855e54cf4c2ad9433061eb17'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'c4cf096bddfb3bd0f3f8e4391f1943c90478b34c466a903d1d5026f26d4cada7'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87569bbf8121faf591b0b9e9bab1dfe33c49f19bcb8833c6b547cfe52adba478'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'e5ad144c09b99104e13e676eb4dd2d11ccff37b605a8df727cb3a9858599359c'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33f9b03a9090f62b7f883612033f16a1bf1e6e0d5ea0607a44872c3d55e26a9'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'88e58aa9660dc85d114d69f3043bcc92fc3f352f13a75c17f3fd7f8ad6fbc314'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3eb982f328d766820ee4dc911d325e520f1ab8fc783eab8af99c1a64239d761'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'9f595d7738eec18b6723e89b72966be4a478ba953fcd1412f6ee63e7a1379c7d'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4a195622ff42f76b8fe9349730efdfa04a9389b02265801331306bbee117536'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'c18c56b477b17f96838fcff16af8e1ba5c599bc9dc6e2212336a3f155a8d84a5'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'080abb16e83db84a4cc962ff9e575aba06bcdb92e0d9bc0452fe502cf53e8d01'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'301b3db34f00a6a64c4a77d2109f5bc141600f52401e86195a8acd385013e316'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfc9c0d72b18a454248d9c9347b3d51ced8985c0c22125286eaf62581a77218c'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1d1df3588875ecd1c843dcbb66aaf3ea343e5aafe4f6b93903033e4c9024d523'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b0bdb1b52dae1bf37ab9915e848d479600aaf33792bb2582a59e09e3daccca'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'236026c1990e3c8a71b88a82c0e9e2ca41913c0d768cea858de0b68e19162be6'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0201b4ca9e094d21f6d4f0ed487d89ed00adb150034595834d297243c8020f'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'702dac81f9f4e5142bc15eefef4dc850a751c8f23df47c3b0391c1d3122be377'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f290621d79357ba8e4757c16e0257f63f2540981388a85d1d9fc1aad7371daaa'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'b6a72daadd0489fde4dbf0c77aa1e63205b9b312c1368a44a18965e94c6838d5'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b9b60bb41e786daaf14f1d0675fcb92ef8e68c4097741fa4f054da225f0f69'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'c7bd3ef2513273eb7c4c1e94857a9455c1ae2c0eeb44f7a3120cc7e3458d8dc7'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f608f13836c32fde4dc7723d7a0df8afd979ba62a29fbe4098173483fe79d9'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'dbf56f6ddb1678f35b0975dfa08ffa2dad2cb28f174df7f172eee9bb4eb767f7'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb1c88c2551c8c3c05fe734847a4ebec6a0f610062f53fa61330b99d69709697'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'8d727e681a11af0b5f260179544e672f08701190310e92ae78d20e6a6f827fb1'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeece97be2bbd356b70b3bcee402336a4940b06f610ebcae1603c271d1b5b6e4'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'817b042f1b28b2808a994f8232358e842e702ae2f78b7dba9816b7c6e6e15774'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c0fa8ae144d2de322f873a788c096fa0aef18507e69e4fe8eb3531035aca20a'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'c9cd4dd7d9556564d4dd677da8aacfd9c37915dab2dd7e726dabbbffc523b239'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc394a9b1cd77143534e952f494726a1afc0439e28b523467d2a1d6d408b70d'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'7d51f32a93a76bb4df6b6fff54de276b7c0e3545f98ac453d30cd4ccc3a3351c'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'decede98cf8e799022a3bcf6450ff6fa0b8c6d38d2c91942f62d6c5a21042233'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'4fa8eb31218eeeea636de5960799db9095871bd7c02cb1d86bcaadcd080ab689'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e28eb63fdf643671b5c2adc77949f27a2370341136b90f769dfc297b0b3e569'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'2f96c0288fa0bce5c4cc9a494ac6ae425553fd7bdc098e3200731c8d1cc1c8f9'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'113dc40a9f0fbcac361bf35f72ccc822cfdd4836b63e2da2f48493e7c2252bf4'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'7e3061d8dd5adaa21b6279e9e3d6d5971967364b9525d40367d960338ad6f14e'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68b61abd32b680f1546602460bd31adabcae424f60246c8f245d212043c585e9'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'7b9b7acf72558bd335ac4e790849ba725f17952d25ee9d19bd93e0d1623cea4d'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9dc3be9d4d23d374615fcaa93839605d533cd509078f7a8b2c53038d3d49c4d'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'c0bf00bbb6ed2349cddc979ff5f72bae0d40cf3a881175f96a81825990bc4560'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a4f71afe4c125652f5951c376844aadc8f466c8746bbd98e9881492ac095b6'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'223b8bcb825d0e9053a42d989e673687f8d02d351acff28c6663b55609fc2859'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a704bb75c556635b8e87902d390d4521945e88b1ae902fc25011a045bf0e780'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'71fd1a125efe5a5480a99fbad561b735ff41da1affe51167730b151c432c3f27'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'186ac25fffd6a3f18b7a91c87f075129899e484ff1935165f27f9a7ba1fc8fa5'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'1c018a05eb95432dbbe5f52a94d6ba8b7d85d653a99c61153e3f81c32f46fc42'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b05ddf3b853e2f4fe95a026a2296fe4ae7bff7ee08972ac6ce0594e7c6d7d2'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'44f6c7ef0a18ca3bcd2177a5041d4bff3fcbfd4e965d9da8df79c9ddbc7ac5bf'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57bd6b8b984269415a0a1109130a7aced56b3779ac6575314d57b5968e576992'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'8be43e50e50443bd1799b37afd36c10a3b7a4ba682ae36f441927e0df0eecca9'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b8ff6590ce240e305cbd2c840ca23fc2e09bf4c2ca1eb7ad2b1df983e0e1c7d'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7751fd491994f95e368109f2bdba96e3393945b8071262f2ed4c88ab8e63f0c7'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4bb5d987d85954dd93cd155740c3911b00014e5618bfa4fc26358e1c727e406'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'f878d9044f24403cf596a25c9866e34c949f911294b49630835d4ff4455d2bee'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871fb8e3828fef4f3b69b7dcf98549fa6d39937d5eafa2cd3a3d84bb908e3ef6'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'1e74a01985cf2b82870850992e3ec0ccf40f02a41526737362059fcec979665b'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7d62255d5833b8606f7999a451136b54630ac73054cc3c964cd1f0a848968f0'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'6a1157a582689f910bf2bdb15b8d5479f055036654bf55f2ed66f7d70e54658d'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29414d486a5107797a2fa3e34abc5699f654afabe221bcaebd1b4c30c77f118e'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'b24d5e5548f06806034606fca289b157ddf2031cdad79e4401c6c4e290a5afb6'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9db134aab03fbc0af2f8556bfb1fe8986a8f1c1cbd1af316fd911c4a90bc669b'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'9102eb296905076f8cd9762aa043c355ef860610814231af9d29d49fbe98b350'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82febf89223154354ffea4f987cababa921b2f61dc4e5d22c2e66c734272c0f8'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'7b6e38eee29ddc863f342496997d4d176c3c193316c14abd0770ea84168ebb0d'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a2d651110c66e4806461aa8482b9bef5cb0e1b57f15f469e0bd31748b9beea'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'b2ba63c4bfba3c71b88a085978880954eaed88cad1a4676dd122bcea6b714a27'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abfa267384c935e704f746fd5f9130ee5be438418d8fdade427b133b09b49681'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'ae5918247a93df0bc8f40e724a728ded533e4173e4107f576034398170c20e1c'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8635a5d4bbc47d72f4677350712b4ebd1619d9586482f404fe9132da89dd403f'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'10815edb1fbd3bbc4a184cb1c268999a1cac6ffbade57e22dbf2316bf636225c'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b78a858c8ef5c41550808721e7bfbefebcea058b07f4a283f93e66f79b472227'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'6c22e013ee1c068dbac9aa741aaa1c172c1f149d0615183a4cfd6231a2e8bc59'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d96d6c114d9aca626aaa9ecd97da2bab8700b67f4df750f033b5587f96272f3a'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'2fd72834877b83e65375b09836083fe1e39807501ed9a879f4ff8e0c6bf637dc'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21fdbe2a2156d026e5e0b08bbf808e1a23cd77eb47b10e2fe05c96cd9c5039ea'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'f92d913e16ff4a336d2ef20d99cff94267be95f9adc07ce221f624416212ad73'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41afcdabb35ba4fcf29cf0ddd4f41d76f15ad20b46129c04599888001bb96cf8'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'cdc7c7af4423e30570f1c16d56cc45965eaf7e9ccea5bac01c7d54084f761429'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da489bc528d5b94c41b938361e325fad26ccbfcea66512ab93d3e360f2e4543c'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'faa7c534a2f269c47ed521125f0f0d3193bafb20be2a5bab589b376e0529a87e'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2479b718d60fc7c1d8e3cb6cc0cae812d5842dcb2496bfea56aaf281de1825'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'653637369c7eee89df85bbe940bd7dcf9e1b22db79760b20972f63243cb921c2'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16a43199c94515468346e9a23dcbf9187952e77cb2984f165a5f34e37721fbe'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'ecda8e1a989b6963a4b53e8e21039f7867b38dfe6020fb776bf73afaea64921a'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac5978bca25a97c9fffe1bfad81dfc47eb251b9008e0970c8b3b656b8b66ae38'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'fa9b7e385cb1c6ac2f0f30f36a5dfafb2c197f387fde183d0de09e62a23e3de1'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27faba44fcf336ca3a4dc43d11e4a2e20bcfbdaa7edf20fb2f47020a60343f51'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'78563ecd61311a0d3c58f73b10b8315531500f90e574c7762169c253273ee57f'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59e7a8cf2bce9b04109835d493e03d79e612139ec5373356646fe4ac4acead2c'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'ab9cbddeef0ec6238b801110a241a4ea54391952bbdd68c98fa1022ff425ac8b'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c5c3fa4603789ec0589d734dbb0588d3af2d56bc3c6febb8fc865fd5187836'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'ecf5ded13674a94bc13e9246076025047de75ea1653f8496b42d92546856fbd2'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f042e22c5995602cf5dc7d29dda74a27c5265f921c45e1974dcb8d10e11a6fc9'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'06db022189b7650549c4400f6f776283435fabb1572e79f4f979cc91b41c91a4'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77ae646c3924ee2722490da742435e08c45920b8ffe89b5cd77bd8031bd2ac8f'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'6c9c94e1f5eb797422a18ef5a68f71acec1b221a57926b1164d08abd08c71e9a'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41153eac52c3c57bd96d507a516796b797d6e7b23f1a3364fa9dad2e2636c859'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'03baebc0ec312e935fece52fded073b92e15903e84cfa007600d2d53620124b7'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc2f39fbdaa05e839c98f107cc6f590ec32827f00ae787e85aeeb9cf5870f188'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'a67f474d4b232e389a8c8bfbf36419aca577081deaa2f6bf1d1e1d21c6461677'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'652219318a210bb6b5f50a5d9e8aeeae1ee414367f65bd016a759872289de508'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'4403c489ecab18b429700a3bea1c71f720c0c149f1030dd50e3e58790d335846'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82e90a84cea8c462f787d8b7a2c5f46e156ad0c94340671feb41d16c2db6461a'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'b186094d3b4f3532ab157fced1068f83722bed6babcf00e698d4da98a0b4c918'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d6eee2ea836efb2e6712f661762cdc36f877bfa1531572d1fe6f98c58f5e4c'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'fedce5d97e17f27770b0093b4c37deaa145b777afe9ffb057cc2d02664686ee6'); -INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4eb79af39c619789673e36c0311753d497d3be7a7fb041af8337186d448f1df4'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','140bf5b2475904227e0e65d6592d1d8eacb0781ad988421e3b2a9ad1ebb083ea'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','04bdad18f478c96059f6c8c2e9187835a90a6ade565ea87c502704c87f5c69a1'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','98c4c60a2f40fec9806208ad801134e4ab63dcc95bfdc00542cb6943f6d72dec'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','03d4c6565b44dd849699eb148f8a9f6ab543790f11f542ec272734783ee53362'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2eef7ba0ae0805a2560687c1574464bb110baadaa812bdbf60378b1a9a2ddbc'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'2fec3fa9cbd9c4463a92770f3a38f2ab4a4d265838dee43a2825dc9a151ea8c2'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f192a296014cb70f9c697afee97357c7f1b53ba1863c11375e79cf397bb1bfc4'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'2177838c6cdd3872b1008bd06ae37e651933172c767ea3d7712e928a5ef35b22'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','ef64263c51ea4e5b45d6056f17614f1a334fedfa3a4ec7033fb556e8de387ae7'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','cc08f3fd5de807f51c98fabb0d3fd08749ce48052e8291988a64df60cc69fe85'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','80647d88de18c602b3d282c79889a42989fa1582c06fb4ac7591057752ddcf68'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','116532d00e5afacb9193ca83f1145cf7312edd613047fd80784aeb2607b0092f'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','47c52e83dc9c5c5212e182fa4e233f43f40fa7d298263ba221791d0a7d682d49'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','51579469fb47898d0483fc7f5ba1fc26e7ee7bd523764d7f97630a7786bd9374'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','40bf90d8767de7944c7d20ebbd8c4df074a9c9dcd69fa375cb154287c118ccd4'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'a12cdc26b9a9ae3184b5d44cc32c42417a0db58c5f99a9b884a783f822644a26'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'087553f31756717aca70b577bf348e0eec27e667605fdb64cdfd8769c1b1bca4'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'f449677361e4649854cf88f1296f82744ed2b939c30ba10691ab908b2b3787fb'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e288c04e49a1fff89bffd99af91dae092d8daab6bba7e37a83c7d969b522cea6'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25036928431287f2fbd330e22f76b69189e9225402535335ada408c94de32477'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','355b8b87190d2c2d197c4e3aa264de53057a1a239912b2a0ca828a0e0d562219'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','5bd167d53372bcc4c370f74fdf11d2e05a87c9869a262b527f14893d4254864e'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','8c4390eb3630317351136becc5ca76c3a666188cd4abd1c754f5b62cf70aab38'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'f179790d9f375a9be2c977abe8259c4b4282e309ccb133391d19fffa7b014d60'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1a9ad4444a7c85359b8d57fd712f9dddf75bf18f96c817bcfd277b2f70c86ba'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'689546e238c43d0b891e2ff951eb86259c5bf0487ed9d0936b4c60459c357a8b'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a38a4f14f0aca5adad629289b9d1fc7ec6b58ac580574ac9470383b05b0669a1'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5db249297b2db24d453024d8c1c029da2685aef3ac84c1cbc358e16ded07c4a9'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','66a21dcfbd3a41853bdd3a20cb2f2242751605eab5ee7d10d3227ca81a2d39b0'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'182a2db689de148dd3c935bc2056d704e9c15824b6d6840aef7f3a05411a5212'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51ce335b2ee38ec9014bf767dd5d97db28c0d78dac5f6bbc031dbf583ddfa60'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'35a02abe7387b12570ae485c8f20d0b7b849d6443b93e3450ec44e5246edbc91'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11d7c8a437b3fd3357ab0bf6a6f147dbada1b4279415ce9e791465344c8d6776'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'83c568ccb68fe2740340883f55c66ae513e690c2cdc64f0f2591c7d113bbfb26'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'815feca8dd866b0205c0ce30e42b0f70964d0586920223f3ac63292cd2be19d8'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9eaf66e69e8a4a42d09fc7deafd207d55cc6e5d22f47ae6186e9f6e8c55009b8'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'69f1493de9d1aa679053acd48ca718f0bf595243e5f479a47cd226c1f3efee56'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'a95d2419ab7a632361f32ba1a05a1dc656461cf5442f453bf3c88cdcac63deba'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f1217d41c94fbd865d16b9c98db2f3daf50f2c837291ec8aa3e9bd3e36544ef5'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'a2a49facd30133d09c5241dbb526887cdf64efbf10e45c6531a8deef40e26f99'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9851b2a86dfdf9aa110ecccfcf6e57c4e7c71b981151b1f7a004cfbb085ad957'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'b7855d2547befe39c94e4cfb0335b03c374e187d96648320739dba49665f4686'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9a59f248e3046e4d9d5d7aa351fc91fecba5c5ab49e3ecfe5379974e42089b'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'220779ce6dd7f71a2bdb00c948e3892cc0d30f3b4da7986f37799110b0e6cc78'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbab97615249d2ae8b990fe82f9e2d7c0d9fa59d0b4609944a548cd8d041865'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'0be55e945707f7d23a9cba6a55940065726467276d1ca7366d046c3d6e9b0c54'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d82f918ebbf06607f76042e5a45d327885eb44307b6f05f0ea698c135e7c107'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'9070bae6f4cc11c28520d4c5d78552140de8088ae0131861053da8b3aaab7bb0'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa4739fc041689c0e6ca003b90228f1b89f881dec60034b76ae7a4c8eaec9a5f'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'2ad876d57d4d751ad30a60b666b876e716b8add9e66264abebd7cb79d9fa49ec'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92588974c30e9ac18a512c4698cb2240c329e2ee60162d88acfd2de79219b18c'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'e418c63163332b5387f8c832183e8ebcf7f0dac30c05990648d7afb0ecc8b44c'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ab78202f425b92d2ceba8fffdaafa462aa86d81a75c4aaf36e939500dc3c5e'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'8f5f37b1d98039470a730c697e496b946d26faafa8de441d1a959e4db9911498'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'64f5d7b6861ab7fc5051a09572f8264586c3ec65a2c4b997bc2f201fa0b099dc'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'43d2d99db36ab6db505f3e520a18e4c27637a90888e29868b24f516d6beb39e2'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8d9f1087250a7bcb664d946b2a9c7814270f51ead69848db6ae31c0bab1f3e35'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c8f6c0517d573538d691a880d76972fe9095b75df661b9d6f98f68b41264184d'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'3b50aa0dda892945374c10ea288d32fc79bd72d7621b5b3a33cf037da1486bea'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34d6e9995bcdce8744528324bc83a014f050ed932fc5bd9be1acbf86c70c5e77'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4df5825df1b007b3866307d453f688cd2d8d0a6697be9ed1161d07e6aa240629'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'354d6e3ad12602ea6a7d6f4815ee65a9a5ebbb6b7885ecd6d08394a8226c2116'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'70c8b1a4ae53695674caee7d6c5b7b938c4fb87d42d5e54d468b72f7f3ea450b'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d578c12cc7a4c1aa85aa79158731060d30796b6933ec038be2febab5f7d556f2'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'75001fc6ec67a800645d1080ae232359a040d479d23f1c18df03e3b489fd015d'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'676d1abb8d37dd15b07326bc4a167e7bea973ca2943be6bfce60171ff9c69363'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'796067b040eaa2668a46eff5bf6b3a1e05f3bb32c2f696bb102d812d0bac4829'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78b54d2eeeb55882d5f07631bbd4bf24b9b9fad8acabb391c8944095302f2a2d'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'1dca4831e938070c38e8a4ca5d89e167cbfd1092570b1e00ccf6939b9745b041'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b1f75e881ffecf6f2b61e50d64062b75d9f6dd52a745ff05b7bd7935fd5e94f'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'94b2a97a82d4ab9cb090adc49c7de73acf348e84c0b12ff5c05257143f1b476e'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cecddec3beeb21e1238a271a4a3eb8e62440dc887a0c0a1882d9e07780fca6fe'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'174998a2e98939252e112e02f2e3a2a6739ab8a3d928ced7ad7341372b0ad739'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55e2fb87db48e676adfa7425267cea1c5a922bf640eed223ee63ece9e7f0a46c'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'b0f981db5b32f914a667b16df2b627e99534503e6afff840f88b3e2e3c8aee16'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd8f912fd4602d7010d32f423da6a64b7bf66a32be2e40360cc60d4f4b4daca'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'8a6e4501fcdf7a66cc45a7dc57975274b52757574141f8d2c2a5afbc795a01ab'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d68b3bab81fd55d891dff4f99017585333cb95e737cc53e61040f3975fbc6d9'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'d26209a408ea17f92216ad50c621b87c4ccc9bbbf2acc71dbd98f4adfffd0ac4'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec5e9413b1952f5ed58c3af77507d1fdc5ea46e9457f77b812ffc4a2bf85b00f'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'be90b6900950b661fb6f4a123514a75ba8e33fe4be76e9a6052f2d38b475d2c9'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2eda0b665d44b8b399ced3acbd2d3b4f0bb7b70d1e129a22328d9d8ba1584716'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'7d65dd39c71e0734bfe55a5239f281b22262e7865060c1e4a13784b76b665766'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e36c3d4216528e1c004a8dd9c6be583a6f294a2b4cf2e821db36e9b9a7b6fe'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'86627614b7dc7733903da2778a3a386c930c6cd21d04281033e793b78f63b35a'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'004ce2af34ca79fd92517dc1b7bfe0779f8652bfda7f42acfd9b640faa9d41b4'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'68661a58e997ccee6b1961c33e63ce7cea440acc10d8cd3afd3d87055e0f821d'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eac4a7cfd91cb875886bef3b81e819ae9a429b253adf71004b998e0e3a54981'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'8cba2a63811e6b9a078777a9e5b5ddd280541a10e1293efcad971d1a2ab275ec'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07a59d936d46c649c6d839d1415a35ad494a10147ed4de4f2857882e7eba87aa'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'b65c22b469b836c19d0612d9ec686841f305d159a526828904e72a23b136eff6'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d018fa55c00c15683eb604a3ab41a6c5a8885ccac602cf6d4ef8143350a84766'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'aea71ecf210634e0fa4e329277f6f35d58be44b0f8ae21d5146322d703cce0d4'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60993ba447732a3941ce6350344d8acea8a6a6a41cb02b7380aa2a63ecd4f0ed'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'45b675f9966fc688eb5166b5f5fdbf4eb1f48fbc38c9215aa2e25d5b4651f691'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b478df1fdac43f989e70ed7ef934f94587c01cf5081932fa4ae7496fe99f0ac9'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'b7e19ba9875b420b3961ae80529a3a903027d7e4d0e80712e3e8bcc1d86e00b8'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c58c31dedf3b36e566a0aa95d7220a556ed4767786c33648c2ae777e0ecd52'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'e7b2d6b21375bf1df5a68d41e32be5d63f101745a44b5f95535278d0891c4ca2'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b554c6adb80757f7464f5a2ccd9313b2e43828d772e43d6c8195130a4d4997a'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'4d34d4703c7cbe95f065da0e2636c641af99de40c0ebcd58e2dcb6c6e737d29b'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9754924e7f01a37e6ad4c7247af4a8894eb8ba9c2f59ee679d965508798fbd'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'a27d5e0c1c56a089610505b6594cf7771324f74c950a5784ff491f8fe06d123a'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a47378182cc033d3e8af459ad83ed9ca3572706808ff3d9956dbb516ed0aeb2'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'3e1c7446c622f61d59c238f327a9e01617dbaacb16e310d55ad53cea03b10122'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08a238de5702b183fc695e6f9be13bf6b7a9a0014779b02b03ecd29f7f368638'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'7df5db6e5d277f915f5a779208f69de033944563da10927c0ac249260489178a'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c2cd6e0e274f5474e9cdf09564ddb3cd44b6a59a1a2b72aaf2039980f199ac2'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'3b2be43a38836641bf2b47c02ba9c3847a0eec46f87fc8ccf13b047f06ed76f7'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ce78f7e956eddb1b5bdf23c6867c9068e5e0165bae02a2f6bdc1e72e4d506e'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'addfb57d50709661a689a33e9818da670809cc176147ff19e5a6394cc750ff17'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7037cb7ba1a55199df5caec2b8d288e3ce9168447c00a665d581c8f8337231ba'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'247006b50d9bdc98b3d80759d4c31a46356ef2cd3f15b3fb9f4379238c775742'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'467bf5b6bec3e941d31f25102a0beb161c5c5a5054cf43de72062f0906dd56fb'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'774605698501e13c9b619b6b0ab45d4d9edbcd8b1b03dac6dce3646d194f931f'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4f687c495e019625ac8b512c98a0584869d63000f4a06eceae1739796ea407f'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'f8a4ce8646fdf43a2e0db91209282eac1fad600cf50c99d5cfdb3464ed53dfe7'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'304302a7e3222d6840054bee1598edb9b88cfe8296d63bb4b9660262efd3858b'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'04b66e6ea02a045ab86ccfa58412ff30079b0ffdf216c5b0940823e9696b18be'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f620a865f7f9508d3924815e157abb0a613ef68d52294dc199cf4eee7cb2d45'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'dac2b4314c3b4e9d9230dfab569f04d521e68799a4b0e2ddc6779af7233856ee'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'271323f1969a85a5eea94b6fa37a52d15808e951450b96b66464a35252e43466'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'f0532cfe193da1d6fb648f54007e1ff16aa1c49fb5bd68412be0a5fea55947df'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b302fd3f8f7e96553395401c37035581ae6d417a36a7da09c78940d31a8b50b'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'7b36da9d8af8a48dc920970925b7806e1f03071d51ce059c4b2fb5b9f298d5ce'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de73bfc88f3713e884709349d760b54debcf7b397d74937f82c92bb3f4b2734d'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'b4b9857e602c278073eb3ab15683454a45b07c5d7c6fb039f29436c352e9003f'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f92b520a5e1a273bc75270b782a9fa0fd88a33b07cc3215f2032a049be98f6'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'822549aa462e3606cabd4f19a53f310b1c7c962f256204ed849e504ebc04e7d8'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dfab8d50b13425a4c6f42827bde13c99d799f03316ac7ea553c2fec3fd4106d'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'7cffd256dd87ac4c980b321807fc6e0b4b0fc0e853033efe6bb782de8b3f1416'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbe9dfeea1460b11c0f2c8037bc9d92f2a98ad34fa81762f5fa33dee68394d1c'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'7e3d7cd5f0789c4668a4ec447c53050c0955b6dc14b99814d69db16c8782088b'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f72eb1907288a620cb4813994b61cbdb1ca5a5129f0ad46aa504885f38c0d4d'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'5e35ceae2da9dd76ed4fa47c3edd850ccf6a8982b72f0203dc7c24ab44feb8c0'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f541c9d9367d06a678b0a86990bdbfdb12a6ecfe2cc43cfbc2dc80e35001e60e'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'f2d439026119f1e01da9d28e2851feda077f1aca6b41b923c4565e3a04697782'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bff0d72fa908dea66e178001f6cc8e104d178adf8510217a22032ad349d667'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'0fe630329cf5bb35596189225661e0f85b55fcafa56f3c12d91de112a70f7547'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac75cc8ee15fdc9a0957b67fe2c3998bacc5b5b733abac2fb496424d85b522be'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'954e881629034c50b1df1d9bb1483b8c77113c7136e8073c2ae3663baf3efd50'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902cbf43dc8f38da2718765d47f9d9c5f3cf3dd6d810e873090446f78c7c2a51'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'5568f051efeb11356a2b24943eb50d75b58e4d0b94666feddfb5d6a96c8f670a'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f54f356c9ea7c6cdc618703ac0c82c4772baa0a3a6be5520395d33386d035770'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'4387f4e6750bcf459b669d4bd56e6922012707ff4f40849959e3e0303e91f19a'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c08bd2fb69af33524040944d4c788269e55a3a716d2f0d5dcf24be0b6fe69662'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'cd7c68c38eed26500c02ea4a57a394089073c19cee26498e9f651e96e2802c67'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb0f2ca9b3c0bd4a46c7a0360b0b587c90e213ee49731697171bfb9ae3435b'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'94b80b93719fa0925fcb3cc0a47147e5b1c2519dac78ea780592a635fb6a7964'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6057787d06d59017908d50a2490a7f9d9110434523522540ddc8f3799dc225'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'3728bfeddfdd5ee26b1e6c6edf4e44348f883558bab3a0c5064161db6d5c98e7'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eaec92b3afa955720c6801e72753388f56b39e4d6c5278e4bfd5103eefd597d'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ef39eac787ad4f90821debf52f0149386f7f45467b14b373b925229c0238894f'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50ee23f599ed54df0ad8df77b7eb1b7efeca705e4b042fb1f5b13c1493fff42b'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'aa4b6dbec60de52af91a68f1bc625b8c29d152d76a0d298ed3967d6520ae64ee'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d4a65130976d55a64e1237a7065fb9faad2b997479730314089ed42f6f781d9'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'e8c0ea2f82881d47a3e0be6d106d09e0d7349e282fcda9005368a9e91e8e588f'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dac79398f3417a1a94bdedaccbfa3b62082cd651c2cc106275f3e068a625a5a5'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'8a36538554608924193b935c04b945f8f7cb844e8ef3eca07fd28cdf83970d3a'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b998b91ed48567e70d59bfe05682f9c4dc25f04d2a64ce21dc0a562bcc459b'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'bcc438b7e7682ed14879b4b466e74f7251b4726825d89e187cc267e30fba35ff'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f9eb6d9e5f235d146978832f3a964321b3462cecf653755d586869e5a66976c'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'ed638e12930e66e75f82626af9cd01ac437e6b7b384d8403286f789c376ab91e'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59c5956a375a77d5029120b0f0ead8ae45980d0cf6d3e0eff26cb0def904804c'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'f8d3c8ba4357d9a9ddac75df7121b6132af45b1fa1a9998f2764f1baab2bc3fa'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b31cbdf4a99f978911504788d29508e302eadc73a70ea66068c17545fdf0c45'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'39d33454a805cc9f4153933d2b7f294390be6deef137c48b638be5608ec7e3ba'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef65752aca822f4891e2216869402fb87c29fd4602d78eefcc462675363a4924'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'81cda12d401d3af3e9f71982aaf657244f0f37cb5071022cf89767d25f42ce03'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ecb5a9edf06ce66b66ea58f1d7b38ec95fbb59c75a9eae0c649aa6c64ea873'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'39abe67e0c3e552ddae542cc7c0caa5057ff02100c885fc2b575eadffeeb035c'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4c25f86d7c29b72b459ea478826b38ab79bc2d60e8f7b666ef1707fd7c36af7'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'6c7f2dc41d45d2f1684e6ea425b433c30db7406bf84260b92921551a0c363455'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5448a23df9e3bc5ab60a141b1e428d4fd6c2d4a142fa24acd91dddd92a1981a0'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'e67137669c0f64a707a547416631a931726bb7d8914194b53132995a364855b9'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db5dd760d6230e12476f2d510d40bbe2d869f512155781a93450a1c141a743d8'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'430e37c1bc60be1d8bbeec2c39b343e0b20a1942da6a1aa7673c4efbe0535f63'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0262a442b8e64a961255eba095b168757b9764dbce35abfc86185bc68bac1036'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'a7c1501de9dbd8c5c6ecb0973ddfc0f98fa4a4b0bf05f0b4ad7bcd217ff29ed0'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c64ed2a8ce4468bdcfde6498e5768eabe59b3bba06c18776174773a13479f69'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'43fa94d12450a644884216d0c6aa4614e3d213c5181b24e43095b75901bc94de'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d390f3295a4c047a7d340c5b778db94edab6c1005cdc06b9bce90cc4c017619'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'f3228ff82661cdc8b064252d9e5fe099db33dea6b7fa92994f20610fa9439c8e'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88fcdc9f2058683e5aa6edf1a193e8b42bcdbe4576d26f6bc21b908e9d8104a0'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'43bb3c28cdcadcb3d9194732ef1939814659c20ddc3db3025c3c573404967298'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5884c7446b44cdbda7d6104d462df0a2c1b0115e9814b9cfd89f2454dd8ffde'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'3e7873db616de7d17f15c778b3fe1f7bd13cd65b5885bef8c187031d8cc6e150'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed6bd6147c541b0ca4fa805f83cb5717e5d0a454227d228cb6e16785bb6b924b'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'79904ec3b0190d78f62de79da4ca02aa53692ca9149f2d35a74c152a32826be4'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed4f45b3efc1bd07cf7752b24a0496619a94223d9c94cb46ec8ee3cf598c552d'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'f6aa17ced4c7845f305b5a19cc9e01c6544fa64abf81dd9af99aa2697d375663'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9f36968ed9c168d0fe1d1395284cdf4f9d842318ddd6c4b88c7e2c4469c9e1'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'cf4cf6870abcfb30360dd5920f2aeb2738db479d1e6685ae7cd3c27d4fc65eec'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8843b487f1874e5b6853248b282304a558c19b85ab3a88fbb50d97032b604c7c'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'60186361d91482cbc3fb702cd90fb4868f0e38e5b64aa141cb24ff33c876b3db'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ddede69803555f21b93019e7511d97e7360628a81546828c7dde778c6c56d2'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'c11bbf34bdfc266bed3458c7a1c784a54828fb4c61b4c1a7740485c213e3b004'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827af5b7e241322b58da42a94447ecf5714b759c782287a891420b79724934aa'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2931b4054384418a5ca3c9f82ec69168265af0e8734d6d7058ca4b71e624550d'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'5b593e8ff1b41488b1bf0bf134d7e61fe70869275b6410d5ed6644fafa746d47'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'69102e3517c6446bb75acf1b15c7f972f80ec185d20af346519c3f1a3521e0bd'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'cb2e73f498311b890e712da878a11339d661a802fe8270d92ef4cec8e6266d45'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581ebde8ff6c95455553a79144951d14af6f2d0d3d807b1a6ecf2fd2a861e4c0'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'bfdd43e6adc40cb42a374902b7b82bc527e1e19a52ad2cc15255c0c3f01c0eaa'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e01b19b758f3365c653938c4c168bb47e799be047e34210d63d53a053953459'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'9b8b3861f4fcf247f94e9d58683bd1a9841dfa5fb1f1aea8051db97c71433131'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1c2899287621ee9e9ed2951f3a1e3a3dde2089315a91f88c7bf6c45c3817a1d'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ab7b5981dca361bc1a05fd791e57a448e7ba157ffd8ade477153c736dea9e9e8'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15b15e9ea49dbb10973e29e6306417e11572ce7a71b448bda1be5d9164fd813'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'1e76d50da4f3c3af92ee2c4431cd1ca3e355fe206782af71e7bc68d2106bf1e2'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'278b14619e367d83431630b2b847521985e2b299a4bbfb847db5f266bd854fcd'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'dfaa7cffc15335ece72bdcda098d11908ae952014420fee4502a2d2a16d5c2c2'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'565a6f43063e5dddeb8df8145f071a7bf56b5788b4654a599bef289e9443b568'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'40b0d5762e839c19bf02681d430c78bd040978ec66332a2d4e6eb9c99a0254ad'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1be2fe2e9134309fef23015117a02dde93770a72648653a5f0cc54097fd495a1'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'fb54e59fe6f5303dd00abe390e2905582dc8edb49c4b0a9f0535f2674c839151'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fab2732727fd7e0d21e8105f79fb301f87bc17dad45fa3d360c6bbfca3c8015'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'098b7d2a40bed49bb96bbf77f62f718530f8eba500a62da04775b7ed265ca880'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ace331b534d3dc4c53fc96d04d0532316fa9d8bd22cb4edbd91fb192956afebe'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'f18f4fe3fdf26130c1a3310844c987e0a0a4d07c3b216539856529ed1f897170'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6ef5cd9b913d38a325c98adc084a1a3040e8c281f87deeaffea5e041c17f11'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'3a878ad933740ef6ab0d030276d885d48a008150c6850a2bf7e4632560db1d82'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2452af9ad93f85c0de56c8686fcc7cd71647b35c90de5ccba387110b3c4144c'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'bc5af6d042662deb63decdeef41214131cc4e3b74fd5ddc6c8705068dddc6162'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2ef3a17f5d35105132e819918b6ca23d964e249be25c00b3e7853e5ad9b5158'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'2fda99cf36961256fb885ad58b3d3b412cf7535e88e4195193f5ec11ee4d163c'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05ec3c81f9cb8c066f9c8d6dc4215ac052be44e4e5dc1066833e04852ba661b8'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'a920493b6fc5b9bd3587458900dfc8097f10f9a487639bff7955990490794ddb'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'791e17c29ad2e4e2434b7316e3be5cfbd7cc56ab13ffac6e71ba9d869b7c4b89'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'bab109fe4a6270b93d5c963d494b618a39330733d19d18ad5039932059714937'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52190a838ea1e3862f3b18ff7447913f006eb2eff649103820ba33c7707d327a'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'f7eda9b9fe2cac4634a64a8fdd0d1120f13469aa6234327b06bd16e5e3175f06'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c44f12205b76a7b3e3360d4cf0d44c5892e7771e7d0325ac87de86d13370ee9f'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'51dc775d4cf07a36dfda608fb9e7ca1b0551d02bf92595635d98047386ce2829'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c819e6144ad8a19f6b72dd58ca66ccd044d1a48e922edce634d4d83f6285a9f'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'94e6c6c73b3e102372351375487d955849985cdbb9272de804be5995905cffe9'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b7819e3e0d3cb7f8143d64948f89449c6c41492751bafdde1f85d8b7dc11353'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'cc2e6bbbccfc920b7d0f940031955781413cef4b6d62b3c32ea613b6ab4c340a'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aaf2287e92bb8be6aa2e54eed5cfd8f78366a431b865caa936172a781903985'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'f07ae4bb4d31da3c7820fcfbdb719322a84b7b8d9820785a3c39baa60595739a'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ecab5eb88e299f9127c089d2f55ab9f249841ca52bfa4b5856e926d789c0c6f'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'27786a93c9351524ed56d9c13bb27aae4c077fa65d90a1f9a16c7e2587a3eb84'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6315ab016a88bb86bf566da39e9d30b644199eb601e61ed5019558dff2d7b611'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'de82f0481773558b8b26cbf873d2a9add9279339d52f1c1eec6963338dcff7cd'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da436c188602fa82184c31f9e6c5164735907d2e7198b8d03c726314094986ad'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'fa2e2d5c62563ca5686701804130e1b8f132a2dc75f9ba5977225c14caf4d63a'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bedd9136cce4bf37ee2369adc0c612c2563bc0741b86af4dca6915c0a1a2877'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'ea8d976c3532ad39789889e243e0a7f13986e6cb2ea9b9c5207b56de38ba9114'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2866cf08694c62479003ad453723e76de59e2a411d9a2c946a02b4258c43f6e'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'1041121ec2ae9119e6b3ad57b25b535e86471c9d9493a1d1384831d1fe64125c'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ea6b8131294db5a3b80d81c1caaf0497e6216e327ee5daa913939a68532d3f2'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'bff491e94f6e743d3dcaff1db94c61338b54a9c71ad7050fb3e8a319dfeba479'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'414e039090c44ad88c93fcde6d09ac03e7c00eb60c3acdc0ffad3c9fef2c8afb'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'c4b084e28580e939209c6f996c8af9fc38a4cc8393f7bcfea94d4c089a39c6a1'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05f8da7e78ec94aa4a1a92ee8cc3c89414ce468437ddfc19909ffab16a1b805d'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'99e8a9ee25e1e15e9e3d58b544218920ba026abeb0cecb52689fee24529240fa'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe573e21ad235dc377ca14a8606eda840dc93d96cf0ffb3d428a14a211b0269'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'2490bf60cd59cc4aae6c57383043ca8a75e9f209468f19a295e5c55f38178388'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'475aa88fd87a572aeb24ff7c75afc780219b6197caa651d165aeec497c925f01'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'320e4059eb5f1a55e0e623ca3316dbab0ec7f2c75a8d280274e8940f32baa890'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cf545d5cd3c57895df6f813994bd92ab4a8a03bca9c812abcd65f64564d7f03'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'e4ff9fd1589211d84caac8aaed16f00503d5f4bb8015152b057406d8fc843fc1'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f036e71eb81cb5bf354a09d5bca4a610f468bce4485a8785ea4e3e1e1025c9a'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'c50dd3a41058aa46ce3ed76c715465cbd4a38df9d87b9afaac4f8b2c9fe5bddd'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b10e2cd348ac2c786ab5f7c56a2e32ebfd2b74da5220de87aa9718f4d76c078'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'38d40eb8d957b9ad695f9280ccb8c2b321936b175c523030c91207a489308491'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33556132d7affe14e38d23290ead215b4dc10c00f7da902803528afc9caa315'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'9a884a851a466739382ee4daf9a26e556559fa6ad9500ecaf98a8d2352edc599'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e495543160221cda3d2cca9ac13cd92f05d1082d1db415eb22ee228455203337'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'ed8d19d5d0c36c375e90180c369ac2bfc690eee08165ae28bd30cc2d46cc6b3e'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb25a973339f0a34d188e9335cc43f02eb781a55fe1867bab7d6f39f775eefc2'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'c1dcc1651b576eca1d1064966b84730d30abc2a226ba744328b0ed71d61adfc2'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfcf54abb9355373e3d602dcf9025c5d01ee285d5c986ca8d47b2d56c6e4717c'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'a82504524c1418b4e560b5857fdd80c4f7f6e8f8c8868363f7f834f3d04d146c'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91b9ea5b97395be36ce30515c31e2c7c3f5b8ee48527e34a2ceab2dc7aad29e6'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'8f1bfdfdddb492d0177f907e14b59779fbf4d85d91ff0a3b2a5a661327de8940'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a58d199b69f414b9d2e24db40568eb71009caa94a2e24c23659b4825caaaaaa'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'added51eb8fd9dc71baa31d9b7fbc38624abdc6aa028b40abfe9a37f63112484'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0618386c8abfffa341b12c7f0d910e34497689cd511cf3b66fd43fa7cd23e24'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'e922e558d3deed9e7703a1011312d4370f76e253fefbb4ab727c9757611bf03d'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8665d6d16992fbe006daf72ed778b98bbc619564ffed941b71eb8d9866a34b52'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'ca3c58de0e576935093a6ba1a83dec088a7018ca76744fa4e9c3dd7164a8b63d'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ae163e836c45102a8d1975a52dde108b4e6791e6a3cb392b4b5838891f40e81'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'eea612cb79959b31c2d7d69728769d4431f8bbd7000c6459c046542609faf57f'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06f8515a97b11e37ae3de76417376080b368dae8b1282f7e8a6294e379c1d112'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'46d79ac00a816a45d5c01ec1fddf1bd0b16cb9cb3be0ed542b33ba4f73e36443'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bf9f7f2ce7afd5318e40a42a891913f3ac6f5d3ca0ccc4760bfac9a1a55b9e'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'8bc1696bd81a8c90b5003262b87c48ffe37c8bebdfac288c96240aa79882bfeb'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e12df4512a7f7bfb8639a047818548d380786d957276060a24abc9fcf1841ad'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'93fd129a5f98a4ccab3895bdce598b00d1c87bfb6c953f7e2aca010d3ca83c47'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a2269a73715c8191693cc617745e0e8407784f81deb8e92f8a93fa3cff0c95e'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'084df8ae85a1149afc55763b8eb4d3da4c0c602ff3b227cdc0be44b0fd234532'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eb8269a44e2a64eb9b0c2c70ef341a026441e58f6aa3f2f7a7543183b9dc47'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'8c51710bfbd3184f078a92b49ae93865031b69a0ae4d5f53c24ac805d1189948'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8c447e5fd6e943158b248a5cd5cadefeb9f1d8c99542eaa6b423ea7931e4649'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'69825f71d7cfe749f1efbb3642026b239aa430f87e3f0f511a265c1e6bfd67f4'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767fc9d838ed8d94690cbd5a8f00c8694fc458ca8fb9e33ae7fffa01a53cb10a'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'fd1b7d5c7860e9da6949fc15b31ae607e06935dadd57bc8366031f1082c089c4'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e173e1f75d5051a6192543c5aa93314e45501ac85b2ae010b213a5bb07b03569'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'e310745a30c072b0dddbcca60c66d8814e765ee229f62cdb9f4857cac2a9125f'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4306f8de37c15efcf2a2c3772a78073c3b3a83ac7d146f39bdc125e2722c516f'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'6a32f727d5b3cf499019c1871f72b831e0c12dde62b5615070c4169f5f3fc38d'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58e56f17247dd303c3522246f8511bf0fd9ff60546531cbbbf024f79910d2ac1'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'6948c42faab91e49eaf65dbd1e13d263c588e95a2979d9cb59b6615387c3ea30'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbdf6d1931325f25179c5149a02c8d7f25841ad266a4f69d9adf0279e5841b72'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'7f179e72b8159c5e791dac0a2c796e91dba1c6684ccb1dc93f6976362d591307'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc6cd72eb0bb48df17983affc573d131d5ae623123c6959857c65ef7f58c0d7'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'328165fdedebc08f01641d99288821727f05b9f1c49df9016b1751311d0fe025'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76e4f402b612a9915b3af8da888656393eff58e0590b38cefb1da08442dc6c38'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'720c06295347fa6f1e9812e74de26251c64ea9a24efcfaf8803fce6d70780bd5'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db3fe3a51c7402db8b5a6ac56392edc43b20efe56e160ddffaf48ff9122b208'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'69e80c113702a562befe175de8202f01b9a4e34328754bdcce454886bf7cf9a1'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0dc749bb5a31399c215ea09fe40a9c735390a60e249bb773648ab9b73cd1939'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'1ce691fa3321d69a327bc38eef2955d1614c4ceb529c70ab71b486a93638d19a'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'925090f3ecf4d1f353c65bf01ea060679f1a69d1f6f92fd656ea918a9a893428'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'5d96ff7d1cad796c0e1a14400b92991da2087485198b6f180d2d3f4d42f8ba6a'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23098ea7a01a452c21dcb9fcb45248dabcb99c41b2f66ae825b71e6f513d3b12'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'ac3ead686942a044ece838b7a3cfbbf57185e06fe24ae7c6cbedbcc3d9cb95d7'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'202e10e8ec25c3c417965a32cf7ee87abd18fb0a59696d9014863e23c6ed10c2'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'c5824a12f17a8f64ef3018b4256747f6cfdb21cf63116c56c8d3f95106977f46'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b413bf99e96e3c2320fc80634e8e93a3b34055286f5781a765867606db44204'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'5b3e80579eb6bf8aa23d57a23d481d03c1564c5b64d8c5317fd04d762d8fb5cd'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ca9d44b4a2a250e7ec9eb55929987450303dea19a08d41f6a6665036802fc91'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'f932a8c2fad8f7d63cbeacfedf225fc062c179ca1757c34a5ff24c5fbf92ed12'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fa160e02333e4a6793295b519fa0a57d331a914dd549ab4dccbaafd219f7e93'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'1a991bd0acf6628080e36033c3deadff92b78ce634256b6c24c411b6c6264f55'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01f4dc720796abc38f7eaa4122e0d64bc715831e91d8d394c5e81500021076e8'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'9da23a71e1ad453ce197956580941d6527b3b6c9f354e4d64f87ad358ea37e5f'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bca09f23797c6d333eed8a5e32b3566fabffeabe27ab0576ee097d1eb0433e7'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'9b655b83c35f7064396d199fc66bf18894d43dc755eb0bb9547c103944622491'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'defd0ce420e04c8c7675bb48c96a39f72aeea16b6b05e53f3a9a7ec79fbbb598'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'7d9fb25be4b080d3b4dca29067a60e6eca2f151e10661ce2ad232a37e599fdf0'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7b4490e4ff8ed552764a32a1249b06acde4a7c1a8c3244d52200c8d2576a751'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'3ea6298523bf40ca4e809db6c9924c4382bc5c96657acdea2bd7f7393b5f7661'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'646f7ee404bb85ac41d03190f646ee30176a88839d9fc113674b867386046106'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'3e7bcd726fcc0e687c4d0bb0f05fda53aa27a0d2a76df1444947525aa512565c'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ea056ce7506fc1481ac98091c06586f60c8dc2e54dcaf95c3e24a76110a28a'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1f220adc92922e003829b820b32bed973a10626885532b9a8650fbe869a96cf8'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8ab7bce34311dcc08db2f9c547930272e9505ff6756df3fd26cfbb7fa8ec6c7'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'01c876992343d53d98c47d894e3cbac9a01cdc479a0e4f7b2e0c8c69f4bf2239'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325043d8bed45b7f821a7b5cee6643443eaade1c8088808674496210cca2d289'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'7cf657899324a95a34f6c7cea647ffd80ac0e482f38ef2ac05489a231bdba326'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f38a7161972b5caa3b80fdbeec750f7e137138e1cafac646450ecc0dcd248bf1'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'f71c22275747b2364ae23b33e3d7e498bef6753a01db9f15edfaeed13d50c9e4'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3dc8e49fd42f4c0944e452af6400f58b2671525bfb4cc9720da29f90a1a4531'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'96c0c029e9f1de1c8b9971c0fdaaf385ad40be5a47addff2b36bf3a2ea2a8587'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12d39f9091673aa19ee15c4662ccefd670ca5dbf3f78ae5412c23889c3948969'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'666b458eab116b5a5303f7644192d0c0a87df00fa79c88aab07e53f8be6641ad'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378e41cf1faadb95bfdaae8b4d97c0e608624dbfa8693de309aa22cdf7085c22'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'685d3c74f494916b35482d4d4ce0f4e852697df5f503e376ff792dd9dd7d28bb'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ff35ac98bc8acb9435d6748536c9a97a576280901f12d282db4744f6803136'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'241f8714545723f6cd7f4aa1c9652659374b3cfa9cf6e8b5ddc9b2186f71f42f'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b7e67c45c8454064a54a93fa45d156564bc620b90e3922ebec98dba8023b2e0'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'6820775a025fb8877c5f8504b77d5b6623ead50bb27431b46ed0905cc40b40b3'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba36662cdbf1871720dc8e2006f71a79d80deb97de8b575cf919dddddef7689'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'f0d5b7a4c803bebb88e06d39579110998c6bd9535b24c2420af656acf7611617'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c88f6dc3fdcdcdcd332ecffaa660e83a4f4d59d93b2bbdf8e2355da9d7a85d3'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'d207dd6a919e806c3802e8420fc191cee5440c5dff13fb63503742dff7443876'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c2ffd09eecd3f1c8ab69cf5c60e9c005037737d878d43550721a4fb18614888'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'30232a7a6a6429c6b09947db723d895085d5609b036e23f73c7eb21f32858f9f'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffb694cb597bfe326fdcda96f5a3e6ebab422425474fb80b0efbf9d3951b135f'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'c2b3bc966a79bb95482101e2cddaec148e6dbb35acbbdac9ccd2e69ece7d6789'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca4ed96788fb23a1456e516ae1ccf9fb5138150de70023d582ce0bbc78ae1a62'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'9b9d3cf40d9b15f7f8f55f736585d4b794260916e2689b5ac59fd03b8c020b24'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'301fd9e366125308ef036b1adf9caa28a167a76479a5d3069bcd36d1491080f6'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'08f337e98fa0dee551794f7c8d09c099dbc8cf989ddc30e5d1c6fa743cc0fd0b'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3cbaac8de96a93d234e7a2fe3374d405d5852164cbea0f8ccb69b60c16d56'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'0b9ebf0b6a59a2f4fd4f9d32002ad4b485541678f8dba4f37221f5f7a1f209ee'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d611aae459d30c5f96840c5825ba9f839eb80443eda98050fa823b4678dcb8c'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'60f7b8f725d224407806ac0e4142e423c80b382fa8c302caf80a54dd325faeec'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78ba734913700dc80fc9dde2e7bdaad08abc25135b55872620b64fbdab2f3fe9'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'baef278cd7149b5c748c95a7f9684409ac679dc5e578d5292afb409f62cf3c39'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445b56c59487fea539806193968072d59438df29ef86897c212c5e1ec5df313e'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'8c27ef1ece128390020be5b4e13f3a0dd4c44597b92aabc537a9eca5a1d5b7e6'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39141e628fb4af5c8eb325209c6f3aa2e0dfde3961c29bb7ed28caae4044c463'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'15535663e1fbec159638620d41d5404b248255947cd95c89669ab5de4a4d5c44'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f49b9236fcb0e08c71e803b97be0c4ac170268827b4cd8091dfe1ef498fc52e7'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7f1547283270cc1a2d0fbf64ffaaa2abc925b310b054eb4b51efb690a7284395'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598feebdbc3f26ee3a8474db6bd2c8f268ef129ecdd6aa84912551d129829477'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'fa04a6599defd1c02541e2deba2941bfced29b5b601ef0bbacfe5cefef2eee28'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b314f17c2e9b9ea308a1689c22f3d2e2567da0d6025929f1a66a73de78e26fa0'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'9d8cf1be2b9f65289a9a74ededb274157339af3fc0007e7d0c559987042bfe33'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51674b783f56db50a5155a47b393f1d32bbe2246fe409aacf61e0defc9d73f1c'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'d8633db49cc1247a4f9d8f0d283ca6cea3dfaa04f7deeb64605c4a5b8051f7c9'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47baabccde92227de34e782d373194798a6ce903f4a2add963e24f0f3d97e063'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'24d5adef723cc42f4ce733c7bbb5a7ae20e236539e68f6826f850dbeb9404860'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ddd7de4c7e7d78dcaced8dc18b8e65c728913dd21389dcbdf301c93b8d616b9'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'34342cf0c64a7167739080ba5972b80f26c78ad175d79d80a497f3ecb313f257'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7994a0417cb15ff5cbf2469490304fdb85cb8d3ce3f6d8ddd023f5a459815cb4'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'bbf140a01fd938e333c30e3ce51debe23829bdf856e08d9d8be02861e824b2f6'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4828050c1e512b60aaadc818915fca9c987899a702fee04b4d0565e57f33545'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'f9520e0b19fe54c58646ff200de7490b684b1aa797b1ef7e560fb0817c71e2e2'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fcdebf0f17e73287ac1bf43dd8c8058938e2a6b0601d1556baad161c3409c03'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'4d6e5db932f881e27fc043a3c6b5e0878a26323de98499880e8481f3f8bf5e92'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd72ca9a6b54a312c551fb5c619c2b294375a74282a92a7777e77e2314246e38'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'6d7aaf2691d99896d68a9bd473ef7e569707cd3eb72d8125d85fd9232163eede'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ad3eacc4e09d0134b15d73aba2dddc73bb04f9bd5f483a1aedfd075ea0977e6'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'cebb1c13bba334e4fa3e7b46b8b244bfa085596b00da5052e3b1386c5339ccea'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f207118757de44b755a201c784f9ce67f5bfd7dd85ed4ab2f7c755611491ffa'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'4466dbb2b1239f0b12f177ce960ecb6e59367e8341e8f79c1863533f799364cc'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6239001e93a0ece18eb36967fece87182aa1e151ed8795e5624772acb21db821'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'224d124a1e4cde953fb64a98c85046293ebb50c5101ee6c04d48fffe36c58cc4'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3846a636a3bda4a67d08021c7a37f87206a6cf95926269c669489a5d28ebb5a'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'9156d67c6396d92ab72ef44eeb1012f912ff4f0ffb5720f66f298b036f93e8be'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9711932f7b661eb06233c68d18e37c86b4f1bd6c3ef0ce27904e43e779ae778'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'8caa4ae6b38d2f813db6a2ce308e71446d0a39f0259bf66edbf9ba34077a3bf1'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7658ac4c71186c13f73ffdde6aad9c63d516fdd82103b8e05bce7cdb58fac85c'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'db313fcd80cdf3c4f950d567f1ccfbc4a0bc355c12e7494b29478e7c7c441120'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cd19edf3fcb5e307290f34045b595c08901f04c06f9adb63ca905c5887560d3'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'cc85b89268a045ceec9a420c056693d3b2f5cd2c7d51a71d09d20f3340ad1c27'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b31bd06e95b1822210563156772a6fae0e1ce5e507676d7bb22c6d628989090'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'d6c97e644bac7b35b339f0b04e9edcb7bec96459c3bf82e9658d717e486f27e5'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87e12f786c6727372dc17199f37415c8c22bda932848cef2054b5658cd73f10d'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'061960607c6f18637f59a4beb5f5ea7b2a26678a6420266ea9fcbf15a3b040de'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce5bbd516cd2bcbb3bf6f4d68d1357dc65e8bc67423ed64263dbd9bbdae7d7ba'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'c2f96a0e8efca6863e05080fb5477a3325edb2cfe157dc8d284e785cf7e8117c'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d3e436e33a5ad723197e9a2cb75eb31e3afae6a3254dad6ba66c2e53f99f44'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'e8f548cb0e4b11a42c008b5fb3e1e67f7bde8d4f9745c6580b04b70d253de66e'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fd1d89f6d0978e2cdb88b1d2db58da08c47ed13a6fd4269bafd8ac866df0f34'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'58cf73cca5feaf2263a6db81816f5aca003237172126f0f5a944ead78bfb5544'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bf55e570076200296ce4b6aae7d790d428663a0f272587bf654a941fd9f0c44'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'2c7c48a21cfa651ef08414132a4e7c9e8be66f21a35568264d2ddccd421b4b00'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e91e759c10a28f25719f1bef1d76aaa58aef4ae2d77994bf5229f6acde4f4780'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'1ec18704d455190f043b7c1719c2cf5c1ec69c85c5e291fd679735647e3bd7af'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32cf241fc8cd836b8d8bc1b0261282df1d5d29da7401c98cae6aab8fcd81e8a4'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'700592de9180e98236c7f643b20d91dd360a129abf5dccbde4e9713bd8aa0932'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4c070da5412ac230509343fac2d4c65a19128fdb6d7131d1ad34dc513e6ec10'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'f7da841f4e745f9e740eba9ce341c7c853026858844dee55543aacb03e2d13e4'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386a96d6a08c90b8104c91e77f62699e506c437aed2530b89544cae0371f7010'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'1a5868a6f80ba9950ad291d0705bb6ab933c603335ed6adb81ff57692dcf69fe'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e741ade8b9c6c627d37be9ec57166660fc484029fde19e1b3e846060255c80'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'9ea84cde1c958baeda4bb00845dd86f37f9526d118ec201e8e3503e28e36839a'); +INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86de7ec8067560700d47864fefb4a8c1f2a7cdc355dce4baa0d9181f3918ad40'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index 2242b6de6b..abce17a6a1 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358',NULL,NULL,0); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) ; @@ -2630,438 +2630,438 @@ INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45 INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'5fe355dbe799ec8db520c97841a29075d0f611d03a8c1194ba28ca1fc1b3c0f8'); INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','4c9c59be5128e3f4924d4576485ccbff9bb8e725df4d5c5099519c04d1ed71ca'); INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6513212f3c6f39e30f9a146dc496586a117f53fda9551d1c1c369d45c538cecc'); -INSERT INTO messages VALUES(1307,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2e8715bf8c4cc2b2cc62bc042e95ba2e24d6282afd2928802572fec4621f7d7'); -INSERT INTO messages VALUES(1308,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','eaf1d0a762c50322172871ce30579d08a76b3b0269ac903031270af744c26283'); -INSERT INTO messages VALUES(1309,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','2601c615484c624fddb00df8f33f78745710a5cc2d5ae962d08461445ac815c3'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','df9fcee2826e03af7192f4c6ee6de1b1706705c8068e1d4aea2ada95da5a82b2'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','3a7568756c9765dd1c6c36e9a29fd251df74b3db8246aadfc5b482ad822cff50'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'a2b6385b04cf39977dd789726f93996f2cc7792f0a8c7bd9b86ec56a45717717'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bcd5d65956b137fcd9c188b67034e44e09d49fbe34e785a23e0c307efa2026e'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'164c7df55299533aeeb396a7dcd6aebf1126a3b1dadf9995f9ad0644bf76d778'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','4855b3e0c820fb13abaec2dea1866fb2012165f33d784ada485328ba94211e64'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','d214f11427dc6cebe849df235acaea007ea86a1a3b070b8c3fafa1043a24b5d4'); -INSERT INTO messages VALUES(1317,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','58b4e25d6870d957925452376f02d78da275b68ac72577540eb63f3c8c55df13'); -INSERT INTO messages VALUES(1318,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','c5de6f4bbd1ef3e48d076ed72808968ade8fa609aeb0a47f412b0ab581b89ab2'); -INSERT INTO messages VALUES(1319,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','fee54e2c82f5c1d99c78ffb436e80c6067ae33d485718940d47c720d5f821d61'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','003b318ad6f3fb817b98be5c2c1c25dcee4bb0e1fdcb13dede9ba654a37141e3'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','5645ad674eabbf0f478524c856fed40616ff6f906e14522b75a1194a89a9e284'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'e7ccac37e572914bae84b772d9f1316423def15c058342ecbe8d4edf7cb1e612'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d93604ed0bd0f7710efb4f172ed7b28bd6c6add36597ac87b4709ddcdcae562a'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'31bbedddfb6bf6dc22cd7bc5b6b1586770b6d4bda24b9de4f0aa5c59abdd6a73'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ff4e04a1d9bbd84efca3252f89a31a1ef4b3072400139ef5540194e4052530d6'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','595339925744a1e36f2a1e762ccce73fca459a39183ccf73d2e3d5b54b5a720f'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a699663ff764af1f83b737bf5ad9caf891fb20b4b78cc075c34021e06e599711'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','97f2ea0b721a66bd252db6223a1508035cafeb2387389f9c59cfc84d7a7ed59f'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e8a3b2ef33d5862a923bfc27c5c6c754469b5ad49a3ca7514111a2eb524c5f61'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'bc296161dbe1f64834a4fc15dfeb29f34f50a1619fc9cd9078432ad0b02d442e'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff6bff671f11cfa1e9d08270dae356829bdf3b4a7b5a7490fc40e0dd908253b4'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a5951b94da45d2ab5954de6363315469a6d262a5670eed7f61b461908931270b'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','4f1c26ea4adfc7a5d036065e24a911d06ba95de8d9d83945b1e316c415ad72f6'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1455e883f0f5b991877872fba68ce5dd0848c912c67d3bae072fd39bf7290757'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9758d99b74e9a498d4be51effdf643a800fcb6c79b18b1fae731ce6c222d0e8'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'1bc4b92c40616d724de6cf9f544acfdf37c5cc1884cce09c448c3c69725a9844'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e625d315bac56f9d85844bcb9b5999ed081fadb5ce6c3ca5de17b3acf3942f3f'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'1529197882c6cee43d99310f3897b7495d8fb557ee8f9d6b31e401b7e27a1670'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddaf3adb7368bfbd0842c7ec3d1ffbc536c9dfcaf28b92047b9e13cd26cdea55'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'20e53542d8726035fe98a906c6d5a1c005c72f762bf31bdbdaea16dd949c6522'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4f9757ee1e943f3c5b577d47819a4f0e5c95137b2cac3c64ddc0cc6aca718e3'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'5bd380cacbf0b9e38db7dcaad2ac14261d8491a7c7da7d259ddee5654b461367'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'68bb7f9c4d20724eff4e75f74f41b77e599c68694f5c62ed4d70a68af9d4d93f'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'6f354be6ea3f752fada2ce0cfa036374193b72daaba137dbb67cd1e9d4576aa7'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'415b7fe80da5ccae4b8aac18c88d46e358f22cb3aabf6ba0576389d2aa66a807'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'5e3c5ed9e4e7611d097d478d3ac3cb5f3fdf01464a556e6f0c57b762054e8cc4'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66a436e0f332a8e7412a12af1468faae8a11022eaf9b048344f4474164557dc2'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'c56359a4b4396cf50ff124d6017fc0a2c18837d89adc096ee52dd8bf5ab11e47'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4001dd0628287bd209a1a258a278ec517f3baefc9d13f60bdb81534c85f3ef4e'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'c7669bbdf72cb23fab8b2e54969c4974ac8793b06a35a6baef64794c0b77bc4f'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947461d1a1098e144ce284860ade500a346032901cfcb061a70b55fdc69a6c85'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'171afa1146909cf9518f7d43052a51ae59534afbf3d732c06ebdc219540b4601'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa3b754d9d44124c4ad6ccbcfb89b65644cb9d63a7570de4548c245d3109eeed'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'b7d33b7ffea5b23e8dcf599baadc840c39fb706162c62223728189037327ed06'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386e7fd3b4bd4582dbafaea6cce970da8f83ccd8acdf5958d3383c38945fae17'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'98eacd907de1f462ec2294bcb5e8c8cf9a3aa7b3cae7fe53e98d4ae6e57d4d41'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b02b81b1831217317c6c83ba2707fb2dda0dca0b76d5ced5d9f4ee3a822b72'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'197fd9b45a0f86aafe80fec3e27fad316f69227fc42f5ae5a332275b092a3b63'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cace5c772c3a54e04c9d7ce8c07e76f881cd9faf3218c4ace531393b64afe5b'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'178ed3d8fba9b9cdf66f1014102e827f91d7b485181ce14ae47bc967b57eb7a9'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'efead171a53302d4208eaad19cd2b85e274ab6fbc0bb1e80fe1f26552cead4f6'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'67494ea21e679181ec7c27dede3ad0aad431073be62070b660bd99a42f3e7baa'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8b3d615ea7d3f1524aa4298404a06958c5ec96b593272077ff1c9a9060123719'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dde9e5229c84d263a108fc017f6543e9a2ef140de375986d610ce89468e908f'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a88fa915990ec3da3ea63df7068c9ef80fc4fc9abcac1cb53985527a862254b7'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'421aa14bdbc545cb71cd6de256dc4304a73195ef56ae5354eb6c8811d165e419'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4b6fafbb329231577f8042cf90ec953d7f07be40b215fcc0c489f632d5fbd5d2'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'42dfc5d21af17c4f23493ecc049c08a79831900cc3eb99e02bb8ff605e8c84be'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'a6b6a328219f5db213f3b38622fb198501c727b2362809d7ff9d645bc0be7f95'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d7513ccc6daa39401ba798f2bb000d160a2a9ab722a928ff16804972f6956d5'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'44296a650e83b9dfde852bd556f8100df3db3f2132bc0d0654e9feda0eff6ebc'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460260cf32220964efbd180348094e83c256e691c003702f2ac89df02bd05692'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'fbbdab7d892fad19e5542d1c5c97e1eb0bcb4a0cfc3942a9790e0440976120c0'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04c8e815e7b401c5be2c0526ad245b8da6617406033b6eef653bef5db619fb5'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'a166be05877341cd4b1a17f0e931f7e4e2bff819f51df803bb7fb3125565a83b'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d2bc745ffb6fc719b172d52cc58b64f2e4bd92e97e78acec222b731c9fdf855'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'d97663974dd1eb228f6b2414222b00b3acd85ede4e27121d0ba7525ba418eeac'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6e8a168952d7ee899dce75aeacefe21c14267044f0d04a39c87431f8996cddd'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'6052a562c93c943090b280c5c7dd2ab0756dc458918c122021a998124c7d9795'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5333a39b266e3663387c8f5d75a400ae40e6fd7aee3798f6ace3c7bd88aa3321'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'58909f770d50dbe365b1950748d7d3735b21b1923adea5163952b190f76394a4'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c219e51e272f104c32adf91ada0883599039c98f762a1c445d17d191471ebf6'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'999a883eaa71420cfdc958e95792a8a5b3d1362c54d623a103ace25f23e37b4a'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50363049ad1cd8a00ecf9e040164bc0fa19a480fbeb01956a5db159a9cb60966'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'68a35a74e1ae82fa8ba63f25b8792df0cc03294a93197761c978b49a61d6a41f'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c6334b0adb6811790818da49b49b8de4bb1b2fb90e9ffac73db2a6e8b160286'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'1293a66bb99ca96cdaf7d9b325011110860e41af5169a917ec2500d595f1df0f'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8ba68cab63d9c150a278c81448947c03dc52bf20ac912feacb79537ccb0cd33'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'6baa76ffc962a3d995c6519b7b11268f4e13b17ecc1d149d668cd3e4e7c2b6e0'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e73f843c3c9e23dde2f7e84086e07bbbec6edee5d8980cffe462a230fbf1640'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'45ba3b88c4c05fe02f693612eaafe404acbf7c3949866cf17da8e3940da73526'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95dd6aa199f429368a7aa3039606a00ea812ae24076c97d15a5de4270ba6614c'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'4c6a24b7d833853bff2d4ae825cf8db28085172ca4673e533663dd93b9c36725'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d9f5517cd4e6a02239ccbb8ecf2a4a3e44c9455bacedcb6b8c065834a339d49'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'1aedb07231b579180aee797b4b83c383445bd7ab02ac0619c3e945fc38aa5290'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83af295c62e68fba70083078e5d3f301a441d6aa99b613bd85cb8cac4e3fd4a2'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'fab093bad528eda03d2ef9bab85e02148af6a3d24a800b398d59be1dacb92273'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d564f3e67764690bccea40ba8e231b1e56b6410a67717c2456f6966a97425d09'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'9b48ae19957ae55e59e08901d714df39e4e1a02a7782c442aa67e8861c81556f'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39e455df5d7605c0cddf480edd79fc37c1ed4ea658a0907e83d5056e8ae1e4e'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'878e2b94eef585388b239a8bd68cbb7e756cc65ea458b372c5e2cd4c936be266'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86ea359f58c49992401e5afa61f828a172e93c3fbcfb02c9ad7769e782a584ee'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'318ff9cb17d162caa3a2bb363a3e1a4f0bda48dce81d89867933a00f8d19e994'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'457e1c10f7348df0a5677177d6ec16b6be773a5993822b435623a61c5843dea9'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'307a3d8b5fbed7fcceffd2033f58c8f4487ffdf5e04a004db4182343a6fab054'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e2cd4e914a449ee33b0a43e27490898a17d0ee1c31c67bb8edd4b6537fbc29b'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'2c533d0a50124e2f464b778fb10f46f2f91598d47d21d61b76e37e2c39f142db'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceb271d0492f204a12fd456023f5ed50ea8b68280e01005bbb218e23fa1ba9bb'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'ca2ac1164bfb00f6449c6f016d3dbe64cda89061ac27b6de7255e47f18776824'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573f8f1a17db184e1e2a01b1b516261d106f477a9bac850e4c33cffd492cd5c3'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'62b27be73fa05b519205e268cd3346b1b5f1d8ee334a642ba6d2f723bf6d14bf'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e112f80d68823df1c1199850f93595d53c2db20eef9e7a71de08a4e2cdf46593'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'e36af530e41af8da36000473689e2e06ea8e7be42360337d9d85c96f9d29e9eb'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e124b0852295b570d18011e60476981d6057aaba3816db454f29e0b046969b'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'7f17d86fe650c191694d2c41d71eb9697c2f615f0c9607cb61a738c96fec540b'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e82a123bfe849f027da2c17aa3b097597c4185cd21545f6488d114eb1f862b60'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'adef9c6a655eac8a735208f52609c8230976e9e42dcb817ba26f6e6d2c69e999'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'600bc063a6770631cafbfdc78b8a3e34e270f122f713016a40c1986ce4a3d823'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'942438eefb02a5cad1d5be739a85d6911f21e5bdbdcb4afa45ac22d06b7e524f'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e868524ec246a4d1b6d77bbd1be3d5269f3c6558d5b5e78574e12229ea00c1a3'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'6d8078736714939f880184c99e23d6ad8f7dd512f9ae7624aa302019b23cb392'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33f698d55c776440f75b494b394265cf4b011fde3cfbeb9190262548923cd36'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'10c2f847ead991f5369af03dba541cac5500a310062fbbc69e934d2728b4a9d4'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f59284a7b33e34959b23156277b4878fdc44de1143a5389251f3219f8dc32a35'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'647723c6bd98961bfd647e66bc1f630539da4b3b4b2416735077aa69edb51a12'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35a27aecbffa8dbed4892bf585a2945c046c90c6a0c6b99673b27cb12e2c3fc8'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'a462851f42ff4906922dce3d091eedf35723c4f77d45bff8c06a541b1229c53f'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdd5bdc48d3fdd4d31c609550c1164165e003f82e6207943af58f4fc5320aca1'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'d54b913c044160a4cd7ae4e2b256f4572a10ba2c16df671208216b7526387c0f'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e67967008befd4ab4596bbec1364ade01de0809b0f511723aedb23c22fedc6'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'a744ec7001e8d86cc3bbca9ab0beb6a12759387683aca8c05393825f76f9b0b2'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b55083488d2a7238266fea82cce8caec75b0418be66892681ffb0d13cfaf2ea'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'889ca209f44be5d96f741398a9b3cdd3993463ef5629b5d85e1e42de1e3aa096'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e35708cf19ce02b8758ef191e0129a6aefa6d07ca5b3f47b34a7ebafd543aadf'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'f437595f4d4cef21835666c52da1a80d7b6324ee52a3816d2c99ddf4632a4fb9'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de9afc52dcab4151f9c9f448a2394dd69861bb190807bd6dc87c073a73403f71'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'3c2b938737c9d6e08efdca0eb90079e7079e41cefe101467af1b5a035dc011a6'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13bf66816135055b06ed64611b89ccaf23a059685343a2bd6f9d8b961f0850c3'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'4551e20d9ff9778ab00c58a97579f0da1893406c64fb37e428a723e03cb9323a'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a488b6e7e3856d9bb43a4a8d238ed258fb3b0f1ddeb1ed3a87f9f25b24841825'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'c0b7bd08cea89a1b491ba675fd5855eacfc45f516e62b4c4ed6dcfbdaa0351b3'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c06bb6c0877e700c0050b39ce4d3645da8d6e161154fdd80420c1d2497232971'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'eeaf4beb264075470906f2c631ab6ba1b593a556670fabd814e7cb9bb4e21a1e'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f53f3158851aee38de16aa2a76b0eef5982e5993706c1ce1bcb860d9e992cd4d'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'797379ee9c14b9ccd872a5984928b1f59f419df1e0f3e15453bb56eeb1e65c3f'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea42a06b498de965b8f88f47cbd34e6c3bc1d7a35cc146d00781c0b0d56d26e6'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'b6da6af5df6785facdf7f3f26ea53770d16004ddf3c20fb2d960fcf62f5f1243'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'204990311c6f830955b666b92f02d29b2f88e24d648a22febb7e42930fcfc8fe'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'8e5df9ab64fcdae5b0fa00be0d4d355e5b0a19e00710c99678475543ceaa8f4b'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b8f394c91c4ed87649d6df685d0e3e60572636641f6aad1fb1d45dc358f98c'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'af0ee91a9707b59f72d6108e32fec1dd7680f8652911dca605c05987274c0d81'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92d4aba3caa43cf7bbf80c47dbe5743114e557fc50bb44fda78f29f9680831d4'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'ce1d24eb4722ec16bb6a50a58b36e0981d160858d83f91e47435d836e5b3dea2'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06a6604b251326090b9e725a55438cfcc2969f936c5c436b3c5ab3253c161c1e'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'62c37533f1cceea74cfe318373a194e84556c59f4dbf7557b686953bd276b3f9'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44fa2c2124b569e367b1ac8e89facd865869649103cea11c88f31aac54ea707f'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'29a788e782c9a7b3ca7e296f2654516e318c5fffe6868b81488380a39b16aa5c'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6a14780e075ff3ef444bd0cd4169241dfab93992fd3f1c633a5c1e4719d006c'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ad5eb4e4633ca96b2c5e3e7fbebf99f3871944d00957604f499e20c2449390e3'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83201abca19ae547683f8c8d8ead2cc7dd807efe78c81c29db5632a1d778903b'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'87d0f877c6321fbd4c2cd3a7b186a9a4143f6b665435499f3ffbc4f17cdcb0e1'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a343c2fa4c4aec117b381bdabc89d7a5a83e7c44204735bccd593cb53f064ec4'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'12b9494d8301ed830927553c2187bd9576774e83e1c11ad314b43816e9332385'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42a947034042df892bae46cf87785d6a05102c1c4c7ea90343e9c79dc17630e'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'84a42a87dd26a9c61cb57e5db757b07d431f2119d87f4fea658223f7d70e94a2'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40373084505c3bfeed5baf143df0854fd2479bb7e6b3ff78ca683b855ce23a2d'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'14c370b4ebb65d34eb8577b6cfdb4f29a53bdb5a6405544fdff6bb4b6d413eeb'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a365e90bd011bf44e17981808dc60092a03fcde583acb666d52061d20fb2d08b'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'f4397f970994f8c314dc6ba089fc8843333b6bae03dcb931283c81e55a0d7317'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15a690f86408afcafed8f8f61c4b99638e989aba51e785ffdbd80960fd82412'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'2276d35544c4bc0ba71994ca9fcc3e5dbefe66e35e53f542983860c66b44a35f'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f296aea4458ccb68b2b6d3ace936e9e746538bc3d00d34da49831b4facbf9f94'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'ad4fd0764c911819a05c41c0726baca5a27583868c4e9eaea9a4320832badfbf'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e8f305cd02a67ef3e42daf7536fea83400b5b2390ba86bace84fa435620a854'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'c986426435020150355b2c688e31a46933695f202da5ae558895be5c1f7e594f'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45692b86d50c5dfc0f15a42506a8385785e71a25db6f1a0ebb74cf3b107f4318'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'7a34a84046d890651843a8d1f68b0e9365de995c04edb65119de817065317a15'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bb5dc1e7bdb7ce66d71ff0fc80bacf5e9e9fb8c65770dd9e09f4d8d4b4db781'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'dd0af465db62462637b601c8cbb708d3d33f7a64be0a45873ae12e53cbdf460a'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12645ba3aafd49e5e791ba1a73e62b11888269c61c04ff61cb0fcdfd51c1d7e3'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'a2df3709affbebe220cdeae4689cfc785b4c5f01bca162da083b2d5f6f32bc24'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9051e63be76807537a0e63c034d81ae13badc03ebe824e7c340a1edf4eea100a'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'6f0a4f0c23b80ffa02a597e971b34566f626a470488ae5095b39cfc13eb5aa38'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c876bf3a97c56cb147be26f81e031b5ce3131081c2adab8de2d63ebd878cb40f'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'ffa97cec7e666b6d03f9d5bca205ad59908bf8d591c54ef0df876cc187f44dc8'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3bdacac1c332d8116b2f027dfe09f8b3beb4f043a19a928475bad69360daa'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'aa1b23e7dd2d9bf045d066add03a6578c94236598e90d085398a710e59270f2a'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f565d71513a4d6b0b79304d415d372b1564377d4d3be31409fe2df47ea9e1eba'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'1a001ac91c5c69d0d3773e9495512adc0d88d68240726129fee328ffdca964db'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c3f66c68660dcc968eae9dcd6421a77e6a7cfe69b7953c328504af55dfcc57c'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'60ac9c4208634ee32a86fa1f5bde0fc88115bc137d23bf3ea52def841bcbf399'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145bb5e6c7131237b090cf1e9d14fb2850b95814a7a80b437cfe8b9e3a95481f'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'18cfa8e4c19ff21f6a7a36996869fb8d3a121c58e7da3f63ec1d84c9373366ce'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad023bbf7c2cf45988a9134954b4a08e482d970f03bef160336808ba29fc78e9'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'d011f2fc21bc0ca9e843ed2294c21e102c73b569d006731ed6742a4aa1df8276'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aba8811fb3e87b7d818db5d9c82b3b5e11ad9c0f7db7d0977560b883c1625cd'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'023ac2c14c859722b5755b9d5488cce68eb500d2d1305f6fdf401a474e0fd90c'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cedd62f88bf15ed1ee57ebf84d5f77c3160f3c7c208582393a352b078bf9ca7'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'fe581083f8c833bddceabb65d92706da4987e404f960690ee34bf123c13418fb'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e359b4e6daf25511632be6849c900092dfbb1587a59566a6121c014f21285abc'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'2b5068cccbf894d2656d1c570162d11b9772619cf4f6a46c7d2b8ff295d64354'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1a656acb96ade2e91fc09d981f994916a956cbf7d9522fe3ac4b428b7effb96'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'d1036abdc5bbb8eead5b0456d4a0ca1cc74c8e7dc860dea4aa6c3268b59b2cb3'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8380022e9edbb2a3f3b33cc616a668d7afd6ba116c5d33a0c2662ae51a62713'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'35f0b9696be44c3f306fd87efd0102f9d7216e0a9b61f6d9e09d8f3f328c4101'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b6f46609e9c50e2a6c95c893f30810aba0ee1a5c5b6bdf615c0577667f952d8c'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'ef0d52247b39e6020b00f560f41d96a9ff0c25b440ac74d89bfbaa2572514470'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'a5923cd7766c1ee8cea0a8f4027ad881042ecd1528d603ab128b6200375bd509'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5285e2aaaada6e30919a9209e2d31a4fa48c86f824ac6485c90466b3bace4354'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'801ae54466eb54871bf3e93eaa1226138141becdce8a62eb4105f84499ddf406'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78472d4d486ed1c09d8811f86d8b90b8950e2282be768a5f61c07a6613fb54ce'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'d551c392a609b467d5311d95831546af20f5358a9f05d4a14b5a8e532b6771c4'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03f6cea83b49d534401d97f9c8c1633ff4110325fafcdbca6ccd41b6cfa9c6b6'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ca60ee15e1076eb64aadf99317f0d4a7e4ab955e78933da73651014ab6145dfe'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6abb9db3c96a10650ba4bb86f97ff42250fda1fec7031ba436c9dc311ca1a70'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'909ad9da9ee317fa1ede3877cec185ef56158738c0d02d060d812e66df1f33cd'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'704be20e23e38b20cb612176cbb0b7519fadb99ed348a3ce3b3405388b039678'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'feaaa30f4cb2526796a0d8422144c1b0ecf37a70b2443ea45d403ec74af6cbd6'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'027c84507b48637eaead8fb127509a7904ce3721f82cc3ea5d1aaa33d9427642'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'d19495326381811c85137ec123e110d5f5fa1ddde81ca6aebbd9d2a8d1da48a7'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f0f2013e12d2bc3690a0f65247b8c0645b604f09e64032ea130da1fa52dd0ba'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'2e7d5ffe756bdf073bc2c47e3850832681eeef7388b66832817436c739dcd742'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00789ef95cc349d5d9b30c88308be9fd7df97637c8398cd8735b689f460ea3b7'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'82819083bfd7e80818e422bf0d933ecedf2267d16cabbed59c238f63dad07c1f'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f21831fe0165013284f8de70e4f4fa257e6a8213af19321ed5844c99b7fbe39'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'559084bcf036807fb153331776c84fdea9e4151e8f80ddb659bd5ba20cc58f4b'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'febeb2e845b963a9d894a6ce2d6390abe8331ee55b6ba3bad83508f04f7cd620'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'d57058cdabe4f2b4293fcd03ce238a9a73c4ae6135bfad1f5605650161ccb640'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cb88624b94fad8dbc12ebe52f4af5b2d8fbdb53ea52c5b1852634425414cd1a'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'63de3682cbf600fcf8f71ed24b3729c6ceccdc769a3057d1c6b41ef139e0155c'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86b61256af3179bc85cb21e4cfeaf8ee9baefb604ae0461172aa0b4392b33749'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'cf55bd1532f3a0cf83153f4007068bcd3dc49cc9ac52eebafaf88596896443ac'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fb3f91200410053f1b6ce8877aa1271b2b1295a99019dd6979162856003963a'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'5f17b9733222f6a506f0e0b90d462425797645b18e63f54ed649a2fbfca146c4'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3c1336baaddee92afae07f006f41b1b4e2772ab99d97f843953abb37bbb6103'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'cbe7be68fb25d055ba83b78779db4c9397db5544d5194055f54cef81f8b34818'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49ae1080db94b9e5a287194942d95866d8c0b685af7a6ab3991c54dbe3093214'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'dd0bbed6fe1753889ef9c81dd3f6427434d8595f741e0eea789a3ceaa3deff16'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a997ad1980da7d674743c6bca6d497e6a5354d89b1b2a908927f1e0b715b2e48'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'c43d1ce44f4fa116596544dff8b935e1531da7891292b2c2b27924780296c90c'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6edbaf8cd97d48bea1c1e0be52680239bcbddd3843359790e9db54d73614542'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'7844595b57da168b9b2a41fe4ea5559d52ee416a8323e91a83a42280aa1f52d6'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf9921538a04fbbe1b8f6b5137ba42ed40f8d821cdee10f2af335b4d424c4ccb'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'5e765dfeaa8fbd4228ababded999d3ca9dfed1f52e6c900babdcf88dd7f217d4'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22bf8198fe2f31bd70881e346333dd4fb9ee642af8b94c9ad0029ace8eadc842'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'8cda5056ea9543c3afceae03fbd63b296a87bc6178f1bdb5518b89e6a800c048'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99b897a39e9b627ff885ac710ae41468bfcfe6ab05f02d2609393c25130f7c71'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'6b48f574ed8a5022163f379fa455b40d8f9da552d514cbf324af40f85fa9ed51'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfcdcc30d21950919baf2dd3959ef455706c388c46212dd2fc6dab9c2272a815'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'f98d20d9b43d54de282ca42d6cf47c6f742451825c355d4eb883357c0b23c620'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84778346e41afb1d6b479375e0960225a2b0b6beacd8e5a8a90d7998b04053c2'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'3e1386adfc6baf4942a0a0d9d72846d2992aad2646b99598dff1e93852af475d'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dedea01aa4e2b00624574f803ea3db965f1b3b31fc13e1570765ca360f9d33a'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'1318826db86121311fac27c11a1233b440b11ca604429f031fadd11c1e8d94b1'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c78a07736d85c2323333f4507ff1e37ba6bea2096466ada9a6e66737fc7c2c58'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'d8ad0d725cf6276016d641ed33e639d3d1c0d438ec23360373df83a3240ba617'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8010c0fb1584edfcc35adc8632c22805092dcbcb851702a59bfaf631d61792b3'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'a3416bf61ee38aaa029a1af3d0740bdd5e7853b6128910e21b726d9c86a18279'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9be71fba4807eb57edc3818277e994cae8157e8eec52275f6e6e0e5d0cd2a28'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'e06636ff3b8ca7e6bc183b4b351bfc8a79cdce1faf70bd53c4578989bd01c8ff'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef7ddfe2a6654256eb70060d9562896075529e14c667899576e92ee663b2d0c9'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'9899809feb32ec47d94d5458cc5eb62aa4b2f145f7444950d57501d61e5eb691'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dd1d8938a6e2f61dd3e4bc44885fd62ebaf9f3bfc7287e4f6b7b112261f7713'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'9285a75df13deea8e4cb1dedaa0421ffe1cbdb95e5bc73320800c7b88b022951'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08deb1a383453b52199dd2cf2084238d0eeba9d95ed1c56d3c34420f13bf03ac'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'42651147d49b80d9fc49663e6713980de90ff0dcc7de5c66250c8ae6a1a02525'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b852704eda5d40a25274f066f3f8246140794fee65b86d497f4120f10ae27ed0'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'f250aee77e43d5cf774945ba11b999b92423aa5b31f0d12d47ba2df2fe9b27bd'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9a8a4da01690cc498da88d68b9e7b567c32eff8f17819c835e26cbd373f9ce3'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'be96efe94bd27bd8a972ac2bf84ff30cfa61104e49c660cd79a996e9c259099a'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'758edc6b802501bf099e3b0b482cabc1255fbef9033fceaf1058cdeeba543342'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'aec8472eb14b5c193e16db2c13c550e59a47f0ea0bb22221be461c2292a92952'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3cc9a88aa9a2f6ec64b9c4e5d9eab1f4459b8e0242d1c27645c2c2dfb0ff806'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'b16ac908524cdd198ba8cffba13311e405ac2b5642d99918f4d8d964f098893f'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ec5096f59cdbd777466b99f027a694c71f76b866d262034610f2bb3783cee27'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'0bb12183be96eef52e7b1c9648cf9d72b16b49b663a8e71a155049a6bd2cc10f'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dc214c1d678394c2d9cf53c8b7b64e650245eb6b071b37ff5bddee365918b23'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'d8b514e206aaa05a6bdeed691719817a73e21b4a27071322fb1b5bca7ee2c738'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa6e34851c6eff6109f83ed198b042483a08c93329c96e46546c0bc24a714e3b'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'2a4f251a95e638ad6b4f12531577f90a30ca6603ff9f02e1f99374f52f18b306'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ccd688ad2dcdf1331a536374b004bb957217047ee8fa0e188e2a29781eb388d'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'600c84cb36e14a7f20e2f449313255ed35e2ed7e2a7e1df0740e937ae83318d9'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b7a67b2434ca05375e2b0a63eab52fa9f6d0099d28a419c4654daf4ab8fe59'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'3abb4b8b1a1b0d558d1047f99c115b28c8309a56e18f9016e9db1685f06aea8b'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'473ecd7d7d48556a7b9f98eebc98f1edddc2feefe2e2f64aeba45fe85be95e5f'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'8b6f679b5e798b6a96f952ed5df17d7e6f11649e77d4af9f05d9f49ce51fdb13'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca5c388317f78f1c4e0ae76a816a5309892d0d14ea36664aa5caab48a37cca6'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'f9bae0d36b8952496787b7f3255e0dd854df854048bfd5667fd81fef2ef768b4'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cc19a4ea5dd4889b8c29c37f597f4abff7424b0ef65fa6475a6a6ac0890882b'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'7107a772c5ed00a55ac1f2d945b35624f941266be2d7a763823154273f1e4e48'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ca0a1d983669c2151c43d38faec6ba1aa7d9c6e012f5c9d90917cc3c244978'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'a1d2d7fdc2d331880c2848dbf7f178b7bf881ec23c6acd0f22218d802ae92ced'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c143b5247124971dff1eee7fe8127017df448f3bf4477a0b5863d54b7bc67ff6'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'1f6f53d4d828aa062eac1a35a67b9ad5ae92afd069cc813ea6834bbd0b526b00'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb8987b4f808accb2b71ad92198da5dae256f9aef7ebad3736cd2f7ff581271f'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'8880377fc08bbfff5869666e891d407b3e2aeffc74a0f083644054f8dc060d5c'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc9cb13827545f4f6fb03e70c7655bd86ff6a281f537c6089ae750d63d4d769d'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'557af1d24afbc2017583176185a44190f45d7f95fb3d8b0e6f10e0e26223c997'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a64930adfea6fa2f8aa0b99eee381e2ce3c2d606cfadaa9bcff7aa7ea10e601'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'95b9e21d9a3aeccd5e2594c1f93c60523afa6c30e5d1d31e30abb650dde23f95'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d086e58b340d3d5be20c6dae15426391b7d84dd78afe16b8c336797809625e35'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'c13e4e3ffd25768aaf356d5fbce5e3b77b18f4d5b81bb024d95bb71c26bf5e71'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e19ae53f4b30d17f942d05e4423591bcc92d685a19a0157506d0f99073ec9937'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'d2703560e37419b9cf0011a5fa7b53b1d7a56a36fcb5511eba63c284ccab1930'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5586c9838dc4dafbfa90f09521fd5471862352bd335b5dc70b5cb1f160be7c99'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'f95ee2c1ffb1221b94711995cd681cf312bbc0d42a2a8b52a6f7de1f97fb3e0d'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4798bda5230820e05bcd3cf965b07c2c1609b9aee6642cce830c9edaa44dc5a'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'5e12519e23383f7ed600c996c3e449f849a81fa55ec31dd0672c096b30319bb4'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc3c3624c88a029e410228b835ee39f7f4056379c3191192af984cb7172badc7'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'b7925cad900c9a19442496f70b46e4ec5a3faa592801323214de2fe2f7f944cd'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d40c0ba533e22cb8e1c552a786ba178468338d4b290d75126b8e0730d945b9e'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'087e87a26f7dad8805a6e76fc4e7b5def5d6f9b86dcb58e458a23708fcc220e2'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'974a250410e6defa9f885752c1b93eab2337becd3f2c0221a85d783acf273742'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'928c328918565de06a39112bcd03ac1aaf85b845199ea657462756317c535df3'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45163c8afcbcf3ed65efd91d31c9fa1cad0ad8de2f97e907549c517c7609810f'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'2097a05b52b2e7a8030820b146d898e047603fd998d656b919da9c47c6295f48'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3aaeb7b93716439d61a4cd2afb9738d991e1e4b91ba422ff0721d600cce5419'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'cf6b9cfb20f6825854fe0a8c5851d8c4231c4759ca0bf1e771514abb897092c8'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8b4ea9feeee8dd9981e832c52a4291f713e8dbabd8e552a1fd34ae6fff968b7'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'ff5d5539d3dcfb2eaf5259c083a5a42418d131632cb989cb765c2c6590dea5bc'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32e817e0ccb842619c87e6d16cc8316dd2615dfbfe0a277108f1e34a1f4ffdad'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'a216a0fdfbb0a9143abd428075ed0e166d4a6c4c9e81a0a66077b9f19445ac4c'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4281ea394558294f441026c2530217e5bbe03fdd875c44af26870057650e9ee'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'8300e43df399e62d283bb364a02a6e9e217b65603de0ef67ea06781e5be9b13e'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1fc7adfc95765aa0f1842086edaf581ef5f9040bbcf4077648bffb00000a62e'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'2cf56b9c05d53cd3b4b3eae3eece1a2cf96d475c1cad38912c06f8c838809914'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcceb51b1a8dc20a63f46e16b1d4096a74b4d257c9e7d2aedfb1de42fb056335'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'af3f668740ec1d3f795baf6c12f394081d9d23af2b727738e117eb5ad2980374'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61510491528b5b0d2a970135e42f8d37aa7664e709b6b42ed16302b2c1b2ac55'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'d90ced88554ac4974236288f742e4e9e7e41421a388316351e85c816b88583d3'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c12ff6777664765114f3cf779b74e82fdb6a0bc855e54cf4c2ad9433061eb17'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'c4cf096bddfb3bd0f3f8e4391f1943c90478b34c466a903d1d5026f26d4cada7'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87569bbf8121faf591b0b9e9bab1dfe33c49f19bcb8833c6b547cfe52adba478'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'e5ad144c09b99104e13e676eb4dd2d11ccff37b605a8df727cb3a9858599359c'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33f9b03a9090f62b7f883612033f16a1bf1e6e0d5ea0607a44872c3d55e26a9'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'88e58aa9660dc85d114d69f3043bcc92fc3f352f13a75c17f3fd7f8ad6fbc314'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3eb982f328d766820ee4dc911d325e520f1ab8fc783eab8af99c1a64239d761'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'9f595d7738eec18b6723e89b72966be4a478ba953fcd1412f6ee63e7a1379c7d'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4a195622ff42f76b8fe9349730efdfa04a9389b02265801331306bbee117536'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'c18c56b477b17f96838fcff16af8e1ba5c599bc9dc6e2212336a3f155a8d84a5'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'080abb16e83db84a4cc962ff9e575aba06bcdb92e0d9bc0452fe502cf53e8d01'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'301b3db34f00a6a64c4a77d2109f5bc141600f52401e86195a8acd385013e316'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfc9c0d72b18a454248d9c9347b3d51ced8985c0c22125286eaf62581a77218c'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1d1df3588875ecd1c843dcbb66aaf3ea343e5aafe4f6b93903033e4c9024d523'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b0bdb1b52dae1bf37ab9915e848d479600aaf33792bb2582a59e09e3daccca'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'236026c1990e3c8a71b88a82c0e9e2ca41913c0d768cea858de0b68e19162be6'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0201b4ca9e094d21f6d4f0ed487d89ed00adb150034595834d297243c8020f'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'702dac81f9f4e5142bc15eefef4dc850a751c8f23df47c3b0391c1d3122be377'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f290621d79357ba8e4757c16e0257f63f2540981388a85d1d9fc1aad7371daaa'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'b6a72daadd0489fde4dbf0c77aa1e63205b9b312c1368a44a18965e94c6838d5'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b9b60bb41e786daaf14f1d0675fcb92ef8e68c4097741fa4f054da225f0f69'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'c7bd3ef2513273eb7c4c1e94857a9455c1ae2c0eeb44f7a3120cc7e3458d8dc7'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f608f13836c32fde4dc7723d7a0df8afd979ba62a29fbe4098173483fe79d9'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'dbf56f6ddb1678f35b0975dfa08ffa2dad2cb28f174df7f172eee9bb4eb767f7'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb1c88c2551c8c3c05fe734847a4ebec6a0f610062f53fa61330b99d69709697'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'8d727e681a11af0b5f260179544e672f08701190310e92ae78d20e6a6f827fb1'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeece97be2bbd356b70b3bcee402336a4940b06f610ebcae1603c271d1b5b6e4'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'817b042f1b28b2808a994f8232358e842e702ae2f78b7dba9816b7c6e6e15774'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c0fa8ae144d2de322f873a788c096fa0aef18507e69e4fe8eb3531035aca20a'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'c9cd4dd7d9556564d4dd677da8aacfd9c37915dab2dd7e726dabbbffc523b239'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc394a9b1cd77143534e952f494726a1afc0439e28b523467d2a1d6d408b70d'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'7d51f32a93a76bb4df6b6fff54de276b7c0e3545f98ac453d30cd4ccc3a3351c'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'decede98cf8e799022a3bcf6450ff6fa0b8c6d38d2c91942f62d6c5a21042233'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'4fa8eb31218eeeea636de5960799db9095871bd7c02cb1d86bcaadcd080ab689'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e28eb63fdf643671b5c2adc77949f27a2370341136b90f769dfc297b0b3e569'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'2f96c0288fa0bce5c4cc9a494ac6ae425553fd7bdc098e3200731c8d1cc1c8f9'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'113dc40a9f0fbcac361bf35f72ccc822cfdd4836b63e2da2f48493e7c2252bf4'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'7e3061d8dd5adaa21b6279e9e3d6d5971967364b9525d40367d960338ad6f14e'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68b61abd32b680f1546602460bd31adabcae424f60246c8f245d212043c585e9'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'7b9b7acf72558bd335ac4e790849ba725f17952d25ee9d19bd93e0d1623cea4d'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9dc3be9d4d23d374615fcaa93839605d533cd509078f7a8b2c53038d3d49c4d'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'c0bf00bbb6ed2349cddc979ff5f72bae0d40cf3a881175f96a81825990bc4560'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a4f71afe4c125652f5951c376844aadc8f466c8746bbd98e9881492ac095b6'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'223b8bcb825d0e9053a42d989e673687f8d02d351acff28c6663b55609fc2859'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a704bb75c556635b8e87902d390d4521945e88b1ae902fc25011a045bf0e780'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'71fd1a125efe5a5480a99fbad561b735ff41da1affe51167730b151c432c3f27'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'186ac25fffd6a3f18b7a91c87f075129899e484ff1935165f27f9a7ba1fc8fa5'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'1c018a05eb95432dbbe5f52a94d6ba8b7d85d653a99c61153e3f81c32f46fc42'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b05ddf3b853e2f4fe95a026a2296fe4ae7bff7ee08972ac6ce0594e7c6d7d2'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'44f6c7ef0a18ca3bcd2177a5041d4bff3fcbfd4e965d9da8df79c9ddbc7ac5bf'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57bd6b8b984269415a0a1109130a7aced56b3779ac6575314d57b5968e576992'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'8be43e50e50443bd1799b37afd36c10a3b7a4ba682ae36f441927e0df0eecca9'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b8ff6590ce240e305cbd2c840ca23fc2e09bf4c2ca1eb7ad2b1df983e0e1c7d'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7751fd491994f95e368109f2bdba96e3393945b8071262f2ed4c88ab8e63f0c7'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4bb5d987d85954dd93cd155740c3911b00014e5618bfa4fc26358e1c727e406'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'f878d9044f24403cf596a25c9866e34c949f911294b49630835d4ff4455d2bee'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871fb8e3828fef4f3b69b7dcf98549fa6d39937d5eafa2cd3a3d84bb908e3ef6'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'1e74a01985cf2b82870850992e3ec0ccf40f02a41526737362059fcec979665b'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7d62255d5833b8606f7999a451136b54630ac73054cc3c964cd1f0a848968f0'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'6a1157a582689f910bf2bdb15b8d5479f055036654bf55f2ed66f7d70e54658d'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29414d486a5107797a2fa3e34abc5699f654afabe221bcaebd1b4c30c77f118e'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'b24d5e5548f06806034606fca289b157ddf2031cdad79e4401c6c4e290a5afb6'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9db134aab03fbc0af2f8556bfb1fe8986a8f1c1cbd1af316fd911c4a90bc669b'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'9102eb296905076f8cd9762aa043c355ef860610814231af9d29d49fbe98b350'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82febf89223154354ffea4f987cababa921b2f61dc4e5d22c2e66c734272c0f8'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'7b6e38eee29ddc863f342496997d4d176c3c193316c14abd0770ea84168ebb0d'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a2d651110c66e4806461aa8482b9bef5cb0e1b57f15f469e0bd31748b9beea'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'b2ba63c4bfba3c71b88a085978880954eaed88cad1a4676dd122bcea6b714a27'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abfa267384c935e704f746fd5f9130ee5be438418d8fdade427b133b09b49681'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'ae5918247a93df0bc8f40e724a728ded533e4173e4107f576034398170c20e1c'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8635a5d4bbc47d72f4677350712b4ebd1619d9586482f404fe9132da89dd403f'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'10815edb1fbd3bbc4a184cb1c268999a1cac6ffbade57e22dbf2316bf636225c'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b78a858c8ef5c41550808721e7bfbefebcea058b07f4a283f93e66f79b472227'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'6c22e013ee1c068dbac9aa741aaa1c172c1f149d0615183a4cfd6231a2e8bc59'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d96d6c114d9aca626aaa9ecd97da2bab8700b67f4df750f033b5587f96272f3a'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'2fd72834877b83e65375b09836083fe1e39807501ed9a879f4ff8e0c6bf637dc'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21fdbe2a2156d026e5e0b08bbf808e1a23cd77eb47b10e2fe05c96cd9c5039ea'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'f92d913e16ff4a336d2ef20d99cff94267be95f9adc07ce221f624416212ad73'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41afcdabb35ba4fcf29cf0ddd4f41d76f15ad20b46129c04599888001bb96cf8'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'cdc7c7af4423e30570f1c16d56cc45965eaf7e9ccea5bac01c7d54084f761429'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da489bc528d5b94c41b938361e325fad26ccbfcea66512ab93d3e360f2e4543c'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'faa7c534a2f269c47ed521125f0f0d3193bafb20be2a5bab589b376e0529a87e'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2479b718d60fc7c1d8e3cb6cc0cae812d5842dcb2496bfea56aaf281de1825'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'653637369c7eee89df85bbe940bd7dcf9e1b22db79760b20972f63243cb921c2'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16a43199c94515468346e9a23dcbf9187952e77cb2984f165a5f34e37721fbe'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'ecda8e1a989b6963a4b53e8e21039f7867b38dfe6020fb776bf73afaea64921a'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac5978bca25a97c9fffe1bfad81dfc47eb251b9008e0970c8b3b656b8b66ae38'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'fa9b7e385cb1c6ac2f0f30f36a5dfafb2c197f387fde183d0de09e62a23e3de1'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27faba44fcf336ca3a4dc43d11e4a2e20bcfbdaa7edf20fb2f47020a60343f51'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'78563ecd61311a0d3c58f73b10b8315531500f90e574c7762169c253273ee57f'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59e7a8cf2bce9b04109835d493e03d79e612139ec5373356646fe4ac4acead2c'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'ab9cbddeef0ec6238b801110a241a4ea54391952bbdd68c98fa1022ff425ac8b'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c5c3fa4603789ec0589d734dbb0588d3af2d56bc3c6febb8fc865fd5187836'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'ecf5ded13674a94bc13e9246076025047de75ea1653f8496b42d92546856fbd2'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f042e22c5995602cf5dc7d29dda74a27c5265f921c45e1974dcb8d10e11a6fc9'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'06db022189b7650549c4400f6f776283435fabb1572e79f4f979cc91b41c91a4'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77ae646c3924ee2722490da742435e08c45920b8ffe89b5cd77bd8031bd2ac8f'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'6c9c94e1f5eb797422a18ef5a68f71acec1b221a57926b1164d08abd08c71e9a'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41153eac52c3c57bd96d507a516796b797d6e7b23f1a3364fa9dad2e2636c859'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'03baebc0ec312e935fece52fded073b92e15903e84cfa007600d2d53620124b7'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc2f39fbdaa05e839c98f107cc6f590ec32827f00ae787e85aeeb9cf5870f188'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'a67f474d4b232e389a8c8bfbf36419aca577081deaa2f6bf1d1e1d21c6461677'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'652219318a210bb6b5f50a5d9e8aeeae1ee414367f65bd016a759872289de508'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'4403c489ecab18b429700a3bea1c71f720c0c149f1030dd50e3e58790d335846'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82e90a84cea8c462f787d8b7a2c5f46e156ad0c94340671feb41d16c2db6461a'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'b186094d3b4f3532ab157fced1068f83722bed6babcf00e698d4da98a0b4c918'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d6eee2ea836efb2e6712f661762cdc36f877bfa1531572d1fe6f98c58f5e4c'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'fedce5d97e17f27770b0093b4c37deaa145b777afe9ffb057cc2d02664686ee6'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','140bf5b2475904227e0e65d6592d1d8eacb0781ad988421e3b2a9ad1ebb083ea'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','04bdad18f478c96059f6c8c2e9187835a90a6ade565ea87c502704c87f5c69a1'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','98c4c60a2f40fec9806208ad801134e4ab63dcc95bfdc00542cb6943f6d72dec'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','03d4c6565b44dd849699eb148f8a9f6ab543790f11f542ec272734783ee53362'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2eef7ba0ae0805a2560687c1574464bb110baadaa812bdbf60378b1a9a2ddbc'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'2fec3fa9cbd9c4463a92770f3a38f2ab4a4d265838dee43a2825dc9a151ea8c2'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f192a296014cb70f9c697afee97357c7f1b53ba1863c11375e79cf397bb1bfc4'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'2177838c6cdd3872b1008bd06ae37e651933172c767ea3d7712e928a5ef35b22'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','ef64263c51ea4e5b45d6056f17614f1a334fedfa3a4ec7033fb556e8de387ae7'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','cc08f3fd5de807f51c98fabb0d3fd08749ce48052e8291988a64df60cc69fe85'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','80647d88de18c602b3d282c79889a42989fa1582c06fb4ac7591057752ddcf68'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','116532d00e5afacb9193ca83f1145cf7312edd613047fd80784aeb2607b0092f'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','47c52e83dc9c5c5212e182fa4e233f43f40fa7d298263ba221791d0a7d682d49'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','51579469fb47898d0483fc7f5ba1fc26e7ee7bd523764d7f97630a7786bd9374'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','40bf90d8767de7944c7d20ebbd8c4df074a9c9dcd69fa375cb154287c118ccd4'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'a12cdc26b9a9ae3184b5d44cc32c42417a0db58c5f99a9b884a783f822644a26'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'087553f31756717aca70b577bf348e0eec27e667605fdb64cdfd8769c1b1bca4'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'f449677361e4649854cf88f1296f82744ed2b939c30ba10691ab908b2b3787fb'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e288c04e49a1fff89bffd99af91dae092d8daab6bba7e37a83c7d969b522cea6'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25036928431287f2fbd330e22f76b69189e9225402535335ada408c94de32477'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','355b8b87190d2c2d197c4e3aa264de53057a1a239912b2a0ca828a0e0d562219'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','5bd167d53372bcc4c370f74fdf11d2e05a87c9869a262b527f14893d4254864e'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','8c4390eb3630317351136becc5ca76c3a666188cd4abd1c754f5b62cf70aab38'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'f179790d9f375a9be2c977abe8259c4b4282e309ccb133391d19fffa7b014d60'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1a9ad4444a7c85359b8d57fd712f9dddf75bf18f96c817bcfd277b2f70c86ba'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'689546e238c43d0b891e2ff951eb86259c5bf0487ed9d0936b4c60459c357a8b'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a38a4f14f0aca5adad629289b9d1fc7ec6b58ac580574ac9470383b05b0669a1'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5db249297b2db24d453024d8c1c029da2685aef3ac84c1cbc358e16ded07c4a9'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','66a21dcfbd3a41853bdd3a20cb2f2242751605eab5ee7d10d3227ca81a2d39b0'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'182a2db689de148dd3c935bc2056d704e9c15824b6d6840aef7f3a05411a5212'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51ce335b2ee38ec9014bf767dd5d97db28c0d78dac5f6bbc031dbf583ddfa60'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'35a02abe7387b12570ae485c8f20d0b7b849d6443b93e3450ec44e5246edbc91'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11d7c8a437b3fd3357ab0bf6a6f147dbada1b4279415ce9e791465344c8d6776'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'83c568ccb68fe2740340883f55c66ae513e690c2cdc64f0f2591c7d113bbfb26'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'815feca8dd866b0205c0ce30e42b0f70964d0586920223f3ac63292cd2be19d8'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9eaf66e69e8a4a42d09fc7deafd207d55cc6e5d22f47ae6186e9f6e8c55009b8'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'69f1493de9d1aa679053acd48ca718f0bf595243e5f479a47cd226c1f3efee56'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'a95d2419ab7a632361f32ba1a05a1dc656461cf5442f453bf3c88cdcac63deba'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f1217d41c94fbd865d16b9c98db2f3daf50f2c837291ec8aa3e9bd3e36544ef5'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'a2a49facd30133d09c5241dbb526887cdf64efbf10e45c6531a8deef40e26f99'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9851b2a86dfdf9aa110ecccfcf6e57c4e7c71b981151b1f7a004cfbb085ad957'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'b7855d2547befe39c94e4cfb0335b03c374e187d96648320739dba49665f4686'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9a59f248e3046e4d9d5d7aa351fc91fecba5c5ab49e3ecfe5379974e42089b'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'220779ce6dd7f71a2bdb00c948e3892cc0d30f3b4da7986f37799110b0e6cc78'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbab97615249d2ae8b990fe82f9e2d7c0d9fa59d0b4609944a548cd8d041865'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'0be55e945707f7d23a9cba6a55940065726467276d1ca7366d046c3d6e9b0c54'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d82f918ebbf06607f76042e5a45d327885eb44307b6f05f0ea698c135e7c107'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'9070bae6f4cc11c28520d4c5d78552140de8088ae0131861053da8b3aaab7bb0'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa4739fc041689c0e6ca003b90228f1b89f881dec60034b76ae7a4c8eaec9a5f'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'2ad876d57d4d751ad30a60b666b876e716b8add9e66264abebd7cb79d9fa49ec'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92588974c30e9ac18a512c4698cb2240c329e2ee60162d88acfd2de79219b18c'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'e418c63163332b5387f8c832183e8ebcf7f0dac30c05990648d7afb0ecc8b44c'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ab78202f425b92d2ceba8fffdaafa462aa86d81a75c4aaf36e939500dc3c5e'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'8f5f37b1d98039470a730c697e496b946d26faafa8de441d1a959e4db9911498'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'64f5d7b6861ab7fc5051a09572f8264586c3ec65a2c4b997bc2f201fa0b099dc'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'43d2d99db36ab6db505f3e520a18e4c27637a90888e29868b24f516d6beb39e2'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8d9f1087250a7bcb664d946b2a9c7814270f51ead69848db6ae31c0bab1f3e35'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c8f6c0517d573538d691a880d76972fe9095b75df661b9d6f98f68b41264184d'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'3b50aa0dda892945374c10ea288d32fc79bd72d7621b5b3a33cf037da1486bea'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34d6e9995bcdce8744528324bc83a014f050ed932fc5bd9be1acbf86c70c5e77'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4df5825df1b007b3866307d453f688cd2d8d0a6697be9ed1161d07e6aa240629'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'354d6e3ad12602ea6a7d6f4815ee65a9a5ebbb6b7885ecd6d08394a8226c2116'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'70c8b1a4ae53695674caee7d6c5b7b938c4fb87d42d5e54d468b72f7f3ea450b'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d578c12cc7a4c1aa85aa79158731060d30796b6933ec038be2febab5f7d556f2'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'75001fc6ec67a800645d1080ae232359a040d479d23f1c18df03e3b489fd015d'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'676d1abb8d37dd15b07326bc4a167e7bea973ca2943be6bfce60171ff9c69363'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'796067b040eaa2668a46eff5bf6b3a1e05f3bb32c2f696bb102d812d0bac4829'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78b54d2eeeb55882d5f07631bbd4bf24b9b9fad8acabb391c8944095302f2a2d'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'1dca4831e938070c38e8a4ca5d89e167cbfd1092570b1e00ccf6939b9745b041'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b1f75e881ffecf6f2b61e50d64062b75d9f6dd52a745ff05b7bd7935fd5e94f'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'94b2a97a82d4ab9cb090adc49c7de73acf348e84c0b12ff5c05257143f1b476e'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cecddec3beeb21e1238a271a4a3eb8e62440dc887a0c0a1882d9e07780fca6fe'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'174998a2e98939252e112e02f2e3a2a6739ab8a3d928ced7ad7341372b0ad739'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55e2fb87db48e676adfa7425267cea1c5a922bf640eed223ee63ece9e7f0a46c'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'b0f981db5b32f914a667b16df2b627e99534503e6afff840f88b3e2e3c8aee16'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd8f912fd4602d7010d32f423da6a64b7bf66a32be2e40360cc60d4f4b4daca'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'8a6e4501fcdf7a66cc45a7dc57975274b52757574141f8d2c2a5afbc795a01ab'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d68b3bab81fd55d891dff4f99017585333cb95e737cc53e61040f3975fbc6d9'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'d26209a408ea17f92216ad50c621b87c4ccc9bbbf2acc71dbd98f4adfffd0ac4'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec5e9413b1952f5ed58c3af77507d1fdc5ea46e9457f77b812ffc4a2bf85b00f'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'be90b6900950b661fb6f4a123514a75ba8e33fe4be76e9a6052f2d38b475d2c9'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2eda0b665d44b8b399ced3acbd2d3b4f0bb7b70d1e129a22328d9d8ba1584716'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'7d65dd39c71e0734bfe55a5239f281b22262e7865060c1e4a13784b76b665766'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e36c3d4216528e1c004a8dd9c6be583a6f294a2b4cf2e821db36e9b9a7b6fe'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'86627614b7dc7733903da2778a3a386c930c6cd21d04281033e793b78f63b35a'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'004ce2af34ca79fd92517dc1b7bfe0779f8652bfda7f42acfd9b640faa9d41b4'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'68661a58e997ccee6b1961c33e63ce7cea440acc10d8cd3afd3d87055e0f821d'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eac4a7cfd91cb875886bef3b81e819ae9a429b253adf71004b998e0e3a54981'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'8cba2a63811e6b9a078777a9e5b5ddd280541a10e1293efcad971d1a2ab275ec'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07a59d936d46c649c6d839d1415a35ad494a10147ed4de4f2857882e7eba87aa'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'b65c22b469b836c19d0612d9ec686841f305d159a526828904e72a23b136eff6'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d018fa55c00c15683eb604a3ab41a6c5a8885ccac602cf6d4ef8143350a84766'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'aea71ecf210634e0fa4e329277f6f35d58be44b0f8ae21d5146322d703cce0d4'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60993ba447732a3941ce6350344d8acea8a6a6a41cb02b7380aa2a63ecd4f0ed'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'45b675f9966fc688eb5166b5f5fdbf4eb1f48fbc38c9215aa2e25d5b4651f691'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b478df1fdac43f989e70ed7ef934f94587c01cf5081932fa4ae7496fe99f0ac9'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'b7e19ba9875b420b3961ae80529a3a903027d7e4d0e80712e3e8bcc1d86e00b8'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c58c31dedf3b36e566a0aa95d7220a556ed4767786c33648c2ae777e0ecd52'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'e7b2d6b21375bf1df5a68d41e32be5d63f101745a44b5f95535278d0891c4ca2'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b554c6adb80757f7464f5a2ccd9313b2e43828d772e43d6c8195130a4d4997a'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'4d34d4703c7cbe95f065da0e2636c641af99de40c0ebcd58e2dcb6c6e737d29b'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9754924e7f01a37e6ad4c7247af4a8894eb8ba9c2f59ee679d965508798fbd'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'a27d5e0c1c56a089610505b6594cf7771324f74c950a5784ff491f8fe06d123a'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a47378182cc033d3e8af459ad83ed9ca3572706808ff3d9956dbb516ed0aeb2'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'3e1c7446c622f61d59c238f327a9e01617dbaacb16e310d55ad53cea03b10122'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08a238de5702b183fc695e6f9be13bf6b7a9a0014779b02b03ecd29f7f368638'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'7df5db6e5d277f915f5a779208f69de033944563da10927c0ac249260489178a'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c2cd6e0e274f5474e9cdf09564ddb3cd44b6a59a1a2b72aaf2039980f199ac2'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'3b2be43a38836641bf2b47c02ba9c3847a0eec46f87fc8ccf13b047f06ed76f7'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ce78f7e956eddb1b5bdf23c6867c9068e5e0165bae02a2f6bdc1e72e4d506e'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'addfb57d50709661a689a33e9818da670809cc176147ff19e5a6394cc750ff17'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7037cb7ba1a55199df5caec2b8d288e3ce9168447c00a665d581c8f8337231ba'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'247006b50d9bdc98b3d80759d4c31a46356ef2cd3f15b3fb9f4379238c775742'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'467bf5b6bec3e941d31f25102a0beb161c5c5a5054cf43de72062f0906dd56fb'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'774605698501e13c9b619b6b0ab45d4d9edbcd8b1b03dac6dce3646d194f931f'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4f687c495e019625ac8b512c98a0584869d63000f4a06eceae1739796ea407f'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'f8a4ce8646fdf43a2e0db91209282eac1fad600cf50c99d5cfdb3464ed53dfe7'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'304302a7e3222d6840054bee1598edb9b88cfe8296d63bb4b9660262efd3858b'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'04b66e6ea02a045ab86ccfa58412ff30079b0ffdf216c5b0940823e9696b18be'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f620a865f7f9508d3924815e157abb0a613ef68d52294dc199cf4eee7cb2d45'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'dac2b4314c3b4e9d9230dfab569f04d521e68799a4b0e2ddc6779af7233856ee'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'271323f1969a85a5eea94b6fa37a52d15808e951450b96b66464a35252e43466'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'f0532cfe193da1d6fb648f54007e1ff16aa1c49fb5bd68412be0a5fea55947df'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b302fd3f8f7e96553395401c37035581ae6d417a36a7da09c78940d31a8b50b'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'7b36da9d8af8a48dc920970925b7806e1f03071d51ce059c4b2fb5b9f298d5ce'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de73bfc88f3713e884709349d760b54debcf7b397d74937f82c92bb3f4b2734d'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'b4b9857e602c278073eb3ab15683454a45b07c5d7c6fb039f29436c352e9003f'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f92b520a5e1a273bc75270b782a9fa0fd88a33b07cc3215f2032a049be98f6'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'822549aa462e3606cabd4f19a53f310b1c7c962f256204ed849e504ebc04e7d8'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dfab8d50b13425a4c6f42827bde13c99d799f03316ac7ea553c2fec3fd4106d'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'7cffd256dd87ac4c980b321807fc6e0b4b0fc0e853033efe6bb782de8b3f1416'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbe9dfeea1460b11c0f2c8037bc9d92f2a98ad34fa81762f5fa33dee68394d1c'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'7e3d7cd5f0789c4668a4ec447c53050c0955b6dc14b99814d69db16c8782088b'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f72eb1907288a620cb4813994b61cbdb1ca5a5129f0ad46aa504885f38c0d4d'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'5e35ceae2da9dd76ed4fa47c3edd850ccf6a8982b72f0203dc7c24ab44feb8c0'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f541c9d9367d06a678b0a86990bdbfdb12a6ecfe2cc43cfbc2dc80e35001e60e'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'f2d439026119f1e01da9d28e2851feda077f1aca6b41b923c4565e3a04697782'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bff0d72fa908dea66e178001f6cc8e104d178adf8510217a22032ad349d667'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'0fe630329cf5bb35596189225661e0f85b55fcafa56f3c12d91de112a70f7547'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac75cc8ee15fdc9a0957b67fe2c3998bacc5b5b733abac2fb496424d85b522be'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'954e881629034c50b1df1d9bb1483b8c77113c7136e8073c2ae3663baf3efd50'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902cbf43dc8f38da2718765d47f9d9c5f3cf3dd6d810e873090446f78c7c2a51'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'5568f051efeb11356a2b24943eb50d75b58e4d0b94666feddfb5d6a96c8f670a'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f54f356c9ea7c6cdc618703ac0c82c4772baa0a3a6be5520395d33386d035770'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'4387f4e6750bcf459b669d4bd56e6922012707ff4f40849959e3e0303e91f19a'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c08bd2fb69af33524040944d4c788269e55a3a716d2f0d5dcf24be0b6fe69662'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'cd7c68c38eed26500c02ea4a57a394089073c19cee26498e9f651e96e2802c67'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb0f2ca9b3c0bd4a46c7a0360b0b587c90e213ee49731697171bfb9ae3435b'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'94b80b93719fa0925fcb3cc0a47147e5b1c2519dac78ea780592a635fb6a7964'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6057787d06d59017908d50a2490a7f9d9110434523522540ddc8f3799dc225'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'3728bfeddfdd5ee26b1e6c6edf4e44348f883558bab3a0c5064161db6d5c98e7'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eaec92b3afa955720c6801e72753388f56b39e4d6c5278e4bfd5103eefd597d'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ef39eac787ad4f90821debf52f0149386f7f45467b14b373b925229c0238894f'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50ee23f599ed54df0ad8df77b7eb1b7efeca705e4b042fb1f5b13c1493fff42b'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'aa4b6dbec60de52af91a68f1bc625b8c29d152d76a0d298ed3967d6520ae64ee'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d4a65130976d55a64e1237a7065fb9faad2b997479730314089ed42f6f781d9'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'e8c0ea2f82881d47a3e0be6d106d09e0d7349e282fcda9005368a9e91e8e588f'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dac79398f3417a1a94bdedaccbfa3b62082cd651c2cc106275f3e068a625a5a5'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'8a36538554608924193b935c04b945f8f7cb844e8ef3eca07fd28cdf83970d3a'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b998b91ed48567e70d59bfe05682f9c4dc25f04d2a64ce21dc0a562bcc459b'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'bcc438b7e7682ed14879b4b466e74f7251b4726825d89e187cc267e30fba35ff'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f9eb6d9e5f235d146978832f3a964321b3462cecf653755d586869e5a66976c'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'ed638e12930e66e75f82626af9cd01ac437e6b7b384d8403286f789c376ab91e'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59c5956a375a77d5029120b0f0ead8ae45980d0cf6d3e0eff26cb0def904804c'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'f8d3c8ba4357d9a9ddac75df7121b6132af45b1fa1a9998f2764f1baab2bc3fa'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b31cbdf4a99f978911504788d29508e302eadc73a70ea66068c17545fdf0c45'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'39d33454a805cc9f4153933d2b7f294390be6deef137c48b638be5608ec7e3ba'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef65752aca822f4891e2216869402fb87c29fd4602d78eefcc462675363a4924'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'81cda12d401d3af3e9f71982aaf657244f0f37cb5071022cf89767d25f42ce03'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ecb5a9edf06ce66b66ea58f1d7b38ec95fbb59c75a9eae0c649aa6c64ea873'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'39abe67e0c3e552ddae542cc7c0caa5057ff02100c885fc2b575eadffeeb035c'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4c25f86d7c29b72b459ea478826b38ab79bc2d60e8f7b666ef1707fd7c36af7'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'6c7f2dc41d45d2f1684e6ea425b433c30db7406bf84260b92921551a0c363455'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5448a23df9e3bc5ab60a141b1e428d4fd6c2d4a142fa24acd91dddd92a1981a0'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'e67137669c0f64a707a547416631a931726bb7d8914194b53132995a364855b9'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db5dd760d6230e12476f2d510d40bbe2d869f512155781a93450a1c141a743d8'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'430e37c1bc60be1d8bbeec2c39b343e0b20a1942da6a1aa7673c4efbe0535f63'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0262a442b8e64a961255eba095b168757b9764dbce35abfc86185bc68bac1036'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'a7c1501de9dbd8c5c6ecb0973ddfc0f98fa4a4b0bf05f0b4ad7bcd217ff29ed0'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c64ed2a8ce4468bdcfde6498e5768eabe59b3bba06c18776174773a13479f69'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'43fa94d12450a644884216d0c6aa4614e3d213c5181b24e43095b75901bc94de'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d390f3295a4c047a7d340c5b778db94edab6c1005cdc06b9bce90cc4c017619'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'f3228ff82661cdc8b064252d9e5fe099db33dea6b7fa92994f20610fa9439c8e'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88fcdc9f2058683e5aa6edf1a193e8b42bcdbe4576d26f6bc21b908e9d8104a0'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'43bb3c28cdcadcb3d9194732ef1939814659c20ddc3db3025c3c573404967298'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5884c7446b44cdbda7d6104d462df0a2c1b0115e9814b9cfd89f2454dd8ffde'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'3e7873db616de7d17f15c778b3fe1f7bd13cd65b5885bef8c187031d8cc6e150'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed6bd6147c541b0ca4fa805f83cb5717e5d0a454227d228cb6e16785bb6b924b'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'79904ec3b0190d78f62de79da4ca02aa53692ca9149f2d35a74c152a32826be4'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed4f45b3efc1bd07cf7752b24a0496619a94223d9c94cb46ec8ee3cf598c552d'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'f6aa17ced4c7845f305b5a19cc9e01c6544fa64abf81dd9af99aa2697d375663'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9f36968ed9c168d0fe1d1395284cdf4f9d842318ddd6c4b88c7e2c4469c9e1'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'cf4cf6870abcfb30360dd5920f2aeb2738db479d1e6685ae7cd3c27d4fc65eec'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8843b487f1874e5b6853248b282304a558c19b85ab3a88fbb50d97032b604c7c'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'60186361d91482cbc3fb702cd90fb4868f0e38e5b64aa141cb24ff33c876b3db'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ddede69803555f21b93019e7511d97e7360628a81546828c7dde778c6c56d2'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'c11bbf34bdfc266bed3458c7a1c784a54828fb4c61b4c1a7740485c213e3b004'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827af5b7e241322b58da42a94447ecf5714b759c782287a891420b79724934aa'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2931b4054384418a5ca3c9f82ec69168265af0e8734d6d7058ca4b71e624550d'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'5b593e8ff1b41488b1bf0bf134d7e61fe70869275b6410d5ed6644fafa746d47'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'69102e3517c6446bb75acf1b15c7f972f80ec185d20af346519c3f1a3521e0bd'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'cb2e73f498311b890e712da878a11339d661a802fe8270d92ef4cec8e6266d45'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581ebde8ff6c95455553a79144951d14af6f2d0d3d807b1a6ecf2fd2a861e4c0'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'bfdd43e6adc40cb42a374902b7b82bc527e1e19a52ad2cc15255c0c3f01c0eaa'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e01b19b758f3365c653938c4c168bb47e799be047e34210d63d53a053953459'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'9b8b3861f4fcf247f94e9d58683bd1a9841dfa5fb1f1aea8051db97c71433131'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1c2899287621ee9e9ed2951f3a1e3a3dde2089315a91f88c7bf6c45c3817a1d'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ab7b5981dca361bc1a05fd791e57a448e7ba157ffd8ade477153c736dea9e9e8'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15b15e9ea49dbb10973e29e6306417e11572ce7a71b448bda1be5d9164fd813'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'1e76d50da4f3c3af92ee2c4431cd1ca3e355fe206782af71e7bc68d2106bf1e2'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'278b14619e367d83431630b2b847521985e2b299a4bbfb847db5f266bd854fcd'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'dfaa7cffc15335ece72bdcda098d11908ae952014420fee4502a2d2a16d5c2c2'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'565a6f43063e5dddeb8df8145f071a7bf56b5788b4654a599bef289e9443b568'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'40b0d5762e839c19bf02681d430c78bd040978ec66332a2d4e6eb9c99a0254ad'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1be2fe2e9134309fef23015117a02dde93770a72648653a5f0cc54097fd495a1'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'fb54e59fe6f5303dd00abe390e2905582dc8edb49c4b0a9f0535f2674c839151'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fab2732727fd7e0d21e8105f79fb301f87bc17dad45fa3d360c6bbfca3c8015'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'098b7d2a40bed49bb96bbf77f62f718530f8eba500a62da04775b7ed265ca880'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ace331b534d3dc4c53fc96d04d0532316fa9d8bd22cb4edbd91fb192956afebe'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'f18f4fe3fdf26130c1a3310844c987e0a0a4d07c3b216539856529ed1f897170'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6ef5cd9b913d38a325c98adc084a1a3040e8c281f87deeaffea5e041c17f11'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'3a878ad933740ef6ab0d030276d885d48a008150c6850a2bf7e4632560db1d82'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2452af9ad93f85c0de56c8686fcc7cd71647b35c90de5ccba387110b3c4144c'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'bc5af6d042662deb63decdeef41214131cc4e3b74fd5ddc6c8705068dddc6162'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2ef3a17f5d35105132e819918b6ca23d964e249be25c00b3e7853e5ad9b5158'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'2fda99cf36961256fb885ad58b3d3b412cf7535e88e4195193f5ec11ee4d163c'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05ec3c81f9cb8c066f9c8d6dc4215ac052be44e4e5dc1066833e04852ba661b8'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'a920493b6fc5b9bd3587458900dfc8097f10f9a487639bff7955990490794ddb'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'791e17c29ad2e4e2434b7316e3be5cfbd7cc56ab13ffac6e71ba9d869b7c4b89'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'bab109fe4a6270b93d5c963d494b618a39330733d19d18ad5039932059714937'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52190a838ea1e3862f3b18ff7447913f006eb2eff649103820ba33c7707d327a'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'f7eda9b9fe2cac4634a64a8fdd0d1120f13469aa6234327b06bd16e5e3175f06'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c44f12205b76a7b3e3360d4cf0d44c5892e7771e7d0325ac87de86d13370ee9f'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'51dc775d4cf07a36dfda608fb9e7ca1b0551d02bf92595635d98047386ce2829'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c819e6144ad8a19f6b72dd58ca66ccd044d1a48e922edce634d4d83f6285a9f'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'94e6c6c73b3e102372351375487d955849985cdbb9272de804be5995905cffe9'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b7819e3e0d3cb7f8143d64948f89449c6c41492751bafdde1f85d8b7dc11353'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'cc2e6bbbccfc920b7d0f940031955781413cef4b6d62b3c32ea613b6ab4c340a'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aaf2287e92bb8be6aa2e54eed5cfd8f78366a431b865caa936172a781903985'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'f07ae4bb4d31da3c7820fcfbdb719322a84b7b8d9820785a3c39baa60595739a'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ecab5eb88e299f9127c089d2f55ab9f249841ca52bfa4b5856e926d789c0c6f'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'27786a93c9351524ed56d9c13bb27aae4c077fa65d90a1f9a16c7e2587a3eb84'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6315ab016a88bb86bf566da39e9d30b644199eb601e61ed5019558dff2d7b611'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'de82f0481773558b8b26cbf873d2a9add9279339d52f1c1eec6963338dcff7cd'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da436c188602fa82184c31f9e6c5164735907d2e7198b8d03c726314094986ad'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'fa2e2d5c62563ca5686701804130e1b8f132a2dc75f9ba5977225c14caf4d63a'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bedd9136cce4bf37ee2369adc0c612c2563bc0741b86af4dca6915c0a1a2877'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'ea8d976c3532ad39789889e243e0a7f13986e6cb2ea9b9c5207b56de38ba9114'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2866cf08694c62479003ad453723e76de59e2a411d9a2c946a02b4258c43f6e'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'1041121ec2ae9119e6b3ad57b25b535e86471c9d9493a1d1384831d1fe64125c'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ea6b8131294db5a3b80d81c1caaf0497e6216e327ee5daa913939a68532d3f2'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'bff491e94f6e743d3dcaff1db94c61338b54a9c71ad7050fb3e8a319dfeba479'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'414e039090c44ad88c93fcde6d09ac03e7c00eb60c3acdc0ffad3c9fef2c8afb'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'c4b084e28580e939209c6f996c8af9fc38a4cc8393f7bcfea94d4c089a39c6a1'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05f8da7e78ec94aa4a1a92ee8cc3c89414ce468437ddfc19909ffab16a1b805d'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'99e8a9ee25e1e15e9e3d58b544218920ba026abeb0cecb52689fee24529240fa'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe573e21ad235dc377ca14a8606eda840dc93d96cf0ffb3d428a14a211b0269'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'2490bf60cd59cc4aae6c57383043ca8a75e9f209468f19a295e5c55f38178388'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'475aa88fd87a572aeb24ff7c75afc780219b6197caa651d165aeec497c925f01'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'320e4059eb5f1a55e0e623ca3316dbab0ec7f2c75a8d280274e8940f32baa890'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cf545d5cd3c57895df6f813994bd92ab4a8a03bca9c812abcd65f64564d7f03'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'e4ff9fd1589211d84caac8aaed16f00503d5f4bb8015152b057406d8fc843fc1'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f036e71eb81cb5bf354a09d5bca4a610f468bce4485a8785ea4e3e1e1025c9a'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'c50dd3a41058aa46ce3ed76c715465cbd4a38df9d87b9afaac4f8b2c9fe5bddd'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b10e2cd348ac2c786ab5f7c56a2e32ebfd2b74da5220de87aa9718f4d76c078'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'38d40eb8d957b9ad695f9280ccb8c2b321936b175c523030c91207a489308491'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33556132d7affe14e38d23290ead215b4dc10c00f7da902803528afc9caa315'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'9a884a851a466739382ee4daf9a26e556559fa6ad9500ecaf98a8d2352edc599'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e495543160221cda3d2cca9ac13cd92f05d1082d1db415eb22ee228455203337'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'ed8d19d5d0c36c375e90180c369ac2bfc690eee08165ae28bd30cc2d46cc6b3e'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb25a973339f0a34d188e9335cc43f02eb781a55fe1867bab7d6f39f775eefc2'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'c1dcc1651b576eca1d1064966b84730d30abc2a226ba744328b0ed71d61adfc2'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfcf54abb9355373e3d602dcf9025c5d01ee285d5c986ca8d47b2d56c6e4717c'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'a82504524c1418b4e560b5857fdd80c4f7f6e8f8c8868363f7f834f3d04d146c'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91b9ea5b97395be36ce30515c31e2c7c3f5b8ee48527e34a2ceab2dc7aad29e6'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'8f1bfdfdddb492d0177f907e14b59779fbf4d85d91ff0a3b2a5a661327de8940'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a58d199b69f414b9d2e24db40568eb71009caa94a2e24c23659b4825caaaaaa'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'added51eb8fd9dc71baa31d9b7fbc38624abdc6aa028b40abfe9a37f63112484'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0618386c8abfffa341b12c7f0d910e34497689cd511cf3b66fd43fa7cd23e24'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'e922e558d3deed9e7703a1011312d4370f76e253fefbb4ab727c9757611bf03d'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8665d6d16992fbe006daf72ed778b98bbc619564ffed941b71eb8d9866a34b52'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'ca3c58de0e576935093a6ba1a83dec088a7018ca76744fa4e9c3dd7164a8b63d'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ae163e836c45102a8d1975a52dde108b4e6791e6a3cb392b4b5838891f40e81'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'eea612cb79959b31c2d7d69728769d4431f8bbd7000c6459c046542609faf57f'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06f8515a97b11e37ae3de76417376080b368dae8b1282f7e8a6294e379c1d112'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'46d79ac00a816a45d5c01ec1fddf1bd0b16cb9cb3be0ed542b33ba4f73e36443'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bf9f7f2ce7afd5318e40a42a891913f3ac6f5d3ca0ccc4760bfac9a1a55b9e'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'8bc1696bd81a8c90b5003262b87c48ffe37c8bebdfac288c96240aa79882bfeb'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e12df4512a7f7bfb8639a047818548d380786d957276060a24abc9fcf1841ad'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'93fd129a5f98a4ccab3895bdce598b00d1c87bfb6c953f7e2aca010d3ca83c47'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a2269a73715c8191693cc617745e0e8407784f81deb8e92f8a93fa3cff0c95e'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'084df8ae85a1149afc55763b8eb4d3da4c0c602ff3b227cdc0be44b0fd234532'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eb8269a44e2a64eb9b0c2c70ef341a026441e58f6aa3f2f7a7543183b9dc47'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'8c51710bfbd3184f078a92b49ae93865031b69a0ae4d5f53c24ac805d1189948'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8c447e5fd6e943158b248a5cd5cadefeb9f1d8c99542eaa6b423ea7931e4649'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'69825f71d7cfe749f1efbb3642026b239aa430f87e3f0f511a265c1e6bfd67f4'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767fc9d838ed8d94690cbd5a8f00c8694fc458ca8fb9e33ae7fffa01a53cb10a'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'fd1b7d5c7860e9da6949fc15b31ae607e06935dadd57bc8366031f1082c089c4'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e173e1f75d5051a6192543c5aa93314e45501ac85b2ae010b213a5bb07b03569'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'e310745a30c072b0dddbcca60c66d8814e765ee229f62cdb9f4857cac2a9125f'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4306f8de37c15efcf2a2c3772a78073c3b3a83ac7d146f39bdc125e2722c516f'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'6a32f727d5b3cf499019c1871f72b831e0c12dde62b5615070c4169f5f3fc38d'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58e56f17247dd303c3522246f8511bf0fd9ff60546531cbbbf024f79910d2ac1'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'6948c42faab91e49eaf65dbd1e13d263c588e95a2979d9cb59b6615387c3ea30'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbdf6d1931325f25179c5149a02c8d7f25841ad266a4f69d9adf0279e5841b72'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'7f179e72b8159c5e791dac0a2c796e91dba1c6684ccb1dc93f6976362d591307'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc6cd72eb0bb48df17983affc573d131d5ae623123c6959857c65ef7f58c0d7'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'328165fdedebc08f01641d99288821727f05b9f1c49df9016b1751311d0fe025'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76e4f402b612a9915b3af8da888656393eff58e0590b38cefb1da08442dc6c38'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'720c06295347fa6f1e9812e74de26251c64ea9a24efcfaf8803fce6d70780bd5'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db3fe3a51c7402db8b5a6ac56392edc43b20efe56e160ddffaf48ff9122b208'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'69e80c113702a562befe175de8202f01b9a4e34328754bdcce454886bf7cf9a1'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0dc749bb5a31399c215ea09fe40a9c735390a60e249bb773648ab9b73cd1939'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'1ce691fa3321d69a327bc38eef2955d1614c4ceb529c70ab71b486a93638d19a'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'925090f3ecf4d1f353c65bf01ea060679f1a69d1f6f92fd656ea918a9a893428'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'5d96ff7d1cad796c0e1a14400b92991da2087485198b6f180d2d3f4d42f8ba6a'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23098ea7a01a452c21dcb9fcb45248dabcb99c41b2f66ae825b71e6f513d3b12'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'ac3ead686942a044ece838b7a3cfbbf57185e06fe24ae7c6cbedbcc3d9cb95d7'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'202e10e8ec25c3c417965a32cf7ee87abd18fb0a59696d9014863e23c6ed10c2'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'c5824a12f17a8f64ef3018b4256747f6cfdb21cf63116c56c8d3f95106977f46'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b413bf99e96e3c2320fc80634e8e93a3b34055286f5781a765867606db44204'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'5b3e80579eb6bf8aa23d57a23d481d03c1564c5b64d8c5317fd04d762d8fb5cd'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ca9d44b4a2a250e7ec9eb55929987450303dea19a08d41f6a6665036802fc91'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'f932a8c2fad8f7d63cbeacfedf225fc062c179ca1757c34a5ff24c5fbf92ed12'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fa160e02333e4a6793295b519fa0a57d331a914dd549ab4dccbaafd219f7e93'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'1a991bd0acf6628080e36033c3deadff92b78ce634256b6c24c411b6c6264f55'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01f4dc720796abc38f7eaa4122e0d64bc715831e91d8d394c5e81500021076e8'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'9da23a71e1ad453ce197956580941d6527b3b6c9f354e4d64f87ad358ea37e5f'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bca09f23797c6d333eed8a5e32b3566fabffeabe27ab0576ee097d1eb0433e7'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'9b655b83c35f7064396d199fc66bf18894d43dc755eb0bb9547c103944622491'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'defd0ce420e04c8c7675bb48c96a39f72aeea16b6b05e53f3a9a7ec79fbbb598'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'7d9fb25be4b080d3b4dca29067a60e6eca2f151e10661ce2ad232a37e599fdf0'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7b4490e4ff8ed552764a32a1249b06acde4a7c1a8c3244d52200c8d2576a751'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'3ea6298523bf40ca4e809db6c9924c4382bc5c96657acdea2bd7f7393b5f7661'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'646f7ee404bb85ac41d03190f646ee30176a88839d9fc113674b867386046106'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'3e7bcd726fcc0e687c4d0bb0f05fda53aa27a0d2a76df1444947525aa512565c'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ea056ce7506fc1481ac98091c06586f60c8dc2e54dcaf95c3e24a76110a28a'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1f220adc92922e003829b820b32bed973a10626885532b9a8650fbe869a96cf8'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8ab7bce34311dcc08db2f9c547930272e9505ff6756df3fd26cfbb7fa8ec6c7'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'01c876992343d53d98c47d894e3cbac9a01cdc479a0e4f7b2e0c8c69f4bf2239'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325043d8bed45b7f821a7b5cee6643443eaade1c8088808674496210cca2d289'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'7cf657899324a95a34f6c7cea647ffd80ac0e482f38ef2ac05489a231bdba326'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f38a7161972b5caa3b80fdbeec750f7e137138e1cafac646450ecc0dcd248bf1'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'f71c22275747b2364ae23b33e3d7e498bef6753a01db9f15edfaeed13d50c9e4'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3dc8e49fd42f4c0944e452af6400f58b2671525bfb4cc9720da29f90a1a4531'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'96c0c029e9f1de1c8b9971c0fdaaf385ad40be5a47addff2b36bf3a2ea2a8587'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12d39f9091673aa19ee15c4662ccefd670ca5dbf3f78ae5412c23889c3948969'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'666b458eab116b5a5303f7644192d0c0a87df00fa79c88aab07e53f8be6641ad'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378e41cf1faadb95bfdaae8b4d97c0e608624dbfa8693de309aa22cdf7085c22'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'685d3c74f494916b35482d4d4ce0f4e852697df5f503e376ff792dd9dd7d28bb'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ff35ac98bc8acb9435d6748536c9a97a576280901f12d282db4744f6803136'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'241f8714545723f6cd7f4aa1c9652659374b3cfa9cf6e8b5ddc9b2186f71f42f'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b7e67c45c8454064a54a93fa45d156564bc620b90e3922ebec98dba8023b2e0'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'6820775a025fb8877c5f8504b77d5b6623ead50bb27431b46ed0905cc40b40b3'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba36662cdbf1871720dc8e2006f71a79d80deb97de8b575cf919dddddef7689'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'f0d5b7a4c803bebb88e06d39579110998c6bd9535b24c2420af656acf7611617'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c88f6dc3fdcdcdcd332ecffaa660e83a4f4d59d93b2bbdf8e2355da9d7a85d3'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'d207dd6a919e806c3802e8420fc191cee5440c5dff13fb63503742dff7443876'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c2ffd09eecd3f1c8ab69cf5c60e9c005037737d878d43550721a4fb18614888'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'30232a7a6a6429c6b09947db723d895085d5609b036e23f73c7eb21f32858f9f'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffb694cb597bfe326fdcda96f5a3e6ebab422425474fb80b0efbf9d3951b135f'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'c2b3bc966a79bb95482101e2cddaec148e6dbb35acbbdac9ccd2e69ece7d6789'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca4ed96788fb23a1456e516ae1ccf9fb5138150de70023d582ce0bbc78ae1a62'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'9b9d3cf40d9b15f7f8f55f736585d4b794260916e2689b5ac59fd03b8c020b24'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'301fd9e366125308ef036b1adf9caa28a167a76479a5d3069bcd36d1491080f6'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'08f337e98fa0dee551794f7c8d09c099dbc8cf989ddc30e5d1c6fa743cc0fd0b'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3cbaac8de96a93d234e7a2fe3374d405d5852164cbea0f8ccb69b60c16d56'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'0b9ebf0b6a59a2f4fd4f9d32002ad4b485541678f8dba4f37221f5f7a1f209ee'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d611aae459d30c5f96840c5825ba9f839eb80443eda98050fa823b4678dcb8c'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'60f7b8f725d224407806ac0e4142e423c80b382fa8c302caf80a54dd325faeec'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78ba734913700dc80fc9dde2e7bdaad08abc25135b55872620b64fbdab2f3fe9'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'baef278cd7149b5c748c95a7f9684409ac679dc5e578d5292afb409f62cf3c39'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445b56c59487fea539806193968072d59438df29ef86897c212c5e1ec5df313e'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'8c27ef1ece128390020be5b4e13f3a0dd4c44597b92aabc537a9eca5a1d5b7e6'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39141e628fb4af5c8eb325209c6f3aa2e0dfde3961c29bb7ed28caae4044c463'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'15535663e1fbec159638620d41d5404b248255947cd95c89669ab5de4a4d5c44'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f49b9236fcb0e08c71e803b97be0c4ac170268827b4cd8091dfe1ef498fc52e7'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7f1547283270cc1a2d0fbf64ffaaa2abc925b310b054eb4b51efb690a7284395'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598feebdbc3f26ee3a8474db6bd2c8f268ef129ecdd6aa84912551d129829477'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'fa04a6599defd1c02541e2deba2941bfced29b5b601ef0bbacfe5cefef2eee28'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b314f17c2e9b9ea308a1689c22f3d2e2567da0d6025929f1a66a73de78e26fa0'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'9d8cf1be2b9f65289a9a74ededb274157339af3fc0007e7d0c559987042bfe33'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51674b783f56db50a5155a47b393f1d32bbe2246fe409aacf61e0defc9d73f1c'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'d8633db49cc1247a4f9d8f0d283ca6cea3dfaa04f7deeb64605c4a5b8051f7c9'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47baabccde92227de34e782d373194798a6ce903f4a2add963e24f0f3d97e063'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'24d5adef723cc42f4ce733c7bbb5a7ae20e236539e68f6826f850dbeb9404860'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ddd7de4c7e7d78dcaced8dc18b8e65c728913dd21389dcbdf301c93b8d616b9'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'34342cf0c64a7167739080ba5972b80f26c78ad175d79d80a497f3ecb313f257'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7994a0417cb15ff5cbf2469490304fdb85cb8d3ce3f6d8ddd023f5a459815cb4'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'bbf140a01fd938e333c30e3ce51debe23829bdf856e08d9d8be02861e824b2f6'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4828050c1e512b60aaadc818915fca9c987899a702fee04b4d0565e57f33545'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'f9520e0b19fe54c58646ff200de7490b684b1aa797b1ef7e560fb0817c71e2e2'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fcdebf0f17e73287ac1bf43dd8c8058938e2a6b0601d1556baad161c3409c03'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'4d6e5db932f881e27fc043a3c6b5e0878a26323de98499880e8481f3f8bf5e92'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd72ca9a6b54a312c551fb5c619c2b294375a74282a92a7777e77e2314246e38'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'6d7aaf2691d99896d68a9bd473ef7e569707cd3eb72d8125d85fd9232163eede'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ad3eacc4e09d0134b15d73aba2dddc73bb04f9bd5f483a1aedfd075ea0977e6'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'cebb1c13bba334e4fa3e7b46b8b244bfa085596b00da5052e3b1386c5339ccea'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f207118757de44b755a201c784f9ce67f5bfd7dd85ed4ab2f7c755611491ffa'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'4466dbb2b1239f0b12f177ce960ecb6e59367e8341e8f79c1863533f799364cc'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6239001e93a0ece18eb36967fece87182aa1e151ed8795e5624772acb21db821'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'224d124a1e4cde953fb64a98c85046293ebb50c5101ee6c04d48fffe36c58cc4'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3846a636a3bda4a67d08021c7a37f87206a6cf95926269c669489a5d28ebb5a'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'9156d67c6396d92ab72ef44eeb1012f912ff4f0ffb5720f66f298b036f93e8be'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9711932f7b661eb06233c68d18e37c86b4f1bd6c3ef0ce27904e43e779ae778'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'8caa4ae6b38d2f813db6a2ce308e71446d0a39f0259bf66edbf9ba34077a3bf1'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7658ac4c71186c13f73ffdde6aad9c63d516fdd82103b8e05bce7cdb58fac85c'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'db313fcd80cdf3c4f950d567f1ccfbc4a0bc355c12e7494b29478e7c7c441120'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cd19edf3fcb5e307290f34045b595c08901f04c06f9adb63ca905c5887560d3'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'cc85b89268a045ceec9a420c056693d3b2f5cd2c7d51a71d09d20f3340ad1c27'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b31bd06e95b1822210563156772a6fae0e1ce5e507676d7bb22c6d628989090'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'d6c97e644bac7b35b339f0b04e9edcb7bec96459c3bf82e9658d717e486f27e5'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87e12f786c6727372dc17199f37415c8c22bda932848cef2054b5658cd73f10d'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'061960607c6f18637f59a4beb5f5ea7b2a26678a6420266ea9fcbf15a3b040de'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce5bbd516cd2bcbb3bf6f4d68d1357dc65e8bc67423ed64263dbd9bbdae7d7ba'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'c2f96a0e8efca6863e05080fb5477a3325edb2cfe157dc8d284e785cf7e8117c'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d3e436e33a5ad723197e9a2cb75eb31e3afae6a3254dad6ba66c2e53f99f44'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'e8f548cb0e4b11a42c008b5fb3e1e67f7bde8d4f9745c6580b04b70d253de66e'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fd1d89f6d0978e2cdb88b1d2db58da08c47ed13a6fd4269bafd8ac866df0f34'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'58cf73cca5feaf2263a6db81816f5aca003237172126f0f5a944ead78bfb5544'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bf55e570076200296ce4b6aae7d790d428663a0f272587bf654a941fd9f0c44'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'2c7c48a21cfa651ef08414132a4e7c9e8be66f21a35568264d2ddccd421b4b00'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e91e759c10a28f25719f1bef1d76aaa58aef4ae2d77994bf5229f6acde4f4780'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'1ec18704d455190f043b7c1719c2cf5c1ec69c85c5e291fd679735647e3bd7af'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32cf241fc8cd836b8d8bc1b0261282df1d5d29da7401c98cae6aab8fcd81e8a4'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'700592de9180e98236c7f643b20d91dd360a129abf5dccbde4e9713bd8aa0932'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4c070da5412ac230509343fac2d4c65a19128fdb6d7131d1ad34dc513e6ec10'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'f7da841f4e745f9e740eba9ce341c7c853026858844dee55543aacb03e2d13e4'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386a96d6a08c90b8104c91e77f62699e506c437aed2530b89544cae0371f7010'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'1a5868a6f80ba9950ad291d0705bb6ab933c603335ed6adb81ff57692dcf69fe'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e741ade8b9c6c627d37be9ec57166660fc484029fde19e1b3e846060255c80'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'9ea84cde1c958baeda4bb00845dd86f37f9526d118ec201e8e3503e28e36839a'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/parse_block_test.py b/counterparty-core/counterpartycore/test/parse_block_test.py index e99998b216..4f38d9c36b 100644 --- a/counterparty-core/counterpartycore/test/parse_block_test.py +++ b/counterparty-core/counterpartycore/test/parse_block_test.py @@ -20,7 +20,7 @@ def test_parse_block(server_db): outputs = ( "d8df3ad79b55cb37b404222bf4ba7005107b902b3e5e7738e933c858acbaafde", "4faefbcea82c4bea47a948e61f544290ad80aae7786afe521c57e0ab007cea5b", - "8bdc6176426f1778fa9ee00bb7f83eac7d036a0ef523d8ad0fce46869e64edf1", + "81fca25af7964eaa8b6f125e32305d383f6b4eb2a86a7d02f33e62ef56dc7265", ) try: assert outputs == test_outputs 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 326bb42824..e14f7922cd 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -117,19 +117,9 @@ }, "tx_hash": "$TX_HASH", }, - { - "event": "INCREMENT_TRANSACTION_COUNT", - "event_index": "$EVENT_INDEX_5", - "params": { - "block_index": "$BLOCK_INDEX", - "count": 1, - "transaction_id": 100, - }, - "tx_hash": "$TX_HASH", - }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", + "event_index": "$EVENT_INDEX_5", "params": { "address": None, "asset": "MYASSETA", @@ -145,7 +135,7 @@ }, { "event": "DEBIT", - "event_index": "$EVENT_INDEX_3", + "event_index": "$EVENT_INDEX_4", "params": { "action": "attach to utxo", "address": "$ADDRESS_1", @@ -159,6 +149,16 @@ }, "tx_hash": "$TX_HASH", }, + { + "event": "INCREMENT_TRANSACTION_COUNT", + "event_index": "$EVENT_INDEX_3", + "params": { + "block_index": "$BLOCK_INDEX", + "count": 1, + "transaction_id": 100, + }, + "tx_hash": "$TX_HASH", + }, ], } ], @@ -283,7 +283,9 @@ "destination": "$ADDRESS_5", "asset": "MYASSETA", "quantity": 5 * 10**8, - "exclude_utxos": "$UTXO_MOVE_1_TX_HASH:0", + }, + "set_variables": { + "UTXO_DETACH_1_TX_HASH": "$TX_HASH", }, "controls": [ { @@ -423,7 +425,7 @@ { "title": "Move assets from 2 UTXOs to UTXO", "transaction": "movetoutxo", - "source": "$UTXO_MOVE_1_TX_HASH:0", + "source": "$UTXO_DETACH_1_TX_HASH:1", "params": { "destination": "$ADDRESS_6", "more_utxos": "$UTXO_ATTACH_2_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:2", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index f3de3a22ec..1679ef2420 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -353,7 +353,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From 8d5fc30c5b295d638481ef5250580186ff58d650 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 15:24:52 +0000 Subject: [PATCH 004/138] progress in regtest fix; fixes --- .../counterpartycore/lib/api/compose.py | 1 + .../counterpartycore/lib/blocks.py | 2 +- .../counterpartycore/lib/messages/utxo.py | 14 ++- .../test/regtest/scenarios/scenario_7_utxo.py | 111 +++++++++++++++--- 4 files changed, 104 insertions(+), 24 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 256a24b8e1..0cf48b6e50 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -714,6 +714,7 @@ def compose_movetoutxo( input_count = 1 total_value = D("0") try: + print(utxo) source_address, source_value = backend.bitcoind.get_utxo_address_and_value(utxo) total_value += D(source_value) for more_utxo in more_utxos.split(","): diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index c19adffee5..1de5fb17f1 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -107,7 +107,7 @@ def parse_tx(db, tx): try: with db: - if "data" in tx and len(tx["data"]) > 1: + if tx["data"] and len(tx["data"]) > 1: try: message_type_id, message = message_type.unpack(tx["data"], tx["block_index"]) except struct.error: # Deterministically raised. diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index ca21ee5cc3..7b175773db 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -130,8 +130,8 @@ def compose(db, source, destination, asset, quantity): for value in [ source, destination or "", - asset, - quantity, + asset or "", + quantity or "", ] ] ).encode("utf-8") @@ -148,18 +148,20 @@ def compose(db, source, destination, asset, quantity): def unpack(message, return_dict=False): try: data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|") - (source, destination_str, asset, quantity) = data_content - destination = None if destination_str == "" else destination_str + (source, destination, asset, quantity) = data_content + destination = destination or None + asset = asset or None + quantity = int(quantity) if quantity else None if return_dict: return { "source": source, "destination": destination, "asset": asset, - "quantity": int(quantity), + "quantity": quantity, } - return (source, destination, asset, int(quantity)) + return (source, destination, asset, quantity) except Exception as e: raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e 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 e14f7922cd..f861969c84 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -282,7 +282,6 @@ "params": { "destination": "$ADDRESS_5", "asset": "MYASSETA", - "quantity": 5 * 10**8, }, "set_variables": { "UTXO_DETACH_1_TX_HASH": "$TX_HASH", @@ -300,7 +299,7 @@ "destination": "$ADDRESS_5", "fee_paid": 0, "msg_index": 0, - "quantity": 500000000, + "quantity": 1000000000, "source": "$UTXO_MOVE_1_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", @@ -317,7 +316,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "detach from utxo", "event": "$TX_HASH", - "quantity": 500000000, + "quantity": 1000000000, "tx_index": "$TX_INDEX", "utxo": None, "utxo_address": None, @@ -333,7 +332,7 @@ "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 500000000, + "quantity": 1000000000, "tx_index": "$TX_INDEX", "utxo": "$UTXO_MOVE_1_TX_HASH:0", "utxo_address": "$ADDRESS_4", @@ -377,8 +376,40 @@ "tx_hash": "$TX_HASH", }, { - "event": "INCREMENT_TRANSACTION_COUNT", + "event": "CREDIT", "event_index": "$EVENT_INDEX_5", + "params": { + "address": None, + "asset": "MYASSETA", + "block_index": "$BLOCK_INDEX", + "calling_function": "attach to utxo", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$TX_HASH:0", + "utxo_address": "$ADDRESS_1", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "action": "attach to utxo", + "address": "$ADDRESS_1", + "asset": "MYASSETA", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "INCREMENT_TRANSACTION_COUNT", + "event_index": "$EVENT_INDEX_3", "params": { "block_index": "$BLOCK_INDEX", "count": 2, @@ -386,9 +417,45 @@ }, "tx_hash": "$TX_HASH", }, + ], + } + ], + }, + { + "title": "Attach asset to new UTXO 2", + "transaction": "attach", + "source": "$ADDRESS_5", + "params": { + "asset": "MYASSETA", + "quantity": 10 * 10**8, + }, + "set_variables": { + "UTXO_ATTACH_3_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ATTACH_TO_UTXO,INCREMENT_TRANSACTION_COUNT,CREDIT,DEBIT", + "result": [ + { + "event": "ATTACH_TO_UTXO", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "MYASSETA", + "block_index": "$BLOCK_INDEX", + "destination": "$TX_HASH:0", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "$ADDRESS_5", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", + "event_index": "$EVENT_INDEX_5", "params": { "address": None, "asset": "MYASSETA", @@ -398,16 +465,16 @@ "quantity": 1000000000, "tx_index": "$TX_INDEX", "utxo": "$TX_HASH:0", - "utxo_address": "$ADDRESS_1", + "utxo_address": "$ADDRESS_5", }, "tx_hash": "$TX_HASH", }, { "event": "DEBIT", - "event_index": "$EVENT_INDEX_3", + "event_index": "$EVENT_INDEX_4", "params": { "action": "attach to utxo", - "address": "$ADDRESS_1", + "address": "$ADDRESS_5", "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", @@ -418,6 +485,16 @@ }, "tx_hash": "$TX_HASH", }, + { + "event": "INCREMENT_TRANSACTION_COUNT", + "event_index": "$EVENT_INDEX_3", + "params": { + "block_index": "$BLOCK_INDEX", + "count": 3, + "transaction_id": 100, + }, + "tx_hash": "$TX_HASH", + }, ], } ], @@ -425,7 +502,7 @@ { "title": "Move assets from 2 UTXOs to UTXO", "transaction": "movetoutxo", - "source": "$UTXO_DETACH_1_TX_HASH:1", + "source": "$UTXO_ATTACH_3_TX_HASH:0", "params": { "destination": "$ADDRESS_6", "more_utxos": "$UTXO_ATTACH_2_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:2", @@ -493,8 +570,8 @@ "block_index": "$BLOCK_INDEX", "destination": "$TX_HASH:0", "msg_index": 0, - "quantity": 500000000, - "source": "$UTXO_MOVE_1_TX_HASH:0", + "quantity": 1000000000, + "source": "$UTXO_ATTACH_3_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -510,7 +587,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "utxo move", "event": "$TX_HASH", - "quantity": 500000000, + "quantity": 1000000000, "tx_index": "$TX_INDEX", "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_6", @@ -526,10 +603,10 @@ "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 500000000, + "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$UTXO_MOVE_1_TX_HASH:0", - "utxo_address": "$ADDRESS_4", + "utxo": "$UTXO_ATTACH_3_TX_HASH:0", + "utxo_address": "$ADDRESS_5", }, "tx_hash": "$TX_HASH", }, @@ -547,7 +624,7 @@ "source": "", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$UTXO_MOVE_1_TX_HASH:0 $UTXO_ATTACH_2_TX_HASH:0 $TX_HASH:0", + "utxos_info": "$UTXO_ATTACH_3_TX_HASH:0 $UTXO_ATTACH_2_TX_HASH:0 $TX_HASH:0", }, "tx_hash": "$TX_HASH", }, From 2a21c8bf45decd0ba202c7af7248a1ef494a01ef Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 17:58:18 +0000 Subject: [PATCH 005/138] fix regtest scenarios --- apiary.apib | 5357 ++++++++--------- .../test/regtest/apidoc/apicache.json | 4927 ++++++++------- .../test/regtest/regtestcli.py | 3 - .../scenarios/scenario_16_fairminter.py | 4 +- .../scenarios/scenario_17_dispenser.py | 2 +- .../regtest/scenarios/scenario_18_utxo.py | 24 +- .../test/regtest/scenarios/scenario_7_utxo.py | 47 +- .../scenarios/scenario_8_atomicswap.py | 24 +- .../test/regtest/testscenarios.py | 10 +- 9 files changed, 5153 insertions(+), 5245 deletions(-) diff --git a/apiary.apib b/apiary.apib index 6c9130d03d..c02db43a19 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 21:58:03.817904. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-29 17:54:30.405437. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 662, + "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_index": 209, + "block_time": 1730224454, "difficulty": 545259519, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae" + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf" }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 653, - "result_count": 108 + "next_cursor": 660, + "result_count": 109 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 663, + "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_index": 209, + "block_time": 1730224454, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "fee": 0, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 654, - "result_count": 76 + "next_cursor": 661, + "result_count": 77 } ``` @@ -242,24 +242,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 664, + "event_index": 671, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "out_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 558, + "next_cursor": 565, "result_count": 5 } ``` @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 661, - "result_count": 108 + "next_cursor": 668, + "result_count": 109 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 660, - "result_count": 61 + "next_cursor": 667, + "result_count": 62 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 668, + "event_index": 675, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 208, - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "block_time": 1730152668, + "block_index": 209, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -341,15 +341,15 @@ Here is a list of events classified by theme and for each an example response: "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 665, - "result_count": 72 + "next_cursor": 672, + "result_count": 73 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,12 +381,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 669, + "next_cursor": 676, "result_count": 91 } ``` @@ -397,34 +397,34 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 602, + "event_index": 609, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 202, - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 203, + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "quantity": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "tx_index": 69, - "block_time": 1730152624, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_index": 70, + "block_time": 1730224421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_time": 1730152624 + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "block_time": 1730224421 } ], - "next_cursor": 498, + "next_cursor": 505, "result_count": 2 } ``` @@ -435,20 +435,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 650, + "event_index": 657, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 206, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 207, + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "status": "valid", - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, - "block_time": 1730152650, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_index": 74, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,12 +458,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_time": 1730224436 } ], - "next_cursor": 649, + "next_cursor": 656, "result_count": 15 } ``` @@ -494,24 +494,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 541, + "event_index": 548, "event": "SWEEP", "params": { - "block_index": 194, - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "status": "valid", - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, - "block_time": 1730152588, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_index": 61, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "block_time": 1730152588 + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "block_time": 1730224384 } ], "next_cursor": null, @@ -525,23 +525,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 337, + "event_index": 344, "event": "ASSET_DIVIDEND", "params": { "asset": "MYASSETA", - "block_index": 154, + "block_index": 155, "dividend_asset": "XCP", - "fee_paid": 40000, + "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "tx_index": 41, - "block_time": 1730152419, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_index": 42, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -553,11 +553,11 @@ Here is a list of events classified by theme and for each an example response: "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" }, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "block_time": 1730152419 + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "block_time": 1730224202 } ], "next_cursor": null, @@ -583,21 +583,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 593, + "event_index": 600, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 201, - "block_time": 1730152620 + "block_index": 202, + "block_time": 1730224416 }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_time": 1730224416 } ], - "next_cursor": 567, + "next_cursor": 574, "result_count": 12 } ``` @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 594, + "event_index": 601, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 201, + "block_index": 202, "call_date": 0, "call_price": 0.0, "callable": false, @@ -622,25 +622,25 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", "transfer": false, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, - "block_time": 1730152620, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_index": 69, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_time": 1730224416 } ], - "next_cursor": 568, + "next_cursor": 575, "result_count": 24 } ``` @@ -651,18 +651,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 547, + "event_index": 554, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 195, + "block_index": 196, "quantity": 1, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", "tag": "64657374726f79", - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "tx_index": 61, - "block_time": 1730152592, + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_index": 62, + "block_time": 1730224388, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "block_time": 1730152592 + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "block_index": 196, + "block_time": 1730224388 } ], "next_cursor": 157, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 659, + "event_index": 666, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 208, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,11 +706,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": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,12 +734,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": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 529, + "next_cursor": 536, "result_count": 8 } ``` @@ -750,29 +750,29 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 491, + "event_index": 498, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 3000, - "block_index": 188, + "block_index": 189, "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "match_expire_index": 208, + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx0_block_index": 186, + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_index": 51, - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "tx1_block_index": 188, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_index": 52, + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_index": 54, - "block_time": 1730152544, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_index": 55, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,12 +791,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": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "block_time": 1730152544 + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "block_index": 189, + "block_time": 1730224341 } ], - "next_cursor": 475, + "next_cursor": 482, "result_count": 3 } ``` @@ -807,18 +807,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 655, + "event_index": 662, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144" + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 521, + "next_cursor": 528, "result_count": 12 } ``` @@ -829,15 +829,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 482, + "event_index": 489, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59" + "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_time": 1730224338 } ], "next_cursor": null, @@ -851,19 +851,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 481, + "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", "status": "completed" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_time": 1730224338 } ], - "next_cursor": 454, + "next_cursor": 461, "result_count": 2 } ``` @@ -874,23 +874,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 483, + "event_index": 490, "event": "BTC_PAY", "params": { - "block_index": 187, + "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "status": "valid", - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "tx_index": 53, - "block_time": 1730152540, + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_index": 54, + "block_time": 1730224338, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_time": 1730224338 } ], "next_cursor": null, @@ -904,20 +904,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 523, + "event_index": 530, "event": "CANCEL_ORDER", "params": { - "block_index": 192, - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 193, + "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "tx_index": 58, - "block_time": 1730152570 + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_index": 59, + "block_time": 1730224367 }, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "block_time": 1730152570 + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "block_index": 193, + "block_time": 1730224367 } ], "next_cursor": null, @@ -931,20 +931,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 657, + "event_index": 664, "event": "ORDER_EXPIRATION", "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 + "block_index": 208, + "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_time": 1730224440 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 462, + "next_cursor": 469, "result_count": 3 } ``` @@ -955,18 +955,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 457, + "event_index": 464, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 184, - "order_match_id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "block_time": 1730152467 + "block_index": 185, + "order_match_id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_time": 1730224264 }, "tx_hash": null, - "block_index": 184, - "block_time": 1730152467 + "block_index": 185, + "block_time": 1730224264 } ], "next_cursor": null, @@ -982,27 +982,27 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 553, + "event_index": 560, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 196, + "block_index": 197, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "satoshirate": 1, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": 0, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "tx_index": 62, - "block_time": 1730152595, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_index": 63, + "block_time": 1730224391, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 196, - "block_time": 1730152595 + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 197, + "block_time": 1730224391 } ], "next_cursor": 272, @@ -1027,15 +1027,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,12 +1045,12 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 560, + "next_cursor": 567, "result_count": 8 } ``` @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "destination": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", "dispense_quantity": 10, - "dispenser_tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "dispenser_tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", "tx_index": 31, - "block_time": 1730152380, + "block_time": 1730224160, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", "block_index": 144, - "block_time": 1730152380 + "block_time": 1730224160 } ], "next_cursor": null, @@ -1098,20 +1098,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,12 +1122,12 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 561, + "next_cursor": 568, "result_count": 5 } ``` @@ -1146,19 +1146,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": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "tx_index": 25, "value": 66600.0, - "block_time": 1730152360, + "block_time": 1730224120, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "block_time": 1730152360 + "block_time": 1730224120 } ], "next_cursor": 213, @@ -1174,13 +1174,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 342, + "event_index": 349, "event": "NEW_FAIRMINTER", "params": { "asset": "A95428958968845068", "asset_longname": "MYASSETA.SUBMYASSETA", "asset_parent": "MYASSETA", - "block_index": 155, + "block_index": 156, "burn_payment": false, "description": "", "divisible": true, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "start_block": 0, "status": "open", - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_time": 1730152422, + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "block_index": 155, - "block_time": 1730152422 + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "block_index": 156, + "block_time": 1730224216 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0" + "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb" }, "tx_hash": null, "block_index": 130, - "block_time": 1730152319 + "block_time": 1730224079 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "paid_quantity": 34, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "status": "valid", - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "block_index": 136, - "block_time": 1730152352 + "block_time": 1730224112 } ], "next_cursor": 190, @@ -1290,37 +1290,37 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 577, + "event_index": 584, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 199, - "destination": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b:0", + "block_index": 200, + "destination": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "status": "valid", - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "tx_index": 65, - "block_time": 1730152606, + "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "tx_index": 66, + "block_time": 1730224404, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "block_index": 199, - "block_time": 1730152606 + "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "block_index": 200, + "block_time": 1730224404 } ], - "next_cursor": 319, - "result_count": 3 + "next_cursor": 327, + "result_count": 4 } ``` @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", "fee_paid": 0, "msg_index": 0, - "quantity": 500000000, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", + "quantity": 1000000000, + "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", "status": "valid", - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", "tx_index": 38, - "block_time": 1730152407, + "block_time": 1730224186, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "5.00000000", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", "block_index": 151, - "block_time": 1730152407 + "block_time": 1730224186 } ], "next_cursor": null, @@ -1370,19 +1370,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 670, + "event_index": 677, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 209, + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "msg_index": 1, - "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "quantity": 2000000000, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1390,14 +1390,14 @@ Here is a list of events classified by theme and for each an example response: "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 667, + "next_cursor": 674, "result_count": 11 } ``` @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", "status": "valid", - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", "tx_index": 9, - "block_time": 1730152285, + "block_time": 1730224044, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", "block_index": 121, - "block_time": 1730152285 + "block_time": 1730224044 } ], "next_cursor": 65, @@ -1465,7 +1465,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `208` (str, optional) - The index of the most recent block to return + + cursor: `209` (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` @@ -1482,68 +1482,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, "confirmed": true }, { - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "previous_block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "previous_block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", "difficulty": 545259519, - "ledger_hash": "82b7aa0986153801d34b4a42f07b47c84e24685d8696f9422a2d92fad2a337b5", - "txlist_hash": "ba6fc33695ae4f6266c33514cb0cbee9d38105f78ba7594be4a4cee634d08674", - "messages_hash": "af54cefd796959cf5d8343303d9c7be0b765b1b89b693c6b5a9ab7374afb9606", + "ledger_hash": "0792d90a21f5645caa8772b4b507b158b306fb46a862a54384c0adf8b8b6469f", + "txlist_hash": "8e12af515b5315398d6b743f4b125c273ef98145c558fb473f2871c270c60d33", + "messages_hash": "704087710ecf5e3b9ce688524447940e5a79304b285cd1522f6097a4ae46761b", "transaction_count": 1, "confirmed": true }, { - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "previous_block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_index": 207, + "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_time": 1730224436, + "previous_block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", "difficulty": 545259519, - "ledger_hash": "be00302ec692c6beb809ed6c76f726d178093e916290e232554035f57146b6f2", - "txlist_hash": "365902f962fea5f28dff03b680c5a8b9ca5fd1a33058de5de7ec14aeb225ed25", - "messages_hash": "0dc8852d7d7ecdd56b9c63c616455bc1c116fc865b45cb4b3cec60586168ca3a", + "ledger_hash": "45f8ab7b6b4a0c58595977c07abd6a2ca1f13a1172a1943af27948650b65fd43", + "txlist_hash": "427c35334708f848c7540a8297d651b8ac4aaf22d0c984de30e89302631b6d1f", + "messages_hash": "6f8bf07a81d451d9d3f133f1ba5a943179ed72c6eb5eb7aec4db29eab2da3ee0", "transaction_count": 1, "confirmed": true }, { - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "previous_block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_index": 206, + "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", + "block_time": 1730224431, + "previous_block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", "difficulty": 545259519, - "ledger_hash": "c1b7edc78b076d79b3a5e4c72424a09d7ffe14fe75b38a4debc9d23fd9f5398d", - "txlist_hash": "4eeeef0e7bd3dd22665ee35f6e47962d68777493d6d40d4ee79327499645e336", - "messages_hash": "c37fc64064bacb9a17a6bdf16fc6c67d169079ff509f690e442a561396f85182", + "ledger_hash": "1f6db62341367eefd61c7c3f23a3cb583e5d6d5150a187c4f34594aba8bb7d0f", + "txlist_hash": "15c1231bfc3d241ae6cb65ce186ac9a2d907d2857d692fb6c8ff8c57ec6b8bd2", + "messages_hash": "93c7c553f24148a55ba14c1136578c61d5de14f120bafaaaaaddaa670a24a336", "transaction_count": 1, "confirmed": true }, { - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "previous_block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_index": 205, + "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_time": 1730224428, + "previous_block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", "difficulty": 545259519, - "ledger_hash": "724180ad76ff4c429d83777f69e676fb618e8bad0ff4f7e17e21edf0fc0eebf0", - "txlist_hash": "03f7a32a202bc5cc53417126d5f8a83d7f582f25e64c67cc15e08eb9953cfb98", - "messages_hash": "351bb1b903e1bfe9b921d195c89083d3a5b5eef4fa22f16ded1b900b4dc7f6c4", + "ledger_hash": "ac6409f2a71e64d0809cc15eb330ab5048a661705db26a280050fcccc851e4da", + "txlist_hash": "1562e09dbe82ee6fa44e08c339dd06205566f96be6e2bcd373df1f54cc25f7b7", + "messages_hash": "7ec3388e29ea5c0add62b35615350e54ebef8fb330a849b4f513e807db9d214b", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 203, - "result_count": 108 + "next_cursor": 204, + "result_count": 109 } ``` @@ -1562,7 +1562,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (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. @@ -1573,14 +1573,14 @@ Return the information of a block ``` { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1` (str, required) - The index of the block to return + + block_hash: `3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74` (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,14 +1603,14 @@ Return the information of a block ``` { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, "confirmed": true } @@ -1622,8 +1622,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return - + cursor: `75` (str, optional) - The last transaction index to return + + block_index: `209` (int, required) - The index of the block to return + + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1640,18 +1640,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1673,10 +1673,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1693,43 +1693,43 @@ Returns the events of a block { "result": [ { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null }, { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,18 +1740,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,10 +1786,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" } ], - "next_cursor": 670, + "next_cursor": 677, "result_count": 14 } ``` @@ -1799,7 +1799,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (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 @@ -1847,7 +1847,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (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` @@ -1866,19 +1866,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,22 +1888,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1911,34 +1911,34 @@ Returns the events of a block filtered by event "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" } ], "next_cursor": null, @@ -1951,7 +1951,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2000,17 +2000,17 @@ Returns the credits of a block { "result": [ { - "block_index": 208, - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "block_index": 209, + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2021,17 +2021,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 208, + "block_index": 209, "address": null, "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2039,28 +2039,28 @@ Returns the credits of a block "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { - "block_index": 208, + "block_index": 209, "address": null, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, @@ -2073,7 +2073,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2111,17 +2111,17 @@ Returns the debits of a block { "result": [ { - "block_index": 208, + "block_index": 209, "address": null, "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2129,28 +2129,28 @@ Returns the debits of a block "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { - "block_index": 208, + "block_index": 209, "address": null, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, @@ -2163,7 +2163,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `207` (int, required) - The index of the block to return + + block_index: `208` (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 @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, + "object_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, "confirmed": true, - "block_time": 1730152654 + "block_time": 1730224440 } ], "next_cursor": null, @@ -2198,7 +2198,7 @@ Returns the expirations of a block Returns the cancels 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 cancels to return + Default: `None` + limit: `5` (int, optional) - The maximum number of cancels to return @@ -2216,14 +2216,14 @@ Returns the cancels of a block { "result": [ { - "tx_index": 58, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "tx_index": 59, + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", "status": "valid", "confirmed": true, - "block_time": 1730152570 + "block_time": 1730224367 } ], "next_cursor": null, @@ -2236,7 +2236,7 @@ Returns the cancels of a block Returns the destructions of a block + Parameters - + block_index: `195` (int, required) - The index of the block to return + + block_index: `196` (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 @@ -2254,16 +2254,16 @@ Returns the destructions of a block { "result": [ { - "tx_index": 61, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 62, + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "block_index": 196, + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730152592, + "block_time": 1730224388, "asset_info": { "divisible": true, "asset_longname": null, @@ -2284,7 +2284,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `202` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2315,15 +2315,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2353,7 +2353,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (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 @@ -2371,19 +2371,19 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2391,31 +2391,31 @@ Returns the sends, include Enhanced and MPMA sends, of a block "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" } ], @@ -2429,7 +2429,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `209` (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 @@ -2447,29 +2447,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2506,7 +2506,7 @@ Returns the dispenses of a block Returns the sweeps of a block + Parameters - + block_index: `194` (int, required) - The index of the block to return + + block_index: `195` (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 @@ -2524,17 +2524,17 @@ Returns the sweeps of a block { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -2548,7 +2548,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `155` (int, required) - The block index of the fairminter to return + + block_index: `156` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "block_hash": "53cb12386a68a0eb2d712688e0a922b31c36cca2e8337ea04f21b73843540e08", - "block_time": 1730152360, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_hash": "694af526f14e5ce4a91da6215b5e39773517132196dd9cd2ef01cb3b4a2c85a1", + "block_time": 1730224120, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4:1", + "utxos_info": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2726,26 +2726,26 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 53, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_hash": "5044c36de08b93fffc6876d3f7129b682a3aed38618d51b8a3a755666c378a72", - "block_time": 1730152540, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 54, + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_hash": "4c73b90c14c7e493f302d2ce47b788c5d5d0095053bc4541f5db5f3fd5c3711f", + "block_time": 1730224338, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "btc_amount": 2000, "fee": 10000, - "data": "0b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "data": "0bc63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", "supported": true, - "utxos_info": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29:0", + "utxos_info": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", "status": "valid" } }, @@ -2759,24 +2759,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 58, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "block_hash": "7cdd71a5dc05b5bbe83295e9dd2b0c687e13e6d2964c7861b87dad729343aac4", - "block_time": 1730152570, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 59, + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "block_index": 193, + "block_hash": "7ae7e088988758ef4fd6a12afeb6b432b388b6c7910c39f1f329ee5799dc8382", + "block_time": 1730224367, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "data": "468f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", "supported": true, - "utxos_info": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7:1", + "utxos_info": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", "status": "valid" } }, @@ -2790,18 +2790,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 61, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "block_hash": "3f462ac5ddea322e484ed6d05aecc7c1920781323352104cfe685930eb32c4ee", - "block_time": 1730152592, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 62, + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "block_index": 196, + "block_hash": "6cf8525389971b6b83a249b31950186b459a205eb500fbb83fed9ab7f35bac9a", + "block_time": 1730224388, + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282:1", + "utxos_info": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2830,18 +2830,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 196, - "block_hash": "5838e566e95890cb4624db9ee9ccaac5bdd5e02a1bd554532c8d360540c25acc", - "block_time": 1730152595, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 197, + "block_hash": "34c65eabd90ca6bb6cc2f016f755c5d1c2fccea0dacf3915445bcb60b62882ac", + "block_time": 1730224391, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648:1", + "utxos_info": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2876,18 +2876,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2906,18 +2906,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "block_hash": "6efbde2429b5135643b2c45667e5daa038a188e1d611f50c96a0af39a2ac9d8a", - "block_time": 1730152419, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "block_hash": "4541b57fbe95f6b241f35848d54f4dc6790ae18d1a28b06ebe0efc6800d2ddbb", + "block_time": 1730224202, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab:1", + "utxos_info": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2954,18 +2954,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", - "block_time": 1730152620, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_hash": "08b7f2bc4f5c947cc2bf749402264c67a412cf7a4d0b46a640e162db8f091bbe", + "block_time": 1730224416, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", + "utxos_info": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2996,18 +2996,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3049,18 +3049,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", - "block_time": 1730152624, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 70, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "block_hash": "535f5b9d18e10ef11dd8517336a14f3d093237e7ca883c56c32ca6473feb7333", + "block_time": 1730224421, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "02000000178d82231300000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", "supported": true, - "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", + "utxos_info": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -3090,18 +3090,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_time": 1730224436, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", + "utxos_info": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3149,24 +3149,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "block_hash": "62df80f065f42d63baeec0fc56cfa085a830945ca932cdeb4cd048b4e81e37f7", - "block_time": 1730152588, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "block_hash": "07d4e27bafaf1fcc0ca8e95375d50a165d0013d4486571feb31a820a1ac386e0", + "block_time": 1730224384, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4017377656570206d7920617373657473", + "data": "04804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f017377656570206d7920617373657473", "supported": true, - "utxos_info": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35:1", + "utxos_info": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "memo": "sweep my assets" } @@ -3181,7 +3181,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `75` (str, optional) - The index of the most recent transactions to return + + cursor: `76` (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` @@ -3198,18 +3198,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3221,18 +3221,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3267,8 +3267,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 73, - "result_count": 76 + "next_cursor": 74, + "result_count": 77 } ``` @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001011d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a0000000000ffffffff020000000000000000356a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168f0ca052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1024730440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde012103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101bd2c76d2f84ef9c87644ba69c3639b2b08df08830a7a25253c8cda9c90eaec6a0000000000ffffffff020000000000000000356a332d6d02493979893c82effb12b1fcb7b01acd6f72460104a3506b906fd0246db9a1ba98d7d328944dfd9c1f4f2d506e9467ae82f0ca052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f0247304402201b4b5ecf9330d14050f58d998176ed0b66946731e834b7f680ad46233422a1790220404f68b1f974f0fb0d6499d8dec239f5838d0dc13ca4cd9102dfbe599a2e8283012102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c600000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3301,7 +3301,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "1d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a", + "hash": "bd2c76d2f84ef9c87644ba69c3639b2b08df08830a7a25253c8cda9c90eaec6a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,20 +3311,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168" + "script_pub_key": "6a332d6d02493979893c82effb12b1fcb7b01acd6f72460104a3506b906fd0246db9a1ba98d7d328944dfd9c1f4f2d506e9467ae82" }, { "value": 4999990000, - "script_pub_key": "00147967f0a0bd9d33804ecfac05d869b2782a3467a1" + "script_pub_key": "0014d6c757c35a7fa6eddd04672f20c061337e98041f" } ], "vtxinwit": [ - "30440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde01", - "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "304402201b4b5ecf9330d14050f58d998176ed0b66946731e834b7f680ad46233422a1790220404f68b1f974f0fb0d6499d8dec239f5838d0dc13ca4cd9102dfbe599a2e828301", + "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" ], "lock_time": 0, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_id": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_id": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" }, "unpacked_data": { "message_type": "order", @@ -3366,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43` (str, required) - Transaction hash + + tx_hash: `9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7` (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. @@ -3377,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "138349f715f3b77257e2c4ad6a7dd21e86edaa83fc46bc3d9e966c702eb2831d", + "hash": "bd4f7f4e49aa9ec09dde2cab63d3fe9a13d3c230d2f98b1e173e723962e950e5", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eff33b1f7f8e902221f13c27b12b7d32e190f805c939dcf9ab4de5baf7143247463d682a89b00ffe16d91d8dc9d1f" + "script_pub_key": "6a2ee356a869e368891d4240c638da8ff82976f3e5f8db4c6e88e36f1a6890bb8472fc9fe2af296c4289e68d7200bf2f" }, { - "value": 4999970000, - "script_pub_key": "00142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4" + "value": 4949932460, + "script_pub_key": "00144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f" } ], "vtxinwit": [ - "3044022036beb3fb4d3dd6bd98282613490c124c3a14f85ae1b1f004c2f44bd429f4a588022051a6de46a46e50e2ae2b08532f731486c334ac19db5ba804a53f0921fb2e890701", - "023e3d46364a1fab486d12778805a80a614ea43362116ec89285ecd3f2893be2b9" + "3044022059732e13907c083151a0046d0ae2a0d83115ec6e30264e247494b35ffcc66fda022067082b8ec9bbeef1655e5146dc7f7c2d9ca25996c24f00b2fab3265514c3c3d901", + "023033194911d3bc9532356b962b4ba5d5f55ff9afab8febbdc2d81adc21350da7" ], "lock_time": 0, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_id": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43" + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_id": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -3468,7 +3468,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `75` (int, required) - The index of the transaction + + tx_index: `76` (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. @@ -3479,18 +3479,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction + + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (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. @@ -3520,18 +3520,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3550,7 +3550,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `75` (int, required) - The index of the transaction to return + + tx_index: `76` (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 @@ -3570,32 +3570,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,20 +3606,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,24 +3656,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 670, + "event_index": 677, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 209, + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "msg_index": 1, - "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "quantity": 2000000000, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3681,14 +3681,14 @@ Returns the events of a transaction "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 669, + "next_cursor": 676, "result_count": 12 } ``` @@ -3698,10 +3698,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3718,32 +3718,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,20 +3754,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,24 +3804,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 670, + "event_index": 677, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 209, + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "msg_index": 1, - "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "quantity": 2000000000, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3829,14 +3829,14 @@ Returns the events of a transaction "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 669, + "next_cursor": 676, "result_count": 12 } ``` @@ -3846,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (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 @@ -3864,19 +3864,19 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3884,31 +3884,31 @@ Returns the sends, include Enhanced and MPMA sends, of a block "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" } ], @@ -3922,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (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 @@ -3940,29 +3940,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -3999,9 +3999,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `75` (int, required) - The index of the transaction to return + + tx_index: `76` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4018,19 +4018,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,24 +4040,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -4065,38 +4065,38 @@ Returns the events of a transaction "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], "next_cursor": null, @@ -4109,9 +4109,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4128,19 +4128,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,24 +4150,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -4175,38 +4175,38 @@ Returns the events of a transaction "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], "next_cursor": null, @@ -4221,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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 @@ -4245,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4266,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4287,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4308,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4329,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4350,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4377,8 +4377,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses to return - + cursor: `75` (str, optional) - The last transaction index to return + + addresses: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - Comma separated list of addresses to return + + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4395,18 +4395,18 @@ Returns the transactions of a list of addresses { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4441,18 +4441,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_time": 1730224436, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", + "utxos_info": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4475,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4493,18 +4493,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 73, + "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "block_index": 206, + "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", + "block_time": 1730224431, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa:0", + "utxos_info": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4527,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4545,18 +4545,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_time": 1730224428, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4579,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4597,18 +4597,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", + "block_time": 1730224424, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4631,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4649,7 +4649,7 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 69, + "next_cursor": 70, "result_count": 46 } ``` @@ -4659,10 +4659,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4679,12 +4679,12 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 659, + "event_index": 666, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 208, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -4695,11 +4695,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4723,24 +4723,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 658, + "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 207, - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "block_index": 208, + "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", "quantity": 1000, - "tx_index": 74, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,37 +4750,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 657, + "event_index": 664, "event": "ORDER_EXPIRATION", "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 + "block_index": 208, + "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_time": 1730224440 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 656, + "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 207, + "block_index": 208, "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -4790,25 +4790,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 654, + "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_index": 207, - "block_time": 1730152654, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_index": 208, + "block_time": 1730224440, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4840,12 +4840,12 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 650, + "next_cursor": 657, "result_count": 237 } ``` @@ -4855,7 +4855,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2,bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y,bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq` (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 @@ -4871,18 +4871,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, "asset_info": { "divisible": true, "asset_longname": null, @@ -4892,22 +4892,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +4917,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 209, + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +4942,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730224458.0780673, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, + "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +4979,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -4992,7 +4992,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -5012,7 +5012,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5020,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5035,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,16 +5050,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649961196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5069,10 +5069,10 @@ Returns the balances of an address "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5080,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5097,7 +5097,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -5110,9 +5110,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649961196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5122,7 +5122,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49961000" } ], "next_cursor": null, @@ -5135,7 +5135,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5184,17 +5184,17 @@ Returns the credits of an address { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -5205,17 +5205,17 @@ Returns the credits of an address "quantity_normalized": "0.00005000" }, { - "block_index": 206, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 207, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -5226,17 +5226,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730224431, "asset_info": { "divisible": true, "asset_longname": null, @@ -5247,38 +5247,38 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 201, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 202, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, + "event": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "block_index": 192, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 193, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "tx_index": 58, + "event": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "asset_info": { "divisible": true, "asset_longname": null, @@ -5299,7 +5299,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5337,17 +5337,17 @@ Returns the debits of an address { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -5358,17 +5358,17 @@ Returns the debits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -5379,38 +5379,38 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 204, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "divisible": true, "asset_longname": null, @@ -5421,28 +5421,28 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 204, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" } ], - "next_cursor": 61, + "next_cursor": 62, "result_count": 28 } ``` @@ -5452,7 +5452,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address of the feed + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5487,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -5506,9 +5506,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5516,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730224116, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5530,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -5549,14 +5549,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "43020304a8d69e758c8cfe4f200d3db11286a5b782bdf8270be5b1ce40029012", + "tx_hash": "4cd5874f0136b2fe2b5610f9753c0439a8c96d34915708fbaaa4f7f55611dc63", "block_index": 112, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730152253, + "block_time": 1730224010, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5571,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -5589,11 +5589,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -5613,11 +5613,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5625,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5637,11 +5637,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5661,11 +5661,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5673,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "divisible": true, "asset_longname": null, @@ -5685,11 +5685,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5697,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5709,7 +5709,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 19, + "next_cursor": 20, "result_count": 12 } ``` @@ -5719,7 +5719,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034` (str, required) - The address to return + + address: `bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6` (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 @@ -5738,26 +5738,26 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", "block_index": 151, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", + "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", "asset": "MYASSETA", - "quantity": 500000000, + "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152407, + "block_time": 1730224186, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "5.00000000", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" } ], @@ -5771,7 +5771,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5790,11 +5790,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5802,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5814,11 +5814,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5826,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5838,11 +5838,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5850,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5862,11 +5862,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +5874,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5886,11 +5886,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 70, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +5898,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152624, + "block_time": 1730224421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5920,7 +5920,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034` (str, required) - The address to return + + address: `bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +5948,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +5977,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +5988,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +5998,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,10 +6013,10 @@ Returns the dispensers of an address "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6025,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6035,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6060,7 +6060,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -6073,9 +6073,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6084,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6094,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6116,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -6134,21 +6134,21 @@ Returns the dispenses of a source { "result": [ { - "tx_index": 63, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6156,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6171,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6185,19 +6185,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6205,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6220,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6234,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6254,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6269,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6291,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to return + + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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 @@ -6309,21 +6309,21 @@ Returns the dispenses of a destination { "result": [ { - "tx_index": 63, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6331,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6346,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6360,19 +6360,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6380,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6395,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6409,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6429,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6444,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6466,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -6487,19 +6487,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6507,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6522,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6536,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6556,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6571,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6593,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to return + + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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` @@ -6614,19 +6614,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6634,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6649,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6663,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6683,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6698,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6720,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2` (str, required) - The address to return + + address: `bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y` (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 @@ -6738,17 +6738,17 @@ Returns the sweeps of an address { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6762,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6793,15 +6793,15 @@ Returns the issuances of an address { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6816,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_index": 49, + "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", "msg_index": 0, - "block_index": 161, + "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6844,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730224248, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_index": 48, + "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", "msg_index": 0, - "block_index": 160, + "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +6872,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730224245, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_index": 47, + "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +6900,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730224241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 45, - "tx_hash": "9083ecad51d2ce0aeb1ab41b80c7db2a58cda52c3031dfb8b79d2bb2689cf70a", + "tx_index": 46, + "tx_hash": "e1416fb7b09cf5ac75952c991615fb3e2231b1f44d3f5151df4b7b4b750d9c93", "msg_index": 0, - "block_index": 158, + "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +6928,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152434, + "block_time": 1730224227, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +6943,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The issuer or owner to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,42 +6966,42 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7009,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7026,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730224109, + "last_issuance_block_time": 1730224112, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7043,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730224084, + "last_issuance_block_time": 1730224104, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7058,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The issuer to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -7081,42 +7081,42 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7124,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7141,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730224109, + "last_issuance_block_time": 1730224112, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7158,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730224084, + "last_issuance_block_time": 1730224104, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7173,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The owner to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,42 +7196,42 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7239,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7256,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730224109, + "last_issuance_block_time": 1730224112, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7273,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730224084, + "last_issuance_block_time": 1730224104, "supply_normalized": "0.00000019" } ], @@ -7288,8 +7288,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return - + cursor: `75` (str, optional) - The last transaction index to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7306,18 +7306,18 @@ Returns the transactions of an address { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7352,18 +7352,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_time": 1730224428, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7371,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7386,7 +7386,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7404,18 +7404,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", + "block_time": 1730224424, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7423,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7438,7 +7438,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7456,18 +7456,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", - "block_time": 1730152624, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 70, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "block_hash": "535f5b9d18e10ef11dd8517336a14f3d093237e7ca883c56c32ca6473feb7333", + "block_time": 1730224421, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "02000000178d82231300000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", "supported": true, - "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", + "utxos_info": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7475,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7490,18 +7490,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", - "block_time": 1730152620, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_hash": "08b7f2bc4f5c947cc2bf749402264c67a412cf7a4d0b46a640e162db8f091bbe", + "block_time": 1730224416, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", + "utxos_info": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7525,7 +7525,7 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 62, + "next_cursor": 63, "result_count": 31 } ``` @@ -7535,7 +7535,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -7553,21 +7553,21 @@ Returns the dividends distributed by an address { "result": [ { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, - "fee_paid": 40000, + "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7579,7 +7579,7 @@ Returns the dividends distributed by an address "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" } ], "next_cursor": null, @@ -7592,7 +7592,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7620,10 +7620,10 @@ Returns the orders of an address { "result": [ { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7631,14 +7631,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7663,10 +7663,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 52, + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7674,14 +7674,14 @@ Returns the orders of an address "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 206, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,10 +7706,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7717,14 +7717,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7749,10 +7749,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "block_index": 194, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7760,14 +7760,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730224380, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7792,10 +7792,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7803,14 +7803,14 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,7 +7845,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The source of the fairminter to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +7870,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +7898,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +7907,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +7935,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730224109, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +7947,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +7975,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730224084, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +7987,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8015,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730224079, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8027,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8055,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8077,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8095,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8119,22 +8119,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730224104, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8143,22 +8143,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730224091, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8167,22 +8167,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730224087, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8191,22 +8191,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cd779281665ec54a0657c909a5a5888c98253660c075af8adf487672735a1d69", + "tx_hash": "b83c248f846aa160084220151e9b4524f7c1379b7d4e8b8c16c943d796a19d67", "tx_index": 15, "block_index": 127, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152307, + "block_time": 1730224068, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8215,22 +8215,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8249,7 +8249,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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` @@ -8268,22 +8268,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8304,7 +8304,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0` (str, required) - The utxo to return + + utxo: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8323,9 +8323,9 @@ Returns the balances of an utxo "result": [ { "asset": "XCP", - "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "quantity": 2000000000, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset_info": { "divisible": true, "asset_longname": null, @@ -8333,21 +8333,21 @@ Returns the balances of an utxo "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { "asset": "MYASSETA", - "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "quantity": 2000000000, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, @@ -8383,8 +8383,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will make the bet - + feed_address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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) @@ -8456,7 +8456,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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) @@ -8516,7 +8516,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8528,7 +8528,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001016bbdac07a76d292a49995d8bf8de89da525d9b32d2ab29a52feb98c105f20576000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29b93f99a28b4bb16aef7b085834e88cc7ffc295c6ea9bc30651365677485eea265eb32240ea4dc2f70483ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101e586839271acf088a5bc45426c667960b17f795781a34efac10c8cdd3c932e6800000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a296e5eb72aa4f3483585c1794d457f83278c871f7759bca44a0a776bf4e88b7fc141302844f4fbddd52e83ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8550,8 +8550,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending the payment - + order_match_id: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8` (str, required) - The ID of the order match to pay for + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending the payment + + order_match_id: `c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a` (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) @@ -8607,23 +8607,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" }, "name": "btcpay", - "data": "434e5452505254590b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca436714468448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "data": "434e5452505254590bc63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "020000000001013ba8474dba78d5b2a7418f254db65d0f667eb6846cf0a2d1a37fec518310b597000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03b80b0000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a100000000000000004b6a4975cbfbf03e30e31bb5e20d495fb01c2653599b2a09b993f3207ec6a8201d7607d5182a30e2d2fa8df227d622eecd6eb3b30958a79f37fd67972e55d5fc313b9c11b791efbb1facff6ca99f052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010178f15e9f63ff6bcc8ac30a2c6b09d96a6b3b7d993982a0f49c55e00ecdf6150200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03b80b000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f00000000000000004b6a498d2276d6569f25c712bf7165159972874854d60a81fad70e89222fcb078302c215da3c3705bb1d36d6415b9c6a6d6d4f0dd4963f51154c9e07464a160275b69a5b23c8d45740509ea7a99f052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", "status": "valid" } } @@ -8636,7 +8636,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address with the BTC to burn + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -8695,7 +8695,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 1000, "overburn": false }, @@ -8705,7 +8705,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101b2eea65ffc130ffefef3cddf867d62b6a3a3d85413826b0f9a9bec147e2af13f000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000" + "rawtransaction": "02000000000101efa5eca541f477e33895cebaa431bfb27c3d90869183f7113852e6aa623d408500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000" } } ``` @@ -8715,8 +8715,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0` (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) @@ -8772,21 +8772,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" }, "name": "cancel", - "data": "434e5452505254594694d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "data": "434e54525052545946dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001017607181c41ad743b880f28175184e2c04167fd1d94fd25a7209c9ea321fb3887000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29303ebad3021b4d6138b5db967d05db545eedba6d0c675259c45a095f6fd75b9424d81427e4e3aaa10e83ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101c14f5e2d3e7262b6b5a95a2a7f31f3388e7362b01c778128bfec90b5e69aaca200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a29221177878a37cfdc2a9dc1cf3b169968625dc6c201f2e765d12dc43ae7e11aefbe68a9ade68eef188383ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", "status": "valid" } } @@ -8799,7 +8799,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -8858,7 +8858,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8877,7 +8877,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "02000000000101187d4666a3e0d464a2bfa34950f8e7420dc6a833e8186850829a30dbb5ddc164000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000226a2094d7a3f3bbcd35ff65faa7e260b5ef6c46b4bb390ea97ca5c8ec89f01b2ffc9493bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101d8a5327a9377d916c78057cf799cc882b1decdcd9984057dc5b76da1a9ae8af900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000226a208cde9c86347dc68962c518cdc5a774d3b83fb4adbe4fd10c4bada882c876773593bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8897,7 +8897,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: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z` (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) @@ -8962,7 +8962,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8986,7 +8986,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949920236, "btc_fee": 14264, - "rawtransaction": "02000000000101d1c09a210e2f9eb576d8d0c26d620bd0524b583f80fab9276b3596b96e02afae01000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7effffffff0200000000000000002c6a2a727cb1709e366477fd16c83cc5d4d3816740f1707e9354508ff03c7fc05a03221c9533b31becd82add28ecc9092701000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7e02000000000000", + "rawtransaction": "020000000001017fa8470a58592d54bf64cbade39e74b4c12b72a3cb5da0bc70f49a44a01472010100000016001405957a5ce96b7e12931440ef2986e21aeb3328c4ffffffff0200000000000000002c6a2a40940c2f2fd165343737aefeaaac21c635b3806c86fe5543bbfa3c6f67f9913ae41c31eda9ed56994624ecc909270100000016001405957a5ce96b7e12931440ef2986e21aeb3328c402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9012,7 +9012,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -9071,14 +9071,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9097,7 +9097,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101bccddcc7c292c9f93bd0a857d43e2f251b8660b79784967209514551c8d90556000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2116d6d2bf8ee338938cd8bb42921a91b70dcb91491707280fba52b2d7971bd7428158bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010153c96371617fdcc0f1c77cbc5519deb38c1f8e124efcce7d846b4d80e9225c7200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21e9777b55809c36e116fea13e9b1364aa060ca08b64f0d5be09a238293349ba81e658bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9118,10 +9118,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -9186,10 +9186,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "transfer_destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "lock": false, "reset": false, @@ -9202,7 +9202,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101139de7476f55fdf21e92052391719656f33b7347ea131643e6b1453a536795c7000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0322020000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a10000000000000000236a21ceeba0a4b3fe260c096002670704f57eedf714525e8020461d52d24f2d7fbe50646bb2052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010103e62ad510c2fa899a321523a44099af39159c86bec9a212c7375ff34917ce7f00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff032202000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f0000000000000000236a21f2f18eb3506274cb6cef7cc03da89aaec9619d979fc147968e0133eca84228cf686bb2052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9231,9 +9231,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9298,16 +9298,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", 1 ], [ "MPMASSET", - "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", 2 ] ], @@ -9315,26 +9315,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002807967f0a0bd9d33804ecfac05d869b2782a3467a1805511f1f6819b94a0094d338694640cbee5b8969d40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d6c757c35a7fa6eddd04672f20c061337e98041f80d1b2178052ed879c9e588fa4a734c0e832b4999740000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "020000000001049e5f6c01f025eb801bd2f83123f1fbe1bc26d82731c5e989f8827fd1c96545ca000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffff1945c0490ae4bbe569a4e9478ec268003a1461dd53616cbc78fa81d421f8ee6000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffffa6f704e1baaf5c6952e2ea6c20f6981d6dc033886747b9cf110bf2877cd5b1a000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffe4f980087f32a896e9ad9c82620f463004e29fc7dfad97e2a3ee49ab2d75c415000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03e80300000000000069512102f405a8ba5cf6a2b810a6c3550b257049f2d6e1b083639fb7cdf85a7788a4b72d210255bb00ed856a417842a099b3da1b48400df47e096af35ec60cb900f2caafc54d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102eb05a8ba5cf6a2b81075c3578b5c17b9524f7c83032d501bc82433c5f08e835c2103321a81b8949bb7f9d93439ba9728ced469f8c0ecd265c3860cb90511aa2701df2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aebcf216a8040000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000000000000", + "rawtransaction": "02000000000104d255c44864bd2a29b61b064a381c410edaba508fd3e9916d1e624c35aafd519600000000160014d6c757c35a7fa6eddd04672f20c061337e98041ffffffffff0be0186edc68abc84d591355157c50ca5efa06624373516cee77dd49342ef8900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff901da048f9114616e2695e17528fb029f6d9e441b90256aa280300c73674806500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff93a509ff292e9db67f1ec2be58b3c59979cd7827530ab1e9344128a14f342db100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03e803000000000000695121030e74eccc3d295073a5d70fcd740640a7add8223fe44809e1b86ee396b5cc0abc2102f3177213b02533994b9878686221fc0fb37915ed6719164b430a3ff47db80b722102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121021174eccc3d295073a5040fcff4d087f06ea65d9909950d86974a23f786b292fb2103f708f3c20232b3cba61fe4f63aae58a887b9fddfd380810b430a3a171d30cff52102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aebcf216a804000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9350,7 +9350,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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 @@ -9412,7 +9412,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9429,7 +9429,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9443,7 +9443,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "02000000000101ab499e5a3d8196519c12febc23e233920eb19d00e35c78dca0789e44b26cdac2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000356a33bece1d3d171adcd7284dfef1ab9a46411240de9c5909b634b7850938f967c24dbdbf6ce5d336636d946de16548c2ee67eca42a38b8052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "020000000001015eebd64f3c1d80c089148d03f5140d080e0fcb25e29c6186a9dec1b59208eb8700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000356a33df068693567c0de1989a60f3dd38d1e685e3b4f50eccde713e2efb0569f4f433794da8f59454cf2f67065486881a147ca8f92238b8052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9469,8 +9469,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that will be receiving the asset + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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 @@ -9534,8 +9534,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9551,19 +9551,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "434e54525052545902000000000000000100000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "02000000000101b2623bad63243f7a0e974d94b0c223add9b0b80a5e255266b92ba264c7a45311000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000306a2ea21d7eb608cf78cca691ce6c36f4842f50d439486b60d2e6b88abcceecd2cedf427af27fa2b7385ff2398e091e045db9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "020000000001017153cbfa8dd7704b50d93a6a0e2c66b7ca3bb15bbcb67a6dd32c6b0f4717908d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000306a2ebac97581eaff0fc6645bb409e84fd3bb8dedf00ea7543b6cbcd93398ebb4a2c09493eef630d96056912dd6002e465db9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "quantity_normalized": "0.00001000" } @@ -9577,8 +9577,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending - + destination: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending + + destination: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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 @@ -9636,23 +9636,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904805511f1f6819b94a0094d338694640cbee5b8969d07ffff", + "data": "434e5452505254590480d1b2178052ed879c9e588fa4a734c0e832b4999707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101cf72977222916e5cfff737c5d75904919a603da30c94d8ca213d849c9728dd9b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2190fbdb1d8fa53db0eb2a8fc10d632c18bddc537f624460499580413ae7e1bfc5bd58bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101f8b191474a4b30e6aa65214fe9bf4f8734b7716a08e9469982a51d09f0dd164600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21125dc85877e3a42cc2ad331181b95910d461d4e1066fdf3769c0c3674872240c8458bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "flags": 7, "memo": "ffff" } @@ -9666,8 +9666,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: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq` (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` @@ -9724,8 +9724,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "quantity": 1000 }, "name": "dispense", @@ -9734,7 +9734,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101065e2fae24d3ed96a884712623a3a8e194a3cdde3cb588023317f389f6ba83df030000001600145511f1f6819b94a0094d338694640cbee5b8969dffffffff03e8030000000000001600142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b400000000000000000c6a0a2e4844bdce5321afdbce8b250827010000001600145511f1f6819b94a0094d338694640cbee5b8969d02000000000000", + "rawtransaction": "02000000000101acb6e463fde3ee9c1f18921748d98f000f0700adde56b9c31fd4cf7b04ad168603000000160014d1b2178052ed879c9e588fa4a734c0e832b49997ffffffff03e8030000000000001600144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f00000000000000000c6a0a6a7ddc1e04761ad6d06d8b25082701000000160014d1b2178052ed879c9e588fa4a734c0e832b4999702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9751,7 +9751,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the asset + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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: `` @@ -9840,7 +9840,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9871,7 +9871,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101ab2eb3e3483c4039cce505f85cc0563cd331a85d45dff80d9bf880fe20828bb2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000316a2f0dec8a46d77959fb639a45d020ade0350620490390b08869ef4325180cb952a68b03d1100c753808ff73cd2066b25e23b9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010136948b5a9d65ed9929b6ea63e739864d23ac800c09d0163daae4ea85736dc55c00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000316a2f644fc2b52998b0b3280ebed21d508a3758967d7818a80ba5ab14b21b8951729683c0754d8dabe39b808b2ee9b6922823b9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9910,7 +9910,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be minting the asset + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -9969,13 +9969,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9987,7 +9987,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101268cd03227a87269a296132dced7a43ec578c67b187578cdda41ab4861774127000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000166a14eebd7268248a3ec571ad08ef295683791a5dd5c154bf052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101572f35b6b166c5425dc6de58c5d9334db3c4b75d300950b88c18d2c868b7c5eb00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000166a1481ab1bd63419abc843e2cc17fdafe0becfe9066e54bf052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10006,10 +10006,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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address from which the assets are attached + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1` (str, optional) - The utxo to attach the assets to + + destination: `dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10066,8 +10066,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10080,12 +10080,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c393464323835333663333666383932316563353335643561336532633533386665613265306561663936663138663536666536323861323436376233636435623a317c5843507c31303030", + "data": "434e54525052545964626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c646264363731303937623931373337306634316336623230333961386433633336363765313339663832666462326264633137356632343130326561656561303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "02000000000106ca9abaac6407cea4a26e4325a5b6b605c16a5f49ad8b20edb751d3f839e60f01000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff2b86ecbeb4d73419de2ce8914ce12bc97ad3c5f326f3974cc97b9b093a3a7286000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff5efbf12951347af1bc0c104cf84743ee371bbf9077467d9da40739605f1e7c7b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff10fe6ccda7c1f8982d6c4e3ff1bbe67e2821d56b3b69cba67ccfd95d0d080b28000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff101bb44012e5c305a391479949891b545cbdbd18c3e2f7116a1854b927bcea27000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffb0d9bedd8c9fdd0eadc8ba2c4a7d994422c13be06f07d20dc8f80ad0497d221d000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff04e80300000000000069512103db6eed4d1970d0de5bf33f4147e75816cf60917a132dbe1fd32db973c4ef5847210387118c8bf69ca93d3ddb93f8b8d0f234f045d2b0dab2d5cac29c2aba24522f1d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102db6eed4d1970d0de5ba13e1103f5515ecd689a755679b21a8879ef7587e206ac2102841d9994f6ddfa69328a84f5fcd1a66de64585e1cabd948e9a9a7abe2b052f502103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512103f16eed4d1970d0de5bf4391757a9581ba71aaf6a527ab74ebd18dc10b58133e32103b725fff197ef9f5957ebe2cccab797558070b387af8ba6b6fba84e881c671c9d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053ae406d22fc060000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000002000002000000000000", + "rawtransaction": "020000000001060642f53336548be530475f11b72468ad9318ce9bb069935b5b980913232a92a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffffc7dee181c1a4d7f0f75483cfca3a6b56b8c4ec75e14534686bf7fe7ab65bc77100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff45bb628e029fe2993b0541626c175452080bffd42a7835d5c218b16dc686874d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff7ae765c41c44282c47de1a66132a5fb67d53680569c1e196e2efc1b6e13ea63500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff1e131c702f91f82f1afb27182d3c50c33fb506d75a1eb548ba70ebaff3ff00a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff5d9f57c43e2b3a5c3f8c5a9d4220c49aa51b66e8e00b76498c84ff58639a14e700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff04e803000000000000695121035b6bbc45b7997ff81bf4cf45b390611ffed0c88a766da83d730e32a7923b16d2210291ac0895172c73859ceb5745c9a7d4f3fb629ad4abdb19a4fb01996517c9eca12102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121035b6bbc45b7997ff81ba99a44f8d5675dff8ddc8a777da86971096fe99e6b15712103dbb94ecb4b6b65c6dfaa55119db2c0e0a5689dc7a2d441bead57cc63129dbd902102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee80300000000000069512103716bbc45b7997ff81bf5c847f1de611290feeac2772eae3b43395cd0ff5371062102e8da7dfd7d5c00f7ec933329afd4a482970af9a493e374d89f63fd5320f8dc832102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653ae406d22fc06000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10097,15 +10097,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (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) + + utxo: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to detach the assets to + 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) @@ -10161,26 +10159,18 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "XCP", - "quantity": 1000, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" + "source": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "asset": null, + "quantity": null }, "name": "utxo", - "data": "434e54525052545964323432353561353564363832353735323130626261393164616434666538643536336138316664346234663137353665343164633566636538643966383865373a307c62637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c5843507c31303030", - "btc_in": 4950080000, + "data": "434e54525052545964303636613036653433633966313261623031653434346435343432643531353361393237643339373537326239313731363830323237666530313463656164653a307c626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c7c", + "btc_in": 4950081000, "btc_out": 3000, - "btc_change": 4950030275, - "btc_fee": 46725, - "rawtransaction": "0200000000010300dce77bb944104741936aa0b2b4b265b003e9de46966f0d609e03bc7b0b968901000000160014f9f761de6a26b38c86a3f54543766007cab6e30ffffffffffdbd816d4d7e0daa457fcbda1e6f3ec2bd72cdf3639c9bcafb60916c861b28e300000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff940d2ffcf377a103eb93ce0505be650e0aef5a5f64e5701e6aeeb1560331a58001000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff04e80300000000000069512103c010e4c250f47059c81bf89b12fd3195b90f36696ef58e25d277a20a1ed3deda2103b8e00811d3b48a87c103c6bf3db54b399759dee65ada72df8c304d2ed768e69321038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103c010e4c250f47059c84aaccc45f060cdea026a3a61fd8b6e8526e14e4dc08fba2102b8bf0000d0b98d8ccc0290f860bf433c82478bf758d829d8c8325a7d836df5b621038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103ea10e4c250f47059c84aab9855f17788d479022367f78b22e745933a7cb1bfa3210281d16c70b780ece2f967f3890ed47308f13dea846ebc43e8b906281ae60c854c21038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aec3770b2701000000160014f9f761de6a26b38c86a3f54543766007cab6e30f02000002000002000000000000", + "btc_change": 4950020650, + "btc_fee": 57350, + "rawtransaction": "02000000000104deea4c01fe27026871912b5797d327a953512d44d544e401ab129f3ce4066a06000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff26524c892cb7489a9dea7e6881ebbf8d4437aff46e4894c6f96867c6fe1aa808010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff9848608d922d22b4bf3c9879b3d2d1f3b39c98c646808f3a0b7d349fb9975574000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff2fde3a5fc18db649e96158474a7b4ec343907f4c1bf2c5098c97dc24c891c160010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff04e80300000000000069512103530d9ba5b00eaa5c9c72cd0c655bf87cc0abd1c0d3e9d8d6f52c3c0ecbc071c42103f69e3041ec5a4e65ede2563657f0a5d754bf729aa4c039b4a09c9c83026ee539210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee80300000000000069512103530d9ba5b00eaa5c9c24ca5c360af97ec6fa83c78fb5d998f62d7e4b9f8573d82103af883145ab5e1c60ebb9123a06a5ebc512ee2fdfe0802bf5f5c7cbc64a2fbba7210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee803000000000000695121037e0d9ba5b00eaa5c9c7e9e4a6b02a536d99fe2a3ea8fe9e4944e0c3faef445c52103c2fa0575d8682a50dcd765576ec292b3678645af93f25b8d91abadb53a5ed7fb210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753ae2a520b27010000001600149030ff62d63fd80d9f1a083d0f04db040423649402000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10249,76 +10239,76 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "owner": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "owner": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset", - "first_issuance_block_index": 198, - "last_issuance_block_index": 198, + "first_issuance_block_index": 199, + "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730152603, - "last_issuance_block_time": 1730152603, + "first_issuance_block_time": 1730224399, + "last_issuance_block_time": 1730224399, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "owner": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "issuer": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "owner": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "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": 1730152430, - "last_issuance_block_time": 1730152430, + "first_issuance_block_time": 1730224224, + "last_issuance_block_time": 1730224224, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -10326,8 +10316,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" } ], @@ -10355,8 +10345,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, @@ -10364,8 +10354,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730152289, - "last_issuance_block_time": 1730152299, + "first_issuance_block_time": 1730224047, + "last_issuance_block_time": 1730224059, "supply_normalized": "100.00000000" } } @@ -10396,7 +10386,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10404,14 +10394,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10419,7 +10409,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -10437,7 +10427,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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. @@ -10449,9 +10439,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649961196, "utxo": null, "utxo_address": null, "asset_info": { @@ -10461,7 +10451,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49961000" } ], "next_cursor": null, @@ -10502,10 +10492,10 @@ Returns the orders of an asset { "result": [ { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10513,14 +10503,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10545,10 +10535,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 52, + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10556,14 +10546,14 @@ Returns the orders of an asset "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 206, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10588,10 +10578,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10599,14 +10589,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10631,10 +10621,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "block_index": 194, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10642,14 +10632,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730224380, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10674,10 +10664,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10685,14 +10675,14 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10717,7 +10707,7 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 52, + "next_cursor": 53, "result_count": 8 } ``` @@ -10754,27 +10744,27 @@ Returns the orders of an asset { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10794,27 +10784,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10834,27 +10824,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_index": 50, + "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 51, + "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 183, + "match_expire_index": 184, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10933,21 +10923,21 @@ Returns the credits of an asset { "result": [ { - "block_index": 194, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, + "event": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -10955,20 +10945,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "event": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -10976,20 +10966,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -10997,20 +10987,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "event": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11022,16 +11012,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11086,17 +11076,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 208, + "block_index": 209, "address": null, "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -11104,20 +11094,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -11128,17 +11118,17 @@ Returns the debits of an asset "quantity_normalized": "0.00001000" }, { - "block_index": 206, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 207, + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -11149,17 +11139,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 206, + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730224431, "asset_info": { "divisible": true, "asset_longname": null, @@ -11170,17 +11160,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -11191,7 +11181,7 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" } ], - "next_cursor": 63, + "next_cursor": 64, "result_count": 46 } ``` @@ -11260,14 +11250,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -11282,20 +11272,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -11310,20 +11300,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -11338,20 +11328,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -11366,7 +11356,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730152289, + "block_time": 1730224047, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11399,19 +11389,19 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -11419,15 +11409,15 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11435,7 +11425,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -11447,11 +11437,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 73, + "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "block_index": 206, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11459,7 +11449,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730224431, "asset_info": { "divisible": true, "asset_longname": null, @@ -11471,11 +11461,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11483,7 +11473,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -11495,11 +11485,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11507,7 +11497,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "divisible": true, "asset_longname": null, @@ -11519,7 +11509,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 14, + "next_cursor": 15, "result_count": 9 } ``` @@ -11558,9 +11548,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11569,7 +11559,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11579,7 +11569,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -11595,9 +11585,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11606,7 +11596,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11616,7 +11606,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730224144, "asset_info": { "divisible": true, "asset_longname": null, @@ -11632,9 +11622,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11642,10 +11632,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11653,7 +11643,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730224183, "asset_info": { "divisible": true, "asset_longname": null, @@ -11669,18 +11659,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11690,7 +11680,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -11715,7 +11705,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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` @@ -11728,9 +11718,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11739,7 +11729,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11749,7 +11739,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -11799,7 +11789,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11807,7 +11797,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11816,7 +11806,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11824,7 +11814,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11833,7 +11823,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11841,7 +11831,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11850,7 +11840,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11885,29 +11875,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11922,7 +11912,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -11936,27 +11926,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11971,7 +11961,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730224171, "asset_info": { "divisible": true, "asset_longname": null, @@ -11985,19 +11975,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12005,7 +11995,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12020,7 +12010,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -12034,19 +12024,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12054,7 +12044,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12069,7 +12059,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -12143,10 +12133,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12171,7 +12161,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12211,22 +12201,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -12235,22 +12225,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "tx_index": 12, "block_index": 124, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -12259,22 +12249,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -12293,7 +12283,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (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` @@ -12312,22 +12302,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -12379,10 +12369,10 @@ Returns all the orders { "result": [ { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12390,14 +12380,14 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12422,10 +12412,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 53, + "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "block_index": 188, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12433,14 +12423,14 @@ Returns all the orders "get_quantity": 2000, "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": "filled", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12465,10 +12455,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 55, + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "block_index": 189, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12476,14 +12466,14 @@ Returns all the orders "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 209, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12508,10 +12498,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12519,14 +12509,14 @@ Returns all the orders "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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12551,10 +12541,10 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "block_index": 194, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12562,14 +12552,14 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730224380, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12594,7 +12584,7 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 51, + "next_cursor": 52, "result_count": 8 } ``` @@ -12604,7 +12594,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b` (str, required) - The hash of the transaction that created the order + + order_hash: `dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0` (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. @@ -12615,10 +12605,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12626,14 +12616,14 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12665,7 +12655,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144` (str, required) - The hash of the transaction that created the order + + order_hash: `c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49` (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 @@ -12692,27 +12682,27 @@ Returns the order matches of an order { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,27 +12722,27 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12782,7 +12772,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144` (str, required) - The hash of the transaction that created the order + + order_hash: `c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49` (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 @@ -12800,16 +12790,16 @@ Returns the BTC pays of an order { "result": [ { - "tx_index": 53, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 54, + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "btc_amount": 2000, - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", "status": "valid", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "btc_amount_normalized": "0.00002000" } ], @@ -12852,10 +12842,10 @@ Returns the orders to exchange two assets { "result": [ { - "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 53, + "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "block_index": 188, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12863,7 +12853,7 @@ Returns the orders to exchange two assets "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 207, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12873,7 +12863,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730224338, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12898,10 +12888,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 55, + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "block_index": 189, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12909,7 +12899,7 @@ Returns the orders to exchange two assets "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 209, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12919,7 +12909,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730224341, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12944,10 +12934,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12955,7 +12945,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12965,7 +12955,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12990,10 +12980,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 52, + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13001,7 +12991,7 @@ Returns the orders to exchange two assets "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 206, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13011,7 +13001,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13036,10 +13026,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13047,7 +13037,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13057,7 +13047,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13082,7 +13072,7 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 59, + "next_cursor": 60, "result_count": 8 } ``` @@ -13120,30 +13110,30 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13163,30 +13153,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13206,30 +13196,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_index": 50, + "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 51, + "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 183, + "match_expire_index": 184, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730224264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13287,27 +13277,27 @@ Returns all the order matches { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13327,27 +13317,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13367,27 +13357,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_index": 50, + "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 51, + "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 183, + "match_expire_index": 184, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13555,66 +13545,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", "block_index": 121, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730152285, + "block_time": 1730224044, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ff424b42a9965359591a54f355ce5c75756123497e76f35debdaef0ea515e76a", + "tx_hash": "fb1164b42803c1fe9785b14f854f1d5889320f1ecc71c5737cd9b41cd53ef684", "block_index": 120, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730152281, + "block_time": 1730224039, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "6f8c5ecfa83f7514ac2c883bba9d8f016f9fc383a064597aa379221a09df2e26", + "tx_hash": "4214b4a0c69d4ab91e9da4d8dc2c558a1972811480dc21cd7da14a5e651ba78f", "block_index": 119, - "source": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0", + "source": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730152277, + "block_time": 1730224035, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "ea5d0be869f53cc900a7b0d86eefc1124bba3014be198aeef545d113ca6c1415", + "tx_hash": "00a720a01c081dd9ef905fa0f750dbddae525976a705d3658983f31524f8fe8b", "block_index": 118, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730152274, + "block_time": 1730224031, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "b99ccc7c02aa79d4f89a55faf59b2997833ac007497ad85b9c54f7f4aee6b38f", + "tx_hash": "f2e79ed16c6c0e637ae8deb96e59cdc2d8de09daae42dcae8be10132cc3a7837", "block_index": 117, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730152271, + "block_time": 1730224028, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13659,9 +13649,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13670,7 +13660,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13680,7 +13670,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -13696,9 +13686,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13707,7 +13697,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13717,7 +13707,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730224144, "asset_info": { "divisible": true, "asset_longname": null, @@ -13733,9 +13723,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13743,10 +13733,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13754,7 +13744,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730224183, "asset_info": { "divisible": true, "asset_longname": null, @@ -13769,10 +13759,10 @@ Returns all dispensers "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13781,7 +13771,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13791,11 +13781,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -13807,18 +13797,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13828,7 +13818,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -13853,7 +13843,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c` (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. @@ -13865,9 +13855,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13876,7 +13866,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13886,7 +13876,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -13908,7 +13898,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c` (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 @@ -13928,19 +13918,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13948,7 +13938,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13963,7 +13953,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -13977,19 +13967,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13997,7 +13987,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14012,7 +14002,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -14053,21 +14043,21 @@ Returns all the dividends { "result": [ { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, - "fee_paid": 40000, + "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -14079,7 +14069,7 @@ Returns all the dividends "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" } ], "next_cursor": null, @@ -14092,7 +14082,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab` (str, required) - The hash of the dividend to return + + dividend_hash: `1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9` (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. @@ -14103,21 +14093,21 @@ Returns a dividend by its hash ``` { "result": { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, - "fee_paid": 40000, + "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -14129,7 +14119,7 @@ Returns a dividend by its hash "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" } } ``` @@ -14139,7 +14129,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9` (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 @@ -14157,38 +14147,17 @@ Returns a dividend distribution by its hash { "result": [ { - "block_index": 154, + "block_index": 155, "address": null, "asset": "XCP", - "quantity": 1500000000, - "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "tx_index": 41, - "utxo": "1d83b22e706c969e3dbc46fc83aaed861ed27d6aadc4e25772b7f315f7498313:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "confirmed": true, - "block_time": 1730152419, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 154, - "address": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", - "asset": "XCP", - "quantity": 500000000, + "quantity": 2000000000, "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "tx_index": 41, - "utxo": null, - "utxo_address": null, + "event": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_index": 42, + "utxo": "b62ffce48b16b737eea55a572265debb28a0dfa10602337514862041beaab9aa:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "divisible": true, "asset_longname": null, @@ -14196,11 +14165,11 @@ Returns a dividend distribution by its hash "locked": true, "issuer": null }, - "quantity_normalized": "5.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, - "result_count": 2 + "result_count": 1 } ``` @@ -14213,7 +14182,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14230,47 +14199,47 @@ Returns all events { "result": [ { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -14281,20 +14250,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -14304,24 +14273,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -14331,13 +14300,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 670, - "result_count": 676 + "next_cursor": 677, + "result_count": 683 } ``` @@ -14346,7 +14315,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `675` (int, required) - The index of the event to return + + event_index: `682` (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. @@ -14357,19 +14326,19 @@ Returns the event of an index ``` { "result": { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 } } ``` @@ -14401,7 +14370,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 61 + "event_count": 62 }, { "event": "SWEEP", @@ -14427,7 +14396,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `675` (str, optional) - The last event index to return + + cursor: `682` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14444,19 +14413,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -14466,24 +14435,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -14491,53 +14460,53 @@ Returns the events filtered by event name "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 656, + "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 207, + "block_index": 208, "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -14547,24 +14516,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 645, + "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 206, + "block_index": 207, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", + "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", "quantity": 10, - "tx_index": 73, + "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -14574,12 +14543,12 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_time": 1730224436 } ], - "next_cursor": 644, + "next_cursor": 651, "result_count": 91 } ``` @@ -14630,29 +14599,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14667,7 +14636,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -14679,21 +14648,21 @@ Returns all the dispenses "btc_amount_normalized": "0.00001000" }, { - "tx_index": 63, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14701,7 +14670,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14716,11 +14685,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -14730,27 +14699,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14765,7 +14734,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730224171, "asset_info": { "divisible": true, "asset_longname": null, @@ -14779,19 +14748,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14799,7 +14768,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14814,7 +14783,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -14828,19 +14797,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14848,7 +14817,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14863,7 +14832,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -14904,19 +14873,19 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -14924,39 +14893,39 @@ Returns all the sends include Enhanced and MPMA sends "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14964,7 +14933,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -14976,11 +14945,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14988,11 +14957,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15000,11 +14969,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15012,11 +14981,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15024,8 +14993,8 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 27, - "result_count": 32 + "next_cursor": 28, + "result_count": 33 } ``` @@ -15066,15 +15035,15 @@ Returns all the issuances { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -15089,20 +15058,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 64, - "tx_hash": "bf75f7092b509102f9cc7488b8a1d2b5ac9b3663ab98a89b377d0ef6fe1dcb7c", + "tx_index": 65, + "tx_hash": "03d35bf4e2deb3c0bbef956d679976cf8f2349345785429341ab700aaea1f078", "msg_index": 0, - "block_index": 198, + "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "transfer": false, "callable": false, "call_date": 0, @@ -15117,20 +15086,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152603, + "block_time": 1730224399, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_index": 49, + "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", "msg_index": 0, - "block_index": 161, + "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -15145,20 +15114,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730224248, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_index": 48, + "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", "msg_index": 0, - "block_index": 160, + "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -15173,20 +15142,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730224245, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_index": 47, + "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -15201,7 +15170,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730224241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15216,7 +15185,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb` (str, required) - The hash of the transaction to return + + tx_hash: `8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c` (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. @@ -15227,15 +15196,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -15250,7 +15219,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15281,17 +15250,17 @@ Returns all sweeps { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -15305,7 +15274,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35` (str, required) - The hash of the transaction to return + + tx_hash: `9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207` (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. @@ -15317,17 +15286,17 @@ Returns the sweeps of a transaction { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -15361,9 +15330,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15371,14 +15340,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730224120, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15386,7 +15355,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730224116, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15400,7 +15369,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4` (str, required) - The hash of the transaction to return + + tx_hash: `5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334` (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. @@ -15412,9 +15381,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15422,7 +15391,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730224120, "fee_fraction_int_normalized": "0.00000000" } } @@ -15459,10 +15428,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15487,7 +15456,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15496,10 +15465,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15524,7 +15493,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730224109, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15536,10 +15505,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15564,7 +15533,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730224084, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15576,10 +15545,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15604,7 +15573,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730224079, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15616,10 +15585,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15644,7 +15613,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15713,22 +15682,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15737,22 +15706,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730224104, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15761,22 +15730,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730224091, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15785,22 +15754,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730224087, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15809,22 +15778,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7373471bfbb61006816b238cc58de75e2684d1b9cc29a2ea12ed240f42efc5c1", + "tx_hash": "70fcc71132c03dc6c41341473ce9fa39038ace84501cbd872850ad8c01f8a162", "tx_index": 17, "block_index": 129, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152314, + "block_time": 1730224075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15843,7 +15812,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505` (str, required) - The hash of the fairmint to return + + tx_hash: `a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15854,22 +15823,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -15887,7 +15856,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t,bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0` (str, required) - The addresses to search for + + addresses: `bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z,bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h` (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. @@ -15902,30 +15871,30 @@ Returns a list of unspent outputs for a list of addresses "result": [ { "vout": 0, - "height": 200, + "height": 201, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241", + "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" }, { "vout": 1, - "height": 200, + "height": 201, "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f", + "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" }, { "vout": 2, - "height": 157, + "height": 158, "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76", - "address": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0" + "txid": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc", + "address": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h" } ], "next_cursor": null, @@ -15938,7 +15907,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2` (str, required) - The address to search for + + address: `bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y` (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 @@ -15954,28 +15923,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35" + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207" }, { - "tx_hash": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45" + "tx_hash": "50d0a0e77f60c466797e1d2fd5e455a6b735173a9735b809e0950dd33ffd511d" }, { - "tx_hash": "aa546f61f8ebb938d0b3ce821f6de5f8150cfeb107148298e068de15ab033e63" + "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75" + "tx_hash": "e051021b2c74665b4f931aec4cfae088c435f7275bc3409ac8fda551cf4de474" }, { - "tx_hash": "894dceb9db02f71c93dcc4070ecf5daefd49348620bea85df8f0b4e0acec138c" + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" }, { - "tx_hash": "708576bd350d01171c186ecbba44bca04cf7cb37bc750f1b0d2b34d99f125a93" + "tx_hash": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d" }, { - "tx_hash": "a6cb77043648b5643482906ff1d7d5b899f2d4eec6f273ca25ac8652668a51a8" + "tx_hash": "e3999ad8f23260f16aee1eb0df23c91affcea3880e1ac2dba417d561f95f76ac" }, { - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "tx_hash": "0c648b9f7b7b9d1a39ee6ce2d2685fffe1029925b507b9fa59547d646a5704e3" } ], "next_cursor": null, @@ -15988,7 +15957,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph` (str, required) - The address to search for. + + address: `bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p` (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. @@ -16002,7 +15971,7 @@ Get the oldest transaction for an address. { "result": { "block_index": 3, - "tx_hash": "18676cb74eb9dfce4b58b954ec2a6b83b96a6f4daad0a16f77bcb6b61458ace6" + "tx_hash": "23f287cd6dc1eaffaf98025c9e2dd7ac31c2f51642bfda6932394e85dbae39d0" } } ``` @@ -16012,7 +15981,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t` (str, required) - The address to search for + + address: `bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z` (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 @@ -16027,21 +15996,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 1, - "height": 200, - "value": 4949934500, - "confirmations": 9, - "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1" - }, { "vout": 0, - "height": 200, + "height": 201, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e" + "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241" + }, + { + "vout": 1, + "height": 201, + "value": 4949934500, + "confirmations": 9, + "amount": 49.499345, + "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f" } ], "next_cursor": null, @@ -16054,7 +16023,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - Address to get pubkey for. + + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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. @@ -16066,7 +16035,7 @@ Get pubkey for an address. ``` { - "result": "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "result": "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" } ``` @@ -16075,7 +16044,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The transaction hash + + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (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. @@ -16087,7 +16056,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101767fa9746798e2f0da5d0765e73be7115b8f252c0ff7b3420c4ee20d9e51bb0a0100000000ffffffff03e803000000000000160014f9f761de6a26b38c86a3f54543766007cab6e30f00000000000000000c6a0a8ee379ec02600d7a1d1aeb140927010000001600145e3425187b2b5bc42b4371cb0d1f75d1661ad94802473044022038bd1cb36fdd7f9da255360c2b77e5d07c034b15eb8433d992508c6c65c6e693022074d799ef701e0e6ceb1e5e702c023f85f849de50800f98e9f4b29eb8c46f1a63012103606de90e430b926855501d0a176c98eff58fab05f6264d36c656a231b914c4d600000000" + "result": "02000000000101bcc068411be42005ef020eacec90a5264f0cc225f8a74e05ede92a89417e6fc50100000000ffffffff03e8030000000000001600149030ff62d63fd80d9f1a083d0f04db040423649400000000000000000c6a0a77c6fc6c8e6b061d40c0eb14092701000000160014e306fd2732c4dc9455942fa8651f015c89a6b8d202473044022021a9e61267ae58406b5ddf4c9e30c0630806552c98185e2549825aea6e195bdd02201f82716c63034970df08fe45ed0470c98e7040d9ed07b2ead742cedd91c893830121028b52127657b237ac73a4d2441674d99d20ed53967b28790362546612c8ab63e100000000" } ``` @@ -16182,28 +16151,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77 }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, "asset_info": { "divisible": true, "asset_longname": null, @@ -16213,22 +16182,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -16238,22 +16207,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 209, + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -16263,30 +16232,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730224458.0780673, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, + "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -16300,7 +16269,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -16331,19 +16300,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -16353,7 +16322,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -16366,7 +16335,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43` (str, required) - The hash of the transaction to return + + tx_hash: `9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7` (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 @@ -16386,28 +16355,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77 }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, "asset_info": { "divisible": true, "asset_longname": null, @@ -16417,22 +16386,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -16442,22 +16411,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 209, + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -16467,30 +16436,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730224458.0780673, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, + "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -16504,7 +16473,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 5df7c8d6fe..4d8b0e0f5e 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": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, "confirmed": true }, { - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "previous_block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "previous_block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", "difficulty": 545259519, - "ledger_hash": "82b7aa0986153801d34b4a42f07b47c84e24685d8696f9422a2d92fad2a337b5", - "txlist_hash": "ba6fc33695ae4f6266c33514cb0cbee9d38105f78ba7594be4a4cee634d08674", - "messages_hash": "af54cefd796959cf5d8343303d9c7be0b765b1b89b693c6b5a9ab7374afb9606", + "ledger_hash": "0792d90a21f5645caa8772b4b507b158b306fb46a862a54384c0adf8b8b6469f", + "txlist_hash": "8e12af515b5315398d6b743f4b125c273ef98145c558fb473f2871c270c60d33", + "messages_hash": "704087710ecf5e3b9ce688524447940e5a79304b285cd1522f6097a4ae46761b", "transaction_count": 1, "confirmed": true }, { - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "previous_block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_index": 207, + "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_time": 1730224436, + "previous_block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", "difficulty": 545259519, - "ledger_hash": "be00302ec692c6beb809ed6c76f726d178093e916290e232554035f57146b6f2", - "txlist_hash": "365902f962fea5f28dff03b680c5a8b9ca5fd1a33058de5de7ec14aeb225ed25", - "messages_hash": "0dc8852d7d7ecdd56b9c63c616455bc1c116fc865b45cb4b3cec60586168ca3a", + "ledger_hash": "45f8ab7b6b4a0c58595977c07abd6a2ca1f13a1172a1943af27948650b65fd43", + "txlist_hash": "427c35334708f848c7540a8297d651b8ac4aaf22d0c984de30e89302631b6d1f", + "messages_hash": "6f8bf07a81d451d9d3f133f1ba5a943179ed72c6eb5eb7aec4db29eab2da3ee0", "transaction_count": 1, "confirmed": true }, { - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "previous_block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_index": 206, + "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", + "block_time": 1730224431, + "previous_block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", "difficulty": 545259519, - "ledger_hash": "c1b7edc78b076d79b3a5e4c72424a09d7ffe14fe75b38a4debc9d23fd9f5398d", - "txlist_hash": "4eeeef0e7bd3dd22665ee35f6e47962d68777493d6d40d4ee79327499645e336", - "messages_hash": "c37fc64064bacb9a17a6bdf16fc6c67d169079ff509f690e442a561396f85182", + "ledger_hash": "1f6db62341367eefd61c7c3f23a3cb583e5d6d5150a187c4f34594aba8bb7d0f", + "txlist_hash": "15c1231bfc3d241ae6cb65ce186ac9a2d907d2857d692fb6c8ff8c57ec6b8bd2", + "messages_hash": "93c7c553f24148a55ba14c1136578c61d5de14f120bafaaaaaddaa670a24a336", "transaction_count": 1, "confirmed": true }, { - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "previous_block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_index": 205, + "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_time": 1730224428, + "previous_block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", "difficulty": 545259519, - "ledger_hash": "724180ad76ff4c429d83777f69e676fb618e8bad0ff4f7e17e21edf0fc0eebf0", - "txlist_hash": "03f7a32a202bc5cc53417126d5f8a83d7f582f25e64c67cc15e08eb9953cfb98", - "messages_hash": "351bb1b903e1bfe9b921d195c89083d3a5b5eef4fa22f16ded1b900b4dc7f6c4", + "ledger_hash": "ac6409f2a71e64d0809cc15eb330ab5048a661705db26a280050fcccc851e4da", + "txlist_hash": "1562e09dbe82ee6fa44e08c339dd06205566f96be6e2bcd373df1f54cc25f7b7", + "messages_hash": "7ec3388e29ea5c0add62b35615350e54ebef8fb330a849b4f513e807db9d214b", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 203, - "result_count": 108 + "next_cursor": 204, + "result_count": 109 }, "/v2/blocks/": { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null }, { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" } ], - "next_cursor": 670, + "next_cursor": 677, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -298,34 +298,34 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 208, - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "block_index": 209, + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 208, + "block_index": 209, "address": null, "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -373,28 +373,28 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { - "block_index": 208, + "block_index": 209, "address": null, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 208, + "block_index": 209, "address": null, "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -421,28 +421,28 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { - "block_index": 208, + "block_index": 209, "address": null, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, + "object_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, "confirmed": true, - "block_time": 1730152654 + "block_time": 1730224440 } ], "next_cursor": null, @@ -464,14 +464,14 @@ "/v2/blocks//cancels": { "result": [ { - "tx_index": 58, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "tx_index": 59, + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", "status": "valid", "confirmed": true, - "block_time": 1730152570 + "block_time": 1730224367 } ], "next_cursor": null, @@ -480,16 +480,16 @@ "/v2/blocks//destructions": { "result": [ { - "tx_index": 61, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 62, + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "block_index": 196, + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730152592, + "block_time": 1730224388, "asset_info": { "divisible": true, "asset_longname": null, @@ -506,15 +506,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -540,19 +540,19 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -560,31 +560,31 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" } ], @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -649,17 +649,17 @@ "/v2/blocks//sweeps": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -742,18 +742,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -765,18 +765,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -811,12 +811,12 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 73, - "result_count": 76 + "next_cursor": 74, + "result_count": 77 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "1d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a", + "hash": "bd2c76d2f84ef9c87644ba69c3639b2b08df08830a7a25253c8cda9c90eaec6a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168" + "script_pub_key": "6a332d6d02493979893c82effb12b1fcb7b01acd6f72460104a3506b906fd0246db9a1ba98d7d328944dfd9c1f4f2d506e9467ae82" }, { "value": 4999990000, - "script_pub_key": "00147967f0a0bd9d33804ecfac05d869b2782a3467a1" + "script_pub_key": "0014d6c757c35a7fa6eddd04672f20c061337e98041f" } ], "vtxinwit": [ - "30440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde01", - "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "304402201b4b5ecf9330d14050f58d998176ed0b66946731e834b7f680ad46233422a1790220404f68b1f974f0fb0d6499d8dec239f5838d0dc13ca4cd9102dfbe599a2e828301", + "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" ], "lock_time": 0, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_id": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_id": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "138349f715f3b77257e2c4ad6a7dd21e86edaa83fc46bc3d9e966c702eb2831d", + "hash": "bd4f7f4e49aa9ec09dde2cab63d3fe9a13d3c230d2f98b1e173e723962e950e5", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2eff33b1f7f8e902221f13c27b12b7d32e190f805c939dcf9ab4de5baf7143247463d682a89b00ffe16d91d8dc9d1f" + "script_pub_key": "6a2ee356a869e368891d4240c638da8ff82976f3e5f8db4c6e88e36f1a6890bb8472fc9fe2af296c4289e68d7200bf2f" }, { - "value": 4999970000, - "script_pub_key": "00142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4" + "value": 4949932460, + "script_pub_key": "00144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f" } ], "vtxinwit": [ - "3044022036beb3fb4d3dd6bd98282613490c124c3a14f85ae1b1f004c2f44bd429f4a588022051a6de46a46e50e2ae2b08532f731486c334ac19db5ba804a53f0921fb2e890701", - "023e3d46364a1fab486d12778805a80a614ea43362116ec89285ecd3f2893be2b9" + "3044022059732e13907c083151a0046d0ae2a0d83115ec6e30264e247494b35ffcc66fda022067082b8ec9bbeef1655e5146dc7f7c2d9ca25996c24f00b2fab3265514c3c3d901", + "023033194911d3bc9532356b962b4ba5d5f55ff9afab8febbdc2d81adc21350da7" ], "lock_time": 0, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_id": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43" + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_id": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -955,18 +955,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -980,18 +980,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_time": 1730224454, + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1006,32 +1006,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,20 +1042,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,24 +1092,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 670, + "event_index": 677, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 209, + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "msg_index": 1, - "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "quantity": 2000000000, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1117,45 +1117,45 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 669, + "next_cursor": 676, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,20 +1166,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,24 +1216,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 670, + "event_index": 677, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 209, + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "msg_index": 1, - "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "quantity": 2000000000, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1241,32 +1241,32 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 669, + "next_cursor": 676, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1274,31 +1274,31 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" } ], @@ -1308,29 +1308,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1363,19 +1363,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,24 +1385,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1410,38 +1410,38 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], "next_cursor": null, @@ -1450,19 +1450,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,24 +1472,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -1497,38 +1497,38 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1669,18 +1669,18 @@ "/v2/addresses/transactions": { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1715,18 +1715,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_time": 1730224436, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", + "utxos_info": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1767,18 +1767,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 73, + "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "block_index": 206, + "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", + "block_time": 1730224431, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa:0", + "utxos_info": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1819,18 +1819,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_time": 1730224428, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1871,18 +1871,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", + "block_time": 1730224424, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1923,18 +1923,18 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 69, + "next_cursor": 70, "result_count": 46 }, "/v2/addresses/events": { "result": [ { - "event_index": 659, + "event_index": 666, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 208, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -1945,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 658, + "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 207, - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "block_index": 208, + "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", "quantity": 1000, - "tx_index": 74, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 657, + "event_index": 664, "event": "ORDER_EXPIRATION", "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 + "block_index": 208, + "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_time": 1730224440 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 656, + "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 207, + "block_index": 208, "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 654, + "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_index": 207, - "block_time": 1730152654, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_index": 208, + "block_time": 1730224440, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,29 +2090,29 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 650, + "next_cursor": 657, "result_count": 237 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, "asset_info": { "divisible": true, "asset_longname": null, @@ -2122,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 209, + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730224458.0780673, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, + "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -2218,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,16 +2256,16 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649961196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2275,10 +2275,10 @@ "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2299,9 +2299,9 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649961196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2311,7 +2311,7 @@ "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49961000" } ], "next_cursor": null, @@ -2320,17 +2320,17 @@ "/v2/addresses/
/credits": { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -2341,17 +2341,17 @@ "quantity_normalized": "0.00005000" }, { - "block_index": 206, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 207, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -2362,17 +2362,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730224431, "asset_info": { "divisible": true, "asset_longname": null, @@ -2383,38 +2383,38 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 201, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 202, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, + "event": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "block_index": 192, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 193, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "tx_index": 58, + "event": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "asset_info": { "divisible": true, "asset_longname": null, @@ -2431,17 +2431,17 @@ "/v2/addresses/
/debits": { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -2452,17 +2452,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -2473,38 +2473,38 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 204, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "divisible": true, "asset_longname": null, @@ -2515,28 +2515,28 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 204, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" } ], - "next_cursor": 61, + "next_cursor": 62, "result_count": 28 }, "/v2/addresses/
/bets": { @@ -2548,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730224116, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "43020304a8d69e758c8cfe4f200d3db11286a5b782bdf8270be5b1ce40029012", + "tx_hash": "4cd5874f0136b2fe2b5610f9753c0439a8c96d34915708fbaaa4f7f55611dc63", "block_index": 112, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730152253, + "block_time": 1730224010, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2587,11 +2587,11 @@ "/v2/addresses/
/sends": { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -2611,11 +2611,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2635,11 +2635,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2659,11 +2659,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "divisible": true, "asset_longname": null, @@ -2683,11 +2683,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2707,33 +2707,33 @@ "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 19, + "next_cursor": 20, "result_count": 12 }, "/v2/addresses/
/receives": { "result": [ { "tx_index": 38, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", "block_index": 151, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", + "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", "asset": "MYASSETA", - "quantity": 500000000, + "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152407, + "block_time": 1730224186, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "5.00000000", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" } ], @@ -2743,11 +2743,11 @@ "/v2/addresses/
/sends/": { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2767,11 +2767,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2791,11 +2791,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2815,11 +2815,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2839,11 +2839,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 70, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152624, + "block_time": 1730224421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2875,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -2911,10 +2911,10 @@ "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -2954,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -2993,21 +2993,21 @@ "/v2/addresses/
/dispenses/sends": { "result": [ { - "tx_index": 63, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -3044,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -3146,21 +3146,21 @@ "/v2/addresses/
/dispenses/receives": { "result": [ { - "tx_index": 63, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -3197,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -3507,17 +3507,17 @@ "/v2/addresses/
/sweeps": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -3527,15 +3527,15 @@ "/v2/addresses/
/issuances": { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_index": 49, + "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", "msg_index": 0, - "block_index": 161, + "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730224248, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_index": 48, + "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", "msg_index": 0, - "block_index": 160, + "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730224245, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_index": 47, + "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730224241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 45, - "tx_hash": "9083ecad51d2ce0aeb1ab41b80c7db2a58cda52c3031dfb8b79d2bb2689cf70a", + "tx_index": 46, + "tx_hash": "e1416fb7b09cf5ac75952c991615fb3e2231b1f44d3f5151df4b7b4b750d9c93", "msg_index": 0, - "block_index": 158, + "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152434, + "block_time": 1730224227, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,42 +3676,42 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730224109, + "last_issuance_block_time": 1730224112, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730224084, + "last_issuance_block_time": 1730224104, "supply_normalized": "0.00000019" } ], @@ -3767,42 +3767,42 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730224109, + "last_issuance_block_time": 1730224112, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730224084, + "last_issuance_block_time": 1730224104, "supply_normalized": "0.00000019" } ], @@ -3858,42 +3858,42 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730224109, + "last_issuance_block_time": 1730224112, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730224084, + "last_issuance_block_time": 1730224104, "supply_normalized": "0.00000019" } ], @@ -3946,18 +3946,18 @@ "/v2/addresses/
/transactions": { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_time": 1730224440, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3992,18 +3992,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_time": 1730224428, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4026,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4044,18 +4044,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", + "block_time": 1730224424, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4078,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4096,18 +4096,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", - "block_time": 1730152624, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 70, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "block_hash": "535f5b9d18e10ef11dd8517336a14f3d093237e7ca883c56c32ca6473feb7333", + "block_time": 1730224421, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "02000000178d82231300000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", "supported": true, - "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", + "utxos_info": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4130,18 +4130,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", - "block_time": 1730152620, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_hash": "08b7f2bc4f5c947cc2bf749402264c67a412cf7a4d0b46a640e162db8f091bbe", + "block_time": 1730224416, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", + "utxos_info": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4165,27 +4165,27 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 62, + "next_cursor": 63, "result_count": 31 }, "/v2/addresses/
/dividends": { "result": [ { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, - "fee_paid": 40000, + "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4197,7 +4197,7 @@ "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" } ], "next_cursor": null, @@ -4206,10 +4206,10 @@ "/v2/addresses/
/orders": { "result": [ { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4217,14 +4217,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4249,10 +4249,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 52, + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4260,14 +4260,14 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 206, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4292,10 +4292,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4303,14 +4303,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4335,10 +4335,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "block_index": 194, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4346,14 +4346,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730224380, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4378,10 +4378,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4389,14 +4389,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730224109, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730224084, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730224079, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4654,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730224104, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4678,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730224091, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4702,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730224087, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cd779281665ec54a0657c909a5a5888c98253660c075af8adf487672735a1d69", + "tx_hash": "b83c248f846aa160084220151e9b4524f7c1379b7d4e8b8c16c943d796a19d67", "tx_index": 15, "block_index": 127, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152307, + "block_time": 1730224068, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4750,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4780,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -4811,9 +4811,9 @@ "result": [ { "asset": "XCP", - "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "quantity": 2000000000, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset_info": { "divisible": true, "asset_longname": null, @@ -4821,21 +4821,21 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { "asset": "MYASSETA", - "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "quantity": 2000000000, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, @@ -4847,7 +4847,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4859,7 +4859,7 @@ "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001016bbdac07a76d292a49995d8bf8de89da525d9b32d2ab29a52feb98c105f20576000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29b93f99a28b4bb16aef7b085834e88cc7ffc295c6ea9bc30651365677485eea265eb32240ea4dc2f70483ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101e586839271acf088a5bc45426c667960b17f795781a34efac10c8cdd3c932e6800000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a296e5eb72aa4f3483585c1794d457f83278c871f7759bca44a0a776bf4e88b7fc141302844f4fbddd52e83ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4877,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" }, "name": "btcpay", - "data": "434e5452505254590b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca436714468448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "data": "434e5452505254590bc63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "020000000001013ba8474dba78d5b2a7418f254db65d0f667eb6846cf0a2d1a37fec518310b597000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03b80b0000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a100000000000000004b6a4975cbfbf03e30e31bb5e20d495fb01c2653599b2a09b993f3207ec6a8201d7607d5182a30e2d2fa8df227d622eecd6eb3b30958a79f37fd67972e55d5fc313b9c11b791efbb1facff6ca99f052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010178f15e9f63ff6bcc8ac30a2c6b09d96a6b3b7d993982a0f49c55e00ecdf6150200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03b80b000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f00000000000000004b6a498d2276d6569f25c712bf7165159972874854d60a81fad70e89222fcb078302c215da3c3705bb1d36d6415b9c6a6d6d4f0dd4963f51154c9e07464a160275b69a5b23c8d45740509ea7a99f052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", "status": "valid" } } @@ -4902,7 +4902,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 1000, "overburn": false }, @@ -4912,27 +4912,27 @@ "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101b2eea65ffc130ffefef3cddf867d62b6a3a3d85413826b0f9a9bec147e2af13f000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000" + "rawtransaction": "02000000000101efa5eca541f477e33895cebaa431bfb27c3d90869183f7113852e6aa623d408500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" }, "name": "cancel", - "data": "434e5452505254594694d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "data": "434e54525052545946dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001017607181c41ad743b880f28175184e2c04167fd1d94fd25a7209c9ea321fb3887000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29303ebad3021b4d6138b5db967d05db545eedba6d0c675259c45a095f6fd75b9424d81427e4e3aaa10e83ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101c14f5e2d3e7262b6b5a95a2a7f31f3388e7362b01c778128bfec90b5e69aaca200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a29221177878a37cfdc2a9dc1cf3b169968625dc6c201f2e765d12dc43ae7e11aefbe68a9ade68eef188383ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", "status": "valid" } } @@ -4941,7 +4941,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4960,7 +4960,7 @@ "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "02000000000101187d4666a3e0d464a2bfa34950f8e7420dc6a833e8186850829a30dbb5ddc164000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000226a2094d7a3f3bbcd35ff65faa7e260b5ef6c46b4bb390ea97ca5c8ec89f01b2ffc9493bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101d8a5327a9377d916c78057cf799cc882b1decdcd9984057dc5b76da1a9ae8af900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000226a208cde9c86347dc68962c518cdc5a774d3b83fb4adbe4fd10c4bada882c876773593bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +4976,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5000,7 +5000,7 @@ "btc_out": 0, "btc_change": 4949920236, "btc_fee": 14264, - "rawtransaction": "02000000000101d1c09a210e2f9eb576d8d0c26d620bd0524b583f80fab9276b3596b96e02afae01000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7effffffff0200000000000000002c6a2a727cb1709e366477fd16c83cc5d4d3816740f1707e9354508ff03c7fc05a03221c9533b31becd82add28ecc9092701000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7e02000000000000", + "rawtransaction": "020000000001017fa8470a58592d54bf64cbade39e74b4c12b72a3cb5da0bc70f49a44a01472010100000016001405957a5ce96b7e12931440ef2986e21aeb3328c4ffffffff0200000000000000002c6a2a40940c2f2fd165343737aefeaaac21c635b3806c86fe5543bbfa3c6f67f9913ae41c31eda9ed56994624ecc909270100000016001405957a5ce96b7e12931440ef2986e21aeb3328c402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5022,14 +5022,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5048,7 +5048,7 @@ "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101bccddcc7c292c9f93bd0a857d43e2f251b8660b79784967209514551c8d90556000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2116d6d2bf8ee338938cd8bb42921a91b70dcb91491707280fba52b2d7971bd7428158bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010153c96371617fdcc0f1c77cbc5519deb38c1f8e124efcce7d846b4d80e9225c7200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21e9777b55809c36e116fea13e9b1364aa060ca08b64f0d5be09a238293349ba81e658bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,10 +5065,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "transfer_destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "lock": false, "reset": false, @@ -5081,7 +5081,7 @@ "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101139de7476f55fdf21e92052391719656f33b7347ea131643e6b1453a536795c7000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0322020000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a10000000000000000236a21ceeba0a4b3fe260c096002670704f57eedf714525e8020461d52d24f2d7fbe50646bb2052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010103e62ad510c2fa899a321523a44099af39159c86bec9a212c7375ff34917ce7f00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff032202000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f0000000000000000236a21f2f18eb3506274cb6cef7cc03da89aaec9619d979fc147968e0133eca84228cf686bb2052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,16 +5106,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", 1 ], [ "MPMASSET", - "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", 2 ] ], @@ -5123,26 +5123,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002807967f0a0bd9d33804ecfac05d869b2782a3467a1805511f1f6819b94a0094d338694640cbee5b8969d40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d6c757c35a7fa6eddd04672f20c061337e98041f80d1b2178052ed879c9e588fa4a734c0e832b4999740000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "020000000001049e5f6c01f025eb801bd2f83123f1fbe1bc26d82731c5e989f8827fd1c96545ca000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffff1945c0490ae4bbe569a4e9478ec268003a1461dd53616cbc78fa81d421f8ee6000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffffa6f704e1baaf5c6952e2ea6c20f6981d6dc033886747b9cf110bf2877cd5b1a000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffe4f980087f32a896e9ad9c82620f463004e29fc7dfad97e2a3ee49ab2d75c415000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03e80300000000000069512102f405a8ba5cf6a2b810a6c3550b257049f2d6e1b083639fb7cdf85a7788a4b72d210255bb00ed856a417842a099b3da1b48400df47e096af35ec60cb900f2caafc54d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102eb05a8ba5cf6a2b81075c3578b5c17b9524f7c83032d501bc82433c5f08e835c2103321a81b8949bb7f9d93439ba9728ced469f8c0ecd265c3860cb90511aa2701df2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aebcf216a8040000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000000000000", + "rawtransaction": "02000000000104d255c44864bd2a29b61b064a381c410edaba508fd3e9916d1e624c35aafd519600000000160014d6c757c35a7fa6eddd04672f20c061337e98041ffffffffff0be0186edc68abc84d591355157c50ca5efa06624373516cee77dd49342ef8900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff901da048f9114616e2695e17528fb029f6d9e441b90256aa280300c73674806500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff93a509ff292e9db67f1ec2be58b3c59979cd7827530ab1e9344128a14f342db100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03e803000000000000695121030e74eccc3d295073a5d70fcd740640a7add8223fe44809e1b86ee396b5cc0abc2102f3177213b02533994b9878686221fc0fb37915ed6719164b430a3ff47db80b722102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121021174eccc3d295073a5040fcff4d087f06ea65d9909950d86974a23f786b292fb2103f708f3c20232b3cba61fe4f63aae58a887b9fddfd380810b430a3a171d30cff52102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aebcf216a804000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,7 +5154,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5171,7 +5171,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5185,7 +5185,7 @@ "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "02000000000101ab499e5a3d8196519c12febc23e233920eb19d00e35c78dca0789e44b26cdac2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000356a33bece1d3d171adcd7284dfef1ab9a46411240de9c5909b634b7850938f967c24dbdbf6ce5d336636d946de16548c2ee67eca42a38b8052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "020000000001015eebd64f3c1d80c089148d03f5140d080e0fcb25e29c6186a9dec1b59208eb8700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000356a33df068693567c0de1989a60f3dd38d1e685e3b4f50eccde713e2efb0569f4f433794da8f59454cf2f67065486881a147ca8f92238b8052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,8 +5207,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5224,19 +5224,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "434e54525052545902000000000000000100000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "02000000000101b2623bad63243f7a0e974d94b0c223add9b0b80a5e255266b92ba264c7a45311000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000306a2ea21d7eb608cf78cca691ce6c36f4842f50d439486b60d2e6b88abcceecd2cedf427af27fa2b7385ff2398e091e045db9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "020000000001017153cbfa8dd7704b50d93a6a0e2c66b7ca3bb15bbcb67a6dd32c6b0f4717908d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000306a2ebac97581eaff0fc6645bb409e84fd3bb8dedf00ea7543b6cbcd93398ebb4a2c09493eef630d96056912dd6002e465db9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5246,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904805511f1f6819b94a0094d338694640cbee5b8969d07ffff", + "data": "434e5452505254590480d1b2178052ed879c9e588fa4a734c0e832b4999707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101cf72977222916e5cfff737c5d75904919a603da30c94d8ca213d849c9728dd9b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2190fbdb1d8fa53db0eb2a8fc10d632c18bddc537f624460499580413ae7e1bfc5bd58bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101f8b191474a4b30e6aa65214fe9bf4f8734b7716a08e9469982a51d09f0dd164600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21125dc85877e3a42cc2ad331181b95910d461d4e1066fdf3769c0c3674872240c8458bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "flags": 7, "memo": "ffff" } @@ -5272,8 +5272,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "quantity": 1000 }, "name": "dispense", @@ -5282,7 +5282,7 @@ "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101065e2fae24d3ed96a884712623a3a8e194a3cdde3cb588023317f389f6ba83df030000001600145511f1f6819b94a0094d338694640cbee5b8969dffffffff03e8030000000000001600142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b400000000000000000c6a0a2e4844bdce5321afdbce8b250827010000001600145511f1f6819b94a0094d338694640cbee5b8969d02000000000000", + "rawtransaction": "02000000000101acb6e463fde3ee9c1f18921748d98f000f0700adde56b9c31fd4cf7b04ad168603000000160014d1b2178052ed879c9e588fa4a734c0e832b49997ffffffff03e8030000000000001600144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f00000000000000000c6a0a6a7ddc1e04761ad6d06d8b25082701000000160014d1b2178052ed879c9e588fa4a734c0e832b4999702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5295,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5326,7 +5326,7 @@ "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101ab2eb3e3483c4039cce505f85cc0563cd331a85d45dff80d9bf880fe20828bb2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000316a2f0dec8a46d77959fb639a45d020ade0350620490390b08869ef4325180cb952a68b03d1100c753808ff73cd2066b25e23b9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "0200000000010136948b5a9d65ed9929b6ea63e739864d23ac800c09d0163daae4ea85736dc55c00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000316a2f644fc2b52998b0b3280ebed21d508a3758967d7818a80ba5ab14b21b8951729683c0754d8dabe39b808b2ee9b6922823b9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5361,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5379,7 +5379,7 @@ "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101268cd03227a87269a296132dced7a43ec578c67b187578cdda41ab4861774127000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000166a14eebd7268248a3ec571ad08ef295683791a5dd5c154bf052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "rawtransaction": "02000000000101572f35b6b166c5425dc6de58c5d9334db3c4b75d300950b88c18d2c868b7c5eb00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000166a1481ab1bd63419abc843e2cc17fdafe0becfe9066e54bf052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,8 +5394,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5408,12 +5408,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c393464323835333663333666383932316563353335643561336532633533386665613265306561663936663138663536666536323861323436376233636435623a317c5843507c31303030", + "data": "434e54525052545964626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c646264363731303937623931373337306634316336623230333961386433633336363765313339663832666462326264633137356632343130326561656561303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "02000000000106ca9abaac6407cea4a26e4325a5b6b605c16a5f49ad8b20edb751d3f839e60f01000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff2b86ecbeb4d73419de2ce8914ce12bc97ad3c5f326f3974cc97b9b093a3a7286000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff5efbf12951347af1bc0c104cf84743ee371bbf9077467d9da40739605f1e7c7b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff10fe6ccda7c1f8982d6c4e3ff1bbe67e2821d56b3b69cba67ccfd95d0d080b28000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff101bb44012e5c305a391479949891b545cbdbd18c3e2f7116a1854b927bcea27000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffb0d9bedd8c9fdd0eadc8ba2c4a7d994422c13be06f07d20dc8f80ad0497d221d000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff04e80300000000000069512103db6eed4d1970d0de5bf33f4147e75816cf60917a132dbe1fd32db973c4ef5847210387118c8bf69ca93d3ddb93f8b8d0f234f045d2b0dab2d5cac29c2aba24522f1d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102db6eed4d1970d0de5ba13e1103f5515ecd689a755679b21a8879ef7587e206ac2102841d9994f6ddfa69328a84f5fcd1a66de64585e1cabd948e9a9a7abe2b052f502103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512103f16eed4d1970d0de5bf4391757a9581ba71aaf6a527ab74ebd18dc10b58133e32103b725fff197ef9f5957ebe2cccab797558070b387af8ba6b6fba84e881c671c9d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053ae406d22fc060000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000002000002000000000000", + "rawtransaction": "020000000001060642f53336548be530475f11b72468ad9318ce9bb069935b5b980913232a92a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffffc7dee181c1a4d7f0f75483cfca3a6b56b8c4ec75e14534686bf7fe7ab65bc77100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff45bb628e029fe2993b0541626c175452080bffd42a7835d5c218b16dc686874d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff7ae765c41c44282c47de1a66132a5fb67d53680569c1e196e2efc1b6e13ea63500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff1e131c702f91f82f1afb27182d3c50c33fb506d75a1eb548ba70ebaff3ff00a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff5d9f57c43e2b3a5c3f8c5a9d4220c49aa51b66e8e00b76498c84ff58639a14e700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff04e803000000000000695121035b6bbc45b7997ff81bf4cf45b390611ffed0c88a766da83d730e32a7923b16d2210291ac0895172c73859ceb5745c9a7d4f3fb629ad4abdb19a4fb01996517c9eca12102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121035b6bbc45b7997ff81ba99a44f8d5675dff8ddc8a777da86971096fe99e6b15712103dbb94ecb4b6b65c6dfaa55119db2c0e0a5689dc7a2d441bead57cc63129dbd902102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee80300000000000069512103716bbc45b7997ff81bf5c847f1de611290feeac2772eae3b43395cd0ff5371062102e8da7dfd7d5c00f7ec933329afd4a482970af9a493e374d89f63fd5320f8dc832102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653ae406d22fc06000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5426,26 +5426,18 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "XCP", - "quantity": 1000, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" + "source": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "asset": null, + "quantity": null }, "name": "utxo", - "data": "434e54525052545964323432353561353564363832353735323130626261393164616434666538643536336138316664346234663137353665343164633566636538643966383865373a307c62637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c5843507c31303030", - "btc_in": 4950080000, + "data": "434e54525052545964303636613036653433633966313261623031653434346435343432643531353361393237643339373537326239313731363830323237666530313463656164653a307c626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c7c", + "btc_in": 4950081000, "btc_out": 3000, - "btc_change": 4950030275, - "btc_fee": 46725, - "rawtransaction": "0200000000010300dce77bb944104741936aa0b2b4b265b003e9de46966f0d609e03bc7b0b968901000000160014f9f761de6a26b38c86a3f54543766007cab6e30ffffffffffdbd816d4d7e0daa457fcbda1e6f3ec2bd72cdf3639c9bcafb60916c861b28e300000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff940d2ffcf377a103eb93ce0505be650e0aef5a5f64e5701e6aeeb1560331a58001000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff04e80300000000000069512103c010e4c250f47059c81bf89b12fd3195b90f36696ef58e25d277a20a1ed3deda2103b8e00811d3b48a87c103c6bf3db54b399759dee65ada72df8c304d2ed768e69321038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103c010e4c250f47059c84aaccc45f060cdea026a3a61fd8b6e8526e14e4dc08fba2102b8bf0000d0b98d8ccc0290f860bf433c82478bf758d829d8c8325a7d836df5b621038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103ea10e4c250f47059c84aab9855f17788d479022367f78b22e745933a7cb1bfa3210281d16c70b780ece2f967f3890ed47308f13dea846ebc43e8b906281ae60c854c21038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aec3770b2701000000160014f9f761de6a26b38c86a3f54543766007cab6e30f02000002000002000000000000", + "btc_change": 4950020650, + "btc_fee": 57350, + "rawtransaction": "02000000000104deea4c01fe27026871912b5797d327a953512d44d544e401ab129f3ce4066a06000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff26524c892cb7489a9dea7e6881ebbf8d4437aff46e4894c6f96867c6fe1aa808010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff9848608d922d22b4bf3c9879b3d2d1f3b39c98c646808f3a0b7d349fb9975574000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff2fde3a5fc18db649e96158474a7b4ec343907f4c1bf2c5098c97dc24c891c160010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff04e80300000000000069512103530d9ba5b00eaa5c9c72cd0c655bf87cc0abd1c0d3e9d8d6f52c3c0ecbc071c42103f69e3041ec5a4e65ede2563657f0a5d754bf729aa4c039b4a09c9c83026ee539210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee80300000000000069512103530d9ba5b00eaa5c9c24ca5c360af97ec6fa83c78fb5d998f62d7e4b9f8573d82103af883145ab5e1c60ebb9123a06a5ebc512ee2fdfe0802bf5f5c7cbc64a2fbba7210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee803000000000000695121037e0d9ba5b00eaa5c9c7e9e4a6b02a536d99fe2a3ea8fe9e4944e0c3faef445c52103c2fa0575d8682a50dcd765576ec292b3678645af93f25b8d91abadb53a5ed7fb210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753ae2a520b27010000001600149030ff62d63fd80d9f1a083d0f04db040423649402000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5461,76 +5453,76 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 202, + "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730224416, + "last_issuance_block_time": 1730224416, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "owner": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "owner": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset", - "first_issuance_block_index": 198, - "last_issuance_block_index": 198, + "first_issuance_block_index": 199, + "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730152603, - "last_issuance_block_time": 1730152603, + "first_issuance_block_time": 1730224399, + "last_issuance_block_time": 1730224399, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730224227, + "last_issuance_block_time": 1730224245, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "owner": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "issuer": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "owner": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "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": 1730152430, - "last_issuance_block_time": 1730152430, + "first_issuance_block_time": 1730224224, + "last_issuance_block_time": 1730224224, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 100000000000, @@ -5538,8 +5530,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730224175, + "last_issuance_block_time": 1730224175, "supply_normalized": "1000.00000000" } ], @@ -5551,8 +5543,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false, "supply": 10000000000, @@ -5560,15 +5552,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730152289, - "last_issuance_block_time": 1730152299, + "first_issuance_block_time": 1730224047, + "last_issuance_block_time": 1730224059, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5576,14 +5568,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5591,7 +5583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5604,9 +5596,9 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649961196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5616,7 +5608,7 @@ "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49961000" } ], "next_cursor": null, @@ -5625,10 +5617,10 @@ "/v2/assets//orders": { "result": [ { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5636,14 +5628,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5668,10 +5660,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 52, + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5679,14 +5671,14 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 206, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5711,10 +5703,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5722,14 +5714,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5754,10 +5746,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "block_index": 194, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5765,14 +5757,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730224380, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5797,10 +5789,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5808,14 +5800,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5840,33 +5832,33 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 52, + "next_cursor": 53, "result_count": 8 }, "/v2/assets//matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5886,27 +5878,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5926,27 +5918,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_index": 50, + "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 51, + "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 183, + "match_expire_index": 184, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5972,21 +5964,21 @@ "/v2/assets//credits": { "result": [ { - "block_index": 194, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, + "event": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -5994,20 +5986,20 @@ }, { "block_index": 125, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "event": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6015,20 +6007,20 @@ }, { "block_index": 124, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6036,20 +6028,20 @@ }, { "block_index": 124, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "event": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6061,16 +6053,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6083,17 +6075,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 208, + "block_index": 209, "address": null, "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -6101,20 +6093,20 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -6125,17 +6117,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 206, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 207, + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -6146,17 +6138,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 206, + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730224431, "asset_info": { "divisible": true, "asset_longname": null, @@ -6167,17 +6159,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -6188,7 +6180,7 @@ "quantity_normalized": "0.00000010" } ], - "next_cursor": 63, + "next_cursor": 64, "result_count": 46 }, "/v2/assets//dividends": { @@ -6200,14 +6192,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6222,20 +6214,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6250,20 +6242,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6278,20 +6270,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -6306,7 +6298,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730152289, + "block_time": 1730224047, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6317,19 +6309,19 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -6337,15 +6329,15 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6353,7 +6345,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -6365,11 +6357,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 73, + "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "block_index": 206, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6377,7 +6369,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730224431, "asset_info": { "divisible": true, "asset_longname": null, @@ -6389,11 +6381,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "block_index": 205, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6401,7 +6393,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730224428, "asset_info": { "divisible": true, "asset_longname": null, @@ -6413,11 +6405,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 71, + "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "block_index": 204, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6425,7 +6417,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730224424, "asset_info": { "divisible": true, "asset_longname": null, @@ -6437,16 +6429,16 @@ "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 14, + "next_cursor": 15, "result_count": 9 }, "/v2/assets//dispensers": { "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6455,7 +6447,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6465,7 +6457,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6481,9 +6473,9 @@ }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6492,7 +6484,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6502,7 +6494,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730224144, "asset_info": { "divisible": true, "asset_longname": null, @@ -6518,9 +6510,9 @@ }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6528,10 +6520,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6539,7 +6531,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730224183, "asset_info": { "divisible": true, "asset_longname": null, @@ -6555,18 +6547,18 @@ }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6576,7 +6568,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -6597,9 +6589,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6608,7 +6600,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6618,7 +6610,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6646,7 +6638,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6654,7 +6646,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6663,7 +6655,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6671,7 +6663,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6680,7 +6672,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6688,7 +6680,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6697,7 +6689,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6710,29 +6702,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6747,7 +6739,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -6761,27 +6753,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6796,7 +6788,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730224171, "asset_info": { "divisible": true, "asset_longname": null, @@ -6810,19 +6802,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6830,7 +6822,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6845,7 +6837,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -6859,19 +6851,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6879,7 +6871,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6894,7 +6886,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -6917,10 +6909,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6945,7 +6937,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6963,22 +6955,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -6987,22 +6979,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", "tx_index": 12, "block_index": 124, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730224055, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7011,22 +7003,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7041,22 +7033,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730224051, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -7071,10 +7063,10 @@ "/v2/orders": { "result": [ { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7082,14 +7074,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7114,10 +7106,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 53, + "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "block_index": 188, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7125,14 +7117,14 @@ "get_quantity": 2000, "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": "filled", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7157,10 +7149,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 55, + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "block_index": 189, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7168,14 +7160,14 @@ "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 209, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7200,10 +7192,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7211,14 +7203,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7243,10 +7235,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "block_index": 194, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7254,14 +7246,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730224380, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7286,15 +7278,15 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 51, + "next_cursor": 52, "result_count": 8 }, "/v2/orders/": { "result": { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7302,14 +7294,14 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7337,27 +7329,27 @@ "/v2/orders//matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7377,27 +7369,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7423,16 +7415,16 @@ "/v2/orders//btcpays": { "result": [ { - "tx_index": 53, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 54, + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "btc_amount": 2000, - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", "status": "valid", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "btc_amount_normalized": "0.00002000" } ], @@ -7442,10 +7434,10 @@ "/v2/orders//": { "result": [ { - "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 53, + "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "block_index": 188, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7453,7 +7445,7 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 207, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7463,7 +7455,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730224338, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7488,10 +7480,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 55, + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "block_index": 189, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7499,7 +7491,7 @@ "get_quantity": 3000, "get_remaining": 0, "expiration": 21, - "expire_index": 209, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7509,7 +7501,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730224341, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7534,10 +7526,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 50, + "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "block_index": 185, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7545,7 +7537,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 183, + "expire_index": 184, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7555,7 +7547,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730224264, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7580,10 +7572,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 52, + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "block_index": 208, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7591,7 +7583,7 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 206, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7601,7 +7593,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152654, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7626,10 +7618,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "block_index": 193, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7637,7 +7629,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7647,7 +7639,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152570, + "block_time": 1730224367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7672,36 +7664,36 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 59, + "next_cursor": 60, "result_count": 8 }, "/v2/orders///matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7721,30 +7713,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7764,30 +7756,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_index": 50, + "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 51, + "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 183, + "match_expire_index": 184, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730224264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7813,27 +7805,27 @@ "/v2/order_matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 55, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 189, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 208, + "match_expire_index": 209, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7853,27 +7845,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_index": 52, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 53, + "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 207, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730224338, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7893,27 +7885,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_index": 50, + "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_index": 51, + "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 183, + "match_expire_index": 184, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730224264, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7958,66 +7950,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", "block_index": 121, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730152285, + "block_time": 1730224044, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ff424b42a9965359591a54f355ce5c75756123497e76f35debdaef0ea515e76a", + "tx_hash": "fb1164b42803c1fe9785b14f854f1d5889320f1ecc71c5737cd9b41cd53ef684", "block_index": 120, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730152281, + "block_time": 1730224039, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "6f8c5ecfa83f7514ac2c883bba9d8f016f9fc383a064597aa379221a09df2e26", + "tx_hash": "4214b4a0c69d4ab91e9da4d8dc2c558a1972811480dc21cd7da14a5e651ba78f", "block_index": 119, - "source": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0", + "source": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730152277, + "block_time": 1730224035, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "ea5d0be869f53cc900a7b0d86eefc1124bba3014be198aeef545d113ca6c1415", + "tx_hash": "00a720a01c081dd9ef905fa0f750dbddae525976a705d3658983f31524f8fe8b", "block_index": 118, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730152274, + "block_time": 1730224031, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "b99ccc7c02aa79d4f89a55faf59b2997833ac007497ad85b9c54f7f4aee6b38f", + "tx_hash": "f2e79ed16c6c0e637ae8deb96e59cdc2d8de09daae42dcae8be10132cc3a7837", "block_index": 117, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730152271, + "block_time": 1730224028, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8029,9 +8021,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8040,7 +8032,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8050,7 +8042,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -8066,9 +8058,9 @@ }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8077,7 +8069,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8087,7 +8079,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730224144, "asset_info": { "divisible": true, "asset_longname": null, @@ -8103,9 +8095,9 @@ }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8113,10 +8105,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8124,7 +8116,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730224183, "asset_info": { "divisible": true, "asset_longname": null, @@ -8139,10 +8131,10 @@ "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8151,7 +8143,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8161,11 +8153,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8177,18 +8169,18 @@ }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8198,7 +8190,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -8219,9 +8211,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8230,7 +8222,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8240,7 +8232,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -8260,19 +8252,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8280,7 +8272,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8295,7 +8287,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -8309,19 +8301,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8329,7 +8321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8344,7 +8336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -8362,21 +8354,21 @@ "/v2/dividends": { "result": [ { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, - "fee_paid": 40000, + "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8388,7 +8380,7 @@ "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" } ], "next_cursor": null, @@ -8396,70 +8388,49 @@ }, "/v2/dividends/": { "result": { - "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 42, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, - "fee_paid": 40000, + "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "dividend_asset_info": { "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - }, - "/v2/dividends//credits": { - "result": [ - { - "block_index": 154, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "tx_index": 41, - "utxo": "1d83b22e706c969e3dbc46fc83aaed861ed27d6aadc4e25772b7f315f7498313:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "confirmed": true, - "block_time": 1730152419, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + }, + "/v2/dividends//credits": { + "result": [ { - "block_index": 154, - "address": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "block_index": 155, + "address": null, "asset": "XCP", - "quantity": 500000000, + "quantity": 2000000000, "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "tx_index": 41, - "utxo": null, - "utxo_address": null, + "event": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_index": 42, + "utxo": "b62ffce48b16b737eea55a572265debb28a0dfa10602337514862041beaab9aa:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730224202, "asset_info": { "divisible": true, "asset_longname": null, @@ -8467,56 +8438,56 @@ "locked": true, "issuer": null }, - "quantity_normalized": "5.00000000" + "quantity_normalized": "20.00000000" } ], "next_cursor": null, - "result_count": 2 + "result_count": 1 }, "/v2/events": { "result": [ { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -8527,20 +8498,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -8550,24 +8521,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -8577,29 +8548,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 670, - "result_count": 676 + "next_cursor": 677, + "result_count": 683 }, "/v2/events/": { "result": { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 } }, "/v2/events/counts": { @@ -8610,7 +8581,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 61 + "event_count": 62 }, { "event": "SWEEP", @@ -8631,19 +8602,19 @@ "/v2/events/": { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -8653,24 +8624,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 669, + "event_index": 676, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -8678,53 +8649,53 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 666, + "event_index": 673, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 209, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 }, { - "event_index": 656, + "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 207, + "block_index": 208, "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730224440, "asset_info": { "divisible": true, "asset_longname": null, @@ -8734,24 +8705,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 }, { - "event_index": 645, + "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", - "block_index": 206, + "block_index": 207, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", + "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", "quantity": 10, - "tx_index": 73, + "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -8761,12 +8732,12 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_time": 1730224436 } ], - "next_cursor": 644, + "next_cursor": 651, "result_count": 91 }, "/v2/events//count": { @@ -8778,29 +8749,29 @@ "/v2/dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 76, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8815,7 +8786,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -8827,21 +8798,21 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 63, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8849,7 +8820,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8864,11 +8835,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730224395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -8878,27 +8849,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 209, + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8913,7 +8884,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730224171, "asset_info": { "divisible": true, "asset_longname": null, @@ -8927,19 +8898,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8947,7 +8918,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8962,7 +8933,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730224140, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,19 +8947,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8996,7 +8967,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9011,7 +8982,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730224127, "asset_info": { "divisible": true, "asset_longname": null, @@ -9029,19 +9000,19 @@ "/v2/sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "XCP", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -9049,39 +9020,39 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 76, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9089,7 +9060,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -9101,11 +9072,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9113,11 +9084,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9125,11 +9096,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 74, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9137,11 +9108,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730224436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9149,21 +9120,21 @@ "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 27, - "result_count": 32 + "next_cursor": 28, + "result_count": 33 }, "/v2/issuances": { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -9178,20 +9149,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 64, - "tx_hash": "bf75f7092b509102f9cc7488b8a1d2b5ac9b3663ab98a89b377d0ef6fe1dcb7c", + "tx_index": 65, + "tx_hash": "03d35bf4e2deb3c0bbef956d679976cf8f2349345785429341ab700aaea1f078", "msg_index": 0, - "block_index": 198, + "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "transfer": false, "callable": false, "call_date": 0, @@ -9206,20 +9177,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152603, + "block_time": 1730224399, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_index": 49, + "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", "msg_index": 0, - "block_index": 161, + "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -9234,20 +9205,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730224248, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_index": 48, + "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", "msg_index": 0, - "block_index": 160, + "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -9262,20 +9233,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730224245, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_index": 47, + "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", "msg_index": 0, - "block_index": 159, + "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -9290,7 +9261,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730224241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9300,15 +9271,15 @@ }, "/v2/issuances/": { "result": { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 69, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", "msg_index": 0, - "block_index": 201, + "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "transfer": false, "callable": false, "call_date": 0, @@ -9323,7 +9294,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9331,17 +9302,17 @@ "/v2/sweeps": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -9351,17 +9322,17 @@ "/v2/sweeps/": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" } ], @@ -9372,9 +9343,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9382,14 +9353,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730224120, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9397,7 +9368,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730224116, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9407,9 +9378,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9417,17 +9388,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730224120, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9452,7 +9423,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9461,10 +9432,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9489,7 +9460,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730224109, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9501,10 +9472,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9529,7 +9500,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730224084, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9541,10 +9512,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9569,7 +9540,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730224079, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9581,10 +9552,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9609,7 +9580,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730224059, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9627,22 +9598,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9651,22 +9622,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730224104, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9675,22 +9646,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730224091, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9699,22 +9670,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730224087, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9723,22 +9694,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7373471bfbb61006816b238cc58de75e2684d1b9cc29a2ea12ed240f42efc5c1", + "tx_hash": "70fcc71132c03dc6c41341473ce9fa39038ace84501cbd872850ad8c01f8a162", "tx_index": 17, "block_index": 129, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152314, + "block_time": 1730224075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9752,22 +9723,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -9780,30 +9751,30 @@ "result": [ { "vout": 0, - "height": 200, + "height": 201, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241", + "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" }, { "vout": 1, - "height": 200, + "height": 201, "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f", + "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" }, { "vout": 2, - "height": 157, + "height": 158, "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76", - "address": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0" + "txid": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc", + "address": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h" } ], "next_cursor": null, @@ -9812,28 +9783,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35" + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207" }, { - "tx_hash": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45" + "tx_hash": "50d0a0e77f60c466797e1d2fd5e455a6b735173a9735b809e0950dd33ffd511d" }, { - "tx_hash": "aa546f61f8ebb938d0b3ce821f6de5f8150cfeb107148298e068de15ab033e63" + "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75" + "tx_hash": "e051021b2c74665b4f931aec4cfae088c435f7275bc3409ac8fda551cf4de474" }, { - "tx_hash": "894dceb9db02f71c93dcc4070ecf5daefd49348620bea85df8f0b4e0acec138c" + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" }, { - "tx_hash": "708576bd350d01171c186ecbba44bca04cf7cb37bc750f1b0d2b34d99f125a93" + "tx_hash": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d" }, { - "tx_hash": "a6cb77043648b5643482906ff1d7d5b899f2d4eec6f273ca25ac8652668a51a8" + "tx_hash": "e3999ad8f23260f16aee1eb0df23c91affcea3880e1ac2dba417d561f95f76ac" }, { - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "tx_hash": "0c648b9f7b7b9d1a39ee6ce2d2685fffe1029925b507b9fa59547d646a5704e3" } ], "next_cursor": null, @@ -9842,36 +9813,36 @@ "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { "block_index": 3, - "tx_hash": "18676cb74eb9dfce4b58b954ec2a6b83b96a6f4daad0a16f77bcb6b61458ace6" + "tx_hash": "23f287cd6dc1eaffaf98025c9e2dd7ac31c2f51642bfda6932394e85dbae39d0" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 1, - "height": 200, - "value": 4949934500, - "confirmations": 9, - "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1" - }, { "vout": 0, - "height": 200, + "height": 201, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e" + "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241" + }, + { + "vout": 1, + "height": 201, + "value": 4949934500, + "confirmations": 9, + "amount": 49.499345, + "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "result": "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101767fa9746798e2f0da5d0765e73be7115b8f252c0ff7b3420c4ee20d9e51bb0a0100000000ffffffff03e803000000000000160014f9f761de6a26b38c86a3f54543766007cab6e30f00000000000000000c6a0a8ee379ec02600d7a1d1aeb140927010000001600145e3425187b2b5bc42b4371cb0d1f75d1661ad94802473044022038bd1cb36fdd7f9da255360c2b77e5d07c034b15eb8433d992508c6c65c6e693022074d799ef701e0e6ceb1e5e702c023f85f849de50800f98e9f4b29eb8c46f1a63012103606de90e430b926855501d0a176c98eff58fab05f6264d36c656a231b914c4d600000000" + "result": "02000000000101bcc068411be42005ef020eacec90a5264f0cc225f8a74e05ede92a89417e6fc50100000000ffffffff03e8030000000000001600149030ff62d63fd80d9f1a083d0f04db040423649400000000000000000c6a0a77c6fc6c8e6b061d40c0eb14092701000000160014e306fd2732c4dc9455942fa8651f015c89a6b8d202473044022021a9e61267ae58406b5ddf4c9e30c0630806552c98185e2549825aea6e195bdd02201f82716c63034970df08fe45ed0470c98e7040d9ed07b2ead742cedd91c893830121028b52127657b237ac73a4d2441674d99d20ed53967b28790362546612c8ab63e100000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58701 @@ -9894,28 +9865,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77 }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,22 +9896,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -9950,22 +9921,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 209, + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -9975,30 +9946,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730224458.0780673, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, + "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -10012,7 +9983,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -10021,19 +9992,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -10043,7 +10014,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -10052,28 +10023,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77 }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, "asset_info": { "divisible": true, "asset_longname": null, @@ -10083,22 +10054,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -10108,22 +10079,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 209, + "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "quantity": 10000, - "tx_index": 76, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -10133,30 +10104,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730224458.0780673, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_index": 77, + "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "memo": null, "asset_info": { "divisible": true, @@ -10170,7 +10141,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730224458.0780673 } ], "next_cursor": null, @@ -10189,40 +10160,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 662, + "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_index": 209, + "block_time": 1730224454, "difficulty": 545259519, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae" + "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf" }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 653, - "result_count": 108 + "next_cursor": 660, + "result_count": 109 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 663, + "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_index": 209, + "block_time": 1730224454, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "fee": 0, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10232,92 +10203,92 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 654, - "result_count": 76 + "next_cursor": 661, + "result_count": 77 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 664, + "event_index": 671, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "out_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 558, + "next_cursor": 565, "result_count": 5 }, "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 675, + "event_index": 682, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 209, + "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", + "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", + "block_time": 1730224454 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 661, - "result_count": 108 + "next_cursor": 668, + "result_count": 109 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 674, + "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 660, - "result_count": 61 + "next_cursor": 667, + "result_count": 62 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 668, + "event_index": 675, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 208, - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "quantity": 1500000000, - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "block_time": 1730152668, + "block_index": 209, + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "quantity": 2000000000, + "tx_index": 76, + "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -10325,32 +10296,32 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 665, - "result_count": 72 + "next_cursor": 672, + "result_count": 73 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 671, + "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "asset": "XCP", - "block_index": 208, + "block_index": 209, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", "quantity": 66, - "tx_index": 75, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -10360,64 +10331,64 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 669, + "next_cursor": 676, "result_count": 91 }, "/v2/events/ENHANCED_SEND": { "result": [ { - "event_index": 602, + "event_index": 609, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 202, - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 203, + "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "memo": null, "quantity": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "tx_index": 69, - "block_time": 1730152624, + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_index": 70, + "block_time": 1730224421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_time": 1730152624 + "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "block_index": 203, + "block_time": 1730224421 } ], - "next_cursor": 498, + "next_cursor": 505, "result_count": 2 }, "/v2/events/MPMA_SEND": { "result": [ { - "event_index": 650, + "event_index": 657, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 206, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 207, + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "status": "valid", - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, - "block_time": 1730152650, + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_index": 74, + "block_time": 1730224436, "asset_info": { "divisible": true, "asset_longname": null, @@ -10427,12 +10398,12 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "block_index": 207, + "block_time": 1730224436 } ], - "next_cursor": 649, + "next_cursor": 656, "result_count": 15 }, "/v2/events/SEND": { @@ -10448,24 +10419,24 @@ "/v2/events/SWEEP": { "result": [ { - "event_index": 541, + "event_index": 548, "event": "SWEEP", "params": { - "block_index": 194, - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", "status": "valid", - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, - "block_time": 1730152588, + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_index": 61, + "block_time": 1730224384, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "block_time": 1730152588 + "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "block_index": 195, + "block_time": 1730224384 } ], "next_cursor": null, @@ -10474,23 +10445,23 @@ "/v2/events/ASSET_DIVIDEND": { "result": [ { - "event_index": 337, + "event_index": 344, "event": "ASSET_DIVIDEND", "params": { "asset": "MYASSETA", - "block_index": 154, + "block_index": 155, "dividend_asset": "XCP", - "fee_paid": 40000, + "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "tx_index": 41, - "block_time": 1730152419, + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_index": 42, + "block_time": 1730224202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -10502,11 +10473,11 @@ "issuer": null }, "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" + "fee_paid_normalized": "0.00020000" }, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", - "block_index": 154, - "block_time": 1730152419 + "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "block_index": 155, + "block_time": 1730224202 } ], "next_cursor": null, @@ -10520,33 +10491,33 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 593, + "event_index": 600, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 201, - "block_time": 1730152620 + "block_index": 202, + "block_time": 1730224416 }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_time": 1730224416 } ], - "next_cursor": 567, + "next_cursor": 574, "result_count": 12 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 594, + "event_index": 601, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 201, + "block_index": 202, "call_date": 0, "call_price": 0.0, "callable": false, @@ -10554,42 +10525,42 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", "transfer": false, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, - "block_time": 1730152620, + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_index": 69, + "block_time": 1730224416, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "block_index": 202, + "block_time": 1730224416 } ], - "next_cursor": 568, + "next_cursor": 575, "result_count": 24 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ { - "event_index": 547, + "event_index": 554, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 195, + "block_index": 196, "quantity": 1, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", "status": "valid", "tag": "64657374726f79", - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "tx_index": 61, - "block_time": 1730152592, + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_index": 62, + "block_time": 1730224388, "asset_info": { "divisible": true, "asset_longname": null, @@ -10599,9 +10570,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "block_time": 1730152592 + "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "block_index": 196, + "block_time": 1730224388 } ], "next_cursor": 157, @@ -10610,12 +10581,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 659, + "event_index": 666, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 208, "expiration": 21, - "expire_index": 228, + "expire_index": 229, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10626,11 +10597,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_index": 75, + "block_time": 1730224440, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10654,40 +10625,40 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 529, + "next_cursor": 536, "result_count": 8 }, "/v2/events/ORDER_MATCH": { "result": [ { - "event_index": 491, + "event_index": 498, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 3000, - "block_index": 188, + "block_index": 189, "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "match_expire_index": 208, + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx0_block_index": 186, + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_index": 51, - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "tx1_block_index": 188, + "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_index": 52, + "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_index": 54, - "block_time": 1730152544, + "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_index": 55, + "block_time": 1730224341, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10706,43 +10677,43 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "block_time": 1730152544 + "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "block_index": 189, + "block_time": 1730224341 } ], - "next_cursor": 475, + "next_cursor": 482, "result_count": 3 }, "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 655, + "event_index": 662, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144" + "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 521, + "next_cursor": 528, "result_count": 12 }, "/v2/events/ORDER_FILLED": { "result": [ { - "event_index": 482, + "event_index": 489, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59" + "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_time": 1730224338 } ], "next_cursor": null, @@ -10751,41 +10722,41 @@ "/v2/events/ORDER_MATCH_UPDATE": { "result": [ { - "event_index": 481, + "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", "status": "completed" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_time": 1730224338 } ], - "next_cursor": 454, + "next_cursor": 461, "result_count": 2 }, "/v2/events/BTC_PAY": { "result": [ { - "event_index": 483, + "event_index": 490, "event": "BTC_PAY", "params": { - "block_index": 187, + "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "status": "valid", - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "tx_index": 53, - "block_time": 1730152540, + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_index": 54, + "block_time": 1730224338, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "block_index": 188, + "block_time": 1730224338 } ], "next_cursor": null, @@ -10794,20 +10765,20 @@ "/v2/events/CANCEL_ORDER": { "result": [ { - "event_index": 523, + "event_index": 530, "event": "CANCEL_ORDER", "params": { - "block_index": 192, - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 193, + "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": "valid", - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "tx_index": 58, - "block_time": 1730152570 + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_index": 59, + "block_time": 1730224367 }, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "block_time": 1730152570 + "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "block_index": 193, + "block_time": 1730224367 } ], "next_cursor": null, @@ -10816,37 +10787,37 @@ "/v2/events/ORDER_EXPIRATION": { "result": [ { - "event_index": 657, + "event_index": 664, "event": "ORDER_EXPIRATION", "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 + "block_index": 208, + "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_time": 1730224440 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "block_index": 208, + "block_time": 1730224440 } ], - "next_cursor": 462, + "next_cursor": 469, "result_count": 3 }, "/v2/events/ORDER_MATCH_EXPIRATION": { "result": [ { - "event_index": 457, + "event_index": 464, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 184, - "order_match_id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "block_time": 1730152467 + "block_index": 185, + "order_match_id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_time": 1730224264 }, "tx_hash": null, - "block_index": 184, - "block_time": 1730152467 + "block_index": 185, + "block_time": 1730224264 } ], "next_cursor": null, @@ -10855,27 +10826,27 @@ "/v2/events/OPEN_DISPENSER": { "result": [ { - "event_index": 553, + "event_index": 560, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 196, + "block_index": 197, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "satoshirate": 1, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "status": 0, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "tx_index": 62, - "block_time": 1730152595, + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_index": 63, + "block_time": 1730224391, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -10884,9 +10855,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 196, - "block_time": 1730152595 + "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "block_index": 197, + "block_time": 1730224391 } ], "next_cursor": 272, @@ -10895,15 +10866,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 672, + "event_index": 679, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", "asset_info": { "divisible": true, "asset_longname": null, @@ -10913,12 +10884,12 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 560, + "next_cursor": 567, "result_count": 8 }, "/v2/events/REFILL_DISPENSER": { @@ -10929,13 +10900,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "destination": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", "dispense_quantity": 10, - "dispenser_tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "dispenser_tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", "tx_index": 31, - "block_time": 1730152380, + "block_time": 1730224160, "asset_info": { "divisible": true, "asset_longname": null, @@ -10945,9 +10916,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", "block_index": 144, - "block_time": 1730152380 + "block_time": 1730224160 } ], "next_cursor": null, @@ -10956,20 +10927,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 673, + "event_index": 680, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -10980,12 +10951,12 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 561, + "next_cursor": 568, "result_count": 5 }, "/v2/events/BROADCAST": { @@ -10997,19 +10968,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "tx_index": 25, "value": 66600.0, - "block_time": 1730152360, + "block_time": 1730224120, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", "block_index": 138, - "block_time": 1730152360 + "block_time": 1730224120 } ], "next_cursor": 213, @@ -11018,13 +10989,13 @@ "/v2/events/NEW_FAIRMINTER": { "result": [ { - "event_index": 342, + "event_index": 349, "event": "NEW_FAIRMINTER", "params": { "asset": "A95428958968845068", "asset_longname": "MYASSETA.SUBMYASSETA", "asset_parent": "MYASSETA", - "block_index": 155, + "block_index": 156, "burn_payment": false, "description": "", "divisible": true, @@ -11040,12 +11011,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "start_block": 0, "status": "open", - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "tx_index": 42, - "block_time": 1730152422, + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_index": 43, + "block_time": 1730224216, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11053,9 +11024,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", - "block_index": 155, - "block_time": 1730152422 + "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "block_index": 156, + "block_time": 1730224216 } ], "next_cursor": 196, @@ -11068,11 +11039,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0" + "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb" }, "tx_hash": null, "block_index": 130, - "block_time": 1730152319 + "block_time": 1730224079 } ], "next_cursor": 110, @@ -11088,17 +11059,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", "paid_quantity": 34, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", "status": "valid", - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "tx_index": 23, - "block_time": 1730152352, + "block_time": 1730224112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, @@ -11106,9 +11077,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", "block_index": 136, - "block_time": 1730152352 + "block_time": 1730224112 } ], "next_cursor": 190, @@ -11117,37 +11088,37 @@ "/v2/events/ATTACH_TO_UTXO": { "result": [ { - "event_index": 577, + "event_index": 584, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 199, - "destination": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b:0", + "block_index": 200, + "destination": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "status": "valid", - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "tx_index": 65, - "block_time": 1730152606, + "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "tx_index": 66, + "block_time": 1730224404, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "block_index": 199, - "block_time": 1730152606 + "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "block_index": 200, + "block_time": 1730224404 } ], - "next_cursor": 319, - "result_count": 3 + "next_cursor": 327, + "result_count": 4 }, "/v2/events/DETACH_FROM_UTXO": { "result": [ @@ -11157,28 +11128,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", "fee_paid": 0, "msg_index": 0, - "quantity": 500000000, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", + "quantity": 1000000000, + "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", "status": "valid", - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", "tx_index": 38, - "block_time": 1730152407, + "block_time": 1730224186, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", "divisible": true, "locked": false }, - "quantity_normalized": "5.00000000", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", "block_index": 151, - "block_time": 1730152407 + "block_time": 1730224186 } ], "next_cursor": null, @@ -11187,19 +11158,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 670, + "event_index": 677, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 209, + "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", "msg_index": 1, - "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "quantity": 2000000000, + "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_index": 76, + "block_time": 1730224454, "asset_info": { "divisible": true, "asset_longname": null, @@ -11207,14 +11178,14 @@ "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000" + "quantity_normalized": "20.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "block_index": 209, + "block_time": 1730224454 } ], - "next_cursor": 667, + "next_cursor": 674, "result_count": 11 }, "/v2/events/BURN": { @@ -11226,17 +11197,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", "status": "valid", - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", "tx_index": 9, - "block_time": 1730152285, + "block_time": 1730224044, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", "block_index": 121, - "block_time": 1730152285 + "block_time": 1730224044 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestcli.py b/counterparty-core/counterpartycore/test/regtest/regtestcli.py index e4992b5166..b3e48165d9 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestcli.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestcli.py @@ -55,7 +55,6 @@ def get_utxos_and_change(buyer_address, price_btc): # 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) * (D(tx_size) / 1024) - print("FEE", fee) # Calculate change change = D(total_value) - D(price_btc) - D(fee) return buyer_utxos, change @@ -68,8 +67,6 @@ def prepare_buyer_unsigned_psbt(buyer_address, buyer_utxos, change, data=None): outputs = [{buyer_address: str(change)}] if data: outputs = [{"data": data}] + outputs - print("DATA", data) - print("len", len(data)) buyer_psbt_outputs = json.dumps(outputs) buyer_psbt = bitcoin_cli("createpsbt", buyer_psbt_inputs, buyer_psbt_outputs).strip() return buyer_psbt diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py index 4f80204fc0..55b1f8153d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py @@ -36,7 +36,7 @@ "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", - "tx_index": 42, + "tx_index": "$TX_INDEX", }, "tx_hash": "$TX_HASH", }, @@ -78,7 +78,7 @@ "start_block": 0, "status": "open", "tx_hash": "$TX_HASH", - "tx_index": 42, + "tx_index": "$TX_INDEX", }, "tx_hash": "$TX_HASH", }, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py index b941dc614b..e116bee114 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py @@ -75,7 +75,7 @@ "source": "$ADDRESS_1", "status": 0, "tx_hash": "$TX_HASH", - "tx_index": 62, + "tx_index": "$TX_INDEX", }, { "asset": "XCP", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 543c1c5558..ccb309fcce 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -119,19 +119,9 @@ }, "tx_hash": "$TX_HASH", }, - { - "event": "INCREMENT_TRANSACTION_COUNT", - "event_index": "$EVENT_INDEX_5", - "params": { - "block_index": "$BLOCK_INDEX", - "count": 3, - "transaction_id": 100, - }, - "tx_hash": "$TX_HASH", - }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", + "event_index": "$EVENT_INDEX_5", "params": { "address": None, "asset": "UTXOASSET", @@ -147,7 +137,7 @@ }, { "event": "DEBIT", - "event_index": "$EVENT_INDEX_3", + "event_index": "$EVENT_INDEX_4", "params": { "action": "attach to utxo", "address": "$ADDRESS_7", @@ -161,6 +151,16 @@ }, "tx_hash": "$TX_HASH", }, + { + "event": "INCREMENT_TRANSACTION_COUNT", + "event_index": "$EVENT_INDEX_3", + "params": { + "block_index": "$BLOCK_INDEX", + "count": 4, + "transaction_id": 100, + }, + "tx_hash": "$TX_HASH", + }, ], } ], 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 f861969c84..f113b5df2e 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -640,17 +640,10 @@ "utxo": None, "utxo_address": None, }, - { - "address": "$ADDRESS_5", - "asset": "MYASSETA", - "quantity": 500000000, - "utxo": None, - "utxo_address": None, - }, { "address": None, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_6", }, @@ -662,7 +655,7 @@ { "address": None, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_6", }, @@ -686,15 +679,9 @@ "utxo": None, "utxo_address": None, }, - { - "address": "$ADDRESS_5", - "quantity": 500000000, - "utxo": None, - "utxo_address": None, - }, { "address": None, - "quantity": 1500000000, + "quantity": 2000000000, "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_6", }, @@ -734,7 +721,7 @@ { "address": None, "asset": "MYASSETA", - "quantity": 1500000000, + "quantity": 2000000000, "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_6", } @@ -760,12 +747,12 @@ "result": [ { "event": "ASSET_DIVIDEND", - "event_index": "$EVENT_INDEX_7", + "event_index": "$EVENT_INDEX_6", "params": { "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "dividend_asset": "XCP", - "fee_paid": 40000, + "fee_paid": 20000, "quantity_per_unit": 100000000, "source": "$ADDRESS_1", "status": "valid", @@ -776,36 +763,20 @@ }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_6", + "event_index": "$EVENT_INDEX_5", "params": { "address": None, "asset": "XCP", "block_index": "$BLOCK_INDEX", "calling_function": "dividend", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$UTXO_MOVE_2_TX_HASH:0", "utxo_address": "$ADDRESS_6", }, "tx_hash": "$TX_HASH", }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_5", - "params": { - "address": "$ADDRESS_5", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "calling_function": "dividend", - "event": "$TX_HASH", - "quantity": 500000000, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, { "event": "DEBIT", "event_index": "$EVENT_INDEX_4", @@ -815,7 +786,7 @@ "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 40000, + "quantity": 20000, "tx_index": "$TX_INDEX", "utxo": None, "utxo_address": None, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py index d5e5115d6d..7d70b96370 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py @@ -23,7 +23,7 @@ "block_index": "$BLOCK_INDEX", "destination": "$TX_HASH:0", "msg_index": 1, - "quantity": 1500000000, + "quantity": 2000000000, "source": "$UTXO_MOVE_2_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", @@ -40,7 +40,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "utxo move", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_8", @@ -56,7 +56,7 @@ "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$UTXO_MOVE_2_TX_HASH:0", "utxo_address": "$ADDRESS_6", @@ -71,7 +71,7 @@ "block_index": "$BLOCK_INDEX", "destination": "$TX_HASH:0", "msg_index": 0, - "quantity": 1500000000, + "quantity": 2000000000, "source": "$UTXO_MOVE_2_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", @@ -88,7 +88,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "utxo move", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_8", @@ -104,7 +104,7 @@ "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$UTXO_MOVE_2_TX_HASH:0", "utxo_address": "$ADDRESS_6", @@ -219,7 +219,7 @@ "block_index": "$BLOCK_INDEX", "destination": "$TX_HASH:1", "msg_index": 1, - "quantity": 1500000000, + "quantity": 2000000000, "source": "$ATOMICSWAP_1_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", @@ -236,7 +236,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "utxo move", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$TX_HASH:1", "utxo_address": "$ADDRESS_9", @@ -252,7 +252,7 @@ "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$ATOMICSWAP_1_TX_HASH:0", "utxo_address": "$ADDRESS_8", @@ -267,7 +267,7 @@ "block_index": "$BLOCK_INDEX", "destination": "$TX_HASH:1", "msg_index": 0, - "quantity": 1500000000, + "quantity": 2000000000, "source": "$ATOMICSWAP_1_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", @@ -284,7 +284,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "utxo move", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$TX_HASH:1", "utxo_address": "$ADDRESS_9", @@ -300,7 +300,7 @@ "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 1500000000, + "quantity": 2000000000, "tx_index": "$TX_INDEX", "utxo": "$ATOMICSWAP_1_TX_HASH:0", "utxo_address": "$ADDRESS_8", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 1679ef2420..2d56793cb0 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -157,14 +157,14 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, data, r try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as e: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - # raise e + raise e def run_item(node, item, context): @@ -234,11 +234,11 @@ def run_item(node, item, context): print(expected_result, str(e)) assert expected_result == str(e) print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as e: print(colored(f"Failed: {item['title']}", "red")) print(f"Expected: {expected_result}") print(f"Got: {str(e)}") - # raise e + raise e else: raise e @@ -353,7 +353,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From 187d650e82f39d3683631cd5d4ecb40a03fc5ac1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 18:52:42 +0000 Subject: [PATCH 006/138] tweak --- .../counterpartycore/lib/messages/utxo.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 7b175773db..e917376474 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -87,13 +87,12 @@ def validate(db, source, destination, asset=None, quantity=None, block_index=Non else: fee = 0 - if source_is_address and util.enabled("spend_utxo_to_detach"): - problems += validate_asset_and_quantity(asset, quantity) - if len(problems) > 0: - return problems - - if source_is_address or not util.enabled("spend_utxo_to_detach"): + if not util.enabled("spend_utxo_to_detach"): problems += validate_balance(db, source, source_is_address, asset, quantity, fee) + elif source_is_address: + problems += validate_asset_and_quantity(asset, quantity) + if len(problems) == 0: + problems += validate_balance(db, source, source_is_address, asset, quantity, fee) return problems From 1a264c43d2e394165a9a0f7562c92c74725fb042 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 18:59:07 +0000 Subject: [PATCH 007/138] fix comment --- .../lib/transaction_helper/transaction_inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 6ffe216b48..cf12784aad 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -263,7 +263,7 @@ def construct_coin_selection( else: use_inputs = unspent - # forced utxo always in first position + # we want force_utxo to be the first input in unspent list if force_utxo is not None: txid, vout = force_utxo.split(":") included_pos = None From 32375befec6e2d4946db3efb110629f78846ae9a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 20:01:01 +0000 Subject: [PATCH 008/138] tweaks --- .../counterpartycore/lib/blocks.py | 24 ++++++++++++------- .../transaction_helper/transaction_inputs.py | 2 +- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 1de5fb17f1..83b2ca9b04 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -117,12 +117,14 @@ def parse_tx(db, tx): message_type_id = None message = None - if "utxos_info" in tx and tx["utxos_info"]: - if not util.enabled("spend_utxo_to_detach"): - utxo.move_assets(db, tx) - elif message_type_id != utxo.ID: - # if attach or detach we move assets after parsing - utxo.move_assets(db, tx) + # After "spend_utxo_to_detach" protocol change we move assets before parsing + # only if the message is not an Attach or Detach, else will be moved after parsing + if ( + "utxos_info" in tx + and tx["utxos_info"] + and (not util.enabled("spend_utxo_to_detach") or message_type_id != utxo.ID) + ): + utxo.move_assets(db, tx) if not tx["source"]: # utxos move only return @@ -243,9 +245,13 @@ def parse_tx(db, tx): return False # if attach or detach we move assets after parsing - if "utxos_info" in tx and tx["utxos_info"]: - if util.enabled("spend_utxo_to_detach") and message_type_id == utxo.ID: - utxo.move_assets(db, tx) + if ( + "utxos_info" in tx + and tx["utxos_info"] + and util.enabled("spend_utxo_to_detach") + and message_type_id == utxo.ID + ): + utxo.move_assets(db, tx) # NOTE: for debugging (check asset conservation after every `N` transactions). # if not tx['tx_index'] % N: diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index cf12784aad..5a64797b1e 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -284,7 +284,7 @@ def construct_coin_selection( "amount": amount, }, ) - else: + elif included_pos != 0: unspent.insert(0, unspent.pop(included_pos)) use_inputs = unspent From 6904df8242e3d0cd79b5e07fc842587f3bf1bd99 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 29 Oct 2024 20:43:28 +0000 Subject: [PATCH 009/138] [WIP] add test for invalid detach --- .../test/regtest/apidoc/apicache.json | 3448 ++++++++--------- .../test/regtest/regtestnode.py | 54 + .../test/regtest/scenarios/scenario_7_utxo.py | 1 - .../test/regtest/testscenarios.py | 3 + 4 files changed, 1781 insertions(+), 1725 deletions(-) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 4d8b0e0f5e..c2015de6e7 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": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", "difficulty": 545259519, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "previous_block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_time": 1730229823, + "previous_block_hash": "697b84f8e4490d198edeec07a640faea9c9bb1210ff0dbe9b6cf8e955bcc1b77", "difficulty": 545259519, - "ledger_hash": "0792d90a21f5645caa8772b4b507b158b306fb46a862a54384c0adf8b8b6469f", - "txlist_hash": "8e12af515b5315398d6b743f4b125c273ef98145c558fb473f2871c270c60d33", - "messages_hash": "704087710ecf5e3b9ce688524447940e5a79304b285cd1522f6097a4ae46761b", + "ledger_hash": "1582cb64631c114da1fff8f45656ab5684f5c50edfa874dea85b47f84ea086c7", + "txlist_hash": "6152e077ec0fafebd66f9e534f6e47af12cd94753cbc61cf44e06677afe46328", + "messages_hash": "d2c9c9840e649d1976de727bb1dcd20c9749cc712226f5c96745f1286f7180be", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", - "block_time": 1730224436, - "previous_block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", + "block_hash": "697b84f8e4490d198edeec07a640faea9c9bb1210ff0dbe9b6cf8e955bcc1b77", + "block_time": 1730229819, + "previous_block_hash": "02f0bee8a951f71fcd919c8436d1e0cdd8f837b2a0053184f7115c2a6b047cab", "difficulty": 545259519, - "ledger_hash": "45f8ab7b6b4a0c58595977c07abd6a2ca1f13a1172a1943af27948650b65fd43", - "txlist_hash": "427c35334708f848c7540a8297d651b8ac4aaf22d0c984de30e89302631b6d1f", - "messages_hash": "6f8bf07a81d451d9d3f133f1ba5a943179ed72c6eb5eb7aec4db29eab2da3ee0", + "ledger_hash": "bad871d35407e4cc291f5e6217e8ebe7bb843cc331d1754979004d43b2b30122", + "txlist_hash": "e6fa35ab53eeda9d3becade5825102ef1b6c2812109b73fbca544d9769f160c7", + "messages_hash": "ad3ed63edbb6b3bf190c463c95e8a707c69f48d26f862fab0b8f6a0bd072efe1", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", - "block_time": 1730224431, - "previous_block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_hash": "02f0bee8a951f71fcd919c8436d1e0cdd8f837b2a0053184f7115c2a6b047cab", + "block_time": 1730229815, + "previous_block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", "difficulty": 545259519, - "ledger_hash": "1f6db62341367eefd61c7c3f23a3cb583e5d6d5150a187c4f34594aba8bb7d0f", - "txlist_hash": "15c1231bfc3d241ae6cb65ce186ac9a2d907d2857d692fb6c8ff8c57ec6b8bd2", - "messages_hash": "93c7c553f24148a55ba14c1136578c61d5de14f120bafaaaaaddaa670a24a336", + "ledger_hash": "6123e2da3c325b117b3074f4c98873d51674f3e3249037aba5401675d8ea885d", + "txlist_hash": "0e900c66ac3c815a8a5a90830b85bc890631323f64f3ab659f9d6464c9bdbe60", + "messages_hash": "139bf8d523755ff8c2ed7557d5f50b94ba60e4222362aba9bcf1d613e5462cb7", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", - "block_time": 1730224428, - "previous_block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", + "block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", + "block_time": 1730229811, + "previous_block_hash": "7d525ab36b95c820f5eb632dd481a9ef34a7d7d01d8ab0f85e16b88acf92c3b8", "difficulty": 545259519, - "ledger_hash": "ac6409f2a71e64d0809cc15eb330ab5048a661705db26a280050fcccc851e4da", - "txlist_hash": "1562e09dbe82ee6fa44e08c339dd06205566f96be6e2bcd373df1f54cc25f7b7", - "messages_hash": "7ec3388e29ea5c0add62b35615350e54ebef8fb330a849b4f513e807db9d214b", + "ledger_hash": "a24aa6c0f056edcd92f20d53c3cf78b705394c64c3b71781dcab009494cc4b98", + "txlist_hash": "960b26cb51936c339ef02bc9123dbca956ec5223502dc0ac7cccf6c3f5150370", + "messages_hash": "226f3e393e58fab10c8f3302e04d3d44ca816bacfc947f7a730a5d2370e26540", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", "difficulty": 545259519, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", "difficulty": 545259519, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "block_time": 1730229832 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" }, { "event_index": 680, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" }, { "event_index": 679, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" } ], "next_cursor": 677, @@ -256,16 +256,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" }, { "event_index": 676, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" }, { "event_index": 673, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "object_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "block_index": 208, "confirmed": true, - "block_time": 1730224440 + "block_time": 1730229823 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "78878b916084c127bb669a856aaa79b24764f30e7e00cb72cb1a71a7cb346075", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "offer_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", "status": "valid", "confirmed": true, - "block_time": 1730224367 + "block_time": 1730229746 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "47db3f850e7bc5e755c1653917b02a07aed9c1e6776091038c1ea3ece4b7ba53", "block_index": 196, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730224388, + "block_time": 1730229766, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730229798, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730229762, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730224216, + "block_time": 1730229594, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730229497, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_time": 1730229823, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,7 +816,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "bd2c76d2f84ef9c87644ba69c3639b2b08df08830a7a25253c8cda9c90eaec6a", + "hash": "ea64475ff13cf5efb6df1dfdcb538b7ce3807546471291deabd2b3d3d761d689", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a332d6d02493979893c82effb12b1fcb7b01acd6f72460104a3506b906fd0246db9a1ba98d7d328944dfd9c1f4f2d506e9467ae82" + "script_pub_key": "6a33029d06d91735e159c65173fa39624f77d8f8a1e39e9f300c5c3af9f273bb4bf2134e5f94df7f151b5a19cf607d88c4b376f4c4" }, { "value": 4999990000, - "script_pub_key": "0014d6c757c35a7fa6eddd04672f20c061337e98041f" + "script_pub_key": "001454969806c96797e2ab72768b652edfa6383581a9" } ], "vtxinwit": [ - "304402201b4b5ecf9330d14050f58d998176ed0b66946731e834b7f680ad46233422a1790220404f68b1f974f0fb0d6499d8dec239f5838d0dc13ca4cd9102dfbe599a2e828301", - "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" + "3044022057605e0fc27211a3580d66f4252bab0c783573e3547de4484beedf30be71572502200fea75383bdd3ea61ba8d3980ff11f60a1805624f7b72d20d9a953efff85e6fc01", + "032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b35" ], "lock_time": 0, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", - "tx_id": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_id": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "bd4f7f4e49aa9ec09dde2cab63d3fe9a13d3c230d2f98b1e173e723962e950e5", + "hash": "53bab7e4eca31e8c03916077e6c1d9ae072ab0173965c155e7c57b0e853fdb47", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ee356a869e368891d4240c638da8ff82976f3e5f8db4c6e88e36f1a6890bb8472fc9fe2af296c4289e68d7200bf2f" + "script_pub_key": "6a2ecc544b2adcc49189fdd13ed3d8193d181758f40e07e9c05db6d1c6c97ecd746550cc6c4f505d490a7dea2778e052" }, { "value": 4949932460, - "script_pub_key": "00144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f" + "script_pub_key": "0014b8d507a4d0f70f5c93ade11600c9fb995deffb58" } ], "vtxinwit": [ - "3044022059732e13907c083151a0046d0ae2a0d83115ec6e30264e247494b35ffcc66fda022067082b8ec9bbeef1655e5146dc7f7c2d9ca25996c24f00b2fab3265514c3c3d901", - "023033194911d3bc9532356b962b4ba5d5f55ff9afab8febbdc2d81adc21350da7" + "3044022037fd594efeb1acc648344d66bd30ce42530659475c916947dda2fcf7918c2d980220160dfeff939902818087470980a0352db36f0007fc193136b4999008440b76ff01", + "039180daa0afc74bf313810e8788c86c840ece7cac79d3a1fafd8aeb01cf4fafac" ], "lock_time": 0, - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", - "tx_id": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7" + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_id": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_time": 1730229832, + "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 680, @@ -1024,14 +1024,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 679, @@ -1053,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 677, @@ -1102,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "msg_index": 1, "quantity": 2000000000, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", "status": "valid", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1119,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 676, @@ -1134,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 680, @@ -1148,14 +1148,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 679, @@ -1177,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 677, @@ -1226,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "msg_index": 1, "quantity": 2000000000, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", "status": "valid", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1243,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 676, @@ -1255,10 +1255,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1279,10 @@ }, { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1310,27 +1310,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1366,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 676, @@ -1397,12 +1397,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1412,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 673, @@ -1424,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": null, @@ -1453,16 +1453,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 676, @@ -1484,12 +1484,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1499,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 673, @@ -1511,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1670,17 +1670,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_time": 1730229823, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1716,17 @@ }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", - "block_time": 1730224436, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_hash": "697b84f8e4490d198edeec07a640faea9c9bb1210ff0dbe9b6cf8e955bcc1b77", + "block_time": 1730229819, + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038054969806c96797e2ab72768b652edfa6383581a9806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac:0", + "utxos_info": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1768,17 @@ }, { "tx_index": 73, - "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_hash": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", "block_index": 206, - "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", - "block_time": 1730224431, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_hash": "02f0bee8a951f71fcd919c8436d1e0cdd8f837b2a0053184f7115c2a6b047cab", + "block_time": 1730229815, + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038054969806c96797e2ab72768b652edfa6383581a9806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb58c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0:0", + "utxos_info": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1820,17 @@ }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", - "block_time": 1730224428, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", + "block_time": 1730229811, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", + "utxos_info": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1872,17 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", - "block_time": 1730224424, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "7d525ab36b95c820f5eb632dd481a9ef34a7d7d01d8ab0f85e16b88acf92c3b8", + "block_time": 1730229807, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", + "utxos_info": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": "open", - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "tx_index": 75, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "block_index": 208, - "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "event": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730224440, + "block_time": 1730229823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "block_time": 1730224440 + "order_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_time": 1730229823 }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "event": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730224440, + "block_time": 1730229823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", "block_index": 208, - "block_time": 1730224440, + "block_time": 1730229823, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "tx_index": 75, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,9 +2090,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 } ], "next_cursor": 657, @@ -2101,17 +2101,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "quantity": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "status": "valid", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77, "asset_info": { "divisible": true, @@ -2122,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "XCP", "block_index": 209, - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730224458.0780673, + "block_time": 1730229836.055731, "btc_amount": 0, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", "destination": "", "fee": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77, - "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", + "utxos_info": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 } ], "next_cursor": null, @@ -2218,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2256,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2278,7 +2278,7 @@ "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2299,7 +2299,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2321,16 +2321,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "event": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2342,16 @@ }, { "block_index": 207, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "event": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2363,16 @@ }, { "block_index": 206, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "event": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224431, + "block_time": 1730229815, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2384,20 @@ }, { "block_index": 202, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "event": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224416, + "block_time": 1730229798, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2405,16 +2405,16 @@ }, { "block_index": 193, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "event": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224367, + "block_time": 1730229746, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2432,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "event": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2453,16 @@ }, { "block_index": 205, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "event": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2474,20 @@ }, { "block_index": 205, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "event": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2495,16 +2495,16 @@ }, { "block_index": 204, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "event": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2516,20 @@ }, { "block_index": 204, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "event": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2548,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", + "tx_hash": "aaa851e17fa9fe5b1991853671831d967387d0ffbfc19686c1443bfe56d1fbd3", "block_index": 137, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224116, + "block_time": 1730229501, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "4cd5874f0136b2fe2b5610f9753c0439a8c96d34915708fbaaa4f7f55611dc63", + "tx_hash": "565dcb7c2dfeadb4519af293b79c67c689b192e3c76dfb82a19741a5bad833b6", "block_index": 112, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730224010, + "block_time": 1730229408, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2588,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2612,10 @@ }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2636,10 +2636,10 @@ }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2660,10 +2660,10 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2684,10 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2714,10 +2714,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", + "tx_hash": "9bcd5feb006d01247ff86d19346c290cd3b947ca8af761808c03375c993f05e4", "block_index": 151, - "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", - "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", + "source": "fb346c877c0e3de8a12c9cdba9933825aa1df84d5b622c69879ad068e46bdbc3:0", + "destination": "bcrt1qkfmf74gtrdthvlfyjmd0zzueay0xfzf9h5vjex", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2725,11 +2725,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224186, + "block_time": 1730229576, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2744,10 +2744,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2768,10 +2768,10 @@ }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2792,10 +2792,10 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2816,10 +2816,10 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2840,10 +2840,10 @@ }, { "tx_index": 70, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", "block_index": 203, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224421, + "block_time": 1730229803, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2875,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2912,9 @@ }, { "tx_index": 63, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224395, + "block_time": 1730229773, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -2954,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +2995,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "tx_hash": "c1c65c5c17472c1c9f046bd3b7f1afc6ac6e09aea2615c2a9693c5d8cba12694", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "dispenser_tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224395, + "block_time": 1730229773, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -3044,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3148,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "tx_hash": "c1c65c5c17472c1c9f046bd3b7f1afc6ac6e09aea2615c2a9693c5d8cba12694", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "dispenser_tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224395, + "block_time": 1730229773, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -3197,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3508,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730229762, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3528,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730229798, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", + "tx_hash": "3aefecca7ae7cb0ef45bedb5b20ff0b0b368ede13d98b50b5001d3552fb577ae", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224248, + "block_time": 1730229626, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", + "tx_hash": "66f850a9c5aae8f9ada0fbd4ce331d5e252fe1fc78929a6a049abba0d3b6ac4d", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730224245, + "block_time": 1730229622, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", + "tx_hash": "179e4b70afe0a0dbaad35c379d9b0c63165c6fd7fe6dab18938a871139c1580f", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224241, + "block_time": 1730229619, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "e1416fb7b09cf5ac75952c991615fb3e2231b1f44d3f5151df4b7b4b750d9c93", + "tx_hash": "513d8f967dba7d94a362c303bfc285912cd3b3d50713a983857c891114ff441e", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224227, + "block_time": 1730229605, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3676,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3685,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730229798, + "last_issuance_block_time": 1730229798, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3702,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730229605, + "last_issuance_block_time": 1730229622, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730229563, + "last_issuance_block_time": 1730229563, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730224109, - "last_issuance_block_time": 1730224112, + "first_issuance_block_time": 1730229492, + "last_issuance_block_time": 1730229497, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730224084, - "last_issuance_block_time": 1730224104, + "first_issuance_block_time": 1730229477, + "last_issuance_block_time": 1730229489, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3767,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3776,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730229798, + "last_issuance_block_time": 1730229798, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3793,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730229605, + "last_issuance_block_time": 1730229622, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730229563, + "last_issuance_block_time": 1730229563, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730224109, - "last_issuance_block_time": 1730224112, + "first_issuance_block_time": 1730229492, + "last_issuance_block_time": 1730229497, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730224084, - "last_issuance_block_time": 1730224104, + "first_issuance_block_time": 1730229477, + "last_issuance_block_time": 1730229489, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3858,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3867,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730229798, + "last_issuance_block_time": 1730229798, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3884,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730229605, + "last_issuance_block_time": 1730229622, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730229563, + "last_issuance_block_time": 1730229563, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730224109, - "last_issuance_block_time": 1730224112, + "first_issuance_block_time": 1730229492, + "last_issuance_block_time": 1730229497, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730224084, - "last_issuance_block_time": 1730224104, + "first_issuance_block_time": 1730229477, + "last_issuance_block_time": 1730229489, "supply_normalized": "0.00000019" } ], @@ -3947,17 +3947,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_time": 1730229823, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +3993,17 @@ }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", - "block_time": 1730224428, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", + "block_time": 1730229811, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", + "utxos_info": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4026,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4045,17 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", - "block_time": 1730224424, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "7d525ab36b95c820f5eb632dd481a9ef34a7d7d01d8ab0f85e16b88acf92c3b8", + "block_time": 1730229807, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", + "utxos_info": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4078,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4097,17 @@ }, { "tx_index": 70, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", "block_index": 203, - "block_hash": "535f5b9d18e10ef11dd8517336a14f3d093237e7ca883c56c32ca6473feb7333", - "block_time": 1730224421, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "78223b98d27e72cc18cee179fcd76685ce1c5b8c02859669a437b4a4afcf03c0", + "block_time": 1730229803, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", + "data": "02000000178d82231300000000000003e880d23e685118a9aa1d95eeb9184ee52cffe622c41f", "supported": true, - "utxos_info": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb:1", + "utxos_info": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4131,17 +4131,17 @@ }, { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "block_index": 202, - "block_hash": "08b7f2bc4f5c947cc2bf749402264c67a412cf7a4d0b46a640e162db8f091bbe", - "block_time": 1730224416, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "7109ca35c2cf47f4f0f2161b8bc34834766186bac9da4bcc7345faa2d2426329", + "block_time": 1730229798, + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c:1", + "utxos_info": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4172,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", "block_index": 155, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730229591, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4207,9 +4207,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4224,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730229640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4250,9 @@ }, { "tx_index": 52, - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4267,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4293,9 @@ }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4310,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730224367, + "block_time": 1730229746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4336,9 @@ }, { "tx_index": 60, - "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "tx_hash": "1f7c2399023df787037e99a1ef620c84dfd40a82cb31a69ec21a024fcf35b412", "block_index": 194, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4353,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224380, + "block_time": 1730229759, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4379,9 @@ }, { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4396,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730224216, + "block_time": 1730229594, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730224109, + "block_time": 1730229492, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730224084, + "block_time": 1730229477, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730224079, + "block_time": 1730229473, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730229454, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730229497, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4654,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", + "tx_hash": "fc5a2747e2459e3c380b8ee5df69f01b259f6165c905bd764f04d275f8f7119d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224104, + "block_time": 1730229489, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4678,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", + "tx_hash": "c8948fb12a404372e0abccc0024cf0f5644862c837d265a5baaad44dd86f90bf", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224091, + "block_time": 1730229485, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4702,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", + "tx_hash": "6f9346b193a425776a5f2e7217269c5e4a659967ce5e85db09bbb5ed8529f26e", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224087, + "block_time": 1730229482, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "b83c248f846aa160084220151e9b4524f7c1379b7d4e8b8c16c943d796a19d67", + "tx_hash": "d7b858102b27579b9f4c9ec882ed2fe302f1f000cd77d813171faefe72b1d1f3", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224068, + "block_time": 1730229461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4750,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730229446, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4780,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730229446, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4812,8 +4812,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4826,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -4847,7 +4847,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4857,9 +4857,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "02000000000101e586839271acf088a5bc45426c667960b17f795781a34efac10c8cdd3c932e6800000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a296e5eb72aa4f3483585c1794d457f83278c871f7759bca44a0a776bf4e88b7fc141302844f4fbddd52e83ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999985793, + "btc_fee": 14207, + "rawtransaction": "02000000000101421b469c68da74a6c75b48acc75a8b6c95b669f2c941665534114768d708e54f0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff0200000000000000002b6a29b56122a1e86c672a2478e5440817870857180a9875202f98a0450db873eab02851baa40ae6dfddc72081ba052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4877,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71" }, "name": "btcpay", - "data": "434e5452505254590bc63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "data": "434e5452505254590b6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978921, - "btc_fee": 18079, - "rawtransaction": "0200000000010178f15e9f63ff6bcc8ac30a2c6b09d96a6b3b7d993982a0f49c55e00ecdf6150200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03b80b000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f00000000000000004b6a498d2276d6569f25c712bf7165159972874854d60a81fad70e89222fcb078302c215da3c3705bb1d36d6415b9c6a6d6d4f0dd4963f51154c9e07464a160275b69a5b23c8d45740509ea7a99f052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999978918, + "btc_fee": 18082, + "rawtransaction": "02000000000101b281cd0a1681f5669be9a0896bf9f6969df28394582f5bdf74aee1339e56ef270000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff03b80b00000000000016001454969806c96797e2ab72768b652edfa6383581a900000000000000004b6a4959e0661de4357edaa1a3859b0e4ad781e55487f50ea6131dfe8a8b5da780d674c6c582be0912530e8518ff4ac58aae7770cf20302a14eebbfbe913a0f93c1935591063dbdea316d3f6a69f052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "status": "valid" } } @@ -4902,7 +4902,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "quantity": 1000, "overburn": false }, @@ -4910,29 +4910,29 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985793, - "btc_fee": 13207, - "rawtransaction": "02000000000101efa5eca541f477e33895cebaa431bfb27c3d90869183f7113852e6aa623d408500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000" + "btc_change": 4999985791, + "btc_fee": 13209, + "rawtransaction": "020000000001012fa0f2e066a071eefb84b1bebffed6d42721c8f8c82135f60ef8d7daec723ccd0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac7fba052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "offer_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd" }, "name": "cancel", - "data": "434e54525052545946dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "data": "434e5452505254594651225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "02000000000101c14f5e2d3e7262b6b5a95a2a7f31f3388e7362b01c778128bfec90b5e69aaca200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a29221177878a37cfdc2a9dc1cf3b169968625dc6c201f2e765d12dc43ae7e11aefbe68a9ade68eef188383ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999985793, + "btc_fee": 14207, + "rawtransaction": "0200000000010102bdc6f07551c14053fffc50e97301dcb93cb8a20da0563e8089a053cfe913650000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff0200000000000000002b6a298048e2c76e386eb388c7a851be6965a4e1098b4a5fc914d151c5e69609023f0230597a393ed83691b481ba052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "offer_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "status": "valid" } } @@ -4941,7 +4941,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4958,9 +4958,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986323, - "btc_fee": 13677, - "rawtransaction": "02000000000101d8a5327a9377d916c78057cf799cc882b1decdcd9984057dc5b76da1a9ae8af900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000226a208cde9c86347dc68962c518cdc5a774d3b83fb4adbe4fd10c4bada882c876773593bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999986321, + "btc_fee": 13679, + "rawtransaction": "0200000000010113588f8a1c1e52e7b650d009ee5cf80c069d1c82ef3dfae8dd551441b95836cf0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000226a20cc00b0c6233604369355c03084e86a6d7c7911f8ce64ef58a49375505b5c119291bc052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +4976,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4998,9 +4998,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920236, - "btc_fee": 14264, - "rawtransaction": "020000000001017fa8470a58592d54bf64cbade39e74b4c12b72a3cb5da0bc70f49a44a01472010100000016001405957a5ce96b7e12931440ef2986e21aeb3328c4ffffffff0200000000000000002c6a2a40940c2f2fd165343737aefeaaac21c635b3806c86fe5543bbfa3c6f67f9913ae41c31eda9ed56994624ecc909270100000016001405957a5ce96b7e12931440ef2986e21aeb3328c402000000000000", + "btc_change": 4949920234, + "btc_fee": 14266, + "rawtransaction": "020000000001013ae23953c5f5e2834d6758992c8e9d5990cc1044eee39360c0cec21af4537e9f010000001600149dfb679266fa0876992538e8cb01bcaa55495dd6ffffffff0200000000000000002c6a2ae42a6e9a0f4be43075ac30274ef6fdc5ce45d90fdf645b280fed6a6d28eb3d35e5349612f5308b8fcb5ceac90927010000001600149dfb679266fa0876992538e8cb01bcaa55495dd602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5022,14 +5022,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -5046,9 +5046,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "0200000000010153c96371617fdcc0f1c77cbc5519deb38c1f8e124efcce7d846b4d80e9225c7200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21e9777b55809c36e116fea13e9b1364aa060ca08b64f0d5be09a238293349ba81e658bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999986263, + "btc_fee": 13737, + "rawtransaction": "020000000001014d2a25f3504c9b8b19f1d8fa6342028ba07baf71ea0b55bea260a122afba24e70000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000236a21579c3e44b8e5bf0b7348a1c54cce7f0c7c1724cc2ed7ad3f8779ce3254e80a590d57bc052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,10 +5065,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "transfer_destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "lock": false, "reset": false, @@ -5079,9 +5079,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983723, - "btc_fee": 15731, - "rawtransaction": "0200000000010103e62ad510c2fa899a321523a44099af39159c86bec9a212c7375ff34917ce7f00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff032202000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f0000000000000000236a21f2f18eb3506274cb6cef7cc03da89aaec9619d979fc147968e0133eca84228cf686bb2052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999983720, + "btc_fee": 15734, + "rawtransaction": "020000000001017ddaeca9111b54774d2206cc5f7c8b6b137a1890905062e57a518284af42b1d60000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff03220200000000000016001454969806c96797e2ab72768b652edfa6383581a90000000000000000236a21c2835248ee369592c28cd6bc181915cfe55fb3517d5023fdcd19901724696e4d2268b2052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,16 +5106,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", 1 ], [ "MPMASSET", - "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", 2 ] ], @@ -5123,26 +5123,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d6c757c35a7fa6eddd04672f20c061337e98041f80d1b2178052ed879c9e588fa4a734c0e832b4999740000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028054969806c96797e2ab72768b652edfa6383581a980d23e685118a9aa1d95eeb9184ee52cffe622c41f40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945404, - "btc_fee": 52596, - "rawtransaction": "02000000000104d255c44864bd2a29b61b064a381c410edaba508fd3e9916d1e624c35aafd519600000000160014d6c757c35a7fa6eddd04672f20c061337e98041ffffffffff0be0186edc68abc84d591355157c50ca5efa06624373516cee77dd49342ef8900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff901da048f9114616e2695e17528fb029f6d9e441b90256aa280300c73674806500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff93a509ff292e9db67f1ec2be58b3c59979cd7827530ab1e9344128a14f342db100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03e803000000000000695121030e74eccc3d295073a5d70fcd740640a7add8223fe44809e1b86ee396b5cc0abc2102f3177213b02533994b9878686221fc0fb37915ed6719164b430a3ff47db80b722102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121021174eccc3d295073a5040fcff4d087f06ea65d9909950d86974a23f786b292fb2103f708f3c20232b3cba61fe4f63aae58a887b9fddfd380810b430a3a171d30cff52102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aebcf216a804000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000000000000", + "btc_change": 19999945397, + "btc_fee": 52603, + "rawtransaction": "02000000000104e37afbe03bbd77a9d4663f9aa0df2192d70f79e4ae81f2db0e45924c0e014e700000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffffd340c7751d3ab2149de3f44adb6bac24ec9202fedab9e2b53470c4b835b0947e0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff92b8e3bea54f142723969f112958dab2a31790fb26f50fcad3bd98cb82f8298a0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff5c49bd0fe592f475181c5d633eafe9839feb837ef91d4dbdf88529bdfe946b100000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff03e8030000000000006951210226f086bf75b68a45d71f13174a0707d2f51c751870e5d2a8fe2e61a216f5a47721025fc46111f74c8e7d1404a5ee76fbe24dcdf407ae60a9d4a7ef3f3aeea97a479321032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aee8030000000000006951210339f086bf75b68a45d7cc1315ca53914af3f1128f924ea0de754f4f7db0cd91982103de6de0c3c924df65bdaeb87b9842fa0328d8f848426dcbe7ef3f3f0dc9f283b421032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aeb5f216a80400000016001454969806c96797e2ab72768b652edfa6383581a902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,7 +5154,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5171,7 +5171,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -5183,9 +5183,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985208, - "btc_fee": 14792, - "rawtransaction": "020000000001015eebd64f3c1d80c089148d03f5140d080e0fcb25e29c6186a9dec1b59208eb8700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000356a33df068693567c0de1989a60f3dd38d1e685e3b4f50eccde713e2efb0569f4f433794da8f59454cf2f67065486881a147ca8f92238b8052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999985206, + "btc_fee": 14794, + "rawtransaction": "02000000000101c9b1da94da5677f54214606e665f026ddc0db4ca66b8444ba5c118898ac8f20c0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000356a331c4a5684e838c7c0e1b45b41408357778f55aa539d150bb18e58af7c30a53e1c006be1834db8cea5986350f769889e6c578c2c36b8052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,8 +5207,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5224,19 +5224,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", + "data": "434e54525052545902000000000000000100000000000003e880d23e685118a9aa1d95eeb9184ee52cffe622c41f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985501, - "btc_fee": 14499, - "rawtransaction": "020000000001017153cbfa8dd7704b50d93a6a0e2c66b7ca3bb15bbcb67a6dd32c6b0f4717908d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000306a2ebac97581eaff0fc6645bb409e84fd3bb8dedf00ea7543b6cbcd93398ebb4a2c09493eef630d96056912dd6002e465db9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999985499, + "btc_fee": 14501, + "rawtransaction": "0200000000010125b494932ecf09a469705384a091ecfd301da55059cb5b5d0ef580082839b01e0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000306a2e010cd96eaed6eb790f637c01d3009b53eac94894bf07b339a7b9c569e0a0e381cfa6784cf57ad42c471af115ca195bb9052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5246,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d1b2178052ed879c9e588fa4a734c0e832b4999707ffff", + "data": "434e5452505254590480d23e685118a9aa1d95eeb9184ee52cffe622c41f07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101f8b191474a4b30e6aa65214fe9bf4f8734b7716a08e9469982a51d09f0dd164600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21125dc85877e3a42cc2ad331181b95910d461d4e1066fdf3769c0c3674872240c8458bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999986263, + "btc_fee": 13737, + "rawtransaction": "020000000001018cde437296ea40ad07d95a1d495b9f3b88d3d8acc5781ae3deda069d102fc61b0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000236a21a0bd179e5704a9a28d6935876eb15f2fb9e1982da35208d09feb6c3ed9658e7e2e57bc052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "flags": 7, "memo": "ffff" } @@ -5272,17 +5272,17 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812619, - "btc_fee": 14381, - "rawtransaction": "02000000000101acb6e463fde3ee9c1f18921748d98f000f0700adde56b9c31fd4cf7b04ad168603000000160014d1b2178052ed879c9e588fa4a734c0e832b49997ffffffff03e8030000000000001600144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f00000000000000000c6a0a6a7ddc1e04761ad6d06d8b25082701000000160014d1b2178052ed879c9e588fa4a734c0e832b4999702000000000000", + "btc_change": 4949812617, + "btc_fee": 14383, + "rawtransaction": "020000000001018b5d01479a62ca86a1ca11e1d8ef084cc4b91966e6b20bcc4e92c330d8b9455903000000160014d23e685118a9aa1d95eeb9184ee52cffe622c41fffffffff03e803000000000000160014b8d507a4d0f70f5c93ade11600c9fb995deffb5800000000000000000c6a0ac9d3daf6358cd173de6f8925082701000000160014d23e685118a9aa1d95eeb9184ee52cffe622c41f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5295,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5324,9 +5324,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985443, - "btc_fee": 14557, - "rawtransaction": "0200000000010136948b5a9d65ed9929b6ea63e739864d23ac800c09d0163daae4ea85736dc55c00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000316a2f644fc2b52998b0b3280ebed21d508a3758967d7818a80ba5ab14b21b8951729683c0754d8dabe39b808b2ee9b6922823b9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999985441, + "btc_fee": 14559, + "rawtransaction": "02000000000101d2f521c02565cba0b4f666101f18c05908c7b4b6fe1db680a6275980a1ea13210000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000316a2f514e04ba6928e84a4459fb85fcee90acb93b68af885f35f36f1f3f58f6a1b6dabd14710a6cdf6b65dad0145f5b9cbb21b9052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5361,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -5377,9 +5377,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987028, - "btc_fee": 12972, - "rawtransaction": "02000000000101572f35b6b166c5425dc6de58c5d9334db3c4b75d300950b88c18d2c868b7c5eb00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000166a1481ab1bd63419abc843e2cc17fdafe0becfe9066e54bf052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "btc_change": 4999987026, + "btc_fee": 12974, + "rawtransaction": "02000000000101e55ad3df38ffb4d00af94e02d5e69c388303f87f5a14e7916f723422cabdb68e0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000166a14b91b2ece05b156b8f5646222c7bf829e7def614452bf052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,8 +5394,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5408,12 +5408,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c646264363731303937623931373337306634316336623230333961386433633336363765313339663832666462326264633137356632343130326561656561303a317c5843507c31303030", + "data": "434e54525052545964626372743171326a746673706b667637743739326d6a7736396b32746b6c3563757274716466686c73796e787c353132323535383563326637333030383733373037653530396264366531363833376532396230386237613339336361333338623236386138366337666564643a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918400, - "btc_fee": 78600, - "rawtransaction": "020000000001060642f53336548be530475f11b72468ad9318ce9bb069935b5b980913232a92a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffffc7dee181c1a4d7f0f75483cfca3a6b56b8c4ec75e14534686bf7fe7ab65bc77100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff45bb628e029fe2993b0541626c175452080bffd42a7835d5c218b16dc686874d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff7ae765c41c44282c47de1a66132a5fb67d53680569c1e196e2efc1b6e13ea63500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff1e131c702f91f82f1afb27182d3c50c33fb506d75a1eb548ba70ebaff3ff00a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff5d9f57c43e2b3a5c3f8c5a9d4220c49aa51b66e8e00b76498c84ff58639a14e700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff04e803000000000000695121035b6bbc45b7997ff81bf4cf45b390611ffed0c88a766da83d730e32a7923b16d2210291ac0895172c73859ceb5745c9a7d4f3fb629ad4abdb19a4fb01996517c9eca12102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121035b6bbc45b7997ff81ba99a44f8d5675dff8ddc8a777da86971096fe99e6b15712103dbb94ecb4b6b65c6dfaa55119db2c0e0a5689dc7a2d441bead57cc63129dbd902102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee80300000000000069512103716bbc45b7997ff81bf5c847f1de611290feeac2772eae3b43395cd0ff5371062102e8da7dfd7d5c00f7ec933329afd4a482970af9a493e374d89f63fd5320f8dc832102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653ae406d22fc06000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000002000002000000000000", + "btc_change": 29999918389, + "btc_fee": 78611, + "rawtransaction": "02000000000106ff50548318facc42620547e73e8600d300f2967344de25a3063c0c112cbacffc0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff26e18d4bb5a5cfe6ca1a42fc1c80bb88229be4ebd0b22a74c38604508fa9b3d90000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff6038c66240ba41aeecc80dea82a4aa20958f73d2d1b4f1d83999b65c0acede4d0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffffd854b50f1afd5448b6b72349dae7d72da93e602e83965b2b17c568bf0fce199c0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff82f355960bf1933ea6d97d238a112b5a59a331cfdc9b56ca6c1d400738391aed0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff0a4cdc594f79d1e681cbbc0f7529dfcaae7a008e2767779d31eecd8c7796aea60000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff04e803000000000000695121021fdab2e4a9539378a1e72cf34508360d4d49f23518fe4e31d4cf32d3c999f2c92102b3833983870324b236107ba5eab1c11b4f202c76c6e34309bb13e5cbf728129a21032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aee803000000000000695121031fdab2e4a9539378a1b62da2514b344c4f1bb1605cbe123297c87f86949dfab22102e8c23789db5462e0381520b2afa483461a2b21368cb55947b81ab6c1f47e1dbc21032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aee8030000000000006951210235dab2e4a9539378a1e52bf4534636002760d62f5abe1567a2f846e4f0ab9f1d2102d9f40fbaec3150d95a2518d098c5b07f29484005bf8d3b758e22d7f9c21d2a1721032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553ae356d22fc0600000016001454969806c96797e2ab72768b652edfa6383581a902000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5426,18 +5426,18 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": null, "quantity": null }, "name": "utxo", - "data": "434e54525052545964303636613036653433633966313261623031653434346435343432643531353361393237643339373537326239313731363830323237666530313463656164653a307c626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c7c", + "data": "434e54525052545964653435636139663438366438616663393833633132346233616362643835383962313439376536366630623533316137623161333839376130323731666361613a307c626372743171326a746673706b667637743739326d6a7736396b32746b6c3563757274716466686c73796e787c7c", "btc_in": 4950081000, "btc_out": 3000, - "btc_change": 4950020650, - "btc_fee": 57350, - "rawtransaction": "02000000000104deea4c01fe27026871912b5797d327a953512d44d544e401ab129f3ce4066a06000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff26524c892cb7489a9dea7e6881ebbf8d4437aff46e4894c6f96867c6fe1aa808010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff9848608d922d22b4bf3c9879b3d2d1f3b39c98c646808f3a0b7d349fb9975574000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff2fde3a5fc18db649e96158474a7b4ec343907f4c1bf2c5098c97dc24c891c160010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff04e80300000000000069512103530d9ba5b00eaa5c9c72cd0c655bf87cc0abd1c0d3e9d8d6f52c3c0ecbc071c42103f69e3041ec5a4e65ede2563657f0a5d754bf729aa4c039b4a09c9c83026ee539210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee80300000000000069512103530d9ba5b00eaa5c9c24ca5c360af97ec6fa83c78fb5d998f62d7e4b9f8573d82103af883145ab5e1c60ebb9123a06a5ebc512ee2fdfe0802bf5f5c7cbc64a2fbba7210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee803000000000000695121037e0d9ba5b00eaa5c9c7e9e4a6b02a536d99fe2a3ea8fe9e4944e0c3faef445c52103c2fa0575d8682a50dcd765576ec292b3678645af93f25b8d91abadb53a5ed7fb210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753ae2a520b27010000001600149030ff62d63fd80d9f1a083d0f04db040423649402000002000002000002000000000000", + "btc_change": 4950020642, + "btc_fee": 57358, + "rawtransaction": "02000000000104aafc71027a89a3b1a731b5f0667e49b18985bdacb324c183c9afd886f4a95ce4000000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05ffffffffb96780d697fb96bab60e036cb941ac8773d1e2d1a3a538d33d1c37d9fbc0080a010000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05fffffffff19714d0e9acb9ae97941cd4dd67b868902a3d689991712386749a5f6483c6da000000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05ffffffff7c9f23d5d609cb11e9002f7ed1666feb4769afa8dc9da447f266b02ef9962af7010000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05ffffffff04e803000000000000695121023fe94bece2c988da9f4a8e8dc38ecc4b2b70842086d5f99d431d6f7b541a982921028a45f88c71a9c103a3294a0e47598e2f329960d5d6cfbf1afb2d58f638ee0f0d2103df70a70a69f62631193061d24e141d0949a23e34cc0e902df8bd8135ea51288753aee803000000000000695121033fe94bece2c988da9f16d28e97dd9f457c22df7783d7a8874247253c065a98cc2102d453ad9e62a0c34da16544554400dd6f61963d8192c6e61ca9391de078eb5a492103df70a70a69f62631193061d24e141d0949a23e34cc0e902df8bd8135ea51288753aee8030000000000006951210212e94bece2c988da9f4687ca8f83d50e3144bc16e2ed98fb20245748372baac72103be27cbed12cba53b9611736c766db71857af56b3e6ad8a29ca4c6f94098f3c872103df70a70a69f62631193061d24e141d0949a23e34cc0e902df8bd8135ea51288753ae22520b27010000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be0502000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5453,8 +5453,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -5462,16 +5462,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730229798, + "last_issuance_block_time": 1730229798, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", - "owner": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "issuer": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "owner": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "divisible": true, "locked": false, "supply": 100000000000, @@ -5479,16 +5479,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730224399, - "last_issuance_block_time": 1730224399, + "first_issuance_block_time": 1730229777, + "last_issuance_block_time": 1730229777, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 10000000000, @@ -5496,16 +5496,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730229605, + "last_issuance_block_time": 1730229622, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "owner": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "issuer": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "owner": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "divisible": true, "locked": false, "supply": 100000000000, @@ -5513,16 +5513,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730224224, - "last_issuance_block_time": 1730224224, + "first_issuance_block_time": 1730229602, + "last_issuance_block_time": 1730229602, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 100000000000, @@ -5530,8 +5530,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730229563, + "last_issuance_block_time": 1730229563, "supply_normalized": "1000.00000000" } ], @@ -5543,8 +5543,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false, "supply": 10000000000, @@ -5552,15 +5552,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730224047, - "last_issuance_block_time": 1730224059, + "first_issuance_block_time": 1730229442, + "last_issuance_block_time": 1730229454, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5568,14 +5568,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5583,7 +5583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -5596,7 +5596,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5618,9 +5618,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5635,7 +5635,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730229640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5661,9 +5661,9 @@ }, { "tx_index": 52, - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5678,7 +5678,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5704,9 +5704,9 @@ }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5721,7 +5721,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730224367, + "block_time": 1730229746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5747,9 +5747,9 @@ }, { "tx_index": 60, - "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "tx_hash": "1f7c2399023df787037e99a1ef620c84dfd40a82cb31a69ec21a024fcf35b412", "block_index": 194, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5764,7 +5764,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224380, + "block_time": 1730229759, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5790,9 +5790,9 @@ }, { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5807,7 +5807,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5838,13 +5838,13 @@ "/v2/assets//matches": { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5858,7 +5858,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730229732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5878,13 +5878,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5898,7 +5898,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730229729, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5918,13 +5918,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", "tx0_index": 50, - "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 51, - "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5938,7 +5938,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730229640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5965,20 +5965,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "event": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730229762, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -5986,20 +5986,20 @@ }, { "block_index": 125, - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", + "event": "a4d17cd4750d503765ddfca8766abc611f86a6f3efd1eccbe8bb6d853cba8383", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730229454, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6007,20 +6007,20 @@ }, { "block_index": 124, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "event": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224055, + "block_time": 1730229450, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6028,20 +6028,20 @@ }, { "block_index": 124, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "event": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224055, + "block_time": 1730229450, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6053,16 +6053,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "event": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224055, + "block_time": 1730229450, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6080,12 +6080,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6097,16 +6097,16 @@ }, { "block_index": 208, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "event": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "asset_info": { "divisible": true, "asset_longname": null, @@ -6118,16 +6118,16 @@ }, { "block_index": 207, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "event": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "divisible": true, "asset_longname": null, @@ -6139,16 +6139,16 @@ }, { "block_index": 206, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "event": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224431, + "block_time": 1730229815, "asset_info": { "divisible": true, "asset_longname": null, @@ -6160,16 +6160,16 @@ }, { "block_index": 205, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "event": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "divisible": true, "asset_longname": null, @@ -6192,14 +6192,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", + "tx_hash": "a4d17cd4750d503765ddfca8766abc611f86a6f3efd1eccbe8bb6d853cba8383", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -6214,20 +6214,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730224059, + "block_time": 1730229454, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "tx_hash": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -6242,20 +6242,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730224055, + "block_time": 1730229450, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -6270,20 +6270,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730229446, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -6298,7 +6298,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730224047, + "block_time": 1730229442, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6310,10 +6310,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6321,7 +6321,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,10 +6334,10 @@ }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6345,7 +6345,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "divisible": true, "asset_longname": null, @@ -6358,10 +6358,10 @@ }, { "tx_index": 73, - "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_hash": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", "block_index": 206, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6369,7 +6369,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730224431, + "block_time": 1730229815, "asset_info": { "divisible": true, "asset_longname": null, @@ -6382,10 +6382,10 @@ }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6393,7 +6393,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730229811, "asset_info": { "divisible": true, "asset_longname": null, @@ -6406,10 +6406,10 @@ }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6417,7 +6417,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730229807, "asset_info": { "divisible": true, "asset_longname": null, @@ -6436,9 +6436,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6447,7 +6447,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6457,7 +6457,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -6473,9 +6473,9 @@ }, { "tx_index": 29, - "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", + "tx_hash": "922fee62fc5e8a99128251addf50267b4394d61a23d61ca0cbbcfeee4bc8c194", "block_index": 142, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6484,7 +6484,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "origin": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6494,7 +6494,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224144, + "block_time": 1730229521, "asset_info": { "divisible": true, "asset_longname": null, @@ -6510,9 +6510,9 @@ }, { "tx_index": 30, - "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", + "tx_hash": "67543ff9543653803b7c651800146545d0443ab6089f895c32c1de386a0ffc8c", "block_index": 150, - "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", + "source": "mmBjvSYsKyjxt5n5eFsTuEQTi18zCHQmXV", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6520,10 +6520,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_hash": "548129c5e76f34ba949687da3939d13a0553d844d35a1c4732b0505747169b9d", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6531,7 +6531,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224183, + "block_time": 1730229572, "asset_info": { "divisible": true, "asset_longname": null, @@ -6547,18 +6547,18 @@ }, { "tx_index": 33, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6568,7 +6568,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6589,9 +6589,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6600,7 +6600,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6610,7 +6610,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -6638,7 +6638,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6646,7 +6646,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6655,7 +6655,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6663,7 +6663,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6672,7 +6672,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6680,7 +6680,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6689,7 +6689,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6704,27 +6704,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6739,7 +6739,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6753,27 +6753,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", + "tx_hash": "dac683645f9a748623719199683d2a9068b867ddd41c9497aeb9ace9d01497f1", "block_index": 147, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6788,7 +6788,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224171, + "block_time": 1730229559, "asset_info": { "divisible": true, "asset_longname": null, @@ -6802,19 +6802,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6822,7 +6822,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6837,7 +6837,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -6851,19 +6851,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6871,7 +6871,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6886,7 +6886,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -6909,10 +6909,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6937,7 +6937,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730229454, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6955,22 +6955,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", + "tx_hash": "a4d17cd4750d503765ddfca8766abc611f86a6f3efd1eccbe8bb6d853cba8383", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224059, + "block_time": 1730229454, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -6979,22 +6979,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "tx_hash": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", "tx_index": 12, "block_index": 124, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224055, + "block_time": 1730229450, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -7003,22 +7003,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730229446, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -7033,22 +7033,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730229446, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -7064,9 +7064,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7081,7 +7081,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730229640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7107,9 +7107,9 @@ }, { "tx_index": 53, - "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "block_index": 188, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7124,7 +7124,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730229729, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7150,9 +7150,9 @@ }, { "tx_index": 55, - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "block_index": 189, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7167,7 +7167,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730229732, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7193,9 +7193,9 @@ }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7210,7 +7210,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730224367, + "block_time": 1730229746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7236,9 +7236,9 @@ }, { "tx_index": 60, - "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "tx_hash": "1f7c2399023df787037e99a1ef620c84dfd40a82cb31a69ec21a024fcf35b412", "block_index": 194, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7253,7 +7253,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224380, + "block_time": 1730229759, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7284,9 +7284,9 @@ "/v2/orders/": { "result": { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7301,7 +7301,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7329,13 +7329,13 @@ "/v2/orders//matches": { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7349,7 +7349,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730229732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7369,13 +7369,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7389,7 +7389,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730229729, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7416,15 +7416,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", "block_index": 188, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "btc_amount": 2000, - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "status": "valid", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730229729, "btc_amount_normalized": "0.00002000" } ], @@ -7435,9 +7435,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "block_index": 188, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7455,7 +7455,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730224338, + "block_time": 1730229729, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7481,9 +7481,9 @@ }, { "tx_index": 55, - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "block_index": 189, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7501,7 +7501,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730224341, + "block_time": 1730229732, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7527,9 +7527,9 @@ }, { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7547,7 +7547,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224264, + "block_time": 1730229640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7573,9 +7573,9 @@ }, { "tx_index": 52, - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7593,7 +7593,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7619,9 +7619,9 @@ }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7639,7 +7639,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224367, + "block_time": 1730229746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7670,13 +7670,13 @@ "/v2/orders///matches": { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7693,7 +7693,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224341, + "block_time": 1730229732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7713,13 +7713,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7736,7 +7736,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224338, + "block_time": 1730229729, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7756,13 +7756,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", "tx0_index": 50, - "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 51, - "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7779,7 +7779,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224264, + "block_time": 1730229640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7805,13 +7805,13 @@ "/v2/order_matches": { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7825,7 +7825,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730229732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,13 +7845,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7865,7 +7865,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730229729, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7885,13 +7885,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", "tx0_index": 50, - "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx1_index": 51, - "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7905,7 +7905,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730229640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7950,66 +7950,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", + "tx_hash": "eabc59e8fac012bcdbbbaeb0131549c4caee3a92ff5b81eb2dc8ac9ffa4f3a63", "block_index": 121, - "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", + "source": "bcrt1qyvc2f0n2uhvxwjeyf86madxepfnuttz25ah07v", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730224044, + "block_time": 1730229438, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "fb1164b42803c1fe9785b14f854f1d5889320f1ecc71c5737cd9b41cd53ef684", + "tx_hash": "25e71ce5e629ffa8e1623e95152083bb7cd51468af2b81fdaf1dfc4b34df0b0d", "block_index": 120, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730224039, + "block_time": 1730229435, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "4214b4a0c69d4ab91e9da4d8dc2c558a1972811480dc21cd7da14a5e651ba78f", + "tx_hash": "f88f55d6363d84a06cb67938e2e4e3b80381bbe139217dcfa9450146a9cc2e27", "block_index": 119, - "source": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h", + "source": "bcrt1qnyu4f05tnnnxxy0l770e8kdvlwe4nccljwgdne", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730224035, + "block_time": 1730229432, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "00a720a01c081dd9ef905fa0f750dbddae525976a705d3658983f31524f8fe8b", + "tx_hash": "f345948c345e09a2c70f68a1cd26ddb23a3d18f29771a85c57d384c1f60d9fce", "block_index": 118, - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730224031, + "block_time": 1730229429, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "f2e79ed16c6c0e637ae8deb96e59cdc2d8de09daae42dcae8be10132cc3a7837", + "tx_hash": "725c0dad81daa9ef8605d5fc4d7456d494662ebfc6063fd0cf8c508a22fdbee3", "block_index": 117, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730224028, + "block_time": 1730229425, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8021,9 +8021,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8032,7 +8032,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8042,7 +8042,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -8058,9 +8058,9 @@ }, { "tx_index": 29, - "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", + "tx_hash": "922fee62fc5e8a99128251addf50267b4394d61a23d61ca0cbbcfeee4bc8c194", "block_index": 142, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8069,7 +8069,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "origin": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8079,7 +8079,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224144, + "block_time": 1730229521, "asset_info": { "divisible": true, "asset_longname": null, @@ -8095,9 +8095,9 @@ }, { "tx_index": 30, - "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", + "tx_hash": "67543ff9543653803b7c651800146545d0443ab6089f895c32c1de386a0ffc8c", "block_index": 150, - "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", + "source": "mmBjvSYsKyjxt5n5eFsTuEQTi18zCHQmXV", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8105,10 +8105,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_hash": "548129c5e76f34ba949687da3939d13a0553d844d35a1c4732b0505747169b9d", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8116,7 +8116,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224183, + "block_time": 1730229572, "asset_info": { "divisible": true, "asset_longname": null, @@ -8132,9 +8132,9 @@ }, { "tx_index": 63, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8143,7 +8143,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8153,11 +8153,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224395, + "block_time": 1730229773, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -8169,18 +8169,18 @@ }, { "tx_index": 33, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8190,7 +8190,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8211,9 +8211,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8222,7 +8222,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8232,7 +8232,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -8252,19 +8252,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8272,7 +8272,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8287,7 +8287,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -8301,19 +8301,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8321,7 +8321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8336,7 +8336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -8355,20 +8355,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", "block_index": 155, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730229591, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -8389,20 +8389,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", "block_index": 155, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730229591, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -8425,12 +8425,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "event": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", "tx_index": 42, - "utxo": "b62ffce48b16b737eea55a572265debb28a0dfa10602337514862041beaab9aa:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "e47a1a355f021a7b22f04a5299bb3c186a3a49e02bcaf45f4797da9280728e11:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730229591, "asset_info": { "divisible": true, "asset_longname": null, @@ -8451,27 +8451,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "block_time": 1730229832 }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 680, @@ -8480,14 +8480,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8498,9 +8498,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 679, @@ -8509,9 +8509,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "asset_info": { "divisible": true, "asset_longname": null, @@ -8521,24 +8521,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8548,9 +8548,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 677, @@ -8562,15 +8562,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "block_time": 1730229832 }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } }, "/v2/events/counts": { @@ -8605,16 +8605,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,9 +8624,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 676, @@ -8636,12 +8636,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8651,9 +8651,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 673, @@ -8663,39 +8663,39 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "event": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730224440, + "block_time": 1730229823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8705,24 +8705,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "event": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "divisible": true, "asset_longname": null, @@ -8732,9 +8732,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "block_time": 1730224436 + "block_time": 1730229819 } ], "next_cursor": 651, @@ -8751,27 +8751,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8786,7 +8786,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8800,19 +8800,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "tx_hash": "c1c65c5c17472c1c9f046bd3b7f1afc6ac6e09aea2615c2a9693c5d8cba12694", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "dispenser_tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8820,7 +8820,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8835,11 +8835,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224395, + "block_time": 1730229773, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -8849,27 +8849,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", + "tx_hash": "dac683645f9a748623719199683d2a9068b867ddd41c9497aeb9ace9d01497f1", "block_index": 147, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8884,7 +8884,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224171, + "block_time": 1730229559, "asset_info": { "divisible": true, "asset_longname": null, @@ -8898,19 +8898,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8918,7 +8918,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8933,7 +8933,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730229517, "asset_info": { "divisible": true, "asset_longname": null, @@ -8947,19 +8947,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8967,7 +8967,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8982,7 +8982,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730229513, "asset_info": { "divisible": true, "asset_longname": null, @@ -9001,10 +9001,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9012,7 +9012,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -9025,10 +9025,10 @@ }, { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9036,11 +9036,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9049,10 +9049,10 @@ }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9060,7 +9060,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "divisible": true, "asset_longname": null, @@ -9073,10 +9073,10 @@ }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9084,11 +9084,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9097,10 +9097,10 @@ }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9108,11 +9108,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9127,14 +9127,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -9149,20 +9149,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730229798, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "03d35bf4e2deb3c0bbef956d679976cf8f2349345785429341ab700aaea1f078", + "tx_hash": "4e2c188b4664107d870d6c0056df8c1d4951e1066bb6f02a3331695e50ce4aa5", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", - "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "issuer": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "transfer": false, "callable": false, "call_date": 0, @@ -9177,20 +9177,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224399, + "block_time": 1730229777, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", + "tx_hash": "3aefecca7ae7cb0ef45bedb5b20ff0b0b368ede13d98b50b5001d3552fb577ae", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -9205,20 +9205,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224248, + "block_time": 1730229626, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", + "tx_hash": "66f850a9c5aae8f9ada0fbd4ce331d5e252fe1fc78929a6a049abba0d3b6ac4d", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -9233,20 +9233,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730224245, + "block_time": 1730229622, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", + "tx_hash": "179e4b70afe0a0dbaad35c379d9b0c63165c6fd7fe6dab18938a871139c1580f", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -9261,7 +9261,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224241, + "block_time": 1730229619, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9272,14 +9272,14 @@ "/v2/issuances/": { "result": { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "transfer": false, "callable": false, "call_date": 0, @@ -9294,7 +9294,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730229798, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9303,16 +9303,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730229762, "fee_paid_normalized": "0.00600000" } ], @@ -9323,16 +9323,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730229762, "fee_paid_normalized": "0.00600000" } ], @@ -9343,9 +9343,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", "block_index": 138, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9353,14 +9353,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224120, + "block_time": 1730229505, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", + "tx_hash": "aaa851e17fa9fe5b1991853671831d967387d0ffbfc19686c1443bfe56d1fbd3", "block_index": 137, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9368,7 +9368,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224116, + "block_time": 1730229501, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9378,9 +9378,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", "block_index": 138, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9388,17 +9388,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224120, + "block_time": 1730229505, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9423,7 +9423,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730224216, + "block_time": 1730229594, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9432,10 +9432,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9460,7 +9460,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730224109, + "block_time": 1730229492, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9472,10 +9472,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9500,7 +9500,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730224084, + "block_time": 1730229477, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9512,10 +9512,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9540,7 +9540,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730224079, + "block_time": 1730229473, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9552,10 +9552,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9580,7 +9580,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730229454, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9598,22 +9598,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730229497, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9622,22 +9622,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", + "tx_hash": "fc5a2747e2459e3c380b8ee5df69f01b259f6165c905bd764f04d275f8f7119d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224104, + "block_time": 1730229489, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9646,22 +9646,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", + "tx_hash": "c8948fb12a404372e0abccc0024cf0f5644862c837d265a5baaad44dd86f90bf", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224091, + "block_time": 1730229485, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9670,22 +9670,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", + "tx_hash": "6f9346b193a425776a5f2e7217269c5e4a659967ce5e85db09bbb5ed8529f26e", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224087, + "block_time": 1730229482, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9694,22 +9694,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "70fcc71132c03dc6c41341473ce9fa39038ace84501cbd872850ad8c01f8a162", + "tx_hash": "e5e5b7cf88411866e40386ade8e12f4a18f6c7f7f6227cbd5b59744a5a541f6a", "tx_index": 17, "block_index": 129, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "fairminter_tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224075, + "block_time": 1730229469, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9723,22 +9723,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730229497, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -9750,22 +9750,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241", - "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" + "amount": 49.499345, + "txid": "9f7e53f41ac2cec06093e3ee4410cc90599d8e2c9958674d83e2f5c55339e23a", + "address": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f", - "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" + "amount": 5.46e-05, + "txid": "2bdf25feea9dd4ea6a6fa4893efb049586c87bf11d85d4f21cf72fd37fb607c3", + "address": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658" }, { "vout": 2, @@ -9773,8 +9773,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc", - "address": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h" + "txid": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5", + "address": "bcrt1qnyu4f05tnnnxxy0l770e8kdvlwe4nccljwgdne" } ], "next_cursor": null, @@ -9783,28 +9783,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207" + "tx_hash": "ce9138a3904c238caa24730ebf90b60c25a1fe1e31f01b86315f0e67632d8715" }, { - "tx_hash": "50d0a0e77f60c466797e1d2fd5e455a6b735173a9735b809e0950dd33ffd511d" + "tx_hash": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d" }, { - "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f" + "tx_hash": "bb72d180e37eee7270f1174b18c41ea1816c9969e44eac88bacc6767ca0b4e20" }, { - "tx_hash": "e051021b2c74665b4f931aec4cfae088c435f7275bc3409ac8fda551cf4de474" + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735" }, { - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" + "tx_hash": "d29376555c844bbb6f3f89da8d3fb622ee96b22094ba72d62219474c15752c59" }, { - "tx_hash": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d" + "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71" }, { - "tx_hash": "e3999ad8f23260f16aee1eb0df23c91affcea3880e1ac2dba417d561f95f76ac" + "tx_hash": "27b4f34e5aff53045320ee5a445f2fb4984ed39b5723a201819b824ff280c9b7" }, { - "tx_hash": "0c648b9f7b7b9d1a39ee6ce2d2685fffe1029925b507b9fa59547d646a5704e3" + "tx_hash": "fb346c877c0e3de8a12c9cdba9933825aa1df84d5b622c69879ad068e46bdbc3" } ], "next_cursor": null, @@ -9812,40 +9812,40 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "23f287cd6dc1eaffaf98025c9e2dd7ac31c2f51642bfda6932394e85dbae39d0" + "block_index": 6, + "tx_hash": "eb55259c02c2a62ffe3c651c87f1b1e2938bb8f9a701026d14f054872b08255b" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241" + "amount": 49.499345, + "txid": "9f7e53f41ac2cec06093e3ee4410cc90599d8e2c9958674d83e2f5c55339e23a" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f" + "amount": 5.46e-05, + "txid": "2bdf25feea9dd4ea6a6fa4893efb049586c87bf11d85d4f21cf72fd37fb607c3" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" + "result": "032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b35" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101bcc068411be42005ef020eacec90a5264f0cc225f8a74e05ede92a89417e6fc50100000000ffffffff03e8030000000000001600149030ff62d63fd80d9f1a083d0f04db040423649400000000000000000c6a0a77c6fc6c8e6b061d40c0eb14092701000000160014e306fd2732c4dc9455942fa8651f015c89a6b8d202473044022021a9e61267ae58406b5ddf4c9e30c0630806552c98185e2549825aea6e195bdd02201f82716c63034970df08fe45ed0470c98e7040d9ed07b2ead742cedd91c893830121028b52127657b237ac73a4d2441674d99d20ed53967b28790362546612c8ab63e100000000" + "result": "02000000000101e5bea3cc4d693d5a5c1293d6d24e0fcabec95cc06e1d495567219054c2dfc4550100000000ffffffff03e8030000000000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be0500000000000000000c6a0a3558b838e0041a484273eb140927010000001600145f6e14d97767fadff16706403231bc2ee16c602e0247304402206cb72be4607bc89f707f5815b635340f09cbba19d93daf721b1a243e2433698602202f4a33d4effc4b9d758a5509621c509257a7e67351fdc6c1f17d8ecc0b99f047012103198a57d062e0191161bd85a956fc618164494573acd2577032fa76108962aa7d00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58701 + "result": 58709 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9865,27 +9865,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77 }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "quantity": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "status": "valid", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77, "asset_info": { "divisible": true, @@ -9896,22 +9896,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -9921,22 +9921,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "XCP", "block_index": 209, - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -9946,30 +9946,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730224458.0780673, + "block_time": 1730229836.055731, "btc_amount": 0, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", "destination": "", "fee": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77, - "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", + "utxos_info": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "asset_info": { "divisible": true, @@ -9983,7 +9983,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 } ], "next_cursor": null, @@ -9992,19 +9992,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -10014,7 +10014,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 } ], "next_cursor": null, @@ -10023,27 +10023,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77 }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "quantity": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "status": "valid", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77, "asset_info": { "divisible": true, @@ -10054,22 +10054,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -10079,22 +10079,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "asset": "XCP", "block_index": 209, - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -10104,30 +10104,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730224458.0780673, + "block_time": 1730229836.055731, "btc_amount": 0, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", "destination": "", "fee": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", "tx_index": 77, - "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", + "utxos_info": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "memo": null, "asset_info": { "divisible": true, @@ -10141,7 +10141,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730229836.055731 } ], "next_cursor": null, @@ -10163,15 +10163,15 @@ "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", "block_index": 209, - "block_time": 1730224454, + "block_time": 1730229832, "difficulty": 545259519, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf" + "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d" }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 660, @@ -10183,17 +10183,17 @@ "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", "block_index": 209, - "block_time": 1730224454, + "block_time": 1730229832, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "fee": 0, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10203,9 +10203,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 661, @@ -10219,16 +10219,16 @@ "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "out_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 565, @@ -10241,15 +10241,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", + "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", + "block_time": 1730229832 }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 668, @@ -10262,12 +10262,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 667, @@ -10283,12 +10283,12 @@ "address": null, "asset": "XCP", "block_index": 209, - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 2000000000, "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "block_time": 1730224454, + "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -10298,9 +10298,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 672, @@ -10312,16 +10312,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -10331,9 +10331,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 676, @@ -10347,26 +10347,26 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "memo": null, "quantity": 1000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": "valid", - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", "tx_index": 70, - "block_time": 1730224421, + "block_time": 1730229803, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", "block_index": 203, - "block_time": 1730224421 + "block_time": 1730229803 } ], "next_cursor": 505, @@ -10380,15 +10380,15 @@ "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "status": "valid", - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "tx_index": 74, - "block_time": 1730224436, + "block_time": 1730229819, "asset_info": { "divisible": true, "asset_longname": null, @@ -10398,9 +10398,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", "block_index": 207, - "block_time": 1730224436 + "block_time": 1730229819 } ], "next_cursor": 656, @@ -10423,20 +10423,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "status": "valid", - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "tx_index": 61, - "block_time": 1730224384, + "block_time": 1730229762, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", "block_index": 195, - "block_time": 1730224384 + "block_time": 1730229762 } ], "next_cursor": null, @@ -10453,15 +10453,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": "valid", - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", "tx_index": 42, - "block_time": 1730224202, + "block_time": 1730229591, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -10475,9 +10475,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", "block_index": 155, - "block_time": 1730224202 + "block_time": 1730229591 } ], "next_cursor": null, @@ -10498,11 +10498,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730224416 + "block_time": 1730229798 }, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "block_index": 202, - "block_time": 1730224416 + "block_time": 1730229798 } ], "next_cursor": 574, @@ -10525,22 +10525,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": "valid", "transfer": false, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "tx_index": 69, - "block_time": 1730224416, + "block_time": 1730229798, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", "block_index": 202, - "block_time": 1730224416 + "block_time": 1730229798 } ], "next_cursor": 575, @@ -10555,12 +10555,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "47db3f850e7bc5e755c1653917b02a07aed9c1e6776091038c1ea3ece4b7ba53", "tx_index": 62, - "block_time": 1730224388, + "block_time": 1730229766, "asset_info": { "divisible": true, "asset_longname": null, @@ -10570,9 +10570,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "47db3f850e7bc5e755c1653917b02a07aed9c1e6776091038c1ea3ece4b7ba53", "block_index": 196, - "block_time": 1730224388 + "block_time": 1730229766 } ], "next_cursor": 157, @@ -10597,11 +10597,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": "open", - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "tx_index": 75, - "block_time": 1730224440, + "block_time": 1730229823, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10625,9 +10625,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 } ], "next_cursor": 536, @@ -10645,20 +10645,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", "tx0_index": 52, - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "tx1_index": 55, - "block_time": 1730224341, + "block_time": 1730229732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10677,9 +10677,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", "block_index": 189, - "block_time": 1730224341 + "block_time": 1730229732 } ], "next_cursor": 482, @@ -10692,11 +10692,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49" + "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 } ], "next_cursor": 528, @@ -10709,11 +10709,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231" + "tx_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54" }, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", "block_index": 188, - "block_time": 1730224338 + "block_time": 1730229729 } ], "next_cursor": null, @@ -10725,13 +10725,13 @@ "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", "status": "completed" }, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", "block_index": 188, - "block_time": 1730224338 + "block_time": 1730229729 } ], "next_cursor": 461, @@ -10745,18 +10745,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "status": "valid", - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", "tx_index": 54, - "block_time": 1730224338, + "block_time": 1730229729, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", "block_index": 188, - "block_time": 1730224338 + "block_time": 1730229729 } ], "next_cursor": null, @@ -10769,16 +10769,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "offer_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": "valid", - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "78878b916084c127bb669a856aaa79b24764f30e7e00cb72cb1a71a7cb346075", "tx_index": 59, - "block_time": 1730224367 + "block_time": 1730229746 }, - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "78878b916084c127bb669a856aaa79b24764f30e7e00cb72cb1a71a7cb346075", "block_index": 193, - "block_time": 1730224367 + "block_time": 1730229746 } ], "next_cursor": null, @@ -10791,13 +10791,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "block_time": 1730224440 + "order_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_time": 1730229823 }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730229823 } ], "next_cursor": 469, @@ -10810,14 +10810,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "block_time": 1730224264 + "order_match_id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "block_time": 1730229640 }, "tx_hash": null, "block_index": 185, - "block_time": 1730224264 + "block_time": 1730229640 } ], "next_cursor": null, @@ -10836,17 +10836,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "satoshirate": 1, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "status": 0, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "tx_index": 63, - "block_time": 1730224391, + "block_time": 1730229769, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -10855,9 +10855,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", "block_index": 197, - "block_time": 1730224391 + "block_time": 1730229769 } ], "next_cursor": 272, @@ -10872,9 +10872,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", "asset_info": { "divisible": true, "asset_longname": null, @@ -10884,9 +10884,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 567, @@ -10900,13 +10900,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", + "destination": "mmBjvSYsKyjxt5n5eFsTuEQTi18zCHQmXV", "dispense_quantity": 10, - "dispenser_tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", + "dispenser_tx_hash": "67543ff9543653803b7c651800146545d0443ab6089f895c32c1de386a0ffc8c", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx_hash": "71ee88545f52ccd037b0619359d91f7abdac2c1adcc94354aabdc5a0a0aae1ef", "tx_index": 31, - "block_time": 1730224160, + "block_time": 1730229539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10916,9 +10916,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", + "tx_hash": "71ee88545f52ccd037b0619359d91f7abdac2c1adcc94354aabdc5a0a0aae1ef", "block_index": 144, - "block_time": 1730224160 + "block_time": 1730229539 } ], "next_cursor": null, @@ -10933,14 +10933,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -10951,9 +10951,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 568, @@ -10968,19 +10968,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", "tx_index": 25, "value": 66600.0, - "block_time": 1730224120, + "block_time": 1730229505, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", "block_index": 138, - "block_time": 1730224120 + "block_time": 1730229505 } ], "next_cursor": 213, @@ -11011,12 +11011,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "start_block": 0, "status": "open", - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", "tx_index": 43, - "block_time": 1730224216, + "block_time": 1730229594, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11024,9 +11024,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", "block_index": 156, - "block_time": 1730224216 + "block_time": 1730229594 } ], "next_cursor": 196, @@ -11039,11 +11039,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb" + "tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639" }, "tx_hash": null, "block_index": 130, - "block_time": 1730224079 + "block_time": 1730229473 } ], "next_cursor": 110, @@ -11059,17 +11059,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", "paid_quantity": 34, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", "status": "valid", - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", "tx_index": 23, - "block_time": 1730224112, + "block_time": 1730229497, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, @@ -11077,9 +11077,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", "block_index": 136, - "block_time": 1730224112 + "block_time": 1730229497 } ], "next_cursor": 190, @@ -11093,28 +11093,28 @@ "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f:0", + "destination": "3cf1fff02d3ca2b77ef4fec82da3a0705a0ed68267e54e54fc08973c1236c8aa:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "status": "valid", - "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "tx_hash": "3cf1fff02d3ca2b77ef4fec82da3a0705a0ed68267e54e54fc08973c1236c8aa", "tx_index": 66, - "block_time": 1730224404, + "block_time": 1730229781, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "issuer": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "tx_hash": "3cf1fff02d3ca2b77ef4fec82da3a0705a0ed68267e54e54fc08973c1236c8aa", "block_index": 200, - "block_time": 1730224404 + "block_time": 1730229781 } ], "next_cursor": 327, @@ -11128,28 +11128,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", + "destination": "bcrt1qkfmf74gtrdthvlfyjmd0zzueay0xfzf9h5vjex", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", + "source": "fb346c877c0e3de8a12c9cdba9933825aa1df84d5b622c69879ad068e46bdbc3:0", "status": "valid", - "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", + "tx_hash": "9bcd5feb006d01247ff86d19346c290cd3b947ca8af761808c03375c993f05e4", "tx_index": 38, - "block_time": 1730224186, + "block_time": 1730229576, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", + "tx_hash": "9bcd5feb006d01247ff86d19346c290cd3b947ca8af761808c03375c993f05e4", "block_index": 151, - "block_time": 1730224186 + "block_time": 1730229576 } ], "next_cursor": null, @@ -11163,14 +11163,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", "msg_index": 1, "quantity": 2000000000, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", "status": "valid", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730229832, "asset_info": { "divisible": true, "asset_longname": null, @@ -11180,9 +11180,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730229832 } ], "next_cursor": 674, @@ -11197,17 +11197,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", + "source": "bcrt1qyvc2f0n2uhvxwjeyf86madxepfnuttz25ah07v", "status": "valid", - "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", + "tx_hash": "eabc59e8fac012bcdbbbaeb0131549c4caee3a92ff5b81eb2dc8ac9ffa4f3a63", "tx_index": 9, - "block_time": 1730224044, + "block_time": 1730229438, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", + "tx_hash": "eabc59e8fac012bcdbbbaeb0131549c4caee3a92ff5b81eb2dc8ac9ffa4f3a63", "block_index": 121, - "block_time": 1730224044 + "block_time": 1730229438 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 4e0b7d605c..863f60f505 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 +import binascii import json import os import signal @@ -10,6 +11,7 @@ from io import StringIO import sh +from counterpartycore.lib import arc4 WALLET_NAME = "xcpwallet" @@ -492,6 +494,58 @@ def test_reorg(self): assert "Blockchain reorganization detected" in self.server_out.getvalue() assert self.get_burn_count(self.addresses[0]) == 1 + def test_invalid_detach(self): + print("Test invalid detach...") + + test_address = self.addresses[7] + + balances = self.api_call(f"addresses/{test_address}/balances/UTXOASSET")["result"] + print(balances) + utxo = None + for balance in balances: + if balance["utxo"]: + utxo = balance["utxo"] + break + assert utxo + txid, vout = utxo.split(":") + data = self.send_transaction( + utxo, + "detach", + {"destination": test_address}, + return_only_data=True, + ) + data = binascii.unhexlify(data) + key = arc4.init_arc4(binascii.unhexlify(txid)) + data = key.encrypt(data) + data = binascii.hexlify(data).decode("utf-8") + + inputs = json.dumps([{"txid": txid, "vout": int(vout)}]) + outputs = json.dumps({test_address: 200 / 10e8, "data": data}) + + raw_transaction = self.bitcoin_cli("createrawtransaction", inputs, outputs).strip() + signed_transaction_json = self.bitcoin_wallet( + "signrawtransactionwithwallet", raw_transaction + ).strip() + signed_transaction = json.loads(signed_transaction_json)["hex"] + + retry = 0 + while True: + try: + self.broadcast_transaction(signed_transaction) + break + except sh.ErrorReturnCode_25 as e: + retry += 1 + assert retry < 6 + print(str(e)) + print("Sleeping for 5 seconds and retrying...") + time.sleep(5) + + balances = self.api_call(f"addresses/{test_address}/balances/UTXOASSET")["result"] + for balance in balances: + assert balance["utxo"] != utxo + + print("Invalid detach test successful") + class RegtestNodeThread(threading.Thread): def __init__(self, wsgi_server="gunicorn"): 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 f113b5df2e..c8f75ec342 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -281,7 +281,6 @@ "source": "$UTXO_MOVE_1_TX_HASH:0", "params": { "destination": "$ADDRESS_5", - "asset": "MYASSETA", }, "set_variables": { "UTXO_DETACH_1_TX_HASH": "$TX_HASH", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 2d56793cb0..ec1d17f5f0 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -329,6 +329,8 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): ) time.sleep(1) else: + regtest_node_thread.node.test_invalid_detach() + if os.path.exists(os.path.join(CURR_DIR, "apidoc/apicache.json")): os.unlink(os.path.join(CURR_DIR, "apidoc/apicache.json")) print("Generating API documentation...") @@ -339,6 +341,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): _err_to_out=True, _cwd=CURR_DIR, ) + print("Running Dredd...") sh.dredd(_cwd=BASE_DIR, _out=sys.stdout, _err_to_out=True) print("Tesing reparse...") From b3da652a61dcd6f8ee7b74007662a5a3d11a2fad Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 08:24:53 +0000 Subject: [PATCH 010/138] fix and tweaks --- .../counterpartycore/lib/gettxinfo.py | 2 ++ .../counterpartycore/lib/messages/utxo.py | 17 +++++++++++------ .../counterpartycore/lib/transaction.py | 2 ++ 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py index e7983f58ae..1cd7944198 100644 --- a/counterparty-core/counterpartycore/lib/gettxinfo.py +++ b/counterparty-core/counterpartycore/lib/gettxinfo.py @@ -589,6 +589,8 @@ def get_utxos_info(db, decoded_tx): def get_tx_info(db, decoded_tx, block_index): """Get the transaction info. Returns normalized None data for DecodeError and BTCOnlyError.""" if util.enabled("utxo_support", block_index=block_index): + # utxos_info is a space-separated list of UTXOs, last element is the destination, + # the rest are the inputs with a balance utxos_info = get_utxos_info(db, decoded_tx) # update utxo balances cache before parsing the transaction # to catch chained utxo moves diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index e917376474..190a70361a 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -90,6 +90,8 @@ def validate(db, source, destination, asset=None, quantity=None, block_index=Non if not util.enabled("spend_utxo_to_detach"): problems += validate_balance(db, source, source_is_address, asset, quantity, fee) elif source_is_address: + # after "spend_utxo_to_detach" protocol change all assets are detached from the UTXO + # so we need to check the balance only for attach problems += validate_asset_and_quantity(asset, quantity) if len(problems) == 0: problems += validate_balance(db, source, source_is_address, asset, quantity, fee) @@ -202,7 +204,7 @@ def pay_fee(db, tx, action, source, recipient): return fee -def proceed_send(db, tx, action, source, recipient, asset, quantity, event, fee_paid): +def move_asset(db, tx, action, source, recipient, asset, quantity, event, fee_paid): # debit asset from source and credit to recipient ledger.debit(db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"]) ledger.credit( @@ -214,7 +216,6 @@ def proceed_send(db, tx, action, source, recipient, asset, quantity, event, fee_ action=action, event=tx["tx_hash"], ) - # we store parameters only if the transaction is valid bindings = { "tx_index": tx["tx_index"], "tx_hash": tx["tx_hash"], @@ -244,8 +245,12 @@ def parse(db, tx, message): # detach if source is a UTXO if util.is_utxo_format(source): if util.enabled("spend_utxo_to_detach"): + # we check if the source UTXO is in the transaction inputs + # if yes, utxos_info field must contain the source UTXO + # (utxos_info is a space-separated list of UTXOs, last element is the destination, + # the rest are the inputs with a balance) utxos = tx["utxos_info"].split(" ") - if len(utxos) < 2 and source not in utxos[:-1]: + if len(utxos) < 2 or source not in utxos[:-1]: problems.append("UTXO not in the transaction inputs") else: source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) @@ -272,7 +277,7 @@ def parse(db, tx, message): gas.increment_counter(db, ID, tx["block_index"]) if action == "attach to utxo" or not util.enabled("spend_utxo_to_detach"): - proceed_send(db, tx, action, source, recipient, asset, quantity, event, fee_paid) + move_asset(db, tx, action, source, recipient, asset, quantity, event, fee_paid) if action == "detach from utxo" and util.enabled("spend_utxo_to_detach"): # we detach all the assets from the source UTXO @@ -280,7 +285,7 @@ def parse(db, tx, message): for balance in balances: if balance["quantity"] == 0: continue - proceed_send( + move_asset( db, tx, action, @@ -292,7 +297,7 @@ def parse(db, tx, message): fee_paid, ) else: - # store the invalid transaction + # store the invalid transaction without potentially invalid parameters bindings = { "tx_index": tx["tx_index"], "tx_hash": tx["tx_hash"], diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index d6ae3e9a4e..8e53f858bc 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -200,6 +200,8 @@ def construct( # Extract tx_info (address_or_utxo, destinations, data) = tx_info + # if source is an utxo we force the construction function to use it in inputs + # by passing it as force_utxo force_utxo = None if util.is_utxo_format(address_or_utxo): source, _value = backend.bitcoind.get_utxo_address_and_value(address_or_utxo) From b9b702782e333de96a4ccc43493c9d2f1efd9405 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 09:19:46 +0000 Subject: [PATCH 011/138] Force asset and quantity to None when composing Detach --- .../counterpartycore/lib/messages/utxo.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 190a70361a..d39817adf6 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -118,9 +118,19 @@ def compose(db, source, destination, asset, quantity): and not backend.bitcoind.is_valid_utxo(destination) ): raise exceptions.ComposeError(["destination is not a UTXO"]) + if util.is_utxo_format(source) and not backend.bitcoind.is_valid_utxo(source): raise exceptions.ComposeError(["source is not a UTXO"]) + message_asset = asset or "" + message_quantity = quantity or "" + if util.is_utxo_format(source): + if not backend.bitcoind.is_valid_utxo(source): + raise exceptions.ComposeError(["source is not a UTXO"]) + # if detach from UTXO, we ignore asset and quantity + message_asset = "" + message_quantity = "" + # create message data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) # to optimize the data size (avoiding fixed sizes per parameter) we use a simple @@ -131,8 +141,8 @@ def compose(db, source, destination, asset, quantity): for value in [ source, destination or "", - asset or "", - quantity or "", + message_asset, + message_quantity, ] ] ).encode("utf-8") @@ -269,6 +279,8 @@ def parse(db, tx, message): if problems: status = "invalid: " + "; ".join(problems) + logger.warning(f"UTXO: {source} -> {recipient} ({tx['tx_hash']}) [status: {status}]") + if status == "valid": fee_paid = pay_fee(db, tx, action, source, recipient) From 7799368bbf1b6da629f7016eb761da7b4342941b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 09:30:08 +0000 Subject: [PATCH 012/138] fix invalid detach regtest test --- apiary.apib | 3718 ++++++++--------- .../counterpartycore/lib/messages/utxo.py | 2 - .../test/regtest/apidoc/apicache.json | 3424 +++++++-------- .../test/regtest/regtestnode.py | 41 +- .../test/regtest/testscenarios.py | 5 +- 5 files changed, 3606 insertions(+), 3584 deletions(-) diff --git a/apiary.apib b/apiary.apib index c02db43a19..03c64a2784 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-29 17:54:30.405437. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-30 09:27:08.003111. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", "block_index": 209, - "block_time": 1730224454, + "block_time": 1730280411, "difficulty": 545259519, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf" + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c" }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 660, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", "block_index": 209, - "block_time": 1730224454, + "block_time": 1730280411, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "fee": 0, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 661, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "out_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 668, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 667, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 209, - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "block_time": 1730224454, + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 672, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 676, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "quantity": 1000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "tx_index": 70, - "block_time": 1730224421, + "block_time": 1730280368, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "block_time": 1730224421 + "block_time": 1730280368 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "status": "valid", - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "tx_index": 74, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_time": 1730224436 + "block_time": 1730280393 } ], "next_cursor": 656, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "status": "valid", - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "tx_index": 61, - "block_time": 1730224384, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "block_time": 1730224384 + "block_time": 1730280333 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "tx_index": 42, - "block_time": 1730224202, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "block_time": 1730224202 + "block_time": 1730280161 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730224416 + "block_time": 1730280364 }, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_time": 1730224416 + "block_time": 1730280364 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", "transfer": false, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "tx_index": 69, - "block_time": 1730224416, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_time": 1730224416 + "block_time": 1730280364 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "tx_index": 62, - "block_time": 1730224388, + "block_time": 1730280337, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "block_index": 196, - "block_time": 1730224388 + "block_time": 1730280337 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "open", - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 } ], "next_cursor": 536, @@ -759,20 +759,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": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "tx0_index": 52, - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx1_index": 55, - "block_time": 1730224341, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,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": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "block_index": 189, - "block_time": 1730224341 + "block_time": 1730280290 } ], "next_cursor": 482, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49" + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 } ], "next_cursor": 528, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231" + "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932" }, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_time": 1730224338 + "block_time": 1730280286 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "status": "completed" }, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_time": 1730224338 + "block_time": 1730280286 } ], "next_cursor": 461, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "status": "valid", - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "tx_index": 54, - "block_time": 1730224338, + "block_time": 1730280286, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_time": 1730224338 + "block_time": 1730280286 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "tx_index": 59, - "block_time": 1730224367 + "block_time": 1730280315 }, - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "block_index": 193, - "block_time": 1730224367 + "block_time": 1730280315 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "block_time": 1730224440 + "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_time": 1730280398 }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 } ], "next_cursor": 469, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "block_time": 1730224264 + "order_match_id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_time": 1730280219 }, "tx_hash": null, "block_index": 185, - "block_time": 1730224264 + "block_time": 1730280219 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "satoshirate": 1, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": 0, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "tx_index": 63, - "block_time": 1730224391, + "block_time": 1730280341, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 197, - "block_time": 1730224391 + "block_time": 1730280341 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", + "destination": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", "dispense_quantity": 10, - "dispenser_tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", + "dispenser_tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", "tx_index": 31, - "block_time": 1730224160, + "block_time": 1730280100, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "09e5dd8cd8745882cb7be7be0a0f6802924899faf76fc7a665e87f622ec474fb", + "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", "block_index": 144, - "block_time": 1730224160 + "block_time": 1730280100 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "tx_index": 25, "value": 66600.0, - "block_time": 1730224120, + "block_time": 1730280065, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "block_time": 1730224120 + "block_time": 1730280065 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "start_block": 0, "status": "open", - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, - "block_time": 1730224216, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "block_index": 156, - "block_time": 1730224216 + "block_time": 1730280175 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb" + "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6" }, "tx_hash": null, "block_index": 130, - "block_time": 1730224079 + "block_time": 1730280035 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "paid_quantity": 34, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "status": "valid", - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, - "block_time": 1730224112, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "block_index": 136, - "block_time": 1730224112 + "block_time": 1730280059 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f:0", + "destination": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "status": "valid", - "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", "tx_index": 66, - "block_time": 1730224404, + "block_time": 1730280351, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3eca9357255d4c8bd894a722faef396df4b8dabc124542147e4ec7f7d63e454f", + "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", "block_index": 200, - "block_time": 1730224404 + "block_time": 1730280351 } ], "next_cursor": 327, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", + "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", + "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", "status": "valid", - "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", + "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", "tx_index": 38, - "block_time": 1730224186, + "block_time": 1730280146, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", + "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", "block_index": 151, - "block_time": 1730224186 + "block_time": 1730280146 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "msg_index": 1, "quantity": 2000000000, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", "status": "valid", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 674, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", + "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", "status": "valid", - "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", + "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", "tx_index": 9, - "block_time": 1730224044, + "block_time": 1730279999, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", + "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", "block_index": 121, - "block_time": 1730224044 + "block_time": 1730279999 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "difficulty": 545259519, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "previous_block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "previous_block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", "difficulty": 545259519, - "ledger_hash": "0792d90a21f5645caa8772b4b507b158b306fb46a862a54384c0adf8b8b6469f", - "txlist_hash": "8e12af515b5315398d6b743f4b125c273ef98145c558fb473f2871c270c60d33", - "messages_hash": "704087710ecf5e3b9ce688524447940e5a79304b285cd1522f6097a4ae46761b", + "ledger_hash": "398cb86a881f4ea0e7871fdf4c94a96e3be7a7f5420313f87841c14315220d3a", + "txlist_hash": "34617f8ee34732637535f74a33e63f232639c3a3e663859ca7682d11ad8b68c2", + "messages_hash": "58e982f6ded7ac01ff79d28d1b86919ce99bf789d61d10d1712a7acf2c018c65", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", - "block_time": 1730224436, - "previous_block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", + "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_time": 1730280393, + "previous_block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", "difficulty": 545259519, - "ledger_hash": "45f8ab7b6b4a0c58595977c07abd6a2ca1f13a1172a1943af27948650b65fd43", - "txlist_hash": "427c35334708f848c7540a8297d651b8ac4aaf22d0c984de30e89302631b6d1f", - "messages_hash": "6f8bf07a81d451d9d3f133f1ba5a943179ed72c6eb5eb7aec4db29eab2da3ee0", + "ledger_hash": "92aa8b958b734e54e961d146c964e3adc252563792a694b97f4df566ea461651", + "txlist_hash": "6a718968ba46e4dfd313aa97c3ac38640564a337bb358ed3b299d3ba4ddefa3a", + "messages_hash": "3856afbd9d4ecf201c0d5c01edc2d5c1c26f2b02c0e91c74f3cfeaf28d5a0455", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", - "block_time": 1730224431, - "previous_block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", + "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", + "block_time": 1730280389, + "previous_block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", "difficulty": 545259519, - "ledger_hash": "1f6db62341367eefd61c7c3f23a3cb583e5d6d5150a187c4f34594aba8bb7d0f", - "txlist_hash": "15c1231bfc3d241ae6cb65ce186ac9a2d907d2857d692fb6c8ff8c57ec6b8bd2", - "messages_hash": "93c7c553f24148a55ba14c1136578c61d5de14f120bafaaaaaddaa670a24a336", + "ledger_hash": "bde6c897559e7916dc9f5a969bd236d5487dd06516c905f841f4261812753795", + "txlist_hash": "16cd141f722190bc24d8fe5bb09d0bf87fe6540ee794064e20ade5f3ad1343ce", + "messages_hash": "d8f5494718d6ef4a69205483e0a2aafcba5416c008f2a9694589a9773c0bdea7", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", - "block_time": 1730224428, - "previous_block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", + "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_time": 1730280385, + "previous_block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", "difficulty": 545259519, - "ledger_hash": "ac6409f2a71e64d0809cc15eb330ab5048a661705db26a280050fcccc851e4da", - "txlist_hash": "1562e09dbe82ee6fa44e08c339dd06205566f96be6e2bcd373df1f54cc25f7b7", - "messages_hash": "7ec3388e29ea5c0add62b35615350e54ebef8fb330a849b4f513e807db9d214b", + "ledger_hash": "195eb749c22a8b4c5fe1db2ba54a03e612ff7c6cec598385b12f963900bd9b9b", + "txlist_hash": "4d24a0dbee08f4a6bacbb419f71199e7bda2611ae3d0f7b028df8aacd021c48a", + "messages_hash": "9308d5cc416d2a9008c6c74477509ba388757995ff1067fe41b83d9d0f137447", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "difficulty": 545259519, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74` (str, required) - The index of the block to return + + block_hash: `54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "previous_block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "difficulty": 545259519, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 680, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 679, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" } ], "next_cursor": 677, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 676, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 673, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 209, - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "object_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, "confirmed": true, - "block_time": 1730224440 + "block_time": 1730280398 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "status": "valid", "confirmed": true, - "block_time": 1730224367 + "block_time": 1730280315 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "block_index": 196, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730224388, + "block_time": 1730280337, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730224216, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "block_hash": "694af526f14e5ce4a91da6215b5e39773517132196dd9cd2ef01cb3b4a2c85a1", - "block_time": 1730224120, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "793beb16e9d9bef5f677245366eb7cfc30c52ae8b8f1abe53267423c236ef4ac", + "block_time": 1730280065, + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334:1", + "utxos_info": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_hash": "4c73b90c14c7e493f302d2ce47b788c5d5d0095053bc4541f5db5f3fd5c3711f", - "block_time": 1730224338, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "2cf98815914378064e9a88a31ea1528dd2bcf0e9776ecb58422c21e45f1fe33d", + "block_time": 1730280286, + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "btc_amount": 2000, "fee": 10000, - "data": "0bc63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "data": "0b675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "supported": true, - "utxos_info": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac:0", + "utxos_info": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "block_index": 193, - "block_hash": "7ae7e088988758ef4fd6a12afeb6b432b388b6c7910c39f1f329ee5799dc8382", - "block_time": 1730224367, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "2e867bf10bc3b17a7454601be722e086ba4fda8947896e09fcc10d6708c5602d", + "block_time": 1730280315, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "data": "46ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "supported": true, - "utxos_info": "bdf19a35238eaf9a2e4e24e944a27d47ece4f5e13240f004d4839d86fd46bfb9:1", + "utxos_info": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "block_index": 196, - "block_hash": "6cf8525389971b6b83a249b31950186b459a205eb500fbb83fed9ab7f35bac9a", - "block_time": 1730224388, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "block_hash": "25649d2f2e2470e2a3a64f9928b579ccda7c33694c42402ba21dc7ce6b06108a", + "block_time": 1730280337, + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e550e96239723e171e8bf9d230c2d3139afed363ab2cde9dc09eaa494e7f4fbd:1", + "utxos_info": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 197, - "block_hash": "34c65eabd90ca6bb6cc2f016f755c5d1c2fccea0dacf3915445bcb60b62882ac", - "block_time": 1730224391, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "330bf00b99d5896f24ce1a45d3c8ba9d1afd3eaabf45cde2560e2002eb721ded", + "block_time": 1730280341, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78:1", + "utxos_info": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "block_hash": "4541b57fbe95f6b241f35848d54f4dc6790ae18d1a28b06ebe0efc6800d2ddbb", - "block_time": 1730224202, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "73eb94bba78e66df0f5e12edbacbc96bd118df9adce773db5eda3853edfb5b7f", + "block_time": 1730280161, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9:1", + "utxos_info": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_hash": "08b7f2bc4f5c947cc2bf749402264c67a412cf7a4d0b46a640e162db8f091bbe", - "block_time": 1730224416, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "25021659925c485e0f4209b4e9f5dda9da1a07760c22b1495abb86e5e86aebf4", + "block_time": 1730280364, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c:1", + "utxos_info": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "block_hash": "535f5b9d18e10ef11dd8517336a14f3d093237e7ca883c56c32ca6473feb7333", - "block_time": 1730224421, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "7487290ea1177c5fbb7ff3237edca224033a3d508643c4635c6c5243f8779a54", + "block_time": 1730280368, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", + "data": "02000000178d82231300000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", "supported": true, - "utxos_info": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb:1", + "utxos_info": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", - "block_time": 1730224436, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_time": 1730280393, + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac:0", + "utxos_info": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "block_hash": "07d4e27bafaf1fcc0ca8e95375d50a165d0013d4486571feb31a820a1ac386e0", - "block_time": 1730224384, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "block_hash": "05f05f3c396846ae90157d04315cc6385a9b53963da5a2f656a25abb4c9dc333", + "block_time": 1730280333, + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f017377656570206d7920617373657473", + "data": "0480468688a053fb01a934cd35ccb9e6563195a861f4017377656570206d7920617373657473", "supported": true, - "utxos_info": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207:1", + "utxos_info": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101bd2c76d2f84ef9c87644ba69c3639b2b08df08830a7a25253c8cda9c90eaec6a0000000000ffffffff020000000000000000356a332d6d02493979893c82effb12b1fcb7b01acd6f72460104a3506b906fd0246db9a1ba98d7d328944dfd9c1f4f2d506e9467ae82f0ca052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f0247304402201b4b5ecf9330d14050f58d998176ed0b66946731e834b7f680ad46233422a1790220404f68b1f974f0fb0d6499d8dec239f5838d0dc13ca4cd9102dfbe599a2e8283012102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c600000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010149c433743b70d46c295524056bc58b2bddec3f3d995738b4ae28a8e3568557380000000000ffffffff020000000000000000356a336673a8ccf2f30a21a4e2063f1e5bce6e8b7a0645c17523d3f71344921dbac365389a0ece832079efe0224d897a4ecc9bf43841f0ca052a010000001600143975935790fecfcd01603f4744e90bda2b7626c20247304402205d3647fb5df1fefe0ec34a6f0fefad338cf680f5fd1f9eacd01b87c214098c2002203f313ad1db0c5630f9543930f08735b4ea4a98017f0f026b025c8ee24e16091c01210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3301,7 +3301,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "bd2c76d2f84ef9c87644ba69c3639b2b08df08830a7a25253c8cda9c90eaec6a", + "hash": "49c433743b70d46c295524056bc58b2bddec3f3d995738b4ae28a8e356855738", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,20 +3311,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a332d6d02493979893c82effb12b1fcb7b01acd6f72460104a3506b906fd0246db9a1ba98d7d328944dfd9c1f4f2d506e9467ae82" + "script_pub_key": "6a336673a8ccf2f30a21a4e2063f1e5bce6e8b7a0645c17523d3f71344921dbac365389a0ece832079efe0224d897a4ecc9bf43841" }, { "value": 4999990000, - "script_pub_key": "0014d6c757c35a7fa6eddd04672f20c061337e98041f" + "script_pub_key": "00143975935790fecfcd01603f4744e90bda2b7626c2" } ], "vtxinwit": [ - "304402201b4b5ecf9330d14050f58d998176ed0b66946731e834b7f680ad46233422a1790220404f68b1f974f0fb0d6499d8dec239f5838d0dc13ca4cd9102dfbe599a2e828301", - "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" + "304402205d3647fb5df1fefe0ec34a6f0fefad338cf680f5fd1f9eacd01b87c214098c2002203f313ad1db0c5630f9543930f08735b4ea4a98017f0f026b025c8ee24e16091c01", + "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" ], "lock_time": 0, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", - "tx_id": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_id": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" }, "unpacked_data": { "message_type": "order", @@ -3366,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7` (str, required) - Transaction hash + + tx_hash: `dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99` (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. @@ -3377,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "bd4f7f4e49aa9ec09dde2cab63d3fe9a13d3c230d2f98b1e173e723962e950e5", + "hash": "b758f533a8ec6ff7c6e5a71b551876ae0aa2eda1bba1b631265bae2614db8b2c", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ee356a869e368891d4240c638da8ff82976f3e5f8db4c6e88e36f1a6890bb8472fc9fe2af296c4289e68d7200bf2f" + "script_pub_key": "6a2efb28a2b2620e58b05c575d2aec93535ebec5093fa20b7c33e953976ff6215d1e8ffc89ca4a335af63ea86685b1ff" }, { "value": 4949932460, - "script_pub_key": "00144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f" + "script_pub_key": "0014468688a053fb01a934cd35ccb9e6563195a861f4" } ], "vtxinwit": [ - "3044022059732e13907c083151a0046d0ae2a0d83115ec6e30264e247494b35ffcc66fda022067082b8ec9bbeef1655e5146dc7f7c2d9ca25996c24f00b2fab3265514c3c3d901", - "023033194911d3bc9532356b962b4ba5d5f55ff9afab8febbdc2d81adc21350da7" + "3044022053bc9b3f60ff03caf112c6170a61f325202d2a2d2b612fb0b93aa1ab2b08457302202058bb4fd5c98c49d7bd7dfe38b6716b78d493207854815a15fea1f55002b1cc01", + "03a887f6e8e7e77d958a74a38419c66046a0a4a78e999b1efabae186a96d83b488" ], "lock_time": 0, - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", - "tx_id": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7" + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_id": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3480,17 @@ Returns a transaction by its index. { "result": { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction + + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (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. @@ -3521,17 +3521,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "3aab398775906509542e3bd7e1e1294056ebb18fe839e458d1cede6e7dc16f74", - "block_time": 1730224454, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "destination": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1 066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3574,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 680, @@ -3588,14 +3588,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3606,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 679, @@ -3617,9 +3617,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3656,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 677, @@ -3666,14 +3666,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "msg_index": 1, "quantity": 2000000000, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", "status": "valid", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3683,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 676, @@ -3698,7 +3698,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction to return + + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -3722,12 +3722,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 680, @@ -3736,14 +3736,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3754,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 679, @@ -3765,9 +3765,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3804,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 677, @@ -3814,14 +3814,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "msg_index": 1, "quantity": 2000000000, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", "status": "valid", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3831,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 676, @@ -3846,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction to return + + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (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 @@ -3865,10 +3865,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3876,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +3889,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3900,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -3922,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction to return + + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (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 @@ -3942,27 +3942,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4021,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4040,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 676, @@ -4052,12 +4052,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4067,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 673, @@ -4079,24 +4079,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": null, @@ -4109,7 +4109,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The hash of the transaction to return + + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `682` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4131,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4150,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 676, @@ -4162,12 +4162,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4177,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 673, @@ -4189,24 +4189,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": null, @@ -4221,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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 @@ -4245,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4266,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4287,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4308,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4329,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4350,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4377,7 +4377,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - Comma separated list of addresses to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4396,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4442,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_hash": "306da7a9998d2ce3bcfc21da11297821fc0f330711d1cf6b7e6c560301228157", - "block_time": 1730224436, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_time": 1730280393, + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac:0", + "utxos_info": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4475,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "block_index": 206, - "block_hash": "1ea60027e0bdfc20bc50fe79482d91b4bf0f2cc12e76524976a660aa73e021f4", - "block_time": 1730224431, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", + "block_time": 1730280389, + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d6c757c35a7fa6eddd04672f20c061337e98041f80cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0:0", + "utxos_info": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4527,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", - "block_time": 1730224428, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_time": 1730280385, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", + "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4579,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", - "block_time": 1730224424, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", + "block_time": 1730280372, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", + "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4631,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4659,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -4695,11 +4695,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "open", - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4723,24 +4723,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 208, - "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730224440, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,37 +4750,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "block_time": 1730224440 + "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_time": 1730280398 }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730224440, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -4790,25 +4790,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "block_index": 208, - "block_time": 1730224440, + "block_time": 1730280398, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4840,9 +4840,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 } ], "next_cursor": 657, @@ -4855,7 +4855,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y,bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7,bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0` (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 @@ -4871,17 +4871,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "quantity": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, "asset_info": { "divisible": true, @@ -4892,22 +4892,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +4917,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "block_index": 209, - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +4942,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730224458.0780673, + "block_time": 1730280415.8124557, "btc_amount": 0, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "destination": "", "fee": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, - "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", + "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +4979,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -4992,7 +4992,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -5012,7 +5012,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5020,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5035,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,14 +5050,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5072,7 +5072,7 @@ Returns the balances of an address "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5080,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5097,7 +5097,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -5110,7 +5110,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5135,7 +5135,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5185,16 +5185,16 @@ Returns the credits of an address "result": [ { "block_index": 208, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,16 +5206,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -5227,16 +5227,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224431, + "block_time": 1730280389, "asset_info": { "divisible": true, "asset_longname": null, @@ -5248,20 +5248,20 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "event": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224416, + "block_time": 1730280364, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5269,16 +5269,16 @@ Returns the credits of an address }, { "block_index": 193, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "event": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224367, + "block_time": 1730280315, "asset_info": { "divisible": true, "asset_longname": null, @@ -5299,7 +5299,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5338,16 +5338,16 @@ Returns the debits of an address "result": [ { "block_index": 208, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5359,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,20 +5380,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5401,16 +5401,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "divisible": true, "asset_longname": null, @@ -5422,20 +5422,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5452,7 +5452,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address of the feed + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5487,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -5506,9 +5506,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", + "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", "block_index": 137, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5516,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224116, + "block_time": 1730280062, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5530,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -5549,14 +5549,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "4cd5874f0136b2fe2b5610f9753c0439a8c96d34915708fbaaa4f7f55611dc63", + "tx_hash": "0856525afa72ec7fd8cdef1decba37519145c2e28542c3c7433383265fcd59a5", "block_index": 112, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730224010, + "block_time": 1730279969, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5571,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -5590,10 +5590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -5614,10 +5614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5625,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5638,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5662,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5673,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "divisible": true, "asset_longname": null, @@ -5686,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5697,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5719,7 +5719,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6` (str, required) - The address to return + + address: `bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597` (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 @@ -5738,10 +5738,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "f8c44e638a7abcacdff5cf9a8cfa2f93322e0a205eec1fbd9c8ee109a588aa70", + "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", "block_index": 151, - "source": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d:0", - "destination": "bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6", + "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", + "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5749,11 +5749,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224186, + "block_time": 1730280146, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5771,7 +5771,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5791,10 +5791,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5802,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5815,10 +5815,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5826,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5839,10 +5839,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5850,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5863,10 +5863,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +5874,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5887,10 +5887,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +5898,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224421, + "block_time": 1730280368, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5920,7 +5920,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qj6zmfernpdcdzg948nlwuvy86cjcxvg7scf0c6` (str, required) - The address to return + + address: `bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +5948,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +5977,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +5988,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +5998,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6014,9 +6014,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6025,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6035,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224395, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6060,7 +6060,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -6073,9 +6073,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6084,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6094,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6116,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -6136,19 +6136,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6156,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6171,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224395, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6185,19 +6185,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6205,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6220,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6234,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6254,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6269,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6291,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address to return + + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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 @@ -6311,19 +6311,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6331,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6346,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224395, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6360,19 +6360,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6380,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6395,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6409,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6429,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6444,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6466,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -6487,19 +6487,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6507,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6522,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6536,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6556,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6571,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6593,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address to return + + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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` @@ -6614,19 +6614,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6634,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6649,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6663,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6683,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6698,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6720,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y` (str, required) - The address to return + + address: `bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7` (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 @@ -6739,16 +6739,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6762,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6794,14 +6794,14 @@ Returns the issuances of an address "result": [ { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6816,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", + "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6844,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224248, + "block_time": 1730280196, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", + "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +6872,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730224245, + "block_time": 1730280192, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", + "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +6900,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224241, + "block_time": 1730280188, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "e1416fb7b09cf5ac75952c991615fb3e2231b1f44d3f5151df4b7b4b750d9c93", + "tx_hash": "177706095b5b147eb09be862d19f1a5fd8414af9a801c547465dd42dc170efbc", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +6928,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224227, + "block_time": 1730280185, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +6943,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The issuer or owner to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,8 +6966,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -6975,16 +6975,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -6992,16 +6992,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7009,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7026,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730224109, - "last_issuance_block_time": 1730224112, + "first_issuance_block_time": 1730280054, + "last_issuance_block_time": 1730280059, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7043,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730224084, - "last_issuance_block_time": 1730224104, + "first_issuance_block_time": 1730280038, + "last_issuance_block_time": 1730280050, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7058,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The issuer to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -7081,8 +7081,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -7090,16 +7090,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -7107,16 +7107,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7124,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7141,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730224109, - "last_issuance_block_time": 1730224112, + "first_issuance_block_time": 1730280054, + "last_issuance_block_time": 1730280059, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7158,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730224084, - "last_issuance_block_time": 1730224104, + "first_issuance_block_time": 1730280038, + "last_issuance_block_time": 1730280050, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7173,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The owner to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,8 +7196,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -7205,16 +7205,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -7222,16 +7222,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7239,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7256,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730224109, - "last_issuance_block_time": 1730224112, + "first_issuance_block_time": 1730280054, + "last_issuance_block_time": 1730280059, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7273,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730224084, - "last_issuance_block_time": 1730224104, + "first_issuance_block_time": 1730280038, + "last_issuance_block_time": 1730280050, "supply_normalized": "0.00000019" } ], @@ -7288,7 +7288,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7307,17 +7307,17 @@ Returns the transactions of an address "result": [ { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "44f99c8cb84717ce95c5388bcd095ad8242a6c66ab1796064622147a9758cbdf", - "block_time": 1730224440, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7353,17 +7353,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "block_hash": "38699ada829efad14c2f5dbe5a18fd64ed451b9fc019232cc6a2af8092711a4e", - "block_time": 1730224428, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_time": 1730280385, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21:0", + "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7371,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7386,7 +7386,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7405,17 +7405,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "block_hash": "4a39653a050aa544ddc4f64dadce66510d92230abba20e27ff8c6da0f2b64501", - "block_time": 1730224424, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", + "block_time": 1730280372, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1b2178052ed879c9e588fa4a734c0e832b4999780cf1e8b3a4719633f5f3dbff112159bb24914ca57804bb227092e5aeec5c8d2fd44586a1ed3a1e0027f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f:0", + "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7423,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7438,7 +7438,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7457,17 +7457,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "block_hash": "535f5b9d18e10ef11dd8517336a14f3d093237e7ca883c56c32ca6473feb7333", - "block_time": 1730224421, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "7487290ea1177c5fbb7ff3237edca224033a3d508643c4635c6c5243f8779a54", + "block_time": 1730280368, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", + "data": "02000000178d82231300000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", "supported": true, - "utxos_info": "7665da90778bc29fb8a6816fdc3d072dfcdf86432bc5bfadd50b1f18cde1b9bb:1", + "utxos_info": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7475,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7491,17 +7491,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_hash": "08b7f2bc4f5c947cc2bf749402264c67a412cf7a4d0b46a640e162db8f091bbe", - "block_time": 1730224416, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "block_hash": "25021659925c485e0f4209b4e9f5dda9da1a07760c22b1495abb86e5e86aebf4", + "block_time": 1730280364, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c:1", + "utxos_info": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7535,7 +7535,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -7554,20 +7554,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7592,7 +7592,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7621,9 +7621,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7638,7 +7638,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7664,9 +7664,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7681,7 +7681,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7707,9 +7707,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7724,7 +7724,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730224367, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7750,9 +7750,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", "block_index": 194, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7767,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224380, + "block_time": 1730280330, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7793,9 @@ Returns the orders of an address }, { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7810,7 +7810,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,7 +7845,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The source of the fairminter to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +7870,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +7898,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730224216, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +7907,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +7935,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730224109, + "block_time": 1730280054, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +7947,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +7975,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730224084, + "block_time": 1730280038, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +7987,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8015,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730224079, + "block_time": 1730280035, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8027,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8055,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730280017, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8077,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address of the mints to return + + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8095,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8119,22 +8119,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", + "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224104, + "block_time": 1730280050, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8143,22 +8143,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", + "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224091, + "block_time": 1730280046, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8167,22 +8167,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", + "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224087, + "block_time": 1730280043, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8191,22 +8191,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "b83c248f846aa160084220151e9b4524f7c1379b7d4e8b8c16c943d796a19d67", + "tx_hash": "1fff08d43ae2563f0e1c75a68b74a5210aecef167decd19bfea1c7866084655f", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224068, + "block_time": 1730280023, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8215,22 +8215,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8249,7 +8249,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address of the mints to return + + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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` @@ -8268,22 +8268,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8304,7 +8304,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0` (str, required) - The utxo to return + + utxo: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8324,8 +8324,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset_info": { "divisible": true, "asset_longname": null, @@ -8338,12 +8338,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8383,8 +8383,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will make the bet + + feed_address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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) @@ -8456,7 +8456,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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) @@ -8516,7 +8516,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8528,7 +8528,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101e586839271acf088a5bc45426c667960b17f795781a34efac10c8cdd3c932e6800000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a296e5eb72aa4f3483585c1794d457f83278c871f7759bca44a0a776bf4e88b7fc141302844f4fbddd52e83ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "020000000001018ea985dd665e87b13c4436205b98052023cd45f94a3393c2f8dfd4663b256e47000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29499d1cfaa04dc403fe46886db04f2aad65f8f395262f38d16caba5b8fc9c3d0ec036826aead362dd6783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8550,8 +8550,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending the payment - + order_match_id: `c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a` (str, required) - The ID of the order match to pay for + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending the payment + + order_match_id: `675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4` (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) @@ -8607,23 +8607,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" }, "name": "btcpay", - "data": "434e5452505254590bc63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "data": "434e5452505254590b675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "0200000000010178f15e9f63ff6bcc8ac30a2c6b09d96a6b3b7d993982a0f49c55e00ecdf6150200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03b80b000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f00000000000000004b6a498d2276d6569f25c712bf7165159972874854d60a81fad70e89222fcb078302c215da3c3705bb1d36d6415b9c6a6d6d4f0dd4963f51154c9e07464a160275b69a5b23c8d45740509ea7a99f052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "020000000001015bd347105bf0a15962aeecccea83557e3f48ad1d23edc7632fbb06991b8a7143000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03b80b0000000000001600143975935790fecfcd01603f4744e90bda2b7626c200000000000000004b6a499a83a2c0a5a541c9d1af973419b95110ed21a63e53b0bec37da11e3680b2da8d6487d7dc2d33462d5f3a65240d8f75e966e90649e753599910bca7acab9489a9f988cbcd1680a14291a99f052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "status": "valid" } } @@ -8636,7 +8636,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address with the BTC to burn + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -8695,7 +8695,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 1000, "overburn": false }, @@ -8705,7 +8705,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101efa5eca541f477e33895cebaa431bfb27c3d90869183f7113852e6aa623d408500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000" + "rawtransaction": "02000000000101062e3c2627d5cb01bc729c84d920a8f14b77d0484b47374d146934d8315b5f2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000" } } ``` @@ -8715,8 +8715,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706` (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) @@ -8772,21 +8772,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0" + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" }, "name": "cancel", - "data": "434e54525052545946dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "data": "434e545250525459464dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101c14f5e2d3e7262b6b5a95a2a7f31f3388e7362b01c778128bfec90b5e69aaca200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff0200000000000000002b6a29221177878a37cfdc2a9dc1cf3b169968625dc6c201f2e765d12dc43ae7e11aefbe68a9ade68eef188383ba052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "0200000000010166a15b4778eea05fe77880fc2037e528a1594163cb022af2ea04210f2f2ce354000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29466fa949551fba1a1fae86fae1c5ae551723eedbce9cb4eaf0d0ac6d8c35440a1803a6388e107ea4c783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "status": "valid" } } @@ -8799,7 +8799,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -8858,7 +8858,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8877,7 +8877,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "02000000000101d8a5327a9377d916c78057cf799cc882b1decdcd9984057dc5b76da1a9ae8af900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000226a208cde9c86347dc68962c518cdc5a774d3b83fb4adbe4fd10c4bada882c876773593bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "0200000000010125f27aa2bcb4c0e084d7ce0b2690e48bddbdac455834c039e1f39cebd4074e6e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000226a20bf4ac73f58f0f8e0e211c00b6f1c345b97012a9b450565cf1eee5db8d815c00693bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8897,7 +8897,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: `bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5` (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) @@ -8962,7 +8962,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8986,7 +8986,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949920236, "btc_fee": 14264, - "rawtransaction": "020000000001017fa8470a58592d54bf64cbade39e74b4c12b72a3cb5da0bc70f49a44a01472010100000016001405957a5ce96b7e12931440ef2986e21aeb3328c4ffffffff0200000000000000002c6a2a40940c2f2fd165343737aefeaaac21c635b3806c86fe5543bbfa3c6f67f9913ae41c31eda9ed56994624ecc909270100000016001405957a5ce96b7e12931440ef2986e21aeb3328c402000000000000", + "rawtransaction": "02000000000101832fab1a682534d9e152054ae0db94f064f2f2f3dffa876027f862e5d5e7f0a501000000160014183cd9edc67caf2c978732ddd9d8044458012d46ffffffff0200000000000000002c6a2a50447de86cb6d52bd5d475ef780080307f1a241217233a8fbcb5d5fc0f8d56d6a8b1be215ea5639c5fe7ecc9092701000000160014183cd9edc67caf2c978732ddd9d8044458012d4602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9012,7 +9012,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -9071,14 +9071,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9097,7 +9097,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "0200000000010153c96371617fdcc0f1c77cbc5519deb38c1f8e124efcce7d846b4d80e9225c7200000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21e9777b55809c36e116fea13e9b1364aa060ca08b64f0d5be09a238293349ba81e658bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "02000000000101f094b788f54160dc223c3caead4174a4ddf7ba3d2e37ae0e567da54e1360b86e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a2116d3a7c348c6a57e7c3800963c37a4db89be15c9006832eb3ad22807454f16727d58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9118,10 +9118,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -9186,10 +9186,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "transfer_destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "lock": false, "reset": false, @@ -9202,7 +9202,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "0200000000010103e62ad510c2fa899a321523a44099af39159c86bec9a212c7375ff34917ce7f00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff032202000000000000160014d6c757c35a7fa6eddd04672f20c061337e98041f0000000000000000236a21f2f18eb3506274cb6cef7cc03da89aaec9619d979fc147968e0133eca84228cf686bb2052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "020000000001017bd5a6e6cedf4a8de8bec9ab1504faa3ddc295ddab3d08ddbee096e9977da0d2000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0322020000000000001600143975935790fecfcd01603f4744e90bda2b7626c20000000000000000236a21f35c4eecaa0c728ee0e113816cadfc984309c9f871bf7b056fe80dc6b6241a51a76bb2052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9231,9 +9231,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m,bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9298,16 +9298,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", 1 ], [ "MPMASSET", - "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", 2 ] ], @@ -9315,26 +9315,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d6c757c35a7fa6eddd04672f20c061337e98041f80d1b2178052ed879c9e588fa4a734c0e832b4999740000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002803975935790fecfcd01603f4744e90bda2b7626c2802941f47986c7001b342b5540421701d38d4dbbee40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104d255c44864bd2a29b61b064a381c410edaba508fd3e9916d1e624c35aafd519600000000160014d6c757c35a7fa6eddd04672f20c061337e98041ffffffffff0be0186edc68abc84d591355157c50ca5efa06624373516cee77dd49342ef8900000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff901da048f9114616e2695e17528fb029f6d9e441b90256aa280300c73674806500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff93a509ff292e9db67f1ec2be58b3c59979cd7827530ab1e9344128a14f342db100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff03e803000000000000695121030e74eccc3d295073a5d70fcd740640a7add8223fe44809e1b86ee396b5cc0abc2102f3177213b02533994b9878686221fc0fb37915ed6719164b430a3ff47db80b722102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121021174eccc3d295073a5040fcff4d087f06ea65d9909950d86974a23f786b292fb2103f708f3c20232b3cba61fe4f63aae58a887b9fddfd380810b430a3a171d30cff52102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aebcf216a804000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000000000000", + "rawtransaction": "02000000000104f0701669d42c755e18b30aa1dd3da3fe92a38ca7dd0d921cddab03d36743d05e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffbf836b9501e87f3e7de2ab4e2e5657e0d65537a9d4d01d8f8e115047ab0c7a75000000001600143975935790fecfcd01603f4744e90bda2b7626c2fffffffff7a3a10317376723fffa0d5c52f867ece1964558f96819d959f75fdcb8d4182c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffa3d8b4a0925132022ccf1717242288d1bb478945da4696f3797e633cf0f76b1c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03e80300000000000069512102bab3653a92081a36c60f82b3d88606cd3c1a12aa8dc64b90c9db2a024ec9c30321033dbdcfbfa03208b22a32694c4d0a7ae43e80a77e2cd7c124c3c99af0825212d6210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee80300000000000069512102a5b3653a92081a36c6dc82b158bf735e6baeec6540c72baf8e9bc30994e2b5f321031b7f4e96e1c67134ed327278665f3aa6298174f3616c2f64c3c99f13e2dad6f8210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aebcf216a8040000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9350,7 +9350,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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 @@ -9412,7 +9412,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9429,7 +9429,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9443,7 +9443,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001015eebd64f3c1d80c089148d03f5140d080e0fcb25e29c6186a9dec1b59208eb8700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000356a33df068693567c0de1989a60f3dd38d1e685e3b4f50eccde713e2efb0569f4f433794da8f59454cf2f67065486881a147ca8f92238b8052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "020000000001016b4f8d5d5e4706af3ec137c9e4b56060b806a1e9fd868cc94ad78edd5fbe5b2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000356a33c2f3bb08424d829e812dd640c3c5cceb5d42be3713369f0ca336bd493139dff166992ceb320ff50d7bf07f6328c9d9421162fd38b8052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9469,8 +9469,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address that will be receiving the asset + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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 @@ -9534,8 +9534,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9551,19 +9551,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d1b2178052ed879c9e588fa4a734c0e832b49997", + "data": "434e54525052545902000000000000000100000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001017153cbfa8dd7704b50d93a6a0e2c66b7ca3bb15bbcb67a6dd32c6b0f4717908d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000306a2ebac97581eaff0fc6645bb409e84fd3bb8dedf00ea7543b6cbcd93398ebb4a2c09493eef630d96056912dd6002e465db9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "020000000001016c9baf15b5cff8a8f53a884f37ee35dabf9df9d9368a33e5d3976cab01807e2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000306a2e2eaadaac60d765f50622e20b4dc164528d6fcdad61f2d66c697bc0c8ee20beeb4e7708a580014ca437a1efa949f85db9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "quantity_normalized": "0.00001000" } @@ -9577,8 +9577,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be sending - + destination: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending + + destination: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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 @@ -9636,23 +9636,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d1b2178052ed879c9e588fa4a734c0e832b4999707ffff", + "data": "434e54525052545904802941f47986c7001b342b5540421701d38d4dbbee07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101f8b191474a4b30e6aa65214fe9bf4f8734b7716a08e9469982a51d09f0dd164600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000236a21125dc85877e3a42cc2ad331181b95910d461d4e1066fdf3769c0c3674872240c8458bc052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "02000000000101789ef5f7018605cde028bd7405f8294af3f8c20e2715747000e824d290d3b264000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a21bc6362a2a9ffd251e048f455579481ba9346520cca4278d5b4a07ceb7b4a36e75c58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "flags": 7, "memo": "ffff" } @@ -9666,8 +9666,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: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0` (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` @@ -9724,8 +9724,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "quantity": 1000 }, "name": "dispense", @@ -9734,7 +9734,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101acb6e463fde3ee9c1f18921748d98f000f0700adde56b9c31fd4cf7b04ad168603000000160014d1b2178052ed879c9e588fa4a734c0e832b49997ffffffff03e8030000000000001600144bb227092e5aeec5c8d2fd44586a1ed3a1e0027f00000000000000000c6a0a6a7ddc1e04761ad6d06d8b25082701000000160014d1b2178052ed879c9e588fa4a734c0e832b4999702000000000000", + "rawtransaction": "0200000000010146ed71733d9b80c1f3fa2538368424a0559d6cd86588c23bc446fb4d04d39a88030000001600142941f47986c7001b342b5540421701d38d4dbbeeffffffff03e803000000000000160014468688a053fb01a934cd35ccb9e6563195a861f400000000000000000c6a0a0282b0c8aa754d27051e8b250827010000001600142941f47986c7001b342b5540421701d38d4dbbee02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9751,7 +9751,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be issuing the asset + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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: `` @@ -9840,7 +9840,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9871,7 +9871,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "0200000000010136948b5a9d65ed9929b6ea63e739864d23ac800c09d0163daae4ea85736dc55c00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000316a2f644fc2b52998b0b3280ebed21d508a3758967d7818a80ba5ab14b21b8951729683c0754d8dabe39b808b2ee9b6922823b9052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "02000000000101cd4e0b1f6e52d9fd4e3eb1d9b699a64aad4bd893d39bac63df76fc7f184e388a000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000316a2f14378f53fb75641f8349bd2f53260af876d466ecc8a1411235a28b5c647147240ee532761c236a3e5c06ad5f8a361f23b9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9910,7 +9910,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address that will be minting the asset + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -9969,13 +9969,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9987,7 +9987,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101572f35b6b166c5425dc6de58c5d9334db3c4b75d300950b88c18d2c868b7c5eb00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff020000000000000000166a1481ab1bd63419abc843e2cc17fdafe0becfe9066e54bf052a01000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000000000000", + "rawtransaction": "02000000000101004e4c29ecfc190dac8de5b0ef636ca860413ae300fa0d84e5852e138da8511f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000166a147376753a3eb63938623d69de6fe5950aca48bca054bf052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10006,10 +10006,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: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address from which the assets are attached + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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: `dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1` (str, optional) - The utxo to attach the assets to + + destination: `4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10066,8 +10066,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0:1", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10080,12 +10080,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c646264363731303937623931373337306634316336623230333961386433633336363765313339663832666462326264633137356632343130326561656561303a317c5843507c31303030", + "data": "434e5452505254596462637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c346466663365396366356133616138373732376536646135623036653436323730343533306163656564363161336631303563633836643934353139653730363a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "020000000001060642f53336548be530475f11b72468ad9318ce9bb069935b5b980913232a92a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffffc7dee181c1a4d7f0f75483cfca3a6b56b8c4ec75e14534686bf7fe7ab65bc77100000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff45bb628e029fe2993b0541626c175452080bffd42a7835d5c218b16dc686874d00000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff7ae765c41c44282c47de1a66132a5fb67d53680569c1e196e2efc1b6e13ea63500000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff1e131c702f91f82f1afb27182d3c50c33fb506d75a1eb548ba70ebaff3ff00a600000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff5d9f57c43e2b3a5c3f8c5a9d4220c49aa51b66e8e00b76498c84ff58639a14e700000000160014d6c757c35a7fa6eddd04672f20c061337e98041fffffffff04e803000000000000695121035b6bbc45b7997ff81bf4cf45b390611ffed0c88a766da83d730e32a7923b16d2210291ac0895172c73859ceb5745c9a7d4f3fb629ad4abdb19a4fb01996517c9eca12102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee803000000000000695121035b6bbc45b7997ff81ba99a44f8d5675dff8ddc8a777da86971096fe99e6b15712103dbb94ecb4b6b65c6dfaa55119db2c0e0a5689dc7a2d441bead57cc63129dbd902102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653aee80300000000000069512103716bbc45b7997ff81bf5c847f1de611290feeac2772eae3b43395cd0ff5371062102e8da7dfd7d5c00f7ec933329afd4a482970af9a493e374d89f63fd5320f8dc832102383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c653ae406d22fc06000000160014d6c757c35a7fa6eddd04672f20c061337e98041f02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106af3564cb8ea09212f21b9f6e49375a1d3687e007d2f29b6d119f22421bea810f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffe9f7e13a93079f81d8c8ddd105685291500ec0bf21278eb00bfc292538a9ccbd000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0ceb184edf4ec4437e7ed9ed5cec4a08c8ce7ac1d8ff2b9e376dfaccd99bbe66000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff5b720696f2c9ba6c00b7abdd14aa0aa3fc22564045995c8fbe56f18aabe2786e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff8e73fc9c225a2c1501a755b536a95bd6cecb677a39a5ed1c1a78fcc39a069d5f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff9a2176c9db1ea734a9e9896f5ee17b96727fe9fec3d98036286753e45d4a2aa1000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff04e8030000000000006951210235baf338a7c97717ebd8b6d1e80e5830aa9dc68747d52c25329e988a0e7b025e210323679dc6bfbb1b670ad8c3b964b5fab49fe2f9ab215eee0957197291e1f51cf0210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee8030000000000006951210335baf338a7c97717ebdfb287fb490820aa93c7d008846f323fc6c2cf0e6f42202103646dcb84bee81e301fd6c1e868f5adbed6b7fdaf235cfb4d55192dc3e7a11c79210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee803000000000000695121031fbaf338a7c97717ebd9e382ac40583dcae7a09e0ed169665ef3a0ff380a769b2103525ffcb48add2d007eb5a48d0cc39cdfe5d1cc9f163f9875637d14f7d2902533210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53ae406d22fc060000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10102,8 +10102,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: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to detach the assets to + + utxo: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to detach the assets to + 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) @@ -10159,18 +10159,18 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": null, "quantity": null }, "name": "utxo", - "data": "434e54525052545964303636613036653433633966313261623031653434346435343432643531353361393237643339373537326239313731363830323237666530313463656164653a307c626372743171366d72343073363630376e776d6867797675686a7073727078646c667370716c68637038386d7c7c", + "data": "434e54525052545964303138373534633562376466303361643761353931383832343138616431653861663963353866333436356632626464636336316333386463383331663538633a307c62637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c7c", "btc_in": 4950081000, "btc_out": 3000, "btc_change": 4950020650, "btc_fee": 57350, - "rawtransaction": "02000000000104deea4c01fe27026871912b5797d327a953512d44d544e401ab129f3ce4066a06000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff26524c892cb7489a9dea7e6881ebbf8d4437aff46e4894c6f96867c6fe1aa808010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff9848608d922d22b4bf3c9879b3d2d1f3b39c98c646808f3a0b7d349fb9975574000000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff2fde3a5fc18db649e96158474a7b4ec343907f4c1bf2c5098c97dc24c891c160010000001600149030ff62d63fd80d9f1a083d0f04db0404236494ffffffff04e80300000000000069512103530d9ba5b00eaa5c9c72cd0c655bf87cc0abd1c0d3e9d8d6f52c3c0ecbc071c42103f69e3041ec5a4e65ede2563657f0a5d754bf729aa4c039b4a09c9c83026ee539210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee80300000000000069512103530d9ba5b00eaa5c9c24ca5c360af97ec6fa83c78fb5d998f62d7e4b9f8573d82103af883145ab5e1c60ebb9123a06a5ebc512ee2fdfe0802bf5f5c7cbc64a2fbba7210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753aee803000000000000695121037e0d9ba5b00eaa5c9c7e9e4a6b02a536d99fe2a3ea8fe9e4944e0c3faef445c52103c2fa0575d8682a50dcd765576ec292b3678645af93f25b8d91abadb53a5ed7fb210255329d36d265e6cf3e4c38f62a5604ec30abcb4e7fb790db2cc0c18720a6cf7753ae2a520b27010000001600149030ff62d63fd80d9f1a083d0f04db040423649402000002000002000002000000000000", + "rawtransaction": "020000000001048cf531c88dc361ccdd2b5f46f3589cafe8d18a418218597aad03dfb7c554870100000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff1d584177b56185f782adb9d05481c216857008828bb3167e131d12bebae0028b01000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff06e849e024a598d1536daf75ff5953121e5e8d2c5dafef02d8c292a5f5a1871800000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff360bd0ba3e48925f52bb6c43354c1037f8aab68dc31a18134c4875e1a75d65c901000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff04e80300000000000069512102053093adc899e9ecb3361597ae6443b639f4829b67d6c45e589dadf7db48e62621034d0b1cf8e3471205a9707f713f346d0afff091d96f5fb4d1f0c9c2ff36cae5ee2102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512103053093adc899e9ecb331169ef2304eb16ba7d594608ac4115b9ae8e2df00ef4a21034c054bb4e60a000df52d322628797f07a6e4978b6f0da68ef599ceea3397ae352102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512102283093adc899e9ecb3611092a13200fe26c1e0ac03b0f46d39f99a96ee71d7ce210375332eccd27f736198154710590d0e3fc796a2ed596ad2e392ada69c55fcd4302102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653ae2a520b2701000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb302000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10239,8 +10239,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -10248,16 +10248,16 @@ Returns the valid assets "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730224416, - "last_issuance_block_time": 1730224416, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", - "owner": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "owner": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "divisible": true, "locked": false, "supply": 100000000000, @@ -10265,16 +10265,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730224399, - "last_issuance_block_time": 1730224399, + "first_issuance_block_time": 1730280348, + "last_issuance_block_time": 1730280348, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -10282,16 +10282,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730224227, - "last_issuance_block_time": 1730224245, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", - "owner": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "issuer": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "owner": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "divisible": true, "locked": false, "supply": 100000000000, @@ -10299,16 +10299,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730224224, - "last_issuance_block_time": 1730224224, + "first_issuance_block_time": 1730280182, + "last_issuance_block_time": 1730280182, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -10316,8 +10316,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730224175, - "last_issuance_block_time": 1730224175, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" } ], @@ -10345,8 +10345,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "owner": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -10354,8 +10354,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730224047, - "last_issuance_block_time": 1730224059, + "first_issuance_block_time": 1730280004, + "last_issuance_block_time": 1730280017, "supply_normalized": "100.00000000" } } @@ -10386,7 +10386,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10394,14 +10394,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10409,7 +10409,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -10427,7 +10427,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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. @@ -10439,7 +10439,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -10493,9 +10493,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10510,7 +10510,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10536,9 +10536,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10553,7 +10553,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10579,9 +10579,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10596,7 +10596,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730224367, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10622,9 +10622,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", "block_index": 194, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10639,7 +10639,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224380, + "block_time": 1730280330, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10665,9 +10665,9 @@ Returns the orders of an asset }, { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10682,7 +10682,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10744,13 +10744,13 @@ Returns the orders of an asset { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10764,7 +10764,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10784,13 +10784,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10804,7 +10804,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10824,13 +10824,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", "tx0_index": 50, - "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 51, - "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10844,7 +10844,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730280219, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10924,20 +10924,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "event": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730280333, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -10945,20 +10945,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", + "event": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730280017, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -10966,20 +10966,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224055, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -10987,20 +10987,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "event": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224055, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11012,16 +11012,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224055, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11081,12 +11081,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "utxo_address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -11098,16 +11098,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -11119,16 +11119,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -11140,16 +11140,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224431, + "block_time": 1730280389, "asset_info": { "divisible": true, "asset_longname": null, @@ -11161,16 +11161,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -11250,14 +11250,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", + "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -11272,20 +11272,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730224059, + "block_time": 1730280017, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -11300,20 +11300,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730224055, + "block_time": 1730280013, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -11328,20 +11328,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730280008, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -11356,7 +11356,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730224047, + "block_time": 1730280004, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11390,10 +11390,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11401,7 +11401,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -11414,10 +11414,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11425,7 +11425,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -11438,10 +11438,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "075afeebd26221172504cd6cf19608193e331dc4fdad2098f9d9d5ed30fea9f0", + "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "block_index": 206, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11449,7 +11449,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730224431, + "block_time": 1730280389, "asset_info": { "divisible": true, "asset_longname": null, @@ -11462,10 +11462,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "937cb9c2fe836cc57515feda738e45f093dfe95214747f4bb24226586d6fce21", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11473,7 +11473,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224428, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -11486,10 +11486,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "991732d9a5670db9676a332e70b450e7b3cd60621ecef909af843d67b268b18f", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11497,7 +11497,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224424, + "block_time": 1730280372, "asset_info": { "divisible": true, "asset_longname": null, @@ -11548,9 +11548,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11559,7 +11559,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11569,7 +11569,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -11585,9 +11585,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", + "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", "block_index": 142, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11596,7 +11596,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11606,7 +11606,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224144, + "block_time": 1730280081, "asset_info": { "divisible": true, "asset_longname": null, @@ -11622,9 +11622,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", + "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", "block_index": 150, - "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", + "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11632,10 +11632,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11643,7 +11643,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224183, + "block_time": 1730280143, "asset_info": { "divisible": true, "asset_longname": null, @@ -11659,18 +11659,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11680,7 +11680,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -11705,7 +11705,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - The address to return + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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` @@ -11718,9 +11718,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11729,7 +11729,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11739,7 +11739,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -11789,7 +11789,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11797,7 +11797,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11806,7 +11806,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11814,7 +11814,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11823,7 +11823,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11831,7 +11831,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11840,7 +11840,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11877,27 +11877,27 @@ Returns the dispenses of an asset { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11912,7 +11912,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -11926,27 +11926,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", + "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", "block_index": 147, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11961,7 +11961,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224171, + "block_time": 1730280121, "asset_info": { "divisible": true, "asset_longname": null, @@ -11975,19 +11975,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11995,7 +11995,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12010,7 +12010,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -12024,19 +12024,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12044,7 +12044,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12059,7 +12059,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -12133,10 +12133,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12161,7 +12161,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730280017, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12201,22 +12201,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "2a9103735969396ee159a6887017b57e956f4c2934b38b2ec67a55982d27dc1d", + "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224059, + "block_time": 1730280017, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -12225,22 +12225,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f", + "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "tx_index": 12, "block_index": 124, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224055, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -12249,22 +12249,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -12283,7 +12283,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c` (str, required) - The address of the mints to return + + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (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` @@ -12302,22 +12302,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "8a70589703ca1bb5f573f55d18ae1d58add4d26ca4ac0aad5dba3851c14393b4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224051, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -12370,9 +12370,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12387,7 +12387,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12413,9 +12413,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "block_index": 188, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12430,7 +12430,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730280286, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12456,9 +12456,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "block_index": 189, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12473,7 +12473,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730280290, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12499,9 +12499,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12516,7 +12516,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730224367, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12542,9 +12542,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "7b926d92b570e380dfd216d9683739ca44c1bbc1417fa5e1b47203cf7c91b71f", + "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", "block_index": 194, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12559,7 +12559,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224380, + "block_time": 1730280330, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12594,7 +12594,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0` (str, required) - The hash of the transaction that created the order + + order_hash: `4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706` (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. @@ -12606,9 +12606,9 @@ Returns the information of an order { "result": { "tx_index": 75, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12623,7 +12623,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12655,7 +12655,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49` (str, required) - The hash of the transaction that created the order + + order_hash: `675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413` (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 @@ -12682,13 +12682,13 @@ Returns the order matches of an order { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12702,7 +12702,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12722,13 +12722,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12742,7 +12742,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12772,7 +12772,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49` (str, required) - The hash of the transaction that created the order + + order_hash: `675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413` (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 @@ -12791,15 +12791,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "0557c89b2fc2319066e8dc1c68615a837b593c8ef9879ca46cc5348ea3352cac", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "btc_amount": 2000, - "order_match_id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "status": "valid", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730280286, "btc_amount_normalized": "0.00002000" } ], @@ -12843,9 +12843,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "block_index": 188, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12863,7 +12863,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730224338, + "block_time": 1730280286, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12889,9 +12889,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "block_index": 189, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12909,7 +12909,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730224341, + "block_time": 1730280290, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12935,9 +12935,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12955,7 +12955,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224264, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12981,9 +12981,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13001,7 +13001,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224440, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13027,9 +13027,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "8f0de9fd23b4e64cae50ab73bd33bf3b42875093af6aa4569a9d4d904a728951", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13047,7 +13047,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224367, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13110,13 +13110,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13133,7 +13133,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224341, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13153,13 +13153,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13176,7 +13176,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224338, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13196,13 +13196,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", "tx0_index": 50, - "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 51, - "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13219,7 +13219,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730224264, + "block_time": 1730280219, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13277,13 +13277,13 @@ Returns all the order matches { "result": [ { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a", - "tx1_address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13297,7 +13297,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730224341, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13317,13 +13317,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49_d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "d1f7cf8ebf94a6ebafe192d920917de119a0f168386da80da2d48fc652317231", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13337,7 +13337,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730224338, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13357,13 +13357,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20_3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", + "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", "tx0_index": 50, - "tx0_hash": "25be411ad4ca77faa5b60ab92b027725e37d08fd01bf2fab8094dc46da31ff20", - "tx0_address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 51, - "tx1_hash": "3a567eb76eff80de4bb32e24fc10c8a9d5a6c715bdae16bccfe22835ff137851", - "tx1_address": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13377,7 +13377,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730224264, + "block_time": 1730280219, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13545,66 +13545,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "2ee3e38bcc6d1349df76fd324f0a5f1f746600463576dbee51645d4543bbf661", + "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", "block_index": 121, - "source": "bcrt1qya2ajp959ndcd4wv5zz5u0n7vtwvkztnuhktwe", + "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730224044, + "block_time": 1730279999, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "fb1164b42803c1fe9785b14f854f1d5889320f1ecc71c5737cd9b41cd53ef684", + "tx_hash": "0b1478514977a79b0c7a83efb19c79c80f4410d17978d7a596c14af640211641", "block_index": 120, - "source": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730224039, + "block_time": 1730279996, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "4214b4a0c69d4ab91e9da4d8dc2c558a1972811480dc21cd7da14a5e651ba78f", + "tx_hash": "5f172e1ffbe2e36ae90817805b9283dede9434d602abc63db47270cecf97a892", "block_index": 119, - "source": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h", + "source": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730224035, + "block_time": 1730279993, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "00a720a01c081dd9ef905fa0f750dbddae525976a705d3658983f31524f8fe8b", + "tx_hash": "345a49d90706762a3bbde9bd73527af10174277aa1abe8b552d7efdccf0db513", "block_index": 118, - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730224031, + "block_time": 1730279990, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "f2e79ed16c6c0e637ae8deb96e59cdc2d8de09daae42dcae8be10132cc3a7837", + "tx_hash": "023424b7c327b448e64b75c5c93bf556933503a5eb5ad674bee59fb68a3d5284", "block_index": 117, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730224028, + "block_time": 1730279986, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13649,9 +13649,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13660,7 +13660,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13670,7 +13670,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -13686,9 +13686,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "cb61c890b761dd1878feecf654e557eacaba3f4fbfaaf2d63e5c7330735ffe7b", + "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", "block_index": 142, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13697,7 +13697,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13707,7 +13707,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224144, + "block_time": 1730280081, "asset_info": { "divisible": true, "asset_longname": null, @@ -13723,9 +13723,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "abd7ca4a70c223b0403ad2c94c9df1b7433a332899791e2b2ba9b8e5881de286", + "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", "block_index": 150, - "source": "mfumR6WydqjS2pKWnwbbUmgtSePrAyqg8g", + "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13733,10 +13733,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "00db114c09e5fffff90fc58547551d2e375b4ea8f1d496d00a52480c2250f6f1", - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13744,7 +13744,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224183, + "block_time": 1730280143, "asset_info": { "divisible": true, "asset_longname": null, @@ -13760,9 +13760,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13771,7 +13771,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13781,11 +13781,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224395, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -13797,18 +13797,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13818,7 +13818,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -13843,7 +13843,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92` (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. @@ -13855,9 +13855,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13866,7 +13866,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13876,7 +13876,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -13898,7 +13898,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92` (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 @@ -13918,19 +13918,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13938,7 +13938,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13953,7 +13953,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -13967,19 +13967,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13987,7 +13987,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14002,7 +14002,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -14044,20 +14044,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -14082,7 +14082,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9` (str, required) - The hash of the dividend to return + + dividend_hash: `c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff` (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. @@ -14094,20 +14094,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -14129,7 +14129,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff` (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 @@ -14152,12 +14152,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1da9cd084416f20452edd01ce9dd124043632660135afb400eb4aed05b6cdda9", + "event": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "tx_index": 42, - "utxo": "b62ffce48b16b737eea55a572265debb28a0dfa10602337514862041beaab9aa:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "utxo": "d3ffca35d1e066c97ab497a5e4d1a8c4e7cda41298206ddac9eca7bd0d7ad2ad:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "confirmed": true, - "block_time": 1730224202, + "block_time": 1730280161, "asset_info": { "divisible": true, "asset_longname": null, @@ -14203,27 +14203,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 680, @@ -14232,14 +14232,14 @@ Returns all events "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -14250,9 +14250,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 679, @@ -14261,9 +14261,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -14273,24 +14273,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -14300,9 +14300,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } ], "next_cursor": 677, @@ -14330,15 +14330,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "9b3bc5fd6316c8a1d31c74ab4421e48c647b05787d6410643dc136bd367b1ff6", - "messages_hash": "390af8b7c694b6ca938ac2fd642894cddf5ab219661556fec4f1db97d0b7c7d2", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "3ec63678b3971e925cd7d8682b4e11ea6003ca62715ca02974130499382ad99d", - "block_time": 1730224454 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null, "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 } } ``` @@ -14416,16 +14416,16 @@ Returns the events filtered by event name "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -14435,9 +14435,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 676, @@ -14447,12 +14447,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -14462,9 +14462,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 673, @@ -14474,39 +14474,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", - "utxo_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "block_time": 1730224454, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730224454 + "block_time": 1730280411 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "c63932fc04ccb69e15a275e14c8e4be2b299c076455bb0a8edf49c1b06682e49", + "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730224440, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -14516,24 +14516,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "dbd671097b917370f41c6b2039a8d3c3667e139f82fdb2bdc175f24102eaeea0", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730224440 + "block_time": 1730280398 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -14543,9 +14543,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_time": 1730224436 + "block_time": 1730280393 } ], "next_cursor": 651, @@ -14601,27 +14601,27 @@ Returns all the dispenses { "tx_index": 76, "dispense_index": 0, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14636,7 +14636,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -14650,19 +14650,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "1cdbce216c1ae24842c49b2c15374043663217cc533579be0af2b83ab35794c8", + "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fe6cce9edc371cf1925afdaa02352dff43c612f3c8b321c71c1410e712c8e78", + "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14670,7 +14670,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14685,11 +14685,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224395, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -14699,27 +14699,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "745597b99f347d0b3a8f8046c6989cb3f3d1d2b379983cbfb4222d928d604898", + "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", "block_index": 147, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", - "destination": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "08a81afec66768f9c694486ef4af37448dbfeb81687eea9d9a48b72c894c5226", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14734,7 +14734,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730224171, + "block_time": 1730280121, "asset_info": { "divisible": true, "asset_longname": null, @@ -14748,19 +14748,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7de8754b5a3f59dad09792b124d97937ad7ce5f2d085722aa8f3ee7168609c36", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14768,7 +14768,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14783,7 +14783,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224140, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -14797,19 +14797,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0feb56dc37d20831bed528e40dd932cdbfc6c3c689c18ae23b60ba44fcd77dde", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "destination": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a90fe47d0189c668920b1c5cca1c2f135ebc3b1c5f71d1a254626bb601b5c09c", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14817,7 +14817,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14832,7 +14832,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730224127, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -14874,10 +14874,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14885,7 +14885,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -14898,10 +14898,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc:1", - "destination": "066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14909,11 +14909,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -14922,10 +14922,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14933,7 +14933,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -14946,10 +14946,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14957,11 +14957,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -14970,10 +14970,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "8616ad047bcfd41fc3b956dead00070f008fd9481792181f9ceee3fd63e4b6ac", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14981,11 +14981,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730224436, + "block_time": 1730280393, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15036,14 +15036,14 @@ Returns all the issuances "result": [ { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -15058,20 +15058,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "03d35bf4e2deb3c0bbef956d679976cf8f2349345785429341ab700aaea1f078", + "tx_hash": "26c29628ce5a0038fb490dc72d66e5d1a13bced028d7074e9addd843c3641d15", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", - "issuer": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "transfer": false, "callable": false, "call_date": 0, @@ -15086,20 +15086,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224399, + "block_time": 1730280348, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "36b866b110929942b5ea89533bbcd6cbba36052eba6c29e109c21a0c55f415a5", + "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -15114,20 +15114,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224248, + "block_time": 1730280196, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1baba163e2874cd0f6b445640ac137e0e3c9e8e4fcb0502576fcc1db4bae7c65", + "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -15142,20 +15142,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730224245, + "block_time": 1730280192, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "8b006accbed48f405d99b9ce6f5e345256f618c9382bbcdf1eb3976503a0b553", + "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -15170,7 +15170,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224241, + "block_time": 1730280188, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15185,7 +15185,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c` (str, required) - The hash of the transaction to return + + tx_hash: `fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5` (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. @@ -15197,14 +15197,14 @@ Returns the issuances of a block { "result": { "tx_index": 69, - "tx_hash": "8ec9c41104bd01203ae3532b18f3e026143c95af8d2100a14786a55662e8ff1c", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -15219,7 +15219,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730224416, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15251,16 +15251,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -15274,7 +15274,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207` (str, required) - The hash of the transaction to return + + tx_hash: `eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a` (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. @@ -15287,16 +15287,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", - "destination": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730224384, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -15330,9 +15330,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15340,14 +15340,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224120, + "block_time": 1730280065, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "b39ef493b2485c4f0f9d9e29bfcc32ea62ce168055b71e6e23b7631964f384f1", + "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", "block_index": 137, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15355,7 +15355,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224116, + "block_time": 1730280062, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15369,7 +15369,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334` (str, required) - The hash of the transaction to return + + tx_hash: `ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69` (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. @@ -15381,9 +15381,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "5c0d18bafba897c4acc48ecdea654f2457d16cb7b0f5129d9a2ca2c443602334", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "source": "bcrt1qjqc07ckk8lvqm8c6pq7s7pxmqszzxey5wtgt8y", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15391,7 +15391,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730224120, + "block_time": 1730280065, "fee_fraction_int_normalized": "0.00000000" } } @@ -15428,10 +15428,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "4cfd9c6a33e2754c778c4eb0b673dc7d4c38f8815f920fc83c3e1551b86a94e1", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15456,7 +15456,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730224216, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15465,10 +15465,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15493,7 +15493,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730224109, + "block_time": 1730280054, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15505,10 +15505,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15533,7 +15533,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730224084, + "block_time": 1730280038, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15545,10 +15545,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15573,7 +15573,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730224079, + "block_time": 1730280035, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15585,10 +15585,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3ce0c8b8bf4beaf827162147f021c7f5c05a1dbb333ba57092271ba62483e656", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15613,7 +15613,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730224059, + "block_time": 1730280017, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15682,22 +15682,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15706,22 +15706,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9387fcd9d6e90a224b0b1a8a0e23eed21ab0b1d4c47a607ffd8ee7e9b3a07fc1", + "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224104, + "block_time": 1730280050, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15730,22 +15730,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f6ac45a812777697b46d4ee419f467249b5706f9a6be94bd06de6aab0c2bce50", + "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224091, + "block_time": 1730280046, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15754,22 +15754,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6395588a59c66cd7e16abcce6cbf0bf81971027c50dbe6b320ca70b3feb2b97e", + "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "9a4c42181903724089f86c5c105fc3828a7b2a391d8cb3efe24602a2bc70245f", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224087, + "block_time": 1730280043, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15778,22 +15778,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "70fcc71132c03dc6c41341473ce9fa39038ace84501cbd872850ad8c01f8a162", + "tx_hash": "38ff72016b2ca16ae13e5a24421d00ae108c87bfb4d708458ecc34a4aa529ecc", "tx_index": 17, "block_index": 129, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "fairminter_tx_hash": "c4c289c64ac9ff380916ba6c1b4e78a6728f2b6583ba56e4f58b390d6ca854fb", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224075, + "block_time": 1730280031, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15812,7 +15812,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d` (str, required) - The hash of the fairmint to return + + tx_hash: `984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15823,22 +15823,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "a3b340888773d677999e30b7e5c9897206b2018236b303ae2621bee2c587357d", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6xep0qzjakree8jc37j2wdxqaqetfxvhesjg4c", - "fairminter_tx_hash": "7bb0e3b412751970634380c2996fa75182a347ee2eff9ff07d53ac440932a10c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730224112, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -15856,7 +15856,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z,bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h` (str, required) - The addresses to search for + + addresses: `bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5,bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05` (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. @@ -15870,22 +15870,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241", - "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" + "amount": 49.499345, + "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83", + "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f", - "address": "bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z" + "amount": 5.46e-05, + "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e", + "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" }, { "vout": 2, @@ -15893,8 +15893,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "c56f7e41892ae9ed054ea7f825c20c4f26a590ecac0e02ef0520e41b4168c0bc", - "address": "bcrt1qrgzl0ez2umj6j3yfd622uqgdjpk9ultgar7s3h" + "txid": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced", + "address": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05" } ], "next_cursor": null, @@ -15907,7 +15907,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y` (str, required) - The address to search for + + address: `bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7` (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 @@ -15923,28 +15923,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "9265f6ddbd92080c22a795f10026c3335d1de52a96fc2b8ef23bdbeb7a2a2207" + "tx_hash": "3b3debe4cbd52a33fc663bf81ac587415f8e97fd8ed793540d121fd65b6bad10" }, { - "tx_hash": "50d0a0e77f60c466797e1d2fd5e455a6b735173a9735b809e0950dd33ffd511d" + "tx_hash": "cecd905107c86593aea646828933541f9f84e3ef3e791cb6d2d3a506a03b3f29" }, { - "tx_hash": "a41897a297a374d32862511dcfe23c73f586c7e57c3db937231823c13416b65f" + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a" }, { - "tx_hash": "e051021b2c74665b4f931aec4cfae088c435f7275bc3409ac8fda551cf4de474" + "tx_hash": "5c5875eace29b84c50833eeee489b7cb60b942abcfe251f269b4ff65988eea9c" }, { - "tx_hash": "511caba59abf90448b5550907d4bcd353fbc65b48b29cc3f5f15542c0ba7627a" + "tx_hash": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb" }, { - "tx_hash": "4333ac19acc975157e1dfb3e18211775889de16a0d40e0148f8e1e407f65447d" + "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd" }, { - "tx_hash": "e3999ad8f23260f16aee1eb0df23c91affcea3880e1ac2dba417d561f95f76ac" + "tx_hash": "3e96c423b69232002770982e6d81051d87566aa62470b2f99a7f52470fc7eddf" }, { - "tx_hash": "0c648b9f7b7b9d1a39ee6ce2d2685fffe1029925b507b9fa59547d646a5704e3" + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" } ], "next_cursor": null, @@ -15957,7 +15957,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1quvr06fejcnwfg4v5975x28cptjy6dwxju9kp5p` (str, required) - The address to search for. + + address: `bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l` (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. @@ -15970,8 +15970,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "23f287cd6dc1eaffaf98025c9e2dd7ac31c2f51642bfda6932394e85dbae39d0" + "block_index": 9, + "tx_hash": "6eb1328d173773610e897e7f1b8c48e48a895f3484db23933f5eacd24876e8ef" } } ``` @@ -15981,7 +15981,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qqk2h5h8fddlp9yc5grhjnphzrt4nx2xytp0x2z` (str, required) - The address to search for + + address: `bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5` (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 @@ -15997,20 +15997,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "5b067400b53bc1569520bdf33b5093ff79f405a367409acdcb6051ed33817241" + "amount": 49.499345, + "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "017214a0449af470bca05dcba3722bc1b4749ee3adcb64bf542d59580a47a87f" + "amount": 5.46e-05, + "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e" } ], "next_cursor": null, @@ -16023,7 +16023,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q6mr40s6607nwmhgyvuhjpsrpxdlfspqlhcp88m` (str, required) - Address to get pubkey for. + + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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. @@ -16035,7 +16035,7 @@ Get pubkey for an address. ``` { - "result": "02383e5bdb5d3b1dfb8a08f6136a7d3b378e89a6bf1b4d2b8eea8f657d166e66c6" + "result": "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" } ``` @@ -16044,7 +16044,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `066a06e43c9f12ab01e444d5442d5153a927d397572b9171680227fe014ceade` (str, required) - The transaction hash + + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (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. @@ -16056,7 +16056,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101bcc068411be42005ef020eacec90a5264f0cc225f8a74e05ede92a89417e6fc50100000000ffffffff03e8030000000000001600149030ff62d63fd80d9f1a083d0f04db040423649400000000000000000c6a0a77c6fc6c8e6b061d40c0eb14092701000000160014e306fd2732c4dc9455942fa8651f015c89a6b8d202473044022021a9e61267ae58406b5ddf4c9e30c0630806552c98185e2549825aea6e195bdd02201f82716c63034970df08fe45ed0470c98e7040d9ed07b2ead742cedd91c893830121028b52127657b237ac73a4d2441674d99d20ed53967b28790362546612c8ab63e100000000" + "result": "02000000000101edcccdc71284344cd9305f3d3e87d5a74a4f0c266cc1221f3fdd5f4f995c4b430100000000ffffffff03e803000000000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb300000000000000000c6a0ae11c2c4caf70aedbf62ceb140927010000001600147788af5d7ab83c917d033b5012802b3fa7e5584b02473044022064c94a035eb9e92ba5058e032970b5c16759761a5b17fabd6ee51b4d7eae3928022063dcbd95e99c891e44aab012b353684d940c104e42670efbd06da34217185d390121036744fd5ae766411b2fa9fc805037c4a8a5f8f83e3b086dced538ec17832742c900000000" } ``` @@ -16151,27 +16151,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77 }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "quantity": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, "asset_info": { "divisible": true, @@ -16182,22 +16182,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -16207,22 +16207,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "block_index": 209, - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -16232,30 +16232,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730224458.0780673, + "block_time": 1730280415.8124557, "btc_amount": 0, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "destination": "", "fee": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, - "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", + "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -16269,7 +16269,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -16300,19 +16300,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -16322,7 +16322,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -16335,7 +16335,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7` (str, required) - The hash of the transaction to return + + tx_hash: `dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99` (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 @@ -16355,27 +16355,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77 }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "quantity": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, "asset_info": { "divisible": true, @@ -16386,22 +16386,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -16411,22 +16411,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "block_index": 209, - "event": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730224454, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -16436,30 +16436,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730224458.0780673, + "block_time": 1730280415.8124557, "btc_amount": 0, - "data": "020000000000000001000000000000271080cf1e8b3a4719633f5f3dbff112159bb24914ca57", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "destination": "", "fee": 10000, - "source": "bcrt1qfwezwzfwtthvtjxjl4z9s6s76ws7qqnl3m36uq", - "tx_hash": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, - "utxos_info": "9d3c88148c5b21733508ba9c4f771319ec40a315b25f74fcf76d4129e6299cf7:1", + "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qeu0gkwj8r93n7heahlc3y9vmkfy3fjjhu6gm3y", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -16473,7 +16473,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730224458.0780673 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index d39817adf6..27f4bae116 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -279,8 +279,6 @@ def parse(db, tx, message): if problems: status = "invalid: " + "; ".join(problems) - logger.warning(f"UTXO: {source} -> {recipient} ({tx['tx_hash']}) [status: {status}]") - if status == "valid": fee_paid = pay_fee(db, tx, action, source, recipient) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index c2015de6e7..d05181093a 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": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "difficulty": 545259519, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", - "block_time": 1730229823, - "previous_block_hash": "697b84f8e4490d198edeec07a640faea9c9bb1210ff0dbe9b6cf8e955bcc1b77", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "previous_block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", "difficulty": 545259519, - "ledger_hash": "1582cb64631c114da1fff8f45656ab5684f5c50edfa874dea85b47f84ea086c7", - "txlist_hash": "6152e077ec0fafebd66f9e534f6e47af12cd94753cbc61cf44e06677afe46328", - "messages_hash": "d2c9c9840e649d1976de727bb1dcd20c9749cc712226f5c96745f1286f7180be", + "ledger_hash": "398cb86a881f4ea0e7871fdf4c94a96e3be7a7f5420313f87841c14315220d3a", + "txlist_hash": "34617f8ee34732637535f74a33e63f232639c3a3e663859ca7682d11ad8b68c2", + "messages_hash": "58e982f6ded7ac01ff79d28d1b86919ce99bf789d61d10d1712a7acf2c018c65", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "697b84f8e4490d198edeec07a640faea9c9bb1210ff0dbe9b6cf8e955bcc1b77", - "block_time": 1730229819, - "previous_block_hash": "02f0bee8a951f71fcd919c8436d1e0cdd8f837b2a0053184f7115c2a6b047cab", + "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_time": 1730280393, + "previous_block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", "difficulty": 545259519, - "ledger_hash": "bad871d35407e4cc291f5e6217e8ebe7bb843cc331d1754979004d43b2b30122", - "txlist_hash": "e6fa35ab53eeda9d3becade5825102ef1b6c2812109b73fbca544d9769f160c7", - "messages_hash": "ad3ed63edbb6b3bf190c463c95e8a707c69f48d26f862fab0b8f6a0bd072efe1", + "ledger_hash": "92aa8b958b734e54e961d146c964e3adc252563792a694b97f4df566ea461651", + "txlist_hash": "6a718968ba46e4dfd313aa97c3ac38640564a337bb358ed3b299d3ba4ddefa3a", + "messages_hash": "3856afbd9d4ecf201c0d5c01edc2d5c1c26f2b02c0e91c74f3cfeaf28d5a0455", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "02f0bee8a951f71fcd919c8436d1e0cdd8f837b2a0053184f7115c2a6b047cab", - "block_time": 1730229815, - "previous_block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", + "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", + "block_time": 1730280389, + "previous_block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", "difficulty": 545259519, - "ledger_hash": "6123e2da3c325b117b3074f4c98873d51674f3e3249037aba5401675d8ea885d", - "txlist_hash": "0e900c66ac3c815a8a5a90830b85bc890631323f64f3ab659f9d6464c9bdbe60", - "messages_hash": "139bf8d523755ff8c2ed7557d5f50b94ba60e4222362aba9bcf1d613e5462cb7", + "ledger_hash": "bde6c897559e7916dc9f5a969bd236d5487dd06516c905f841f4261812753795", + "txlist_hash": "16cd141f722190bc24d8fe5bb09d0bf87fe6540ee794064e20ade5f3ad1343ce", + "messages_hash": "d8f5494718d6ef4a69205483e0a2aafcba5416c008f2a9694589a9773c0bdea7", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", - "block_time": 1730229811, - "previous_block_hash": "7d525ab36b95c820f5eb632dd481a9ef34a7d7d01d8ab0f85e16b88acf92c3b8", + "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_time": 1730280385, + "previous_block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", "difficulty": 545259519, - "ledger_hash": "a24aa6c0f056edcd92f20d53c3cf78b705394c64c3b71781dcab009494cc4b98", - "txlist_hash": "960b26cb51936c339ef02bc9123dbca956ec5223502dc0ac7cccf6c3f5150370", - "messages_hash": "226f3e393e58fab10c8f3302e04d3d44ca816bacfc947f7a730a5d2370e26540", + "ledger_hash": "195eb749c22a8b4c5fe1db2ba54a03e612ff7c6cec598385b12f963900bd9b9b", + "txlist_hash": "4d24a0dbee08f4a6bacbb419f71199e7bda2611ae3d0f7b028df8aacd021c48a", + "messages_hash": "9308d5cc416d2a9008c6c74477509ba388757995ff1067fe41b83d9d0f137447", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "difficulty": 545259519, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "difficulty": 545259519, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "block_time": 1730229832 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 680, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 679, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" } ], "next_cursor": 677, @@ -256,16 +256,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 676, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" }, { "event_index": 673, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa" + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "object_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, "confirmed": true, - "block_time": 1730229823 + "block_time": 1730280398 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "78878b916084c127bb669a856aaa79b24764f30e7e00cb72cb1a71a7cb346075", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "block_index": 193, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "offer_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "status": "valid", "confirmed": true, - "block_time": 1730229746 + "block_time": 1730280315 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "47db3f850e7bc5e755c1653917b02a07aed9c1e6776091038c1ea3ece4b7ba53", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "block_index": 196, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730229766, + "block_time": 1730280337, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229798, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730229762, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730229594, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229497, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 75, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", - "block_time": 1730229823, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,7 +816,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "ea64475ff13cf5efb6df1dfdcb538b7ce3807546471291deabd2b3d3d761d689", + "hash": "49c433743b70d46c295524056bc58b2bddec3f3d995738b4ae28a8e356855738", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a33029d06d91735e159c65173fa39624f77d8f8a1e39e9f300c5c3af9f273bb4bf2134e5f94df7f151b5a19cf607d88c4b376f4c4" + "script_pub_key": "6a336673a8ccf2f30a21a4e2063f1e5bce6e8b7a0645c17523d3f71344921dbac365389a0ece832079efe0224d897a4ecc9bf43841" }, { "value": 4999990000, - "script_pub_key": "001454969806c96797e2ab72768b652edfa6383581a9" + "script_pub_key": "00143975935790fecfcd01603f4744e90bda2b7626c2" } ], "vtxinwit": [ - "3044022057605e0fc27211a3580d66f4252bab0c783573e3547de4484beedf30be71572502200fea75383bdd3ea61ba8d3980ff11f60a1805624f7b72d20d9a953efff85e6fc01", - "032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b35" + "304402205d3647fb5df1fefe0ec34a6f0fefad338cf680f5fd1f9eacd01b87c214098c2002203f313ad1db0c5630f9543930f08735b4ea4a98017f0f026b025c8ee24e16091c01", + "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" ], "lock_time": 0, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", - "tx_id": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd" + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_id": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "53bab7e4eca31e8c03916077e6c1d9ae072ab0173965c155e7c57b0e853fdb47", + "hash": "b758f533a8ec6ff7c6e5a71b551876ae0aa2eda1bba1b631265bae2614db8b2c", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ecc544b2adcc49189fdd13ed3d8193d181758f40e07e9c05db6d1c6c97ecd746550cc6c4f505d490a7dea2778e052" + "script_pub_key": "6a2efb28a2b2620e58b05c575d2aec93535ebec5093fa20b7c33e953976ff6215d1e8ffc89ca4a335af63ea86685b1ff" }, { "value": 4949932460, - "script_pub_key": "0014b8d507a4d0f70f5c93ade11600c9fb995deffb58" + "script_pub_key": "0014468688a053fb01a934cd35ccb9e6563195a861f4" } ], "vtxinwit": [ - "3044022037fd594efeb1acc648344d66bd30ce42530659475c916947dda2fcf7918c2d980220160dfeff939902818087470980a0352db36f0007fc193136b4999008440b76ff01", - "039180daa0afc74bf313810e8788c86c840ece7cac79d3a1fafd8aeb01cf4fafac" + "3044022053bc9b3f60ff03caf112c6170a61f325202d2a2d2b612fb0b93aa1ab2b08457302202058bb4fd5c98c49d7bd7dfe38b6716b78d493207854815a15fea1f55002b1cc01", + "03a887f6e8e7e77d958a74a38419c66046a0a4a78e999b1efabae186a96d83b488" ], "lock_time": 0, - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", - "tx_id": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d" + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_id": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", - "block_time": 1730229832, - "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_time": 1730280411, + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 680, @@ -1024,14 +1024,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 679, @@ -1053,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 677, @@ -1102,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "msg_index": 1, "quantity": 2000000000, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", "status": "valid", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1119,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 676, @@ -1134,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 680, @@ -1148,14 +1148,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 679, @@ -1177,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 677, @@ -1226,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "msg_index": 1, "quantity": 2000000000, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", "status": "valid", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1243,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 676, @@ -1255,10 +1255,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1279,10 @@ }, { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1310,27 +1310,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1366,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 676, @@ -1397,12 +1397,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1412,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 673, @@ -1424,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": null, @@ -1453,16 +1453,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 676, @@ -1484,12 +1484,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1499,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 673, @@ -1511,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1670,17 +1670,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", - "block_time": 1730229823, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1716,17 @@ }, { "tx_index": 74, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_hash": "697b84f8e4490d198edeec07a640faea9c9bb1210ff0dbe9b6cf8e955bcc1b77", - "block_time": 1730229819, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_time": 1730280393, + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038054969806c96797e2ab72768b652edfa6383581a9806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b:0", + "utxos_info": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1768,17 @@ }, { "tx_index": 73, - "tx_hash": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", + "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "block_index": 206, - "block_hash": "02f0bee8a951f71fcd919c8436d1e0cdd8f837b2a0053184f7115c2a6b047cab", - "block_time": 1730229815, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", + "block_time": 1730280389, + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038054969806c96797e2ab72768b652edfa6383581a9806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb58c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023:0", + "utxos_info": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1820,17 @@ }, { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", - "block_time": 1730229811, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_time": 1730280385, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114:0", + "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1872,17 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "block_hash": "7d525ab36b95c820f5eb632dd481a9ef34a7d7d01d8ab0f85e16b88acf92c3b8", - "block_time": 1730229807, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", + "block_time": 1730280372, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf:0", + "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "open", - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 208, - "event": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730229823, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "block_time": 1730229823 + "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_time": 1730280398 }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730229823, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", "block_index": 208, - "block_time": 1730229823, + "block_time": 1730280398, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, - "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,9 +2090,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 } ], "next_cursor": 657, @@ -2101,17 +2101,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "quantity": 10000, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, "asset_info": { "divisible": true, @@ -2122,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "block_index": 209, - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730229836.055731, + "block_time": 1730280415.8124557, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "destination": "", "fee": 10000, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, - "utxos_info": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d:1", + "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -2218,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2256,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2278,7 +2278,7 @@ "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2299,7 +2299,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2321,16 +2321,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2342,16 @@ }, { "block_index": 207, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2363,16 @@ }, { "block_index": 206, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", + "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229815, + "block_time": 1730280389, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2384,20 @@ }, { "block_index": 202, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "event": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229798, + "block_time": 1730280364, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2405,16 +2405,16 @@ }, { "block_index": 193, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "event": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229746, + "block_time": 1730280315, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2432,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2453,16 @@ }, { "block_index": 205, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2474,20 @@ }, { "block_index": 205, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2495,16 +2495,16 @@ }, { "block_index": 204, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2516,20 @@ }, { "block_index": 204, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2548,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "aaa851e17fa9fe5b1991853671831d967387d0ffbfc19686c1443bfe56d1fbd3", + "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", "block_index": 137, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730229501, + "block_time": 1730280062, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "565dcb7c2dfeadb4519af293b79c67c689b192e3c76dfb82a19741a5bad833b6", + "tx_hash": "0856525afa72ec7fd8cdef1decba37519145c2e28542c3c7433383265fcd59a5", "block_index": 112, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730229408, + "block_time": 1730279969, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2588,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2612,10 @@ }, { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2636,10 +2636,10 @@ }, { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2660,10 +2660,10 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2684,10 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2714,10 +2714,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "9bcd5feb006d01247ff86d19346c290cd3b947ca8af761808c03375c993f05e4", + "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", "block_index": 151, - "source": "fb346c877c0e3de8a12c9cdba9933825aa1df84d5b622c69879ad068e46bdbc3:0", - "destination": "bcrt1qkfmf74gtrdthvlfyjmd0zzueay0xfzf9h5vjex", + "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", + "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2725,11 +2725,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229576, + "block_time": 1730280146, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2744,10 +2744,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2768,10 +2768,10 @@ }, { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2792,10 +2792,10 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2816,10 +2816,10 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2840,10 +2840,10 @@ }, { "tx_index": 70, - "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229803, + "block_time": 1730280368, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2875,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2912,9 @@ }, { "tx_index": 63, - "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229773, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -2954,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +2995,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "c1c65c5c17472c1c9f046bd3b7f1afc6ac6e09aea2615c2a9693c5d8cba12694", + "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229773, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -3044,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3148,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "c1c65c5c17472c1c9f046bd3b7f1afc6ac6e09aea2615c2a9693c5d8cba12694", + "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229773, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -3197,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3508,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730229762, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3528,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229798, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3aefecca7ae7cb0ef45bedb5b20ff0b0b368ede13d98b50b5001d3552fb577ae", + "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229626, + "block_time": 1730280196, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "66f850a9c5aae8f9ada0fbd4ce331d5e252fe1fc78929a6a049abba0d3b6ac4d", + "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730229622, + "block_time": 1730280192, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "179e4b70afe0a0dbaad35c379d9b0c63165c6fd7fe6dab18938a871139c1580f", + "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229619, + "block_time": 1730280188, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "513d8f967dba7d94a362c303bfc285912cd3b3d50713a983857c891114ff441e", + "tx_hash": "177706095b5b147eb09be862d19f1a5fd8414af9a801c547465dd42dc170efbc", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229605, + "block_time": 1730280185, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3676,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3685,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730229798, - "last_issuance_block_time": 1730229798, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3702,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730229605, - "last_issuance_block_time": 1730229622, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730229563, - "last_issuance_block_time": 1730229563, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730229492, - "last_issuance_block_time": 1730229497, + "first_issuance_block_time": 1730280054, + "last_issuance_block_time": 1730280059, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730229477, - "last_issuance_block_time": 1730229489, + "first_issuance_block_time": 1730280038, + "last_issuance_block_time": 1730280050, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3767,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3776,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730229798, - "last_issuance_block_time": 1730229798, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3793,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730229605, - "last_issuance_block_time": 1730229622, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730229563, - "last_issuance_block_time": 1730229563, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730229492, - "last_issuance_block_time": 1730229497, + "first_issuance_block_time": 1730280054, + "last_issuance_block_time": 1730280059, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730229477, - "last_issuance_block_time": 1730229489, + "first_issuance_block_time": 1730280038, + "last_issuance_block_time": 1730280050, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3858,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3867,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730229798, - "last_issuance_block_time": 1730229798, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3884,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730229605, - "last_issuance_block_time": 1730229622, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730229563, - "last_issuance_block_time": 1730229563, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730229492, - "last_issuance_block_time": 1730229497, + "first_issuance_block_time": 1730280054, + "last_issuance_block_time": 1730280059, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730229477, - "last_issuance_block_time": 1730229489, + "first_issuance_block_time": 1730280038, + "last_issuance_block_time": 1730280050, "supply_normalized": "0.00000019" } ], @@ -3947,17 +3947,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d", - "block_time": 1730229823, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_time": 1730280398, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", + "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +3993,17 @@ }, { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "block_hash": "39d3ebcbb0d66b3d585f47fcf1bac79324aa156fb937b92fbd8edc8ceaf6a25c", - "block_time": 1730229811, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_time": 1730280385, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114:0", + "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4026,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4045,17 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "block_hash": "7d525ab36b95c820f5eb632dd481a9ef34a7d7d01d8ab0f85e16b88acf92c3b8", - "block_time": 1730229807, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", + "block_time": 1730280372, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d23e685118a9aa1d95eeb9184ee52cffe622c41f806b97639c302c98e5964a011570b6551e311da0e180b8d507a4d0f70f5c93ade11600c9fb995deffb5888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf:0", + "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4078,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4097,17 @@ }, { "tx_index": 70, - "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "block_hash": "78223b98d27e72cc18cee179fcd76685ce1c5b8c02859669a437b4a4afcf03c0", - "block_time": 1730229803, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "7487290ea1177c5fbb7ff3237edca224033a3d508643c4635c6c5243f8779a54", + "block_time": 1730280368, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d23e685118a9aa1d95eeb9184ee52cffe622c41f", + "data": "02000000178d82231300000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", "supported": true, - "utxos_info": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26:1", + "utxos_info": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4131,17 +4131,17 @@ }, { "tx_index": 69, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_hash": "7109ca35c2cf47f4f0f2161b8bc34834766186bac9da4bcc7345faa2d2426329", - "block_time": 1730229798, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "block_hash": "25021659925c485e0f4209b4e9f5dda9da1a07760c22b1495abb86e5e86aebf4", + "block_time": 1730280364, + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef:1", + "utxos_info": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4172,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730229591, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4207,9 +4207,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4224,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730229640, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4250,9 @@ }, { "tx_index": 52, - "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4267,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4293,9 @@ }, { "tx_index": 58, - "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4310,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730229746, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4336,9 @@ }, { "tx_index": 60, - "tx_hash": "1f7c2399023df787037e99a1ef620c84dfd40a82cb31a69ec21a024fcf35b412", + "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", "block_index": 194, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4353,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229759, + "block_time": 1730280330, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4379,9 @@ }, { "tx_index": 75, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4396,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730229594, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730229492, + "block_time": 1730280054, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730229477, + "block_time": 1730280038, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", + "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730229473, + "block_time": 1730280035, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730229454, + "block_time": 1730280017, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229497, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4654,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fc5a2747e2459e3c380b8ee5df69f01b259f6165c905bd764f04d275f8f7119d", + "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229489, + "block_time": 1730280050, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4678,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "c8948fb12a404372e0abccc0024cf0f5644862c837d265a5baaad44dd86f90bf", + "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229485, + "block_time": 1730280046, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4702,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6f9346b193a425776a5f2e7217269c5e4a659967ce5e85db09bbb5ed8529f26e", + "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229482, + "block_time": 1730280043, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d7b858102b27579b9f4c9ec882ed2fe302f1f000cd77d813171faefe72b1d1f3", + "tx_hash": "1fff08d43ae2563f0e1c75a68b74a5210aecef167decd19bfea1c7866084655f", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229461, + "block_time": 1730280023, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4750,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229446, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4780,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229446, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4812,8 +4812,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4826,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -4847,7 +4847,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4857,9 +4857,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985793, - "btc_fee": 14207, - "rawtransaction": "02000000000101421b469c68da74a6c75b48acc75a8b6c95b669f2c941665534114768d708e54f0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff0200000000000000002b6a29b56122a1e86c672a2478e5440817870857180a9875202f98a0450db873eab02851baa40ae6dfddc72081ba052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999985795, + "btc_fee": 14205, + "rawtransaction": "020000000001018ea985dd665e87b13c4436205b98052023cd45f94a3393c2f8dfd4663b256e47000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29499d1cfaa04dc403fe46886db04f2aad65f8f395262f38d16caba5b8fc9c3d0ec036826aead362dd6783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4877,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71" + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" }, "name": "btcpay", - "data": "434e5452505254590b6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "data": "434e5452505254590b675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978918, - "btc_fee": 18082, - "rawtransaction": "02000000000101b281cd0a1681f5669be9a0896bf9f6969df28394582f5bdf74aee1339e56ef270000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff03b80b00000000000016001454969806c96797e2ab72768b652edfa6383581a900000000000000004b6a4959e0661de4357edaa1a3859b0e4ad781e55487f50ea6131dfe8a8b5da780d674c6c582be0912530e8518ff4ac58aae7770cf20302a14eebbfbe913a0f93c1935591063dbdea316d3f6a69f052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999978921, + "btc_fee": 18079, + "rawtransaction": "020000000001015bd347105bf0a15962aeecccea83557e3f48ad1d23edc7632fbb06991b8a7143000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03b80b0000000000001600143975935790fecfcd01603f4744e90bda2b7626c200000000000000004b6a499a83a2c0a5a541c9d1af973419b95110ed21a63e53b0bec37da11e3680b2da8d6487d7dc2d33462d5f3a65240d8f75e966e90649e753599910bca7acab9489a9f988cbcd1680a14291a99f052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", - "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "status": "valid" } } @@ -4902,7 +4902,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 1000, "overburn": false }, @@ -4910,29 +4910,29 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985791, - "btc_fee": 13209, - "rawtransaction": "020000000001012fa0f2e066a071eefb84b1bebffed6d42721c8f8c82135f60ef8d7daec723ccd0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac7fba052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000" + "btc_change": 4999985793, + "btc_fee": 13207, + "rawtransaction": "02000000000101062e3c2627d5cb01bc729c84d920a8f14b77d0484b47374d146934d8315b5f2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "offer_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd" + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" }, "name": "cancel", - "data": "434e5452505254594651225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "data": "434e545250525459464dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985793, - "btc_fee": 14207, - "rawtransaction": "0200000000010102bdc6f07551c14053fffc50e97301dcb93cb8a20da0563e8089a053cfe913650000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff0200000000000000002b6a298048e2c76e386eb388c7a851be6965a4e1098b4a5fc914d151c5e69609023f0230597a393ed83691b481ba052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999985795, + "btc_fee": 14205, + "rawtransaction": "0200000000010166a15b4778eea05fe77880fc2037e528a1594163cb022af2ea04210f2f2ce354000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29466fa949551fba1a1fae86fae1c5ae551723eedbce9cb4eaf0d0ac6d8c35440a1803a6388e107ea4c783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "status": "valid" } } @@ -4941,7 +4941,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4958,9 +4958,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986321, - "btc_fee": 13679, - "rawtransaction": "0200000000010113588f8a1c1e52e7b650d009ee5cf80c069d1c82ef3dfae8dd551441b95836cf0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000226a20cc00b0c6233604369355c03084e86a6d7c7911f8ce64ef58a49375505b5c119291bc052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999986323, + "btc_fee": 13677, + "rawtransaction": "0200000000010125f27aa2bcb4c0e084d7ce0b2690e48bddbdac455834c039e1f39cebd4074e6e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000226a20bf4ac73f58f0f8e0e211c00b6f1c345b97012a9b450565cf1eee5db8d815c00693bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +4976,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4998,9 +4998,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920234, - "btc_fee": 14266, - "rawtransaction": "020000000001013ae23953c5f5e2834d6758992c8e9d5990cc1044eee39360c0cec21af4537e9f010000001600149dfb679266fa0876992538e8cb01bcaa55495dd6ffffffff0200000000000000002c6a2ae42a6e9a0f4be43075ac30274ef6fdc5ce45d90fdf645b280fed6a6d28eb3d35e5349612f5308b8fcb5ceac90927010000001600149dfb679266fa0876992538e8cb01bcaa55495dd602000000000000", + "btc_change": 4949920236, + "btc_fee": 14264, + "rawtransaction": "02000000000101832fab1a682534d9e152054ae0db94f064f2f2f3dffa876027f862e5d5e7f0a501000000160014183cd9edc67caf2c978732ddd9d8044458012d46ffffffff0200000000000000002c6a2a50447de86cb6d52bd5d475ef780080307f1a241217233a8fbcb5d5fc0f8d56d6a8b1be215ea5639c5fe7ecc9092701000000160014183cd9edc67caf2c978732ddd9d8044458012d4602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5022,14 +5022,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5046,9 +5046,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986263, - "btc_fee": 13737, - "rawtransaction": "020000000001014d2a25f3504c9b8b19f1d8fa6342028ba07baf71ea0b55bea260a122afba24e70000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000236a21579c3e44b8e5bf0b7348a1c54cce7f0c7c1724cc2ed7ad3f8779ce3254e80a590d57bc052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999986264, + "btc_fee": 13736, + "rawtransaction": "02000000000101f094b788f54160dc223c3caead4174a4ddf7ba3d2e37ae0e567da54e1360b86e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a2116d3a7c348c6a57e7c3800963c37a4db89be15c9006832eb3ad22807454f16727d58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,10 +5065,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "transfer_destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "lock": false, "reset": false, @@ -5079,9 +5079,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983720, - "btc_fee": 15734, - "rawtransaction": "020000000001017ddaeca9111b54774d2206cc5f7c8b6b137a1890905062e57a518284af42b1d60000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff03220200000000000016001454969806c96797e2ab72768b652edfa6383581a90000000000000000236a21c2835248ee369592c28cd6bc181915cfe55fb3517d5023fdcd19901724696e4d2268b2052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999983723, + "btc_fee": 15731, + "rawtransaction": "020000000001017bd5a6e6cedf4a8de8bec9ab1504faa3ddc295ddab3d08ddbee096e9977da0d2000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0322020000000000001600143975935790fecfcd01603f4744e90bda2b7626c20000000000000000236a21f35c4eecaa0c728ee0e113816cadfc984309c9f871bf7b056fe80dc6b6241a51a76bb2052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,16 +5106,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", 1 ], [ "MPMASSET", - "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", 2 ] ], @@ -5123,26 +5123,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028054969806c96797e2ab72768b652edfa6383581a980d23e685118a9aa1d95eeb9184ee52cffe622c41f40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002803975935790fecfcd01603f4744e90bda2b7626c2802941f47986c7001b342b5540421701d38d4dbbee40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945397, - "btc_fee": 52603, - "rawtransaction": "02000000000104e37afbe03bbd77a9d4663f9aa0df2192d70f79e4ae81f2db0e45924c0e014e700000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffffd340c7751d3ab2149de3f44adb6bac24ec9202fedab9e2b53470c4b835b0947e0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff92b8e3bea54f142723969f112958dab2a31790fb26f50fcad3bd98cb82f8298a0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff5c49bd0fe592f475181c5d633eafe9839feb837ef91d4dbdf88529bdfe946b100000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff03e8030000000000006951210226f086bf75b68a45d71f13174a0707d2f51c751870e5d2a8fe2e61a216f5a47721025fc46111f74c8e7d1404a5ee76fbe24dcdf407ae60a9d4a7ef3f3aeea97a479321032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aee8030000000000006951210339f086bf75b68a45d7cc1315ca53914af3f1128f924ea0de754f4f7db0cd91982103de6de0c3c924df65bdaeb87b9842fa0328d8f848426dcbe7ef3f3f0dc9f283b421032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aeb5f216a80400000016001454969806c96797e2ab72768b652edfa6383581a902000002000002000002000000000000", + "btc_change": 19999945404, + "btc_fee": 52596, + "rawtransaction": "02000000000104f0701669d42c755e18b30aa1dd3da3fe92a38ca7dd0d921cddab03d36743d05e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffbf836b9501e87f3e7de2ab4e2e5657e0d65537a9d4d01d8f8e115047ab0c7a75000000001600143975935790fecfcd01603f4744e90bda2b7626c2fffffffff7a3a10317376723fffa0d5c52f867ece1964558f96819d959f75fdcb8d4182c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffa3d8b4a0925132022ccf1717242288d1bb478945da4696f3797e633cf0f76b1c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03e80300000000000069512102bab3653a92081a36c60f82b3d88606cd3c1a12aa8dc64b90c9db2a024ec9c30321033dbdcfbfa03208b22a32694c4d0a7ae43e80a77e2cd7c124c3c99af0825212d6210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee80300000000000069512102a5b3653a92081a36c6dc82b158bf735e6baeec6540c72baf8e9bc30994e2b5f321031b7f4e96e1c67134ed327278665f3aa6298174f3616c2f64c3c99f13e2dad6f8210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aebcf216a8040000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,7 +5154,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5171,7 +5171,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5183,9 +5183,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985206, - "btc_fee": 14794, - "rawtransaction": "02000000000101c9b1da94da5677f54214606e665f026ddc0db4ca66b8444ba5c118898ac8f20c0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000356a331c4a5684e838c7c0e1b45b41408357778f55aa539d150bb18e58af7c30a53e1c006be1834db8cea5986350f769889e6c578c2c36b8052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999985208, + "btc_fee": 14792, + "rawtransaction": "020000000001016b4f8d5d5e4706af3ec137c9e4b56060b806a1e9fd868cc94ad78edd5fbe5b2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000356a33c2f3bb08424d829e812dd640c3c5cceb5d42be3713369f0ca336bd493139dff166992ceb320ff50d7bf07f6328c9d9421162fd38b8052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,8 +5207,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5224,19 +5224,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d23e685118a9aa1d95eeb9184ee52cffe622c41f", + "data": "434e54525052545902000000000000000100000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985499, - "btc_fee": 14501, - "rawtransaction": "0200000000010125b494932ecf09a469705384a091ecfd301da55059cb5b5d0ef580082839b01e0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000306a2e010cd96eaed6eb790f637c01d3009b53eac94894bf07b339a7b9c569e0a0e381cfa6784cf57ad42c471af115ca195bb9052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999985501, + "btc_fee": 14499, + "rawtransaction": "020000000001016c9baf15b5cff8a8f53a884f37ee35dabf9df9d9368a33e5d3976cab01807e2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000306a2e2eaadaac60d765f50622e20b4dc164528d6fcdad61f2d66c697bc0c8ee20beeb4e7708a580014ca437a1efa949f85db9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5246,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d23e685118a9aa1d95eeb9184ee52cffe622c41f07ffff", + "data": "434e54525052545904802941f47986c7001b342b5540421701d38d4dbbee07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986263, - "btc_fee": 13737, - "rawtransaction": "020000000001018cde437296ea40ad07d95a1d495b9f3b88d3d8acc5781ae3deda069d102fc61b0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000236a21a0bd179e5704a9a28d6935876eb15f2fb9e1982da35208d09feb6c3ed9658e7e2e57bc052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999986264, + "btc_fee": 13736, + "rawtransaction": "02000000000101789ef5f7018605cde028bd7405f8294af3f8c20e2715747000e824d290d3b264000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a21bc6362a2a9ffd251e048f455579481ba9346520cca4278d5b4a07ceb7b4a36e75c58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "flags": 7, "memo": "ffff" } @@ -5272,17 +5272,17 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812617, - "btc_fee": 14383, - "rawtransaction": "020000000001018b5d01479a62ca86a1ca11e1d8ef084cc4b91966e6b20bcc4e92c330d8b9455903000000160014d23e685118a9aa1d95eeb9184ee52cffe622c41fffffffff03e803000000000000160014b8d507a4d0f70f5c93ade11600c9fb995deffb5800000000000000000c6a0ac9d3daf6358cd173de6f8925082701000000160014d23e685118a9aa1d95eeb9184ee52cffe622c41f02000000000000", + "btc_change": 4949812619, + "btc_fee": 14381, + "rawtransaction": "0200000000010146ed71733d9b80c1f3fa2538368424a0559d6cd86588c23bc446fb4d04d39a88030000001600142941f47986c7001b342b5540421701d38d4dbbeeffffffff03e803000000000000160014468688a053fb01a934cd35ccb9e6563195a861f400000000000000000c6a0a0282b0c8aa754d27051e8b250827010000001600142941f47986c7001b342b5540421701d38d4dbbee02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5295,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5324,9 +5324,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985441, - "btc_fee": 14559, - "rawtransaction": "02000000000101d2f521c02565cba0b4f666101f18c05908c7b4b6fe1db680a6275980a1ea13210000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000316a2f514e04ba6928e84a4459fb85fcee90acb93b68af885f35f36f1f3f58f6a1b6dabd14710a6cdf6b65dad0145f5b9cbb21b9052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999985443, + "btc_fee": 14557, + "rawtransaction": "02000000000101cd4e0b1f6e52d9fd4e3eb1d9b699a64aad4bd893d39bac63df76fc7f184e388a000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000316a2f14378f53fb75641f8349bd2f53260af876d466ecc8a1411235a28b5c647147240ee532761c236a3e5c06ad5f8a361f23b9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5361,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5377,9 +5377,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987026, - "btc_fee": 12974, - "rawtransaction": "02000000000101e55ad3df38ffb4d00af94e02d5e69c388303f87f5a14e7916f723422cabdb68e0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff020000000000000000166a14b91b2ece05b156b8f5646222c7bf829e7def614452bf052a0100000016001454969806c96797e2ab72768b652edfa6383581a902000000000000", + "btc_change": 4999987028, + "btc_fee": 12972, + "rawtransaction": "02000000000101004e4c29ecfc190dac8de5b0ef636ca860413ae300fa0d84e5852e138da8511f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000166a147376753a3eb63938623d69de6fe5950aca48bca054bf052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,8 +5394,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd:1", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5408,12 +5408,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171326a746673706b667637743739326d6a7736396b32746b6c3563757274716466686c73796e787c353132323535383563326637333030383733373037653530396264366531363833376532396230386237613339336361333338623236386138366337666564643a317c5843507c31303030", + "data": "434e5452505254596462637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c346466663365396366356133616138373732376536646135623036653436323730343533306163656564363161336631303563633836643934353139653730363a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918389, - "btc_fee": 78611, - "rawtransaction": "02000000000106ff50548318facc42620547e73e8600d300f2967344de25a3063c0c112cbacffc0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff26e18d4bb5a5cfe6ca1a42fc1c80bb88229be4ebd0b22a74c38604508fa9b3d90000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff6038c66240ba41aeecc80dea82a4aa20958f73d2d1b4f1d83999b65c0acede4d0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffffd854b50f1afd5448b6b72349dae7d72da93e602e83965b2b17c568bf0fce199c0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff82f355960bf1933ea6d97d238a112b5a59a331cfdc9b56ca6c1d400738391aed0000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff0a4cdc594f79d1e681cbbc0f7529dfcaae7a008e2767779d31eecd8c7796aea60000000016001454969806c96797e2ab72768b652edfa6383581a9ffffffff04e803000000000000695121021fdab2e4a9539378a1e72cf34508360d4d49f23518fe4e31d4cf32d3c999f2c92102b3833983870324b236107ba5eab1c11b4f202c76c6e34309bb13e5cbf728129a21032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aee803000000000000695121031fdab2e4a9539378a1b62da2514b344c4f1bb1605cbe123297c87f86949dfab22102e8c23789db5462e0381520b2afa483461a2b21368cb55947b81ab6c1f47e1dbc21032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553aee8030000000000006951210235dab2e4a9539378a1e52bf4534636002760d62f5abe1567a2f846e4f0ab9f1d2102d9f40fbaec3150d95a2518d098c5b07f29484005bf8d3b758e22d7f9c21d2a1721032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b3553ae356d22fc0600000016001454969806c96797e2ab72768b652edfa6383581a902000002000002000002000002000002000000000000", + "btc_change": 29999918400, + "btc_fee": 78600, + "rawtransaction": "02000000000106af3564cb8ea09212f21b9f6e49375a1d3687e007d2f29b6d119f22421bea810f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffe9f7e13a93079f81d8c8ddd105685291500ec0bf21278eb00bfc292538a9ccbd000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0ceb184edf4ec4437e7ed9ed5cec4a08c8ce7ac1d8ff2b9e376dfaccd99bbe66000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff5b720696f2c9ba6c00b7abdd14aa0aa3fc22564045995c8fbe56f18aabe2786e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff8e73fc9c225a2c1501a755b536a95bd6cecb677a39a5ed1c1a78fcc39a069d5f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff9a2176c9db1ea734a9e9896f5ee17b96727fe9fec3d98036286753e45d4a2aa1000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff04e8030000000000006951210235baf338a7c97717ebd8b6d1e80e5830aa9dc68747d52c25329e988a0e7b025e210323679dc6bfbb1b670ad8c3b964b5fab49fe2f9ab215eee0957197291e1f51cf0210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee8030000000000006951210335baf338a7c97717ebdfb287fb490820aa93c7d008846f323fc6c2cf0e6f42202103646dcb84bee81e301fd6c1e868f5adbed6b7fdaf235cfb4d55192dc3e7a11c79210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee803000000000000695121031fbaf338a7c97717ebd9e382ac40583dcae7a09e0ed169665ef3a0ff380a769b2103525ffcb48add2d007eb5a48d0cc39cdfe5d1cc9f163f9875637d14f7d2902533210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53ae406d22fc060000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5426,18 +5426,18 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": null, "quantity": null }, "name": "utxo", - "data": "434e54525052545964653435636139663438366438616663393833633132346233616362643835383962313439376536366630623533316137623161333839376130323731666361613a307c626372743171326a746673706b667637743739326d6a7736396b32746b6c3563757274716466686c73796e787c7c", + "data": "434e54525052545964303138373534633562376466303361643761353931383832343138616431653861663963353866333436356632626464636336316333386463383331663538633a307c62637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c7c", "btc_in": 4950081000, "btc_out": 3000, - "btc_change": 4950020642, - "btc_fee": 57358, - "rawtransaction": "02000000000104aafc71027a89a3b1a731b5f0667e49b18985bdacb324c183c9afd886f4a95ce4000000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05ffffffffb96780d697fb96bab60e036cb941ac8773d1e2d1a3a538d33d1c37d9fbc0080a010000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05fffffffff19714d0e9acb9ae97941cd4dd67b868902a3d689991712386749a5f6483c6da000000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05ffffffff7c9f23d5d609cb11e9002f7ed1666feb4769afa8dc9da447f266b02ef9962af7010000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be05ffffffff04e803000000000000695121023fe94bece2c988da9f4a8e8dc38ecc4b2b70842086d5f99d431d6f7b541a982921028a45f88c71a9c103a3294a0e47598e2f329960d5d6cfbf1afb2d58f638ee0f0d2103df70a70a69f62631193061d24e141d0949a23e34cc0e902df8bd8135ea51288753aee803000000000000695121033fe94bece2c988da9f16d28e97dd9f457c22df7783d7a8874247253c065a98cc2102d453ad9e62a0c34da16544554400dd6f61963d8192c6e61ca9391de078eb5a492103df70a70a69f62631193061d24e141d0949a23e34cc0e902df8bd8135ea51288753aee8030000000000006951210212e94bece2c988da9f4687ca8f83d50e3144bc16e2ed98fb20245748372baac72103be27cbed12cba53b9611736c766db71857af56b3e6ad8a29ca4c6f94098f3c872103df70a70a69f62631193061d24e141d0949a23e34cc0e902df8bd8135ea51288753ae22520b27010000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be0502000002000002000002000000000000", + "btc_change": 4950020650, + "btc_fee": 57350, + "rawtransaction": "020000000001048cf531c88dc361ccdd2b5f46f3589cafe8d18a418218597aad03dfb7c554870100000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff1d584177b56185f782adb9d05481c216857008828bb3167e131d12bebae0028b01000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff06e849e024a598d1536daf75ff5953121e5e8d2c5dafef02d8c292a5f5a1871800000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff360bd0ba3e48925f52bb6c43354c1037f8aab68dc31a18134c4875e1a75d65c901000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff04e80300000000000069512102053093adc899e9ecb3361597ae6443b639f4829b67d6c45e589dadf7db48e62621034d0b1cf8e3471205a9707f713f346d0afff091d96f5fb4d1f0c9c2ff36cae5ee2102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512103053093adc899e9ecb331169ef2304eb16ba7d594608ac4115b9ae8e2df00ef4a21034c054bb4e60a000df52d322628797f07a6e4978b6f0da68ef599ceea3397ae352102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512102283093adc899e9ecb3611092a13200fe26c1e0ac03b0f46d39f99a96ee71d7ce210375332eccd27f736198154710590d0e3fc796a2ed596ad2e392ada69c55fcd4302102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653ae2a520b2701000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb302000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5453,8 +5453,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -5462,16 +5462,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730229798, - "last_issuance_block_time": 1730229798, + "first_issuance_block_time": 1730280364, + "last_issuance_block_time": 1730280364, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", - "owner": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "owner": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "divisible": true, "locked": false, "supply": 100000000000, @@ -5479,16 +5479,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730229777, - "last_issuance_block_time": 1730229777, + "first_issuance_block_time": 1730280348, + "last_issuance_block_time": 1730280348, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -5496,16 +5496,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730229605, - "last_issuance_block_time": 1730229622, + "first_issuance_block_time": 1730280185, + "last_issuance_block_time": 1730280192, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "owner": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "issuer": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "owner": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "divisible": true, "locked": false, "supply": 100000000000, @@ -5513,16 +5513,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730229602, - "last_issuance_block_time": 1730229602, + "first_issuance_block_time": 1730280182, + "last_issuance_block_time": 1730280182, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 100000000000, @@ -5530,8 +5530,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730229563, - "last_issuance_block_time": 1730229563, + "first_issuance_block_time": 1730280125, + "last_issuance_block_time": 1730280125, "supply_normalized": "1000.00000000" } ], @@ -5543,8 +5543,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "owner": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false, "supply": 10000000000, @@ -5552,15 +5552,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730229442, - "last_issuance_block_time": 1730229454, + "first_issuance_block_time": 1730280004, + "last_issuance_block_time": 1730280017, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5568,14 +5568,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5583,7 +5583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5596,7 +5596,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5618,9 +5618,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5635,7 +5635,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730229640, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5661,9 +5661,9 @@ }, { "tx_index": 52, - "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5678,7 +5678,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5704,9 +5704,9 @@ }, { "tx_index": 58, - "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5721,7 +5721,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730229746, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5747,9 +5747,9 @@ }, { "tx_index": 60, - "tx_hash": "1f7c2399023df787037e99a1ef620c84dfd40a82cb31a69ec21a024fcf35b412", + "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", "block_index": 194, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5764,7 +5764,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229759, + "block_time": 1730280330, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5790,9 +5790,9 @@ }, { "tx_index": 75, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5807,7 +5807,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5838,13 +5838,13 @@ "/v2/assets//matches": { "result": [ { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", - "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5858,7 +5858,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730229732, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5878,13 +5878,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5898,7 +5898,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730229729, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5918,13 +5918,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", "tx0_index": 50, - "tx0_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 51, - "tx1_hash": "a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5938,7 +5938,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730229640, + "block_time": 1730280219, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5965,20 +5965,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "event": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229762, + "block_time": 1730280333, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -5986,20 +5986,20 @@ }, { "block_index": 125, - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "a4d17cd4750d503765ddfca8766abc611f86a6f3efd1eccbe8bb6d853cba8383", + "event": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229454, + "block_time": 1730280017, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6007,20 +6007,20 @@ }, { "block_index": 124, - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", + "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229450, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6028,20 +6028,20 @@ }, { "block_index": 124, - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", + "event": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229450, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6053,16 +6053,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", + "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229450, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6080,12 +6080,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -6097,16 +6097,16 @@ }, { "block_index": 208, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -6118,16 +6118,16 @@ }, { "block_index": 207, - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -6139,16 +6139,16 @@ }, { "block_index": 206, - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", + "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229815, + "block_time": 1730280389, "asset_info": { "divisible": true, "asset_longname": null, @@ -6160,16 +6160,16 @@ }, { "block_index": 205, - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -6192,14 +6192,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "a4d17cd4750d503765ddfca8766abc611f86a6f3efd1eccbe8bb6d853cba8383", + "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6214,20 +6214,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730229454, + "block_time": 1730280017, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", + "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6242,20 +6242,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730229450, + "block_time": 1730280013, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6270,20 +6270,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730229446, + "block_time": 1730280008, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -6298,7 +6298,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730229442, + "block_time": 1730280004, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6310,10 +6310,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6321,7 +6321,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,10 +6334,10 @@ }, { "tx_index": 74, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6345,7 +6345,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -6358,10 +6358,10 @@ }, { "tx_index": 73, - "tx_hash": "073d8b84f42aebcda38d91affa3e42ba87757d3f8f433ddf59e67b18472f5023", + "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", "block_index": 206, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6369,7 +6369,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730229815, + "block_time": 1730280389, "asset_info": { "divisible": true, "asset_longname": null, @@ -6382,10 +6382,10 @@ }, { "tx_index": 72, - "tx_hash": "51e673402ffa40d8d6c89fd34c5c1defe448e2085d7291e57557159743fe7114", + "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", "block_index": 205, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6393,7 +6393,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730229811, + "block_time": 1730280385, "asset_info": { "divisible": true, "asset_longname": null, @@ -6406,10 +6406,10 @@ }, { "tx_index": 71, - "tx_hash": "477815bfc054c0449a1d0cae7e418ad1396f7facbcb11748ddb6fb410d230faf", + "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", "block_index": 204, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6417,7 +6417,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730229807, + "block_time": 1730280372, "asset_info": { "divisible": true, "asset_longname": null, @@ -6436,9 +6436,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6447,7 +6447,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6457,7 +6457,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6473,9 +6473,9 @@ }, { "tx_index": 29, - "tx_hash": "922fee62fc5e8a99128251addf50267b4394d61a23d61ca0cbbcfeee4bc8c194", + "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", "block_index": 142, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6484,7 +6484,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6494,7 +6494,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229521, + "block_time": 1730280081, "asset_info": { "divisible": true, "asset_longname": null, @@ -6510,9 +6510,9 @@ }, { "tx_index": 30, - "tx_hash": "67543ff9543653803b7c651800146545d0443ab6089f895c32c1de386a0ffc8c", + "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", "block_index": 150, - "source": "mmBjvSYsKyjxt5n5eFsTuEQTi18zCHQmXV", + "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6520,10 +6520,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "548129c5e76f34ba949687da3939d13a0553d844d35a1c4732b0505747169b9d", - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6531,7 +6531,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229572, + "block_time": 1730280143, "asset_info": { "divisible": true, "asset_longname": null, @@ -6547,18 +6547,18 @@ }, { "tx_index": 33, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6568,7 +6568,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -6589,9 +6589,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6600,7 +6600,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6610,7 +6610,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6638,7 +6638,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6646,7 +6646,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6655,7 +6655,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6663,7 +6663,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6672,7 +6672,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6680,7 +6680,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6689,7 +6689,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6704,27 +6704,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6739,7 +6739,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -6753,27 +6753,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "dac683645f9a748623719199683d2a9068b867ddd41c9497aeb9ace9d01497f1", + "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", "block_index": 147, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "destination": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6788,7 +6788,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730229559, + "block_time": 1730280121, "asset_info": { "divisible": true, "asset_longname": null, @@ -6802,19 +6802,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6822,7 +6822,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6837,7 +6837,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -6851,19 +6851,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6871,7 +6871,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6886,7 +6886,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6909,10 +6909,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6937,7 +6937,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730229454, + "block_time": 1730280017, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6955,22 +6955,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "a4d17cd4750d503765ddfca8766abc611f86a6f3efd1eccbe8bb6d853cba8383", + "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", - "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229454, + "block_time": 1730280017, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -6979,22 +6979,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d", + "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", - "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229450, + "block_time": 1730280013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7003,22 +7003,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229446, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7033,22 +7033,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "f7d596551b1c6f673a07a752096544ec09ae4ec094e740732f9bbc04ce333be4", + "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229446, + "block_time": 1730280008, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -7064,9 +7064,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7081,7 +7081,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730229640, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7107,9 +7107,9 @@ }, { "tx_index": 53, - "tx_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "block_index": 188, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7124,7 +7124,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730229729, + "block_time": 1730280286, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7150,9 +7150,9 @@ }, { "tx_index": 55, - "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "block_index": 189, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7167,7 +7167,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229732, + "block_time": 1730280290, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7193,9 +7193,9 @@ }, { "tx_index": 58, - "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7210,7 +7210,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730229746, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7236,9 +7236,9 @@ }, { "tx_index": 60, - "tx_hash": "1f7c2399023df787037e99a1ef620c84dfd40a82cb31a69ec21a024fcf35b412", + "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", "block_index": 194, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7253,7 +7253,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229759, + "block_time": 1730280330, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7284,9 +7284,9 @@ "/v2/orders/": { "result": { "tx_index": 75, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7301,7 +7301,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7329,13 +7329,13 @@ "/v2/orders//matches": { "result": [ { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", - "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7349,7 +7349,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730229732, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7369,13 +7369,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7389,7 +7389,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730229729, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7416,15 +7416,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "btc_amount": 2000, - "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "status": "valid", "confirmed": true, - "block_time": 1730229729, + "block_time": 1730280286, "btc_amount_normalized": "0.00002000" } ], @@ -7435,9 +7435,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "block_index": 188, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7455,7 +7455,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730229729, + "block_time": 1730280286, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7481,9 +7481,9 @@ }, { "tx_index": 55, - "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "block_index": 189, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7501,7 +7501,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730229732, + "block_time": 1730280290, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7527,9 +7527,9 @@ }, { "tx_index": 50, - "tx_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", + "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", "block_index": 185, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7547,7 +7547,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730229640, + "block_time": 1730280219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7573,9 +7573,9 @@ }, { "tx_index": 52, - "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "block_index": 208, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7593,7 +7593,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7619,9 +7619,9 @@ }, { "tx_index": 58, - "tx_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", + "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", "block_index": 193, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7639,7 +7639,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730229746, + "block_time": 1730280315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7670,13 +7670,13 @@ "/v2/orders///matches": { "result": [ { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", - "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7693,7 +7693,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730229732, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7713,13 +7713,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7736,7 +7736,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730229729, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7756,13 +7756,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", "tx0_index": 50, - "tx0_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 51, - "tx1_hash": "a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7779,7 +7779,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730229640, + "block_time": 1730280219, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7805,13 +7805,13 @@ "/v2/order_matches": { "result": [ { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 55, - "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", - "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7825,7 +7825,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730229732, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,13 +7845,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "tx0_index": 52, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 53, - "tx1_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7865,7 +7865,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730229729, + "block_time": 1730280286, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7885,13 +7885,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", + "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", "tx0_index": 50, - "tx0_hash": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx1_index": 51, - "tx1_hash": "a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7905,7 +7905,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730229640, + "block_time": 1730280219, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7950,66 +7950,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "eabc59e8fac012bcdbbbaeb0131549c4caee3a92ff5b81eb2dc8ac9ffa4f3a63", + "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", "block_index": 121, - "source": "bcrt1qyvc2f0n2uhvxwjeyf86madxepfnuttz25ah07v", + "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730229438, + "block_time": 1730279999, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "25e71ce5e629ffa8e1623e95152083bb7cd51468af2b81fdaf1dfc4b34df0b0d", + "tx_hash": "0b1478514977a79b0c7a83efb19c79c80f4410d17978d7a596c14af640211641", "block_index": 120, - "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730229435, + "block_time": 1730279996, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "f88f55d6363d84a06cb67938e2e4e3b80381bbe139217dcfa9450146a9cc2e27", + "tx_hash": "5f172e1ffbe2e36ae90817805b9283dede9434d602abc63db47270cecf97a892", "block_index": 119, - "source": "bcrt1qnyu4f05tnnnxxy0l770e8kdvlwe4nccljwgdne", + "source": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730229432, + "block_time": 1730279993, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f345948c345e09a2c70f68a1cd26ddb23a3d18f29771a85c57d384c1f60d9fce", + "tx_hash": "345a49d90706762a3bbde9bd73527af10174277aa1abe8b552d7efdccf0db513", "block_index": 118, - "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730229429, + "block_time": 1730279990, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "725c0dad81daa9ef8605d5fc4d7456d494662ebfc6063fd0cf8c508a22fdbee3", + "tx_hash": "023424b7c327b448e64b75c5c93bf556933503a5eb5ad674bee59fb68a3d5284", "block_index": 117, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730229425, + "block_time": 1730279986, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8021,9 +8021,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8032,7 +8032,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8042,7 +8042,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -8058,9 +8058,9 @@ }, { "tx_index": 29, - "tx_hash": "922fee62fc5e8a99128251addf50267b4394d61a23d61ca0cbbcfeee4bc8c194", + "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", "block_index": 142, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8069,7 +8069,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8079,7 +8079,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229521, + "block_time": 1730280081, "asset_info": { "divisible": true, "asset_longname": null, @@ -8095,9 +8095,9 @@ }, { "tx_index": 30, - "tx_hash": "67543ff9543653803b7c651800146545d0443ab6089f895c32c1de386a0ffc8c", + "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", "block_index": 150, - "source": "mmBjvSYsKyjxt5n5eFsTuEQTi18zCHQmXV", + "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8105,10 +8105,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "548129c5e76f34ba949687da3939d13a0553d844d35a1c4732b0505747169b9d", - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8116,7 +8116,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229572, + "block_time": 1730280143, "asset_info": { "divisible": true, "asset_longname": null, @@ -8132,9 +8132,9 @@ }, { "tx_index": 63, - "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8143,7 +8143,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8153,11 +8153,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229773, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8169,18 +8169,18 @@ }, { "tx_index": 33, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8190,7 +8190,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -8211,9 +8211,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8222,7 +8222,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8232,7 +8232,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -8252,19 +8252,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8272,7 +8272,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8287,7 +8287,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -8301,19 +8301,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8321,7 +8321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8336,7 +8336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8355,20 +8355,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730229591, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8389,20 +8389,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730229591, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8425,12 +8425,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", + "event": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "tx_index": 42, - "utxo": "e47a1a355f021a7b22f04a5299bb3c186a3a49e02bcaf45f4797da9280728e11:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "utxo": "d3ffca35d1e066c97ab497a5e4d1a8c4e7cda41298206ddac9eca7bd0d7ad2ad:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "confirmed": true, - "block_time": 1730229591, + "block_time": 1730280161, "asset_info": { "divisible": true, "asset_longname": null, @@ -8451,27 +8451,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "block_time": 1730229832 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null, "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 680, @@ -8480,14 +8480,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -8498,9 +8498,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 679, @@ -8509,9 +8509,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -8521,24 +8521,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -8548,9 +8548,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 677, @@ -8562,15 +8562,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "block_time": 1730229832 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null, "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } }, "/v2/events/counts": { @@ -8605,16 +8605,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,9 +8624,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 676, @@ -8636,12 +8636,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -8651,9 +8651,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 673, @@ -8663,39 +8663,39 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", - "utxo_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "block_time": 1730229832, + "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730229823, + "block_time": 1730280398, "asset_info": { "divisible": true, "asset_longname": null, @@ -8705,24 +8705,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -8732,9 +8732,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_time": 1730229819 + "block_time": 1730280393 } ], "next_cursor": 651, @@ -8751,27 +8751,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8786,7 +8786,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -8800,19 +8800,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "c1c65c5c17472c1c9f046bd3b7f1afc6ac6e09aea2615c2a9693c5d8cba12694", + "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8820,7 +8820,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8835,11 +8835,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229773, + "block_time": 1730280345, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -8849,27 +8849,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "dac683645f9a748623719199683d2a9068b867ddd41c9497aeb9ace9d01497f1", + "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", "block_index": 147, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "destination": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "last_status_tx_hash": null, - "origin": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8884,7 +8884,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730229559, + "block_time": 1730280121, "asset_info": { "divisible": true, "asset_longname": null, @@ -8898,19 +8898,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "2551e630d264373eb69884185e3d6df6b944f07c69d46013ddf7af1ec1fc1ea3", + "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8918,7 +8918,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8933,7 +8933,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229517, + "block_time": 1730280077, "asset_info": { "divisible": true, "asset_longname": null, @@ -8947,19 +8947,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8361a0fa98d671c7dc927b03e37c109c89d3f52da15a91ea43c775e529839009", + "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", "block_index": 140, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c2f2999396e2a99f882f35b3d2f1f4f572233f8fecd83942264c9b7e3981419f", + "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8967,7 +8967,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8982,7 +8982,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730229513, + "block_time": 1730280074, "asset_info": { "divisible": true, "asset_longname": null, @@ -9001,10 +9001,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9012,7 +9012,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -9025,10 +9025,10 @@ }, { "tx_index": 76, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9036,11 +9036,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9049,10 +9049,10 @@ }, { "tx_index": 74, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9060,7 +9060,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -9073,10 +9073,10 @@ }, { "tx_index": 74, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9084,11 +9084,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9097,10 +9097,10 @@ }, { "tx_index": 74, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9108,11 +9108,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9127,14 +9127,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -9149,20 +9149,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229798, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "4e2c188b4664107d870d6c0056df8c1d4951e1066bb6f02a3331695e50ce4aa5", + "tx_hash": "26c29628ce5a0038fb490dc72d66e5d1a13bced028d7074e9addd843c3641d15", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", - "issuer": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "transfer": false, "callable": false, "call_date": 0, @@ -9177,20 +9177,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229777, + "block_time": 1730280348, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3aefecca7ae7cb0ef45bedb5b20ff0b0b368ede13d98b50b5001d3552fb577ae", + "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -9205,20 +9205,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229626, + "block_time": 1730280196, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "66f850a9c5aae8f9ada0fbd4ce331d5e252fe1fc78929a6a049abba0d3b6ac4d", + "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -9233,20 +9233,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730229622, + "block_time": 1730280192, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "179e4b70afe0a0dbaad35c379d9b0c63165c6fd7fe6dab18938a871139c1580f", + "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -9261,7 +9261,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229619, + "block_time": 1730280188, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9272,14 +9272,14 @@ "/v2/issuances/": { "result": { "tx_index": 69, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "transfer": false, "callable": false, "call_date": 0, @@ -9294,7 +9294,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730229798, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9303,16 +9303,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730229762, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -9323,16 +9323,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730229762, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" } ], @@ -9343,9 +9343,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9353,14 +9353,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730229505, + "block_time": 1730280065, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "aaa851e17fa9fe5b1991853671831d967387d0ffbfc19686c1443bfe56d1fbd3", + "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", "block_index": 137, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9368,7 +9368,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730229501, + "block_time": 1730280062, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9378,9 +9378,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9388,17 +9388,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730229505, + "block_time": 1730280065, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9423,7 +9423,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730229594, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9432,10 +9432,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9460,7 +9460,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730229492, + "block_time": 1730280054, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9472,10 +9472,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9500,7 +9500,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730229477, + "block_time": 1730280038, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9512,10 +9512,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", + "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9540,7 +9540,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730229473, + "block_time": 1730280035, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9552,10 +9552,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "630c89255eab1e05cf694ce5db93666d0b457bd8b617d1a26e027d83ed68f2cb", + "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9580,7 +9580,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730229454, + "block_time": 1730280017, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9598,22 +9598,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229497, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9622,22 +9622,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fc5a2747e2459e3c380b8ee5df69f01b259f6165c905bd764f04d275f8f7119d", + "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229489, + "block_time": 1730280050, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9646,22 +9646,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "c8948fb12a404372e0abccc0024cf0f5644862c837d265a5baaad44dd86f90bf", + "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229485, + "block_time": 1730280046, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9670,22 +9670,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6f9346b193a425776a5f2e7217269c5e4a659967ce5e85db09bbb5ed8529f26e", + "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b5900de75edc5b214acb90cdeffd9880c79e0931e9ec62ba52d2bc0448ff76dc", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229482, + "block_time": 1730280043, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9694,22 +9694,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e5e5b7cf88411866e40386ade8e12f4a18f6c7f7f6227cbd5b59744a5a541f6a", + "tx_hash": "38ff72016b2ca16ae13e5a24421d00ae108c87bfb4d708458ecc34a4aa529ecc", "tx_index": 17, "block_index": 129, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", - "fairminter_tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229469, + "block_time": 1730280031, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9723,22 +9723,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730229497, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -9755,8 +9755,8 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "9f7e53f41ac2cec06093e3ee4410cc90599d8e2c9958674d83e2f5c55339e23a", - "address": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658" + "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83", + "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" }, { "vout": 0, @@ -9764,8 +9764,8 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "2bdf25feea9dd4ea6a6fa4893efb049586c87bf11d85d4f21cf72fd37fb607c3", - "address": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658" + "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e", + "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" }, { "vout": 2, @@ -9773,8 +9773,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5", - "address": "bcrt1qnyu4f05tnnnxxy0l770e8kdvlwe4nccljwgdne" + "txid": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced", + "address": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05" } ], "next_cursor": null, @@ -9783,28 +9783,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "ce9138a3904c238caa24730ebf90b60c25a1fe1e31f01b86315f0e67632d8715" + "tx_hash": "3b3debe4cbd52a33fc663bf81ac587415f8e97fd8ed793540d121fd65b6bad10" }, { - "tx_hash": "aac69b81d5602acd0abd892df3aa357dec6f9fea50a7b541c583acd30cb7401d" + "tx_hash": "cecd905107c86593aea646828933541f9f84e3ef3e791cb6d2d3a506a03b3f29" }, { - "tx_hash": "bb72d180e37eee7270f1174b18c41ea1816c9969e44eac88bacc6767ca0b4e20" + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a" }, { - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735" + "tx_hash": "5c5875eace29b84c50833eeee489b7cb60b942abcfe251f269b4ff65988eea9c" }, { - "tx_hash": "d29376555c844bbb6f3f89da8d3fb622ee96b22094ba72d62219474c15752c59" + "tx_hash": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb" }, { - "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71" + "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd" }, { - "tx_hash": "27b4f34e5aff53045320ee5a445f2fb4984ed39b5723a201819b824ff280c9b7" + "tx_hash": "3e96c423b69232002770982e6d81051d87566aa62470b2f99a7f52470fc7eddf" }, { - "tx_hash": "fb346c877c0e3de8a12c9cdba9933825aa1df84d5b622c69879ad068e46bdbc3" + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" } ], "next_cursor": null, @@ -9812,8 +9812,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "eb55259c02c2a62ffe3c651c87f1b1e2938bb8f9a701026d14f054872b08255b" + "block_index": 9, + "tx_hash": "6eb1328d173773610e897e7f1b8c48e48a895f3484db23933f5eacd24876e8ef" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9824,7 +9824,7 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "9f7e53f41ac2cec06093e3ee4410cc90599d8e2c9958674d83e2f5c55339e23a" + "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83" }, { "vout": 0, @@ -9832,20 +9832,20 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "2bdf25feea9dd4ea6a6fa4893efb049586c87bf11d85d4f21cf72fd37fb607c3" + "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "032ec12ae596c1c28fb99ec9c9688f6ebeb43ac35ab656f470d93c37b9333e5b35" + "result": "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101e5bea3cc4d693d5a5c1293d6d24e0fcabec95cc06e1d495567219054c2dfc4550100000000ffffffff03e8030000000000001600149a0e4ffe2fbd4cda27fde8e8802b2dc2f077be0500000000000000000c6a0a3558b838e0041a484273eb140927010000001600145f6e14d97767fadff16706403231bc2ee16c602e0247304402206cb72be4607bc89f707f5815b635340f09cbba19d93daf721b1a243e2433698602202f4a33d4effc4b9d758a5509621c509257a7e67351fdc6c1f17d8ecc0b99f047012103198a57d062e0191161bd85a956fc618164494573acd2577032fa76108962aa7d00000000" + "result": "02000000000101edcccdc71284344cd9305f3d3e87d5a74a4f0c266cc1221f3fdd5f4f995c4b430100000000ffffffff03e803000000000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb300000000000000000c6a0ae11c2c4caf70aedbf62ceb140927010000001600147788af5d7ab83c917d033b5012802b3fa7e5584b02473044022064c94a035eb9e92ba5058e032970b5c16759761a5b17fabd6ee51b4d7eae3928022063dcbd95e99c891e44aab012b353684d940c104e42670efbd06da34217185d390121036744fd5ae766411b2fa9fc805037c4a8a5f8f83e3b086dced538ec17832742c900000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58709 + "result": 58701 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9865,27 +9865,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77 }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "quantity": 10000, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, "asset_info": { "divisible": true, @@ -9896,22 +9896,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -9921,22 +9921,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "block_index": 209, - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -9946,30 +9946,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730229836.055731, + "block_time": 1730280415.8124557, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "destination": "", "fee": 10000, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, - "utxos_info": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d:1", + "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -9983,7 +9983,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -9992,19 +9992,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -10014,7 +10014,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -10023,27 +10023,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77 }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "quantity": 10000, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, "asset_info": { "divisible": true, @@ -10054,22 +10054,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "CREDIT", "params": { - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -10079,22 +10079,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "asset": "XCP", "block_index": 209, - "event": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -10104,30 +10104,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 }, { - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730229836.055731, + "block_time": 1730280415.8124557, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b97639c302c98e5964a011570b6551e311da0e1", + "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", "destination": "", "fee": 10000, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", - "tx_hash": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", "tx_index": 77, - "utxos_info": "17b9e4928142f2903c3d2f70c44d97d12716104be875fcc83a7749028c2f131d:1", + "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "memo": null, "asset_info": { "divisible": true, @@ -10141,7 +10141,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730229836.055731 + "timestamp": 1730280415.8124557 } ], "next_cursor": null, @@ -10163,15 +10163,15 @@ "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", "block_index": 209, - "block_time": 1730229832, + "block_time": 1730280411, "difficulty": 545259519, - "previous_block_hash": "282e84100e1018126e0473d25d9d3d1aae0c4b09d863a3001391c3a40d7e124d" + "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c" }, "tx_hash": null, "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 660, @@ -10183,17 +10183,17 @@ "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4629ba149f10f082b7706bf696df2b109942f642c267341be71a21101049c386", + "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", "block_index": 209, - "block_time": 1730229832, + "block_time": 1730280411, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "fee": 0, - "source": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "utxos_info": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1 e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10203,9 +10203,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 661, @@ -10219,16 +10219,16 @@ "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "out_index": 0, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 565, @@ -10241,15 +10241,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "283b9798a420dd2ca2b5b4b556c9678f2573452ea0d8bc6ca363f2b991ea98bf", - "messages_hash": "4032fef02b6a9d7535ce34e501840702aaac108b19c745556430a9699c6ce581", + "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", + "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", "transaction_count": 1, - "txlist_hash": "751cde6fb05a8c86dfd189ac242af67a6b76ccf75729434285a6c7a225f1bf75", - "block_time": 1730229832 + "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", + "block_time": 1730280411 }, "tx_hash": null, "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 668, @@ -10262,12 +10262,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76 }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 667, @@ -10283,12 +10283,12 @@ "address": null, "asset": "XCP", "block_index": 209, - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 2000000000, "tx_index": 76, - "utxo": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", - "utxo_address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", - "block_time": 1730229832, + "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -10298,9 +10298,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 672, @@ -10312,16 +10312,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -10331,9 +10331,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 676, @@ -10347,26 +10347,26 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "memo": null, "quantity": 1000, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", - "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "tx_index": 70, - "block_time": 1730229803, + "block_time": 1730280368, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f393dea055fcaba119a2b8319f4b92921b38a648dcdd8cc9bda60a184c6d8e26", + "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", "block_index": 203, - "block_time": 1730229803 + "block_time": 1730280368 } ], "next_cursor": 505, @@ -10380,15 +10380,15 @@ "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "status": "valid", - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "tx_index": 74, - "block_time": 1730229819, + "block_time": 1730280393, "asset_info": { "divisible": true, "asset_longname": null, @@ -10398,9 +10398,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5945b9d830c3924ecc0bb2e66619b9c44c08efd8e111caa186ca629a47015d8b", + "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", "block_index": 207, - "block_time": 1730229819 + "block_time": 1730280393 } ], "next_cursor": 656, @@ -10423,20 +10423,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "status": "valid", - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "tx_index": 61, - "block_time": 1730229762, + "block_time": 1730280333, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e1b56de263a9fb4f3a5ebcea03df489c6c0dce809a0720e0ab88845da0b53735", + "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", "block_index": 195, - "block_time": 1730229762 + "block_time": 1730280333 } ], "next_cursor": null, @@ -10453,15 +10453,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", - "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "tx_index": 42, - "block_time": 1730229591, + "block_time": 1730280161, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -10475,9 +10475,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "a9b70e65284995eb067cc85cad353d9eb814fa0490ee99f0bf1fba842305b2dd", + "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", "block_index": 155, - "block_time": 1730229591 + "block_time": 1730280161 } ], "next_cursor": null, @@ -10498,11 +10498,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730229798 + "block_time": 1730280364 }, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_time": 1730229798 + "block_time": 1730280364 } ], "next_cursor": 574, @@ -10525,22 +10525,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", "transfer": false, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "tx_index": 69, - "block_time": 1730229798, + "block_time": 1730280364, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "f2166b0bde4765365958838ddef0956b3678a9b843bd516cd10cae9c154020ef", + "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", "block_index": 202, - "block_time": 1730229798 + "block_time": 1730280364 } ], "next_cursor": 575, @@ -10555,12 +10555,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qhr2s0fxs7u84eyaduytqpj0mn9w7l76cuw4h3k", + "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", "status": "valid", "tag": "64657374726f79", - "tx_hash": "47db3f850e7bc5e755c1653917b02a07aed9c1e6776091038c1ea3ece4b7ba53", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "tx_index": 62, - "block_time": 1730229766, + "block_time": 1730280337, "asset_info": { "divisible": true, "asset_longname": null, @@ -10570,9 +10570,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "47db3f850e7bc5e755c1653917b02a07aed9c1e6776091038c1ea3ece4b7ba53", + "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", "block_index": 196, - "block_time": 1730229766 + "block_time": 1730280337 } ], "next_cursor": 157, @@ -10597,11 +10597,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "open", - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "tx_index": 75, - "block_time": 1730229823, + "block_time": 1730280398, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10625,9 +10625,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 } ], "next_cursor": 536, @@ -10645,20 +10645,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", + "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", "tx0_index": 52, - "tx1_address": "bcrt1qdwtk88ps9jvwt9j2qy2hpdj4rcc3mg8ppfzhq0", + "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "tx1_index": 55, - "block_time": 1730229732, + "block_time": 1730280290, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10677,9 +10677,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9182ad5ba71b083226607123b08b07011c538588184ac6776cd74699dc8ebb71", + "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", "block_index": 189, - "block_time": 1730229732 + "block_time": 1730280290 } ], "next_cursor": 482, @@ -10692,11 +10692,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b" + "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413" }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 } ], "next_cursor": 528, @@ -10709,11 +10709,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54" + "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932" }, - "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_time": 1730229729 + "block_time": 1730280286 } ], "next_cursor": null, @@ -10725,13 +10725,13 @@ "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", - "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", + "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", "status": "completed" }, - "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_time": 1730229729 + "block_time": 1730280286 } ], "next_cursor": 461, @@ -10745,18 +10745,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "order_match_id": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b_27d192be2cbcc8354732955a6c0d2f80cd48f858e93fde379acd86b596259b54", - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "status": "valid", - "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "tx_index": 54, - "block_time": 1730229729, + "block_time": 1730280286, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "09d4b9e7034680e4b056bf394557742b75f5bf2d76382bc2de7f74eb41412559", + "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", "block_index": 188, - "block_time": 1730229729 + "block_time": 1730280286 } ], "next_cursor": null, @@ -10769,16 +10769,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "f3b4d053272c3dbc9e9bb0054dcd167449414e56e06ebec2bf5259090e4fb5ac", - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": "valid", - "tx_hash": "78878b916084c127bb669a856aaa79b24764f30e7e00cb72cb1a71a7cb346075", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "tx_index": 59, - "block_time": 1730229746 + "block_time": 1730280315 }, - "tx_hash": "78878b916084c127bb669a856aaa79b24764f30e7e00cb72cb1a71a7cb346075", + "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", "block_index": 193, - "block_time": 1730229746 + "block_time": 1730280315 } ], "next_cursor": null, @@ -10791,13 +10791,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "6aac7dd93c40a115f6eebe047b14d4838d68c0d0e43bedecb271757eed8cf73b", - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "block_time": 1730229823 + "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_time": 1730280398 }, - "tx_hash": "51225585c2f7300873707e509bd6e16837e29b08b7a393ca338b268a86c7fedd", + "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", "block_index": 208, - "block_time": 1730229823 + "block_time": 1730280398 } ], "next_cursor": 469, @@ -10810,14 +10810,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "a1089666debd7683e0a77f41aea81a3b3eaf4e06dde0923b6aeb81f7e1756586_a2d35813da50afacee27629a6fe2b311c7b11f7a702adc76eb1f32ad83f9a764", - "tx0_address": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "tx1_address": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", - "block_time": 1730229640 + "order_match_id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_time": 1730280219 }, "tx_hash": null, "block_index": 185, - "block_time": 1730229640 + "block_time": 1730280219 } ], "next_cursor": null, @@ -10836,17 +10836,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "satoshirate": 1, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "status": 0, - "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "tx_index": 63, - "block_time": 1730229769, + "block_time": 1730280341, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -10855,9 +10855,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "4701bb132cf1b23f5690345af312e5b241f5c803d37d8bbae4626ec6f3fcdc2a", + "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", "block_index": 197, - "block_time": 1730229769 + "block_time": 1730280341 } ], "next_cursor": 272, @@ -10872,9 +10872,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": 0, - "tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", + "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", "asset_info": { "divisible": true, "asset_longname": null, @@ -10884,9 +10884,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 567, @@ -10900,13 +10900,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mmBjvSYsKyjxt5n5eFsTuEQTi18zCHQmXV", + "destination": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", "dispense_quantity": 10, - "dispenser_tx_hash": "67543ff9543653803b7c651800146545d0443ab6089f895c32c1de386a0ffc8c", - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", - "tx_hash": "71ee88545f52ccd037b0619359d91f7abdac2c1adcc94354aabdc5a0a0aae1ef", + "dispenser_tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", "tx_index": 31, - "block_time": 1730229539, + "block_time": 1730280100, "asset_info": { "divisible": true, "asset_longname": null, @@ -10916,9 +10916,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "71ee88545f52ccd037b0619359d91f7abdac2c1adcc94354aabdc5a0a0aae1ef", + "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", "block_index": 144, - "block_time": 1730229539 + "block_time": 1730280100 } ], "next_cursor": null, @@ -10933,14 +10933,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qtahpfkthvladlut8qeqryvdu9mskccpw60lnlj", + "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0a08c0fbd9371c3dd338a5a3d1e2d17387ac41b96c030eb6ba96fb97d68067b9", - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -10951,9 +10951,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 568, @@ -10968,19 +10968,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qng8yll30h4xd5flaar5gq2edctc800s9e827m3", + "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "tx_index": 25, "value": 66600.0, - "block_time": 1730229505, + "block_time": 1730280065, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "ab580724245936f367f34a5cceda749daba9919ffccbe19f76ef87002de56387", + "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", "block_index": 138, - "block_time": 1730229505 + "block_time": 1730280065 } ], "next_cursor": 213, @@ -11011,12 +11011,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "start_block": 0, "status": "open", - "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "tx_index": 43, - "block_time": 1730229594, + "block_time": 1730280175, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11024,9 +11024,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "8fd93ec62cb73effa340c4a5f3ac0d475b883356323245e90c1f631a8f1e59d5", + "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", "block_index": 156, - "block_time": 1730229594 + "block_time": 1730280175 } ], "next_cursor": 196, @@ -11039,11 +11039,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c30f1d4a6769238ba05d98e8eabe244e94c7c01b09de002e3fc0583c9b8e4639" + "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6" }, "tx_hash": null, "block_index": 130, - "block_time": 1730229473 + "block_time": 1730280035 } ], "next_cursor": 110, @@ -11059,17 +11059,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b4e66af4601a62c107b67c68746efddffe1f906fced81e2734b420b3fba1332c", + "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", "paid_quantity": 34, - "source": "bcrt1q6glxs5gc4x4pm90whyvyaefvllnz93qlnyema8", + "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", "status": "valid", - "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "tx_index": 23, - "block_time": 1730229497, + "block_time": 1730280059, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, @@ -11077,9 +11077,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "76bcc8d8b4c65e3802bb7943493606688882bcadf9fb95a555d7d12c9ef4be75", + "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", "block_index": 136, - "block_time": 1730229497 + "block_time": 1730280059 } ], "next_cursor": 190, @@ -11093,28 +11093,28 @@ "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "3cf1fff02d3ca2b77ef4fec82da3a0705a0ed68267e54e54fc08973c1236c8aa:0", + "destination": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "status": "valid", - "tx_hash": "3cf1fff02d3ca2b77ef4fec82da3a0705a0ed68267e54e54fc08973c1236c8aa", + "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", "tx_index": 66, - "block_time": 1730229781, + "block_time": 1730280351, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnhak0ynxlgy8dxf98r5vkqdu4f25jhwkth0658", + "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3cf1fff02d3ca2b77ef4fec82da3a0705a0ed68267e54e54fc08973c1236c8aa", + "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", "block_index": 200, - "block_time": 1730229781 + "block_time": 1730280351 } ], "next_cursor": 327, @@ -11128,28 +11128,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qkfmf74gtrdthvlfyjmd0zzueay0xfzf9h5vjex", + "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "fb346c877c0e3de8a12c9cdba9933825aa1df84d5b622c69879ad068e46bdbc3:0", + "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", "status": "valid", - "tx_hash": "9bcd5feb006d01247ff86d19346c290cd3b947ca8af761808c03375c993f05e4", + "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", "tx_index": 38, - "block_time": 1730229576, + "block_time": 1730280146, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2jtfspkfv7t792mjw69k2tkl5curtqdfhlsynx", + "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9bcd5feb006d01247ff86d19346c290cd3b947ca8af761808c03375c993f05e4", + "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", "block_index": 151, - "block_time": 1730229576 + "block_time": 1730280146 } ], "next_cursor": null, @@ -11163,14 +11163,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa:0", + "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", "msg_index": 1, "quantity": 2000000000, - "source": "55c4dfc25490216755491d6ec05cc9beca0f4ed2d693125c5a3d694dcca3bee5:1", + "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", "status": "valid", - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "tx_index": 76, - "block_time": 1730229832, + "block_time": 1730280411, "asset_info": { "divisible": true, "asset_longname": null, @@ -11180,9 +11180,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e45ca9f486d8afc983c124b3acbd8589b1497e66f0b531a7b1a3897a0271fcaa", + "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", "block_index": 209, - "block_time": 1730229832 + "block_time": 1730280411 } ], "next_cursor": 674, @@ -11197,17 +11197,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyvc2f0n2uhvxwjeyf86madxepfnuttz25ah07v", + "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", "status": "valid", - "tx_hash": "eabc59e8fac012bcdbbbaeb0131549c4caee3a92ff5b81eb2dc8ac9ffa4f3a63", + "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", "tx_index": 9, - "block_time": 1730229438, + "block_time": 1730279999, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "eabc59e8fac012bcdbbbaeb0131549c4caee3a92ff5b81eb2dc8ac9ffa4f3a63", + "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", "block_index": 121, - "block_time": 1730229438 + "block_time": 1730279999 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 863f60f505..8b87c5fec0 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -497,29 +497,42 @@ def test_reorg(self): def test_invalid_detach(self): print("Test invalid detach...") - test_address = self.addresses[7] - - balances = self.api_call(f"addresses/{test_address}/balances/UTXOASSET")["result"] + balances = self.api_call("assets/UTXOASSET/balances")["result"] print(balances) utxo = None + test_address = None for balance in balances: - if balance["utxo"]: + if balance["utxo"] and balance["quantity"] > 0: utxo = balance["utxo"] + test_address = balance["utxo_address"] break assert utxo txid, vout = utxo.split(":") + data = self.send_transaction( utxo, "detach", - {"destination": test_address}, + {"destination": test_address, "exact_fee": 1}, return_only_data=True, ) + + list_unspent = json.loads( + self.bitcoin_cli("listunspent", 0, 9999999, json.dumps([test_address])).strip() + ) + for utxo in list_unspent: + if utxo["txid"] != txid or utxo["vout"] != int(vout): + selected_utxo = utxo + break + data = binascii.unhexlify(data) - key = arc4.init_arc4(binascii.unhexlify(txid)) + key = arc4.init_arc4(binascii.unhexlify(selected_utxo["txid"])) data = key.encrypt(data) data = binascii.hexlify(data).decode("utf-8") - inputs = json.dumps([{"txid": txid, "vout": int(vout)}]) + # correct input should be: + # inputs = json.dumps([{"txid": txid, "vout": int(vout)}]) + # but we use the wrong input to test the invalid detach + inputs = json.dumps([selected_utxo]) outputs = json.dumps({test_address: 200 / 10e8, "data": data}) raw_transaction = self.bitcoin_cli("createrawtransaction", inputs, outputs).strip() @@ -531,7 +544,7 @@ def test_invalid_detach(self): retry = 0 while True: try: - self.broadcast_transaction(signed_transaction) + tx_hash, _block_hash, _block_time = self.broadcast_transaction(signed_transaction) break except sh.ErrorReturnCode_25 as e: retry += 1 @@ -540,9 +553,19 @@ def test_invalid_detach(self): print("Sleeping for 5 seconds and retrying...") time.sleep(5) + # utxo balance should be greater than 0 balances = self.api_call(f"addresses/{test_address}/balances/UTXOASSET")["result"] for balance in balances: - assert balance["utxo"] != utxo + if balance["utxo"]: + assert balance["quantity"] > 0 + break + + # we should have a new event with status "invalid" + events = self.api_call(f"transactions/{tx_hash}/events?event_name=DETACH_FROM_UTXO")[ + "result" + ] + print(events) + assert events[0]["params"]["status"] == "invalid: UTXO not in the transaction inputs" print("Invalid detach test successful") diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index ec1d17f5f0..07e60645f4 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -329,8 +329,6 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): ) time.sleep(1) else: - regtest_node_thread.node.test_invalid_detach() - if os.path.exists(os.path.join(CURR_DIR, "apidoc/apicache.json")): os.unlink(os.path.join(CURR_DIR, "apidoc/apicache.json")) print("Generating API documentation...") @@ -344,6 +342,9 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print("Running Dredd...") sh.dredd(_cwd=BASE_DIR, _out=sys.stdout, _err_to_out=True) + + regtest_node_thread.node.test_invalid_detach() + print("Tesing reparse...") regtest_node_thread.node.reparse() print("Testing rollback...") From 2885f394377990388ee2d841657fb2cd7b18c273 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 09:51:06 +0000 Subject: [PATCH 013/138] fix and add tests --- .../test/fixtures/contract_vectors/utxo.py | 68 ++++++++++++++----- 1 file changed, 51 insertions(+), 17 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py index fc774e62c4..5d768c5729 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py @@ -98,7 +98,7 @@ "out": ( UTXO_2, [], - b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", + b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns||", ), }, { @@ -224,10 +224,34 @@ "destination": ADDR[0], "block_time": 310501000, "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", - "utxos_info": "d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxos_info": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", }, ), "records": [ + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": UTXO_2, + "destination": ADDR[1], + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + { + "table": "messages", + "values": { + "block_index": DP["default_block_index"], + "command": "insert", + "category": "sends", + "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":1,"quantity":100,"source":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "event": "DETACH_FROM_UTXO", + }, + }, { "table": "debits", "values": { @@ -253,30 +277,40 @@ "calling_function": "detach from utxo", }, }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2", + }, + ), + "records": [ { "table": "sends", "values": { "tx_index": DP["default_tx_index"], "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", "block_index": DP["default_block_index"], - "status": "valid", - "source": UTXO_2, - "destination": ADDR[1], - "asset": "XCP", - "quantity": 100, + "status": "invalid: UTXO not in the transaction inputs", + "source": None, + "destination": None, + "asset": None, + "quantity": None, "fee_paid": 0, }, }, - { - "table": "messages", - "values": { - "block_index": DP["default_block_index"], - "command": "insert", - "category": "sends", - "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":1,"quantity":100,"source":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', - "event": "DETACH_FROM_UTXO", - }, - }, ], }, ], From 5b7f4b1812fe0b3c7c9d0eb837dbe46b45be8130 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 10:27:30 +0000 Subject: [PATCH 014/138] Add release notes for v10.6.2 --- release-notes/release-notes-v10.6.2.md | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 release-notes/release-notes-v10.6.2.md diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md new file mode 100644 index 0000000000..f55664b564 --- /dev/null +++ b/release-notes/release-notes-v10.6.2.md @@ -0,0 +1,31 @@ +# Release Notes - Counterparty Core v10.6.2 (2024-11-??) + + + +# Upgrading + +# ChangeLog + +## Protocol Changes + +- Starting from block X, to detach assets from a UTXO, this UTXO must be used in the Detach transaction. Consequently, the `asset` and `quantity` parameters have been removed: during a Detach, all assets attached to the UTXO are moved to the destination address. + +## Bugfixes + + +## Codebase + +- The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. If this is the case, this UTXO is mandatory to be used in the transaction. + + +## API + +- Removed `asset` and `quantity` parameters from the `/v2/utxos//compose/detach` route + +## CLI + + +# Credits + +* Ouziel Slama +* Adam Krellenstein From e695dedf723329ac8971e18c0dcb14c1cf73943f Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 10:35:03 +0000 Subject: [PATCH 015/138] clean debug --- counterparty-core/counterpartycore/lib/api/api_server.py | 5 ++--- counterparty-core/counterpartycore/lib/api/compose.py | 1 - counterparty-core/counterpartycore/lib/blocks.py | 5 ++--- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index d2eddc8f1a..3fe82003a9 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/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 0cf48b6e50..256a24b8e1 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -714,7 +714,6 @@ def compose_movetoutxo( input_count = 1 total_value = D("0") try: - print(utxo) source_address, source_value = backend.bitcoind.get_utxo_address_and_value(utxo) total_value += D(source_value) for more_utxo in more_utxos.split(","): diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 83b2ca9b04..c88383ac4d 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -259,9 +259,8 @@ def parse_tx(db, tx): util.CURRENT_TX_HASH = None return True except Exception as e: - import traceback - - print(traceback.format_exc()) + # import traceback + # print(traceback.format_exc()) raise exceptions.ParseTransactionError(f"{e}") from e finally: cursor.close() From f60471ea59a4a47cc68ead67f5b9d56fb607f1ec Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 15:36:37 +0000 Subject: [PATCH 016/138] Refactor UTXO support --- .../counterpartycore/lib/api/compose.py | 47 +--- .../counterpartycore/lib/blocks.py | 24 +- .../counterpartycore/lib/messages/attach.py | 228 +++++++++++++++ .../counterpartycore/lib/messages/detach.py | 133 +++++++++ .../counterpartycore/lib/messages/move.py | 66 +++++ .../counterpartycore/lib/messages/utxo.py | 259 ++---------------- 6 files changed, 477 insertions(+), 280 deletions(-) create mode 100644 counterparty-core/counterpartycore/lib/messages/attach.py create mode 100644 counterparty-core/counterpartycore/lib/messages/detach.py create mode 100644 counterparty-core/counterpartycore/lib/messages/move.py diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 256a24b8e1..9758152a91 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -626,46 +626,28 @@ def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construc return compose(db, "fairmint", params, **construct_args) -def compose_utxo( - db, - source: str, - destination: str, - asset: str = None, - quantity: int = None, - **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, + destination_vout: 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) + :param destination_vout: The vout of the destination output """ - return compose_utxo( - db, - source=address, - destination=destination, - asset=asset, - quantity=quantity, - **construct_args, - ) + params = { + "source": address, + "asset": asset, + "quantity": quantity, + "destination_vout": destination_vout, + } + return compose(db, "attach", params, **construct_args) def get_attach_estimate_xcp_fee(db): @@ -686,12 +668,11 @@ def compose_detach( :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) """ - return compose_utxo( - db, - source=utxo, - destination=destination, - **construct_args, - ) + params = { + "source": utxo, + "destination": destination, + } + return compose(db, "detach", params, **construct_args) def compose_movetoutxo( diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index c88383ac4d..edefae94b0 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -31,18 +31,21 @@ from counterpartycore.lib.gettxinfo import get_tx_info # noqa: E402 from .messages import ( # noqa: E402 + attach, bet, broadcast, btcpay, burn, cancel, destroy, + detach, dispense, dispenser, dividend, fairmint, fairminter, issuance, + move, order, rps, rpsresolve, @@ -122,9 +125,12 @@ def parse_tx(db, tx): if ( "utxos_info" in tx and tx["utxos_info"] - and (not util.enabled("spend_utxo_to_detach") or message_type_id != utxo.ID) + and ( + not util.enabled("spend_utxo_to_detach") + or message_type_id not in [attach.ID, detach.ID] + ) ): - utxo.move_assets(db, tx) + move.move_assets(db, tx) if not tx["source"]: # utxos move only return @@ -209,10 +215,16 @@ def parse_tx(db, tx): "fairminter", block_index=tx["block_index"] ): fairmint.parse(db, tx, message) - elif message_type_id == utxo.ID and util.enabled( - "utxo_support", block_index=tx["block_index"] + elif ( + message_type_id == utxo.ID + and util.enabled("utxo_support", block_index=tx["block_index"]) + and not util.enabled("spend_utxo_to_detach") ): utxo.parse(db, tx, message) + elif message_type_id == attach.ID and util.enabled("spend_utxo_to_detach"): + attach.parse(db, tx, message) + elif message_type_id == detach.ID and util.enabled("spend_utxo_to_detach"): + detach.parse(db, tx, message) else: supported = False @@ -249,9 +261,9 @@ def parse_tx(db, tx): "utxos_info" in tx and tx["utxos_info"] and util.enabled("spend_utxo_to_detach") - and message_type_id == utxo.ID + and message_type_id in [attach.ID, detach.ID] ): - utxo.move_assets(db, tx) + move.move_assets(db, tx) # NOTE: for debugging (check asset conservation after every `N` transactions). # if not tx['tx_index'] % N: diff --git a/counterparty-core/counterpartycore/lib/messages/attach.py b/counterparty-core/counterpartycore/lib/messages/attach.py new file mode 100644 index 0000000000..bb2c93cb75 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/messages/attach.py @@ -0,0 +1,228 @@ +import logging +import struct + +from counterpartycore.lib import config, exceptions, gas, ledger, script, util + +logger = logging.getLogger(config.LOGGER_NAME) + +ID = 101 + + +def validate_asset_and_quantity(asset, quantity): + problems = [] + + if asset == config.BTC: + problems.append("cannot send bitcoins") # Only for parsing. + + if not isinstance(quantity, int): + problems.append("quantity must be in satoshis") + return problems + + if quantity <= 0: + problems.append("quantity must be greater than zero") + + # For SQLite3 + if quantity > config.MAX_INT: + problems.append("integer overflow") + + return problems + + +def validate_balance(db, source, asset, quantity, fee=0): + problems = [] + # check if source has enough funds + asset_balance = ledger.get_balance(db, source, asset) + if asset == config.XCP: + # fee is always paid in XCP + if asset_balance < quantity + fee: + problems.append("insufficient funds for transfer and fee") + else: + if asset_balance < quantity: + problems.append("insufficient funds for transfer") + if fee > 0: + xcp_balance = ledger.get_balance(db, source, config.XCP) + if xcp_balance < fee: + problems.append("insufficient funds for fee") + return problems + + +def validate(db, source, asset, quantity, destination_vout=None, block_index=None): + problems = [] + + # check if source is an address + try: + script.validate(source) + except script.AddressError: + problems.append("invalid source address") + + # validate asset and quantity + validate_asset_and_quantity(asset, quantity) + if len(problems) > 0: + # if asset or quantity are invalid, let's avoid some potential + # errors in the next checks by returning here + return problems + + # attach needs fee + fee = gas.get_transaction_fee(db, ID, block_index or util.CURRENT_BLOCK_INDEX) + + # check balances + problems += validate_balance(db, source, asset, quantity, fee) + + if destination_vout is not None and not isinstance(destination_vout, int): + problems.append("if provided destination must be an integer") + + return problems + + +def compose(db, source, asset, quantity, destination_vout=None): + problems = validate(db, source, asset, quantity, destination_vout) + if problems: + raise exceptions.ComposeError(problems) + + # create message + data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) + # to optimize the data size (avoiding fixed sizes per parameter) we use a simple + # string of characters separated by `|`. + data_content = "|".join( + [ + str(value) + for value in [ + destination_vout or "", + asset, + quantity, + ] + ] + ).encode("utf-8") + data += struct.pack(f">{len(data_content)}s", data_content) + + # if destination_vout is provided it's the responsability of the caller to + # build a transaction with the destination UTXO + destinations = [] + if destination_vout is not None: + # else we use the source address as the destination + # with dust value + destinations.append((source, None)) + + return (source, destinations, data) + + +def unpack(message, return_dict=False): + try: + data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|") + + (destination_vout, asset, quantity) = data_content + destination_vout = int(destination_vout) if destination_vout else None + + if return_dict: + return { + "destination_vout": destination_vout, + "asset": asset, + "quantity": int(quantity), + } + + return (destination_vout, asset, int(quantity)) + except Exception as e: + raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e + + +def pay_fee(db, tx, source, fee): + # debit fee from the fee payer + ledger.debit( + db, + source, + config.XCP, + fee, + tx["tx_index"], + action="attach to utxo fee", + event=tx["tx_hash"], + ) + # destroy fee + destroy_bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "block_index": tx["block_index"], + "source": tx["source"], + "asset": config.XCP, + "quantity": fee, + "tag": "attach to utxo fee", + "status": "valid", + } + ledger.insert_record(db, "destructions", destroy_bindings, "ASSET_DESTRUCTION") + + +def parse(db, tx, message): + (destination_vout, asset, quantity) = unpack(message) + source = tx["source"] + + problems = validate(db, source, asset, quantity, destination_vout, tx["block_index"]) + + # determine destination + if destination_vout is None: + # if no destination_vout is provided, we use the first non-OPT_RETURN output + utxos_info = tx["utxos_info"].split(" ") if tx["utxos_info"] else [] + if len(utxos_info) == 0: + problems.append("no UTXO to attach to") + else: + # last element of utxos_info field is the first non-OPT_RETURN output + destination = utxos_info[-1] + else: + # IMPORTANT: if the vout provided doesn't exist in the transaction or + # if is an OP_RETURN output, the attached assets will be unspendable. + # We don't check this here because: + # - we don't have the complete list of outputs here + # - we don't want to make an RPC call during parsing + # - if destination_vout it's provided it's the responsability of the caller to build a valid transaction + destination = f"{tx['tx_hash']}:{destination_vout}" + + status = "valid" + if problems: + status = "invalid: " + "; ".join(problems) + # store the invalid transaction without potentially invalid parameters + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": status, + } + ledger.insert_record(db, "sends", bindings, "ATTACH_TO_UTXO") + # return here to avoid further processing + return + + # calculate and pay fee + fee = gas.get_transaction_fee(db, ID, tx["block_index"]) + if fee > 0: + pay_fee(db, tx, source, fee) + # increment gas counter + gas.increment_counter(db, ID, tx["block_index"]) + + # debit asset from source and credit to recipient + action = "attach to utxo" + ledger.debit(db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"]) + ledger.credit( + db, + destination, + asset, + quantity, + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": "valid", + "source": source, + "destination": destination, + "asset": asset, + "quantity": quantity, + "fee_paid": fee, + } + ledger.insert_record(db, "sends", bindings, "ATTACH_TO_UTXO") + + logger.info( + "Attach %(asset)s from %(source)s to utxo: %(destination)s (%(tx_hash)s) [%(status)s]", + bindings, + ) diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py new file mode 100644 index 0000000000..fbcab7b80f --- /dev/null +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -0,0 +1,133 @@ +import logging +import struct + +from counterpartylib.lib import config, exceptions, ledger, script, util + +logger = logging.getLogger(config.LOGGER_NAME) + +ID = 102 + + +def validate(source, destination): + problems = [] + + # check if source is a UTXO + if not util.is_utxo_format(source): + problems.append("source must be a UTXO") + + # check if destination is an address + try: + script.validate(destination) + except script.AddressError: + problems.append("destination must be an address") + + return problems + + +def compose(db, source, destination): + problems = validate(source, destination) + if problems: + raise exceptions.ComposeError(problems) + + # create message + data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) + # only the destination is needed + data_content = destination.encode("utf-8") + data += struct.pack(f">{len(data_content)}s", data_content) + + return (source, [], data) + + +def unpack(message, return_dict=False): + try: + destination = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8") + + if return_dict: + return { + "destination": destination, + } + return destination + except Exception as e: + raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e + + +def detach_assets(db, tx, source, destination): + problems = validate(source, destination) + + status = "valid" + if problems: + status = "invalid: " + "; ".join(problems) + # store the invalid transaction without potentially invalid parameters + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": status, + } + ledger.insert_record(db, "sends", bindings, "DETACH_FROM_UTXO") + # stop here to avoid further processing + return + + # we detach all the assets from the source UTXO + balances = ledger.get_utxo_balances(db, source) + for balance in balances: + if balance["quantity"] == 0: + continue + # debit asset from source and credit to recipient + action = "detach to utxo" + ledger.debit( + db, + source, + balance["asset"], + balance["quantity"], + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + ledger.credit( + db, + destination, + balance["asset"], + balance["quantity"], + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": "valid", + "source": source, + "destination": destination, + "asset": balance["asset"], + "quantity": balance["quantity"], + "fee_paid": 0, + } + ledger.insert_record(db, "sends", bindings, "DETACH_FROM_UTXO") + + logger.info( + "Detach assets from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", + { + "source": source, + "destination": destination, + "tx_hash": tx["tx_hash"], + "status": status, + }, + ) + + +def parse(db, tx, message): + destination = unpack(message) + + # utxos_info is a space-separated list of UTXOs, last element is the destination, + # the rest are the inputs with a balance + utxos_info = tx["utxos_info"].split(" ") if tx["utxos_info"] else [] + sources = utxos_info[:-1] + + # detach assets from all the sources + # IMPORTANT: that's mean we can't detach assets and move utxo in th same transaction + for source in sources: + detach_assets(db, tx, source, destination) diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py new file mode 100644 index 0000000000..e644cb4a19 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -0,0 +1,66 @@ +import logging + +from counterpartylib.lib import config, ledger + +logger = logging.getLogger(config.LOGGER_NAME) + + +# call on each transaction +def move_assets(db, tx): + utxos = tx["utxos_info"].split(" ") + # do nothing if there is only one UTXO (it's the first non-OP_RETURN output) + if len(utxos) < 2: + return + # if there are more than one UTXO in the `utxos_info` field, + # we move all assets from the first UTXO to the last one + destination = utxos.pop() + sources = utxos + action = "utxo move" + + msg_index = 0 + # we move all assets from each source to the destination + for source in sources: + balances = ledger.get_utxo_balances(db, source) + for balance in balances: + if balance["quantity"] == 0: + continue + # debit asset from source + ledger.debit( + db, + source, + balance["asset"], + balance["quantity"], + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + # credit asset to destination + ledger.credit( + db, + destination, + balance["asset"], + balance["quantity"], + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + # store the move in the `sends` table + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "block_index": tx["block_index"], + "status": "valid", + "source": source, + "destination": destination, + "asset": balance["asset"], + "quantity": balance["quantity"], + "msg_index": msg_index, + } + + ledger.insert_record(db, "sends", bindings, "UTXO_MOVE") + msg_index += 1 + + # log the move + logger.info( + f"Move {balance['asset']} from utxo: {source} to utxo: {destination} ({tx['tx_hash']})" + ) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 27f4bae116..ab96345cc3 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -2,55 +2,19 @@ import struct from counterpartycore.lib import backend, config, exceptions, gas, ledger, script, util +from counterpartycore.lib.messages import attach, detach logger = logging.getLogger(config.LOGGER_NAME) ID = 100 - -def validate_asset_and_quantity(asset, quantity): - problems = [] - - if asset == config.BTC: - problems.append("cannot send bitcoins") # Only for parsing. - - if not isinstance(quantity, int): - problems.append("quantity must be in satoshis") - return problems - - if quantity <= 0: - problems.append("quantity must be greater than zero") - - # For SQLite3 - if quantity > config.MAX_INT: - problems.append("integer overflow") - - return problems - - -def validate_balance(db, source, source_is_address, asset, quantity, fee): - problems = [] - # check if source has enough funds - asset_balance = ledger.get_balance(db, source, asset) - if asset == config.XCP: - # fee is always paid in XCP - if asset_balance < quantity + fee: - problems.append("insufficient funds for transfer and fee") - else: - if asset_balance < quantity: - problems.append("insufficient funds for transfer") - if source_is_address: - xcp_balance = ledger.get_balance(db, source, config.XCP) - if xcp_balance < fee: - problems.append("insufficient funds for fee") - return problems +# TODO: after "spend_utxo_to_detach" activation refactor like rps.py def validate(db, source, destination, asset=None, quantity=None, block_index=None): problems = [] - if not util.enabled("spend_utxo_to_detach"): - problems += validate_asset_and_quantity(asset, quantity) + problems += attach.validate_asset_and_quantity(asset, quantity) source_is_address = True destination_is_address = True @@ -87,133 +51,30 @@ def validate(db, source, destination, asset=None, quantity=None, block_index=Non else: fee = 0 - if not util.enabled("spend_utxo_to_detach"): - problems += validate_balance(db, source, source_is_address, asset, quantity, fee) - elif source_is_address: - # after "spend_utxo_to_detach" protocol change all assets are detached from the UTXO - # so we need to check the balance only for attach - problems += validate_asset_and_quantity(asset, quantity) - if len(problems) == 0: - problems += validate_balance(db, source, source_is_address, asset, quantity, fee) + problems += attach.validate_balance(db, source, asset, quantity, fee) return problems -def compose(db, source, destination, asset, quantity): - """ - Compose a UTXO message. - source: the source address or UTXO - destination: the destination address or UTXO - asset: the asset to transfer - quantity: the quantity to transfer - """ - problems = validate(db, source, destination, asset, quantity) - if problems: - raise exceptions.ComposeError(problems) - - # we make an RPC call only at the time of composition - if ( - destination - and util.is_utxo_format(destination) - and not backend.bitcoind.is_valid_utxo(destination) - ): - raise exceptions.ComposeError(["destination is not a UTXO"]) - - if util.is_utxo_format(source) and not backend.bitcoind.is_valid_utxo(source): - raise exceptions.ComposeError(["source is not a UTXO"]) - - message_asset = asset or "" - message_quantity = quantity or "" - if util.is_utxo_format(source): - if not backend.bitcoind.is_valid_utxo(source): - raise exceptions.ComposeError(["source is not a UTXO"]) - # if detach from UTXO, we ignore asset and quantity - message_asset = "" - message_quantity = "" - - # create message - data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) - # to optimize the data size (avoiding fixed sizes per parameter) we use a simple - # string of characters separated by `|`. - data_content = "|".join( - [ - str(value) - for value in [ - source, - destination or "", - message_asset, - message_quantity, - ] - ] - ).encode("utf-8") - data += struct.pack(f">{len(data_content)}s", data_content) - - destinations = [] - if not util.is_utxo_format(source) and not destination: # attach to utxo - # if no destination, we use the source address as the destination - destinations.append((source, None)) - - return (source, destinations, data) - - def unpack(message, return_dict=False): try: data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|") + (source, destination, asset, quantity) = data_content - destination = destination or None - asset = asset or None - quantity = int(quantity) if quantity else None if return_dict: return { "source": source, - "destination": destination, + "destination": destination or None, "asset": asset, - "quantity": quantity, + "quantity": int(quantity), } - return (source, destination, asset, quantity) + return (source, destination, asset, int(quantity)) except Exception as e: raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e -def pay_fee(db, tx, action, source, recipient): - # fee payment only for attach to utxo - if action == "attach to utxo": - fee = gas.get_transaction_fee(db, ID, tx["block_index"]) - else: - fee = 0 - if fee > 0: - # fee is always paid by the address - if action == "attach to utxo": - fee_payer = source - else: - fee_payer = recipient - # debit fee from the fee payer - ledger.debit( - db, - fee_payer, - config.XCP, - fee, - tx["tx_index"], - action=f"{action} fee", - event=tx["tx_hash"], - ) - # destroy fee - destroy_bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "block_index": tx["block_index"], - "source": tx["source"], - "asset": config.XCP, - "quantity": fee, - "tag": f"{action} fee", - "status": "valid", - } - ledger.insert_record(db, "destructions", destroy_bindings, "ASSET_DESTRUCTION") - return fee - - def move_asset(db, tx, action, source, recipient, asset, quantity, event, fee_paid): # debit asset from source and credit to recipient ledger.debit(db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"]) @@ -254,18 +115,9 @@ def parse(db, tx, message): # detach if source is a UTXO if util.is_utxo_format(source): - if util.enabled("spend_utxo_to_detach"): - # we check if the source UTXO is in the transaction inputs - # if yes, utxos_info field must contain the source UTXO - # (utxos_info is a space-separated list of UTXOs, last element is the destination, - # the rest are the inputs with a balance) - utxos = tx["utxos_info"].split(" ") - if len(utxos) < 2 or source not in utxos[:-1]: - problems.append("UTXO not in the transaction inputs") - else: - source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) - if source_address != tx["source"]: - problems.append("source does not match the UTXO source") + source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) + if source_address != tx["source"]: + problems.append("source does not match the UTXO source") action = "detach from utxo" event = "DETACH_FROM_UTXO" # attach if source is an address @@ -280,32 +132,18 @@ def parse(db, tx, message): status = "invalid: " + "; ".join(problems) if status == "valid": - fee_paid = pay_fee(db, tx, action, source, recipient) + if action == "attach to utxo": + fee = gas.get_transaction_fee(db, ID, tx["block_index"]) + else: + fee = 0 + if fee > 0: + detach.pay_fee(db, tx, source, fee) # update counter if action == "attach to utxo": gas.increment_counter(db, ID, tx["block_index"]) - if action == "attach to utxo" or not util.enabled("spend_utxo_to_detach"): - move_asset(db, tx, action, source, recipient, asset, quantity, event, fee_paid) - - if action == "detach from utxo" and util.enabled("spend_utxo_to_detach"): - # we detach all the assets from the source UTXO - balances = ledger.get_utxo_balances(db, source) - for balance in balances: - if balance["quantity"] == 0: - continue - move_asset( - db, - tx, - action, - source, - recipient, - balance["asset"], - balance["quantity"], - event, - fee_paid, - ) + move_asset(db, tx, action, source, recipient, asset, quantity, event, fee) else: # store the invalid transaction without potentially invalid parameters bindings = { @@ -336,64 +174,3 @@ def parse(db, tx, message): "Attach %(asset)s from %(source)s to utxo: %(destination)s (%(tx_hash)s) [%(status)s]", log_bindings, ) - - -# call on each block -def move_assets(db, tx): - utxos = tx["utxos_info"].split(" ") - # do nothing if there is only one UTXO (it's the first non-OP_RETURN output) - if len(utxos) < 2: - return - # if there are more than one UTXO in the `utxos_info` field, - # we move all assets from the first UTXO to the last one - destination = utxos.pop() - sources = utxos - action = "utxo move" - - msg_index = 0 - # we move all assets from each source to the destination - for source in sources: - balances = ledger.get_utxo_balances(db, source) - for balance in balances: - if balance["quantity"] == 0: - continue - # debit asset from source - ledger.debit( - db, - source, - balance["asset"], - balance["quantity"], - tx["tx_index"], - action=action, - event=tx["tx_hash"], - ) - # credit asset to destination - ledger.credit( - db, - destination, - balance["asset"], - balance["quantity"], - tx["tx_index"], - action=action, - event=tx["tx_hash"], - ) - # store the move in the `sends` table - bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "block_index": tx["block_index"], - "status": "valid", - "source": source, - "destination": destination, - "asset": balance["asset"], - "quantity": balance["quantity"], - "msg_index": msg_index, - } - - ledger.insert_record(db, "sends", bindings, "UTXO_MOVE") - msg_index += 1 - - # log the move - logger.info( - f"Move {balance['asset']} from utxo: {source} to utxo: {destination} ({tx['tx_hash']})" - ) From 5e886e7de14c75471d1bdef7cdfd38ae72336134 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 16:38:05 +0000 Subject: [PATCH 017/138] fixes; progress in test fixing --- .../counterpartycore/lib/messages/detach.py | 2 +- .../counterpartycore/lib/messages/move.py | 2 +- .../counterpartycore/lib/messages/utxo.py | 4 +- .../counterpartycore/test/api_v2_test.py | 6 +- .../test/fixtures/api_v2_fixtures.json | 186 +- .../test/fixtures/scenarios.py | 11 +- .../parseblock_unittest_fixture.json | 4 +- .../scenarios/parseblock_unittest_fixture.log | 4 +- .../scenarios/parseblock_unittest_fixture.sql | 3808 ++++++++--------- .../fixtures/scenarios/unittest_fixture.json | 4 +- .../fixtures/scenarios/unittest_fixture.log | 4 +- .../fixtures/scenarios/unittest_fixture.sql | 3806 ++++++++-------- .../counterpartycore/test/util_test.py | 1 + 13 files changed, 3921 insertions(+), 3921 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index fbcab7b80f..3a08715100 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -1,7 +1,7 @@ import logging import struct -from counterpartylib.lib import config, exceptions, ledger, script, util +from counterpartycore.lib import config, exceptions, ledger, script, util logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index e644cb4a19..107de81168 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -1,6 +1,6 @@ import logging -from counterpartylib.lib import config, ledger +from counterpartycore.lib import config, ledger logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index ab96345cc3..4a0b6bf63f 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -2,7 +2,7 @@ import struct from counterpartycore.lib import backend, config, exceptions, gas, ledger, script, util -from counterpartycore.lib.messages import attach, detach +from counterpartycore.lib.messages import attach logger = logging.getLogger(config.LOGGER_NAME) @@ -137,7 +137,7 @@ def parse(db, tx, message): else: fee = 0 if fee > 0: - detach.pay_fee(db, tx, source, fee) + attach.pay_fee(db, tx, source, fee) # update counter if action == "attach to utxo": diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py index 06041437d7..25ce213d66 100644 --- a/counterparty-core/counterpartycore/test/api_v2_test.py +++ b/counterparty-core/counterpartycore/test/api_v2_test.py @@ -148,14 +148,14 @@ def test_new_get_balances_by_address(): "address": None, "asset": "DIVISIBLE", "quantity": 1, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", }, { "address": None, "asset": "XCP", "quantity": 100, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", }, { @@ -312,7 +312,7 @@ def test_new_get_balances_by_asset(): }, { "address": None, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "XCP", "quantity": 100, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 28db492539..c054686dd3 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -7,9 +7,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", - "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", - "messages_hash": "f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358", + "ledger_hash": "e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809", + "txlist_hash": "d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e", + "messages_hash": "ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56", "transaction_count": 0, "confirmed": true }, @@ -19,9 +19,9 @@ "block_time": 310702000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2", - "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c", - "messages_hash": "5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63", + "ledger_hash": "92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad", + "txlist_hash": "4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46", + "messages_hash": "0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc", "transaction_count": 0, "confirmed": true }, @@ -31,9 +31,9 @@ "block_time": 310701000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5", - "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f", - "messages_hash": "270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5", + "ledger_hash": "937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa", + "txlist_hash": "776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8", + "messages_hash": "0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba", "transaction_count": 0, "confirmed": true }, @@ -43,9 +43,9 @@ "block_time": 310700000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8", - "txlist_hash": "1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084", - "messages_hash": "03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43", + "ledger_hash": "4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed", + "txlist_hash": "9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4", + "messages_hash": "4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da", "transaction_count": 0, "confirmed": true }, @@ -55,9 +55,9 @@ "block_time": 310699000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7", - "txlist_hash": "d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94", - "messages_hash": "e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40", + "ledger_hash": "da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9", + "txlist_hash": "32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab", + "messages_hash": "4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d", "transaction_count": 0, "confirmed": true }, @@ -67,9 +67,9 @@ "block_time": 310698000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc", - "txlist_hash": "9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58", - "messages_hash": "d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297", + "ledger_hash": "c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41", + "txlist_hash": "112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f", + "messages_hash": "2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3", "transaction_count": 0, "confirmed": true }, @@ -79,9 +79,9 @@ "block_time": 310697000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55", - "txlist_hash": "663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708", - "messages_hash": "ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578", + "ledger_hash": "7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28", + "txlist_hash": "124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca", + "messages_hash": "662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085", "transaction_count": 0, "confirmed": true }, @@ -91,9 +91,9 @@ "block_time": 310696000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383", - "txlist_hash": "deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973", - "messages_hash": "6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4", + "ledger_hash": "e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa", + "txlist_hash": "da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539", + "messages_hash": "b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db", "transaction_count": 0, "confirmed": true }, @@ -103,9 +103,9 @@ "block_time": 310695000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80", - "txlist_hash": "9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3", - "messages_hash": "fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc", + "ledger_hash": "9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10", + "txlist_hash": "07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98", + "messages_hash": "c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc", "transaction_count": 0, "confirmed": true }, @@ -115,9 +115,9 @@ "block_time": 310694000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1", - "txlist_hash": "52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1", - "messages_hash": "a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343", + "ledger_hash": "30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d", + "txlist_hash": "2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8", + "messages_hash": "8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667", "transaction_count": 0, "confirmed": true } @@ -132,9 +132,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", - "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", - "messages_hash": "f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358", + "ledger_hash": "e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809", + "txlist_hash": "d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e", + "messages_hash": "ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56", "transaction_count": 0, "confirmed": true } @@ -568,21 +568,21 @@ }, { "tx_index": 509, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "block_index": 310508, "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", "block_time": 310508000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "destination": null, "btc_amount": 0, - "fee": 10850, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31", + "fee": 6800, + "data": "657c444956495349424c457c31", "supported": true, - "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0", + "utxos_info": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1684893238, + "message_type_id": 1702642761, "message_data": { "error": "Unknown message type" } @@ -591,21 +591,21 @@ }, { "tx_index": 508, - "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "block_index": 310507, "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93", "block_time": 310507000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "destination": null, "btc_amount": 0, - "fee": 10850, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030", + "fee": 6800, + "data": "657c5843507c313030", "supported": true, - "utxos_info": "c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0", + "utxos_info": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1684893238, + "message_type_id": 1702647875, "message_data": { "error": "Unknown message type" } @@ -1285,7 +1285,7 @@ }, { "address": null, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "quantity": 1, "quantity_normalized": "0.00000001" @@ -1350,21 +1350,21 @@ "result": [ { "tx_index": 509, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "block_index": 310508, "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", "block_time": 310508000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "destination": null, "btc_amount": 0, - "fee": 10850, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31", + "fee": 6800, + "data": "657c444956495349424c457c31", "supported": true, - "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0", + "utxos_info": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1684893238, + "message_type_id": 1702642761, "message_data": { "error": "Unknown message type" } @@ -1373,21 +1373,21 @@ }, { "tx_index": 508, - "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "block_index": 310507, "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93", "block_time": 310507000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "destination": null, "btc_amount": 0, - "fee": 10850, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030", + "fee": 6800, + "data": "657c5843507c313030", "supported": true, - "utxos_info": "c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0", + "utxos_info": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1684893238, + "message_type_id": 1702647875, "message_data": { "error": "Unknown message type" } @@ -1664,7 +1664,7 @@ "address": null, "asset": "DIVISIBLE", "quantity": 1, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset_info": { "asset_longname": null, @@ -1679,7 +1679,7 @@ "address": null, "asset": "XCP", "quantity": 100, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset_info": { "divisible": true, @@ -1873,9 +1873,9 @@ "asset": "DIVISIBLE", "quantity": 1, "calling_function": "attach to utxo", - "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "event": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "tx_index": 509, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "confirmed": true, "block_time": 310508000, @@ -1894,9 +1894,9 @@ "asset": "XCP", "quantity": 100, "calling_function": "attach to utxo", - "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "event": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "tx_index": 508, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "confirmed": true, "block_time": 310507000, @@ -2173,7 +2173,7 @@ "asset": "DIVISIBLE", "quantity": 1, "action": "attach to utxo", - "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "event": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "tx_index": 509, "utxo": null, "utxo_address": null, @@ -2194,7 +2194,7 @@ "asset": "XCP", "quantity": 10, "action": "attach to utxo fee", - "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "event": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "tx_index": 509, "utxo": null, "utxo_address": null, @@ -2215,7 +2215,7 @@ "asset": "XCP", "quantity": 100, "action": "attach to utxo", - "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "event": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "tx_index": 508, "utxo": null, "utxo_address": null, @@ -2236,7 +2236,7 @@ "asset": "XCP", "quantity": 10, "action": "attach to utxo fee", - "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "event": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "tx_index": 508, "utxo": null, "utxo_address": null, @@ -2846,10 +2846,10 @@ "result": [ { "tx_index": 509, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "block_index": 310508, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "destination": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "asset": "DIVISIBLE", "quantity": 1, "status": "valid", @@ -2870,10 +2870,10 @@ }, { "tx_index": 508, - "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "block_index": 310507, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "destination": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "asset": "XCP", "quantity": 100, "status": "valid", @@ -4199,21 +4199,21 @@ "result": [ { "tx_index": 509, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "block_index": 310508, "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", "block_time": 310508000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "destination": null, "btc_amount": 0, - "fee": 10850, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31", + "fee": 6800, + "data": "657c444956495349424c457c31", "supported": true, - "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0", + "utxos_info": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1684893238, + "message_type_id": 1702642761, "message_data": { "error": "Unknown message type" } @@ -4222,21 +4222,21 @@ }, { "tx_index": 508, - "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "block_index": 310507, "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93", "block_time": 310507000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "destination": null, "btc_amount": 0, - "fee": 10850, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030", + "fee": 6800, + "data": "657c5843507c313030", "supported": true, - "utxos_info": "c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0", + "utxos_info": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1684893238, + "message_type_id": 1702647875, "message_data": { "error": "Unknown message type" } @@ -6228,10 +6228,10 @@ "event": "BLOCK_PARSED", "params": { "block_index": 310703, - "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", - "messages_hash": "f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358", + "ledger_hash": "e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809", + "messages_hash": "ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56", "transaction_count": 0, - "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", + "txlist_hash": "d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e", "block_time": 310703000 }, "tx_hash": null, @@ -6259,10 +6259,10 @@ "event": "BLOCK_PARSED", "params": { "block_index": 310702, - "ledger_hash": "059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2", - "messages_hash": "5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63", + "ledger_hash": "92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad", + "messages_hash": "0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc", "transaction_count": 0, - "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c", + "txlist_hash": "4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46", "block_time": 310702000 }, "tx_hash": null, @@ -6290,10 +6290,10 @@ "event": "BLOCK_PARSED", "params": { "block_index": 310701, - "ledger_hash": "f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5", - "messages_hash": "270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5", + "ledger_hash": "937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa", + "messages_hash": "0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba", "transaction_count": 0, - "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f", + "txlist_hash": "776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8", "block_time": 310701000 }, "tx_hash": null, @@ -6502,10 +6502,10 @@ "result": [ { "tx_index": 509, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", + "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", "block_index": 310508, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "destination": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", "asset": "DIVISIBLE", "quantity": 1, "status": "valid", @@ -6526,10 +6526,10 @@ }, { "tx_index": 508, - "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", + "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", "block_index": 310507, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "destination": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", "asset": "XCP", "quantity": 100, "status": "valid", @@ -14283,11 +14283,11 @@ "description": "The quantity of the asset to attach (in satoshis, hence integer) (e.g. 1000)" }, { - "name": "destination", + "name": "destination_vout", "default": null, "required": false, "type": "str", - "description": "The utxo to attach the assets to (e.g. $UTXO_1_ADDRESS_1)" + "description": "The vout of the destination output" }, { "name": "encoding", diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios.py b/counterparty-core/counterpartycore/test/fixtures/scenarios.py index 8069d32262..c3807a422b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios.py +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios.py @@ -324,21 +324,20 @@ {"short_tx_type_id": True, "fairminter": True}, ], [ - "utxo", - (ADDR[0], "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", "XCP", 100), + "attach", + (ADDR[0], "XCP", 100), {"encoding": "multisig"}, - {"short_tx_type_id": True, "utxo_support": True}, + {"short_tx_type_id": True, "utxo_support": True, "spend_utxo_to_detach": True}, ], [ - "utxo", + "attach", ( ADDR[0], - "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", "DIVISIBLE", 1, ), {"encoding": "multisig"}, - {"short_tx_type_id": True, "utxo_support": True}, + {"short_tx_type_id": True, "utxo_support": True, "spend_utxo_to_detach": True}, ], [ "issuance", diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json index 1322b2b6ce..acd5af5911 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json @@ -180,10 +180,10 @@ "fairmint": "0100000001d8e1083f44827cf8cdab0d756ee5f26c3eb7123c4adbdce79128cca165394c6f010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba46f71bce505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000" }, { - "utxo": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef75de321df210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512103d24ccc12f76f0562d27a2f57676e926dc71a7fa3f0cceb97452b4d3227965f5f21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae910a2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cf4ccc12f76f0562d263623f143eee5cf72a7fa3f0cceb97452b4d3227965f7d21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae33222508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { - "utxo": "010000000183481c3a9f072a47de29d0e0cda162527c3b3fe7fc4d88612013f04dc843229d030000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef741e9273d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102ce4ccc12f76f0562d24f4d2e1522d711f61a7fa3f0cceb97452b4d3227965f9c21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae77d42408000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "0100000001e04bcce45548f717192b388afca9f58a3ecf19863d37abd12e19f604361aff1e010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cb4ccc12f76f0562d26362231e38db3e8e5833e68cfdeb97452b4d3227965ffb21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aebb032508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { "issuance": "0100000001ec1559a2f51aca1f954491eb75ce429d2d37a5750deea75cd8b425289d213498010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff02e80300000000000069512102e24ccc12f76f0562d2061e67436e926de4c4a6091bcceb97452b4d31cf965f8221039ea8cc75076d9fb9d0151fd6bf10984b6afb51f65ede10ede02a3cf860d471e521025bc8fb22d87eb72fb5e297803ab9aa3ace5bf38df4e23918b876fd3ea0cdd7b853aec3edba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000" 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 d4d870e878..0eb1041771 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -134,9 +134,9 @@ TX Construct - Transaction constructed. TX Construct - Transaction constructed. 20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns TX Construct - Transaction constructed. -Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883) [valid] +Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0 (1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0) [valid] TX Construct - Transaction constructed. -Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e) [valid] +Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0 (0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8) [valid] TX Construct - Transaction constructed. Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid) TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 747ed3c5df..1de73939e2 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb','bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160','072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31','a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9','9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26','88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381','3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046','fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4','dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3','57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327','fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5','5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9','2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec','ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed','912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0','deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8','454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868','3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0','c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc','12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f','87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4','f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e','0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9','2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5','f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83','b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659','18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002','0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673','fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e','97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0','c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81','37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead','7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840','324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333','5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97','2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f','fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd','de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f','6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855','acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373','7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f','e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283','989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac','ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c','69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6','d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a','bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a','2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5','70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff','b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be','942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53','6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f','4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1','c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3','6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1','a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76','9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede','da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d','bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114','c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6','a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4','1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12','4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf','9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e','16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e','3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419','5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c','ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1','b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083','cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380','6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a','23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b','49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751','1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0','1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4','a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c','2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c','2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce','5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a','3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3','4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e','3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d','b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14','cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db','c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661','7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801','489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956','c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a','4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545','82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f','6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05','ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408','dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e','67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f','d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66','36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4','08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05','d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b','8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6','9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4','7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43','54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28','64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c','9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b','760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb','abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd','3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2','7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87','8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca','714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818','fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c','b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17','1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034','470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c','80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf','9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88','33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091','8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6','568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911','504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d','3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f','1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea','8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb','4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c','037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0','8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b','dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d','54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c','fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15','5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f','22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5','559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59','986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a','aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619','1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97','41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb','a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732','9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e','1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98','808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb','95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6','d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815','beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8','dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e','902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484','2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c','425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01','53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557','003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de','77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5','754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e','19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447','3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c','6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9','fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3','ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a','d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f','f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9','d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9','a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0','538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768','365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5','008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a','48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e','7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e','62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d','00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973','3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93','be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe','4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6','487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762','e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea','36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604','911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7','859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396','adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7','a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e','719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a','eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6','0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7','48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f','fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98','175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028','6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611','210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a','5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6','599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74','301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507','6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b','5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3','1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7','28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3','4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573','4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460','6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473','61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555','6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046','6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53','3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe','1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887','6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3','ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9','f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb','0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f','957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94','b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b','7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199','7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820','80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883','73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb','7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9','0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe','b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1','a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01','17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655','35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272','a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca','9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4','3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1','4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3','22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c','46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394','e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232','d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df','acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8','25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8','91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92','80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7','70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d','1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5','5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192','59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef','cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8','28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665','27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7','f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5','1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48','0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063','01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f','cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54','974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869','f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735','8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f','90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f','6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a','ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385','cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493','e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90','13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08','ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876','17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b','67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64','f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88','bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379','abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e','625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf','85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4','d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811','2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463','c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1','2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069','5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236','0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31','cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d','7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d','e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b','057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2','d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000','5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc','5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306','e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409','244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219','b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942','a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d','798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633','1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e','34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead','18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade','aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229','af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758','141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe','69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43','eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6','c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac','5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a','6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14','2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb','b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4','74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3','e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2','6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459','a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e','35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801','e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997','a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1','204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a','090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a','3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64','01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4','179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715','88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532','2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df','196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792','e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba','ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec','5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d','90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494','3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb','1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4','2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e','00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8','be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27','6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0','2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e','fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df','387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8','eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693','7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345','49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10','3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d','01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441','8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f','46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121','7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d','09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3','ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672','d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91','6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e','67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1','2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe','cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0','451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d','e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2','2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9','fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c','988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7','a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6','68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498','e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03','6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3','00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c','c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a','4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4','71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925','b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a','eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987','4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe','8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758','9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76','3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f','6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad','faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0','4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b','03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e','1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2','ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916','404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6','c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb','9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180','9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e','070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e','78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786','4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814','247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6','0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e','969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae','26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d','7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414','5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7','4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12','d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0','798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9','70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909','54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d','7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d','2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8','8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10','07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98','c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa','da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539','b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28','124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca','662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41','112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f','2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9','32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab','4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed','9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4','4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa','776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8','0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad','4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46','0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809','d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e','ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56',NULL,NULL,0); INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) @@ -762,7 +762,7 @@ INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0'); INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,'2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0'); INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0'); -INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0'); +INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0'); INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,'4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0'); INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0'); INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,'8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0'); @@ -815,8 +815,8 @@ INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0'); INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1'); INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1'); -INSERT INTO transactions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C5843507C313030',1,'c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0'); -INSERT INTO transactions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C444956495349424C457C31',1,'1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0'); +INSERT INTO transactions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C5843507C313030',1,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0'); +INSERT INTO transactions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C444956495349424C457C31',1,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0'); INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0'); INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1'); -- Triggers and indices on transactions @@ -951,10 +951,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1086,10 +1086,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1183,8 +1183,8 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); @@ -1274,10 +1274,10 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); @@ -1376,1694 +1376,1694 @@ INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006," INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','2893ff829d6f87617eef6eaba696c79dab808a23d01c6de86b85d711f128db83'); INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"f1ec09af67d51677f20a0462711cd5841b16d4aafbdd0a96d01acfb39260d0f5","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'47aeccb9132fc2c1f0dec942697758b066be5a378acc16e29f1d3e7a35abee50'); INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34af993069c5d53cfd345556a8d11dfe6c55b1180b3f0f6aebb830bddc05e73b'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'66724e8e99e51baa262722c6eae88052a81304c7f6374b18116079f68c5ba6c5'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','39e1e259565b21d103bcd7dc1a247a2914a0eef236e156541a6cccf425b8cc34'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','927b77f67b703c34f945682a5126c5dac776ef1a30fe35fd64e7deba06b7ff81'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','c301fb8f7138c9b7c321d7ec7ff98699be88d6659acf8f863f99f6d99bae7b29'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','adf33ca71aa977f1bc9f8162c56d6083fc6e62a7209479d77155318daba577d0'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'8de59f57d5b6a5e092ae72b9586b6c32ce131a396b7a91d870f9f3379d95ff5d'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7f157c728e56454a2e0c81a17c8bef72565609a3eb2998a8b17f864abddf399'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'83a43e95055ce1f250062d3f7527c2168049fb30089fb455d7bb7ea1f999bb15'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','89215c0a26cd9a8f51e204446653216d5fc85d6f9e6b31e791a6ffef231d2af2'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','9a1c2b5dd69b48606a0dc1790913cf69a59249b2efacd3638be7fb17a3fb797a'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','bda1526ff7f78854cb400958cb3db74ecde3b93bfab2dc5e72da067427627ed5'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','5de28ec01be3c1ba12781b4566bb9a793e029c11b73588d7852217de0d87b852'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'fac40e0152c83b84148574962486c5004b599dc94e0174fb7d9df3ef2d9dbf0b'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a8fab0933511a56b404ef295ecf00fffb64c1cab3b5e2b7baebe947bc7a125e'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'6fbcfdff9c6a46390a0a03b5170929341d284af7ef68db058b4e35b700fc0a7c'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','d4b0309d6fe3fe5660274ab4b6cb6c16381e3a4ababdbca9073f4ffc249b34f8'); -INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','62d23e86e0203029107bf193f08623b57bd7363edf709e85584d50ab27f2372d'); -INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','aea95f999929431c35e9b826ac8a15938043bc1e7356806bc228f896c2b94d3f'); -INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'88ea011ed87b61c777089e712765bc2c4a773763eee38fa9e0e6c007381748cc'); -INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d3ae82c29ae7be0f509d66700da13ddb58497c676036432a757b84c8eb11363'); -INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'9aec2e311fc4b1884360aead9583ade3d42a725d0ae23cc098fbcbe25a42bbbd'); -INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','22fefe2d6467e8be3b7509df7150be3af5dc2da4efaf41e34f94875323c2955a'); -INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','877f0bbd2b5b8f2a6fdbb8a60da8be5a82702053056ca8250c92e637210e29af'); -INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','67e90d741867356f057a5310c0d8deafa05d9bd9b99ab326117c38e472cf32f8'); -INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'6a9a68859fb9ae82bfa5d244b6b903dd9214af35014c451846854c674e3d5a39'); -INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8fbf2f55d2960480687950206b660368a633888678d56429c58d87ba67d208f'); -INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'457139b57264cba3f9d21064a45e16c11ad7488330f52f4c559b9a6aded432e1'); -INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','cf12f331fc2290e9150cec458eee3428ce0f8f7852e9fc14501cba4ec9282674'); -INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','4e923e1199fa2ab3dd1eef138eebb436722eb09199f7cc501ce7e228030659e0'); -INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'2c2bc7d8e8b4f741e4c6c627dd3b81b1f7aa9d27b8a215c79e44df1ffb034071'); -INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b330af58df09bfec338b9b3b1373dfcb29f3096d784cc11a56e3b6cfda13164'); -INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'ed3e45f189a70ae5acc1865853a20f4f44428ecca406adae387ee863f69240f6'); -INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','715d4ee33f34e4f49b49c551657d1d34faa88e7a9713d993706e18a916f6113b'); -INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','e06d8aee913aa7efa7c1f5fa3977195caed307b30e3d2c2745403c6561c15472'); -INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','3404630e7ef2f67993d886588a2ea02c6d06681c5f31129f8b65dce8798ee870'); -INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','3ce672f18037f21d483e722fb572160c2cbe9391717d72f9aeaa1912b5bc773b'); -INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'b10b80b45be86d9311e43e77d0de522724be82b712c5a6c8f9c8ffc085911b3b'); -INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aac7ea2267e954be5cbf082b78c00b89d90c8d5c56bbedc8736c55688ae53507'); -INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'a63649685f46863e6217c3db3ee199f85777ac6ad5dfab694d675c31fda34d32'); -INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','4861371a42c180e1bf4736772a6c9a17f8711f49e83d19ae4e3d59fef2dca34d'); -INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','aa722ba20dbd61c67719553ca071e34a500029f7da27554475cba3335c2bb2fc'); -INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','0f51141dd0460bddcadba3a55d33c7af3037fc4b588e0a5b518d654afc593c13'); -INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','bb38b73b7c196af096c1fbba67129ffceaf072147b0d70bc4e2fabc93c071e69'); -INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'33bfd7df7aa68cae710e809936216ddf66d36431e26bad2bd9a02bfcde2c1ce1'); -INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3486559eed956adda7dcba6f3b3edc7f88ded69549ebe2bcdbeb493487380d28'); -INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'b8833cbdf733eed74a38c957ff2c9d5ab4a57ba81d31272a501a14fd4a4bf4eb'); -INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','12fa0e702336b0ff0491e4add251e0f11faf40ee06313295dc6fb603804cf844'); -INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','ee2678a79001a407c3c1eb6612f7492cca6f1f8962882b3033b17ea973ef1e6e'); -INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','63902ba227921ad25b352e2d257a1e6cac3228f5d70b684d8e1cab686eeaf6e5'); -INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','58156b8074547d6f755d924c351aaa1e38688d70b7193820fcee6ac6209cfed5'); -INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'289db68d91bdba9de84df69ad9b208848658d67bae52a260aa3d0b345ff26649'); -INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d16771dfd6dc5f1b93ec012870f604a9f40a38635a6bc68abde03b6d625f4a3'); -INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'f67c211ade52acb6f9da2f0f1fdb4cb2eaf4a731f2813c6a45984aa54fe23ea4'); -INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','f03f56a9635632af7f045da179ffe5034f6c2429dc2abef245d9ca560f887862'); -INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','2ef587abe0afb4f629ccbb0fc8e70d3895846b6b9c4a5e84ef2f3664c5203cd6'); -INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','64e5b207585fb11dbf22c4d6f09a3ccca3be8a3f2062f37a2a239d3c9fab01d1'); -INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','2c8db0c21fe04813fa6f6beeb620beef82f68b80c7d304cb812cfe1148e954e3'); -INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'04a7c817e011771de0825f59dcb9204f8cd6de5f1c8affc6b9f68d36055638de'); -INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87039f360a1a2b490ef47125224e19d7d8318c5a98cdd768c341151ed77498bb'); -INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'f96c77af6aa6748a5e893e1f4b027b436463cd8424402db37e8ff6c49df27271'); -INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','69cc69f9d3c3ed4eaad5fa3ea6479a2a15616cca87d2d0351020bdacd0a529fc'); -INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','88009cabbe4f3135790cca14f380fb47165e41768554c21aa9799dd9eb4b1666'); -INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','cafaf7113e84bd9b7fbea30d978431bd0d07f2613267c2df6a3938fe75c61ce1'); -INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','f7e989df89f4141f94311e84cf98e7ccfdb3c32b79d8974021abd254a2b1471f'); -INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','afdb70240125657738e9ed99f60a7357b6afc2e560ff03a5e1f926b7de2b16fe'); -INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'0c0d23a859e5ac2930545bb03acb51bc3c4604321cb912e5c92bd6c3d475eb99'); -INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e556997881fe1a5fffa229dce6562800283f144747a21e24f9b90d05b947129'); -INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'772443a68dc40348df97dd9360617b734d96a2289a1d67629fd9dbead9528a49'); -INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','feb32fd440a8437b858456e26aea808cd350d0b2e6fa06369b5f628358dd7819'); -INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','08edc468dfd78c3ee0f2fadb87277adbcb21f160b58ca06898061e0faa286f8a'); -INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'7b3b9edf2697a12cb174c13b28c89bcd66199ae226f857f84ccc5344c33f3143'); -INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb8e20df4012bd77e721c8634dfa7a2ff9cd46f558be72b713d79ee41d0b10ab'); -INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'38f466652b2d7da777d57909e557d5c047787723455e2b7eb9090114a3d6ddf0'); -INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','109b2ef63e2fd5a24ab9e1f2fb2b4b6d78a36007992af5ee12339c7233a4b410'); -INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','19111cb8b2ee24fe8c8cf1e3fd63a7b0884a0fea8817f5f09d14a3a28a71bf96'); -INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'9da93361b764fddf97ba68248bb7178032876bdb6829782b4b535e5275ac7a79'); -INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'257c5bab5aead655506936f1eb884fe603e54240128d5142553f9eb03c89a86d'); -INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'0090cab89000975a3c4ed64095370b58f8945ec4618bac8e54f729abad3645a7'); -INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','de9c6bf83d27d720058e8b51defcb11c53aabea9611879f45b0ac7afce601855'); -INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','f9cde6941f1023076e2625eff4b215a2df33e94e069163c2a6d97d55f2c2594f'); -INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','f64752d3b741ba5caa8fc41568402a3af21eaf84554cafc846f570bed51e3be5'); -INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'63c482230f1247a3a3f4ec0657a505817ecb37a889dfa152a3e9e0b72ebaf428'); -INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dea2a4327a69c547afda68df2d7e19cf8350ad0f9be1ffd83bc2c55889b1674a'); -INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'8c417ec30eda8ec63f940a4c88c1056eec6716b23850a4d6d70a19d7adc20cc5'); -INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','fef121b2a4af803018e76a24d581ab37d47c36685dfda571ebf7a0633e0a7f03'); -INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','2785b51fcae00c0cb7962d6880045026433f590a2ac1af5f579454c018ad5177'); -INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','8b98c19ebc776691a0a7a7a25d54426294367d1eb0435b0d3f10892741b6b0d3'); -INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','77005045bccfc0834b734616a5dc70a1e7dece58d072ef168471c195061bdc9d'); -INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','978508a07774e33403abe250e3fc2f713ae05ba2be80bc53ad21a54060c17bd3'); -INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a2dcd66a5663e7678a82557b7a8eabfc88b279845876f9275230d91560ff115c'); -INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','d087b55a7e75585e4ab78484d6ef74389a4c29dd24f536c054a1229d5f7d71d2'); -INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','c831b4c4d47da798f449eaee0ca97d2f477fc023b69564c74c43b272465c3da2'); -INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'97a0315b73fcf921ab404c840a19d4885c2d48cbf87c6ed9a7aa8c5c4c24842a'); -INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0a82a125f20db28b5d75cc71e66a6129a0a46362a7998cf7cf1085aab1e12e4'); -INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'0f4dca053399c4187cb07111bd7c8e57f9d7edce2148265dabf095119aefd978'); -INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe8a8762b4b48977fc36e9743f4df40486ea800b7bb82262ecdea93eb92e1c09'); -INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'5225d000113675ca41964ca278d333ade0988b23a23308f9b13b58f06c5333f3'); -INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f18f3a079a3e5a5f3245c7543d11fa0920990114e8f8aca44c929f81ca1eeb'); -INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'675758893ce3d3a5311ed4a130fa42598c4feeeacd53eb0ba7fa7ae9dec16846'); -INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c5fb2e2d0cd75e178c3e7ad6738bc5b304abec4db019539501a67734604d276'); -INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'782a063aa90acbf3a7c29992e726416572880f723dcb45cea77ea60f0ee1dd82'); -INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78c7931907ac2e0dae95cc9df553b7cda8aa9557698845689e5e890f1d112704'); -INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'7e80fec940afdd18f1a2a7d23ccef2cf17f3f03a7fba6882b14f9e402073284b'); -INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f378192cac9498af9a2b59d3ab96f0ef5901214c2ed7ff05e567dac90dbb023'); -INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'e4c9779d35f936f3b3e3ff690b904156683ac8fbc550afcf6fb48457b935aba1'); -INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bdc70a0edfd408a7288551fcf0dbb8e75e94406bbd96efe04bf91f08b352d7c'); -INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'251a340bea9caf6c8c6fd8a7edf031d9d122103a5a8ebe537af8b2dbe375c4dc'); -INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b8fa111a2c873729bf9e25360e8396a9d1640bd44bfda604f8f3c050b739ecb'); -INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'37312a8b9511e70b44b040a3427bd69fc08ec2ca58d490ee72a2a81cab93366e'); -INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f07484e43a25eabb8316acd9e535c5ea50a99681669f65271602209525562777'); -INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'f2d08d731299f8d578242bf07edcdc9acf3091a830ea7f22545622b1fb7f55b9'); -INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf99c741f39e2c62dd2a679167c7d1f4aa6e8985628c64afa6473ae91187fc4f'); -INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'fc7209716c10cb95f0a1f08323c2a296ef6dfa2e66f491b42f729a3e7d3e49fd'); -INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62f874136d95a4143831f2241ab95edbc1b5c47d3ff6e907d7caf4854e6ef599'); -INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'90ef6de86e54f3d5093bb27f4bbd8f0704e250adef4eeb8a15726f72d85484cd'); -INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd1a6975f0dba5d37c93cd9860d760ebb499bc8fb2f73c464a2f0acfc4ecce36'); -INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'433a671147c4b9688bb4dcb8819703b27a4f9fe3d327050ccc44848577227411'); -INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f1db24e248c06ef08263d3ec3f5e1d6810bc87074603384c97ff0edc4141931'); -INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'14f77212d3a89bc225db9d7aec7238c01d1019da525793f4b47d8f117f184669'); -INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54f54276e814b8dfcb7bb9182d97f5b2e0ca8130e6a778b357006e5f024f9cbf'); -INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'588c05a6057b381b5c8d7def2aa4f727342b35249bd29e1c26f46ba2f1207448'); -INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91d747112bc36c6a31a67ac2882279aef49742ccd17715c53c6165d9f486a361'); -INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'1f2a2677603e8901470e42bb0da14c552f84241c936a9e43e929aad496e32133'); -INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c68d4c35af53ede3b4b592e3c2b1a3d29644e535b7990a4cc7d0cca8a63d08da'); -INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'c47510801bb09fc89644f903445d29553f79694e5553536dedb1699380b598cf'); -INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'208554869c9d6978aac3fee41eb81bc409f8d1ea7da45843e204dc22c9be5b6e'); -INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'3c53bdcb29e9c82235ec92d5c453db3009fe54fa164247f770ab31f3b7364948'); -INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb3f8e519e23a8549e7dba131b4b93922bee575ae5abb14bbbb2a66c6935a084'); -INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'90c8ed72e09ae8064468268afdb4c7f620e276efb55bf579aad6095f20f74b2a'); -INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59e03eb9f59f3e6b5a5c09588b8cc0e67479e20412c42fb4c3f4ffb3242a3b81'); -INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'0e04130262bf18928d5f541c7bbbb5b2bbf8448a6f0edb006d1a80967dacd119'); -INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f127ea99ae59b7c23821b39d9a77c6fec08df81300ff72d978e6c69961f9ce51'); -INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'693c08126a08b43bf6850356bc1fae5a7e26c154138bfb34a48df4fccc62f0a8'); -INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9ee8a022beeb4d71d0e18e39872c29b070e2e3c064f4531196f9d90b010f5c0'); -INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'9680c34cf54bf392e20a865b0406e53f0feefb6daa25ed7ce29bb779398b01ce'); -INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d96d64e5ec6c85557f03be687c1c40937a18921eb8cbb332d8495b424437ee9e'); -INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'604e06961e4e303d4a9dcfd46249d3a3d7d5e561034869c95976993224bd61f2'); -INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'536f0440eb893c14fe4f878d56a4b9f036b7cb0dfa913a5917e2e31bfa9eda4b'); -INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'9867c99b58f174ac139749ffea4b3ecfe5adca1836fbe2f0e63313b5866369a8'); -INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81af42e749b6a1196f9ec6623347745c8d0020075f32007fd6b6a89f44a956f1'); -INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'ccc1a5ea70edbceb717803b45ee68c3a90a693dc493296237d24e9d867e18093'); -INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a5a0572854f482ecebea2381f81f704d33f9e330b2c3fddec0f92775f968a9a'); -INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'55919b81ea8ea3053b233ebe201f452cb4ce8be1d3a2e31708a5adaee524916f'); -INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c7e972d91b60abb19403040feffdf41d69f0fe09fdf8112b7e120b126c2fb98'); -INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'bc8befd74fb249f6ef344ed1481b20744d6d448b4768bb90d91080c366b28922'); -INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fdf6ab23283d2634198e9b292ae1e39e68c1d1f1089d1c25e799e446e5b60dc'); -INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'9d8f1248d3f2ca94a0414ab0ae2503b96991882073026c31f91ec792cdc9c5a1'); -INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ceed24418158574ba87d39fe06868c4b0464749cdc87ed67a4d04d9a7b6231e'); -INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'a8538e232149bcf3106d629f77fddceef34933a220a0e3e6ff6fec683342d3b3'); -INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90bf96d49c74db83c4443c15b1648c87ac5022cfb65377aba9973563a5db0ed6'); -INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'add1191c13eff5229dfd6bb4bba1099ec8dfa27cb400d4ab1dde2e1d5ec76c84'); -INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ad6111500f14b929f164e021ef01cf877530416c472d10e76b99d423cf19c0d'); -INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'e068aad05607e55a4f9a32a2c952b58027ce5d3d35e013d76a68304ebddf924b'); -INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'667bb26b368b49a80645bbc1d797cf7ecd193939792655723fec1312a9e1f989'); -INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'6ef2f290cc3f60bc7e832b711df701c44d57ee8a626269814607bfa1de3db28f'); -INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298ce17936825b014f7e27bfb675d866e7d2f0bbe70ca79df42448ab25d7438f'); -INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'d369a6c16c569b994b44cb754a759c5e73405726eb234d3eac57d1288ebd5915'); -INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6339cad24ae6831d169a1c93bde7e5136de57b0a126a4a212e80e96cfac1dd67'); -INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'0d3a6c83eff1ba557a9feb5a08c56d1d6dde4922f1e674f203b7a2bc2ac7306b'); -INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6ea213f253f8b3ad937f05fbd0681d042bd80dd8ffe83d980f5ac9db649b201'); -INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'6699f5430ccf77e5d4ff3d0ba32595e6c030180d797d4e15ea4f9f131572946e'); -INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'125430cb931c56fb19bd1493b201b9bbc75d55dea584a5d64d36a5f60838b5ed'); -INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'5d8ebd6edafe88d4d2afe07a401a65aff442d0e26e632d7d4ac4b315fe3adf73'); -INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca3667562e53b9ddfacca8d29186e36a11305369ba8b65feefaed220e4a602f7'); -INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'9d683413fe9fa426f9be85f609609590d7a626521f1da9ee8cac546f1e7c0781'); -INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9406d10791355d5c67d8d6baf0312616736aa63fbe03f3ca6c66a36458a1b61a'); -INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'88f5f2f08e121ad09a2ed5deffd31ed609e9060f0a1f58c2a9792d7464346fc4'); -INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae12a9d297b9e5f279d8a5cd76781539cb79717e89f49f6096e0a2b08876452d'); -INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'21a61a54b1e10734f194de4937c920d001b48905b31a5009448e420fbe38bdd6'); -INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21a69b8fa872048c22f50943d7b12f7fa2b11c70228f0ba8060670ccee2e46c9'); -INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'32e23f1934ee693c138e3759d8664f6651db61f4d3ab8c913bd5cc041b59de0e'); -INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6540eac6f132620c73b1931d75d754d54fd1fa750ee87509f7dfabe338d6e804'); -INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'9dd8f21a4ec7b2160f85db74f98e06f0eb78cc57594b4c83086f3693c91bfef5'); -INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5611763c1621e6e2992c863bf7aaaf180ed07774cf6b4a5d72533ba82fb95cd'); -INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'26f6a2194d3ca92aba940c423f9b9b2aed41e6f29e3a75cc63ef1410237186a7'); -INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc005399885c82345ea20dd9506b4dc172ddbb2b95394177206b215f25429e0c'); -INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'3ecabf9d40bab5071e080d09fea6884b5f7c0a357511f8f13a0f985f81d35167'); -INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c79851f3608320f1512857537e0fc0dfe3452ea6d580f9291e930a911eb76cc4'); -INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'7b72e8014f190d9854e943cdd4b152bf7790861d0f596e06db36c20e690d2abe'); -INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'489f962891e92dd1eef9886524c872679140bb7255e9903180f66ea68cc5d177'); -INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'ff96205608fa201989ff5795ec247cae62170e09fab5048643bdc66778117c91'); -INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65708bec6b0e844af6372338ad30e6d7fd59471ebf03825b0e6c5d49f5425259'); -INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'0e1120a4ca23f26a6bd8b5c4936a7554b1d41fc1f66908168b281839aba415ae'); -INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81f41a96589c3ec3349268ea65238362d5b4c3ee81920b3ddd02962a46abed43'); -INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'f10b99487833b1392aefb49ff51e8431b01d985343ff4bde8c2d3c934e335f4f'); -INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0990855ec958ea362bdecc4c935b986340f8b2c857ec09c81e67e62281aa649'); -INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'cdbdc086d68640ae467cae883e81659c76e16fb9eb36c081e8893b9815b5c118'); -INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6446b68879d61df3044311d27b975c256d782ca6e824a6421f22bcf91c82c82'); -INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'d99c4915c5d3327c4c991ac3243f4236c1a05e993b7a032bde265478091ba8b0'); -INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23894b3beb839887bfd67f061641c896a42b8dd450643e9d0c24fcf0fc4c0648'); -INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'98b7fe347f533db55950fa28e00e0c1b4667ba41b42e38819665c8bc22b1feeb'); -INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ccdc4e747997b66be0e235c4481c9b35d7ac03f1923aaa4f50db9506b10ac5'); -INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'72482c9a27874dc09718d0cd0796d12884ea94ca486ebc74eb45a98cd4b6368c'); -INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ee9c082e681f7c8d56b49bc653f470913c0cb1d83e9f4bec7b552b9fe170a06'); -INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'47c5ea405c7d6704330e3ae80def60a3c8ab0924d2e33f6424c45add06893188'); -INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a2c644e3d7fc10baf4efd7c7ca3daa6cb098ed0f5fa432a95b28df06641a6ae'); -INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'d1bb350e380cdf33157bc1600a4f592e59f12decfe8cf009c3a0bdd78d352870'); -INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cf100e845c655042084ca0c36c6bf58cdf4487d25d7f2628e22c7a7ca011a2f'); -INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'efc2c903700eb893510b6472d5beda9a2278b49a229d0af7dcc3e3dac37844f2'); -INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9d18fd4934eea951a148248f6f0ff8a19a4fce9d9d5355bc8a07efa3123b49c'); -INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'960a31cf400fa26324f4f0849c728205b4bc672fd81fd6d1ebddbb43db348bda'); -INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3d4ca9114e7ae35daeadb8e94f8dc643ec21e8c2449ec4c3fb3ed0000b29937'); -INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'76261d4e81f91746eb599f8d90f90d57bdc25f7ff362cbb91dd38a0e6398b359'); -INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85bf6e00cd360861188c65fb310c6f365eedc53d63da8eaf745394176a580546'); -INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'fe30d23408cc274e085e11e4fc154a774172dd9a71a7684beeaeb760a13b14f3'); -INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbdf1a48ca689c5961c6794e6e6c8360f944cd07ef4c868f91441255f3acc973'); -INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'05479afb94c81af0e06099f56504f480c0046d1f63f913ef604131f66bdf2b7b'); -INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8ddc31fa9ecfdc20e242f97f155c2b85b85b2fc50aa8e1e96e8de692e3b2251'); -INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'d2deb26489f33f173bdd245f248566aae4baa9390fc89929c84eb6a6eaa45c19'); -INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fe90b87f5d6a83dea4cccfdcb83e7f83479ec8771bb290bc5aa95335a7fe866'); -INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'d73ece405e93be7ed668b27925be86ddb6594126f3847f7a4738b019f7cfe52d'); -INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b57de7e5f1a27c09bc4f79e0fa426be555ebbfc8beb3c5147f217dc7880dff9a'); -INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'6bed121b4db0b751053f650b71eebada49b0f1f860dbea936b3aa5d8e3434294'); -INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dd04b1c53291bb72ccd16375d8553967a1d82ecc03627518722ecdcb45ebff0'); -INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'c612829a023232dec269f8fe878d57221e3a08695a191bf9ce24a05ee882b03b'); -INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0577b04787e00a66362fa1aad4bec7970b52ce04c829e0533cd17ccd142e323c'); -INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'5014b97510f25157adaac9a4e4f2715aac0336e1b95e0be9d2c177ec9dcfd2f2'); -INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35db3af068f5b8a4afffb0bd778f3eecb91fb28702c7f8a84fe17e7216f7ef70'); -INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'e5d97e02e4e6a774cad153ea1f801fde0cc81c993dc61dbd1016d197af45cf17'); -INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'600f766f29aeaf43327623fd5ba05b44adbf9d5cee1490c0bc93d2e95b999373'); -INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'61a3a680e894d55dc028065bace6fc5d4086ef15448da354b550e423255e6823'); -INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4bb842997068966b402a57a88865a8fd38ebe181c52ca48119667db1f751c8'); -INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'1a0b600c814b264ca3925f076f734f4c4036b57076baee75ac02df59fb0dbc5e'); -INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76396cd027d33b7cede286d3b234fd31aaeffdbafe8f451b856d1ea60d84d083'); -INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'50e46051d2e8cc65dda9c0922fefc78f0a9426c38d1dd6aef3cc0279eb262565'); -INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16129848586c0b9c49f027b48050d7bce2c070f33bbc66baa41b189873cf5c03'); -INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'7a30899b42567cd0fc535d0419a61acdad5383aa5021ffdf1d2a2402dc9ff97d'); -INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4931b5a9c2f7726ecdc254dc982e74a8a65d4a2cbb8bfa09c908c0cf67c097b'); -INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'7a967ecdb84c675676489724dc94b0b45025768fadad961036e325027f7c7fff'); -INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ba6a6a4f6ad4abb54ab630d612b2cee94d012c2f77406a1f4411965e55a76fe'); -INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'75f56248d8a23e92388d612cb0fadf2d2b40fa5d0aa9b4cda0767c8ca65fcaf5'); -INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1237c98875209bec4db26958139f3de57be3ae342aed92a2c05340796f582117'); -INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'e882466eb8bda6149f768df651dbd057defd008706fa6c990d1a88867ae97b3f'); -INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df125206c7e450351a5cb34386915eac0dc2fa66ba61e4bbdc962173d70981bf'); -INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'6e3120959c0725f216eb02bee6f75571552ef64df1e8c196e1243ff0b0e9d93f'); -INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fe8179057b6b4007d572013745ac70104a73b9d2f158937c96930884886a1ab'); -INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'a223d58c93d118098040ce8f767d0437d42191a71d46ebc28b6dab10ad7c06cc'); -INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d91dbf4b36e236106da0264db2dfd5670e51b04f52482a2632e820c9ce43f3a'); -INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'927c68b7ee5498108bbd7a2709cc464159b557448dae4edaf8b80ca4dde490f7'); -INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63e024ba4683433196176c2ae99e7e6fc142b4ee6ecd966d0138fc1c2759f077'); -INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'e59c48aab0a9cd5accc06135a5ba6b662229213684356629c1f6d45af0284d38'); -INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4450af4118331fd5536ec7379e25af012b09aadad4946a2e8850e31204ba72df'); -INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'37854b51aa94cbe91b8dfbd3fb6f46bce03f818419972b3ae61100c6ee18a5e6'); -INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43d92c37a6258734d6e667dce6a24b712486808177622db4d6f4e3d9427c32d0'); -INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'d788832c6ede86833549c226e8c85632f21585d0461a8ac051ec1f5828250237'); -INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'180776d9a312f669321233448338112a535c9ce058df836309c2f7e9084fa5e7'); -INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'71c6ca913b7b38443cf7405524f2ecf889601610a162934b96c935efc4be21cb'); -INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b06cadaff4fe788bd9b67e72f373190acdcb91aa25c416816ba69d27fc7d986'); -INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'03d5aaa56dcefe30f32132665508304ba20922f3bd8d3c3484efe30cba315389'); -INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1edc9c9b50154c8d5e1e4fc49a608283a539786e72403a451a2929596051064a'); -INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'80543a720190715ee8bc522c6985a456bd5c2ec4e26f62a5f3171d1d8ece3545'); -INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec6055f30d757f5e31a5e0ac8dca9b904fe286640571a82372b10f6484996b98'); -INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'ff898e700a001d877ac46e5160d0ee1c7251e1cffa621e6c45f63121a89a86fb'); -INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c83581075d303ceadfef793fee758db4482c4bd52c2128fc423c73ce31c8c97'); -INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'87b82864651d9cb35b8e436a97306e9a533f256ec3955dfd0a05891b6e57f8c2'); -INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','d8b57b83f7aa1e7b8514123c0dbe2c69e00ca73738eba0dd45ca0cc98a232271'); -INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','e4497c4edd66c7125119e50c0ddc69205f51945e53186ac7d9b3da8d849802bb'); -INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','3f922f753caca9704a0b289bb6a3fe66936ec7d6eca5ecf9a1e9758f4c451ef6'); -INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'0cd31050f7d712fe7170b318bc4348d4861330fcfa07c0002b6c314ec5ea0d88'); -INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1066da31e0fe26eb392d55d5c2fb242862f837307b0d8097c0bed8b0d51dfb4'); -INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'59b881e68fb10ee04ac1c5b3bbe9e5c18bc844f52dc1f863539dd15aa080c9d3'); -INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','67028517321e93e6125c03083f953d79a4795844a5bb5e9f58a9b4ac77927e32'); -INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','30f159e336c2ce435c50befe2c6392c36862274801a18f14c8d634c07465c23c'); -INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','743f780375f8fb165454b14680f312cbd833ab50cb33de817420620ae5dea4f8'); -INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','62869cde566ec96d3122515f349bf31aebddcfc1ee8b2d0c028085430b0db7d8'); -INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','ee1611ef4dab7d0b2f54b5415dca6b4d72d3aeb70af9463da585264a6e459436'); -INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','d327937b7673b76990be740d16a15e3081250e29d5a60f3f65e8b5f5794570e4'); -INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','469022430ea34a729d67ded92ba41a83cec34f4be6c33457b756169d957665b9'); -INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'0242040d1a339cf1aca9dfe2870d08cc2fb732d0dcab71cdb874cce87cccc715'); -INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae357218f6196ec63d8bbb2d05fd45b0ae882a7f7541bd1e97dc5746be9926e9'); -INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'d01e107603c8692289b070668865f53cc4a7837dc38fd15b0b522ce99b279376'); -INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','73d7e7be42e88bbbd28d707244495d26a8c75af6bfef974c91f8b8f200b19e18'); -INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','6be13b51bc80ae1a030697221410932b544b333fa243952caf8c8e213a89fc02'); -INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'4e2a6cd5045d20c67fab39a45fb64161dd2ef457d90ed379ad48a33d0de7d30e'); -INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'197e30d4e1f5644d415c20246013d373baa1601212a3cefb6e0cd7feea92d8da'); -INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'af1ec2a6fa78e1bd65d431e034d8412e8409719cb3d5cca0a723ecd6bd4588e6'); -INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','52123cc62e35c311ebd4a127fd3fb94402754399da2380bc74fbf7b147dc8951'); -INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','a6a2c75e4ab0750121ac54aa37d372defc7dc4c5ee96ac52cdb4819453c0cd60'); -INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'e7cfc58e41e8561ec4dca70cdc8f1f053211797eb41cc354353b2f7919d642fb'); -INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf1d43a2d06295b8c58d0fcf58cb793f0e42441bbe9bb0a3b1440eb4b6c16333'); -INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'d8e379a2c126854a99fc4b7fd6c7e20a4a1907d74738cedd22121d5510b25cec'); -INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','40ade1ba1f4e2c0ca9b4ece8ff3c650d3d185b22a0ba28021fe69bb360f327e7'); -INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','713933680d1049e595d504fe6888fcb666c8ecc4243ca462c2e11a54ac0e64f2'); -INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'6ca1b23245f60bf646f80562e3fe73027d04c111ffb0b34e137aea1a4264156c'); -INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73128fc535f1e494d37d153e6910997b16a8593272948d104dee43a09672682'); -INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'de005512f0b74d966ab2ecfa0aa23c556df78ca2e7ece564fdd00f642057b2ec'); -INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','ed5a41e8f520916c86f8b5ac452f697b53d259116390c08149004506e8c7dd4d'); -INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','8aefc6a069ded76a9a0747b7b0cc86ef7c64526b3d0bb035c51ffed3a0c0a167'); -INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'ae944e585d42101afaff3fda4a375a84b9be641687d41499484c42af1c38884a'); -INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'131f97cfbf8e29b4b42c2db55282e19c4bfe0758aaa594d0ca599161db31edff'); -INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'740e7fa38a8f08c4ead1ceb5e46abd64c08febed088db85186b3c065d14a0559'); -INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','c864a56ab226e49c765fb2aad3ea4a5cc22b2a355b9613443f71ea901d1326b9'); -INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','5cd8dfed938aeb5a5f120f083c7ec9e4063aae57b67b4d5cc259456ef592fbe7'); -INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','f62451eceb87e05781c1fa23c6938a03be6aa0b77648f43d40bb6bcbec4209ec'); -INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'5332de3819013254c7cab8ddd85d8e9a5cb4ab4d52e666b9b8220de76d31c8f5'); -INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ac47a04e13ced56ce76ffc628ea0d83e7ad5a7356e3ce0025efebc34463ac5f'); -INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'f54189c815e3239ff59ed08f2fea417f1073fb665486eb8e1b4c9dccc4433b9f'); -INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','a81b157517e671aead8225f95a5773c07958c548cdb728b128e899982e0a37e7'); -INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','f09b40650846d225673cc00fc6e0c1fd1b658932596aabbbfc4c003e8eb77bf1'); -INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'e2775499fdb6a5b56f3e30362d4ed7b1723960c744ad76ad6c2edceef4d3ce00'); -INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9deb97d4cc653143b022059f470a33d37bdae8fb6ac560aea85296c2aabccfc5'); -INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'5a9187ff29ffd78823d55e616a8c32a4e979b174c0921379d07ac64fa7511770'); -INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','37815a6ba91656c50b6a940e63e7faf0b0560fdb863c3170adc16a4073a37142'); -INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','1d138aeea34f9df854ff504d14ae0c865cfd106395954b6246bbf4cfc657abae'); -INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ac01607527b8496a8a222c823e79bbf40b0627e2d598f4b0e67326dac21d6369'); -INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','1f06417401e7cf06ff6b4a33aa451665f154344c2444226e33dfc57f1b5fcfd0'); -INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','c79c48f8ae9a74245ef1079bca0391f3cf561d76ec72e036f9a4b98d782bfad7'); -INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'30e95ae7f2368f3ace9a999fb5e7ba5d956802aa76216e9e51298184d5ccfe4d'); -INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52d6a24d17d3da5843aad7a5c4846fb3936d01a5bed4306a9c01795bcb2de6ba'); -INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'d8ea2044bbff141cc531a820870a3d0c019a455042e51096d92cbc6bc70da1aa'); -INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','21db8f7f02974033d926dff5cae82e958f9d1cae22faf7d56308b0854f49dce2'); -INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','0871b7f05dbf2c7a8a416dc95b338fd8d6cfe6ca5fcc9e7e7b3c2f2918807031'); -INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','6b1613a543aed74ec274de3053b7713db4599868f4b224c5a9187d06c1ae9eb5'); -INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','191be941a6e5fb294983e32fdbf450a61e7f4ccb095e6797a9a710583b62cdbc'); -INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'9cc461913485104474e58168880a08e4208d12e83fdfd09b76fbd631436086d8'); -INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2d83ad46a796b9a9a47480420e152cccf01095e7cc072b2db1c5fc952c80af1'); -INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'9d09077fc5275f1dc6e5a269a02df284716104ed96ddce83c53bc953879e8ed3'); -INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','8d65648d9a06a5527e26f82571ebf6fc96712e9f0e0cc7a9fa43fe31db7b133c'); -INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','2ae23480e74d6026b86091bd8482d05bd13506891c2ba37dfb2278d7fdce21c4'); -INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'df7bd0b23ff88558290ba457c1e5ead98bb6aa1ac3cf8651b45c8d88f625c9d3'); -INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34a8577223ccf0117a968b27109bb6c105776e893d7523230e53fc65e0fa57ed'); -INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'2bcb8e6ec7021d4c16b9613f3bad0518062d540739a829794238861c1e00038b'); -INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','c282f122c1c03a5c646f2adfdd2cbefdb0611a10b9379b6d1f71ed8046f5b6a2'); -INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','9486b3e94ec6fc2c5ea2629726d15c7f89289fa15c205c4bb07ea3a42b3d074f'); -INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','8bbbb431d57466f8962c1a415c61935e7d76ab686e7c2704d1534bd8ec59cf51'); -INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'2057f96aca0f35eb582534cfb30a2f77b5dc10d99cff003bd2f08fef253a4c83'); -INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4eb447ccf64f2c3d2182fd4e5f3b7a412def348b2aa836bcd76a2860b24eefcf'); -INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'405182e4802f0c5dae9519a8bd1071bdcf1cc478736089c45b0a43709005392f'); -INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','a9859736f25f9f9cf747ab3784714b20d3a8b5e700da171ac50305ab6466718f'); -INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','ad4d8ca13eb9edea5db333b8ca1f7ffcfdf0381f440c743967fd56fd72d32f1b'); -INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','c6790d104176ac23e827e420311ff7965a822feb55ebaa5b4bbf7e8ca1e47e0a'); -INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','2cde10206eb27ed214da63c9ff8fd6ac4cfa9c7dcaaf34b109b27e7bd4633097'); -INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','af57acecce0a6722aa5606147320acdebfcca6cb44c5298b2677e47189933563'); -INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'e3e7cc332b56d617d2055b36c61b4431b839664742c7cb08f160d70573b14ef2'); -INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'238916113d2dbfd5db198e214aeca21932fdec92543087e92bdd545e91fca84f'); -INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'84e5429bfeb4db4c8e1ec700dfb81a002375abb35f53e93eac32d59ab7ed6dd8'); -INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','739a0b9af89c9a3d56f0d6f9db3c488f259964cb73565d5aea9d6c7a6a4ca0f6'); -INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','3fc59990e1152e0dac51f716214c8f70a3e5ff1c6c5d28d742acb520a488165e'); -INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','5cf050a4516a1d1720c95446151056e2cfb90b2ad2fffece946a5a44e56271db'); -INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'d845e92b4ba91cceaf01118687789abd04dd15a23336492d34b7b2ca69375c64'); -INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef3b493fecb7f5a3b03f975ea183e59f7866e40094df624a753593c070a4ab4e'); -INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'348c9f8f5e81388b945d0793c0819b9ea11e3a26784f5076a364ecb6bbe118fb'); -INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','6adaeed5b3483725f554d213e4b7e2b0d2da7eb619e0b239822d23d64fe04c28'); -INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','5facb4b9f009aff188d9e6d8ce52f37b850b22f12da444493604810443851c9c'); -INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','60565e028f396a64c8937a3f6050daecf35565558cd8286706f4d8c580750465'); -INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'b2ac56c9341c98561c6e67a994b91bafec71b1a608783fac8951b2e27a99c50b'); -INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec45557187d36a9ad8d35e187610b4b898847eabdfa5458d33eab7fb03695d18'); -INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'14af3f3662e465912dced271baa49be2afd94c2a991908a859059c493fd4c41b'); -INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','cb47dd7eab8875e007067e58462c2cf6aba8ab04bb6c5c6072165bba78efca51'); -INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','f5d5c9987c5bdd885eab4428f04d3e20c07fa94b42e3b014d3ba82352fa782fe'); -INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'23259b8634641a62287d5c49f8f2fbc2dd3ba60b375ee82e8b74b10566bdb03e'); -INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02183616bfbd57093ec3ccedaf9c48724fadfa14c9e59c71423e43d0ba353599'); -INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'6403615bcaaf769c9a99269d53430d6079127cf297b915b465dd747e42cdd6c0'); -INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23fca68cfca74d64524a466ebd5badbebf07eb09734d8a66f7a35245eb0ce6fa'); -INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'62d7fe8533518af6af7ae60ac030dadb190711b18c128a889e7c4a2cc6971597'); -INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8e305c6275bbde73c6f5db73735d1413a10d7a6c986dbb58a7d68393dec68db'); -INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'2e28b79f17f417237b5f53d356723d94c0cb1467204398ca51c5f0da4be2d1c6'); -INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f87ace0efb39ea147d9da8c0e5192ad5fbebb7c4607bc16fda0241fb4d566872'); -INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'dfb7f560c86dd81ae015f0c90e7a5879b2b91527dc8363f4cf5147ff8f136878'); -INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b46642b52c71e5e999c256ab74456241d37a3091921111afd5216ab8321658f'); -INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'5f4e4f90526a150b2afecfdc539208fc0ac14271a8e2c5d8875b16e750e5961a'); -INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07eb3f1992b0c96967fffd1130163198dd9fc1e1c85057645ae3f6e41dc5a006'); -INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'8622d390a587cca6326461b74213869e55f3c750a03873c28df370562c265f22'); -INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b4faba15418e6fec7fc9f9147abb20e00928f65073b3063f441329c2c759c34'); -INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'c405be990d9bcc4e07fabbf94648ce0dda475fc0c5f5c124923bd278db0902eb'); -INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b95b2691414d74c22f20d0fb9934d80b94d787d39f6a81a2ec2709c68908501'); -INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'baefc36a6963aa80dd62e179d076fc9c025d17f5e0783a67821e8751295218b0'); -INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a68a80d9246d1a2f975e21a82a4121bd41b2c7cc89a0fc7369bf36a0aa368229'); -INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'30f243a7658a71be948d697194de7e1252bb1a184109a933ca818fa9d923887f'); -INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff7383952e8e80cde4ece78714ce8bc0bac03dff3755807ae90a3d69d20f0803'); -INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'3eb22569a6ad6b7da8ad2d448bbce2cb9ff53fb36cdef2c7d378a3cc0991f4b3'); -INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e444f0da8c024f52bddab7a3105e13187fd1d4b260b58634850d48bc49277283'); -INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'3307a1c334020be25e4b17679286f48a0c7b369f296e4eaaf89dbc1ffaf37ea7'); -INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'569c63bfe16dfc5992b5eabd566dd37671d59d452d7f190be93d427f89f124ef'); -INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'1bc8d5c94cea0866eb56693fa57608b97d6556371a1389a62fc3ac2758cd5af8'); -INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f3d4447b287ff17feefae78baa027e42c7d4be2aa1eb52234de0bd9a0e32911'); -INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'7ab080b691369a35a80380de1e62c11773e3d7f10bec8a4b4cee02719b8fc71e'); -INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06917ef33b09e2e1cf07f53fd43a2cda29590da423d23d090ed858e61f971c82'); -INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'49563f2674ca9446f24ad3f9fc01c03a2a91435eec54a2a5518335350fa1c5b1'); -INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'788690f9deced60c3563d4bdfb456a75558c6ac12388cba2457c4ccca8445843'); -INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'06443373b53477bb1268188c21964095ef52d3263df3e1b2b68cb0a81599ff4e'); -INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b9132d47bda1e31e8803b031919d75e208da21411dea4ad398e8cb3f6b43b4f'); -INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'fcddcce5ca6e193619021f0f5018b48c7c2746300c3931fadcb3b69d1e9328b7'); -INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca59ff4409c9517b9d974e3b8a932f7512b1dd68d443faf55cfb7d9ac2e52fe'); -INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'fba7bf8b339d129da5463eb3debe1e56e6d48f473a0e5913671d2c1206ca4b70'); -INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'608c4602f130a76235940d68f3bf5209546641a084f6bb7213e3790ace770430'); -INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'61374457372946c848373525efb18d74062b784fad27c1d7aa91a399527ad356'); -INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66c6b015f67ec0a4d50ceb31d51ec74f51e203ec5f709bd697ac5e87910d4c5d'); -INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'e429ad518e425d463a11ff82d3965a9b41eeb866ef8bda8b96d8de6be07440d8'); -INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'505edbf7f79b2196a69495c6eb2147fd6a8e13f5e36bfa3c9888b89420ad20ca'); -INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'7f4abf261d0f62ec0aeb053eb16e208490f635379d43a633718c7205d7c018d0'); -INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ca4b977bcf3ac7e00a83b490095074513b167ca5166b58b984364bb0a7796de'); -INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'686affb8623b3e471125e90f1656349d443c0978ef1a9ca42d4943d68a580576'); -INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2249c26faf67931de6aecabe1f4dcd34132408b79ee60caf14362a5e45e12b78'); -INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'ad9e4e8589d5b003c8b399ec48283e9a70d29401c5f9fadd3fdb1dbab3a599ef'); -INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2234d608c6aecb34632dc95135881d285c714f19c22ce13bcf89e2629df57f26'); -INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'0520db4ddb7778fa0e34d7b3e37ba4310507f3456e0584ef80cbc2a664252428'); -INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c406de0b6d31d1d348c252d940c6fd2decda8c48a31a297d7faab686bef1f195'); -INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'a5e6a6288eea0ab1172889b604078cdeff5463e96fefd0791393374ad9c72c9e'); -INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03d81092fd989ad2fde8238631a433c82307451a67c31fcf1c1f9b3f585b1cf5'); -INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1c87c5bdc71d5e3f6bf3d0cc57c4fbd3a22ade13a264f22e2425f3e4db4dc6dc'); -INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd43e5fa01017706616934737d319225bdb516a05bdb6cf529f2768754cefc2'); -INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'4c0672d8dc0db56d1b1a9d08705ad25b7537e69d9a320270869ce5051dde252d'); -INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a322aee6f9e1e6a19ae4c6efe90a0b14926b91d9c85175afe5ab74837e41bdb'); -INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'49f6b62af014599e108691f42e1dcd4fee3ec96b8d5c3e618a589482ff15ed20'); -INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ea4d932739c0d913ca3fc1004a397157f3a05297c986f05fc05b986dec9f477'); -INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'739733b62e365a2be3c481da884a05560964e40a7220e738ad688e2bd5ed2760'); -INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a550ff1fcc3de3c2db556ed120476a5846d2ab0efc3f9e830bc2e9e7dc26213'); -INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'de92689a1afd313a94285a039c61e4ffac815ead85ca219d34ddaf0d2edaa0ac'); -INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c1810dd736bff82c7b29e73ac773c36dc4cbcca4770e0ee8f2354c07637a6ec'); -INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'de21832a46195dbb40edb7c652fd3046f5671cbe6978a50980f2372022a08301'); -INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ad29b9033149f4098a70dd37cd9e34e70c0bd4ce91a5c0a9a94b3cf840ccd20'); -INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'1a5b59ee839c7f8db18ed91115c4ea23fbdc097849673d0cbd8921e6f653f014'); -INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09e5c6c7d15917341871a5c246f07c45071b29da79a4104b3d1967e7ac9806f6'); -INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'3175e3545c223cb9004f0345b29e589cf6fba701b2a36a07928dfcce72da7f69'); -INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bad0591eacfe2e9174f7b6f8e27b477d46834bc565dc6750d349da761e85f871'); -INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'7b2ddd50d8c87b31ab0af98e23ecf27a0ff675d779b6217732945c5a03702372'); -INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11c7b3a82a5769549e5a64a646c5258c0ecde09a976ce5a3fdadd8e9b31aed2a'); -INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'2e2faa1afc3962c5e2f6cce66a24b9f5a1284c435037afad3da28c7cfeb998d4'); -INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3162bbc95946b98ac9d903b8d8a78259dcd93f547c2798f67a4d6ea30616541b'); -INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'b9e70f270bc70d82affb6c4c984b07819f0bf4814cd5503eb0f8eaac84e906a3'); -INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4816387b36f3807a250595dd932b006bf1a2c440e21de0eff2b432ff6a482117'); -INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'dc0b6a35f225f9982cff4e9f797cfcec4d18c9751ead7cef977d7492afded665'); -INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a6c4b4d3808fc2a40a854e800414148366abc7333dbb6a496238b77e1972e16'); -INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'aa3ecb181f30bfa3017f08b030f11a81969c33a37e9d9cb5d9945979f1c346d6'); -INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8a7ef9293aa49e708942e49135ab510f7e41b6bd75df0550d7a2f2330efa533'); -INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'5d1603cbc97212c1e6b6c9cda6790cdd84d6c6e29ac78b45e67d8bc76cdd9f4a'); -INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5ba425a4851ade7b8dba5f3f91767a389fea9e8002bbd7e0911f8232124f5fc'); -INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'5044349e8e776b40bb4eee2ee65b6e5cf543eb2390011e38bd851e872e353b4e'); -INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06543b3ca3bf6efb181f4fb4f3c884f9c2210842664aa0effdebc8cbf26dd2f7'); -INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'1796351732357d8f67e208f76db7ad5f08358a6be628c7c851dc0a3b44a97d58'); -INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccdc4c6d6ba9bb6c200e584015ddb51be0c6664a01d9d706c98be4d4ebee8f6f'); -INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'776b748ecc322a419918fc13989ae279f125eb3aa9b406c8acaa70f5b34312dc'); -INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92a0082d42b5cd0de3405e1570b80e8bb144fa133ef0455d21ef38ac75bcb226'); -INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'9255fb7841e8d6f44cac7800a0805538cb105e2556b6565a0cc60360adc8cc8f'); -INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2342888b11f6955308c42ebeed171d0d87ab9eb3e0d22e432ea78177c8427e02'); -INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'3f9fc67b13e68d3beb94ba237e2ce89ceb69eb39c5010ab565b0030905d99d01'); -INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d204534312ccfade3757190b46dc1cd8cec121fe0e760593cc692c9f5bab59c2'); -INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'5c86eb96f4b79710e798e7053c1deceed6174a1b9f36e69b096d0828dcadc421'); -INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d64b8ec8ade9bab775fe51b8aa3d2ae07f764044a7e79d6cd81c2bfe51c8b7d0'); -INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'b223117c5ae03a9d0577139bd999f437a9b8b342c6a575083f7f00a4e9e7ee7b'); -INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18995ebb380f0d6187e08cb5b194fce138a3c396cd779deff652fb5da7c0bcc9'); -INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'e10ce86edce8f0406bcef6d2defe398cadc9576cc977b9c372df400a37da3db4'); -INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f026adfb4e0caa641e192c754c25f8b0bc238ffb721e4139afa59b1c002e69a'); -INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'8982ed82904b2f9879171267776cdcde8b037d896cd435fde7d75a8fa79c8c0c'); -INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'564c74a3f8614ef88b0812275bdbe70995756dac3fcebdd3f124c08addc97ebf'); -INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'32a765d6e00719ae39135fc87cd94df7fc8002dce8a6d4335bac98914b9d742c'); -INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d42b3c9ec6518eddfdecfee82c217f4188b2a73d35c45f6b3c301be326035876'); -INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'153671d8e40afbed803145f9ec30bc1113cc720e3135e7388693a8b80e5b3e0f'); -INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d301210bea4a0185996b5c89ffffda2ac4dcaba972c630e18cc6042df4baee8'); -INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'e1e73e11d2b34ec62028ab0b4ff6d52813e1c2ca872b6b7daba4b9b2eec6eae5'); -INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3aee3bf6fcf19d3a946740a226f2c169fdbf3f3d9e363d8abead28e1c36f071d'); -INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'d3e4ca71ac17bc9ef2345d2bd5052648225430a49f1c93684060457817dbea70'); -INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88744160a0d974f5ab59c99a581588250a9c293523a8680ec87326b04fb2cc6c'); -INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'23a90d39ce71d404121a0ea92b38435a685e9b0b4e7d27eafff0ff5f2406a92d'); -INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daa24bce7bc7c2b2b2f7c2f479a96d003d4b21f00d870c37fe327b405dedef3d'); -INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'ecfcc252fb400ee5f24ee659bcb2af3ff9ab116880c35b3ef6b6fc74b0f9e4c9'); -INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06a50bc0beabc4338fcb051126a2feb52c61f572f896fe2c5556afd15584a33d'); -INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'5eefd305d23ddf47bc13990c174c5ce8bbe0fedb6964c83acf55ee3dbf169677'); -INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04a857088557f2eb3395fab3cfefa1cc0f97b15f310288fe6a5f4f3a27e81b29'); -INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'f2f013fa7116c18527660dd80d567e8e99539efac6c75edd2f18ddab7db6cab3'); -INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b542310e89cd8c981a309ea2c53d3c5c28434d39159c392f48361365f3c73be5'); -INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'e164e973b36a5d99712b9c40576c7e68f65849ad11d5cb811e3aa963dd286fe6'); -INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8416e813f4ae6d2f03a02f5d913b86e5d2e24d24cfb108f799189b9b6575364'); -INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'a7846fda25da0b901d87973e6d8d6e323b4472c9658f62adb22993db333b20c0'); -INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1e98d6791bc64e0e6e550cff4ce6740dffaf0084406e981504d6530043f896c'); -INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'d51f2ceb5005c3358dc08dbf5987fb8a35dd37e2d9c37e45d2de4f1bf735e2ad'); -INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02a987c996fac163c5417bdb618bb6ff46095925c5257e8f73f967326682fdd9'); -INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'5aad6a396787c913c5f3c9a96af241b4ca4ff7fdbeacb4d488dde6aaf9346585'); -INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bc9b0aaa6116bd52f3028cabb8c3a0f5d4b37d4aad0efd089f1ec847d7c1805'); -INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'e53845d29e06907e264c69f0084d5dbaf0693f5476fadff9b143afde6af0d66b'); -INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bb6ec625e3e3ee5c5da4658789f54338009cf0ce3aa10c07dbf43ae4d612135'); -INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'c68bc9dca8c6b0a594b9cf8a452b6d27073320110fcf377108ba34e89670e0d6'); -INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49da5dd021a6cfcce622f9d69114e4eda8478c43eca99d500ad8348a1226b454'); -INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'5d5ad1201ea12ec2f49aa42373885852d1beb66bd4984ce8dc413b1bb5c08a68'); -INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21907bb21cf61e5592065e3729fbb5ec27721965d8275e104e3fb237c58333a2'); -INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'3c0dab759dd6899e10c3e8ec0f7a1831c032af3a1b3cc26bd0f5350a814eeff7'); -INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942128110ceaa54f625c1988d830d967bb00ad44b59880e7ce00f292ce75b7bf'); -INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'55ca3ed864aaedeb4c65b43203852788d9aa48c06f6a1ebb1b9763b323c7615e'); -INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da10b81002421477b3d746d95b8e797e5e426825b2db6fa3670ff4983fb78f6e'); -INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'ee17e57231acef5733bea7c01fd2c84b39e58d94c7389c6b9f82b1a3f579a6a9'); -INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54148aad2801982aa0a74080d092fa88d5276139ebebc4bf930f34d86ff8ee61'); -INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'64d74ac1dd03ecf5e729bcf99e34fa0feacb75d57273168c6ca9cbfa69d9f7c0'); -INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e04260b3cb2e2c23f825729efe4ef9691532fec300bc47628392fd693ef2e519'); -INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'ea8713431181e5f2cb0a11a5c11ab2b407340f7195f3d94528a2c7cdcd92ec14'); -INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b761a83c90c5f408299134e6c33e6bc572779d06cf632eef29322149787f4e0c'); -INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'6b37c8b977ccefd14bdf16d4963344e8c9b0aa536a3c5a87c83ed7b846fe851a'); -INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'636e11fa0776ebb15c99e07868a7b437c3d96ffaa7791e165540d81a35fe5023'); -INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'609815f90e5eb66a3830f30ffea5f835f8b8c05cbb3688b709c21cc57345117f'); -INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ddbe150ec3a850718ae058dc793c130066af8765c29eff35ef0b66f7c5fa27d'); -INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'85610044dff50fbe870d840782ed6e0bc40398073c2f3bb0f6204d2eb749cbbb'); -INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe3b446048fda394cbe3966fb55d322391a64501e783c22d806e5e2a145db8bc'); -INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'9c499509c7e9b8a490f32761e9e85f313e77fedbb25c2ceb2d7280441ef9fc86'); -INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d29f60d32700ddb3f152ac5c9228913591fa1342193d49c75249d2f810b465b'); -INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'13a8d7d701515741e59edf6a29e3a536a9c0f54cd2065d87266f37075fbeb89c'); -INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8c4f755c44e177a2514e29c66d2cc45274463410a6c41407ef79c8868f120a1'); -INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'23b8ae8066b42c5e81a07c203d18ca7252e71c12de71fec1a3817157ef024e1e'); -INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598b2c9dbbc2c5e938961a7b019d1ba3e0ea17b65821897348cd1d9d7274bd62'); -INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'b0858397bd55195830a42094ca869e7d8e05eba6c3ddef4211e94c6bff78cd58'); -INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99800544abd9c3eb33f6e83f11ff0448ebe72db056ebff3ee03b8a5dadecdb0'); -INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'78c2c9bd3ff3704dbb441bf0edeb7450cbbd2c4871278d5fd5e3cdf6b33c2404'); -INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90c9dad492ab2617fc8aaf4aacfeb7ee3ede40c19bf33f4a511f1dd57617d1f9'); -INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'4095320a85f39225c536a83edb04e4e6a993b6affb31acd9a1dcbe462cc6dc1c'); -INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'535b1221bc19b301cdf718dbeb6a347f4fd057e56c5ba10d4bb6ffe0545a3d8c'); -INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'342044641025c0a4c65a075c2c752528c8eec3868f57dc95b95bbbb10bb0563d'); -INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'653d4d4ad98d7976e04f5023d9ad90400bf2f8d5ceeb1a4f856e52abb1c3127e'); -INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'839e2db826ece6ab2b3b10860bce2d7acde3b665038f5206f9e1dc6d4056b790'); -INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d9e250b8b44aebbbc8d4c4e16a11ed197d136f157fb3fd19d36178ce1950030'); -INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'058bc781dd082167076bc84b7b9dc18d0c20b5506653315d851d3772b3303f62'); -INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32b65fdc30c2af15de2d8ea7815d68f9e94de67e7542625a290fc67109647222'); -INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'4774fd039ce4db76aed5d3d3812f801fd27aa8495c675a64a2f6c09baf928ee0'); -INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2956ed7636c625a8b485bfc2dae3dc8ed9196e8560611b7952d1cb4c6d371da'); -INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'317e8a2f61aa0730a1acc9ce85a34ee660be6debf7c42c6c573637032534bebb'); -INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bf7c4afc424c5a646b1dd68c4be0fd714a14b19ed635e6029a8892e16dcaa94'); -INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'78d197dfdbdfc2128abab62babc59e8c530fd38f6a71395b6c32747a1b0bcbf7'); -INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c35b23c571dac8eb7277e7d58aedb23c40498fd5614be60cf6091155dbfdc61'); -INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'bdaa1e7b679e22937e37bfe2e758cf37320260b0f50dfd763a48ad6bf0941e04'); -INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'329f0e0c23a0ca36f25e11ab5838254f8aac141c57081ef1b91e42f145be7109'); -INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'56c027e85e5cba013ea96c2521e4c481e3c46678aa0c4a57009536607738261c'); -INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6626a162d54018c0710f9bbfcde9a625442916efa184d674bf1cf451907b819'); -INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'bdc5c64e64a5b8d56630df1c7351a4700b37ffba762d29980ff91c6487f2e8c0'); -INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b8f7abe99db5042f242cc694959436d50a729282b43e06b246a17d9a938d077'); -INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'588f91146019d747f1a1823af3e0dba8081c7845830c6835b9557053d5ff98a5'); -INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c86529ca13768597e4cd37b90c97b9ee7b06770d3e64a8d5d26fdf4f76de13b'); -INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'c06e7912e19ac62d46c03eb64a6dbd170d686a9126c10b2d94e6927d56312cc5'); -INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b05e8335fadc0e7b6ec84d76a4d5613b29e51971b26096ed8d65b4c4953300a'); -INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'005a751a79e4397f09708861a5e100d6f1fa81b69de34ed9c9cb7b2d1516c187'); -INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa0ba5def9d6138c72ddc514e77459ae5ebe439ad89a0e25df706a88c79327ac'); -INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'93a1a4ea05bf781351ce44871389a77652c76c7470a33539e5e7d9da41204c5b'); -INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69977f906bd9ebdc2b7884cf851d81a945108baed99dd5b561f4cc7de153df4b'); -INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'0be9a1f224f189f595d28c0f5df711bc888ebe0a48eba9225daca3c9e8c31082'); -INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c23c6a82129cf1466357cccd9d25a47c6bc40cafebc8138c9699d2f35bd6c54'); -INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'e69cd90bba0c1a92c7d9c4deecfdc463e7395df0a6c768974ac25692ac5ce8f4'); -INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96a6d152c4d74fc63c9e6f348048696cccbe50408743688d7e684b0770a9e41d'); -INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'006774ac8eda0d6734dbf911aebf78d9d5e96ad7b3cbb7ab4f570b80a9178392'); -INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fef3535fe4b2d148f7a4b857c4af328348f8e91ad5db32e9b559a9f38682a1f6'); -INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'ae186ef1a88baf16559e72299a48203eae0211ef0fd9ae42a9a24633f3946b98'); -INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7410cc27dd6ad98476defa8c9e4f3d65b59e4fa92392772e21bc0e797b32fef5'); -INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'0cc1812311241c9eea7b3baadd1035bbcfdfe4f876563fe005d17e67b94ebdeb'); -INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'657eec5a326ea8f596c053e03eea79d111c69dd4bb6e9242c32ae6b6eb888863'); -INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'2fd8adc12b57e80467aa9af57aa5fe802886bdd3179f92441e0b328575ac6284'); -INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f36551187bf75d08f5b214314f9d95cc54e595761892d37894b0e9906a1fb0b2'); -INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'d948b812d35bf422d0ef5ddddd878967cf8c6cb77f331f3288ba9ceaf6aacc06'); -INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2d6621545b2864570f6ad7ff02c0d7a60b894d70fec31db68adc2a093ef134e'); -INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'0e8e9acff8c1a1ad855902cdf9be3e2a2b4601c566c9983acab16e3fb17e465f'); -INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fee01c21553063092505ceaf392768a37316be5d0a0df37aa4f424bac6afd6ba'); -INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'a5b1afe171739bf9c6b79768e59b89f0074a362b4dce2123fd16425455b66387'); -INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b8733ae31bae115c49fde01eb8853e004c5de287f926a0ba58c362b7f0854ff'); -INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'403bbb97e5160121e485fa11f55a39cebf714963e2fe97bfbac323e6bd2c2e10'); -INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24f8a72857c7301092b1c39cde44c8eb8d1bf78821f064d336b3d4f66a575cc3'); -INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'aad7d2017a5de10dee160310bcae0469d38c56dc4065ab1e8c988cbbccbe46ac'); -INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ce2c50db94b66bfe48e83ad8724fff3c82b7f5f33635bc33354f8848f3897d4'); -INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'1d45b0c3ece4d507c2bdcdddd48c8963125d4ce8f5080c0242871a3a2cb37682'); -INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c6c410037a49bdae7cc0fbae80131f6ba208a147b7706e2925fb3effe813d14'); -INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'5fc6b465c7ac745d4e996656c957d13c4ede41e0a2d347d3f9b9ad63e89bcde5'); -INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37fbdda6bd29d4d5d2ef4b4e2d3f9772e73b80ce2dcf49ebd809d74be2348178'); -INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'23de563615526db32fa74c684d5725939d991e555e20a0c696f9a3c3ea482de4'); -INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75ebecafe0c713e46489c8294716426c335295c5f04135d68780aa055bb2d961'); -INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'81617bb5874c7585ba7d2e77dd50538c74037a12f9b1ee35fb6afefa6a682e3e'); -INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4142659741d97b51e5a986af1733331aac3cee031a8f05bb375408c917a1847'); -INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'a96d5d83f74ef53dca5dded0bc69b99d3b8655be18860f4e1b2c101f3e54935a'); -INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dddf4e1022a0a797315a30df88a8a7935543fa98fa38720b880e9bb9ba2f5f23'); -INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'4d7dc8d3ecd1643ede2e0ddc80cb82027f8695d9fe727555804dae846821b4d9'); -INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b80c93e09b42ac443f89ea97e220ac7a579de9acbcdf2664be70996c47fa1478'); -INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'9569c5aea637b9852423a8a7d27d258b9614f278129ef2c9a5845487417f831a'); -INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c281dc1892f08d8c651bc439f893198f375de0d1d1f864d4cd5058ba727b134'); -INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'cf9e7c02c44b4e87e716e4b859f921106f760156e925fc0abe8353f456996934'); -INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32dc3739d59e72f0593b0ec56934b79addb67e3897f0a821f76a041189463982'); -INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'9736c7295147f8104fff9d124d4295aac687c18756ff93ed68849311de35d593'); -INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4562b8c57e20042023bc40617d497302dc3454e131ca90be8877e0f82ced397e'); -INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'998d9c11a72e4b5ff916e5cf90ac3058b21307bc3f7f88ae456f6fc7c0a228af'); -INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74889bcd7a6762ca4c9d10ea8990a27a24e09eef69c040be61bc3bbc339c1587'); -INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'d146a8d3253ae49ebc5c2509905d9c40b6d5c5149cf9d716125f4d89e85012ca'); -INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ccc428d09ee728fb673b66d1625f1380cdaaef01468e59a31cddc9b119d1b17'); -INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'e004427876a2dbf21ba5b3ab90e07449c8a018a7f67ea41e7a4bb19a88d63d0f'); -INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ca3359e0cc77bd8394f46b5dec6fbc83a1cfe2a2a7f1f6f611e0c3a041656fb'); -INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'ff4c91b14b712a3cc8b8ee8dd4a3ab898753f1d892f444928344fffba4733376'); -INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9396e349c97912d415ce8deab8e3f45805e82cad2cd1eea4c43e6ed0d73e3d2'); -INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'da3eb99bd21b268907f195e918207853bb2f1aa13d57d549816338c5f2eb925f'); -INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3acaa952e1924f042dcec43840c3d75e7866d64b39c52dfdfdcce07344f936c0'); -INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'ce500edbd7df91dff5693ec325b2f16db178d9b43d6ac881769d95466c8c8882'); -INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'682b88417fc622cacd563bc2310f56479554d90556edbca5faa90668e001dd26'); -INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'3adf25839b1a343b0a5dc2826d65a5070847a982e0049f35b2561954ad401aec'); -INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f37ce6c54177d3d53baa2f47df530156035b7bf5afd81592bc6956f806d3e41f'); -INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'0e66dd2bff80ed116d93297639c421aec4c29f55b612e7eb272cb2eaeaec9430'); -INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93a50c7839b46ce59f4f86d1c8dcbc8b1fec6dea6e66d4cac67e841f8c4e2e84'); -INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'f82fd4209e1e7515955117d9df6159e2b6e7a7ef43d2f75ea26a8e5e0c7e0979'); -INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66061950c3710701c0856b57925b87e41a349a4d84565c85eaf5ff4d022aace3'); -INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'19537ba6622a22f06b94bd49754074f671314721b788eacf39c24a3b37afa83e'); -INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad059fdb03137d783c3e2f9896ca8e1bb76764c342393b496dfd2d0fba451988'); -INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'a612cd314329f28937d1040fdc1364c16751cfa11afb384eb4fee08c3a4102d4'); -INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ba3fcfb0a4043d3c7236c96fef6f35ba2d8b14b1b75d2eb8f13ebb5fa1bd056'); -INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'58e8237256d770557bd528c961e6d4a260bc74c63b504d4267b416447593a0b3'); -INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e556f512f73aca402375e5d3b22be29ccf66a7981e06ff614882c2ad99720081'); -INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'42352905894f4e999684117d5bab1d21610006a427620bf69480c79dfed6c0a1'); -INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28a8ab8a22de275365f09dbd498f2488e28ddcdf4411ad26ee860ac5d6851afa'); -INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'0124ba95e5007ca622ddae0527c773fdc5847a45bd1af7a00b67ef5f553d652f'); -INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'927487308fff0d9f6e41ddede509235b0d6746f40d61eb8c5ce784dea58f7c4e'); -INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'6f4b58b45a7fdcceb795a70c45248adc24319dfc8d68d3d89c70ac8a8864d403'); -INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af8feee3356d23163e7e83fc2231d1f61c88c813716b02fde069c806f00b9046'); -INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'fa890d07236a3a8d007fb8ffdec38f213501af4cee035c4b335d1a0860086027'); -INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b91806bb7c46c0d432139ddbe22c700abb1528e2da5e8b58d82d0e065daffa2'); -INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'4cffe3a94a6dc36828fdba9469129009745e74c11591ba01cd67993bc5e59d72'); -INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7635e7867413d4df61a2a7b88603c8386e6282032237336703eeca7c623426d'); -INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'ecc68ebeb3ef202894b716bca2c231b63a2ab83108c2effa4c90a12d8e21c81f'); -INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14f1aa9a60d21d1743ff1e1b0b2bcb5d17a817ac82e4be1c6b642a9d3c1b7b42'); -INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'3efe832fa8abcb0aa101871fadaed1cd3a6fd5a755c578a6f6eb3a93e0a245bb'); -INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64accaeff323f0be04670a467e776380ba7b22423fb2f52834e95144a3088c22'); -INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'39fb0b9c79f3e357af2e671c8e1bb8b40cce703d24d8f4bfe5f2b130b6ed1848'); -INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'201b008aaf54ee6c5df3c66948d83ed7a9f128c25296f2fcf78007af3fecd0b2'); -INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'cfe255be0328456b713bbe8fa81c200e6f9f0204911369b49dcf3ecd86737d1d'); -INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'207c9be7d3ea2d7ee4761df8c9bc4deb1ff9f85d5226fb6e31168e113c10b468'); -INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'60e02f5b775c73ba8ae0e34cf7139a12b4a82f58fc687366dc2a51a00e330663'); -INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9705372ed589896fad80a4e27381c0903fcf51e924de5e9642e629d4f06118a3'); -INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'52f4a562d76ecfdcc7ae4e49d0483d113ae6b2067e7c519c3f0e0cd2f91d972e'); -INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'428589ad86e9d88b8dddb631a77d7297bf1fd596b2916f83a89921ccb80ddeb4'); -INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'4e6ab0724f48bba266bed3de429d20736c674bfaf30fb3c65151dd16fec7c7a3'); -INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38eddaeb551487073608658b178b8301da6c09462183c09705e333aff4133f2f'); -INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'ad7d843cfc7ec3620cb390ecdcfc2797a1e2435bd411612a668e5abefc60715b'); -INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da6bfa69f964294c7285ba45012a86a1997c2d5f9d7eef5d9707dec3e49c094f'); -INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'82393452a1ae0e20b91edee72974469796d2e873660220541a58cdad9f81daa3'); -INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53c15a802cdc192f930f74a603471c51c96e06a2121dedfbf8dea02fe567f8bf'); -INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'e2b33e49b21d83100e7174ceda1f9eacabd4c2077d8f959460f2ad64590f0bd3'); -INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f817b6d6a50698201b5d53c6b4c8a924d76de5473dad564952f4f76a536ab88'); -INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'c6b38442ea973b63342e117f34587bbd760950edccd509af83e09b29eac8549d'); -INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3806e93eccecc4e8c88fe95bbb4e793059b72a718ddbf5344ab5bad83b6f0d94'); -INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'f5ed3d5aa97be085a05bb6b8f265792abf657bbc0175a22ecf202e1cce1e36fa'); -INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5bf39d69e01fdb016a200290c512ba6331fe82a300243ad3936b9a2aece0eb7'); -INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'45543a70abcda2ac60b2f73b77326f82cbcafdee2ad6b0a48e5514a216355515'); -INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40996c8347e77ee69a6e9ef86a8d57e9cb5cb69dd030532a205807ae62ae6b5b'); -INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'219ee761a422822bdeaa9282ca457bc2b7579b7fd33f84d8001d3abddbef4756'); -INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9172d228df59ce5f9ba499f56e987e8e65531c444a569c3851c41f3dac1d25b3'); -INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'2ccaad95fecb31a631174a5862e8b17a1f696c1d9d838901a766102926bcd173'); -INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ba7bf238a6067b6c2ca3f68f9cdcff183a7619a9f5e50e82f256165015ded7f'); -INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'946858869074b4ec32950a9027312d0430d45a847c8dcee89998ef1904bd014a'); -INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdd6410b8601a6e1a126a203516ed0bb7ebc55392b97418d6bf5f741bd79fb49'); -INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'20fa0ee283b2ef8ad7a9fd3672dec0fa411c7cce4f3921e006e11efefc78381e'); -INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4222a6bec7850c3c232abfa377366a02279bcbb26fe40ee08088a58bbbd2c9b'); -INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'1656a955334207f07a6f2757c4acb67bd8e783fb15ffc58c1dd92bf7f3376253'); -INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dd9396f1d125ef5bd8f5bdb2943e40abddd7f1b0a22da95d6abecbb12743cf6'); -INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'ad1b73505420c7d05e46a37ae40681a4f11c9ad35b1571ab9f2fc0add824a6f9'); -INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63f91f507db027b5cc4c7505e0fce460b802ba30248b888f177692f00424b26b'); -INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'1fa58ac545550a3997923da854c24ba42d4434b2934e5bb230ecf7e07353f144'); -INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1715cf6d9e9588a7f42e636723dca964b24e01244a590020568d47ad2f949dfb'); -INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'24a9d115a693131b39ab72878c62c5bd0625305b1a1739bf59899a7b67742bef'); -INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'257c97383c61bb4fbe74916a04bb799ad8b8aa74124a24b59d19b5b6933a44e8'); -INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'fcbf2c768bd01085107f7ec24c3511cd73dade7b78f78abc478a64bc64b1e357'); -INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d71411b6104da9f2d2b8c8bfb19396bf8f3c469b5d3bb474b917f15c5a763fb6'); -INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'594c91563239b2b30182f38e42212494847f8ad8ef7a8f88258780b476aaf9ae'); -INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ff6b8c99ce784377edf6859856e70b4a8a3875b4706966277162182fb4d0c2'); -INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'1d62a0b115634ffee8753e93b0bfd169f476a3da9dbacaf6a48c73e1f4da15e8'); -INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a7e415dae3cee4123da308213818ec55c4368e73595cc8a5a5d75c304a8280d'); -INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'9992e42dbe4b58955860d1544dd611c54bc16cfb97bf2605e7a5e4fa1a3d23de'); -INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'985299ae78c110d752d6f88297e364852492630363c28b58197138e7c2bdb3c7'); -INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'a72f1b31ce6041e6798ac1fa0c0f1d20977313315bea1b929a73ddd10d0106ab'); -INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e7c028df6b468efec47f0115ae7d5ae20964eb895bfe767470700c6bb42f5b6'); -INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'9c30bfe67f3f100342b81f66b3c1a3ae1b8507b4e520117eb00b5126a9fd7787'); -INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e448bcec84874c2049dea33bcfdb18071bcf520e72aed23bfeafd364345d9cba'); -INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'32bc0acef01b5e20c3f07d7e3296ce3501d8896342a738a52bfc24fe758fe141'); -INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a87b919a5833ea8af3a39b27ae87b33b5dfc6b60e43566316f73c8520cb3a14d'); -INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'17bb357add688382b97ec0bc9e76c530f004106cb78252fd992f2dee3d1ecf34'); -INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99eadec4607aa75ac047eb7a40e805bdc74c0017ad041a678a72b44a90a9ee8'); -INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fa6fda82d40287b352f49215c4e3823c23365076e2fbdf8171958666e950a316'); -INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc5a140e8fc45b8f34aaf0587f3e68cdf5233e9da5e7dd4fb1ca493327a01bf2'); -INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'a012b82ab611a5587fe05a0166e2b51ad05bb50263aa1a454cce06bc6568484f'); -INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e603ee14b09fed88c43ff96767ab731e6b7ef17b794f7c61ee15e37a5fce2e98'); -INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'8e84a7dfd46bcd69c44182efb02fe256ff56a3e094977351bdb24b20e790e325'); -INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb6d5cb304ad60549ed996f7763b8f3c9a5d298429541023eba62fb724c412a2'); -INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'d0fdf038745ec5ddb538ee72c6432ba621ed3a902205839dfdf6d37635ce7b2f'); -INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fcc12ee9b247d34884a8f3481ee72bb07f87aece995e5ac40f3ffc925975732'); -INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'af330f821ebf321f54151be9d30b9380f3c49d9a4b836d6b07f69d452ce2d186'); -INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18e67d85927621869c7b1a9eee942bc34b485059590fb9e74399ab4e688aa2f4'); -INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'8c688fb1407a1233c4d4870f9cda5e199bd0ab6499ea94d94347863a3269cf4a'); -INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c24e0be00ba2b78f6a51b4176af9c8097670931b3c8c3f6accb9024041d1b1a'); -INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'21d2e9ff2c75cf45a18d44c7a9dd64339f65e10c8b8cfffe86786fb0520233a4'); -INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'196ca76358255c6e4de2fc0cfaab51c526b90dd5a82737e543e80359749b9231'); -INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'50ca4224fda645264e2160ae8f90fd505606cbde88ce4dfbb1a9a2c571f3bc20'); -INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d380bca1f8936f02bc6ae257811c2599228ae417fd7743ebc630f7f3a5db15ab'); -INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'e88d2b5e789b01a116437ca2a2e6a1700aededb68c9757d9ca19c20eac943c3c'); -INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dca5946164666c9660135013d5f0fe58a329788e01a22b10a2eb92f2f2e0ef70'); -INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'64125268b238b8f7c8c5cf13ed4e94a90d7b1bdaddf39b1f776e2cc372bf7086'); -INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a85944300c33c9d805801c5d04b27b95abfb4ca70f0c38d142f25dd874d4cc'); -INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'6fbfd80fa807af78ee8d8fee17dc098c34a99bbb067be964d4e85b4f336cce23'); -INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10b07c31b3ea591241c3af4565fb98458777df8e4f549c6fbf09bc782cb2a7b9'); -INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'be93cb056bb23f5e891561e5bfb8c4b7719ca3c96531cbee1327569821e094ae'); -INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e2b209163a9f88c8e35da6723003815d1ecadce5a7dd571ea578a984cdb98ea'); -INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'6875e60059e9d28e49f5eb9862aed86e6d73b5f6606c73fb774fd384c1400603'); -INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'849773b6d9d23276af602172e84372369443463716f326a5543d7f97efd7cd2b'); -INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'4c928c220ea0abb24f6550563a6ea8279f55330d6fd49d838807145fbbe99035'); -INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a8a949a66464768f648171d5cbaab6bc874dc433a74c2fc4094881d7b8e72a'); -INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'de61e18255f1f6855462527b05476a0ebce15eacebe39a61e12364834d69e4b3'); -INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7ab102dfb5837785c47e5713f7b3e10b2008f7d6e161fc5e24a10aab91bbded'); -INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'e12381519bf31604a5dbda033622a5380e6e07ba2e205492e5ee37081305c5e3'); -INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03f1fce8ccac405de45dc9f61a33dfe04757a443bfa5495793d1ecea69459768'); -INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'e14288e12032cdd9cb3207aad0d5b4fc368e67a80565edc8ce38d46d001f4f3c'); -INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af327d7e90d276c7dd5d372c576849578af2010a34b386fd17ea1e190a6a9046'); -INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'c135d6a6ffa9442a454110bc9498fb6725ca859d0fa29331eec1f3bbba34a6e7'); -INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'636c9ce692582a7fcc21015f21253f55b0e072caff5d5bad68baef6b7847dd92'); -INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'4926f3c82f4128b009a6809c80c7898056ca84608f51b68d57e99e26ab98a4d8'); -INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28f6d113e4200f48d355b39b7d3d97f88ad634731f90d360ac21d75c8ca8f199'); -INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'fa1f0373b1d435783e3ed91a09a6fa38cde7ac110882fb74d3887cc43f3d5524'); -INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'840c63fae96015976bb6ac73aee11f323d4a46331c1b8bb41ca7a283848687d9'); -INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'b55691297bda137f1fc68e66ed62317b3a94d0fddafde1d61fddf8f39d5c0320'); -INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b059575bca84d5929bd3730352a3d56b05a999b179bc1c054e1bf19d6db3979'); -INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'5bd13dc539f98819b5e21c9cce0f764b14624c5b70aed9a93cbdb7ee80ad99b1'); -INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c0d8cea546515d3b9a142d98d2a82c5600f203a17bfa4469d5c4f5737e58f6f'); -INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'83beab1426523691a355f938c87b6ba215a65d886cd131d3a7ca5ed217d305b2'); -INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460675fc8b7077eeeb2d1713d55bdabcbee683cd4cba8ba6ed535fc3d26242cf'); -INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'a2b6e1c82a9b9893d186d1f149867c7eb90a5f875573fc827fac825297a68095'); -INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce55bc6c1bba8cc9f05e3dc73c6abe9d39248246985ba4c02cfea139315da122'); -INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'55bbe77a05ebea2c829ba03315e6170a7d798dc0d3ae4c3cb7ca409cb22748a9'); -INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08d913309a4eb449ebced8020e4b2a2851534333f163b6f2cf6e29a01c244416'); -INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'08e1669da5cd86f9e3e675958ad6ef1cdea20b31abd10e1d75cb3d1627fe4966'); -INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef52b1bd3446dc32597247034fb8521e9352c73dd8321f2602eeff0b1ad204bd'); -INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'6cfff200b73e3586704870a74001958b6a3d6f1266b326879f3a407abfb40e3e'); -INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db71df32d27bb7848edc153b3953e579a7a4c97705b778ff4ddcd538f0bf619'); -INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'dc7f78d9bdc377f9a13feb0caed69d6e5f8223e1c687a6f4068c67631f7589af'); -INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dfbf544476d36c11ae30ed161654af9f2117770c6312883fbb3cabdb7c72d5f'); -INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'cd0a1e701a749269a1fb4cfd05da3afc43aff5a234b824d08d4a7d95e79abed3'); -INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dcd0efbb046c4fc8909b89285ef68bff64b51c71ce41cc8fa7a7656c8eb8410d'); -INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'762f07009963d1f9ee069efb7ac86afc199353d6cf57d74533cb09b3abfaa711'); -INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00b54ed578c5e9b47c226425ba91996a8d663effd4278f463a64681aa5c6d8fa'); -INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'5b026db0db68523c0e331cb14f0cbead2d6ca16a5f97c84afb60e033c1f365bd'); -INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d178c95b5213ecbb61ce4ee929ffbc739bdfd8b2f3d447dd5305215ced05380d'); -INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'bbdffd6ab9d1261e68a7b9d4b3151baf29f2fe743a695a0d8f8fec17a265c3ce'); -INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e167389c3a4d6bfb2a9d4d0a0aa3ae20d2cf53ea082d9fc82a16e913fd3235a'); -INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'fdb0267973540d2eeb94c0b6d96541f101aa3f6a52b48710597b61ede288d2f4'); -INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eee1de947bc67dbabf99f0c57679ea7dc325427caaee8751838e8108d1792616'); -INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'4944439b023afafe1f8d3ecd006d41f43b6fa6dcd19e725f33d09aa272236453'); -INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3f42664c75d64487de6aedd1b08cb5a74e2b5244820702d59ee296874e142b1'); -INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'8948a71be2311087bedc1d3a95352588b0723495bc09be1b06191e03649fb4c9'); -INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c38e161ebdac754be1ebb65615c33f8802ba0a025b403f973cf9eeff034baff'); -INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'4007f7cf5efd74cc1f65d7bb8c8e673e9fef8786a4b4c731477397985e3f5ee1'); -INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487f848cf5545817d9f71e0faf82adb211064db28cd69dc811b6deae97553139'); -INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'e51af7d486953d01cc706a6f5577033babc942daa20f4fd427e422ad2e2ca313'); -INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f80966a9efc6a3ece8f2ba572095e395a33f76968968a1a4f8ff35fee0af1fed'); -INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'6e4ff9dd3edd938e69e612c872f710812a2e70d591994e58355a3da093428063'); -INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50f2f4588cce3a17a3be4ccdb04fedc97ae78d527348a49e5ff37af0ceb9e8c8'); -INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'a4728a79b4751903dfe7784c2fda098c7a22bec3b7e98155ebe8eb7a02c7cf27'); -INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e1ae664d805a8dee893e82324a0029b48c0eea6448d0c72397090f1c9ecfb47'); -INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'74162ad70f85dee2f4785902c93329e3ee056b85e107731c12eb353e5fa6fcc4'); -INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f5398537a1e1205d3afd2a13f7708526c6869c498e653276b9dd15211f4f69f'); -INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'aa6bbe1bc781bc7b6be0ea8ee238f738346aa7c347fec6491db46b3244e1e1eb'); -INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5c5927f5614cd49b54811dd7bd5774f4a1a483ed009f8190ac6382a05d5a493'); -INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'d190595fb95efe6944c51a164ac5d548d47efa8b549f4bcb69faab896acaec03'); -INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68988afde17fcf9da8207228b8a0ec07455ac056f741c6cd3ce2bee6926c62f1'); -INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'740eb85a4b89ad93e200e124b4dbaf7ac0e393ef82e73a060526423a8e924546'); -INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3beae3b964bbd6b5b0f5bb192685dd6547e189c705241f170f9b4d2ba423e53'); -INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'0fc06d3d49cb3636e700e8e82cdf59c2ceb3d6bd91a780f02e6cb7535da76a0f'); -INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b8c70f42a3e79dbe6a1464f14775c1837c38f62fab68a2041159b51ec32ae38'); -INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'86179c60d5ac12fd9503f00f073fcfa0841e9d6870d8550d23cf425d0b9a49cf'); -INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b0da633aa68864bf10a0d573ba1d6a3c5f163c7da582c656143fbd83aab2504'); -INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'13bff0d3a6246e74b7b5ef61af4ba9daf77282f896b64a1fad26d5ee1bf65dd7'); -INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68a5e41c5ba7c6da61204a5877ae2c558fa4a9652614af61793c230be49aab94'); -INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'13b9952d44794d5a473cb609b2313da1757a19c914bdc9a1e937685bde8a8de8'); -INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98ebcbc4a7b491dfcf12651875b6c61b565c7eec73a607ecbc9f096a339aca37'); -INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'35a7ec4fa0d7e7ceda5d32ab5597571509842d7d0f2528ecd09a292cd674ba13'); -INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0067f0c1146e3756b7007076819cdffa96d0117974f61d8f64ffaeb83b18f36f'); -INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'7b2468128600361fc65ff502084e8c347f5de4957637eca675becc222567cc81'); -INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8e8eb9d000fc1f2838a59a579707d772d0511a26f430da234719967eb6eea88'); -INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'203e8e8ae8dfe4bcad3e88a40d390cd4cf8978bf474bef9708a43aa7d6694415'); -INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95ce0d725d815637819fe9dbadd05218d9acaee32ff8461d621f352d01bc55d2'); -INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'504b90e82707cbf6b486686e832c87b756c9c219b7fc42598000398294ccd96e'); -INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe09bb86eeed3b455d57040c84e900201c7b275452c70b2788c358eaa59d94fe'); -INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'1a3438a49e8d3dfb3d81bc81b2cb40bf83d1d9c1e4a7747b5ff0d7892ca75a29'); -INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f004b5c2910a672c13437d8fa0655a0b319d4a3f0872a82f1bddc9027bbef7c7'); -INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'b02b1ab48b633d00a73dc3db980472f66a28d8bafe72d3de1a35668673df1eab'); -INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d88956ba7abd9c2799994c5dc8497f2978385d976e1167efc9c51fc92cc26855'); -INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'d49ee65b147e002d59d7920e2024e32149216dda974cc3390e301e1a0ee73009'); -INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92ed15e96d73c9531a3a0aaebc00e3233b3f63340cdcb99b09e89743e228b77c'); -INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'ae8eb21d0d98a4d4d6bf8a3353e7d99aaf69c9dad58e587310f31219d6f6b07e'); -INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78a69211a7ffa3adeaaee0814a008d24b0165baace87f0ff49bf0ef10255ca59'); -INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'0480cfbd9eb73e904994630ac271a8f41bff5fae947f7c67cbe9d059215abf43'); -INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01f7d4c4e89bb37f9cfa4105441b50458208148a40ea5cdd1eb8c0a08c079058'); -INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'4d2f357a99bfa5c816006aa8f6a6552c91d09b2790a253b217c22fe04262c626'); -INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c5946662675071093e33edca773b0de5fae8984dc0088c5cfb9e1c73b6d852f'); -INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'4d45ad8f638fd760e50e503b4a63561bca402c6d15941575f0edd599109eab60'); -INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5841f11810224f3c865f9f407c9ef55836c74a31d1dbdbc3f95ad550347c0a6c'); -INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'72d95cbffb4fc8390f0bb6cdeb08e0e4fc0e9e8dfb1bc17aa2825dcebbdfd1a6'); -INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c8a8ceee6caf307494ac1122444330e2de191b566aa1fda02e1d714d629211b'); -INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'2355ab4a6c2258d0b8c8362aae727f62a55d0e4f5cfda3f9267a60ef9142cb4c'); -INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7a341653159e44648a52a0f6877a9d39d5477df3b7200b316092c2f1a347089'); -INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'442621aee8204d64c22c3a25694831aae9cdb6c98f1f12124508959df7aaa528'); -INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38c92ce4a3ef64f3f3af54230d8cfe7dacc2bd3ccfd9c12e4366105ae6b818f0'); -INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'8c3119dde99934ae0bcb6eb0f4d6017813a7c90fbe60b2e3f173809126a69a99'); -INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'338e340cba9392e57c8c8f5d31ff6a01768d31324438e0b46f9057299d4ced9f'); -INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'63c3f7b34e90c5caa121a3a310cdbea68d89cb31ebeec80221ebb8187f05dc6c'); -INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50ea2f97716d554d47709a8bdcbee6f6ac293025bac49306b203d997b58926c6'); -INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'0a4ddb80d0fecdb85c72b9af8ddf82835000db46c985ef3b70c19f79024c98cd'); -INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ada410727200d5550d920396fdb35cfc42cb8b840b2f07b7b09f492ef462634c'); -INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'063a4ae819d9175b3ff3ec73371d865c85bbf94f15840cbb116b9f0093d9f5ca'); -INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a54f19414dcd54d0bbfd9c5acab7e2302a3325aba4612dc00f2b7bd8f8f29dd'); -INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'c335b94100168c3189cd771ad65dce70bfc4990219cd0975406d81edb2cc08a0'); -INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'811c9342717af8e7fff3b50b00d38853047e8180886312ce52feade219c64261'); -INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'5ab04a03a62a010774f0ec7592ee5124544839abcefac1b72ecca20cce0dde59'); -INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26e64e65296e22136d6e9920b59b00ba0ae2713176d94edd779367da61526b71'); -INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'60002fae0ad5e08530d06c8b3d23e75a4f50373735618b1100b54221b75dad2a'); -INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4858525473b46be86f250b313f6cb6aaf96e13136e74b707b9504ab047d47ce'); -INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'95a1626e91617ce9989f2b51b404162752f0e434260af53cd2204b337b92395c'); -INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b61c460043a3c87fe0da615016574e3fa630ec637a0cd7ef21998cb52454d517'); -INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e66e8a140a967aa25bdb5f1b17f692b571f50276c7cc4c3542b8963390ca3a3b'); -INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f2067fb84759778ac4ea6aaad5a609a62cd72ac590ebd5d697fbc9b8bd11897'); -INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'1b28fc1e4c05d795afe06dc9d143f0eb3a3b9cd149b0399009eb696e75ab1dd0'); -INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4201dae481490e9eb3bdbd51b7f932e7a19ae9d9a845026604dc09d6c5e39f50'); -INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'143cb1201d616f52a8f212158523b76bbc50908d5764e885ea5eb9efd4461668'); -INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a13a759525e6873b2171f191d7c7dc134f0235b06c1c73c68af8d24a7a16636'); -INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'75e41ddab91b6fcf814765508b38608f6f61c8e60e701229f3ae6481ed28b0df'); -INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31f89de6b4a78839cb4a1c67885de1ff9836aabfbebba2c3392634d787277355'); -INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'e1effcd260e53c2a398559d9bdd4d04216e882df8462e313a1fcc4d1843e2547'); -INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47566d18f33bcbb112bfc355d55dc5fae66767ea1bc8e42a33a9692045c5ff6'); -INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'78181f393605c2ef1dac375ee885b365581eb06ef1a4b6eebbd8ccb191f35b2d'); -INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'666e0b1a4ea610d6ea4109b3cee0f538ec038a32a2636d8008bcdbaee6497f83'); -INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'b0341ec44e9bb0cd64f4e6c79bedda96534a098fa4210934df9e5beea16d8f25'); -INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'346a8eadb91add74d615b84464e6b76a3c7fd63d7228845c9c48bf4f996c3b30'); -INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'4a0fd96c815e8b5e54d6bd2fb31d1c6df722ac545c0d51ea6bc99f026eedb4da'); -INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e8eb6603c420c09c9f85d008871ac5856f91a1346fbca18b9041fa4e0f6f15f'); -INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'c549b1b9e65a9cfd68b24006ee4558a876e11e9b6753f40924bf58a406e6ba49'); -INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f00ae70f7d8fead66c8a902602490f18fa661e4c474f01e2c9fd47016929b871'); -INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'d09f88005de5f9d093c8179a523857c7f331aa15c5ccdeb6bfd856bf11367ba1'); -INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df81c32f4d56d898b65c2187ca2024fc359c604fe82e48a875ad0d1d6bfdcb77'); -INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'7c3d87d0e426aec8c00bed11366e7ebabb18a057c7c00e1e0cb19ac9dd07ba7c'); -INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbe5210cd7f6d7f96d2d7b3bdb580e240a7dd8e3e15c159627718a8b9deda253'); -INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'193910a3925a3bea97162c86ccb9b83d1550ed45acec02daf8fe47d2237bcb99'); -INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eace710e3f3d1c54c8b03f023d14de86b237f71e88eeb7b62b8b581bbba3ca83'); -INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'628de6ef7c2bb3d926444d56253635dd0b9e3c4687d3f137fd3d9516927ef9aa'); -INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e66380fb698ae8c741bac39bbd05ee594e8a8def9f2c5b066820e62b78bd2acd'); -INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'9d9be17d50ec18e58dee3615ed02da3d760268bfe245b6ffdd27292d1f4e1464'); -INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f5f7a0239760366177cecd5297fc69a240fae80a49d31e7377059118a371e01'); -INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'346bc4c913937996a0a340a53c72aad2089ab0a73f01698a195f8dabfc70cb1b'); -INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adab9d0b42bf800bb8c6edd8f3fcf5fcad79159a099b4468f1b6c4db4c6a60c6'); -INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'45dc2667a1995c1d817624dc6758fe75ba0b0355b92752c74affe98af42ae88e'); -INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc8b8c1f49691bd07a1674a2081d8052774d82292a56d40a16742aaeeb8431ef'); -INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'ee8f7675d73f21aeb6144b73e485f636350f685ec8f842d437b93cd0a4a4eee6'); -INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2dbd72a77c1613789590e14657a32e3fdfc1826429f46650d8020275e42490d'); -INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'aa863cefee39ab739455e10fc711abbbe19528c0d6c61a65f261a546d5059489'); -INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02d535de260a93ea8965165ab08074172f9c053cbe3aa6a57965b90e3b9e3c0c'); -INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'cc56da6c6eac8b61ff94cf9e96f2751e1f1ed6a7a825245ca0fa64a5a9fc0284'); -INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5dfd44ad9bf4e323d78b7c419941dbb0ebfb9ab3840af9db2f6bb179b39f112'); -INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'1f81a1c8fc58d919806a5de1587946a1c0e8bf0be4533d2ca4d46b9fb0792aeb'); -INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0211d8ebb058a2789b545921ee60450e4e15d333bf884745154addaea9e393a2'); -INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'209b96e969d305c33786500bc1aaa018b37efaee9d60ea9c2ad804af3e2fa96c'); -INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a2346f90d53d021e7ffa4ad689156c2a0afd19035fc8e9538e4e30901ff99d'); -INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'936987d343c13c99dbcbbb43a4223ad046eb32153d08bc3967d5b6a665131174'); -INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddcce1ac37fd6fe0bf998f19587fe06813fa8c82e8ac093737bf70010e966d06'); -INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'18edccfa68ab88c1a6bd92ebbc6370172c42081f5ad741670883b9106e149e31'); -INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1df3d4f2f37db3f24f171848bc9166eae690db7acc2d97b9bc534c558ca65b2b'); -INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'93f3dc7041beb195624a8cedc4254161ecd135ceacfc1a07bc1eb4f4b418b7fd'); -INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33536720310849a7ba375dde4ff2eac6d3d492051cae0a85335cc482b43b342'); -INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'21867c1fb23824364eebe02fc5bdfae10b6e5c7b2642b1cdee34a63c82968159'); -INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a0e37e4b35f773be80b2a33901861161b10a1ccff64a1af5565e10fb6f04c92'); -INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'a268fb723681552eeb28c0997ffcfd4a51f54d7591f75269d814f006a8e04073'); -INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03ff65f682f8aa0305c320a5cc197859254f646129e699329e9622e2512a76c8'); -INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'12727da2cd92363e82968b1290a8ed0f446d6bc1d46558b6232b34524bbedd1b'); -INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adbcd07381f35bab135e1330b4e23096304f2b910f93618e55a4e0979c9dbbdd'); -INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'9ac4ea06792daf8b7b518db9efbc5e7ca5d9d96dd362f2ba6736c3f63fbc792e'); -INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ae6160148ae3067a1edffc498b92c02a9f6b5050399cb11ba790a57a14b8c48'); -INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'a2aece12815ea932ba813083c58682ca88f1e1002cffb0ade64221a55d61fcf1'); -INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'406451cc85edabe6ca7bb80858702b59af2e22e22783906879c20485fe9b14b9'); -INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'dcf5b891f7dfab2656f8cc767afc2a9ce491f231df33e9b437d30b9d87dec20d'); -INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8820a76206a41c88706153b77955abe0e92c35255451a65cf99ee8eda1d4979d'); -INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'3e990ea2045008ddf20e124a75c314a64591fabd047c84ac593f3487265ef4f8'); -INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a291b6d38f225db47c51efec5a600197dfd3460566888668c7a665d959b42588'); -INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'9ae5e321f03e1d0ca9843892adb8f70325e017078ca9fda4e359edd453aa8445'); -INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b1425e15de52fc020211c5267372e35060288b45d5e5de27aee5b98b564c85b'); -INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'fc73de6706a7791f25d4a70eaa0dc498feda91d2a2c43d17b9657bf571445661'); -INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b12646791dc0a874e27b9f5e137bf8e209b195ceca62d285585067d702c41c7'); -INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'f3ba58089b93ca625dee63ac77fed5ad4b8462076a8c175738493a4c6cfc6e22'); -INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba4f28fd44a01056593d99ebf9db0e6c3551f0de61528ec68d50a993dc8bc4b5'); -INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'7d254433b7cbee4c00b44ad1ee0fb48d727480697823a5daa8b6e26488445cfe'); -INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e55fe39cd5e273a992c99afb6707974446757fdb10cf15ccc1edf590fa3819c5'); -INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'3a8bb80daa7361def4a5eabbffe5532831886a52ba14a2fcc9779fa44f1871a5'); -INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48ea4d1c60e75d50e14f080b8f474e65a63ff037e426aa596daf2e37a0da154'); -INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'f8b898a29771cf122f9b637d1a5212aefb2ca3245d42ce072e4e296b92887d59'); -INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'554ccb41859f1d79fc6fa5b5f00e7b7e1a086955fbd2e9a71f56f76944da4f17'); -INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'fcdeb46e033b0c45706de5b24f30035126d21984c15bb608f28a2b03bbf3cf98'); -INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0024e6c60c384d4523eea038e7d2301890c183652cdb5662ad33edc1b52ed41'); -INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'aa2bc5e1efdd9d371619e5ef2a490097332e46e194655b13cd12df4d8ad56a74'); -INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'327132b46cf03dc09a0ff7f5c558d90234f47f9800824b8bca80e9bf87e9df47'); -INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'13e7522b1307e17bc75e642204669ee7f45e2791c9bcf313e4c441e1459f2b54'); -INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ba3fac70a36d988a0ecf443347ddec3b3999e1607a84e9e8c3e4cda3277211d'); -INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'6deb073388e4c5bacad46e80bf751bfbd414b2cfee697051cd96c8ff10df4e7c'); -INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c72474f21e21720ab8b17230c1a7591c04d983912eed5fcc144a2378008217c6'); -INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'7b090cf655071c5a47f6f8b8cd8445f1215ca23842d832c93d0bf673c63835f7'); -INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fd369dbb1af323798860902342e7b945db90450cbde2942a7a5767916a4f425'); -INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'96db4b593323d995699c2ae0bdeb2f004df7b82e20bb7752a220f8f4c78e71c3'); -INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b65387beb47e5d27696b4415ecef667d55808b63415ce653c31f02ab11f1dc6b'); -INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'3748efbe749bdb3b3d10467f08699ac4313e089c377152e7639ee8c1a1af70c9'); -INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb72e3d44433a0a713cbbad5aac9a45f1227719023f3478671872b11302d15b'); -INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'9a07747cf4ef39dc836195b45968e1f94519d16043254d7ca43a6909e15c41f6'); -INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bc4e17d27606f7f6ea12423a61afc6348aa82642433da6756a710a4ff9c329d'); -INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'84f5abbdf4fbb7eef7b3b50b76fdedf90b2ea5277cf69b08c5c23c43f6dfe3a1'); -INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a84b1c085997c859b99c25f5f37c0e3008cef0df9574ea1d429c09ce040cd95'); -INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'c505d11cb3be16d853e00e51c5b1a12d764b2409152d504bf0e805f16e958233'); -INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20ad1ac6c4cf2e3650412992b84b114d71282c09e5cda59fc7dad7df9cb818be'); -INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'a522bfef3aa944dfcb6f41d9117a2df767e4b16c924944e82c8902fa2493c4c4'); -INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b728027acee405286cd7c94499ea9c5c36bf390fd0d08501e7bc42760042d7a1'); -INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'807f52a065ba54a6c6c7449d5e0523a0efce06bca6f54ae04aabcd775593a623'); -INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b19e1cdbab3e8df588e7a391b56ee498c55c91a9ff4f844cf4a74726363478e'); -INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'d715d768ac4dc8d7939af5c8646fc65c7bcc17fa97911b6fb1b7ffc981c1f347'); -INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44769357b1c8c261d55b736edceb103a81769fc32164aeca742b1158ce7b63d9'); -INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'a6650386ed56c7292ce92143db37e501c572f05f68e0e2b11eff6df1c089dfa6'); -INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'475e4beeac0996300c387d931fab201a6a8ba17333da64c77c2c64127d3d6cd5'); -INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'9d1bf00ed700c6b9bc2f34076f2a7aa310a853b9f72bf4ef3de5a990d1c48105'); -INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb8239822082b2c08394804217ee06e7fd8194404cb9689eff41b1556f85aca3'); -INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'3d8f9be602e3d27dcdb74da22314ca9d14ca63e8f53d4cc2b5960b3b499d0e74'); -INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0191e904c6326087428f3785a361b6b3814389ff77fc4c128abd57feeb12df2e'); -INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'e902e24a53616f802195d26b0a29690903a65a6498e40b8129e5fb3f05095d42'); -INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea80d4c7bf95868d521d9d6648cbf88d5756ef655726e2b0769fd34e7b2f15c7'); -INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'26f1f0d9696648ce785ecd371e466e51a9fcc38349f27e41a4954c42f5e2b81d'); -INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6fa77ed44357dc37627494a23048f67310274f5743c1390050eb7fb809742c5'); -INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'fe1dfc962cd52a4f7199ad783a407ef07b444d968e4624b14c6f6ba99e0b15a4'); -INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de13f723ac358d55dedc779c65f6f033fb746409717e2aa3f5fce3ccd71093db'); -INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'02d2a2e6b123274a1625a84ca00934953680589df9cc479605d01c301236df89'); -INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9a1574d54e254179d91816dab4e92650ee1412780ca498d376af9c6b6ac2961'); -INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'e4f3effde9d745c1318cff0709fee73aad362ed0da8817aba5fabcc005330a81'); -INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a74708fbb8588cb7f80d475db5d8730774f0de484a3a5d2765f4ff2bb5d0d45'); -INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'5312a6e346b14334c6c49fb4cbd06ea93c860b81befc5c038ee159f5f7356d78'); -INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70a5e2608d490c1330c53d83629259d25941b0bb1db9f8440d8f25e672d36d63'); -INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'15a10d9a15381160da2afa8b91893c4166f8f45b765f980cb1bcc8cb2bddd459'); -INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b23d64bf618f83dd45304927ce9883f5c676e4d5d37bc22753e0b66ec818029'); -INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'237e1bea91075fde79f0191cb5a25d1d2b1bfb18d13ee86c531424df38266cbf'); -INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d912e9cc4d85b16fea3d500d5bb3a9a5063d38b59f521e29393bb3c7d0221816'); -INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'c727629c2e16f873e314eabf14d02230e57197606bf68041a207725b921c3f10'); -INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a064d577d2f7918aa0bd3eed05c06d3d80f72c7fa92e1b9731bafe45465f7737'); -INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'c3b7f72d6a67738090b8a6f22813f83f29f1289195093727af938224a8ecf28f'); -INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5c1570996ef8b0f76900de2cd5af02cf6c823a468ce69b0991f7da0e5dd0f6c'); -INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'51eb251e5e889d06a20e4bf3455f66b0f6c53a50a5653a9ad35974bcf4456aba'); -INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2141542c1bbf64d9da6f051d4651e0f9dfeacd183ef2063c3fb8d76ca879516'); -INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'4f102bf969ce8c982081cb0a991cde1479af52d3bc6b991af2dc7ad6f36432f0'); -INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ac6b6c1a8bfc59136328d737f7eb2a76a89dfe5d4d429a96ee3e73d548c705f'); -INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'711de33a02c08c1f2c41e067f6472e2497713dfd33879703b9fb418252a68bde'); -INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3572eca09581f9385df3c1a9805c7f4414082da8d35c2b7760cccd6855906173'); -INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'5efbfe5c2d84c17c5c0d9182620ce3099e5effc764b023fcb85f3b27ea7eeef9'); -INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4166a1aaa95e461799b586b25c87d230332262dc9f94352424d594680d675ed9'); -INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'8334a0aa52925b9fcfbf2492376520003a9110d09bd7d6bc413baf5ef4cb2bfb'); -INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c967e9e6539845f6607442e00190ea65f897931b774c3d3c59cd41250a63ad20'); -INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'be118b32b06eb4e11750b74a4585f894dae238534bcc178bbe24fd3b555eaffd'); -INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56f0572c8f0d6c2689552adb2f10c2d7d6fa884a6c541a5c19c1b4a29f79bfcf'); -INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'990c52757bbf5a6244cb81a644a7916cd8a29f32193fde2330adc672a55d6734'); -INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d9aac39b5fccd1a4d68926f9edc4354d5766cebde829609fc244762e430b35'); -INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'e3596bdedf3d9017509851340c7171e1a2c5f32118a6231123775d4bc2295f84'); -INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'635e8f399d5ae9399f56a8acd68b023f1c19bbcb21c8cc7d0ddb3dbb1477efd2'); -INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'346d2cfade2b3111a7330c0511a17fe8980e68e3cc6256b34817793a9f6cd734'); -INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'481a6fd3b1c7e87506fb6c3de9af9a15e9184c478d57b2476fcff59122c8e9c4'); -INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'b227b4c7c728a91024f0b75b44cb16aebea5f96537ade73e7a1388b4678b96fd'); -INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ea5b3c14fdcaec2c9c4cc6e2287647e044563717b8b54597ee4a4bd02bb262f'); -INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'c99aff5ea17f620884e9da5ec75fe732500ae13cf899bac8caa5a4a2c3695528'); -INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d316b72b7b57e623e2394b89f9c7e155844a93c90b0d724c1dcb6d01d4c6487d'); -INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'8690497fa89da34c4a8a12303ad7cefe04fd636eecf3f8f09321181def3e4795'); -INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f87ea075c50adb9631281579db6223cb9b61047c13befe7b8531e8595ebf54'); -INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'794b1161044b7e902afad53a37cb921e215c73f8668185d611abd63f11f62df4'); -INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1867970cb34b077500ebf93552e051fa6c0662e438eb777f0298ca93d2453cc'); -INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'0b3373c49ae472016abf7c8c9c44980eb1c00b2b55a1f6d0a10a38a4f257b2fd'); -INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d90a1ef4351b30c85ee3215671a4e0148fb30e07384ccf8d9c16eec22131162d'); -INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'2944d9ddc31294b59d5e210ba3c5326050db10a7d4c30a9301df1163cb83ef29'); -INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff883f76cfe88b73fbf157f820cb1e524b6201d24d466db672428792b0e71261'); -INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'916588d56b2c945b042cd924d62ad3ca923716c5b457e17458706c17e3472543'); -INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cd0bbfaf85f6bc1c4d856b252df08829d250793632d0e5bba15a7b31b8d27bc'); -INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'51f44a2d1e99f13458c0245f5afb0ac1b86c36e01188b0d2f48d19d5aa8ddc40'); -INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c7acd479293de20b578dbb43edf49f4aa6a98c23b7641a35d949f051721eefb'); -INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'3dbe88cc7446f1f152af7ba839fa0a85062f5f6db083a6a04fe215c5277e28da'); -INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'903995d4f54f9a63770f3f318093a85aca7b4cddd2bcf0d7a5462b0bb5a4090a'); -INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'162400694096b508f8915cddb0708dd9fae77c39ce2e24043f46782366d88ce6'); -INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ccb9f77e91e8d75eb6eccb209e93a63bb266163c1ca9b90849959f246db7050'); -INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'fcbc6a827ead313e9702c8ebdfa384fd88b1e759b3d21078a54a551ca2c8c12a'); -INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'814ae12a1ae4dc1e0e3e7d094914d825f05e4759d696f00584b2c90a93b426ff'); -INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'2080ac1ad7dcad4bee6ed48504294b1ad97e5cf56cf049678d8369f9ebfd1e12'); -INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b9359948c9e32f219291f6159565ceb63da84af28dbef32831490a37eb8ae7a'); -INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'a793a34a83145f93f278b70ddd99bc310f6e15b268826b718496c75c62028ccb'); -INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f38ca327d045f3f70ad6e31446001383368291e13364b950a36b2597d843ae93'); -INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'9aa2d9ce735bf4e0fcc5f7fc33f2f3a990934e9f37ab1dbbf59bd001e28826d1'); -INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b3eca5714fa1ef8c2af1b7c99dfc6c2c38f0626e69fc1da4335175e1566846'); -INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'f931ae037817c74b69f07961094c6586bc8a56547cdd975cb450b8b402df46e6'); -INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89267011dac9b0eaa521c295451bd59865d884a2283297fc18e8e3ff17972438'); -INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'a89882028ea9c42b668dea075f119dc1b74b1750a8ad7d6669063402848d3d6b'); -INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5df17e822df60f435b4f9a8f3db01ddce26f722076d901a60f0dec086ff3743'); -INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'5ec84b08155d503da02291e8830283e2dc5cf1f7a91f751200a4ca45a5e338ee'); -INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c90defa4014f0ec58d1b86e865187f7ffbefdeaced9cc8f1aaa71f639ec929'); -INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'ae660513ebad040ce56a04e655e206027fc09a3446b56a3781e13c4ee6b0d101'); -INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57f209f88e048fcb2257aedc214c0f7fede070e3984547258a2cc3aafa8d10a3'); -INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'70b88da5d306bd1f692a579815da9596b92bb33616c6ea85eb2a0a1a5df80e05'); -INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a6a4eabcda10eb2d1824818836970d6d781399ae9a7d6027e3bd1fd5342f3f6'); -INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'59b9ee0bb6dd73f213c30ccba7a6e40fe5cf2cc5231730b96edffbe15ead67ce'); -INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d51f04f1d78a7d0eb7b64ef7f2138f401f620572903b40e02f1c40f1a9916f2'); -INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'196b6f1caecf8bc784a57bb3a5383285aca44d5f39689c034f24b51cd217a821'); -INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ff91ba7a0348e95f207ba223af8775201468f8409c1f6e0bec41c370f79938d'); -INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'a9e3d7a131a520139cc7f9c66a9e84815e850afe8d9d686960764baa2f62815d'); -INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'362dbc0415f518378208e728a6f98a3a8dcaaa86bf06d6797dbd65a8f3415da9'); -INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'7772fd86d481e0e54a568e6706d3eaa8910f2d7ec3b1caa1aa16f35d2709bca6'); -INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff6d3bf777184fc5f8278dc29eca13e0de79b4afb20646b25072d4f686762b05'); -INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'19d3abf455cee2283076d363f80e5bc7ff224c262cc0fa41a49da3d08a5ad303'); -INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4184e20825b23cfe7d9e0d3ec79578c5bda05516a6c1b245a48430c7c0ee4f4'); -INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'f3cca4a096a03cac5bb4ea31747a324ff28a556fd5ee7134ecd054b37e58d69c'); -INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c23b3ccf4888e8e1a63d417f979563eee32dd103d4b01c1563dc3bb1d760eb0'); -INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'f4e71bd66870a586edb2024c45fb1fe2ed536c03fb1729e186ff3bc19d7df1f8'); -INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9312098d67f8b5087adc570afe19b1b5ec1c4f55899cbc7cfdd11e47df6be4c7'); -INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'230d8554674eb0037de6c012184f9698a7f0ea516df7a329df555be88fa5d430'); -INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d12c343c46cfa600fd1625ecdfd1a9d51b7c81b39f43c11b57fc3a56ab057ab'); -INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'2a5bce4c25aeb5b99a20a8e3f8930c595e9c87c95f41ac29b3f3230a67f0124a'); -INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc514843be5f638aa646d34878b84163eef43cee61f3659cd582567885ba7ccf'); -INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'001edcc363290c7dcbd8bf7a66a1fd3c8fa3eb2ff5c9f8da4feb41f686dca819'); -INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e06e7a5b5ccdac102f8647ae8e4dbaef149e3bef4161934766654b6e249265cb'); -INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'c9c7a3ef0de1c7b4705545dfbd76904640351d1b3e4a8aa2ff543264c8386d0f'); -INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0435ce01728ba43c9d5f5c9b7e2f59605bec4f164adf403f3b8a11d59100d395'); -INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'8886a7798b3999f7a3e97a3093a02b9b0c816217a07b627462498eca32c5b8a7'); -INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19cda5b4d0b61724f1c85c72af61e31a6831a6f2ae1377a267914d03fb90cc02'); -INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'2a2feca0f61d5a3c1d374b70dbac1dfd6cd945e2344a82a8701184d0acdf92f5'); -INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c9341c0e2e5af9699ccb3453cdfcafce56b8d5fdbc4055c89683a559f905d5c'); -INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'2436e452f18d02596c3857022ddad2357bb71c9e9bb9fbe7506827d59f25ffd2'); -INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf4e0e33b24b8a5aa4171ce397d65060591b99d40e2d83337192826208071f4f'); -INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'98550d79ac2d24b9310055bc3216392c27244b2c883fa5bd9e897768695c5471'); -INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cf5c0fa0c124054fee0b8dd4083977308dca2ddc06ff81a519276963fe56115'); -INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'a1aec3ed73938fbb9773d04bd284c00fc5a2c1ab68330279ccf06e843ea6853c'); -INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0be5a83c885fd467cd4c0754adb84df0c5b9fca2b51a36293c44a7eb4cd46ac0'); -INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'3b22bc50e6c8e3bc662b8259822079612b88d1367db6c31bb25cd575fedc1f17'); -INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5539ad94a2520fbcecf2f170927fcf452d02057275e4b6d71b11bc207e049277'); -INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'1029ee64b9705eb9d1ce28dbb9b8f4b06e922322cfdc6f36b72a7105dec4d6f0'); -INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8c7e685d6aedccdc7fdfee242d05158ade19a3941330e09418237b653dc99fa'); -INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'214c8a062f94606f2ea206a432a09720f4ccc123a615bf0d08f3f31e199ea2e0'); -INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4480d4d6034eb76a1bd38307c1982a058701ea85a31171d72f56bbc111d05527'); -INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'de60e868e1385ed54ec1102464bb4b0442521d88f926019878625a7ba46db258'); -INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a19b5ed81d22f4daf6012872864748838c5d18c33138b41f6a97015ae1e6749f'); -INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'b516bc5fdc45297527ec3ff88dc2a93536c81c3813174816160b3090403fd03d'); -INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'771df4db25a660ea307f894099a1d5893900be1be605a0c645314dd76f6fd6a0'); -INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'a85bd81367a6ee728eb4a49560aa0709b099b635be45a48fe8572f1d2602a360'); -INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'757ea090ce146b481724b5e1167abd70f9a24af99a592200f39075610a47bcb9'); -INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'06d661d13dc9b2bd9af7dd90793fd953bdded34ee5f88d618922d1e1a911bf06'); -INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47fa4bb2fe609cd8c82c8b16d6fe484edd26d5218fee1fbae377f75fc4071866'); -INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'8b6de3fbc63d5aea43bfcf99a09d23c4951d749dade75e4ace1bbc18b76f8c43'); -INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2e92c6e603940b7326f365e36c72759eb2b92ff5a5b8364d990a7bb72a48c13'); -INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'74f9873bd86c453c4955ea353d9764fa2cd72145c23632d07331854813b73275'); -INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90cdc6f1cc5fafde105073168c749bd3cb29b07825edaf0734571d02b135b005'); -INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'73948abce7962469c27016d31dd4a310b2d0b7de470da42b561b2b535d762ea2'); -INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9809bbc37563a1a832581eb73e1d6d6c7cb8dbcec1f008f0d9e4d14aa565436d'); -INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'dbcf1ff7d70c3adc80e79df21ef11bf6d0b6cc7f7df65ce43082ca92c5a29681'); -INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38e06eee6110a7090afb99e87784855458e72e5e9b655b411781930df28bd491'); -INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'4ac8f24a51dbefc3457830878f4eb261b3b2dc6910833e74c1d66f07412cb35b'); -INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d3770ea1dd74ed0715fd1855fc9216ce56801c51e2059cbebb060a2b583a25d'); -INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'417233aa48997a4bbb0f1004c452eb490290725d0c8d25ffa8d7ccd50f2e781e'); -INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9c9a3cd3d97ae10dbc681089e44207c66477bc1ffb39b35634b975a42fe335'); -INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'903f0434ac3bd398140b0babe4c5a7dd27d30591a5e10729e9c481c43dbc5df2'); -INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b995b67c06e6f389d104aee86d31afae6f8b333e570ad387b6a8e09f46a9b647'); -INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'56ab43789eba4f27c0ad307a3517a548de115c0fa01ad5437d57f06fdf619fe8'); -INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2393e2c486f3e5b2c0c9ea42854898e15c6a443013ca1d2b9498dfebd4a9c324'); -INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'75fa4e9fa2d708b52fa634fff5c23382be2d5ef2aecd3aa9d5a7604318de0f6e'); -INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f696ba143489797fc5bb83099aabd7cd2d3e130f5eadaa31707e6745a0a4c5f'); -INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'1107b5fded932c2a220997f5b061cbe0458cca63ece508e3004dc360590cded5'); -INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad9b9d4d60085959377387b28fcb5cdccae1c2239b6675f2ffeb6d0cb91c6608'); -INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'dd744c08007263d81dc6e59cf9418453575f7a64b2d20ff86f9e497817ca1a27'); -INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'702321d906109ed0dbd33fea05f31cdca8dcb08605a032773e3f31b756abb1b6'); -INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'a6c2a4f501ea14b69c15675d6e6f78a632731708cb01836d3024bf255d9677e3'); -INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6232ec25b419e0f3194dcdee551314621481ed3ce6e0c44e187c0a9fdd57dc84'); -INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'a53eafb64b270138839fe13a5ac6e6535b4249043cf9e8c575d1f37ab1b47e45'); -INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd672532fad2b71ec1386af625424a93320c4ae950be650534f730ea88c8d880'); -INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'9d27bc8d9c960c62047ce88274cb7f68d978216daf5a15edf84d819e31a953ea'); -INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c738250b2f0718db2446ed4fe7b209977e9d5f804b048c4ae593f0943124cead'); -INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'139ec92a819f0a48dc128242be59e859f72da20a2391561fe732fca6d6a986b6'); -INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83c2e4e63bf063d9f869d07324c86e6985e247310da9ea5873cccca674a1f81d'); -INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'3275ff4a4865be7aaf551da94641332fa139e9ee3cb16d8f6fbb69dddfae1477'); -INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'288755e99cbc79f727aa1a9d5b6e7099cbf86a1c4a8755148d314905930a2739'); -INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'9690f29c0b38c82b61580c079609c38614b05ae1cb28ecf590df86a5a5ea110d'); -INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6855440a1ef40d5b11cdd424ac570e716a60ff5a7ffec7ebde8566708f94c87'); -INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'edf92a19ebf97a82cd26b5d58541bb6ba3ab65462dd00e19eae1457bcdd2808f'); -INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bac430ef585c6419afe5a11c773181449802b2b297389e1f59dc4393938b3410'); -INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'bceb250143aeadf20d163f1524d0b8c314303f9b1daa52b0918aba4e4b03c08a'); -INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab3144db4912cc51da03057931299882d63f80a9ecf1d81590655f8c5ec8d364'); -INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'fb161af937d9eb1cd4eda64aa0d82f5c108112522ac254b43d53293e1d8dead8'); -INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39d49c37beac5fada1cb81e3ede4eab581a3d2753b6e3fd6252ba074746176e'); -INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'87e137fd9cd0af9c8d2814aa995cacadccd87b10ff5b5acae44fe7efb0a6c84b'); -INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5500ab203979894e416355e5e66f930c479f72931931fa295b58dbb6b46c5465'); -INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'4066af51bce3f86ec489b05ebd75cb0adfe3fd0e32140f01110a2ae4452b50b7'); -INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e486924d19e74e27cdf531ba4ca9240006099d8fb016e4762ba1a402a490db81'); -INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'b987fff477b9c1947cb8205301e65e25b0e142a6a6e5e01b140464463c44e23b'); -INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'314aa429df55061584122e62f237707463c4e57e53c66157607def2279c30caf'); -INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'4005b98313e4166b927253e2cc4fd7881f95ae3c88308c2fad74f0a11563ad25'); -INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7026b2d0069e0f466bca9c77be2c40bc12b8bc2e7ca5f5ac6b613237b2318324'); -INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'13e06f09084bab68ae2777614188e89092bfbaa3cbd2931befbb25de31c926a7'); -INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e57701cb9e31b614ddaef639e4ab996740af7134c7a3ca4033627da8ead8eb0'); -INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'41914554c281ce4ad85555d1491109f7521e5a2cff68a5f0b6c46298200b2173'); -INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de0ed5bce7a67cbe229715b9e89a3f2132c89e07e8193e661ca51aa0928f75c7'); -INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'0f15d39934a2b6f89bda0a3322599eb3d8610a8a787ca538180d55c5c3808b3c'); -INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','8df48729299f4afbd5684abaf8ae2c33b0236ca1e9138ab5c6c84384cb4c4731'); -INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','1434fe2e701daa4c2f9753f357f936612effa4dbb4983b051a30bb17fd2d5332'); -INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','178bc4b98fea2d40141b82a8d0cc5cda99bbf515752a5bf3d3b817ef5c163418'); -INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','ffa2e0a4240b97545bdf6fb28b7bdf79a8354522a091f38ce1f2555872483e81'); -INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'b842da75a8244c2f52f2677f5a2379552e40b7029bb8cc19c4fd7dbf1f55ef6a'); -INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'679a36458053ee596f67c002ec5d2efe3105a717423294df241e6f6e1973fd18'); -INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'f1a41aac833983e1ef65c945c860236ab4b9051dde72f66a04a8c2088de8de56'); -INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','3e8c64588775d0550a0f87070c9456cce964025828a90f509a2fc1d4b03e0ca9'); -INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a5e4cb43008f9d7df8e98de3abeb27f57ea50fbe2c4e8072c7bed0a20c06d97b'); -INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','e9c3a7ac34a9299f73f4ecb1a7cd2cb83bb77cf0dce82bd66f9ad19aa182519a'); -INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a9b842722693efe16172ff4145515b1daa91c6679f92675b86bfc7dc44788cbc'); -INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'26054001a6613506b5e4611bdeb3d341ecb77176c580b4f9fe3123ae0a5b9a1a'); -INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be45e5fdc59092668a7e99a5ae4f0c3e9770bd4fa05da86d29c1440c1daacbab'); -INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'c93eea39008bdda956e941b72d5a0fec2132606e6b7eb292bff5d50a55adfab6'); -INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fdb4f4024317545a68ae06c70f0a7413f4e59debc807513beb0108bafd63f00'); -INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'020f97d713befe7b25748441f3229c3643038bf29622f01a11de4aa4765c76a9'); -INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d154e665a9fe1ed4c0ca30ca79a07ceecd681cad313301a8e37b0338a11039b7'); -INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'9c855d5ee303e30aa4782ef199ea1e044c2488dacf121b85f749f3478f06ae56'); -INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0738f2ef041217584a50f81870f018fbed954c03131fd690410fed02ebc673cf'); -INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'71391ea02c39f01273d95852246da42428db428ac2dfcec6ae931844a207b244'); -INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','c2f3ed8bb99400c4b998e3b1a5408b6aae4622b49bc33a69295b4814d59cf8cd'); -INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a8e58ecadc29d9d8976bb6f7b0a1d94a16541facdcc379b98720831dc33134ce'); -INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'c18cb03a51c0a8372c2d332377ea31264e6f2319bce0ff21229453bb574186a0'); -INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f3ef5786ecab19ba10cf1f4f531793f56384927bb418bd48ba6edeb62b95ff6'); -INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'e3bff998a3952fdb71781fa8cdd85f63693c9900bc245d72c4abf429f1dcc9f2'); -INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','b6e8e98a648e426996b24f1c25ab43289ad099e3766edde622300647971b54eb'); -INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','78f495f56b711700d1512736c335210d027a7cf6745f218353e18390c628e58b'); -INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','3b6bdacb7d4a1ffc826c75e25a4c97d2687af615cc673a2d7bca33653a524b93'); -INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'f5e60845f4c66d622374eff5e5fb0bb37ec2c7a03d0ce15ccfa97047f1f2d7ff'); -INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e77c21f88942e8f489b829e7a60e34a63a4ef3f4e16068d7bb41261fab9dd270'); -INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'49b4f8140e9eb11215e8354ea4199f6ebd17334aa1daae2d037e672b4a54f4e8'); -INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','c5803810056be9099e918effa1483dcbafadeffb8ca2d1ffc893adfa9e6d36e6'); -INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','492dced0a4d2883a697eb9b2a2966f8e96f95ec20ff844a70cf64a721b2003a4'); -INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','585b1499c501ab737eacb06cbb172ebcd164760c62efb4ae25176a0421ec498f'); -INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'88a75ea2a7974a960a9e8f0860b5c1dfbc68de6eca5952f712968e8a0dd30f59'); -INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71d72b45d98bcf807006a8e10fcbbb1666088ffac5d38ca05f961036c2c1b989'); -INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'a1a63f66ad15c5e052449614f25eb164d40ababd4456e98cf364017ec7fdeb72'); -INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','1013953dd4c4842f69f7ca0abf11dcef8f27645bce9c4e12cc92917ff44c02a6'); -INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','fce2a062082c70e62d2b1b478c5509f6bbc5d79d56c12d4d1a54d890de954205'); -INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'5a9f5b595440662fb251d67487cf841ab17fb162d6c32ca95322351ec2c63bec'); -INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea1ebb872a142c121a0c05c84f3843c61bd87faad44d844909076adf4be731ec'); -INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'ef83af1031c196d2c006a68e6a273604a4fb7393e9d0a773efeb707453b855e4'); -INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','0261666b5d6831d25f2ab344a21d99a4538414986fce615a19ff39b5a2c69c58'); -INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','6246276dd6609d5a6f2d152b514f9a794470decd9e7fdddf38aedab194f0ca8b'); -INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','caa1f9ebeb0379691b10f4f765b45b35c9375ca309d1be57cf9c43e8a5328696'); -INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'bb11ff70c8378d2d2155eb41fe3c47131ced45097b0aee62295d7c11a0dbc6e0'); -INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd491305e8a42f35fd16a8aaf412f3a36fb6598c2f107d7cbedff5143e5c1d12'); -INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'1382842fc43c497c730eebb3b042c5f220567a130ecbea27be7555627552aece'); -INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','e563813d497fe775cb1f3fb6644acc11378e52739dc7324c59c0ad76bdadb759'); -INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','f631bc64d26e20b447f92c321f80456e1460219c46bd33c91938c42f36f46b8c'); -INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','be6cc28ec59b142b71fdddd27a2763130fbf141046618b5b44e00c914a96e498'); -INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'21d08e9aba6952e8d5e986c31a1f3733a03333c128112b6f9d636e0cd3825f04'); -INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a79df837b5548849a8aa9880b9d0acba72c2de5f3ed3fb01b95c3eb0cfc24667'); -INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'7ea18586a85c7803ede9d546ce82fa3a1e239cbf7745a58a757c816dcb896c76'); -INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','83c9d8074aba6db3fa1b444ce0ea99dd32e9643433d505410eba2cfacc719c43'); -INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','1d13763bb3fc4ba20057ceeb69a27372f91ca3557457aaa098461fae4e81c6ff'); -INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','d0deac7f990d5f2e46e04628af180bdef71362c5cd5c4f40e71e66afc1580280'); -INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b4a9ec17ff5b6e6648718ffcbb6391f7a646d761d28b5e5d3b3200e89037a9c7'); -INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','431d3540fe577b15336e461f81abcceb44ab51ba43b4361bbcd315c2a6ca5cd8'); -INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'7c79c254b87e3ff0580264e503357b774854b2e6e9db20a412dcf075a95b6253'); -INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e4ae49fc51b7570d03ed712f88e9d36aae58e5517d4d57a0d31b722ea2c91ac'); -INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'e1239711b86b2f03dd599c6ed509fa5a19d1a855f3cd407b4dafe21129df77f9'); -INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d535993ce2bff73cdaae3d6909c59b6234a5e40281e14f5b69efc738c8876582'); -INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','a8fa8eeee05b01f637af7d073c494f190b8c83afccf10c64cc93814e0d6ba8f7'); -INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'96051b424c089a3fb1e8e05196009f79803a9e9345221815fb7e12be651c2f33'); -INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e245d5314dad1d1fa9e5f6b485bd392d1497fd708d284021b0efedeab7fb567e'); -INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'e844a7b84f4b4cc469cd0f6894cb088c55a825305c0a43345b1927303734ba4a'); -INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','aed5f45fd7f6cd90d00f84a6cea20fadebc14e264180f0c3e42c19157105fd02'); -INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','dfed542fcdee20c4a32650d7bc9d999f12c1f2730ffec1c13f55619f24fdaeb4'); -INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','8aecbcd4b6c31973f5a8778f7c923da0ba8db458934684acfc04a6d8c2c07308'); -INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','fa33def0f6959757cf565f3915cf6c4e8e0d7205c23e5672af51e60c091134d8'); -INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e1feddc626b4d5e9b242854fdb7343c823d5022c3572266bc319116462e0d8ee'); -INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'207ee1cff97fbf7e492656188157146d4fa3fb4c5e70a7c7e89b339a0d848ce1'); -INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88797e3378d1236022a1e8d7846de9d41bc9d446c7960f0663b17d8be3d116b6'); -INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'f194a2c4c8db3d42de8cc8bbc9b60b095a5d37d005e7098a0d9206d2631c5c70'); -INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','c099358eb440ddacd80dc488d2dc3f144226f234ad8ff51fd488c2f8fe6ee2df'); -INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','6dc3b1e384bb9194aaa8acf4505245de3f07281f2402a65462d5537205b83d26'); -INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','155194df365d8f82045a0dff8163c2f6c1e94ba4d33cab6db2a630789f5e028f'); -INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','84c7c72458708e64f785cc8232ebcd1984bf5adcbae5d0252fcbaee73f3ed434'); -INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'c0ab819daa638f9043bab0b07f16df5b48ff577bddbf41ef137c0e4457bd0fea'); -INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89b20d9a7ddbce5088e5ca0cff703bfefb45f6ec7764dab6d9a8258bab5a915b'); -INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'1fc5e57c55026bd4ce5c7c724c7dcd9c5b56bcca6af3f284e74689ae2db2d7ce'); -INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','d81e90d9027fb88c6cbb87e362d38247b8a01ac62c8e529e978c2f12f63acbc7'); -INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','ce07cbdf16db59e2fdd60cfed0ad5e050468f4b5079aac6cb2faf3aa106b3a4c'); -INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','fe87f4c8c6fc6ed6e091a0bbb000ce54d4e1d767a1a84ef3b2f025e527658f39'); -INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','2e356a3fcc8633e3c2a9f27e9522c2f719e137a9d9552c076ad5b14038c5f377'); -INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'9c0d4c38640b154426b1dfbf9f20aa7201aca283eeb1bf8dbd1253882b7b1886'); -INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43d01afc9b762b3781a6daa04bff407d6057564f889d9ed2e8cf2f6a1b4af75e'); -INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'cb9d029f04a6f3d907f007d1ec342ea47429ed33469314944036d86d71b700ed'); -INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','ab1208d11fb1a7cb75417e5409b0e63d671a722aa5e1363db697a5e541dd2f0d'); -INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','68cddd5691bf53f1c90d1de78219e32f5dc20193b50ca2b0b93156c62f84e5d9'); -INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','e0d6cfdd8caf3ae2b47bc92268ce25cdb47a519974b75293bd6061bd3694cc8f'); -INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','da57aa09137bc3440ab8c777c9ccd8c5b7b1e0c4a59f3a01f51dfeb472f39577'); -INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','ce4fa74deb750b7dcfa9cecfe042177364fd2d8e5f3d5ff6987885a36d941715'); -INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'738fca04d2c26fbbd3a87a7153447160e40d828eb0996d4178bc5c38b35159b9'); -INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbedc5b96bc90189af0f94197973e10bf0736f34938def5362dae3653fd5427e'); -INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'8ad951c152bf3711c0b763ef8a2ee3ce17926610eb0a8ed91fb559cc063467d3'); -INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','7bcb2a05e45e694ece381a00803207f997699166324c369dc7491a9086ffb7fd'); -INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','01f3e2736886ee3e5636736c4ee02e243e3c20a6babafed97b8c8d2388a4bc68'); -INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','910f25e1c8f00becb784d87d8b00a84f89d16b84927c92934f278f3d0bcfad32'); -INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b67a64de830f25116cf7f609e38a8253ed4313a65375e2e277299b97d84cd1a3'); -INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','0ab9ee0be4a04b03af7013398953c18f7725ad5111cfbaabc87257f06ca8a677'); -INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'f6f9da0f460865ae00bde39b85e20368655635ebd479df7438626072e510d5ff'); -INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d3f5fbfa99ab6ae119cb99871728a2522a354d2f8a75920010b4e2492a204b0'); -INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'95ee7672b9fc82436509ec11dd3cbfaeccb63cc2a23a51e36f80afa47b24bc52'); -INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b9fe93e8d11e89750e8ece344fcb0a80bfda1b6e614146cb0a28f287944c9214'); -INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','2075f114e98c4118d8972eba19c7c9189e44b555962349d58993c1f0477c1b93'); -INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','ede186b7b316b0b1b54ed5010aac9c61303e3815b70ca1cf29036f2697f6a1c9'); -INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','9b03bafcbd3c8f9dac70ad35dd6ca91981a1e405324eb1aa91b2076b758a70f6'); -INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','a27c14e1211062a88f794936d41628d16ee1f5158efe9bec4198e99267cc5524'); -INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'9e84e2d536de9991690708283a8b0209dd10fb9c0d08514fb155445a7a465568'); -INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47a19a88bb12daefd5e5d3d44e44199a90b5a7c6c4734208bf16e2b4fdf0bb6a'); -INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'2246fb9a167c56ff89995d73e719ed033acbabf7962c0e1cecc355e232f942fd'); -INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','323d03a33ea19a678ade2528771a2eaffab4f2d7160ef5c4b93d97832605d946'); -INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ecd2ec7669e9da9cd8b25054baae2ba27540088b78577f1180b179b68b8ffd1a'); -INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','9c0daa4d50146c15aea83ba0aa3bb8bd0599e842a76dc8a3dd53d879c362ad1b'); -INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','e555f90d9057ec8041ab6d567b247f46c4dba770d1a97a86fdde9838b5ae672d'); -INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','8adceda17fde21521dcc2dcd69d43cc24b81a3b9c3425b20cc2687e44098ad6d'); -INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'4b63d824b49c22f9a98974cae163fd09d43d03a1f059d9fc4f3c05d083e71dc2'); -INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c86b10c544fe3d4871f9b08da2f30fb55d48cf5481ec134135b508f9205b96cc'); -INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'829c5865f703930abd74c372921ec12b37b0c2ef212bb4e74d9cb7571ce7e5b4'); -INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','f76532d72c4b9c0699acf67885ffe3dbc6274427cae66cc660d08ecdf76f0544'); -INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','a264cf67e8599e1f4aeb42797546ba8ee19bea03f4f796d536eb0075aa84f11c'); -INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','e6494d0807b09cccc52bbe8f9072b9fe8ba12049eccdca0a23e72cdab8e8d91c'); -INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','83437c68d8ca84c57ded9563568d31f57720f529a43d94cc16c8e84e6b9b79d1'); -INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'46ba5123b4ef47a988059b091cbee31cf8f6bb276ad9b859bb34c9f9cddcb791'); -INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c21884f5eff91b5be7b71d0d105e29554dc2c59e0f2f090825d78e9e8bf79c3e'); -INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'961ecd0ae973284943c7a8882099099447c9ddf1dd126d8ae06a28debe96b3d6'); -INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','3588fe6e520acd9011bd49fb413746b4e825261ffd46deab37da3ff4e2618bc0'); -INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','d2ba6055499814136672d21e148846639d8160606b86a344c4ddbea03ca1af74'); -INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','81639df5387d7128fde4d3a01a3ddb6a4239d2957c2c48e86c9bd99edc693b4e'); -INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','76c7c5f38b466b2069153affeb85939b3aea47c68056aba9f64096b5c9ac60b1'); -INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fd62d5d7959562d874ec963b700d19a359cdc8e4c1c2d8c0379c38f99d98f8bc'); -INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','859c7ca3e65c44765c0add4829ef27449cc9d05436523bf780a5a835152e25e0'); -INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'c8d7914bece999c539e3bfb040f29c86765b507f716d355a4ea2e914db2bdd99'); -INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6121b09794ffd313e38cce48bccdbf7eb3f529171508c73d96f97559be15e94f'); -INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'2079781aec4d7e395aaa6d4fa3bd30649d3677964e3b8d2a3f69c62b8d00e28c'); -INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','8b2a141df2f6c402221811a1f5fee2df8e3ebc441c84460e9d9705b802c2aa6d'); -INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3b8c6c1abb7730c924ef8052b4d562ba1ba7380e0a11968896b0a5e99b298920'); -INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','f1db4c882e676580a730c05d0e1f452ff1c3bb07acfe6d32eb3e3093fe2dec5e'); -INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','1c1bf4c07b6f97835407d296179301ca3957edd44ee326d9fc06b38cfc0bfe38'); -INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','28bd38b3497c8823b60e6d2556322602c45da5653a52505e31f0deb75bafba7b'); -INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','b5931730faa6daf9d20edeb5fe64b493b9f1ade21b2942eb1757fb9aac138a77'); -INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'f68a929d1237a951981ddf8028f390efe03f81ca2e7867071db47f06551de823'); -INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df0fcdd34b42c5133edec5356488770f75df1e05204370c26f6cdb6c988049ea'); -INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'8b2639a4aee42fbd082fd4de5f223827fc1b972eac6baf6a24479b07ff34c323'); -INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','24064e291df8f579bb6155b89cf0530181e8c9ccd4cf1c558786bd7a71c576b6'); -INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','1bbafbe2d545a1de3b1b96f4c04f11f79e516385722bd82f8157a30572f81773'); -INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','32510688c4298b65fb4f10d2cb1c86cc04670f69857eb1c4347c09eeea8ce198'); -INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','6bbb36384232dd4c21d012dd7ea7e3cc9e33026b2d8d9a690b4876af58b94c83'); -INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','469806466b73f400a3ea91e73332a0c8f868bac747268b4086a6fab956354eff'); -INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'7056bbf701164dc55773bf6c0ed087a9329c7412ecdf86bfa30e43e9655d4c6c'); -INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8267135a9e96068e7050657356cf8472ab2def451a2d3e08d098682f0ad7f511'); -INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'881bcd594727f225991757d4d2e08a438db8e0e38aea9684b4c1059643fc3966'); -INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','04e6bd9e32e9aae2db0444aa702814fa32e7e7777f5b441f5f6c0727bdee87c7'); -INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','6ff0aa9f5e17bdbeda9976de0b346e1bd8cbf5d30dc68468e3a831f6c52a9b6b'); -INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','cb9cc64f655fe1c3c0d7fd77d535e36a62bbc756c84dc80af88348459907118f'); -INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','a302e0665fc2d32e5522804c71622b019c36ef1b98296ad77bf23fa46be5a4f2'); -INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','4bf27f7ee892afe8887a15780de8ab052a2b1cc6696a706a7f8cae0c0433223f'); -INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ac306eb317b7fa769a53823cfb46b9bf7bc6f392568c1beddfabb659f5edbefa'); -INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'93cb445e3149dc3557c0cece50388adddb6ba7835c54c19116ff083b169109d9'); -INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14a332a8702233b18d701fbffa60b0e2ba0b8bb0b8e546a6cf41862cefca7f0b'); -INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'e7753dc2ba4e94e5dfb84c2106e181767f4512664f8ae347103b3a3feb3b217c'); -INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4ff756fc2a6aeca1130f0715c846ba2c5a6263cf199a4bc96722ac0946616f38'); -INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8cbff1793d3789466015880bc6f741a4dada23b4bedb18537e3d9081c3437e3b'); -INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a1277ca87b06a3639c77666d385c703ca7de3757144c78d213cf0809451751f7'); -INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','2783aaa8e61e6615caacf8829212a86cdb5a5c3e151ee3a5b7a293ee3e7c93f0'); -INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4c0057166c0cdb16290d48e49aeeaecb396dc60627c3dd13b775fa32c656fef1'); -INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','24c8a0377a22a9c3ac9deb882492dfcecc7272d2c85fca450386c19861bd28d4'); -INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'2b872d5ba7b68b9f6e6681969ec5bea45c77c419952f5acbc32550b42f578c0c'); -INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7aa4ad6a30158b00a107ef75d3f4f76124e6489995c14b9ce1517fa55370a1a'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'5fe355dbe799ec8db520c97841a29075d0f611d03a8c1194ba28ca1fc1b3c0f8'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','4c9c59be5128e3f4924d4576485ccbff9bb8e725df4d5c5099519c04d1ed71ca'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6513212f3c6f39e30f9a146dc496586a117f53fda9551d1c1c369d45c538cecc'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','140bf5b2475904227e0e65d6592d1d8eacb0781ad988421e3b2a9ad1ebb083ea'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','04bdad18f478c96059f6c8c2e9187835a90a6ade565ea87c502704c87f5c69a1'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','98c4c60a2f40fec9806208ad801134e4ab63dcc95bfdc00542cb6943f6d72dec'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','03d4c6565b44dd849699eb148f8a9f6ab543790f11f542ec272734783ee53362'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2eef7ba0ae0805a2560687c1574464bb110baadaa812bdbf60378b1a9a2ddbc'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'2fec3fa9cbd9c4463a92770f3a38f2ab4a4d265838dee43a2825dc9a151ea8c2'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f192a296014cb70f9c697afee97357c7f1b53ba1863c11375e79cf397bb1bfc4'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'2177838c6cdd3872b1008bd06ae37e651933172c767ea3d7712e928a5ef35b22'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','ef64263c51ea4e5b45d6056f17614f1a334fedfa3a4ec7033fb556e8de387ae7'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','cc08f3fd5de807f51c98fabb0d3fd08749ce48052e8291988a64df60cc69fe85'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','80647d88de18c602b3d282c79889a42989fa1582c06fb4ac7591057752ddcf68'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','116532d00e5afacb9193ca83f1145cf7312edd613047fd80784aeb2607b0092f'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','47c52e83dc9c5c5212e182fa4e233f43f40fa7d298263ba221791d0a7d682d49'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','51579469fb47898d0483fc7f5ba1fc26e7ee7bd523764d7f97630a7786bd9374'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','40bf90d8767de7944c7d20ebbd8c4df074a9c9dcd69fa375cb154287c118ccd4'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'a12cdc26b9a9ae3184b5d44cc32c42417a0db58c5f99a9b884a783f822644a26'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'087553f31756717aca70b577bf348e0eec27e667605fdb64cdfd8769c1b1bca4'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'f449677361e4649854cf88f1296f82744ed2b939c30ba10691ab908b2b3787fb'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e288c04e49a1fff89bffd99af91dae092d8daab6bba7e37a83c7d969b522cea6'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25036928431287f2fbd330e22f76b69189e9225402535335ada408c94de32477'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','355b8b87190d2c2d197c4e3aa264de53057a1a239912b2a0ca828a0e0d562219'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','5bd167d53372bcc4c370f74fdf11d2e05a87c9869a262b527f14893d4254864e'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','8c4390eb3630317351136becc5ca76c3a666188cd4abd1c754f5b62cf70aab38'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'f179790d9f375a9be2c977abe8259c4b4282e309ccb133391d19fffa7b014d60'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1a9ad4444a7c85359b8d57fd712f9dddf75bf18f96c817bcfd277b2f70c86ba'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'689546e238c43d0b891e2ff951eb86259c5bf0487ed9d0936b4c60459c357a8b'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a38a4f14f0aca5adad629289b9d1fc7ec6b58ac580574ac9470383b05b0669a1'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5db249297b2db24d453024d8c1c029da2685aef3ac84c1cbc358e16ded07c4a9'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','66a21dcfbd3a41853bdd3a20cb2f2242751605eab5ee7d10d3227ca81a2d39b0'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'182a2db689de148dd3c935bc2056d704e9c15824b6d6840aef7f3a05411a5212'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51ce335b2ee38ec9014bf767dd5d97db28c0d78dac5f6bbc031dbf583ddfa60'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'35a02abe7387b12570ae485c8f20d0b7b849d6443b93e3450ec44e5246edbc91'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11d7c8a437b3fd3357ab0bf6a6f147dbada1b4279415ce9e791465344c8d6776'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'83c568ccb68fe2740340883f55c66ae513e690c2cdc64f0f2591c7d113bbfb26'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'815feca8dd866b0205c0ce30e42b0f70964d0586920223f3ac63292cd2be19d8'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9eaf66e69e8a4a42d09fc7deafd207d55cc6e5d22f47ae6186e9f6e8c55009b8'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'69f1493de9d1aa679053acd48ca718f0bf595243e5f479a47cd226c1f3efee56'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'a95d2419ab7a632361f32ba1a05a1dc656461cf5442f453bf3c88cdcac63deba'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f1217d41c94fbd865d16b9c98db2f3daf50f2c837291ec8aa3e9bd3e36544ef5'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'a2a49facd30133d09c5241dbb526887cdf64efbf10e45c6531a8deef40e26f99'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9851b2a86dfdf9aa110ecccfcf6e57c4e7c71b981151b1f7a004cfbb085ad957'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'b7855d2547befe39c94e4cfb0335b03c374e187d96648320739dba49665f4686'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9a59f248e3046e4d9d5d7aa351fc91fecba5c5ab49e3ecfe5379974e42089b'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'220779ce6dd7f71a2bdb00c948e3892cc0d30f3b4da7986f37799110b0e6cc78'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbab97615249d2ae8b990fe82f9e2d7c0d9fa59d0b4609944a548cd8d041865'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'0be55e945707f7d23a9cba6a55940065726467276d1ca7366d046c3d6e9b0c54'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d82f918ebbf06607f76042e5a45d327885eb44307b6f05f0ea698c135e7c107'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'9070bae6f4cc11c28520d4c5d78552140de8088ae0131861053da8b3aaab7bb0'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa4739fc041689c0e6ca003b90228f1b89f881dec60034b76ae7a4c8eaec9a5f'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'2ad876d57d4d751ad30a60b666b876e716b8add9e66264abebd7cb79d9fa49ec'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92588974c30e9ac18a512c4698cb2240c329e2ee60162d88acfd2de79219b18c'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'e418c63163332b5387f8c832183e8ebcf7f0dac30c05990648d7afb0ecc8b44c'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ab78202f425b92d2ceba8fffdaafa462aa86d81a75c4aaf36e939500dc3c5e'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'8f5f37b1d98039470a730c697e496b946d26faafa8de441d1a959e4db9911498'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'64f5d7b6861ab7fc5051a09572f8264586c3ec65a2c4b997bc2f201fa0b099dc'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'43d2d99db36ab6db505f3e520a18e4c27637a90888e29868b24f516d6beb39e2'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8d9f1087250a7bcb664d946b2a9c7814270f51ead69848db6ae31c0bab1f3e35'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c8f6c0517d573538d691a880d76972fe9095b75df661b9d6f98f68b41264184d'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'3b50aa0dda892945374c10ea288d32fc79bd72d7621b5b3a33cf037da1486bea'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34d6e9995bcdce8744528324bc83a014f050ed932fc5bd9be1acbf86c70c5e77'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4df5825df1b007b3866307d453f688cd2d8d0a6697be9ed1161d07e6aa240629'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'354d6e3ad12602ea6a7d6f4815ee65a9a5ebbb6b7885ecd6d08394a8226c2116'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'70c8b1a4ae53695674caee7d6c5b7b938c4fb87d42d5e54d468b72f7f3ea450b'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d578c12cc7a4c1aa85aa79158731060d30796b6933ec038be2febab5f7d556f2'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'75001fc6ec67a800645d1080ae232359a040d479d23f1c18df03e3b489fd015d'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'676d1abb8d37dd15b07326bc4a167e7bea973ca2943be6bfce60171ff9c69363'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'796067b040eaa2668a46eff5bf6b3a1e05f3bb32c2f696bb102d812d0bac4829'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78b54d2eeeb55882d5f07631bbd4bf24b9b9fad8acabb391c8944095302f2a2d'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'1dca4831e938070c38e8a4ca5d89e167cbfd1092570b1e00ccf6939b9745b041'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b1f75e881ffecf6f2b61e50d64062b75d9f6dd52a745ff05b7bd7935fd5e94f'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'94b2a97a82d4ab9cb090adc49c7de73acf348e84c0b12ff5c05257143f1b476e'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cecddec3beeb21e1238a271a4a3eb8e62440dc887a0c0a1882d9e07780fca6fe'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'174998a2e98939252e112e02f2e3a2a6739ab8a3d928ced7ad7341372b0ad739'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55e2fb87db48e676adfa7425267cea1c5a922bf640eed223ee63ece9e7f0a46c'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'b0f981db5b32f914a667b16df2b627e99534503e6afff840f88b3e2e3c8aee16'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd8f912fd4602d7010d32f423da6a64b7bf66a32be2e40360cc60d4f4b4daca'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'8a6e4501fcdf7a66cc45a7dc57975274b52757574141f8d2c2a5afbc795a01ab'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d68b3bab81fd55d891dff4f99017585333cb95e737cc53e61040f3975fbc6d9'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'d26209a408ea17f92216ad50c621b87c4ccc9bbbf2acc71dbd98f4adfffd0ac4'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec5e9413b1952f5ed58c3af77507d1fdc5ea46e9457f77b812ffc4a2bf85b00f'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'be90b6900950b661fb6f4a123514a75ba8e33fe4be76e9a6052f2d38b475d2c9'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2eda0b665d44b8b399ced3acbd2d3b4f0bb7b70d1e129a22328d9d8ba1584716'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'7d65dd39c71e0734bfe55a5239f281b22262e7865060c1e4a13784b76b665766'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e36c3d4216528e1c004a8dd9c6be583a6f294a2b4cf2e821db36e9b9a7b6fe'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'86627614b7dc7733903da2778a3a386c930c6cd21d04281033e793b78f63b35a'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'004ce2af34ca79fd92517dc1b7bfe0779f8652bfda7f42acfd9b640faa9d41b4'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'68661a58e997ccee6b1961c33e63ce7cea440acc10d8cd3afd3d87055e0f821d'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eac4a7cfd91cb875886bef3b81e819ae9a429b253adf71004b998e0e3a54981'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'8cba2a63811e6b9a078777a9e5b5ddd280541a10e1293efcad971d1a2ab275ec'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07a59d936d46c649c6d839d1415a35ad494a10147ed4de4f2857882e7eba87aa'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'b65c22b469b836c19d0612d9ec686841f305d159a526828904e72a23b136eff6'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d018fa55c00c15683eb604a3ab41a6c5a8885ccac602cf6d4ef8143350a84766'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'aea71ecf210634e0fa4e329277f6f35d58be44b0f8ae21d5146322d703cce0d4'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60993ba447732a3941ce6350344d8acea8a6a6a41cb02b7380aa2a63ecd4f0ed'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'45b675f9966fc688eb5166b5f5fdbf4eb1f48fbc38c9215aa2e25d5b4651f691'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b478df1fdac43f989e70ed7ef934f94587c01cf5081932fa4ae7496fe99f0ac9'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'b7e19ba9875b420b3961ae80529a3a903027d7e4d0e80712e3e8bcc1d86e00b8'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c58c31dedf3b36e566a0aa95d7220a556ed4767786c33648c2ae777e0ecd52'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'e7b2d6b21375bf1df5a68d41e32be5d63f101745a44b5f95535278d0891c4ca2'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b554c6adb80757f7464f5a2ccd9313b2e43828d772e43d6c8195130a4d4997a'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'4d34d4703c7cbe95f065da0e2636c641af99de40c0ebcd58e2dcb6c6e737d29b'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9754924e7f01a37e6ad4c7247af4a8894eb8ba9c2f59ee679d965508798fbd'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'a27d5e0c1c56a089610505b6594cf7771324f74c950a5784ff491f8fe06d123a'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a47378182cc033d3e8af459ad83ed9ca3572706808ff3d9956dbb516ed0aeb2'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'3e1c7446c622f61d59c238f327a9e01617dbaacb16e310d55ad53cea03b10122'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08a238de5702b183fc695e6f9be13bf6b7a9a0014779b02b03ecd29f7f368638'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'7df5db6e5d277f915f5a779208f69de033944563da10927c0ac249260489178a'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c2cd6e0e274f5474e9cdf09564ddb3cd44b6a59a1a2b72aaf2039980f199ac2'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'3b2be43a38836641bf2b47c02ba9c3847a0eec46f87fc8ccf13b047f06ed76f7'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ce78f7e956eddb1b5bdf23c6867c9068e5e0165bae02a2f6bdc1e72e4d506e'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'addfb57d50709661a689a33e9818da670809cc176147ff19e5a6394cc750ff17'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7037cb7ba1a55199df5caec2b8d288e3ce9168447c00a665d581c8f8337231ba'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'247006b50d9bdc98b3d80759d4c31a46356ef2cd3f15b3fb9f4379238c775742'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'467bf5b6bec3e941d31f25102a0beb161c5c5a5054cf43de72062f0906dd56fb'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'774605698501e13c9b619b6b0ab45d4d9edbcd8b1b03dac6dce3646d194f931f'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4f687c495e019625ac8b512c98a0584869d63000f4a06eceae1739796ea407f'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'f8a4ce8646fdf43a2e0db91209282eac1fad600cf50c99d5cfdb3464ed53dfe7'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'304302a7e3222d6840054bee1598edb9b88cfe8296d63bb4b9660262efd3858b'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'04b66e6ea02a045ab86ccfa58412ff30079b0ffdf216c5b0940823e9696b18be'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f620a865f7f9508d3924815e157abb0a613ef68d52294dc199cf4eee7cb2d45'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'dac2b4314c3b4e9d9230dfab569f04d521e68799a4b0e2ddc6779af7233856ee'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'271323f1969a85a5eea94b6fa37a52d15808e951450b96b66464a35252e43466'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'f0532cfe193da1d6fb648f54007e1ff16aa1c49fb5bd68412be0a5fea55947df'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b302fd3f8f7e96553395401c37035581ae6d417a36a7da09c78940d31a8b50b'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'7b36da9d8af8a48dc920970925b7806e1f03071d51ce059c4b2fb5b9f298d5ce'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de73bfc88f3713e884709349d760b54debcf7b397d74937f82c92bb3f4b2734d'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'b4b9857e602c278073eb3ab15683454a45b07c5d7c6fb039f29436c352e9003f'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f92b520a5e1a273bc75270b782a9fa0fd88a33b07cc3215f2032a049be98f6'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'822549aa462e3606cabd4f19a53f310b1c7c962f256204ed849e504ebc04e7d8'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dfab8d50b13425a4c6f42827bde13c99d799f03316ac7ea553c2fec3fd4106d'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'7cffd256dd87ac4c980b321807fc6e0b4b0fc0e853033efe6bb782de8b3f1416'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbe9dfeea1460b11c0f2c8037bc9d92f2a98ad34fa81762f5fa33dee68394d1c'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'7e3d7cd5f0789c4668a4ec447c53050c0955b6dc14b99814d69db16c8782088b'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f72eb1907288a620cb4813994b61cbdb1ca5a5129f0ad46aa504885f38c0d4d'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'5e35ceae2da9dd76ed4fa47c3edd850ccf6a8982b72f0203dc7c24ab44feb8c0'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f541c9d9367d06a678b0a86990bdbfdb12a6ecfe2cc43cfbc2dc80e35001e60e'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'f2d439026119f1e01da9d28e2851feda077f1aca6b41b923c4565e3a04697782'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bff0d72fa908dea66e178001f6cc8e104d178adf8510217a22032ad349d667'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'0fe630329cf5bb35596189225661e0f85b55fcafa56f3c12d91de112a70f7547'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac75cc8ee15fdc9a0957b67fe2c3998bacc5b5b733abac2fb496424d85b522be'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'954e881629034c50b1df1d9bb1483b8c77113c7136e8073c2ae3663baf3efd50'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902cbf43dc8f38da2718765d47f9d9c5f3cf3dd6d810e873090446f78c7c2a51'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'5568f051efeb11356a2b24943eb50d75b58e4d0b94666feddfb5d6a96c8f670a'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f54f356c9ea7c6cdc618703ac0c82c4772baa0a3a6be5520395d33386d035770'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'4387f4e6750bcf459b669d4bd56e6922012707ff4f40849959e3e0303e91f19a'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c08bd2fb69af33524040944d4c788269e55a3a716d2f0d5dcf24be0b6fe69662'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'cd7c68c38eed26500c02ea4a57a394089073c19cee26498e9f651e96e2802c67'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb0f2ca9b3c0bd4a46c7a0360b0b587c90e213ee49731697171bfb9ae3435b'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'94b80b93719fa0925fcb3cc0a47147e5b1c2519dac78ea780592a635fb6a7964'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6057787d06d59017908d50a2490a7f9d9110434523522540ddc8f3799dc225'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'3728bfeddfdd5ee26b1e6c6edf4e44348f883558bab3a0c5064161db6d5c98e7'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eaec92b3afa955720c6801e72753388f56b39e4d6c5278e4bfd5103eefd597d'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ef39eac787ad4f90821debf52f0149386f7f45467b14b373b925229c0238894f'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50ee23f599ed54df0ad8df77b7eb1b7efeca705e4b042fb1f5b13c1493fff42b'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'aa4b6dbec60de52af91a68f1bc625b8c29d152d76a0d298ed3967d6520ae64ee'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d4a65130976d55a64e1237a7065fb9faad2b997479730314089ed42f6f781d9'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'e8c0ea2f82881d47a3e0be6d106d09e0d7349e282fcda9005368a9e91e8e588f'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dac79398f3417a1a94bdedaccbfa3b62082cd651c2cc106275f3e068a625a5a5'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'8a36538554608924193b935c04b945f8f7cb844e8ef3eca07fd28cdf83970d3a'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b998b91ed48567e70d59bfe05682f9c4dc25f04d2a64ce21dc0a562bcc459b'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'bcc438b7e7682ed14879b4b466e74f7251b4726825d89e187cc267e30fba35ff'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f9eb6d9e5f235d146978832f3a964321b3462cecf653755d586869e5a66976c'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'ed638e12930e66e75f82626af9cd01ac437e6b7b384d8403286f789c376ab91e'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59c5956a375a77d5029120b0f0ead8ae45980d0cf6d3e0eff26cb0def904804c'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'f8d3c8ba4357d9a9ddac75df7121b6132af45b1fa1a9998f2764f1baab2bc3fa'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b31cbdf4a99f978911504788d29508e302eadc73a70ea66068c17545fdf0c45'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'39d33454a805cc9f4153933d2b7f294390be6deef137c48b638be5608ec7e3ba'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef65752aca822f4891e2216869402fb87c29fd4602d78eefcc462675363a4924'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'81cda12d401d3af3e9f71982aaf657244f0f37cb5071022cf89767d25f42ce03'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ecb5a9edf06ce66b66ea58f1d7b38ec95fbb59c75a9eae0c649aa6c64ea873'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'39abe67e0c3e552ddae542cc7c0caa5057ff02100c885fc2b575eadffeeb035c'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4c25f86d7c29b72b459ea478826b38ab79bc2d60e8f7b666ef1707fd7c36af7'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'6c7f2dc41d45d2f1684e6ea425b433c30db7406bf84260b92921551a0c363455'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5448a23df9e3bc5ab60a141b1e428d4fd6c2d4a142fa24acd91dddd92a1981a0'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'e67137669c0f64a707a547416631a931726bb7d8914194b53132995a364855b9'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db5dd760d6230e12476f2d510d40bbe2d869f512155781a93450a1c141a743d8'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'430e37c1bc60be1d8bbeec2c39b343e0b20a1942da6a1aa7673c4efbe0535f63'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0262a442b8e64a961255eba095b168757b9764dbce35abfc86185bc68bac1036'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'a7c1501de9dbd8c5c6ecb0973ddfc0f98fa4a4b0bf05f0b4ad7bcd217ff29ed0'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c64ed2a8ce4468bdcfde6498e5768eabe59b3bba06c18776174773a13479f69'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'43fa94d12450a644884216d0c6aa4614e3d213c5181b24e43095b75901bc94de'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d390f3295a4c047a7d340c5b778db94edab6c1005cdc06b9bce90cc4c017619'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'f3228ff82661cdc8b064252d9e5fe099db33dea6b7fa92994f20610fa9439c8e'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88fcdc9f2058683e5aa6edf1a193e8b42bcdbe4576d26f6bc21b908e9d8104a0'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'43bb3c28cdcadcb3d9194732ef1939814659c20ddc3db3025c3c573404967298'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5884c7446b44cdbda7d6104d462df0a2c1b0115e9814b9cfd89f2454dd8ffde'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'3e7873db616de7d17f15c778b3fe1f7bd13cd65b5885bef8c187031d8cc6e150'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed6bd6147c541b0ca4fa805f83cb5717e5d0a454227d228cb6e16785bb6b924b'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'79904ec3b0190d78f62de79da4ca02aa53692ca9149f2d35a74c152a32826be4'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed4f45b3efc1bd07cf7752b24a0496619a94223d9c94cb46ec8ee3cf598c552d'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'f6aa17ced4c7845f305b5a19cc9e01c6544fa64abf81dd9af99aa2697d375663'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9f36968ed9c168d0fe1d1395284cdf4f9d842318ddd6c4b88c7e2c4469c9e1'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'cf4cf6870abcfb30360dd5920f2aeb2738db479d1e6685ae7cd3c27d4fc65eec'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8843b487f1874e5b6853248b282304a558c19b85ab3a88fbb50d97032b604c7c'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'60186361d91482cbc3fb702cd90fb4868f0e38e5b64aa141cb24ff33c876b3db'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ddede69803555f21b93019e7511d97e7360628a81546828c7dde778c6c56d2'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'c11bbf34bdfc266bed3458c7a1c784a54828fb4c61b4c1a7740485c213e3b004'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827af5b7e241322b58da42a94447ecf5714b759c782287a891420b79724934aa'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2931b4054384418a5ca3c9f82ec69168265af0e8734d6d7058ca4b71e624550d'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'5b593e8ff1b41488b1bf0bf134d7e61fe70869275b6410d5ed6644fafa746d47'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'69102e3517c6446bb75acf1b15c7f972f80ec185d20af346519c3f1a3521e0bd'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'cb2e73f498311b890e712da878a11339d661a802fe8270d92ef4cec8e6266d45'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581ebde8ff6c95455553a79144951d14af6f2d0d3d807b1a6ecf2fd2a861e4c0'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'bfdd43e6adc40cb42a374902b7b82bc527e1e19a52ad2cc15255c0c3f01c0eaa'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e01b19b758f3365c653938c4c168bb47e799be047e34210d63d53a053953459'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'9b8b3861f4fcf247f94e9d58683bd1a9841dfa5fb1f1aea8051db97c71433131'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1c2899287621ee9e9ed2951f3a1e3a3dde2089315a91f88c7bf6c45c3817a1d'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ab7b5981dca361bc1a05fd791e57a448e7ba157ffd8ade477153c736dea9e9e8'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15b15e9ea49dbb10973e29e6306417e11572ce7a71b448bda1be5d9164fd813'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'1e76d50da4f3c3af92ee2c4431cd1ca3e355fe206782af71e7bc68d2106bf1e2'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'278b14619e367d83431630b2b847521985e2b299a4bbfb847db5f266bd854fcd'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'dfaa7cffc15335ece72bdcda098d11908ae952014420fee4502a2d2a16d5c2c2'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'565a6f43063e5dddeb8df8145f071a7bf56b5788b4654a599bef289e9443b568'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'40b0d5762e839c19bf02681d430c78bd040978ec66332a2d4e6eb9c99a0254ad'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1be2fe2e9134309fef23015117a02dde93770a72648653a5f0cc54097fd495a1'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'fb54e59fe6f5303dd00abe390e2905582dc8edb49c4b0a9f0535f2674c839151'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fab2732727fd7e0d21e8105f79fb301f87bc17dad45fa3d360c6bbfca3c8015'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'098b7d2a40bed49bb96bbf77f62f718530f8eba500a62da04775b7ed265ca880'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ace331b534d3dc4c53fc96d04d0532316fa9d8bd22cb4edbd91fb192956afebe'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'f18f4fe3fdf26130c1a3310844c987e0a0a4d07c3b216539856529ed1f897170'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6ef5cd9b913d38a325c98adc084a1a3040e8c281f87deeaffea5e041c17f11'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'3a878ad933740ef6ab0d030276d885d48a008150c6850a2bf7e4632560db1d82'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2452af9ad93f85c0de56c8686fcc7cd71647b35c90de5ccba387110b3c4144c'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'bc5af6d042662deb63decdeef41214131cc4e3b74fd5ddc6c8705068dddc6162'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2ef3a17f5d35105132e819918b6ca23d964e249be25c00b3e7853e5ad9b5158'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'2fda99cf36961256fb885ad58b3d3b412cf7535e88e4195193f5ec11ee4d163c'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05ec3c81f9cb8c066f9c8d6dc4215ac052be44e4e5dc1066833e04852ba661b8'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'a920493b6fc5b9bd3587458900dfc8097f10f9a487639bff7955990490794ddb'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'791e17c29ad2e4e2434b7316e3be5cfbd7cc56ab13ffac6e71ba9d869b7c4b89'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'bab109fe4a6270b93d5c963d494b618a39330733d19d18ad5039932059714937'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52190a838ea1e3862f3b18ff7447913f006eb2eff649103820ba33c7707d327a'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'f7eda9b9fe2cac4634a64a8fdd0d1120f13469aa6234327b06bd16e5e3175f06'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c44f12205b76a7b3e3360d4cf0d44c5892e7771e7d0325ac87de86d13370ee9f'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'51dc775d4cf07a36dfda608fb9e7ca1b0551d02bf92595635d98047386ce2829'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c819e6144ad8a19f6b72dd58ca66ccd044d1a48e922edce634d4d83f6285a9f'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'94e6c6c73b3e102372351375487d955849985cdbb9272de804be5995905cffe9'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b7819e3e0d3cb7f8143d64948f89449c6c41492751bafdde1f85d8b7dc11353'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'cc2e6bbbccfc920b7d0f940031955781413cef4b6d62b3c32ea613b6ab4c340a'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aaf2287e92bb8be6aa2e54eed5cfd8f78366a431b865caa936172a781903985'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'f07ae4bb4d31da3c7820fcfbdb719322a84b7b8d9820785a3c39baa60595739a'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ecab5eb88e299f9127c089d2f55ab9f249841ca52bfa4b5856e926d789c0c6f'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'27786a93c9351524ed56d9c13bb27aae4c077fa65d90a1f9a16c7e2587a3eb84'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6315ab016a88bb86bf566da39e9d30b644199eb601e61ed5019558dff2d7b611'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'de82f0481773558b8b26cbf873d2a9add9279339d52f1c1eec6963338dcff7cd'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da436c188602fa82184c31f9e6c5164735907d2e7198b8d03c726314094986ad'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'fa2e2d5c62563ca5686701804130e1b8f132a2dc75f9ba5977225c14caf4d63a'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bedd9136cce4bf37ee2369adc0c612c2563bc0741b86af4dca6915c0a1a2877'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'ea8d976c3532ad39789889e243e0a7f13986e6cb2ea9b9c5207b56de38ba9114'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2866cf08694c62479003ad453723e76de59e2a411d9a2c946a02b4258c43f6e'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'1041121ec2ae9119e6b3ad57b25b535e86471c9d9493a1d1384831d1fe64125c'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ea6b8131294db5a3b80d81c1caaf0497e6216e327ee5daa913939a68532d3f2'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'bff491e94f6e743d3dcaff1db94c61338b54a9c71ad7050fb3e8a319dfeba479'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'414e039090c44ad88c93fcde6d09ac03e7c00eb60c3acdc0ffad3c9fef2c8afb'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'c4b084e28580e939209c6f996c8af9fc38a4cc8393f7bcfea94d4c089a39c6a1'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05f8da7e78ec94aa4a1a92ee8cc3c89414ce468437ddfc19909ffab16a1b805d'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'99e8a9ee25e1e15e9e3d58b544218920ba026abeb0cecb52689fee24529240fa'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe573e21ad235dc377ca14a8606eda840dc93d96cf0ffb3d428a14a211b0269'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'2490bf60cd59cc4aae6c57383043ca8a75e9f209468f19a295e5c55f38178388'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'475aa88fd87a572aeb24ff7c75afc780219b6197caa651d165aeec497c925f01'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'320e4059eb5f1a55e0e623ca3316dbab0ec7f2c75a8d280274e8940f32baa890'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cf545d5cd3c57895df6f813994bd92ab4a8a03bca9c812abcd65f64564d7f03'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'e4ff9fd1589211d84caac8aaed16f00503d5f4bb8015152b057406d8fc843fc1'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f036e71eb81cb5bf354a09d5bca4a610f468bce4485a8785ea4e3e1e1025c9a'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'c50dd3a41058aa46ce3ed76c715465cbd4a38df9d87b9afaac4f8b2c9fe5bddd'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b10e2cd348ac2c786ab5f7c56a2e32ebfd2b74da5220de87aa9718f4d76c078'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'38d40eb8d957b9ad695f9280ccb8c2b321936b175c523030c91207a489308491'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33556132d7affe14e38d23290ead215b4dc10c00f7da902803528afc9caa315'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'9a884a851a466739382ee4daf9a26e556559fa6ad9500ecaf98a8d2352edc599'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e495543160221cda3d2cca9ac13cd92f05d1082d1db415eb22ee228455203337'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'ed8d19d5d0c36c375e90180c369ac2bfc690eee08165ae28bd30cc2d46cc6b3e'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb25a973339f0a34d188e9335cc43f02eb781a55fe1867bab7d6f39f775eefc2'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'c1dcc1651b576eca1d1064966b84730d30abc2a226ba744328b0ed71d61adfc2'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfcf54abb9355373e3d602dcf9025c5d01ee285d5c986ca8d47b2d56c6e4717c'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'a82504524c1418b4e560b5857fdd80c4f7f6e8f8c8868363f7f834f3d04d146c'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91b9ea5b97395be36ce30515c31e2c7c3f5b8ee48527e34a2ceab2dc7aad29e6'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'8f1bfdfdddb492d0177f907e14b59779fbf4d85d91ff0a3b2a5a661327de8940'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a58d199b69f414b9d2e24db40568eb71009caa94a2e24c23659b4825caaaaaa'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'added51eb8fd9dc71baa31d9b7fbc38624abdc6aa028b40abfe9a37f63112484'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0618386c8abfffa341b12c7f0d910e34497689cd511cf3b66fd43fa7cd23e24'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'e922e558d3deed9e7703a1011312d4370f76e253fefbb4ab727c9757611bf03d'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8665d6d16992fbe006daf72ed778b98bbc619564ffed941b71eb8d9866a34b52'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'ca3c58de0e576935093a6ba1a83dec088a7018ca76744fa4e9c3dd7164a8b63d'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ae163e836c45102a8d1975a52dde108b4e6791e6a3cb392b4b5838891f40e81'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'eea612cb79959b31c2d7d69728769d4431f8bbd7000c6459c046542609faf57f'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06f8515a97b11e37ae3de76417376080b368dae8b1282f7e8a6294e379c1d112'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'46d79ac00a816a45d5c01ec1fddf1bd0b16cb9cb3be0ed542b33ba4f73e36443'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bf9f7f2ce7afd5318e40a42a891913f3ac6f5d3ca0ccc4760bfac9a1a55b9e'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'8bc1696bd81a8c90b5003262b87c48ffe37c8bebdfac288c96240aa79882bfeb'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e12df4512a7f7bfb8639a047818548d380786d957276060a24abc9fcf1841ad'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'93fd129a5f98a4ccab3895bdce598b00d1c87bfb6c953f7e2aca010d3ca83c47'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a2269a73715c8191693cc617745e0e8407784f81deb8e92f8a93fa3cff0c95e'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'084df8ae85a1149afc55763b8eb4d3da4c0c602ff3b227cdc0be44b0fd234532'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eb8269a44e2a64eb9b0c2c70ef341a026441e58f6aa3f2f7a7543183b9dc47'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'8c51710bfbd3184f078a92b49ae93865031b69a0ae4d5f53c24ac805d1189948'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8c447e5fd6e943158b248a5cd5cadefeb9f1d8c99542eaa6b423ea7931e4649'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'69825f71d7cfe749f1efbb3642026b239aa430f87e3f0f511a265c1e6bfd67f4'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767fc9d838ed8d94690cbd5a8f00c8694fc458ca8fb9e33ae7fffa01a53cb10a'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'fd1b7d5c7860e9da6949fc15b31ae607e06935dadd57bc8366031f1082c089c4'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e173e1f75d5051a6192543c5aa93314e45501ac85b2ae010b213a5bb07b03569'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'e310745a30c072b0dddbcca60c66d8814e765ee229f62cdb9f4857cac2a9125f'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4306f8de37c15efcf2a2c3772a78073c3b3a83ac7d146f39bdc125e2722c516f'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'6a32f727d5b3cf499019c1871f72b831e0c12dde62b5615070c4169f5f3fc38d'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58e56f17247dd303c3522246f8511bf0fd9ff60546531cbbbf024f79910d2ac1'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'6948c42faab91e49eaf65dbd1e13d263c588e95a2979d9cb59b6615387c3ea30'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbdf6d1931325f25179c5149a02c8d7f25841ad266a4f69d9adf0279e5841b72'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'7f179e72b8159c5e791dac0a2c796e91dba1c6684ccb1dc93f6976362d591307'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc6cd72eb0bb48df17983affc573d131d5ae623123c6959857c65ef7f58c0d7'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'328165fdedebc08f01641d99288821727f05b9f1c49df9016b1751311d0fe025'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76e4f402b612a9915b3af8da888656393eff58e0590b38cefb1da08442dc6c38'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'720c06295347fa6f1e9812e74de26251c64ea9a24efcfaf8803fce6d70780bd5'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db3fe3a51c7402db8b5a6ac56392edc43b20efe56e160ddffaf48ff9122b208'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'69e80c113702a562befe175de8202f01b9a4e34328754bdcce454886bf7cf9a1'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0dc749bb5a31399c215ea09fe40a9c735390a60e249bb773648ab9b73cd1939'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'1ce691fa3321d69a327bc38eef2955d1614c4ceb529c70ab71b486a93638d19a'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'925090f3ecf4d1f353c65bf01ea060679f1a69d1f6f92fd656ea918a9a893428'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'5d96ff7d1cad796c0e1a14400b92991da2087485198b6f180d2d3f4d42f8ba6a'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23098ea7a01a452c21dcb9fcb45248dabcb99c41b2f66ae825b71e6f513d3b12'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'ac3ead686942a044ece838b7a3cfbbf57185e06fe24ae7c6cbedbcc3d9cb95d7'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'202e10e8ec25c3c417965a32cf7ee87abd18fb0a59696d9014863e23c6ed10c2'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'c5824a12f17a8f64ef3018b4256747f6cfdb21cf63116c56c8d3f95106977f46'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b413bf99e96e3c2320fc80634e8e93a3b34055286f5781a765867606db44204'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'5b3e80579eb6bf8aa23d57a23d481d03c1564c5b64d8c5317fd04d762d8fb5cd'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ca9d44b4a2a250e7ec9eb55929987450303dea19a08d41f6a6665036802fc91'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'f932a8c2fad8f7d63cbeacfedf225fc062c179ca1757c34a5ff24c5fbf92ed12'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fa160e02333e4a6793295b519fa0a57d331a914dd549ab4dccbaafd219f7e93'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'1a991bd0acf6628080e36033c3deadff92b78ce634256b6c24c411b6c6264f55'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01f4dc720796abc38f7eaa4122e0d64bc715831e91d8d394c5e81500021076e8'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'9da23a71e1ad453ce197956580941d6527b3b6c9f354e4d64f87ad358ea37e5f'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bca09f23797c6d333eed8a5e32b3566fabffeabe27ab0576ee097d1eb0433e7'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'9b655b83c35f7064396d199fc66bf18894d43dc755eb0bb9547c103944622491'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'defd0ce420e04c8c7675bb48c96a39f72aeea16b6b05e53f3a9a7ec79fbbb598'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'7d9fb25be4b080d3b4dca29067a60e6eca2f151e10661ce2ad232a37e599fdf0'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7b4490e4ff8ed552764a32a1249b06acde4a7c1a8c3244d52200c8d2576a751'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'3ea6298523bf40ca4e809db6c9924c4382bc5c96657acdea2bd7f7393b5f7661'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'646f7ee404bb85ac41d03190f646ee30176a88839d9fc113674b867386046106'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'3e7bcd726fcc0e687c4d0bb0f05fda53aa27a0d2a76df1444947525aa512565c'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ea056ce7506fc1481ac98091c06586f60c8dc2e54dcaf95c3e24a76110a28a'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1f220adc92922e003829b820b32bed973a10626885532b9a8650fbe869a96cf8'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8ab7bce34311dcc08db2f9c547930272e9505ff6756df3fd26cfbb7fa8ec6c7'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'01c876992343d53d98c47d894e3cbac9a01cdc479a0e4f7b2e0c8c69f4bf2239'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325043d8bed45b7f821a7b5cee6643443eaade1c8088808674496210cca2d289'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'7cf657899324a95a34f6c7cea647ffd80ac0e482f38ef2ac05489a231bdba326'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f38a7161972b5caa3b80fdbeec750f7e137138e1cafac646450ecc0dcd248bf1'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'f71c22275747b2364ae23b33e3d7e498bef6753a01db9f15edfaeed13d50c9e4'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3dc8e49fd42f4c0944e452af6400f58b2671525bfb4cc9720da29f90a1a4531'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'96c0c029e9f1de1c8b9971c0fdaaf385ad40be5a47addff2b36bf3a2ea2a8587'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12d39f9091673aa19ee15c4662ccefd670ca5dbf3f78ae5412c23889c3948969'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'666b458eab116b5a5303f7644192d0c0a87df00fa79c88aab07e53f8be6641ad'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378e41cf1faadb95bfdaae8b4d97c0e608624dbfa8693de309aa22cdf7085c22'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'685d3c74f494916b35482d4d4ce0f4e852697df5f503e376ff792dd9dd7d28bb'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ff35ac98bc8acb9435d6748536c9a97a576280901f12d282db4744f6803136'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'241f8714545723f6cd7f4aa1c9652659374b3cfa9cf6e8b5ddc9b2186f71f42f'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b7e67c45c8454064a54a93fa45d156564bc620b90e3922ebec98dba8023b2e0'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'6820775a025fb8877c5f8504b77d5b6623ead50bb27431b46ed0905cc40b40b3'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba36662cdbf1871720dc8e2006f71a79d80deb97de8b575cf919dddddef7689'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'f0d5b7a4c803bebb88e06d39579110998c6bd9535b24c2420af656acf7611617'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c88f6dc3fdcdcdcd332ecffaa660e83a4f4d59d93b2bbdf8e2355da9d7a85d3'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'d207dd6a919e806c3802e8420fc191cee5440c5dff13fb63503742dff7443876'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c2ffd09eecd3f1c8ab69cf5c60e9c005037737d878d43550721a4fb18614888'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'30232a7a6a6429c6b09947db723d895085d5609b036e23f73c7eb21f32858f9f'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffb694cb597bfe326fdcda96f5a3e6ebab422425474fb80b0efbf9d3951b135f'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'c2b3bc966a79bb95482101e2cddaec148e6dbb35acbbdac9ccd2e69ece7d6789'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca4ed96788fb23a1456e516ae1ccf9fb5138150de70023d582ce0bbc78ae1a62'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'9b9d3cf40d9b15f7f8f55f736585d4b794260916e2689b5ac59fd03b8c020b24'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'301fd9e366125308ef036b1adf9caa28a167a76479a5d3069bcd36d1491080f6'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'08f337e98fa0dee551794f7c8d09c099dbc8cf989ddc30e5d1c6fa743cc0fd0b'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3cbaac8de96a93d234e7a2fe3374d405d5852164cbea0f8ccb69b60c16d56'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'0b9ebf0b6a59a2f4fd4f9d32002ad4b485541678f8dba4f37221f5f7a1f209ee'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d611aae459d30c5f96840c5825ba9f839eb80443eda98050fa823b4678dcb8c'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'60f7b8f725d224407806ac0e4142e423c80b382fa8c302caf80a54dd325faeec'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78ba734913700dc80fc9dde2e7bdaad08abc25135b55872620b64fbdab2f3fe9'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'baef278cd7149b5c748c95a7f9684409ac679dc5e578d5292afb409f62cf3c39'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445b56c59487fea539806193968072d59438df29ef86897c212c5e1ec5df313e'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'8c27ef1ece128390020be5b4e13f3a0dd4c44597b92aabc537a9eca5a1d5b7e6'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39141e628fb4af5c8eb325209c6f3aa2e0dfde3961c29bb7ed28caae4044c463'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'15535663e1fbec159638620d41d5404b248255947cd95c89669ab5de4a4d5c44'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f49b9236fcb0e08c71e803b97be0c4ac170268827b4cd8091dfe1ef498fc52e7'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7f1547283270cc1a2d0fbf64ffaaa2abc925b310b054eb4b51efb690a7284395'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598feebdbc3f26ee3a8474db6bd2c8f268ef129ecdd6aa84912551d129829477'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'fa04a6599defd1c02541e2deba2941bfced29b5b601ef0bbacfe5cefef2eee28'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b314f17c2e9b9ea308a1689c22f3d2e2567da0d6025929f1a66a73de78e26fa0'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'9d8cf1be2b9f65289a9a74ededb274157339af3fc0007e7d0c559987042bfe33'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51674b783f56db50a5155a47b393f1d32bbe2246fe409aacf61e0defc9d73f1c'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'d8633db49cc1247a4f9d8f0d283ca6cea3dfaa04f7deeb64605c4a5b8051f7c9'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47baabccde92227de34e782d373194798a6ce903f4a2add963e24f0f3d97e063'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'24d5adef723cc42f4ce733c7bbb5a7ae20e236539e68f6826f850dbeb9404860'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ddd7de4c7e7d78dcaced8dc18b8e65c728913dd21389dcbdf301c93b8d616b9'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'34342cf0c64a7167739080ba5972b80f26c78ad175d79d80a497f3ecb313f257'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7994a0417cb15ff5cbf2469490304fdb85cb8d3ce3f6d8ddd023f5a459815cb4'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'bbf140a01fd938e333c30e3ce51debe23829bdf856e08d9d8be02861e824b2f6'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4828050c1e512b60aaadc818915fca9c987899a702fee04b4d0565e57f33545'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'f9520e0b19fe54c58646ff200de7490b684b1aa797b1ef7e560fb0817c71e2e2'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fcdebf0f17e73287ac1bf43dd8c8058938e2a6b0601d1556baad161c3409c03'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'4d6e5db932f881e27fc043a3c6b5e0878a26323de98499880e8481f3f8bf5e92'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd72ca9a6b54a312c551fb5c619c2b294375a74282a92a7777e77e2314246e38'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'6d7aaf2691d99896d68a9bd473ef7e569707cd3eb72d8125d85fd9232163eede'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ad3eacc4e09d0134b15d73aba2dddc73bb04f9bd5f483a1aedfd075ea0977e6'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'cebb1c13bba334e4fa3e7b46b8b244bfa085596b00da5052e3b1386c5339ccea'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f207118757de44b755a201c784f9ce67f5bfd7dd85ed4ab2f7c755611491ffa'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'4466dbb2b1239f0b12f177ce960ecb6e59367e8341e8f79c1863533f799364cc'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6239001e93a0ece18eb36967fece87182aa1e151ed8795e5624772acb21db821'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'224d124a1e4cde953fb64a98c85046293ebb50c5101ee6c04d48fffe36c58cc4'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3846a636a3bda4a67d08021c7a37f87206a6cf95926269c669489a5d28ebb5a'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'9156d67c6396d92ab72ef44eeb1012f912ff4f0ffb5720f66f298b036f93e8be'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9711932f7b661eb06233c68d18e37c86b4f1bd6c3ef0ce27904e43e779ae778'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'8caa4ae6b38d2f813db6a2ce308e71446d0a39f0259bf66edbf9ba34077a3bf1'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7658ac4c71186c13f73ffdde6aad9c63d516fdd82103b8e05bce7cdb58fac85c'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'db313fcd80cdf3c4f950d567f1ccfbc4a0bc355c12e7494b29478e7c7c441120'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cd19edf3fcb5e307290f34045b595c08901f04c06f9adb63ca905c5887560d3'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'cc85b89268a045ceec9a420c056693d3b2f5cd2c7d51a71d09d20f3340ad1c27'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b31bd06e95b1822210563156772a6fae0e1ce5e507676d7bb22c6d628989090'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'d6c97e644bac7b35b339f0b04e9edcb7bec96459c3bf82e9658d717e486f27e5'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87e12f786c6727372dc17199f37415c8c22bda932848cef2054b5658cd73f10d'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'061960607c6f18637f59a4beb5f5ea7b2a26678a6420266ea9fcbf15a3b040de'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce5bbd516cd2bcbb3bf6f4d68d1357dc65e8bc67423ed64263dbd9bbdae7d7ba'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'c2f96a0e8efca6863e05080fb5477a3325edb2cfe157dc8d284e785cf7e8117c'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d3e436e33a5ad723197e9a2cb75eb31e3afae6a3254dad6ba66c2e53f99f44'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'e8f548cb0e4b11a42c008b5fb3e1e67f7bde8d4f9745c6580b04b70d253de66e'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fd1d89f6d0978e2cdb88b1d2db58da08c47ed13a6fd4269bafd8ac866df0f34'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'58cf73cca5feaf2263a6db81816f5aca003237172126f0f5a944ead78bfb5544'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bf55e570076200296ce4b6aae7d790d428663a0f272587bf654a941fd9f0c44'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'2c7c48a21cfa651ef08414132a4e7c9e8be66f21a35568264d2ddccd421b4b00'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e91e759c10a28f25719f1bef1d76aaa58aef4ae2d77994bf5229f6acde4f4780'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'1ec18704d455190f043b7c1719c2cf5c1ec69c85c5e291fd679735647e3bd7af'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32cf241fc8cd836b8d8bc1b0261282df1d5d29da7401c98cae6aab8fcd81e8a4'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'700592de9180e98236c7f643b20d91dd360a129abf5dccbde4e9713bd8aa0932'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4c070da5412ac230509343fac2d4c65a19128fdb6d7131d1ad34dc513e6ec10'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'f7da841f4e745f9e740eba9ce341c7c853026858844dee55543aacb03e2d13e4'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386a96d6a08c90b8104c91e77f62699e506c437aed2530b89544cae0371f7010'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'1a5868a6f80ba9950ad291d0705bb6ab933c603335ed6adb81ff57692dcf69fe'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e741ade8b9c6c627d37be9ec57166660fc484029fde19e1b3e846060255c80'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'9ea84cde1c958baeda4bb00845dd86f37f9526d118ec201e8e3503e28e36839a'); -INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86de7ec8067560700d47864fefb4a8c1f2a7cdc355dce4baa0d9181f3918ad40'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'e568436d741dca9bb01f63b71ebee92561c328ecc792087f718ab1833d20f273'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e346ab4fbeef4af6e0fb414b4b3cb6e725fe557786f0c76edc320e96bdfac91b'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','0d61ead9f6f5037f035b3a12eb85ebc36668cf6e3d8aa475ac15f49253169fdf'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e779a71198c4db10385f578eabb3268b1272b1ccb0f2e6561e68c215f10ec000'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','8c336012367e08dcbaf4d2f30fe65d86b880352bc3e0d741b0a23a6451286b9d'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'5c27371da8d8e128183af90c3b2b69f180a3943becfa19818dc1ece29175ec22'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc30887d62b3e5c4bf3ad2b302c1b741d1ddbd6ebca817fb598939e7d7db4f6e'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'bbcee5dbe0ba6f067acbd54a30b67ecce294e37c618031284896be5e54497b2f'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','7498e3b9b57713023a48ce928bf6b15fdf572e75eb8647a5587c677fcbecf53b'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','3ff860d717820224852fe2bd470f085062dd9a94a6d333eda8fbaf1c0502181e'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','e21f8194fd6107fac5a633f878462f4ba8f705b6c5615d65232fde27dc9bd1ce'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','c35521c94bc0168370e08adefaa497e883b104ddb952187f59ed7bc58e7b746a'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'788b0ee4b7b9d2583337fed8a00f194799e4a74bf9c590951ca6135271fbbdfb'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30b41bc6d7ca96ed586dd3928cf2e9d8bde83016391f5b9eafe8a5648e7ab62b'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'84c90085c9d545b88f66ebfb3e58c256d722fc8271ac00620489311f0d140a2c'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','aeab1ae877e14d7192421d2f0c4c2eef18cd7fb2539197776cd74d342db53329'); +INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0f31d291582232e230be79dbd0171d99e7141f4c810f303c9bd2f60066b79aa8'); +INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0baf9dd2c3e8289d08fa38a034d2de588266957cc5772519adabc76dcfa8222b'); +INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'ca6f3d75b375e844895d85737d9f0285dd06736cd4761c2f47099ff0c6b923aa'); +INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab1ebff0b08db009fa7577720821c2817e0dd8b7693a309aea2ac9c4e39171f'); +INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'bbde1a346ce21fa2d5f3ca3a761c68b62ae938af0f8c9267aa267952dd471389'); +INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','ea662f1fad289dc920ff16261eaa7ab2c97334dc7782b46a1fa11e5230ae6bac'); +INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','fc8b3b08702f726889a32188982286643ead219a82ae851296660dcf9dc0f431'); +INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','2cfabd4ad7f38de43a7159d319df2c939fe5e51719410a1752ed5e666ba2d7bd'); +INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'794107603e582efa04f3bb7355bf23fd23808de48b436b95c19683f2f7a47e00'); +INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f6cbdb5ba126f33684fe397561300b0b58e03c6b334cf847b1066e422afedc'); +INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'39de1e16910d9ffc1d5dfd353f94b13436658f32dc894b69ee53d2f17494c4b8'); +INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','f55704cfc55133b23eeb721254bc4780eec3557f828dcdf082cc65006ee9c94b'); +INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','d3d5f9ba975cb392aafed578df2b458d2c4bb30b0a1fc12ceaa78cf5da9af557'); +INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'b1feae4c1bf7d56ef29731c9c708d30f8dfb45ad3769245a7eafca99a1cdb5e5'); +INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c8b8d3164663c23c9184fd566a11ece3783f126fd57b1a6909e29964338cbbd'); +INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'52929b833155c012ad3654694e2802a9bbf8ea744269006fd3de014dde5e752e'); +INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','13a736d355d427ae1ff311ffcbb7e1522cbb3d5b3f62fc45b77e82e5aca1304f'); +INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','77759c9ad4c731beb81ef9f54301407219c49c8b91c07d80fe11c23b453f9cab'); +INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','eeefc8dc97a031d62677810717974c12fd12a2b381efcb8d0a2c11f03fdc71ae'); +INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','e2105538776629201d9ea29d9c4704b9693a918df4ded276f722b49084be3a06'); +INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'d07370a170926072d6540065cfcc9541cd276b3a52bab747329cca67ba3223b2'); +INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23c2019f9fab23c19025889a50c34e68ea31dce366bcb08c6672cd993fb841dc'); +INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'b5b0c17991db53d142b0de1798f357f691146d8399fe708f1619fe77bc470bff'); +INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','21a4036efb63510cc77620ce57528cb9807509080d5605aac281b274842fdb1d'); +INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','f3742564a5e22a383a9ad4ea5f826b9deb446a54bba7f43f1c97ee0e894d86ac'); +INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','53a488de9f8a17c91c12c7bfc0ac019a6c2203a6ec6c27ad92f5667485e9393f'); +INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','2b0102e07ee2c35c2a69a48987e7c4c740af38013a67167ceaf862e47fad1f74'); +INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'ab0e7f4e1b60d73709cc709b6a65fdc5c2b4c97e5e7dc2d432b1c669b4c8a8fe'); +INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1415550ee0e00cb38f6afae73d0612f99830b209f5cfbb16a358f9691de7f0dd'); +INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'f36e8129f5999e3307dfeefbd46d40343435a2ea90c85ce620dd25b409970c68'); +INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','cf3770393644c8898da573bbbbd5c3ef33725a69d8fcc790b62660bc1c03b784'); +INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','19822c6c2c9efd20219336ada6b366524e7b6301d19b5aa9958de9661433d61d'); +INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','fc332d3d2d6b225b2843d4e65291800a1265abe6fff55f17816aff187b69c348'); +INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','10de4999556a31a7c115ce8d1416fb63dffed740920b2abb741f618081873c5f'); +INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'5e581ad87a6ed82653e9b62f44ceb318a3ecc36c26837d79fe73e5d26d30d890'); +INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39546673ceab955e8cb2444191e9acfec389c943559705f78c2e5a6ed9235b4'); +INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'25fb63b5b4d60a7874f2f3fcd2ca6481cb044d5f3ea547d6a9c7dbc2ee0b9ad0'); +INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','16f1880f51e0c78869c00e6cf521519626cbfc8126c8fba1f778319abe9412aa'); +INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','ad9be938c6fa3767f627f08f1ba15ab325ca10fc575cda7f577b59118821b268'); +INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','838d3682ec71b13129a424f5d72d601bd605a89880b96ac7bc601879be0e4322'); +INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','174ece8514fa69a0f4eb6a6815c97fe28e5d6067a0ffdca4eebd730b39504a0f'); +INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'bcae308dea2e4c5a95175b030665c14f71837e788550a8882108c3a465dc34b4'); +INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'903d485875ff95d6d1d3e2b345cffc055cd5da4fbba5710f88eda2e4f9f31fb8'); +INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'09327f73589be2c0a79e5e9f5fabe63e645902295669933a34bee8a8aa9f3eff'); +INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','35c653a08edd22ae96de1acce6f8b2e57d01854d3747259681bd3df7adec621d'); +INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','411d0df4bb704c60f5e086e3c9042941b559b766982f71ef8ddeac906caca26a'); +INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','2047ecf5dba08f541dbf5c01abf763646d35703a461f475431f05555391e4b5f'); +INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','14892209d114b93fe7c3c19ef2edc947b71fc109ac5001a2c0fcb6959eee8df3'); +INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','81b270ff43063922eb6c9f7b040cd1bd8c0337c6bf3d74f4db992477e1207e5b'); +INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'7f319e5b69ff85f258f69a6ecdcdabd01d805507fd2941794e47feaa926fb716'); +INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48270feee536c8028dd9bbeab8eed83c2ed9deb47a2973db1a19c0e097e308c2'); +INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'381d9f5a7e412850a58264eee4ddc7c450597c4087160da6e6c7d5c805d53fdc'); +INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','66f68ac5163eeea5c70647f45c57708728672b53850feffc934839316f71498e'); +INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','bf853aef472ce2ac079d2995ffdda733e9b93dc35c2c6f15d8e56728319380bc'); +INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'c62a71daaf7247e45a0017d2023250037551358ebb1b262e0e4c1e407db9a907'); +INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b6a3eb6f2044997c01649643cb0505166eb44fe0414917ed60d2b947eeb9c3'); +INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'fc520a70f9593e5598bd39d33f1f8e5a07593509d73b5691072cd0b7316164d1'); +INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','3b3eb5457f4c7708c1b6d4f1a662d948129bbcac6a008c4efffb242549ce075a'); +INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','e507784fa08c088a607afa05d8c634a951591c8bb4c3661565af2380245e51db'); +INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'df09864d7bc1603c14db2d0118d11b135b3ef57dbf00aece490f1a66b6f63a11'); +INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'085ae744048017ff5604f5df80b31492e40c2ea15120ebc37e8b9a19c03da1d7'); +INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'37404e473ad508d08f3ac0df32adeca07149455a676d8f6415d9c7b7e6082b23'); +INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','7bbd2e4a1be627b418209e1107163eeb04a9f567ad8885a881f8f8738324973a'); +INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','a677d8b47ae37ddaf66058ccfb038d9eca01ac3b291470a0d1463aae9a38cde3'); +INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','807048baea88ef11f693232bbcd8628166e1b02896a1714f22ba2d5ea5f4a8c7'); +INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'4c0c4967f7d4baa4e125fc010f444e2832f7f607dfb420f609fcb7debdfc3bbe'); +INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66cae2ad72897e37d7ed5ab7ae1aabb5b6efc0564af68b20282bfa42abb99e7f'); +INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'45d992c3142ba2d5180d63708db693e804149ed4f8b57aa43bfa4a29533ac294'); +INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0565c38c7a3c8d56b71e7e12f5615085c709c6b9f7df56926728f5ac22b7ec0e'); +INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','94a3f0e66b199ff0b516af7dbd8e58cff5b1970e07eb12e81043715e12a31ac8'); +INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4e9c313b0951fceecc6d2a1996ce9826b7b283e7e098f03de956a6bf8edfbbb8'); +INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4dbc8c9a4e1fa046ab5f52167d5f8da704394b4d67e0f51187707395889f3f9c'); +INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','2d5ab3fe0473bce1563ccc75e22cf858642598c12163d227bde8229bed605822'); +INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','d0f4b9237a4e8f4cf1c1bcfe43067caa868ea11902a0e9ceaa70d750e56b92bf'); +INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','e1a9f17ac6cdf73b5c199f81825e3cedf247f89cfd75dd865b00c0fe3f2b15ac'); +INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','fb75210f8e8b7366fbc90be3458063658691852e9b7d00242590ec700f28d1ea'); +INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'c27b4af41012ddde47dd6a0858d0ac4ef033525372e968ed99fd88c0e05c4b4c'); +INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1000c49830c56a4c9b5722153907c8f32dbe63db60cbce758367d299aacdee0'); +INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'36caea7893ba863d7993673cc602c2a1229b7ede35a192935924c8bdd800d84f'); +INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9eaf497111c52b9ee116f2aa09b27c08847c5940b1e4fde8c2c7a6c001eaabe'); +INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'849c7f0e62e87f17b73b4ec552854fe7f94b867a1359b7abfe1a4eceff4aae43'); +INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4841734cd02ff5ca765f2aef75436371929df9bae21837873ae595e58f3e5af3'); +INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'0e484a3676e1e2b9618fbd6e673183f7ccdebeec47d436bdc2bbc8242af16660'); +INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a9e27f2607338d2232b2a94b5804de9b9e57641fc3f83b77ff365a11dd5fd6e'); +INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'7206b36633ba205a2dcae010d5153b73b32ed9b9079b1f0cd51905acd88fb5c2'); +INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc59f06fbc0b858f102661bdf80560b150f9d83ce64dba92519fcd659a1ce71'); +INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'a70b7e6ecbbfc3d4465532de5c2d45a232f9d1a6af7662fa898a4c96ae678bb9'); +INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a965e48b0ec09164c6f32ae8102bd87459308443bc91096ef21c92c9b3f1703b'); +INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'84dca6fd6e1885b5b0563d9ca0a86f26c44c14bc60e9a436f6aa231fe8c488e0'); +INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d85aff8a2f60a5ea0482be20b760cfcec9695cb7aab66f5d42a11b5fb87b74cc'); +INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'bbd7f3126c49f53ef8716ba16ef42d2b53412faf47543cdab441789a59152c37'); +INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1f8433f56668f8e997e1c89f4d97847ea8d0881b7500cf0a61930eff23ac88d'); +INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'cd13d66f5be846f79e83b9986751c832d5a2f153c9b93ad5324280592205c215'); +INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12fa4c0f3d5c7e631e2492dda31e2022b935acd15d835e7f02a3c1d2b9a8664'); +INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'d99b76f4e3ab727b19e5031a0a920a72d06c23cb6dd59d4a85553bf6dac39c46'); +INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e3fc64bcd798d0ece378a85c534ad26b00078c11c952819efcc5c72498efda4'); +INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'7137c1d6b79c82b57d2d5940025d25248a5fab44ac3f380687e0d35e46c2faee'); +INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fe99d2f6c9f780c656a169fdfff77972b1d7f2fbf87e4c5b6237fd2ce3023f7'); +INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'296b8c62c0f1707832fe0d10df75d10feae4c7a9726dc05ad944e756a761eb6a'); +INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bae69677402b686bb3c742caa6cfb6a1c17a49065edde8630f7be16cef11cf9'); +INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'3dd27a508c73b2a6a11e2b38d74f9da5928b6816ce622ae6c8dfd25ce654355b'); +INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5887016ca25b304216bcbc3cf885bb85c6be4f7ffe4675788eb91fbeb37b933'); +INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'c6bb67adfdd2374a7a72422a8bef60ed3291c9db6591217a54be704e86d7cdcf'); +INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d86b2bb6d620afb5cd2f972a0fd5eb58d2dce63ee75f7845a1adbcdcea4d0ee'); +INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'4ca7063a3981109476c1b8553724e376a8514fd84ab1f2ec3e9fe3cee90c0d39'); +INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40af5cf4479c3bb7304823ebeb4ecec3552e5e86fe4ddfcf41c39477c02bacdd'); +INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'7f90575af3cf09675853b84425653428f9f001535de467d9a446144fe01b3fe8'); +INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'981b6b3e5aa312535c687486d6d5b94e10d82d427a145c61d3e5bf784fc578b4'); +INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'49f50558df793ddb13bb3648d1c3343a1d92f1218f97775686f8fe544c312179'); +INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15ffbbe275fe1e72bbfa5212d874d4090f7f307146fecbd8161233e935cdba5'); +INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'359583eb964b07ea19ce4fcec7e2b4cb5c9b36736d12b07b2aeddc6fca8eed7b'); +INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2c001acbe50118ad0d412c4a01dca54690df860584dcc8aff2a0a19dad803a6'); +INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'0f479f616435a3a84558ae92fac0209feadac1ee5764154a786950dbd4ae26b9'); +INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d6681583df4b32f9eab33a6ca50e743be4027364b333d8af4b31f4419d0d4c'); +INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'5d6f1c795d453f450d290340f1b2c987d27c1e23366e4b8e9464bafe0217ec98'); +INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20474c93bdb9d471e15f5c67eef54df716f6213859b313720e765ed5758931c5'); +INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'4f1982c1ef9dbd6a5ee800f4bc544aa4c54fcfcc162ee8427621ce364b2a7b8f'); +INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e47266787ab75e2e7827451248d43c493e01b4ee541c2aaa06ae9a9fbb4f01'); +INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'65e45bdb60f7d914bbf86179d713a22bf9ef1c4996356234f653579f437a5539'); +INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52259f668e251b5e0bd33a5c5af04e2b4ee584d8e158655b9c4cf25eaac3d779'); +INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'0bd862eabe9b55c63e81aba1321b88246dcf4f85b35ce96faf437cbe6bf5c537'); +INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f60e63b1e915185790fcd0ac219902623d5f261162529950fdfe279f2e6f975'); +INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'81409fbeb48abd8081b7d54d66c440edd8cdf0724d96c6a78505731530497cd2'); +INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d98f8f2a8252ed0fd7a3ac19efdb9ffbd180afb16d28759a8c4d4ddccaf773'); +INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'09e1f178c6b57a78ab2c7b482a1393d3c95ae20eaae3d863cc9a582ef47f505e'); +INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b46ef2e4e5fa8be790470fef84602cab68528168218657575af71fb6dd88042b'); +INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'8e3e7f737fbba921d9107e2297c3370d9381d4f1a2d4cbe4a7d1e2bb1c04d54a'); +INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b380d8c3526f6423a05da82f691100422b50ee0236031bba9de380551dbb15b8'); +INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'48c504e25e2e54b092b1756cfdf955a723630352aaa3646946e51f706e77ed20'); +INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81410fc80e3a1aa2f9e10d7956869a0c918fb25c45bc2c65a7a800689529f774'); +INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'0d6a291794529fba6ae502d2ac95dddd9b700944beff971b4bc26a304eb5bcf3'); +INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae27194fceb3f4e7a9406a4507a5dca3fba6792782932814892cd84c8980682c'); +INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'d245b6a0f732edc22c4b146f52ac6aeda1ce1d7a81b71c2ba666395bccfc6867'); +INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8381c4b3bb472a763aa0adb44fc243ebfdb42808c62d870e380699a9a1608642'); +INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'71539d2f4aab4b2d1f05455b9b35de5d4b0d28e8aebf4f521ba4f0d72a9a336d'); +INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c57cd896284d0406ed37b0370ba9e2a93529b597a5f0dbf38f5a822ec3238d8'); +INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'8eb860043d3123b3803a935dfed78713c0adcdc0c1fb22c2d151bbcefef9d916'); +INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbfe04ade1d316e9e68520c02943699873ce4ae0a10d53ae838137c2dbc146e'); +INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'595100cbfc377fd31034201c2a5b8aee275c2bd25b51066b0702790e7beb346a'); +INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f910c8a8663d9f5acc39f18df4221f6b7a5c89f6b7b42a11b66cb49917d48d8f'); +INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'9dc557db6411ca43156d7eaf024f3ca26f7aa8f5c9f8891b4d0cc3de80b56c06'); +INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9379c2be6c3a85f49eed04d52c5ffb7683e53d6fbf2c82e14b92ce1480d4073'); +INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'7722385f3c6f9293789ad3644b457da51b581d578c9da9b6d8415a02610d6117'); +INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0904fae16291fd65f6cac082a1c0fdf39a7e054bb479ad388ea40ed2f7222f3'); +INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'09d4977466a8fde33cff7c71b08c0849a6f84356fc41cf983a8f57b56c31b3d4'); +INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66e3d408d9956be6e9af9068281bf70b77b7e96caa4d1a306d62cdcb4790b7b5'); +INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'62322fbfdd42166df9d24a615989c93b5ba5997da848e0d68853bb322941cf63'); +INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f130d08dadaac0373dfaf3519d73b73767260457c6c411b6f0522b324c5de23f'); +INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'e4f8d5c62b9611e8ae9439c2755185ed72d8caae4d0b8dbb351c971457fa115a'); +INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbdb2d78133f993c8c0dbdc7e6bae3d3b3914fb1cf929cbbaf74748510b87d6'); +INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'56b38c4d19ee44a84d657f706a63263be9f109d0950298c85adedf7e50671acb'); +INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb89657ef77add312ee7c61b725f9992dd900379e722659edc3b3e833981501'); +INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'2ad63ee548cbe138cfb0beee8ff0583ff1fc192597a30a7bf422cea7dddeb6b9'); +INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f2ed1e9de80531823e856d258a2f8239b7f556d3d1f9671540f421ee34b636a'); +INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'e64fa833c979be7c8f2bf2d610ea2ce43526b126c02d5d12e89a830a79563c41'); +INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aa2881516a432b0191650706f291cef2ba16dd5fabbd9098f8fda96390f1f32'); +INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'afe190cac7afbda4fe9f8b5aab7aa8a632920dc42cbcff763a876c0462b82a29'); +INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f90c3d869a58329efa7dceda5dba504bd32faffcbbec96d63bca63109fe705e'); +INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'ab67cb20be1b3e5f2410ce81613a87b722a6a4990a17965dbff4517e67acdf74'); +INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f397cc02462b6050af96bb03b1b69d2de30b2e42d46f35266579e9a9b44ca04e'); +INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'3b25d57df8a6f04fdd380fd45981a04c0d004723e1d438293a588a2b59cfcad5'); +INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05539c17ece6d3f692d93a3dee4f18ce2893e08916750c1ab9933a6bca5468ab'); +INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'72ae90d0e55fd96235e67a3167ed132198fde41ecb2aa5a5648fbe4031e135d4'); +INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ebe2916ab50075e3fc0df7ef42b65e4272d2d8e773118f708ed70369a1391f'); +INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'69a0cafbdc312952a622f45b097ad964e654b38b9460f0d6e15cb6bad3e3cd4b'); +INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a928b89ce4ae3429651d7bd5369ee5da765c5b8fef0edcf1bd4c19c36b01e3ce'); +INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'cec165e7024a5d9d2836d87c41b1df966c4cdf32d205998e28bdd05286eccc11'); +INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a23c3133179363242f29207442c6fd0bd98418358b9f5d855a8acc8ac41f0f8'); +INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'202c4c9ed85630b13a0060bcb4fd017d4ce82dad9177cafd61bf91aa7d7419cf'); +INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfc73daed01eb534ede8f27a9fa8b8a0b4e6b245f85cc2affc67ce43af0d8606'); +INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'529186a187c8f2aab6c1d284ddcdf6e294c1f440c1375088cbac73bf36c4e395'); +INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e92f80fdf5af68eb57e7b5d469a68ff417850c33d292debb5c92f2f0dec6697'); +INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'efcddaae124136b4a77d8bf69d4e9b693a9f4d4bf320b6bfaecbff34a99d50ae'); +INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77357ec2983f3eef3a28887fa76b96b93f91b5a3210ae0726cf3f5176736d007'); +INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'df0a0e7b3f2652269bf2f14aaebd226c9ab24598d52301f0df2702aa994a1426'); +INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7702baa50fbad13c99eaed5fe5354ea96a675d7a4c0529d2084e45a51a081d1c'); +INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'dacae719868f094c94024e225f9c862c12956417f7acb848df5f1a393d1cbb03'); +INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ec25c9f8067d6f2816217fa2176c16f42d6e3ac0e6f7409e26e0d2e30500f4'); +INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'b6868bb65925a761fe79692c4e6af332322f38e67d53771c3f46ee934684a3a4'); +INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20575c41f3a99717a24ead4ac9370aec34fd1b089f7b1536a11d3d1beca8c730'); +INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'6c9f25611381b5f18978c0a4fc15a5a7cca102305e321620ad8931d280e1a3d0'); +INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b6b3df78e59df842273a5b338d88c3f1a55d05b9f433296c3c233dc23e38fb'); +INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'29791ae3366bae7fac2588ec5eabfbe98f70fad6d07e23707d2615f93adbeb37'); +INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d8e9f0bf9e6fcf2a4bd5389bf4418d3ecd281675a14cfbb14cf4130699c63fa'); +INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'d9c69489b8844d744e1ac05f29455d02ed99178c25384d6f818d95bc5297f9da'); +INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'359b698b13674cb2807cb4d6705194140489b7f48dee53a9a3a234070d8332d4'); +INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'58117c05d614e52dff65c9d5da2162c1e2ff4152d482421a4c72cc07474bfdf9'); +INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'660ae9a67c9fcfaf2a4a5afabfbf58c407bf473e7e6f3370d139ce3b1145780c'); +INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'2c3fc175388964be7fb6342f8534eb636444e4f22cc808bd2036066480492caa'); +INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'291e230500a12c0160da86471d6006ba432d478211300a6f6684007423991a50'); +INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'4148c7b69aa9705ade7cfad347e04512da111d2df9705b1b8eb1d9439dd7302f'); +INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8e6b31c30b5d49c72c0cd1a249436d79803aae399f2f38a395385bbf08e70d'); +INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'00070dde52423ccfb0a2b65f156e339cf5ba4de5621116438c0ea69fd9c3fa24'); +INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6197cad69c4b876e3d3496e86fdd3487a50ebc0199bb10fbc6f45dd93d61cfa'); +INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'dc5c5761523e66e33ff17e79fa228f5374969b9674f4d00c151934cdc0cd3a08'); +INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89028edb7f7dc8a3356afed6f15561699f0f373fa6a8feb66ff932fe7989e78a'); +INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'8a5c3547d434663efdeb3eaaa3ec5d7c863624425ff24f93fa4c3b8062340563'); +INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2215f5cde6fcbdb283beb6ddedb6f0689de1316de8eb4fa607305e5ec1a21242'); +INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'702727c6ba49d2053912cb98b4c860d3f844e5df9f77a422e26b3b28440ce983'); +INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07f870a3327a80809efa6278958c0073deb33f2a00b896aa8d4ad25df1dc015e'); +INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'f6b776798bf6a39a19dd7c642c1967a67c081ca832d91d7f3d13265963638e5f'); +INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7e368a23cb6236cc68714a7a94731bfb18a8e9877faf60082f0ec7da3437d6d'); +INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'ad45a35f3ca7cd77dc14f947b803bd6216340cabb2693887e28e727589dd4163'); +INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'364b20f124cad4db2b42698b1555961a95a0e13db750829da5a7461097d8eb94'); +INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'73477770792b773b73e11391e8b42cb6a9aba7476327889a2f0d96012f4f04b9'); +INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f8aa4195ef8a868c836c30d813f2619b19388406edfeaab0efcc9a1f4960f66'); +INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'65e89890a346f210de477c58092d18e5ce321d6f42b93234cdbef736ee1d20ab'); +INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0eeb158ba7a8012c787d9a84231799ad347e740de45c25a445110f0382dbb031'); +INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'f0eaa5bff3dba66243daf8e3f4760e5be2c1f5333622ad421a3b055e6b4feaba'); +INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1e241a3bafbf8f4b8e3762c95a3c89d6d4e4b366ddb4d01bdda69bfb4f6c697'); +INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'50b0b4f9dc9682f97b3fb1937c57d50cc9380e1473df99f991b76fd35eb4f6b5'); +INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a10dc3859ea15c23653d3c14364f3ca88d6127a2fac601d26ba11f553c2f21a'); +INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'ff6ab06d496200885ae621306331404d22292bca75b2d59a9832d3a154b711c8'); +INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7ee71f7537580b13d9178cf85e6b18b5ec767fde7c3314c5944e4c9e6bca2d2'); +INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'49666868904c174b8069ae8db42f47478ea7d61c6ba0c7dabc20fecdb9ae0033'); +INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dec89958bf298766ae474a9ba4f4c8e62354c22e94dd4bf23fa30ff25abf01d'); +INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'b9b45c033282817968d016f74671c3b018d04e2d24a5d3f77b1602b312bbcf9b'); +INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7a03fddb167b9e8ff0f5b66d4a84f197ae1b3e467940fd08169a8791ad94210'); +INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'10f9837dc304db44c0b67272b34d1ed7b62a44cb9d6835a87e868c2b8070069f'); +INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88e5afe9a0c779d1ac92d89bcd539ad62d47baf1f58515b43ca736fb4aad754b'); +INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'876ca8cc04d633add65fd0a09961e323b65c13931cd685e859baebc42ba148ac'); +INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8166c704f4e12092f3882e541e40c0b5986d1ebde72bcaba5144bbef4068e132'); +INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'6aea24f9c70d80acdbc54e8e7dca670489e8c3e6c10aa8d6bc1424bae18b8d95'); +INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dfc8bfc108e9a4e28272a38d1dd1966db19acab6b107e209894aaaf04129866'); +INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'74743fce296e373bdab3a853c818bb5dc8f88d12ca3acacbb1ce28e8c461a306'); +INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9fe6f20eb864a6bb75826b20341efb978b06d4aeebba20e8d7c3dbe0492af42'); +INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'a288ab21f901fb5532cf78210fbad9e2dbd68ff6f2170ee07e4c5a38ce751805'); +INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48da4516187d5153214d32d507ac814c634c4a4a750ddd45302707c5c5df734'); +INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'57e955fe62c97f03084b36cfba4e2768f893b961324733139484849d08f94400'); +INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9817a796616aa6a9a362b8a742cd18d4ccc9e94248aa33c70254e596269cb414'); +INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'b0d4f400bd71c25f26761dd27d58d5b7930658567e6e42e8a1c93bb1cf1e8afd'); +INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e4cd9164e92b8355725e690455d8703e239032c84084df6b71e1ef58991d58'); +INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'c70110eba2d2251decdd1c50461c75815dc751405622e27800501fdd770b82c0'); +INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'907842e4ccf6ab3df3ae4f2d213c4eeda42aa13911dd6de89e548bc1cc1fcdad'); +INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'996079984b3466e390d59593134abfe034b88001e8ccc9d2823c0ea27e9980cd'); +INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7490ca004542ac98e510ce44cb93ae3d3de42784608f9b136303a3f3da855a4'); +INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'4cd9d16ed067802f5cff819eddd667c29054084d79416471e5c06cd884028030'); +INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dcb2b1266a2e1fda63bf2315a2e1f5e50d2f51a6aea5de42b1839e2e3777833'); +INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'1797476f29279d131e738dd0443e98ab1befb06b55dfe520bdd9cb1b55757c5c'); +INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','7ef4293e04c229fcf8c15d3a65cdf0cbb7e9e1b5b0d6f4d9acf32783c5cbce90'); +INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','bd92db187866f48e800a2919ea98214d7e884eb48ab9edb79624c5dc9c956972'); +INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','faab4057d591da0fd3c4768a54d33f31db7461685738ac706dd78416c187841c'); +INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'755c08f8c073ee0bef05ba38377e77c06ebea116e5ecf37b47431bf9704386fd'); +INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378b5cc739d915e8f9e5dea03870e3062d6414a0095e8cfa9a439719d0c163a5'); +INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'85b33acee03db333fe95611ddda44ccb3efb32d72fc1223fd19719b8e1f57077'); +INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8366d982fa2e95e6ec3d639a5f08ccb0e3b274a37bd337688c00d16155a91701'); +INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','70a938086b0932bf79d26f5fa689bf67fc1b95387f3e69495be382ff7b9520c0'); +INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','e0bcbba28bf3009ddf0fb5e4319546bf330eea7873be97329bdf85aff992cd1f'); +INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','f745266d88d1c462a96d9efe1a84c6cb9ef1ea19d360afd21f1ab0cc572ff208'); +INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8eaeb45415744a112e870976aa49c10efaff45b81874a1b9e00a5c3677b76c1f'); +INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','928667d286cd267cd1d7d1f20d50eed5dff2f9b2bb8dae2d38a9203712f802a0'); +INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8b6180af59e1a5d67c2bf4995aa72598e6f35bf30477a159956931ebe11da85a'); +INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'f54f3b56a09a34b74055898b1e55bdc87fb23f67becdf3c8f3c6451f471f4944'); +INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b93aa38280fd68f6ac92768284a5818cc4258ef78623ea68622f4cd22b089b3f'); +INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'4209b94ff3279be5c409082354b91c30d3e16cda4d6d3a4b9f6911a63df76b12'); +INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','fc465bda3f5f7a55edbc8c76e81543abf7230e7ec0e558c8b57998766f310f59'); +INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','292703416469914579a59ce755ef4f017453a116d7100166f7be26529dd029c6'); +INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'ffb7898a1bb4dfabde83b8827b3c1b64eb50e580b6d94935c370670d892c81db'); +INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a2a05e2f9b8f36659e4487a644f69b069f226fa35c556554f75a95ba238929a'); +INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'9d9a20ae49061eb65d815ff080d56eba6c6cd02f66083212a41738f7a0bdffc5'); +INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','c99213dc7003935b5c5a1ad5a405f71574202c632ad8a3cab395600f76588786'); +INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','6d3a13571ece3daa9638a8183393bc0c51dafd5e9b6775814f53aa71966588d1'); +INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'6f46c9eb4aa28a5955f1ae194bfab2b17b264c642051395363e039fb9c4107ec'); +INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3aaca280c6f57e0607b0f9a0e658904b42a1c8b913ea6f5961c63f15cdb12acf'); +INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'1524d32918b43fc7a287c03bc164e4e1f08647e3e6b66e9debb6c484d8379bb9'); +INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','9a49ee4a72e99e8f557de52b140935694ca04ec65675752de3b001861f3b4dc6'); +INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','5fcdd2ce595da97edcf0c122a2ca10820b186adddd98bccde12e2a16142eb675'); +INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'3f8803338870d2d2472b3977fb32a2325e370435b247a84288becc09fef133d2'); +INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'debdcf0eaa10a5a828598146289413f6aa41e6f4a390520fc10e916fa0d7dace'); +INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'2135c16b8e25faf8d03014944f4a22a37245c4ef5570dbe1e2fbe1d8e92a86e2'); +INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','13bc9d8902c0d176680d5443aeb684b764694ded5efad2ec5094c8e3918178e3'); +INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','ec9372f9c1fe239136c0e8ac8c697e37a3cf398007543ef2067e26af8d47a391'); +INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'e83ecfa39dbce369c0d5669f27422531ba7883b0d7dc551e859d1bc9dcf15f9f'); +INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7db307cd3fb1acce1fa7deb7fec31c13facd7610577694f000d9c303ac83e23a'); +INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'15cbc5acb8478193ea293d893200ef1852038917f644269f0842d94c96907fdf'); +INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','901f1007e365665d46197b696f5914c57fc9f3ffb85ad72bde71539e7cd9efe6'); +INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','92fc5fa9466255b03e6ec3498efc2760d7c12461a9760fca9cec6408e03eca9e'); +INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','98e7ccc71427873d6483bcad9d4a19e826b0498040632f82596a96a55875a8ce'); +INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'86fb01e792d29a4299f4e56171d0e61991a189960bbc4f7adc0888d726d2bfac'); +INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b00625027ceef378a4920e894de40d5350cdc431feb31e9742866aac20eb500d'); +INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'68d10f0c9e0ed7192b1debc1eeb09fe8a42cff2a2b212ab199a7d56cb2b41dc3'); +INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3cb4871299bf6c401068b24f2ba51a64b562bf45a872f3b7c89ba6ddc9eb5903'); +INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3afd608d04818201da2c40add505aefa84d593f9bdd90bdfb1c65fa143d9f814'); +INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'3ce623ad399fe63886f091cd6aea29f051d43586d3c4340a0e2a68f0dbe6f353'); +INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a579bce2495c1587c0f43a4ca6c61997aaa34f3bb7a39260035420af7f30dc89'); +INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'8fc96291a6d666b09bc28384dfc6954910ef37e4101f0fdeb24e9dda8ffb4a30'); +INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','165d7691c7f3a6e5c3b556a367ae348b372e0186aafd536721c0fea2a0a65d25'); +INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','6f3a852067bcad12bf284b148d75a5da1f1e2bd4425a2a6e46b54b4b1b350e3c'); +INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','3767aaf5c1053af6c50909977e1a3056ad0428c3ea49dcaa8e24045ea39a3fdf'); +INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4905818a23aa3080f0c0055d0a422a742580865e4dd8c53ce2085c54c0a31ac0'); +INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4994524f7686072075a08239edc40c65305b602dc89c54d5c66b69dabd92689a'); +INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'c8983eeb48b9abf32aa2c52413fcb306966e98e3a39ae9dfc11c39b6bdd8dc6a'); +INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eea1544474e9cc0401ec357de123d9dd2ba8422819a9c0daefa4ed8ba5f987cf'); +INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'e25ccbaab8346c4787d384134dd0d19f4c69a890736b056e47c8396d928f59c3'); +INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','44ffb08d3e01384f316c88e67395c780adfd165cddac7ba855db970137a31fb3'); +INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','d6b755767564eb90e1eabb88471e51c744747624d3a1cf286de970556effda03'); +INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','fd4c5fa3359820ba69208178754789546aff07dd6b35aa61704ae06ef5804b69'); +INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','eb4f17f990ec32ba907fc95aa3043657f3381365d47ffc94c599a1d7bfbab844'); +INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'52369cd36f600d9a5299fc69b9c15746749a46f3394e8b7fcbb0c22b5936161b'); +INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77389ee6ebaeed790bd1aa40bd7a394c5141e8cf4de3556037ea2b76683d8ec'); +INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'71c8232391018b3911c82c739516466aca7a157dd3d23a2607b67f9eed6458a7'); +INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','c2882a4a6235a89a05b6cade2eea250b130bdb813381062b2b9ea4112b588fb8'); +INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','707660880324c28d35a43d805ad91dbfd7abcb70cd01f0a0743b639bab973f7f'); +INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'ae8925347c72ce2187508fad189adbd29fa98dadfd1ad9a7f5f50cc64e020dac'); +INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0824df62aeca851a1f0a98c8069ece41602d11891483dfe49592bf89938b6ed5'); +INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'f4f4102129ca9055eeb4eac616325c6f7f28e86c5a34e6ee57a5f9fb44635128'); +INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','f541d35806f2ef3002df9dd9d6bc02b5a1c669e9f1d7375266906b93e58a9270'); +INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','25fa47732ec33afb2b993b56fe4019f0b175efa91cf113b57bfec36f93e8d4cd'); +INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','81d69399eb3c6c4e515c7bbb12330eaee3798f7a9e7fce7a18ff0c19000b1102'); +INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'aec5bf6ebd0fbb7841b98fe202e492fe02c10e41b6945fcfdf45fdf567bf918c'); +INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9b386eb5fed9b4ebb2cfd8bdf5276bb92a9e233d68f6402e3ed98efcaa344f3'); +INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'375de8fa0b00fe22dcc473147d42fda87c8107fec0ec83e829bbc32f8a8af8bb'); +INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','d788d6d8d6fb6c0d4cec96c2b469fe690721069ca6122666c843683186ef0889'); +INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','f88828f544e93c774efc63e9ce1d612548192672d8293db8fed97c639726e01d'); +INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','65596607bf455061c65b0122c9f98b37ed832cd3f4164e9256c5f79fd3c462b4'); +INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9b2e7a969d5c28e9cce4af97cc877ce8671e71e9e9e55cebb9392115b3287a57'); +INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','6f0ef6f7eb1ea5a18f2a5ebe42c6583849ca97844e2ac04ea30a7656c4374a14'); +INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'5b359c5318cb8f14dcc4ab71981655f29c955cf11e101bcf10b515dfe4c4323b'); +INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91ed803de9dd01efd03ec238dfa63f2e8d53f2afc08a3f0af38ad2838607095'); +INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'277b23be2aa7eff1d4d30d700e5dc96fb8a99000a891919d63e2f5e907bceb1b'); +INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','03e618fcc039fad4d7a9214cfdad39924dac56ed620f65e334539e940f9ecc9e'); +INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','023da103e3b90731c942c37d01c20edd415b708a4dc36c53855af2b66a39107b'); +INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','ae6ecfc83d6e539ad370e913b138ee0185234cae8ad57eb3f2f33c5188ea6e35'); +INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'854c5467e8dbe45e3831b7db1060b48c9e2669ed7d41e7a9b9bf154ccc992d33'); +INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c67db4f5bded4fcd5e1d9ad8ac81c072540a81dcce35942f85af6553fed019b'); +INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'0c6eb16abb07cbd42a503a2410e1a2a2bfff8a5d62137f685cddfc05815a15f2'); +INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','d50d0c6813fcba1ee89d25eae262e404e6e1deefe4cb2134bd5bf3e0b2f2eff4'); +INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','a2535331cabddf376d73bd0d8697386fd129199116dd7b158d5ceac055d89a7c'); +INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','f651484a2023bfe23cb4081a94dc2825cc4c041d4daeebcde4539ab49eb19090'); +INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'3bb8c98103478cd047d0ca5c6ac53dbe53f7b629d08d543dbb6595a2f4a1b540'); +INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2982522422ff54deb1261277b7fc18d361ab9e6809eb380f87f03fa96e9ba9d'); +INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'a4d4828200287527da38cd8f22c803788c24bc167cdcdfc582c3d311d290f982'); +INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','8fa6894de2473c1c23acdcba9e2f672415a5444274eb154c2c3b3e9dbebb89f1'); +INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','f24a98e7f408b399f6c3117c685742cefad07fb19869b0b0959e6ed78381d352'); +INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'82818680a2a719f5ad2350eb5723b43a5e533e532ac705722fe943d1ae6d1ce2'); +INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f3f1baf881e37b1d365e3a80d54ab86af25e82fc9f29f217728c0e98b2432c9'); +INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'c728ebf82360fff2ce3550374495e67fc8e3427f340691c5a8b2b0daed505b91'); +INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe8165314fb996a70b238de73bec6f8e8569f1f867c1bc16f8e6cd9035927856'); +INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f53f8cf31ac2e0e41f80681339b4f2fb4c7b39c190b448cfa655da6e10818aae'); +INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea8ffb435df42363a495444eb533e9016e400a76b1aad8b40ed4a5dc52bb4984'); +INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'967b220e8d33272ec10a2c0adf2e57451a2488ccfaf455b33173163d29535107'); +INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12ad1fb6e31eea51f2263e5a973791aea1e45196153e2ddfb37ea032cb2986c7'); +INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'94d032b1876ea96c246ef2b1a9aa2c4fd6d5c565fcc75609ff605c5ed72fa1a9'); +INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573a663e98a5e5ea47cdb7e242d31c7044ba90e0fadee59c331680c1319c4be8'); +INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'a1127e8ce16d3a86b90b42d1604bc7a6dc71493a05ffa07ffd703c40b5dc909d'); +INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cba2f1d184d35badfcb353c34e9dd0398a4ab0b1eed9daf8710da842433091ac'); +INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'ff0adc6279322a0a10e634683882b470e479f21b23d312f0e9dd8551e93f37e1'); +INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cbd75cac3035eb8589cd793d8bb6e25c02364eb86059b5e2b06545ea3758c2d'); +INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'4a19e14e08d39a22aa296e77a7d0d0985c9996962ac3328aeb180968ab3c046c'); +INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c7af017119bb61fa04a66225625cc37ccd33984a4873664a821b960731fcdca'); +INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'7ab468172234e65fd20e02e27078deaedcec3bef72acca76fc0530618ebae9fc'); +INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3a65a5acd8030d9cf055d10358ccf7d73bfb4a617a88181ff9870920cef538f'); +INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'fbf6488266c08636da0a9d4685b9ca781bbad71bbed8ca88bf0f0a49a73d2046'); +INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05feb8e3e2fb33ed0556f47a2b30bb3705d473ad3a7c30df69748310326a39e4'); +INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'11e5d50f6c44a81feda24e71f739f43620826cd80e11938bab5141a3dce5c072'); +INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a086f57f6556d16e93f9042f6a8dc172975bdedff47e10cd7ba56cc5b8ee6733'); +INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'36ba2f74d2c318136364ea89e6573ec7723cae92ef11de90bbae6879056038dc'); +INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91fbcd0a51dd13a5d9815f54c1dd0a05d042725a3312f4a475874dacc0436b0'); +INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'3b452379a67cb0b9d5272601c9d2f7298e02308e12151c8e91c5c2b2cd44b7ee'); +INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d49cc89b9e9c4cafdb9fc5f5382cefbecd86280d2286c6851fb3d3288d1b916'); +INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'eb41a39ac2ade8af0f5aded29cc2e3ae8bbcd8592b722f03fb5f3fa7e2019976'); +INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc3261c9a4e36d0fba139331ef6b65c785639270240a038df17fa5792017ef2'); +INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'b441b13aea73ceb3b7729d3fa35ee768262181fe3fbfda95871f3d99a7112301'); +INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e9cece7e4212509c652c59efef704a0a78fde345e310f44385fddc8ce93f7f'); +INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'ab137518ed227988515f5c42a8850f9e0c169abcd2d3cbcbdd63a824ed1075a7'); +INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37606fb761c4de8c6ebe56bfe2dd7136808dcc63839d38f25f4134574f5460a7'); +INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'d298e16c2c405889386ca1b973b9ca9a72952170c92c586b0ec722d2193519c2'); +INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1382d264290502dfc6601696b6ca21b64e6a69f295b7b77b32d90d4116e938a'); +INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'82e43c435526a17b145b2043a819e4a91dc8af0885e7ab7805d4f0beba61fb29'); +INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69f0f865c134f7a919fd802cbd24175b836324c71498a121385483faf00a5e13'); +INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'5ab10e7e1a3be743f66356f08c7e6ba227054e4e17cd2fa8c820ad829e8a4d14'); +INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a35d919f98e9a5f572dfa3e403f3cb6bd79e6d9e00a409ee85d644599a0461'); +INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'99ef7d389743b7bf9f899b6af1255117b07517ddcbd7133eb71fb0b08df74454'); +INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0e43c732de2ccbdfd74565295ee0c6d51c0a62424d1cee5e15bd81270e63b08'); +INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'75036f16c8f6f6f67168bc2589a8d7dcda22cb6ce1830571ea7fabbd4e73f280'); +INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86aa2836913d0a6c22a1ce4ee106d81f73c0729d907e054abb53b90e00794eb9'); +INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'3131a595eb85c20a3b4f448ddb53fdddac76f0b1ca8accaec21a731f8c971fda'); +INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a0f9d6794421f8801e77dae04c9ed6b4b5e77f5f6648f46c20ec4476c4bb5a'); +INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'e342e5a4f8f9664ea0fd8137960d1ca24257e1c70131a314f4fb1d58a8775feb'); +INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c9c5f96a1584c4110572124780ad936dd15ed690be5c3e6a491a8b6f4c2ec86'); +INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'b22c2d762cbfeba4dc4c3b890c15433706b6685c5af3d5fa02c960fa20c211ab'); +INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98f12bad5e44c9734c2478a9ad2eaaefbaf5235e126156cec82cb82412361626'); +INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'20393c51a2f1574d06266d88d91368f74f461d38ceeef86189e5bfb63086ed2f'); +INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f06542c088a23be38eac07d259a0edf387740f7adb4e33666249181e7310c6'); +INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1400654573ef1cdf3d0478dd8086c016662b04a0802469c37eb5a4b99a74e8e3'); +INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66b42e083a4eaa208cfe7e8718477146ab4ef857cfa98929ea2045e94bed54'); +INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'d359de69f32c2171c4f5270ddfe7d9dd6e4793ac0ec36e62ae18ca8a9d021519'); +INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28158649fd4ee92a98fd6e7568e955d1fe882612c3a410a4ba463152c7cf5bdc'); +INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'ee46782180d1b0655556cddf4862f5f46715c001778e767e66832082b9bd7fc9'); +INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72556d0087f178ec8f35e95c16f5c13439847c29e4fbab9d6453713ac5d7dec4'); +INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'a79e91257bf7375c69eeb7600bb0fa566adb5d275fa35acbc99b96e3f2fd2c10'); +INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4fe3ea3ce0c28937db14c22dbf37db9ab84733f4c19b4ab345c248b3589ab0b'); +INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'fae80b84d40c293f48ecd70a079124da4dff8823de86a816bdaa07d6f476da28'); +INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0636da226180f12fc793b2391c160637aacd1617c6b4b5141180f7120c2165b'); +INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'f9d57973ddd7c15af05188f33715333b6595d5d9b31cee9c1d81033b30f57e69'); +INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbb8f58abe20c7849a6384a9db97d50bf53cdb4eed6a27914af74313b2c4d48a'); +INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'90253b19a0e9abd44c6cf8778266159aa7e7e8dec2d6ef9ee65ab7fca59de655'); +INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7afeb97ac06a1e2be7e6f49104024998094061d397a35ce06e2aa33ccca9d5b1'); +INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'a02fec56e0063700fc49625efe22cc83e12e1d4510ac3167a16e1d0942551fca'); +INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c7832162901f3a22061e350545bc93a3e3d4297dc48f6e73c0156cebac65db6'); +INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'e0b01a0576325d4a99e481a4695af4cf2f5cd18c96c14938f49403cfeb3f2935'); +INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'650574583d0902a9aa8924f926b05d51734b7fc6348499719e8d4b97b0a293d5'); +INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'4376cacc6d17e7d2d70fd5997fd7c7f2217a5ed73561143d350b0581c2305907'); +INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487d1b683e55df5698c7fc8ba8fb91f9cc15abecec01a8883e24bdee022485a1'); +INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'9f1c95065c3971316d7addc5a3dfd3d316a0e66e3d04c16fc3ee01271d61d98c'); +INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ec7cf77e86a0c9c790ac7094cdb6a2d503e71d48618ee60b4adb3d969072fb0'); +INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'e9d3fd2253f3b17dee6231d026dcd67f01d6eb0a75ba23d84a98cf735cdb3c2c'); +INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8994dc295ebf7ff80406aa0811fcbb7662a2007398013b402b44e572b2553930'); +INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'180080c903e6ad9020a78795184ccf98a965e82067538e2d68560ba492fcbfe7'); +INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18009bbc736a99445304d2e9e5d112d5cf195c29f09320ea0cd612a451fedc0'); +INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'2bba4d4eaa5976bdc2d137852f6dac3dd86d623dcc766954572297ed9485e568'); +INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d19c589bdba8f6744b405a9f603bdea811dbfb677f49ca88ebdd1767982896c9'); +INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'ca46df8e5760443519f2d63bcef13ee8dac1b8ce6ed2116511b27e35b284d189'); +INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cad4a273446176c1457317364b02b4580607c5a413576b567507b897e11915c'); +INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'6e97526872ffafecdd95e0cd210586e014f0693975d0dd09ffbb21f8e8a43ca4'); +INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ff3dbe77fcc4845dbf6b63ef7afd1b997ccd821d572d4d4c4cae56aba50f94'); +INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'a3c577d8e21a599382a251570f12847a57c3f5eccc5014238f11ed054efac25d'); +INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb34197d8a5562ea8af64d726039cb664efa1dfda08dca84c88530bbadaf4b67'); +INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'0491954756a4896fb8435326e224810fc784b0b3a29d41ffdecdf700158c7656'); +INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cc4592a0eda6c645d6b7e86cbe71b61a476d2a9996128409d8430aeca7018'); +INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'ad6216d005b12d158dd7134b06762cdbb9788a8c7003b5fe1c4616ed7f6c4fab'); +INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d62fad9025087092a2f049d133ce3432e8dede275842d20c9c0ae5153a84662f'); +INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'c215b125d23ea423152e85bd116c4684d89c77b14a09c7bf03d040c45b8c39a2'); +INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9106b0f2672a3e8142072f77b07cf8275d2812d44a195a0f9e8b0a4e20092963'); +INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'8cd92828b22a5922ef49894cc4ca65922b292e47ec4d4f07fcab23b00a3de771'); +INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20adf24ad75b708dfacc3ffb1ad5805f94750f2f4f2122d788c9c781ca6e0d18'); +INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'0c6b930c818909a2ba99263e36ef0a8d6960927c5b69c016e9faaac52b6eb5d5'); +INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47cbded5048b6f0ad625a57f525da2a323cb0dcb551f113ba7cd719a02e800c9'); +INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'7bbaa0b70f34ce6ae6a6a467e201f8e7df7e1fcd0dc295485e638e7e3c8c52e0'); +INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'083387f76a4e0e272a1e7646fa74376fdc409a1b263bcb8dffd917be0046bc3b'); +INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'772ecfccbe152c815393a5ad0329ec3a9760deea442cc41a5ab85f861e3b06ab'); +INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'403c148e181c6bc1c84ba45712c0845e6f77ddb5461ef7308651d9a51cfae994'); +INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'c7a50eb2f6783a5988681c33a26f3e0554b4218fdd0bb05d64076d2b224ed216'); +INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2335012db7033042044422c7ab4a697eef6258a3790fa530db27f795c5d4109d'); +INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'6c19cebbfa7202678a9cda97c53811668e7bfb4c251e143eb2be6606009e78d8'); +INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3d810e5bafa7ec782525812a89e231dfb8a457776005c561661d37924f2c6f3'); +INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'3340ea49b5cdc21957b491e2b36b8c9d7e5d0aed7333ac3e4a6051c74dd3adf8'); +INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa94a4ee2ef996d04ae85acd007880f3a97b83d07acd68b6170563ac5e4ac6b'); +INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'da5c6f9ff3a813045d08cc5915fbd041440577558bd7db001c8dea1c5f3e0146'); +INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3728e9af327365853f4ca6297ae69b72755d7978c5de2156f2b70d36181ede4f'); +INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'2a48f3c849a3d54159088ebe1d6b90d5474372c90af18df2cfb826e8223819be'); +INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a10e5e642f8eb035e420bef79a5fd3c8bd9f8a6f3dc9e64cd607d9a4ac47c350'); +INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'b880aa065219a962deaa77646882ecbf5137853ab6d2b5534bea1ac94a428fd9'); +INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4450c9bcf4322cd3882c2b6f295796d0ff9a597c2a99b0a04632b1e73cf08e1b'); +INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'1887c571d32ca88e4e062a8f3230362628ed3e58e37f8d195c539d57902de8a0'); +INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1835a12582e759b6f3f6c079d88cad41c6d28fad33235b3d8388dcf7286239c3'); +INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'68643dee09a94224018c39820c6bc78a2af43616fe3d26a5b26342273b935db0'); +INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e19c53441ed4157427bd33b16bc511e49a1bed79b67a8df4a1afa30c4ed612c'); +INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'1cb24dc971f7d7c6d384663421fcf4d0ed7b2b8aa1e5494526208b0435352f4b'); +INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23a457ef8eafb8a9c0863f560d682d8d5516382b927c10798bcdb8d1d0ae79e8'); +INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'18c5f97a82d17c41f34156e9cea407ab31af2792a1f435b3414f9b6db2f2ff09'); +INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ace4b28b2d07559217a2f613313797c799476cf1c319f042e8ee89a725c141'); +INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'92b5030891960e1a494fdf9c09b4eec30312b5f416ce031c3fb453e6605160ee'); +INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5762cbb84fdfe7187afdcd979ca8bfd08280c71df343f2b0ca2906ac221cb374'); +INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'6a4dcad785432d4724bd705155044381fdbf87ad830ea6bc0209f1c5df0a3c12'); +INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b31c6144ee4bcbe91129b7dbb3f0a003cf89c120bf8f1e5ed6492c94d8928fd2'); +INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'10a471d85d8028dc701874bb0efcf4617754b7ca57caeed8109ee58736108f0a'); +INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7c530887658fb91662e645aa831168579ff496a3194e07617c449c9751aff0d'); +INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'1ac86d2f2a7c16a712be98866d861b9ff5b01a370ee4b171141cf79c9394cf8b'); +INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a07c3c131eacbb72bbe4ff9c19292758d42374312a3f12cf79ae81112db5b3ec'); +INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'b635d1e54a6d85890544053d01ba78c818764624d12a7d72a41c672fcc2aef20'); +INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70f8153bfc4e461b861e9cb048207f86658daa900c6f8da4ed4fe5142f2ca8ba'); +INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'59fdadb237d345524f2041079b127767f4399d8c09926b83d8935a6a2e7b5680'); +INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47eb2f2596b0c4eee716559562892e490b25dcf97ed66195874ab4093ef4b92'); +INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'a512c275391cbf2fd2c2f2b189b38da8d1ec6c4485a2025bbe794cffafe2b0f6'); +INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69d6ce1e8205b636532acfedef5c550a998d469d4f8999a86679d51835c8ad4c'); +INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'825819f4ae6267e6418882e7a77bda096d699e2ef0ea3dce3c2f89ce46b9432d'); +INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'402a3c3944f929608870b877fc18a2cf712c27794dcae3c13499237f39a5ebe8'); +INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'326dd0a8153333d05c96ab3f68145d25d53b24e6bcb78356d8753cb691c4049b'); +INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d77bbca99669707a2c5cbfb14249d44e0ce966f55881e059ff5e2d6729818c33'); +INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'75a7f9e2bd9fd2528516207b4d143e70b9e0b0968dcdb291f17d336181da97d0'); +INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31677d891f89919b46e372556d27ffb8b649abe8c10673b67a71159e35b5b436'); +INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'5190cbc9a186bb31733f2d6f15f6253195db05fcff85d3774e3bf970d6c29136'); +INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1634d7cdf391dd588fdfe40953e035580657c4202235ef564fb0068e930ee07b'); +INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'883e167b2ae58b9978759abe8861be6169ac7f893c379aa1162d5b9196b1809b'); +INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab1e2bde29f09bac71c95fc1e906e6faa4299e7bedb2c34746276be91edfcd15'); +INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'58cacba23006f3a361beab0435468b676523689b7991b66ae24c134e2b78c172'); +INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5589eaea13d7b3e6ca8e6f6c3d19154e01603c6c0003910eca8d0a9a810940c'); +INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'5f5cd2ec8519d7d0561d9634e6f56a1fd39d4070fdeac4ba907bd02fda62db3e'); +INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597c16d10234d83d4e6f328a4ae3bad3441a4555bd1f158a0ef305b3e2d58f5a'); +INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'5548be9935807dda0bc96be7dcbf3171a52c6d732a1cf0c45ae9cf8440e59e6a'); +INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9431c0899f3ae4308819f83e1a9ade0f18d451912257a54830a39d0b430aedc4'); +INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'8b7d49a16b73564a22065d89ee858bc775dcd7dd93c48caffb5a01083c74f3d6'); +INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f366c570bd6f32d93102981d706568b0633244d3200d2a0fe666e0ade79e6fa'); +INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'bf4196a163337baf0b900336f56e56a1da928adf69242a26f20a0dc38e674ae0'); +INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20e6d2c049e2f14859230c5e3fc1d6ec62c97d2e02a9212ba55c3b726f54ff4a'); +INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'87c0488feb49becef95b2b5f89adf1bd82880b7edbf545dbf3a583bf034a16d6'); +INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74659b8924ad2e4d4e048e73241851d387f93f17f31fd2c247b48309637db4da'); +INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'42d8fe5f14affb0eea08a1e084fc3feb0d8c87348d311ef6fc65e6a2ca487361'); +INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c24cdf16acc72ae6b33351a6d7ed3b1bc232f716d9124d76d7a22c98bc8152d'); +INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'9d4bf33fe7dac31b2304421294f84a9e9956861273676258a0233836dedfda71'); +INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc51c44eca228a4703343298c9d2fcea69dc759451e5179e1bfa23d71bd56404'); +INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'dfe31f68f0a5912fa8de96452f93edad0b986a69036dd39cd36f86c0c4016e76'); +INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86115f2a521f783dcb6c831db8e715328651feb1d5a2564bcf1c11c7fe3c608b'); +INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'57651b5123d23d367cdf51a0e9fdd5897517cf76f1895e4a7846286e46fce31f'); +INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee8ba445dd321ed3e4d2ff79a57fff1749f0e761b9565661ac86659cca380f8'); +INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'252ac32cf228720bfa021bd181b1f2f7ac306082c0316e840a54f7c6c01d88c7'); +INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac59353bda8e4c0e6743c796cc07eb3eef0a303aad6e0174936d8c48e93bf86e'); +INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'c78c71a5bf7a2320cb6f2c4a7d83395ee5a0c809999cf46f3d8e95d5f92bbd85'); +INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0647fad362a751d61efd195a2ae0d166b1e0ada7b8b3c731beded76919d2d04b'); +INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'757c641891f5400ca737c4d2c0b47f9012e572a3243b8a999e6dc27ed8250300'); +INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90a5384fa361df5c389d62b6d79824015e9ddfd90a24905ff976e77b8aeddd85'); +INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'a8cf98080ef17e80a3efb7f1fc0eca2710642d50e015be3721ca18f8d783eee1'); +INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'432cce1aae2256fc502f40bff93a7f6b0bc66e0b3d62830e3aa52ae43c8a11b4'); +INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'55df58a9117ee925faf6cf7bfe1046586dd022903298272202502b260aadbda6'); +INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'719a5b83898a146ee7f8a78989635d844d9b02ac4ffe4d129b4fb25f79ac8f80'); +INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'2314f7f91db14e636c3a2ef207b8ca52e9eec50e39e2e458c90ed0458b9c3c03'); +INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48a8f837d08858e0cbf6b7ba04155656f53dc56c04253fe99b5b2518358e767d'); +INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'ebe03a531d1a0fdb16480f9ddf81f64cfb3ba9e62fa83c74a7d3cc80a4481e0c'); +INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbfb939ca449ec0aa9c4ea77ab3b293fe8559bf106e5d10de6295861ef8c15c3'); +INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'0913412fef141a63a1b89cecbf3f8e83135a31b53015ecd8ccdae626d289c4ee'); +INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25e90bd886aeca1d89983ecd7e1edc67beacbd6475543f7e469590f27233d39'); +INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'e31d692b9a12c13d94530691fb88d09e12018a8fbf488b4369ec35093a734963'); +INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43548ede4f4f2bbd478161c4460550a1e799f343c691365a9d67b03df92774b2'); +INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'b92dc64cc7f104bd977a3b018e4f814b94bd4a4fd7a6c937b1c97d81977b1efd'); +INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8345684786af1c33b56e370ee79534aefc4abf8fb6c907f17f65b1767148248d'); +INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'7d87a90e14c3d3fd38f049584dfafb4d5d6ccd7dadfbbc273f17c435985ab1d4'); +INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ffc8f685c4013b0050e34e6728b2458cf99c18029a00f5071c5fb52f83be75d'); +INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'518eb67d9830cb3dfbbb3889d30fda989547134016c45601c915784d7b71728e'); +INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e9cfaddae6ad6a67191ccd3fba2fd470945f4aaf79d8f9e5aac686d75460f17'); +INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'6217679754dc7bef13b9c8817a639670f10079483c211332d0230538e875f6e8'); +INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bdd985d94ec0aa64d038931ea98a715d3eeeafa7e1994c8192550113f779c0'); +INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'d2cdc8a7558fe9f8c72fdafde66681d9e4c6228052c5c06aa6838ac28cc32fc4'); +INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4788829ad2b7e3af0905cb24a46d392be4a4b9d2c899b2fc84adc88897878a58'); +INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'110d1902c9fb5ed76e35b359d3555c70c8d090b3d8342988688a6564c1bcc555'); +INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b51fdc00338b75460ea50ce86e74ff1f697654da77af3459348cde8853eebeb'); +INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'96f4ccde65ab834c5f39d29e264066ced3a2f150906f7128528e53474a6b0a8e'); +INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79f712fea9ea973590e317e65e0358384373791863fe2c4ff414429494f6647f'); +INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'57deb2e1a8c994d2140e111f91c8bbc1bdd107c969a7e31b15d2e46ab79475c4'); +INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1eb2e9d871ebd8b28bd593435ab7f583b805aac94cb021203ef3f851e8984137'); +INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'8d635bdf6efd47a4e5bb365d33bcf6337eba6544a9e6651cdb2ce39094207b74'); +INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f845e14c87267e2272e017690ae27cdcb0ee6b5662b859eea4d0e66f84143dd1'); +INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'c8500557508604064de750d03ab6c057a1e364a2b561867fbddea4a543e4762d'); +INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8dcf834d2d0060c024ab767db7cbedda55797a6f2236de8b9f148b5d10369da'); +INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'c9ffbd8488663a571992d2e7e7838f2edac618dd7b60cb19f8c57fe5a222f6a1'); +INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60a4e6553f75459f8eb56f4a9b1a3acbd1a1a99c2e9e2eeac4a0c24351144295'); +INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'574d54d46aa5cfb9fa5c7e53cdd8eeb4858ed0de26fb8324754fad25fb59bc8d'); +INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aca96b16f1777ca6d70f391aaef5b909dd19c72ca5871a3a19a6b7a55c8be52a'); +INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'7ffec4dfc9c7e53888e8187b753c4240a93ee9f3ede6c387a8c112805dbc75cd'); +INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc3668f34897d274bbf174fea35b2ecf2f8ca90668ac2aee511e7a38340d8c4d'); +INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'e87b2613d4fc2c709d373f5b080e7a6c2658b1e58b55728f21695b278666a073'); +INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c28304f8c2a21b57f33781493d08664baa749dcfcc21697437e0d6f8ecd6aef'); +INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'401f82295bf3a2ea75280903628b0b3c44eeb8a99d3ac258b9855cfa0deb1864'); +INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ef32a5dcb79a4852cba3765e6eb17a953d873704f7f67238992953b6ce5663'); +INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'e4b0996886cf51d4f49be8a22f6a401ccded53eba0a8632a72946c48af93f77e'); +INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'857ac60692fef44b58b321f194ad42a638161dd5b1b993815715c39a6d358ffd'); +INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'88bac24b63533ba64b0f1a0b72fd511b05af88e937a37e1b979ea8c8be186cf7'); +INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13deda8cea8eb084a5fd1980d15d06e55f5ce5de1cd211d5cc8f571d434dee06'); +INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'385ea2f7c789c89220fd28bb8ddde69fe3958719c5c3ffe668ace1c30c41736d'); +INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a1db8f8c462aa6f681d1262f4c91982f4c6c83ff4671b386b730e74ecd5a8b6'); +INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'3688153cf2533aebf0f775fa8c0aee8053384acb6a77b86ca32cacae710d45ce'); +INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dabb07a0432bb42e9ad1823f0804e86f73bdad6ce37e67718fdb1e4b856cfeb9'); +INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'0f417a54d86c653edede5a0f277495946584b38cc651bcb3d2ad18884ff9ce50'); +INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03e1f6889dadbfae6eeeabb911168beedb23b6cccbff4ce0eda3b398f8c2a145'); +INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'790fed3e2e68e0fef03d64a6b7745a5ad79c3ed2db6c2e9c9fa5e667f276f854'); +INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce20722e1fccced65fc6a9fa4e20893ee10cc6aa7158681faeda27cf96ce1c5c'); +INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'54a20cd29fc3edade37ad35e91fbb902292791bffd828050d1cd11bceb334eac'); +INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41217c2fb56f2fc7ed5e8eba19ff478c384b490e1dba4fa8cacedbeadfc2b198'); +INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'8d29427a9da803bedca8de529da5b9b90a780ba0b8409ceb2687b3650c46b727'); +INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bdba14052cd37203825b7bac135f52ad7e150b89da2057a3a518902ded346065'); +INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'184c45faf02909eb584e9d1fc57bbdc4e70e9e31a04b576c1aafdeff87bed78a'); +INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50a2d785ee64ba33ceae8c9a884914b29f88a0d1eeb679ca7e42a9c3d9c0e854'); +INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'10838cf8ea482e1ab7e126a4c59f5d567f6010ce1f5d575afb73bcb8c092010b'); +INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9209565129820bad76a9cf64a4d8caec9c9cb40bbf60afee03b904ab4e65ce4'); +INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'e28a8740eca26cf7003e5de30f5a929e32ec5b712d1ec1bbf1fcfe9c0a010648'); +INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48038fccc0a81c64ae0293fd496638bb7f36d286a3834494c73eebd5f4e634c7'); +INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'4b6f93f581631cc98ca1087c406d68444e275e5c42dd3b91a096c79e6670426d'); +INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c60f2ecc1ef6e070a03d36f4d286090d819927f27c9bfc5ad69ad40d363db48'); +INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'8129b6dc8298547e563cbcf84f334436283dbba4ff83f91fb3980121f484d4f2'); +INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'375241f9a4725502fab7b3b0ffe48300198f1b049a97e3fd926376f92d76932d'); +INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'3454705e5a76d1f581d3c7ed471b7ef3e939b62b7968687606254f1e577039dd'); +INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea25fa4f752cc01b9dc2186a2b9255e6ad079e1d1f6234118c149ba4d5011b4'); +INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'a05b06fd5ae3e257fe30d96db4c491f56657a686a08e3130517b5feaa038bfce'); +INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08eeea6f729789425e312ca904743bb096423fe9c0b46700318b22e13592b438'); +INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'6f83399cbe27b8c3ff7c30830abbea6ed3efd2414110ecbb171b06d2f05c42f9'); +INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed5db6371e4a45d59a6d6825e3fe8b84edc9c2392d3927c33c17fa0e924ea1f6'); +INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'2246d41144325360527beb1780e34c567e374fd9ea38fed5381821e5b56c2acd'); +INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd287d7fc8b3150632870d94edb32e8125e1760b7798ca315ad4e4e8ddc8bb7e'); +INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'a44f1024e78e4eb2f689a0c31f452dee4166df1356be90c994f7e9566d487334'); +INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044eba7e3a319df0c2c87e5a70d8dbc349f5776dd101f5d337fa515a9162f38'); +INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'4ef2317b4174a254c9b285b20afc2b69e12a24753b79738c5ed16cf51f0536e8'); +INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f8ecb676d71da6396249498cc678e620c522f968d2e63fd10d7b7f68a191f6'); +INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'b0279073d2aafe426768fecd19c86b2c9be0312d3559972c5a6e68c6e0c52239'); +INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fa1fb6423919317d5f8af45ab7fa80076e61e25357fb7294023ecc764c57e8'); +INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'62108be4dbc01e835f1758345d304a5ebe93c03ae1bd66d23338917d0011f9e2'); +INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a885d48dfca76735008e1c1a75806aa99cfb3f82123a8b0a9458db2a52b61b7'); +INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'3577eb9ac451b2026c5210361a046264aa3865d69044d001b3968bc6d67b075f'); +INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f6dfdb8ae2d5489c8e8e6ba5f030c143e497c4fcb287e93f396f4b3ad09242d'); +INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'dbe81b4c2ba98a9b7ef0a9b86d184c7b81c3cc4a4c935313481ef2fefd02849d'); +INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bfd0a84346aa799dce7a9353954d91a4c51fa619af28ddca2966ba38689d85'); +INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'d5e9985cd629894f5c7f714fe284a3cd1e014481148227f466797f7596fcbb2d'); +INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc9a939f5356d0cd2fd82c78fe4397b7c176c72a64f01d9bf85273bb92b0984'); +INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'2624cbb800b08b7588599118b867bfb390bfbe9b80309eb71c0c8333db57826f'); +INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c0587a6c4b1ab94e5da348d00dc54651dc46b9df9468dbc0d4f9e3b233ccb5e'); +INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'734c57ff239951864f1a2230e11a301ee1afbb9a2a4459788f45263be2f83e4a'); +INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03606220538fc36da3e7b471d1793ad7e6812b62690a05b4a26d051630d0a7e6'); +INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'ddfa2778c4f7092dc2ff0de610fd795199c9dbfbb7e87572b1423936ce0c8fe6'); +INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ccd4d5a86135e407149884f391738d5c465ffd433f5646a984cc03a7286ca5e'); +INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'f7f63b9e079232bdd2b6a6ad74a947d8666976702334e91410fdba387dbf663d'); +INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34c668dd5166017f051a324dadd67c68271eae5f3749b5347f78f5bc680d92ea'); +INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'fea626473879e0938ba3a5fb4ebc7c6a5c66c9a9d124d756070281eab6264250'); +INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94f8851cf6dbead80b11a00bd4c7cb58154f440ec19a3d86617ba27875c89bcc'); +INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'fe190da1c7c7d7659f8f235e20f5524c1a6f78330b4c41eeb8b3eae85afd967f'); +INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ce7e69c5ffb8b7b6c4b51201699d68273b6d085d611bada43d7572492fa3b75'); +INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'36b0bba5767a67e573e96bfb1a6c80833d252d2018e68f5e081e090806bbc16e'); +INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'801662ae0f533376965f648750b0c7ef42daeef78241cad02deaf13cba7fdad1'); +INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'f75a7c7121d4d2906644c8cdde99afe2e996a2cd764f4d4273ba4bf925f317ca'); +INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75e2a561b062c8cfda2947ddde58ea8f94553eb89c59e46f90eb749839fa6a5f'); +INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'cb0c4fd1d9642804acf161e5643809106b182f666a4f8ccc726796b91ca1c709'); +INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'654de8f6b0592da57bb61cb2d3bbc5e1832e69cd68fb4a64cb7a8f21fb60a969'); +INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'08290c7ffd74a10b9d85da1794729d5c0dc7de0e6dbef98223ffbbdc67ceb9e0'); +INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2fe311734c3c4e86927507324f142268eaab4789ec642e0a01b8cb50477d70f'); +INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'e22477faf984b23a0d6005e0b59f4be76e4e033a5c505bbcdb0bb2da505caf6d'); +INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3368e75cb35baa286643e140341e2f861e7f5485fc061ab1d98d07103ea06a2'); +INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'f857b5fa2b0ab0cc436af8bfd238b2a3a2628dcb0efbc04b7307178c905cbd3f'); +INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb23d0b6b7c8b3ddc663d99d851873b2cdc35a0c9a74132acd66ba26ef14cc67'); +INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'50e24365e4164d9e3b868516b2b23a7d869b096051f3cf735046465f88814721'); +INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93d703a155ac4402bfdc5e9720f788e41df1aaf181fa147ebe67465b1ad47944'); +INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'49db494484aa8aa705a1fccaeb16f5479dea3706234a5e4c824ed821a922f9a5'); +INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13cd048dd45541d14577817103059987e37ff07d94792f5cd4c7ae8c5228f3eb'); +INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'110915848e6fe9e4c821aa856ee5fcd24cd2a86b9a4d2aeeb08aaad766e8b656'); +INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'770e5e77bee3c25819ec590b02c61d2922acd4d54135b475add1336be8b5ef4d'); +INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'67d9bff31f3534f24aa9a073d8dbe4fe324ec917a0710da45208b037fdea4917'); +INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d0ef27bed71488200fee94620b69f6b5c24003c1ba11fc997c98d3b9d8e917'); +INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'267b938c5a7d943d8c32b8b3beeab835bf461f36c55cd96e74c515bb8eb2c409'); +INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af831bc45b6e6ee542c99da1ab0c1d2a1c5200a5a7e26a5cfe51657d42f0fc2'); +INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'ed857180b1648ef8e78f318305fb500948b0f0119b5670d978b17ab3f4c9c640'); +INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55907180336abc07e15e254398a6fb88ba1663aa8c5d118bfa89de6a1d24d377'); +INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'0730308bd43265c9cf66a959f2e5bec8b0c3e7376b86db469af4b2fdd9fbe43b'); +INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5651034304abadcc310efb1b477717dc2486ede278b4465ed4580d9c264a1272'); +INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'f7b3a603f32a4b14eee4a33f3ef884fac441701f1722668459b81633721efdfe'); +INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0110f1ca989be1b19716dac9bcd5fa2efebd53cb9e90567643c86534aae5c40'); +INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'8f8693d2df444c5a705746c89c84938fc9cb474327448fc81fb9bce511f1c16c'); +INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a8475adafd0288780b176574d8ca082f78d45c8fed2bd9a6adde132297bd3cb'); +INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'b6ffd06d8c87643f817e32c2314adf52d193dfa2f7a95cd9210bbe20920e60dc'); +INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'312c6efb9396b6a9a1c8ee140fb37aaae6e788e9f33f2d986d7a0255bb1c25be'); +INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'c0e951235fa4f58cff2e327a92a2468a55caff1e4af70aa985534bbe08331df1'); +INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9f4646ddf7805ec75c7976e1d380659c25de9b9bf06d1ee0bc7fc7f74830424'); +INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'0bd0ae8de0ad9d23b9ab4af9dbfab3822a4e69279343fb7692a30035310e017f'); +INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bde3bfbd6dd2e86b98194ec43617bb69a53af273049d531f002893ec8d308896'); +INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'53bea0bb37cbe9e802e573bc98efcb8f6e548fc7182302739e458bab315e53cd'); +INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d90e92cb46b0be9ccc3d13328b78b543db15a32f74b4b42d516bcb08917132'); +INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'d65f02ac05ae37954d39943e9cd350be29af259d3505253560d6d1c1dece5c2e'); +INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'572d28c545c589ea3df70655dd097e97ce1c0ae39615d398e978c114b07dc257'); +INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'7a42ae03143e0f700bd0f05b4a21b6bdff8d93905eb20fa1208f0c3ae1dd2002'); +INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b585fe4e5592ab4f7faca3700c629caf33f5fa3c52decae754c8cfd35b613b'); +INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fdf20c080068605d9225f9da1a6007a1239ddb1eaa2c70b41f9d0d7495476bb0'); +INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'813cfef9b7c6f1908c9f53303aaf10f058fe2499f119c27394fb32804a1f4bd8'); +INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'8a11abf7b13e6e1acaeb5ac1faf0adab14ee119ac69bea0eb87f8882a22b6d66'); +INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f87d4a29166735d39551a3f9370043dadacc920f01ec21cc2ac4c2313e295bc'); +INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'3663c52cedf66166e6b9c067c7a66f39f685a24c40d802763069fa3f704198b1'); +INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd564b65447928ae9ffd93d7daf13947fd6a4dc90e99afd3dc7cc2e57615ec9a'); +INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'77c3dd8918d083705b2f2aa1d7ee047c501f42f28179391587df22ee012ddb18'); +INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'333f75c30484462892642a33d5fe9c864b3d77f9531bccf3ccba6b029b753ddb'); +INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'5d702ed47db10e673c5e2e96feb2463c84192ba4b99622de7459211799ce76ee'); +INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cda7e4af30f7d49450d9405b2d02fa52b5dfebb536e9bf6c2cdb57d78175e89c'); +INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'a93efcc617d63275187523951f555c75aa1cc5033d710fd075070eaf345ee0a2'); +INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5b4b4b08a595ac8eac98f655b2150d6259c19cd4836368c5609e07ff52f5bcb'); +INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'fed330cfc1a305acf39a44f35812d44c676c6846903f59104c3dc0a72f44c018'); +INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d99ca7c9cc6bb2411eb8945f480ce3289d28fa0c95fa099c9103ec3702a33022'); +INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'38589a544c8e8bf210a167035ce50efd2a6ec16ea8bd079a735064296dfb57a1'); +INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c7fd8cac1e3b2375fb0935a5278a2a1f8657b0b1a8e7fd488f510081d7742a'); +INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'0f8e365daab0533cd2864321212570e145527461e6ecef689762e7d2625fa93b'); +INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e4bba471c6a6c90476738551eb8df9a23ca7f5620ab5ba1a4b6883e6dc43526'); +INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'0701119b894deb9e64cbfbbbd526f86c6c46a713e42a20fea8c6267a5dec6cb9'); +INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b32dd204942122e3ae87e1611ebd2400f6df86d4b31c1e51b627b8cac97dd2c'); +INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'88748bf27d7e579d67262b7f674ea6a45324c92ba23cdf7091b6ee0ce94bea7c'); +INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a0502cbdddc342f45be404fef8d46dde5459477e507172adcf4879795995ae0'); +INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'d192fe69ddf53d06f8bde96558f4434c4a992e0f7147739dd85f231655a0ddc2'); +INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbaa8ebe7365b203020cff0db0dcf7d03664e19b408e399c2c73b9468d92ba33'); +INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'252c8e182e2e8161e9b8a3a7d62b474708bfc79561f10fb8be95940f01a2f85e'); +INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14b54f1c26c3a77f43a753978a0031afbef8539ce73f25a6d5045e1d079be13f'); +INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'adbc8b8d591395ecf6e8c9ea9d7068e57dc3641cef31d2219e529176c78c93cf'); +INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19f5ef1456a819db37ebadaef27633b15c40a8b6d79f069db29003f160ab31ba'); +INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'701ef9ac3848fa2924e2a3b62ec0ee102c166209bc407b5d909202b094e8dea3'); +INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a23ebfad2058d4920e87b206b3c73425fcde72e247448ddce930dcba752b8387'); +INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'95e3aeccfb50f8cd1acc83deb47ba5120665a49aaa32e46e11c21c0afb9addbe'); +INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79640c7fa78e8c1e5980ac490b6743cbc8382896a8be15a6fa2b949b5bbac52d'); +INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'739a08c11e820b8638e694efc23f8e1faa8595c554b39f28e9c7cd4548802cc6'); +INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a615644bb3a0d6ad91cd43b0ad591e11eac4c7c6009a28129a2944e4789b2037'); +INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'e71f8d95bd9bc166401b359feee92d6a473b754a21e73cd407089959deb0b5ed'); +INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa72b55cbf48365303e7b40db265f1d2e1e52c295bbdada1b01b43ae41ca2165'); +INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'2d0bd48846478e8781cd96d0d29dbb906d73218825a6fbc3c2d0aed9fc7f14c4'); +INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eddb0b3fbb76518f09fd378eef6aeb0686ac59b6906a3132de17c46af55bc4'); +INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'0a8b890c079a7a72f8aa145c8ab1a8857741fcef14c9372f5dfa238b76865e2a'); +INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24623e76da2a67d672e2dd3e366fb65d2461facdedfa440e67a8caf96712a7a4'); +INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'48f999edf6d3c6b7cb9ec2f61180427fcceaec834555d9007405d028e5bff15a'); +INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3af6181af49f4488e7ff85d5277527f406505e2be054681d527f914a41d49da'); +INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'9765ae51d84c376e38ac2f5b9cb8b076c6c3f7a6dbdba23ed2e2df2d376d92e6'); +INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b8ac8dadcdb98e015e7a45af1b6e1e84066f7d64b265d38b50643945733ab5'); +INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'121e240c442e1d9a9cac1e334b45317d0b973499ad34a06f0033b4a97984fe42'); +INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd0d8338a03b933b4cca3c4b5147feec312513c72e05eebffae8f1edd826cff0'); +INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'384a210142fc7cd99f8a9679b85c6ec05b380af489e3f305b4ab0bff97dbbb79'); +INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'deca65b1aeaf3b549d219d8bb7a19e41e2906f85a8e3625328a1ebed7e4b89d5'); +INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'b3501d6691c11a2c256d692bad417d461ba7aaa60581f22a5df9151360f59e97'); +INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce66325cb1677b0d7bd8b8cd69ff4e992d60c160bad470ea5ffbb8919e0ab4e'); +INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'cf1ffd5a5d16e2fe393e37a9fe1b2312fe07076ef829d9f7a179e94f89a9c300'); +INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'410dc9b1d4a186afef39d24751e3d5ecdb43af3560b21c4e5a490521b8d89539'); +INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'3ac16cd4ba4ecb152788134c0d41eb7baf83539e9ce4eb56eb14a27571d19b6d'); +INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b941cb4ad5ae7f3ebd9d394b95123feea7e258ad143bdfe91c8b5ddd0dbd3974'); +INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'059e165056609196a5742cc6a5cfc67ba6b4fd08f5eb769f5d461848c16f35b1'); +INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a6c5578efa3d84810a12583e21f476df4b3403b13652007ccb089a598fcd695'); +INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'caa3ab2beed9f5b0ad47e3ea1914b99adc0ef56aea789944810a8b719b5e3f3b'); +INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d17d589d71c6097850e37b4d37b78bd7a93a3013685f58fbd57510ccec6193'); +INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'b47e0b95af214f16c837ec5f242c6135deeca4b7bbd20873d1f27f873b96642c'); +INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29ad350f6d96e8391eeb7f5af998c300ec83de68d59dd420d41a8a79c3658188'); +INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'0c63e23ec7cf5874b119ce283c48d7c384a6d151de373dec4fac08a878042d23'); +INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f08e30fae779e3888a5644e3c1a09604613b74de893647f24b0877b14d214ab'); +INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'7eb594f44b42fdf3beb868efa1b9ef889522c59d6b1041d6090b293e838daa29'); +INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b1e09487682628be9c52725e359f5462118a8afff2c8a0bdaf1299b0d848a2'); +INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'ee56421d1c60fb1524691a4879a4e3673ff54db9d0c0f64bda0927b566dd140c'); +INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbbd5f87959bcd54fb3c376630bc7762665944caf815e18e62735ef0edefd198'); +INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'c6e0d5b076004344f97f7a9749fb5de13592c2655f49a845fc452485e94431d7'); +INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2555da0b640666368fb10dbffe9127e9bd562177a38a32874cd9d6b68b10dd2b'); +INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'a6ab125671edf06e3f2f731cb52740863f3c552ab5de99eb6f35902b92b2c888'); +INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a3b878ef16419b047aacada354c8b692ae4a2cf9cafb90b6c533b5279607359'); +INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'93c2101df2e30f15b98acaafd7e0146f3bba6046a5ee95867b072d53cfe833ce'); +INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'281ee6a842c96c8f6847162e9d3ee3b39bfc0625942c52e9f62e7e499b37c063'); +INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'00c38bedb1647e3f675469a03c614423d6d9225ceffa373b5f9771ab7dbed5d2'); +INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'941df8dad23f98c1a034e26db3b135821efbb80b272cdbecba141b193520a68a'); +INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'565a2da071b055b99fd7cb3101c63952c39fb26fa471329768ce4dd7ade37d08'); +INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6cfe43b368030e9cee8c07579dbeb2b2ab3049eab37473541a52468eea97304'); +INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'dd7bc672ae69ddad9af6f85f56b316b74588d82417f667b0d11933df74d59350'); +INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f88a531dd00d04cc0b7a343748bd73eb6bb8e83a5eadfbcf7282a9b3ec9c4d66'); +INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'68a4e1f42336d2092a69de230d10966d7034f94872e62532a9a6769c49964f3a'); +INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79364cb9020ab800b61e9e5a3a3ff61a9604aab5a9fde46e204265d18fb1794d'); +INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'b71dd3a31e24948c312b7b18946fa23e0dc1da01c08d829cfe3f56976a72caab'); +INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15321de8c4e76d1a569e5f1de5ebcbf37455fb02751b83f512f5e435876750c1'); +INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'f8b393e6784936a5a7706d11d4d8e67e9d8c002b41171dbbb68521bf9622012c'); +INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16ee452133acfe45ea32df7b48daa938338d1801790dd52c93d721695521b5c'); +INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'3c1e5730c6b870a10af5ee54321b4685040647d5c9cbffd7677b95621828d7bf'); +INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9127da66c9ae509aa9444272c273466b57f8f48fce9e436cf7cfbc9011a3274f'); +INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'d1ca3796a3ef49816742466bce93225dcd7d1fde02b0d0956fb3b2908ec6e8fd'); +INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a51826fc79b8ed55614643fdca253a67a2a3110e2a48e39d2f77c378ce871eb'); +INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'1051bdc481470bd28d1dc45b415fb473e4ba210f6f3b1cc44fe8ec5e63970346'); +INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c169e13b5e294a8e0252e9bd14d1f51c0dc4d791aead1d28dc8cdeac428fc85a'); +INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'b5605aeed6105dfd5d74c63b10c32d06896da667e71662fbfe5318c99a32be8e'); +INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b385ea93ce741b5b27ba46352a005a0b0441f67ae27359a728dc96b206216e2'); +INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'0bb71a3b2aabda320087fcd69dd34cab107b3c29482cdd928b96323976f6b989'); +INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cf422a0cc44c3a0720e91143df3735267dda998a83ba7b3e5b32907183106e5'); +INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'c129ff3dcd683badfc5cf205444ca921c475a82d6ae4a6f60402509428bcbe8d'); +INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ede8ab316b007fe0ae75ea437f3fc3e1a1cd30baec67decedb25085222cfaed'); +INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'c351fb90cd0d4fc1f9cb0c0756ebb2819f3edadec790c8017d7349a46ec47f56'); +INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84695b7be0a74d046b54be3b871d71d1b3adfb945c843959070d07d9fc9037be'); +INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'6a037d65ff147b07a0bae235c3c5d835997f0e94d0c1ea656ce36e7ec756d8de'); +INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bf444c3d042ddd4c093b7f3d890a476302ca50f3638677bd8c0df363b3df859'); +INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'b194e96e87240f2c383295ce5d8c491b4f99635ca07f0c68a07b671737a02f0d'); +INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebcfd6c7b0b0b3985e3f41e2bd432e6ddab00c33e0c97b76b7d9caab2af8de36'); +INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'48fee8fce667da74f9c52375bc66064df95f3db6624c973d061a8f9a59e64ff9'); +INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abdfa5597beb55cfb6407b6027ce318cabeaccab20cf021360022104b3d0030a'); +INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'eb02a629ab74dad6452d851a43a18d5b7a034c33406c7b8cebe5b04bfeddbb52'); +INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520f8468d214e1314f21e655799a12637ac26584dfc4d04ce24dcdfd6bd088fe'); +INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'b2b64ff45fd91338930c55ad78077b55709238e7c84f3c03d0bf2615c9aa0dec'); +INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1573d1aaac046317d1640e3629d44599b3c0db344a321950bde9f7ab5aa17faf'); +INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'f2b247d938213799e86bb0dbd55c5ce9b66b125ca97ae73179536430447e8354'); +INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ab7bd959196794f58c31dfcde0270f0fe3bfa72ee2e8864126d2050bdc78beb'); +INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'6a769929e9bdcb46d4088aacc0a9c495479751366f72a3b531942b199ab3f467'); +INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf282f0cc7eabc711267a683a487643039dd80718d25979cb645fa8f0d568bc3'); +INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'8acb9570201d6f6527dde3fccfde147854a38cb522a6bc415c733f822a6e6723'); +INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7b7d19a516c6832ebed8445790a0654e22f2aad7bf86069e5c2ceeacd51a59'); +INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'bcf298baa933ec181cdae4efc2bca3b461d41c40b40e0169b62f85032d8bd510'); +INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c5ee4ea2b42d7cc8a3dd7e6373fa02c55e38b0642e7511ce072b87338165e40'); +INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'d1ee71d80d563d577fc16d763b469be61d0e71b260a6c308316536bb10fe0c5b'); +INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d74fa939610bef85050dc71e739e15e4247cc346c4a38711e5988396201aed3'); +INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'9f8766a41a068c176b22900cba464cb80648e2417b40ed87ea70ad02622a6169'); +INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e77d59f1fcd429e5d2a2c0aec6805518254ea06509c332db703c056e625ad7f'); +INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'bd97b7f5daaa9eae781cff5f21fc5d88233f82792f8aac8f49aaa9e425b1e2a5'); +INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e2a372f4fbe14e2d37de767e5359c654cc150d7b5a65358c5658938e1ead47d'); +INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'228023bf140ecc80af850a1d0afde1816af7e4c5fe073d0cff0cd65abb2f3178'); +INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'465e116d3ffa9c62071e03d50d4a1e13996de3801e02380681eaa2a9cb59efdd'); +INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'e56eae7e6a14217c7296e1792bf9f5e7815ef4be48f0cf31c871554e5be3491c'); +INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf0d3bbe38dd9d16b57ec1e375ca2915eaffcd6e8350efc7668f4448943fe47'); +INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'e376f155244e3e47b2e38ef372428e20fd804bfb9c61a5568521ce2ab040aae2'); +INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc0b7348068437eaf707453030b049112344bf02f25afa84017a7dd5696e389'); +INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'196e997e821340b8b2bdceafefc9ebe03421d31f95e86eed0483ac8bfb4ac0f7'); +INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7e5d93450507a4d28c3e4dc4ce5917c6d5a7fa1032e37c632e1e9d58f56463c'); +INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'6b7402bb99fa27874a4403285a2f02886b019700955a0616295b05cd7f1fb97e'); +INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac805a801c03da4b1ea3cf390d8854a75bce25967a845f788b6986a2369d435d'); +INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'95b1e949510b1277ed93497c8849ff1752c3b336d81a2e8bfb4519d0b9557c4e'); +INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46155efc0eba28bec8d32cb8226d73f37a23198cbc99c1bd445c380b1910b602'); +INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'3aa189adde4a77caeb52702728a1d1e674715a414f194914502a14999bb84532'); +INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a34655637f60532c5c7d97e941be105d6b2664ffa152403f48547c2661b68b'); +INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'0211bd21fe905adf32fe757f565a6edc34d92e6e0daac8d4e306f3ec16eb1e88'); +INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2709e4a0ff674606cb340f91a4c56d533468392b0331e2b0c1988f9dc9338487'); +INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e8d3a52dc566a7889c5c4a60f48ec1f991a1ce1871dd64ed0a4b685373aa41e7'); +INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8d3c84f4bc7724ebe7391052eaeb7949dff4fe61d15f06030e4b2747be4b9f'); +INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'38be8572bc2063c38cf037e745be3d3616aeb4ece9bba8bf9d5a76850396a5cd'); +INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942e836e870968b5d1006074519baab50f80dda93d44e5c35c614d01d119b93b'); +INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'a0aacd6a8d16d37c114c837135b197b7a47c067ad8f0c992f4f4b4e8fe920331'); +INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff560eecfa437607176a6a536cbb0a7371dbeaca920a6cb17c906146551b2c75'); +INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'f76d597291de43c14a07040c9b6f0fbd424e0e72ea56d7315a719ef8ebfad12d'); +INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e50d40e3365af2aedc0f8a0b048b4d7aeb5e6e58c2ca031316a1e0ded56eb2c4'); +INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'635fa6adc8ba3a1a5cd33902c90352ec4b0152bdc344e5a70942c2a01548be65'); +INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044aae52525ef4f90095b5a181a72537d3de5d105d1a752973c2e73ff96b448'); +INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'1262b146c96420d4572a1ae74f34a11425bc7a6d7eabc311e62ba736d28e464d'); +INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4481c8ba6363c0f1ec9b0d2c214e938e15d0bdc7171a2e62816ef4a0096ac1bb'); +INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'15a6f1c702034a728ec69cb44dbb8bcee7b0abd292ab9a3886d122301350836f'); +INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e3d8fee3d92772e3ce8d24db13ddfe5d5b38d952b38409ff6aa281313443156'); +INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'851c88c4ca33c90d8b62dbdc3dd09c945361bae257823f737c6784f27a0f562e'); +INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10bf1e4bdc10aa4b7abd5b02a2085d1f3acc053676f548717a362d50417d608f'); +INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'6c81eb71f37e59b7e662db6021fecf5933575f30abba5e58a1fd3f0a04efa0b7'); +INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68680f3c451ffaa3dda20b240006d2d8749d8e6fc9de1c1838f0c93036aefe49'); +INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'3aeb66de0543ea3b63be5dd661766f413530023be4c9fff3d4824103a4f35962'); +INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45768d01bf6166719637b4642c513dd3f6f1ac7ee95fb7db7bd1aa6bb02de2b1'); +INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'51df58c15ac987605aef89e9e0fb2a142587eb41c4aac7fb512c7a42085c60bd'); +INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'744daa08c2727f528343df5907002d3e8f74cd246b80714f9b47a616a67761d0'); +INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'0df6d9ddda9cd88405e4645061dcf23d9d2d1722ae067926df073eb522cc6469'); +INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29145e3848592ff7c993e5cf568a576163ab0ff3a9e0575b7f85ea157d0d2bab'); +INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'e0b0c6b451315fdb54daca7f5f8f45c5e04600072783fb868c4968c655523abe'); +INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f0b9e81a521edb655ba542ddabff05ff95b18943b7762167608b85eda51155a'); +INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'f6283fabfc29c88ed373ebce196d11ad52ecf65befbf90b1311feb61052f9d2f'); +INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'864526d07dbd44776c797b5c017c1284ed25639bd564a5bca838aae094f65405'); +INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'44d8462a1fe2f9a92fbc84644b5e575beb766d9737b153931aa0abbf2f1ad074'); +INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9982851062dc8963db4c7c86347843c0a361ec2d49610aadfe4b24013d3d613'); +INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'f016f2f0b02dbbcc34826e71a41160457d759004c307824ab96a7a0fd083b0d0'); +INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2717f990a88d6806425f8823da0b541c89c43843f4ad30c2149515747c78dd56'); +INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'69a5a3bad82c047f5d48d48485a8a3693bffb6624980300f6e20ccb17f7b6ab1'); +INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74d27bc7976dfcb915e56fa3fdfd8f15fa166cd5b528d4f30627284144011097'); +INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'80a0c577b98cfeab23e9d8012aa69aae2bb9c3f26a465c1a0ee37ee0c8e3e8be'); +INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d6af6cab373181d6c7764fc165bf1db3221893a3c5e13cde310431577abb5b1'); +INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'e322409ca174c2988aaf8301a5d1b2e28ab6d8cacd25b072fe3c3e170301aa80'); +INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'064ce2555cc2be57097ff8de299dc6526261ff5c44591c716a3fa55cb8e9b4ed'); +INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'21f7b04a7414237c75926b29382bc38c80ca5e5a0f0bc40a522c6bd260301f07'); +INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af963b73017ba0002a5481da2a9175c6fd71335accaf771317868f290877500a'); +INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'bcff6cf3db5802b852855de8c2b1a7211c1d7e4f24783748a56ccf950ebfac1e'); +INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1917f48f39f711d35a80bfafc10003525d89730199e1c333a468abf0030a8e1'); +INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'94f72679b9e1dcedcfec27edd47b3532b489dc439fc3aa0b1e24ecb35ec91db4'); +INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede2ac3a98eda4f5b2514394981ad2da543fe49208d0c2b54608d9332dd66034'); +INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'c5c842af36183e2b34273ee4a01ccd3d78a7d8f2bec7b55d7a91c54385757cf8'); +INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21e4b0b797c6d65666938531e587ce399f8f61efad208331ebf8b71c0ea3588b'); +INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'537307138c080542d5c63f6759a90ba883c5795f53ef8855fde3f90d041e52a7'); +INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd3b3bd569c45d9a1d9324a1ca15e85c6ea6d88d7a3df8ff7695cf7b5a7e9ec1'); +INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'6d38878b2350ac01d9156d1db542345521ce4b48a611ef25a9e443e6c3c29b31'); +INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c0ffd6791ad3957f26128e1883830f7e97e1aa2ffe5b936325e179c45d6d70'); +INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'aa35e9aca0eba4c43fcfec2cc897aa0c1815b141a54351b90f3a1bc896accae7'); +INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5163c09c77ae0c6ad92ae298f7b53ae4d452e2ff5cb98adc50c9846804e5c218'); +INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'9d84b506bef5608019dc3663c6eed13628cf7d3ccc6df3bc023980b12866e697'); +INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82859ae6dedf1fe44de5ecf15a460a9f513e89fcc8856b32a5c5099007d71976'); +INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'3ec593244036782c1840c3400e925fe46c169228e0f176972be4d10896f4258d'); +INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b6aef63d1b84768311a5db68c7f6d2ce7f80815a21b820db64690cf6f7d5422'); +INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'e20fdcf3dd182261491a77f059b0c5c4267b08920a4a439d470c79df35472d1c'); +INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b547d119a8d12fa80d3dd3d62d493c52e9ed981301df832a3f720795774c50f'); +INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'b311fbd959b3b55e52b159ca070c4351569c688cb705b492f77b974c8a43b5e6'); +INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c0c8463dfee50b4a24924de567f1960fe4cd5252e13d7752578754bcdbfa775'); +INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'baab490dfb829500eb4da80048423533384f7434602461a19a28cf158a710ee4'); +INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8332906b32caa71af1756107abbf51a178e178096883bb6ae7ddf60c2ec569e4'); +INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'1d71b1330cdd16a46091aabf069c9166b359439eb7e7844d7cb4be55ad5d6969'); +INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5de08f826b05ac3736a8bc0f8d46eec682e42606d58c87263911c5cd8e9fa95b'); +INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'ad54408a484576d17d2b099c8ce668a58a15b03e8f97bff93a5bdd2c044afc11'); +INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947a168e3da5d2e1bee450ca962218c8faf78eece16d288b93b1bb145c5f768c'); +INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'e0c8e9450e811a40205fe7eb538d9d9aee497652c971bf3d194a03e0146ae976'); +INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76aef61c5b3203b470d57476486cccfd6462c4263ad0162f16a3aeb2099cf5f9'); +INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'288d9147d780d12e0dd4b3aa9d0387072f99906c2bc9cb4b110d01e01e8fd6c4'); +INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a4babd5134df984bea588240d63e6a6f42af6d51d63cd597e73f172429b2a3'); +INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'16ad78081e519e3f6aa9ee2ed6d1f8741ffd588e8db0e0c5f90c789d8b433429'); +INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbc3fdc5c80378cee9691f3abc1a1d2c5d39b05f80cf8ddf973c5c0e95aed4c'); +INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'d2abd872706377e0fc99c2c8eaee5942e40e825823235a958c992f6c82f39a96'); +INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'067aff1f440155282082dda7db16e5e840ee4b2f90fae9f117df579a142b8fae'); +INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'ec3a5f773a31f87fb5091a9f8a9945c429dda1763cbdab8b42c64f321280219f'); +INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7ca0088ede2326098d0e810bc553008a25d2dc6ab5dec1bd60a7de740a3899'); +INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'c36916a511174c2da8fd8201fe018101401e8d13bdb7e51503ce2b4bf4fed395'); +INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4615aac517f010d16b6bbb0ec3600ac5aff2eb9c4e51b18a047287953955c0'); +INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'4c1ad7bdaf49f7a035ca8e370460d378f7794ad666c96cf62cd5c7dc2c610731'); +INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8241f611d83e002970970f2addd1f86ac8d3d65ef0ac346666deadc33d45262'); +INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'d5180578bfb3ef2a2cac1b8bf667517f11a7161bda0c2ce6d8d6aeb2a3955136'); +INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d102f408c688ea3c076be721e0606a2df1060b3eb091457861c2534bf793ef08'); +INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'f2797b3a3f3cdbd50d451c944cd4b42c07fe15d7f852f7f901e6f8ff74572ca1'); +INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6178d1818aa2abe4ff3dd8ac1e17823d15749a078db01b265285d812a6d99d9d'); +INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'08f72c66b1599e1b5c2ad561a6a7f55367d292fdf3c02b498b659319b4c7adf0'); +INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a0152e92bf54e38017bd0e3515457d901cd2bcb22486247cff91761b24ac6b1'); +INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'49415db02917d9263231ae7bc2da08a7b9f29ffc37532cdfa475d67e1c2c84b0'); +INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9393c16953ac9edcf0f1ad80bccc6ae62626a47fad39bcde0798f1eed2bd2b'); +INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'75f23a601b5220efc335d18a14724d8a697067e5675fc161f26042d82169bbd7'); +INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'718d538e8db524a533801fac8796ad4b021e43abd151dfd296f72fefc06c52e8'); +INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'80f8ad4737679f999d9ce9f67ce59c83e9cb66f9e736d80cb07799cca24e358c'); +INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3731116753956ecdfb561747b8a53f85033352f1927bde3f52274d6884c55aa'); +INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'474935a9cd3b34f711c9e1c893481dc4c4491f0201d7652cb050915913a2f97f'); +INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'763a9d22a3aff3c35cd1f1b5c9f1be7bddd3ba250d6c474af21e4f7d1fc6338e'); +INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'0f0e04a46efbb3e8f5b38cccc5c34bf7fb2c1de5d16033203bb50e689f79b98a'); +INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72dd27cfe564860a7ab108ec863529df83c779a4648991e8bf78b014a8bbeddf'); +INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'2a109e6004f63dfaccc23508a7ef573e21436ae31f1d904ab5cc43561868cb96'); +INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55bfda5a8be7cebdcdafa0306c462ee2854d564ce3204538f5a52b3fba5978c9'); +INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'12fb319a6a67049c6fe9ecd015ac484251eab6691dfecf4bdda691da424fe780'); +INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'601184f25ed0ad0790dce52f74f0aeb2a5e8e346eb564d53aff39b3ab38445d7'); +INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'36eddb9015fee56764175a50fc4729120be11928443431065e7026cd64c9d6e9'); +INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0356fc94e22ee5b5ca931bba0ef120409b95cde8241c6f6a02b26ec1dfd78ba9'); +INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'a6d686bf8398fca7caaeaf3f624ccfaec5d47e32c268882cc7829042422ee8c0'); +INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'518bdc99280cab3b0214d14fc06304b0fe4478e21cf18e973441a834313039f3'); +INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'dce80b74ec716594740fe19ac4d60a771fc77bfd3b04fa6528fc94ae8b4f6fdf'); +INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa912ac654c72b109738daffe4b074efce5fa89e5115ef761cbe4a6a4aff5a1'); +INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'275192336b5f10e2450fb1a95b80cabe08f0d8d82184d252ba63c4f064a51a9b'); +INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcc3a14328a7d481cd9421a91ef5fe91c18943eca3b3df0eac11194961e9608e'); +INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'99f1acb981a47cc5573616c11970252c47a6ec5f9c22741e8547df776438ca32'); +INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'369542bddcb46cfe146f4aa17e2dcb1570b3c9c030a662670164b3f3b9e0060b'); +INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'5a7a63e351d6b25ccbf8c82cc11e900d6fddfea51c1620d4964c527ba5b423f0'); +INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67dcd841d60878f4c141a78c2e79765b53cf02f6e079a46775d43a0bc034c797'); +INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'658c7cf29eedf2e85325dd9a01dc6b4e986aa48255749ae711c0ba779d8710c7'); +INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67695cb8559ee564ee11fe61f2db26cde91a720238828f28e481698a869501ee'); +INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'3cc16721b1fd9d72c618d62d66821a698258aa1d437841707b4529521a591575'); +INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7184dd79c19a5c393989120d109264e2ef4a8f11c95ae0aa190266faf85d90ea'); +INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'4147e8be9455eca400e7e5cd4f6d7d6d2a3b76ae074aaa106f3dae409b3abd37'); +INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23b20f686956df81b4e56c112c37c45c8ff9c340f828d5d1262b1e3dca1eb70b'); +INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'04672b25a6e7fbc647308029ba6e1a527fa35bcf1e949749b0541fabbaedf866'); +INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6804d7df859018a0d69fccc4078a62d03275f0d8d2648d1608c7e5ce8fae44ae'); +INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'e54d0e60270667d868e0ba17051df9c1f7640ef0200a9afb5a84d27847c7e6bb'); +INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee180efd54ba58277db3826bdab76a0ed0691e9647969884f173bd6ed99ab322'); +INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'5c43dffd8a2d615b43792efa30097c484e961caa4344650212d09e63431dd81b'); +INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3093ec75637cafc964640d6675d3265b6f07ba7de9ac7c5ccbb5536b72653685'); +INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'3c76597342cca10fd844f2d47d7aab49a76254b76d5ba5377c68e8a93b07d03b'); +INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca9f33d7bed7204ffc10713ea5184b35abb8d10f97e215d2717c57f1b5ad9816'); +INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'43478c4bb1c377f71d0ab7d52e9d617d3124863dfd985c22897dae66cbcd6b35'); +INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d093dc2b7337c237fd4cf1d106e3c142f246a2f8c0862724eb3120a516409df'); +INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'72ea1aad63efa63e15fb41726db2f65c2a63ab9137bd801fdc44fc2efa8a8879'); +INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57860f7f7f9766532b4e84a962fc786da1d09b74033ba8887c901b8375718f09'); +INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'bc9bcd78b36c85497887cd6a5232edd39259dc989f41064315ead5b7822a9389'); +INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fda26db1b6abcadc03992dd1b83170340ebe7b1a8301ea2118a73141b1ee3832'); +INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'7492d3f976193353b1283f81f82765ae84f3ac0266d3edc3335e37afb05b5c0d'); +INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad2111612c42af3313a71f8b596de9b8a02eaaff6a9f79c0524c7dddd1fada28'); +INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'d773d5ca112847109dd374b251d459538ebc80816193c4098244989d988f6835'); +INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e134b1f51ceb44a63429b7b12f8b9a2df29938d4110342115db26e8bc8a58db'); +INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'26d05762f004b3ca0b2d37d6041e489cfc46555170a9294f95d03e57207a7779'); +INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'741772c021987a8c24a1913d3e1b4b067ba1d3f4c8369c22ae825ccea542b55d'); +INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'c2aa54a6e05a2380b7f98c87f3867785ced7beeb6a508c0d48844954d060c678'); +INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f0b0a4ac6a31a511adeb23b19cfd508ecc2513bb7c806a6c20a8cc91276aa8f'); +INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'c0863bd3d6ed5f299e60f6c6569e96ce138507ebb9ea792b370d5cd2bb0924a5'); +INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'398782ec1ec652422beedc503467d0afbfb207f1453104c4fa36c3173a60d5b6'); +INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'39797813b40ecfb611cb8a9797687caff4c8b36644a96cee40641ccf7e67b5e7'); +INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2015eb28ad77750efcc10944b80c5f080347e103a18e40bac2226806c38941c'); +INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'989d8ca358b1294428e11a9a33d92b72622b6d978ef2a67f485349699dc4ff11'); +INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2dc1ea03ef71cef028e83a1c5656feb8af82ef2f77eff0dcd273d114bfd27a0'); +INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'8b70a8f16adaafecbe166943c0fa2714d69233737df1b982e175ebc49a699746'); +INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7793a3d0ae048d5c3f85c2349bf487521e853841037c26ceb8da0390ada9eb5a'); +INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'16743087770e29bfe8854b9cf6c63bf3c64d5039bf0a85eb10d93b8d4be5055d'); +INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee0274514931859bc774bea7f4e9412ef4c8d96bfef8f348765773f7d021fdad'); +INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'11160b92c60efd2785cc72c35418f7756410e913538e25658585c13ca1f3019d'); +INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd1b4664a78397bc71cbbedcb4104c474979accbc9993a6e6294d4fa01e5f491'); +INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'4455eb118131a48058b711a6c69ce59f9cc551f882da16d43d8f106ec265a137'); +INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52ba4ab49febadee0ab9de41a5c33dbc02080227d8a622cc7c85ab31beb98e1a'); +INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'083ecd9aa5e2be23021e5d516b792bf454c5fefc9f225d268bf168bf99ce88db'); +INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58a25c42584e1d16f93c8c189282036a99c55a5c3fd8866ef8e76bad1a2e3282'); +INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'bddee76f9bae09f9f53ddb10ac3d351e41e7428590372bd1a3e92f823ce1a01a'); +INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f5097bbb77f531e85c1d6d747f5242c12631b7c7916281823c4c72886fa8232'); +INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'25c786ecb89db4eeda9af2dc72228a307e11604b53be93d8acaf850ad635b6a1'); +INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e4661af5acca55f839fdb4c53abe668f45dea5aec6327f95346dfacbd8087a4'); +INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'936fcbf4146f153ba457b161c2c5ed3a9820d6d9ae43bf424c5490e544e5e1ab'); +INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fddc5ff2079512260a64506f0248d92714a8f76a9fe9492928bb5234daecb198'); +INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'fb72cb1ae0879921b36d9b30ac2f55ca47ee96651bcf5e362e50fb4304a6ae52'); +INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f040185c8241a9c98c50641a1a0f6cc1d434a923f0e6944e4afb944e8deb374'); +INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'c7dd8f85be2e65cb14b71a52cd70df39f17e29590c23867410f713d7fcd23697'); +INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10d6a644dc2b9fc48fc6c676b6fb7c999ff258045614527369794b40544150ba'); +INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'ae8aa8517c348469386bbc872c77b3d3499cf1ebd46a8522015f31d345972af2'); +INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'146171e0ee4f0c2e0d2c42c99b782399d9d116e482284f72ae885fce92f09507'); +INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'1efb178d24b3e538a81b5c4e302f758dc1b74354de2ae09bb203c1f333428b55'); +INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520c8ed12f833da681175bfd57ed55eef497f7a20363b44c8175abfce43a93f1'); +INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'88647d550a16afe94bfdd0288ba5a2f7bf4e3405520d13e5ba83e3c2539af089'); +INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d65c59513ed1f21f3ec2bfd18737d10124aa9ff0fd7b671a6da37f88fe5a574'); +INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'6717c44d7fa8d8297dc42ca9cbd87b1e0b78b97affc761d852352a6a271bfdcc'); +INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb9178d898e05886f17b9d99b65354bafb6223cdc043689f56d43d9f72da62ca'); +INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'043116af2cc35f1bd606db2d86bd9caa93dec65e1cc083cd117896fab95229ec'); +INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12bf234653d2d88dc39da69a7c00b2c7661a658cd683f543d970eda9d38c003'); +INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'56eb76235162507726c18c4051ba7a1c685314c3c8d929ef4bdaadcf5beff0bd'); +INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6c51668aad361a3a49b6a4afdeb8a23d70be5a7f42ca87c9ccab3d61482f3ed'); +INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'1f19af47bfb8421ba1280d4d6fb5d27c443d002fca614647df1e7da0cdec6970'); +INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'091309149d83d047ee70e6dda4f3ea4ca74f2fa6cc206275cd81cf085e5aac10'); +INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'5a985c32a98d4bec6e0c70e5b648bc08a6af2d68b70c5764a5d6eda65988eee6'); +INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca4e7f2b4dc6a223dc1c22c5d33e705a4fec76c08b44bd03946a58a820bdb3f'); +INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'772e5c76667cc718786f68bbc7aaa3c9f3fcee52e2de8fba2695d83ab0d2f70c'); +INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea06a99dfb87892c3ca0b2fe39686731f842eb839c95a1259e09585a1f2e83e9'); +INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'27e192c661d79d786d99db931c5f6a08737eca652b47e7c7ef11a2ed36301e23'); +INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f46ea5e55f8ebe4a54b0f4ecfb2fa39fabaf3c2b1d8175238239fee75bbeef'); +INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'73462e1a73f5386b9bc171d41526fae242bee9306f71e37d2ed7b859d8ae2758'); +INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b38384c9be140e81fdb45e43503c4c313f69024cf55e280abf1b852201ddd9ed'); +INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'d3d2a58c7c41b37a99d7a45e5e20cf1b7f2c4d3d41a7425ae76bfa1aa8c29540'); +INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05dcdc8a6dca39b287b6001fdb4e620c079cf3ce4fad57d7aa1ccf39afd5e4dc'); +INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'822c2be95d5c878bcd43bf442c03f5a888d207ef660665b5db70010c93d643b8'); +INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2753c477d84e83636c7614854c0ba9c18bab66c535914b0b0be7b56564f86077'); +INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'f3f59d5ff5ce4653d3e728e44ff42fe1e11e25a6fb8dfbcf9d5b4899682f85d6'); +INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df64d9da8683ab3c6c59d892a85c109feffc9c8536a13b3fa15528bfbd0dbe77'); +INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'0607401a7355da382188eb2170280c29ae9433c3cbd5bcec871cc2152ed68265'); +INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'862a341a267c891d72754ec86560e37d9eb57b0b3cfc4e624217eb5df6acb0af'); +INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'e3469947afd58b47e739ca3d10a5e3db2887d0492a385970538e96fd88f19b14'); +INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'537edfa3e3d96935ed38c1b549d72c243659e58297f3a7bba3cb478448c3d714'); +INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'ef8f2d05c496884f04030cbd5153a6c2941aca1db9e143401407e1c50714ac4d'); +INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a141d0aa030223f2fa7d729abce7b83c89e1be8df30c7e32b1ceba13c5d20358'); +INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'7d134e7dfd7fc1672c0ee1e110962755d5caa9b2666664be37d22b72215a3e92'); +INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145dd029c336dd222e0bc355f614fff56fb98318288d9ff4df2106ead99a41da'); +INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'f04bd751ca0f172b58afcd0215af39672823d87b32d3e63c5ec1dcf2c0440e84'); +INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de605ca77591296554e622ee070cafad7386851320f0229c5035295306d80ff5'); +INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'a1c3a52984f1f6a8c329f3552f483411687f442463f6ff4832187076ebcc037d'); +INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c179a127d798927d0f50820bf2746585aa79646f044eb0b9586489df920240'); +INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'131999f810c361417450d5843463628cd0e34a92c6d11d4a54aab60fc55222dc'); +INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'236d51f42a250e38d81e5e138282502701ea9f3e16f8cbecc81c3e268720723b'); +INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'716695b834e5d02e190a4b766a396a1c3cbbfaccf47a8f198bd469c9f41aac28'); +INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47695f4ce560cde58e3a9ae973ccd70a0870d4af1295f1b23b7d6f42e3da36e4'); +INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'f39fa01ca279e6ca02ccdc29f8fa833455dbbf96b8a3c2fa9b659a39b4c79dc1'); +INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed1aad9fb826ad94a93b3b917dd202ef0b6fe0783e678b684c1e797e52316f54'); +INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'74b5a91c41bb8ed792a98cef2d6ddebb302c8bd6631fec8dc2eac699837c2567'); +INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc717d003dbaca16920a70425575de0259598c9c487e17d57c6b137a0b3add59'); +INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'f54db505e4f07fdf6cb9fb63fc1f1e9d30dc5b5bc09cb2c504cd2e1c1d2276b7'); +INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65b30643585b8fa662f44c7c30342cf8a530ea9dcf7da0f032a6ee951bb2fccd'); +INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'6e0a3084ab89aa970722862f3f0d4153ca96037b7244393d74b83a6aee2a269d'); +INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9bb47c08d4785e10f22f91ed72db33b8183632bf799c41569fc911e8ec229ea'); +INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'a8e75192603fd8de597dc91f0d324c1c6ec4e3ad960c53389a3695bb3cfe431e'); +INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ef84a3d989dccbbbfb2e37d3a24b476772fa1941c1fd97c7c7edcf1b5b4a524'); +INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'d26be77346b2e3915744a9e9cf3fbce374400817c334b310227a8e771f027ba8'); +INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e4fe1c6c9d0de95da827c9671954190a9b05f39698ebd82671d5d7e0d4bea9'); +INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'4f16ea5c823015195f8e0714013328e82f7f283555c1a36b26e68f301750114a'); +INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad18063e012bac15bb9817169e98ea7a7b4abc25a7618166737ae4a7d29f90c'); +INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'f2447db529324818a1aec859c380ab263c88cd970761dece55b296e42e387a1f'); +INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b7a4b76923d4c894e3767b9b9df5469811078828882bc809108dbdacfc17e1'); +INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'786907378bb6b539d3890c522c2bdd296e01d2beb6256d0ad528e954f2879c85'); +INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a84dc2069003755ed6c0cfd441c2e626a7677e0f1c9224f6f450598e46bd662d'); +INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'e789136b0c862b56bc79b2b295cc61a42a59d718e7f617c2ca4d6d24df3769fb'); +INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17bbfc4d2007e679ad1062cea58deaaf071949f810e399d26a908f228496e6c6'); +INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'9df7f28775eeb70df42745eb3cbce824ebeb6499c36e0d7913965c82ecbfc4d2'); +INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1e6837900e8bf0ae572f8902ff1326f269db08c8377ba600b45c52ffe7b96df'); +INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'9b0272a36cba6a5267a0a00aadc460735f69674cfdfbe982d45b2416746217a7'); +INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145ec91d1c03a812611b1834a7ce23b6b801a6047d0d5fbbcf0a5800633993ab'); +INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'922d9f3dea24eb678312cfa604d055b0d830e5e03c0d377a642d0c8a7374d40e'); +INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d147875d527a59cbcfcddaee89cb9b66460654dd2cd17a5bfb195a08923efc1'); +INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'144655c3c3a6d64b66b197e7762f43616f0511889ab615a69c6ab415d1f35185'); +INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22865a546811743adfc4ed171ab3535c3e3ec06787217d8bd3edb0f38f22abd1'); +INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'8aa47903e47936734072fe6ab4e9ac15222a14214ef1d0540351607d60d2f304'); +INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a74d3b7df8ad4120788e316e692d95f6cb34c47483982b643c032536dc9980'); +INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'39faffa4ec48136bc482297452a4f553354ac51971ca84856eb19b528a7d29df'); +INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04cea19b67e8003545ee72d4f5082f8d553644b4e6698ece1cf9d85f036eeeb4'); +INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'5ec8f01099af8b2dfd94c6e7ebf86d696b234f3dfc7593734fa72a216eaace3c'); +INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21196aff3e5b161327d5fada1290d3b757b3b97d8c9b17c541770cf4c73a4e05'); +INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'a1ed12367ec8edbf61414da74987bdb3c1872c7a65f9153b5a5c9f4516d2d5c2'); +INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dae2dbbf447cd273140c65bd157bae379b30af7ae41c0b257c76ea47bf96b125'); +INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'504a0d7fcfb3cfc08ba3f9d324313476bf2cf7979830e70fd20bd6a7e5b9806b'); +INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b031b5652c751ccb718524b94426025e12518013bdd4ef9a92ad3f3098e3d210'); +INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'94eaccb65b21deeeb531ce4860d63f8e3c7526b477658917e851640420745871'); +INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67a21e2d353d16a2655bca7aebd78b371fbb5f8361daf42ed842f22666a0bb20'); +INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'6415332a53cd4ccee8714c5ed0ef39987bb5f78afb1a915fc1d6a50a14aeacb7'); +INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8d5481eb2eec69ad1638a78f1fc453c6f2503a1eb3988a1464081870671cbe1'); +INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'7d066c31f1ec46d1023982c1e3f45efbac26ea3929571393c5905aca35eb627c'); +INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6a297583fdf5f8f1eee43e11ca9bbad8d36f51529fafba3dd830e8eb6f674a8'); +INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'4e390569011f2173c1cd888a0498598f2936e1a666e531f1a5216ffe192cbef0'); +INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dea87a5372339db424f91e9b858684e91e25bb320e46a59968da5a448fb1cbb7'); +INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'1ccc43555278f647627e7450ba0674d603732e65d16e30c4b830ad45c04e35db'); +INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cca12dd04ee1373b563c88d3fb148f2f9d41542a6b3caea4b585f1bc26f2be7f'); +INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'cabf9dbe4c1eeedbbec59d0b80f131692b3f876587ab94d219f5611b0db318c5'); +INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78e65e247057ef2a8f344dd9755619b01d8caf524e50ba69a446104969191173'); +INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'312289a9fadb25b288cb69d6f96c60e150aede1300df7f6eda41393926c948a8'); +INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a2d79818b7e4b5beb0b931133d4d32525978b364863d7d71aa8c4c2de3b089b'); +INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'30ed99c48ec8722d071bd609c5905cf1098329493a6209f3fbfb2c473fb88535'); +INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e3b689138d4b9b649e100595d02d69b12b6fdc707b93bb2a6668606a2cb775e'); +INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'3bb67fa1dde5d47255d547589522d44ac150eee1fb31a1e9d3507a548f451609'); +INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'057a410678ac10a8a7f3f1fbb5730fd509cc358eb46c77985ee20621df58ebdf'); +INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'bb1fce646415292c55e4ed2cc5753b2311e571013ded8a39ea154066006f705d'); +INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5be8112029a2386c64778c15a3db61d8a5dd51a4a221f2497dc17adef50902f'); +INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'08a258b78f58a8df747708a757a0903691cce350d8a976779621bc4c26753e21'); +INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fca84eb1d50122698056b68515b1e5f745fb7a5e297fe58ebf854eccf31325d1'); +INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'ddf1e0e34f9111e3f7f8b06285872092931e51da5488aa5544963ef4396a2581'); +INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfe56aa04d359c1de7247e9248f50da3c39d13a1501131c9eaa268b04dcd0302'); +INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'740a8a0dc6ade66153575deef1796761608d2de441e577a86e354bd580920a41'); +INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'743e293c4cbcf5a41e72de54195d912eda8b117d3409c6248eaefcb96c5c2d2d'); +INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'325348a4f6d917b902c93eb11853f9c5081daad75fa4ca189ac0ab168b1465c1'); +INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bba14e60d2f6c47e80a83c4a653c6b2253ee0d8ab9c2ba906313cb4c85e4d7a'); +INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'28c9aff73772bf8d51509ea6f328f9c147873beaac8a031daea58b2b2b8dbe07'); +INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da3d1765159f5a1f1d18b145dd54c7fdc2ef4ef557a07bebbe5f72af0f80bf81'); +INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'4683f856105406f32530aa72934ae0e5fc80e11ab88d04ec823975ef8f9fb357'); +INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'792af9f34af0a0947378449af7c2941f13f7e7c37c34baaf094127894a2bdc7f'); +INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'10c2f5502efff9dcefe6a5f84964ec6135b323a9f7bf95b2c43f15d0a84805ff'); +INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','0739c4df82694a088ff5605ffef1250e3c832e46fd52021aa9929af8d7ea0cb1'); +INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','a2e94fc1e1e02f3380d1333dbaf836ed9e71efda883304e087f504386da01b48'); +INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','19e6737dbf959d0c4c34c379c710784ca56b3e8ff21b02432fd0a25c0c6de141'); +INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','e0e98b5d282051ce298a3e29cdab37b1ad2016999a0fa355cba335871dee0aad'); +INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'989c558155c8efd99369281cf3db69d9fdec94947224a628ae65f9e9ed366240'); +INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79f2bed15952af614701c745b20ca36e4d5914ad3c2121cc8b8e399db0879cb'); +INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'188076d88fc34736748d37cbf33aea994ae40867288ef17b7892dc0d8f3cde06'); +INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','174c693e54e8a7e3b14b3e6898e3acdc4faa39d6ef8f6fcd9f24c3be61a7b602'); +INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','9eaf133cf67c0f85959ea776d119a2eea5f62a14e22cb778f78caef26c7dc2b4'); +INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','48c2c4c34a8f852d5dffc7a1a44c0f560150b13acee747046bf98a0d948185d0'); +INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','7a21f74eb29ec41290152ba9e06de7d653ad1e3c0a7fec065e60e58c9d88c420'); +INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'aea27bbb55d21cbb91d700f71ed280398fa0c0902633658d0b42690262d9ae8a'); +INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'997c6d9de685d904bf7c3a031784571891ce436fd13773b603c3d1caf4aebdeb'); +INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'d1f6db9b4fac434d370be8126f888459f557876b72ab042b734a88c931d0ae37'); +INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9e063e0e54ae458a9c4e9d05dbaf4e328f0472c7be06ace4b688286e4763869'); +INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'4239b0e818eb157192fac27a4713e81e5d215409b9d375f998e63f499bd579dc'); +INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52420edbd9ea6e9c9dec49e0de5997c5592309822e1751cdd134c917fafdb57e'); +INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'87fba357c5e996226f7c5d50b7a40e8935e105a6e5ea41bf91efa8ce4bcff187'); +INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46e427fcd7a1a5d8e4c2f8f7eafe4619f7f975dd82c8f6211a60016a25d0355e'); +INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'9f3c1380ced45bd709a85870c99628ab28765283ba6bed51818ce8c73f7060d8'); +INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a5bffa603311b905f4ff5b0ee3116e1e3427f947a7ce9c5c07cae97dbffb2b0a'); +INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','51322de4241d1fc2b3f97a7ab2209b06255530f2f45982e6e6f4b80fd79b9b22'); +INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'4327db1052f4c8d0c2c70c58266298f04aea5af1627c9fae4055bbdd94e31122'); +INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc413ee91e6b38643f6758e251d3915b2e0b02e43bf9bdce2f142dd331d9d300'); +INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'654e42cad455913d8f00534427329c00088a448ca06d6ccf90fbcc17851fc05e'); +INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','a90246720371c9f5759ca13510c9da7673bcdbd1013e9092d93659fb42902b67'); +INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','5e23dbe1f13c627607d4a0aec19835fb5d5f378538b231637bf8c14eddfe4c95'); +INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','d88ca564ebcf4551253ffe835bf08e51213d59772f08a4b64e167ef5ce560660'); +INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'02a73b0af6ff144b34fd388cffab27010f006472d7eefec076d5337b4531e38f'); +INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbb763c7b607de2f75d9312570d070984741e7c096f1112c934765dc0132c5b'); +INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'94b98044cec023ef4c04c2fa85fca827a67713019f16d4b49d81bf78e83618b5'); +INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','91b1ece2262a10c631d5fc8b8fb434be3a770093873772a620f84cc3c666a6d5'); +INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','2883411bac65a84fb059c2a0a62f7feb559c79c1785454eb12fe03651852c702'); +INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','bbf8dfa1f802a00a1fcefe9592b7dc3e75b334b9425fc1f1700bfd0a1ebbc91d'); +INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'c9d3bde8bc05436ba8c9a490f058bc006173f21ead57467aea6581ee4d2801b2'); +INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd16bbc09a08c9ad2b4f5bb999a96c0f1d5d60bab766262fafb424b71a9e58b5'); +INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'4afe016aed001f429e19e2e098cf6b0c2f01f2b642a3e1affb486db876b1e408'); +INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','2f8956e74b2e059909b8c0367dd6500edd5e59bd7df1270079fe37c0e33361e8'); +INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','25fcb041a198ca55be29e146928f49b502a03418c18102b858219463a12eb6f7'); +INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'d11b87b8b455ec37f96243e45a53eb13e44a865914d9275c8de3be80a79f46ce'); +INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60d11b26f4f3d614917511166f40cd275661b91aa9864806e07af9845888ab56'); +INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'e542df9be2e0cef6f05091a2211e51468f344254118acd035fad38df2ab60e36'); +INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8db70722ace56ee70c9e63f16db216cfe1125dac31ead5dc538797d1a4b77f74'); +INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8263a6430182b6165d246726ae952979981332bc717fbd3453b77d01e0715bf8'); +INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','b0e6324579a40247f87dea9363d71137a37571eb7039a1a046a8451becf18bde'); +INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'8cc85d88963ea08974d322b29a833c065feb4eb8116508ced2fd0489182a9a53'); +INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89021e886bba03758d6b0bce278cdf9ea429b51d676cff1154fcdfe8c2241470'); +INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'9353f4676e0cb082d3079eb251a6b155d1536c9e82f932585ac488e6a2c94835'); +INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','03aa69bf3ca82119897ae3a5b9477a7c4ac72b4148af444850b37834c8d33c69'); +INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','49aa378af2a0de50b8552e0c7c3cba1fe15d604df7677d0ef063cef3c168f1ea'); +INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','a9447bdfb3fcf03aa64bf22148c68b2ae6bc709ad0a7dcfb2025d6bd6ea83e98'); +INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'c1d1f8131a18c13373ddc06ff9abfe95d8a182c85ecfbd28592423ae54962cbf'); +INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455ed495ecf3330ef327dc7742a5c0180f6d29b807e9bbf56ba10d84df88eac2'); +INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'b2ec7b13e35cf01e93e982d58e7a67c0349051bba748c92b720a74a55f478504'); +INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29b2c664d861b90d75821fb525d4b85779733d9bd3560555fcb8b74d09e3677e'); +INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','2c69413b213976a4095fa84431155767543593db31b274cdedb536e0d5834015'); +INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29c0c7850bfddcca428b7ae898fe88be7bf53f570eac12c6925a697a7c4554e4'); +INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','74eef0b2dfd51995c7c6d74c9d85ae0c81835f0dbcf6878dbceac7587d3c3584'); +INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b3e30c737cdab07772d9151dfbfa1b5a62e54ff544e6265f0d9ffb0f01aff9fd'); +INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'2b2f3bff123997a08653fefbe305bf9de101307246e895c4566231514147ebd1'); +INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de5106f57a303f7a219d4880e3fe4fb9f1312b53af5dc46832dd4087e4c09665'); +INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'2ee15d64199399ecaa85990d4cb505dcbbea47a0f7fa5b546420d20927cadad7'); +INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d65da0514bd73ca2d76086ca2d152a5596eefc81d51ea781be8706aa853096d9'); +INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','b0bd1b5f1506aae7e1cba5c22cbe7b3ad79861aea66179dfa10786562fdc8d11'); +INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'c2ab5e3d2c55612d69dcdd3125d5aaf1831ad3000f8cb5d5d2559fe057754628'); +INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b7632227d93cfd5f1659c3c28688cb9b5a4187368cfc8c3eb5d32ccf598753f'); +INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'f9a88798697ef65e8778c190421261d33ed26577341656e76f9e865b8bbba62e'); +INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','8b81dc12a96622fd1e5ecdeb62f8cfbda266950e5a08c4212f39dfae9bd2ead4'); +INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','2e719a6b4be4c8df66d77f22cea3f2df51d62295a7b2d6dd64649e78352b80d9'); +INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','22a1bf9c206307a5735f4c6cf34a7262c10a44f3e02fe36a6f26bde8818dc7fd'); +INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e99abe801cd9ba296c1a5d02cb1bef31de305e1dcf40ec0e8c4fe04d00dfb10f'); +INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','6933d8bae483e2dbf7e48b35597bef62ab7488faf6a7da2cd483579ed2e513f8'); +INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'140b6697da862d76795d035301edc871aeea1b2144cae55e6dc21989452897f6'); +INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed9684834edbc52cd92115fd645202ed352cc689465f821c1d00931ba745884e'); +INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'375d5b75e9401201c3cfa649c6737051431c04d4844f6b5dfa6638f350115ccd'); +INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','55d0c3ff21648bc078ba0f988fd4ddee6ecaf3d69d91249c487ce15f8c1e93fe'); +INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','81dd60665ff456a7ad3926d74039941e977cfccc8336c6ebfefe3aef08ba4e33'); +INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','24b5edfea2b3f132c97b45a70d2e4ac627a45dcabe8fa61f34ce65052364ec1b'); +INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','278ffe6242fe844526f578dd32df5eb09d3733cf347f3d8fdf0257dc071ac454'); +INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'b3ce6c4059ff913703950e12bab024781878b50a8357e4f6689a1d3b9935814f'); +INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c2ce8ac901907aa556ee787464b755abcfa225e339579d400752fb08c1c2f9'); +INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'7805a262fca1b0cbfbf8890bed02645e2c74bfbd29f884cbc63296902bc72445'); +INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','d64880428fc4cb1892fcd94fd920c8713c1ca407ac9e96df29f1e1dc90938ac8'); +INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','b8aa933061666576279d5a261e9925986d6dc04c28d9b94268fafecb75dc4b1c'); +INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','38ad269b0bce08f4dc625ce48d37aa650e92d22dc9fbc7ebea5be7b75c530191'); +INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','5a3567caee5fc75ff196a68f42216c98799de6c25af93ad84770034120601a4a'); +INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'8b3d452311fdcd9ce202f23d99dd2e1546ff795f06c4fd71dfef3564e9802e19'); +INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9d8a4da65d816e5d1fbd566746f7c93bce7dcca614833cdbe64a538a8b20bb'); +INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'0e4553fbcaea28b4ff1d5d5afc76ff759a38618771c2d0bcf1b8ec46d87fdce7'); +INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','e124ed9a91ce13d69b6f7c0296753f15943126833db83f43345bcc61395e329a'); +INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','5c378d66994434498754d4474b56b199717e38198497e23a5a758d9f3100c41e'); +INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','9e1f3f5d8ad3232c2d96569904fa43751a0e91c37391afd4a1ea008e044eb8ad'); +INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4ef09cb8d447c7d5d89876870291bb6d3eddd1271912b76ed102c169122a106e'); +INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4797e729337f09fd2e50798448fb2f550d2ec3e17fd847345fb523afe575be61'); +INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'830b461648e54ac39aefc077e93f2f244e25a1459a1140fa1f5ab01320a2553a'); +INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5ad6dea0a8dfe8d71ee6726ab62d77c29c424178572fd36d6d9547b405e505d'); +INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'a7fbc58e4979753fc1a3d09910e51a96c804af2d5a5b2adfad77af72d25a6f48'); +INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','8c11643a14032fa25f203c04db02ae293ff4451522359f5db2ec8fa84af2c829'); +INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','e4eae522a194e874a3c28df059a3665fc157db778e3f6e0edf28c519a328260f'); +INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','4ea31f1e918c61ebee3879c306e20bcc12424912565bf6523a78abc5de8bee85'); +INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ac448abbe8cdf694b27020c25fd4e9726ab5e4f2a3a2f544fe422683cab80099'); +INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ed811f5cdf70c06066b0393e8f5da43a7772398ea1ada8cfc7a9daebfba9a55c'); +INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'61e07ecf01fa9096c0e36a9f093a35538edbef348ddce8312355c2e8b0b106ef'); +INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07d7840ff2b17b72d39740abf7f995aabcf1b6976b29e8a6455a2cfa2babd3dc'); +INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'e81e86c05e38b5440448a37363f2bd65bc888418bee40a81504ff19336983863'); +INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b22c5137782dd205660cf3a350afa1a6d25f86b05a02e23e622ec7cc70c37799'); +INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b6a36225ef6f14e0762544e25c96f87686bb0d5d56e3e166119df377b80034f7'); +INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','2f85790bd3b93ff0fcb88967c683445ac81a7c2f94eb3adb485680cb48373093'); +INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','5df267db63bc6bd6795671b9a06d4e244869a4edc9e984cf74c75ff6a9551f06'); +INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','6385d6652354d933814cd087b3f500fcd8d01de83d4844a26ad3746e7b97141d'); +INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'e4a8266ea5b9f8395a9a6d06acdeca74ce08af8edaff0bec7e5eb63517b5239f'); +INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32f103bbc4cba8e3d4ddba74e249d07bc0ccffe26e249b6e869a89b6edf6f725'); +INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'8cc059b18fcb061b8011d64363a9352b35f14e6c99a9c99a974305f69751b896'); +INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','dc4a12ce05a0109732fae42394af626545aee14fca0cd8cfd7380246ac0cc4c1'); +INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','93d99ee2945e66203aa7031be1f22f6221ee2dd4e7abf419cdc79429ef49e627'); +INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ad5b97831ad3447712847e1cc33c95f8d26f240f1aed729ee0d781f742ce6a63'); +INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ead56d663cf0a731b0534a0d0a90f2b4102a911043d4d82fadd54c5b4eb0a0dd'); +INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','23523f9c0be3e7086e64e60dcacb0874262b85f5c20a64d9d9890adf77d43c93'); +INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'51b4a2fa820e516555dbf949fd1e7c08ba3c972bccbf98aa1d4769af9e4e0d4b'); +INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d483acc65a8afc1c8df9fe13c0ffc4c0aa961b13d34be2b205a5aeafb38ab0b'); +INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'038edc64dc9f33e3e3025707adfbeec7e69160f2d416af7b8985eb26814bf3b3'); +INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','681d69de170d6e916c2cbcb765d10ca301d1d37df2d808f7fdc141e23bc99a21'); +INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','af1c038513bbccb7f1534c4da478782b64bf1c9fc372c8e5c70e8a1a0f3b4593'); +INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','cec502417f98df44e8fcdbe6618109fc0f1aba2825c91ff9e357d0e17c088b79'); +INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','c0a601a9e14f5644b3f40434cf7f5c1ffb7f19da2c26ca7d7002aefb13e6485f'); +INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'3a3ace40af1364342228ef64500780e7d5624d3723bfb1083823cc21eaa9981e'); +INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40ce0a6ff3c55a6b57e623237baa42321d035172e942ac11684037c941171247'); +INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'09b826ccd29db294a46173a808735c28559d7d3332cd159c83df4f6f45363874'); +INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','dad4537919932e4b2e105f60646099439ce15c0fa16b3ef9d67f994997ccb787'); +INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','06de89ab597c41aaf8e29896a0524a45c69459d339cd11f43fc1d787497a2352'); +INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','2ee3794483f6e496f21cddfff7fa6313e6dd21c147f78f3dafec27b3902647d4'); +INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','51915774e48410827f5df365d0f7366e3989f895cac7b45565a77a95a79a3567'); +INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','f44ba9ac4612327a02c51ec97a750cb210ea4bae1925e74262d69e47d9fbf58c'); +INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','03c546607baade42816d44358a6ac15198778d57aa5a92d4e4f1724bf13a5728'); +INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'b7d44852927e24df4321dbb8b04b903e686c1f17b84683c6148fb604ffcd3c87'); +INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'474a77a500aa600e4bc9c67508a8b3de1a070434574b87a9d25a8309ec05867d'); +INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'548b46181af0c946fabd4dbee31b85f9cbc482fe518da8a03bd6cdff345cecc9'); +INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','d08401b431da4fd05f7141826e06b9b6edc2f2eac7a80aa14e2c75a92bf3b731'); +INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','92e7f9f18a34ef2523550b1c9e71b08d674719c0f3f19638dcb2a13190eb522a'); +INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','5da30e150c16827b6a48d657901f9c76b1b5e3c88f08000c56efa1b1c2e2346d'); +INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','e40b26ca73ad0c30921231342077eabf9ff18d7a0e99ca5b8be35f16d4ef4ae5'); +INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','69eb4885bda1ca9cf01db3cc4c89e5957da1641dd4a3c86cbb2a8142dee35803'); +INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3b0458356a2d03af89e8efece607ae0cf0a4031d4b9abb6629cd48d2e4fdf324'); +INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'089a79f8e189b0b30ab30fb32247d87fb75ae5f7be5e95afbfaa28236bd7a22e'); +INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fe72fb37d670513f545c9999f36f4d234a18a2fbafc1b6c812d571eb6157194'); +INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'b43588348ea210a11e377d3c70afa2cd56c584658eca5e4e7d3ed55fa9f2b976'); +INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','58cb9461bc0d889ebcbc3031245c3fd40468c9c7252506995d8adf4739d269f3'); +INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','2cdbbbbcdbdbba080a44dc45921170a7fd8e3b99d301a858f41abe866accdb25'); +INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','5c6503d88ee1450f6aa0aa13aa8a2215f3967bcbdada0e535d4eab79095be0ae'); +INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3f281826ad154629c47194ad75326a52b403e0fc0dc5618b2b5aec3f0cf4083a'); +INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3577515ee92f2a5d1c15ef39a6a845e059f57690b88b04feba62c6dfaf33cbc0'); +INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'a9409d65f16728bdf19aad8e066f5fa1b54303ec6994196b4bbf8b2d6ab44f8c'); +INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3318a7245e093723ca11cf73652ea9a4f410ed5b37544108be6e97bee4b7f800'); +INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'0bd7ba3f90b37ab1cdedac6e0597f5d1422af7e1cb38dfd3669ae5a51ea657d7'); +INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','aef1ec7c14a6be4b4fd99e33acf023e4a52dec6a2c66e5f4f39ecc1d3afaeee3'); +INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','b0d0ab9754b61d9fb63eee90acb96f18e6c78a0a2c4f1f935048720194ffac7d'); +INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','fde181f74b5fd7da901f9463cf0a4f4b8d56fb2e93d37a2c552f58481a2758ca'); +INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c6dd3c2ced8fe87a761c54f7b2a5e4ef0f53062f4fe365af99536b912e23afff'); +INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ba3a7011f1de3fcb8cb951cd3c607a8e464884bad6b8d204e412b83e9726bbc3'); +INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','91bb753e5136c757b48d7b865426d8a2e11ab1fa0f84ced6695fb6cf6c1a6f1e'); +INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'7134047fd69370a504a667f83b09b68629fd2d9be748c95138a404e99b3e30e3'); +INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e665bdb61f7e89bd9bfa8d9b85308c84a89e846a5d6bd22f9cbd882fc77cda6'); +INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'aad52d1e230229d875080942ccf61b01ed73601d408d07a3ca51884a3c64ffa9'); +INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','26b9a011941780ee87a02f03b3faca5c657f6c83f15777d4dc4de6640d887e57'); +INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7f5d449b23d65bd3a9f04a5251fbab4485c60aa2c3dd82e85128667a42240942'); +INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e4b59bcc6416defbfa6cd7eb4088109fe29ef9e80606f17d5474823ee20a7657'); +INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','12db13644a58f885058aafead3ccd7aedb7e28c28c1b3c24119105c91a182924'); +INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ce4f3df23178cb3071b62b7e93238902c7efbfbf8522634bd6e10616946f55de'); +INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','23d2f1594063fd9de06cd1afb225527b5926e43c2a409ed16b54563c644d6825'); +INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'13d8d6def32619d8814c5b059aff533ac118873e7cc66a9247e7d35c56b4e40d'); +INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de258cd8ad734c4390cec947c6a29631009286cff8bd97c162ef69fcb3cf804'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"657c5843507c313030","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508,"utxos_info":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0"}',0,'NEW_TRANSACTION',NULL,'40189d3aa6b2b5fffc0dba9478c4909440ae7b3a6127578dbcdf71221369643e'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','41b769258aea3555a9573b5aa50512049affb70cf06d7e8e76d804d60ebca021'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ASSET_DESTRUCTION','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','a841258d7ac7ad6eb959c75a3f0887a1bd5d3cdc4a230dd95f8eb690ebc3b8aa'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','3e4faa82b80b52912a7d0a78c5087840f995d74fa7352a75f975e1d9ed8ac99c'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1295430efd8fc49c1f1dbf842f12081d34298e8c391ce68f53fafcd7fb8a6845'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','440ae37975a9a0e77670738e2e822a152e290ade446d4f0ae14f705e79ef1513'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ATTACH_TO_UTXO','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','59e8466cc1d6ba7ddd255fd25c6f9cdf4474a9a279fd0574059368a34d7bd77c'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'TRANSACTION_PARSED','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1c47511b1a00f8649bea976b65f73a2377017fb17590942e0091777d0de01fda'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb","messages_hash":"072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c","transaction_count":1,"txlist_hash":"bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160"}',0,'BLOCK_PARSED',NULL,'d2629645f6aa3811017ecdea5645d91bba651aa1baa541716d5619daaaaea241'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b231b5ab7c971655219cb735a8ad330185c6d98bca83cdd73e430ef16484037'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"657c444956495349424c457c31","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509,"utxos_info":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0"}',0,'NEW_TRANSACTION',NULL,'af6465607af0d6fa2be32333e658c87f5df64bd9735a35a900a012d5b8113e28'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','6a302f284aa2c92002444f27bd4e60ee7396d149465850e7fc99f4bbb413409e'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ASSET_DESTRUCTION','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','8f341166c8692b21471683ba7b55907dab24e006be24ed1af0c9bfc23eb73ff4'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','e0cd9b228b17ddab383b7041233479aab40947c71468df5fd591cc5fd9942211'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','7764a34696a2cf809042f1bfd4a14eb0be7d88aa3f70736ebeb56ed68267c34f'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','216c789bfc932ec2a8bcbc1f42792cdaa7cdcf58f01b87c920046df39a8bcb60'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ATTACH_TO_UTXO','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','73630cd10004b65a0f5d9f43c0bc5881c1d846633439b44b420f9699ee6f1dbc'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'TRANSACTION_PARSED','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','fa06541a3220929312ad317fb8dc4c06f848ced4fd8b160d14f6ac45d3bc0c05'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31","messages_hash":"9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4","transaction_count":1,"txlist_hash":"a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9"}',0,'BLOCK_PARSED',NULL,'9678a9538837a267d48a7ef1aba63439e2c35626a1f70699533cb3acf0cefe59'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc6cb5f16c44801263f2fa247ba08cbf8df197ae4836076dd18d8699fb6e1134'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'1e5e33abb03bc4f8996bc3374a9fb0485804806274ca458d5aed351c1a84910b'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c61dc4571d8bbf06879c94f4bf286c0bae7d8866a759aecc62f18f4746894949'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25235c50f22b2dbd58cf65c89177c13a2da2c7f66c528e6724c3b52783f0c2b2'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c2c58989167603be25e187864a5722ac5e57c2d11cc3c6f5e2760d2040538104'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b8a68feadcb8197558ae61da55ad065e677fc80126838101a5224b5f453481b7'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a78db4d6355477861351299d27b22cb942e31ded46f392db8148f3c0d0bce984'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26","messages_hash":"3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2","transaction_count":1,"txlist_hash":"88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381"}',0,'BLOCK_PARSED',NULL,'6fc1dcf7b1a79eaa345595dac82191474af13bed1e586d2e1d9aac6b2fab11c0'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59416a3274cc33dbd86f81271bddbe3bd344abb692b33d2759d919da7a8371ca'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'3946fd5fe7bc2434d21875dcc0934b19d2a75738a9de088702fe0c9b11113e01'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','8c209bebc10e1141851040e9fbf6344910e9d3a9204b1d606dae9e1e13c9133c'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','e5eeb79cc84a19214216a1b5b080f90848f8346a475daefde3b3aaa5b347bf33'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','9b9d78e92a0e5a0fb34df940b73074d5db7795fde3937454a0006c019e0920c7'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046","messages_hash":"dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677","transaction_count":1,"txlist_hash":"fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4"}',0,'BLOCK_PARSED',NULL,'bc5bcab54f83764e93e050c513cba3635a48ce7552c307aa69a8e7d3532ddfae'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f10e16c35c0e09ef85fda55c814f2302478cf9956bedcf1ca47fdd7825a67ddf'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3","messages_hash":"fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087","transaction_count":0,"txlist_hash":"57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327"}',0,'BLOCK_PARSED',NULL,'6d15492b17a9f91df4a6058732786632ac961be855953bbfd1d4ce25ac2dc450'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41769a3e3e2c11c2839ce1735486f92083665fd26904409fe5e8ad07985c27ab'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5","messages_hash":"2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc","transaction_count":0,"txlist_hash":"5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9"}',0,'BLOCK_PARSED',NULL,'98cc42d0aa64a93d54413d942f62bf6c92420f9402af3f1ecfc275ceb4748ff3'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b30b6a5e3c6a27c552028a2884baa9ec13dc0ee429d6cc4950bd1344dcf6d3'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9a79bd7a18a72722c035c77fc57ccfbc3f91b00c6d4da47e2cfdb5f6bddc76a1'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'93832c9fc472afca9674a31745ce2cb8d49cf9ed2bb8127d875a5bbe49e3a4f6'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'05fb1228b5476b484ae3cc938da689c3e4caab604e94fe5d44a406973f4a5e95'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'a361939ae25193e65235dfc27b1b682a09153abce6786df5131974554a4e7015'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec","messages_hash":"912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7","transaction_count":0,"txlist_hash":"ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed"}',0,'BLOCK_PARSED',NULL,'159db4a36b5a0da7d78f7f805239e66f92cdf2d9353a5d3b86e54c37c812f67f'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4d343e151b987dc6cb3f315bd8559d6ddc5f3aea4204cb0905a214420019902'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0","messages_hash":"454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c","transaction_count":0,"txlist_hash":"deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8"}',0,'BLOCK_PARSED',NULL,'174eb2be50e64644ab043c3d9204167390489a7072710331b2700797a44b5036'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f085571a79437e53c1b4802b1ae2224ffff3df7a285b26b0502f291c40468bd'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868","messages_hash":"c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798","transaction_count":0,"txlist_hash":"3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0"}',0,'BLOCK_PARSED',NULL,'0b34f541e4e2bf9b995863e5393a8ef2809f5f860e3220c57e1f029c757ad7ee'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb53df583ff93842fad024a1e38025fe1cddbe5f00a81a12ef42fdf2cf563e'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc","messages_hash":"87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392","transaction_count":0,"txlist_hash":"12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f"}',0,'BLOCK_PARSED',NULL,'22760256d6e3dc90517357e5a23e7627a27653a74efdc5232ec4587c2752d202'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2d929ba7aa948c2e8e43cddde4f43bad034a6dcd1466ad5a800e7e57790fa62'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4","messages_hash":"0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d","transaction_count":0,"txlist_hash":"f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e"}',0,'BLOCK_PARSED',NULL,'38b02763d65cb7583eee29c6b140c2fc2f094c7c9a789a73f04c2253b2776f12'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efc2fd09ba6ce0b886e6e21c8e2172fb231d182c6d333aad4dcf273bc52ecb2d'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9","messages_hash":"f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51","transaction_count":0,"txlist_hash":"2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5"}',0,'BLOCK_PARSED',NULL,'8fd56d2ede04e6329eba4c030faeb4419db543d2b7fc8b5fd1edff95519c4a17'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f809034fadceee042a9e64736d0b950ef36127b69a08159894eecf2e59c86cd'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83","messages_hash":"18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456","transaction_count":0,"txlist_hash":"b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659"}',0,'BLOCK_PARSED',NULL,'4c53ccf9ed509f1b00a5e22eb766440119338946abd8a1993934e6049e1e6600'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43cc92f61a33184c4fda3f0ddf846da35bbb442e0dc77749e49226b0a917d196'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'89357a1cfe2f0e417b38165d8dd05e5637b93668ac705911c85fc7ca29ac23ed'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'d974638b0e8649dd7a05d60324af5cf50c280de2f9d6ae8335b9132ff34a6ccf'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b0704aa240c24125f4493e3fc45f227922389ab7c714bba431feda9de079159e'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34cb8da66e487cc511ad20680c43f3530a6ebcd2118c8ef9c075ba3d3bc793bd'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'559b2f40a02a8b8da94d4fd7c27aa6bf65aa55b074f7d91e6d6f64996f367103'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83c3560803bc69000e9074ab9e2c9bf2efc75c04850ed0318e3cf7c4bdeb5d4e'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'e5a429c11129a9375ce43752a27b2ee471efe7fbc5d1a37452392e02c7da3889'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8ec84a8921e1ec43057825e387e3e9ea8de4984940cdc56b71096ef2cd50f07b'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'69e9b3c9a5c0b7930e6a63e9c0dfc976f6d415cd1e55041b6ef1780610ab682a'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002","messages_hash":"fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599","transaction_count":0,"txlist_hash":"0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673"}',0,'BLOCK_PARSED',NULL,'9e5a3adeb9eba7d1e133b2c5812d166d6acc84731bccdd77c36a550ea7719246'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd2168088bb7b799efb0c044aecb0a6e2259b2a117f22a4807a24bf9ed3ff39c'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e","messages_hash":"c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae","transaction_count":0,"txlist_hash":"97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0"}',0,'BLOCK_PARSED',NULL,'f921a493a94c7b378dc6a0a5bfc72ad68b3b4025343d70a67a5835935fce0486'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6184730518b9c15c0972b129a6c4287457c103374bb0338ae26bd16d998ba3c9'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81","messages_hash":"7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6","transaction_count":0,"txlist_hash":"37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead"}',0,'BLOCK_PARSED',NULL,'8f0347f4927f475ff2ad3be8692476021ee77a4fa073f681b878b44d42648013'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba33fd621a6397bdc1c58f41f5af2252abe6882cb31c1f7b647f2e1d1ef6b3a1'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840","messages_hash":"5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c","transaction_count":0,"txlist_hash":"324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333"}',0,'BLOCK_PARSED',NULL,'9cb8dd77f9dae2ccafd6a31f7eb1e7d4f39f5e36d6a081ba6742ab0e0c926c2f'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8aed22222ba2051631f3127dcec9c590b898c5bc0de522a5b0b7adb2d4fa1d8'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97","messages_hash":"fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f","transaction_count":0,"txlist_hash":"2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f"}',0,'BLOCK_PARSED',NULL,'931ae73e302bb74402c956ab3c4fcbdbb5f97c8ce914a4f955a7142bcd961076'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa69e6d6619062f2463e79f0fdb171443c709fe2bf275a07cdc5def79516744a'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd","messages_hash":"6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe","transaction_count":0,"txlist_hash":"de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f"}',0,'BLOCK_PARSED',NULL,'534228770e1dd464cb7e8c17d7550a282517a756eb378761ef06cde56bbe37cb'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b96a840bd4bfeaf4ed4600a8dfbd565740634b2de257434df5d965de916125a'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855","messages_hash":"7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d","transaction_count":0,"txlist_hash":"acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373"}',0,'BLOCK_PARSED',NULL,'99b986c2b627fae162c9d8e2648842aff3a00aa1af1d1c8a08eca887daa6b997'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20be16c569014e1a3d211d221c91c888bd70b272ae901cc5ed2e12b5b320fb1b'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f","messages_hash":"989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123","transaction_count":0,"txlist_hash":"e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283"}',0,'BLOCK_PARSED',NULL,'4bd0adae6e8743349e164c3f50c8623df9b385abdab918cd97ce595d007338dc'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd9b4599612aa14b58cc6f90a21b17a02976e1b5794190fddbfa62780239ad00'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac","messages_hash":"69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7","transaction_count":0,"txlist_hash":"ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c"}',0,'BLOCK_PARSED',NULL,'8cad207f38bd9d04fe437250ee9913c0cc6ed9fd51e9eb3bee64213923e5dd71'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10ebc7b843138a88e9ec35b1d4cd3aa645ccab9c4ad89ac001e5705dbc2c2a03'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6","messages_hash":"bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92","transaction_count":0,"txlist_hash":"d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a"}',0,'BLOCK_PARSED',NULL,'36ea6be7c35b3828e0ae5482b2bc8320c4e90dd25d2eca47e2baedcc2224af85'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbfd15e940be58d2647a267e9410078612f74b9d8dc9410db11da351183c0044'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a","messages_hash":"70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3","transaction_count":0,"txlist_hash":"2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5"}',0,'BLOCK_PARSED',NULL,'f915d2316da02939a25db99118632b1683cc9908db3160cc93bc8da9aae3fbbf'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9667cbf006d947a0cbff5883472443df0fea8dfb5c103cc8e54f42dc61f2907'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff","messages_hash":"942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902","transaction_count":0,"txlist_hash":"b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be"}',0,'BLOCK_PARSED',NULL,'20c0f226fc9694440886cd8356087643b5e81a59f24443feb976977ec6f01df3'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49f4d90ea9f2906b48afa8f0d25d9c34cd0cb7e102c7362d69dbec56091bb8fe'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53","messages_hash":"4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616","transaction_count":0,"txlist_hash":"6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f"}',0,'BLOCK_PARSED',NULL,'da64c018b2f552040718185f36e9fde6cca5e1e0a3dc986bc20b41c9d551ac3d'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bde28fd698f0744db660a83ba521180bc52382602b6ec475b8828d649ee518e'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1","messages_hash":"6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240","transaction_count":0,"txlist_hash":"c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3"}',0,'BLOCK_PARSED',NULL,'27413698c6dfae3aa142b33ab2473e86a64d9c179670f36796a8d9b93f035b4c'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc55d9c7dcb61ce749d45daa2efd446951e60723dcfb1a632f5b88505326a6d7'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1","messages_hash":"9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6","transaction_count":0,"txlist_hash":"a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76"}',0,'BLOCK_PARSED',NULL,'42a9f244fadf298eef10cc6bc056941a71a9e6384399951587f23e67bed2625d'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7948962501b092597137e19d82fb733252ceecb1a69e3f4eea71bd26897b159'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede","messages_hash":"bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2","transaction_count":0,"txlist_hash":"da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d"}',0,'BLOCK_PARSED',NULL,'b2479703e2f62499293ad3da51cb53b5124772cbd008884659d2f3e8a006fa64'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81904b2a14ade2fdb363bf78c07ad7be7cecec89cfa5bf37af46eb8b18b6b490'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114","messages_hash":"a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f","transaction_count":0,"txlist_hash":"c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6"}',0,'BLOCK_PARSED',NULL,'e9766f1b5822cd1f38754261eb0f3c7b2a49d29ce92b0d68593e7f4196f5263d'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e6601821ab4624cb5f76747d2058dd99f15d81a6f9a499ef749649bd12d9063'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4","messages_hash":"4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81","transaction_count":0,"txlist_hash":"1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12"}',0,'BLOCK_PARSED',NULL,'e5d28800fae35023dc91f36b5f27c5ac8a0baa40f0140566f420c7336f13d291'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c1b18714bcf50efbe89b8c85fb825228706383606ad90ce1304aa6732fabc38'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf","messages_hash":"16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257","transaction_count":0,"txlist_hash":"9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e"}',0,'BLOCK_PARSED',NULL,'21370c180841a87bf5d5fdc3ef65301303ae583047bbfc187eec1fa7a6170b41'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bb0917efb321ead38b8d38db52dd018ceaf10d934cf08210e650f63f1a66c76'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e","messages_hash":"5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88","transaction_count":0,"txlist_hash":"3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419"}',0,'BLOCK_PARSED',NULL,'1b46861beb97babd42b4f9e52d17b770ba06ba8492f68b3590ebedea2bc9b067'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f270b773b122b92998d394519b9a86b8f7f350837f5e55202f1a94eef7b4c54'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c","messages_hash":"b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd","transaction_count":0,"txlist_hash":"ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1"}',0,'BLOCK_PARSED',NULL,'77973be179f29ea78958d6a7a7886ef2bb5af1d29f1d0e2e48be05733d8335db'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52944f721a2f7b5c9c6331658a109c86f0dc04963c9ff87a37a9196560c483ef'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083","messages_hash":"6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233","transaction_count":0,"txlist_hash":"cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380"}',0,'BLOCK_PARSED',NULL,'3160cd1a8dec5b50a4879b4512d60fa6e683c3c2b820773545363fc3067257a0'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61f8c28ddcaf471a0cb703a4e7d24601ac624fb6d7a6c04c6d7a9153467b859f'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a","messages_hash":"49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5","transaction_count":0,"txlist_hash":"23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b"}',0,'BLOCK_PARSED',NULL,'a41aeaf50a15ad6c70cf3d01e0d5784ef2afa280cee0b7d0a9baefde06c7c7aa'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d48ee1d55826a9b1f406221548f08a041585fdccec1786cc9ae605207d8cf86a'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751","messages_hash":"1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545","transaction_count":0,"txlist_hash":"1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0"}',0,'BLOCK_PARSED',NULL,'1c16d768002c5b2325a92f73a804a07ee4a5c869d7700a8fcf9e543b3a02d683'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d847c511b5b885292e5b0d72e3f92e81f0e5376879767df3599abf549018c7f9'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4","messages_hash":"2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367","transaction_count":0,"txlist_hash":"a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c"}',0,'BLOCK_PARSED',NULL,'05ddac77de1cc4a50b81bc2636cd96e560ca1ff298481efccbae7774e88c1971'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29d415acbce2a633035df169780378813c522cfd043ebf5ee36c12f2ac635413'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c","messages_hash":"5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf","transaction_count":0,"txlist_hash":"2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce"}',0,'BLOCK_PARSED',NULL,'570a9151405aebd1ac361d5020d5a9c1c19c489e5cd78ad2846cbe516a0781e7'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03b04f919e65f2892a4025cab3882d235f2cf4cce2c218e29da58f87cae2190a'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a","messages_hash":"4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a","transaction_count":0,"txlist_hash":"3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3"}',0,'BLOCK_PARSED',NULL,'a9dc370ea27654b4068b7d78a80346d61aeab8401d9320c87bebc2c67c04b417'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871f0ac4f29499442afbe588bd68437d25ce4a835d0bc9a7e830173cb97fe984'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e","messages_hash":"b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30","transaction_count":0,"txlist_hash":"3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d"}',0,'BLOCK_PARSED',NULL,'58eb4b84455197303bc293664150f4908f710e3a9022aa6461f1c42b5b91733b'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514f7b67fe26bec41f0ce91fbd93c1c95283a304c06f1c1066850a8d40f14e4b'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14","messages_hash":"c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd","transaction_count":0,"txlist_hash":"cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db"}',0,'BLOCK_PARSED',NULL,'060575fb5ebb7fa1ce46a045ff4fee222d528b2427680c9c1646cf21efefb093'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fddb6a18716b8e8703a3ad4a02eddc3d017b8ba3f5df9eb7f3bf663c47bbb76'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661","messages_hash":"489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0","transaction_count":0,"txlist_hash":"7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801"}',0,'BLOCK_PARSED',NULL,'73245f2db364a98b7bb030d7bb3982ce13d14e7163575689b0525f249055406c'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e8c41aa14da7f29350116ef9d85100e328caf98515469234ca93630985af00a'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956","messages_hash":"4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0","transaction_count":0,"txlist_hash":"c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a"}',0,'BLOCK_PARSED',NULL,'5bfccbb9cdf4decaa2a504460e8e04ad1b62f87861c550fedefd0764336d5f16'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30a30f902df395ad8b134cfd452bf7896047402a28e19713babe19feb67de55d'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545","messages_hash":"6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1","transaction_count":0,"txlist_hash":"82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f"}',0,'BLOCK_PARSED',NULL,'5539892a540296d585b38ca5dcf4ad81319adacdfa5085c1bf195e7c250d4b14'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'240e410a99f182b7d28526228a61506560048322ce5fcec4db2dddb9414c5c57'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05","messages_hash":"dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23","transaction_count":0,"txlist_hash":"ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408"}',0,'BLOCK_PARSED',NULL,'a6d89c88f276ae7806642ea52e06abc7f1090127fcca8acd29d32cf9e11f91cb'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7859d66d3b9f46834e30de55b93a73c393b68f279ec1fa2105ad38da004ae15d'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e","messages_hash":"d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d","transaction_count":0,"txlist_hash":"67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f"}',0,'BLOCK_PARSED',NULL,'9361441ecea89aa438373a3004f4f8829882d0ee51e34e2c84c48b1d00f7f967'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b8a4b08439b30f33e25ef9b7e11b10efe3f05397b5ba2587c8ac67d7fe96f9e'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66","messages_hash":"08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7","transaction_count":0,"txlist_hash":"36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4"}',0,'BLOCK_PARSED',NULL,'35aa91b8d4ea548fbd231adf15d0b9f9f37737d94b7ea9b316dfc2eb0b47b5a4'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0c248fdca9fd58cbf097ec7ce37dfc39fe912a08d4cdbc6706dd3e25d0b3cb9'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05","messages_hash":"8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1","transaction_count":0,"txlist_hash":"d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b"}',0,'BLOCK_PARSED',NULL,'31c5898c9d48965dcef3dcb47f9548ffe47c91688399a6e7278cfd059ff37af0'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f4eb9d1b9284ecd25d0359fb66c3c592fd88723f27404bb3fbf1fa391a17361'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6","messages_hash":"7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c","transaction_count":0,"txlist_hash":"9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4"}',0,'BLOCK_PARSED',NULL,'e02d52141f7195122432aadae173d81dbee5a21c61a914c1363853aeba05e84c'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d152a68b319fc22fe1ac9779c31b5546a97e93c2f919ebdfaaf3a0208218fccb'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43","messages_hash":"64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f","transaction_count":0,"txlist_hash":"54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28"}',0,'BLOCK_PARSED',NULL,'5058fe4566a10c6160ad88f32933ca088a21af910ec2b83593f4156a62c81fe5'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1497132139ed16bc1d809ce0ed53b318bfc412c5eaba47823dd5ae7b9f12bdb'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c","messages_hash":"760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a","transaction_count":0,"txlist_hash":"9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b"}',0,'BLOCK_PARSED',NULL,'9b1026dcf05407c7ec6896766e5f81e78ef0717827ae19cc4530499943d03701'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a598444fa23691f07328d5f6453396adc72cd8557d483f7574ff7ec2de2f22'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb","messages_hash":"3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30","transaction_count":0,"txlist_hash":"abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd"}',0,'BLOCK_PARSED',NULL,'1021b22c1ebdb918e54790f134734ff125a7ab650372bac64661b69a737fbad5'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58291f653caefb236fa8f91a3414e0ddfabf9b3d6b44dac8c9ba01c077a25c52'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2","messages_hash":"8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677","transaction_count":0,"txlist_hash":"7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87"}',0,'BLOCK_PARSED',NULL,'ac8d999ba99fcff1eea3467e2f29365201a1045e51557c22764a32c915b90dd8'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9cb9bc1434c29d13edba74170fe6445ace485279fbdb42ff25c4ae98c13a0e'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca","messages_hash":"fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109","transaction_count":0,"txlist_hash":"714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818"}',0,'BLOCK_PARSED',NULL,'6e7d9fa4edecd38dd4f08975c8b5b755e2c74a0ccc6f3576c83dc8765e2144b6'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9299c29a5c63c3fa17f5f7b38c018ae88c1464e735726564768b08d79508aed'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c","messages_hash":"1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076","transaction_count":0,"txlist_hash":"b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17"}',0,'BLOCK_PARSED',NULL,'569221918736d35953f4eae6235b2f9438851099f2e895cd5718261dc3ffc84c'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b884267b860054c3d6fd12bfe6ea232b74e35abfa21be9d6ada306026c1b391a'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034","messages_hash":"80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751","transaction_count":0,"txlist_hash":"470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c"}',0,'BLOCK_PARSED',NULL,'bdca01e27359346e41476edd857d9d9dbce53a9a3fa7f83cf2e68abbc39fa392'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229d3618d9fbcb1f351a5c78fbd32fbd22d971b4bed64579a3ca6b75a00aef65'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf","messages_hash":"33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756","transaction_count":0,"txlist_hash":"9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88"}',0,'BLOCK_PARSED',NULL,'3c0d219511f7c8af9fe3531a61c1accf59349edcbe5dd01fa89eee932bb0d6fa'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d43b19d609827cba675d5f509d855ff361985cdf7d79b196742d5e8c450e7f'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091","messages_hash":"568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771","transaction_count":0,"txlist_hash":"8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6"}',0,'BLOCK_PARSED',NULL,'e464e976cfb72ddd321a016071d24f96dc8faf3ce56ff098fb2073804d4af423'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9df36923060c4923e701a8aa3e8539bf03677ae794009af3e91b769d8c3394ac'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911","messages_hash":"3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde","transaction_count":0,"txlist_hash":"504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d"}',0,'BLOCK_PARSED',NULL,'ede8935fdfe369cd953052baac5c7fd8a4e6d634610ff4e6004b863a00f31ff7'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bfb73f2574baebee03851982d23d0f71c81313b47779f5a192cc367f830094a'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f","messages_hash":"8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e","transaction_count":0,"txlist_hash":"1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea"}',0,'BLOCK_PARSED',NULL,'7319d39fa76d1c89623d8d931d1463b8b776a3abfdaf32489395b13df7cbb636'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aea3d2f5f3e7f74cd0740e570fda1e0db3cce5a1791f872a4c5445de42a3727f'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb","messages_hash":"037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec","transaction_count":0,"txlist_hash":"4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c"}',0,'BLOCK_PARSED',NULL,'6bae4e66e578fd7ec616b3dcf9a05fda17beb47786b94399b4313e836a6d5e82'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd5f7dde9fdf2961868d24464f855156619edad9a1803d5cf454b2ad6e40b7be'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0","messages_hash":"dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba","transaction_count":0,"txlist_hash":"8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b"}',0,'BLOCK_PARSED',NULL,'a8a200105e063f3590cdb631f3f741db922fc2471dd3ef240912d90004c03b32'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52b81f557452d29c99a51e0b44122deff227c0fd08fb983ea328436557369b75'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d","messages_hash":"fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009","transaction_count":0,"txlist_hash":"54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c"}',0,'BLOCK_PARSED',NULL,'e1012d2a468b63d1380ba642bc8b5fd748355473a7bed4c03365f57e3f33df7a'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4b60d2b7dde7dc56b3dc41103626dc54733ded79ee296249db03f276c9e0c8'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15","messages_hash":"22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b","transaction_count":0,"txlist_hash":"5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f"}',0,'BLOCK_PARSED',NULL,'0034d29ec1608c516ef5c81cbc5d1e6def86b8923e62d7019a7601aaffc10324'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64d28567d186aec9900c01728016e7fe5d013eaed77b103bfdd475f53cfb96e6'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5","messages_hash":"986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490","transaction_count":0,"txlist_hash":"559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59"}',0,'BLOCK_PARSED',NULL,'7bc65768025981e0c797b5f8dd8c3b5ee5dda7b816c9a36410eb0f2d443accf3'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0874350cbf0f2f1d472ca7d481157413b5b8b5d79c8e3410ef7837bc611c83b8'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a","messages_hash":"1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca","transaction_count":0,"txlist_hash":"aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619"}',0,'BLOCK_PARSED',NULL,'f3bfa57cdd6586ebadbffb0121c6f50a13beab3c02d70ec76d1e996baf4cce8b'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77c30786eec490703dbbe80d3878096f828b190256ebd553aeff849506e6e6bb'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97","messages_hash":"a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136","transaction_count":0,"txlist_hash":"41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb"}',0,'BLOCK_PARSED',NULL,'9f8d158f1fcf90e7db0c76dc85ec1fd77b7e8b9a84f5a1b8e4609a2ae916cc62'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6492042b0fc3aabf3f1ce12a18e14b06a1101da094c9b0e62ed0779e93d9555'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732","messages_hash":"1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d","transaction_count":0,"txlist_hash":"9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e"}',0,'BLOCK_PARSED',NULL,'26da37d9c53c65ed9523531a6b1b7d530f00de33110283a413fe0e72252be9dd'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6587084662caca5170a7e21033134b1bc8bca3b38d5ec5af673570c6fcbbaf6f'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98","messages_hash":"95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21","transaction_count":0,"txlist_hash":"808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb"}',0,'BLOCK_PARSED',NULL,'c47ffeef13edfd3a0073927de6ac6613ce2fb957897ca7943d72a3d8662ec6f2'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a00ea896c0ed09af2ed0acd47c649560153cbc055d96e88c05351499796a6b28'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6","messages_hash":"beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8","transaction_count":0,"txlist_hash":"d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815"}',0,'BLOCK_PARSED',NULL,'36faf0fdd6daae9f1ee1e7301ab51082f0ec0fe211323840b63d0da97ffbec41'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3873da56443f1422918ef8036818e048d58dc5b9685260142a0e19426b875fc'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8","messages_hash":"902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028","transaction_count":0,"txlist_hash":"dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e"}',0,'BLOCK_PARSED',NULL,'6e027ca28b0ae663e00a87ba4d2408dc463efef62171d5a9fa1eca7346a9d65b'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec68e53ec60a4889e5a928ae93fab66fadbaac5a2e6e244a965ba6dcf59922d7'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484","messages_hash":"425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239","transaction_count":0,"txlist_hash":"2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c"}',0,'BLOCK_PARSED',NULL,'9e2bf3bbab44d7139b2b122b6d0053aa14bf8394c5f51b05248d2f7774ab363a'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcc9d99ef53b7ab9f9a4dd157b76d7eee46ad7b53f5e283ee9c5e9a1957a29f5'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01","messages_hash":"003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0","transaction_count":0,"txlist_hash":"53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557"}',0,'BLOCK_PARSED',NULL,'ca02ce537fa1e08d656b760ce00a87ae3d198b2338d25c1b8320b6e084719635'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db43ec765b250892f4296235635fb34722a2ee0ccb744adecaece0617ee527c5'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de","messages_hash":"754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e","transaction_count":0,"txlist_hash":"77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5"}',0,'BLOCK_PARSED',NULL,'4954185c03fd52a9ef7a00f413e4525c6b11ad9ab85b2eeed6c6a7220cc80d76'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c287a568ee248470c0792a9f22199cfcef6e1ce273ce29aa2df1a9bca1e4d33'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e","messages_hash":"3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def","transaction_count":0,"txlist_hash":"19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447"}',0,'BLOCK_PARSED',NULL,'704c25db05c5df7037b77ad4800b623d57b9c527b7208565558ca56c14a19c77'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a0e631379c58de23f3a190023112622b6d5e4f73bf28210a5da4bfa66b7f453'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c","messages_hash":"fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088","transaction_count":0,"txlist_hash":"6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9"}',0,'BLOCK_PARSED',NULL,'6e3e1c261ab89710ccdd8fdec5ad696c706b2c57d2c3af4f77cba931f3fd42af'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8badd278d8e1cb421511103f171f37028d33ecc0f057edc0181e67abbb073955'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3","messages_hash":"d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5","transaction_count":0,"txlist_hash":"ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a"}',0,'BLOCK_PARSED',NULL,'1bc2276cb9c14f0ff4165f6a1d5063c2acaa2a4774aed075e5a152023124450d'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'452f85b5f3a01a40792b7b0d5dda4b3d2a6b706e92a2ca7b83e088f25845d2fc'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f","messages_hash":"d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599","transaction_count":0,"txlist_hash":"f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9"}',0,'BLOCK_PARSED',NULL,'016cffe7414527772940243bb4d64a22aee62bdfa5b95c1a85d80ded710e12ca'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9380f7e58f5860b887f288124774f1f149763ed41810f7087283913d912322b7'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9","messages_hash":"538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f","transaction_count":0,"txlist_hash":"a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0"}',0,'BLOCK_PARSED',NULL,'f458773d36fc2e3018d7548cb1669ee16aa02ffd036e94a35d7f8a58074aa7bf'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e593b9ccf2b8db3c986bacc17628123d7b1e3de495332b8c79b1488533d5fc81'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768","messages_hash":"008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de","transaction_count":0,"txlist_hash":"365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5"}',0,'BLOCK_PARSED',NULL,'4cdd195b610f9f9a1c80e68d035fcb350381689afa4d22d0307ac1bd894df16c'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a894c8c6ddb712636f247e911fc842b185e52df30e0ae94bc8cb1315d862fe11'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'8478ca5f518a98c0149158ba1bfa1042bbe126e63e4dc5629d96f291c479478b'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'41ea8823faa1db854b4ad7ff688104cff681751fe53ec2c0bb72ccb7c2fea6f3'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'870dc94fe1be1243c57ddeeb32df034698cf4ccc1c65587fcd2b8a5d03dd57b9'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a","messages_hash":"7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768","transaction_count":0,"txlist_hash":"48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e"}',0,'BLOCK_PARSED',NULL,'3e131bd7877ae37245d7ae7f37569c77a63df1a3dc3ba2f7016d4040906b95c8'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'951faa8a651ee5b6461824dfb59f3ed00ccc1b678a1d90c9efde73bf833991f9'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e","messages_hash":"00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697","transaction_count":0,"txlist_hash":"62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d"}',0,'BLOCK_PARSED',NULL,'72374852d30db958c5f3bbf340a2b12c49cd07ef1ac2a81f08d35993a28463f5'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59b3597e14f9f53e9638e4bcba0cddafbb73d21a0e05bf0ef042833f9e553937'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973","messages_hash":"be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c","transaction_count":0,"txlist_hash":"3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93"}',0,'BLOCK_PARSED',NULL,'2de308c06c87e83be78d9ae64499c22dd2e9cea7b8a17930bb64f196650859a2'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'400267f5f004fba52d773828adab750b2d556313a35b3a6b9dfc6f5b5a0cf95c'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe","messages_hash":"487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f","transaction_count":0,"txlist_hash":"4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6"}',0,'BLOCK_PARSED',NULL,'f5a02400793e0d7106bb9defea8665c627ae19ce5792958bdf23bab9c71a1e53'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc45f54dbac311427d0a0becf8a012563ef6a6d28191956642c0786bdf59450b'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762","messages_hash":"36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679","transaction_count":0,"txlist_hash":"e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea"}',0,'BLOCK_PARSED',NULL,'4ade6bf93af240a805901c1c68ad15b41671c92394c594b1609f17c47eda61a9'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea29c3bd19677603521a2c8c52309b251ec8b1b7192d46e81c45e04c32a0f5f'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604","messages_hash":"859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889","transaction_count":0,"txlist_hash":"911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7"}',0,'BLOCK_PARSED',NULL,'2db082f110c912d36268d51a9a5de164603bd8a1891fe5c3f2df70ca599c19ab'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e7ec69487c11cfa2a52de6a101afedabcdb9b12fd5b618052e95acf58f938f'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396","messages_hash":"a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a","transaction_count":0,"txlist_hash":"adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7"}',0,'BLOCK_PARSED',NULL,'1301f5c3514199be1b600531096ea97e2460fd3bb48749c36ebe31d19310d361'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd73b14544c97bbb873a5bcaaac29b61147377e96f41d6261fef0650c7c5fc7a'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e","messages_hash":"eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5","transaction_count":0,"txlist_hash":"719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a"}',0,'BLOCK_PARSED',NULL,'06b3199799833460682b4ab482737e3a2561564e0b4be9a8d34c6f69b3c2ce1f'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b565599af4ad3901259acc3b0c98c0ff5dbe8ef8f22985a92eefa4c229f636'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6","messages_hash":"48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868","transaction_count":0,"txlist_hash":"0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7"}',0,'BLOCK_PARSED',NULL,'71cbebae913afc1d275e877927c0069faddea1be7f3d66ce1b61602ea73f17f8'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0eb7107ec8101bc725f33bd82fc53da7380b49ac0f8e7b88a9c4421d700ff1e'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f","messages_hash":"175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952","transaction_count":0,"txlist_hash":"fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98"}',0,'BLOCK_PARSED',NULL,'a10cd0dfb2c56daff1dc1709477fde68e32975cb7e9d7b7e0e3a015a7810d3c2'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e77b0cd71cf697319347785df8084eb7ceb9895f783d41b14b14a3ab91659e0'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028","messages_hash":"210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae","transaction_count":0,"txlist_hash":"6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611"}',0,'BLOCK_PARSED',NULL,'73d7592374e60345522a60738dd65d6161edd0bc72b1b95975452dc6384504aa'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'249fc9ca73ae1c345604c783a28143be205df9d2a82916a4f2025769273e9a49'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a","messages_hash":"599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208","transaction_count":0,"txlist_hash":"5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6"}',0,'BLOCK_PARSED',NULL,'f193e7475393f277c90484f93a88c7feb318229d37238d852bad985284947286'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e77421ca17f7a65631b079b1d3c0439a1a0fd43a7b92759415235a5a378819'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74","messages_hash":"6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c","transaction_count":0,"txlist_hash":"301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507"}',0,'BLOCK_PARSED',NULL,'7d2e457fb909843a925c404f43b352fdadc67d28cab874c808bb688a145f4efa'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bb4b3d0a26fcd998a7115703cbc896ad58ff844b5fc25f1fda3b21e31dfe71e'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b","messages_hash":"1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5","transaction_count":0,"txlist_hash":"5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3"}',0,'BLOCK_PARSED',NULL,'2bc2d5562bd0c15e78c7c10cb718a3eae7a4e343822bece68ac9a9165f47666d'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a1e66a8e4b1431b3e36e5d3740e29fb7c21c3405abb7795816165f06675b2f0'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7","messages_hash":"4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe","transaction_count":0,"txlist_hash":"28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3"}',0,'BLOCK_PARSED',NULL,'253c06b4a62dac02c9a8ce08d102f26fac0dbae4dbde1aef23508917280cb273'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac9918239a27a1561623d52f8195903c8c89145aa7a326efac5208ffa2d082bf'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573","messages_hash":"6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517","transaction_count":0,"txlist_hash":"4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460"}',0,'BLOCK_PARSED',NULL,'85559ef81bc9cf54050a3e83a615968c3a050ac42e6ef661caca049823880e98'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44f11c68fdf8043aa475a7f980fd70bdb160b7358542c5133a25926d2ec9bc1b'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473","messages_hash":"6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7","transaction_count":0,"txlist_hash":"61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555"}',0,'BLOCK_PARSED',NULL,'8e1f175455768176b9006c5382e8f9160a8859c03e61b011e8c434d630905eee'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dab536afe548b2ce6aec3ef1488ca104b1b331e46a1b62988b5d85f7e18750e3'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046","messages_hash":"3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6","transaction_count":0,"txlist_hash":"6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53"}',0,'BLOCK_PARSED',NULL,'ba3bdf3682fab0d31f8484c61b9b463a8e5fee2dadbf424f5c0c6c2964f6f997'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16242dd2baae365196a266030bb27b47501d7df8c5c462d3a02e89f41881138f'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe","messages_hash":"6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908","transaction_count":0,"txlist_hash":"1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887"}',0,'BLOCK_PARSED',NULL,'f865a5d906da833aefc2dee0b3e43d84cf6b60c8246742fa735a88e50d9a14b6'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b16266d5c7201e77d066faa780a5d13aaf5af1d63ae14c230753e637addeb69'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3","messages_hash":"f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e","transaction_count":0,"txlist_hash":"ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9"}',0,'BLOCK_PARSED',NULL,'a427fb3269f4921c87b235f854f89690158e718fe430e6aaface5ab63db4d5ea'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'612898bdd39b11de04c440c792b119d8def9d9748ebcc47930e6fed1650b49a2'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb","messages_hash":"957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b","transaction_count":0,"txlist_hash":"0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f"}',0,'BLOCK_PARSED',NULL,'2608204456dd8f347d2d3a68d7f91168cccd49fcc1103690e190d5aa78bfaf0c'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25bc32bf88d3d33f0b80476795654dc63333d73f78af00a3d7e83f2a407d0264'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94","messages_hash":"7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff","transaction_count":0,"txlist_hash":"b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b"}',0,'BLOCK_PARSED',NULL,'f5d25932f709fca02a32ce0a1ef6a0e9a1fa989496cf8efd3ef62d563d1bec8d'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7088668d7677f2225254c355d3fa8297823404212b35492425be14be7b1d291'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199","messages_hash":"80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec","transaction_count":0,"txlist_hash":"7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820"}',0,'BLOCK_PARSED',NULL,'756dbad92551d96a40099ed7c9eed7ece23ecb7a400acffcfc99f9d9ee991f49'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b2de81e29d7abb46a093bea8fbfc2f117bc53c779a90054b1aaacbbdefa7d0'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883","messages_hash":"7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5","transaction_count":0,"txlist_hash":"73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb"}',0,'BLOCK_PARSED',NULL,'78f65041aea1c9458b210a086e7140be6c49c97d7d7bfafd1a063a28e1ee303f'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a317d2dedf5a87124cfb96aad78c1a3d2ecf00bdcb94f27d99d1190e23c28ee'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9","messages_hash":"b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2","transaction_count":0,"txlist_hash":"0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe"}',0,'BLOCK_PARSED',NULL,'b9c9c33f35756fbb676def5076788b687fba4df0dd2b1c92f7baa0dfb46507dd'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd82415434ef8176516bc2e99cedc807dcce24d672fb7cea19d07080fa7a3710'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1","messages_hash":"17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc","transaction_count":0,"txlist_hash":"a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01"}',0,'BLOCK_PARSED',NULL,'10144f112a34e834a3f553072a6bdf81eb8792d0f4fbe68e8fd232c7077bde32'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9f6080e1ac176f56cb018da56b5d6666ac39faed69a2faceef3f83ca066528b'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655","messages_hash":"a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3","transaction_count":0,"txlist_hash":"35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272"}',0,'BLOCK_PARSED',NULL,'8f7a20cb8ccff72b58cdc7da7e71c403cd3d588e1c17b6e51e9745b9b79e1c88'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee03703b9ad55b9147d84500227943c14ade3404a3675509ba6b33ba6426b1fa'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca","messages_hash":"3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4","transaction_count":0,"txlist_hash":"9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4"}',0,'BLOCK_PARSED',NULL,'e8eb9de33056b641d8d0a174ab4885bc02586b47d85177f4d2c150c1cb936b97'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'070161d9d2a38f200fbe7a11e7c874f4cf428285a9cbc696b6bc38ee23a14e6b'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1","messages_hash":"22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37","transaction_count":0,"txlist_hash":"4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3"}',0,'BLOCK_PARSED',NULL,'be9fdfb1744bbca19e0517da8f45728109510ca0a7d240610f6fc2f17d66712c'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'908d78122854db529fabc972e11586f03dafd9b7caada0423e21a8a486dd7b4e'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c","messages_hash":"e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33","transaction_count":0,"txlist_hash":"46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394"}',0,'BLOCK_PARSED',NULL,'5776da01d9f51b397157990f446b387ca670df5c13891aee6161830880ca51b3'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'090458001789e8bcd50a5308d64c8403224c918d1b2a6f22f0eebcd14b0852ea'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232","messages_hash":"acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e","transaction_count":0,"txlist_hash":"d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df"}',0,'BLOCK_PARSED',NULL,'5f0c8d0da43fddfe0a45bfe420fd815c8452ddfd2b1f139bb12d095d54bfc9ab'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e1cf8649ec3f5a52e798da48dca9a83f8f061fa4ed9b1f1f50c41a4dbc5d2f'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8","messages_hash":"91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc","transaction_count":0,"txlist_hash":"25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8"}',0,'BLOCK_PARSED',NULL,'2c8e4028b34361263f16247a3fa516f6b84198e9f32b0907a30cdae9f0d0d4c4'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b1dfa50ea919979d797e8b14b59f0ed4c2921fd3775921447751b7f692d48ba'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92","messages_hash":"70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342","transaction_count":0,"txlist_hash":"80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7"}',0,'BLOCK_PARSED',NULL,'226f4b6548b18fc2150fbf1756e7e61125762bcab26f890ed2d20f0f173cb2bd'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d95601e8438f7e6caa92b70195ae99762af2a90a8ab762304870e1406d73b004'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d","messages_hash":"5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb","transaction_count":0,"txlist_hash":"1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5"}',0,'BLOCK_PARSED',NULL,'5276021833b4914b1997095083057ea9b46a5f2341544acdece2b483f1f7556b'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7cbb01472dd6af740631d0f7dc708e4788fca928ebd2915bba096fed92fbfac'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192","messages_hash":"cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9","transaction_count":0,"txlist_hash":"59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef"}',0,'BLOCK_PARSED',NULL,'f11ff12be4c728e62d1fbdd77d1d1fd72f3b649750b470c59ab16384a02cc0c3'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'737270ce6731269cebc52c9f17c77b806e8cd2d09acf609df84cd189ffd35c3d'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8","messages_hash":"27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9","transaction_count":0,"txlist_hash":"28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665"}',0,'BLOCK_PARSED',NULL,'a5a83777990fc44907b26c284fb12890e2ad8de673fb46672c399ebfbbba26aa'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00ec036fc88c7a5134e64e84775ec48e8a8eaa268d0375416125b3ab2a5e63b6'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7","messages_hash":"1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed","transaction_count":0,"txlist_hash":"f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5"}',0,'BLOCK_PARSED',NULL,'131eaa2905c742d260c7a2a593a530c3c7fa5e95155884866d253308448ab959'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8200be09485df063d625e8869370d28a0c78ae970eb363c04b347679f58960ae'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48","messages_hash":"01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1","transaction_count":0,"txlist_hash":"0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063"}',0,'BLOCK_PARSED',NULL,'96c6fc1e7bd82dea4d6f3866f107b8629bbf66d2a1774def2d4f67aedf54d1ac'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9c923757630aaef66102affb3907d19ff22f60f54b1318a9f1dbab4e7871265'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f","messages_hash":"974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b","transaction_count":0,"txlist_hash":"cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54"}',0,'BLOCK_PARSED',NULL,'9c9a4f37e79739eaa0226534faf1dc82b3cf5602d1164b5530e0f77069826901'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29297d607a0da6cdb1560ef74069a71cd78e08962e281ba35d42f7fdb9936732'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869","messages_hash":"8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f","transaction_count":0,"txlist_hash":"f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735"}',0,'BLOCK_PARSED',NULL,'eab236ea69699f51ff1dfa8a5327c37b9c46200ede0e5d56f59fb1e82f753924'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3744a999c66e5df33de1f0ae38186a9176b1460e91d4bc7b241b530cbbe96e57'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f","messages_hash":"6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da","transaction_count":0,"txlist_hash":"90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f"}',0,'BLOCK_PARSED',NULL,'4914b97f1c7161d1de20fa23534e37de6210fd2683429a4300191da46ce3231c'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9468b5e545955bc56e4001835074c77a726be1fb9c76bca2e9f0989225fc1031'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a","messages_hash":"cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c","transaction_count":0,"txlist_hash":"ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385"}',0,'BLOCK_PARSED',NULL,'16928ea561f1ef9f1f755748957c8e46786a3796be8f739c92b6c2447a1b9ebe'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e04d9870608589017a664793707775e584bac50b0772ddb5bc88870c0c25c0a'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493","messages_hash":"13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb","transaction_count":0,"txlist_hash":"e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90"}',0,'BLOCK_PARSED',NULL,'f292189de7f31d9e4fe1447348acbe69160ec194e5426602b07ba13dc54b4968'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b35927fe9c76c675f2af9347271a681a3ae92357dce3f9608366a01b8492a'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08","messages_hash":"17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5","transaction_count":0,"txlist_hash":"ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876"}',0,'BLOCK_PARSED',NULL,'85a02ff2b7acca8910ea2a2d2c49102b010e9599e6efadcbc476ea40c25d279a'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'686e7fcea14e6ed33cd959e23853237c271ac890d7655f5d4430191cab682870'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b","messages_hash":"f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985","transaction_count":0,"txlist_hash":"67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64"}',0,'BLOCK_PARSED',NULL,'f39d2e0b9680d1cd18252a00ec2f987f4365b3d225b01ba417b1ecd90fc83e1d'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4e2a752262d8a9512897990fbe10da1409bb9eb83529cdeecf410a83b75adc'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88","messages_hash":"abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92","transaction_count":0,"txlist_hash":"bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379"}',0,'BLOCK_PARSED',NULL,'882418b2f49f8551fa6fd26311e9b196ebafa999d8d88705b280e6371f127766'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1332ca1e88212611b5db79efd5cf17b61f5ed2bd94db2ec822e045d096ba8f93'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e","messages_hash":"85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba","transaction_count":0,"txlist_hash":"625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf"}',0,'BLOCK_PARSED',NULL,'9328b721ff6b97ad2a1aaf1aa8cba2f188affaac9784e1db7eaf3c1ffbfa9b2c'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'294d08cdeb89565a6fdd57a7ffd75abf12b10f94a2a51acaab553ef615884c31'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4","messages_hash":"2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae","transaction_count":0,"txlist_hash":"d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811"}',0,'BLOCK_PARSED',NULL,'c87a502cb329fe0e88e8760208acbc0d6c09490b0ff4d691159f89370fa43389'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1a93f9f1fd732c224335273a780108c42f716a8375355483c72992577deb62c'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463","messages_hash":"2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f","transaction_count":0,"txlist_hash":"c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1"}',0,'BLOCK_PARSED',NULL,'008f76ccf272e6cb49cee3a0d88acf36ea8eca915ae5d8cfdfea9ecc81ffda4d'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9c29e660ef24aac13de949ab74ff1380058b43bd5eaa006d31f3056fd1adbb'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069","messages_hash":"0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c","transaction_count":0,"txlist_hash":"5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236"}',0,'BLOCK_PARSED',NULL,'26de6ab7dbaf8699e6e672fa3ecce1a9d5bf88e2a0596bcf65a7eac86ce95506'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2269a2ed7f10a0fa80fc439483de4ce4bf897aa3520e20eefa3359bfb5d44a39'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31","messages_hash":"7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4","transaction_count":0,"txlist_hash":"cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d"}',0,'BLOCK_PARSED',NULL,'4aa7bfb082e964387c9ab4924b8985986dae8a0df42f1b455abc97a2530c8a1d'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'703463dc0698238c4bf26bbd17cb8b7cd046369016fafbbd8d0e2ac26931e112'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d","messages_hash":"057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3","transaction_count":0,"txlist_hash":"e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b"}',0,'BLOCK_PARSED',NULL,'0a01174c07c1bb69643a493717f58cf296bf1f8f0f2bb3c44bc1e747efa46962'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce9b4019e24ca7a030a39a4ab422136fe8f26a3522b0ea59e750ff967c20728a'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2","messages_hash":"5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26","transaction_count":0,"txlist_hash":"d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000"}',0,'BLOCK_PARSED',NULL,'378106d6eeef29a62fcd450113ece90a3f395b37442b1eea8fe13191fe9ad298'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d0babef5c5293e3ded21dade344d64a360e325d05b566405345bfa81865da1'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc","messages_hash":"e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df","transaction_count":0,"txlist_hash":"5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306"}',0,'BLOCK_PARSED',NULL,'fbc229878dcbe4f55b5f00a8611053ce36ba960c23039dabacbf420a47e61891'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d79df11d6b141a4d9d0d4709b83bc4662536ecbbbcd5305c812b42a133f16d'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409","messages_hash":"b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2","transaction_count":0,"txlist_hash":"244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219"}',0,'BLOCK_PARSED',NULL,'07db13c277f0a55dc1bb045b79a08f2a3f73150d0e0730e451037b1cdcae0d77'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9807022127ea6eb3fd25e54518018c077e32150390fa639e6c2e29c940441c17'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942","messages_hash":"798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347","transaction_count":0,"txlist_hash":"a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d"}',0,'BLOCK_PARSED',NULL,'05f8c470bddcf905d03bf93b25dd8a8292e891eec42585f78f0e9375ff25eda3'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b552af2ce4cef59a8c554175f81da76c377b9d87ca3b2670044d5dad9aef1614'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633","messages_hash":"34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd","transaction_count":0,"txlist_hash":"1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e"}',0,'BLOCK_PARSED',NULL,'9c0a281eb5b144bf7954b4abc1c52dfd7f1d6100097f4121fd4cd52db9d0b5f9'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36569cd8a0732e350cf3c4c3247874b2fc2125daa81b51bd5ced84c9fe2daf17'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead","messages_hash":"aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78","transaction_count":0,"txlist_hash":"18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade"}',0,'BLOCK_PARSED',NULL,'a71e16c8eb0dcbac56ae896a55df052872942f393257998eea0c202cbc530e4e'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f0411afb3c4688715930e36744778ae446da44c5ef3a847c3e972a64590208'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229","messages_hash":"141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2","transaction_count":0,"txlist_hash":"af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758"}',0,'BLOCK_PARSED',NULL,'e1cba902d12a1222cd206cbb178e62278842768fad771ed28f5752704395a539'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b1e0d44fab8c65cf9db52750357b7006c9b88cef5622c1e404fd393a53bbef'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe","messages_hash":"eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030","transaction_count":0,"txlist_hash":"69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43"}',0,'BLOCK_PARSED',NULL,'9cb71908b5acb83c0b63eb586df7e202a8a7c90ad48c8b00244aaedc30b1a633'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b07a35e38cb47def7e2b7e5c39f123101fefed3276d352f793621f06e8f1728b'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6","messages_hash":"5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255","transaction_count":0,"txlist_hash":"c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac"}',0,'BLOCK_PARSED',NULL,'119ff2bec9534b561d82a3e89fcd81ba289aa575810c1b21cecf176cd393bf25'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c2cc316067ee8009658508c3a76ecca10181047623f97a87ff12654360adb82'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a","messages_hash":"2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f","transaction_count":0,"txlist_hash":"6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14"}',0,'BLOCK_PARSED',NULL,'c0e4a3505d7afcf8161f187640d6ffbf7eae37f16d687c5e921a63d581f6dc6d'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41a1b5cf6451c4a771415714bdc94e1a2aa4f95965d97aece333dff42132a938'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb","messages_hash":"74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9","transaction_count":0,"txlist_hash":"b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4"}',0,'BLOCK_PARSED',NULL,'f3d478c240c1778a7ef67683f6f2cff3c3972ab5856beb09c39881ab95665be0'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9118ea446709baaaa4a79ee84430f747cd4a8c35cc254b498f52abecb25bd503'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3","messages_hash":"6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e","transaction_count":0,"txlist_hash":"e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2"}',0,'BLOCK_PARSED',NULL,'d5e326508ba0640efabd0fda79bc168c19e2f62263cb7a507d9e65f228631fda'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5ca4731ae628c8c34c15c714850e1cfaeb85c581e126ddd2f57e214ab009dfd'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459","messages_hash":"35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90","transaction_count":0,"txlist_hash":"a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e"}',0,'BLOCK_PARSED',NULL,'e13783635fcdd96caa21c0fb01d340130104f86d3a3f8c1753c29ae67f3f1ed2'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aebc1482c9a8b61197ddc5ebd18bda1d0d23742b8a532ec35173146c64489da'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801","messages_hash":"a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365","transaction_count":0,"txlist_hash":"e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997"}',0,'BLOCK_PARSED',NULL,'41fe98ec251db978f285820413fb386de676f4c56d7930bcd5a24cdceb2e13c8'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5df758f3b96d4d82eeba6fae83271acf57335df20b348884ef4dc0782af4fec'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1","messages_hash":"090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706","transaction_count":0,"txlist_hash":"204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a"}',0,'BLOCK_PARSED',NULL,'6f4ce71f3e91b092074dabacce2a8dd057c69390398ece78944c04887a8551b8'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'292941fc7d329f406d87991078af78d342983c8993d86aa5a6cff34506702ecb'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a","messages_hash":"01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971","transaction_count":0,"txlist_hash":"3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64"}',0,'BLOCK_PARSED',NULL,'a16ae1f26c9c68eec5aa5a7df70577566e265e4927fac970ef4cda9fe9e58313'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f152b791e3173123d711b5017cbcd93aa65dce6627054ce7e1bd7e99bc131d'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4","messages_hash":"88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed","transaction_count":0,"txlist_hash":"179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715"}',0,'BLOCK_PARSED',NULL,'c0d524d1e847e202042f063abf3724ff0dd60398c9b65e38002402c64d491e88'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ddb7974d7dbca3c581534c42354366f177b88a023fc7529007b36f541699e7'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532","messages_hash":"196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c","transaction_count":0,"txlist_hash":"2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df"}',0,'BLOCK_PARSED',NULL,'259c96b41236a576cc0a205a99523ec4dce8d826cda07c37233f18a0e64f4bdb'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f01d5f45c596a2f7397dd4f281e2723d4619cb68e1422b8ace26e6980d728007'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792","messages_hash":"ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c","transaction_count":0,"txlist_hash":"e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba"}',0,'BLOCK_PARSED',NULL,'e5bd9e02e6fe30de2c7d9e5c72653b29893fb1143802342065412e18a2ed67e4'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bd29984aee0fc0dd860a7b9067d26a615230ef8e11a63a1e94986263e40880'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec","messages_hash":"90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc","transaction_count":0,"txlist_hash":"5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d"}',0,'BLOCK_PARSED',NULL,'47693aa4a7c7b86b73c8b21b5357ee8af8ceba0b6be2d69d0861168e30221b85'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dc4203486b886cd406a696934c9e0f69fffcc4438a44ef8b152c00a9839f5d9'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494","messages_hash":"1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507","transaction_count":0,"txlist_hash":"3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb"}',0,'BLOCK_PARSED',NULL,'a9f3a5fc680561d95c94e19f605752cf62b8fd2647f3a3ca6ecf6ce6c8d0dc5c'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4582c95690b9c26fae4c0502e8616e17a79d160f3a837751ffbfc6c426268e72'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4","messages_hash":"00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b","transaction_count":0,"txlist_hash":"2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e"}',0,'BLOCK_PARSED',NULL,'693a432e16f1390bb093c001b4259c495409ac0fceabdf95043fb4b83c89a7ef'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ba6274cef177386bc1dd07250bcd24936f9703734910ddc855000b13ec1580b'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8","messages_hash":"6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f","transaction_count":0,"txlist_hash":"be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27"}',0,'BLOCK_PARSED',NULL,'d17f4240c2284de7c89a3e649f3353cd286c6b4118a154edc777b4c08c00ed01'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'869ff02bb7b0113c501d1a5973268b163d337b349a77737e4cab4f7b30957819'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0","messages_hash":"fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8","transaction_count":0,"txlist_hash":"2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e"}',0,'BLOCK_PARSED',NULL,'206d5369487ce8f65532b67edd852986b9d6773e20f88921132cb987d063e221'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e68fdf64eae5c366aa798749fde868bea0ff80f7279464ea4170ae5eec9c7b32'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df","messages_hash":"eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458","transaction_count":0,"txlist_hash":"387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8"}',0,'BLOCK_PARSED',NULL,'9b247802380993061b37245d5c737db5cf364be9af82c8a852d6d7c92d1245a8'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1082d4aca91d7543ccbbada25a81f66cdc6fc02ab734e619328329e51ef5ac18'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693","messages_hash":"49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869","transaction_count":0,"txlist_hash":"7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345"}',0,'BLOCK_PARSED',NULL,'a39d3390dceb5cb0187926f1a5d707af62e4bc96de3f3707d8a8a9b194c3380b'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e17c8d00e8eb04c80a78fa6e8f358a0d1f529052c3d39adfebe793763e93816'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10","messages_hash":"01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795","transaction_count":0,"txlist_hash":"3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d"}',0,'BLOCK_PARSED',NULL,'af4df191829b4258740cc8e1251395ce31f2e7949040635e4364e45d7c7a3794'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'916fb76bd468d21b009760515981bcc687928bc1b6f464262b788aeeb97b6cb0'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441","messages_hash":"46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3","transaction_count":0,"txlist_hash":"8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f"}',0,'BLOCK_PARSED',NULL,'c0c61064fd931dfddf69c10e8c9bf5c19b32a4fb760f1d825e88f514c57a55f2'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'207b1a38bbf1b5d8dcd10f097d5a251a58030e0f539bd0e9acabe6b5cc00831e'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121","messages_hash":"09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132","transaction_count":0,"txlist_hash":"7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d"}',0,'BLOCK_PARSED',NULL,'1e962af812aa5e3d4286188699098c8169d686f9ab672e0ce5761a0669a1358f'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7732b3a0ce6f48a65751004ba7cd0627ea3b737ede37124d14088e2c687c0780'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3","messages_hash":"d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac","transaction_count":0,"txlist_hash":"ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672"}',0,'BLOCK_PARSED',NULL,'623f0eb2b805f65dea38b2baca311b1726d77a5c13c6acd084366cefeabde801'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b154d4879b1acf90a8f78c1c42320230e2644284d4cd06820ab92b39d6af642'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91","messages_hash":"67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de","transaction_count":0,"txlist_hash":"6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e"}',0,'BLOCK_PARSED',NULL,'012a51832f372b9043af76a2086a343da1a94289e88402923bf9354dd7df1b46'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'382f72af4a7d92c071c81bc287eaafd8df6f8b3004448b34d99fa4b9954afdb7'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1","messages_hash":"cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82","transaction_count":0,"txlist_hash":"2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe"}',0,'BLOCK_PARSED',NULL,'a4275adfa4f7523b4d5eb6a90f6dc2218a0c62a2d474b7b3d887c120091830bc'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6934a7545acdd33a74fe5dd517196b9f208cb22b852a8fc7ab3a8b34a80b5c4'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0","messages_hash":"e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2","transaction_count":0,"txlist_hash":"451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d"}',0,'BLOCK_PARSED',NULL,'2a6271b402379289130af258433e5ba2382eab214a3ba7ab8e77b2f89af89e17'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d09bc0548c4f1ea611288b0bc94853d86cc563430b9bcea61532505fa4faf5c'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2","messages_hash":"fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc","transaction_count":0,"txlist_hash":"2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9"}',0,'BLOCK_PARSED',NULL,'3b64c5e956773d7c7945e6caa641ef390561dbc2a58a344654ce131893647657'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ff2a28ccf824586e330eb7ebbe46e7082ac5530dc25be8f2df8e62176b1c343'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c","messages_hash":"a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36","transaction_count":0,"txlist_hash":"988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7"}',0,'BLOCK_PARSED',NULL,'a5cb55ea9dc6a62363f0db3a5703e386faf06119e48f218de92958a8d95e2003'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ead4fcf4ec7e0ef2ccad4364804c332e5d4a3e1bea3cffa35bad9297081711fb'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6","messages_hash":"e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e","transaction_count":0,"txlist_hash":"68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498"}',0,'BLOCK_PARSED',NULL,'2078fda28fb990fc420d7b279316051402599ab277795b0477931a33343fcfe6'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b219491365e68f03deb659302411286fe3170b2e656d7ba1794f0e60521d0ed'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03","messages_hash":"00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256","transaction_count":0,"txlist_hash":"6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3"}',0,'BLOCK_PARSED',NULL,'1f14bd4611cd31a16384b52347bdac016ee1ede9b05c347af475d0c2b77bee12'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e20359a15bf4cdda179dc488d0211710340cbed1523f47d65c0a30d1f8deef7'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c","messages_hash":"4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a","transaction_count":0,"txlist_hash":"c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a"}',0,'BLOCK_PARSED',NULL,'d76eaabf2d3efd8cd7529bdac0ce777aa8f0342ef05a767804c59ca814c996cf'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78579f326728c1bec312fbeb7a4a1e0798217b1ce3bd3534f5564089332461d4'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4","messages_hash":"b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4","transaction_count":0,"txlist_hash":"71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925"}',0,'BLOCK_PARSED',NULL,'a06f5b41849e604f9de7082109e6111576d2c24730815a777bd29aa7a898220b'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79e5e0626fd81777eaf68fca009c1267db4feac29c932ffbd0a7343af8b98a58'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a","messages_hash":"4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4","transaction_count":0,"txlist_hash":"eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987"}',0,'BLOCK_PARSED',NULL,'99cb9b17343344ec7e701c690595613592687c706f13dfbb119c771e159e062a'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'888d6e54dc087d8c877fbf215b17138b01ba94abbfed11efd260d74c02f49416'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe","messages_hash":"9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72","transaction_count":0,"txlist_hash":"8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758"}',0,'BLOCK_PARSED',NULL,'bdd7d551f34e37575952586f32bcd3c037a2ba053e3390e947659e7b70f0f9a9'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d8d817512d23d2a5e7edc8b5ba909fe1be0529f3b8b0c39e76e89ceebcf43e7'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76","messages_hash":"6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf","transaction_count":0,"txlist_hash":"3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f"}',0,'BLOCK_PARSED',NULL,'bff8c83360cc9ce70a880b754086c1ab643579824ffec8fce49c15a4c54eb01e'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cc64a5ff4ca92897ffa2fc98c15c07868a43a366b97654bbeb5712eeed438fe'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad","messages_hash":"4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d","transaction_count":0,"txlist_hash":"faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0"}',0,'BLOCK_PARSED',NULL,'e4ec1f3c810dda83ba091d2ce97271e531b9ab0cf7a913c36e0faa3cf291d600'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4828930030e2a4115e7d3e03d700052fcd098867a1426ddabed1b0910528a5fb'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b","messages_hash":"1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3","transaction_count":0,"txlist_hash":"03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e"}',0,'BLOCK_PARSED',NULL,'4dcdf968aa91b15d714494183726bccee4c9a5f97a909389810aa778c5fbec7f'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ca49b3ae490cb57eff6937e6fb54704a118fe3322a0a643c7fe78094234521'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2","messages_hash":"404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761","transaction_count":0,"txlist_hash":"ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916"}',0,'BLOCK_PARSED',NULL,'fd8c11ec1da2b87918fc6a6d31977664712becf55dad49f96047f624836e1273'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faa186088473b49cff6c530c884bfb275ae1b2c23b4d7ed36d918b2359a01576'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6","messages_hash":"9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579","transaction_count":0,"txlist_hash":"c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb"}',0,'BLOCK_PARSED',NULL,'a6d7cdacb01a4b44322648f1d0de7e769de687b4b441827108cd22aae229ac81'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72fc1c1d79aef1eb8735c10766fcf2e69ba42c0f4d973e6339dce842ff9602f0'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180","messages_hash":"070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7","transaction_count":0,"txlist_hash":"9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e"}',0,'BLOCK_PARSED',NULL,'30bdd7f20c771eac030154e36f269167d0bb74867abf736b7df911ac71f99b00'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38e19a3566e73679b1d7f997dacddf135320bd94cc011355f4eba3c6e7783ea'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e","messages_hash":"4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89","transaction_count":0,"txlist_hash":"78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786"}',0,'BLOCK_PARSED',NULL,'3b164c721574dbb91ae0780fb6402e287fa4b244a0b8a24011f3467235591697'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2412af411f428d3506a28541413ee45662f99f6f21e8318b088669cbf34c3d7'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814","messages_hash":"0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c","transaction_count":0,"txlist_hash":"247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6"}',0,'BLOCK_PARSED',NULL,'72e38ebb8964e0e6cbdc9f1923e5714b8ad71129f4d68bf3239263c8fe1fd42c'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3da56bad2856f0376a7c851a7e82fc6bca317768d598520a1a43824a551c8711'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e","messages_hash":"26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795","transaction_count":0,"txlist_hash":"969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae"}',0,'BLOCK_PARSED',NULL,'1d892d20367a9c27701ecde0fe9a2224333a536917c4a43b997522fc529f7750'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb27a45bf3dff1c03010e116163af8f7b6eb96ee388af3b4877550b3b46d0fa5'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d","messages_hash":"5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b","transaction_count":0,"txlist_hash":"7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414"}',0,'BLOCK_PARSED',NULL,'ad1616b3e0ee5ea4e9d0189d62d02fa02dbf5a03d5888f325e9c6fbfc8d2a3d3'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67b483eff78060cf0a8424c4862b292b806f83f1a4c00c0ed18418333ca8712e'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7","messages_hash":"d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7","transaction_count":0,"txlist_hash":"4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12"}',0,'BLOCK_PARSED',NULL,'d08f460efd1d50a35c4ab3b119f4d2dbc4a0974766b3e0ce6ffbf19fb36fb48e'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f34bde188e71da307c79ae1d2862217ae98faa17995ca369c3dfbf60451726d8'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0","messages_hash":"70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58","transaction_count":0,"txlist_hash":"798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9"}',0,'BLOCK_PARSED',NULL,'2c0c21e45f135f450f779c46ec8404844a13d08c67293d15d4a680a3aeb64094'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21d734f84346892520f467359bf24ddd4d5c4e1aa993878f8657465308bd58fb'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909","messages_hash":"7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404","transaction_count":0,"txlist_hash":"54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d"}',0,'BLOCK_PARSED',NULL,'e1757ec649b5cc757e46d47b74b78c38ca54012b1d03564d63eb9b5a9db3ce49'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1658711d99ebb2c7c3336ca50ed3d70941b1dac7dae3cb25258074cecd8adf38'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d","messages_hash":"8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667","transaction_count":0,"txlist_hash":"2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8"}',0,'BLOCK_PARSED',NULL,'4a395af705918668e100b96c4ca1fcbf1dba3f88d9e1e4bcf97d67111c68b73e'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a8e0c3162ba0413818e147aa18d18147f3f9455609ba52fbe836649ea720be'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10","messages_hash":"c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc","transaction_count":0,"txlist_hash":"07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98"}',0,'BLOCK_PARSED',NULL,'9669f8db4f3c518e839243ad2da2793d7bbb968d397dc548abe61469c24e8cc9'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f66511e675ed584b3f4c327a6f0c2822d4ccca0829678ad88933d30d711ee0'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa","messages_hash":"b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db","transaction_count":0,"txlist_hash":"da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539"}',0,'BLOCK_PARSED',NULL,'2ed4ad734e87418dcdfa4f2eb7d319455685e0f562a1c41bccd0e44b9a043548'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9abdd00cfffe396d07a80cc6a9346122c57ba8f89a7573b49cf578663e394db'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28","messages_hash":"662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085","transaction_count":0,"txlist_hash":"124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca"}',0,'BLOCK_PARSED',NULL,'52ecd13bbf65f18add5296d82d57df29b43112931cf135d48a4d6df2377537dd'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcf603f95018239853486b9f05a9c26d9f99fd480b9a746ba7cae1c788f36a32'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41","messages_hash":"2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3","transaction_count":0,"txlist_hash":"112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f"}',0,'BLOCK_PARSED',NULL,'27cd1ceb5e207768d999ea0e626e6ff57593debae63c8c3df1be3759ba5fed0a'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73642daf96f91b2e02542cd8cd5017535441316ce1e3b372e1b68c9439d368a'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9","messages_hash":"4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d","transaction_count":0,"txlist_hash":"32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab"}',0,'BLOCK_PARSED',NULL,'a37dfc06577f84cf9d36519be6a04069e703b1b3bd3f232c8b59a0415c66d21d'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6f1c9577a7f986ca3ed6f76cbef9b890bf77217159d5e0172ede6a9b770facf'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed","messages_hash":"4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da","transaction_count":0,"txlist_hash":"9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4"}',0,'BLOCK_PARSED',NULL,'a2491170b5e133817fd17520171d9d6c82437f54663870e8afa0ba8a04f77d36'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b47d59cbb43a779cf1687d37ae83b786ae241ded9d26435f40aea014ea109dbc'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa","messages_hash":"0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba","transaction_count":0,"txlist_hash":"776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8"}',0,'BLOCK_PARSED',NULL,'e24a34abf1632370e791b711e82c6e52e0b7731f3fbebe22000199dbb49601d7'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bcb2cde0bd3669ffde55bd0d14b7dcb520ee65158dbecbe4c284d0341647aaf'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad","messages_hash":"0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc","transaction_count":0,"txlist_hash":"4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46"}',0,'BLOCK_PARSED',NULL,'cbb68a265076dcb741c045331e00f978477398bec21d5543e794b668077956f2'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b4b154b5156957e131b1dc3fe91f31c54b8f0744b5efacf74f30b5dc5ca3adb'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809","messages_hash":"ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56","transaction_count":0,"txlist_hash":"d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e"}',0,'BLOCK_PARSED',NULL,'79081ce2fcd8366a15178dd9c8a0291d67f1130c872f07ebb3bb39cc12fcee32'); +INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'392bf8478ac375b9102abddf798ed2668101e43f6ff329ebbeeadba39df718b0'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3739,8 +3739,8 @@ INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383 INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0); INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0); INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0); -INSERT INTO sends VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','XCP',100,'valid',0,NULL,10); -INSERT INTO sends VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','DIVISIBLE',1,'valid',0,NULL,10); +INSERT INTO sends VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','XCP',100,'valid',0,NULL,10); +INSERT INTO sends VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','DIVISIBLE',1,'valid',0,NULL,10); -- Triggers and indices on sends CREATE TRIGGER block_update_sends BEFORE UPDATE ON sends BEGIN @@ -3949,8 +3949,8 @@ CREATE TABLE destructions( tag TEXT, status TEXT ); -INSERT INTO destructions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -INSERT INTO destructions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions BEFORE UPDATE ON destructions BEGIN @@ -4319,8 +4319,8 @@ CREATE TABLE transaction_count( block_index INTEGER, transaction_id INTEGER, count INTEGER); -INSERT INTO transaction_count VALUES(310507,100,1); -INSERT INTO transaction_count VALUES(310508,100,2); +INSERT INTO transaction_count VALUES(310507,101,1); +INSERT INTO transaction_count VALUES(310508,101,2); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count BEFORE UPDATE ON transaction_count BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json index 1322b2b6ce..acd5af5911 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json @@ -180,10 +180,10 @@ "fairmint": "0100000001d8e1083f44827cf8cdab0d756ee5f26c3eb7123c4adbdce79128cca165394c6f010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba46f71bce505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000" }, { - "utxo": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef75de321df210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512103d24ccc12f76f0562d27a2f57676e926dc71a7fa3f0cceb97452b4d3227965f5f21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae910a2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cf4ccc12f76f0562d263623f143eee5cf72a7fa3f0cceb97452b4d3227965f7d21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae33222508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { - "utxo": "010000000183481c3a9f072a47de29d0e0cda162527c3b3fe7fc4d88612013f04dc843229d030000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef741e9273d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102ce4ccc12f76f0562d24f4d2e1522d711f61a7fa3f0cceb97452b4d3227965f9c21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae77d42408000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "0100000001e04bcce45548f717192b388afca9f58a3ecf19863d37abd12e19f604361aff1e010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cb4ccc12f76f0562d26362231e38db3e8e5833e68cfdeb97452b4d3227965ffb21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aebb032508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { "issuance": "0100000001ec1559a2f51aca1f954491eb75ce429d2d37a5750deea75cd8b425289d213498010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff02e80300000000000069512102e24ccc12f76f0562d2061e67436e926de4c4a6091bcceb97452b4d31cf965f8221039ea8cc75076d9fb9d0151fd6bf10984b6afb51f65ede10ede02a3cf860d471e521025bc8fb22d87eb72fb5e297803ab9aa3ace5bf38df4e23918b876fd3ea0cdd7b853aec3edba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000" diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index ea5463e66d..70a1f8f844 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -138,9 +138,9 @@ TX Construct - Transaction constructed. TX Construct - Transaction constructed. 20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns TX Construct - Transaction constructed. -Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883) [valid] +Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0 (1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0) [valid] TX Construct - Transaction constructed. -Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e) [valid] +Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0 (0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8) [valid] TX Construct - Transaction constructed. Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid) TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index abce17a6a1..0874472484 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb','bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160','072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31','a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9','9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26','88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381','3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046','fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4','dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3','57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327','fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5','5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9','2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec','ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed','912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0','deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8','454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868','3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0','c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc','12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f','87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4','f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e','0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9','2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5','f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83','b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659','18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002','0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673','fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e','97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0','c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81','37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead','7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840','324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333','5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97','2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f','fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd','de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f','6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855','acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373','7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f','e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283','989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac','ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c','69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6','d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a','bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a','2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5','70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff','b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be','942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53','6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f','4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1','c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3','6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1','a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76','9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede','da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d','bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114','c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6','a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4','1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12','4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf','9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e','16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e','3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419','5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c','ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1','b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083','cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380','6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a','23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b','49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751','1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0','1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4','a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c','2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c','2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce','5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a','3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3','4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e','3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d','b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14','cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db','c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661','7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801','489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956','c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a','4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545','82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f','6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05','ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408','dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e','67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f','d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66','36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4','08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05','d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b','8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6','9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4','7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43','54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28','64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c','9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b','760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb','abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd','3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2','7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87','8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca','714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818','fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c','b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17','1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034','470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c','80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf','9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88','33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091','8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6','568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911','504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d','3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f','1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea','8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb','4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c','037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0','8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b','dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d','54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c','fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15','5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f','22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5','559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59','986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a','aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619','1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97','41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb','a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732','9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e','1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98','808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb','95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6','d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815','beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8','dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e','902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484','2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c','425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01','53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557','003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de','77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5','754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e','19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447','3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c','6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9','fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3','ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a','d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f','f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9','d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9','a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0','538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768','365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5','008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a','48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e','7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e','62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d','00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973','3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93','be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe','4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6','487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762','e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea','36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604','911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7','859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396','adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7','a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e','719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a','eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6','0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7','48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f','fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98','175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028','6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611','210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a','5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6','599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74','301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507','6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b','5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3','1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7','28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3','4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573','4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460','6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473','61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555','6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046','6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53','3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe','1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887','6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3','ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9','f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb','0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f','957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94','b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b','7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199','7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820','80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883','73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb','7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9','0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe','b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1','a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01','17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655','35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272','a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca','9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4','3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1','4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3','22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c','46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394','e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232','d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df','acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8','25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8','91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92','80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7','70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d','1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5','5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192','59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef','cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8','28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665','27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7','f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5','1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48','0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063','01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f','cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54','974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869','f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735','8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f','90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f','6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a','ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385','cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493','e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90','13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08','ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876','17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b','67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64','f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88','bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379','abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e','625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf','85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4','d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811','2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463','c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1','2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069','5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236','0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31','cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d','7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d','e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b','057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2','d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000','5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc','5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306','e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409','244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219','b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942','a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d','798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633','1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e','34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead','18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade','aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229','af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758','141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe','69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43','eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6','c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac','5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a','6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14','2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb','b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4','74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3','e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2','6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459','a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e','35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801','e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997','a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1','204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a','090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a','3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64','01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4','179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715','88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532','2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df','196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792','e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba','ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec','5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d','90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494','3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb','1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4','2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e','00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8','be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27','6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0','2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e','fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df','387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8','eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693','7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345','49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10','3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d','01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441','8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f','46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121','7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d','09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3','ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672','d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91','6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e','67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1','2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe','cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0','451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d','e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2','2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9','fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c','988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7','a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6','68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498','e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03','6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3','00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c','c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a','4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4','71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925','b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a','eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987','4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe','8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758','9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76','3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f','6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad','faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0','4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b','03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e','1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2','ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916','404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6','c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb','9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180','9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e','070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e','78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786','4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814','247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6','0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e','969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae','26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d','7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414','5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7','4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12','d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0','798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9','70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909','54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d','7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d','2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8','8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10','07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98','c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa','da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539','b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28','124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca','662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41','112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f','2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9','32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab','4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed','9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4','4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa','776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8','0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad','4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46','0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809','d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e','ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56',NULL,NULL,0); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) ; @@ -761,7 +761,7 @@ INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0'); INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,'2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0'); INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0'); -INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0'); +INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0'); INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,'4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0'); INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0'); INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,'8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0'); @@ -814,8 +814,8 @@ INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0'); INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1'); INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1'); -INSERT INTO transactions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C5843507C313030',1,'c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0'); -INSERT INTO transactions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C444956495349424C457C31',1,'1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0'); +INSERT INTO transactions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C5843507C313030',1,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0'); +INSERT INTO transactions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C444956495349424C457C31',1,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0'); INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0'); INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1'); -- Triggers and indices on transactions @@ -950,10 +950,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1085,10 +1085,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1182,8 +1182,8 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); @@ -1273,10 +1273,10 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); @@ -1375,1693 +1375,1693 @@ INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006," INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','2893ff829d6f87617eef6eaba696c79dab808a23d01c6de86b85d711f128db83'); INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"f1ec09af67d51677f20a0462711cd5841b16d4aafbdd0a96d01acfb39260d0f5","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'47aeccb9132fc2c1f0dec942697758b066be5a378acc16e29f1d3e7a35abee50'); INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34af993069c5d53cfd345556a8d11dfe6c55b1180b3f0f6aebb830bddc05e73b'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'66724e8e99e51baa262722c6eae88052a81304c7f6374b18116079f68c5ba6c5'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','39e1e259565b21d103bcd7dc1a247a2914a0eef236e156541a6cccf425b8cc34'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','927b77f67b703c34f945682a5126c5dac776ef1a30fe35fd64e7deba06b7ff81'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','c301fb8f7138c9b7c321d7ec7ff98699be88d6659acf8f863f99f6d99bae7b29'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','adf33ca71aa977f1bc9f8162c56d6083fc6e62a7209479d77155318daba577d0'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'8de59f57d5b6a5e092ae72b9586b6c32ce131a396b7a91d870f9f3379d95ff5d'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7f157c728e56454a2e0c81a17c8bef72565609a3eb2998a8b17f864abddf399'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'83a43e95055ce1f250062d3f7527c2168049fb30089fb455d7bb7ea1f999bb15'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','89215c0a26cd9a8f51e204446653216d5fc85d6f9e6b31e791a6ffef231d2af2'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','9a1c2b5dd69b48606a0dc1790913cf69a59249b2efacd3638be7fb17a3fb797a'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','bda1526ff7f78854cb400958cb3db74ecde3b93bfab2dc5e72da067427627ed5'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','5de28ec01be3c1ba12781b4566bb9a793e029c11b73588d7852217de0d87b852'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'fac40e0152c83b84148574962486c5004b599dc94e0174fb7d9df3ef2d9dbf0b'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a8fab0933511a56b404ef295ecf00fffb64c1cab3b5e2b7baebe947bc7a125e'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'6fbcfdff9c6a46390a0a03b5170929341d284af7ef68db058b4e35b700fc0a7c'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','d4b0309d6fe3fe5660274ab4b6cb6c16381e3a4ababdbca9073f4ffc249b34f8'); -INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','62d23e86e0203029107bf193f08623b57bd7363edf709e85584d50ab27f2372d'); -INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','aea95f999929431c35e9b826ac8a15938043bc1e7356806bc228f896c2b94d3f'); -INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'88ea011ed87b61c777089e712765bc2c4a773763eee38fa9e0e6c007381748cc'); -INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d3ae82c29ae7be0f509d66700da13ddb58497c676036432a757b84c8eb11363'); -INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'9aec2e311fc4b1884360aead9583ade3d42a725d0ae23cc098fbcbe25a42bbbd'); -INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','22fefe2d6467e8be3b7509df7150be3af5dc2da4efaf41e34f94875323c2955a'); -INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','877f0bbd2b5b8f2a6fdbb8a60da8be5a82702053056ca8250c92e637210e29af'); -INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','67e90d741867356f057a5310c0d8deafa05d9bd9b99ab326117c38e472cf32f8'); -INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'6a9a68859fb9ae82bfa5d244b6b903dd9214af35014c451846854c674e3d5a39'); -INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8fbf2f55d2960480687950206b660368a633888678d56429c58d87ba67d208f'); -INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'457139b57264cba3f9d21064a45e16c11ad7488330f52f4c559b9a6aded432e1'); -INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','cf12f331fc2290e9150cec458eee3428ce0f8f7852e9fc14501cba4ec9282674'); -INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','4e923e1199fa2ab3dd1eef138eebb436722eb09199f7cc501ce7e228030659e0'); -INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'2c2bc7d8e8b4f741e4c6c627dd3b81b1f7aa9d27b8a215c79e44df1ffb034071'); -INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b330af58df09bfec338b9b3b1373dfcb29f3096d784cc11a56e3b6cfda13164'); -INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'ed3e45f189a70ae5acc1865853a20f4f44428ecca406adae387ee863f69240f6'); -INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','715d4ee33f34e4f49b49c551657d1d34faa88e7a9713d993706e18a916f6113b'); -INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','e06d8aee913aa7efa7c1f5fa3977195caed307b30e3d2c2745403c6561c15472'); -INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','3404630e7ef2f67993d886588a2ea02c6d06681c5f31129f8b65dce8798ee870'); -INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','3ce672f18037f21d483e722fb572160c2cbe9391717d72f9aeaa1912b5bc773b'); -INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'b10b80b45be86d9311e43e77d0de522724be82b712c5a6c8f9c8ffc085911b3b'); -INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aac7ea2267e954be5cbf082b78c00b89d90c8d5c56bbedc8736c55688ae53507'); -INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'a63649685f46863e6217c3db3ee199f85777ac6ad5dfab694d675c31fda34d32'); -INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','4861371a42c180e1bf4736772a6c9a17f8711f49e83d19ae4e3d59fef2dca34d'); -INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','aa722ba20dbd61c67719553ca071e34a500029f7da27554475cba3335c2bb2fc'); -INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','0f51141dd0460bddcadba3a55d33c7af3037fc4b588e0a5b518d654afc593c13'); -INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','bb38b73b7c196af096c1fbba67129ffceaf072147b0d70bc4e2fabc93c071e69'); -INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'33bfd7df7aa68cae710e809936216ddf66d36431e26bad2bd9a02bfcde2c1ce1'); -INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3486559eed956adda7dcba6f3b3edc7f88ded69549ebe2bcdbeb493487380d28'); -INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'b8833cbdf733eed74a38c957ff2c9d5ab4a57ba81d31272a501a14fd4a4bf4eb'); -INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','12fa0e702336b0ff0491e4add251e0f11faf40ee06313295dc6fb603804cf844'); -INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','ee2678a79001a407c3c1eb6612f7492cca6f1f8962882b3033b17ea973ef1e6e'); -INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','63902ba227921ad25b352e2d257a1e6cac3228f5d70b684d8e1cab686eeaf6e5'); -INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','58156b8074547d6f755d924c351aaa1e38688d70b7193820fcee6ac6209cfed5'); -INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'289db68d91bdba9de84df69ad9b208848658d67bae52a260aa3d0b345ff26649'); -INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d16771dfd6dc5f1b93ec012870f604a9f40a38635a6bc68abde03b6d625f4a3'); -INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'f67c211ade52acb6f9da2f0f1fdb4cb2eaf4a731f2813c6a45984aa54fe23ea4'); -INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','f03f56a9635632af7f045da179ffe5034f6c2429dc2abef245d9ca560f887862'); -INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','2ef587abe0afb4f629ccbb0fc8e70d3895846b6b9c4a5e84ef2f3664c5203cd6'); -INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','64e5b207585fb11dbf22c4d6f09a3ccca3be8a3f2062f37a2a239d3c9fab01d1'); -INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','2c8db0c21fe04813fa6f6beeb620beef82f68b80c7d304cb812cfe1148e954e3'); -INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'04a7c817e011771de0825f59dcb9204f8cd6de5f1c8affc6b9f68d36055638de'); -INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87039f360a1a2b490ef47125224e19d7d8318c5a98cdd768c341151ed77498bb'); -INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'f96c77af6aa6748a5e893e1f4b027b436463cd8424402db37e8ff6c49df27271'); -INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','69cc69f9d3c3ed4eaad5fa3ea6479a2a15616cca87d2d0351020bdacd0a529fc'); -INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','88009cabbe4f3135790cca14f380fb47165e41768554c21aa9799dd9eb4b1666'); -INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','cafaf7113e84bd9b7fbea30d978431bd0d07f2613267c2df6a3938fe75c61ce1'); -INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','f7e989df89f4141f94311e84cf98e7ccfdb3c32b79d8974021abd254a2b1471f'); -INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','afdb70240125657738e9ed99f60a7357b6afc2e560ff03a5e1f926b7de2b16fe'); -INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'0c0d23a859e5ac2930545bb03acb51bc3c4604321cb912e5c92bd6c3d475eb99'); -INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e556997881fe1a5fffa229dce6562800283f144747a21e24f9b90d05b947129'); -INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'772443a68dc40348df97dd9360617b734d96a2289a1d67629fd9dbead9528a49'); -INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','feb32fd440a8437b858456e26aea808cd350d0b2e6fa06369b5f628358dd7819'); -INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','08edc468dfd78c3ee0f2fadb87277adbcb21f160b58ca06898061e0faa286f8a'); -INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'7b3b9edf2697a12cb174c13b28c89bcd66199ae226f857f84ccc5344c33f3143'); -INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb8e20df4012bd77e721c8634dfa7a2ff9cd46f558be72b713d79ee41d0b10ab'); -INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'38f466652b2d7da777d57909e557d5c047787723455e2b7eb9090114a3d6ddf0'); -INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','109b2ef63e2fd5a24ab9e1f2fb2b4b6d78a36007992af5ee12339c7233a4b410'); -INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','19111cb8b2ee24fe8c8cf1e3fd63a7b0884a0fea8817f5f09d14a3a28a71bf96'); -INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'9da93361b764fddf97ba68248bb7178032876bdb6829782b4b535e5275ac7a79'); -INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'257c5bab5aead655506936f1eb884fe603e54240128d5142553f9eb03c89a86d'); -INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'0090cab89000975a3c4ed64095370b58f8945ec4618bac8e54f729abad3645a7'); -INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','de9c6bf83d27d720058e8b51defcb11c53aabea9611879f45b0ac7afce601855'); -INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','f9cde6941f1023076e2625eff4b215a2df33e94e069163c2a6d97d55f2c2594f'); -INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','f64752d3b741ba5caa8fc41568402a3af21eaf84554cafc846f570bed51e3be5'); -INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'63c482230f1247a3a3f4ec0657a505817ecb37a889dfa152a3e9e0b72ebaf428'); -INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dea2a4327a69c547afda68df2d7e19cf8350ad0f9be1ffd83bc2c55889b1674a'); -INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'8c417ec30eda8ec63f940a4c88c1056eec6716b23850a4d6d70a19d7adc20cc5'); -INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','fef121b2a4af803018e76a24d581ab37d47c36685dfda571ebf7a0633e0a7f03'); -INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','2785b51fcae00c0cb7962d6880045026433f590a2ac1af5f579454c018ad5177'); -INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','8b98c19ebc776691a0a7a7a25d54426294367d1eb0435b0d3f10892741b6b0d3'); -INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','77005045bccfc0834b734616a5dc70a1e7dece58d072ef168471c195061bdc9d'); -INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','978508a07774e33403abe250e3fc2f713ae05ba2be80bc53ad21a54060c17bd3'); -INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a2dcd66a5663e7678a82557b7a8eabfc88b279845876f9275230d91560ff115c'); -INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','d087b55a7e75585e4ab78484d6ef74389a4c29dd24f536c054a1229d5f7d71d2'); -INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','c831b4c4d47da798f449eaee0ca97d2f477fc023b69564c74c43b272465c3da2'); -INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'97a0315b73fcf921ab404c840a19d4885c2d48cbf87c6ed9a7aa8c5c4c24842a'); -INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0a82a125f20db28b5d75cc71e66a6129a0a46362a7998cf7cf1085aab1e12e4'); -INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'0f4dca053399c4187cb07111bd7c8e57f9d7edce2148265dabf095119aefd978'); -INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe8a8762b4b48977fc36e9743f4df40486ea800b7bb82262ecdea93eb92e1c09'); -INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'5225d000113675ca41964ca278d333ade0988b23a23308f9b13b58f06c5333f3'); -INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f18f3a079a3e5a5f3245c7543d11fa0920990114e8f8aca44c929f81ca1eeb'); -INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'675758893ce3d3a5311ed4a130fa42598c4feeeacd53eb0ba7fa7ae9dec16846'); -INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c5fb2e2d0cd75e178c3e7ad6738bc5b304abec4db019539501a67734604d276'); -INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'782a063aa90acbf3a7c29992e726416572880f723dcb45cea77ea60f0ee1dd82'); -INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78c7931907ac2e0dae95cc9df553b7cda8aa9557698845689e5e890f1d112704'); -INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'7e80fec940afdd18f1a2a7d23ccef2cf17f3f03a7fba6882b14f9e402073284b'); -INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f378192cac9498af9a2b59d3ab96f0ef5901214c2ed7ff05e567dac90dbb023'); -INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'e4c9779d35f936f3b3e3ff690b904156683ac8fbc550afcf6fb48457b935aba1'); -INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bdc70a0edfd408a7288551fcf0dbb8e75e94406bbd96efe04bf91f08b352d7c'); -INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'251a340bea9caf6c8c6fd8a7edf031d9d122103a5a8ebe537af8b2dbe375c4dc'); -INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b8fa111a2c873729bf9e25360e8396a9d1640bd44bfda604f8f3c050b739ecb'); -INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'37312a8b9511e70b44b040a3427bd69fc08ec2ca58d490ee72a2a81cab93366e'); -INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f07484e43a25eabb8316acd9e535c5ea50a99681669f65271602209525562777'); -INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'f2d08d731299f8d578242bf07edcdc9acf3091a830ea7f22545622b1fb7f55b9'); -INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf99c741f39e2c62dd2a679167c7d1f4aa6e8985628c64afa6473ae91187fc4f'); -INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'fc7209716c10cb95f0a1f08323c2a296ef6dfa2e66f491b42f729a3e7d3e49fd'); -INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62f874136d95a4143831f2241ab95edbc1b5c47d3ff6e907d7caf4854e6ef599'); -INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'90ef6de86e54f3d5093bb27f4bbd8f0704e250adef4eeb8a15726f72d85484cd'); -INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd1a6975f0dba5d37c93cd9860d760ebb499bc8fb2f73c464a2f0acfc4ecce36'); -INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'433a671147c4b9688bb4dcb8819703b27a4f9fe3d327050ccc44848577227411'); -INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f1db24e248c06ef08263d3ec3f5e1d6810bc87074603384c97ff0edc4141931'); -INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'14f77212d3a89bc225db9d7aec7238c01d1019da525793f4b47d8f117f184669'); -INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54f54276e814b8dfcb7bb9182d97f5b2e0ca8130e6a778b357006e5f024f9cbf'); -INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'588c05a6057b381b5c8d7def2aa4f727342b35249bd29e1c26f46ba2f1207448'); -INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91d747112bc36c6a31a67ac2882279aef49742ccd17715c53c6165d9f486a361'); -INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'1f2a2677603e8901470e42bb0da14c552f84241c936a9e43e929aad496e32133'); -INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c68d4c35af53ede3b4b592e3c2b1a3d29644e535b7990a4cc7d0cca8a63d08da'); -INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'c47510801bb09fc89644f903445d29553f79694e5553536dedb1699380b598cf'); -INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'208554869c9d6978aac3fee41eb81bc409f8d1ea7da45843e204dc22c9be5b6e'); -INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'3c53bdcb29e9c82235ec92d5c453db3009fe54fa164247f770ab31f3b7364948'); -INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb3f8e519e23a8549e7dba131b4b93922bee575ae5abb14bbbb2a66c6935a084'); -INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'90c8ed72e09ae8064468268afdb4c7f620e276efb55bf579aad6095f20f74b2a'); -INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59e03eb9f59f3e6b5a5c09588b8cc0e67479e20412c42fb4c3f4ffb3242a3b81'); -INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'0e04130262bf18928d5f541c7bbbb5b2bbf8448a6f0edb006d1a80967dacd119'); -INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f127ea99ae59b7c23821b39d9a77c6fec08df81300ff72d978e6c69961f9ce51'); -INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'693c08126a08b43bf6850356bc1fae5a7e26c154138bfb34a48df4fccc62f0a8'); -INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9ee8a022beeb4d71d0e18e39872c29b070e2e3c064f4531196f9d90b010f5c0'); -INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'9680c34cf54bf392e20a865b0406e53f0feefb6daa25ed7ce29bb779398b01ce'); -INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d96d64e5ec6c85557f03be687c1c40937a18921eb8cbb332d8495b424437ee9e'); -INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'604e06961e4e303d4a9dcfd46249d3a3d7d5e561034869c95976993224bd61f2'); -INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'536f0440eb893c14fe4f878d56a4b9f036b7cb0dfa913a5917e2e31bfa9eda4b'); -INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'9867c99b58f174ac139749ffea4b3ecfe5adca1836fbe2f0e63313b5866369a8'); -INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81af42e749b6a1196f9ec6623347745c8d0020075f32007fd6b6a89f44a956f1'); -INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'ccc1a5ea70edbceb717803b45ee68c3a90a693dc493296237d24e9d867e18093'); -INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a5a0572854f482ecebea2381f81f704d33f9e330b2c3fddec0f92775f968a9a'); -INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'55919b81ea8ea3053b233ebe201f452cb4ce8be1d3a2e31708a5adaee524916f'); -INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c7e972d91b60abb19403040feffdf41d69f0fe09fdf8112b7e120b126c2fb98'); -INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'bc8befd74fb249f6ef344ed1481b20744d6d448b4768bb90d91080c366b28922'); -INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fdf6ab23283d2634198e9b292ae1e39e68c1d1f1089d1c25e799e446e5b60dc'); -INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'9d8f1248d3f2ca94a0414ab0ae2503b96991882073026c31f91ec792cdc9c5a1'); -INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ceed24418158574ba87d39fe06868c4b0464749cdc87ed67a4d04d9a7b6231e'); -INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'a8538e232149bcf3106d629f77fddceef34933a220a0e3e6ff6fec683342d3b3'); -INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90bf96d49c74db83c4443c15b1648c87ac5022cfb65377aba9973563a5db0ed6'); -INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'add1191c13eff5229dfd6bb4bba1099ec8dfa27cb400d4ab1dde2e1d5ec76c84'); -INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ad6111500f14b929f164e021ef01cf877530416c472d10e76b99d423cf19c0d'); -INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'e068aad05607e55a4f9a32a2c952b58027ce5d3d35e013d76a68304ebddf924b'); -INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'667bb26b368b49a80645bbc1d797cf7ecd193939792655723fec1312a9e1f989'); -INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'6ef2f290cc3f60bc7e832b711df701c44d57ee8a626269814607bfa1de3db28f'); -INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298ce17936825b014f7e27bfb675d866e7d2f0bbe70ca79df42448ab25d7438f'); -INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'d369a6c16c569b994b44cb754a759c5e73405726eb234d3eac57d1288ebd5915'); -INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6339cad24ae6831d169a1c93bde7e5136de57b0a126a4a212e80e96cfac1dd67'); -INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'0d3a6c83eff1ba557a9feb5a08c56d1d6dde4922f1e674f203b7a2bc2ac7306b'); -INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6ea213f253f8b3ad937f05fbd0681d042bd80dd8ffe83d980f5ac9db649b201'); -INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'6699f5430ccf77e5d4ff3d0ba32595e6c030180d797d4e15ea4f9f131572946e'); -INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'125430cb931c56fb19bd1493b201b9bbc75d55dea584a5d64d36a5f60838b5ed'); -INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'5d8ebd6edafe88d4d2afe07a401a65aff442d0e26e632d7d4ac4b315fe3adf73'); -INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca3667562e53b9ddfacca8d29186e36a11305369ba8b65feefaed220e4a602f7'); -INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'9d683413fe9fa426f9be85f609609590d7a626521f1da9ee8cac546f1e7c0781'); -INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9406d10791355d5c67d8d6baf0312616736aa63fbe03f3ca6c66a36458a1b61a'); -INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'88f5f2f08e121ad09a2ed5deffd31ed609e9060f0a1f58c2a9792d7464346fc4'); -INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae12a9d297b9e5f279d8a5cd76781539cb79717e89f49f6096e0a2b08876452d'); -INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'21a61a54b1e10734f194de4937c920d001b48905b31a5009448e420fbe38bdd6'); -INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21a69b8fa872048c22f50943d7b12f7fa2b11c70228f0ba8060670ccee2e46c9'); -INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'32e23f1934ee693c138e3759d8664f6651db61f4d3ab8c913bd5cc041b59de0e'); -INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6540eac6f132620c73b1931d75d754d54fd1fa750ee87509f7dfabe338d6e804'); -INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'9dd8f21a4ec7b2160f85db74f98e06f0eb78cc57594b4c83086f3693c91bfef5'); -INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5611763c1621e6e2992c863bf7aaaf180ed07774cf6b4a5d72533ba82fb95cd'); -INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'26f6a2194d3ca92aba940c423f9b9b2aed41e6f29e3a75cc63ef1410237186a7'); -INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc005399885c82345ea20dd9506b4dc172ddbb2b95394177206b215f25429e0c'); -INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'3ecabf9d40bab5071e080d09fea6884b5f7c0a357511f8f13a0f985f81d35167'); -INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c79851f3608320f1512857537e0fc0dfe3452ea6d580f9291e930a911eb76cc4'); -INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'7b72e8014f190d9854e943cdd4b152bf7790861d0f596e06db36c20e690d2abe'); -INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'489f962891e92dd1eef9886524c872679140bb7255e9903180f66ea68cc5d177'); -INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'ff96205608fa201989ff5795ec247cae62170e09fab5048643bdc66778117c91'); -INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65708bec6b0e844af6372338ad30e6d7fd59471ebf03825b0e6c5d49f5425259'); -INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'0e1120a4ca23f26a6bd8b5c4936a7554b1d41fc1f66908168b281839aba415ae'); -INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81f41a96589c3ec3349268ea65238362d5b4c3ee81920b3ddd02962a46abed43'); -INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'f10b99487833b1392aefb49ff51e8431b01d985343ff4bde8c2d3c934e335f4f'); -INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0990855ec958ea362bdecc4c935b986340f8b2c857ec09c81e67e62281aa649'); -INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'cdbdc086d68640ae467cae883e81659c76e16fb9eb36c081e8893b9815b5c118'); -INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6446b68879d61df3044311d27b975c256d782ca6e824a6421f22bcf91c82c82'); -INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'d99c4915c5d3327c4c991ac3243f4236c1a05e993b7a032bde265478091ba8b0'); -INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23894b3beb839887bfd67f061641c896a42b8dd450643e9d0c24fcf0fc4c0648'); -INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'98b7fe347f533db55950fa28e00e0c1b4667ba41b42e38819665c8bc22b1feeb'); -INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ccdc4e747997b66be0e235c4481c9b35d7ac03f1923aaa4f50db9506b10ac5'); -INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'72482c9a27874dc09718d0cd0796d12884ea94ca486ebc74eb45a98cd4b6368c'); -INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ee9c082e681f7c8d56b49bc653f470913c0cb1d83e9f4bec7b552b9fe170a06'); -INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'47c5ea405c7d6704330e3ae80def60a3c8ab0924d2e33f6424c45add06893188'); -INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a2c644e3d7fc10baf4efd7c7ca3daa6cb098ed0f5fa432a95b28df06641a6ae'); -INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'d1bb350e380cdf33157bc1600a4f592e59f12decfe8cf009c3a0bdd78d352870'); -INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cf100e845c655042084ca0c36c6bf58cdf4487d25d7f2628e22c7a7ca011a2f'); -INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'efc2c903700eb893510b6472d5beda9a2278b49a229d0af7dcc3e3dac37844f2'); -INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9d18fd4934eea951a148248f6f0ff8a19a4fce9d9d5355bc8a07efa3123b49c'); -INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'960a31cf400fa26324f4f0849c728205b4bc672fd81fd6d1ebddbb43db348bda'); -INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3d4ca9114e7ae35daeadb8e94f8dc643ec21e8c2449ec4c3fb3ed0000b29937'); -INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'76261d4e81f91746eb599f8d90f90d57bdc25f7ff362cbb91dd38a0e6398b359'); -INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85bf6e00cd360861188c65fb310c6f365eedc53d63da8eaf745394176a580546'); -INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'fe30d23408cc274e085e11e4fc154a774172dd9a71a7684beeaeb760a13b14f3'); -INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbdf1a48ca689c5961c6794e6e6c8360f944cd07ef4c868f91441255f3acc973'); -INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'05479afb94c81af0e06099f56504f480c0046d1f63f913ef604131f66bdf2b7b'); -INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8ddc31fa9ecfdc20e242f97f155c2b85b85b2fc50aa8e1e96e8de692e3b2251'); -INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'d2deb26489f33f173bdd245f248566aae4baa9390fc89929c84eb6a6eaa45c19'); -INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fe90b87f5d6a83dea4cccfdcb83e7f83479ec8771bb290bc5aa95335a7fe866'); -INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'d73ece405e93be7ed668b27925be86ddb6594126f3847f7a4738b019f7cfe52d'); -INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b57de7e5f1a27c09bc4f79e0fa426be555ebbfc8beb3c5147f217dc7880dff9a'); -INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'6bed121b4db0b751053f650b71eebada49b0f1f860dbea936b3aa5d8e3434294'); -INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dd04b1c53291bb72ccd16375d8553967a1d82ecc03627518722ecdcb45ebff0'); -INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'c612829a023232dec269f8fe878d57221e3a08695a191bf9ce24a05ee882b03b'); -INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0577b04787e00a66362fa1aad4bec7970b52ce04c829e0533cd17ccd142e323c'); -INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'5014b97510f25157adaac9a4e4f2715aac0336e1b95e0be9d2c177ec9dcfd2f2'); -INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35db3af068f5b8a4afffb0bd778f3eecb91fb28702c7f8a84fe17e7216f7ef70'); -INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'e5d97e02e4e6a774cad153ea1f801fde0cc81c993dc61dbd1016d197af45cf17'); -INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'600f766f29aeaf43327623fd5ba05b44adbf9d5cee1490c0bc93d2e95b999373'); -INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'61a3a680e894d55dc028065bace6fc5d4086ef15448da354b550e423255e6823'); -INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4bb842997068966b402a57a88865a8fd38ebe181c52ca48119667db1f751c8'); -INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'1a0b600c814b264ca3925f076f734f4c4036b57076baee75ac02df59fb0dbc5e'); -INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76396cd027d33b7cede286d3b234fd31aaeffdbafe8f451b856d1ea60d84d083'); -INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'50e46051d2e8cc65dda9c0922fefc78f0a9426c38d1dd6aef3cc0279eb262565'); -INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16129848586c0b9c49f027b48050d7bce2c070f33bbc66baa41b189873cf5c03'); -INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'7a30899b42567cd0fc535d0419a61acdad5383aa5021ffdf1d2a2402dc9ff97d'); -INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4931b5a9c2f7726ecdc254dc982e74a8a65d4a2cbb8bfa09c908c0cf67c097b'); -INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'7a967ecdb84c675676489724dc94b0b45025768fadad961036e325027f7c7fff'); -INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ba6a6a4f6ad4abb54ab630d612b2cee94d012c2f77406a1f4411965e55a76fe'); -INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'75f56248d8a23e92388d612cb0fadf2d2b40fa5d0aa9b4cda0767c8ca65fcaf5'); -INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1237c98875209bec4db26958139f3de57be3ae342aed92a2c05340796f582117'); -INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'e882466eb8bda6149f768df651dbd057defd008706fa6c990d1a88867ae97b3f'); -INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df125206c7e450351a5cb34386915eac0dc2fa66ba61e4bbdc962173d70981bf'); -INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'6e3120959c0725f216eb02bee6f75571552ef64df1e8c196e1243ff0b0e9d93f'); -INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fe8179057b6b4007d572013745ac70104a73b9d2f158937c96930884886a1ab'); -INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'a223d58c93d118098040ce8f767d0437d42191a71d46ebc28b6dab10ad7c06cc'); -INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d91dbf4b36e236106da0264db2dfd5670e51b04f52482a2632e820c9ce43f3a'); -INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'927c68b7ee5498108bbd7a2709cc464159b557448dae4edaf8b80ca4dde490f7'); -INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63e024ba4683433196176c2ae99e7e6fc142b4ee6ecd966d0138fc1c2759f077'); -INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'e59c48aab0a9cd5accc06135a5ba6b662229213684356629c1f6d45af0284d38'); -INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4450af4118331fd5536ec7379e25af012b09aadad4946a2e8850e31204ba72df'); -INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'37854b51aa94cbe91b8dfbd3fb6f46bce03f818419972b3ae61100c6ee18a5e6'); -INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43d92c37a6258734d6e667dce6a24b712486808177622db4d6f4e3d9427c32d0'); -INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'d788832c6ede86833549c226e8c85632f21585d0461a8ac051ec1f5828250237'); -INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'180776d9a312f669321233448338112a535c9ce058df836309c2f7e9084fa5e7'); -INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'71c6ca913b7b38443cf7405524f2ecf889601610a162934b96c935efc4be21cb'); -INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b06cadaff4fe788bd9b67e72f373190acdcb91aa25c416816ba69d27fc7d986'); -INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'03d5aaa56dcefe30f32132665508304ba20922f3bd8d3c3484efe30cba315389'); -INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1edc9c9b50154c8d5e1e4fc49a608283a539786e72403a451a2929596051064a'); -INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'80543a720190715ee8bc522c6985a456bd5c2ec4e26f62a5f3171d1d8ece3545'); -INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec6055f30d757f5e31a5e0ac8dca9b904fe286640571a82372b10f6484996b98'); -INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'ff898e700a001d877ac46e5160d0ee1c7251e1cffa621e6c45f63121a89a86fb'); -INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c83581075d303ceadfef793fee758db4482c4bd52c2128fc423c73ce31c8c97'); -INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'87b82864651d9cb35b8e436a97306e9a533f256ec3955dfd0a05891b6e57f8c2'); -INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','d8b57b83f7aa1e7b8514123c0dbe2c69e00ca73738eba0dd45ca0cc98a232271'); -INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','e4497c4edd66c7125119e50c0ddc69205f51945e53186ac7d9b3da8d849802bb'); -INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','3f922f753caca9704a0b289bb6a3fe66936ec7d6eca5ecf9a1e9758f4c451ef6'); -INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'0cd31050f7d712fe7170b318bc4348d4861330fcfa07c0002b6c314ec5ea0d88'); -INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1066da31e0fe26eb392d55d5c2fb242862f837307b0d8097c0bed8b0d51dfb4'); -INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'59b881e68fb10ee04ac1c5b3bbe9e5c18bc844f52dc1f863539dd15aa080c9d3'); -INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','67028517321e93e6125c03083f953d79a4795844a5bb5e9f58a9b4ac77927e32'); -INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','30f159e336c2ce435c50befe2c6392c36862274801a18f14c8d634c07465c23c'); -INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','743f780375f8fb165454b14680f312cbd833ab50cb33de817420620ae5dea4f8'); -INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','62869cde566ec96d3122515f349bf31aebddcfc1ee8b2d0c028085430b0db7d8'); -INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','ee1611ef4dab7d0b2f54b5415dca6b4d72d3aeb70af9463da585264a6e459436'); -INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','d327937b7673b76990be740d16a15e3081250e29d5a60f3f65e8b5f5794570e4'); -INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','469022430ea34a729d67ded92ba41a83cec34f4be6c33457b756169d957665b9'); -INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'0242040d1a339cf1aca9dfe2870d08cc2fb732d0dcab71cdb874cce87cccc715'); -INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae357218f6196ec63d8bbb2d05fd45b0ae882a7f7541bd1e97dc5746be9926e9'); -INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'d01e107603c8692289b070668865f53cc4a7837dc38fd15b0b522ce99b279376'); -INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','73d7e7be42e88bbbd28d707244495d26a8c75af6bfef974c91f8b8f200b19e18'); -INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','6be13b51bc80ae1a030697221410932b544b333fa243952caf8c8e213a89fc02'); -INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'4e2a6cd5045d20c67fab39a45fb64161dd2ef457d90ed379ad48a33d0de7d30e'); -INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'197e30d4e1f5644d415c20246013d373baa1601212a3cefb6e0cd7feea92d8da'); -INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'af1ec2a6fa78e1bd65d431e034d8412e8409719cb3d5cca0a723ecd6bd4588e6'); -INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','52123cc62e35c311ebd4a127fd3fb94402754399da2380bc74fbf7b147dc8951'); -INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','a6a2c75e4ab0750121ac54aa37d372defc7dc4c5ee96ac52cdb4819453c0cd60'); -INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'e7cfc58e41e8561ec4dca70cdc8f1f053211797eb41cc354353b2f7919d642fb'); -INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf1d43a2d06295b8c58d0fcf58cb793f0e42441bbe9bb0a3b1440eb4b6c16333'); -INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'d8e379a2c126854a99fc4b7fd6c7e20a4a1907d74738cedd22121d5510b25cec'); -INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','40ade1ba1f4e2c0ca9b4ece8ff3c650d3d185b22a0ba28021fe69bb360f327e7'); -INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','713933680d1049e595d504fe6888fcb666c8ecc4243ca462c2e11a54ac0e64f2'); -INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'6ca1b23245f60bf646f80562e3fe73027d04c111ffb0b34e137aea1a4264156c'); -INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73128fc535f1e494d37d153e6910997b16a8593272948d104dee43a09672682'); -INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'de005512f0b74d966ab2ecfa0aa23c556df78ca2e7ece564fdd00f642057b2ec'); -INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','ed5a41e8f520916c86f8b5ac452f697b53d259116390c08149004506e8c7dd4d'); -INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','8aefc6a069ded76a9a0747b7b0cc86ef7c64526b3d0bb035c51ffed3a0c0a167'); -INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'ae944e585d42101afaff3fda4a375a84b9be641687d41499484c42af1c38884a'); -INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'131f97cfbf8e29b4b42c2db55282e19c4bfe0758aaa594d0ca599161db31edff'); -INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'740e7fa38a8f08c4ead1ceb5e46abd64c08febed088db85186b3c065d14a0559'); -INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','c864a56ab226e49c765fb2aad3ea4a5cc22b2a355b9613443f71ea901d1326b9'); -INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','5cd8dfed938aeb5a5f120f083c7ec9e4063aae57b67b4d5cc259456ef592fbe7'); -INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','f62451eceb87e05781c1fa23c6938a03be6aa0b77648f43d40bb6bcbec4209ec'); -INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'5332de3819013254c7cab8ddd85d8e9a5cb4ab4d52e666b9b8220de76d31c8f5'); -INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ac47a04e13ced56ce76ffc628ea0d83e7ad5a7356e3ce0025efebc34463ac5f'); -INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'f54189c815e3239ff59ed08f2fea417f1073fb665486eb8e1b4c9dccc4433b9f'); -INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','a81b157517e671aead8225f95a5773c07958c548cdb728b128e899982e0a37e7'); -INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','f09b40650846d225673cc00fc6e0c1fd1b658932596aabbbfc4c003e8eb77bf1'); -INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'e2775499fdb6a5b56f3e30362d4ed7b1723960c744ad76ad6c2edceef4d3ce00'); -INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9deb97d4cc653143b022059f470a33d37bdae8fb6ac560aea85296c2aabccfc5'); -INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'5a9187ff29ffd78823d55e616a8c32a4e979b174c0921379d07ac64fa7511770'); -INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','37815a6ba91656c50b6a940e63e7faf0b0560fdb863c3170adc16a4073a37142'); -INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','1d138aeea34f9df854ff504d14ae0c865cfd106395954b6246bbf4cfc657abae'); -INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ac01607527b8496a8a222c823e79bbf40b0627e2d598f4b0e67326dac21d6369'); -INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','1f06417401e7cf06ff6b4a33aa451665f154344c2444226e33dfc57f1b5fcfd0'); -INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','c79c48f8ae9a74245ef1079bca0391f3cf561d76ec72e036f9a4b98d782bfad7'); -INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'30e95ae7f2368f3ace9a999fb5e7ba5d956802aa76216e9e51298184d5ccfe4d'); -INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52d6a24d17d3da5843aad7a5c4846fb3936d01a5bed4306a9c01795bcb2de6ba'); -INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'d8ea2044bbff141cc531a820870a3d0c019a455042e51096d92cbc6bc70da1aa'); -INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','21db8f7f02974033d926dff5cae82e958f9d1cae22faf7d56308b0854f49dce2'); -INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','0871b7f05dbf2c7a8a416dc95b338fd8d6cfe6ca5fcc9e7e7b3c2f2918807031'); -INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','6b1613a543aed74ec274de3053b7713db4599868f4b224c5a9187d06c1ae9eb5'); -INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','191be941a6e5fb294983e32fdbf450a61e7f4ccb095e6797a9a710583b62cdbc'); -INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'9cc461913485104474e58168880a08e4208d12e83fdfd09b76fbd631436086d8'); -INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2d83ad46a796b9a9a47480420e152cccf01095e7cc072b2db1c5fc952c80af1'); -INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'9d09077fc5275f1dc6e5a269a02df284716104ed96ddce83c53bc953879e8ed3'); -INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','8d65648d9a06a5527e26f82571ebf6fc96712e9f0e0cc7a9fa43fe31db7b133c'); -INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','2ae23480e74d6026b86091bd8482d05bd13506891c2ba37dfb2278d7fdce21c4'); -INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'df7bd0b23ff88558290ba457c1e5ead98bb6aa1ac3cf8651b45c8d88f625c9d3'); -INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34a8577223ccf0117a968b27109bb6c105776e893d7523230e53fc65e0fa57ed'); -INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'2bcb8e6ec7021d4c16b9613f3bad0518062d540739a829794238861c1e00038b'); -INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','c282f122c1c03a5c646f2adfdd2cbefdb0611a10b9379b6d1f71ed8046f5b6a2'); -INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','9486b3e94ec6fc2c5ea2629726d15c7f89289fa15c205c4bb07ea3a42b3d074f'); -INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','8bbbb431d57466f8962c1a415c61935e7d76ab686e7c2704d1534bd8ec59cf51'); -INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'2057f96aca0f35eb582534cfb30a2f77b5dc10d99cff003bd2f08fef253a4c83'); -INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4eb447ccf64f2c3d2182fd4e5f3b7a412def348b2aa836bcd76a2860b24eefcf'); -INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'405182e4802f0c5dae9519a8bd1071bdcf1cc478736089c45b0a43709005392f'); -INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','a9859736f25f9f9cf747ab3784714b20d3a8b5e700da171ac50305ab6466718f'); -INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','ad4d8ca13eb9edea5db333b8ca1f7ffcfdf0381f440c743967fd56fd72d32f1b'); -INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','c6790d104176ac23e827e420311ff7965a822feb55ebaa5b4bbf7e8ca1e47e0a'); -INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','2cde10206eb27ed214da63c9ff8fd6ac4cfa9c7dcaaf34b109b27e7bd4633097'); -INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','af57acecce0a6722aa5606147320acdebfcca6cb44c5298b2677e47189933563'); -INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'e3e7cc332b56d617d2055b36c61b4431b839664742c7cb08f160d70573b14ef2'); -INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'238916113d2dbfd5db198e214aeca21932fdec92543087e92bdd545e91fca84f'); -INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'84e5429bfeb4db4c8e1ec700dfb81a002375abb35f53e93eac32d59ab7ed6dd8'); -INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','739a0b9af89c9a3d56f0d6f9db3c488f259964cb73565d5aea9d6c7a6a4ca0f6'); -INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','3fc59990e1152e0dac51f716214c8f70a3e5ff1c6c5d28d742acb520a488165e'); -INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','5cf050a4516a1d1720c95446151056e2cfb90b2ad2fffece946a5a44e56271db'); -INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'d845e92b4ba91cceaf01118687789abd04dd15a23336492d34b7b2ca69375c64'); -INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef3b493fecb7f5a3b03f975ea183e59f7866e40094df624a753593c070a4ab4e'); -INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'348c9f8f5e81388b945d0793c0819b9ea11e3a26784f5076a364ecb6bbe118fb'); -INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','6adaeed5b3483725f554d213e4b7e2b0d2da7eb619e0b239822d23d64fe04c28'); -INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','5facb4b9f009aff188d9e6d8ce52f37b850b22f12da444493604810443851c9c'); -INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','60565e028f396a64c8937a3f6050daecf35565558cd8286706f4d8c580750465'); -INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'b2ac56c9341c98561c6e67a994b91bafec71b1a608783fac8951b2e27a99c50b'); -INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec45557187d36a9ad8d35e187610b4b898847eabdfa5458d33eab7fb03695d18'); -INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'14af3f3662e465912dced271baa49be2afd94c2a991908a859059c493fd4c41b'); -INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','cb47dd7eab8875e007067e58462c2cf6aba8ab04bb6c5c6072165bba78efca51'); -INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','f5d5c9987c5bdd885eab4428f04d3e20c07fa94b42e3b014d3ba82352fa782fe'); -INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'23259b8634641a62287d5c49f8f2fbc2dd3ba60b375ee82e8b74b10566bdb03e'); -INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02183616bfbd57093ec3ccedaf9c48724fadfa14c9e59c71423e43d0ba353599'); -INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'6403615bcaaf769c9a99269d53430d6079127cf297b915b465dd747e42cdd6c0'); -INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23fca68cfca74d64524a466ebd5badbebf07eb09734d8a66f7a35245eb0ce6fa'); -INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'62d7fe8533518af6af7ae60ac030dadb190711b18c128a889e7c4a2cc6971597'); -INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8e305c6275bbde73c6f5db73735d1413a10d7a6c986dbb58a7d68393dec68db'); -INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'2e28b79f17f417237b5f53d356723d94c0cb1467204398ca51c5f0da4be2d1c6'); -INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f87ace0efb39ea147d9da8c0e5192ad5fbebb7c4607bc16fda0241fb4d566872'); -INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'dfb7f560c86dd81ae015f0c90e7a5879b2b91527dc8363f4cf5147ff8f136878'); -INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b46642b52c71e5e999c256ab74456241d37a3091921111afd5216ab8321658f'); -INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'5f4e4f90526a150b2afecfdc539208fc0ac14271a8e2c5d8875b16e750e5961a'); -INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07eb3f1992b0c96967fffd1130163198dd9fc1e1c85057645ae3f6e41dc5a006'); -INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'8622d390a587cca6326461b74213869e55f3c750a03873c28df370562c265f22'); -INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b4faba15418e6fec7fc9f9147abb20e00928f65073b3063f441329c2c759c34'); -INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'c405be990d9bcc4e07fabbf94648ce0dda475fc0c5f5c124923bd278db0902eb'); -INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b95b2691414d74c22f20d0fb9934d80b94d787d39f6a81a2ec2709c68908501'); -INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'baefc36a6963aa80dd62e179d076fc9c025d17f5e0783a67821e8751295218b0'); -INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a68a80d9246d1a2f975e21a82a4121bd41b2c7cc89a0fc7369bf36a0aa368229'); -INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'30f243a7658a71be948d697194de7e1252bb1a184109a933ca818fa9d923887f'); -INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff7383952e8e80cde4ece78714ce8bc0bac03dff3755807ae90a3d69d20f0803'); -INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'3eb22569a6ad6b7da8ad2d448bbce2cb9ff53fb36cdef2c7d378a3cc0991f4b3'); -INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e444f0da8c024f52bddab7a3105e13187fd1d4b260b58634850d48bc49277283'); -INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'3307a1c334020be25e4b17679286f48a0c7b369f296e4eaaf89dbc1ffaf37ea7'); -INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'569c63bfe16dfc5992b5eabd566dd37671d59d452d7f190be93d427f89f124ef'); -INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'1bc8d5c94cea0866eb56693fa57608b97d6556371a1389a62fc3ac2758cd5af8'); -INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f3d4447b287ff17feefae78baa027e42c7d4be2aa1eb52234de0bd9a0e32911'); -INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'7ab080b691369a35a80380de1e62c11773e3d7f10bec8a4b4cee02719b8fc71e'); -INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06917ef33b09e2e1cf07f53fd43a2cda29590da423d23d090ed858e61f971c82'); -INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'49563f2674ca9446f24ad3f9fc01c03a2a91435eec54a2a5518335350fa1c5b1'); -INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'788690f9deced60c3563d4bdfb456a75558c6ac12388cba2457c4ccca8445843'); -INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'06443373b53477bb1268188c21964095ef52d3263df3e1b2b68cb0a81599ff4e'); -INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b9132d47bda1e31e8803b031919d75e208da21411dea4ad398e8cb3f6b43b4f'); -INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'fcddcce5ca6e193619021f0f5018b48c7c2746300c3931fadcb3b69d1e9328b7'); -INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca59ff4409c9517b9d974e3b8a932f7512b1dd68d443faf55cfb7d9ac2e52fe'); -INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'fba7bf8b339d129da5463eb3debe1e56e6d48f473a0e5913671d2c1206ca4b70'); -INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'608c4602f130a76235940d68f3bf5209546641a084f6bb7213e3790ace770430'); -INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'61374457372946c848373525efb18d74062b784fad27c1d7aa91a399527ad356'); -INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66c6b015f67ec0a4d50ceb31d51ec74f51e203ec5f709bd697ac5e87910d4c5d'); -INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'e429ad518e425d463a11ff82d3965a9b41eeb866ef8bda8b96d8de6be07440d8'); -INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'505edbf7f79b2196a69495c6eb2147fd6a8e13f5e36bfa3c9888b89420ad20ca'); -INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'7f4abf261d0f62ec0aeb053eb16e208490f635379d43a633718c7205d7c018d0'); -INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ca4b977bcf3ac7e00a83b490095074513b167ca5166b58b984364bb0a7796de'); -INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'686affb8623b3e471125e90f1656349d443c0978ef1a9ca42d4943d68a580576'); -INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2249c26faf67931de6aecabe1f4dcd34132408b79ee60caf14362a5e45e12b78'); -INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'ad9e4e8589d5b003c8b399ec48283e9a70d29401c5f9fadd3fdb1dbab3a599ef'); -INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2234d608c6aecb34632dc95135881d285c714f19c22ce13bcf89e2629df57f26'); -INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'0520db4ddb7778fa0e34d7b3e37ba4310507f3456e0584ef80cbc2a664252428'); -INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c406de0b6d31d1d348c252d940c6fd2decda8c48a31a297d7faab686bef1f195'); -INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'a5e6a6288eea0ab1172889b604078cdeff5463e96fefd0791393374ad9c72c9e'); -INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03d81092fd989ad2fde8238631a433c82307451a67c31fcf1c1f9b3f585b1cf5'); -INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1c87c5bdc71d5e3f6bf3d0cc57c4fbd3a22ade13a264f22e2425f3e4db4dc6dc'); -INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd43e5fa01017706616934737d319225bdb516a05bdb6cf529f2768754cefc2'); -INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'4c0672d8dc0db56d1b1a9d08705ad25b7537e69d9a320270869ce5051dde252d'); -INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a322aee6f9e1e6a19ae4c6efe90a0b14926b91d9c85175afe5ab74837e41bdb'); -INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'49f6b62af014599e108691f42e1dcd4fee3ec96b8d5c3e618a589482ff15ed20'); -INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ea4d932739c0d913ca3fc1004a397157f3a05297c986f05fc05b986dec9f477'); -INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'739733b62e365a2be3c481da884a05560964e40a7220e738ad688e2bd5ed2760'); -INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a550ff1fcc3de3c2db556ed120476a5846d2ab0efc3f9e830bc2e9e7dc26213'); -INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'de92689a1afd313a94285a039c61e4ffac815ead85ca219d34ddaf0d2edaa0ac'); -INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c1810dd736bff82c7b29e73ac773c36dc4cbcca4770e0ee8f2354c07637a6ec'); -INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'de21832a46195dbb40edb7c652fd3046f5671cbe6978a50980f2372022a08301'); -INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ad29b9033149f4098a70dd37cd9e34e70c0bd4ce91a5c0a9a94b3cf840ccd20'); -INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'1a5b59ee839c7f8db18ed91115c4ea23fbdc097849673d0cbd8921e6f653f014'); -INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09e5c6c7d15917341871a5c246f07c45071b29da79a4104b3d1967e7ac9806f6'); -INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'3175e3545c223cb9004f0345b29e589cf6fba701b2a36a07928dfcce72da7f69'); -INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bad0591eacfe2e9174f7b6f8e27b477d46834bc565dc6750d349da761e85f871'); -INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'7b2ddd50d8c87b31ab0af98e23ecf27a0ff675d779b6217732945c5a03702372'); -INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11c7b3a82a5769549e5a64a646c5258c0ecde09a976ce5a3fdadd8e9b31aed2a'); -INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'2e2faa1afc3962c5e2f6cce66a24b9f5a1284c435037afad3da28c7cfeb998d4'); -INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3162bbc95946b98ac9d903b8d8a78259dcd93f547c2798f67a4d6ea30616541b'); -INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'b9e70f270bc70d82affb6c4c984b07819f0bf4814cd5503eb0f8eaac84e906a3'); -INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4816387b36f3807a250595dd932b006bf1a2c440e21de0eff2b432ff6a482117'); -INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'dc0b6a35f225f9982cff4e9f797cfcec4d18c9751ead7cef977d7492afded665'); -INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a6c4b4d3808fc2a40a854e800414148366abc7333dbb6a496238b77e1972e16'); -INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'aa3ecb181f30bfa3017f08b030f11a81969c33a37e9d9cb5d9945979f1c346d6'); -INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8a7ef9293aa49e708942e49135ab510f7e41b6bd75df0550d7a2f2330efa533'); -INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'5d1603cbc97212c1e6b6c9cda6790cdd84d6c6e29ac78b45e67d8bc76cdd9f4a'); -INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5ba425a4851ade7b8dba5f3f91767a389fea9e8002bbd7e0911f8232124f5fc'); -INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'5044349e8e776b40bb4eee2ee65b6e5cf543eb2390011e38bd851e872e353b4e'); -INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06543b3ca3bf6efb181f4fb4f3c884f9c2210842664aa0effdebc8cbf26dd2f7'); -INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'1796351732357d8f67e208f76db7ad5f08358a6be628c7c851dc0a3b44a97d58'); -INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccdc4c6d6ba9bb6c200e584015ddb51be0c6664a01d9d706c98be4d4ebee8f6f'); -INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'776b748ecc322a419918fc13989ae279f125eb3aa9b406c8acaa70f5b34312dc'); -INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92a0082d42b5cd0de3405e1570b80e8bb144fa133ef0455d21ef38ac75bcb226'); -INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'9255fb7841e8d6f44cac7800a0805538cb105e2556b6565a0cc60360adc8cc8f'); -INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2342888b11f6955308c42ebeed171d0d87ab9eb3e0d22e432ea78177c8427e02'); -INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'3f9fc67b13e68d3beb94ba237e2ce89ceb69eb39c5010ab565b0030905d99d01'); -INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d204534312ccfade3757190b46dc1cd8cec121fe0e760593cc692c9f5bab59c2'); -INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'5c86eb96f4b79710e798e7053c1deceed6174a1b9f36e69b096d0828dcadc421'); -INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d64b8ec8ade9bab775fe51b8aa3d2ae07f764044a7e79d6cd81c2bfe51c8b7d0'); -INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'b223117c5ae03a9d0577139bd999f437a9b8b342c6a575083f7f00a4e9e7ee7b'); -INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18995ebb380f0d6187e08cb5b194fce138a3c396cd779deff652fb5da7c0bcc9'); -INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'e10ce86edce8f0406bcef6d2defe398cadc9576cc977b9c372df400a37da3db4'); -INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f026adfb4e0caa641e192c754c25f8b0bc238ffb721e4139afa59b1c002e69a'); -INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'8982ed82904b2f9879171267776cdcde8b037d896cd435fde7d75a8fa79c8c0c'); -INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'564c74a3f8614ef88b0812275bdbe70995756dac3fcebdd3f124c08addc97ebf'); -INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'32a765d6e00719ae39135fc87cd94df7fc8002dce8a6d4335bac98914b9d742c'); -INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d42b3c9ec6518eddfdecfee82c217f4188b2a73d35c45f6b3c301be326035876'); -INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'153671d8e40afbed803145f9ec30bc1113cc720e3135e7388693a8b80e5b3e0f'); -INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d301210bea4a0185996b5c89ffffda2ac4dcaba972c630e18cc6042df4baee8'); -INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'e1e73e11d2b34ec62028ab0b4ff6d52813e1c2ca872b6b7daba4b9b2eec6eae5'); -INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3aee3bf6fcf19d3a946740a226f2c169fdbf3f3d9e363d8abead28e1c36f071d'); -INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'d3e4ca71ac17bc9ef2345d2bd5052648225430a49f1c93684060457817dbea70'); -INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88744160a0d974f5ab59c99a581588250a9c293523a8680ec87326b04fb2cc6c'); -INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'23a90d39ce71d404121a0ea92b38435a685e9b0b4e7d27eafff0ff5f2406a92d'); -INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daa24bce7bc7c2b2b2f7c2f479a96d003d4b21f00d870c37fe327b405dedef3d'); -INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'ecfcc252fb400ee5f24ee659bcb2af3ff9ab116880c35b3ef6b6fc74b0f9e4c9'); -INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06a50bc0beabc4338fcb051126a2feb52c61f572f896fe2c5556afd15584a33d'); -INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'5eefd305d23ddf47bc13990c174c5ce8bbe0fedb6964c83acf55ee3dbf169677'); -INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04a857088557f2eb3395fab3cfefa1cc0f97b15f310288fe6a5f4f3a27e81b29'); -INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'f2f013fa7116c18527660dd80d567e8e99539efac6c75edd2f18ddab7db6cab3'); -INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b542310e89cd8c981a309ea2c53d3c5c28434d39159c392f48361365f3c73be5'); -INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'e164e973b36a5d99712b9c40576c7e68f65849ad11d5cb811e3aa963dd286fe6'); -INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8416e813f4ae6d2f03a02f5d913b86e5d2e24d24cfb108f799189b9b6575364'); -INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'a7846fda25da0b901d87973e6d8d6e323b4472c9658f62adb22993db333b20c0'); -INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1e98d6791bc64e0e6e550cff4ce6740dffaf0084406e981504d6530043f896c'); -INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'d51f2ceb5005c3358dc08dbf5987fb8a35dd37e2d9c37e45d2de4f1bf735e2ad'); -INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02a987c996fac163c5417bdb618bb6ff46095925c5257e8f73f967326682fdd9'); -INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'5aad6a396787c913c5f3c9a96af241b4ca4ff7fdbeacb4d488dde6aaf9346585'); -INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bc9b0aaa6116bd52f3028cabb8c3a0f5d4b37d4aad0efd089f1ec847d7c1805'); -INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'e53845d29e06907e264c69f0084d5dbaf0693f5476fadff9b143afde6af0d66b'); -INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bb6ec625e3e3ee5c5da4658789f54338009cf0ce3aa10c07dbf43ae4d612135'); -INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'c68bc9dca8c6b0a594b9cf8a452b6d27073320110fcf377108ba34e89670e0d6'); -INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49da5dd021a6cfcce622f9d69114e4eda8478c43eca99d500ad8348a1226b454'); -INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'5d5ad1201ea12ec2f49aa42373885852d1beb66bd4984ce8dc413b1bb5c08a68'); -INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21907bb21cf61e5592065e3729fbb5ec27721965d8275e104e3fb237c58333a2'); -INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'3c0dab759dd6899e10c3e8ec0f7a1831c032af3a1b3cc26bd0f5350a814eeff7'); -INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942128110ceaa54f625c1988d830d967bb00ad44b59880e7ce00f292ce75b7bf'); -INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'55ca3ed864aaedeb4c65b43203852788d9aa48c06f6a1ebb1b9763b323c7615e'); -INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da10b81002421477b3d746d95b8e797e5e426825b2db6fa3670ff4983fb78f6e'); -INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'ee17e57231acef5733bea7c01fd2c84b39e58d94c7389c6b9f82b1a3f579a6a9'); -INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54148aad2801982aa0a74080d092fa88d5276139ebebc4bf930f34d86ff8ee61'); -INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'64d74ac1dd03ecf5e729bcf99e34fa0feacb75d57273168c6ca9cbfa69d9f7c0'); -INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e04260b3cb2e2c23f825729efe4ef9691532fec300bc47628392fd693ef2e519'); -INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'ea8713431181e5f2cb0a11a5c11ab2b407340f7195f3d94528a2c7cdcd92ec14'); -INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b761a83c90c5f408299134e6c33e6bc572779d06cf632eef29322149787f4e0c'); -INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'6b37c8b977ccefd14bdf16d4963344e8c9b0aa536a3c5a87c83ed7b846fe851a'); -INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'636e11fa0776ebb15c99e07868a7b437c3d96ffaa7791e165540d81a35fe5023'); -INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'609815f90e5eb66a3830f30ffea5f835f8b8c05cbb3688b709c21cc57345117f'); -INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ddbe150ec3a850718ae058dc793c130066af8765c29eff35ef0b66f7c5fa27d'); -INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'85610044dff50fbe870d840782ed6e0bc40398073c2f3bb0f6204d2eb749cbbb'); -INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe3b446048fda394cbe3966fb55d322391a64501e783c22d806e5e2a145db8bc'); -INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'9c499509c7e9b8a490f32761e9e85f313e77fedbb25c2ceb2d7280441ef9fc86'); -INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d29f60d32700ddb3f152ac5c9228913591fa1342193d49c75249d2f810b465b'); -INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'13a8d7d701515741e59edf6a29e3a536a9c0f54cd2065d87266f37075fbeb89c'); -INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8c4f755c44e177a2514e29c66d2cc45274463410a6c41407ef79c8868f120a1'); -INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'23b8ae8066b42c5e81a07c203d18ca7252e71c12de71fec1a3817157ef024e1e'); -INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598b2c9dbbc2c5e938961a7b019d1ba3e0ea17b65821897348cd1d9d7274bd62'); -INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'b0858397bd55195830a42094ca869e7d8e05eba6c3ddef4211e94c6bff78cd58'); -INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99800544abd9c3eb33f6e83f11ff0448ebe72db056ebff3ee03b8a5dadecdb0'); -INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'78c2c9bd3ff3704dbb441bf0edeb7450cbbd2c4871278d5fd5e3cdf6b33c2404'); -INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90c9dad492ab2617fc8aaf4aacfeb7ee3ede40c19bf33f4a511f1dd57617d1f9'); -INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'4095320a85f39225c536a83edb04e4e6a993b6affb31acd9a1dcbe462cc6dc1c'); -INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'535b1221bc19b301cdf718dbeb6a347f4fd057e56c5ba10d4bb6ffe0545a3d8c'); -INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'342044641025c0a4c65a075c2c752528c8eec3868f57dc95b95bbbb10bb0563d'); -INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'653d4d4ad98d7976e04f5023d9ad90400bf2f8d5ceeb1a4f856e52abb1c3127e'); -INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'839e2db826ece6ab2b3b10860bce2d7acde3b665038f5206f9e1dc6d4056b790'); -INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d9e250b8b44aebbbc8d4c4e16a11ed197d136f157fb3fd19d36178ce1950030'); -INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'058bc781dd082167076bc84b7b9dc18d0c20b5506653315d851d3772b3303f62'); -INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32b65fdc30c2af15de2d8ea7815d68f9e94de67e7542625a290fc67109647222'); -INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'4774fd039ce4db76aed5d3d3812f801fd27aa8495c675a64a2f6c09baf928ee0'); -INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2956ed7636c625a8b485bfc2dae3dc8ed9196e8560611b7952d1cb4c6d371da'); -INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'317e8a2f61aa0730a1acc9ce85a34ee660be6debf7c42c6c573637032534bebb'); -INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bf7c4afc424c5a646b1dd68c4be0fd714a14b19ed635e6029a8892e16dcaa94'); -INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'78d197dfdbdfc2128abab62babc59e8c530fd38f6a71395b6c32747a1b0bcbf7'); -INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c35b23c571dac8eb7277e7d58aedb23c40498fd5614be60cf6091155dbfdc61'); -INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'bdaa1e7b679e22937e37bfe2e758cf37320260b0f50dfd763a48ad6bf0941e04'); -INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'329f0e0c23a0ca36f25e11ab5838254f8aac141c57081ef1b91e42f145be7109'); -INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'56c027e85e5cba013ea96c2521e4c481e3c46678aa0c4a57009536607738261c'); -INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6626a162d54018c0710f9bbfcde9a625442916efa184d674bf1cf451907b819'); -INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'bdc5c64e64a5b8d56630df1c7351a4700b37ffba762d29980ff91c6487f2e8c0'); -INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b8f7abe99db5042f242cc694959436d50a729282b43e06b246a17d9a938d077'); -INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'588f91146019d747f1a1823af3e0dba8081c7845830c6835b9557053d5ff98a5'); -INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c86529ca13768597e4cd37b90c97b9ee7b06770d3e64a8d5d26fdf4f76de13b'); -INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'c06e7912e19ac62d46c03eb64a6dbd170d686a9126c10b2d94e6927d56312cc5'); -INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b05e8335fadc0e7b6ec84d76a4d5613b29e51971b26096ed8d65b4c4953300a'); -INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'005a751a79e4397f09708861a5e100d6f1fa81b69de34ed9c9cb7b2d1516c187'); -INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa0ba5def9d6138c72ddc514e77459ae5ebe439ad89a0e25df706a88c79327ac'); -INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'93a1a4ea05bf781351ce44871389a77652c76c7470a33539e5e7d9da41204c5b'); -INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69977f906bd9ebdc2b7884cf851d81a945108baed99dd5b561f4cc7de153df4b'); -INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'0be9a1f224f189f595d28c0f5df711bc888ebe0a48eba9225daca3c9e8c31082'); -INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c23c6a82129cf1466357cccd9d25a47c6bc40cafebc8138c9699d2f35bd6c54'); -INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'e69cd90bba0c1a92c7d9c4deecfdc463e7395df0a6c768974ac25692ac5ce8f4'); -INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96a6d152c4d74fc63c9e6f348048696cccbe50408743688d7e684b0770a9e41d'); -INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'006774ac8eda0d6734dbf911aebf78d9d5e96ad7b3cbb7ab4f570b80a9178392'); -INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fef3535fe4b2d148f7a4b857c4af328348f8e91ad5db32e9b559a9f38682a1f6'); -INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'ae186ef1a88baf16559e72299a48203eae0211ef0fd9ae42a9a24633f3946b98'); -INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7410cc27dd6ad98476defa8c9e4f3d65b59e4fa92392772e21bc0e797b32fef5'); -INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'0cc1812311241c9eea7b3baadd1035bbcfdfe4f876563fe005d17e67b94ebdeb'); -INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'657eec5a326ea8f596c053e03eea79d111c69dd4bb6e9242c32ae6b6eb888863'); -INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'2fd8adc12b57e80467aa9af57aa5fe802886bdd3179f92441e0b328575ac6284'); -INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f36551187bf75d08f5b214314f9d95cc54e595761892d37894b0e9906a1fb0b2'); -INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'d948b812d35bf422d0ef5ddddd878967cf8c6cb77f331f3288ba9ceaf6aacc06'); -INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2d6621545b2864570f6ad7ff02c0d7a60b894d70fec31db68adc2a093ef134e'); -INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'0e8e9acff8c1a1ad855902cdf9be3e2a2b4601c566c9983acab16e3fb17e465f'); -INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fee01c21553063092505ceaf392768a37316be5d0a0df37aa4f424bac6afd6ba'); -INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'a5b1afe171739bf9c6b79768e59b89f0074a362b4dce2123fd16425455b66387'); -INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b8733ae31bae115c49fde01eb8853e004c5de287f926a0ba58c362b7f0854ff'); -INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'403bbb97e5160121e485fa11f55a39cebf714963e2fe97bfbac323e6bd2c2e10'); -INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24f8a72857c7301092b1c39cde44c8eb8d1bf78821f064d336b3d4f66a575cc3'); -INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'aad7d2017a5de10dee160310bcae0469d38c56dc4065ab1e8c988cbbccbe46ac'); -INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ce2c50db94b66bfe48e83ad8724fff3c82b7f5f33635bc33354f8848f3897d4'); -INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'1d45b0c3ece4d507c2bdcdddd48c8963125d4ce8f5080c0242871a3a2cb37682'); -INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c6c410037a49bdae7cc0fbae80131f6ba208a147b7706e2925fb3effe813d14'); -INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'5fc6b465c7ac745d4e996656c957d13c4ede41e0a2d347d3f9b9ad63e89bcde5'); -INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37fbdda6bd29d4d5d2ef4b4e2d3f9772e73b80ce2dcf49ebd809d74be2348178'); -INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'23de563615526db32fa74c684d5725939d991e555e20a0c696f9a3c3ea482de4'); -INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75ebecafe0c713e46489c8294716426c335295c5f04135d68780aa055bb2d961'); -INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'81617bb5874c7585ba7d2e77dd50538c74037a12f9b1ee35fb6afefa6a682e3e'); -INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4142659741d97b51e5a986af1733331aac3cee031a8f05bb375408c917a1847'); -INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'a96d5d83f74ef53dca5dded0bc69b99d3b8655be18860f4e1b2c101f3e54935a'); -INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dddf4e1022a0a797315a30df88a8a7935543fa98fa38720b880e9bb9ba2f5f23'); -INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'4d7dc8d3ecd1643ede2e0ddc80cb82027f8695d9fe727555804dae846821b4d9'); -INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b80c93e09b42ac443f89ea97e220ac7a579de9acbcdf2664be70996c47fa1478'); -INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'9569c5aea637b9852423a8a7d27d258b9614f278129ef2c9a5845487417f831a'); -INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c281dc1892f08d8c651bc439f893198f375de0d1d1f864d4cd5058ba727b134'); -INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'cf9e7c02c44b4e87e716e4b859f921106f760156e925fc0abe8353f456996934'); -INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32dc3739d59e72f0593b0ec56934b79addb67e3897f0a821f76a041189463982'); -INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'9736c7295147f8104fff9d124d4295aac687c18756ff93ed68849311de35d593'); -INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4562b8c57e20042023bc40617d497302dc3454e131ca90be8877e0f82ced397e'); -INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'998d9c11a72e4b5ff916e5cf90ac3058b21307bc3f7f88ae456f6fc7c0a228af'); -INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74889bcd7a6762ca4c9d10ea8990a27a24e09eef69c040be61bc3bbc339c1587'); -INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'d146a8d3253ae49ebc5c2509905d9c40b6d5c5149cf9d716125f4d89e85012ca'); -INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ccc428d09ee728fb673b66d1625f1380cdaaef01468e59a31cddc9b119d1b17'); -INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'e004427876a2dbf21ba5b3ab90e07449c8a018a7f67ea41e7a4bb19a88d63d0f'); -INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ca3359e0cc77bd8394f46b5dec6fbc83a1cfe2a2a7f1f6f611e0c3a041656fb'); -INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'ff4c91b14b712a3cc8b8ee8dd4a3ab898753f1d892f444928344fffba4733376'); -INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9396e349c97912d415ce8deab8e3f45805e82cad2cd1eea4c43e6ed0d73e3d2'); -INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'da3eb99bd21b268907f195e918207853bb2f1aa13d57d549816338c5f2eb925f'); -INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3acaa952e1924f042dcec43840c3d75e7866d64b39c52dfdfdcce07344f936c0'); -INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'ce500edbd7df91dff5693ec325b2f16db178d9b43d6ac881769d95466c8c8882'); -INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'682b88417fc622cacd563bc2310f56479554d90556edbca5faa90668e001dd26'); -INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'3adf25839b1a343b0a5dc2826d65a5070847a982e0049f35b2561954ad401aec'); -INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f37ce6c54177d3d53baa2f47df530156035b7bf5afd81592bc6956f806d3e41f'); -INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'0e66dd2bff80ed116d93297639c421aec4c29f55b612e7eb272cb2eaeaec9430'); -INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93a50c7839b46ce59f4f86d1c8dcbc8b1fec6dea6e66d4cac67e841f8c4e2e84'); -INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'f82fd4209e1e7515955117d9df6159e2b6e7a7ef43d2f75ea26a8e5e0c7e0979'); -INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66061950c3710701c0856b57925b87e41a349a4d84565c85eaf5ff4d022aace3'); -INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'19537ba6622a22f06b94bd49754074f671314721b788eacf39c24a3b37afa83e'); -INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad059fdb03137d783c3e2f9896ca8e1bb76764c342393b496dfd2d0fba451988'); -INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'a612cd314329f28937d1040fdc1364c16751cfa11afb384eb4fee08c3a4102d4'); -INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ba3fcfb0a4043d3c7236c96fef6f35ba2d8b14b1b75d2eb8f13ebb5fa1bd056'); -INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'58e8237256d770557bd528c961e6d4a260bc74c63b504d4267b416447593a0b3'); -INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e556f512f73aca402375e5d3b22be29ccf66a7981e06ff614882c2ad99720081'); -INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'42352905894f4e999684117d5bab1d21610006a427620bf69480c79dfed6c0a1'); -INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28a8ab8a22de275365f09dbd498f2488e28ddcdf4411ad26ee860ac5d6851afa'); -INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'0124ba95e5007ca622ddae0527c773fdc5847a45bd1af7a00b67ef5f553d652f'); -INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'927487308fff0d9f6e41ddede509235b0d6746f40d61eb8c5ce784dea58f7c4e'); -INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'6f4b58b45a7fdcceb795a70c45248adc24319dfc8d68d3d89c70ac8a8864d403'); -INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af8feee3356d23163e7e83fc2231d1f61c88c813716b02fde069c806f00b9046'); -INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'fa890d07236a3a8d007fb8ffdec38f213501af4cee035c4b335d1a0860086027'); -INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b91806bb7c46c0d432139ddbe22c700abb1528e2da5e8b58d82d0e065daffa2'); -INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'4cffe3a94a6dc36828fdba9469129009745e74c11591ba01cd67993bc5e59d72'); -INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7635e7867413d4df61a2a7b88603c8386e6282032237336703eeca7c623426d'); -INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'ecc68ebeb3ef202894b716bca2c231b63a2ab83108c2effa4c90a12d8e21c81f'); -INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14f1aa9a60d21d1743ff1e1b0b2bcb5d17a817ac82e4be1c6b642a9d3c1b7b42'); -INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'3efe832fa8abcb0aa101871fadaed1cd3a6fd5a755c578a6f6eb3a93e0a245bb'); -INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64accaeff323f0be04670a467e776380ba7b22423fb2f52834e95144a3088c22'); -INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'39fb0b9c79f3e357af2e671c8e1bb8b40cce703d24d8f4bfe5f2b130b6ed1848'); -INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'201b008aaf54ee6c5df3c66948d83ed7a9f128c25296f2fcf78007af3fecd0b2'); -INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'cfe255be0328456b713bbe8fa81c200e6f9f0204911369b49dcf3ecd86737d1d'); -INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'207c9be7d3ea2d7ee4761df8c9bc4deb1ff9f85d5226fb6e31168e113c10b468'); -INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'60e02f5b775c73ba8ae0e34cf7139a12b4a82f58fc687366dc2a51a00e330663'); -INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9705372ed589896fad80a4e27381c0903fcf51e924de5e9642e629d4f06118a3'); -INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'52f4a562d76ecfdcc7ae4e49d0483d113ae6b2067e7c519c3f0e0cd2f91d972e'); -INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'428589ad86e9d88b8dddb631a77d7297bf1fd596b2916f83a89921ccb80ddeb4'); -INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'4e6ab0724f48bba266bed3de429d20736c674bfaf30fb3c65151dd16fec7c7a3'); -INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38eddaeb551487073608658b178b8301da6c09462183c09705e333aff4133f2f'); -INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'ad7d843cfc7ec3620cb390ecdcfc2797a1e2435bd411612a668e5abefc60715b'); -INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da6bfa69f964294c7285ba45012a86a1997c2d5f9d7eef5d9707dec3e49c094f'); -INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'82393452a1ae0e20b91edee72974469796d2e873660220541a58cdad9f81daa3'); -INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53c15a802cdc192f930f74a603471c51c96e06a2121dedfbf8dea02fe567f8bf'); -INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'e2b33e49b21d83100e7174ceda1f9eacabd4c2077d8f959460f2ad64590f0bd3'); -INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f817b6d6a50698201b5d53c6b4c8a924d76de5473dad564952f4f76a536ab88'); -INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'c6b38442ea973b63342e117f34587bbd760950edccd509af83e09b29eac8549d'); -INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3806e93eccecc4e8c88fe95bbb4e793059b72a718ddbf5344ab5bad83b6f0d94'); -INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'f5ed3d5aa97be085a05bb6b8f265792abf657bbc0175a22ecf202e1cce1e36fa'); -INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5bf39d69e01fdb016a200290c512ba6331fe82a300243ad3936b9a2aece0eb7'); -INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'45543a70abcda2ac60b2f73b77326f82cbcafdee2ad6b0a48e5514a216355515'); -INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40996c8347e77ee69a6e9ef86a8d57e9cb5cb69dd030532a205807ae62ae6b5b'); -INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'219ee761a422822bdeaa9282ca457bc2b7579b7fd33f84d8001d3abddbef4756'); -INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9172d228df59ce5f9ba499f56e987e8e65531c444a569c3851c41f3dac1d25b3'); -INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'2ccaad95fecb31a631174a5862e8b17a1f696c1d9d838901a766102926bcd173'); -INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ba7bf238a6067b6c2ca3f68f9cdcff183a7619a9f5e50e82f256165015ded7f'); -INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'946858869074b4ec32950a9027312d0430d45a847c8dcee89998ef1904bd014a'); -INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdd6410b8601a6e1a126a203516ed0bb7ebc55392b97418d6bf5f741bd79fb49'); -INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'20fa0ee283b2ef8ad7a9fd3672dec0fa411c7cce4f3921e006e11efefc78381e'); -INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4222a6bec7850c3c232abfa377366a02279bcbb26fe40ee08088a58bbbd2c9b'); -INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'1656a955334207f07a6f2757c4acb67bd8e783fb15ffc58c1dd92bf7f3376253'); -INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dd9396f1d125ef5bd8f5bdb2943e40abddd7f1b0a22da95d6abecbb12743cf6'); -INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'ad1b73505420c7d05e46a37ae40681a4f11c9ad35b1571ab9f2fc0add824a6f9'); -INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63f91f507db027b5cc4c7505e0fce460b802ba30248b888f177692f00424b26b'); -INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'1fa58ac545550a3997923da854c24ba42d4434b2934e5bb230ecf7e07353f144'); -INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1715cf6d9e9588a7f42e636723dca964b24e01244a590020568d47ad2f949dfb'); -INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'24a9d115a693131b39ab72878c62c5bd0625305b1a1739bf59899a7b67742bef'); -INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'257c97383c61bb4fbe74916a04bb799ad8b8aa74124a24b59d19b5b6933a44e8'); -INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'fcbf2c768bd01085107f7ec24c3511cd73dade7b78f78abc478a64bc64b1e357'); -INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d71411b6104da9f2d2b8c8bfb19396bf8f3c469b5d3bb474b917f15c5a763fb6'); -INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'594c91563239b2b30182f38e42212494847f8ad8ef7a8f88258780b476aaf9ae'); -INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ff6b8c99ce784377edf6859856e70b4a8a3875b4706966277162182fb4d0c2'); -INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'1d62a0b115634ffee8753e93b0bfd169f476a3da9dbacaf6a48c73e1f4da15e8'); -INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a7e415dae3cee4123da308213818ec55c4368e73595cc8a5a5d75c304a8280d'); -INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'9992e42dbe4b58955860d1544dd611c54bc16cfb97bf2605e7a5e4fa1a3d23de'); -INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'985299ae78c110d752d6f88297e364852492630363c28b58197138e7c2bdb3c7'); -INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'a72f1b31ce6041e6798ac1fa0c0f1d20977313315bea1b929a73ddd10d0106ab'); -INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e7c028df6b468efec47f0115ae7d5ae20964eb895bfe767470700c6bb42f5b6'); -INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'9c30bfe67f3f100342b81f66b3c1a3ae1b8507b4e520117eb00b5126a9fd7787'); -INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e448bcec84874c2049dea33bcfdb18071bcf520e72aed23bfeafd364345d9cba'); -INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'32bc0acef01b5e20c3f07d7e3296ce3501d8896342a738a52bfc24fe758fe141'); -INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a87b919a5833ea8af3a39b27ae87b33b5dfc6b60e43566316f73c8520cb3a14d'); -INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'17bb357add688382b97ec0bc9e76c530f004106cb78252fd992f2dee3d1ecf34'); -INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99eadec4607aa75ac047eb7a40e805bdc74c0017ad041a678a72b44a90a9ee8'); -INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fa6fda82d40287b352f49215c4e3823c23365076e2fbdf8171958666e950a316'); -INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc5a140e8fc45b8f34aaf0587f3e68cdf5233e9da5e7dd4fb1ca493327a01bf2'); -INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'a012b82ab611a5587fe05a0166e2b51ad05bb50263aa1a454cce06bc6568484f'); -INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e603ee14b09fed88c43ff96767ab731e6b7ef17b794f7c61ee15e37a5fce2e98'); -INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'8e84a7dfd46bcd69c44182efb02fe256ff56a3e094977351bdb24b20e790e325'); -INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb6d5cb304ad60549ed996f7763b8f3c9a5d298429541023eba62fb724c412a2'); -INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'d0fdf038745ec5ddb538ee72c6432ba621ed3a902205839dfdf6d37635ce7b2f'); -INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fcc12ee9b247d34884a8f3481ee72bb07f87aece995e5ac40f3ffc925975732'); -INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'af330f821ebf321f54151be9d30b9380f3c49d9a4b836d6b07f69d452ce2d186'); -INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18e67d85927621869c7b1a9eee942bc34b485059590fb9e74399ab4e688aa2f4'); -INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'8c688fb1407a1233c4d4870f9cda5e199bd0ab6499ea94d94347863a3269cf4a'); -INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c24e0be00ba2b78f6a51b4176af9c8097670931b3c8c3f6accb9024041d1b1a'); -INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'21d2e9ff2c75cf45a18d44c7a9dd64339f65e10c8b8cfffe86786fb0520233a4'); -INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'196ca76358255c6e4de2fc0cfaab51c526b90dd5a82737e543e80359749b9231'); -INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'50ca4224fda645264e2160ae8f90fd505606cbde88ce4dfbb1a9a2c571f3bc20'); -INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d380bca1f8936f02bc6ae257811c2599228ae417fd7743ebc630f7f3a5db15ab'); -INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'e88d2b5e789b01a116437ca2a2e6a1700aededb68c9757d9ca19c20eac943c3c'); -INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dca5946164666c9660135013d5f0fe58a329788e01a22b10a2eb92f2f2e0ef70'); -INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'64125268b238b8f7c8c5cf13ed4e94a90d7b1bdaddf39b1f776e2cc372bf7086'); -INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a85944300c33c9d805801c5d04b27b95abfb4ca70f0c38d142f25dd874d4cc'); -INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'6fbfd80fa807af78ee8d8fee17dc098c34a99bbb067be964d4e85b4f336cce23'); -INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10b07c31b3ea591241c3af4565fb98458777df8e4f549c6fbf09bc782cb2a7b9'); -INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'be93cb056bb23f5e891561e5bfb8c4b7719ca3c96531cbee1327569821e094ae'); -INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e2b209163a9f88c8e35da6723003815d1ecadce5a7dd571ea578a984cdb98ea'); -INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'6875e60059e9d28e49f5eb9862aed86e6d73b5f6606c73fb774fd384c1400603'); -INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'849773b6d9d23276af602172e84372369443463716f326a5543d7f97efd7cd2b'); -INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'4c928c220ea0abb24f6550563a6ea8279f55330d6fd49d838807145fbbe99035'); -INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a8a949a66464768f648171d5cbaab6bc874dc433a74c2fc4094881d7b8e72a'); -INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'de61e18255f1f6855462527b05476a0ebce15eacebe39a61e12364834d69e4b3'); -INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7ab102dfb5837785c47e5713f7b3e10b2008f7d6e161fc5e24a10aab91bbded'); -INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'e12381519bf31604a5dbda033622a5380e6e07ba2e205492e5ee37081305c5e3'); -INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03f1fce8ccac405de45dc9f61a33dfe04757a443bfa5495793d1ecea69459768'); -INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'e14288e12032cdd9cb3207aad0d5b4fc368e67a80565edc8ce38d46d001f4f3c'); -INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af327d7e90d276c7dd5d372c576849578af2010a34b386fd17ea1e190a6a9046'); -INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'c135d6a6ffa9442a454110bc9498fb6725ca859d0fa29331eec1f3bbba34a6e7'); -INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'636c9ce692582a7fcc21015f21253f55b0e072caff5d5bad68baef6b7847dd92'); -INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'4926f3c82f4128b009a6809c80c7898056ca84608f51b68d57e99e26ab98a4d8'); -INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28f6d113e4200f48d355b39b7d3d97f88ad634731f90d360ac21d75c8ca8f199'); -INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'fa1f0373b1d435783e3ed91a09a6fa38cde7ac110882fb74d3887cc43f3d5524'); -INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'840c63fae96015976bb6ac73aee11f323d4a46331c1b8bb41ca7a283848687d9'); -INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'b55691297bda137f1fc68e66ed62317b3a94d0fddafde1d61fddf8f39d5c0320'); -INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b059575bca84d5929bd3730352a3d56b05a999b179bc1c054e1bf19d6db3979'); -INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'5bd13dc539f98819b5e21c9cce0f764b14624c5b70aed9a93cbdb7ee80ad99b1'); -INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c0d8cea546515d3b9a142d98d2a82c5600f203a17bfa4469d5c4f5737e58f6f'); -INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'83beab1426523691a355f938c87b6ba215a65d886cd131d3a7ca5ed217d305b2'); -INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460675fc8b7077eeeb2d1713d55bdabcbee683cd4cba8ba6ed535fc3d26242cf'); -INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'a2b6e1c82a9b9893d186d1f149867c7eb90a5f875573fc827fac825297a68095'); -INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce55bc6c1bba8cc9f05e3dc73c6abe9d39248246985ba4c02cfea139315da122'); -INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'55bbe77a05ebea2c829ba03315e6170a7d798dc0d3ae4c3cb7ca409cb22748a9'); -INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08d913309a4eb449ebced8020e4b2a2851534333f163b6f2cf6e29a01c244416'); -INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'08e1669da5cd86f9e3e675958ad6ef1cdea20b31abd10e1d75cb3d1627fe4966'); -INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef52b1bd3446dc32597247034fb8521e9352c73dd8321f2602eeff0b1ad204bd'); -INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'6cfff200b73e3586704870a74001958b6a3d6f1266b326879f3a407abfb40e3e'); -INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db71df32d27bb7848edc153b3953e579a7a4c97705b778ff4ddcd538f0bf619'); -INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'dc7f78d9bdc377f9a13feb0caed69d6e5f8223e1c687a6f4068c67631f7589af'); -INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dfbf544476d36c11ae30ed161654af9f2117770c6312883fbb3cabdb7c72d5f'); -INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'cd0a1e701a749269a1fb4cfd05da3afc43aff5a234b824d08d4a7d95e79abed3'); -INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dcd0efbb046c4fc8909b89285ef68bff64b51c71ce41cc8fa7a7656c8eb8410d'); -INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'762f07009963d1f9ee069efb7ac86afc199353d6cf57d74533cb09b3abfaa711'); -INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00b54ed578c5e9b47c226425ba91996a8d663effd4278f463a64681aa5c6d8fa'); -INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'5b026db0db68523c0e331cb14f0cbead2d6ca16a5f97c84afb60e033c1f365bd'); -INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d178c95b5213ecbb61ce4ee929ffbc739bdfd8b2f3d447dd5305215ced05380d'); -INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'bbdffd6ab9d1261e68a7b9d4b3151baf29f2fe743a695a0d8f8fec17a265c3ce'); -INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e167389c3a4d6bfb2a9d4d0a0aa3ae20d2cf53ea082d9fc82a16e913fd3235a'); -INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'fdb0267973540d2eeb94c0b6d96541f101aa3f6a52b48710597b61ede288d2f4'); -INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eee1de947bc67dbabf99f0c57679ea7dc325427caaee8751838e8108d1792616'); -INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'4944439b023afafe1f8d3ecd006d41f43b6fa6dcd19e725f33d09aa272236453'); -INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3f42664c75d64487de6aedd1b08cb5a74e2b5244820702d59ee296874e142b1'); -INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'8948a71be2311087bedc1d3a95352588b0723495bc09be1b06191e03649fb4c9'); -INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c38e161ebdac754be1ebb65615c33f8802ba0a025b403f973cf9eeff034baff'); -INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'4007f7cf5efd74cc1f65d7bb8c8e673e9fef8786a4b4c731477397985e3f5ee1'); -INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487f848cf5545817d9f71e0faf82adb211064db28cd69dc811b6deae97553139'); -INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'e51af7d486953d01cc706a6f5577033babc942daa20f4fd427e422ad2e2ca313'); -INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f80966a9efc6a3ece8f2ba572095e395a33f76968968a1a4f8ff35fee0af1fed'); -INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'6e4ff9dd3edd938e69e612c872f710812a2e70d591994e58355a3da093428063'); -INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50f2f4588cce3a17a3be4ccdb04fedc97ae78d527348a49e5ff37af0ceb9e8c8'); -INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'a4728a79b4751903dfe7784c2fda098c7a22bec3b7e98155ebe8eb7a02c7cf27'); -INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e1ae664d805a8dee893e82324a0029b48c0eea6448d0c72397090f1c9ecfb47'); -INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'74162ad70f85dee2f4785902c93329e3ee056b85e107731c12eb353e5fa6fcc4'); -INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f5398537a1e1205d3afd2a13f7708526c6869c498e653276b9dd15211f4f69f'); -INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'aa6bbe1bc781bc7b6be0ea8ee238f738346aa7c347fec6491db46b3244e1e1eb'); -INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5c5927f5614cd49b54811dd7bd5774f4a1a483ed009f8190ac6382a05d5a493'); -INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'d190595fb95efe6944c51a164ac5d548d47efa8b549f4bcb69faab896acaec03'); -INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68988afde17fcf9da8207228b8a0ec07455ac056f741c6cd3ce2bee6926c62f1'); -INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'740eb85a4b89ad93e200e124b4dbaf7ac0e393ef82e73a060526423a8e924546'); -INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3beae3b964bbd6b5b0f5bb192685dd6547e189c705241f170f9b4d2ba423e53'); -INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'0fc06d3d49cb3636e700e8e82cdf59c2ceb3d6bd91a780f02e6cb7535da76a0f'); -INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b8c70f42a3e79dbe6a1464f14775c1837c38f62fab68a2041159b51ec32ae38'); -INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'86179c60d5ac12fd9503f00f073fcfa0841e9d6870d8550d23cf425d0b9a49cf'); -INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b0da633aa68864bf10a0d573ba1d6a3c5f163c7da582c656143fbd83aab2504'); -INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'13bff0d3a6246e74b7b5ef61af4ba9daf77282f896b64a1fad26d5ee1bf65dd7'); -INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68a5e41c5ba7c6da61204a5877ae2c558fa4a9652614af61793c230be49aab94'); -INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'13b9952d44794d5a473cb609b2313da1757a19c914bdc9a1e937685bde8a8de8'); -INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98ebcbc4a7b491dfcf12651875b6c61b565c7eec73a607ecbc9f096a339aca37'); -INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'35a7ec4fa0d7e7ceda5d32ab5597571509842d7d0f2528ecd09a292cd674ba13'); -INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0067f0c1146e3756b7007076819cdffa96d0117974f61d8f64ffaeb83b18f36f'); -INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'7b2468128600361fc65ff502084e8c347f5de4957637eca675becc222567cc81'); -INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8e8eb9d000fc1f2838a59a579707d772d0511a26f430da234719967eb6eea88'); -INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'203e8e8ae8dfe4bcad3e88a40d390cd4cf8978bf474bef9708a43aa7d6694415'); -INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95ce0d725d815637819fe9dbadd05218d9acaee32ff8461d621f352d01bc55d2'); -INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'504b90e82707cbf6b486686e832c87b756c9c219b7fc42598000398294ccd96e'); -INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe09bb86eeed3b455d57040c84e900201c7b275452c70b2788c358eaa59d94fe'); -INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'1a3438a49e8d3dfb3d81bc81b2cb40bf83d1d9c1e4a7747b5ff0d7892ca75a29'); -INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f004b5c2910a672c13437d8fa0655a0b319d4a3f0872a82f1bddc9027bbef7c7'); -INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'b02b1ab48b633d00a73dc3db980472f66a28d8bafe72d3de1a35668673df1eab'); -INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d88956ba7abd9c2799994c5dc8497f2978385d976e1167efc9c51fc92cc26855'); -INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'d49ee65b147e002d59d7920e2024e32149216dda974cc3390e301e1a0ee73009'); -INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92ed15e96d73c9531a3a0aaebc00e3233b3f63340cdcb99b09e89743e228b77c'); -INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'ae8eb21d0d98a4d4d6bf8a3353e7d99aaf69c9dad58e587310f31219d6f6b07e'); -INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78a69211a7ffa3adeaaee0814a008d24b0165baace87f0ff49bf0ef10255ca59'); -INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'0480cfbd9eb73e904994630ac271a8f41bff5fae947f7c67cbe9d059215abf43'); -INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01f7d4c4e89bb37f9cfa4105441b50458208148a40ea5cdd1eb8c0a08c079058'); -INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'4d2f357a99bfa5c816006aa8f6a6552c91d09b2790a253b217c22fe04262c626'); -INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c5946662675071093e33edca773b0de5fae8984dc0088c5cfb9e1c73b6d852f'); -INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'4d45ad8f638fd760e50e503b4a63561bca402c6d15941575f0edd599109eab60'); -INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5841f11810224f3c865f9f407c9ef55836c74a31d1dbdbc3f95ad550347c0a6c'); -INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'72d95cbffb4fc8390f0bb6cdeb08e0e4fc0e9e8dfb1bc17aa2825dcebbdfd1a6'); -INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c8a8ceee6caf307494ac1122444330e2de191b566aa1fda02e1d714d629211b'); -INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'2355ab4a6c2258d0b8c8362aae727f62a55d0e4f5cfda3f9267a60ef9142cb4c'); -INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7a341653159e44648a52a0f6877a9d39d5477df3b7200b316092c2f1a347089'); -INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'442621aee8204d64c22c3a25694831aae9cdb6c98f1f12124508959df7aaa528'); -INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38c92ce4a3ef64f3f3af54230d8cfe7dacc2bd3ccfd9c12e4366105ae6b818f0'); -INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'8c3119dde99934ae0bcb6eb0f4d6017813a7c90fbe60b2e3f173809126a69a99'); -INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'338e340cba9392e57c8c8f5d31ff6a01768d31324438e0b46f9057299d4ced9f'); -INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'63c3f7b34e90c5caa121a3a310cdbea68d89cb31ebeec80221ebb8187f05dc6c'); -INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50ea2f97716d554d47709a8bdcbee6f6ac293025bac49306b203d997b58926c6'); -INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'0a4ddb80d0fecdb85c72b9af8ddf82835000db46c985ef3b70c19f79024c98cd'); -INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ada410727200d5550d920396fdb35cfc42cb8b840b2f07b7b09f492ef462634c'); -INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'063a4ae819d9175b3ff3ec73371d865c85bbf94f15840cbb116b9f0093d9f5ca'); -INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a54f19414dcd54d0bbfd9c5acab7e2302a3325aba4612dc00f2b7bd8f8f29dd'); -INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'c335b94100168c3189cd771ad65dce70bfc4990219cd0975406d81edb2cc08a0'); -INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'811c9342717af8e7fff3b50b00d38853047e8180886312ce52feade219c64261'); -INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'5ab04a03a62a010774f0ec7592ee5124544839abcefac1b72ecca20cce0dde59'); -INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26e64e65296e22136d6e9920b59b00ba0ae2713176d94edd779367da61526b71'); -INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'60002fae0ad5e08530d06c8b3d23e75a4f50373735618b1100b54221b75dad2a'); -INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4858525473b46be86f250b313f6cb6aaf96e13136e74b707b9504ab047d47ce'); -INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'95a1626e91617ce9989f2b51b404162752f0e434260af53cd2204b337b92395c'); -INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b61c460043a3c87fe0da615016574e3fa630ec637a0cd7ef21998cb52454d517'); -INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e66e8a140a967aa25bdb5f1b17f692b571f50276c7cc4c3542b8963390ca3a3b'); -INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f2067fb84759778ac4ea6aaad5a609a62cd72ac590ebd5d697fbc9b8bd11897'); -INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'1b28fc1e4c05d795afe06dc9d143f0eb3a3b9cd149b0399009eb696e75ab1dd0'); -INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4201dae481490e9eb3bdbd51b7f932e7a19ae9d9a845026604dc09d6c5e39f50'); -INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'143cb1201d616f52a8f212158523b76bbc50908d5764e885ea5eb9efd4461668'); -INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a13a759525e6873b2171f191d7c7dc134f0235b06c1c73c68af8d24a7a16636'); -INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'75e41ddab91b6fcf814765508b38608f6f61c8e60e701229f3ae6481ed28b0df'); -INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31f89de6b4a78839cb4a1c67885de1ff9836aabfbebba2c3392634d787277355'); -INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'e1effcd260e53c2a398559d9bdd4d04216e882df8462e313a1fcc4d1843e2547'); -INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47566d18f33bcbb112bfc355d55dc5fae66767ea1bc8e42a33a9692045c5ff6'); -INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'78181f393605c2ef1dac375ee885b365581eb06ef1a4b6eebbd8ccb191f35b2d'); -INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'666e0b1a4ea610d6ea4109b3cee0f538ec038a32a2636d8008bcdbaee6497f83'); -INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'b0341ec44e9bb0cd64f4e6c79bedda96534a098fa4210934df9e5beea16d8f25'); -INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'346a8eadb91add74d615b84464e6b76a3c7fd63d7228845c9c48bf4f996c3b30'); -INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'4a0fd96c815e8b5e54d6bd2fb31d1c6df722ac545c0d51ea6bc99f026eedb4da'); -INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e8eb6603c420c09c9f85d008871ac5856f91a1346fbca18b9041fa4e0f6f15f'); -INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'c549b1b9e65a9cfd68b24006ee4558a876e11e9b6753f40924bf58a406e6ba49'); -INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f00ae70f7d8fead66c8a902602490f18fa661e4c474f01e2c9fd47016929b871'); -INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'d09f88005de5f9d093c8179a523857c7f331aa15c5ccdeb6bfd856bf11367ba1'); -INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df81c32f4d56d898b65c2187ca2024fc359c604fe82e48a875ad0d1d6bfdcb77'); -INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'7c3d87d0e426aec8c00bed11366e7ebabb18a057c7c00e1e0cb19ac9dd07ba7c'); -INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbe5210cd7f6d7f96d2d7b3bdb580e240a7dd8e3e15c159627718a8b9deda253'); -INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'193910a3925a3bea97162c86ccb9b83d1550ed45acec02daf8fe47d2237bcb99'); -INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eace710e3f3d1c54c8b03f023d14de86b237f71e88eeb7b62b8b581bbba3ca83'); -INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'628de6ef7c2bb3d926444d56253635dd0b9e3c4687d3f137fd3d9516927ef9aa'); -INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e66380fb698ae8c741bac39bbd05ee594e8a8def9f2c5b066820e62b78bd2acd'); -INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'9d9be17d50ec18e58dee3615ed02da3d760268bfe245b6ffdd27292d1f4e1464'); -INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f5f7a0239760366177cecd5297fc69a240fae80a49d31e7377059118a371e01'); -INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'346bc4c913937996a0a340a53c72aad2089ab0a73f01698a195f8dabfc70cb1b'); -INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adab9d0b42bf800bb8c6edd8f3fcf5fcad79159a099b4468f1b6c4db4c6a60c6'); -INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'45dc2667a1995c1d817624dc6758fe75ba0b0355b92752c74affe98af42ae88e'); -INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc8b8c1f49691bd07a1674a2081d8052774d82292a56d40a16742aaeeb8431ef'); -INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'ee8f7675d73f21aeb6144b73e485f636350f685ec8f842d437b93cd0a4a4eee6'); -INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2dbd72a77c1613789590e14657a32e3fdfc1826429f46650d8020275e42490d'); -INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'aa863cefee39ab739455e10fc711abbbe19528c0d6c61a65f261a546d5059489'); -INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02d535de260a93ea8965165ab08074172f9c053cbe3aa6a57965b90e3b9e3c0c'); -INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'cc56da6c6eac8b61ff94cf9e96f2751e1f1ed6a7a825245ca0fa64a5a9fc0284'); -INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5dfd44ad9bf4e323d78b7c419941dbb0ebfb9ab3840af9db2f6bb179b39f112'); -INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'1f81a1c8fc58d919806a5de1587946a1c0e8bf0be4533d2ca4d46b9fb0792aeb'); -INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0211d8ebb058a2789b545921ee60450e4e15d333bf884745154addaea9e393a2'); -INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'209b96e969d305c33786500bc1aaa018b37efaee9d60ea9c2ad804af3e2fa96c'); -INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a2346f90d53d021e7ffa4ad689156c2a0afd19035fc8e9538e4e30901ff99d'); -INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'936987d343c13c99dbcbbb43a4223ad046eb32153d08bc3967d5b6a665131174'); -INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddcce1ac37fd6fe0bf998f19587fe06813fa8c82e8ac093737bf70010e966d06'); -INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'18edccfa68ab88c1a6bd92ebbc6370172c42081f5ad741670883b9106e149e31'); -INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1df3d4f2f37db3f24f171848bc9166eae690db7acc2d97b9bc534c558ca65b2b'); -INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'93f3dc7041beb195624a8cedc4254161ecd135ceacfc1a07bc1eb4f4b418b7fd'); -INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33536720310849a7ba375dde4ff2eac6d3d492051cae0a85335cc482b43b342'); -INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'21867c1fb23824364eebe02fc5bdfae10b6e5c7b2642b1cdee34a63c82968159'); -INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a0e37e4b35f773be80b2a33901861161b10a1ccff64a1af5565e10fb6f04c92'); -INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'a268fb723681552eeb28c0997ffcfd4a51f54d7591f75269d814f006a8e04073'); -INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03ff65f682f8aa0305c320a5cc197859254f646129e699329e9622e2512a76c8'); -INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'12727da2cd92363e82968b1290a8ed0f446d6bc1d46558b6232b34524bbedd1b'); -INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adbcd07381f35bab135e1330b4e23096304f2b910f93618e55a4e0979c9dbbdd'); -INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'9ac4ea06792daf8b7b518db9efbc5e7ca5d9d96dd362f2ba6736c3f63fbc792e'); -INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ae6160148ae3067a1edffc498b92c02a9f6b5050399cb11ba790a57a14b8c48'); -INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'a2aece12815ea932ba813083c58682ca88f1e1002cffb0ade64221a55d61fcf1'); -INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'406451cc85edabe6ca7bb80858702b59af2e22e22783906879c20485fe9b14b9'); -INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'dcf5b891f7dfab2656f8cc767afc2a9ce491f231df33e9b437d30b9d87dec20d'); -INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8820a76206a41c88706153b77955abe0e92c35255451a65cf99ee8eda1d4979d'); -INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'3e990ea2045008ddf20e124a75c314a64591fabd047c84ac593f3487265ef4f8'); -INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a291b6d38f225db47c51efec5a600197dfd3460566888668c7a665d959b42588'); -INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'9ae5e321f03e1d0ca9843892adb8f70325e017078ca9fda4e359edd453aa8445'); -INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b1425e15de52fc020211c5267372e35060288b45d5e5de27aee5b98b564c85b'); -INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'fc73de6706a7791f25d4a70eaa0dc498feda91d2a2c43d17b9657bf571445661'); -INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b12646791dc0a874e27b9f5e137bf8e209b195ceca62d285585067d702c41c7'); -INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'f3ba58089b93ca625dee63ac77fed5ad4b8462076a8c175738493a4c6cfc6e22'); -INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba4f28fd44a01056593d99ebf9db0e6c3551f0de61528ec68d50a993dc8bc4b5'); -INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'7d254433b7cbee4c00b44ad1ee0fb48d727480697823a5daa8b6e26488445cfe'); -INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e55fe39cd5e273a992c99afb6707974446757fdb10cf15ccc1edf590fa3819c5'); -INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'3a8bb80daa7361def4a5eabbffe5532831886a52ba14a2fcc9779fa44f1871a5'); -INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48ea4d1c60e75d50e14f080b8f474e65a63ff037e426aa596daf2e37a0da154'); -INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'f8b898a29771cf122f9b637d1a5212aefb2ca3245d42ce072e4e296b92887d59'); -INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'554ccb41859f1d79fc6fa5b5f00e7b7e1a086955fbd2e9a71f56f76944da4f17'); -INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'fcdeb46e033b0c45706de5b24f30035126d21984c15bb608f28a2b03bbf3cf98'); -INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0024e6c60c384d4523eea038e7d2301890c183652cdb5662ad33edc1b52ed41'); -INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'aa2bc5e1efdd9d371619e5ef2a490097332e46e194655b13cd12df4d8ad56a74'); -INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'327132b46cf03dc09a0ff7f5c558d90234f47f9800824b8bca80e9bf87e9df47'); -INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'13e7522b1307e17bc75e642204669ee7f45e2791c9bcf313e4c441e1459f2b54'); -INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ba3fac70a36d988a0ecf443347ddec3b3999e1607a84e9e8c3e4cda3277211d'); -INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'6deb073388e4c5bacad46e80bf751bfbd414b2cfee697051cd96c8ff10df4e7c'); -INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c72474f21e21720ab8b17230c1a7591c04d983912eed5fcc144a2378008217c6'); -INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'7b090cf655071c5a47f6f8b8cd8445f1215ca23842d832c93d0bf673c63835f7'); -INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fd369dbb1af323798860902342e7b945db90450cbde2942a7a5767916a4f425'); -INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'96db4b593323d995699c2ae0bdeb2f004df7b82e20bb7752a220f8f4c78e71c3'); -INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b65387beb47e5d27696b4415ecef667d55808b63415ce653c31f02ab11f1dc6b'); -INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'3748efbe749bdb3b3d10467f08699ac4313e089c377152e7639ee8c1a1af70c9'); -INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb72e3d44433a0a713cbbad5aac9a45f1227719023f3478671872b11302d15b'); -INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'9a07747cf4ef39dc836195b45968e1f94519d16043254d7ca43a6909e15c41f6'); -INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bc4e17d27606f7f6ea12423a61afc6348aa82642433da6756a710a4ff9c329d'); -INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'84f5abbdf4fbb7eef7b3b50b76fdedf90b2ea5277cf69b08c5c23c43f6dfe3a1'); -INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a84b1c085997c859b99c25f5f37c0e3008cef0df9574ea1d429c09ce040cd95'); -INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'c505d11cb3be16d853e00e51c5b1a12d764b2409152d504bf0e805f16e958233'); -INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20ad1ac6c4cf2e3650412992b84b114d71282c09e5cda59fc7dad7df9cb818be'); -INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'a522bfef3aa944dfcb6f41d9117a2df767e4b16c924944e82c8902fa2493c4c4'); -INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b728027acee405286cd7c94499ea9c5c36bf390fd0d08501e7bc42760042d7a1'); -INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'807f52a065ba54a6c6c7449d5e0523a0efce06bca6f54ae04aabcd775593a623'); -INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b19e1cdbab3e8df588e7a391b56ee498c55c91a9ff4f844cf4a74726363478e'); -INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'d715d768ac4dc8d7939af5c8646fc65c7bcc17fa97911b6fb1b7ffc981c1f347'); -INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44769357b1c8c261d55b736edceb103a81769fc32164aeca742b1158ce7b63d9'); -INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'a6650386ed56c7292ce92143db37e501c572f05f68e0e2b11eff6df1c089dfa6'); -INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'475e4beeac0996300c387d931fab201a6a8ba17333da64c77c2c64127d3d6cd5'); -INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'9d1bf00ed700c6b9bc2f34076f2a7aa310a853b9f72bf4ef3de5a990d1c48105'); -INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb8239822082b2c08394804217ee06e7fd8194404cb9689eff41b1556f85aca3'); -INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'3d8f9be602e3d27dcdb74da22314ca9d14ca63e8f53d4cc2b5960b3b499d0e74'); -INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0191e904c6326087428f3785a361b6b3814389ff77fc4c128abd57feeb12df2e'); -INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'e902e24a53616f802195d26b0a29690903a65a6498e40b8129e5fb3f05095d42'); -INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea80d4c7bf95868d521d9d6648cbf88d5756ef655726e2b0769fd34e7b2f15c7'); -INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'26f1f0d9696648ce785ecd371e466e51a9fcc38349f27e41a4954c42f5e2b81d'); -INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6fa77ed44357dc37627494a23048f67310274f5743c1390050eb7fb809742c5'); -INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'fe1dfc962cd52a4f7199ad783a407ef07b444d968e4624b14c6f6ba99e0b15a4'); -INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de13f723ac358d55dedc779c65f6f033fb746409717e2aa3f5fce3ccd71093db'); -INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'02d2a2e6b123274a1625a84ca00934953680589df9cc479605d01c301236df89'); -INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9a1574d54e254179d91816dab4e92650ee1412780ca498d376af9c6b6ac2961'); -INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'e4f3effde9d745c1318cff0709fee73aad362ed0da8817aba5fabcc005330a81'); -INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a74708fbb8588cb7f80d475db5d8730774f0de484a3a5d2765f4ff2bb5d0d45'); -INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'5312a6e346b14334c6c49fb4cbd06ea93c860b81befc5c038ee159f5f7356d78'); -INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70a5e2608d490c1330c53d83629259d25941b0bb1db9f8440d8f25e672d36d63'); -INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'15a10d9a15381160da2afa8b91893c4166f8f45b765f980cb1bcc8cb2bddd459'); -INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b23d64bf618f83dd45304927ce9883f5c676e4d5d37bc22753e0b66ec818029'); -INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'237e1bea91075fde79f0191cb5a25d1d2b1bfb18d13ee86c531424df38266cbf'); -INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d912e9cc4d85b16fea3d500d5bb3a9a5063d38b59f521e29393bb3c7d0221816'); -INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'c727629c2e16f873e314eabf14d02230e57197606bf68041a207725b921c3f10'); -INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a064d577d2f7918aa0bd3eed05c06d3d80f72c7fa92e1b9731bafe45465f7737'); -INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'c3b7f72d6a67738090b8a6f22813f83f29f1289195093727af938224a8ecf28f'); -INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5c1570996ef8b0f76900de2cd5af02cf6c823a468ce69b0991f7da0e5dd0f6c'); -INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'51eb251e5e889d06a20e4bf3455f66b0f6c53a50a5653a9ad35974bcf4456aba'); -INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2141542c1bbf64d9da6f051d4651e0f9dfeacd183ef2063c3fb8d76ca879516'); -INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'4f102bf969ce8c982081cb0a991cde1479af52d3bc6b991af2dc7ad6f36432f0'); -INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ac6b6c1a8bfc59136328d737f7eb2a76a89dfe5d4d429a96ee3e73d548c705f'); -INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'711de33a02c08c1f2c41e067f6472e2497713dfd33879703b9fb418252a68bde'); -INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3572eca09581f9385df3c1a9805c7f4414082da8d35c2b7760cccd6855906173'); -INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'5efbfe5c2d84c17c5c0d9182620ce3099e5effc764b023fcb85f3b27ea7eeef9'); -INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4166a1aaa95e461799b586b25c87d230332262dc9f94352424d594680d675ed9'); -INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'8334a0aa52925b9fcfbf2492376520003a9110d09bd7d6bc413baf5ef4cb2bfb'); -INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c967e9e6539845f6607442e00190ea65f897931b774c3d3c59cd41250a63ad20'); -INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'be118b32b06eb4e11750b74a4585f894dae238534bcc178bbe24fd3b555eaffd'); -INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56f0572c8f0d6c2689552adb2f10c2d7d6fa884a6c541a5c19c1b4a29f79bfcf'); -INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'990c52757bbf5a6244cb81a644a7916cd8a29f32193fde2330adc672a55d6734'); -INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d9aac39b5fccd1a4d68926f9edc4354d5766cebde829609fc244762e430b35'); -INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'e3596bdedf3d9017509851340c7171e1a2c5f32118a6231123775d4bc2295f84'); -INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'635e8f399d5ae9399f56a8acd68b023f1c19bbcb21c8cc7d0ddb3dbb1477efd2'); -INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'346d2cfade2b3111a7330c0511a17fe8980e68e3cc6256b34817793a9f6cd734'); -INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'481a6fd3b1c7e87506fb6c3de9af9a15e9184c478d57b2476fcff59122c8e9c4'); -INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'b227b4c7c728a91024f0b75b44cb16aebea5f96537ade73e7a1388b4678b96fd'); -INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ea5b3c14fdcaec2c9c4cc6e2287647e044563717b8b54597ee4a4bd02bb262f'); -INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'c99aff5ea17f620884e9da5ec75fe732500ae13cf899bac8caa5a4a2c3695528'); -INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d316b72b7b57e623e2394b89f9c7e155844a93c90b0d724c1dcb6d01d4c6487d'); -INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'8690497fa89da34c4a8a12303ad7cefe04fd636eecf3f8f09321181def3e4795'); -INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f87ea075c50adb9631281579db6223cb9b61047c13befe7b8531e8595ebf54'); -INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'794b1161044b7e902afad53a37cb921e215c73f8668185d611abd63f11f62df4'); -INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1867970cb34b077500ebf93552e051fa6c0662e438eb777f0298ca93d2453cc'); -INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'0b3373c49ae472016abf7c8c9c44980eb1c00b2b55a1f6d0a10a38a4f257b2fd'); -INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d90a1ef4351b30c85ee3215671a4e0148fb30e07384ccf8d9c16eec22131162d'); -INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'2944d9ddc31294b59d5e210ba3c5326050db10a7d4c30a9301df1163cb83ef29'); -INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff883f76cfe88b73fbf157f820cb1e524b6201d24d466db672428792b0e71261'); -INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'916588d56b2c945b042cd924d62ad3ca923716c5b457e17458706c17e3472543'); -INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cd0bbfaf85f6bc1c4d856b252df08829d250793632d0e5bba15a7b31b8d27bc'); -INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'51f44a2d1e99f13458c0245f5afb0ac1b86c36e01188b0d2f48d19d5aa8ddc40'); -INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c7acd479293de20b578dbb43edf49f4aa6a98c23b7641a35d949f051721eefb'); -INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'3dbe88cc7446f1f152af7ba839fa0a85062f5f6db083a6a04fe215c5277e28da'); -INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'903995d4f54f9a63770f3f318093a85aca7b4cddd2bcf0d7a5462b0bb5a4090a'); -INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'162400694096b508f8915cddb0708dd9fae77c39ce2e24043f46782366d88ce6'); -INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ccb9f77e91e8d75eb6eccb209e93a63bb266163c1ca9b90849959f246db7050'); -INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'fcbc6a827ead313e9702c8ebdfa384fd88b1e759b3d21078a54a551ca2c8c12a'); -INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'814ae12a1ae4dc1e0e3e7d094914d825f05e4759d696f00584b2c90a93b426ff'); -INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'2080ac1ad7dcad4bee6ed48504294b1ad97e5cf56cf049678d8369f9ebfd1e12'); -INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b9359948c9e32f219291f6159565ceb63da84af28dbef32831490a37eb8ae7a'); -INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'a793a34a83145f93f278b70ddd99bc310f6e15b268826b718496c75c62028ccb'); -INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f38ca327d045f3f70ad6e31446001383368291e13364b950a36b2597d843ae93'); -INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'9aa2d9ce735bf4e0fcc5f7fc33f2f3a990934e9f37ab1dbbf59bd001e28826d1'); -INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b3eca5714fa1ef8c2af1b7c99dfc6c2c38f0626e69fc1da4335175e1566846'); -INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'f931ae037817c74b69f07961094c6586bc8a56547cdd975cb450b8b402df46e6'); -INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89267011dac9b0eaa521c295451bd59865d884a2283297fc18e8e3ff17972438'); -INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'a89882028ea9c42b668dea075f119dc1b74b1750a8ad7d6669063402848d3d6b'); -INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5df17e822df60f435b4f9a8f3db01ddce26f722076d901a60f0dec086ff3743'); -INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'5ec84b08155d503da02291e8830283e2dc5cf1f7a91f751200a4ca45a5e338ee'); -INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c90defa4014f0ec58d1b86e865187f7ffbefdeaced9cc8f1aaa71f639ec929'); -INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'ae660513ebad040ce56a04e655e206027fc09a3446b56a3781e13c4ee6b0d101'); -INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57f209f88e048fcb2257aedc214c0f7fede070e3984547258a2cc3aafa8d10a3'); -INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'70b88da5d306bd1f692a579815da9596b92bb33616c6ea85eb2a0a1a5df80e05'); -INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a6a4eabcda10eb2d1824818836970d6d781399ae9a7d6027e3bd1fd5342f3f6'); -INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'59b9ee0bb6dd73f213c30ccba7a6e40fe5cf2cc5231730b96edffbe15ead67ce'); -INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d51f04f1d78a7d0eb7b64ef7f2138f401f620572903b40e02f1c40f1a9916f2'); -INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'196b6f1caecf8bc784a57bb3a5383285aca44d5f39689c034f24b51cd217a821'); -INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ff91ba7a0348e95f207ba223af8775201468f8409c1f6e0bec41c370f79938d'); -INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'a9e3d7a131a520139cc7f9c66a9e84815e850afe8d9d686960764baa2f62815d'); -INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'362dbc0415f518378208e728a6f98a3a8dcaaa86bf06d6797dbd65a8f3415da9'); -INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'7772fd86d481e0e54a568e6706d3eaa8910f2d7ec3b1caa1aa16f35d2709bca6'); -INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff6d3bf777184fc5f8278dc29eca13e0de79b4afb20646b25072d4f686762b05'); -INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'19d3abf455cee2283076d363f80e5bc7ff224c262cc0fa41a49da3d08a5ad303'); -INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4184e20825b23cfe7d9e0d3ec79578c5bda05516a6c1b245a48430c7c0ee4f4'); -INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'f3cca4a096a03cac5bb4ea31747a324ff28a556fd5ee7134ecd054b37e58d69c'); -INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c23b3ccf4888e8e1a63d417f979563eee32dd103d4b01c1563dc3bb1d760eb0'); -INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'f4e71bd66870a586edb2024c45fb1fe2ed536c03fb1729e186ff3bc19d7df1f8'); -INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9312098d67f8b5087adc570afe19b1b5ec1c4f55899cbc7cfdd11e47df6be4c7'); -INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'230d8554674eb0037de6c012184f9698a7f0ea516df7a329df555be88fa5d430'); -INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d12c343c46cfa600fd1625ecdfd1a9d51b7c81b39f43c11b57fc3a56ab057ab'); -INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'2a5bce4c25aeb5b99a20a8e3f8930c595e9c87c95f41ac29b3f3230a67f0124a'); -INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc514843be5f638aa646d34878b84163eef43cee61f3659cd582567885ba7ccf'); -INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'001edcc363290c7dcbd8bf7a66a1fd3c8fa3eb2ff5c9f8da4feb41f686dca819'); -INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e06e7a5b5ccdac102f8647ae8e4dbaef149e3bef4161934766654b6e249265cb'); -INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'c9c7a3ef0de1c7b4705545dfbd76904640351d1b3e4a8aa2ff543264c8386d0f'); -INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0435ce01728ba43c9d5f5c9b7e2f59605bec4f164adf403f3b8a11d59100d395'); -INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'8886a7798b3999f7a3e97a3093a02b9b0c816217a07b627462498eca32c5b8a7'); -INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19cda5b4d0b61724f1c85c72af61e31a6831a6f2ae1377a267914d03fb90cc02'); -INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'2a2feca0f61d5a3c1d374b70dbac1dfd6cd945e2344a82a8701184d0acdf92f5'); -INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c9341c0e2e5af9699ccb3453cdfcafce56b8d5fdbc4055c89683a559f905d5c'); -INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'2436e452f18d02596c3857022ddad2357bb71c9e9bb9fbe7506827d59f25ffd2'); -INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf4e0e33b24b8a5aa4171ce397d65060591b99d40e2d83337192826208071f4f'); -INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'98550d79ac2d24b9310055bc3216392c27244b2c883fa5bd9e897768695c5471'); -INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cf5c0fa0c124054fee0b8dd4083977308dca2ddc06ff81a519276963fe56115'); -INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'a1aec3ed73938fbb9773d04bd284c00fc5a2c1ab68330279ccf06e843ea6853c'); -INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0be5a83c885fd467cd4c0754adb84df0c5b9fca2b51a36293c44a7eb4cd46ac0'); -INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'3b22bc50e6c8e3bc662b8259822079612b88d1367db6c31bb25cd575fedc1f17'); -INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5539ad94a2520fbcecf2f170927fcf452d02057275e4b6d71b11bc207e049277'); -INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'1029ee64b9705eb9d1ce28dbb9b8f4b06e922322cfdc6f36b72a7105dec4d6f0'); -INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8c7e685d6aedccdc7fdfee242d05158ade19a3941330e09418237b653dc99fa'); -INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'214c8a062f94606f2ea206a432a09720f4ccc123a615bf0d08f3f31e199ea2e0'); -INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4480d4d6034eb76a1bd38307c1982a058701ea85a31171d72f56bbc111d05527'); -INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'de60e868e1385ed54ec1102464bb4b0442521d88f926019878625a7ba46db258'); -INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a19b5ed81d22f4daf6012872864748838c5d18c33138b41f6a97015ae1e6749f'); -INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'b516bc5fdc45297527ec3ff88dc2a93536c81c3813174816160b3090403fd03d'); -INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'771df4db25a660ea307f894099a1d5893900be1be605a0c645314dd76f6fd6a0'); -INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'a85bd81367a6ee728eb4a49560aa0709b099b635be45a48fe8572f1d2602a360'); -INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'757ea090ce146b481724b5e1167abd70f9a24af99a592200f39075610a47bcb9'); -INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'06d661d13dc9b2bd9af7dd90793fd953bdded34ee5f88d618922d1e1a911bf06'); -INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47fa4bb2fe609cd8c82c8b16d6fe484edd26d5218fee1fbae377f75fc4071866'); -INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'8b6de3fbc63d5aea43bfcf99a09d23c4951d749dade75e4ace1bbc18b76f8c43'); -INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2e92c6e603940b7326f365e36c72759eb2b92ff5a5b8364d990a7bb72a48c13'); -INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'74f9873bd86c453c4955ea353d9764fa2cd72145c23632d07331854813b73275'); -INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90cdc6f1cc5fafde105073168c749bd3cb29b07825edaf0734571d02b135b005'); -INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'73948abce7962469c27016d31dd4a310b2d0b7de470da42b561b2b535d762ea2'); -INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9809bbc37563a1a832581eb73e1d6d6c7cb8dbcec1f008f0d9e4d14aa565436d'); -INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'dbcf1ff7d70c3adc80e79df21ef11bf6d0b6cc7f7df65ce43082ca92c5a29681'); -INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38e06eee6110a7090afb99e87784855458e72e5e9b655b411781930df28bd491'); -INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'4ac8f24a51dbefc3457830878f4eb261b3b2dc6910833e74c1d66f07412cb35b'); -INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d3770ea1dd74ed0715fd1855fc9216ce56801c51e2059cbebb060a2b583a25d'); -INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'417233aa48997a4bbb0f1004c452eb490290725d0c8d25ffa8d7ccd50f2e781e'); -INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9c9a3cd3d97ae10dbc681089e44207c66477bc1ffb39b35634b975a42fe335'); -INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'903f0434ac3bd398140b0babe4c5a7dd27d30591a5e10729e9c481c43dbc5df2'); -INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b995b67c06e6f389d104aee86d31afae6f8b333e570ad387b6a8e09f46a9b647'); -INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'56ab43789eba4f27c0ad307a3517a548de115c0fa01ad5437d57f06fdf619fe8'); -INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2393e2c486f3e5b2c0c9ea42854898e15c6a443013ca1d2b9498dfebd4a9c324'); -INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'75fa4e9fa2d708b52fa634fff5c23382be2d5ef2aecd3aa9d5a7604318de0f6e'); -INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f696ba143489797fc5bb83099aabd7cd2d3e130f5eadaa31707e6745a0a4c5f'); -INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'1107b5fded932c2a220997f5b061cbe0458cca63ece508e3004dc360590cded5'); -INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad9b9d4d60085959377387b28fcb5cdccae1c2239b6675f2ffeb6d0cb91c6608'); -INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'dd744c08007263d81dc6e59cf9418453575f7a64b2d20ff86f9e497817ca1a27'); -INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'702321d906109ed0dbd33fea05f31cdca8dcb08605a032773e3f31b756abb1b6'); -INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'a6c2a4f501ea14b69c15675d6e6f78a632731708cb01836d3024bf255d9677e3'); -INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6232ec25b419e0f3194dcdee551314621481ed3ce6e0c44e187c0a9fdd57dc84'); -INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'a53eafb64b270138839fe13a5ac6e6535b4249043cf9e8c575d1f37ab1b47e45'); -INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd672532fad2b71ec1386af625424a93320c4ae950be650534f730ea88c8d880'); -INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'9d27bc8d9c960c62047ce88274cb7f68d978216daf5a15edf84d819e31a953ea'); -INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c738250b2f0718db2446ed4fe7b209977e9d5f804b048c4ae593f0943124cead'); -INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'139ec92a819f0a48dc128242be59e859f72da20a2391561fe732fca6d6a986b6'); -INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83c2e4e63bf063d9f869d07324c86e6985e247310da9ea5873cccca674a1f81d'); -INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'3275ff4a4865be7aaf551da94641332fa139e9ee3cb16d8f6fbb69dddfae1477'); -INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'288755e99cbc79f727aa1a9d5b6e7099cbf86a1c4a8755148d314905930a2739'); -INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'9690f29c0b38c82b61580c079609c38614b05ae1cb28ecf590df86a5a5ea110d'); -INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6855440a1ef40d5b11cdd424ac570e716a60ff5a7ffec7ebde8566708f94c87'); -INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'edf92a19ebf97a82cd26b5d58541bb6ba3ab65462dd00e19eae1457bcdd2808f'); -INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bac430ef585c6419afe5a11c773181449802b2b297389e1f59dc4393938b3410'); -INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'bceb250143aeadf20d163f1524d0b8c314303f9b1daa52b0918aba4e4b03c08a'); -INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab3144db4912cc51da03057931299882d63f80a9ecf1d81590655f8c5ec8d364'); -INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'fb161af937d9eb1cd4eda64aa0d82f5c108112522ac254b43d53293e1d8dead8'); -INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39d49c37beac5fada1cb81e3ede4eab581a3d2753b6e3fd6252ba074746176e'); -INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'87e137fd9cd0af9c8d2814aa995cacadccd87b10ff5b5acae44fe7efb0a6c84b'); -INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5500ab203979894e416355e5e66f930c479f72931931fa295b58dbb6b46c5465'); -INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'4066af51bce3f86ec489b05ebd75cb0adfe3fd0e32140f01110a2ae4452b50b7'); -INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e486924d19e74e27cdf531ba4ca9240006099d8fb016e4762ba1a402a490db81'); -INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'b987fff477b9c1947cb8205301e65e25b0e142a6a6e5e01b140464463c44e23b'); -INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'314aa429df55061584122e62f237707463c4e57e53c66157607def2279c30caf'); -INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'4005b98313e4166b927253e2cc4fd7881f95ae3c88308c2fad74f0a11563ad25'); -INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7026b2d0069e0f466bca9c77be2c40bc12b8bc2e7ca5f5ac6b613237b2318324'); -INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'13e06f09084bab68ae2777614188e89092bfbaa3cbd2931befbb25de31c926a7'); -INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e57701cb9e31b614ddaef639e4ab996740af7134c7a3ca4033627da8ead8eb0'); -INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'41914554c281ce4ad85555d1491109f7521e5a2cff68a5f0b6c46298200b2173'); -INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de0ed5bce7a67cbe229715b9e89a3f2132c89e07e8193e661ca51aa0928f75c7'); -INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'0f15d39934a2b6f89bda0a3322599eb3d8610a8a787ca538180d55c5c3808b3c'); -INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','8df48729299f4afbd5684abaf8ae2c33b0236ca1e9138ab5c6c84384cb4c4731'); -INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','1434fe2e701daa4c2f9753f357f936612effa4dbb4983b051a30bb17fd2d5332'); -INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','178bc4b98fea2d40141b82a8d0cc5cda99bbf515752a5bf3d3b817ef5c163418'); -INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','ffa2e0a4240b97545bdf6fb28b7bdf79a8354522a091f38ce1f2555872483e81'); -INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'b842da75a8244c2f52f2677f5a2379552e40b7029bb8cc19c4fd7dbf1f55ef6a'); -INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'679a36458053ee596f67c002ec5d2efe3105a717423294df241e6f6e1973fd18'); -INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'f1a41aac833983e1ef65c945c860236ab4b9051dde72f66a04a8c2088de8de56'); -INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','3e8c64588775d0550a0f87070c9456cce964025828a90f509a2fc1d4b03e0ca9'); -INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a5e4cb43008f9d7df8e98de3abeb27f57ea50fbe2c4e8072c7bed0a20c06d97b'); -INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','e9c3a7ac34a9299f73f4ecb1a7cd2cb83bb77cf0dce82bd66f9ad19aa182519a'); -INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a9b842722693efe16172ff4145515b1daa91c6679f92675b86bfc7dc44788cbc'); -INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'26054001a6613506b5e4611bdeb3d341ecb77176c580b4f9fe3123ae0a5b9a1a'); -INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be45e5fdc59092668a7e99a5ae4f0c3e9770bd4fa05da86d29c1440c1daacbab'); -INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'c93eea39008bdda956e941b72d5a0fec2132606e6b7eb292bff5d50a55adfab6'); -INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fdb4f4024317545a68ae06c70f0a7413f4e59debc807513beb0108bafd63f00'); -INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'020f97d713befe7b25748441f3229c3643038bf29622f01a11de4aa4765c76a9'); -INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d154e665a9fe1ed4c0ca30ca79a07ceecd681cad313301a8e37b0338a11039b7'); -INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'9c855d5ee303e30aa4782ef199ea1e044c2488dacf121b85f749f3478f06ae56'); -INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0738f2ef041217584a50f81870f018fbed954c03131fd690410fed02ebc673cf'); -INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'71391ea02c39f01273d95852246da42428db428ac2dfcec6ae931844a207b244'); -INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','c2f3ed8bb99400c4b998e3b1a5408b6aae4622b49bc33a69295b4814d59cf8cd'); -INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a8e58ecadc29d9d8976bb6f7b0a1d94a16541facdcc379b98720831dc33134ce'); -INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'c18cb03a51c0a8372c2d332377ea31264e6f2319bce0ff21229453bb574186a0'); -INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f3ef5786ecab19ba10cf1f4f531793f56384927bb418bd48ba6edeb62b95ff6'); -INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'e3bff998a3952fdb71781fa8cdd85f63693c9900bc245d72c4abf429f1dcc9f2'); -INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','b6e8e98a648e426996b24f1c25ab43289ad099e3766edde622300647971b54eb'); -INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','78f495f56b711700d1512736c335210d027a7cf6745f218353e18390c628e58b'); -INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','3b6bdacb7d4a1ffc826c75e25a4c97d2687af615cc673a2d7bca33653a524b93'); -INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'f5e60845f4c66d622374eff5e5fb0bb37ec2c7a03d0ce15ccfa97047f1f2d7ff'); -INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e77c21f88942e8f489b829e7a60e34a63a4ef3f4e16068d7bb41261fab9dd270'); -INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'49b4f8140e9eb11215e8354ea4199f6ebd17334aa1daae2d037e672b4a54f4e8'); -INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','c5803810056be9099e918effa1483dcbafadeffb8ca2d1ffc893adfa9e6d36e6'); -INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','492dced0a4d2883a697eb9b2a2966f8e96f95ec20ff844a70cf64a721b2003a4'); -INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','585b1499c501ab737eacb06cbb172ebcd164760c62efb4ae25176a0421ec498f'); -INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'88a75ea2a7974a960a9e8f0860b5c1dfbc68de6eca5952f712968e8a0dd30f59'); -INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71d72b45d98bcf807006a8e10fcbbb1666088ffac5d38ca05f961036c2c1b989'); -INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'a1a63f66ad15c5e052449614f25eb164d40ababd4456e98cf364017ec7fdeb72'); -INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','1013953dd4c4842f69f7ca0abf11dcef8f27645bce9c4e12cc92917ff44c02a6'); -INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','fce2a062082c70e62d2b1b478c5509f6bbc5d79d56c12d4d1a54d890de954205'); -INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'5a9f5b595440662fb251d67487cf841ab17fb162d6c32ca95322351ec2c63bec'); -INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea1ebb872a142c121a0c05c84f3843c61bd87faad44d844909076adf4be731ec'); -INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'ef83af1031c196d2c006a68e6a273604a4fb7393e9d0a773efeb707453b855e4'); -INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','0261666b5d6831d25f2ab344a21d99a4538414986fce615a19ff39b5a2c69c58'); -INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','6246276dd6609d5a6f2d152b514f9a794470decd9e7fdddf38aedab194f0ca8b'); -INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','caa1f9ebeb0379691b10f4f765b45b35c9375ca309d1be57cf9c43e8a5328696'); -INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'bb11ff70c8378d2d2155eb41fe3c47131ced45097b0aee62295d7c11a0dbc6e0'); -INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd491305e8a42f35fd16a8aaf412f3a36fb6598c2f107d7cbedff5143e5c1d12'); -INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'1382842fc43c497c730eebb3b042c5f220567a130ecbea27be7555627552aece'); -INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','e563813d497fe775cb1f3fb6644acc11378e52739dc7324c59c0ad76bdadb759'); -INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','f631bc64d26e20b447f92c321f80456e1460219c46bd33c91938c42f36f46b8c'); -INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','be6cc28ec59b142b71fdddd27a2763130fbf141046618b5b44e00c914a96e498'); -INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'21d08e9aba6952e8d5e986c31a1f3733a03333c128112b6f9d636e0cd3825f04'); -INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a79df837b5548849a8aa9880b9d0acba72c2de5f3ed3fb01b95c3eb0cfc24667'); -INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'7ea18586a85c7803ede9d546ce82fa3a1e239cbf7745a58a757c816dcb896c76'); -INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','83c9d8074aba6db3fa1b444ce0ea99dd32e9643433d505410eba2cfacc719c43'); -INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','1d13763bb3fc4ba20057ceeb69a27372f91ca3557457aaa098461fae4e81c6ff'); -INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','d0deac7f990d5f2e46e04628af180bdef71362c5cd5c4f40e71e66afc1580280'); -INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b4a9ec17ff5b6e6648718ffcbb6391f7a646d761d28b5e5d3b3200e89037a9c7'); -INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','431d3540fe577b15336e461f81abcceb44ab51ba43b4361bbcd315c2a6ca5cd8'); -INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'7c79c254b87e3ff0580264e503357b774854b2e6e9db20a412dcf075a95b6253'); -INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e4ae49fc51b7570d03ed712f88e9d36aae58e5517d4d57a0d31b722ea2c91ac'); -INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'e1239711b86b2f03dd599c6ed509fa5a19d1a855f3cd407b4dafe21129df77f9'); -INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d535993ce2bff73cdaae3d6909c59b6234a5e40281e14f5b69efc738c8876582'); -INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','a8fa8eeee05b01f637af7d073c494f190b8c83afccf10c64cc93814e0d6ba8f7'); -INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'96051b424c089a3fb1e8e05196009f79803a9e9345221815fb7e12be651c2f33'); -INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e245d5314dad1d1fa9e5f6b485bd392d1497fd708d284021b0efedeab7fb567e'); -INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'e844a7b84f4b4cc469cd0f6894cb088c55a825305c0a43345b1927303734ba4a'); -INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','aed5f45fd7f6cd90d00f84a6cea20fadebc14e264180f0c3e42c19157105fd02'); -INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','dfed542fcdee20c4a32650d7bc9d999f12c1f2730ffec1c13f55619f24fdaeb4'); -INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','8aecbcd4b6c31973f5a8778f7c923da0ba8db458934684acfc04a6d8c2c07308'); -INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','fa33def0f6959757cf565f3915cf6c4e8e0d7205c23e5672af51e60c091134d8'); -INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e1feddc626b4d5e9b242854fdb7343c823d5022c3572266bc319116462e0d8ee'); -INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'207ee1cff97fbf7e492656188157146d4fa3fb4c5e70a7c7e89b339a0d848ce1'); -INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88797e3378d1236022a1e8d7846de9d41bc9d446c7960f0663b17d8be3d116b6'); -INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'f194a2c4c8db3d42de8cc8bbc9b60b095a5d37d005e7098a0d9206d2631c5c70'); -INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','c099358eb440ddacd80dc488d2dc3f144226f234ad8ff51fd488c2f8fe6ee2df'); -INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','6dc3b1e384bb9194aaa8acf4505245de3f07281f2402a65462d5537205b83d26'); -INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','155194df365d8f82045a0dff8163c2f6c1e94ba4d33cab6db2a630789f5e028f'); -INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','84c7c72458708e64f785cc8232ebcd1984bf5adcbae5d0252fcbaee73f3ed434'); -INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'c0ab819daa638f9043bab0b07f16df5b48ff577bddbf41ef137c0e4457bd0fea'); -INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89b20d9a7ddbce5088e5ca0cff703bfefb45f6ec7764dab6d9a8258bab5a915b'); -INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'1fc5e57c55026bd4ce5c7c724c7dcd9c5b56bcca6af3f284e74689ae2db2d7ce'); -INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','d81e90d9027fb88c6cbb87e362d38247b8a01ac62c8e529e978c2f12f63acbc7'); -INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','ce07cbdf16db59e2fdd60cfed0ad5e050468f4b5079aac6cb2faf3aa106b3a4c'); -INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','fe87f4c8c6fc6ed6e091a0bbb000ce54d4e1d767a1a84ef3b2f025e527658f39'); -INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','2e356a3fcc8633e3c2a9f27e9522c2f719e137a9d9552c076ad5b14038c5f377'); -INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'9c0d4c38640b154426b1dfbf9f20aa7201aca283eeb1bf8dbd1253882b7b1886'); -INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43d01afc9b762b3781a6daa04bff407d6057564f889d9ed2e8cf2f6a1b4af75e'); -INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'cb9d029f04a6f3d907f007d1ec342ea47429ed33469314944036d86d71b700ed'); -INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','ab1208d11fb1a7cb75417e5409b0e63d671a722aa5e1363db697a5e541dd2f0d'); -INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','68cddd5691bf53f1c90d1de78219e32f5dc20193b50ca2b0b93156c62f84e5d9'); -INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','e0d6cfdd8caf3ae2b47bc92268ce25cdb47a519974b75293bd6061bd3694cc8f'); -INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','da57aa09137bc3440ab8c777c9ccd8c5b7b1e0c4a59f3a01f51dfeb472f39577'); -INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','ce4fa74deb750b7dcfa9cecfe042177364fd2d8e5f3d5ff6987885a36d941715'); -INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'738fca04d2c26fbbd3a87a7153447160e40d828eb0996d4178bc5c38b35159b9'); -INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbedc5b96bc90189af0f94197973e10bf0736f34938def5362dae3653fd5427e'); -INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'8ad951c152bf3711c0b763ef8a2ee3ce17926610eb0a8ed91fb559cc063467d3'); -INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','7bcb2a05e45e694ece381a00803207f997699166324c369dc7491a9086ffb7fd'); -INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','01f3e2736886ee3e5636736c4ee02e243e3c20a6babafed97b8c8d2388a4bc68'); -INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','910f25e1c8f00becb784d87d8b00a84f89d16b84927c92934f278f3d0bcfad32'); -INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b67a64de830f25116cf7f609e38a8253ed4313a65375e2e277299b97d84cd1a3'); -INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','0ab9ee0be4a04b03af7013398953c18f7725ad5111cfbaabc87257f06ca8a677'); -INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'f6f9da0f460865ae00bde39b85e20368655635ebd479df7438626072e510d5ff'); -INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d3f5fbfa99ab6ae119cb99871728a2522a354d2f8a75920010b4e2492a204b0'); -INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'95ee7672b9fc82436509ec11dd3cbfaeccb63cc2a23a51e36f80afa47b24bc52'); -INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b9fe93e8d11e89750e8ece344fcb0a80bfda1b6e614146cb0a28f287944c9214'); -INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','2075f114e98c4118d8972eba19c7c9189e44b555962349d58993c1f0477c1b93'); -INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','ede186b7b316b0b1b54ed5010aac9c61303e3815b70ca1cf29036f2697f6a1c9'); -INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','9b03bafcbd3c8f9dac70ad35dd6ca91981a1e405324eb1aa91b2076b758a70f6'); -INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','a27c14e1211062a88f794936d41628d16ee1f5158efe9bec4198e99267cc5524'); -INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'9e84e2d536de9991690708283a8b0209dd10fb9c0d08514fb155445a7a465568'); -INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47a19a88bb12daefd5e5d3d44e44199a90b5a7c6c4734208bf16e2b4fdf0bb6a'); -INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'2246fb9a167c56ff89995d73e719ed033acbabf7962c0e1cecc355e232f942fd'); -INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','323d03a33ea19a678ade2528771a2eaffab4f2d7160ef5c4b93d97832605d946'); -INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ecd2ec7669e9da9cd8b25054baae2ba27540088b78577f1180b179b68b8ffd1a'); -INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','9c0daa4d50146c15aea83ba0aa3bb8bd0599e842a76dc8a3dd53d879c362ad1b'); -INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','e555f90d9057ec8041ab6d567b247f46c4dba770d1a97a86fdde9838b5ae672d'); -INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','8adceda17fde21521dcc2dcd69d43cc24b81a3b9c3425b20cc2687e44098ad6d'); -INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'4b63d824b49c22f9a98974cae163fd09d43d03a1f059d9fc4f3c05d083e71dc2'); -INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c86b10c544fe3d4871f9b08da2f30fb55d48cf5481ec134135b508f9205b96cc'); -INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'829c5865f703930abd74c372921ec12b37b0c2ef212bb4e74d9cb7571ce7e5b4'); -INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','f76532d72c4b9c0699acf67885ffe3dbc6274427cae66cc660d08ecdf76f0544'); -INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','a264cf67e8599e1f4aeb42797546ba8ee19bea03f4f796d536eb0075aa84f11c'); -INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','e6494d0807b09cccc52bbe8f9072b9fe8ba12049eccdca0a23e72cdab8e8d91c'); -INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','83437c68d8ca84c57ded9563568d31f57720f529a43d94cc16c8e84e6b9b79d1'); -INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'46ba5123b4ef47a988059b091cbee31cf8f6bb276ad9b859bb34c9f9cddcb791'); -INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c21884f5eff91b5be7b71d0d105e29554dc2c59e0f2f090825d78e9e8bf79c3e'); -INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'961ecd0ae973284943c7a8882099099447c9ddf1dd126d8ae06a28debe96b3d6'); -INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','3588fe6e520acd9011bd49fb413746b4e825261ffd46deab37da3ff4e2618bc0'); -INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','d2ba6055499814136672d21e148846639d8160606b86a344c4ddbea03ca1af74'); -INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','81639df5387d7128fde4d3a01a3ddb6a4239d2957c2c48e86c9bd99edc693b4e'); -INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','76c7c5f38b466b2069153affeb85939b3aea47c68056aba9f64096b5c9ac60b1'); -INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fd62d5d7959562d874ec963b700d19a359cdc8e4c1c2d8c0379c38f99d98f8bc'); -INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','859c7ca3e65c44765c0add4829ef27449cc9d05436523bf780a5a835152e25e0'); -INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'c8d7914bece999c539e3bfb040f29c86765b507f716d355a4ea2e914db2bdd99'); -INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6121b09794ffd313e38cce48bccdbf7eb3f529171508c73d96f97559be15e94f'); -INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'2079781aec4d7e395aaa6d4fa3bd30649d3677964e3b8d2a3f69c62b8d00e28c'); -INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','8b2a141df2f6c402221811a1f5fee2df8e3ebc441c84460e9d9705b802c2aa6d'); -INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3b8c6c1abb7730c924ef8052b4d562ba1ba7380e0a11968896b0a5e99b298920'); -INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','f1db4c882e676580a730c05d0e1f452ff1c3bb07acfe6d32eb3e3093fe2dec5e'); -INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','1c1bf4c07b6f97835407d296179301ca3957edd44ee326d9fc06b38cfc0bfe38'); -INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','28bd38b3497c8823b60e6d2556322602c45da5653a52505e31f0deb75bafba7b'); -INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','b5931730faa6daf9d20edeb5fe64b493b9f1ade21b2942eb1757fb9aac138a77'); -INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'f68a929d1237a951981ddf8028f390efe03f81ca2e7867071db47f06551de823'); -INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df0fcdd34b42c5133edec5356488770f75df1e05204370c26f6cdb6c988049ea'); -INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'8b2639a4aee42fbd082fd4de5f223827fc1b972eac6baf6a24479b07ff34c323'); -INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','24064e291df8f579bb6155b89cf0530181e8c9ccd4cf1c558786bd7a71c576b6'); -INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','1bbafbe2d545a1de3b1b96f4c04f11f79e516385722bd82f8157a30572f81773'); -INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','32510688c4298b65fb4f10d2cb1c86cc04670f69857eb1c4347c09eeea8ce198'); -INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','6bbb36384232dd4c21d012dd7ea7e3cc9e33026b2d8d9a690b4876af58b94c83'); -INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','469806466b73f400a3ea91e73332a0c8f868bac747268b4086a6fab956354eff'); -INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'7056bbf701164dc55773bf6c0ed087a9329c7412ecdf86bfa30e43e9655d4c6c'); -INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8267135a9e96068e7050657356cf8472ab2def451a2d3e08d098682f0ad7f511'); -INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'881bcd594727f225991757d4d2e08a438db8e0e38aea9684b4c1059643fc3966'); -INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','04e6bd9e32e9aae2db0444aa702814fa32e7e7777f5b441f5f6c0727bdee87c7'); -INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','6ff0aa9f5e17bdbeda9976de0b346e1bd8cbf5d30dc68468e3a831f6c52a9b6b'); -INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','cb9cc64f655fe1c3c0d7fd77d535e36a62bbc756c84dc80af88348459907118f'); -INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','a302e0665fc2d32e5522804c71622b019c36ef1b98296ad77bf23fa46be5a4f2'); -INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','4bf27f7ee892afe8887a15780de8ab052a2b1cc6696a706a7f8cae0c0433223f'); -INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ac306eb317b7fa769a53823cfb46b9bf7bc6f392568c1beddfabb659f5edbefa'); -INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'93cb445e3149dc3557c0cece50388adddb6ba7835c54c19116ff083b169109d9'); -INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14a332a8702233b18d701fbffa60b0e2ba0b8bb0b8e546a6cf41862cefca7f0b'); -INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'e7753dc2ba4e94e5dfb84c2106e181767f4512664f8ae347103b3a3feb3b217c'); -INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4ff756fc2a6aeca1130f0715c846ba2c5a6263cf199a4bc96722ac0946616f38'); -INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8cbff1793d3789466015880bc6f741a4dada23b4bedb18537e3d9081c3437e3b'); -INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a1277ca87b06a3639c77666d385c703ca7de3757144c78d213cf0809451751f7'); -INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','2783aaa8e61e6615caacf8829212a86cdb5a5c3e151ee3a5b7a293ee3e7c93f0'); -INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4c0057166c0cdb16290d48e49aeeaecb396dc60627c3dd13b775fa32c656fef1'); -INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','24c8a0377a22a9c3ac9deb882492dfcecc7272d2c85fca450386c19861bd28d4'); -INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'2b872d5ba7b68b9f6e6681969ec5bea45c77c419952f5acbc32550b42f578c0c'); -INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7aa4ad6a30158b00a107ef75d3f4f76124e6489995c14b9ce1517fa55370a1a'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'5fe355dbe799ec8db520c97841a29075d0f611d03a8c1194ba28ca1fc1b3c0f8'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','4c9c59be5128e3f4924d4576485ccbff9bb8e725df4d5c5099519c04d1ed71ca'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6513212f3c6f39e30f9a146dc496586a117f53fda9551d1c1c369d45c538cecc'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','140bf5b2475904227e0e65d6592d1d8eacb0781ad988421e3b2a9ad1ebb083ea'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','04bdad18f478c96059f6c8c2e9187835a90a6ade565ea87c502704c87f5c69a1'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','98c4c60a2f40fec9806208ad801134e4ab63dcc95bfdc00542cb6943f6d72dec'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','03d4c6565b44dd849699eb148f8a9f6ab543790f11f542ec272734783ee53362'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2eef7ba0ae0805a2560687c1574464bb110baadaa812bdbf60378b1a9a2ddbc'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"877b4a7c5f2f488be260ce5eb1b85acadbfe80e1b57587899ac17f5f9dabd80e","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'2fec3fa9cbd9c4463a92770f3a38f2ab4a4d265838dee43a2825dc9a151ea8c2'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f192a296014cb70f9c697afee97357c7f1b53ba1863c11375e79cf397bb1bfc4'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'2177838c6cdd3872b1008bd06ae37e651933172c767ea3d7712e928a5ef35b22'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','ef64263c51ea4e5b45d6056f17614f1a334fedfa3a4ec7033fb556e8de387ae7'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','cc08f3fd5de807f51c98fabb0d3fd08749ce48052e8291988a64df60cc69fe85'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','80647d88de18c602b3d282c79889a42989fa1582c06fb4ac7591057752ddcf68'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','116532d00e5afacb9193ca83f1145cf7312edd613047fd80784aeb2607b0092f'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','47c52e83dc9c5c5212e182fa4e233f43f40fa7d298263ba221791d0a7d682d49'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','51579469fb47898d0483fc7f5ba1fc26e7ee7bd523764d7f97630a7786bd9374'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','40bf90d8767de7944c7d20ebbd8c4df074a9c9dcd69fa375cb154287c118ccd4'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"21cb3c6490b96e3bb9cc391a35fcc6f163c13236508505b75f3f4be119b723cf","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'a12cdc26b9a9ae3184b5d44cc32c42417a0db58c5f99a9b884a783f822644a26'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'087553f31756717aca70b577bf348e0eec27e667605fdb64cdfd8769c1b1bca4'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'f449677361e4649854cf88f1296f82744ed2b939c30ba10691ab908b2b3787fb'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e288c04e49a1fff89bffd99af91dae092d8daab6bba7e37a83c7d969b522cea6'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25036928431287f2fbd330e22f76b69189e9225402535335ada408c94de32477'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','355b8b87190d2c2d197c4e3aa264de53057a1a239912b2a0ca828a0e0d562219'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','5bd167d53372bcc4c370f74fdf11d2e05a87c9869a262b527f14893d4254864e'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','8c4390eb3630317351136becc5ca76c3a666188cd4abd1c754f5b62cf70aab38'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"087356086d5356308578107b1c3f34718beeeca263b965e6d4e92f61659aaa71","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'f179790d9f375a9be2c977abe8259c4b4282e309ccb133391d19fffa7b014d60'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1a9ad4444a7c85359b8d57fd712f9dddf75bf18f96c817bcfd277b2f70c86ba'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'689546e238c43d0b891e2ff951eb86259c5bf0487ed9d0936b4c60459c357a8b'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a38a4f14f0aca5adad629289b9d1fc7ec6b58ac580574ac9470383b05b0669a1'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5db249297b2db24d453024d8c1c029da2685aef3ac84c1cbc358e16ded07c4a9'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','66a21dcfbd3a41853bdd3a20cb2f2242751605eab5ee7d10d3227ca81a2d39b0'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"8ca709cd6ba4f4be070379e130d1f4a639f2c5e8ef73281075a0eb081eb6257b","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'182a2db689de148dd3c935bc2056d704e9c15824b6d6840aef7f3a05411a5212'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51ce335b2ee38ec9014bf767dd5d97db28c0d78dac5f6bbc031dbf583ddfa60'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"f2e85c3d84ce7eb527892c570111d4cf686c691470aacc2eff248aa721c88a66","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'35a02abe7387b12570ae485c8f20d0b7b849d6443b93e3450ec44e5246edbc91'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11d7c8a437b3fd3357ab0bf6a6f147dbada1b4279415ce9e791465344c8d6776'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a094013e4dd2ec0f61a71922ed03865c4ec61969edf05deb7253c09c3d85da31","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'83c568ccb68fe2740340883f55c66ae513e690c2cdc64f0f2591c7d113bbfb26'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'815feca8dd866b0205c0ce30e42b0f70964d0586920223f3ac63292cd2be19d8'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9eaf66e69e8a4a42d09fc7deafd207d55cc6e5d22f47ae6186e9f6e8c55009b8'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'69f1493de9d1aa679053acd48ca718f0bf595243e5f479a47cd226c1f3efee56'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'a95d2419ab7a632361f32ba1a05a1dc656461cf5442f453bf3c88cdcac63deba'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f1217d41c94fbd865d16b9c98db2f3daf50f2c837291ec8aa3e9bd3e36544ef5'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"30528c887248ec6822fe178c773f8627737cf8f000477974fd3521510607ef42","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'a2a49facd30133d09c5241dbb526887cdf64efbf10e45c6531a8deef40e26f99'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9851b2a86dfdf9aa110ecccfcf6e57c4e7c71b981151b1f7a004cfbb085ad957'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"1639d84cac638480fd56e7c7dd0c928e96223914a6b3c82d18c81dffefd3cc61","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'b7855d2547befe39c94e4cfb0335b03c374e187d96648320739dba49665f4686'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9a59f248e3046e4d9d5d7aa351fc91fecba5c5ab49e3ecfe5379974e42089b'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"893c10db1b074ce98877c6f5463f61d02a687ec9e449e6993d6de94cebd67145","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'220779ce6dd7f71a2bdb00c948e3892cc0d30f3b4da7986f37799110b0e6cc78'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbab97615249d2ae8b990fe82f9e2d7c0d9fa59d0b4609944a548cd8d041865'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"03f88d86ab14d8b0682dd9991b5295699bb3c389537f8b74719310367703c837","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'0be55e945707f7d23a9cba6a55940065726467276d1ca7366d046c3d6e9b0c54'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d82f918ebbf06607f76042e5a45d327885eb44307b6f05f0ea698c135e7c107'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"bcaa3e50756d803cc7e5cff0f13b3b8906da0ec4769ccd637e0db8f951698867","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'9070bae6f4cc11c28520d4c5d78552140de8088ae0131861053da8b3aaab7bb0'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa4739fc041689c0e6ca003b90228f1b89f881dec60034b76ae7a4c8eaec9a5f'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"73c3fa1393d893efeb58c672ad5846b47fb0a9a6c30a3c6c13d900c9ee858359","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'2ad876d57d4d751ad30a60b666b876e716b8add9e66264abebd7cb79d9fa49ec'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92588974c30e9ac18a512c4698cb2240c329e2ee60162d88acfd2de79219b18c'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"3d2a7b20788bb38c943c83bda345a5fa6dddeecc178e1b724384c7f6a67d5a87","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'e418c63163332b5387f8c832183e8ebcf7f0dac30c05990648d7afb0ecc8b44c'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ab78202f425b92d2ceba8fffdaafa462aa86d81a75c4aaf36e939500dc3c5e'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'8f5f37b1d98039470a730c697e496b946d26faafa8de441d1a959e4db9911498'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'64f5d7b6861ab7fc5051a09572f8264586c3ec65a2c4b997bc2f201fa0b099dc'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'43d2d99db36ab6db505f3e520a18e4c27637a90888e29868b24f516d6beb39e2'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8d9f1087250a7bcb664d946b2a9c7814270f51ead69848db6ae31c0bab1f3e35'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c8f6c0517d573538d691a880d76972fe9095b75df661b9d6f98f68b41264184d'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'3b50aa0dda892945374c10ea288d32fc79bd72d7621b5b3a33cf037da1486bea'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34d6e9995bcdce8744528324bc83a014f050ed932fc5bd9be1acbf86c70c5e77'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4df5825df1b007b3866307d453f688cd2d8d0a6697be9ed1161d07e6aa240629'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'354d6e3ad12602ea6a7d6f4815ee65a9a5ebbb6b7885ecd6d08394a8226c2116'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"aaddd7a1b761a9551b92acd648066dd1ad81824b0f3ae8ae332b731edb905007","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'70c8b1a4ae53695674caee7d6c5b7b938c4fb87d42d5e54d468b72f7f3ea450b'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d578c12cc7a4c1aa85aa79158731060d30796b6933ec038be2febab5f7d556f2'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"7583545a95a71d5b148b3aa392a5c202c94a5af200a51a43e55fa6f5eba208f9","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'75001fc6ec67a800645d1080ae232359a040d479d23f1c18df03e3b489fd015d'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'676d1abb8d37dd15b07326bc4a167e7bea973ca2943be6bfce60171ff9c69363'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"dc70dd2b1d2b864feaaf8650f9e8720a49d40dda5be55a097f6fb2b502673c65","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'796067b040eaa2668a46eff5bf6b3a1e05f3bb32c2f696bb102d812d0bac4829'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78b54d2eeeb55882d5f07631bbd4bf24b9b9fad8acabb391c8944095302f2a2d'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"0167d06e5d49f27a0b257c63d0004aeadd0fab186b75b054383e8f48cfedd829","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'1dca4831e938070c38e8a4ca5d89e167cbfd1092570b1e00ccf6939b9745b041'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b1f75e881ffecf6f2b61e50d64062b75d9f6dd52a745ff05b7bd7935fd5e94f'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"c6b5f815d79e88719a852dfcc9434ede3d93d0d5a2befe9753af86cc8c35b80c","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'94b2a97a82d4ab9cb090adc49c7de73acf348e84c0b12ff5c05257143f1b476e'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cecddec3beeb21e1238a271a4a3eb8e62440dc887a0c0a1882d9e07780fca6fe'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"71464aeda5328b4c1f560e8613a7d2a6a483ac6cad1fbfdc44a85e9a5608379b","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'174998a2e98939252e112e02f2e3a2a6739ab8a3d928ced7ad7341372b0ad739'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55e2fb87db48e676adfa7425267cea1c5a922bf640eed223ee63ece9e7f0a46c'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"3aba79b57407775e24590bae8cfcb2e77d63ecd92f539239f74e0a2e92038b13","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'b0f981db5b32f914a667b16df2b627e99534503e6afff840f88b3e2e3c8aee16'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd8f912fd4602d7010d32f423da6a64b7bf66a32be2e40360cc60d4f4b4daca'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"615302d7db4cde3bc43ecca4139d7c8ff6761e0a747f15ba97bc07a377399505","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'8a6e4501fcdf7a66cc45a7dc57975274b52757574141f8d2c2a5afbc795a01ab'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d68b3bab81fd55d891dff4f99017585333cb95e737cc53e61040f3975fbc6d9'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"591c6be738f51091c44ec170d5e2a62d742c27a30fdbf5286a287ffcd5b51992","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'d26209a408ea17f92216ad50c621b87c4ccc9bbbf2acc71dbd98f4adfffd0ac4'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec5e9413b1952f5ed58c3af77507d1fdc5ea46e9457f77b812ffc4a2bf85b00f'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"8092ec3750b06a2931844c5b274fe2f9a2ae761c42adc65c42ae6177c4d18c3d","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'be90b6900950b661fb6f4a123514a75ba8e33fe4be76e9a6052f2d38b475d2c9'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2eda0b665d44b8b399ced3acbd2d3b4f0bb7b70d1e129a22328d9d8ba1584716'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"8d7f14d4ce5fbe7ebc657d1d831fe863a770253e142a8648386a5e42c48048fc","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'7d65dd39c71e0734bfe55a5239f281b22262e7865060c1e4a13784b76b665766'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e36c3d4216528e1c004a8dd9c6be583a6f294a2b4cf2e821db36e9b9a7b6fe'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"b773db0cfca4adc2c2bc3589814b0cbb6ef84c2a1cbbf3e02191bfa924396d67","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'86627614b7dc7733903da2778a3a386c930c6cd21d04281033e793b78f63b35a'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'004ce2af34ca79fd92517dc1b7bfe0779f8652bfda7f42acfd9b640faa9d41b4'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"bc38e26efab668d18d82946f4963bbbe4d52bdc3d8084abbdcea4de92f16ce53","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'68661a58e997ccee6b1961c33e63ce7cea440acc10d8cd3afd3d87055e0f821d'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eac4a7cfd91cb875886bef3b81e819ae9a429b253adf71004b998e0e3a54981'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"322285b825fcd269b0b5f80d89a07e03dbbb3744ac53be81b5ba5d6e6c567717","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'8cba2a63811e6b9a078777a9e5b5ddd280541a10e1293efcad971d1a2ab275ec'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07a59d936d46c649c6d839d1415a35ad494a10147ed4de4f2857882e7eba87aa'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"2737210468c2b419b5500d74843e7e62b7bd446e9ae64f996f90aabe30588ba2","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'b65c22b469b836c19d0612d9ec686841f305d159a526828904e72a23b136eff6'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d018fa55c00c15683eb604a3ab41a6c5a8885ccac602cf6d4ef8143350a84766'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"d915979e907d0e3ecbeba340f1b101b7ffc4e405b2bd0dfa8f9e05ba2b435197","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'aea71ecf210634e0fa4e329277f6f35d58be44b0f8ae21d5146322d703cce0d4'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60993ba447732a3941ce6350344d8acea8a6a6a41cb02b7380aa2a63ecd4f0ed'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"ffd448b2d26b502cfdce4993e138c97570c12a5d3177ed239f9d8fd6e351001d","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'45b675f9966fc688eb5166b5f5fdbf4eb1f48fbc38c9215aa2e25d5b4651f691'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b478df1fdac43f989e70ed7ef934f94587c01cf5081932fa4ae7496fe99f0ac9'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"c4bfbb69b370749cf0a8b4db0dfa7c7e42d5725e2703fa2af10719a68ad7929d","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'b7e19ba9875b420b3961ae80529a3a903027d7e4d0e80712e3e8bcc1d86e00b8'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c58c31dedf3b36e566a0aa95d7220a556ed4767786c33648c2ae777e0ecd52'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"da2a0711e5c9ce28d0bc3233ceac471f05ddec4868a22067cf445da85023a560","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'e7b2d6b21375bf1df5a68d41e32be5d63f101745a44b5f95535278d0891c4ca2'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b554c6adb80757f7464f5a2ccd9313b2e43828d772e43d6c8195130a4d4997a'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"be998a477e2c699fa2ae476dc2ad14c5fac406b079ba0d3fa9b4cf86bf1057a8","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'4d34d4703c7cbe95f065da0e2636c641af99de40c0ebcd58e2dcb6c6e737d29b'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9754924e7f01a37e6ad4c7247af4a8894eb8ba9c2f59ee679d965508798fbd'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"e4b33dec6d15c550018f2da467ccce01dc131f511d9c9d48134ba5680111b25d","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'a27d5e0c1c56a089610505b6594cf7771324f74c950a5784ff491f8fe06d123a'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a47378182cc033d3e8af459ad83ed9ca3572706808ff3d9956dbb516ed0aeb2'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"690d7d9894640707d0b9aeb8dc44ccc8bea278540b08b8efdecb3361a930cef3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'3e1c7446c622f61d59c238f327a9e01617dbaacb16e310d55ad53cea03b10122'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08a238de5702b183fc695e6f9be13bf6b7a9a0014779b02b03ecd29f7f368638'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"9234dc019efb9e76a470a1a81f366fe50c717180db02833adde01988c7744664","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'7df5db6e5d277f915f5a779208f69de033944563da10927c0ac249260489178a'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c2cd6e0e274f5474e9cdf09564ddb3cd44b6a59a1a2b72aaf2039980f199ac2'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"20bd517d26d8dd7ad4c48e4c810401dd8d7cad2107c7b8f4c7c365798e0ba64c","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'3b2be43a38836641bf2b47c02ba9c3847a0eec46f87fc8ccf13b047f06ed76f7'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ce78f7e956eddb1b5bdf23c6867c9068e5e0165bae02a2f6bdc1e72e4d506e'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"54c97e6758a3be745940a921a191fe92f4541fff891f0f1d24de83f64effbbe2","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'addfb57d50709661a689a33e9818da670809cc176147ff19e5a6394cc750ff17'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7037cb7ba1a55199df5caec2b8d288e3ce9168447c00a665d581c8f8337231ba'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"88da22bd93dc07aa806e08fd318535a2d885557d1f7dc237e0155dee261c5481","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'247006b50d9bdc98b3d80759d4c31a46356ef2cd3f15b3fb9f4379238c775742'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'467bf5b6bec3e941d31f25102a0beb161c5c5a5054cf43de72062f0906dd56fb'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"4e7cb344248cd354b92d6fd30cf422315425b564e5a5cac1e8654c284fb5cf84","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'774605698501e13c9b619b6b0ab45d4d9edbcd8b1b03dac6dce3646d194f931f'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4f687c495e019625ac8b512c98a0584869d63000f4a06eceae1739796ea407f'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"1b43a5905655272cd1e6b60cb003813db850755211228bc59f67dc1898a3552e","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'f8a4ce8646fdf43a2e0db91209282eac1fad600cf50c99d5cfdb3464ed53dfe7'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'304302a7e3222d6840054bee1598edb9b88cfe8296d63bb4b9660262efd3858b'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"5b73cc6b375268c7ca8ab6983ff7a462dc2cfca431cf5750500b080bdc9a1359","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'04b66e6ea02a045ab86ccfa58412ff30079b0ffdf216c5b0940823e9696b18be'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f620a865f7f9508d3924815e157abb0a613ef68d52294dc199cf4eee7cb2d45'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"9ea965540ae05d3425a378751b9f62e0696c1ec76663cbee7a0251e458c1bdec","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'dac2b4314c3b4e9d9230dfab569f04d521e68799a4b0e2ddc6779af7233856ee'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'271323f1969a85a5eea94b6fa37a52d15808e951450b96b66464a35252e43466'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"796e5f4ab3a05f7cf6503843a3dc43b1377cb09e0c0d0329d9b879e7586923ea","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'f0532cfe193da1d6fb648f54007e1ff16aa1c49fb5bd68412be0a5fea55947df'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b302fd3f8f7e96553395401c37035581ae6d417a36a7da09c78940d31a8b50b'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"bc9c9397964db903765dbae8d403c837ed20b89295a422d4529e52dfc08cadb1","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'7b36da9d8af8a48dc920970925b7806e1f03071d51ce059c4b2fb5b9f298d5ce'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de73bfc88f3713e884709349d760b54debcf7b397d74937f82c92bb3f4b2734d'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"1d6580be2470885e3fe5a10d0c669b9bdfc2d5c1d999dd72b61cb6ad242a41b1","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'b4b9857e602c278073eb3ab15683454a45b07c5d7c6fb039f29436c352e9003f'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f92b520a5e1a273bc75270b782a9fa0fd88a33b07cc3215f2032a049be98f6'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"b884ee838579a62f8f5d34cdf6a114436997a7cb24b184375ac8f1486193e0fe","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'822549aa462e3606cabd4f19a53f310b1c7c962f256204ed849e504ebc04e7d8'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dfab8d50b13425a4c6f42827bde13c99d799f03316ac7ea553c2fec3fd4106d'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"b068d4a5353df9e7107b81ef430e107db016db6b1d4a577eabf97860e8414056","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'7cffd256dd87ac4c980b321807fc6e0b4b0fc0e853033efe6bb782de8b3f1416'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbe9dfeea1460b11c0f2c8037bc9d92f2a98ad34fa81762f5fa33dee68394d1c'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"e517cd43b2578b2b0812075921dc22799a1c91b3bd6f69b18b4636f411417482","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'7e3d7cd5f0789c4668a4ec447c53050c0955b6dc14b99814d69db16c8782088b'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f72eb1907288a620cb4813994b61cbdb1ca5a5129f0ad46aa504885f38c0d4d'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"13f341bc9a59978e6aac529039f7e154b468a8f81c0517382982ff7917971718","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'5e35ceae2da9dd76ed4fa47c3edd850ccf6a8982b72f0203dc7c24ab44feb8c0'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f541c9d9367d06a678b0a86990bdbfdb12a6ecfe2cc43cfbc2dc80e35001e60e'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"54e5ec9a8b96c1f8e78e84ec8789d5b97f2557408fdf823f401ce661c3620091","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'f2d439026119f1e01da9d28e2851feda077f1aca6b41b923c4565e3a04697782'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bff0d72fa908dea66e178001f6cc8e104d178adf8510217a22032ad349d667'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"a806fb7c7c826e640f2772751b54b9f5c6a912d3c4afcb463c1a044c6dd3a26a","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'0fe630329cf5bb35596189225661e0f85b55fcafa56f3c12d91de112a70f7547'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac75cc8ee15fdc9a0957b67fe2c3998bacc5b5b733abac2fb496424d85b522be'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"8cb80d8204f2cbcae7e302a93ec917a6930df0d5d6eb242a2513b90f0cc38815","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'954e881629034c50b1df1d9bb1483b8c77113c7136e8073c2ae3663baf3efd50'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902cbf43dc8f38da2718765d47f9d9c5f3cf3dd6d810e873090446f78c7c2a51'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ec4758d22659a3802284c07d39ae9664be018f4ad14fab4f62179262d23a067b","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'5568f051efeb11356a2b24943eb50d75b58e4d0b94666feddfb5d6a96c8f670a'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f54f356c9ea7c6cdc618703ac0c82c4772baa0a3a6be5520395d33386d035770'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"a0187b1e463d1559befdbee95e104c3153890f5f0b6ba8ed389eaee1b521793f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'4387f4e6750bcf459b669d4bd56e6922012707ff4f40849959e3e0303e91f19a'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c08bd2fb69af33524040944d4c788269e55a3a716d2f0d5dcf24be0b6fe69662'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"9b442a49bdf1d3bcb5f1426fb43e8a1e0e4939377dc74ba8877ede72c19550ab","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'cd7c68c38eed26500c02ea4a57a394089073c19cee26498e9f651e96e2802c67'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb0f2ca9b3c0bd4a46c7a0360b0b587c90e213ee49731697171bfb9ae3435b'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"405b50a39a351823d4130671692b81786ebbdb251a510d7cddd6b0c831f42208","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'94b80b93719fa0925fcb3cc0a47147e5b1c2519dac78ea780592a635fb6a7964'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6057787d06d59017908d50a2490a7f9d9110434523522540ddc8f3799dc225'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"b445eb1f51c060df05a1b8986598168f6fed29854fab9a987ee869227332f032","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'3728bfeddfdd5ee26b1e6c6edf4e44348f883558bab3a0c5064161db6d5c98e7'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eaec92b3afa955720c6801e72753388f56b39e4d6c5278e4bfd5103eefd597d'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"5abeca4e2ee4dc5286b66f9e94cda0a23b3e7708f00f424bf333cdaf9ba11174","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ef39eac787ad4f90821debf52f0149386f7f45467b14b373b925229c0238894f'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50ee23f599ed54df0ad8df77b7eb1b7efeca705e4b042fb1f5b13c1493fff42b'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"9e6ab02a1f926dce5597a8578242b779824dca37e142ddeb242503b134283c0f","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'aa4b6dbec60de52af91a68f1bc625b8c29d152d76a0d298ed3967d6520ae64ee'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d4a65130976d55a64e1237a7065fb9faad2b997479730314089ed42f6f781d9'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"1a2016034a91e2cae6df28d2fa15c3db73d5cc75ea20129fed97141fe3f4cade","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'e8c0ea2f82881d47a3e0be6d106d09e0d7349e282fcda9005368a9e91e8e588f'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dac79398f3417a1a94bdedaccbfa3b62082cd651c2cc106275f3e068a625a5a5'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"79d5d8bd5008138565ad2793004c46169a36747bd84a958a05fff538a910b208","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'8a36538554608924193b935c04b945f8f7cb844e8ef3eca07fd28cdf83970d3a'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b998b91ed48567e70d59bfe05682f9c4dc25f04d2a64ce21dc0a562bcc459b'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"b8fc01d6672ca66da189f1975187ef6485ea72590112c26817d5b8a775a2cca2","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'bcc438b7e7682ed14879b4b466e74f7251b4726825d89e187cc267e30fba35ff'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f9eb6d9e5f235d146978832f3a964321b3462cecf653755d586869e5a66976c'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"05efda7e749730f86992a0d78955ba7940d026ede3596000583db0b7468f8e71","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'ed638e12930e66e75f82626af9cd01ac437e6b7b384d8403286f789c376ab91e'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59c5956a375a77d5029120b0f0ead8ae45980d0cf6d3e0eff26cb0def904804c'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"44d2e56403a551e2715b65fff42329ec648504cc163c31a7bf7bdbf4d0080781","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'f8d3c8ba4357d9a9ddac75df7121b6132af45b1fa1a9998f2764f1baab2bc3fa'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b31cbdf4a99f978911504788d29508e302eadc73a70ea66068c17545fdf0c45'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"7ad9a1794106f07d772bb03c5d3ce730d463f05066bf24e61c5e89cdc0d50b14","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'39d33454a805cc9f4153933d2b7f294390be6deef137c48b638be5608ec7e3ba'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef65752aca822f4891e2216869402fb87c29fd4602d78eefcc462675363a4924'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"78fe6d11f90bf860457809b742eeca79d40391ee182ba001bda744bfcf2779d1","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'81cda12d401d3af3e9f71982aaf657244f0f37cb5071022cf89767d25f42ce03'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ecb5a9edf06ce66b66ea58f1d7b38ec95fbb59c75a9eae0c649aa6c64ea873'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"4bc95ec6b0446aecb57c72a6af03dcbb0fd69334c0c18afb933af44fd665f05d","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'39abe67e0c3e552ddae542cc7c0caa5057ff02100c885fc2b575eadffeeb035c'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4c25f86d7c29b72b459ea478826b38ab79bc2d60e8f7b666ef1707fd7c36af7'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"2fea132c8ce4ff89aeca67b82e80b7a834c9ee6b1f08e43c2b86a9376a30e576","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'6c7f2dc41d45d2f1684e6ea425b433c30db7406bf84260b92921551a0c363455'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5448a23df9e3bc5ab60a141b1e428d4fd6c2d4a142fa24acd91dddd92a1981a0'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"671b0aa4c95036209bcaf908ad4665bb768cf3971ed24b2d638e670fda5fed81","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'e67137669c0f64a707a547416631a931726bb7d8914194b53132995a364855b9'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db5dd760d6230e12476f2d510d40bbe2d869f512155781a93450a1c141a743d8'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"fb3d856a3daf31d0b1cd57f1a037d342eb050f7197ef7b27d72e50950f5a257f","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'430e37c1bc60be1d8bbeec2c39b343e0b20a1942da6a1aa7673c4efbe0535f63'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0262a442b8e64a961255eba095b168757b9764dbce35abfc86185bc68bac1036'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"534c3873553b0a3a69df179f25f35a75e0b5147338b3e247cbb7c4138a44f86d","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'a7c1501de9dbd8c5c6ecb0973ddfc0f98fa4a4b0bf05f0b4ad7bcd217ff29ed0'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c64ed2a8ce4468bdcfde6498e5768eabe59b3bba06c18776174773a13479f69'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"2ebb3324656801227e2b9c157215ae7971865e5041ecff8b9af589e9f077e427","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'43fa94d12450a644884216d0c6aa4614e3d213c5181b24e43095b75901bc94de'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d390f3295a4c047a7d340c5b778db94edab6c1005cdc06b9bce90cc4c017619'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"b3cc3378d4a27361516a65a9a9e3007acecd77dbf12f94da67c3657d164b0480","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'f3228ff82661cdc8b064252d9e5fe099db33dea6b7fa92994f20610fa9439c8e'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88fcdc9f2058683e5aa6edf1a193e8b42bcdbe4576d26f6bc21b908e9d8104a0'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"d0c7a53eb7a7416afbbfc98114803e004926d5be5132f0da803507104535941b","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'43bb3c28cdcadcb3d9194732ef1939814659c20ddc3db3025c3c573404967298'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5884c7446b44cdbda7d6104d462df0a2c1b0115e9814b9cfd89f2454dd8ffde'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"fbb03c79245eb5f42fd3203a8e6492fd86bf017a93e5e63e11b2726e544a5bf5","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'3e7873db616de7d17f15c778b3fe1f7bd13cd65b5885bef8c187031d8cc6e150'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed6bd6147c541b0ca4fa805f83cb5717e5d0a454227d228cb6e16785bb6b924b'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"27af152d62ae36f34a4e8a2b4a17ffba965515325d7f33fa39ec22f893726ef3","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'79904ec3b0190d78f62de79da4ca02aa53692ca9149f2d35a74c152a32826be4'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed4f45b3efc1bd07cf7752b24a0496619a94223d9c94cb46ec8ee3cf598c552d'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"d5d86c748e3d82fef381c19ec2c4fe8d72460b7c4066f16a4d813e9159718fb0","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'f6aa17ced4c7845f305b5a19cc9e01c6544fa64abf81dd9af99aa2697d375663'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9f36968ed9c168d0fe1d1395284cdf4f9d842318ddd6c4b88c7e2c4469c9e1'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"090a291112e73a1f0d72b6af2c44f3696a72065f2010b3e24d0d6c49182e3f11","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'cf4cf6870abcfb30360dd5920f2aeb2738db479d1e6685ae7cd3c27d4fc65eec'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8843b487f1874e5b6853248b282304a558c19b85ab3a88fbb50d97032b604c7c'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"33f15d167619c1e21e2edf74a4cbe64caa6bf008058c0e028af2a6e534f271b5","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'60186361d91482cbc3fb702cd90fb4868f0e38e5b64aa141cb24ff33c876b3db'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ddede69803555f21b93019e7511d97e7360628a81546828c7dde778c6c56d2'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"df78262b032d66f00f72e4042ac322dceae750e093e3397f880b22bd1dfaa49c","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'c11bbf34bdfc266bed3458c7a1c784a54828fb4c61b4c1a7740485c213e3b004'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827af5b7e241322b58da42a94447ecf5714b759c782287a891420b79724934aa'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2931b4054384418a5ca3c9f82ec69168265af0e8734d6d7058ca4b71e624550d'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'5b593e8ff1b41488b1bf0bf134d7e61fe70869275b6410d5ed6644fafa746d47'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'69102e3517c6446bb75acf1b15c7f972f80ec185d20af346519c3f1a3521e0bd'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"45fe219af9628b808d6611b9cf917547575ac2e38e2d1c0b7e9237a5332cce66","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'cb2e73f498311b890e712da878a11339d661a802fe8270d92ef4cec8e6266d45'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581ebde8ff6c95455553a79144951d14af6f2d0d3d807b1a6ecf2fd2a861e4c0'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"807f106cc7ac4916b804f3c09b9ad52fff423db53a8825d88025d33545fc5a1c","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'bfdd43e6adc40cb42a374902b7b82bc527e1e19a52ad2cc15255c0c3f01c0eaa'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e01b19b758f3365c653938c4c168bb47e799be047e34210d63d53a053953459'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"802df09f28d080f44ab4bb99d2f2cc37696c07e66cc316713bd2eeaa26e0dbcd","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'9b8b3861f4fcf247f94e9d58683bd1a9841dfa5fb1f1aea8051db97c71433131'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1c2899287621ee9e9ed2951f3a1e3a3dde2089315a91f88c7bf6c45c3817a1d'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"5ae77a1d4fd9f5a239fd1c8891d21aa0356e23e81dcd62b1de4116e8de3883a1","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ab7b5981dca361bc1a05fd791e57a448e7ba157ffd8ade477153c736dea9e9e8'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15b15e9ea49dbb10973e29e6306417e11572ce7a71b448bda1be5d9164fd813'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"e700d668c55f5194b1277d6476e3852172e94405840055f6097a8846055880d8","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'1e76d50da4f3c3af92ee2c4431cd1ca3e355fe206782af71e7bc68d2106bf1e2'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'278b14619e367d83431630b2b847521985e2b299a4bbfb847db5f266bd854fcd'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"9857d589e63f686ac41161b05fbb7a31a8d5c4c24a3a3b1964efa09bd23ebf43","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'dfaa7cffc15335ece72bdcda098d11908ae952014420fee4502a2d2a16d5c2c2'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'565a6f43063e5dddeb8df8145f071a7bf56b5788b4654a599bef289e9443b568'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"0dd29f7667cf2ef784556babbf5ac51fc097b30a3db0dbb477c3f9eccabe4800","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'40b0d5762e839c19bf02681d430c78bd040978ec66332a2d4e6eb9c99a0254ad'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1be2fe2e9134309fef23015117a02dde93770a72648653a5f0cc54097fd495a1'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"7a500253ff74f75de1eb4db579ec5bc605a419e22120de249f67a03c418e45d3","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'fb54e59fe6f5303dd00abe390e2905582dc8edb49c4b0a9f0535f2674c839151'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fab2732727fd7e0d21e8105f79fb301f87bc17dad45fa3d360c6bbfca3c8015'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"c8020d1326be2cff964a688e510c583e8d6be6bb7610d1b0436e58b6cbb0df8f","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'098b7d2a40bed49bb96bbf77f62f718530f8eba500a62da04775b7ed265ca880'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ace331b534d3dc4c53fc96d04d0532316fa9d8bd22cb4edbd91fb192956afebe'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"bc72553164f4f437e37916d626e5e80b99b9cc9923a2fb055f8e61a5852489bc","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'f18f4fe3fdf26130c1a3310844c987e0a0a4d07c3b216539856529ed1f897170'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb6ef5cd9b913d38a325c98adc084a1a3040e8c281f87deeaffea5e041c17f11'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"6d9148bc146f7745469343693b19f51c01ec8c3ffeb18c7056ce9f9095106f5b","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'3a878ad933740ef6ab0d030276d885d48a008150c6850a2bf7e4632560db1d82'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2452af9ad93f85c0de56c8686fcc7cd71647b35c90de5ccba387110b3c4144c'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"ead1d699309892f0be07145de15f64e136564e259b04c1f27e221644f156ab8f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'bc5af6d042662deb63decdeef41214131cc4e3b74fd5ddc6c8705068dddc6162'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2ef3a17f5d35105132e819918b6ca23d964e249be25c00b3e7853e5ad9b5158'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"e7a7f24b37fd3960b3c58f75a1513003ba3841d13a46f0ef52493baa9bd05030","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'2fda99cf36961256fb885ad58b3d3b412cf7535e88e4195193f5ec11ee4d163c'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05ec3c81f9cb8c066f9c8d6dc4215ac052be44e4e5dc1066833e04852ba661b8'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"1c9c8443355f954b7e4737831e6cca8d126786938fb3dc9baa3d28c426b8d6b3","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'a920493b6fc5b9bd3587458900dfc8097f10f9a487639bff7955990490794ddb'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'791e17c29ad2e4e2434b7316e3be5cfbd7cc56ab13ffac6e71ba9d869b7c4b89'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"ec034849f6df6242067a5d68994dacd7f07df13d88d28d4dc7c94a1743b31359","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'bab109fe4a6270b93d5c963d494b618a39330733d19d18ad5039932059714937'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52190a838ea1e3862f3b18ff7447913f006eb2eff649103820ba33c7707d327a'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"b8fde5a5291c68bb0dc906c8efb5d2132e5c306bfa2f895d47643c80341e8b63","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'f7eda9b9fe2cac4634a64a8fdd0d1120f13469aa6234327b06bd16e5e3175f06'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c44f12205b76a7b3e3360d4cf0d44c5892e7771e7d0325ac87de86d13370ee9f'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"a929ef5234c96facdaec500a5c2157f60ee54a777c0140439ed1eb6f45df84dd","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'51dc775d4cf07a36dfda608fb9e7ca1b0551d02bf92595635d98047386ce2829'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c819e6144ad8a19f6b72dd58ca66ccd044d1a48e922edce634d4d83f6285a9f'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"cda95f03849ee4b3850aa436347cde87b7be5a889edcb24c7a8e2ca6c8667c33","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'94e6c6c73b3e102372351375487d955849985cdbb9272de804be5995905cffe9'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b7819e3e0d3cb7f8143d64948f89449c6c41492751bafdde1f85d8b7dc11353'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"8698ddfae15d46001cdc23de28930f3c7b145c4cc89728783cbcc50924774d0c","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'cc2e6bbbccfc920b7d0f940031955781413cef4b6d62b3c32ea613b6ab4c340a'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aaf2287e92bb8be6aa2e54eed5cfd8f78366a431b865caa936172a781903985'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"2153eba5126fcefc8218478f5debcf391c9a594905873bbad5e9ebe20f70a847","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'f07ae4bb4d31da3c7820fcfbdb719322a84b7b8d9820785a3c39baa60595739a'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ecab5eb88e299f9127c089d2f55ab9f249841ca52bfa4b5856e926d789c0c6f'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"f5532d2455e763ed1f7e6b03f2701eb5b449329869de378f39f8caff27f1cf0a","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'27786a93c9351524ed56d9c13bb27aae4c077fa65d90a1f9a16c7e2587a3eb84'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6315ab016a88bb86bf566da39e9d30b644199eb601e61ed5019558dff2d7b611'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"c3fe991a48c597d78a4360737068e20f543f33270424d6d6bc17ed81d6e1d9bd","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'de82f0481773558b8b26cbf873d2a9add9279339d52f1c1eec6963338dcff7cd'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da436c188602fa82184c31f9e6c5164735907d2e7198b8d03c726314094986ad'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b06cb6e0bae9d8510f2856aa312dd1eccb701f56909bb2a326d762b4dbd8243c","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'fa2e2d5c62563ca5686701804130e1b8f132a2dc75f9ba5977225c14caf4d63a'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bedd9136cce4bf37ee2369adc0c612c2563bc0741b86af4dca6915c0a1a2877'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"db76b1dbd503717dc36373aac620787022f160c8f6bcef619efd17e4406ee73c","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'ea8d976c3532ad39789889e243e0a7f13986e6cb2ea9b9c5207b56de38ba9114'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2866cf08694c62479003ad453723e76de59e2a411d9a2c946a02b4258c43f6e'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"88224931b37b559011c8ec945e47a8f28422d3b473ceef8d80b634d370f37210","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'1041121ec2ae9119e6b3ad57b25b535e86471c9d9493a1d1384831d1fe64125c'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ea6b8131294db5a3b80d81c1caaf0497e6216e327ee5daa913939a68532d3f2'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"cb36cd72da601457cc8d6147b1911566c9567e94a9329537be1e9ddcd36c0bce","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'bff491e94f6e743d3dcaff1db94c61338b54a9c71ad7050fb3e8a319dfeba479'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'414e039090c44ad88c93fcde6d09ac03e7c00eb60c3acdc0ffad3c9fef2c8afb'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"31f0d7292d378d2f5e014904ea36d13a680a17ccda7a7dfe2c643fdc29e8a6a0","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'c4b084e28580e939209c6f996c8af9fc38a4cc8393f7bcfea94d4c089a39c6a1'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05f8da7e78ec94aa4a1a92ee8cc3c89414ce468437ddfc19909ffab16a1b805d'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"c66460e5257f6ad70f513e143837f8b91837d850d946bf7780a105e2a13ee240","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'99e8a9ee25e1e15e9e3d58b544218920ba026abeb0cecb52689fee24529240fa'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe573e21ad235dc377ca14a8606eda840dc93d96cf0ffb3d428a14a211b0269'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"3fa0b46437968fbbb13f876bc1f5efcf92f5e1646ee6245542248eea0d51052b","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'2490bf60cd59cc4aae6c57383043ca8a75e9f209468f19a295e5c55f38178388'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'475aa88fd87a572aeb24ff7c75afc780219b6197caa651d165aeec497c925f01'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"c6dea033fa56ee92cbd0ceb883899e3310ddf4ef83a4732d1691aa37f1cd2c92","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'320e4059eb5f1a55e0e623ca3316dbab0ec7f2c75a8d280274e8940f32baa890'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cf545d5cd3c57895df6f813994bd92ab4a8a03bca9c812abcd65f64564d7f03'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"ed0228a83f23b6c612b3e6050965d1d65916008773ba3770e61f437b53ac8aba","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'e4ff9fd1589211d84caac8aaed16f00503d5f4bb8015152b057406d8fc843fc1'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f036e71eb81cb5bf354a09d5bca4a610f468bce4485a8785ea4e3e1e1025c9a'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"a426c08201271ab7bae42106da6048a580dcfb65d2f43650e687460a03808ef6","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'c50dd3a41058aa46ce3ed76c715465cbd4a38df9d87b9afaac4f8b2c9fe5bddd'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b10e2cd348ac2c786ab5f7c56a2e32ebfd2b74da5220de87aa9718f4d76c078'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"ede0783e701302e7b0a2a6b07d46fb3cf306d6454826774dbe35ebb5de8c69df","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'38d40eb8d957b9ad695f9280ccb8c2b321936b175c523030c91207a489308491'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33556132d7affe14e38d23290ead215b4dc10c00f7da902803528afc9caa315'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"8a51f9c2a5c2e954f98b167aad27ac672bc18cf356ec5f24dd247c5b50542c42","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'9a884a851a466739382ee4daf9a26e556559fa6ad9500ecaf98a8d2352edc599'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e495543160221cda3d2cca9ac13cd92f05d1082d1db415eb22ee228455203337'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"612ef4de699a411271b3ee714cb1141bc214a39b8d043f19676b8e9ed55dbac7","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'ed8d19d5d0c36c375e90180c369ac2bfc690eee08165ae28bd30cc2d46cc6b3e'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb25a973339f0a34d188e9335cc43f02eb781a55fe1867bab7d6f39f775eefc2'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"8fc8cb2599156d6545b860ff0ba79d52adc6cabb2b74a1f8706070e86c17dbd8","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'c1dcc1651b576eca1d1064966b84730d30abc2a226ba744328b0ed71d61adfc2'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfcf54abb9355373e3d602dcf9025c5d01ee285d5c986ca8d47b2d56c6e4717c'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"de93530bc522d833c6f60692ed09ce61536f9cf1fc8c1bd306b3ee58acb433f9","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'a82504524c1418b4e560b5857fdd80c4f7f6e8f8c8868363f7f834f3d04d146c'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91b9ea5b97395be36ce30515c31e2c7c3f5b8ee48527e34a2ceab2dc7aad29e6'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"b1787a08463b70f0747e3623281b0ebc5eade9cf762106b9cd356df942405313","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'8f1bfdfdddb492d0177f907e14b59779fbf4d85d91ff0a3b2a5a661327de8940'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a58d199b69f414b9d2e24db40568eb71009caa94a2e24c23659b4825caaaaaa'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"e55cc2e788e49eba75588afff52ff6b6db5216b715f481ef6b236147faaa7cc4","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'added51eb8fd9dc71baa31d9b7fbc38624abdc6aa028b40abfe9a37f63112484'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0618386c8abfffa341b12c7f0d910e34497689cd511cf3b66fd43fa7cd23e24'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"489735c2190957fbe8f92e2148a45bebc9fbe630b5837c95c5a9466a7b7f7fe3","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'e922e558d3deed9e7703a1011312d4370f76e253fefbb4ab727c9757611bf03d'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8665d6d16992fbe006daf72ed778b98bbc619564ffed941b71eb8d9866a34b52'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"598a53ad239c463109ee6ec3a97a132b1d9da8d3c2389feef401e3ba4c62ba81","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'ca3c58de0e576935093a6ba1a83dec088a7018ca76744fa4e9c3dd7164a8b63d'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ae163e836c45102a8d1975a52dde108b4e6791e6a3cb392b4b5838891f40e81'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"6da5444d266b351608216ffa1d8b8ccc53958edea93345f3ad538ad3ec7837a4","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'eea612cb79959b31c2d7d69728769d4431f8bbd7000c6459c046542609faf57f'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06f8515a97b11e37ae3de76417376080b368dae8b1282f7e8a6294e379c1d112'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"4027bff162aead2ac4391e82e1918d3436b41a0247eeac45f4a7c71cddeccc2e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'46d79ac00a816a45d5c01ec1fddf1bd0b16cb9cb3be0ed542b33ba4f73e36443'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bf9f7f2ce7afd5318e40a42a891913f3ac6f5d3ca0ccc4760bfac9a1a55b9e'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"c41fc72cae37296e8498dce754d73b528ff387a72303f18750f6dd5c539e31ab","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'8bc1696bd81a8c90b5003262b87c48ffe37c8bebdfac288c96240aa79882bfeb'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e12df4512a7f7bfb8639a047818548d380786d957276060a24abc9fcf1841ad'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"7b7bc6c37608071c5d12b59216607f53b06e9edb324ce6e4816db69f9e694092","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'93fd129a5f98a4ccab3895bdce598b00d1c87bfb6c953f7e2aca010d3ca83c47'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a2269a73715c8191693cc617745e0e8407784f81deb8e92f8a93fa3cff0c95e'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"59f51ce1f13b979bdc1469a90907878368d1578bf395a4708e5a131900d32cb1","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'084df8ae85a1149afc55763b8eb4d3da4c0c602ff3b227cdc0be44b0fd234532'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eb8269a44e2a64eb9b0c2c70ef341a026441e58f6aa3f2f7a7543183b9dc47'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"1f5e583643b179629ef6252b867229f956df76f4ed99aa739a0efee12f9897db","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'8c51710bfbd3184f078a92b49ae93865031b69a0ae4d5f53c24ac805d1189948'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8c447e5fd6e943158b248a5cd5cadefeb9f1d8c99542eaa6b423ea7931e4649'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"04ee522a5b8b840bb352ddfdeb23dda1f15801591cb57d5ebb5dcecabff84193","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'69825f71d7cfe749f1efbb3642026b239aa430f87e3f0f511a265c1e6bfd67f4'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767fc9d838ed8d94690cbd5a8f00c8694fc458ca8fb9e33ae7fffa01a53cb10a'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"ee1509fb415af69823e4eeced1f556d60f1bde4bfa6ca519c4ee59870292faeb","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'fd1b7d5c7860e9da6949fc15b31ae607e06935dadd57bc8366031f1082c089c4'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e173e1f75d5051a6192543c5aa93314e45501ac85b2ae010b213a5bb07b03569'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"10e3b89b94b6c25447cbb47d4d0fb6e089a2bec47201870bb9412c477b966a15","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'e310745a30c072b0dddbcca60c66d8814e765ee229f62cdb9f4857cac2a9125f'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4306f8de37c15efcf2a2c3772a78073c3b3a83ac7d146f39bdc125e2722c516f'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"1ec832d2c7ee85614b28ba9c0bbad597168f6c4da6181877878fa70dcbf90519","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'6a32f727d5b3cf499019c1871f72b831e0c12dde62b5615070c4169f5f3fc38d'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58e56f17247dd303c3522246f8511bf0fd9ff60546531cbbbf024f79910d2ac1'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"27412fe149243857e1298d21ee1d31a2389f1c4a63c8c1d0af341210337cae58","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'6948c42faab91e49eaf65dbd1e13d263c588e95a2979d9cb59b6615387c3ea30'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbdf6d1931325f25179c5149a02c8d7f25841ad266a4f69d9adf0279e5841b72'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"869957d39177a8d895657f2b91c0ed667648ed52c817985c3e5402eb3e411857","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'7f179e72b8159c5e791dac0a2c796e91dba1c6684ccb1dc93f6976362d591307'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc6cd72eb0bb48df17983affc573d131d5ae623123c6959857c65ef7f58c0d7'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"f7b9514ffbee4c59eb3420c047044d8eac00b42f69eb7e4e6d2133c43c91fff2","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'328165fdedebc08f01641d99288821727f05b9f1c49df9016b1751311d0fe025'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76e4f402b612a9915b3af8da888656393eff58e0590b38cefb1da08442dc6c38'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"e428e0eebbd7953bd59c7c5c784a2f7ec281ae8a7a1e0f478d98d14b8b0400ac","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'720c06295347fa6f1e9812e74de26251c64ea9a24efcfaf8803fce6d70780bd5'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db3fe3a51c7402db8b5a6ac56392edc43b20efe56e160ddffaf48ff9122b208'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"53d35fc115fa6d4b7e344aa276fe48c8a5edd39fd9e781c2f0e6982bffd80dfd","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'69e80c113702a562befe175de8202f01b9a4e34328754bdcce454886bf7cf9a1'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0dc749bb5a31399c215ea09fe40a9c735390a60e249bb773648ab9b73cd1939'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"b65d0552f3740caa9a95e4642e849d6bab8738729102a35157568ddc75f997f2","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'1ce691fa3321d69a327bc38eef2955d1614c4ceb529c70ab71b486a93638d19a'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'925090f3ecf4d1f353c65bf01ea060679f1a69d1f6f92fd656ea918a9a893428'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"d2a7daabe282848089de4be202c431848b5c2cdfff8917a6c0d5c6c21299a7f3","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'5d96ff7d1cad796c0e1a14400b92991da2087485198b6f180d2d3f4d42f8ba6a'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23098ea7a01a452c21dcb9fcb45248dabcb99c41b2f66ae825b71e6f513d3b12'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"d7fa839c2156f7735a2744b9ad4dadf4b0d8d8a00a3215f4047c06cbc9ed6b93","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'ac3ead686942a044ece838b7a3cfbbf57185e06fe24ae7c6cbedbcc3d9cb95d7'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'202e10e8ec25c3c417965a32cf7ee87abd18fb0a59696d9014863e23c6ed10c2'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"df341bc0ec3b87476bfb5aa1dbe4caedf67f6f556089a203dd23b42908b19e62","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'c5824a12f17a8f64ef3018b4256747f6cfdb21cf63116c56c8d3f95106977f46'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b413bf99e96e3c2320fc80634e8e93a3b34055286f5781a765867606db44204'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"58730ca95274ec53f71843de0dd5491aec95558a6d4127a9e330f3b93fe61ed5","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'5b3e80579eb6bf8aa23d57a23d481d03c1564c5b64d8c5317fd04d762d8fb5cd'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ca9d44b4a2a250e7ec9eb55929987450303dea19a08d41f6a6665036802fc91'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"4d7c2448d33fd13e3a73baf0fbe5a1d092fdee214ad628f95e176c9c8e2c4d0c","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'f932a8c2fad8f7d63cbeacfedf225fc062c179ca1757c34a5ff24c5fbf92ed12'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fa160e02333e4a6793295b519fa0a57d331a914dd549ab4dccbaafd219f7e93'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"c62253bf3529edcaff382c08e46f3ecb5ac57b26889aff7c21660d8ffa0e984b","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'1a991bd0acf6628080e36033c3deadff92b78ce634256b6c24c411b6c6264f55'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01f4dc720796abc38f7eaa4122e0d64bc715831e91d8d394c5e81500021076e8'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ff9a59fe751964f56fc22c6642aff069a50e7e168a1fbf61185f632a525a9d73","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'9da23a71e1ad453ce197956580941d6527b3b6c9f354e4d64f87ad358ea37e5f'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bca09f23797c6d333eed8a5e32b3566fabffeabe27ab0576ee097d1eb0433e7'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"1829b040949e5b6f7cb1892f0da69b1ca88f1cf53462d19f4621e06fe7a9ac36","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'9b655b83c35f7064396d199fc66bf18894d43dc755eb0bb9547c103944622491'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'defd0ce420e04c8c7675bb48c96a39f72aeea16b6b05e53f3a9a7ec79fbbb598'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"18bcd6edabc3111c96ba3de4dee510638293b450714d6e971553ca76fd2cce05","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'7d9fb25be4b080d3b4dca29067a60e6eca2f151e10661ce2ad232a37e599fdf0'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7b4490e4ff8ed552764a32a1249b06acde4a7c1a8c3244d52200c8d2576a751'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"eef1d47a52bcb4212efbf0c2e4143b1b606ea9e133d752c8f4bd1c0c8cb4c0e8","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'3ea6298523bf40ca4e809db6c9924c4382bc5c96657acdea2bd7f7393b5f7661'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'646f7ee404bb85ac41d03190f646ee30176a88839d9fc113674b867386046106'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"6356c8fa2276f1bfc9efaa4d52027ed8262ba9bb9dfcb7d0758c597bdce3a00b","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'3e7bcd726fcc0e687c4d0bb0f05fda53aa27a0d2a76df1444947525aa512565c'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ea056ce7506fc1481ac98091c06586f60c8dc2e54dcaf95c3e24a76110a28a'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"140e1996647289e73ec19e48c06944e30577f5fcba381f2ab9a71d72a8279878","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1f220adc92922e003829b820b32bed973a10626885532b9a8650fbe869a96cf8'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8ab7bce34311dcc08db2f9c547930272e9505ff6756df3fd26cfbb7fa8ec6c7'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"1148e856a4ade8cd2780c3f59d04addd12a8339822f8a1e0974fb173cefb2183","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'01c876992343d53d98c47d894e3cbac9a01cdc479a0e4f7b2e0c8c69f4bf2239'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325043d8bed45b7f821a7b5cee6643443eaade1c8088808674496210cca2d289'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"13fa6d77966a1b11ebc0764449c610b55fe88583389a140967f401d2af54b8b1","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'7cf657899324a95a34f6c7cea647ffd80ac0e482f38ef2ac05489a231bdba326'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f38a7161972b5caa3b80fdbeec750f7e137138e1cafac646450ecc0dcd248bf1'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"ad934c0767ddd2c853e0ad14bcb6fc4820290b0babe39e2e6bfad30f9273f3ce","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'f71c22275747b2364ae23b33e3d7e498bef6753a01db9f15edfaeed13d50c9e4'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3dc8e49fd42f4c0944e452af6400f58b2671525bfb4cc9720da29f90a1a4531'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"4cacfc4612e4f8282903bd21a1458b808574cbc94588dc89037b0ab08e035a6a","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'96c0c029e9f1de1c8b9971c0fdaaf385ad40be5a47addff2b36bf3a2ea2a8587'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12d39f9091673aa19ee15c4662ccefd670ca5dbf3f78ae5412c23889c3948969'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"0ef62401fb8ecf3d7c48e998da55051a8dabf2a92c639d9e4d6047f7016c2078","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'666b458eab116b5a5303f7644192d0c0a87df00fa79c88aab07e53f8be6641ad'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378e41cf1faadb95bfdaae8b4d97c0e608624dbfa8693de309aa22cdf7085c22'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"6466577acc51c69819d6082c1a7afcb57a26180a2fd24841cfffc1959309a28f","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'685d3c74f494916b35482d4d4ce0f4e852697df5f503e376ff792dd9dd7d28bb'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ff35ac98bc8acb9435d6748536c9a97a576280901f12d282db4744f6803136'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"40ed04e228d4418f92dcd7823a54bcd5b5a559a20cda3103fae115a36eca12d4","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'241f8714545723f6cd7f4aa1c9652659374b3cfa9cf6e8b5ddc9b2186f71f42f'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b7e67c45c8454064a54a93fa45d156564bc620b90e3922ebec98dba8023b2e0'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"698c6db863813745c5454943b3408cbd20805adce4daea9ba33741840db56762","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'6820775a025fb8877c5f8504b77d5b6623ead50bb27431b46ed0905cc40b40b3'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba36662cdbf1871720dc8e2006f71a79d80deb97de8b575cf919dddddef7689'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"9e555bf432cfa8f1a297e2a111edb3c01ce9b92b133ed28e376354b1cbde5968","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'f0d5b7a4c803bebb88e06d39579110998c6bd9535b24c2420af656acf7611617'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c88f6dc3fdcdcdcd332ecffaa660e83a4f4d59d93b2bbdf8e2355da9d7a85d3'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"df46b7f472d18bde99c530be8dfae9f312af417a1b33df84bea6f925acd05080","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'d207dd6a919e806c3802e8420fc191cee5440c5dff13fb63503742dff7443876'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c2ffd09eecd3f1c8ab69cf5c60e9c005037737d878d43550721a4fb18614888'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"15ce4ecc3a951286371b16f9c9d7810114c73a217cbb908f2d633ac88d9d538b","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'30232a7a6a6429c6b09947db723d895085d5609b036e23f73c7eb21f32858f9f'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffb694cb597bfe326fdcda96f5a3e6ebab422425474fb80b0efbf9d3951b135f'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"a2f7f9ffec1216eac1516f3bcd3745555ae9c12cea1d3f08ff1c8dc955357feb","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'c2b3bc966a79bb95482101e2cddaec148e6dbb35acbbdac9ccd2e69ece7d6789'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca4ed96788fb23a1456e516ae1ccf9fb5138150de70023d582ce0bbc78ae1a62'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"e46822ed60cf9835970eb02cd1a7e9e4ec03c157722044a39bdb1fcab27e72f8","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'9b9d3cf40d9b15f7f8f55f736585d4b794260916e2689b5ac59fd03b8c020b24'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'301fd9e366125308ef036b1adf9caa28a167a76479a5d3069bcd36d1491080f6'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"71d686e5e025bd2e852b35dfed5bdc742972f7c16a58257d3cfb8200c06e3bfa","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'08f337e98fa0dee551794f7c8d09c099dbc8cf989ddc30e5d1c6fa743cc0fd0b'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3cbaac8de96a93d234e7a2fe3374d405d5852164cbea0f8ccb69b60c16d56'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"b3f7668015472979aeb5ac632c99ec4bddb9622e2b348f18c343dea75862e99f","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'0b9ebf0b6a59a2f4fd4f9d32002ad4b485541678f8dba4f37221f5f7a1f209ee'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d611aae459d30c5f96840c5825ba9f839eb80443eda98050fa823b4678dcb8c'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"fed1e812bee23befb04541f97e40ddb3183f1030b83a925b62baa6c3d1853c59","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'60f7b8f725d224407806ac0e4142e423c80b382fa8c302caf80a54dd325faeec'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78ba734913700dc80fc9dde2e7bdaad08abc25135b55872620b64fbdab2f3fe9'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"0044fb705254db1f9542da9e76897829e1957779d992c737a803468175a623d0","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'baef278cd7149b5c748c95a7f9684409ac679dc5e578d5292afb409f62cf3c39'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445b56c59487fea539806193968072d59438df29ef86897c212c5e1ec5df313e'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"eb963e9e04019b647a05ce6555d6344514aa06f47202598d1fd29ead7350967e","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'8c27ef1ece128390020be5b4e13f3a0dd4c44597b92aabc537a9eca5a1d5b7e6'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39141e628fb4af5c8eb325209c6f3aa2e0dfde3961c29bb7ed28caae4044c463'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"582e627be998208d890fc900a47a7dbcbba76b735e04e630c3f70b6947c77451","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'15535663e1fbec159638620d41d5404b248255947cd95c89669ab5de4a4d5c44'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f49b9236fcb0e08c71e803b97be0c4ac170268827b4cd8091dfe1ef498fc52e7'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"a7d3e8f68909f9ffcee4ff8d0e4a82cd522532e1460b045cff2f1056ecdef7c7","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7f1547283270cc1a2d0fbf64ffaaa2abc925b310b054eb4b51efb690a7284395'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598feebdbc3f26ee3a8474db6bd2c8f268ef129ecdd6aa84912551d129829477'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"3ce6b8735a5bcafb2bdd030620f7fdeaec9914d9b8fca961094356061ee5260c","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'fa04a6599defd1c02541e2deba2941bfced29b5b601ef0bbacfe5cefef2eee28'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b314f17c2e9b9ea308a1689c22f3d2e2567da0d6025929f1a66a73de78e26fa0'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"4b672fea9ede7094ef95d1219b9f01d3467eb6a0c8dfd6d753f274f427c2345a","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'9d8cf1be2b9f65289a9a74ededb274157339af3fc0007e7d0c559987042bfe33'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51674b783f56db50a5155a47b393f1d32bbe2246fe409aacf61e0defc9d73f1c'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"7672a5608e84e2805bc8933f57493ced2f19b6b1110e8726989a3d850b554dc7","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'d8633db49cc1247a4f9d8f0d283ca6cea3dfaa04f7deeb64605c4a5b8051f7c9'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47baabccde92227de34e782d373194798a6ce903f4a2add963e24f0f3d97e063'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"3f81234ab1bcaa94f938a419f788f76ec8d590fdaa4f44f29a9bcc56514f4282","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'24d5adef723cc42f4ce733c7bbb5a7ae20e236539e68f6826f850dbeb9404860'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ddd7de4c7e7d78dcaced8dc18b8e65c728913dd21389dcbdf301c93b8d616b9'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"7a9bbc721173f885fad8a195a1624f7f859f1fd21fc44a520948010b46dc59d1","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'34342cf0c64a7167739080ba5972b80f26c78ad175d79d80a497f3ecb313f257'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7994a0417cb15ff5cbf2469490304fdb85cb8d3ce3f6d8ddd023f5a459815cb4'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"ba55930644b10744ffbce44ee2fa15ca559cc08d0c43742bbd73eeae850f15d4","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'bbf140a01fd938e333c30e3ce51debe23829bdf856e08d9d8be02861e824b2f6'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4828050c1e512b60aaadc818915fca9c987899a702fee04b4d0565e57f33545'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"dd4eb48d922fcb2e7d038d672e2bee27557ad403ab36e0544ccee860f7fb9f06","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'f9520e0b19fe54c58646ff200de7490b684b1aa797b1ef7e560fb0817c71e2e2'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fcdebf0f17e73287ac1bf43dd8c8058938e2a6b0601d1556baad161c3409c03'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"533ebd5305a1a00d47f4bb3cd21b9922599e0fec6443adc2819f0c7b4f99d91a","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'4d6e5db932f881e27fc043a3c6b5e0878a26323de98499880e8481f3f8bf5e92'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd72ca9a6b54a312c551fb5c619c2b294375a74282a92a7777e77e2314246e38'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"6ad96cbb3ace1c300c40b06d5bf480b6c48856466e959e7e62dbfab06aa5477b","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'6d7aaf2691d99896d68a9bd473ef7e569707cd3eb72d8125d85fd9232163eede'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ad3eacc4e09d0134b15d73aba2dddc73bb04f9bd5f483a1aedfd075ea0977e6'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"cafce9abe2e64c97b7cefaf0758d2dee96a195c741c31b529d7b35aa64c0ef5d","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'cebb1c13bba334e4fa3e7b46b8b244bfa085596b00da5052e3b1386c5339ccea'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f207118757de44b755a201c784f9ce67f5bfd7dd85ed4ab2f7c755611491ffa'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"c2644148c76a8e4a92e0674e036e2c69ea614a773b77dcabc25d454d4c27dd59","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'4466dbb2b1239f0b12f177ce960ecb6e59367e8341e8f79c1863533f799364cc'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6239001e93a0ece18eb36967fece87182aa1e151ed8795e5624772acb21db821'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"45d11eac76e2eaef8d4a6b9bad67536d72db76fbf6a652828e34f480d17f027e","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'224d124a1e4cde953fb64a98c85046293ebb50c5101ee6c04d48fffe36c58cc4'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3846a636a3bda4a67d08021c7a37f87206a6cf95926269c669489a5d28ebb5a'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"47dc86f4ab5b310f5d7b09aae5e9cfbac90c0f0951099838676afa1f49ae927a","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'9156d67c6396d92ab72ef44eeb1012f912ff4f0ffb5720f66f298b036f93e8be'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9711932f7b661eb06233c68d18e37c86b4f1bd6c3ef0ce27904e43e779ae778'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"3d28220400473c578eea8ef62521db70d86d2d5ee2ca5c743575f9ffe1361734","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'8caa4ae6b38d2f813db6a2ce308e71446d0a39f0259bf66edbf9ba34077a3bf1'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7658ac4c71186c13f73ffdde6aad9c63d516fdd82103b8e05bce7cdb58fac85c'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"da273b6bf6649d8fc38281e3965196fc0a1b6c1ebe72fc3bddaf76d490c88e88","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'db313fcd80cdf3c4f950d567f1ccfbc4a0bc355c12e7494b29478e7c7c441120'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cd19edf3fcb5e307290f34045b595c08901f04c06f9adb63ca905c5887560d3'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"433495aa85f6622e3c4f7c546418df30f3e52e3778b7febd6765a9fe537cdb0b","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'cc85b89268a045ceec9a420c056693d3b2f5cd2c7d51a71d09d20f3340ad1c27'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b31bd06e95b1822210563156772a6fae0e1ce5e507676d7bb22c6d628989090'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"9201d5c641cdddc19d5921b45f13fecacf96677f75b9d23084da001f2ecb52a1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'d6c97e644bac7b35b339f0b04e9edcb7bec96459c3bf82e9658d717e486f27e5'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87e12f786c6727372dc17199f37415c8c22bda932848cef2054b5658cd73f10d'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"a26a579cc9f06851e8247bb95998d5fd5833770c5acfddfa0f5f1105081e8343","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'061960607c6f18637f59a4beb5f5ea7b2a26678a6420266ea9fcbf15a3b040de'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce5bbd516cd2bcbb3bf6f4d68d1357dc65e8bc67423ed64263dbd9bbdae7d7ba'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"fd6c47877becac7d5d35eecd98aa2bbf121be99d4808a944d4af1df7452704fc","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'c2f96a0e8efca6863e05080fb5477a3325edb2cfe157dc8d284e785cf7e8117c'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d3e436e33a5ad723197e9a2cb75eb31e3afae6a3254dad6ba66c2e53f99f44'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"6d5321aaf517dc3c3a44abf6b1c316a5f5862563ca09776dc858346df54657a4","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'e8f548cb0e4b11a42c008b5fb3e1e67f7bde8d4f9745c6580b04b70d253de66e'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fd1d89f6d0978e2cdb88b1d2db58da08c47ed13a6fd4269bafd8ac866df0f34'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"ca2f33a558cc343ac306d53de1a448612549da0ff4bc09c4d5e3169d1857f578","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'58cf73cca5feaf2263a6db81816f5aca003237172126f0f5a944ead78bfb5544'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bf55e570076200296ce4b6aae7d790d428663a0f272587bf654a941fd9f0c44'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"d7993ff44510adb26285d51da7fef2d23cd72e989ee5c171a38dcf4634b10297","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'2c7c48a21cfa651ef08414132a4e7c9e8be66f21a35568264d2ddccd421b4b00'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e91e759c10a28f25719f1bef1d76aaa58aef4ae2d77994bf5229f6acde4f4780'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"e5b03e0afe7a9cdaeb4c14f83e179b396c2535f78b8c4c247fbaabc6ebfd0a40","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'1ec18704d455190f043b7c1719c2cf5c1ec69c85c5e291fd679735647e3bd7af'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32cf241fc8cd836b8d8bc1b0261282df1d5d29da7401c98cae6aab8fcd81e8a4'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"03cf5a01c933cf5a0cd9c8aee1d2361afab6e5d58cfb55908489d7d97d04fb43","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'700592de9180e98236c7f643b20d91dd360a129abf5dccbde4e9713bd8aa0932'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4c070da5412ac230509343fac2d4c65a19128fdb6d7131d1ad34dc513e6ec10'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"270532b89496cd74a4ab268ef002dd1f99c9891eb7141cfc3420bc3347b8aca5","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'f7da841f4e745f9e740eba9ce341c7c853026858844dee55543aacb03e2d13e4'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386a96d6a08c90b8104c91e77f62699e506c437aed2530b89544cae0371f7010'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5079468722ccfde0f3dcb4a6abf6fec96f149c1f7582341ae986af1581851a63","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'1a5868a6f80ba9950ad291d0705bb6ab933c603335ed6adb81ff57692dcf69fe'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e741ade8b9c6c627d37be9ec57166660fc484029fde19e1b3e846060255c80'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'9ea84cde1c958baeda4bb00845dd86f37f9526d118ec201e8e3503e28e36839a'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'e568436d741dca9bb01f63b71ebee92561c328ecc792087f718ab1833d20f273'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e346ab4fbeef4af6e0fb414b4b3cb6e725fe557786f0c76edc320e96bdfac91b'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','0d61ead9f6f5037f035b3a12eb85ebc36668cf6e3d8aa475ac15f49253169fdf'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e779a71198c4db10385f578eabb3268b1272b1ccb0f2e6561e68c215f10ec000'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','8c336012367e08dcbaf4d2f30fe65d86b880352bc3e0d741b0a23a6451286b9d'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'5c27371da8d8e128183af90c3b2b69f180a3943becfa19818dc1ece29175ec22'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc30887d62b3e5c4bf3ad2b302c1b741d1ddbd6ebca817fb598939e7d7db4f6e'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'bbcee5dbe0ba6f067acbd54a30b67ecce294e37c618031284896be5e54497b2f'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','7498e3b9b57713023a48ce928bf6b15fdf572e75eb8647a5587c677fcbecf53b'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','3ff860d717820224852fe2bd470f085062dd9a94a6d333eda8fbaf1c0502181e'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','e21f8194fd6107fac5a633f878462f4ba8f705b6c5615d65232fde27dc9bd1ce'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','c35521c94bc0168370e08adefaa497e883b104ddb952187f59ed7bc58e7b746a'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'788b0ee4b7b9d2583337fed8a00f194799e4a74bf9c590951ca6135271fbbdfb'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30b41bc6d7ca96ed586dd3928cf2e9d8bde83016391f5b9eafe8a5648e7ab62b'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'84c90085c9d545b88f66ebfb3e58c256d722fc8271ac00620489311f0d140a2c'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','aeab1ae877e14d7192421d2f0c4c2eef18cd7fb2539197776cd74d342db53329'); +INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0f31d291582232e230be79dbd0171d99e7141f4c810f303c9bd2f60066b79aa8'); +INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0baf9dd2c3e8289d08fa38a034d2de588266957cc5772519adabc76dcfa8222b'); +INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'ca6f3d75b375e844895d85737d9f0285dd06736cd4761c2f47099ff0c6b923aa'); +INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab1ebff0b08db009fa7577720821c2817e0dd8b7693a309aea2ac9c4e39171f'); +INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'bbde1a346ce21fa2d5f3ca3a761c68b62ae938af0f8c9267aa267952dd471389'); +INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','ea662f1fad289dc920ff16261eaa7ab2c97334dc7782b46a1fa11e5230ae6bac'); +INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','fc8b3b08702f726889a32188982286643ead219a82ae851296660dcf9dc0f431'); +INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','2cfabd4ad7f38de43a7159d319df2c939fe5e51719410a1752ed5e666ba2d7bd'); +INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'794107603e582efa04f3bb7355bf23fd23808de48b436b95c19683f2f7a47e00'); +INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f6cbdb5ba126f33684fe397561300b0b58e03c6b334cf847b1066e422afedc'); +INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'39de1e16910d9ffc1d5dfd353f94b13436658f32dc894b69ee53d2f17494c4b8'); +INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','f55704cfc55133b23eeb721254bc4780eec3557f828dcdf082cc65006ee9c94b'); +INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','d3d5f9ba975cb392aafed578df2b458d2c4bb30b0a1fc12ceaa78cf5da9af557'); +INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'b1feae4c1bf7d56ef29731c9c708d30f8dfb45ad3769245a7eafca99a1cdb5e5'); +INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c8b8d3164663c23c9184fd566a11ece3783f126fd57b1a6909e29964338cbbd'); +INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'52929b833155c012ad3654694e2802a9bbf8ea744269006fd3de014dde5e752e'); +INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','13a736d355d427ae1ff311ffcbb7e1522cbb3d5b3f62fc45b77e82e5aca1304f'); +INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','77759c9ad4c731beb81ef9f54301407219c49c8b91c07d80fe11c23b453f9cab'); +INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','eeefc8dc97a031d62677810717974c12fd12a2b381efcb8d0a2c11f03fdc71ae'); +INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','e2105538776629201d9ea29d9c4704b9693a918df4ded276f722b49084be3a06'); +INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'d07370a170926072d6540065cfcc9541cd276b3a52bab747329cca67ba3223b2'); +INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23c2019f9fab23c19025889a50c34e68ea31dce366bcb08c6672cd993fb841dc'); +INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'b5b0c17991db53d142b0de1798f357f691146d8399fe708f1619fe77bc470bff'); +INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','21a4036efb63510cc77620ce57528cb9807509080d5605aac281b274842fdb1d'); +INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','f3742564a5e22a383a9ad4ea5f826b9deb446a54bba7f43f1c97ee0e894d86ac'); +INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','53a488de9f8a17c91c12c7bfc0ac019a6c2203a6ec6c27ad92f5667485e9393f'); +INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','2b0102e07ee2c35c2a69a48987e7c4c740af38013a67167ceaf862e47fad1f74'); +INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'ab0e7f4e1b60d73709cc709b6a65fdc5c2b4c97e5e7dc2d432b1c669b4c8a8fe'); +INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1415550ee0e00cb38f6afae73d0612f99830b209f5cfbb16a358f9691de7f0dd'); +INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'f36e8129f5999e3307dfeefbd46d40343435a2ea90c85ce620dd25b409970c68'); +INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','cf3770393644c8898da573bbbbd5c3ef33725a69d8fcc790b62660bc1c03b784'); +INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','19822c6c2c9efd20219336ada6b366524e7b6301d19b5aa9958de9661433d61d'); +INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','fc332d3d2d6b225b2843d4e65291800a1265abe6fff55f17816aff187b69c348'); +INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','10de4999556a31a7c115ce8d1416fb63dffed740920b2abb741f618081873c5f'); +INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'5e581ad87a6ed82653e9b62f44ceb318a3ecc36c26837d79fe73e5d26d30d890'); +INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39546673ceab955e8cb2444191e9acfec389c943559705f78c2e5a6ed9235b4'); +INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'25fb63b5b4d60a7874f2f3fcd2ca6481cb044d5f3ea547d6a9c7dbc2ee0b9ad0'); +INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','16f1880f51e0c78869c00e6cf521519626cbfc8126c8fba1f778319abe9412aa'); +INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','ad9be938c6fa3767f627f08f1ba15ab325ca10fc575cda7f577b59118821b268'); +INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','838d3682ec71b13129a424f5d72d601bd605a89880b96ac7bc601879be0e4322'); +INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','174ece8514fa69a0f4eb6a6815c97fe28e5d6067a0ffdca4eebd730b39504a0f'); +INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'bcae308dea2e4c5a95175b030665c14f71837e788550a8882108c3a465dc34b4'); +INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'903d485875ff95d6d1d3e2b345cffc055cd5da4fbba5710f88eda2e4f9f31fb8'); +INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'09327f73589be2c0a79e5e9f5fabe63e645902295669933a34bee8a8aa9f3eff'); +INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','35c653a08edd22ae96de1acce6f8b2e57d01854d3747259681bd3df7adec621d'); +INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','411d0df4bb704c60f5e086e3c9042941b559b766982f71ef8ddeac906caca26a'); +INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','2047ecf5dba08f541dbf5c01abf763646d35703a461f475431f05555391e4b5f'); +INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','14892209d114b93fe7c3c19ef2edc947b71fc109ac5001a2c0fcb6959eee8df3'); +INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','81b270ff43063922eb6c9f7b040cd1bd8c0337c6bf3d74f4db992477e1207e5b'); +INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'7f319e5b69ff85f258f69a6ecdcdabd01d805507fd2941794e47feaa926fb716'); +INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48270feee536c8028dd9bbeab8eed83c2ed9deb47a2973db1a19c0e097e308c2'); +INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'381d9f5a7e412850a58264eee4ddc7c450597c4087160da6e6c7d5c805d53fdc'); +INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','66f68ac5163eeea5c70647f45c57708728672b53850feffc934839316f71498e'); +INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','bf853aef472ce2ac079d2995ffdda733e9b93dc35c2c6f15d8e56728319380bc'); +INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'c62a71daaf7247e45a0017d2023250037551358ebb1b262e0e4c1e407db9a907'); +INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b6a3eb6f2044997c01649643cb0505166eb44fe0414917ed60d2b947eeb9c3'); +INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'fc520a70f9593e5598bd39d33f1f8e5a07593509d73b5691072cd0b7316164d1'); +INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','3b3eb5457f4c7708c1b6d4f1a662d948129bbcac6a008c4efffb242549ce075a'); +INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','e507784fa08c088a607afa05d8c634a951591c8bb4c3661565af2380245e51db'); +INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'df09864d7bc1603c14db2d0118d11b135b3ef57dbf00aece490f1a66b6f63a11'); +INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'085ae744048017ff5604f5df80b31492e40c2ea15120ebc37e8b9a19c03da1d7'); +INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'37404e473ad508d08f3ac0df32adeca07149455a676d8f6415d9c7b7e6082b23'); +INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','7bbd2e4a1be627b418209e1107163eeb04a9f567ad8885a881f8f8738324973a'); +INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','a677d8b47ae37ddaf66058ccfb038d9eca01ac3b291470a0d1463aae9a38cde3'); +INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','807048baea88ef11f693232bbcd8628166e1b02896a1714f22ba2d5ea5f4a8c7'); +INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'4c0c4967f7d4baa4e125fc010f444e2832f7f607dfb420f609fcb7debdfc3bbe'); +INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66cae2ad72897e37d7ed5ab7ae1aabb5b6efc0564af68b20282bfa42abb99e7f'); +INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'45d992c3142ba2d5180d63708db693e804149ed4f8b57aa43bfa4a29533ac294'); +INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0565c38c7a3c8d56b71e7e12f5615085c709c6b9f7df56926728f5ac22b7ec0e'); +INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','94a3f0e66b199ff0b516af7dbd8e58cff5b1970e07eb12e81043715e12a31ac8'); +INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4e9c313b0951fceecc6d2a1996ce9826b7b283e7e098f03de956a6bf8edfbbb8'); +INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4dbc8c9a4e1fa046ab5f52167d5f8da704394b4d67e0f51187707395889f3f9c'); +INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','2d5ab3fe0473bce1563ccc75e22cf858642598c12163d227bde8229bed605822'); +INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','d0f4b9237a4e8f4cf1c1bcfe43067caa868ea11902a0e9ceaa70d750e56b92bf'); +INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','e1a9f17ac6cdf73b5c199f81825e3cedf247f89cfd75dd865b00c0fe3f2b15ac'); +INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','fb75210f8e8b7366fbc90be3458063658691852e9b7d00242590ec700f28d1ea'); +INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'c27b4af41012ddde47dd6a0858d0ac4ef033525372e968ed99fd88c0e05c4b4c'); +INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1000c49830c56a4c9b5722153907c8f32dbe63db60cbce758367d299aacdee0'); +INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'36caea7893ba863d7993673cc602c2a1229b7ede35a192935924c8bdd800d84f'); +INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9eaf497111c52b9ee116f2aa09b27c08847c5940b1e4fde8c2c7a6c001eaabe'); +INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'849c7f0e62e87f17b73b4ec552854fe7f94b867a1359b7abfe1a4eceff4aae43'); +INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4841734cd02ff5ca765f2aef75436371929df9bae21837873ae595e58f3e5af3'); +INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'0e484a3676e1e2b9618fbd6e673183f7ccdebeec47d436bdc2bbc8242af16660'); +INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a9e27f2607338d2232b2a94b5804de9b9e57641fc3f83b77ff365a11dd5fd6e'); +INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'7206b36633ba205a2dcae010d5153b73b32ed9b9079b1f0cd51905acd88fb5c2'); +INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc59f06fbc0b858f102661bdf80560b150f9d83ce64dba92519fcd659a1ce71'); +INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'a70b7e6ecbbfc3d4465532de5c2d45a232f9d1a6af7662fa898a4c96ae678bb9'); +INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a965e48b0ec09164c6f32ae8102bd87459308443bc91096ef21c92c9b3f1703b'); +INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'84dca6fd6e1885b5b0563d9ca0a86f26c44c14bc60e9a436f6aa231fe8c488e0'); +INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d85aff8a2f60a5ea0482be20b760cfcec9695cb7aab66f5d42a11b5fb87b74cc'); +INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'bbd7f3126c49f53ef8716ba16ef42d2b53412faf47543cdab441789a59152c37'); +INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1f8433f56668f8e997e1c89f4d97847ea8d0881b7500cf0a61930eff23ac88d'); +INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'cd13d66f5be846f79e83b9986751c832d5a2f153c9b93ad5324280592205c215'); +INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12fa4c0f3d5c7e631e2492dda31e2022b935acd15d835e7f02a3c1d2b9a8664'); +INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'d99b76f4e3ab727b19e5031a0a920a72d06c23cb6dd59d4a85553bf6dac39c46'); +INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e3fc64bcd798d0ece378a85c534ad26b00078c11c952819efcc5c72498efda4'); +INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'7137c1d6b79c82b57d2d5940025d25248a5fab44ac3f380687e0d35e46c2faee'); +INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fe99d2f6c9f780c656a169fdfff77972b1d7f2fbf87e4c5b6237fd2ce3023f7'); +INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'296b8c62c0f1707832fe0d10df75d10feae4c7a9726dc05ad944e756a761eb6a'); +INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bae69677402b686bb3c742caa6cfb6a1c17a49065edde8630f7be16cef11cf9'); +INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'3dd27a508c73b2a6a11e2b38d74f9da5928b6816ce622ae6c8dfd25ce654355b'); +INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5887016ca25b304216bcbc3cf885bb85c6be4f7ffe4675788eb91fbeb37b933'); +INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'c6bb67adfdd2374a7a72422a8bef60ed3291c9db6591217a54be704e86d7cdcf'); +INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d86b2bb6d620afb5cd2f972a0fd5eb58d2dce63ee75f7845a1adbcdcea4d0ee'); +INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'4ca7063a3981109476c1b8553724e376a8514fd84ab1f2ec3e9fe3cee90c0d39'); +INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40af5cf4479c3bb7304823ebeb4ecec3552e5e86fe4ddfcf41c39477c02bacdd'); +INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'7f90575af3cf09675853b84425653428f9f001535de467d9a446144fe01b3fe8'); +INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'981b6b3e5aa312535c687486d6d5b94e10d82d427a145c61d3e5bf784fc578b4'); +INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'49f50558df793ddb13bb3648d1c3343a1d92f1218f97775686f8fe544c312179'); +INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15ffbbe275fe1e72bbfa5212d874d4090f7f307146fecbd8161233e935cdba5'); +INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'359583eb964b07ea19ce4fcec7e2b4cb5c9b36736d12b07b2aeddc6fca8eed7b'); +INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2c001acbe50118ad0d412c4a01dca54690df860584dcc8aff2a0a19dad803a6'); +INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'0f479f616435a3a84558ae92fac0209feadac1ee5764154a786950dbd4ae26b9'); +INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d6681583df4b32f9eab33a6ca50e743be4027364b333d8af4b31f4419d0d4c'); +INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'5d6f1c795d453f450d290340f1b2c987d27c1e23366e4b8e9464bafe0217ec98'); +INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20474c93bdb9d471e15f5c67eef54df716f6213859b313720e765ed5758931c5'); +INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'4f1982c1ef9dbd6a5ee800f4bc544aa4c54fcfcc162ee8427621ce364b2a7b8f'); +INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e47266787ab75e2e7827451248d43c493e01b4ee541c2aaa06ae9a9fbb4f01'); +INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'65e45bdb60f7d914bbf86179d713a22bf9ef1c4996356234f653579f437a5539'); +INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52259f668e251b5e0bd33a5c5af04e2b4ee584d8e158655b9c4cf25eaac3d779'); +INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'0bd862eabe9b55c63e81aba1321b88246dcf4f85b35ce96faf437cbe6bf5c537'); +INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f60e63b1e915185790fcd0ac219902623d5f261162529950fdfe279f2e6f975'); +INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'81409fbeb48abd8081b7d54d66c440edd8cdf0724d96c6a78505731530497cd2'); +INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d98f8f2a8252ed0fd7a3ac19efdb9ffbd180afb16d28759a8c4d4ddccaf773'); +INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'09e1f178c6b57a78ab2c7b482a1393d3c95ae20eaae3d863cc9a582ef47f505e'); +INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b46ef2e4e5fa8be790470fef84602cab68528168218657575af71fb6dd88042b'); +INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'8e3e7f737fbba921d9107e2297c3370d9381d4f1a2d4cbe4a7d1e2bb1c04d54a'); +INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b380d8c3526f6423a05da82f691100422b50ee0236031bba9de380551dbb15b8'); +INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'48c504e25e2e54b092b1756cfdf955a723630352aaa3646946e51f706e77ed20'); +INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81410fc80e3a1aa2f9e10d7956869a0c918fb25c45bc2c65a7a800689529f774'); +INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'0d6a291794529fba6ae502d2ac95dddd9b700944beff971b4bc26a304eb5bcf3'); +INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae27194fceb3f4e7a9406a4507a5dca3fba6792782932814892cd84c8980682c'); +INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'d245b6a0f732edc22c4b146f52ac6aeda1ce1d7a81b71c2ba666395bccfc6867'); +INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8381c4b3bb472a763aa0adb44fc243ebfdb42808c62d870e380699a9a1608642'); +INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'71539d2f4aab4b2d1f05455b9b35de5d4b0d28e8aebf4f521ba4f0d72a9a336d'); +INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c57cd896284d0406ed37b0370ba9e2a93529b597a5f0dbf38f5a822ec3238d8'); +INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'8eb860043d3123b3803a935dfed78713c0adcdc0c1fb22c2d151bbcefef9d916'); +INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbfe04ade1d316e9e68520c02943699873ce4ae0a10d53ae838137c2dbc146e'); +INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'595100cbfc377fd31034201c2a5b8aee275c2bd25b51066b0702790e7beb346a'); +INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f910c8a8663d9f5acc39f18df4221f6b7a5c89f6b7b42a11b66cb49917d48d8f'); +INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'9dc557db6411ca43156d7eaf024f3ca26f7aa8f5c9f8891b4d0cc3de80b56c06'); +INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9379c2be6c3a85f49eed04d52c5ffb7683e53d6fbf2c82e14b92ce1480d4073'); +INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'7722385f3c6f9293789ad3644b457da51b581d578c9da9b6d8415a02610d6117'); +INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0904fae16291fd65f6cac082a1c0fdf39a7e054bb479ad388ea40ed2f7222f3'); +INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'09d4977466a8fde33cff7c71b08c0849a6f84356fc41cf983a8f57b56c31b3d4'); +INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66e3d408d9956be6e9af9068281bf70b77b7e96caa4d1a306d62cdcb4790b7b5'); +INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'62322fbfdd42166df9d24a615989c93b5ba5997da848e0d68853bb322941cf63'); +INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f130d08dadaac0373dfaf3519d73b73767260457c6c411b6f0522b324c5de23f'); +INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'e4f8d5c62b9611e8ae9439c2755185ed72d8caae4d0b8dbb351c971457fa115a'); +INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbdb2d78133f993c8c0dbdc7e6bae3d3b3914fb1cf929cbbaf74748510b87d6'); +INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'56b38c4d19ee44a84d657f706a63263be9f109d0950298c85adedf7e50671acb'); +INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb89657ef77add312ee7c61b725f9992dd900379e722659edc3b3e833981501'); +INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'2ad63ee548cbe138cfb0beee8ff0583ff1fc192597a30a7bf422cea7dddeb6b9'); +INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f2ed1e9de80531823e856d258a2f8239b7f556d3d1f9671540f421ee34b636a'); +INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'e64fa833c979be7c8f2bf2d610ea2ce43526b126c02d5d12e89a830a79563c41'); +INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aa2881516a432b0191650706f291cef2ba16dd5fabbd9098f8fda96390f1f32'); +INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'afe190cac7afbda4fe9f8b5aab7aa8a632920dc42cbcff763a876c0462b82a29'); +INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f90c3d869a58329efa7dceda5dba504bd32faffcbbec96d63bca63109fe705e'); +INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'ab67cb20be1b3e5f2410ce81613a87b722a6a4990a17965dbff4517e67acdf74'); +INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f397cc02462b6050af96bb03b1b69d2de30b2e42d46f35266579e9a9b44ca04e'); +INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'3b25d57df8a6f04fdd380fd45981a04c0d004723e1d438293a588a2b59cfcad5'); +INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05539c17ece6d3f692d93a3dee4f18ce2893e08916750c1ab9933a6bca5468ab'); +INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'72ae90d0e55fd96235e67a3167ed132198fde41ecb2aa5a5648fbe4031e135d4'); +INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ebe2916ab50075e3fc0df7ef42b65e4272d2d8e773118f708ed70369a1391f'); +INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'69a0cafbdc312952a622f45b097ad964e654b38b9460f0d6e15cb6bad3e3cd4b'); +INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a928b89ce4ae3429651d7bd5369ee5da765c5b8fef0edcf1bd4c19c36b01e3ce'); +INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'cec165e7024a5d9d2836d87c41b1df966c4cdf32d205998e28bdd05286eccc11'); +INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a23c3133179363242f29207442c6fd0bd98418358b9f5d855a8acc8ac41f0f8'); +INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'202c4c9ed85630b13a0060bcb4fd017d4ce82dad9177cafd61bf91aa7d7419cf'); +INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfc73daed01eb534ede8f27a9fa8b8a0b4e6b245f85cc2affc67ce43af0d8606'); +INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'529186a187c8f2aab6c1d284ddcdf6e294c1f440c1375088cbac73bf36c4e395'); +INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e92f80fdf5af68eb57e7b5d469a68ff417850c33d292debb5c92f2f0dec6697'); +INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'efcddaae124136b4a77d8bf69d4e9b693a9f4d4bf320b6bfaecbff34a99d50ae'); +INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77357ec2983f3eef3a28887fa76b96b93f91b5a3210ae0726cf3f5176736d007'); +INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'df0a0e7b3f2652269bf2f14aaebd226c9ab24598d52301f0df2702aa994a1426'); +INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7702baa50fbad13c99eaed5fe5354ea96a675d7a4c0529d2084e45a51a081d1c'); +INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'dacae719868f094c94024e225f9c862c12956417f7acb848df5f1a393d1cbb03'); +INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ec25c9f8067d6f2816217fa2176c16f42d6e3ac0e6f7409e26e0d2e30500f4'); +INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'b6868bb65925a761fe79692c4e6af332322f38e67d53771c3f46ee934684a3a4'); +INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20575c41f3a99717a24ead4ac9370aec34fd1b089f7b1536a11d3d1beca8c730'); +INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'6c9f25611381b5f18978c0a4fc15a5a7cca102305e321620ad8931d280e1a3d0'); +INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b6b3df78e59df842273a5b338d88c3f1a55d05b9f433296c3c233dc23e38fb'); +INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'29791ae3366bae7fac2588ec5eabfbe98f70fad6d07e23707d2615f93adbeb37'); +INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d8e9f0bf9e6fcf2a4bd5389bf4418d3ecd281675a14cfbb14cf4130699c63fa'); +INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'d9c69489b8844d744e1ac05f29455d02ed99178c25384d6f818d95bc5297f9da'); +INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'359b698b13674cb2807cb4d6705194140489b7f48dee53a9a3a234070d8332d4'); +INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'58117c05d614e52dff65c9d5da2162c1e2ff4152d482421a4c72cc07474bfdf9'); +INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'660ae9a67c9fcfaf2a4a5afabfbf58c407bf473e7e6f3370d139ce3b1145780c'); +INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'2c3fc175388964be7fb6342f8534eb636444e4f22cc808bd2036066480492caa'); +INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'291e230500a12c0160da86471d6006ba432d478211300a6f6684007423991a50'); +INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'4148c7b69aa9705ade7cfad347e04512da111d2df9705b1b8eb1d9439dd7302f'); +INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8e6b31c30b5d49c72c0cd1a249436d79803aae399f2f38a395385bbf08e70d'); +INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'00070dde52423ccfb0a2b65f156e339cf5ba4de5621116438c0ea69fd9c3fa24'); +INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6197cad69c4b876e3d3496e86fdd3487a50ebc0199bb10fbc6f45dd93d61cfa'); +INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'dc5c5761523e66e33ff17e79fa228f5374969b9674f4d00c151934cdc0cd3a08'); +INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89028edb7f7dc8a3356afed6f15561699f0f373fa6a8feb66ff932fe7989e78a'); +INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'8a5c3547d434663efdeb3eaaa3ec5d7c863624425ff24f93fa4c3b8062340563'); +INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2215f5cde6fcbdb283beb6ddedb6f0689de1316de8eb4fa607305e5ec1a21242'); +INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'702727c6ba49d2053912cb98b4c860d3f844e5df9f77a422e26b3b28440ce983'); +INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07f870a3327a80809efa6278958c0073deb33f2a00b896aa8d4ad25df1dc015e'); +INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'f6b776798bf6a39a19dd7c642c1967a67c081ca832d91d7f3d13265963638e5f'); +INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7e368a23cb6236cc68714a7a94731bfb18a8e9877faf60082f0ec7da3437d6d'); +INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'ad45a35f3ca7cd77dc14f947b803bd6216340cabb2693887e28e727589dd4163'); +INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'364b20f124cad4db2b42698b1555961a95a0e13db750829da5a7461097d8eb94'); +INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'73477770792b773b73e11391e8b42cb6a9aba7476327889a2f0d96012f4f04b9'); +INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f8aa4195ef8a868c836c30d813f2619b19388406edfeaab0efcc9a1f4960f66'); +INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'65e89890a346f210de477c58092d18e5ce321d6f42b93234cdbef736ee1d20ab'); +INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0eeb158ba7a8012c787d9a84231799ad347e740de45c25a445110f0382dbb031'); +INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'f0eaa5bff3dba66243daf8e3f4760e5be2c1f5333622ad421a3b055e6b4feaba'); +INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1e241a3bafbf8f4b8e3762c95a3c89d6d4e4b366ddb4d01bdda69bfb4f6c697'); +INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'50b0b4f9dc9682f97b3fb1937c57d50cc9380e1473df99f991b76fd35eb4f6b5'); +INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a10dc3859ea15c23653d3c14364f3ca88d6127a2fac601d26ba11f553c2f21a'); +INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'ff6ab06d496200885ae621306331404d22292bca75b2d59a9832d3a154b711c8'); +INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7ee71f7537580b13d9178cf85e6b18b5ec767fde7c3314c5944e4c9e6bca2d2'); +INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'49666868904c174b8069ae8db42f47478ea7d61c6ba0c7dabc20fecdb9ae0033'); +INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dec89958bf298766ae474a9ba4f4c8e62354c22e94dd4bf23fa30ff25abf01d'); +INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'b9b45c033282817968d016f74671c3b018d04e2d24a5d3f77b1602b312bbcf9b'); +INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7a03fddb167b9e8ff0f5b66d4a84f197ae1b3e467940fd08169a8791ad94210'); +INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'10f9837dc304db44c0b67272b34d1ed7b62a44cb9d6835a87e868c2b8070069f'); +INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88e5afe9a0c779d1ac92d89bcd539ad62d47baf1f58515b43ca736fb4aad754b'); +INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'876ca8cc04d633add65fd0a09961e323b65c13931cd685e859baebc42ba148ac'); +INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8166c704f4e12092f3882e541e40c0b5986d1ebde72bcaba5144bbef4068e132'); +INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'6aea24f9c70d80acdbc54e8e7dca670489e8c3e6c10aa8d6bc1424bae18b8d95'); +INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dfc8bfc108e9a4e28272a38d1dd1966db19acab6b107e209894aaaf04129866'); +INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'74743fce296e373bdab3a853c818bb5dc8f88d12ca3acacbb1ce28e8c461a306'); +INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9fe6f20eb864a6bb75826b20341efb978b06d4aeebba20e8d7c3dbe0492af42'); +INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'a288ab21f901fb5532cf78210fbad9e2dbd68ff6f2170ee07e4c5a38ce751805'); +INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48da4516187d5153214d32d507ac814c634c4a4a750ddd45302707c5c5df734'); +INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'57e955fe62c97f03084b36cfba4e2768f893b961324733139484849d08f94400'); +INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9817a796616aa6a9a362b8a742cd18d4ccc9e94248aa33c70254e596269cb414'); +INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'b0d4f400bd71c25f26761dd27d58d5b7930658567e6e42e8a1c93bb1cf1e8afd'); +INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e4cd9164e92b8355725e690455d8703e239032c84084df6b71e1ef58991d58'); +INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'c70110eba2d2251decdd1c50461c75815dc751405622e27800501fdd770b82c0'); +INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'907842e4ccf6ab3df3ae4f2d213c4eeda42aa13911dd6de89e548bc1cc1fcdad'); +INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'996079984b3466e390d59593134abfe034b88001e8ccc9d2823c0ea27e9980cd'); +INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7490ca004542ac98e510ce44cb93ae3d3de42784608f9b136303a3f3da855a4'); +INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'4cd9d16ed067802f5cff819eddd667c29054084d79416471e5c06cd884028030'); +INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dcb2b1266a2e1fda63bf2315a2e1f5e50d2f51a6aea5de42b1839e2e3777833'); +INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'1797476f29279d131e738dd0443e98ab1befb06b55dfe520bdd9cb1b55757c5c'); +INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','7ef4293e04c229fcf8c15d3a65cdf0cbb7e9e1b5b0d6f4d9acf32783c5cbce90'); +INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','bd92db187866f48e800a2919ea98214d7e884eb48ab9edb79624c5dc9c956972'); +INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','faab4057d591da0fd3c4768a54d33f31db7461685738ac706dd78416c187841c'); +INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'755c08f8c073ee0bef05ba38377e77c06ebea116e5ecf37b47431bf9704386fd'); +INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378b5cc739d915e8f9e5dea03870e3062d6414a0095e8cfa9a439719d0c163a5'); +INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'85b33acee03db333fe95611ddda44ccb3efb32d72fc1223fd19719b8e1f57077'); +INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8366d982fa2e95e6ec3d639a5f08ccb0e3b274a37bd337688c00d16155a91701'); +INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','70a938086b0932bf79d26f5fa689bf67fc1b95387f3e69495be382ff7b9520c0'); +INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','e0bcbba28bf3009ddf0fb5e4319546bf330eea7873be97329bdf85aff992cd1f'); +INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','f745266d88d1c462a96d9efe1a84c6cb9ef1ea19d360afd21f1ab0cc572ff208'); +INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8eaeb45415744a112e870976aa49c10efaff45b81874a1b9e00a5c3677b76c1f'); +INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','928667d286cd267cd1d7d1f20d50eed5dff2f9b2bb8dae2d38a9203712f802a0'); +INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8b6180af59e1a5d67c2bf4995aa72598e6f35bf30477a159956931ebe11da85a'); +INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'f54f3b56a09a34b74055898b1e55bdc87fb23f67becdf3c8f3c6451f471f4944'); +INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b93aa38280fd68f6ac92768284a5818cc4258ef78623ea68622f4cd22b089b3f'); +INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'4209b94ff3279be5c409082354b91c30d3e16cda4d6d3a4b9f6911a63df76b12'); +INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','fc465bda3f5f7a55edbc8c76e81543abf7230e7ec0e558c8b57998766f310f59'); +INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','292703416469914579a59ce755ef4f017453a116d7100166f7be26529dd029c6'); +INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'ffb7898a1bb4dfabde83b8827b3c1b64eb50e580b6d94935c370670d892c81db'); +INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a2a05e2f9b8f36659e4487a644f69b069f226fa35c556554f75a95ba238929a'); +INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'9d9a20ae49061eb65d815ff080d56eba6c6cd02f66083212a41738f7a0bdffc5'); +INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','c99213dc7003935b5c5a1ad5a405f71574202c632ad8a3cab395600f76588786'); +INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','6d3a13571ece3daa9638a8183393bc0c51dafd5e9b6775814f53aa71966588d1'); +INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'6f46c9eb4aa28a5955f1ae194bfab2b17b264c642051395363e039fb9c4107ec'); +INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3aaca280c6f57e0607b0f9a0e658904b42a1c8b913ea6f5961c63f15cdb12acf'); +INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'1524d32918b43fc7a287c03bc164e4e1f08647e3e6b66e9debb6c484d8379bb9'); +INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','9a49ee4a72e99e8f557de52b140935694ca04ec65675752de3b001861f3b4dc6'); +INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','5fcdd2ce595da97edcf0c122a2ca10820b186adddd98bccde12e2a16142eb675'); +INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'3f8803338870d2d2472b3977fb32a2325e370435b247a84288becc09fef133d2'); +INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'debdcf0eaa10a5a828598146289413f6aa41e6f4a390520fc10e916fa0d7dace'); +INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'2135c16b8e25faf8d03014944f4a22a37245c4ef5570dbe1e2fbe1d8e92a86e2'); +INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','13bc9d8902c0d176680d5443aeb684b764694ded5efad2ec5094c8e3918178e3'); +INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','ec9372f9c1fe239136c0e8ac8c697e37a3cf398007543ef2067e26af8d47a391'); +INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'e83ecfa39dbce369c0d5669f27422531ba7883b0d7dc551e859d1bc9dcf15f9f'); +INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7db307cd3fb1acce1fa7deb7fec31c13facd7610577694f000d9c303ac83e23a'); +INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'15cbc5acb8478193ea293d893200ef1852038917f644269f0842d94c96907fdf'); +INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','901f1007e365665d46197b696f5914c57fc9f3ffb85ad72bde71539e7cd9efe6'); +INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','92fc5fa9466255b03e6ec3498efc2760d7c12461a9760fca9cec6408e03eca9e'); +INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','98e7ccc71427873d6483bcad9d4a19e826b0498040632f82596a96a55875a8ce'); +INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'86fb01e792d29a4299f4e56171d0e61991a189960bbc4f7adc0888d726d2bfac'); +INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b00625027ceef378a4920e894de40d5350cdc431feb31e9742866aac20eb500d'); +INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'68d10f0c9e0ed7192b1debc1eeb09fe8a42cff2a2b212ab199a7d56cb2b41dc3'); +INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3cb4871299bf6c401068b24f2ba51a64b562bf45a872f3b7c89ba6ddc9eb5903'); +INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3afd608d04818201da2c40add505aefa84d593f9bdd90bdfb1c65fa143d9f814'); +INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'3ce623ad399fe63886f091cd6aea29f051d43586d3c4340a0e2a68f0dbe6f353'); +INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a579bce2495c1587c0f43a4ca6c61997aaa34f3bb7a39260035420af7f30dc89'); +INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'8fc96291a6d666b09bc28384dfc6954910ef37e4101f0fdeb24e9dda8ffb4a30'); +INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','165d7691c7f3a6e5c3b556a367ae348b372e0186aafd536721c0fea2a0a65d25'); +INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','6f3a852067bcad12bf284b148d75a5da1f1e2bd4425a2a6e46b54b4b1b350e3c'); +INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','3767aaf5c1053af6c50909977e1a3056ad0428c3ea49dcaa8e24045ea39a3fdf'); +INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4905818a23aa3080f0c0055d0a422a742580865e4dd8c53ce2085c54c0a31ac0'); +INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4994524f7686072075a08239edc40c65305b602dc89c54d5c66b69dabd92689a'); +INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'c8983eeb48b9abf32aa2c52413fcb306966e98e3a39ae9dfc11c39b6bdd8dc6a'); +INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eea1544474e9cc0401ec357de123d9dd2ba8422819a9c0daefa4ed8ba5f987cf'); +INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'e25ccbaab8346c4787d384134dd0d19f4c69a890736b056e47c8396d928f59c3'); +INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','44ffb08d3e01384f316c88e67395c780adfd165cddac7ba855db970137a31fb3'); +INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','d6b755767564eb90e1eabb88471e51c744747624d3a1cf286de970556effda03'); +INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','fd4c5fa3359820ba69208178754789546aff07dd6b35aa61704ae06ef5804b69'); +INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','eb4f17f990ec32ba907fc95aa3043657f3381365d47ffc94c599a1d7bfbab844'); +INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'52369cd36f600d9a5299fc69b9c15746749a46f3394e8b7fcbb0c22b5936161b'); +INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77389ee6ebaeed790bd1aa40bd7a394c5141e8cf4de3556037ea2b76683d8ec'); +INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'71c8232391018b3911c82c739516466aca7a157dd3d23a2607b67f9eed6458a7'); +INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','c2882a4a6235a89a05b6cade2eea250b130bdb813381062b2b9ea4112b588fb8'); +INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','707660880324c28d35a43d805ad91dbfd7abcb70cd01f0a0743b639bab973f7f'); +INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'ae8925347c72ce2187508fad189adbd29fa98dadfd1ad9a7f5f50cc64e020dac'); +INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0824df62aeca851a1f0a98c8069ece41602d11891483dfe49592bf89938b6ed5'); +INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'f4f4102129ca9055eeb4eac616325c6f7f28e86c5a34e6ee57a5f9fb44635128'); +INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','f541d35806f2ef3002df9dd9d6bc02b5a1c669e9f1d7375266906b93e58a9270'); +INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','25fa47732ec33afb2b993b56fe4019f0b175efa91cf113b57bfec36f93e8d4cd'); +INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','81d69399eb3c6c4e515c7bbb12330eaee3798f7a9e7fce7a18ff0c19000b1102'); +INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'aec5bf6ebd0fbb7841b98fe202e492fe02c10e41b6945fcfdf45fdf567bf918c'); +INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9b386eb5fed9b4ebb2cfd8bdf5276bb92a9e233d68f6402e3ed98efcaa344f3'); +INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'375de8fa0b00fe22dcc473147d42fda87c8107fec0ec83e829bbc32f8a8af8bb'); +INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','d788d6d8d6fb6c0d4cec96c2b469fe690721069ca6122666c843683186ef0889'); +INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','f88828f544e93c774efc63e9ce1d612548192672d8293db8fed97c639726e01d'); +INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','65596607bf455061c65b0122c9f98b37ed832cd3f4164e9256c5f79fd3c462b4'); +INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9b2e7a969d5c28e9cce4af97cc877ce8671e71e9e9e55cebb9392115b3287a57'); +INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','6f0ef6f7eb1ea5a18f2a5ebe42c6583849ca97844e2ac04ea30a7656c4374a14'); +INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'5b359c5318cb8f14dcc4ab71981655f29c955cf11e101bcf10b515dfe4c4323b'); +INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91ed803de9dd01efd03ec238dfa63f2e8d53f2afc08a3f0af38ad2838607095'); +INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'277b23be2aa7eff1d4d30d700e5dc96fb8a99000a891919d63e2f5e907bceb1b'); +INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','03e618fcc039fad4d7a9214cfdad39924dac56ed620f65e334539e940f9ecc9e'); +INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','023da103e3b90731c942c37d01c20edd415b708a4dc36c53855af2b66a39107b'); +INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','ae6ecfc83d6e539ad370e913b138ee0185234cae8ad57eb3f2f33c5188ea6e35'); +INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'854c5467e8dbe45e3831b7db1060b48c9e2669ed7d41e7a9b9bf154ccc992d33'); +INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c67db4f5bded4fcd5e1d9ad8ac81c072540a81dcce35942f85af6553fed019b'); +INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'0c6eb16abb07cbd42a503a2410e1a2a2bfff8a5d62137f685cddfc05815a15f2'); +INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','d50d0c6813fcba1ee89d25eae262e404e6e1deefe4cb2134bd5bf3e0b2f2eff4'); +INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','a2535331cabddf376d73bd0d8697386fd129199116dd7b158d5ceac055d89a7c'); +INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','f651484a2023bfe23cb4081a94dc2825cc4c041d4daeebcde4539ab49eb19090'); +INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'3bb8c98103478cd047d0ca5c6ac53dbe53f7b629d08d543dbb6595a2f4a1b540'); +INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2982522422ff54deb1261277b7fc18d361ab9e6809eb380f87f03fa96e9ba9d'); +INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'a4d4828200287527da38cd8f22c803788c24bc167cdcdfc582c3d311d290f982'); +INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','8fa6894de2473c1c23acdcba9e2f672415a5444274eb154c2c3b3e9dbebb89f1'); +INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','f24a98e7f408b399f6c3117c685742cefad07fb19869b0b0959e6ed78381d352'); +INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'82818680a2a719f5ad2350eb5723b43a5e533e532ac705722fe943d1ae6d1ce2'); +INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f3f1baf881e37b1d365e3a80d54ab86af25e82fc9f29f217728c0e98b2432c9'); +INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'c728ebf82360fff2ce3550374495e67fc8e3427f340691c5a8b2b0daed505b91'); +INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe8165314fb996a70b238de73bec6f8e8569f1f867c1bc16f8e6cd9035927856'); +INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f53f8cf31ac2e0e41f80681339b4f2fb4c7b39c190b448cfa655da6e10818aae'); +INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea8ffb435df42363a495444eb533e9016e400a76b1aad8b40ed4a5dc52bb4984'); +INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'967b220e8d33272ec10a2c0adf2e57451a2488ccfaf455b33173163d29535107'); +INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12ad1fb6e31eea51f2263e5a973791aea1e45196153e2ddfb37ea032cb2986c7'); +INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'94d032b1876ea96c246ef2b1a9aa2c4fd6d5c565fcc75609ff605c5ed72fa1a9'); +INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573a663e98a5e5ea47cdb7e242d31c7044ba90e0fadee59c331680c1319c4be8'); +INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'a1127e8ce16d3a86b90b42d1604bc7a6dc71493a05ffa07ffd703c40b5dc909d'); +INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cba2f1d184d35badfcb353c34e9dd0398a4ab0b1eed9daf8710da842433091ac'); +INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'ff0adc6279322a0a10e634683882b470e479f21b23d312f0e9dd8551e93f37e1'); +INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cbd75cac3035eb8589cd793d8bb6e25c02364eb86059b5e2b06545ea3758c2d'); +INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'4a19e14e08d39a22aa296e77a7d0d0985c9996962ac3328aeb180968ab3c046c'); +INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c7af017119bb61fa04a66225625cc37ccd33984a4873664a821b960731fcdca'); +INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'7ab468172234e65fd20e02e27078deaedcec3bef72acca76fc0530618ebae9fc'); +INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3a65a5acd8030d9cf055d10358ccf7d73bfb4a617a88181ff9870920cef538f'); +INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'fbf6488266c08636da0a9d4685b9ca781bbad71bbed8ca88bf0f0a49a73d2046'); +INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05feb8e3e2fb33ed0556f47a2b30bb3705d473ad3a7c30df69748310326a39e4'); +INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'11e5d50f6c44a81feda24e71f739f43620826cd80e11938bab5141a3dce5c072'); +INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a086f57f6556d16e93f9042f6a8dc172975bdedff47e10cd7ba56cc5b8ee6733'); +INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'36ba2f74d2c318136364ea89e6573ec7723cae92ef11de90bbae6879056038dc'); +INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91fbcd0a51dd13a5d9815f54c1dd0a05d042725a3312f4a475874dacc0436b0'); +INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'3b452379a67cb0b9d5272601c9d2f7298e02308e12151c8e91c5c2b2cd44b7ee'); +INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d49cc89b9e9c4cafdb9fc5f5382cefbecd86280d2286c6851fb3d3288d1b916'); +INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'eb41a39ac2ade8af0f5aded29cc2e3ae8bbcd8592b722f03fb5f3fa7e2019976'); +INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc3261c9a4e36d0fba139331ef6b65c785639270240a038df17fa5792017ef2'); +INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'b441b13aea73ceb3b7729d3fa35ee768262181fe3fbfda95871f3d99a7112301'); +INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e9cece7e4212509c652c59efef704a0a78fde345e310f44385fddc8ce93f7f'); +INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'ab137518ed227988515f5c42a8850f9e0c169abcd2d3cbcbdd63a824ed1075a7'); +INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37606fb761c4de8c6ebe56bfe2dd7136808dcc63839d38f25f4134574f5460a7'); +INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'d298e16c2c405889386ca1b973b9ca9a72952170c92c586b0ec722d2193519c2'); +INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1382d264290502dfc6601696b6ca21b64e6a69f295b7b77b32d90d4116e938a'); +INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'82e43c435526a17b145b2043a819e4a91dc8af0885e7ab7805d4f0beba61fb29'); +INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69f0f865c134f7a919fd802cbd24175b836324c71498a121385483faf00a5e13'); +INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'5ab10e7e1a3be743f66356f08c7e6ba227054e4e17cd2fa8c820ad829e8a4d14'); +INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a35d919f98e9a5f572dfa3e403f3cb6bd79e6d9e00a409ee85d644599a0461'); +INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'99ef7d389743b7bf9f899b6af1255117b07517ddcbd7133eb71fb0b08df74454'); +INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0e43c732de2ccbdfd74565295ee0c6d51c0a62424d1cee5e15bd81270e63b08'); +INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'75036f16c8f6f6f67168bc2589a8d7dcda22cb6ce1830571ea7fabbd4e73f280'); +INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86aa2836913d0a6c22a1ce4ee106d81f73c0729d907e054abb53b90e00794eb9'); +INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'3131a595eb85c20a3b4f448ddb53fdddac76f0b1ca8accaec21a731f8c971fda'); +INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a0f9d6794421f8801e77dae04c9ed6b4b5e77f5f6648f46c20ec4476c4bb5a'); +INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'e342e5a4f8f9664ea0fd8137960d1ca24257e1c70131a314f4fb1d58a8775feb'); +INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c9c5f96a1584c4110572124780ad936dd15ed690be5c3e6a491a8b6f4c2ec86'); +INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'b22c2d762cbfeba4dc4c3b890c15433706b6685c5af3d5fa02c960fa20c211ab'); +INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98f12bad5e44c9734c2478a9ad2eaaefbaf5235e126156cec82cb82412361626'); +INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'20393c51a2f1574d06266d88d91368f74f461d38ceeef86189e5bfb63086ed2f'); +INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f06542c088a23be38eac07d259a0edf387740f7adb4e33666249181e7310c6'); +INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1400654573ef1cdf3d0478dd8086c016662b04a0802469c37eb5a4b99a74e8e3'); +INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66b42e083a4eaa208cfe7e8718477146ab4ef857cfa98929ea2045e94bed54'); +INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'d359de69f32c2171c4f5270ddfe7d9dd6e4793ac0ec36e62ae18ca8a9d021519'); +INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28158649fd4ee92a98fd6e7568e955d1fe882612c3a410a4ba463152c7cf5bdc'); +INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'ee46782180d1b0655556cddf4862f5f46715c001778e767e66832082b9bd7fc9'); +INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72556d0087f178ec8f35e95c16f5c13439847c29e4fbab9d6453713ac5d7dec4'); +INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'a79e91257bf7375c69eeb7600bb0fa566adb5d275fa35acbc99b96e3f2fd2c10'); +INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4fe3ea3ce0c28937db14c22dbf37db9ab84733f4c19b4ab345c248b3589ab0b'); +INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'fae80b84d40c293f48ecd70a079124da4dff8823de86a816bdaa07d6f476da28'); +INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0636da226180f12fc793b2391c160637aacd1617c6b4b5141180f7120c2165b'); +INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'f9d57973ddd7c15af05188f33715333b6595d5d9b31cee9c1d81033b30f57e69'); +INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbb8f58abe20c7849a6384a9db97d50bf53cdb4eed6a27914af74313b2c4d48a'); +INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'90253b19a0e9abd44c6cf8778266159aa7e7e8dec2d6ef9ee65ab7fca59de655'); +INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7afeb97ac06a1e2be7e6f49104024998094061d397a35ce06e2aa33ccca9d5b1'); +INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'a02fec56e0063700fc49625efe22cc83e12e1d4510ac3167a16e1d0942551fca'); +INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c7832162901f3a22061e350545bc93a3e3d4297dc48f6e73c0156cebac65db6'); +INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'e0b01a0576325d4a99e481a4695af4cf2f5cd18c96c14938f49403cfeb3f2935'); +INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'650574583d0902a9aa8924f926b05d51734b7fc6348499719e8d4b97b0a293d5'); +INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'4376cacc6d17e7d2d70fd5997fd7c7f2217a5ed73561143d350b0581c2305907'); +INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487d1b683e55df5698c7fc8ba8fb91f9cc15abecec01a8883e24bdee022485a1'); +INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'9f1c95065c3971316d7addc5a3dfd3d316a0e66e3d04c16fc3ee01271d61d98c'); +INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ec7cf77e86a0c9c790ac7094cdb6a2d503e71d48618ee60b4adb3d969072fb0'); +INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'e9d3fd2253f3b17dee6231d026dcd67f01d6eb0a75ba23d84a98cf735cdb3c2c'); +INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8994dc295ebf7ff80406aa0811fcbb7662a2007398013b402b44e572b2553930'); +INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'180080c903e6ad9020a78795184ccf98a965e82067538e2d68560ba492fcbfe7'); +INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18009bbc736a99445304d2e9e5d112d5cf195c29f09320ea0cd612a451fedc0'); +INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'2bba4d4eaa5976bdc2d137852f6dac3dd86d623dcc766954572297ed9485e568'); +INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d19c589bdba8f6744b405a9f603bdea811dbfb677f49ca88ebdd1767982896c9'); +INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'ca46df8e5760443519f2d63bcef13ee8dac1b8ce6ed2116511b27e35b284d189'); +INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cad4a273446176c1457317364b02b4580607c5a413576b567507b897e11915c'); +INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'6e97526872ffafecdd95e0cd210586e014f0693975d0dd09ffbb21f8e8a43ca4'); +INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ff3dbe77fcc4845dbf6b63ef7afd1b997ccd821d572d4d4c4cae56aba50f94'); +INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'a3c577d8e21a599382a251570f12847a57c3f5eccc5014238f11ed054efac25d'); +INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb34197d8a5562ea8af64d726039cb664efa1dfda08dca84c88530bbadaf4b67'); +INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'0491954756a4896fb8435326e224810fc784b0b3a29d41ffdecdf700158c7656'); +INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cc4592a0eda6c645d6b7e86cbe71b61a476d2a9996128409d8430aeca7018'); +INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'ad6216d005b12d158dd7134b06762cdbb9788a8c7003b5fe1c4616ed7f6c4fab'); +INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d62fad9025087092a2f049d133ce3432e8dede275842d20c9c0ae5153a84662f'); +INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'c215b125d23ea423152e85bd116c4684d89c77b14a09c7bf03d040c45b8c39a2'); +INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9106b0f2672a3e8142072f77b07cf8275d2812d44a195a0f9e8b0a4e20092963'); +INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'8cd92828b22a5922ef49894cc4ca65922b292e47ec4d4f07fcab23b00a3de771'); +INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20adf24ad75b708dfacc3ffb1ad5805f94750f2f4f2122d788c9c781ca6e0d18'); +INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'0c6b930c818909a2ba99263e36ef0a8d6960927c5b69c016e9faaac52b6eb5d5'); +INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47cbded5048b6f0ad625a57f525da2a323cb0dcb551f113ba7cd719a02e800c9'); +INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'7bbaa0b70f34ce6ae6a6a467e201f8e7df7e1fcd0dc295485e638e7e3c8c52e0'); +INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'083387f76a4e0e272a1e7646fa74376fdc409a1b263bcb8dffd917be0046bc3b'); +INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'772ecfccbe152c815393a5ad0329ec3a9760deea442cc41a5ab85f861e3b06ab'); +INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'403c148e181c6bc1c84ba45712c0845e6f77ddb5461ef7308651d9a51cfae994'); +INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'c7a50eb2f6783a5988681c33a26f3e0554b4218fdd0bb05d64076d2b224ed216'); +INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2335012db7033042044422c7ab4a697eef6258a3790fa530db27f795c5d4109d'); +INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'6c19cebbfa7202678a9cda97c53811668e7bfb4c251e143eb2be6606009e78d8'); +INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3d810e5bafa7ec782525812a89e231dfb8a457776005c561661d37924f2c6f3'); +INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'3340ea49b5cdc21957b491e2b36b8c9d7e5d0aed7333ac3e4a6051c74dd3adf8'); +INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa94a4ee2ef996d04ae85acd007880f3a97b83d07acd68b6170563ac5e4ac6b'); +INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'da5c6f9ff3a813045d08cc5915fbd041440577558bd7db001c8dea1c5f3e0146'); +INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3728e9af327365853f4ca6297ae69b72755d7978c5de2156f2b70d36181ede4f'); +INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'2a48f3c849a3d54159088ebe1d6b90d5474372c90af18df2cfb826e8223819be'); +INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a10e5e642f8eb035e420bef79a5fd3c8bd9f8a6f3dc9e64cd607d9a4ac47c350'); +INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'b880aa065219a962deaa77646882ecbf5137853ab6d2b5534bea1ac94a428fd9'); +INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4450c9bcf4322cd3882c2b6f295796d0ff9a597c2a99b0a04632b1e73cf08e1b'); +INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'1887c571d32ca88e4e062a8f3230362628ed3e58e37f8d195c539d57902de8a0'); +INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1835a12582e759b6f3f6c079d88cad41c6d28fad33235b3d8388dcf7286239c3'); +INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'68643dee09a94224018c39820c6bc78a2af43616fe3d26a5b26342273b935db0'); +INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e19c53441ed4157427bd33b16bc511e49a1bed79b67a8df4a1afa30c4ed612c'); +INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'1cb24dc971f7d7c6d384663421fcf4d0ed7b2b8aa1e5494526208b0435352f4b'); +INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23a457ef8eafb8a9c0863f560d682d8d5516382b927c10798bcdb8d1d0ae79e8'); +INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'18c5f97a82d17c41f34156e9cea407ab31af2792a1f435b3414f9b6db2f2ff09'); +INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ace4b28b2d07559217a2f613313797c799476cf1c319f042e8ee89a725c141'); +INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'92b5030891960e1a494fdf9c09b4eec30312b5f416ce031c3fb453e6605160ee'); +INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5762cbb84fdfe7187afdcd979ca8bfd08280c71df343f2b0ca2906ac221cb374'); +INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'6a4dcad785432d4724bd705155044381fdbf87ad830ea6bc0209f1c5df0a3c12'); +INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b31c6144ee4bcbe91129b7dbb3f0a003cf89c120bf8f1e5ed6492c94d8928fd2'); +INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'10a471d85d8028dc701874bb0efcf4617754b7ca57caeed8109ee58736108f0a'); +INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7c530887658fb91662e645aa831168579ff496a3194e07617c449c9751aff0d'); +INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'1ac86d2f2a7c16a712be98866d861b9ff5b01a370ee4b171141cf79c9394cf8b'); +INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a07c3c131eacbb72bbe4ff9c19292758d42374312a3f12cf79ae81112db5b3ec'); +INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'b635d1e54a6d85890544053d01ba78c818764624d12a7d72a41c672fcc2aef20'); +INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70f8153bfc4e461b861e9cb048207f86658daa900c6f8da4ed4fe5142f2ca8ba'); +INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'59fdadb237d345524f2041079b127767f4399d8c09926b83d8935a6a2e7b5680'); +INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47eb2f2596b0c4eee716559562892e490b25dcf97ed66195874ab4093ef4b92'); +INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'a512c275391cbf2fd2c2f2b189b38da8d1ec6c4485a2025bbe794cffafe2b0f6'); +INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69d6ce1e8205b636532acfedef5c550a998d469d4f8999a86679d51835c8ad4c'); +INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'825819f4ae6267e6418882e7a77bda096d699e2ef0ea3dce3c2f89ce46b9432d'); +INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'402a3c3944f929608870b877fc18a2cf712c27794dcae3c13499237f39a5ebe8'); +INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'326dd0a8153333d05c96ab3f68145d25d53b24e6bcb78356d8753cb691c4049b'); +INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d77bbca99669707a2c5cbfb14249d44e0ce966f55881e059ff5e2d6729818c33'); +INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'75a7f9e2bd9fd2528516207b4d143e70b9e0b0968dcdb291f17d336181da97d0'); +INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31677d891f89919b46e372556d27ffb8b649abe8c10673b67a71159e35b5b436'); +INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'5190cbc9a186bb31733f2d6f15f6253195db05fcff85d3774e3bf970d6c29136'); +INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1634d7cdf391dd588fdfe40953e035580657c4202235ef564fb0068e930ee07b'); +INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'883e167b2ae58b9978759abe8861be6169ac7f893c379aa1162d5b9196b1809b'); +INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab1e2bde29f09bac71c95fc1e906e6faa4299e7bedb2c34746276be91edfcd15'); +INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'58cacba23006f3a361beab0435468b676523689b7991b66ae24c134e2b78c172'); +INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5589eaea13d7b3e6ca8e6f6c3d19154e01603c6c0003910eca8d0a9a810940c'); +INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'5f5cd2ec8519d7d0561d9634e6f56a1fd39d4070fdeac4ba907bd02fda62db3e'); +INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597c16d10234d83d4e6f328a4ae3bad3441a4555bd1f158a0ef305b3e2d58f5a'); +INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'5548be9935807dda0bc96be7dcbf3171a52c6d732a1cf0c45ae9cf8440e59e6a'); +INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9431c0899f3ae4308819f83e1a9ade0f18d451912257a54830a39d0b430aedc4'); +INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'8b7d49a16b73564a22065d89ee858bc775dcd7dd93c48caffb5a01083c74f3d6'); +INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f366c570bd6f32d93102981d706568b0633244d3200d2a0fe666e0ade79e6fa'); +INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'bf4196a163337baf0b900336f56e56a1da928adf69242a26f20a0dc38e674ae0'); +INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20e6d2c049e2f14859230c5e3fc1d6ec62c97d2e02a9212ba55c3b726f54ff4a'); +INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'87c0488feb49becef95b2b5f89adf1bd82880b7edbf545dbf3a583bf034a16d6'); +INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74659b8924ad2e4d4e048e73241851d387f93f17f31fd2c247b48309637db4da'); +INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'42d8fe5f14affb0eea08a1e084fc3feb0d8c87348d311ef6fc65e6a2ca487361'); +INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c24cdf16acc72ae6b33351a6d7ed3b1bc232f716d9124d76d7a22c98bc8152d'); +INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'9d4bf33fe7dac31b2304421294f84a9e9956861273676258a0233836dedfda71'); +INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc51c44eca228a4703343298c9d2fcea69dc759451e5179e1bfa23d71bd56404'); +INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'dfe31f68f0a5912fa8de96452f93edad0b986a69036dd39cd36f86c0c4016e76'); +INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86115f2a521f783dcb6c831db8e715328651feb1d5a2564bcf1c11c7fe3c608b'); +INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'57651b5123d23d367cdf51a0e9fdd5897517cf76f1895e4a7846286e46fce31f'); +INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee8ba445dd321ed3e4d2ff79a57fff1749f0e761b9565661ac86659cca380f8'); +INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'252ac32cf228720bfa021bd181b1f2f7ac306082c0316e840a54f7c6c01d88c7'); +INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac59353bda8e4c0e6743c796cc07eb3eef0a303aad6e0174936d8c48e93bf86e'); +INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'c78c71a5bf7a2320cb6f2c4a7d83395ee5a0c809999cf46f3d8e95d5f92bbd85'); +INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0647fad362a751d61efd195a2ae0d166b1e0ada7b8b3c731beded76919d2d04b'); +INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'757c641891f5400ca737c4d2c0b47f9012e572a3243b8a999e6dc27ed8250300'); +INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90a5384fa361df5c389d62b6d79824015e9ddfd90a24905ff976e77b8aeddd85'); +INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'a8cf98080ef17e80a3efb7f1fc0eca2710642d50e015be3721ca18f8d783eee1'); +INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'432cce1aae2256fc502f40bff93a7f6b0bc66e0b3d62830e3aa52ae43c8a11b4'); +INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'55df58a9117ee925faf6cf7bfe1046586dd022903298272202502b260aadbda6'); +INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'719a5b83898a146ee7f8a78989635d844d9b02ac4ffe4d129b4fb25f79ac8f80'); +INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'2314f7f91db14e636c3a2ef207b8ca52e9eec50e39e2e458c90ed0458b9c3c03'); +INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48a8f837d08858e0cbf6b7ba04155656f53dc56c04253fe99b5b2518358e767d'); +INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'ebe03a531d1a0fdb16480f9ddf81f64cfb3ba9e62fa83c74a7d3cc80a4481e0c'); +INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbfb939ca449ec0aa9c4ea77ab3b293fe8559bf106e5d10de6295861ef8c15c3'); +INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'0913412fef141a63a1b89cecbf3f8e83135a31b53015ecd8ccdae626d289c4ee'); +INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25e90bd886aeca1d89983ecd7e1edc67beacbd6475543f7e469590f27233d39'); +INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'e31d692b9a12c13d94530691fb88d09e12018a8fbf488b4369ec35093a734963'); +INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43548ede4f4f2bbd478161c4460550a1e799f343c691365a9d67b03df92774b2'); +INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'b92dc64cc7f104bd977a3b018e4f814b94bd4a4fd7a6c937b1c97d81977b1efd'); +INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8345684786af1c33b56e370ee79534aefc4abf8fb6c907f17f65b1767148248d'); +INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'7d87a90e14c3d3fd38f049584dfafb4d5d6ccd7dadfbbc273f17c435985ab1d4'); +INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ffc8f685c4013b0050e34e6728b2458cf99c18029a00f5071c5fb52f83be75d'); +INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'518eb67d9830cb3dfbbb3889d30fda989547134016c45601c915784d7b71728e'); +INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e9cfaddae6ad6a67191ccd3fba2fd470945f4aaf79d8f9e5aac686d75460f17'); +INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'6217679754dc7bef13b9c8817a639670f10079483c211332d0230538e875f6e8'); +INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bdd985d94ec0aa64d038931ea98a715d3eeeafa7e1994c8192550113f779c0'); +INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'d2cdc8a7558fe9f8c72fdafde66681d9e4c6228052c5c06aa6838ac28cc32fc4'); +INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4788829ad2b7e3af0905cb24a46d392be4a4b9d2c899b2fc84adc88897878a58'); +INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'110d1902c9fb5ed76e35b359d3555c70c8d090b3d8342988688a6564c1bcc555'); +INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b51fdc00338b75460ea50ce86e74ff1f697654da77af3459348cde8853eebeb'); +INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'96f4ccde65ab834c5f39d29e264066ced3a2f150906f7128528e53474a6b0a8e'); +INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79f712fea9ea973590e317e65e0358384373791863fe2c4ff414429494f6647f'); +INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'57deb2e1a8c994d2140e111f91c8bbc1bdd107c969a7e31b15d2e46ab79475c4'); +INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1eb2e9d871ebd8b28bd593435ab7f583b805aac94cb021203ef3f851e8984137'); +INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'8d635bdf6efd47a4e5bb365d33bcf6337eba6544a9e6651cdb2ce39094207b74'); +INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f845e14c87267e2272e017690ae27cdcb0ee6b5662b859eea4d0e66f84143dd1'); +INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'c8500557508604064de750d03ab6c057a1e364a2b561867fbddea4a543e4762d'); +INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8dcf834d2d0060c024ab767db7cbedda55797a6f2236de8b9f148b5d10369da'); +INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'c9ffbd8488663a571992d2e7e7838f2edac618dd7b60cb19f8c57fe5a222f6a1'); +INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60a4e6553f75459f8eb56f4a9b1a3acbd1a1a99c2e9e2eeac4a0c24351144295'); +INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'574d54d46aa5cfb9fa5c7e53cdd8eeb4858ed0de26fb8324754fad25fb59bc8d'); +INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aca96b16f1777ca6d70f391aaef5b909dd19c72ca5871a3a19a6b7a55c8be52a'); +INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'7ffec4dfc9c7e53888e8187b753c4240a93ee9f3ede6c387a8c112805dbc75cd'); +INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc3668f34897d274bbf174fea35b2ecf2f8ca90668ac2aee511e7a38340d8c4d'); +INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'e87b2613d4fc2c709d373f5b080e7a6c2658b1e58b55728f21695b278666a073'); +INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c28304f8c2a21b57f33781493d08664baa749dcfcc21697437e0d6f8ecd6aef'); +INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'401f82295bf3a2ea75280903628b0b3c44eeb8a99d3ac258b9855cfa0deb1864'); +INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ef32a5dcb79a4852cba3765e6eb17a953d873704f7f67238992953b6ce5663'); +INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'e4b0996886cf51d4f49be8a22f6a401ccded53eba0a8632a72946c48af93f77e'); +INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'857ac60692fef44b58b321f194ad42a638161dd5b1b993815715c39a6d358ffd'); +INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'88bac24b63533ba64b0f1a0b72fd511b05af88e937a37e1b979ea8c8be186cf7'); +INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13deda8cea8eb084a5fd1980d15d06e55f5ce5de1cd211d5cc8f571d434dee06'); +INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'385ea2f7c789c89220fd28bb8ddde69fe3958719c5c3ffe668ace1c30c41736d'); +INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a1db8f8c462aa6f681d1262f4c91982f4c6c83ff4671b386b730e74ecd5a8b6'); +INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'3688153cf2533aebf0f775fa8c0aee8053384acb6a77b86ca32cacae710d45ce'); +INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dabb07a0432bb42e9ad1823f0804e86f73bdad6ce37e67718fdb1e4b856cfeb9'); +INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'0f417a54d86c653edede5a0f277495946584b38cc651bcb3d2ad18884ff9ce50'); +INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03e1f6889dadbfae6eeeabb911168beedb23b6cccbff4ce0eda3b398f8c2a145'); +INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'790fed3e2e68e0fef03d64a6b7745a5ad79c3ed2db6c2e9c9fa5e667f276f854'); +INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce20722e1fccced65fc6a9fa4e20893ee10cc6aa7158681faeda27cf96ce1c5c'); +INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'54a20cd29fc3edade37ad35e91fbb902292791bffd828050d1cd11bceb334eac'); +INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41217c2fb56f2fc7ed5e8eba19ff478c384b490e1dba4fa8cacedbeadfc2b198'); +INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'8d29427a9da803bedca8de529da5b9b90a780ba0b8409ceb2687b3650c46b727'); +INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bdba14052cd37203825b7bac135f52ad7e150b89da2057a3a518902ded346065'); +INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'184c45faf02909eb584e9d1fc57bbdc4e70e9e31a04b576c1aafdeff87bed78a'); +INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50a2d785ee64ba33ceae8c9a884914b29f88a0d1eeb679ca7e42a9c3d9c0e854'); +INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'10838cf8ea482e1ab7e126a4c59f5d567f6010ce1f5d575afb73bcb8c092010b'); +INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9209565129820bad76a9cf64a4d8caec9c9cb40bbf60afee03b904ab4e65ce4'); +INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'e28a8740eca26cf7003e5de30f5a929e32ec5b712d1ec1bbf1fcfe9c0a010648'); +INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48038fccc0a81c64ae0293fd496638bb7f36d286a3834494c73eebd5f4e634c7'); +INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'4b6f93f581631cc98ca1087c406d68444e275e5c42dd3b91a096c79e6670426d'); +INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c60f2ecc1ef6e070a03d36f4d286090d819927f27c9bfc5ad69ad40d363db48'); +INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'8129b6dc8298547e563cbcf84f334436283dbba4ff83f91fb3980121f484d4f2'); +INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'375241f9a4725502fab7b3b0ffe48300198f1b049a97e3fd926376f92d76932d'); +INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'3454705e5a76d1f581d3c7ed471b7ef3e939b62b7968687606254f1e577039dd'); +INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea25fa4f752cc01b9dc2186a2b9255e6ad079e1d1f6234118c149ba4d5011b4'); +INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'a05b06fd5ae3e257fe30d96db4c491f56657a686a08e3130517b5feaa038bfce'); +INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08eeea6f729789425e312ca904743bb096423fe9c0b46700318b22e13592b438'); +INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'6f83399cbe27b8c3ff7c30830abbea6ed3efd2414110ecbb171b06d2f05c42f9'); +INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed5db6371e4a45d59a6d6825e3fe8b84edc9c2392d3927c33c17fa0e924ea1f6'); +INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'2246d41144325360527beb1780e34c567e374fd9ea38fed5381821e5b56c2acd'); +INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd287d7fc8b3150632870d94edb32e8125e1760b7798ca315ad4e4e8ddc8bb7e'); +INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'a44f1024e78e4eb2f689a0c31f452dee4166df1356be90c994f7e9566d487334'); +INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044eba7e3a319df0c2c87e5a70d8dbc349f5776dd101f5d337fa515a9162f38'); +INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'4ef2317b4174a254c9b285b20afc2b69e12a24753b79738c5ed16cf51f0536e8'); +INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f8ecb676d71da6396249498cc678e620c522f968d2e63fd10d7b7f68a191f6'); +INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'b0279073d2aafe426768fecd19c86b2c9be0312d3559972c5a6e68c6e0c52239'); +INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fa1fb6423919317d5f8af45ab7fa80076e61e25357fb7294023ecc764c57e8'); +INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'62108be4dbc01e835f1758345d304a5ebe93c03ae1bd66d23338917d0011f9e2'); +INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a885d48dfca76735008e1c1a75806aa99cfb3f82123a8b0a9458db2a52b61b7'); +INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'3577eb9ac451b2026c5210361a046264aa3865d69044d001b3968bc6d67b075f'); +INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f6dfdb8ae2d5489c8e8e6ba5f030c143e497c4fcb287e93f396f4b3ad09242d'); +INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'dbe81b4c2ba98a9b7ef0a9b86d184c7b81c3cc4a4c935313481ef2fefd02849d'); +INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bfd0a84346aa799dce7a9353954d91a4c51fa619af28ddca2966ba38689d85'); +INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'d5e9985cd629894f5c7f714fe284a3cd1e014481148227f466797f7596fcbb2d'); +INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc9a939f5356d0cd2fd82c78fe4397b7c176c72a64f01d9bf85273bb92b0984'); +INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'2624cbb800b08b7588599118b867bfb390bfbe9b80309eb71c0c8333db57826f'); +INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c0587a6c4b1ab94e5da348d00dc54651dc46b9df9468dbc0d4f9e3b233ccb5e'); +INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'734c57ff239951864f1a2230e11a301ee1afbb9a2a4459788f45263be2f83e4a'); +INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03606220538fc36da3e7b471d1793ad7e6812b62690a05b4a26d051630d0a7e6'); +INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'ddfa2778c4f7092dc2ff0de610fd795199c9dbfbb7e87572b1423936ce0c8fe6'); +INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ccd4d5a86135e407149884f391738d5c465ffd433f5646a984cc03a7286ca5e'); +INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'f7f63b9e079232bdd2b6a6ad74a947d8666976702334e91410fdba387dbf663d'); +INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34c668dd5166017f051a324dadd67c68271eae5f3749b5347f78f5bc680d92ea'); +INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'fea626473879e0938ba3a5fb4ebc7c6a5c66c9a9d124d756070281eab6264250'); +INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94f8851cf6dbead80b11a00bd4c7cb58154f440ec19a3d86617ba27875c89bcc'); +INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'fe190da1c7c7d7659f8f235e20f5524c1a6f78330b4c41eeb8b3eae85afd967f'); +INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ce7e69c5ffb8b7b6c4b51201699d68273b6d085d611bada43d7572492fa3b75'); +INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'36b0bba5767a67e573e96bfb1a6c80833d252d2018e68f5e081e090806bbc16e'); +INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'801662ae0f533376965f648750b0c7ef42daeef78241cad02deaf13cba7fdad1'); +INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'f75a7c7121d4d2906644c8cdde99afe2e996a2cd764f4d4273ba4bf925f317ca'); +INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75e2a561b062c8cfda2947ddde58ea8f94553eb89c59e46f90eb749839fa6a5f'); +INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'cb0c4fd1d9642804acf161e5643809106b182f666a4f8ccc726796b91ca1c709'); +INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'654de8f6b0592da57bb61cb2d3bbc5e1832e69cd68fb4a64cb7a8f21fb60a969'); +INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'08290c7ffd74a10b9d85da1794729d5c0dc7de0e6dbef98223ffbbdc67ceb9e0'); +INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2fe311734c3c4e86927507324f142268eaab4789ec642e0a01b8cb50477d70f'); +INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'e22477faf984b23a0d6005e0b59f4be76e4e033a5c505bbcdb0bb2da505caf6d'); +INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3368e75cb35baa286643e140341e2f861e7f5485fc061ab1d98d07103ea06a2'); +INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'f857b5fa2b0ab0cc436af8bfd238b2a3a2628dcb0efbc04b7307178c905cbd3f'); +INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb23d0b6b7c8b3ddc663d99d851873b2cdc35a0c9a74132acd66ba26ef14cc67'); +INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'50e24365e4164d9e3b868516b2b23a7d869b096051f3cf735046465f88814721'); +INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93d703a155ac4402bfdc5e9720f788e41df1aaf181fa147ebe67465b1ad47944'); +INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'49db494484aa8aa705a1fccaeb16f5479dea3706234a5e4c824ed821a922f9a5'); +INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13cd048dd45541d14577817103059987e37ff07d94792f5cd4c7ae8c5228f3eb'); +INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'110915848e6fe9e4c821aa856ee5fcd24cd2a86b9a4d2aeeb08aaad766e8b656'); +INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'770e5e77bee3c25819ec590b02c61d2922acd4d54135b475add1336be8b5ef4d'); +INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'67d9bff31f3534f24aa9a073d8dbe4fe324ec917a0710da45208b037fdea4917'); +INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d0ef27bed71488200fee94620b69f6b5c24003c1ba11fc997c98d3b9d8e917'); +INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'267b938c5a7d943d8c32b8b3beeab835bf461f36c55cd96e74c515bb8eb2c409'); +INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af831bc45b6e6ee542c99da1ab0c1d2a1c5200a5a7e26a5cfe51657d42f0fc2'); +INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'ed857180b1648ef8e78f318305fb500948b0f0119b5670d978b17ab3f4c9c640'); +INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55907180336abc07e15e254398a6fb88ba1663aa8c5d118bfa89de6a1d24d377'); +INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'0730308bd43265c9cf66a959f2e5bec8b0c3e7376b86db469af4b2fdd9fbe43b'); +INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5651034304abadcc310efb1b477717dc2486ede278b4465ed4580d9c264a1272'); +INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'f7b3a603f32a4b14eee4a33f3ef884fac441701f1722668459b81633721efdfe'); +INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0110f1ca989be1b19716dac9bcd5fa2efebd53cb9e90567643c86534aae5c40'); +INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'8f8693d2df444c5a705746c89c84938fc9cb474327448fc81fb9bce511f1c16c'); +INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a8475adafd0288780b176574d8ca082f78d45c8fed2bd9a6adde132297bd3cb'); +INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'b6ffd06d8c87643f817e32c2314adf52d193dfa2f7a95cd9210bbe20920e60dc'); +INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'312c6efb9396b6a9a1c8ee140fb37aaae6e788e9f33f2d986d7a0255bb1c25be'); +INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'c0e951235fa4f58cff2e327a92a2468a55caff1e4af70aa985534bbe08331df1'); +INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9f4646ddf7805ec75c7976e1d380659c25de9b9bf06d1ee0bc7fc7f74830424'); +INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'0bd0ae8de0ad9d23b9ab4af9dbfab3822a4e69279343fb7692a30035310e017f'); +INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bde3bfbd6dd2e86b98194ec43617bb69a53af273049d531f002893ec8d308896'); +INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'53bea0bb37cbe9e802e573bc98efcb8f6e548fc7182302739e458bab315e53cd'); +INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d90e92cb46b0be9ccc3d13328b78b543db15a32f74b4b42d516bcb08917132'); +INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'d65f02ac05ae37954d39943e9cd350be29af259d3505253560d6d1c1dece5c2e'); +INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'572d28c545c589ea3df70655dd097e97ce1c0ae39615d398e978c114b07dc257'); +INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'7a42ae03143e0f700bd0f05b4a21b6bdff8d93905eb20fa1208f0c3ae1dd2002'); +INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b585fe4e5592ab4f7faca3700c629caf33f5fa3c52decae754c8cfd35b613b'); +INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fdf20c080068605d9225f9da1a6007a1239ddb1eaa2c70b41f9d0d7495476bb0'); +INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'813cfef9b7c6f1908c9f53303aaf10f058fe2499f119c27394fb32804a1f4bd8'); +INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'8a11abf7b13e6e1acaeb5ac1faf0adab14ee119ac69bea0eb87f8882a22b6d66'); +INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f87d4a29166735d39551a3f9370043dadacc920f01ec21cc2ac4c2313e295bc'); +INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'3663c52cedf66166e6b9c067c7a66f39f685a24c40d802763069fa3f704198b1'); +INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd564b65447928ae9ffd93d7daf13947fd6a4dc90e99afd3dc7cc2e57615ec9a'); +INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'77c3dd8918d083705b2f2aa1d7ee047c501f42f28179391587df22ee012ddb18'); +INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'333f75c30484462892642a33d5fe9c864b3d77f9531bccf3ccba6b029b753ddb'); +INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'5d702ed47db10e673c5e2e96feb2463c84192ba4b99622de7459211799ce76ee'); +INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cda7e4af30f7d49450d9405b2d02fa52b5dfebb536e9bf6c2cdb57d78175e89c'); +INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'a93efcc617d63275187523951f555c75aa1cc5033d710fd075070eaf345ee0a2'); +INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5b4b4b08a595ac8eac98f655b2150d6259c19cd4836368c5609e07ff52f5bcb'); +INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'fed330cfc1a305acf39a44f35812d44c676c6846903f59104c3dc0a72f44c018'); +INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d99ca7c9cc6bb2411eb8945f480ce3289d28fa0c95fa099c9103ec3702a33022'); +INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'38589a544c8e8bf210a167035ce50efd2a6ec16ea8bd079a735064296dfb57a1'); +INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c7fd8cac1e3b2375fb0935a5278a2a1f8657b0b1a8e7fd488f510081d7742a'); +INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'0f8e365daab0533cd2864321212570e145527461e6ecef689762e7d2625fa93b'); +INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e4bba471c6a6c90476738551eb8df9a23ca7f5620ab5ba1a4b6883e6dc43526'); +INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'0701119b894deb9e64cbfbbbd526f86c6c46a713e42a20fea8c6267a5dec6cb9'); +INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b32dd204942122e3ae87e1611ebd2400f6df86d4b31c1e51b627b8cac97dd2c'); +INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'88748bf27d7e579d67262b7f674ea6a45324c92ba23cdf7091b6ee0ce94bea7c'); +INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a0502cbdddc342f45be404fef8d46dde5459477e507172adcf4879795995ae0'); +INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'d192fe69ddf53d06f8bde96558f4434c4a992e0f7147739dd85f231655a0ddc2'); +INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbaa8ebe7365b203020cff0db0dcf7d03664e19b408e399c2c73b9468d92ba33'); +INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'252c8e182e2e8161e9b8a3a7d62b474708bfc79561f10fb8be95940f01a2f85e'); +INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14b54f1c26c3a77f43a753978a0031afbef8539ce73f25a6d5045e1d079be13f'); +INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'adbc8b8d591395ecf6e8c9ea9d7068e57dc3641cef31d2219e529176c78c93cf'); +INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19f5ef1456a819db37ebadaef27633b15c40a8b6d79f069db29003f160ab31ba'); +INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'701ef9ac3848fa2924e2a3b62ec0ee102c166209bc407b5d909202b094e8dea3'); +INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a23ebfad2058d4920e87b206b3c73425fcde72e247448ddce930dcba752b8387'); +INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'95e3aeccfb50f8cd1acc83deb47ba5120665a49aaa32e46e11c21c0afb9addbe'); +INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79640c7fa78e8c1e5980ac490b6743cbc8382896a8be15a6fa2b949b5bbac52d'); +INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'739a08c11e820b8638e694efc23f8e1faa8595c554b39f28e9c7cd4548802cc6'); +INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a615644bb3a0d6ad91cd43b0ad591e11eac4c7c6009a28129a2944e4789b2037'); +INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'e71f8d95bd9bc166401b359feee92d6a473b754a21e73cd407089959deb0b5ed'); +INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa72b55cbf48365303e7b40db265f1d2e1e52c295bbdada1b01b43ae41ca2165'); +INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'2d0bd48846478e8781cd96d0d29dbb906d73218825a6fbc3c2d0aed9fc7f14c4'); +INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eddb0b3fbb76518f09fd378eef6aeb0686ac59b6906a3132de17c46af55bc4'); +INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'0a8b890c079a7a72f8aa145c8ab1a8857741fcef14c9372f5dfa238b76865e2a'); +INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24623e76da2a67d672e2dd3e366fb65d2461facdedfa440e67a8caf96712a7a4'); +INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'48f999edf6d3c6b7cb9ec2f61180427fcceaec834555d9007405d028e5bff15a'); +INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3af6181af49f4488e7ff85d5277527f406505e2be054681d527f914a41d49da'); +INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'9765ae51d84c376e38ac2f5b9cb8b076c6c3f7a6dbdba23ed2e2df2d376d92e6'); +INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b8ac8dadcdb98e015e7a45af1b6e1e84066f7d64b265d38b50643945733ab5'); +INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'121e240c442e1d9a9cac1e334b45317d0b973499ad34a06f0033b4a97984fe42'); +INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd0d8338a03b933b4cca3c4b5147feec312513c72e05eebffae8f1edd826cff0'); +INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'384a210142fc7cd99f8a9679b85c6ec05b380af489e3f305b4ab0bff97dbbb79'); +INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'deca65b1aeaf3b549d219d8bb7a19e41e2906f85a8e3625328a1ebed7e4b89d5'); +INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'b3501d6691c11a2c256d692bad417d461ba7aaa60581f22a5df9151360f59e97'); +INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce66325cb1677b0d7bd8b8cd69ff4e992d60c160bad470ea5ffbb8919e0ab4e'); +INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'cf1ffd5a5d16e2fe393e37a9fe1b2312fe07076ef829d9f7a179e94f89a9c300'); +INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'410dc9b1d4a186afef39d24751e3d5ecdb43af3560b21c4e5a490521b8d89539'); +INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'3ac16cd4ba4ecb152788134c0d41eb7baf83539e9ce4eb56eb14a27571d19b6d'); +INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b941cb4ad5ae7f3ebd9d394b95123feea7e258ad143bdfe91c8b5ddd0dbd3974'); +INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'059e165056609196a5742cc6a5cfc67ba6b4fd08f5eb769f5d461848c16f35b1'); +INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a6c5578efa3d84810a12583e21f476df4b3403b13652007ccb089a598fcd695'); +INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'caa3ab2beed9f5b0ad47e3ea1914b99adc0ef56aea789944810a8b719b5e3f3b'); +INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d17d589d71c6097850e37b4d37b78bd7a93a3013685f58fbd57510ccec6193'); +INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'b47e0b95af214f16c837ec5f242c6135deeca4b7bbd20873d1f27f873b96642c'); +INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29ad350f6d96e8391eeb7f5af998c300ec83de68d59dd420d41a8a79c3658188'); +INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'0c63e23ec7cf5874b119ce283c48d7c384a6d151de373dec4fac08a878042d23'); +INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f08e30fae779e3888a5644e3c1a09604613b74de893647f24b0877b14d214ab'); +INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'7eb594f44b42fdf3beb868efa1b9ef889522c59d6b1041d6090b293e838daa29'); +INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b1e09487682628be9c52725e359f5462118a8afff2c8a0bdaf1299b0d848a2'); +INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'ee56421d1c60fb1524691a4879a4e3673ff54db9d0c0f64bda0927b566dd140c'); +INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbbd5f87959bcd54fb3c376630bc7762665944caf815e18e62735ef0edefd198'); +INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'c6e0d5b076004344f97f7a9749fb5de13592c2655f49a845fc452485e94431d7'); +INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2555da0b640666368fb10dbffe9127e9bd562177a38a32874cd9d6b68b10dd2b'); +INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'a6ab125671edf06e3f2f731cb52740863f3c552ab5de99eb6f35902b92b2c888'); +INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a3b878ef16419b047aacada354c8b692ae4a2cf9cafb90b6c533b5279607359'); +INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'93c2101df2e30f15b98acaafd7e0146f3bba6046a5ee95867b072d53cfe833ce'); +INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'281ee6a842c96c8f6847162e9d3ee3b39bfc0625942c52e9f62e7e499b37c063'); +INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'00c38bedb1647e3f675469a03c614423d6d9225ceffa373b5f9771ab7dbed5d2'); +INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'941df8dad23f98c1a034e26db3b135821efbb80b272cdbecba141b193520a68a'); +INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'565a2da071b055b99fd7cb3101c63952c39fb26fa471329768ce4dd7ade37d08'); +INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6cfe43b368030e9cee8c07579dbeb2b2ab3049eab37473541a52468eea97304'); +INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'dd7bc672ae69ddad9af6f85f56b316b74588d82417f667b0d11933df74d59350'); +INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f88a531dd00d04cc0b7a343748bd73eb6bb8e83a5eadfbcf7282a9b3ec9c4d66'); +INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'68a4e1f42336d2092a69de230d10966d7034f94872e62532a9a6769c49964f3a'); +INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79364cb9020ab800b61e9e5a3a3ff61a9604aab5a9fde46e204265d18fb1794d'); +INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'b71dd3a31e24948c312b7b18946fa23e0dc1da01c08d829cfe3f56976a72caab'); +INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15321de8c4e76d1a569e5f1de5ebcbf37455fb02751b83f512f5e435876750c1'); +INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'f8b393e6784936a5a7706d11d4d8e67e9d8c002b41171dbbb68521bf9622012c'); +INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16ee452133acfe45ea32df7b48daa938338d1801790dd52c93d721695521b5c'); +INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'3c1e5730c6b870a10af5ee54321b4685040647d5c9cbffd7677b95621828d7bf'); +INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9127da66c9ae509aa9444272c273466b57f8f48fce9e436cf7cfbc9011a3274f'); +INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'d1ca3796a3ef49816742466bce93225dcd7d1fde02b0d0956fb3b2908ec6e8fd'); +INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a51826fc79b8ed55614643fdca253a67a2a3110e2a48e39d2f77c378ce871eb'); +INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'1051bdc481470bd28d1dc45b415fb473e4ba210f6f3b1cc44fe8ec5e63970346'); +INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c169e13b5e294a8e0252e9bd14d1f51c0dc4d791aead1d28dc8cdeac428fc85a'); +INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'b5605aeed6105dfd5d74c63b10c32d06896da667e71662fbfe5318c99a32be8e'); +INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b385ea93ce741b5b27ba46352a005a0b0441f67ae27359a728dc96b206216e2'); +INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'0bb71a3b2aabda320087fcd69dd34cab107b3c29482cdd928b96323976f6b989'); +INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cf422a0cc44c3a0720e91143df3735267dda998a83ba7b3e5b32907183106e5'); +INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'c129ff3dcd683badfc5cf205444ca921c475a82d6ae4a6f60402509428bcbe8d'); +INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ede8ab316b007fe0ae75ea437f3fc3e1a1cd30baec67decedb25085222cfaed'); +INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'c351fb90cd0d4fc1f9cb0c0756ebb2819f3edadec790c8017d7349a46ec47f56'); +INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84695b7be0a74d046b54be3b871d71d1b3adfb945c843959070d07d9fc9037be'); +INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'6a037d65ff147b07a0bae235c3c5d835997f0e94d0c1ea656ce36e7ec756d8de'); +INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bf444c3d042ddd4c093b7f3d890a476302ca50f3638677bd8c0df363b3df859'); +INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'b194e96e87240f2c383295ce5d8c491b4f99635ca07f0c68a07b671737a02f0d'); +INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebcfd6c7b0b0b3985e3f41e2bd432e6ddab00c33e0c97b76b7d9caab2af8de36'); +INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'48fee8fce667da74f9c52375bc66064df95f3db6624c973d061a8f9a59e64ff9'); +INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abdfa5597beb55cfb6407b6027ce318cabeaccab20cf021360022104b3d0030a'); +INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'eb02a629ab74dad6452d851a43a18d5b7a034c33406c7b8cebe5b04bfeddbb52'); +INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520f8468d214e1314f21e655799a12637ac26584dfc4d04ce24dcdfd6bd088fe'); +INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'b2b64ff45fd91338930c55ad78077b55709238e7c84f3c03d0bf2615c9aa0dec'); +INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1573d1aaac046317d1640e3629d44599b3c0db344a321950bde9f7ab5aa17faf'); +INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'f2b247d938213799e86bb0dbd55c5ce9b66b125ca97ae73179536430447e8354'); +INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ab7bd959196794f58c31dfcde0270f0fe3bfa72ee2e8864126d2050bdc78beb'); +INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'6a769929e9bdcb46d4088aacc0a9c495479751366f72a3b531942b199ab3f467'); +INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf282f0cc7eabc711267a683a487643039dd80718d25979cb645fa8f0d568bc3'); +INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'8acb9570201d6f6527dde3fccfde147854a38cb522a6bc415c733f822a6e6723'); +INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7b7d19a516c6832ebed8445790a0654e22f2aad7bf86069e5c2ceeacd51a59'); +INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'bcf298baa933ec181cdae4efc2bca3b461d41c40b40e0169b62f85032d8bd510'); +INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c5ee4ea2b42d7cc8a3dd7e6373fa02c55e38b0642e7511ce072b87338165e40'); +INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'d1ee71d80d563d577fc16d763b469be61d0e71b260a6c308316536bb10fe0c5b'); +INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d74fa939610bef85050dc71e739e15e4247cc346c4a38711e5988396201aed3'); +INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'9f8766a41a068c176b22900cba464cb80648e2417b40ed87ea70ad02622a6169'); +INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e77d59f1fcd429e5d2a2c0aec6805518254ea06509c332db703c056e625ad7f'); +INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'bd97b7f5daaa9eae781cff5f21fc5d88233f82792f8aac8f49aaa9e425b1e2a5'); +INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e2a372f4fbe14e2d37de767e5359c654cc150d7b5a65358c5658938e1ead47d'); +INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'228023bf140ecc80af850a1d0afde1816af7e4c5fe073d0cff0cd65abb2f3178'); +INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'465e116d3ffa9c62071e03d50d4a1e13996de3801e02380681eaa2a9cb59efdd'); +INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'e56eae7e6a14217c7296e1792bf9f5e7815ef4be48f0cf31c871554e5be3491c'); +INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf0d3bbe38dd9d16b57ec1e375ca2915eaffcd6e8350efc7668f4448943fe47'); +INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'e376f155244e3e47b2e38ef372428e20fd804bfb9c61a5568521ce2ab040aae2'); +INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc0b7348068437eaf707453030b049112344bf02f25afa84017a7dd5696e389'); +INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'196e997e821340b8b2bdceafefc9ebe03421d31f95e86eed0483ac8bfb4ac0f7'); +INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7e5d93450507a4d28c3e4dc4ce5917c6d5a7fa1032e37c632e1e9d58f56463c'); +INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'6b7402bb99fa27874a4403285a2f02886b019700955a0616295b05cd7f1fb97e'); +INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac805a801c03da4b1ea3cf390d8854a75bce25967a845f788b6986a2369d435d'); +INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'95b1e949510b1277ed93497c8849ff1752c3b336d81a2e8bfb4519d0b9557c4e'); +INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46155efc0eba28bec8d32cb8226d73f37a23198cbc99c1bd445c380b1910b602'); +INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'3aa189adde4a77caeb52702728a1d1e674715a414f194914502a14999bb84532'); +INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a34655637f60532c5c7d97e941be105d6b2664ffa152403f48547c2661b68b'); +INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'0211bd21fe905adf32fe757f565a6edc34d92e6e0daac8d4e306f3ec16eb1e88'); +INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2709e4a0ff674606cb340f91a4c56d533468392b0331e2b0c1988f9dc9338487'); +INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e8d3a52dc566a7889c5c4a60f48ec1f991a1ce1871dd64ed0a4b685373aa41e7'); +INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8d3c84f4bc7724ebe7391052eaeb7949dff4fe61d15f06030e4b2747be4b9f'); +INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'38be8572bc2063c38cf037e745be3d3616aeb4ece9bba8bf9d5a76850396a5cd'); +INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942e836e870968b5d1006074519baab50f80dda93d44e5c35c614d01d119b93b'); +INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'a0aacd6a8d16d37c114c837135b197b7a47c067ad8f0c992f4f4b4e8fe920331'); +INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff560eecfa437607176a6a536cbb0a7371dbeaca920a6cb17c906146551b2c75'); +INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'f76d597291de43c14a07040c9b6f0fbd424e0e72ea56d7315a719ef8ebfad12d'); +INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e50d40e3365af2aedc0f8a0b048b4d7aeb5e6e58c2ca031316a1e0ded56eb2c4'); +INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'635fa6adc8ba3a1a5cd33902c90352ec4b0152bdc344e5a70942c2a01548be65'); +INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044aae52525ef4f90095b5a181a72537d3de5d105d1a752973c2e73ff96b448'); +INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'1262b146c96420d4572a1ae74f34a11425bc7a6d7eabc311e62ba736d28e464d'); +INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4481c8ba6363c0f1ec9b0d2c214e938e15d0bdc7171a2e62816ef4a0096ac1bb'); +INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'15a6f1c702034a728ec69cb44dbb8bcee7b0abd292ab9a3886d122301350836f'); +INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e3d8fee3d92772e3ce8d24db13ddfe5d5b38d952b38409ff6aa281313443156'); +INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'851c88c4ca33c90d8b62dbdc3dd09c945361bae257823f737c6784f27a0f562e'); +INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10bf1e4bdc10aa4b7abd5b02a2085d1f3acc053676f548717a362d50417d608f'); +INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'6c81eb71f37e59b7e662db6021fecf5933575f30abba5e58a1fd3f0a04efa0b7'); +INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68680f3c451ffaa3dda20b240006d2d8749d8e6fc9de1c1838f0c93036aefe49'); +INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'3aeb66de0543ea3b63be5dd661766f413530023be4c9fff3d4824103a4f35962'); +INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45768d01bf6166719637b4642c513dd3f6f1ac7ee95fb7db7bd1aa6bb02de2b1'); +INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'51df58c15ac987605aef89e9e0fb2a142587eb41c4aac7fb512c7a42085c60bd'); +INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'744daa08c2727f528343df5907002d3e8f74cd246b80714f9b47a616a67761d0'); +INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'0df6d9ddda9cd88405e4645061dcf23d9d2d1722ae067926df073eb522cc6469'); +INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29145e3848592ff7c993e5cf568a576163ab0ff3a9e0575b7f85ea157d0d2bab'); +INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'e0b0c6b451315fdb54daca7f5f8f45c5e04600072783fb868c4968c655523abe'); +INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f0b9e81a521edb655ba542ddabff05ff95b18943b7762167608b85eda51155a'); +INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'f6283fabfc29c88ed373ebce196d11ad52ecf65befbf90b1311feb61052f9d2f'); +INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'864526d07dbd44776c797b5c017c1284ed25639bd564a5bca838aae094f65405'); +INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'44d8462a1fe2f9a92fbc84644b5e575beb766d9737b153931aa0abbf2f1ad074'); +INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9982851062dc8963db4c7c86347843c0a361ec2d49610aadfe4b24013d3d613'); +INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'f016f2f0b02dbbcc34826e71a41160457d759004c307824ab96a7a0fd083b0d0'); +INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2717f990a88d6806425f8823da0b541c89c43843f4ad30c2149515747c78dd56'); +INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'69a5a3bad82c047f5d48d48485a8a3693bffb6624980300f6e20ccb17f7b6ab1'); +INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74d27bc7976dfcb915e56fa3fdfd8f15fa166cd5b528d4f30627284144011097'); +INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'80a0c577b98cfeab23e9d8012aa69aae2bb9c3f26a465c1a0ee37ee0c8e3e8be'); +INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d6af6cab373181d6c7764fc165bf1db3221893a3c5e13cde310431577abb5b1'); +INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'e322409ca174c2988aaf8301a5d1b2e28ab6d8cacd25b072fe3c3e170301aa80'); +INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'064ce2555cc2be57097ff8de299dc6526261ff5c44591c716a3fa55cb8e9b4ed'); +INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'21f7b04a7414237c75926b29382bc38c80ca5e5a0f0bc40a522c6bd260301f07'); +INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af963b73017ba0002a5481da2a9175c6fd71335accaf771317868f290877500a'); +INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'bcff6cf3db5802b852855de8c2b1a7211c1d7e4f24783748a56ccf950ebfac1e'); +INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1917f48f39f711d35a80bfafc10003525d89730199e1c333a468abf0030a8e1'); +INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'94f72679b9e1dcedcfec27edd47b3532b489dc439fc3aa0b1e24ecb35ec91db4'); +INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede2ac3a98eda4f5b2514394981ad2da543fe49208d0c2b54608d9332dd66034'); +INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'c5c842af36183e2b34273ee4a01ccd3d78a7d8f2bec7b55d7a91c54385757cf8'); +INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21e4b0b797c6d65666938531e587ce399f8f61efad208331ebf8b71c0ea3588b'); +INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'537307138c080542d5c63f6759a90ba883c5795f53ef8855fde3f90d041e52a7'); +INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd3b3bd569c45d9a1d9324a1ca15e85c6ea6d88d7a3df8ff7695cf7b5a7e9ec1'); +INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'6d38878b2350ac01d9156d1db542345521ce4b48a611ef25a9e443e6c3c29b31'); +INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c0ffd6791ad3957f26128e1883830f7e97e1aa2ffe5b936325e179c45d6d70'); +INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'aa35e9aca0eba4c43fcfec2cc897aa0c1815b141a54351b90f3a1bc896accae7'); +INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5163c09c77ae0c6ad92ae298f7b53ae4d452e2ff5cb98adc50c9846804e5c218'); +INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'9d84b506bef5608019dc3663c6eed13628cf7d3ccc6df3bc023980b12866e697'); +INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82859ae6dedf1fe44de5ecf15a460a9f513e89fcc8856b32a5c5099007d71976'); +INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'3ec593244036782c1840c3400e925fe46c169228e0f176972be4d10896f4258d'); +INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b6aef63d1b84768311a5db68c7f6d2ce7f80815a21b820db64690cf6f7d5422'); +INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'e20fdcf3dd182261491a77f059b0c5c4267b08920a4a439d470c79df35472d1c'); +INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b547d119a8d12fa80d3dd3d62d493c52e9ed981301df832a3f720795774c50f'); +INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'b311fbd959b3b55e52b159ca070c4351569c688cb705b492f77b974c8a43b5e6'); +INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c0c8463dfee50b4a24924de567f1960fe4cd5252e13d7752578754bcdbfa775'); +INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'baab490dfb829500eb4da80048423533384f7434602461a19a28cf158a710ee4'); +INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8332906b32caa71af1756107abbf51a178e178096883bb6ae7ddf60c2ec569e4'); +INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'1d71b1330cdd16a46091aabf069c9166b359439eb7e7844d7cb4be55ad5d6969'); +INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5de08f826b05ac3736a8bc0f8d46eec682e42606d58c87263911c5cd8e9fa95b'); +INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'ad54408a484576d17d2b099c8ce668a58a15b03e8f97bff93a5bdd2c044afc11'); +INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947a168e3da5d2e1bee450ca962218c8faf78eece16d288b93b1bb145c5f768c'); +INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'e0c8e9450e811a40205fe7eb538d9d9aee497652c971bf3d194a03e0146ae976'); +INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76aef61c5b3203b470d57476486cccfd6462c4263ad0162f16a3aeb2099cf5f9'); +INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'288d9147d780d12e0dd4b3aa9d0387072f99906c2bc9cb4b110d01e01e8fd6c4'); +INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a4babd5134df984bea588240d63e6a6f42af6d51d63cd597e73f172429b2a3'); +INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'16ad78081e519e3f6aa9ee2ed6d1f8741ffd588e8db0e0c5f90c789d8b433429'); +INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbc3fdc5c80378cee9691f3abc1a1d2c5d39b05f80cf8ddf973c5c0e95aed4c'); +INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'d2abd872706377e0fc99c2c8eaee5942e40e825823235a958c992f6c82f39a96'); +INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'067aff1f440155282082dda7db16e5e840ee4b2f90fae9f117df579a142b8fae'); +INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'ec3a5f773a31f87fb5091a9f8a9945c429dda1763cbdab8b42c64f321280219f'); +INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7ca0088ede2326098d0e810bc553008a25d2dc6ab5dec1bd60a7de740a3899'); +INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'c36916a511174c2da8fd8201fe018101401e8d13bdb7e51503ce2b4bf4fed395'); +INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4615aac517f010d16b6bbb0ec3600ac5aff2eb9c4e51b18a047287953955c0'); +INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'4c1ad7bdaf49f7a035ca8e370460d378f7794ad666c96cf62cd5c7dc2c610731'); +INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8241f611d83e002970970f2addd1f86ac8d3d65ef0ac346666deadc33d45262'); +INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'d5180578bfb3ef2a2cac1b8bf667517f11a7161bda0c2ce6d8d6aeb2a3955136'); +INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d102f408c688ea3c076be721e0606a2df1060b3eb091457861c2534bf793ef08'); +INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'f2797b3a3f3cdbd50d451c944cd4b42c07fe15d7f852f7f901e6f8ff74572ca1'); +INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6178d1818aa2abe4ff3dd8ac1e17823d15749a078db01b265285d812a6d99d9d'); +INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'08f72c66b1599e1b5c2ad561a6a7f55367d292fdf3c02b498b659319b4c7adf0'); +INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a0152e92bf54e38017bd0e3515457d901cd2bcb22486247cff91761b24ac6b1'); +INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'49415db02917d9263231ae7bc2da08a7b9f29ffc37532cdfa475d67e1c2c84b0'); +INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9393c16953ac9edcf0f1ad80bccc6ae62626a47fad39bcde0798f1eed2bd2b'); +INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'75f23a601b5220efc335d18a14724d8a697067e5675fc161f26042d82169bbd7'); +INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'718d538e8db524a533801fac8796ad4b021e43abd151dfd296f72fefc06c52e8'); +INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'80f8ad4737679f999d9ce9f67ce59c83e9cb66f9e736d80cb07799cca24e358c'); +INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3731116753956ecdfb561747b8a53f85033352f1927bde3f52274d6884c55aa'); +INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'474935a9cd3b34f711c9e1c893481dc4c4491f0201d7652cb050915913a2f97f'); +INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'763a9d22a3aff3c35cd1f1b5c9f1be7bddd3ba250d6c474af21e4f7d1fc6338e'); +INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'0f0e04a46efbb3e8f5b38cccc5c34bf7fb2c1de5d16033203bb50e689f79b98a'); +INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72dd27cfe564860a7ab108ec863529df83c779a4648991e8bf78b014a8bbeddf'); +INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'2a109e6004f63dfaccc23508a7ef573e21436ae31f1d904ab5cc43561868cb96'); +INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55bfda5a8be7cebdcdafa0306c462ee2854d564ce3204538f5a52b3fba5978c9'); +INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'12fb319a6a67049c6fe9ecd015ac484251eab6691dfecf4bdda691da424fe780'); +INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'601184f25ed0ad0790dce52f74f0aeb2a5e8e346eb564d53aff39b3ab38445d7'); +INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'36eddb9015fee56764175a50fc4729120be11928443431065e7026cd64c9d6e9'); +INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0356fc94e22ee5b5ca931bba0ef120409b95cde8241c6f6a02b26ec1dfd78ba9'); +INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'a6d686bf8398fca7caaeaf3f624ccfaec5d47e32c268882cc7829042422ee8c0'); +INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'518bdc99280cab3b0214d14fc06304b0fe4478e21cf18e973441a834313039f3'); +INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'dce80b74ec716594740fe19ac4d60a771fc77bfd3b04fa6528fc94ae8b4f6fdf'); +INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa912ac654c72b109738daffe4b074efce5fa89e5115ef761cbe4a6a4aff5a1'); +INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'275192336b5f10e2450fb1a95b80cabe08f0d8d82184d252ba63c4f064a51a9b'); +INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcc3a14328a7d481cd9421a91ef5fe91c18943eca3b3df0eac11194961e9608e'); +INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'99f1acb981a47cc5573616c11970252c47a6ec5f9c22741e8547df776438ca32'); +INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'369542bddcb46cfe146f4aa17e2dcb1570b3c9c030a662670164b3f3b9e0060b'); +INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'5a7a63e351d6b25ccbf8c82cc11e900d6fddfea51c1620d4964c527ba5b423f0'); +INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67dcd841d60878f4c141a78c2e79765b53cf02f6e079a46775d43a0bc034c797'); +INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'658c7cf29eedf2e85325dd9a01dc6b4e986aa48255749ae711c0ba779d8710c7'); +INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67695cb8559ee564ee11fe61f2db26cde91a720238828f28e481698a869501ee'); +INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'3cc16721b1fd9d72c618d62d66821a698258aa1d437841707b4529521a591575'); +INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7184dd79c19a5c393989120d109264e2ef4a8f11c95ae0aa190266faf85d90ea'); +INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'4147e8be9455eca400e7e5cd4f6d7d6d2a3b76ae074aaa106f3dae409b3abd37'); +INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23b20f686956df81b4e56c112c37c45c8ff9c340f828d5d1262b1e3dca1eb70b'); +INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'04672b25a6e7fbc647308029ba6e1a527fa35bcf1e949749b0541fabbaedf866'); +INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6804d7df859018a0d69fccc4078a62d03275f0d8d2648d1608c7e5ce8fae44ae'); +INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'e54d0e60270667d868e0ba17051df9c1f7640ef0200a9afb5a84d27847c7e6bb'); +INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee180efd54ba58277db3826bdab76a0ed0691e9647969884f173bd6ed99ab322'); +INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'5c43dffd8a2d615b43792efa30097c484e961caa4344650212d09e63431dd81b'); +INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3093ec75637cafc964640d6675d3265b6f07ba7de9ac7c5ccbb5536b72653685'); +INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'3c76597342cca10fd844f2d47d7aab49a76254b76d5ba5377c68e8a93b07d03b'); +INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca9f33d7bed7204ffc10713ea5184b35abb8d10f97e215d2717c57f1b5ad9816'); +INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'43478c4bb1c377f71d0ab7d52e9d617d3124863dfd985c22897dae66cbcd6b35'); +INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d093dc2b7337c237fd4cf1d106e3c142f246a2f8c0862724eb3120a516409df'); +INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'72ea1aad63efa63e15fb41726db2f65c2a63ab9137bd801fdc44fc2efa8a8879'); +INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57860f7f7f9766532b4e84a962fc786da1d09b74033ba8887c901b8375718f09'); +INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'bc9bcd78b36c85497887cd6a5232edd39259dc989f41064315ead5b7822a9389'); +INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fda26db1b6abcadc03992dd1b83170340ebe7b1a8301ea2118a73141b1ee3832'); +INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'7492d3f976193353b1283f81f82765ae84f3ac0266d3edc3335e37afb05b5c0d'); +INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad2111612c42af3313a71f8b596de9b8a02eaaff6a9f79c0524c7dddd1fada28'); +INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'d773d5ca112847109dd374b251d459538ebc80816193c4098244989d988f6835'); +INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e134b1f51ceb44a63429b7b12f8b9a2df29938d4110342115db26e8bc8a58db'); +INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'26d05762f004b3ca0b2d37d6041e489cfc46555170a9294f95d03e57207a7779'); +INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'741772c021987a8c24a1913d3e1b4b067ba1d3f4c8369c22ae825ccea542b55d'); +INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'c2aa54a6e05a2380b7f98c87f3867785ced7beeb6a508c0d48844954d060c678'); +INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f0b0a4ac6a31a511adeb23b19cfd508ecc2513bb7c806a6c20a8cc91276aa8f'); +INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'c0863bd3d6ed5f299e60f6c6569e96ce138507ebb9ea792b370d5cd2bb0924a5'); +INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'398782ec1ec652422beedc503467d0afbfb207f1453104c4fa36c3173a60d5b6'); +INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'39797813b40ecfb611cb8a9797687caff4c8b36644a96cee40641ccf7e67b5e7'); +INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2015eb28ad77750efcc10944b80c5f080347e103a18e40bac2226806c38941c'); +INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'989d8ca358b1294428e11a9a33d92b72622b6d978ef2a67f485349699dc4ff11'); +INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2dc1ea03ef71cef028e83a1c5656feb8af82ef2f77eff0dcd273d114bfd27a0'); +INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'8b70a8f16adaafecbe166943c0fa2714d69233737df1b982e175ebc49a699746'); +INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7793a3d0ae048d5c3f85c2349bf487521e853841037c26ceb8da0390ada9eb5a'); +INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'16743087770e29bfe8854b9cf6c63bf3c64d5039bf0a85eb10d93b8d4be5055d'); +INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee0274514931859bc774bea7f4e9412ef4c8d96bfef8f348765773f7d021fdad'); +INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'11160b92c60efd2785cc72c35418f7756410e913538e25658585c13ca1f3019d'); +INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd1b4664a78397bc71cbbedcb4104c474979accbc9993a6e6294d4fa01e5f491'); +INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'4455eb118131a48058b711a6c69ce59f9cc551f882da16d43d8f106ec265a137'); +INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52ba4ab49febadee0ab9de41a5c33dbc02080227d8a622cc7c85ab31beb98e1a'); +INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'083ecd9aa5e2be23021e5d516b792bf454c5fefc9f225d268bf168bf99ce88db'); +INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58a25c42584e1d16f93c8c189282036a99c55a5c3fd8866ef8e76bad1a2e3282'); +INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'bddee76f9bae09f9f53ddb10ac3d351e41e7428590372bd1a3e92f823ce1a01a'); +INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f5097bbb77f531e85c1d6d747f5242c12631b7c7916281823c4c72886fa8232'); +INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'25c786ecb89db4eeda9af2dc72228a307e11604b53be93d8acaf850ad635b6a1'); +INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e4661af5acca55f839fdb4c53abe668f45dea5aec6327f95346dfacbd8087a4'); +INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'936fcbf4146f153ba457b161c2c5ed3a9820d6d9ae43bf424c5490e544e5e1ab'); +INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fddc5ff2079512260a64506f0248d92714a8f76a9fe9492928bb5234daecb198'); +INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'fb72cb1ae0879921b36d9b30ac2f55ca47ee96651bcf5e362e50fb4304a6ae52'); +INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f040185c8241a9c98c50641a1a0f6cc1d434a923f0e6944e4afb944e8deb374'); +INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'c7dd8f85be2e65cb14b71a52cd70df39f17e29590c23867410f713d7fcd23697'); +INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10d6a644dc2b9fc48fc6c676b6fb7c999ff258045614527369794b40544150ba'); +INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'ae8aa8517c348469386bbc872c77b3d3499cf1ebd46a8522015f31d345972af2'); +INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'146171e0ee4f0c2e0d2c42c99b782399d9d116e482284f72ae885fce92f09507'); +INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'1efb178d24b3e538a81b5c4e302f758dc1b74354de2ae09bb203c1f333428b55'); +INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520c8ed12f833da681175bfd57ed55eef497f7a20363b44c8175abfce43a93f1'); +INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'88647d550a16afe94bfdd0288ba5a2f7bf4e3405520d13e5ba83e3c2539af089'); +INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d65c59513ed1f21f3ec2bfd18737d10124aa9ff0fd7b671a6da37f88fe5a574'); +INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'6717c44d7fa8d8297dc42ca9cbd87b1e0b78b97affc761d852352a6a271bfdcc'); +INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb9178d898e05886f17b9d99b65354bafb6223cdc043689f56d43d9f72da62ca'); +INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'043116af2cc35f1bd606db2d86bd9caa93dec65e1cc083cd117896fab95229ec'); +INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12bf234653d2d88dc39da69a7c00b2c7661a658cd683f543d970eda9d38c003'); +INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'56eb76235162507726c18c4051ba7a1c685314c3c8d929ef4bdaadcf5beff0bd'); +INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6c51668aad361a3a49b6a4afdeb8a23d70be5a7f42ca87c9ccab3d61482f3ed'); +INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'1f19af47bfb8421ba1280d4d6fb5d27c443d002fca614647df1e7da0cdec6970'); +INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'091309149d83d047ee70e6dda4f3ea4ca74f2fa6cc206275cd81cf085e5aac10'); +INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'5a985c32a98d4bec6e0c70e5b648bc08a6af2d68b70c5764a5d6eda65988eee6'); +INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca4e7f2b4dc6a223dc1c22c5d33e705a4fec76c08b44bd03946a58a820bdb3f'); +INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'772e5c76667cc718786f68bbc7aaa3c9f3fcee52e2de8fba2695d83ab0d2f70c'); +INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea06a99dfb87892c3ca0b2fe39686731f842eb839c95a1259e09585a1f2e83e9'); +INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'27e192c661d79d786d99db931c5f6a08737eca652b47e7c7ef11a2ed36301e23'); +INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f46ea5e55f8ebe4a54b0f4ecfb2fa39fabaf3c2b1d8175238239fee75bbeef'); +INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'73462e1a73f5386b9bc171d41526fae242bee9306f71e37d2ed7b859d8ae2758'); +INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b38384c9be140e81fdb45e43503c4c313f69024cf55e280abf1b852201ddd9ed'); +INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'d3d2a58c7c41b37a99d7a45e5e20cf1b7f2c4d3d41a7425ae76bfa1aa8c29540'); +INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05dcdc8a6dca39b287b6001fdb4e620c079cf3ce4fad57d7aa1ccf39afd5e4dc'); +INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'822c2be95d5c878bcd43bf442c03f5a888d207ef660665b5db70010c93d643b8'); +INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2753c477d84e83636c7614854c0ba9c18bab66c535914b0b0be7b56564f86077'); +INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'f3f59d5ff5ce4653d3e728e44ff42fe1e11e25a6fb8dfbcf9d5b4899682f85d6'); +INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df64d9da8683ab3c6c59d892a85c109feffc9c8536a13b3fa15528bfbd0dbe77'); +INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'0607401a7355da382188eb2170280c29ae9433c3cbd5bcec871cc2152ed68265'); +INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'862a341a267c891d72754ec86560e37d9eb57b0b3cfc4e624217eb5df6acb0af'); +INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'e3469947afd58b47e739ca3d10a5e3db2887d0492a385970538e96fd88f19b14'); +INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'537edfa3e3d96935ed38c1b549d72c243659e58297f3a7bba3cb478448c3d714'); +INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'ef8f2d05c496884f04030cbd5153a6c2941aca1db9e143401407e1c50714ac4d'); +INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a141d0aa030223f2fa7d729abce7b83c89e1be8df30c7e32b1ceba13c5d20358'); +INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'7d134e7dfd7fc1672c0ee1e110962755d5caa9b2666664be37d22b72215a3e92'); +INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145dd029c336dd222e0bc355f614fff56fb98318288d9ff4df2106ead99a41da'); +INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'f04bd751ca0f172b58afcd0215af39672823d87b32d3e63c5ec1dcf2c0440e84'); +INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de605ca77591296554e622ee070cafad7386851320f0229c5035295306d80ff5'); +INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'a1c3a52984f1f6a8c329f3552f483411687f442463f6ff4832187076ebcc037d'); +INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c179a127d798927d0f50820bf2746585aa79646f044eb0b9586489df920240'); +INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'131999f810c361417450d5843463628cd0e34a92c6d11d4a54aab60fc55222dc'); +INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'236d51f42a250e38d81e5e138282502701ea9f3e16f8cbecc81c3e268720723b'); +INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'716695b834e5d02e190a4b766a396a1c3cbbfaccf47a8f198bd469c9f41aac28'); +INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47695f4ce560cde58e3a9ae973ccd70a0870d4af1295f1b23b7d6f42e3da36e4'); +INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'f39fa01ca279e6ca02ccdc29f8fa833455dbbf96b8a3c2fa9b659a39b4c79dc1'); +INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed1aad9fb826ad94a93b3b917dd202ef0b6fe0783e678b684c1e797e52316f54'); +INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'74b5a91c41bb8ed792a98cef2d6ddebb302c8bd6631fec8dc2eac699837c2567'); +INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc717d003dbaca16920a70425575de0259598c9c487e17d57c6b137a0b3add59'); +INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'f54db505e4f07fdf6cb9fb63fc1f1e9d30dc5b5bc09cb2c504cd2e1c1d2276b7'); +INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65b30643585b8fa662f44c7c30342cf8a530ea9dcf7da0f032a6ee951bb2fccd'); +INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'6e0a3084ab89aa970722862f3f0d4153ca96037b7244393d74b83a6aee2a269d'); +INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9bb47c08d4785e10f22f91ed72db33b8183632bf799c41569fc911e8ec229ea'); +INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'a8e75192603fd8de597dc91f0d324c1c6ec4e3ad960c53389a3695bb3cfe431e'); +INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ef84a3d989dccbbbfb2e37d3a24b476772fa1941c1fd97c7c7edcf1b5b4a524'); +INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'d26be77346b2e3915744a9e9cf3fbce374400817c334b310227a8e771f027ba8'); +INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e4fe1c6c9d0de95da827c9671954190a9b05f39698ebd82671d5d7e0d4bea9'); +INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'4f16ea5c823015195f8e0714013328e82f7f283555c1a36b26e68f301750114a'); +INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad18063e012bac15bb9817169e98ea7a7b4abc25a7618166737ae4a7d29f90c'); +INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'f2447db529324818a1aec859c380ab263c88cd970761dece55b296e42e387a1f'); +INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b7a4b76923d4c894e3767b9b9df5469811078828882bc809108dbdacfc17e1'); +INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'786907378bb6b539d3890c522c2bdd296e01d2beb6256d0ad528e954f2879c85'); +INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a84dc2069003755ed6c0cfd441c2e626a7677e0f1c9224f6f450598e46bd662d'); +INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'e789136b0c862b56bc79b2b295cc61a42a59d718e7f617c2ca4d6d24df3769fb'); +INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17bbfc4d2007e679ad1062cea58deaaf071949f810e399d26a908f228496e6c6'); +INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'9df7f28775eeb70df42745eb3cbce824ebeb6499c36e0d7913965c82ecbfc4d2'); +INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1e6837900e8bf0ae572f8902ff1326f269db08c8377ba600b45c52ffe7b96df'); +INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'9b0272a36cba6a5267a0a00aadc460735f69674cfdfbe982d45b2416746217a7'); +INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145ec91d1c03a812611b1834a7ce23b6b801a6047d0d5fbbcf0a5800633993ab'); +INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'922d9f3dea24eb678312cfa604d055b0d830e5e03c0d377a642d0c8a7374d40e'); +INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d147875d527a59cbcfcddaee89cb9b66460654dd2cd17a5bfb195a08923efc1'); +INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'144655c3c3a6d64b66b197e7762f43616f0511889ab615a69c6ab415d1f35185'); +INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22865a546811743adfc4ed171ab3535c3e3ec06787217d8bd3edb0f38f22abd1'); +INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'8aa47903e47936734072fe6ab4e9ac15222a14214ef1d0540351607d60d2f304'); +INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a74d3b7df8ad4120788e316e692d95f6cb34c47483982b643c032536dc9980'); +INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'39faffa4ec48136bc482297452a4f553354ac51971ca84856eb19b528a7d29df'); +INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04cea19b67e8003545ee72d4f5082f8d553644b4e6698ece1cf9d85f036eeeb4'); +INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'5ec8f01099af8b2dfd94c6e7ebf86d696b234f3dfc7593734fa72a216eaace3c'); +INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21196aff3e5b161327d5fada1290d3b757b3b97d8c9b17c541770cf4c73a4e05'); +INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'a1ed12367ec8edbf61414da74987bdb3c1872c7a65f9153b5a5c9f4516d2d5c2'); +INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dae2dbbf447cd273140c65bd157bae379b30af7ae41c0b257c76ea47bf96b125'); +INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'504a0d7fcfb3cfc08ba3f9d324313476bf2cf7979830e70fd20bd6a7e5b9806b'); +INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b031b5652c751ccb718524b94426025e12518013bdd4ef9a92ad3f3098e3d210'); +INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'94eaccb65b21deeeb531ce4860d63f8e3c7526b477658917e851640420745871'); +INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67a21e2d353d16a2655bca7aebd78b371fbb5f8361daf42ed842f22666a0bb20'); +INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'6415332a53cd4ccee8714c5ed0ef39987bb5f78afb1a915fc1d6a50a14aeacb7'); +INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8d5481eb2eec69ad1638a78f1fc453c6f2503a1eb3988a1464081870671cbe1'); +INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'7d066c31f1ec46d1023982c1e3f45efbac26ea3929571393c5905aca35eb627c'); +INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6a297583fdf5f8f1eee43e11ca9bbad8d36f51529fafba3dd830e8eb6f674a8'); +INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'4e390569011f2173c1cd888a0498598f2936e1a666e531f1a5216ffe192cbef0'); +INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dea87a5372339db424f91e9b858684e91e25bb320e46a59968da5a448fb1cbb7'); +INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'1ccc43555278f647627e7450ba0674d603732e65d16e30c4b830ad45c04e35db'); +INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cca12dd04ee1373b563c88d3fb148f2f9d41542a6b3caea4b585f1bc26f2be7f'); +INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'cabf9dbe4c1eeedbbec59d0b80f131692b3f876587ab94d219f5611b0db318c5'); +INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78e65e247057ef2a8f344dd9755619b01d8caf524e50ba69a446104969191173'); +INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'312289a9fadb25b288cb69d6f96c60e150aede1300df7f6eda41393926c948a8'); +INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a2d79818b7e4b5beb0b931133d4d32525978b364863d7d71aa8c4c2de3b089b'); +INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'30ed99c48ec8722d071bd609c5905cf1098329493a6209f3fbfb2c473fb88535'); +INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e3b689138d4b9b649e100595d02d69b12b6fdc707b93bb2a6668606a2cb775e'); +INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'3bb67fa1dde5d47255d547589522d44ac150eee1fb31a1e9d3507a548f451609'); +INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'057a410678ac10a8a7f3f1fbb5730fd509cc358eb46c77985ee20621df58ebdf'); +INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'bb1fce646415292c55e4ed2cc5753b2311e571013ded8a39ea154066006f705d'); +INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5be8112029a2386c64778c15a3db61d8a5dd51a4a221f2497dc17adef50902f'); +INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'08a258b78f58a8df747708a757a0903691cce350d8a976779621bc4c26753e21'); +INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fca84eb1d50122698056b68515b1e5f745fb7a5e297fe58ebf854eccf31325d1'); +INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'ddf1e0e34f9111e3f7f8b06285872092931e51da5488aa5544963ef4396a2581'); +INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfe56aa04d359c1de7247e9248f50da3c39d13a1501131c9eaa268b04dcd0302'); +INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'740a8a0dc6ade66153575deef1796761608d2de441e577a86e354bd580920a41'); +INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'743e293c4cbcf5a41e72de54195d912eda8b117d3409c6248eaefcb96c5c2d2d'); +INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'325348a4f6d917b902c93eb11853f9c5081daad75fa4ca189ac0ab168b1465c1'); +INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bba14e60d2f6c47e80a83c4a653c6b2253ee0d8ab9c2ba906313cb4c85e4d7a'); +INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'28c9aff73772bf8d51509ea6f328f9c147873beaac8a031daea58b2b2b8dbe07'); +INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da3d1765159f5a1f1d18b145dd54c7fdc2ef4ef557a07bebbe5f72af0f80bf81'); +INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'4683f856105406f32530aa72934ae0e5fc80e11ab88d04ec823975ef8f9fb357'); +INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'792af9f34af0a0947378449af7c2941f13f7e7c37c34baaf094127894a2bdc7f'); +INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'10c2f5502efff9dcefe6a5f84964ec6135b323a9f7bf95b2c43f15d0a84805ff'); +INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','0739c4df82694a088ff5605ffef1250e3c832e46fd52021aa9929af8d7ea0cb1'); +INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','a2e94fc1e1e02f3380d1333dbaf836ed9e71efda883304e087f504386da01b48'); +INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','19e6737dbf959d0c4c34c379c710784ca56b3e8ff21b02432fd0a25c0c6de141'); +INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','e0e98b5d282051ce298a3e29cdab37b1ad2016999a0fa355cba335871dee0aad'); +INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'989c558155c8efd99369281cf3db69d9fdec94947224a628ae65f9e9ed366240'); +INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79f2bed15952af614701c745b20ca36e4d5914ad3c2121cc8b8e399db0879cb'); +INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'188076d88fc34736748d37cbf33aea994ae40867288ef17b7892dc0d8f3cde06'); +INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','174c693e54e8a7e3b14b3e6898e3acdc4faa39d6ef8f6fcd9f24c3be61a7b602'); +INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','9eaf133cf67c0f85959ea776d119a2eea5f62a14e22cb778f78caef26c7dc2b4'); +INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','48c2c4c34a8f852d5dffc7a1a44c0f560150b13acee747046bf98a0d948185d0'); +INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','7a21f74eb29ec41290152ba9e06de7d653ad1e3c0a7fec065e60e58c9d88c420'); +INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'aea27bbb55d21cbb91d700f71ed280398fa0c0902633658d0b42690262d9ae8a'); +INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'997c6d9de685d904bf7c3a031784571891ce436fd13773b603c3d1caf4aebdeb'); +INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'d1f6db9b4fac434d370be8126f888459f557876b72ab042b734a88c931d0ae37'); +INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9e063e0e54ae458a9c4e9d05dbaf4e328f0472c7be06ace4b688286e4763869'); +INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'4239b0e818eb157192fac27a4713e81e5d215409b9d375f998e63f499bd579dc'); +INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52420edbd9ea6e9c9dec49e0de5997c5592309822e1751cdd134c917fafdb57e'); +INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'87fba357c5e996226f7c5d50b7a40e8935e105a6e5ea41bf91efa8ce4bcff187'); +INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46e427fcd7a1a5d8e4c2f8f7eafe4619f7f975dd82c8f6211a60016a25d0355e'); +INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'9f3c1380ced45bd709a85870c99628ab28765283ba6bed51818ce8c73f7060d8'); +INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a5bffa603311b905f4ff5b0ee3116e1e3427f947a7ce9c5c07cae97dbffb2b0a'); +INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','51322de4241d1fc2b3f97a7ab2209b06255530f2f45982e6e6f4b80fd79b9b22'); +INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'4327db1052f4c8d0c2c70c58266298f04aea5af1627c9fae4055bbdd94e31122'); +INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc413ee91e6b38643f6758e251d3915b2e0b02e43bf9bdce2f142dd331d9d300'); +INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'654e42cad455913d8f00534427329c00088a448ca06d6ccf90fbcc17851fc05e'); +INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','a90246720371c9f5759ca13510c9da7673bcdbd1013e9092d93659fb42902b67'); +INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','5e23dbe1f13c627607d4a0aec19835fb5d5f378538b231637bf8c14eddfe4c95'); +INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','d88ca564ebcf4551253ffe835bf08e51213d59772f08a4b64e167ef5ce560660'); +INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'02a73b0af6ff144b34fd388cffab27010f006472d7eefec076d5337b4531e38f'); +INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbb763c7b607de2f75d9312570d070984741e7c096f1112c934765dc0132c5b'); +INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'94b98044cec023ef4c04c2fa85fca827a67713019f16d4b49d81bf78e83618b5'); +INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','91b1ece2262a10c631d5fc8b8fb434be3a770093873772a620f84cc3c666a6d5'); +INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','2883411bac65a84fb059c2a0a62f7feb559c79c1785454eb12fe03651852c702'); +INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','bbf8dfa1f802a00a1fcefe9592b7dc3e75b334b9425fc1f1700bfd0a1ebbc91d'); +INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'c9d3bde8bc05436ba8c9a490f058bc006173f21ead57467aea6581ee4d2801b2'); +INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd16bbc09a08c9ad2b4f5bb999a96c0f1d5d60bab766262fafb424b71a9e58b5'); +INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'4afe016aed001f429e19e2e098cf6b0c2f01f2b642a3e1affb486db876b1e408'); +INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','2f8956e74b2e059909b8c0367dd6500edd5e59bd7df1270079fe37c0e33361e8'); +INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','25fcb041a198ca55be29e146928f49b502a03418c18102b858219463a12eb6f7'); +INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'d11b87b8b455ec37f96243e45a53eb13e44a865914d9275c8de3be80a79f46ce'); +INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60d11b26f4f3d614917511166f40cd275661b91aa9864806e07af9845888ab56'); +INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'e542df9be2e0cef6f05091a2211e51468f344254118acd035fad38df2ab60e36'); +INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8db70722ace56ee70c9e63f16db216cfe1125dac31ead5dc538797d1a4b77f74'); +INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8263a6430182b6165d246726ae952979981332bc717fbd3453b77d01e0715bf8'); +INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','b0e6324579a40247f87dea9363d71137a37571eb7039a1a046a8451becf18bde'); +INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'8cc85d88963ea08974d322b29a833c065feb4eb8116508ced2fd0489182a9a53'); +INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89021e886bba03758d6b0bce278cdf9ea429b51d676cff1154fcdfe8c2241470'); +INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'9353f4676e0cb082d3079eb251a6b155d1536c9e82f932585ac488e6a2c94835'); +INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','03aa69bf3ca82119897ae3a5b9477a7c4ac72b4148af444850b37834c8d33c69'); +INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','49aa378af2a0de50b8552e0c7c3cba1fe15d604df7677d0ef063cef3c168f1ea'); +INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','a9447bdfb3fcf03aa64bf22148c68b2ae6bc709ad0a7dcfb2025d6bd6ea83e98'); +INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'c1d1f8131a18c13373ddc06ff9abfe95d8a182c85ecfbd28592423ae54962cbf'); +INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455ed495ecf3330ef327dc7742a5c0180f6d29b807e9bbf56ba10d84df88eac2'); +INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'b2ec7b13e35cf01e93e982d58e7a67c0349051bba748c92b720a74a55f478504'); +INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29b2c664d861b90d75821fb525d4b85779733d9bd3560555fcb8b74d09e3677e'); +INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','2c69413b213976a4095fa84431155767543593db31b274cdedb536e0d5834015'); +INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29c0c7850bfddcca428b7ae898fe88be7bf53f570eac12c6925a697a7c4554e4'); +INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','74eef0b2dfd51995c7c6d74c9d85ae0c81835f0dbcf6878dbceac7587d3c3584'); +INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b3e30c737cdab07772d9151dfbfa1b5a62e54ff544e6265f0d9ffb0f01aff9fd'); +INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'2b2f3bff123997a08653fefbe305bf9de101307246e895c4566231514147ebd1'); +INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de5106f57a303f7a219d4880e3fe4fb9f1312b53af5dc46832dd4087e4c09665'); +INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'2ee15d64199399ecaa85990d4cb505dcbbea47a0f7fa5b546420d20927cadad7'); +INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d65da0514bd73ca2d76086ca2d152a5596eefc81d51ea781be8706aa853096d9'); +INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','b0bd1b5f1506aae7e1cba5c22cbe7b3ad79861aea66179dfa10786562fdc8d11'); +INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'c2ab5e3d2c55612d69dcdd3125d5aaf1831ad3000f8cb5d5d2559fe057754628'); +INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b7632227d93cfd5f1659c3c28688cb9b5a4187368cfc8c3eb5d32ccf598753f'); +INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'f9a88798697ef65e8778c190421261d33ed26577341656e76f9e865b8bbba62e'); +INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','8b81dc12a96622fd1e5ecdeb62f8cfbda266950e5a08c4212f39dfae9bd2ead4'); +INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','2e719a6b4be4c8df66d77f22cea3f2df51d62295a7b2d6dd64649e78352b80d9'); +INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','22a1bf9c206307a5735f4c6cf34a7262c10a44f3e02fe36a6f26bde8818dc7fd'); +INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e99abe801cd9ba296c1a5d02cb1bef31de305e1dcf40ec0e8c4fe04d00dfb10f'); +INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','6933d8bae483e2dbf7e48b35597bef62ab7488faf6a7da2cd483579ed2e513f8'); +INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'140b6697da862d76795d035301edc871aeea1b2144cae55e6dc21989452897f6'); +INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed9684834edbc52cd92115fd645202ed352cc689465f821c1d00931ba745884e'); +INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'375d5b75e9401201c3cfa649c6737051431c04d4844f6b5dfa6638f350115ccd'); +INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','55d0c3ff21648bc078ba0f988fd4ddee6ecaf3d69d91249c487ce15f8c1e93fe'); +INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','81dd60665ff456a7ad3926d74039941e977cfccc8336c6ebfefe3aef08ba4e33'); +INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','24b5edfea2b3f132c97b45a70d2e4ac627a45dcabe8fa61f34ce65052364ec1b'); +INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','278ffe6242fe844526f578dd32df5eb09d3733cf347f3d8fdf0257dc071ac454'); +INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'b3ce6c4059ff913703950e12bab024781878b50a8357e4f6689a1d3b9935814f'); +INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c2ce8ac901907aa556ee787464b755abcfa225e339579d400752fb08c1c2f9'); +INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'7805a262fca1b0cbfbf8890bed02645e2c74bfbd29f884cbc63296902bc72445'); +INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','d64880428fc4cb1892fcd94fd920c8713c1ca407ac9e96df29f1e1dc90938ac8'); +INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','b8aa933061666576279d5a261e9925986d6dc04c28d9b94268fafecb75dc4b1c'); +INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','38ad269b0bce08f4dc625ce48d37aa650e92d22dc9fbc7ebea5be7b75c530191'); +INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','5a3567caee5fc75ff196a68f42216c98799de6c25af93ad84770034120601a4a'); +INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'8b3d452311fdcd9ce202f23d99dd2e1546ff795f06c4fd71dfef3564e9802e19'); +INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9d8a4da65d816e5d1fbd566746f7c93bce7dcca614833cdbe64a538a8b20bb'); +INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'0e4553fbcaea28b4ff1d5d5afc76ff759a38618771c2d0bcf1b8ec46d87fdce7'); +INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','e124ed9a91ce13d69b6f7c0296753f15943126833db83f43345bcc61395e329a'); +INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','5c378d66994434498754d4474b56b199717e38198497e23a5a758d9f3100c41e'); +INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','9e1f3f5d8ad3232c2d96569904fa43751a0e91c37391afd4a1ea008e044eb8ad'); +INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4ef09cb8d447c7d5d89876870291bb6d3eddd1271912b76ed102c169122a106e'); +INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4797e729337f09fd2e50798448fb2f550d2ec3e17fd847345fb523afe575be61'); +INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'830b461648e54ac39aefc077e93f2f244e25a1459a1140fa1f5ab01320a2553a'); +INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5ad6dea0a8dfe8d71ee6726ab62d77c29c424178572fd36d6d9547b405e505d'); +INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'a7fbc58e4979753fc1a3d09910e51a96c804af2d5a5b2adfad77af72d25a6f48'); +INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','8c11643a14032fa25f203c04db02ae293ff4451522359f5db2ec8fa84af2c829'); +INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','e4eae522a194e874a3c28df059a3665fc157db778e3f6e0edf28c519a328260f'); +INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','4ea31f1e918c61ebee3879c306e20bcc12424912565bf6523a78abc5de8bee85'); +INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ac448abbe8cdf694b27020c25fd4e9726ab5e4f2a3a2f544fe422683cab80099'); +INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ed811f5cdf70c06066b0393e8f5da43a7772398ea1ada8cfc7a9daebfba9a55c'); +INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'61e07ecf01fa9096c0e36a9f093a35538edbef348ddce8312355c2e8b0b106ef'); +INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07d7840ff2b17b72d39740abf7f995aabcf1b6976b29e8a6455a2cfa2babd3dc'); +INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'e81e86c05e38b5440448a37363f2bd65bc888418bee40a81504ff19336983863'); +INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b22c5137782dd205660cf3a350afa1a6d25f86b05a02e23e622ec7cc70c37799'); +INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b6a36225ef6f14e0762544e25c96f87686bb0d5d56e3e166119df377b80034f7'); +INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','2f85790bd3b93ff0fcb88967c683445ac81a7c2f94eb3adb485680cb48373093'); +INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','5df267db63bc6bd6795671b9a06d4e244869a4edc9e984cf74c75ff6a9551f06'); +INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','6385d6652354d933814cd087b3f500fcd8d01de83d4844a26ad3746e7b97141d'); +INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'e4a8266ea5b9f8395a9a6d06acdeca74ce08af8edaff0bec7e5eb63517b5239f'); +INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32f103bbc4cba8e3d4ddba74e249d07bc0ccffe26e249b6e869a89b6edf6f725'); +INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'8cc059b18fcb061b8011d64363a9352b35f14e6c99a9c99a974305f69751b896'); +INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','dc4a12ce05a0109732fae42394af626545aee14fca0cd8cfd7380246ac0cc4c1'); +INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','93d99ee2945e66203aa7031be1f22f6221ee2dd4e7abf419cdc79429ef49e627'); +INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ad5b97831ad3447712847e1cc33c95f8d26f240f1aed729ee0d781f742ce6a63'); +INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ead56d663cf0a731b0534a0d0a90f2b4102a911043d4d82fadd54c5b4eb0a0dd'); +INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','23523f9c0be3e7086e64e60dcacb0874262b85f5c20a64d9d9890adf77d43c93'); +INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'51b4a2fa820e516555dbf949fd1e7c08ba3c972bccbf98aa1d4769af9e4e0d4b'); +INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d483acc65a8afc1c8df9fe13c0ffc4c0aa961b13d34be2b205a5aeafb38ab0b'); +INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'038edc64dc9f33e3e3025707adfbeec7e69160f2d416af7b8985eb26814bf3b3'); +INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','681d69de170d6e916c2cbcb765d10ca301d1d37df2d808f7fdc141e23bc99a21'); +INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','af1c038513bbccb7f1534c4da478782b64bf1c9fc372c8e5c70e8a1a0f3b4593'); +INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','cec502417f98df44e8fcdbe6618109fc0f1aba2825c91ff9e357d0e17c088b79'); +INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','c0a601a9e14f5644b3f40434cf7f5c1ffb7f19da2c26ca7d7002aefb13e6485f'); +INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'3a3ace40af1364342228ef64500780e7d5624d3723bfb1083823cc21eaa9981e'); +INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40ce0a6ff3c55a6b57e623237baa42321d035172e942ac11684037c941171247'); +INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'09b826ccd29db294a46173a808735c28559d7d3332cd159c83df4f6f45363874'); +INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','dad4537919932e4b2e105f60646099439ce15c0fa16b3ef9d67f994997ccb787'); +INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','06de89ab597c41aaf8e29896a0524a45c69459d339cd11f43fc1d787497a2352'); +INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','2ee3794483f6e496f21cddfff7fa6313e6dd21c147f78f3dafec27b3902647d4'); +INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','51915774e48410827f5df365d0f7366e3989f895cac7b45565a77a95a79a3567'); +INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','f44ba9ac4612327a02c51ec97a750cb210ea4bae1925e74262d69e47d9fbf58c'); +INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','03c546607baade42816d44358a6ac15198778d57aa5a92d4e4f1724bf13a5728'); +INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'b7d44852927e24df4321dbb8b04b903e686c1f17b84683c6148fb604ffcd3c87'); +INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'474a77a500aa600e4bc9c67508a8b3de1a070434574b87a9d25a8309ec05867d'); +INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'548b46181af0c946fabd4dbee31b85f9cbc482fe518da8a03bd6cdff345cecc9'); +INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','d08401b431da4fd05f7141826e06b9b6edc2f2eac7a80aa14e2c75a92bf3b731'); +INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','92e7f9f18a34ef2523550b1c9e71b08d674719c0f3f19638dcb2a13190eb522a'); +INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','5da30e150c16827b6a48d657901f9c76b1b5e3c88f08000c56efa1b1c2e2346d'); +INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','e40b26ca73ad0c30921231342077eabf9ff18d7a0e99ca5b8be35f16d4ef4ae5'); +INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','69eb4885bda1ca9cf01db3cc4c89e5957da1641dd4a3c86cbb2a8142dee35803'); +INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3b0458356a2d03af89e8efece607ae0cf0a4031d4b9abb6629cd48d2e4fdf324'); +INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'089a79f8e189b0b30ab30fb32247d87fb75ae5f7be5e95afbfaa28236bd7a22e'); +INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fe72fb37d670513f545c9999f36f4d234a18a2fbafc1b6c812d571eb6157194'); +INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'b43588348ea210a11e377d3c70afa2cd56c584658eca5e4e7d3ed55fa9f2b976'); +INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','58cb9461bc0d889ebcbc3031245c3fd40468c9c7252506995d8adf4739d269f3'); +INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','2cdbbbbcdbdbba080a44dc45921170a7fd8e3b99d301a858f41abe866accdb25'); +INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','5c6503d88ee1450f6aa0aa13aa8a2215f3967bcbdada0e535d4eab79095be0ae'); +INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3f281826ad154629c47194ad75326a52b403e0fc0dc5618b2b5aec3f0cf4083a'); +INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3577515ee92f2a5d1c15ef39a6a845e059f57690b88b04feba62c6dfaf33cbc0'); +INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'a9409d65f16728bdf19aad8e066f5fa1b54303ec6994196b4bbf8b2d6ab44f8c'); +INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3318a7245e093723ca11cf73652ea9a4f410ed5b37544108be6e97bee4b7f800'); +INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'0bd7ba3f90b37ab1cdedac6e0597f5d1422af7e1cb38dfd3669ae5a51ea657d7'); +INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','aef1ec7c14a6be4b4fd99e33acf023e4a52dec6a2c66e5f4f39ecc1d3afaeee3'); +INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','b0d0ab9754b61d9fb63eee90acb96f18e6c78a0a2c4f1f935048720194ffac7d'); +INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','fde181f74b5fd7da901f9463cf0a4f4b8d56fb2e93d37a2c552f58481a2758ca'); +INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c6dd3c2ced8fe87a761c54f7b2a5e4ef0f53062f4fe365af99536b912e23afff'); +INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ba3a7011f1de3fcb8cb951cd3c607a8e464884bad6b8d204e412b83e9726bbc3'); +INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','91bb753e5136c757b48d7b865426d8a2e11ab1fa0f84ced6695fb6cf6c1a6f1e'); +INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'7134047fd69370a504a667f83b09b68629fd2d9be748c95138a404e99b3e30e3'); +INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e665bdb61f7e89bd9bfa8d9b85308c84a89e846a5d6bd22f9cbd882fc77cda6'); +INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'aad52d1e230229d875080942ccf61b01ed73601d408d07a3ca51884a3c64ffa9'); +INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','26b9a011941780ee87a02f03b3faca5c657f6c83f15777d4dc4de6640d887e57'); +INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7f5d449b23d65bd3a9f04a5251fbab4485c60aa2c3dd82e85128667a42240942'); +INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e4b59bcc6416defbfa6cd7eb4088109fe29ef9e80606f17d5474823ee20a7657'); +INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','12db13644a58f885058aafead3ccd7aedb7e28c28c1b3c24119105c91a182924'); +INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ce4f3df23178cb3071b62b7e93238902c7efbfbf8522634bd6e10616946f55de'); +INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','23d2f1594063fd9de06cd1afb225527b5926e43c2a409ed16b54563c644d6825'); +INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'13d8d6def32619d8814c5b059aff533ac118873e7cc66a9247e7d35c56b4e40d'); +INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de258cd8ad734c4390cec947c6a29631009286cff8bd97c162ef69fcb3cf804'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"657c5843507c313030","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508,"utxos_info":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0"}',0,'NEW_TRANSACTION',NULL,'40189d3aa6b2b5fffc0dba9478c4909440ae7b3a6127578dbcdf71221369643e'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','41b769258aea3555a9573b5aa50512049affb70cf06d7e8e76d804d60ebca021'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ASSET_DESTRUCTION','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','a841258d7ac7ad6eb959c75a3f0887a1bd5d3cdc4a230dd95f8eb690ebc3b8aa'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','3e4faa82b80b52912a7d0a78c5087840f995d74fa7352a75f975e1d9ed8ac99c'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1295430efd8fc49c1f1dbf842f12081d34298e8c391ce68f53fafcd7fb8a6845'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','440ae37975a9a0e77670738e2e822a152e290ade446d4f0ae14f705e79ef1513'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ATTACH_TO_UTXO','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','59e8466cc1d6ba7ddd255fd25c6f9cdf4474a9a279fd0574059368a34d7bd77c'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'TRANSACTION_PARSED','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1c47511b1a00f8649bea976b65f73a2377017fb17590942e0091777d0de01fda'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb","messages_hash":"072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c","transaction_count":1,"txlist_hash":"bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160"}',0,'BLOCK_PARSED',NULL,'d2629645f6aa3811017ecdea5645d91bba651aa1baa541716d5619daaaaea241'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b231b5ab7c971655219cb735a8ad330185c6d98bca83cdd73e430ef16484037'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"657c444956495349424c457c31","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509,"utxos_info":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0"}',0,'NEW_TRANSACTION',NULL,'af6465607af0d6fa2be32333e658c87f5df64bd9735a35a900a012d5b8113e28'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','6a302f284aa2c92002444f27bd4e60ee7396d149465850e7fc99f4bbb413409e'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ASSET_DESTRUCTION','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','8f341166c8692b21471683ba7b55907dab24e006be24ed1af0c9bfc23eb73ff4'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','e0cd9b228b17ddab383b7041233479aab40947c71468df5fd591cc5fd9942211'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','7764a34696a2cf809042f1bfd4a14eb0be7d88aa3f70736ebeb56ed68267c34f'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','216c789bfc932ec2a8bcbc1f42792cdaa7cdcf58f01b87c920046df39a8bcb60'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ATTACH_TO_UTXO','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','73630cd10004b65a0f5d9f43c0bc5881c1d846633439b44b420f9699ee6f1dbc'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'TRANSACTION_PARSED','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','fa06541a3220929312ad317fb8dc4c06f848ced4fd8b160d14f6ac45d3bc0c05'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31","messages_hash":"9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4","transaction_count":1,"txlist_hash":"a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9"}',0,'BLOCK_PARSED',NULL,'9678a9538837a267d48a7ef1aba63439e2c35626a1f70699533cb3acf0cefe59'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc6cb5f16c44801263f2fa247ba08cbf8df197ae4836076dd18d8699fb6e1134'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'1e5e33abb03bc4f8996bc3374a9fb0485804806274ca458d5aed351c1a84910b'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c61dc4571d8bbf06879c94f4bf286c0bae7d8866a759aecc62f18f4746894949'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25235c50f22b2dbd58cf65c89177c13a2da2c7f66c528e6724c3b52783f0c2b2'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c2c58989167603be25e187864a5722ac5e57c2d11cc3c6f5e2760d2040538104'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b8a68feadcb8197558ae61da55ad065e677fc80126838101a5224b5f453481b7'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a78db4d6355477861351299d27b22cb942e31ded46f392db8148f3c0d0bce984'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26","messages_hash":"3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2","transaction_count":1,"txlist_hash":"88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381"}',0,'BLOCK_PARSED',NULL,'6fc1dcf7b1a79eaa345595dac82191474af13bed1e586d2e1d9aac6b2fab11c0'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59416a3274cc33dbd86f81271bddbe3bd344abb692b33d2759d919da7a8371ca'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'3946fd5fe7bc2434d21875dcc0934b19d2a75738a9de088702fe0c9b11113e01'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','8c209bebc10e1141851040e9fbf6344910e9d3a9204b1d606dae9e1e13c9133c'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','e5eeb79cc84a19214216a1b5b080f90848f8346a475daefde3b3aaa5b347bf33'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','9b9d78e92a0e5a0fb34df940b73074d5db7795fde3937454a0006c019e0920c7'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046","messages_hash":"dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677","transaction_count":1,"txlist_hash":"fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4"}',0,'BLOCK_PARSED',NULL,'bc5bcab54f83764e93e050c513cba3635a48ce7552c307aa69a8e7d3532ddfae'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f10e16c35c0e09ef85fda55c814f2302478cf9956bedcf1ca47fdd7825a67ddf'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3","messages_hash":"fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087","transaction_count":0,"txlist_hash":"57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327"}',0,'BLOCK_PARSED',NULL,'6d15492b17a9f91df4a6058732786632ac961be855953bbfd1d4ce25ac2dc450'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41769a3e3e2c11c2839ce1735486f92083665fd26904409fe5e8ad07985c27ab'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5","messages_hash":"2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc","transaction_count":0,"txlist_hash":"5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9"}',0,'BLOCK_PARSED',NULL,'98cc42d0aa64a93d54413d942f62bf6c92420f9402af3f1ecfc275ceb4748ff3'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b30b6a5e3c6a27c552028a2884baa9ec13dc0ee429d6cc4950bd1344dcf6d3'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9a79bd7a18a72722c035c77fc57ccfbc3f91b00c6d4da47e2cfdb5f6bddc76a1'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'93832c9fc472afca9674a31745ce2cb8d49cf9ed2bb8127d875a5bbe49e3a4f6'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'05fb1228b5476b484ae3cc938da689c3e4caab604e94fe5d44a406973f4a5e95'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'a361939ae25193e65235dfc27b1b682a09153abce6786df5131974554a4e7015'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec","messages_hash":"912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7","transaction_count":0,"txlist_hash":"ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed"}',0,'BLOCK_PARSED',NULL,'159db4a36b5a0da7d78f7f805239e66f92cdf2d9353a5d3b86e54c37c812f67f'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4d343e151b987dc6cb3f315bd8559d6ddc5f3aea4204cb0905a214420019902'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0","messages_hash":"454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c","transaction_count":0,"txlist_hash":"deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8"}',0,'BLOCK_PARSED',NULL,'174eb2be50e64644ab043c3d9204167390489a7072710331b2700797a44b5036'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f085571a79437e53c1b4802b1ae2224ffff3df7a285b26b0502f291c40468bd'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868","messages_hash":"c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798","transaction_count":0,"txlist_hash":"3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0"}',0,'BLOCK_PARSED',NULL,'0b34f541e4e2bf9b995863e5393a8ef2809f5f860e3220c57e1f029c757ad7ee'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb53df583ff93842fad024a1e38025fe1cddbe5f00a81a12ef42fdf2cf563e'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc","messages_hash":"87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392","transaction_count":0,"txlist_hash":"12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f"}',0,'BLOCK_PARSED',NULL,'22760256d6e3dc90517357e5a23e7627a27653a74efdc5232ec4587c2752d202'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2d929ba7aa948c2e8e43cddde4f43bad034a6dcd1466ad5a800e7e57790fa62'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4","messages_hash":"0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d","transaction_count":0,"txlist_hash":"f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e"}',0,'BLOCK_PARSED',NULL,'38b02763d65cb7583eee29c6b140c2fc2f094c7c9a789a73f04c2253b2776f12'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efc2fd09ba6ce0b886e6e21c8e2172fb231d182c6d333aad4dcf273bc52ecb2d'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9","messages_hash":"f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51","transaction_count":0,"txlist_hash":"2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5"}',0,'BLOCK_PARSED',NULL,'8fd56d2ede04e6329eba4c030faeb4419db543d2b7fc8b5fd1edff95519c4a17'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f809034fadceee042a9e64736d0b950ef36127b69a08159894eecf2e59c86cd'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83","messages_hash":"18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456","transaction_count":0,"txlist_hash":"b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659"}',0,'BLOCK_PARSED',NULL,'4c53ccf9ed509f1b00a5e22eb766440119338946abd8a1993934e6049e1e6600'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43cc92f61a33184c4fda3f0ddf846da35bbb442e0dc77749e49226b0a917d196'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'89357a1cfe2f0e417b38165d8dd05e5637b93668ac705911c85fc7ca29ac23ed'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'d974638b0e8649dd7a05d60324af5cf50c280de2f9d6ae8335b9132ff34a6ccf'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b0704aa240c24125f4493e3fc45f227922389ab7c714bba431feda9de079159e'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34cb8da66e487cc511ad20680c43f3530a6ebcd2118c8ef9c075ba3d3bc793bd'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'559b2f40a02a8b8da94d4fd7c27aa6bf65aa55b074f7d91e6d6f64996f367103'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83c3560803bc69000e9074ab9e2c9bf2efc75c04850ed0318e3cf7c4bdeb5d4e'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'e5a429c11129a9375ce43752a27b2ee471efe7fbc5d1a37452392e02c7da3889'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8ec84a8921e1ec43057825e387e3e9ea8de4984940cdc56b71096ef2cd50f07b'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'69e9b3c9a5c0b7930e6a63e9c0dfc976f6d415cd1e55041b6ef1780610ab682a'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002","messages_hash":"fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599","transaction_count":0,"txlist_hash":"0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673"}',0,'BLOCK_PARSED',NULL,'9e5a3adeb9eba7d1e133b2c5812d166d6acc84731bccdd77c36a550ea7719246'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd2168088bb7b799efb0c044aecb0a6e2259b2a117f22a4807a24bf9ed3ff39c'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e","messages_hash":"c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae","transaction_count":0,"txlist_hash":"97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0"}',0,'BLOCK_PARSED',NULL,'f921a493a94c7b378dc6a0a5bfc72ad68b3b4025343d70a67a5835935fce0486'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6184730518b9c15c0972b129a6c4287457c103374bb0338ae26bd16d998ba3c9'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81","messages_hash":"7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6","transaction_count":0,"txlist_hash":"37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead"}',0,'BLOCK_PARSED',NULL,'8f0347f4927f475ff2ad3be8692476021ee77a4fa073f681b878b44d42648013'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba33fd621a6397bdc1c58f41f5af2252abe6882cb31c1f7b647f2e1d1ef6b3a1'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840","messages_hash":"5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c","transaction_count":0,"txlist_hash":"324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333"}',0,'BLOCK_PARSED',NULL,'9cb8dd77f9dae2ccafd6a31f7eb1e7d4f39f5e36d6a081ba6742ab0e0c926c2f'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8aed22222ba2051631f3127dcec9c590b898c5bc0de522a5b0b7adb2d4fa1d8'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97","messages_hash":"fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f","transaction_count":0,"txlist_hash":"2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f"}',0,'BLOCK_PARSED',NULL,'931ae73e302bb74402c956ab3c4fcbdbb5f97c8ce914a4f955a7142bcd961076'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa69e6d6619062f2463e79f0fdb171443c709fe2bf275a07cdc5def79516744a'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd","messages_hash":"6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe","transaction_count":0,"txlist_hash":"de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f"}',0,'BLOCK_PARSED',NULL,'534228770e1dd464cb7e8c17d7550a282517a756eb378761ef06cde56bbe37cb'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b96a840bd4bfeaf4ed4600a8dfbd565740634b2de257434df5d965de916125a'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855","messages_hash":"7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d","transaction_count":0,"txlist_hash":"acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373"}',0,'BLOCK_PARSED',NULL,'99b986c2b627fae162c9d8e2648842aff3a00aa1af1d1c8a08eca887daa6b997'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20be16c569014e1a3d211d221c91c888bd70b272ae901cc5ed2e12b5b320fb1b'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f","messages_hash":"989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123","transaction_count":0,"txlist_hash":"e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283"}',0,'BLOCK_PARSED',NULL,'4bd0adae6e8743349e164c3f50c8623df9b385abdab918cd97ce595d007338dc'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd9b4599612aa14b58cc6f90a21b17a02976e1b5794190fddbfa62780239ad00'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac","messages_hash":"69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7","transaction_count":0,"txlist_hash":"ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c"}',0,'BLOCK_PARSED',NULL,'8cad207f38bd9d04fe437250ee9913c0cc6ed9fd51e9eb3bee64213923e5dd71'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10ebc7b843138a88e9ec35b1d4cd3aa645ccab9c4ad89ac001e5705dbc2c2a03'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6","messages_hash":"bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92","transaction_count":0,"txlist_hash":"d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a"}',0,'BLOCK_PARSED',NULL,'36ea6be7c35b3828e0ae5482b2bc8320c4e90dd25d2eca47e2baedcc2224af85'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbfd15e940be58d2647a267e9410078612f74b9d8dc9410db11da351183c0044'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a","messages_hash":"70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3","transaction_count":0,"txlist_hash":"2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5"}',0,'BLOCK_PARSED',NULL,'f915d2316da02939a25db99118632b1683cc9908db3160cc93bc8da9aae3fbbf'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9667cbf006d947a0cbff5883472443df0fea8dfb5c103cc8e54f42dc61f2907'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff","messages_hash":"942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902","transaction_count":0,"txlist_hash":"b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be"}',0,'BLOCK_PARSED',NULL,'20c0f226fc9694440886cd8356087643b5e81a59f24443feb976977ec6f01df3'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49f4d90ea9f2906b48afa8f0d25d9c34cd0cb7e102c7362d69dbec56091bb8fe'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53","messages_hash":"4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616","transaction_count":0,"txlist_hash":"6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f"}',0,'BLOCK_PARSED',NULL,'da64c018b2f552040718185f36e9fde6cca5e1e0a3dc986bc20b41c9d551ac3d'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bde28fd698f0744db660a83ba521180bc52382602b6ec475b8828d649ee518e'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1","messages_hash":"6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240","transaction_count":0,"txlist_hash":"c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3"}',0,'BLOCK_PARSED',NULL,'27413698c6dfae3aa142b33ab2473e86a64d9c179670f36796a8d9b93f035b4c'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc55d9c7dcb61ce749d45daa2efd446951e60723dcfb1a632f5b88505326a6d7'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1","messages_hash":"9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6","transaction_count":0,"txlist_hash":"a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76"}',0,'BLOCK_PARSED',NULL,'42a9f244fadf298eef10cc6bc056941a71a9e6384399951587f23e67bed2625d'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7948962501b092597137e19d82fb733252ceecb1a69e3f4eea71bd26897b159'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede","messages_hash":"bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2","transaction_count":0,"txlist_hash":"da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d"}',0,'BLOCK_PARSED',NULL,'b2479703e2f62499293ad3da51cb53b5124772cbd008884659d2f3e8a006fa64'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81904b2a14ade2fdb363bf78c07ad7be7cecec89cfa5bf37af46eb8b18b6b490'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114","messages_hash":"a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f","transaction_count":0,"txlist_hash":"c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6"}',0,'BLOCK_PARSED',NULL,'e9766f1b5822cd1f38754261eb0f3c7b2a49d29ce92b0d68593e7f4196f5263d'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e6601821ab4624cb5f76747d2058dd99f15d81a6f9a499ef749649bd12d9063'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4","messages_hash":"4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81","transaction_count":0,"txlist_hash":"1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12"}',0,'BLOCK_PARSED',NULL,'e5d28800fae35023dc91f36b5f27c5ac8a0baa40f0140566f420c7336f13d291'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c1b18714bcf50efbe89b8c85fb825228706383606ad90ce1304aa6732fabc38'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf","messages_hash":"16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257","transaction_count":0,"txlist_hash":"9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e"}',0,'BLOCK_PARSED',NULL,'21370c180841a87bf5d5fdc3ef65301303ae583047bbfc187eec1fa7a6170b41'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bb0917efb321ead38b8d38db52dd018ceaf10d934cf08210e650f63f1a66c76'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e","messages_hash":"5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88","transaction_count":0,"txlist_hash":"3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419"}',0,'BLOCK_PARSED',NULL,'1b46861beb97babd42b4f9e52d17b770ba06ba8492f68b3590ebedea2bc9b067'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f270b773b122b92998d394519b9a86b8f7f350837f5e55202f1a94eef7b4c54'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c","messages_hash":"b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd","transaction_count":0,"txlist_hash":"ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1"}',0,'BLOCK_PARSED',NULL,'77973be179f29ea78958d6a7a7886ef2bb5af1d29f1d0e2e48be05733d8335db'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52944f721a2f7b5c9c6331658a109c86f0dc04963c9ff87a37a9196560c483ef'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083","messages_hash":"6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233","transaction_count":0,"txlist_hash":"cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380"}',0,'BLOCK_PARSED',NULL,'3160cd1a8dec5b50a4879b4512d60fa6e683c3c2b820773545363fc3067257a0'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61f8c28ddcaf471a0cb703a4e7d24601ac624fb6d7a6c04c6d7a9153467b859f'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a","messages_hash":"49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5","transaction_count":0,"txlist_hash":"23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b"}',0,'BLOCK_PARSED',NULL,'a41aeaf50a15ad6c70cf3d01e0d5784ef2afa280cee0b7d0a9baefde06c7c7aa'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d48ee1d55826a9b1f406221548f08a041585fdccec1786cc9ae605207d8cf86a'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751","messages_hash":"1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545","transaction_count":0,"txlist_hash":"1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0"}',0,'BLOCK_PARSED',NULL,'1c16d768002c5b2325a92f73a804a07ee4a5c869d7700a8fcf9e543b3a02d683'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d847c511b5b885292e5b0d72e3f92e81f0e5376879767df3599abf549018c7f9'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4","messages_hash":"2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367","transaction_count":0,"txlist_hash":"a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c"}',0,'BLOCK_PARSED',NULL,'05ddac77de1cc4a50b81bc2636cd96e560ca1ff298481efccbae7774e88c1971'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29d415acbce2a633035df169780378813c522cfd043ebf5ee36c12f2ac635413'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c","messages_hash":"5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf","transaction_count":0,"txlist_hash":"2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce"}',0,'BLOCK_PARSED',NULL,'570a9151405aebd1ac361d5020d5a9c1c19c489e5cd78ad2846cbe516a0781e7'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03b04f919e65f2892a4025cab3882d235f2cf4cce2c218e29da58f87cae2190a'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a","messages_hash":"4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a","transaction_count":0,"txlist_hash":"3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3"}',0,'BLOCK_PARSED',NULL,'a9dc370ea27654b4068b7d78a80346d61aeab8401d9320c87bebc2c67c04b417'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871f0ac4f29499442afbe588bd68437d25ce4a835d0bc9a7e830173cb97fe984'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e","messages_hash":"b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30","transaction_count":0,"txlist_hash":"3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d"}',0,'BLOCK_PARSED',NULL,'58eb4b84455197303bc293664150f4908f710e3a9022aa6461f1c42b5b91733b'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514f7b67fe26bec41f0ce91fbd93c1c95283a304c06f1c1066850a8d40f14e4b'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14","messages_hash":"c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd","transaction_count":0,"txlist_hash":"cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db"}',0,'BLOCK_PARSED',NULL,'060575fb5ebb7fa1ce46a045ff4fee222d528b2427680c9c1646cf21efefb093'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fddb6a18716b8e8703a3ad4a02eddc3d017b8ba3f5df9eb7f3bf663c47bbb76'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661","messages_hash":"489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0","transaction_count":0,"txlist_hash":"7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801"}',0,'BLOCK_PARSED',NULL,'73245f2db364a98b7bb030d7bb3982ce13d14e7163575689b0525f249055406c'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e8c41aa14da7f29350116ef9d85100e328caf98515469234ca93630985af00a'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956","messages_hash":"4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0","transaction_count":0,"txlist_hash":"c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a"}',0,'BLOCK_PARSED',NULL,'5bfccbb9cdf4decaa2a504460e8e04ad1b62f87861c550fedefd0764336d5f16'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30a30f902df395ad8b134cfd452bf7896047402a28e19713babe19feb67de55d'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545","messages_hash":"6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1","transaction_count":0,"txlist_hash":"82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f"}',0,'BLOCK_PARSED',NULL,'5539892a540296d585b38ca5dcf4ad81319adacdfa5085c1bf195e7c250d4b14'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'240e410a99f182b7d28526228a61506560048322ce5fcec4db2dddb9414c5c57'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05","messages_hash":"dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23","transaction_count":0,"txlist_hash":"ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408"}',0,'BLOCK_PARSED',NULL,'a6d89c88f276ae7806642ea52e06abc7f1090127fcca8acd29d32cf9e11f91cb'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7859d66d3b9f46834e30de55b93a73c393b68f279ec1fa2105ad38da004ae15d'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e","messages_hash":"d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d","transaction_count":0,"txlist_hash":"67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f"}',0,'BLOCK_PARSED',NULL,'9361441ecea89aa438373a3004f4f8829882d0ee51e34e2c84c48b1d00f7f967'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b8a4b08439b30f33e25ef9b7e11b10efe3f05397b5ba2587c8ac67d7fe96f9e'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66","messages_hash":"08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7","transaction_count":0,"txlist_hash":"36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4"}',0,'BLOCK_PARSED',NULL,'35aa91b8d4ea548fbd231adf15d0b9f9f37737d94b7ea9b316dfc2eb0b47b5a4'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0c248fdca9fd58cbf097ec7ce37dfc39fe912a08d4cdbc6706dd3e25d0b3cb9'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05","messages_hash":"8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1","transaction_count":0,"txlist_hash":"d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b"}',0,'BLOCK_PARSED',NULL,'31c5898c9d48965dcef3dcb47f9548ffe47c91688399a6e7278cfd059ff37af0'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f4eb9d1b9284ecd25d0359fb66c3c592fd88723f27404bb3fbf1fa391a17361'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6","messages_hash":"7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c","transaction_count":0,"txlist_hash":"9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4"}',0,'BLOCK_PARSED',NULL,'e02d52141f7195122432aadae173d81dbee5a21c61a914c1363853aeba05e84c'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d152a68b319fc22fe1ac9779c31b5546a97e93c2f919ebdfaaf3a0208218fccb'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43","messages_hash":"64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f","transaction_count":0,"txlist_hash":"54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28"}',0,'BLOCK_PARSED',NULL,'5058fe4566a10c6160ad88f32933ca088a21af910ec2b83593f4156a62c81fe5'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1497132139ed16bc1d809ce0ed53b318bfc412c5eaba47823dd5ae7b9f12bdb'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c","messages_hash":"760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a","transaction_count":0,"txlist_hash":"9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b"}',0,'BLOCK_PARSED',NULL,'9b1026dcf05407c7ec6896766e5f81e78ef0717827ae19cc4530499943d03701'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a598444fa23691f07328d5f6453396adc72cd8557d483f7574ff7ec2de2f22'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb","messages_hash":"3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30","transaction_count":0,"txlist_hash":"abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd"}',0,'BLOCK_PARSED',NULL,'1021b22c1ebdb918e54790f134734ff125a7ab650372bac64661b69a737fbad5'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58291f653caefb236fa8f91a3414e0ddfabf9b3d6b44dac8c9ba01c077a25c52'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2","messages_hash":"8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677","transaction_count":0,"txlist_hash":"7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87"}',0,'BLOCK_PARSED',NULL,'ac8d999ba99fcff1eea3467e2f29365201a1045e51557c22764a32c915b90dd8'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9cb9bc1434c29d13edba74170fe6445ace485279fbdb42ff25c4ae98c13a0e'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca","messages_hash":"fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109","transaction_count":0,"txlist_hash":"714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818"}',0,'BLOCK_PARSED',NULL,'6e7d9fa4edecd38dd4f08975c8b5b755e2c74a0ccc6f3576c83dc8765e2144b6'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9299c29a5c63c3fa17f5f7b38c018ae88c1464e735726564768b08d79508aed'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c","messages_hash":"1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076","transaction_count":0,"txlist_hash":"b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17"}',0,'BLOCK_PARSED',NULL,'569221918736d35953f4eae6235b2f9438851099f2e895cd5718261dc3ffc84c'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b884267b860054c3d6fd12bfe6ea232b74e35abfa21be9d6ada306026c1b391a'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034","messages_hash":"80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751","transaction_count":0,"txlist_hash":"470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c"}',0,'BLOCK_PARSED',NULL,'bdca01e27359346e41476edd857d9d9dbce53a9a3fa7f83cf2e68abbc39fa392'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229d3618d9fbcb1f351a5c78fbd32fbd22d971b4bed64579a3ca6b75a00aef65'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf","messages_hash":"33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756","transaction_count":0,"txlist_hash":"9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88"}',0,'BLOCK_PARSED',NULL,'3c0d219511f7c8af9fe3531a61c1accf59349edcbe5dd01fa89eee932bb0d6fa'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d43b19d609827cba675d5f509d855ff361985cdf7d79b196742d5e8c450e7f'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091","messages_hash":"568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771","transaction_count":0,"txlist_hash":"8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6"}',0,'BLOCK_PARSED',NULL,'e464e976cfb72ddd321a016071d24f96dc8faf3ce56ff098fb2073804d4af423'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9df36923060c4923e701a8aa3e8539bf03677ae794009af3e91b769d8c3394ac'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911","messages_hash":"3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde","transaction_count":0,"txlist_hash":"504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d"}',0,'BLOCK_PARSED',NULL,'ede8935fdfe369cd953052baac5c7fd8a4e6d634610ff4e6004b863a00f31ff7'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bfb73f2574baebee03851982d23d0f71c81313b47779f5a192cc367f830094a'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f","messages_hash":"8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e","transaction_count":0,"txlist_hash":"1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea"}',0,'BLOCK_PARSED',NULL,'7319d39fa76d1c89623d8d931d1463b8b776a3abfdaf32489395b13df7cbb636'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aea3d2f5f3e7f74cd0740e570fda1e0db3cce5a1791f872a4c5445de42a3727f'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb","messages_hash":"037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec","transaction_count":0,"txlist_hash":"4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c"}',0,'BLOCK_PARSED',NULL,'6bae4e66e578fd7ec616b3dcf9a05fda17beb47786b94399b4313e836a6d5e82'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd5f7dde9fdf2961868d24464f855156619edad9a1803d5cf454b2ad6e40b7be'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0","messages_hash":"dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba","transaction_count":0,"txlist_hash":"8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b"}',0,'BLOCK_PARSED',NULL,'a8a200105e063f3590cdb631f3f741db922fc2471dd3ef240912d90004c03b32'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52b81f557452d29c99a51e0b44122deff227c0fd08fb983ea328436557369b75'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d","messages_hash":"fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009","transaction_count":0,"txlist_hash":"54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c"}',0,'BLOCK_PARSED',NULL,'e1012d2a468b63d1380ba642bc8b5fd748355473a7bed4c03365f57e3f33df7a'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4b60d2b7dde7dc56b3dc41103626dc54733ded79ee296249db03f276c9e0c8'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15","messages_hash":"22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b","transaction_count":0,"txlist_hash":"5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f"}',0,'BLOCK_PARSED',NULL,'0034d29ec1608c516ef5c81cbc5d1e6def86b8923e62d7019a7601aaffc10324'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64d28567d186aec9900c01728016e7fe5d013eaed77b103bfdd475f53cfb96e6'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5","messages_hash":"986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490","transaction_count":0,"txlist_hash":"559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59"}',0,'BLOCK_PARSED',NULL,'7bc65768025981e0c797b5f8dd8c3b5ee5dda7b816c9a36410eb0f2d443accf3'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0874350cbf0f2f1d472ca7d481157413b5b8b5d79c8e3410ef7837bc611c83b8'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a","messages_hash":"1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca","transaction_count":0,"txlist_hash":"aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619"}',0,'BLOCK_PARSED',NULL,'f3bfa57cdd6586ebadbffb0121c6f50a13beab3c02d70ec76d1e996baf4cce8b'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77c30786eec490703dbbe80d3878096f828b190256ebd553aeff849506e6e6bb'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97","messages_hash":"a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136","transaction_count":0,"txlist_hash":"41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb"}',0,'BLOCK_PARSED',NULL,'9f8d158f1fcf90e7db0c76dc85ec1fd77b7e8b9a84f5a1b8e4609a2ae916cc62'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6492042b0fc3aabf3f1ce12a18e14b06a1101da094c9b0e62ed0779e93d9555'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732","messages_hash":"1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d","transaction_count":0,"txlist_hash":"9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e"}',0,'BLOCK_PARSED',NULL,'26da37d9c53c65ed9523531a6b1b7d530f00de33110283a413fe0e72252be9dd'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6587084662caca5170a7e21033134b1bc8bca3b38d5ec5af673570c6fcbbaf6f'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98","messages_hash":"95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21","transaction_count":0,"txlist_hash":"808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb"}',0,'BLOCK_PARSED',NULL,'c47ffeef13edfd3a0073927de6ac6613ce2fb957897ca7943d72a3d8662ec6f2'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a00ea896c0ed09af2ed0acd47c649560153cbc055d96e88c05351499796a6b28'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6","messages_hash":"beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8","transaction_count":0,"txlist_hash":"d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815"}',0,'BLOCK_PARSED',NULL,'36faf0fdd6daae9f1ee1e7301ab51082f0ec0fe211323840b63d0da97ffbec41'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3873da56443f1422918ef8036818e048d58dc5b9685260142a0e19426b875fc'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8","messages_hash":"902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028","transaction_count":0,"txlist_hash":"dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e"}',0,'BLOCK_PARSED',NULL,'6e027ca28b0ae663e00a87ba4d2408dc463efef62171d5a9fa1eca7346a9d65b'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec68e53ec60a4889e5a928ae93fab66fadbaac5a2e6e244a965ba6dcf59922d7'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484","messages_hash":"425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239","transaction_count":0,"txlist_hash":"2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c"}',0,'BLOCK_PARSED',NULL,'9e2bf3bbab44d7139b2b122b6d0053aa14bf8394c5f51b05248d2f7774ab363a'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcc9d99ef53b7ab9f9a4dd157b76d7eee46ad7b53f5e283ee9c5e9a1957a29f5'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01","messages_hash":"003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0","transaction_count":0,"txlist_hash":"53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557"}',0,'BLOCK_PARSED',NULL,'ca02ce537fa1e08d656b760ce00a87ae3d198b2338d25c1b8320b6e084719635'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db43ec765b250892f4296235635fb34722a2ee0ccb744adecaece0617ee527c5'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de","messages_hash":"754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e","transaction_count":0,"txlist_hash":"77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5"}',0,'BLOCK_PARSED',NULL,'4954185c03fd52a9ef7a00f413e4525c6b11ad9ab85b2eeed6c6a7220cc80d76'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c287a568ee248470c0792a9f22199cfcef6e1ce273ce29aa2df1a9bca1e4d33'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e","messages_hash":"3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def","transaction_count":0,"txlist_hash":"19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447"}',0,'BLOCK_PARSED',NULL,'704c25db05c5df7037b77ad4800b623d57b9c527b7208565558ca56c14a19c77'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a0e631379c58de23f3a190023112622b6d5e4f73bf28210a5da4bfa66b7f453'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c","messages_hash":"fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088","transaction_count":0,"txlist_hash":"6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9"}',0,'BLOCK_PARSED',NULL,'6e3e1c261ab89710ccdd8fdec5ad696c706b2c57d2c3af4f77cba931f3fd42af'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8badd278d8e1cb421511103f171f37028d33ecc0f057edc0181e67abbb073955'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3","messages_hash":"d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5","transaction_count":0,"txlist_hash":"ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a"}',0,'BLOCK_PARSED',NULL,'1bc2276cb9c14f0ff4165f6a1d5063c2acaa2a4774aed075e5a152023124450d'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'452f85b5f3a01a40792b7b0d5dda4b3d2a6b706e92a2ca7b83e088f25845d2fc'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f","messages_hash":"d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599","transaction_count":0,"txlist_hash":"f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9"}',0,'BLOCK_PARSED',NULL,'016cffe7414527772940243bb4d64a22aee62bdfa5b95c1a85d80ded710e12ca'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9380f7e58f5860b887f288124774f1f149763ed41810f7087283913d912322b7'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9","messages_hash":"538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f","transaction_count":0,"txlist_hash":"a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0"}',0,'BLOCK_PARSED',NULL,'f458773d36fc2e3018d7548cb1669ee16aa02ffd036e94a35d7f8a58074aa7bf'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e593b9ccf2b8db3c986bacc17628123d7b1e3de495332b8c79b1488533d5fc81'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768","messages_hash":"008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de","transaction_count":0,"txlist_hash":"365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5"}',0,'BLOCK_PARSED',NULL,'4cdd195b610f9f9a1c80e68d035fcb350381689afa4d22d0307ac1bd894df16c'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a894c8c6ddb712636f247e911fc842b185e52df30e0ae94bc8cb1315d862fe11'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'8478ca5f518a98c0149158ba1bfa1042bbe126e63e4dc5629d96f291c479478b'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'41ea8823faa1db854b4ad7ff688104cff681751fe53ec2c0bb72ccb7c2fea6f3'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'870dc94fe1be1243c57ddeeb32df034698cf4ccc1c65587fcd2b8a5d03dd57b9'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a","messages_hash":"7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768","transaction_count":0,"txlist_hash":"48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e"}',0,'BLOCK_PARSED',NULL,'3e131bd7877ae37245d7ae7f37569c77a63df1a3dc3ba2f7016d4040906b95c8'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'951faa8a651ee5b6461824dfb59f3ed00ccc1b678a1d90c9efde73bf833991f9'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e","messages_hash":"00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697","transaction_count":0,"txlist_hash":"62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d"}',0,'BLOCK_PARSED',NULL,'72374852d30db958c5f3bbf340a2b12c49cd07ef1ac2a81f08d35993a28463f5'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59b3597e14f9f53e9638e4bcba0cddafbb73d21a0e05bf0ef042833f9e553937'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973","messages_hash":"be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c","transaction_count":0,"txlist_hash":"3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93"}',0,'BLOCK_PARSED',NULL,'2de308c06c87e83be78d9ae64499c22dd2e9cea7b8a17930bb64f196650859a2'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'400267f5f004fba52d773828adab750b2d556313a35b3a6b9dfc6f5b5a0cf95c'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe","messages_hash":"487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f","transaction_count":0,"txlist_hash":"4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6"}',0,'BLOCK_PARSED',NULL,'f5a02400793e0d7106bb9defea8665c627ae19ce5792958bdf23bab9c71a1e53'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc45f54dbac311427d0a0becf8a012563ef6a6d28191956642c0786bdf59450b'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762","messages_hash":"36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679","transaction_count":0,"txlist_hash":"e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea"}',0,'BLOCK_PARSED',NULL,'4ade6bf93af240a805901c1c68ad15b41671c92394c594b1609f17c47eda61a9'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea29c3bd19677603521a2c8c52309b251ec8b1b7192d46e81c45e04c32a0f5f'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604","messages_hash":"859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889","transaction_count":0,"txlist_hash":"911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7"}',0,'BLOCK_PARSED',NULL,'2db082f110c912d36268d51a9a5de164603bd8a1891fe5c3f2df70ca599c19ab'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e7ec69487c11cfa2a52de6a101afedabcdb9b12fd5b618052e95acf58f938f'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396","messages_hash":"a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a","transaction_count":0,"txlist_hash":"adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7"}',0,'BLOCK_PARSED',NULL,'1301f5c3514199be1b600531096ea97e2460fd3bb48749c36ebe31d19310d361'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd73b14544c97bbb873a5bcaaac29b61147377e96f41d6261fef0650c7c5fc7a'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e","messages_hash":"eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5","transaction_count":0,"txlist_hash":"719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a"}',0,'BLOCK_PARSED',NULL,'06b3199799833460682b4ab482737e3a2561564e0b4be9a8d34c6f69b3c2ce1f'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b565599af4ad3901259acc3b0c98c0ff5dbe8ef8f22985a92eefa4c229f636'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6","messages_hash":"48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868","transaction_count":0,"txlist_hash":"0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7"}',0,'BLOCK_PARSED',NULL,'71cbebae913afc1d275e877927c0069faddea1be7f3d66ce1b61602ea73f17f8'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0eb7107ec8101bc725f33bd82fc53da7380b49ac0f8e7b88a9c4421d700ff1e'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f","messages_hash":"175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952","transaction_count":0,"txlist_hash":"fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98"}',0,'BLOCK_PARSED',NULL,'a10cd0dfb2c56daff1dc1709477fde68e32975cb7e9d7b7e0e3a015a7810d3c2'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e77b0cd71cf697319347785df8084eb7ceb9895f783d41b14b14a3ab91659e0'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028","messages_hash":"210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae","transaction_count":0,"txlist_hash":"6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611"}',0,'BLOCK_PARSED',NULL,'73d7592374e60345522a60738dd65d6161edd0bc72b1b95975452dc6384504aa'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'249fc9ca73ae1c345604c783a28143be205df9d2a82916a4f2025769273e9a49'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a","messages_hash":"599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208","transaction_count":0,"txlist_hash":"5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6"}',0,'BLOCK_PARSED',NULL,'f193e7475393f277c90484f93a88c7feb318229d37238d852bad985284947286'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e77421ca17f7a65631b079b1d3c0439a1a0fd43a7b92759415235a5a378819'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74","messages_hash":"6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c","transaction_count":0,"txlist_hash":"301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507"}',0,'BLOCK_PARSED',NULL,'7d2e457fb909843a925c404f43b352fdadc67d28cab874c808bb688a145f4efa'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bb4b3d0a26fcd998a7115703cbc896ad58ff844b5fc25f1fda3b21e31dfe71e'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b","messages_hash":"1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5","transaction_count":0,"txlist_hash":"5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3"}',0,'BLOCK_PARSED',NULL,'2bc2d5562bd0c15e78c7c10cb718a3eae7a4e343822bece68ac9a9165f47666d'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a1e66a8e4b1431b3e36e5d3740e29fb7c21c3405abb7795816165f06675b2f0'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7","messages_hash":"4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe","transaction_count":0,"txlist_hash":"28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3"}',0,'BLOCK_PARSED',NULL,'253c06b4a62dac02c9a8ce08d102f26fac0dbae4dbde1aef23508917280cb273'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac9918239a27a1561623d52f8195903c8c89145aa7a326efac5208ffa2d082bf'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573","messages_hash":"6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517","transaction_count":0,"txlist_hash":"4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460"}',0,'BLOCK_PARSED',NULL,'85559ef81bc9cf54050a3e83a615968c3a050ac42e6ef661caca049823880e98'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44f11c68fdf8043aa475a7f980fd70bdb160b7358542c5133a25926d2ec9bc1b'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473","messages_hash":"6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7","transaction_count":0,"txlist_hash":"61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555"}',0,'BLOCK_PARSED',NULL,'8e1f175455768176b9006c5382e8f9160a8859c03e61b011e8c434d630905eee'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dab536afe548b2ce6aec3ef1488ca104b1b331e46a1b62988b5d85f7e18750e3'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046","messages_hash":"3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6","transaction_count":0,"txlist_hash":"6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53"}',0,'BLOCK_PARSED',NULL,'ba3bdf3682fab0d31f8484c61b9b463a8e5fee2dadbf424f5c0c6c2964f6f997'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16242dd2baae365196a266030bb27b47501d7df8c5c462d3a02e89f41881138f'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe","messages_hash":"6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908","transaction_count":0,"txlist_hash":"1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887"}',0,'BLOCK_PARSED',NULL,'f865a5d906da833aefc2dee0b3e43d84cf6b60c8246742fa735a88e50d9a14b6'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b16266d5c7201e77d066faa780a5d13aaf5af1d63ae14c230753e637addeb69'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3","messages_hash":"f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e","transaction_count":0,"txlist_hash":"ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9"}',0,'BLOCK_PARSED',NULL,'a427fb3269f4921c87b235f854f89690158e718fe430e6aaface5ab63db4d5ea'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'612898bdd39b11de04c440c792b119d8def9d9748ebcc47930e6fed1650b49a2'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb","messages_hash":"957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b","transaction_count":0,"txlist_hash":"0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f"}',0,'BLOCK_PARSED',NULL,'2608204456dd8f347d2d3a68d7f91168cccd49fcc1103690e190d5aa78bfaf0c'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25bc32bf88d3d33f0b80476795654dc63333d73f78af00a3d7e83f2a407d0264'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94","messages_hash":"7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff","transaction_count":0,"txlist_hash":"b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b"}',0,'BLOCK_PARSED',NULL,'f5d25932f709fca02a32ce0a1ef6a0e9a1fa989496cf8efd3ef62d563d1bec8d'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7088668d7677f2225254c355d3fa8297823404212b35492425be14be7b1d291'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199","messages_hash":"80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec","transaction_count":0,"txlist_hash":"7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820"}',0,'BLOCK_PARSED',NULL,'756dbad92551d96a40099ed7c9eed7ece23ecb7a400acffcfc99f9d9ee991f49'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b2de81e29d7abb46a093bea8fbfc2f117bc53c779a90054b1aaacbbdefa7d0'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883","messages_hash":"7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5","transaction_count":0,"txlist_hash":"73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb"}',0,'BLOCK_PARSED',NULL,'78f65041aea1c9458b210a086e7140be6c49c97d7d7bfafd1a063a28e1ee303f'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a317d2dedf5a87124cfb96aad78c1a3d2ecf00bdcb94f27d99d1190e23c28ee'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9","messages_hash":"b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2","transaction_count":0,"txlist_hash":"0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe"}',0,'BLOCK_PARSED',NULL,'b9c9c33f35756fbb676def5076788b687fba4df0dd2b1c92f7baa0dfb46507dd'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd82415434ef8176516bc2e99cedc807dcce24d672fb7cea19d07080fa7a3710'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1","messages_hash":"17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc","transaction_count":0,"txlist_hash":"a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01"}',0,'BLOCK_PARSED',NULL,'10144f112a34e834a3f553072a6bdf81eb8792d0f4fbe68e8fd232c7077bde32'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9f6080e1ac176f56cb018da56b5d6666ac39faed69a2faceef3f83ca066528b'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655","messages_hash":"a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3","transaction_count":0,"txlist_hash":"35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272"}',0,'BLOCK_PARSED',NULL,'8f7a20cb8ccff72b58cdc7da7e71c403cd3d588e1c17b6e51e9745b9b79e1c88'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee03703b9ad55b9147d84500227943c14ade3404a3675509ba6b33ba6426b1fa'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca","messages_hash":"3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4","transaction_count":0,"txlist_hash":"9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4"}',0,'BLOCK_PARSED',NULL,'e8eb9de33056b641d8d0a174ab4885bc02586b47d85177f4d2c150c1cb936b97'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'070161d9d2a38f200fbe7a11e7c874f4cf428285a9cbc696b6bc38ee23a14e6b'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1","messages_hash":"22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37","transaction_count":0,"txlist_hash":"4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3"}',0,'BLOCK_PARSED',NULL,'be9fdfb1744bbca19e0517da8f45728109510ca0a7d240610f6fc2f17d66712c'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'908d78122854db529fabc972e11586f03dafd9b7caada0423e21a8a486dd7b4e'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c","messages_hash":"e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33","transaction_count":0,"txlist_hash":"46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394"}',0,'BLOCK_PARSED',NULL,'5776da01d9f51b397157990f446b387ca670df5c13891aee6161830880ca51b3'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'090458001789e8bcd50a5308d64c8403224c918d1b2a6f22f0eebcd14b0852ea'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232","messages_hash":"acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e","transaction_count":0,"txlist_hash":"d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df"}',0,'BLOCK_PARSED',NULL,'5f0c8d0da43fddfe0a45bfe420fd815c8452ddfd2b1f139bb12d095d54bfc9ab'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e1cf8649ec3f5a52e798da48dca9a83f8f061fa4ed9b1f1f50c41a4dbc5d2f'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8","messages_hash":"91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc","transaction_count":0,"txlist_hash":"25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8"}',0,'BLOCK_PARSED',NULL,'2c8e4028b34361263f16247a3fa516f6b84198e9f32b0907a30cdae9f0d0d4c4'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b1dfa50ea919979d797e8b14b59f0ed4c2921fd3775921447751b7f692d48ba'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92","messages_hash":"70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342","transaction_count":0,"txlist_hash":"80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7"}',0,'BLOCK_PARSED',NULL,'226f4b6548b18fc2150fbf1756e7e61125762bcab26f890ed2d20f0f173cb2bd'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d95601e8438f7e6caa92b70195ae99762af2a90a8ab762304870e1406d73b004'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d","messages_hash":"5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb","transaction_count":0,"txlist_hash":"1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5"}',0,'BLOCK_PARSED',NULL,'5276021833b4914b1997095083057ea9b46a5f2341544acdece2b483f1f7556b'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7cbb01472dd6af740631d0f7dc708e4788fca928ebd2915bba096fed92fbfac'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192","messages_hash":"cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9","transaction_count":0,"txlist_hash":"59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef"}',0,'BLOCK_PARSED',NULL,'f11ff12be4c728e62d1fbdd77d1d1fd72f3b649750b470c59ab16384a02cc0c3'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'737270ce6731269cebc52c9f17c77b806e8cd2d09acf609df84cd189ffd35c3d'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8","messages_hash":"27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9","transaction_count":0,"txlist_hash":"28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665"}',0,'BLOCK_PARSED',NULL,'a5a83777990fc44907b26c284fb12890e2ad8de673fb46672c399ebfbbba26aa'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00ec036fc88c7a5134e64e84775ec48e8a8eaa268d0375416125b3ab2a5e63b6'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7","messages_hash":"1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed","transaction_count":0,"txlist_hash":"f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5"}',0,'BLOCK_PARSED',NULL,'131eaa2905c742d260c7a2a593a530c3c7fa5e95155884866d253308448ab959'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8200be09485df063d625e8869370d28a0c78ae970eb363c04b347679f58960ae'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48","messages_hash":"01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1","transaction_count":0,"txlist_hash":"0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063"}',0,'BLOCK_PARSED',NULL,'96c6fc1e7bd82dea4d6f3866f107b8629bbf66d2a1774def2d4f67aedf54d1ac'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9c923757630aaef66102affb3907d19ff22f60f54b1318a9f1dbab4e7871265'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f","messages_hash":"974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b","transaction_count":0,"txlist_hash":"cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54"}',0,'BLOCK_PARSED',NULL,'9c9a4f37e79739eaa0226534faf1dc82b3cf5602d1164b5530e0f77069826901'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29297d607a0da6cdb1560ef74069a71cd78e08962e281ba35d42f7fdb9936732'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869","messages_hash":"8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f","transaction_count":0,"txlist_hash":"f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735"}',0,'BLOCK_PARSED',NULL,'eab236ea69699f51ff1dfa8a5327c37b9c46200ede0e5d56f59fb1e82f753924'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3744a999c66e5df33de1f0ae38186a9176b1460e91d4bc7b241b530cbbe96e57'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f","messages_hash":"6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da","transaction_count":0,"txlist_hash":"90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f"}',0,'BLOCK_PARSED',NULL,'4914b97f1c7161d1de20fa23534e37de6210fd2683429a4300191da46ce3231c'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9468b5e545955bc56e4001835074c77a726be1fb9c76bca2e9f0989225fc1031'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a","messages_hash":"cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c","transaction_count":0,"txlist_hash":"ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385"}',0,'BLOCK_PARSED',NULL,'16928ea561f1ef9f1f755748957c8e46786a3796be8f739c92b6c2447a1b9ebe'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e04d9870608589017a664793707775e584bac50b0772ddb5bc88870c0c25c0a'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493","messages_hash":"13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb","transaction_count":0,"txlist_hash":"e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90"}',0,'BLOCK_PARSED',NULL,'f292189de7f31d9e4fe1447348acbe69160ec194e5426602b07ba13dc54b4968'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b35927fe9c76c675f2af9347271a681a3ae92357dce3f9608366a01b8492a'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08","messages_hash":"17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5","transaction_count":0,"txlist_hash":"ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876"}',0,'BLOCK_PARSED',NULL,'85a02ff2b7acca8910ea2a2d2c49102b010e9599e6efadcbc476ea40c25d279a'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'686e7fcea14e6ed33cd959e23853237c271ac890d7655f5d4430191cab682870'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b","messages_hash":"f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985","transaction_count":0,"txlist_hash":"67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64"}',0,'BLOCK_PARSED',NULL,'f39d2e0b9680d1cd18252a00ec2f987f4365b3d225b01ba417b1ecd90fc83e1d'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4e2a752262d8a9512897990fbe10da1409bb9eb83529cdeecf410a83b75adc'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88","messages_hash":"abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92","transaction_count":0,"txlist_hash":"bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379"}',0,'BLOCK_PARSED',NULL,'882418b2f49f8551fa6fd26311e9b196ebafa999d8d88705b280e6371f127766'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1332ca1e88212611b5db79efd5cf17b61f5ed2bd94db2ec822e045d096ba8f93'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e","messages_hash":"85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba","transaction_count":0,"txlist_hash":"625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf"}',0,'BLOCK_PARSED',NULL,'9328b721ff6b97ad2a1aaf1aa8cba2f188affaac9784e1db7eaf3c1ffbfa9b2c'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'294d08cdeb89565a6fdd57a7ffd75abf12b10f94a2a51acaab553ef615884c31'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4","messages_hash":"2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae","transaction_count":0,"txlist_hash":"d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811"}',0,'BLOCK_PARSED',NULL,'c87a502cb329fe0e88e8760208acbc0d6c09490b0ff4d691159f89370fa43389'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1a93f9f1fd732c224335273a780108c42f716a8375355483c72992577deb62c'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463","messages_hash":"2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f","transaction_count":0,"txlist_hash":"c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1"}',0,'BLOCK_PARSED',NULL,'008f76ccf272e6cb49cee3a0d88acf36ea8eca915ae5d8cfdfea9ecc81ffda4d'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9c29e660ef24aac13de949ab74ff1380058b43bd5eaa006d31f3056fd1adbb'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069","messages_hash":"0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c","transaction_count":0,"txlist_hash":"5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236"}',0,'BLOCK_PARSED',NULL,'26de6ab7dbaf8699e6e672fa3ecce1a9d5bf88e2a0596bcf65a7eac86ce95506'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2269a2ed7f10a0fa80fc439483de4ce4bf897aa3520e20eefa3359bfb5d44a39'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31","messages_hash":"7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4","transaction_count":0,"txlist_hash":"cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d"}',0,'BLOCK_PARSED',NULL,'4aa7bfb082e964387c9ab4924b8985986dae8a0df42f1b455abc97a2530c8a1d'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'703463dc0698238c4bf26bbd17cb8b7cd046369016fafbbd8d0e2ac26931e112'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d","messages_hash":"057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3","transaction_count":0,"txlist_hash":"e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b"}',0,'BLOCK_PARSED',NULL,'0a01174c07c1bb69643a493717f58cf296bf1f8f0f2bb3c44bc1e747efa46962'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce9b4019e24ca7a030a39a4ab422136fe8f26a3522b0ea59e750ff967c20728a'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2","messages_hash":"5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26","transaction_count":0,"txlist_hash":"d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000"}',0,'BLOCK_PARSED',NULL,'378106d6eeef29a62fcd450113ece90a3f395b37442b1eea8fe13191fe9ad298'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d0babef5c5293e3ded21dade344d64a360e325d05b566405345bfa81865da1'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc","messages_hash":"e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df","transaction_count":0,"txlist_hash":"5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306"}',0,'BLOCK_PARSED',NULL,'fbc229878dcbe4f55b5f00a8611053ce36ba960c23039dabacbf420a47e61891'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d79df11d6b141a4d9d0d4709b83bc4662536ecbbbcd5305c812b42a133f16d'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409","messages_hash":"b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2","transaction_count":0,"txlist_hash":"244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219"}',0,'BLOCK_PARSED',NULL,'07db13c277f0a55dc1bb045b79a08f2a3f73150d0e0730e451037b1cdcae0d77'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9807022127ea6eb3fd25e54518018c077e32150390fa639e6c2e29c940441c17'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942","messages_hash":"798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347","transaction_count":0,"txlist_hash":"a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d"}',0,'BLOCK_PARSED',NULL,'05f8c470bddcf905d03bf93b25dd8a8292e891eec42585f78f0e9375ff25eda3'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b552af2ce4cef59a8c554175f81da76c377b9d87ca3b2670044d5dad9aef1614'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633","messages_hash":"34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd","transaction_count":0,"txlist_hash":"1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e"}',0,'BLOCK_PARSED',NULL,'9c0a281eb5b144bf7954b4abc1c52dfd7f1d6100097f4121fd4cd52db9d0b5f9'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36569cd8a0732e350cf3c4c3247874b2fc2125daa81b51bd5ced84c9fe2daf17'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead","messages_hash":"aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78","transaction_count":0,"txlist_hash":"18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade"}',0,'BLOCK_PARSED',NULL,'a71e16c8eb0dcbac56ae896a55df052872942f393257998eea0c202cbc530e4e'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f0411afb3c4688715930e36744778ae446da44c5ef3a847c3e972a64590208'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229","messages_hash":"141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2","transaction_count":0,"txlist_hash":"af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758"}',0,'BLOCK_PARSED',NULL,'e1cba902d12a1222cd206cbb178e62278842768fad771ed28f5752704395a539'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b1e0d44fab8c65cf9db52750357b7006c9b88cef5622c1e404fd393a53bbef'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe","messages_hash":"eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030","transaction_count":0,"txlist_hash":"69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43"}',0,'BLOCK_PARSED',NULL,'9cb71908b5acb83c0b63eb586df7e202a8a7c90ad48c8b00244aaedc30b1a633'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b07a35e38cb47def7e2b7e5c39f123101fefed3276d352f793621f06e8f1728b'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6","messages_hash":"5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255","transaction_count":0,"txlist_hash":"c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac"}',0,'BLOCK_PARSED',NULL,'119ff2bec9534b561d82a3e89fcd81ba289aa575810c1b21cecf176cd393bf25'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c2cc316067ee8009658508c3a76ecca10181047623f97a87ff12654360adb82'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a","messages_hash":"2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f","transaction_count":0,"txlist_hash":"6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14"}',0,'BLOCK_PARSED',NULL,'c0e4a3505d7afcf8161f187640d6ffbf7eae37f16d687c5e921a63d581f6dc6d'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41a1b5cf6451c4a771415714bdc94e1a2aa4f95965d97aece333dff42132a938'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb","messages_hash":"74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9","transaction_count":0,"txlist_hash":"b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4"}',0,'BLOCK_PARSED',NULL,'f3d478c240c1778a7ef67683f6f2cff3c3972ab5856beb09c39881ab95665be0'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9118ea446709baaaa4a79ee84430f747cd4a8c35cc254b498f52abecb25bd503'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3","messages_hash":"6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e","transaction_count":0,"txlist_hash":"e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2"}',0,'BLOCK_PARSED',NULL,'d5e326508ba0640efabd0fda79bc168c19e2f62263cb7a507d9e65f228631fda'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5ca4731ae628c8c34c15c714850e1cfaeb85c581e126ddd2f57e214ab009dfd'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459","messages_hash":"35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90","transaction_count":0,"txlist_hash":"a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e"}',0,'BLOCK_PARSED',NULL,'e13783635fcdd96caa21c0fb01d340130104f86d3a3f8c1753c29ae67f3f1ed2'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aebc1482c9a8b61197ddc5ebd18bda1d0d23742b8a532ec35173146c64489da'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801","messages_hash":"a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365","transaction_count":0,"txlist_hash":"e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997"}',0,'BLOCK_PARSED',NULL,'41fe98ec251db978f285820413fb386de676f4c56d7930bcd5a24cdceb2e13c8'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5df758f3b96d4d82eeba6fae83271acf57335df20b348884ef4dc0782af4fec'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1","messages_hash":"090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706","transaction_count":0,"txlist_hash":"204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a"}',0,'BLOCK_PARSED',NULL,'6f4ce71f3e91b092074dabacce2a8dd057c69390398ece78944c04887a8551b8'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'292941fc7d329f406d87991078af78d342983c8993d86aa5a6cff34506702ecb'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a","messages_hash":"01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971","transaction_count":0,"txlist_hash":"3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64"}',0,'BLOCK_PARSED',NULL,'a16ae1f26c9c68eec5aa5a7df70577566e265e4927fac970ef4cda9fe9e58313'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f152b791e3173123d711b5017cbcd93aa65dce6627054ce7e1bd7e99bc131d'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4","messages_hash":"88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed","transaction_count":0,"txlist_hash":"179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715"}',0,'BLOCK_PARSED',NULL,'c0d524d1e847e202042f063abf3724ff0dd60398c9b65e38002402c64d491e88'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ddb7974d7dbca3c581534c42354366f177b88a023fc7529007b36f541699e7'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532","messages_hash":"196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c","transaction_count":0,"txlist_hash":"2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df"}',0,'BLOCK_PARSED',NULL,'259c96b41236a576cc0a205a99523ec4dce8d826cda07c37233f18a0e64f4bdb'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f01d5f45c596a2f7397dd4f281e2723d4619cb68e1422b8ace26e6980d728007'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792","messages_hash":"ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c","transaction_count":0,"txlist_hash":"e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba"}',0,'BLOCK_PARSED',NULL,'e5bd9e02e6fe30de2c7d9e5c72653b29893fb1143802342065412e18a2ed67e4'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bd29984aee0fc0dd860a7b9067d26a615230ef8e11a63a1e94986263e40880'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec","messages_hash":"90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc","transaction_count":0,"txlist_hash":"5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d"}',0,'BLOCK_PARSED',NULL,'47693aa4a7c7b86b73c8b21b5357ee8af8ceba0b6be2d69d0861168e30221b85'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dc4203486b886cd406a696934c9e0f69fffcc4438a44ef8b152c00a9839f5d9'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494","messages_hash":"1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507","transaction_count":0,"txlist_hash":"3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb"}',0,'BLOCK_PARSED',NULL,'a9f3a5fc680561d95c94e19f605752cf62b8fd2647f3a3ca6ecf6ce6c8d0dc5c'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4582c95690b9c26fae4c0502e8616e17a79d160f3a837751ffbfc6c426268e72'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4","messages_hash":"00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b","transaction_count":0,"txlist_hash":"2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e"}',0,'BLOCK_PARSED',NULL,'693a432e16f1390bb093c001b4259c495409ac0fceabdf95043fb4b83c89a7ef'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ba6274cef177386bc1dd07250bcd24936f9703734910ddc855000b13ec1580b'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8","messages_hash":"6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f","transaction_count":0,"txlist_hash":"be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27"}',0,'BLOCK_PARSED',NULL,'d17f4240c2284de7c89a3e649f3353cd286c6b4118a154edc777b4c08c00ed01'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'869ff02bb7b0113c501d1a5973268b163d337b349a77737e4cab4f7b30957819'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0","messages_hash":"fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8","transaction_count":0,"txlist_hash":"2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e"}',0,'BLOCK_PARSED',NULL,'206d5369487ce8f65532b67edd852986b9d6773e20f88921132cb987d063e221'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e68fdf64eae5c366aa798749fde868bea0ff80f7279464ea4170ae5eec9c7b32'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df","messages_hash":"eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458","transaction_count":0,"txlist_hash":"387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8"}',0,'BLOCK_PARSED',NULL,'9b247802380993061b37245d5c737db5cf364be9af82c8a852d6d7c92d1245a8'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1082d4aca91d7543ccbbada25a81f66cdc6fc02ab734e619328329e51ef5ac18'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693","messages_hash":"49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869","transaction_count":0,"txlist_hash":"7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345"}',0,'BLOCK_PARSED',NULL,'a39d3390dceb5cb0187926f1a5d707af62e4bc96de3f3707d8a8a9b194c3380b'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e17c8d00e8eb04c80a78fa6e8f358a0d1f529052c3d39adfebe793763e93816'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10","messages_hash":"01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795","transaction_count":0,"txlist_hash":"3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d"}',0,'BLOCK_PARSED',NULL,'af4df191829b4258740cc8e1251395ce31f2e7949040635e4364e45d7c7a3794'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'916fb76bd468d21b009760515981bcc687928bc1b6f464262b788aeeb97b6cb0'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441","messages_hash":"46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3","transaction_count":0,"txlist_hash":"8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f"}',0,'BLOCK_PARSED',NULL,'c0c61064fd931dfddf69c10e8c9bf5c19b32a4fb760f1d825e88f514c57a55f2'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'207b1a38bbf1b5d8dcd10f097d5a251a58030e0f539bd0e9acabe6b5cc00831e'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121","messages_hash":"09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132","transaction_count":0,"txlist_hash":"7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d"}',0,'BLOCK_PARSED',NULL,'1e962af812aa5e3d4286188699098c8169d686f9ab672e0ce5761a0669a1358f'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7732b3a0ce6f48a65751004ba7cd0627ea3b737ede37124d14088e2c687c0780'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3","messages_hash":"d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac","transaction_count":0,"txlist_hash":"ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672"}',0,'BLOCK_PARSED',NULL,'623f0eb2b805f65dea38b2baca311b1726d77a5c13c6acd084366cefeabde801'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b154d4879b1acf90a8f78c1c42320230e2644284d4cd06820ab92b39d6af642'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91","messages_hash":"67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de","transaction_count":0,"txlist_hash":"6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e"}',0,'BLOCK_PARSED',NULL,'012a51832f372b9043af76a2086a343da1a94289e88402923bf9354dd7df1b46'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'382f72af4a7d92c071c81bc287eaafd8df6f8b3004448b34d99fa4b9954afdb7'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1","messages_hash":"cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82","transaction_count":0,"txlist_hash":"2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe"}',0,'BLOCK_PARSED',NULL,'a4275adfa4f7523b4d5eb6a90f6dc2218a0c62a2d474b7b3d887c120091830bc'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6934a7545acdd33a74fe5dd517196b9f208cb22b852a8fc7ab3a8b34a80b5c4'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0","messages_hash":"e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2","transaction_count":0,"txlist_hash":"451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d"}',0,'BLOCK_PARSED',NULL,'2a6271b402379289130af258433e5ba2382eab214a3ba7ab8e77b2f89af89e17'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d09bc0548c4f1ea611288b0bc94853d86cc563430b9bcea61532505fa4faf5c'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2","messages_hash":"fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc","transaction_count":0,"txlist_hash":"2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9"}',0,'BLOCK_PARSED',NULL,'3b64c5e956773d7c7945e6caa641ef390561dbc2a58a344654ce131893647657'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ff2a28ccf824586e330eb7ebbe46e7082ac5530dc25be8f2df8e62176b1c343'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c","messages_hash":"a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36","transaction_count":0,"txlist_hash":"988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7"}',0,'BLOCK_PARSED',NULL,'a5cb55ea9dc6a62363f0db3a5703e386faf06119e48f218de92958a8d95e2003'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ead4fcf4ec7e0ef2ccad4364804c332e5d4a3e1bea3cffa35bad9297081711fb'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6","messages_hash":"e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e","transaction_count":0,"txlist_hash":"68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498"}',0,'BLOCK_PARSED',NULL,'2078fda28fb990fc420d7b279316051402599ab277795b0477931a33343fcfe6'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b219491365e68f03deb659302411286fe3170b2e656d7ba1794f0e60521d0ed'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03","messages_hash":"00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256","transaction_count":0,"txlist_hash":"6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3"}',0,'BLOCK_PARSED',NULL,'1f14bd4611cd31a16384b52347bdac016ee1ede9b05c347af475d0c2b77bee12'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e20359a15bf4cdda179dc488d0211710340cbed1523f47d65c0a30d1f8deef7'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c","messages_hash":"4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a","transaction_count":0,"txlist_hash":"c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a"}',0,'BLOCK_PARSED',NULL,'d76eaabf2d3efd8cd7529bdac0ce777aa8f0342ef05a767804c59ca814c996cf'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78579f326728c1bec312fbeb7a4a1e0798217b1ce3bd3534f5564089332461d4'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4","messages_hash":"b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4","transaction_count":0,"txlist_hash":"71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925"}',0,'BLOCK_PARSED',NULL,'a06f5b41849e604f9de7082109e6111576d2c24730815a777bd29aa7a898220b'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79e5e0626fd81777eaf68fca009c1267db4feac29c932ffbd0a7343af8b98a58'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a","messages_hash":"4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4","transaction_count":0,"txlist_hash":"eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987"}',0,'BLOCK_PARSED',NULL,'99cb9b17343344ec7e701c690595613592687c706f13dfbb119c771e159e062a'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'888d6e54dc087d8c877fbf215b17138b01ba94abbfed11efd260d74c02f49416'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe","messages_hash":"9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72","transaction_count":0,"txlist_hash":"8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758"}',0,'BLOCK_PARSED',NULL,'bdd7d551f34e37575952586f32bcd3c037a2ba053e3390e947659e7b70f0f9a9'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d8d817512d23d2a5e7edc8b5ba909fe1be0529f3b8b0c39e76e89ceebcf43e7'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76","messages_hash":"6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf","transaction_count":0,"txlist_hash":"3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f"}',0,'BLOCK_PARSED',NULL,'bff8c83360cc9ce70a880b754086c1ab643579824ffec8fce49c15a4c54eb01e'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cc64a5ff4ca92897ffa2fc98c15c07868a43a366b97654bbeb5712eeed438fe'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad","messages_hash":"4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d","transaction_count":0,"txlist_hash":"faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0"}',0,'BLOCK_PARSED',NULL,'e4ec1f3c810dda83ba091d2ce97271e531b9ab0cf7a913c36e0faa3cf291d600'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4828930030e2a4115e7d3e03d700052fcd098867a1426ddabed1b0910528a5fb'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b","messages_hash":"1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3","transaction_count":0,"txlist_hash":"03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e"}',0,'BLOCK_PARSED',NULL,'4dcdf968aa91b15d714494183726bccee4c9a5f97a909389810aa778c5fbec7f'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ca49b3ae490cb57eff6937e6fb54704a118fe3322a0a643c7fe78094234521'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2","messages_hash":"404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761","transaction_count":0,"txlist_hash":"ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916"}',0,'BLOCK_PARSED',NULL,'fd8c11ec1da2b87918fc6a6d31977664712becf55dad49f96047f624836e1273'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faa186088473b49cff6c530c884bfb275ae1b2c23b4d7ed36d918b2359a01576'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6","messages_hash":"9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579","transaction_count":0,"txlist_hash":"c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb"}',0,'BLOCK_PARSED',NULL,'a6d7cdacb01a4b44322648f1d0de7e769de687b4b441827108cd22aae229ac81'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72fc1c1d79aef1eb8735c10766fcf2e69ba42c0f4d973e6339dce842ff9602f0'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180","messages_hash":"070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7","transaction_count":0,"txlist_hash":"9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e"}',0,'BLOCK_PARSED',NULL,'30bdd7f20c771eac030154e36f269167d0bb74867abf736b7df911ac71f99b00'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38e19a3566e73679b1d7f997dacddf135320bd94cc011355f4eba3c6e7783ea'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e","messages_hash":"4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89","transaction_count":0,"txlist_hash":"78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786"}',0,'BLOCK_PARSED',NULL,'3b164c721574dbb91ae0780fb6402e287fa4b244a0b8a24011f3467235591697'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2412af411f428d3506a28541413ee45662f99f6f21e8318b088669cbf34c3d7'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814","messages_hash":"0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c","transaction_count":0,"txlist_hash":"247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6"}',0,'BLOCK_PARSED',NULL,'72e38ebb8964e0e6cbdc9f1923e5714b8ad71129f4d68bf3239263c8fe1fd42c'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3da56bad2856f0376a7c851a7e82fc6bca317768d598520a1a43824a551c8711'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e","messages_hash":"26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795","transaction_count":0,"txlist_hash":"969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae"}',0,'BLOCK_PARSED',NULL,'1d892d20367a9c27701ecde0fe9a2224333a536917c4a43b997522fc529f7750'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb27a45bf3dff1c03010e116163af8f7b6eb96ee388af3b4877550b3b46d0fa5'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d","messages_hash":"5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b","transaction_count":0,"txlist_hash":"7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414"}',0,'BLOCK_PARSED',NULL,'ad1616b3e0ee5ea4e9d0189d62d02fa02dbf5a03d5888f325e9c6fbfc8d2a3d3'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67b483eff78060cf0a8424c4862b292b806f83f1a4c00c0ed18418333ca8712e'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7","messages_hash":"d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7","transaction_count":0,"txlist_hash":"4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12"}',0,'BLOCK_PARSED',NULL,'d08f460efd1d50a35c4ab3b119f4d2dbc4a0974766b3e0ce6ffbf19fb36fb48e'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f34bde188e71da307c79ae1d2862217ae98faa17995ca369c3dfbf60451726d8'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0","messages_hash":"70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58","transaction_count":0,"txlist_hash":"798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9"}',0,'BLOCK_PARSED',NULL,'2c0c21e45f135f450f779c46ec8404844a13d08c67293d15d4a680a3aeb64094'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21d734f84346892520f467359bf24ddd4d5c4e1aa993878f8657465308bd58fb'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909","messages_hash":"7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404","transaction_count":0,"txlist_hash":"54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d"}',0,'BLOCK_PARSED',NULL,'e1757ec649b5cc757e46d47b74b78c38ca54012b1d03564d63eb9b5a9db3ce49'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1658711d99ebb2c7c3336ca50ed3d70941b1dac7dae3cb25258074cecd8adf38'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d","messages_hash":"8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667","transaction_count":0,"txlist_hash":"2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8"}',0,'BLOCK_PARSED',NULL,'4a395af705918668e100b96c4ca1fcbf1dba3f88d9e1e4bcf97d67111c68b73e'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a8e0c3162ba0413818e147aa18d18147f3f9455609ba52fbe836649ea720be'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10","messages_hash":"c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc","transaction_count":0,"txlist_hash":"07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98"}',0,'BLOCK_PARSED',NULL,'9669f8db4f3c518e839243ad2da2793d7bbb968d397dc548abe61469c24e8cc9'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f66511e675ed584b3f4c327a6f0c2822d4ccca0829678ad88933d30d711ee0'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa","messages_hash":"b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db","transaction_count":0,"txlist_hash":"da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539"}',0,'BLOCK_PARSED',NULL,'2ed4ad734e87418dcdfa4f2eb7d319455685e0f562a1c41bccd0e44b9a043548'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9abdd00cfffe396d07a80cc6a9346122c57ba8f89a7573b49cf578663e394db'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28","messages_hash":"662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085","transaction_count":0,"txlist_hash":"124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca"}',0,'BLOCK_PARSED',NULL,'52ecd13bbf65f18add5296d82d57df29b43112931cf135d48a4d6df2377537dd'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcf603f95018239853486b9f05a9c26d9f99fd480b9a746ba7cae1c788f36a32'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41","messages_hash":"2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3","transaction_count":0,"txlist_hash":"112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f"}',0,'BLOCK_PARSED',NULL,'27cd1ceb5e207768d999ea0e626e6ff57593debae63c8c3df1be3759ba5fed0a'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73642daf96f91b2e02542cd8cd5017535441316ce1e3b372e1b68c9439d368a'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9","messages_hash":"4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d","transaction_count":0,"txlist_hash":"32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab"}',0,'BLOCK_PARSED',NULL,'a37dfc06577f84cf9d36519be6a04069e703b1b3bd3f232c8b59a0415c66d21d'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6f1c9577a7f986ca3ed6f76cbef9b890bf77217159d5e0172ede6a9b770facf'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed","messages_hash":"4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da","transaction_count":0,"txlist_hash":"9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4"}',0,'BLOCK_PARSED',NULL,'a2491170b5e133817fd17520171d9d6c82437f54663870e8afa0ba8a04f77d36'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b47d59cbb43a779cf1687d37ae83b786ae241ded9d26435f40aea014ea109dbc'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa","messages_hash":"0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba","transaction_count":0,"txlist_hash":"776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8"}',0,'BLOCK_PARSED',NULL,'e24a34abf1632370e791b711e82c6e52e0b7731f3fbebe22000199dbb49601d7'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bcb2cde0bd3669ffde55bd0d14b7dcb520ee65158dbecbe4c284d0341647aaf'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad","messages_hash":"0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc","transaction_count":0,"txlist_hash":"4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46"}',0,'BLOCK_PARSED',NULL,'cbb68a265076dcb741c045331e00f978477398bec21d5543e794b668077956f2'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b4b154b5156957e131b1dc3fe91f31c54b8f0744b5efacf74f30b5dc5ca3adb'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809","messages_hash":"ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56","transaction_count":0,"txlist_hash":"d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e"}',0,'BLOCK_PARSED',NULL,'79081ce2fcd8366a15178dd9c8a0291d67f1130c872f07ebb3bb39cc12fcee32'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3737,8 +3737,8 @@ INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383 INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0); INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0); INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0); -INSERT INTO sends VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','XCP',100,'valid',0,NULL,10); -INSERT INTO sends VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','DIVISIBLE',1,'valid',0,NULL,10); +INSERT INTO sends VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','XCP',100,'valid',0,NULL,10); +INSERT INTO sends VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','DIVISIBLE',1,'valid',0,NULL,10); -- Triggers and indices on sends CREATE TRIGGER block_update_sends BEFORE UPDATE ON sends BEGIN @@ -3947,8 +3947,8 @@ CREATE TABLE destructions( tag TEXT, status TEXT ); -INSERT INTO destructions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -INSERT INTO destructions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions BEFORE UPDATE ON destructions BEGIN @@ -4317,8 +4317,8 @@ CREATE TABLE transaction_count( block_index INTEGER, transaction_id INTEGER, count INTEGER); -INSERT INTO transaction_count VALUES(310507,100,1); -INSERT INTO transaction_count VALUES(310508,100,2); +INSERT INTO transaction_count VALUES(310507,101,1); +INSERT INTO transaction_count VALUES(310508,101,2); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count BEFORE UPDATE ON transaction_count BEGIN diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index 02ab815f4a..3196005354 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -245,6 +245,7 @@ def insert_unconfirmed_raw_transaction(raw_transaction, db): cursor = db.cursor() tx_hash = dummy_tx_hash(raw_transaction) + print("DUMMY TX HASH", tx_hash) # this isn't really correct, but it will do tx_index = list( From 6cd6ab6313339d0e8be54a0587e16328e19763ad Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Wed, 30 Oct 2024 12:58:57 -0400 Subject: [PATCH 018/138] Credit Contributions --- release-notes/release-notes-v10.6.2.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index f55664b564..9006dca49e 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -27,5 +27,8 @@ # Credits +* OpenStamp +* DerpHerpenstein * Ouziel Slama +* Wilfred Denton * Adam Krellenstein From c4fc7f6d928b76d2147ef374e1c14d3b20f0cc66 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 30 Oct 2024 20:21:02 +0000 Subject: [PATCH 019/138] Fix pytest; fixes --- .../counterpartycore/lib/messages/attach.py | 12 +- .../counterpartycore/lib/messages/utxo.py | 2 + .../counterpartycore/test/api_v2_test.py | 6 +- .../test/fixtures/api_v2_fixtures.json | 220 +-- .../test/fixtures/contract_vectors/gas.py | 8 +- .../test/fixtures/contract_vectors/ledger.py | 8 +- .../test/fixtures/contract_vectors/utxo.py | 395 ++--- .../parseblock_unittest_fixture.json | 4 +- .../scenarios/parseblock_unittest_fixture.log | 4 +- .../scenarios/parseblock_unittest_fixture.sql | 1298 ++++++++--------- .../fixtures/scenarios/unittest_fixture.json | 4 +- .../fixtures/scenarios/unittest_fixture.log | 4 +- .../fixtures/scenarios/unittest_fixture.sql | 1296 ++++++++-------- .../counterpartycore/test/parse_block_test.py | 6 +- .../counterpartycore/test/unit_test.py | 2 +- .../counterpartycore/test/util_test.py | 3 +- 16 files changed, 1651 insertions(+), 1621 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/attach.py b/counterparty-core/counterpartycore/lib/messages/attach.py index bb2c93cb75..2227dd2c3b 100644 --- a/counterparty-core/counterpartycore/lib/messages/attach.py +++ b/counterparty-core/counterpartycore/lib/messages/attach.py @@ -87,9 +87,9 @@ def compose(db, source, asset, quantity, destination_vout=None): [ str(value) for value in [ - destination_vout or "", asset, quantity, + destination_vout or "", ] ] ).encode("utf-8") @@ -98,7 +98,7 @@ def compose(db, source, asset, quantity, destination_vout=None): # if destination_vout is provided it's the responsability of the caller to # build a transaction with the destination UTXO destinations = [] - if destination_vout is not None: + if destination_vout is None: # else we use the source address as the destination # with dust value destinations.append((source, None)) @@ -110,17 +110,17 @@ def unpack(message, return_dict=False): try: data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|") - (destination_vout, asset, quantity) = data_content + (asset, quantity, destination_vout) = data_content destination_vout = int(destination_vout) if destination_vout else None if return_dict: return { - "destination_vout": destination_vout, "asset": asset, "quantity": int(quantity), + "destination_vout": destination_vout, } - return (destination_vout, asset, int(quantity)) + return (asset, int(quantity), destination_vout) except Exception as e: raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e @@ -151,7 +151,7 @@ def pay_fee(db, tx, source, fee): def parse(db, tx, message): - (destination_vout, asset, quantity) = unpack(message) + (asset, quantity, destination_vout) = unpack(message) source = tx["source"] problems = validate(db, source, asset, quantity, destination_vout, tx["block_index"]) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 4a0b6bf63f..5d8bf7cd8d 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -15,6 +15,8 @@ def validate(db, source, destination, asset=None, quantity=None, block_index=Non problems = [] problems += attach.validate_asset_and_quantity(asset, quantity) + if "quantity must be in satoshis" in problems: + return problems source_is_address = True destination_is_address = True diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py index 25ce213d66..3f43864ffb 100644 --- a/counterparty-core/counterpartycore/test/api_v2_test.py +++ b/counterparty-core/counterpartycore/test/api_v2_test.py @@ -148,14 +148,14 @@ def test_new_get_balances_by_address(): "address": None, "asset": "DIVISIBLE", "quantity": 1, - "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxo": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", }, { "address": None, "asset": "XCP", "quantity": 100, - "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxo": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", }, { @@ -312,7 +312,7 @@ def test_new_get_balances_by_asset(): }, { "address": None, - "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxo": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "XCP", "quantity": 100, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index c054686dd3..9f603007de 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -7,9 +7,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809", - "txlist_hash": "d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e", - "messages_hash": "ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56", + "ledger_hash": "a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15", + "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", + "messages_hash": "0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4", "transaction_count": 0, "confirmed": true }, @@ -19,9 +19,9 @@ "block_time": 310702000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad", - "txlist_hash": "4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46", - "messages_hash": "0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc", + "ledger_hash": "fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75", + "txlist_hash": "0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f", + "messages_hash": "a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888", "transaction_count": 0, "confirmed": true }, @@ -31,9 +31,9 @@ "block_time": 310701000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa", - "txlist_hash": "776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8", - "messages_hash": "0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba", + "ledger_hash": "b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743", + "txlist_hash": "c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107", + "messages_hash": "84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba", "transaction_count": 0, "confirmed": true }, @@ -43,9 +43,9 @@ "block_time": 310700000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed", - "txlist_hash": "9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4", - "messages_hash": "4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da", + "ledger_hash": "4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64", + "txlist_hash": "64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6", + "messages_hash": "51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a", "transaction_count": 0, "confirmed": true }, @@ -55,9 +55,9 @@ "block_time": 310699000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9", - "txlist_hash": "32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab", - "messages_hash": "4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d", + "ledger_hash": "000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75", + "txlist_hash": "699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b", + "messages_hash": "af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a", "transaction_count": 0, "confirmed": true }, @@ -67,9 +67,9 @@ "block_time": 310698000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41", - "txlist_hash": "112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f", - "messages_hash": "2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3", + "ledger_hash": "6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646", + "txlist_hash": "4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13", + "messages_hash": "359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7", "transaction_count": 0, "confirmed": true }, @@ -79,9 +79,9 @@ "block_time": 310697000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28", - "txlist_hash": "124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca", - "messages_hash": "662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085", + "ledger_hash": "cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369", + "txlist_hash": "88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7", + "messages_hash": "7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b", "transaction_count": 0, "confirmed": true }, @@ -91,9 +91,9 @@ "block_time": 310696000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa", - "txlist_hash": "da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539", - "messages_hash": "b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db", + "ledger_hash": "c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f", + "txlist_hash": "1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376", + "messages_hash": "c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f", "transaction_count": 0, "confirmed": true }, @@ -103,9 +103,9 @@ "block_time": 310695000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10", - "txlist_hash": "07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98", - "messages_hash": "c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc", + "ledger_hash": "d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037", + "txlist_hash": "cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb", + "messages_hash": "80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1", "transaction_count": 0, "confirmed": true }, @@ -115,9 +115,9 @@ "block_time": 310694000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d", - "txlist_hash": "2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8", - "messages_hash": "8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667", + "ledger_hash": "bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491", + "txlist_hash": "cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10", + "messages_hash": "d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2", "transaction_count": 0, "confirmed": true } @@ -132,9 +132,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809", - "txlist_hash": "d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e", - "messages_hash": "ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56", + "ledger_hash": "a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15", + "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", + "messages_hash": "0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4", "transaction_count": 0, "confirmed": true } @@ -568,49 +568,49 @@ }, { "tx_index": 509, - "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "block_index": 310508, "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", "block_time": 310508000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": null, - "btc_amount": 0, - "fee": 6800, - "data": "657c444956495349424c457c31", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "btc_amount": 5430, + "fee": 7650, + "data": "65444956495349424c457c317c", "supported": true, - "utxos_info": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxos_info": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1702642761, + "message_type_id": 1698974038, "message_data": { "error": "Unknown message type" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00005430" }, { "tx_index": 508, - "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "block_index": 310507, "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93", "block_time": 310507000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": null, - "btc_amount": 0, - "fee": 6800, - "data": "657c5843507c313030", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "btc_amount": 5430, + "fee": 7650, + "data": "655843507c3130307c", "supported": true, - "utxos_info": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1702647875, + "message_type_id": 1700283216, "message_data": { "error": "Unknown message type" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00005430" }, { "tx_index": 507, @@ -1285,7 +1285,7 @@ }, { "address": null, - "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxo": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "quantity": 1, "quantity_normalized": "0.00000001" @@ -1350,49 +1350,49 @@ "result": [ { "tx_index": 509, - "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "block_index": 310508, "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", "block_time": 310508000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": null, - "btc_amount": 0, - "fee": 6800, - "data": "657c444956495349424c457c31", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "btc_amount": 5430, + "fee": 7650, + "data": "65444956495349424c457c317c", "supported": true, - "utxos_info": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxos_info": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1702642761, + "message_type_id": 1698974038, "message_data": { "error": "Unknown message type" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00005430" }, { "tx_index": 508, - "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "block_index": 310507, "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93", "block_time": 310507000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": null, - "btc_amount": 0, - "fee": 6800, - "data": "657c5843507c313030", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "btc_amount": 5430, + "fee": 7650, + "data": "655843507c3130307c", "supported": true, - "utxos_info": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1702647875, + "message_type_id": 1700283216, "message_data": { "error": "Unknown message type" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00005430" }, { "tx_index": 507, @@ -1656,7 +1656,7 @@ } ], "next_cursor": 1362, - "result_count": 175 + "result_count": 177 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances?verbose=true": { "result": [ @@ -1664,7 +1664,7 @@ "address": null, "asset": "DIVISIBLE", "quantity": 1, - "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxo": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset_info": { "asset_longname": null, @@ -1679,7 +1679,7 @@ "address": null, "asset": "XCP", "quantity": 100, - "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxo": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset_info": { "divisible": true, @@ -1873,9 +1873,9 @@ "asset": "DIVISIBLE", "quantity": 1, "calling_function": "attach to utxo", - "event": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "tx_index": 509, - "utxo": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxo": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "confirmed": true, "block_time": 310508000, @@ -1894,9 +1894,9 @@ "asset": "XCP", "quantity": 100, "calling_function": "attach to utxo", - "event": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "event": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "tx_index": 508, - "utxo": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxo": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "confirmed": true, "block_time": 310507000, @@ -2173,7 +2173,7 @@ "asset": "DIVISIBLE", "quantity": 1, "action": "attach to utxo", - "event": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "tx_index": 509, "utxo": null, "utxo_address": null, @@ -2194,7 +2194,7 @@ "asset": "XCP", "quantity": 10, "action": "attach to utxo fee", - "event": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "tx_index": 509, "utxo": null, "utxo_address": null, @@ -2215,7 +2215,7 @@ "asset": "XCP", "quantity": 100, "action": "attach to utxo", - "event": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "event": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "tx_index": 508, "utxo": null, "utxo_address": null, @@ -2236,7 +2236,7 @@ "asset": "XCP", "quantity": 10, "action": "attach to utxo fee", - "event": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "event": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "tx_index": 508, "utxo": null, "utxo_address": null, @@ -2846,10 +2846,10 @@ "result": [ { "tx_index": 509, - "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "block_index": 310508, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "destination": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "asset": "DIVISIBLE", "quantity": 1, "status": "valid", @@ -2870,10 +2870,10 @@ }, { "tx_index": 508, - "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "block_index": 310507, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "destination": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "asset": "XCP", "quantity": 100, "status": "valid", @@ -4199,49 +4199,49 @@ "result": [ { "tx_index": 509, - "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "block_index": 310508, "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", "block_time": 310508000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": null, - "btc_amount": 0, - "fee": 6800, - "data": "657c444956495349424c457c31", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "btc_amount": 5430, + "fee": 7650, + "data": "65444956495349424c457c317c", "supported": true, - "utxos_info": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "utxos_info": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1702642761, + "message_type_id": 1698974038, "message_data": { "error": "Unknown message type" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00005430" }, { "tx_index": 508, - "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "block_index": 310507, "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93", "block_time": 310507000, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": null, - "btc_amount": 0, - "fee": 6800, - "data": "657c5843507c313030", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "btc_amount": 5430, + "fee": 7650, + "data": "655843507c3130307c", "supported": true, - "utxos_info": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "confirmed": true, "unpacked_data": { "message_type": "unknown", - "message_type_id": 1702647875, + "message_type_id": 1700283216, "message_data": { "error": "Unknown message type" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00005430" }, { "tx_index": 504, @@ -6228,10 +6228,10 @@ "event": "BLOCK_PARSED", "params": { "block_index": 310703, - "ledger_hash": "e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809", - "messages_hash": "ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56", + "ledger_hash": "a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15", + "messages_hash": "0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4", "transaction_count": 0, - "txlist_hash": "d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e", + "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", "block_time": 310703000 }, "tx_hash": null, @@ -6259,10 +6259,10 @@ "event": "BLOCK_PARSED", "params": { "block_index": 310702, - "ledger_hash": "92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad", - "messages_hash": "0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc", + "ledger_hash": "fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75", + "messages_hash": "a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888", "transaction_count": 0, - "txlist_hash": "4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46", + "txlist_hash": "0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f", "block_time": 310702000 }, "tx_hash": null, @@ -6290,10 +6290,10 @@ "event": "BLOCK_PARSED", "params": { "block_index": 310701, - "ledger_hash": "937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa", - "messages_hash": "0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba", + "ledger_hash": "b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743", + "messages_hash": "84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba", "transaction_count": 0, - "txlist_hash": "776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8", + "txlist_hash": "c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107", "block_time": 310701000 }, "tx_hash": null, @@ -6502,10 +6502,10 @@ "result": [ { "tx_index": 509, - "tx_hash": "0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8", + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", "block_index": 310508, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0", + "destination": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "asset": "DIVISIBLE", "quantity": 1, "status": "valid", @@ -6526,10 +6526,10 @@ }, { "tx_index": 508, - "tx_hash": "1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0", + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", "block_index": 310507, "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "destination": "8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0", + "destination": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "asset": "XCP", "quantity": 100, "status": "valid", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py index 4ded97b6e8..54f33c7ddf 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py @@ -2,19 +2,19 @@ "gas": { "get_transaction_count_for_last_period": [ { - "in": (100, 154), # utxo.ID, 310507 // 2016 + "in": (101, 154), # attach.ID, 310507 // 2016 "out": 2, } ], "increment_counter": [ { - "in": (100, 310507), # utxo.ID, 310507 + "in": (101, 310507), # attach.ID, 310507 "records": [ { "table": "transaction_count", "values": { "block_index": 310507, - "transaction_id": 100, + "transaction_id": 101, "count": 3, }, } @@ -23,7 +23,7 @@ ], "get_average_transactions": [ { - "in": (100, 310507), # utxo.ID, 310507 + "in": (101, 310507), # attach.ID, 310507 "out": 0, } ], diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py index 31a711eeb6..260dd74a0a 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py @@ -59,11 +59,11 @@ "block_index": 310703, "command": "parse", "category": "blocks", - "bindings": '{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"f3014065513f86e787e801439ff4bc9d96db3169a76b8fc45ad5559621452358","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}', + "bindings": '{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}', "timestamp": 0, "event": "BLOCK_PARSED", "tx_hash": None, - "event_hash": "9ea84cde1c958baeda4bb00845dd86f37f9526d118ec201e8e3503e28e36839a", + "event_hash": "3f67c00efc0236abf3f24c9011e6e85eadfcb901707f3a36d4d92c80e77e6d7e", }, } ], @@ -327,7 +327,7 @@ "escrow": None, }, { - "address": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "address": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", "address_quantity": 100, "escrow": None, }, @@ -392,7 +392,7 @@ "escrow": None, }, { - "address": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "address": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", "address_quantity": 1, "escrow": None, }, diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py index 5d768c5729..1cf04fde62 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py @@ -6,11 +6,213 @@ ) UTXO_1 = "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1" -UTXO_2 = "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1" -UTXO_3 = "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1:1" +UTXO_2 = "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0" +UTXO_3 = "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0" UTXO_VECTOR = { + "attach": { + "compose": [ + { + "in": ( + ADDR[0], + "XCP", + 100, + 1, + ), + "out": ( + ADDR[0], + [], + b"eXCP|100|1", + ), + }, + { + "in": (UTXO_1, "XCP", 100), + "error": ( + exceptions.ComposeError, + ["invalid source address"], + ), + }, + { + "in": ( + ADDR[0], + "XCP", + 100, + ), + "out": ( + ADDR[0], + [(ADDR[0], None)], + b"eXCP|100|", + ), + }, + ], + }, + "detach": { + "compose": [ + { + "in": ( + UTXO_2, + ADDR[1], + ), + "out": ( + UTXO_2, + [], + b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + ), + }, + ], + "unpack": [ + { + "in": (b"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",), + "out": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + } + ], + "parse": [ + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2", + }, + ), + "records": [ + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + ], + }, + ], + }, + "move": { + "move_assets": [ + { + "in": ( + { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "utxos_info": f"{UTXO_2} {UTXO_3}", + }, + ), + "records": [ + { + "table": "debits", + "values": { + "utxo": UTXO_2, + "address": None, + "asset": "XCP", + "quantity": 100, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "action": "utxo move", + }, + }, + { + "table": "credits", + "values": { + "utxo": UTXO_3, + "address": None, + "asset": "XCP", + "quantity": 100, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "calling_function": "utxo move", + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": UTXO_2, + "destination": UTXO_3, + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + ], + }, + { + "in": ( + { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "utxos_info": f"{UTXO_3} {UTXO_1}", + }, + ), + "records": [ + { + "table": "debits", + "values": { + "utxo": UTXO_3, + "address": None, + "asset": "DIVISIBLE", + "quantity": 1, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "action": "utxo move", + }, + }, + { + "table": "credits", + "values": { + "utxo": UTXO_1, + "address": None, + "asset": "DIVISIBLE", + "quantity": 1, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "calling_function": "utxo move", + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": UTXO_3, + "destination": UTXO_1, + "asset": "DIVISIBLE", + "quantity": 1, + "fee_paid": 0, + }, + }, + ], + }, + ], + }, "utxo": { + # source, destination, asset=None, quantity=None, block_index=None "validate": [ { "in": ( @@ -29,6 +231,7 @@ "in": (UTXO_1, UTXO_1, "XCP", 100), "out": [ "If source is a UTXO, destination must be an address", + "insufficient funds for transfer and fee", ], }, { @@ -46,7 +249,7 @@ "BTC", 100, ), - "out": ["cannot send bitcoins"], + "out": ["cannot send bitcoins", "insufficient funds for transfer"], }, { "in": ( @@ -55,7 +258,7 @@ "XCP", config.MAX_INT + 1, ), - "out": ["integer overflow"], + "out": ["integer overflow", "insufficient funds for transfer and fee"], }, { "in": ( @@ -67,54 +270,6 @@ "out": ["quantity must be in satoshis"], }, ], - "compose": [ - { - "in": ( - ADDR[0], - UTXO_1, - "XCP", - 100, - ), - "out": ( - ADDR[0], - [], - b"dmn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc|344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1|XCP|100", - ), - }, - { - "in": (ADDR[0], ADDR[1], "XCP", 100), - "error": ( - exceptions.ComposeError, - ["If source is an address, destination must be a UTXO"], - ), - }, - { - "in": ( - UTXO_2, - ADDR[1], - "XCP", - 100, - ), - "out": ( - UTXO_2, - [], - b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns||", - ), - }, - { - "in": ( - ADDR[0], - None, - "XCP", - 100, - ), - "out": ( - ADDR[0], - [(ADDR[0], None)], - b"dmn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc||XCP|100", - ), - }, - ], "unpack": [ { "in": ( @@ -215,7 +370,7 @@ { "fee": 10000, "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "data": b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", + "data": b"de219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", "source": ADDR[0], "block_index": DP["default_block_index"], "btc_amount": 5430, @@ -224,7 +379,7 @@ "destination": ADDR[0], "block_time": 310501000, "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", - "utxos_info": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", }, ), "records": [ @@ -248,7 +403,7 @@ "block_index": DP["default_block_index"], "command": "insert", "category": "sends", - "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":1,"quantity":100,"source":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":0,"quantity":100,"source":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', "event": "DETACH_FROM_UTXO", }, }, @@ -279,134 +434,6 @@ }, ], }, - { - "in": ( - { - "fee": 10000, - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "data": b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", - "source": ADDR[0], - "block_index": DP["default_block_index"], - "btc_amount": 5430, - "tx_index": DP["default_tx_index"], - "supported": 1, - "destination": ADDR[0], - "block_time": 310501000, - "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", - "utxos_info": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2", - }, - ), - "records": [ - { - "table": "sends", - "values": { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "status": "invalid: UTXO not in the transaction inputs", - "source": None, - "destination": None, - "asset": None, - "quantity": None, - "fee_paid": 0, - }, - }, - ], - }, - ], - "move_assets": [ - { - "in": ( - { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "utxos_info": f"{UTXO_2} {UTXO_3}", - }, - ), - "records": [ - { - "table": "debits", - "values": { - "utxo": UTXO_2, - "address": None, - "asset": "XCP", - "quantity": 100, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "action": "utxo move", - }, - }, - { - "table": "credits", - "values": { - "utxo": UTXO_3, - "address": None, - "asset": "XCP", - "quantity": 100, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "calling_function": "utxo move", - }, - }, - { - "table": "debits", - "values": { - "utxo": UTXO_2, - "address": None, - "asset": "DIVISIBLE", - "quantity": 1, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "action": "utxo move", - }, - }, - { - "table": "credits", - "values": { - "utxo": UTXO_3, - "address": None, - "asset": "DIVISIBLE", - "quantity": 1, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "calling_function": "utxo move", - }, - }, - { - "table": "sends", - "values": { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "status": "valid", - "source": UTXO_2, - "destination": UTXO_3, - "asset": "XCP", - "quantity": 100, - "fee_paid": 0, - }, - }, - { - "table": "sends", - "values": { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "status": "valid", - "source": UTXO_2, - "destination": UTXO_3, - "asset": "DIVISIBLE", - "quantity": 1, - "fee_paid": 0, - }, - }, - ], - } ], - } + }, } diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json index acd5af5911..ed1c7f6e0b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json @@ -180,10 +180,10 @@ "fairmint": "0100000001d8e1083f44827cf8cdab0d756ee5f26c3eb7123c4adbdce79128cca165394c6f010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba46f71bce505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000" }, { - "attach": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cf4ccc12f76f0562d263623f143eee5cf72a7fa3f0cceb97452b4d3227965f7d21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae33222508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace80300000000000069512103cf4ccc12f76f0562d26346240712a35df7667fa3f0cceb97452b4d3227965f4321029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeab092508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { - "attach": "0100000001e04bcce45548f717192b388afca9f58a3ecf19863d37abd12e19f604361aff1e010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cb4ccc12f76f0562d26362231e38db3e8e5833e68cfdeb97452b4d3227965ffb21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aebb032508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "010000000102af911cd075fe7450186580928fb9b87665bd0fccadf663f34752ac5e88a3c1020000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace80300000000000069512102cb4ccc12f76f0562d2635a2e0127c12485563adfc1b0eb97452b4d3227965f8421029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeabd22408000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { "issuance": "0100000001ec1559a2f51aca1f954491eb75ce429d2d37a5750deea75cd8b425289d213498010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff02e80300000000000069512102e24ccc12f76f0562d2061e67436e926de4c4a6091bcceb97452b4d31cf965f8221039ea8cc75076d9fb9d0151fd6bf10984b6afb51f65ede10ede02a3cf860d471e521025bc8fb22d87eb72fb5e297803ab9aa3ace5bf38df4e23918b876fd3ea0cdd7b853aec3edba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000" 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 0eb1041771..a29d841dba 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -134,9 +134,9 @@ TX Construct - Transaction constructed. TX Construct - Transaction constructed. 20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns TX Construct - Transaction constructed. -Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0 (1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0) [valid] +Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 (c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02) [valid] TX Construct - Transaction constructed. -Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0 (0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8) [valid] +Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 (a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726) [valid] TX Construct - Transaction constructed. Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid) TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 1de73939e2..b4162cf648 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb','bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160','072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31','a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9','9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26','88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381','3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046','fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4','dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3','57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327','fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5','5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9','2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec','ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed','912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0','deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8','454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868','3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0','c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc','12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f','87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4','f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e','0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9','2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5','f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83','b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659','18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002','0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673','fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e','97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0','c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81','37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead','7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840','324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333','5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97','2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f','fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd','de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f','6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855','acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373','7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f','e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283','989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac','ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c','69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6','d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a','bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a','2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5','70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff','b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be','942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53','6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f','4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1','c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3','6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1','a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76','9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede','da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d','bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114','c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6','a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4','1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12','4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf','9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e','16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e','3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419','5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c','ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1','b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083','cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380','6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a','23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b','49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751','1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0','1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4','a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c','2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c','2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce','5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a','3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3','4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e','3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d','b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14','cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db','c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661','7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801','489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956','c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a','4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545','82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f','6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05','ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408','dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e','67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f','d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66','36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4','08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05','d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b','8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6','9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4','7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43','54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28','64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c','9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b','760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb','abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd','3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2','7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87','8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca','714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818','fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c','b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17','1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034','470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c','80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf','9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88','33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091','8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6','568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911','504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d','3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f','1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea','8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb','4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c','037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0','8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b','dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d','54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c','fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15','5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f','22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5','559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59','986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a','aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619','1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97','41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb','a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732','9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e','1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98','808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb','95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6','d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815','beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8','dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e','902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484','2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c','425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01','53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557','003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de','77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5','754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e','19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447','3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c','6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9','fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3','ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a','d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f','f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9','d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9','a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0','538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768','365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5','008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a','48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e','7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e','62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d','00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973','3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93','be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe','4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6','487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762','e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea','36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604','911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7','859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396','adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7','a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e','719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a','eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6','0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7','48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f','fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98','175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028','6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611','210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a','5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6','599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74','301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507','6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b','5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3','1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7','28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3','4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573','4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460','6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473','61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555','6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046','6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53','3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe','1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887','6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3','ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9','f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb','0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f','957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94','b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b','7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199','7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820','80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883','73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb','7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9','0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe','b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1','a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01','17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655','35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272','a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca','9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4','3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1','4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3','22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c','46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394','e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232','d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df','acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8','25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8','91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92','80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7','70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d','1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5','5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192','59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef','cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8','28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665','27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7','f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5','1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48','0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063','01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f','cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54','974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869','f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735','8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f','90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f','6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a','ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385','cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493','e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90','13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08','ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876','17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b','67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64','f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88','bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379','abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e','625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf','85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4','d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811','2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463','c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1','2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069','5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236','0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31','cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d','7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d','e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b','057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2','d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000','5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc','5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306','e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409','244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219','b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942','a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d','798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633','1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e','34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead','18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade','aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229','af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758','141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe','69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43','eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6','c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac','5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a','6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14','2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb','b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4','74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3','e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2','6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459','a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e','35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801','e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997','a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1','204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a','090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a','3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64','01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4','179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715','88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532','2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df','196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792','e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba','ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec','5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d','90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494','3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb','1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4','2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e','00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8','be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27','6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0','2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e','fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df','387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8','eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693','7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345','49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10','3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d','01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441','8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f','46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121','7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d','09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3','ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672','d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91','6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e','67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1','2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe','cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0','451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d','e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2','2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9','fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c','988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7','a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6','68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498','e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03','6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3','00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c','c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a','4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4','71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925','b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a','eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987','4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe','8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758','9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76','3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f','6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad','faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0','4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b','03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e','1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2','ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916','404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6','c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb','9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180','9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e','070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e','78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786','4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814','247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6','0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e','969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae','26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d','7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414','5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7','4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12','d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0','798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9','70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909','54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d','7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d','2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8','8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10','07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98','c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa','da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539','b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28','124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca','662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41','112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f','2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9','32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab','4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed','9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4','4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa','776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8','0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad','4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46','0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809','d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e','ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4',NULL,NULL,0); INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) @@ -815,8 +815,8 @@ INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0'); INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1'); INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1'); -INSERT INTO transactions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C5843507C313030',1,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0'); -INSERT INTO transactions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C444956495349424C457C31',1,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0'); +INSERT INTO transactions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'655843507C3130307C',1,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0'); +INSERT INTO transactions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'65444956495349424C457C317C',1,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0'); INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0'); INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1'); -- Triggers and indices on transactions @@ -951,10 +951,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1086,10 +1086,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1183,8 +1183,8 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); @@ -1274,10 +1274,10 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); @@ -2628,442 +2628,442 @@ INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A1603612 INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','23d2f1594063fd9de06cd1afb225527b5926e43c2a409ed16b54563c644d6825'); INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'13d8d6def32619d8814c5b059aff533ac118873e7cc66a9247e7d35c56b4e40d'); INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de258cd8ad734c4390cec947c6a29631009286cff8bd97c162ef69fcb3cf804'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"657c5843507c313030","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508,"utxos_info":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0"}',0,'NEW_TRANSACTION',NULL,'40189d3aa6b2b5fffc0dba9478c4909440ae7b3a6127578dbcdf71221369643e'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','41b769258aea3555a9573b5aa50512049affb70cf06d7e8e76d804d60ebca021'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ASSET_DESTRUCTION','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','a841258d7ac7ad6eb959c75a3f0887a1bd5d3cdc4a230dd95f8eb690ebc3b8aa'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','3e4faa82b80b52912a7d0a78c5087840f995d74fa7352a75f975e1d9ed8ac99c'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1295430efd8fc49c1f1dbf842f12081d34298e8c391ce68f53fafcd7fb8a6845'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','440ae37975a9a0e77670738e2e822a152e290ade446d4f0ae14f705e79ef1513'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ATTACH_TO_UTXO','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','59e8466cc1d6ba7ddd255fd25c6f9cdf4474a9a279fd0574059368a34d7bd77c'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'TRANSACTION_PARSED','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1c47511b1a00f8649bea976b65f73a2377017fb17590942e0091777d0de01fda'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb","messages_hash":"072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c","transaction_count":1,"txlist_hash":"bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160"}',0,'BLOCK_PARSED',NULL,'d2629645f6aa3811017ecdea5645d91bba651aa1baa541716d5619daaaaea241'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b231b5ab7c971655219cb735a8ad330185c6d98bca83cdd73e430ef16484037'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"657c444956495349424c457c31","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509,"utxos_info":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0"}',0,'NEW_TRANSACTION',NULL,'af6465607af0d6fa2be32333e658c87f5df64bd9735a35a900a012d5b8113e28'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','6a302f284aa2c92002444f27bd4e60ee7396d149465850e7fc99f4bbb413409e'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ASSET_DESTRUCTION','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','8f341166c8692b21471683ba7b55907dab24e006be24ed1af0c9bfc23eb73ff4'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','e0cd9b228b17ddab383b7041233479aab40947c71468df5fd591cc5fd9942211'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','7764a34696a2cf809042f1bfd4a14eb0be7d88aa3f70736ebeb56ed68267c34f'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','216c789bfc932ec2a8bcbc1f42792cdaa7cdcf58f01b87c920046df39a8bcb60'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ATTACH_TO_UTXO','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','73630cd10004b65a0f5d9f43c0bc5881c1d846633439b44b420f9699ee6f1dbc'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'TRANSACTION_PARSED','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','fa06541a3220929312ad317fb8dc4c06f848ced4fd8b160d14f6ac45d3bc0c05'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31","messages_hash":"9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4","transaction_count":1,"txlist_hash":"a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9"}',0,'BLOCK_PARSED',NULL,'9678a9538837a267d48a7ef1aba63439e2c35626a1f70699533cb3acf0cefe59'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc6cb5f16c44801263f2fa247ba08cbf8df197ae4836076dd18d8699fb6e1134'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'1e5e33abb03bc4f8996bc3374a9fb0485804806274ca458d5aed351c1a84910b'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c61dc4571d8bbf06879c94f4bf286c0bae7d8866a759aecc62f18f4746894949'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25235c50f22b2dbd58cf65c89177c13a2da2c7f66c528e6724c3b52783f0c2b2'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c2c58989167603be25e187864a5722ac5e57c2d11cc3c6f5e2760d2040538104'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b8a68feadcb8197558ae61da55ad065e677fc80126838101a5224b5f453481b7'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a78db4d6355477861351299d27b22cb942e31ded46f392db8148f3c0d0bce984'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26","messages_hash":"3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2","transaction_count":1,"txlist_hash":"88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381"}',0,'BLOCK_PARSED',NULL,'6fc1dcf7b1a79eaa345595dac82191474af13bed1e586d2e1d9aac6b2fab11c0'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59416a3274cc33dbd86f81271bddbe3bd344abb692b33d2759d919da7a8371ca'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'3946fd5fe7bc2434d21875dcc0934b19d2a75738a9de088702fe0c9b11113e01'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','8c209bebc10e1141851040e9fbf6344910e9d3a9204b1d606dae9e1e13c9133c'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','e5eeb79cc84a19214216a1b5b080f90848f8346a475daefde3b3aaa5b347bf33'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','9b9d78e92a0e5a0fb34df940b73074d5db7795fde3937454a0006c019e0920c7'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046","messages_hash":"dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677","transaction_count":1,"txlist_hash":"fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4"}',0,'BLOCK_PARSED',NULL,'bc5bcab54f83764e93e050c513cba3635a48ce7552c307aa69a8e7d3532ddfae'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f10e16c35c0e09ef85fda55c814f2302478cf9956bedcf1ca47fdd7825a67ddf'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3","messages_hash":"fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087","transaction_count":0,"txlist_hash":"57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327"}',0,'BLOCK_PARSED',NULL,'6d15492b17a9f91df4a6058732786632ac961be855953bbfd1d4ce25ac2dc450'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41769a3e3e2c11c2839ce1735486f92083665fd26904409fe5e8ad07985c27ab'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5","messages_hash":"2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc","transaction_count":0,"txlist_hash":"5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9"}',0,'BLOCK_PARSED',NULL,'98cc42d0aa64a93d54413d942f62bf6c92420f9402af3f1ecfc275ceb4748ff3'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b30b6a5e3c6a27c552028a2884baa9ec13dc0ee429d6cc4950bd1344dcf6d3'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9a79bd7a18a72722c035c77fc57ccfbc3f91b00c6d4da47e2cfdb5f6bddc76a1'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'93832c9fc472afca9674a31745ce2cb8d49cf9ed2bb8127d875a5bbe49e3a4f6'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'05fb1228b5476b484ae3cc938da689c3e4caab604e94fe5d44a406973f4a5e95'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'a361939ae25193e65235dfc27b1b682a09153abce6786df5131974554a4e7015'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec","messages_hash":"912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7","transaction_count":0,"txlist_hash":"ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed"}',0,'BLOCK_PARSED',NULL,'159db4a36b5a0da7d78f7f805239e66f92cdf2d9353a5d3b86e54c37c812f67f'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4d343e151b987dc6cb3f315bd8559d6ddc5f3aea4204cb0905a214420019902'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0","messages_hash":"454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c","transaction_count":0,"txlist_hash":"deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8"}',0,'BLOCK_PARSED',NULL,'174eb2be50e64644ab043c3d9204167390489a7072710331b2700797a44b5036'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f085571a79437e53c1b4802b1ae2224ffff3df7a285b26b0502f291c40468bd'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868","messages_hash":"c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798","transaction_count":0,"txlist_hash":"3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0"}',0,'BLOCK_PARSED',NULL,'0b34f541e4e2bf9b995863e5393a8ef2809f5f860e3220c57e1f029c757ad7ee'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb53df583ff93842fad024a1e38025fe1cddbe5f00a81a12ef42fdf2cf563e'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc","messages_hash":"87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392","transaction_count":0,"txlist_hash":"12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f"}',0,'BLOCK_PARSED',NULL,'22760256d6e3dc90517357e5a23e7627a27653a74efdc5232ec4587c2752d202'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2d929ba7aa948c2e8e43cddde4f43bad034a6dcd1466ad5a800e7e57790fa62'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4","messages_hash":"0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d","transaction_count":0,"txlist_hash":"f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e"}',0,'BLOCK_PARSED',NULL,'38b02763d65cb7583eee29c6b140c2fc2f094c7c9a789a73f04c2253b2776f12'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efc2fd09ba6ce0b886e6e21c8e2172fb231d182c6d333aad4dcf273bc52ecb2d'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9","messages_hash":"f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51","transaction_count":0,"txlist_hash":"2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5"}',0,'BLOCK_PARSED',NULL,'8fd56d2ede04e6329eba4c030faeb4419db543d2b7fc8b5fd1edff95519c4a17'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f809034fadceee042a9e64736d0b950ef36127b69a08159894eecf2e59c86cd'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83","messages_hash":"18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456","transaction_count":0,"txlist_hash":"b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659"}',0,'BLOCK_PARSED',NULL,'4c53ccf9ed509f1b00a5e22eb766440119338946abd8a1993934e6049e1e6600'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43cc92f61a33184c4fda3f0ddf846da35bbb442e0dc77749e49226b0a917d196'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'89357a1cfe2f0e417b38165d8dd05e5637b93668ac705911c85fc7ca29ac23ed'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'d974638b0e8649dd7a05d60324af5cf50c280de2f9d6ae8335b9132ff34a6ccf'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b0704aa240c24125f4493e3fc45f227922389ab7c714bba431feda9de079159e'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34cb8da66e487cc511ad20680c43f3530a6ebcd2118c8ef9c075ba3d3bc793bd'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'559b2f40a02a8b8da94d4fd7c27aa6bf65aa55b074f7d91e6d6f64996f367103'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83c3560803bc69000e9074ab9e2c9bf2efc75c04850ed0318e3cf7c4bdeb5d4e'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'e5a429c11129a9375ce43752a27b2ee471efe7fbc5d1a37452392e02c7da3889'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8ec84a8921e1ec43057825e387e3e9ea8de4984940cdc56b71096ef2cd50f07b'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'69e9b3c9a5c0b7930e6a63e9c0dfc976f6d415cd1e55041b6ef1780610ab682a'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002","messages_hash":"fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599","transaction_count":0,"txlist_hash":"0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673"}',0,'BLOCK_PARSED',NULL,'9e5a3adeb9eba7d1e133b2c5812d166d6acc84731bccdd77c36a550ea7719246'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd2168088bb7b799efb0c044aecb0a6e2259b2a117f22a4807a24bf9ed3ff39c'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e","messages_hash":"c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae","transaction_count":0,"txlist_hash":"97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0"}',0,'BLOCK_PARSED',NULL,'f921a493a94c7b378dc6a0a5bfc72ad68b3b4025343d70a67a5835935fce0486'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6184730518b9c15c0972b129a6c4287457c103374bb0338ae26bd16d998ba3c9'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81","messages_hash":"7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6","transaction_count":0,"txlist_hash":"37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead"}',0,'BLOCK_PARSED',NULL,'8f0347f4927f475ff2ad3be8692476021ee77a4fa073f681b878b44d42648013'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba33fd621a6397bdc1c58f41f5af2252abe6882cb31c1f7b647f2e1d1ef6b3a1'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840","messages_hash":"5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c","transaction_count":0,"txlist_hash":"324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333"}',0,'BLOCK_PARSED',NULL,'9cb8dd77f9dae2ccafd6a31f7eb1e7d4f39f5e36d6a081ba6742ab0e0c926c2f'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8aed22222ba2051631f3127dcec9c590b898c5bc0de522a5b0b7adb2d4fa1d8'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97","messages_hash":"fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f","transaction_count":0,"txlist_hash":"2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f"}',0,'BLOCK_PARSED',NULL,'931ae73e302bb74402c956ab3c4fcbdbb5f97c8ce914a4f955a7142bcd961076'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa69e6d6619062f2463e79f0fdb171443c709fe2bf275a07cdc5def79516744a'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd","messages_hash":"6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe","transaction_count":0,"txlist_hash":"de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f"}',0,'BLOCK_PARSED',NULL,'534228770e1dd464cb7e8c17d7550a282517a756eb378761ef06cde56bbe37cb'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b96a840bd4bfeaf4ed4600a8dfbd565740634b2de257434df5d965de916125a'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855","messages_hash":"7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d","transaction_count":0,"txlist_hash":"acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373"}',0,'BLOCK_PARSED',NULL,'99b986c2b627fae162c9d8e2648842aff3a00aa1af1d1c8a08eca887daa6b997'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20be16c569014e1a3d211d221c91c888bd70b272ae901cc5ed2e12b5b320fb1b'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f","messages_hash":"989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123","transaction_count":0,"txlist_hash":"e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283"}',0,'BLOCK_PARSED',NULL,'4bd0adae6e8743349e164c3f50c8623df9b385abdab918cd97ce595d007338dc'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd9b4599612aa14b58cc6f90a21b17a02976e1b5794190fddbfa62780239ad00'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac","messages_hash":"69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7","transaction_count":0,"txlist_hash":"ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c"}',0,'BLOCK_PARSED',NULL,'8cad207f38bd9d04fe437250ee9913c0cc6ed9fd51e9eb3bee64213923e5dd71'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10ebc7b843138a88e9ec35b1d4cd3aa645ccab9c4ad89ac001e5705dbc2c2a03'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6","messages_hash":"bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92","transaction_count":0,"txlist_hash":"d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a"}',0,'BLOCK_PARSED',NULL,'36ea6be7c35b3828e0ae5482b2bc8320c4e90dd25d2eca47e2baedcc2224af85'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbfd15e940be58d2647a267e9410078612f74b9d8dc9410db11da351183c0044'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a","messages_hash":"70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3","transaction_count":0,"txlist_hash":"2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5"}',0,'BLOCK_PARSED',NULL,'f915d2316da02939a25db99118632b1683cc9908db3160cc93bc8da9aae3fbbf'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9667cbf006d947a0cbff5883472443df0fea8dfb5c103cc8e54f42dc61f2907'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff","messages_hash":"942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902","transaction_count":0,"txlist_hash":"b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be"}',0,'BLOCK_PARSED',NULL,'20c0f226fc9694440886cd8356087643b5e81a59f24443feb976977ec6f01df3'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49f4d90ea9f2906b48afa8f0d25d9c34cd0cb7e102c7362d69dbec56091bb8fe'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53","messages_hash":"4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616","transaction_count":0,"txlist_hash":"6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f"}',0,'BLOCK_PARSED',NULL,'da64c018b2f552040718185f36e9fde6cca5e1e0a3dc986bc20b41c9d551ac3d'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bde28fd698f0744db660a83ba521180bc52382602b6ec475b8828d649ee518e'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1","messages_hash":"6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240","transaction_count":0,"txlist_hash":"c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3"}',0,'BLOCK_PARSED',NULL,'27413698c6dfae3aa142b33ab2473e86a64d9c179670f36796a8d9b93f035b4c'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc55d9c7dcb61ce749d45daa2efd446951e60723dcfb1a632f5b88505326a6d7'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1","messages_hash":"9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6","transaction_count":0,"txlist_hash":"a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76"}',0,'BLOCK_PARSED',NULL,'42a9f244fadf298eef10cc6bc056941a71a9e6384399951587f23e67bed2625d'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7948962501b092597137e19d82fb733252ceecb1a69e3f4eea71bd26897b159'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede","messages_hash":"bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2","transaction_count":0,"txlist_hash":"da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d"}',0,'BLOCK_PARSED',NULL,'b2479703e2f62499293ad3da51cb53b5124772cbd008884659d2f3e8a006fa64'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81904b2a14ade2fdb363bf78c07ad7be7cecec89cfa5bf37af46eb8b18b6b490'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114","messages_hash":"a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f","transaction_count":0,"txlist_hash":"c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6"}',0,'BLOCK_PARSED',NULL,'e9766f1b5822cd1f38754261eb0f3c7b2a49d29ce92b0d68593e7f4196f5263d'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e6601821ab4624cb5f76747d2058dd99f15d81a6f9a499ef749649bd12d9063'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4","messages_hash":"4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81","transaction_count":0,"txlist_hash":"1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12"}',0,'BLOCK_PARSED',NULL,'e5d28800fae35023dc91f36b5f27c5ac8a0baa40f0140566f420c7336f13d291'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c1b18714bcf50efbe89b8c85fb825228706383606ad90ce1304aa6732fabc38'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf","messages_hash":"16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257","transaction_count":0,"txlist_hash":"9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e"}',0,'BLOCK_PARSED',NULL,'21370c180841a87bf5d5fdc3ef65301303ae583047bbfc187eec1fa7a6170b41'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bb0917efb321ead38b8d38db52dd018ceaf10d934cf08210e650f63f1a66c76'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e","messages_hash":"5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88","transaction_count":0,"txlist_hash":"3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419"}',0,'BLOCK_PARSED',NULL,'1b46861beb97babd42b4f9e52d17b770ba06ba8492f68b3590ebedea2bc9b067'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f270b773b122b92998d394519b9a86b8f7f350837f5e55202f1a94eef7b4c54'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c","messages_hash":"b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd","transaction_count":0,"txlist_hash":"ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1"}',0,'BLOCK_PARSED',NULL,'77973be179f29ea78958d6a7a7886ef2bb5af1d29f1d0e2e48be05733d8335db'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52944f721a2f7b5c9c6331658a109c86f0dc04963c9ff87a37a9196560c483ef'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083","messages_hash":"6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233","transaction_count":0,"txlist_hash":"cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380"}',0,'BLOCK_PARSED',NULL,'3160cd1a8dec5b50a4879b4512d60fa6e683c3c2b820773545363fc3067257a0'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61f8c28ddcaf471a0cb703a4e7d24601ac624fb6d7a6c04c6d7a9153467b859f'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a","messages_hash":"49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5","transaction_count":0,"txlist_hash":"23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b"}',0,'BLOCK_PARSED',NULL,'a41aeaf50a15ad6c70cf3d01e0d5784ef2afa280cee0b7d0a9baefde06c7c7aa'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d48ee1d55826a9b1f406221548f08a041585fdccec1786cc9ae605207d8cf86a'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751","messages_hash":"1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545","transaction_count":0,"txlist_hash":"1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0"}',0,'BLOCK_PARSED',NULL,'1c16d768002c5b2325a92f73a804a07ee4a5c869d7700a8fcf9e543b3a02d683'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d847c511b5b885292e5b0d72e3f92e81f0e5376879767df3599abf549018c7f9'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4","messages_hash":"2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367","transaction_count":0,"txlist_hash":"a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c"}',0,'BLOCK_PARSED',NULL,'05ddac77de1cc4a50b81bc2636cd96e560ca1ff298481efccbae7774e88c1971'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29d415acbce2a633035df169780378813c522cfd043ebf5ee36c12f2ac635413'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c","messages_hash":"5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf","transaction_count":0,"txlist_hash":"2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce"}',0,'BLOCK_PARSED',NULL,'570a9151405aebd1ac361d5020d5a9c1c19c489e5cd78ad2846cbe516a0781e7'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03b04f919e65f2892a4025cab3882d235f2cf4cce2c218e29da58f87cae2190a'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a","messages_hash":"4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a","transaction_count":0,"txlist_hash":"3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3"}',0,'BLOCK_PARSED',NULL,'a9dc370ea27654b4068b7d78a80346d61aeab8401d9320c87bebc2c67c04b417'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871f0ac4f29499442afbe588bd68437d25ce4a835d0bc9a7e830173cb97fe984'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e","messages_hash":"b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30","transaction_count":0,"txlist_hash":"3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d"}',0,'BLOCK_PARSED',NULL,'58eb4b84455197303bc293664150f4908f710e3a9022aa6461f1c42b5b91733b'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514f7b67fe26bec41f0ce91fbd93c1c95283a304c06f1c1066850a8d40f14e4b'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14","messages_hash":"c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd","transaction_count":0,"txlist_hash":"cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db"}',0,'BLOCK_PARSED',NULL,'060575fb5ebb7fa1ce46a045ff4fee222d528b2427680c9c1646cf21efefb093'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fddb6a18716b8e8703a3ad4a02eddc3d017b8ba3f5df9eb7f3bf663c47bbb76'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661","messages_hash":"489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0","transaction_count":0,"txlist_hash":"7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801"}',0,'BLOCK_PARSED',NULL,'73245f2db364a98b7bb030d7bb3982ce13d14e7163575689b0525f249055406c'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e8c41aa14da7f29350116ef9d85100e328caf98515469234ca93630985af00a'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956","messages_hash":"4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0","transaction_count":0,"txlist_hash":"c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a"}',0,'BLOCK_PARSED',NULL,'5bfccbb9cdf4decaa2a504460e8e04ad1b62f87861c550fedefd0764336d5f16'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30a30f902df395ad8b134cfd452bf7896047402a28e19713babe19feb67de55d'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545","messages_hash":"6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1","transaction_count":0,"txlist_hash":"82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f"}',0,'BLOCK_PARSED',NULL,'5539892a540296d585b38ca5dcf4ad81319adacdfa5085c1bf195e7c250d4b14'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'240e410a99f182b7d28526228a61506560048322ce5fcec4db2dddb9414c5c57'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05","messages_hash":"dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23","transaction_count":0,"txlist_hash":"ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408"}',0,'BLOCK_PARSED',NULL,'a6d89c88f276ae7806642ea52e06abc7f1090127fcca8acd29d32cf9e11f91cb'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7859d66d3b9f46834e30de55b93a73c393b68f279ec1fa2105ad38da004ae15d'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e","messages_hash":"d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d","transaction_count":0,"txlist_hash":"67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f"}',0,'BLOCK_PARSED',NULL,'9361441ecea89aa438373a3004f4f8829882d0ee51e34e2c84c48b1d00f7f967'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b8a4b08439b30f33e25ef9b7e11b10efe3f05397b5ba2587c8ac67d7fe96f9e'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66","messages_hash":"08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7","transaction_count":0,"txlist_hash":"36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4"}',0,'BLOCK_PARSED',NULL,'35aa91b8d4ea548fbd231adf15d0b9f9f37737d94b7ea9b316dfc2eb0b47b5a4'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0c248fdca9fd58cbf097ec7ce37dfc39fe912a08d4cdbc6706dd3e25d0b3cb9'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05","messages_hash":"8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1","transaction_count":0,"txlist_hash":"d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b"}',0,'BLOCK_PARSED',NULL,'31c5898c9d48965dcef3dcb47f9548ffe47c91688399a6e7278cfd059ff37af0'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f4eb9d1b9284ecd25d0359fb66c3c592fd88723f27404bb3fbf1fa391a17361'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6","messages_hash":"7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c","transaction_count":0,"txlist_hash":"9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4"}',0,'BLOCK_PARSED',NULL,'e02d52141f7195122432aadae173d81dbee5a21c61a914c1363853aeba05e84c'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d152a68b319fc22fe1ac9779c31b5546a97e93c2f919ebdfaaf3a0208218fccb'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43","messages_hash":"64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f","transaction_count":0,"txlist_hash":"54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28"}',0,'BLOCK_PARSED',NULL,'5058fe4566a10c6160ad88f32933ca088a21af910ec2b83593f4156a62c81fe5'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1497132139ed16bc1d809ce0ed53b318bfc412c5eaba47823dd5ae7b9f12bdb'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c","messages_hash":"760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a","transaction_count":0,"txlist_hash":"9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b"}',0,'BLOCK_PARSED',NULL,'9b1026dcf05407c7ec6896766e5f81e78ef0717827ae19cc4530499943d03701'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a598444fa23691f07328d5f6453396adc72cd8557d483f7574ff7ec2de2f22'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb","messages_hash":"3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30","transaction_count":0,"txlist_hash":"abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd"}',0,'BLOCK_PARSED',NULL,'1021b22c1ebdb918e54790f134734ff125a7ab650372bac64661b69a737fbad5'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58291f653caefb236fa8f91a3414e0ddfabf9b3d6b44dac8c9ba01c077a25c52'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2","messages_hash":"8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677","transaction_count":0,"txlist_hash":"7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87"}',0,'BLOCK_PARSED',NULL,'ac8d999ba99fcff1eea3467e2f29365201a1045e51557c22764a32c915b90dd8'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9cb9bc1434c29d13edba74170fe6445ace485279fbdb42ff25c4ae98c13a0e'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca","messages_hash":"fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109","transaction_count":0,"txlist_hash":"714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818"}',0,'BLOCK_PARSED',NULL,'6e7d9fa4edecd38dd4f08975c8b5b755e2c74a0ccc6f3576c83dc8765e2144b6'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9299c29a5c63c3fa17f5f7b38c018ae88c1464e735726564768b08d79508aed'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c","messages_hash":"1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076","transaction_count":0,"txlist_hash":"b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17"}',0,'BLOCK_PARSED',NULL,'569221918736d35953f4eae6235b2f9438851099f2e895cd5718261dc3ffc84c'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b884267b860054c3d6fd12bfe6ea232b74e35abfa21be9d6ada306026c1b391a'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034","messages_hash":"80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751","transaction_count":0,"txlist_hash":"470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c"}',0,'BLOCK_PARSED',NULL,'bdca01e27359346e41476edd857d9d9dbce53a9a3fa7f83cf2e68abbc39fa392'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229d3618d9fbcb1f351a5c78fbd32fbd22d971b4bed64579a3ca6b75a00aef65'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf","messages_hash":"33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756","transaction_count":0,"txlist_hash":"9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88"}',0,'BLOCK_PARSED',NULL,'3c0d219511f7c8af9fe3531a61c1accf59349edcbe5dd01fa89eee932bb0d6fa'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d43b19d609827cba675d5f509d855ff361985cdf7d79b196742d5e8c450e7f'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091","messages_hash":"568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771","transaction_count":0,"txlist_hash":"8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6"}',0,'BLOCK_PARSED',NULL,'e464e976cfb72ddd321a016071d24f96dc8faf3ce56ff098fb2073804d4af423'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9df36923060c4923e701a8aa3e8539bf03677ae794009af3e91b769d8c3394ac'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911","messages_hash":"3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde","transaction_count":0,"txlist_hash":"504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d"}',0,'BLOCK_PARSED',NULL,'ede8935fdfe369cd953052baac5c7fd8a4e6d634610ff4e6004b863a00f31ff7'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bfb73f2574baebee03851982d23d0f71c81313b47779f5a192cc367f830094a'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f","messages_hash":"8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e","transaction_count":0,"txlist_hash":"1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea"}',0,'BLOCK_PARSED',NULL,'7319d39fa76d1c89623d8d931d1463b8b776a3abfdaf32489395b13df7cbb636'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aea3d2f5f3e7f74cd0740e570fda1e0db3cce5a1791f872a4c5445de42a3727f'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb","messages_hash":"037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec","transaction_count":0,"txlist_hash":"4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c"}',0,'BLOCK_PARSED',NULL,'6bae4e66e578fd7ec616b3dcf9a05fda17beb47786b94399b4313e836a6d5e82'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd5f7dde9fdf2961868d24464f855156619edad9a1803d5cf454b2ad6e40b7be'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0","messages_hash":"dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba","transaction_count":0,"txlist_hash":"8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b"}',0,'BLOCK_PARSED',NULL,'a8a200105e063f3590cdb631f3f741db922fc2471dd3ef240912d90004c03b32'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52b81f557452d29c99a51e0b44122deff227c0fd08fb983ea328436557369b75'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d","messages_hash":"fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009","transaction_count":0,"txlist_hash":"54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c"}',0,'BLOCK_PARSED',NULL,'e1012d2a468b63d1380ba642bc8b5fd748355473a7bed4c03365f57e3f33df7a'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4b60d2b7dde7dc56b3dc41103626dc54733ded79ee296249db03f276c9e0c8'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15","messages_hash":"22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b","transaction_count":0,"txlist_hash":"5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f"}',0,'BLOCK_PARSED',NULL,'0034d29ec1608c516ef5c81cbc5d1e6def86b8923e62d7019a7601aaffc10324'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64d28567d186aec9900c01728016e7fe5d013eaed77b103bfdd475f53cfb96e6'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5","messages_hash":"986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490","transaction_count":0,"txlist_hash":"559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59"}',0,'BLOCK_PARSED',NULL,'7bc65768025981e0c797b5f8dd8c3b5ee5dda7b816c9a36410eb0f2d443accf3'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0874350cbf0f2f1d472ca7d481157413b5b8b5d79c8e3410ef7837bc611c83b8'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a","messages_hash":"1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca","transaction_count":0,"txlist_hash":"aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619"}',0,'BLOCK_PARSED',NULL,'f3bfa57cdd6586ebadbffb0121c6f50a13beab3c02d70ec76d1e996baf4cce8b'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77c30786eec490703dbbe80d3878096f828b190256ebd553aeff849506e6e6bb'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97","messages_hash":"a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136","transaction_count":0,"txlist_hash":"41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb"}',0,'BLOCK_PARSED',NULL,'9f8d158f1fcf90e7db0c76dc85ec1fd77b7e8b9a84f5a1b8e4609a2ae916cc62'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6492042b0fc3aabf3f1ce12a18e14b06a1101da094c9b0e62ed0779e93d9555'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732","messages_hash":"1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d","transaction_count":0,"txlist_hash":"9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e"}',0,'BLOCK_PARSED',NULL,'26da37d9c53c65ed9523531a6b1b7d530f00de33110283a413fe0e72252be9dd'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6587084662caca5170a7e21033134b1bc8bca3b38d5ec5af673570c6fcbbaf6f'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98","messages_hash":"95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21","transaction_count":0,"txlist_hash":"808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb"}',0,'BLOCK_PARSED',NULL,'c47ffeef13edfd3a0073927de6ac6613ce2fb957897ca7943d72a3d8662ec6f2'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a00ea896c0ed09af2ed0acd47c649560153cbc055d96e88c05351499796a6b28'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6","messages_hash":"beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8","transaction_count":0,"txlist_hash":"d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815"}',0,'BLOCK_PARSED',NULL,'36faf0fdd6daae9f1ee1e7301ab51082f0ec0fe211323840b63d0da97ffbec41'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3873da56443f1422918ef8036818e048d58dc5b9685260142a0e19426b875fc'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8","messages_hash":"902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028","transaction_count":0,"txlist_hash":"dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e"}',0,'BLOCK_PARSED',NULL,'6e027ca28b0ae663e00a87ba4d2408dc463efef62171d5a9fa1eca7346a9d65b'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec68e53ec60a4889e5a928ae93fab66fadbaac5a2e6e244a965ba6dcf59922d7'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484","messages_hash":"425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239","transaction_count":0,"txlist_hash":"2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c"}',0,'BLOCK_PARSED',NULL,'9e2bf3bbab44d7139b2b122b6d0053aa14bf8394c5f51b05248d2f7774ab363a'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcc9d99ef53b7ab9f9a4dd157b76d7eee46ad7b53f5e283ee9c5e9a1957a29f5'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01","messages_hash":"003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0","transaction_count":0,"txlist_hash":"53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557"}',0,'BLOCK_PARSED',NULL,'ca02ce537fa1e08d656b760ce00a87ae3d198b2338d25c1b8320b6e084719635'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db43ec765b250892f4296235635fb34722a2ee0ccb744adecaece0617ee527c5'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de","messages_hash":"754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e","transaction_count":0,"txlist_hash":"77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5"}',0,'BLOCK_PARSED',NULL,'4954185c03fd52a9ef7a00f413e4525c6b11ad9ab85b2eeed6c6a7220cc80d76'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c287a568ee248470c0792a9f22199cfcef6e1ce273ce29aa2df1a9bca1e4d33'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e","messages_hash":"3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def","transaction_count":0,"txlist_hash":"19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447"}',0,'BLOCK_PARSED',NULL,'704c25db05c5df7037b77ad4800b623d57b9c527b7208565558ca56c14a19c77'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a0e631379c58de23f3a190023112622b6d5e4f73bf28210a5da4bfa66b7f453'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c","messages_hash":"fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088","transaction_count":0,"txlist_hash":"6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9"}',0,'BLOCK_PARSED',NULL,'6e3e1c261ab89710ccdd8fdec5ad696c706b2c57d2c3af4f77cba931f3fd42af'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8badd278d8e1cb421511103f171f37028d33ecc0f057edc0181e67abbb073955'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3","messages_hash":"d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5","transaction_count":0,"txlist_hash":"ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a"}',0,'BLOCK_PARSED',NULL,'1bc2276cb9c14f0ff4165f6a1d5063c2acaa2a4774aed075e5a152023124450d'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'452f85b5f3a01a40792b7b0d5dda4b3d2a6b706e92a2ca7b83e088f25845d2fc'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f","messages_hash":"d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599","transaction_count":0,"txlist_hash":"f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9"}',0,'BLOCK_PARSED',NULL,'016cffe7414527772940243bb4d64a22aee62bdfa5b95c1a85d80ded710e12ca'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9380f7e58f5860b887f288124774f1f149763ed41810f7087283913d912322b7'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9","messages_hash":"538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f","transaction_count":0,"txlist_hash":"a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0"}',0,'BLOCK_PARSED',NULL,'f458773d36fc2e3018d7548cb1669ee16aa02ffd036e94a35d7f8a58074aa7bf'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e593b9ccf2b8db3c986bacc17628123d7b1e3de495332b8c79b1488533d5fc81'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768","messages_hash":"008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de","transaction_count":0,"txlist_hash":"365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5"}',0,'BLOCK_PARSED',NULL,'4cdd195b610f9f9a1c80e68d035fcb350381689afa4d22d0307ac1bd894df16c'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a894c8c6ddb712636f247e911fc842b185e52df30e0ae94bc8cb1315d862fe11'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'8478ca5f518a98c0149158ba1bfa1042bbe126e63e4dc5629d96f291c479478b'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'41ea8823faa1db854b4ad7ff688104cff681751fe53ec2c0bb72ccb7c2fea6f3'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'870dc94fe1be1243c57ddeeb32df034698cf4ccc1c65587fcd2b8a5d03dd57b9'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a","messages_hash":"7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768","transaction_count":0,"txlist_hash":"48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e"}',0,'BLOCK_PARSED',NULL,'3e131bd7877ae37245d7ae7f37569c77a63df1a3dc3ba2f7016d4040906b95c8'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'951faa8a651ee5b6461824dfb59f3ed00ccc1b678a1d90c9efde73bf833991f9'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e","messages_hash":"00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697","transaction_count":0,"txlist_hash":"62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d"}',0,'BLOCK_PARSED',NULL,'72374852d30db958c5f3bbf340a2b12c49cd07ef1ac2a81f08d35993a28463f5'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59b3597e14f9f53e9638e4bcba0cddafbb73d21a0e05bf0ef042833f9e553937'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973","messages_hash":"be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c","transaction_count":0,"txlist_hash":"3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93"}',0,'BLOCK_PARSED',NULL,'2de308c06c87e83be78d9ae64499c22dd2e9cea7b8a17930bb64f196650859a2'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'400267f5f004fba52d773828adab750b2d556313a35b3a6b9dfc6f5b5a0cf95c'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe","messages_hash":"487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f","transaction_count":0,"txlist_hash":"4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6"}',0,'BLOCK_PARSED',NULL,'f5a02400793e0d7106bb9defea8665c627ae19ce5792958bdf23bab9c71a1e53'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc45f54dbac311427d0a0becf8a012563ef6a6d28191956642c0786bdf59450b'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762","messages_hash":"36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679","transaction_count":0,"txlist_hash":"e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea"}',0,'BLOCK_PARSED',NULL,'4ade6bf93af240a805901c1c68ad15b41671c92394c594b1609f17c47eda61a9'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea29c3bd19677603521a2c8c52309b251ec8b1b7192d46e81c45e04c32a0f5f'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604","messages_hash":"859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889","transaction_count":0,"txlist_hash":"911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7"}',0,'BLOCK_PARSED',NULL,'2db082f110c912d36268d51a9a5de164603bd8a1891fe5c3f2df70ca599c19ab'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e7ec69487c11cfa2a52de6a101afedabcdb9b12fd5b618052e95acf58f938f'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396","messages_hash":"a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a","transaction_count":0,"txlist_hash":"adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7"}',0,'BLOCK_PARSED',NULL,'1301f5c3514199be1b600531096ea97e2460fd3bb48749c36ebe31d19310d361'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd73b14544c97bbb873a5bcaaac29b61147377e96f41d6261fef0650c7c5fc7a'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e","messages_hash":"eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5","transaction_count":0,"txlist_hash":"719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a"}',0,'BLOCK_PARSED',NULL,'06b3199799833460682b4ab482737e3a2561564e0b4be9a8d34c6f69b3c2ce1f'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b565599af4ad3901259acc3b0c98c0ff5dbe8ef8f22985a92eefa4c229f636'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6","messages_hash":"48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868","transaction_count":0,"txlist_hash":"0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7"}',0,'BLOCK_PARSED',NULL,'71cbebae913afc1d275e877927c0069faddea1be7f3d66ce1b61602ea73f17f8'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0eb7107ec8101bc725f33bd82fc53da7380b49ac0f8e7b88a9c4421d700ff1e'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f","messages_hash":"175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952","transaction_count":0,"txlist_hash":"fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98"}',0,'BLOCK_PARSED',NULL,'a10cd0dfb2c56daff1dc1709477fde68e32975cb7e9d7b7e0e3a015a7810d3c2'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e77b0cd71cf697319347785df8084eb7ceb9895f783d41b14b14a3ab91659e0'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028","messages_hash":"210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae","transaction_count":0,"txlist_hash":"6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611"}',0,'BLOCK_PARSED',NULL,'73d7592374e60345522a60738dd65d6161edd0bc72b1b95975452dc6384504aa'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'249fc9ca73ae1c345604c783a28143be205df9d2a82916a4f2025769273e9a49'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a","messages_hash":"599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208","transaction_count":0,"txlist_hash":"5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6"}',0,'BLOCK_PARSED',NULL,'f193e7475393f277c90484f93a88c7feb318229d37238d852bad985284947286'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e77421ca17f7a65631b079b1d3c0439a1a0fd43a7b92759415235a5a378819'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74","messages_hash":"6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c","transaction_count":0,"txlist_hash":"301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507"}',0,'BLOCK_PARSED',NULL,'7d2e457fb909843a925c404f43b352fdadc67d28cab874c808bb688a145f4efa'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bb4b3d0a26fcd998a7115703cbc896ad58ff844b5fc25f1fda3b21e31dfe71e'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b","messages_hash":"1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5","transaction_count":0,"txlist_hash":"5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3"}',0,'BLOCK_PARSED',NULL,'2bc2d5562bd0c15e78c7c10cb718a3eae7a4e343822bece68ac9a9165f47666d'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a1e66a8e4b1431b3e36e5d3740e29fb7c21c3405abb7795816165f06675b2f0'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7","messages_hash":"4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe","transaction_count":0,"txlist_hash":"28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3"}',0,'BLOCK_PARSED',NULL,'253c06b4a62dac02c9a8ce08d102f26fac0dbae4dbde1aef23508917280cb273'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac9918239a27a1561623d52f8195903c8c89145aa7a326efac5208ffa2d082bf'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573","messages_hash":"6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517","transaction_count":0,"txlist_hash":"4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460"}',0,'BLOCK_PARSED',NULL,'85559ef81bc9cf54050a3e83a615968c3a050ac42e6ef661caca049823880e98'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44f11c68fdf8043aa475a7f980fd70bdb160b7358542c5133a25926d2ec9bc1b'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473","messages_hash":"6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7","transaction_count":0,"txlist_hash":"61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555"}',0,'BLOCK_PARSED',NULL,'8e1f175455768176b9006c5382e8f9160a8859c03e61b011e8c434d630905eee'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dab536afe548b2ce6aec3ef1488ca104b1b331e46a1b62988b5d85f7e18750e3'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046","messages_hash":"3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6","transaction_count":0,"txlist_hash":"6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53"}',0,'BLOCK_PARSED',NULL,'ba3bdf3682fab0d31f8484c61b9b463a8e5fee2dadbf424f5c0c6c2964f6f997'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16242dd2baae365196a266030bb27b47501d7df8c5c462d3a02e89f41881138f'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe","messages_hash":"6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908","transaction_count":0,"txlist_hash":"1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887"}',0,'BLOCK_PARSED',NULL,'f865a5d906da833aefc2dee0b3e43d84cf6b60c8246742fa735a88e50d9a14b6'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b16266d5c7201e77d066faa780a5d13aaf5af1d63ae14c230753e637addeb69'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3","messages_hash":"f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e","transaction_count":0,"txlist_hash":"ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9"}',0,'BLOCK_PARSED',NULL,'a427fb3269f4921c87b235f854f89690158e718fe430e6aaface5ab63db4d5ea'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'612898bdd39b11de04c440c792b119d8def9d9748ebcc47930e6fed1650b49a2'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb","messages_hash":"957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b","transaction_count":0,"txlist_hash":"0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f"}',0,'BLOCK_PARSED',NULL,'2608204456dd8f347d2d3a68d7f91168cccd49fcc1103690e190d5aa78bfaf0c'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25bc32bf88d3d33f0b80476795654dc63333d73f78af00a3d7e83f2a407d0264'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94","messages_hash":"7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff","transaction_count":0,"txlist_hash":"b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b"}',0,'BLOCK_PARSED',NULL,'f5d25932f709fca02a32ce0a1ef6a0e9a1fa989496cf8efd3ef62d563d1bec8d'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7088668d7677f2225254c355d3fa8297823404212b35492425be14be7b1d291'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199","messages_hash":"80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec","transaction_count":0,"txlist_hash":"7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820"}',0,'BLOCK_PARSED',NULL,'756dbad92551d96a40099ed7c9eed7ece23ecb7a400acffcfc99f9d9ee991f49'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b2de81e29d7abb46a093bea8fbfc2f117bc53c779a90054b1aaacbbdefa7d0'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883","messages_hash":"7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5","transaction_count":0,"txlist_hash":"73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb"}',0,'BLOCK_PARSED',NULL,'78f65041aea1c9458b210a086e7140be6c49c97d7d7bfafd1a063a28e1ee303f'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a317d2dedf5a87124cfb96aad78c1a3d2ecf00bdcb94f27d99d1190e23c28ee'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9","messages_hash":"b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2","transaction_count":0,"txlist_hash":"0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe"}',0,'BLOCK_PARSED',NULL,'b9c9c33f35756fbb676def5076788b687fba4df0dd2b1c92f7baa0dfb46507dd'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd82415434ef8176516bc2e99cedc807dcce24d672fb7cea19d07080fa7a3710'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1","messages_hash":"17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc","transaction_count":0,"txlist_hash":"a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01"}',0,'BLOCK_PARSED',NULL,'10144f112a34e834a3f553072a6bdf81eb8792d0f4fbe68e8fd232c7077bde32'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9f6080e1ac176f56cb018da56b5d6666ac39faed69a2faceef3f83ca066528b'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655","messages_hash":"a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3","transaction_count":0,"txlist_hash":"35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272"}',0,'BLOCK_PARSED',NULL,'8f7a20cb8ccff72b58cdc7da7e71c403cd3d588e1c17b6e51e9745b9b79e1c88'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee03703b9ad55b9147d84500227943c14ade3404a3675509ba6b33ba6426b1fa'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca","messages_hash":"3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4","transaction_count":0,"txlist_hash":"9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4"}',0,'BLOCK_PARSED',NULL,'e8eb9de33056b641d8d0a174ab4885bc02586b47d85177f4d2c150c1cb936b97'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'070161d9d2a38f200fbe7a11e7c874f4cf428285a9cbc696b6bc38ee23a14e6b'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1","messages_hash":"22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37","transaction_count":0,"txlist_hash":"4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3"}',0,'BLOCK_PARSED',NULL,'be9fdfb1744bbca19e0517da8f45728109510ca0a7d240610f6fc2f17d66712c'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'908d78122854db529fabc972e11586f03dafd9b7caada0423e21a8a486dd7b4e'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c","messages_hash":"e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33","transaction_count":0,"txlist_hash":"46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394"}',0,'BLOCK_PARSED',NULL,'5776da01d9f51b397157990f446b387ca670df5c13891aee6161830880ca51b3'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'090458001789e8bcd50a5308d64c8403224c918d1b2a6f22f0eebcd14b0852ea'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232","messages_hash":"acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e","transaction_count":0,"txlist_hash":"d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df"}',0,'BLOCK_PARSED',NULL,'5f0c8d0da43fddfe0a45bfe420fd815c8452ddfd2b1f139bb12d095d54bfc9ab'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e1cf8649ec3f5a52e798da48dca9a83f8f061fa4ed9b1f1f50c41a4dbc5d2f'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8","messages_hash":"91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc","transaction_count":0,"txlist_hash":"25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8"}',0,'BLOCK_PARSED',NULL,'2c8e4028b34361263f16247a3fa516f6b84198e9f32b0907a30cdae9f0d0d4c4'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b1dfa50ea919979d797e8b14b59f0ed4c2921fd3775921447751b7f692d48ba'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92","messages_hash":"70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342","transaction_count":0,"txlist_hash":"80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7"}',0,'BLOCK_PARSED',NULL,'226f4b6548b18fc2150fbf1756e7e61125762bcab26f890ed2d20f0f173cb2bd'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d95601e8438f7e6caa92b70195ae99762af2a90a8ab762304870e1406d73b004'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d","messages_hash":"5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb","transaction_count":0,"txlist_hash":"1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5"}',0,'BLOCK_PARSED',NULL,'5276021833b4914b1997095083057ea9b46a5f2341544acdece2b483f1f7556b'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7cbb01472dd6af740631d0f7dc708e4788fca928ebd2915bba096fed92fbfac'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192","messages_hash":"cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9","transaction_count":0,"txlist_hash":"59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef"}',0,'BLOCK_PARSED',NULL,'f11ff12be4c728e62d1fbdd77d1d1fd72f3b649750b470c59ab16384a02cc0c3'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'737270ce6731269cebc52c9f17c77b806e8cd2d09acf609df84cd189ffd35c3d'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8","messages_hash":"27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9","transaction_count":0,"txlist_hash":"28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665"}',0,'BLOCK_PARSED',NULL,'a5a83777990fc44907b26c284fb12890e2ad8de673fb46672c399ebfbbba26aa'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00ec036fc88c7a5134e64e84775ec48e8a8eaa268d0375416125b3ab2a5e63b6'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7","messages_hash":"1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed","transaction_count":0,"txlist_hash":"f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5"}',0,'BLOCK_PARSED',NULL,'131eaa2905c742d260c7a2a593a530c3c7fa5e95155884866d253308448ab959'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8200be09485df063d625e8869370d28a0c78ae970eb363c04b347679f58960ae'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48","messages_hash":"01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1","transaction_count":0,"txlist_hash":"0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063"}',0,'BLOCK_PARSED',NULL,'96c6fc1e7bd82dea4d6f3866f107b8629bbf66d2a1774def2d4f67aedf54d1ac'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9c923757630aaef66102affb3907d19ff22f60f54b1318a9f1dbab4e7871265'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f","messages_hash":"974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b","transaction_count":0,"txlist_hash":"cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54"}',0,'BLOCK_PARSED',NULL,'9c9a4f37e79739eaa0226534faf1dc82b3cf5602d1164b5530e0f77069826901'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29297d607a0da6cdb1560ef74069a71cd78e08962e281ba35d42f7fdb9936732'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869","messages_hash":"8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f","transaction_count":0,"txlist_hash":"f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735"}',0,'BLOCK_PARSED',NULL,'eab236ea69699f51ff1dfa8a5327c37b9c46200ede0e5d56f59fb1e82f753924'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3744a999c66e5df33de1f0ae38186a9176b1460e91d4bc7b241b530cbbe96e57'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f","messages_hash":"6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da","transaction_count":0,"txlist_hash":"90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f"}',0,'BLOCK_PARSED',NULL,'4914b97f1c7161d1de20fa23534e37de6210fd2683429a4300191da46ce3231c'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9468b5e545955bc56e4001835074c77a726be1fb9c76bca2e9f0989225fc1031'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a","messages_hash":"cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c","transaction_count":0,"txlist_hash":"ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385"}',0,'BLOCK_PARSED',NULL,'16928ea561f1ef9f1f755748957c8e46786a3796be8f739c92b6c2447a1b9ebe'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e04d9870608589017a664793707775e584bac50b0772ddb5bc88870c0c25c0a'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493","messages_hash":"13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb","transaction_count":0,"txlist_hash":"e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90"}',0,'BLOCK_PARSED',NULL,'f292189de7f31d9e4fe1447348acbe69160ec194e5426602b07ba13dc54b4968'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b35927fe9c76c675f2af9347271a681a3ae92357dce3f9608366a01b8492a'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08","messages_hash":"17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5","transaction_count":0,"txlist_hash":"ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876"}',0,'BLOCK_PARSED',NULL,'85a02ff2b7acca8910ea2a2d2c49102b010e9599e6efadcbc476ea40c25d279a'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'686e7fcea14e6ed33cd959e23853237c271ac890d7655f5d4430191cab682870'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b","messages_hash":"f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985","transaction_count":0,"txlist_hash":"67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64"}',0,'BLOCK_PARSED',NULL,'f39d2e0b9680d1cd18252a00ec2f987f4365b3d225b01ba417b1ecd90fc83e1d'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4e2a752262d8a9512897990fbe10da1409bb9eb83529cdeecf410a83b75adc'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88","messages_hash":"abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92","transaction_count":0,"txlist_hash":"bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379"}',0,'BLOCK_PARSED',NULL,'882418b2f49f8551fa6fd26311e9b196ebafa999d8d88705b280e6371f127766'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1332ca1e88212611b5db79efd5cf17b61f5ed2bd94db2ec822e045d096ba8f93'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e","messages_hash":"85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba","transaction_count":0,"txlist_hash":"625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf"}',0,'BLOCK_PARSED',NULL,'9328b721ff6b97ad2a1aaf1aa8cba2f188affaac9784e1db7eaf3c1ffbfa9b2c'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'294d08cdeb89565a6fdd57a7ffd75abf12b10f94a2a51acaab553ef615884c31'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4","messages_hash":"2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae","transaction_count":0,"txlist_hash":"d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811"}',0,'BLOCK_PARSED',NULL,'c87a502cb329fe0e88e8760208acbc0d6c09490b0ff4d691159f89370fa43389'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1a93f9f1fd732c224335273a780108c42f716a8375355483c72992577deb62c'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463","messages_hash":"2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f","transaction_count":0,"txlist_hash":"c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1"}',0,'BLOCK_PARSED',NULL,'008f76ccf272e6cb49cee3a0d88acf36ea8eca915ae5d8cfdfea9ecc81ffda4d'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9c29e660ef24aac13de949ab74ff1380058b43bd5eaa006d31f3056fd1adbb'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069","messages_hash":"0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c","transaction_count":0,"txlist_hash":"5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236"}',0,'BLOCK_PARSED',NULL,'26de6ab7dbaf8699e6e672fa3ecce1a9d5bf88e2a0596bcf65a7eac86ce95506'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2269a2ed7f10a0fa80fc439483de4ce4bf897aa3520e20eefa3359bfb5d44a39'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31","messages_hash":"7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4","transaction_count":0,"txlist_hash":"cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d"}',0,'BLOCK_PARSED',NULL,'4aa7bfb082e964387c9ab4924b8985986dae8a0df42f1b455abc97a2530c8a1d'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'703463dc0698238c4bf26bbd17cb8b7cd046369016fafbbd8d0e2ac26931e112'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d","messages_hash":"057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3","transaction_count":0,"txlist_hash":"e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b"}',0,'BLOCK_PARSED',NULL,'0a01174c07c1bb69643a493717f58cf296bf1f8f0f2bb3c44bc1e747efa46962'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce9b4019e24ca7a030a39a4ab422136fe8f26a3522b0ea59e750ff967c20728a'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2","messages_hash":"5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26","transaction_count":0,"txlist_hash":"d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000"}',0,'BLOCK_PARSED',NULL,'378106d6eeef29a62fcd450113ece90a3f395b37442b1eea8fe13191fe9ad298'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d0babef5c5293e3ded21dade344d64a360e325d05b566405345bfa81865da1'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc","messages_hash":"e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df","transaction_count":0,"txlist_hash":"5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306"}',0,'BLOCK_PARSED',NULL,'fbc229878dcbe4f55b5f00a8611053ce36ba960c23039dabacbf420a47e61891'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d79df11d6b141a4d9d0d4709b83bc4662536ecbbbcd5305c812b42a133f16d'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409","messages_hash":"b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2","transaction_count":0,"txlist_hash":"244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219"}',0,'BLOCK_PARSED',NULL,'07db13c277f0a55dc1bb045b79a08f2a3f73150d0e0730e451037b1cdcae0d77'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9807022127ea6eb3fd25e54518018c077e32150390fa639e6c2e29c940441c17'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942","messages_hash":"798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347","transaction_count":0,"txlist_hash":"a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d"}',0,'BLOCK_PARSED',NULL,'05f8c470bddcf905d03bf93b25dd8a8292e891eec42585f78f0e9375ff25eda3'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b552af2ce4cef59a8c554175f81da76c377b9d87ca3b2670044d5dad9aef1614'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633","messages_hash":"34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd","transaction_count":0,"txlist_hash":"1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e"}',0,'BLOCK_PARSED',NULL,'9c0a281eb5b144bf7954b4abc1c52dfd7f1d6100097f4121fd4cd52db9d0b5f9'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36569cd8a0732e350cf3c4c3247874b2fc2125daa81b51bd5ced84c9fe2daf17'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead","messages_hash":"aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78","transaction_count":0,"txlist_hash":"18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade"}',0,'BLOCK_PARSED',NULL,'a71e16c8eb0dcbac56ae896a55df052872942f393257998eea0c202cbc530e4e'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f0411afb3c4688715930e36744778ae446da44c5ef3a847c3e972a64590208'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229","messages_hash":"141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2","transaction_count":0,"txlist_hash":"af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758"}',0,'BLOCK_PARSED',NULL,'e1cba902d12a1222cd206cbb178e62278842768fad771ed28f5752704395a539'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b1e0d44fab8c65cf9db52750357b7006c9b88cef5622c1e404fd393a53bbef'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe","messages_hash":"eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030","transaction_count":0,"txlist_hash":"69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43"}',0,'BLOCK_PARSED',NULL,'9cb71908b5acb83c0b63eb586df7e202a8a7c90ad48c8b00244aaedc30b1a633'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b07a35e38cb47def7e2b7e5c39f123101fefed3276d352f793621f06e8f1728b'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6","messages_hash":"5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255","transaction_count":0,"txlist_hash":"c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac"}',0,'BLOCK_PARSED',NULL,'119ff2bec9534b561d82a3e89fcd81ba289aa575810c1b21cecf176cd393bf25'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c2cc316067ee8009658508c3a76ecca10181047623f97a87ff12654360adb82'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a","messages_hash":"2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f","transaction_count":0,"txlist_hash":"6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14"}',0,'BLOCK_PARSED',NULL,'c0e4a3505d7afcf8161f187640d6ffbf7eae37f16d687c5e921a63d581f6dc6d'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41a1b5cf6451c4a771415714bdc94e1a2aa4f95965d97aece333dff42132a938'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb","messages_hash":"74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9","transaction_count":0,"txlist_hash":"b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4"}',0,'BLOCK_PARSED',NULL,'f3d478c240c1778a7ef67683f6f2cff3c3972ab5856beb09c39881ab95665be0'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9118ea446709baaaa4a79ee84430f747cd4a8c35cc254b498f52abecb25bd503'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3","messages_hash":"6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e","transaction_count":0,"txlist_hash":"e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2"}',0,'BLOCK_PARSED',NULL,'d5e326508ba0640efabd0fda79bc168c19e2f62263cb7a507d9e65f228631fda'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5ca4731ae628c8c34c15c714850e1cfaeb85c581e126ddd2f57e214ab009dfd'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459","messages_hash":"35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90","transaction_count":0,"txlist_hash":"a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e"}',0,'BLOCK_PARSED',NULL,'e13783635fcdd96caa21c0fb01d340130104f86d3a3f8c1753c29ae67f3f1ed2'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aebc1482c9a8b61197ddc5ebd18bda1d0d23742b8a532ec35173146c64489da'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801","messages_hash":"a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365","transaction_count":0,"txlist_hash":"e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997"}',0,'BLOCK_PARSED',NULL,'41fe98ec251db978f285820413fb386de676f4c56d7930bcd5a24cdceb2e13c8'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5df758f3b96d4d82eeba6fae83271acf57335df20b348884ef4dc0782af4fec'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1","messages_hash":"090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706","transaction_count":0,"txlist_hash":"204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a"}',0,'BLOCK_PARSED',NULL,'6f4ce71f3e91b092074dabacce2a8dd057c69390398ece78944c04887a8551b8'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'292941fc7d329f406d87991078af78d342983c8993d86aa5a6cff34506702ecb'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a","messages_hash":"01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971","transaction_count":0,"txlist_hash":"3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64"}',0,'BLOCK_PARSED',NULL,'a16ae1f26c9c68eec5aa5a7df70577566e265e4927fac970ef4cda9fe9e58313'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f152b791e3173123d711b5017cbcd93aa65dce6627054ce7e1bd7e99bc131d'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4","messages_hash":"88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed","transaction_count":0,"txlist_hash":"179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715"}',0,'BLOCK_PARSED',NULL,'c0d524d1e847e202042f063abf3724ff0dd60398c9b65e38002402c64d491e88'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ddb7974d7dbca3c581534c42354366f177b88a023fc7529007b36f541699e7'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532","messages_hash":"196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c","transaction_count":0,"txlist_hash":"2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df"}',0,'BLOCK_PARSED',NULL,'259c96b41236a576cc0a205a99523ec4dce8d826cda07c37233f18a0e64f4bdb'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f01d5f45c596a2f7397dd4f281e2723d4619cb68e1422b8ace26e6980d728007'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792","messages_hash":"ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c","transaction_count":0,"txlist_hash":"e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba"}',0,'BLOCK_PARSED',NULL,'e5bd9e02e6fe30de2c7d9e5c72653b29893fb1143802342065412e18a2ed67e4'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bd29984aee0fc0dd860a7b9067d26a615230ef8e11a63a1e94986263e40880'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec","messages_hash":"90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc","transaction_count":0,"txlist_hash":"5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d"}',0,'BLOCK_PARSED',NULL,'47693aa4a7c7b86b73c8b21b5357ee8af8ceba0b6be2d69d0861168e30221b85'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dc4203486b886cd406a696934c9e0f69fffcc4438a44ef8b152c00a9839f5d9'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494","messages_hash":"1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507","transaction_count":0,"txlist_hash":"3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb"}',0,'BLOCK_PARSED',NULL,'a9f3a5fc680561d95c94e19f605752cf62b8fd2647f3a3ca6ecf6ce6c8d0dc5c'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4582c95690b9c26fae4c0502e8616e17a79d160f3a837751ffbfc6c426268e72'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4","messages_hash":"00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b","transaction_count":0,"txlist_hash":"2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e"}',0,'BLOCK_PARSED',NULL,'693a432e16f1390bb093c001b4259c495409ac0fceabdf95043fb4b83c89a7ef'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ba6274cef177386bc1dd07250bcd24936f9703734910ddc855000b13ec1580b'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8","messages_hash":"6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f","transaction_count":0,"txlist_hash":"be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27"}',0,'BLOCK_PARSED',NULL,'d17f4240c2284de7c89a3e649f3353cd286c6b4118a154edc777b4c08c00ed01'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'869ff02bb7b0113c501d1a5973268b163d337b349a77737e4cab4f7b30957819'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0","messages_hash":"fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8","transaction_count":0,"txlist_hash":"2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e"}',0,'BLOCK_PARSED',NULL,'206d5369487ce8f65532b67edd852986b9d6773e20f88921132cb987d063e221'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e68fdf64eae5c366aa798749fde868bea0ff80f7279464ea4170ae5eec9c7b32'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df","messages_hash":"eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458","transaction_count":0,"txlist_hash":"387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8"}',0,'BLOCK_PARSED',NULL,'9b247802380993061b37245d5c737db5cf364be9af82c8a852d6d7c92d1245a8'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1082d4aca91d7543ccbbada25a81f66cdc6fc02ab734e619328329e51ef5ac18'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693","messages_hash":"49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869","transaction_count":0,"txlist_hash":"7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345"}',0,'BLOCK_PARSED',NULL,'a39d3390dceb5cb0187926f1a5d707af62e4bc96de3f3707d8a8a9b194c3380b'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e17c8d00e8eb04c80a78fa6e8f358a0d1f529052c3d39adfebe793763e93816'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10","messages_hash":"01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795","transaction_count":0,"txlist_hash":"3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d"}',0,'BLOCK_PARSED',NULL,'af4df191829b4258740cc8e1251395ce31f2e7949040635e4364e45d7c7a3794'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'916fb76bd468d21b009760515981bcc687928bc1b6f464262b788aeeb97b6cb0'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441","messages_hash":"46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3","transaction_count":0,"txlist_hash":"8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f"}',0,'BLOCK_PARSED',NULL,'c0c61064fd931dfddf69c10e8c9bf5c19b32a4fb760f1d825e88f514c57a55f2'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'207b1a38bbf1b5d8dcd10f097d5a251a58030e0f539bd0e9acabe6b5cc00831e'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121","messages_hash":"09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132","transaction_count":0,"txlist_hash":"7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d"}',0,'BLOCK_PARSED',NULL,'1e962af812aa5e3d4286188699098c8169d686f9ab672e0ce5761a0669a1358f'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7732b3a0ce6f48a65751004ba7cd0627ea3b737ede37124d14088e2c687c0780'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3","messages_hash":"d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac","transaction_count":0,"txlist_hash":"ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672"}',0,'BLOCK_PARSED',NULL,'623f0eb2b805f65dea38b2baca311b1726d77a5c13c6acd084366cefeabde801'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b154d4879b1acf90a8f78c1c42320230e2644284d4cd06820ab92b39d6af642'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91","messages_hash":"67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de","transaction_count":0,"txlist_hash":"6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e"}',0,'BLOCK_PARSED',NULL,'012a51832f372b9043af76a2086a343da1a94289e88402923bf9354dd7df1b46'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'382f72af4a7d92c071c81bc287eaafd8df6f8b3004448b34d99fa4b9954afdb7'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1","messages_hash":"cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82","transaction_count":0,"txlist_hash":"2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe"}',0,'BLOCK_PARSED',NULL,'a4275adfa4f7523b4d5eb6a90f6dc2218a0c62a2d474b7b3d887c120091830bc'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6934a7545acdd33a74fe5dd517196b9f208cb22b852a8fc7ab3a8b34a80b5c4'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0","messages_hash":"e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2","transaction_count":0,"txlist_hash":"451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d"}',0,'BLOCK_PARSED',NULL,'2a6271b402379289130af258433e5ba2382eab214a3ba7ab8e77b2f89af89e17'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d09bc0548c4f1ea611288b0bc94853d86cc563430b9bcea61532505fa4faf5c'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2","messages_hash":"fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc","transaction_count":0,"txlist_hash":"2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9"}',0,'BLOCK_PARSED',NULL,'3b64c5e956773d7c7945e6caa641ef390561dbc2a58a344654ce131893647657'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ff2a28ccf824586e330eb7ebbe46e7082ac5530dc25be8f2df8e62176b1c343'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c","messages_hash":"a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36","transaction_count":0,"txlist_hash":"988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7"}',0,'BLOCK_PARSED',NULL,'a5cb55ea9dc6a62363f0db3a5703e386faf06119e48f218de92958a8d95e2003'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ead4fcf4ec7e0ef2ccad4364804c332e5d4a3e1bea3cffa35bad9297081711fb'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6","messages_hash":"e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e","transaction_count":0,"txlist_hash":"68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498"}',0,'BLOCK_PARSED',NULL,'2078fda28fb990fc420d7b279316051402599ab277795b0477931a33343fcfe6'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b219491365e68f03deb659302411286fe3170b2e656d7ba1794f0e60521d0ed'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03","messages_hash":"00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256","transaction_count":0,"txlist_hash":"6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3"}',0,'BLOCK_PARSED',NULL,'1f14bd4611cd31a16384b52347bdac016ee1ede9b05c347af475d0c2b77bee12'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e20359a15bf4cdda179dc488d0211710340cbed1523f47d65c0a30d1f8deef7'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c","messages_hash":"4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a","transaction_count":0,"txlist_hash":"c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a"}',0,'BLOCK_PARSED',NULL,'d76eaabf2d3efd8cd7529bdac0ce777aa8f0342ef05a767804c59ca814c996cf'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78579f326728c1bec312fbeb7a4a1e0798217b1ce3bd3534f5564089332461d4'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4","messages_hash":"b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4","transaction_count":0,"txlist_hash":"71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925"}',0,'BLOCK_PARSED',NULL,'a06f5b41849e604f9de7082109e6111576d2c24730815a777bd29aa7a898220b'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79e5e0626fd81777eaf68fca009c1267db4feac29c932ffbd0a7343af8b98a58'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a","messages_hash":"4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4","transaction_count":0,"txlist_hash":"eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987"}',0,'BLOCK_PARSED',NULL,'99cb9b17343344ec7e701c690595613592687c706f13dfbb119c771e159e062a'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'888d6e54dc087d8c877fbf215b17138b01ba94abbfed11efd260d74c02f49416'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe","messages_hash":"9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72","transaction_count":0,"txlist_hash":"8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758"}',0,'BLOCK_PARSED',NULL,'bdd7d551f34e37575952586f32bcd3c037a2ba053e3390e947659e7b70f0f9a9'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d8d817512d23d2a5e7edc8b5ba909fe1be0529f3b8b0c39e76e89ceebcf43e7'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76","messages_hash":"6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf","transaction_count":0,"txlist_hash":"3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f"}',0,'BLOCK_PARSED',NULL,'bff8c83360cc9ce70a880b754086c1ab643579824ffec8fce49c15a4c54eb01e'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cc64a5ff4ca92897ffa2fc98c15c07868a43a366b97654bbeb5712eeed438fe'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad","messages_hash":"4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d","transaction_count":0,"txlist_hash":"faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0"}',0,'BLOCK_PARSED',NULL,'e4ec1f3c810dda83ba091d2ce97271e531b9ab0cf7a913c36e0faa3cf291d600'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4828930030e2a4115e7d3e03d700052fcd098867a1426ddabed1b0910528a5fb'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b","messages_hash":"1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3","transaction_count":0,"txlist_hash":"03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e"}',0,'BLOCK_PARSED',NULL,'4dcdf968aa91b15d714494183726bccee4c9a5f97a909389810aa778c5fbec7f'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ca49b3ae490cb57eff6937e6fb54704a118fe3322a0a643c7fe78094234521'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2","messages_hash":"404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761","transaction_count":0,"txlist_hash":"ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916"}',0,'BLOCK_PARSED',NULL,'fd8c11ec1da2b87918fc6a6d31977664712becf55dad49f96047f624836e1273'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faa186088473b49cff6c530c884bfb275ae1b2c23b4d7ed36d918b2359a01576'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6","messages_hash":"9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579","transaction_count":0,"txlist_hash":"c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb"}',0,'BLOCK_PARSED',NULL,'a6d7cdacb01a4b44322648f1d0de7e769de687b4b441827108cd22aae229ac81'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72fc1c1d79aef1eb8735c10766fcf2e69ba42c0f4d973e6339dce842ff9602f0'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180","messages_hash":"070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7","transaction_count":0,"txlist_hash":"9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e"}',0,'BLOCK_PARSED',NULL,'30bdd7f20c771eac030154e36f269167d0bb74867abf736b7df911ac71f99b00'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38e19a3566e73679b1d7f997dacddf135320bd94cc011355f4eba3c6e7783ea'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e","messages_hash":"4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89","transaction_count":0,"txlist_hash":"78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786"}',0,'BLOCK_PARSED',NULL,'3b164c721574dbb91ae0780fb6402e287fa4b244a0b8a24011f3467235591697'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2412af411f428d3506a28541413ee45662f99f6f21e8318b088669cbf34c3d7'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814","messages_hash":"0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c","transaction_count":0,"txlist_hash":"247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6"}',0,'BLOCK_PARSED',NULL,'72e38ebb8964e0e6cbdc9f1923e5714b8ad71129f4d68bf3239263c8fe1fd42c'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3da56bad2856f0376a7c851a7e82fc6bca317768d598520a1a43824a551c8711'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e","messages_hash":"26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795","transaction_count":0,"txlist_hash":"969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae"}',0,'BLOCK_PARSED',NULL,'1d892d20367a9c27701ecde0fe9a2224333a536917c4a43b997522fc529f7750'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb27a45bf3dff1c03010e116163af8f7b6eb96ee388af3b4877550b3b46d0fa5'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d","messages_hash":"5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b","transaction_count":0,"txlist_hash":"7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414"}',0,'BLOCK_PARSED',NULL,'ad1616b3e0ee5ea4e9d0189d62d02fa02dbf5a03d5888f325e9c6fbfc8d2a3d3'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67b483eff78060cf0a8424c4862b292b806f83f1a4c00c0ed18418333ca8712e'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7","messages_hash":"d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7","transaction_count":0,"txlist_hash":"4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12"}',0,'BLOCK_PARSED',NULL,'d08f460efd1d50a35c4ab3b119f4d2dbc4a0974766b3e0ce6ffbf19fb36fb48e'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f34bde188e71da307c79ae1d2862217ae98faa17995ca369c3dfbf60451726d8'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0","messages_hash":"70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58","transaction_count":0,"txlist_hash":"798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9"}',0,'BLOCK_PARSED',NULL,'2c0c21e45f135f450f779c46ec8404844a13d08c67293d15d4a680a3aeb64094'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21d734f84346892520f467359bf24ddd4d5c4e1aa993878f8657465308bd58fb'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909","messages_hash":"7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404","transaction_count":0,"txlist_hash":"54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d"}',0,'BLOCK_PARSED',NULL,'e1757ec649b5cc757e46d47b74b78c38ca54012b1d03564d63eb9b5a9db3ce49'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1658711d99ebb2c7c3336ca50ed3d70941b1dac7dae3cb25258074cecd8adf38'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d","messages_hash":"8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667","transaction_count":0,"txlist_hash":"2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8"}',0,'BLOCK_PARSED',NULL,'4a395af705918668e100b96c4ca1fcbf1dba3f88d9e1e4bcf97d67111c68b73e'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a8e0c3162ba0413818e147aa18d18147f3f9455609ba52fbe836649ea720be'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10","messages_hash":"c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc","transaction_count":0,"txlist_hash":"07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98"}',0,'BLOCK_PARSED',NULL,'9669f8db4f3c518e839243ad2da2793d7bbb968d397dc548abe61469c24e8cc9'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f66511e675ed584b3f4c327a6f0c2822d4ccca0829678ad88933d30d711ee0'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa","messages_hash":"b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db","transaction_count":0,"txlist_hash":"da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539"}',0,'BLOCK_PARSED',NULL,'2ed4ad734e87418dcdfa4f2eb7d319455685e0f562a1c41bccd0e44b9a043548'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9abdd00cfffe396d07a80cc6a9346122c57ba8f89a7573b49cf578663e394db'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28","messages_hash":"662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085","transaction_count":0,"txlist_hash":"124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca"}',0,'BLOCK_PARSED',NULL,'52ecd13bbf65f18add5296d82d57df29b43112931cf135d48a4d6df2377537dd'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcf603f95018239853486b9f05a9c26d9f99fd480b9a746ba7cae1c788f36a32'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41","messages_hash":"2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3","transaction_count":0,"txlist_hash":"112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f"}',0,'BLOCK_PARSED',NULL,'27cd1ceb5e207768d999ea0e626e6ff57593debae63c8c3df1be3759ba5fed0a'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73642daf96f91b2e02542cd8cd5017535441316ce1e3b372e1b68c9439d368a'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9","messages_hash":"4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d","transaction_count":0,"txlist_hash":"32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab"}',0,'BLOCK_PARSED',NULL,'a37dfc06577f84cf9d36519be6a04069e703b1b3bd3f232c8b59a0415c66d21d'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6f1c9577a7f986ca3ed6f76cbef9b890bf77217159d5e0172ede6a9b770facf'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed","messages_hash":"4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da","transaction_count":0,"txlist_hash":"9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4"}',0,'BLOCK_PARSED',NULL,'a2491170b5e133817fd17520171d9d6c82437f54663870e8afa0ba8a04f77d36'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b47d59cbb43a779cf1687d37ae83b786ae241ded9d26435f40aea014ea109dbc'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa","messages_hash":"0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba","transaction_count":0,"txlist_hash":"776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8"}',0,'BLOCK_PARSED',NULL,'e24a34abf1632370e791b711e82c6e52e0b7731f3fbebe22000199dbb49601d7'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bcb2cde0bd3669ffde55bd0d14b7dcb520ee65158dbecbe4c284d0341647aaf'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad","messages_hash":"0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc","transaction_count":0,"txlist_hash":"4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46"}',0,'BLOCK_PARSED',NULL,'cbb68a265076dcb741c045331e00f978477398bec21d5543e794b668077956f2'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b4b154b5156957e131b1dc3fe91f31c54b8f0744b5efacf74f30b5dc5ca3adb'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809","messages_hash":"ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56","transaction_count":0,"txlist_hash":"d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e"}',0,'BLOCK_PARSED',NULL,'79081ce2fcd8366a15178dd9c8a0291d67f1130c872f07ebb3bb39cc12fcee32'); -INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'392bf8478ac375b9102abddf798ed2668101e43f6ff329ebbeeadba39df718b0'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0"}',0,'NEW_TRANSACTION',NULL,'b35ca60c77e5826adaa4c71992a3710a3ac33996e219ac8917aa20415260e40a'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a6e44bac18a1fe20ad7aa50bf9e610fa86b3a4abecdd8b3753f21259b942547b'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','34db6224c2cba72a51798ebf26fa138792fde67f9f4273951cd1ab07b69eb322'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e5a70b35b668dddcae624234d0987e874e223dea0b7116f8044c1d5c6da81d55'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','0a52660dbc4f3f4cdfba4d181c0c7754f649912a31a7853b59c69ff61f2451ff'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','c2c50863293ed4c1a6a11e889c71b07297d9a2652a04898f898cae6efb8d1103'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6e0ac3cbf51a4fffdaa8a7b387b3ab0dbe9a8a22f2874447898581750088254c'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3c20c13624a35c1e7bd738671001e7746d56a47df51bd672d802ad275e69c8fa'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'1ecb3f056ca3a6994fa85b473ce7a2fa7bf6269aa6789b8d766afebb846a10ac'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528099bad1d0185356e13f5748fdbee6416914ea4267b5a6ae5b8061d3ab582c'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0"}',0,'NEW_TRANSACTION',NULL,'a73ac93ec158b06fd501c3d281bbfe0694c25cf7e77e2d86de5e5e7eb4b36fa4'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','82c8e996dc8a3c904fec9efa5729310745197e91f4f54cc4b3f7aa7b0b7b5e06'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','01bb9250351250cbfbc3366313b968db45fae4f0a0c9c212c5bf1de6ea26b01b'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','877eec9a5ca40b248c28be34e8899ef7cd371ae17474366769d9ef307571f58d'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','6745152750bb36fb54cfbd44a90d4a50b0fe7a2748257e8ed1abfada1f6a7937'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','e067f1e65c2f6e43921b2580a6679994c611fc10f96456cb7a0fca533187e263'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bd98d8215b35fba16c6b971971c7a9595b58764ea53300538702ee5965fd87e8'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8bc77220f31770776a5ce2ff53484e5b30f742ce55f5b5d65e9fd2136cbe9c49'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'c6d4a624eb710947b6d04042f3cb12a9343afbce61b746c3bf77ceff4e63d697'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35512b3598ad3f96a0aa909f8ae3868712209f33c2ab76cb53d3aedac8081092'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'caedb504a8148c5488f3dcff5e4997cd597241f4d8f28b8a22f771b1f8a7b34b'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b3b469b1d5e8d30b517dd14f4dcd3a784879adea006d89b1d6e06b193df9a9b'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b941d0c9aedd4a26459eebf5c843cd86eb6ce5e43482c04559fae4a0d8f5004'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eaa8c1632f880b49b9124c1223d4b791ba5e3e218523a9fbd3ee07d15341f6a7'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','975db2606987eba41dd1a47b5053d590566d3c8ac020e80c9fb6df9b2ba430ee'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','64c8ce30f937287fc16fb4cbee0af0eea573ad1ecb4955f520c9e6a7f84dbefd'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'5a2a068c35a2b17017d73246ba800a5ec1b26882dfa552a2882317a7352d411e'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'639f60e9da19011db814866ae8e6ee859ea779fea3359acdebccddfffa46dafa'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a35053e6e0e5a85756914ecbcdd12d6a98d5130109b7fc3df25ca5eca3afa1c9'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1387ca5bb166056135847144896c17e0fa4286ead8e61b5792367e09e648ecea'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a2f8391f95dc433e64988ae2189fa66fde81d9c8f3ec9156357baa2276dbb247'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','51208c169c96045cd0c0f378d1218dd8e60fbf0c0c3049ce982c0ccbd125fb7a'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'3adab6a2f81a37e64ea1f3307f5ec4d982a8f1221eff48af67f83f25bc065088'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'339e09650b0d4d08ab7cac49e346796cad270c1594f2c77a60aafacecb101408'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'172fc284f2e58d414d48cc1beae80a91b24993c164e2a5e195108d259b5d62a6'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0609f823125b92a2b33402a0f37d040fd4d6819c5a18031522bb16f07c010c04'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'e41514375d80c5ade7d86d5a81ba7e5022e8f73aeda79bf163a0ecce960157d0'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9e620183cfa0a485518a320ee1914527de521749ea64c8f751929e37e22d69'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'dbfb90d67c4e1d26fad2d731d6dad5bda42011da3d2c61e65ac29567a7166e19'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'14225fb022f3acb16145c071c108eccfcf7548ad690b45257bd2532ab3e49724'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'07062c0ceddd54f644f91ae768b2cd510780d992268c483c0e059014970647c9'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f8e4214b6caebdafd025229797cd06db265b7cc787cd6dad15ecdc40315afa2f'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a04a13ee6491db965a4f255bb88714f2ea260286c5078211d718c33e0969767f'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3713a9a730487a68543aa4a207098d68c7228a46ff16b5ec511498afedbd89c'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'fdc755804dae601d6c3283f313fcd36f25a82fd5359f9dfa12568e1166249312'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d0b294525624557b1e26fbbb012018b961f082bd5c7ac6e216a6ea3f47f787e'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'c55f286783ba2ec3691ef47ddb919c709ad5dec96f79c2509a4873b81e12f946'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23911491e6a241d8446f339f82ebcd932fe8db3729e850e1e4d6c529c171fd52'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'a628fe0747549e41577a7adef00fb7f0578b40a6a25fdc196e831d79c5e8ab1d'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8f0f033b427280712b7c882679d5974306455ef58994f56a8188b4948c8ffe2'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'f9ae8ef5229a28d1f088f432ff0c23dd04c58bea75c82b063350da58e55e7337'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1943d66ac055c560c7a62be3dcb77399aad93e227ef1022f9e142d1337609d50'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'63f1e423c099697f9522f29b60d646ff417063e151fe4ddf07334d17f687da32'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598454f3b2b7237e91ec487dd8908426d20d8ba844bd29270cf8deeea138254c'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'74aefe190729ccfbb1e97ce83f416a357a43e984784666e12249872f727b8613'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79cb34aa41850cbe98e1612731973fd0a051e69c7310ae4dbb449e0351113c05'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'297fabbc8d47c6cdb3a644c8787076eed82b9ed61ebd4318c7d4792b6610068e'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'9bd9fab844740f3ab48a25256db8e575339b7a5e193ae5306118ff8f0a9e7e8f'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'601e5c07b12e7ae0f2945a6d3a4b7f9ebeefdbbd3bf034fe2df41a73c5314950'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'fd9086ac4c0bdf6b9c3376754dda2994ce20553f15c6aa43d87008e5cadd4b0e'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c97cc2b86b51a8c6cfe4303d188fbcd7bc6fbad4edac4f92accb50aa5eb4dd33'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4caa9a30853ee7a7931186dd4c30cd6605de7f51813d577fb3f2b96d3ee24e36'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7297162e53d9ea127a84af2ccf697534a0cfdee274c692655e5d5640ce972c75'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83708bfa745be321be4d2670121feac375aa2fad63bed25ab0e858acd6b087ff'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6d69c838046d1decb063ef289dbc6b9cc01069b8ab341eb50018a5ecf9545ed5'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'1ff4bf426b7853f5110f885ac868df6d0625fe47bdca47638b92b7472a61722f'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2064a9837855c58a5d1173c5c882adc729cb5eeddf4e724ad35287f2ef3bfe16'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'20fbe45efa365bd82c2e911c58934990a875f44107c885c36b8e9eb5a0585460'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d359257975f55a1ea87d213f7ee4109e296d4c077d0ac13fc909d3f3649639'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'24fc3b06a4d2e17347445ce329d77f2adafb2b36ebc87ed81aed8f1bca0cc0a5'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec1d64b28f3540a85267b12c3fcf1d7fcad36267df30c378971008cff76d1f23'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'6bb6d5fcdf7c1df521268d172caedf6f54c2a75372ab61f6590e610cf511f799'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b60af426be8ef47f5e82220969ab8746b3fb1d0a0c510bf2d82827f5ae7a0801'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'610a4c5ca7c4f92f63d91f2f4357f331a0adbac47e8869300a7c03d9eb7a41c6'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1656fa034588d179d581e9681e10d835c5cd7dd116b1d022d29a6128aaed28b'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'0e727a967824e1a1eeb4517385ceaa1155bca950e422464743d91755213f8fb5'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99140c77faff04960944618ddedc6ef5877a8736d73a48a4c842be339885877'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'9f50a19b03aaf1c22447af5a63b92a24e8b1fd8cb0fb6861230d1775eebb4c59'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4f4d806ec3c652ee99a62c1a50b6e0b8319c7afee6ae4fcfdbb0fc3726e05d'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'b243856ec5e4961ce581a67c4d73eeaa8d5dd6bbaac74711198e84074070f8c1'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b221b989d7bf8a617c6a036f2f0957d987ebabcf1444fc3d48da66175c0902a8'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'6e15d15bba5c35c28a313f2a426ac309bed6865a23eb2631ecd56af3e6790cff'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e85105c6bdfd18d42b06d7b264774b545855ff705a5660284989d92008a9b2b8'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'7f144363227c60be1a1d9193ce60a98ed34e0cd558745d09d82e12467339a734'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'181f664e43500c2a0431940c5239bf62dd94945878efc473c86d16397c2cb657'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'fb45d345e12253e826be18d795ca7bc7a26e7fae2b7ef21a117dbeea66685dbf'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1adc808f936f75f6ab728c9d53aab5b7c648a551b04873ebb0cff82419eb7891'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'bf9f3cc63511bae077230a580de6f3db34a3698cd56ee518fbb7c691f2b489f9'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681e3d0de8424d0130025c0f22555a3d87dbdf03439b31410af6b565d7f690a0'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'f238dbfd92f30c5b11f5d2d12c97552a1eda5860b2450ada00c8d084f05d6fda'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45ed21e1363b85812fc945656a2c717cde533ab12e942f8600f8048b52142903'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'7958a828ef2fcea92d1fffd90ae892c4aa95996c49cab2ffeb8a4d1dd0a0fa9e'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc79fc76527476e94afb8905b59eb268b32693e71665d96bf0fb4fbfe2e95ad'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'1e692b97c3d51731e3f75374f9f385fc8cfbac182973541a4a5c0aa1176a9db8'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3188002ca88a498a3eabbe88eb57ecac8689cf2e8ef9c32dd3a62f40e74e74f8'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'192b3693fa7a83be9b3e3f129ff4dd104f09377006ced58d167d5d3d40b5c973'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d0a44c914c08bd347a65f1d67b5fdc9fd7a28573f863f43940f494fa91fa91'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'46a4bfa3300b8af2e1d356b065a3eac908babd48a83619b85c90c70aab9df085'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'531e7603ccc4054263ec0e8b37ce2bd111a8711ef972ab5f136791f225b56e0e'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'f72d93290364562221fa0789e0b968dc71a9f010568ee306f839983f57cb1df6'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4051c2f1bda2f4e4d54b046db8f5cd570d373dfad38629ca2095006649f6ba6'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'3bb07ba760d668fdf6039d7faee08b3a28097ba62a80b856fcf8dce6dd42fca2'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e03b7b5b1b9fcdae2d4f456b70a92557d638fd48b3b6aa1755df6ebad972424f'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'c8c8eb0d878206dfa128e19ff93f3899bdebdee56b2642dd2bc48e3cf79ecdfd'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daaea7507ff4c9ad85389dabf8153b7171b463b8dd574359f79e932b37b21a62'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'c73bff8fdcfc4bab2661f8ee004e2cb523b948b69e1f49b571a794bc2ef95dd2'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd80b18af7b9a2b002622969bb22ab871448277508143bde5d47020b7535def3'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'54418532dc39356216f464cd433cc02f6b42ea0acc293bf5d81c7502abbf1cec'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c34d705dd16da7e2ed29ba6b630ce5fe657e7ba9ac6962c4ff556bf868a886'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'acc069e02080c3f255d32de0457a7d3bb07fa12fa517179aa361e0be89c62c81'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30cb7de7be7b1f184153935ac3134826b7c30b81d1461dccfc83604fa04f0ba0'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'b270cdb32937d04493f4c18f31aa15f68c07bbfedab331988d7b2754bf563440'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d6549b76a9601d58148004750295fba1e68ff371a5344e4c95aa6b3a6c9df8f'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'a80169089a7ca50b0255cac3cabf0d97ebbd452fb4cff34444d53a1c3b4218a8'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e1bcb6e422ec33980ea1458ddb1adb6991d8c867dbfae97416f1777b5454c21'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'1cf0da5ca09e0a452f39df501aae6a727171d8bdb5af652c323d108f379d9087'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85396fc6218e61e7b1792820b07df7fe447da0f2d7924512a8bfc263f50d99f6'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'ec7df94ff98be7a1dbfe4cd8bc137a158a08a5379eae67afb5a876094e3e4cd9'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b991647530b659c3d4b7264f5282977b563adc2237ddd494ba053101cef189f3'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bc24a916e0b1aec90aab6f8848686423b9653faf43e0fd7795475682ab499f52'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ece75f98ca324b5252989d47d6d564208558684179d5e53fcd1dff264282480'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'a4755b8411931ec5f5b8c04564599e8af8d006bcfb450fcf8d7f1f25ace29744'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0ac43de4094c637cfd002c44331dd98aa620d3ba92ac6cb770e3f8a8075881'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'94e57bb7f6ab496ede1b25be3c4b2b2c427733d4bae1527a4872110d6d27a6c1'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01ecd6939d375d02d2014490b435ea693d62384c82b8fd2ecdff0b01ae05c316'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'93151de0adbd7f1bea046032b63e2b077a1844e745d6a5cdee49f958d7ecc3e4'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf042801af10445725f5b52ffeaf01df256d010ff00ddcd38c3d0dea056b6e98'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'c30622641f4e29f9b6c12433c2e64a29a2c339b856a0d13ca915513751d15065'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae56933006427c812e36fd69437f2cc68e1a3254c14d87843a9808a340ad95e4'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'114ac73448a6f1d0cbacb72afbb55ee46eaac5e39cca6097ddb509fdb543de18'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e118d56025ed984310e5c7efa12d09de71ad9cd3fa2e692584c7f541ed31c648'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'9336378df450bee66673dbf20e1e6b1665f872eb6e9e62b292090eaad6d382d0'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0526179e82e8df8450551c4067f1ae4a54a0ba48b4ef537a929a4f9dd8da2dc4'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'c88d4f7a193785f7e8ebfe9c040d5ed95dbcc839056779d264c54e446a32f8f5'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d47a8669860cacfdcfaace43ce9f297de53086a597da9d730aa7c06ab2638bc'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'330c1ce550ba202d41777db5100b56946ea3be787a6426c36a4451bfd3f2e43f'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c168bca18241eeb72db92aadbc91682be9266a5759c7d31b7aec8cc4ca54dc98'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'f2fe98a7f10d91fc9f72ed94e0f560558006cface5738c19177d77a4b5a27443'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09fc14cd9feea89f00751341ba7349e06dcf8d664e1b9e02b4f9f4ffccf79174'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'0100a18b64e8cd35f603f6a18e74f795149fd336ebe33554436951107ac45b7b'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b520a9ff53ccad57de4cf6af9d6d0d0d0b51ff94df26b698c46c86e4c72c4b8'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'5a699d71510d6694ebcb11c78ee0e3b22e447ecd1919e28a2c39bcab0e2d1256'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bde0146fbbb6ddf6b945d43efeda50ca210a172a907aa1a51c31e46a5c5ab23'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'6b1375aab1839d579cbe2d8ccaf864416c17c079394c8847bf0f5037980835ce'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e75eda0064c4991db7ba311f07170ff63afc11bcb14c27e5e041351b4bc66263'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'71c9ad1de3334fff8c0eed78bf096f68ce9b3c6787615e0d6ae12b77a5baab09'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c7e933157bc4d0ad2ca1c305e9012e89e107e593798d83b5d3dce2a07741986'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'52bbb88f0b97ad86e4c8d1ff4eb8b4b16dc2602e70d4eff16063b5aa1838a846'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2468391fe217cdc4f95c321cbf71115d8edbecf8316f44872d1c299dd36fb6'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'9d907104992ec183e10e1e878e6e56b5621267ad80a0238c73db6613f37b25dc'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97898323d7654f11367c0540d4093865954620c7525c5db3c6a66b2143dd606c'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'d3d762b7c291051089b9ff27270b4639f96e8335a406eec7d244d5757a7ea097'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a3a448d89ff4ce03f3c642d9c4c660f3f701f814be19e0cc964fe5487ea35b'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'a7f72d7475b3dabff21a96bec4ae01ae2ffed010120e077ac2325f3097530e9a'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b983ac36e4316361a8919e5aa657a40626e356103a0b8935f639a68d54f16eca'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'9f1bb72db7e1fbdd34f9112ce9b4916fb15c8340639d18f9187f1ebc3636556e'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'748d7c89983fca160b184bce63d8626c58738e2db250f644133a95b837cc26b7'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c713031f45363a2ff39dd951f7f2add373b143f0be24bf844fb1c03ac5e88701'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd88ec4b4479f1fd61c97b22062bac5ef31fe8c014c74bfb3566a47614fafc8a'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'e2f071713e6a61fedda8e084c812f2f6173f2c376f485ded800980e5a3eaf0e5'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f131ff38d1468514a721fa48739755a4b81b05b5aa8fd8bcf5bbdfa019e5ab9'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'e5d8fcb1247a33a746a4d3788da7e6c1f619249f423eead6dd5bf1ff7aff9485'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33672a9ddb29a82394a84653c306cad74232d8ee456e417fcc1a47cb3556db8'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'f249da94eba5648c70aef21a7054948238597f19edea85b291f41f8f3dd72c0d'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'824cf37c68956bf766613197e915d5581107fc05ee60cc4a36a3b8384ff2b56f'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'263b6f743fd1044fa59c071708d30d5f9740a1b62773d461eff0ee41627d2b69'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e616adf0ee6da393eb81ec6f747058a4fabdbc58ebbd275a243853be81515aab'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'71ca175e090010878353f8c1a1fbdba1334c37f1818cc39253e836832071b96e'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a330d3d60042ba7e7533a8c957bc1bd96684214f4002739e9ae5a22ba9d4113'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'54d887f9de5537122b2cedfe5127788eb26615487967a61c4956a5d0e54b9c97'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77cdc2779c689d97e1ee112e019fc1efc79e079c16e4808664311762f562c15'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'d374e050214c05569077fd14f4b111adbbf16c4598bc1513e94c0967f3e71b20'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cce0dc0f47097b150e9c682fd021eb7695d6b3251e0536672ceddd8686daa5c'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'518d89dbcc26ce0a6a08a56b547a9084a4783a07b1951ba4d5fac5f983cf305e'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94e139383e64eb5bda514ac2f9f1bc07017e38761cd344b1e98581e07d4afc90'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'b167de1c3eacb4de5d76bdc18b06539e31e3ce7580f868fc453ad09e6e182dbb'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4da3f04378ab20c0ecc1f9fc72bffe1626f0405ed0019f49db99b12784692411'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'5dd61e68a7d1eac576e1c473c3cfb44ced787321d38a45084e1bc2016fc7a60d'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38706aad91eef7fc2468455e1f43e0b55693dc694212e360709e16c58dc6224f'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'c674c34e3da1740ddba7475f238f9fa47c8dd480beb9abbd1677c03f28672e5c'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6a76a52e1a1953d0d555025bc54e7013184baa63b823843d36b148704f29be'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'f2d546245621981e88036a6099433a515e8187421af82c21ee1d3591ae83f7c9'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adac8c69e0723369cbe9eb31b2e9e08492b1a4ec53a96c9a9b2914c78a27eba7'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'fb4a5295d1d516b6ea790fba304a24170fd288d738309ee2c8702819f10adc11'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ed6f4a4f7649b98cddcdf1af25c71fc4f3aaa53788df3536093f5687e20050'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'13ea9e672f41da2f6f0ff158097ad1ba829af5517c9bc9f76ad2baa7b0660edd'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01607be5c6e45bf3aa1eae5c075eaf4c805ae25f9d5a950a1015786059afafe'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'07747c3ed359e79cb40ca544bd385eb6df5a5965380337a3530a6568471dd332'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'216d8e391633ef3733e692df45475fb5b27386ad5cb34cec1b356fbaa24911fc'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'aab759797326603a13741c1000e64600afe2de9fdb376478c9475e8cfcb7b662'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1968376948cd2eb0649e3134778a942a417660aa1ecd12610f9f0060c8803f6'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'4dada71c5f0ea8e5c1b500618669786139c1c347a29bcea215e2fe15c76493e4'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83b68c33080ac8180bad432d60d0ed3637bc68b22ddf508797dd64965a96c155'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'36be6deb89fba28dbf50708b50ab29fe0e01160cf7bdd4b74d72bd4da16f5468'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f7f159e7dc425a00214fbbdc0c3874c95614702ff6e47412046dc7c360cc6f2'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'90dce01ca614927c685ee8a6cf24ad078ca39bf1f5cda756aa6914fb436e0a49'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f63150baca29f5ded753979c2791b70d789884b1bf3c4fb073a973ffdc6c48'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'76ade670908cb383d6ff80f9b47a4c2267f58a331ed4582967271cb824e60842'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e71117419b1681092f5f405b4b9fe1f9a24aaaa82a841e878f7057d4f446068'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'b7661cc2ded026bef4558fb178ebe55600684dcf5106dc7713d77a416694fed1'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb6ce7e3dcec83d1ec9e659296d8b781512bef496af7ba672f5c68e168133da'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'3552429b89c75117d6714c266c028ee66cfdd768eb9672419d665de92c4839ef'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8bf9be24a11ed59a3469b322b19c84cdb7e5fc1b1de641c253802e4f6d78928b'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'c248bda6c4ee39e2bafb2f4d8ae0fe58eeef6ddc31cebfc7166a778d862c223a'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'8fd6546e8bf24c405d0a92855c346b83f789f34344942b696438e35606532b66'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f1cbf733e8fcd6cb341433dc2aa5f5257f42f2ae23bfd47857f8e10eadb563a'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'fbf06cc8aacec9ab54a213caeb55a6e0d7016630fdcf9b6818e9dc2fc646d709'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02b89778d8fcf080d067d09847c0707f1bc53e1631cbbb5d6fcaa0d5aa86e77'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'fbb925da42f0d4f7c64e29442c99e9e51aa57031b6bd41422b05ec5dffd593de'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34d0ba5da3624267139babf928deb1f3ed7329bc373ba0c4bd0689f658d13f23'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'ea2282f02f634ece782504b5bb604a997f40077b4eee5b90f38e3d189b48a8ed'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d550656bffdbc24fbeaba8b153c278ae2f624d76ec1f33ec3f43432ba8f33181'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'3dc1775067b68aa5d6fc649ef1af7f9a35d7b3db051e40a01c88ce032574d4e6'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'305da3bfbc1abc58ee9079462269c165d327f9b6935ae86eec88365b9128685b'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'11b724ad6288957a442dd17df42f2eb00ac7eb4128bc046e1a2f0a388349522c'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'270bdf88cd111e36afd8ff30d4dabc023baf3665090bca74887f75671b4f2ffa'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'29ec6690e81e6bbc594237018cc4a72d4c5b6db6f9d0277019f1223a4b00574c'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e26d4bb4bc900b93dc0190df5828a4f035a3df50721e39bae521e02770ea4d'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'9bc671b3fbe3368e2b5e6645b22551492110aa22725e5b041c0ba1ca1d629ad8'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a88dcfe7e53ae6ccf01f93828129a2a37f0a05cc65be7b8ef711acebb032ea63'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'f37aa7c2e3926ad5b86a227eae09d92c1e6188d632bd852e1824937915d69d37'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd3504293046b412c1c0a53157a8542228cf7cbee6f33e8e45dc4356f888bbb6'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'517eac6e36b5a71fd3f3f128e18252751b639d40d8e96804f5e204a3d9cba88a'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681748ffb4c68e1182c2472be54bccf5f0902cf72401fd5b228663b370dda23d'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'5e22a8149df345864b2428238c43af563d71fbf7b482873f47f808cd5fca44a9'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b45098f14089224f4b9ab2031a87802d276f8ab983e52f3a6878ed7bf74bcaba'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'3bb640315bbd7be97819e2d17d11acd06c66d8eaa7bd9850cc9b5de572c8ccee'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38bb437449e8d0fd0456daa6ec647c69d7273bc8460e49a06a801b107f17ef6'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'d36f9c194ea5e391006ecb29856645a3fc5cfe5ffa8296bd08d18489e730f62d'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d9b674846ccd4f7a12266ff5d96ec6acac05e5456b13e4582210c8159614be'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'4ddf6f063adc90b43265acd2403a3570480b7eeb182331f6503d110e7f15f358'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6abdc388e279f73e6f9b7e6bd64158c2875d886bb6545365862627441cf0919d'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'bc809c03c7ef6cad2a617bce70004e4b509a8c07efc17e99553e342c872edab3'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eeee7a3392333b95498f1fd1740e2ac579f107644bea53edd164e22fe3ddca'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'7f95a465688d08bb36f6ca61cffec5ea47298a5b5d958c931dbc10dee34ae6b4'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9481c1065522675ac2cbb4a12c29f63cffb5de735a8561d4c63ece99e6c0e744'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'16d1a9b4d7077ecbb1b23ab3d7e9441f15370890fe58ef6937de8983008b07b5'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cf82d2bcfedfedac9effe35c45fcb8d5210009641546f95a64e757202eb626d'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'213b6c42ca56a784f3acdb55cc50a8f3888976bf3cfcffdc56b6757266bde69c'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a99e309cdd777bfd7b0dbcdcbb93013c8928cf10e3c8aac86244d696dfa7c1'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'ecd1a0cfa57676d9d58b7c3b2c04612456b0a39d6f0c8aa4ebfe5ab399520d68'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e97c71c39fbcd1319cb18280be6b74ba3e22a78b2a3f31b68956a6bffd6c163'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5294797a7851723febbc76243d2fc4ce9080c319966bef8f2ce937190f3ea823'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05df71745a1655303e0ff212cad64c28e76bd1433f0c4af9f867c6d05791d59c'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'b13975a3d267101079dd038875bcb3acacca87d4ac21b3b8e54f8b2e4adac40a'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9938ab64ecc4d162574f15e062676069e994e7784b9ec941f666a0e2632dd7d5'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'4c15486251b2be01f137eb2a34b6e0421f3e0b4f63dae72ce000b3946334291b'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2491a4739f6e967334f6e194c0290436f66446263008b3a90016edd42cf0830'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'15cc20e59f9d7f96c7774a9fa81961613b3a105a1e71fd41f193c94d829f7969'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'982b98aa63d421c5b3afdbd471e7076efd9166d81cb5449d9e69a0512b893f9d'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'bbe47db1421be84a6fe459023ee5e5aa467abc02ebca6a601b4154a127da1194'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0310145c65681353c682b203b117f8250905855b20a960abffb6a3f35365b496'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'5134f39c965743c52dd6652a013b077f382ca0288b36fd1dd3572c65bb0c3f99'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ad525eea308410cd8eaa67e80cb93ef1310b5507e1996d94d88be8ab67eec60'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'f96a87ae6e59f979401517f91f4a446bece4f6ad1930e87c1cb12262d8adf173'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6dd1e77a4be40c3f7ffe8dce191f04cbce5a9f36092a62520223cec0230ec26'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'c389b4188f809f7d35366d00ed99f91c212125ea3a207ae80c4114fb75ec6c78'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'139f80b6b823d65722178f739feb616f9adb27f5e2bc05da65268fe6d03b44a4'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'bf617581dff1968513109c6c0f9132ecd3b55fc4115141f3253d0b1580e13464'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a4a9ef8cef738380f18d366962f130158761ce4237c0bb02b208a601d8d7d38'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'0f0f8f7b51c190f29c37c238390b29e12a42712283d697a195a279614ab0ab50'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9334c2d24384ea206df7fc18ad204f14d6dc84ee796fcc23147bce2dc7627d64'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'4e45dbed85da346e512a1bae0f9d1c5a6d0aa7011d4470caa3a6e8cf609b475d'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'541a0f81a94821d03daddb9c0b65f982fbcfdbbe81e9be074b2f188f4a19b717'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'ea1f34fb4a7ec991d4a7d18e390a15a6151726e6d57dbc16b69db63f8a141438'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2bbae120ac1bfa99c32d3939d6cf10cb0035c7ffa8ca367acb1df6ad6ce30af'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'5761842b1418b13bfab3c58d7dadf368372f86bd4151b8b6aa30e62335d90dbb'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b61b23ab21085162858e61497922b881e69e910f6d8138b876b6c3fdf31babbd'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'b813b87305330b7e338f6d78419e94d6f645f5dffc2e4415671b9b87df8ca591'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfc8dbaab4ba0d0b14ca22da88dfe8ef3c28547462bb4b0ebd6c39778df4701c'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'19642c4665e260e3a6eb35bee9989f3f2a1d253f15090638d97f4513033f5f11'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8d5863932854d27c0629804b003642789cfd48b1606844a36bad5f926c228d4'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'8d95b8dcb42a55a87703f1eefaadf00ee4c0f767bd3222b85353ec36195a46ba'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b44b0885a79fd5027637f7bdbd37d3118774a6814463a59969960b75d138fe7'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'7ff15de7c051a5d249a563ad5569b478d677f2808e8492d62876f640048698c3'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7723c78e28fc8902e52b23991429554555050b90596d599b2d4bb4299fa9c9b'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'b897f9372a4da05fe3cc7817ea3994206755e74446d0836b1117f68057247109'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f39e3b50231f34299b9db8306a540d754eba33f373311900cf29020289d6c642'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'97c4831d277599cb05cb8bb76743e9d18786ae5ac31304bf8389bb9a084d8ba6'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'326d91c693532ea92e93c1647c6a1d28fb4cc7600ea9e035ddddb6393efacbc9'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'134ea049679482d2700ae2c762af99a75747edde8941464ae9f3acf047131bde'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229c9b2ed3fe2e45dd017ca9dd4029d4711891f3d66620ef37bcc8e319290bfd'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'40c881faff08b45d9635c40c6846eed10862a9f35f1a9348ff95ed7d308b04b4'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e17058835dd7c02733b540a162242ea204012fc4e4a9799fb573b4a1060746'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'1799e589fdf41597d83a724bf8c13954e07064138dc3c51702e84f25712e7bd7'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16b67ffd7e42ea9a526a02820f28a16e8e15ad4b1d1134dd66167d2e96d78f1'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'ffe8c5328d1469081a123958b77fc1670c3fb0ba78b33894ea4bd062a12771d1'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a2569f6005b0d0825ff9ad34cff42a30b61033ad30702ed1e5ae7e33aee89a'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'0ac33c97930216c96c8a2b6434953d09f899ab798cb12fde560349187300ecd3'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4775b66404be90e962efb7e45a7a39740b6e7a081775b9e4d0cde5668bb9630f'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'52b82213fc6073cef5ff0ce68f907a86bb3361f649e5cafb865aedbfa2f9e764'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e373ceefcaf190ca98a1e356e8c52829d6f834e22db838c8602329aed1fc2b1'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'e7c5a2f81056ed59b7f514c1a6256cb2d78abc7c7961f04ab784bd9d59ea147a'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f20b4f9b1cade436502ef425bc5250aee9965840f5e1111f1ad74894149e3e0'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'d636aa4cbaa0a913ffa8c9b63a9063458d956d2e3f8d22ce85a65bbae99b0a52'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89adf92b0319a20d12b414cfb50fd34acb12258b7a9fa28d398db6b445ed3697'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'2c0475e90d958b160c4d69ed73402bcdfe53fba54d90a9eef10aeefdfa27c65f'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdecfb2442bcd6c7dada29f20af13cb5b4279cd24cfecfc841ad2cff8d877b9a'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'716a1c547218d205487f3228fe25cadaa41804781912b36ef864dab452c6b385'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0fdabfe03e6d03116ef81834e26a697235a82021f128e96239d15dc2550b82'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'e89771096b466ca3d2557ff3fb7cb4997cce0fa7a3965e04b4b62169a16ed700'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3957d3fffba256e2b8fb18084ffcfa8b0d19a6fe3ae22f431041b4c6487a35e'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'543da5bfe50d579e2ed969d4215d772038e7f42eb75c58b919835c9184325718'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e03c6d6a4028f9fb44466c6bde17e3055ed4fbd23934eac31fa40322f00b7ef'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'58bcbd56ebb5b170a9b5f8500453bca766fe272b4ececd37c41678e61ccfc354'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccea7c078b656323e3335cae52518b15144fab92eed02d9080ac3542e9145874'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'1cd2faf548caecb3ed1d0a27cf99b841424513de629f343daaa772bc5d2062cf'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d98708e7dcdcb55607ab134f8190d89562679a18b09882db23f51630e8eb96ef'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'2a6313bb5deca6a35bdd8b8b256cc64257ff7783a26ac394887444735d2336d6'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff353a546c6c53b4cad0bf5bf220a0b62202958986f2c49f6ba670ad6260fbb1'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'4063fc4e68dd6d16513fceaafbf23d0793bb6066834556b12d664b7b8c1af708'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2876dae858af5a4982820190b06596a2255fc2c5ea2794537f095f3547e8f64'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'5fbf7cbedce8457392fe72ea514fca93f373dbc13c9702b1fed3821ed534f1c3'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43261421b432d2c3ae528cd6655877088599b8620519785b633bf5936995d8aa'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'b16880e10b54dd0f2f719981c2596ced58bf4063c9d2fe06ca8d3f5a3bbeb378'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87290390dcaf700664c8355519f173dbc9dafbc656336632e51c1ba67d6e3947'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'1d63d67c6aab4739310da33b2350e9e2f99f73f7744c37fa867895494a12a500'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e72aa1fe7088c82c936adfeb3b6ae18c2fa70091326c2520dae1f4a7d31ab444'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bb6c94ddacc9ddc305bd92fa9e86492f2baeeb7e338ee4b564213b4d6ad5cf5e'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d8ecfd2c5d2538df2bbbdac6125885b9155d2b4457e61f5be7b8313d8ceb017'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'8a65bfb7eec451e09722d5e3df78f393bd85fb7b8a5db70855d45d351e5c2b49'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4de089849053282aeeb9a397f0431cc8921663fff6086f16ef9696ce7ba962e'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'7da58ad679446bc7ca8ea01c02995f115501b38e5ac3a13aa78f676c0c83d1e9'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9ab4acf537731a8ae4fb021f04e898bc3a1602462a86ff76ba77642d19485f'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'e5f0d33930523b54ba4ffef5d88816e7833a9ef1082c806d97c4012a78f7cd57'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96fea2eb8f886a0db4c16c0163080f91702cc7279862f90997afc1d9adc48875'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'4736384b3d36d482a5a43477b06813d80a5ca91f013eaf6338464d1db1eb6031'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb6ae0755c7ebe2ced5d28f0064702945cc001e244bfdc321af99ebfbe9a5851'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'ea4d3d3d285db21642be8a46d000c0f9b68780d7be2c15a59934213c9a986299'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2907e5825ec2fce47370172a8893a7fbf5821baf62d50510ebfcf705fe61d50'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'a0d9c58d70e7d68aeea696d23933a108164db24e888c94b15a5878e9933bb316'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53973aa8e68dbdc5f3e8f80b0bf5e9fed61e7209ce8fc6a48f16b2d281cb180e'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'1fb5d4ee184f04da658efb21c8d257d94dcc62a91e9fc639fec7af31a5e0db7f'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6738fa455c4b1c2aa35223fde443a51ece71c7e361d403f836efc26ccffa9503'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'60f32977b417204dfe2915d0d0dc39e76a81a1e7d9f342e96812df4a9a92cf76'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c479b21695c099ec240df9c8db1a70a856f17147dd789b54096fd39f0b9dc83'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'1f1ad9abe7f595a7fd055bbc8cb56db305fee989b28cb168fb84478937309ec9'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445f61669d7947659ea24ea88ead2eed1a6ec4ab826d5762c03473e13c05f555'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'aa18da67112d88fd1b06a25ac614c7293a94d0236024f717058bf720593b6976'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0b35b8820c8f792f73eca9b14675291ef52d5f03de7904ffd947de3b8ade3ba'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e35d096172c2d5955d07ac900b67e755163905934f7ba93acef99ecd212b09d4'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8b5ae2b35bb3a8a09f5075e9801d19deb5bdb83de272adf4dcd4ef86af8ba8d'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'b9aa5b3ccf4f8475e9bfe9959bc721eb9f1947d46f205e684e26d8add0e5a10d'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c103d5311491544af16aa4c844598e94df7b9389223c690c4648fa6637cd5c5'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'cdee0aa0fbc06d8f60cfd688986111f9d3e3ea53e2cbf58d699d28085167e39a'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa28590c6c407fa3e5b43adcd65665cd1ec7f87948f0a518066d69aa03034c6'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'ccaa86816e131b91348594f57f26ffbc95b62c18b9ad6ca562fc7335f1afb16f'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2aef97441eba5408a36b945a529f9cbc3946264dad827b01f7da1d4351da24e'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b5da484f340f552dfb64cced02de3b50c5f3e7ddc141c673e2bff8a17939d0ba'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65e9847e048c84044b9167821e963ddfe25a29769262435a770953ff15df9031'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'3933beef3a84436eee5179bf55dfb7471fc4d46a85b5eff7969aa25a5727e4b4'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a44bb2b7008a931c031c19a1fc82a08a9539c0211802f8cc20ffb6053174ee'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'a59493c7d91dbd14145b3abac9243b4aa9845831e3f336f325f68faaaf7f3190'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33342472cd56729de1d1556aad34c7e872c6542fba8f52d59d355279f548d18f'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'b308a6260ca71fedd22768b1a47ae0eb4086610e0ec2a54dd3ab0073bedd60a2'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28b961dab86048b6af3638d10c06201fdcbcf6afd916daea6c60dbae9292ee9c'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'af7dbd5fbffc89aa05fbc0458e29b3d2a022bfd2163996c24097ff69e707cf81'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d671fbda645c6938cdcd9e5d56d000c8a046d8c7a43e576123ed07d453a8df10'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'ff31e694a49a4448c9d9c3f97583bb42b1d497e747eb258001e3d74dd6955276'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'200a1842089b98b40fd57a7d9128ba3ab68f1aa9b0d4f1438799ff66d5b6d8fb'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'d73d18d34ca610e663c38dc80b7d072e91048b9660d7db85e3d624f2459c2a3d'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'993eabb9257dd2d112c750c98eaa69425186bfe3c3efa842929be5f38e88f085'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d399788ba15e76a7e0e2ebf99ff8ce8e71d88fa6445518786b00dca046ae7618'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e62f2b6a6c1528a3ef02a5f6fa6d06c241033c56ca27f74d1aae9156983c1165'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'be0d7bc05a832eae16e6f41b8ac32ef52f09e94cbf372c17b4ada2f3d7b2446b'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eda5034aa623b9149f7c7ebd4122013e6a203f042ce496dd938aa59ee8ec6cab'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'370c20f3349c42120ee231b39039a71bf1820ce164cf8152ef36decc8a8a4617'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'863231fc148004607e1da7b303f280184e89c3d1b9ccc71cdd339959b3be2a4e'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'e943bc9af4a40264f1afbcf70fe6779ec7b6a0f2046449b2a847ddac835a6403'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91cceaae6c08ca86c98abf4d954bdd8f643f8b35f5428d9ab973b1e697c8a6a6'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'a07f1e9ba56ece555b3f29ef35c348d730737e5d96958e5d95999b9905831f6d'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d31a4d715857a35544f6fc3a352f555d3d0ea7daf1855b9b6708ef7f736ec794'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'ea5c3b40e7b5d93e5da5de367e0af56773056545aa60633c6e36800f0dcd96b9'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5d5717fd363f3451b82a9a7f7f643f8bdefad4e79ac67fa3df7053760fda7b6'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ea03ffefcf40e632608984fc2cef37fbcbaf89a2e614cac1ba1f17bf79ce6fec'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cf66eda11e23946f744f9b1a09af8cad2ceb299c46f7e2cc1afd6e1cb1f5a22'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'37ce89772f5808efc68143044d362015314813d3fc684e9625b03a7b87393dd7'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad53dc18cff962a730d7339c35871db071d914e26cf2fbb38db853861ca1c41a'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'2808db9efec5e8530fe031ac849afefc3e99db1419e02dddfe0c190481b05a8b'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14e2318e23eee89e361d1281e9501d360537d17784bcd692f7f0970dc6823ac7'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'5372efd90e6137bf201eb397dc1f11221e253b9e96ffe052a82b7a7284218ca1'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965c7dd11479bb1b496232ac0a1717c36fda46eebb0aa77ff451988bf0c11204'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'9342611f021c747cd2c6f68f1289167c1b51ce3c1678c41fbe51960a0813b0e8'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'353103ecd077c4a1e5f3022a2dd0efe37160af772553351ca3935917737fc06e'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'493109fa8e62034d445b416d39bf6077fb36ccecdd24d15a434df7a7ff909058'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb95ace14d3869214c4434251688283145c45cdeb82ceabdaf17963993f3e44c'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'2c621bd77f539913d38c9ffab5c05822b8cb8c52c9a510ddcddf23fa9c584fd1'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9fd16e884d63116ffe7628e4ee22ef8e70cd338a6db20eea08d4453b350aa7'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'09c5cfb050ea97a0855a1c0c2c6e0f0f516ef037828fc0d66cef654bebbffd0f'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cea766c35d0f5e36261cb714db54b4527d7875b7b0e7a6287971160bed4d6a28'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'d4f3e4697f51f5747d3f73c33aca8fc43af15e8b449b1e2372ac933ea505d860'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'909747d8008563689cbc5c604387c5b683e9b0a4f3a64e190fcad9d6045fd969'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'24a5b25debee05cf6941e88b9ba7d50b9107dc3f71d132d4e2962f213a164b92'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2a96fae7a65fa85108d9750deb87c7a6b640a27d35bb82e86153c6acd31be5'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'0724f578e3a94c582700f65b09d2e857cfc36fb73306a0edb6e51cae340589df'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d6b43d16d755ee78bc94e1330aa57995d4a0b6eb6c12ba26434b483130157ec'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'653fa20b9e1699e7a451e5e1b8061c2a7d3b8262460adbf5b783e43c2a592c83'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09918c6ed105c0d4ad6990f977d976e885ec07e6df035589d865a9f21e4b81db'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'af47ce1241dc92aa231f52003b462125352327a6d56ac994f4c012d4d64b40d2'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f973608672ef63593eee449796c5fbb60d35da9df0d4d9b9c673b40838cdb65'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'013734315591dbe33f60ac8df22148b2371d6b50cc1dd2812ac7ad96fa208dcb'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'071953092251b19378ab4b5c3d8cc92a801083d752e5e91e5a727ce70c24703b'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'5fe024e66b205ef122519ab25abbc271809376555cb0479bd328fce79815eea6'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517c5ec8e4417c74727fbbe780d0ebe410ec3cb24122169c33e834570ae236b5'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'0d24adc409fd1518c4ecd02ed837509f9577d93838b3874d84e8491117d706b7'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5f9f2fc9ef460b1cb9a3879e84ee60f822b0c68db5308c8a9f84e1934bd3511'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'a832d8e01378035069341e07d6ab1ab5decfad3b8ac8d10499906e7f10072111'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a331a01f4df0399584414b72dab6f992b357cce8dcf0e688acd5e088a68a83c'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'4866ae40895021dfae3c073eb2cfed5f266c9782b8485163ae940ed10c39d230'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e775737f252c7932eaec9007a107d3194011bf546b3fb6753f60d918f3466db9'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'502eadea409e3ca0850e696d5b78bd2b88ccdfaca3a0ff18eed799536d337c27'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a37d3a819297967913953070a438581538a259699dfcfb3f22e1471bae892932'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'d83b16a3aa11b5f023f3b43dc1adf83fe1a22f401e57758be3c3d99db6213398'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b335d4ec59683dc42ce2c233524d6c9bdd69b7ec7ce6d981cf9d38ce6368ab22'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'1c80a5e36bb0c1dc9354ba9341a28a32422d2d212a9c6d1f917c60a553eaad9d'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0df766e753f82f5ef9aad93cd39be3c20970aa89e0a48374517e94b95283f6d'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'3df25fdb671877206e171394a2e310a1dd25849b9a3d82f8fd051085642ee5e8'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d1af40dfc9df88bee074bedc42951765560b51845f6a142bc9302304b50ff7'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'de4a780b3503157fb4c8d34bcf1fed856bac97969eefc64d0bddc8743b3b8f43'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f995518c636366fa35deb195b1ad2e5f0e29c722411c6caeb8051022c7d3753'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'1a707c0c15109a7c227038d74d62cc9e8a4461a35e645f3508eb2ba8aa08461d'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e298947bae808453ec73aeb6c3eb345794351a73f7395828520d4c05a78d85'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'b8a283285cd7db83a6f3461dbf0cf7aa311290dd9132568e24fd50ac39e85ab9'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cef71febe3acfc5f2691fc167a63d2c250a6266e6fd8e43e11997540e946f'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'651d433ce5db1b054eb760ac4f57215a5b53109fe39c9771297ba865bf009555'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81261106ad2f7a2b7e89c949bcb1a36f04d4405872ac04f6905293b611a2405e'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'d525120cae059af7feaad95c11e9bb8731de6e4130c7ef49b74b3466cc4fea61'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627278a94eb95c50c32794c72e2965c423261e10af1a6a8efec5004085b63987'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'7c6bf4bc339109a86b66cfa827fca76675eed5f0e5881c1e5fc7b311f2c2cb2f'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e163d9382de1cff5f0f7142f992d1854b8496d63abb5873df9ebb529ff499bec'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'53eba09774ebf6e07459e83408598d0a24d903e8f3ed71cce68406cbda89984f'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c14329fc25d49473ffaeeded8c583cfe2709c6d11d8edc26c5946a3b60d5ffed'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'a647d27d8ccbb484542f309afbefeba198b6b3cc62ea44676ad2b002c961aacd'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92fe554f3f981e577e2ce4a7bd58d9653b0eca53f42018fe17f9306a65392f'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'3f67c00efc0236abf3f24c9011e6e85eadfcb901707f3a36d4d92c80e77e6d7e'); +INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64de25b63c8bde33b4039a7384ef59eb667ce2b26f0f66784972cb92001b1ac9'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3739,8 +3739,8 @@ INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383 INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0); INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0); INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0); -INSERT INTO sends VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','XCP',100,'valid',0,NULL,10); -INSERT INTO sends VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','DIVISIBLE',1,'valid',0,NULL,10); +INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','XCP',100,'valid',0,NULL,10); +INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,10); -- Triggers and indices on sends CREATE TRIGGER block_update_sends BEFORE UPDATE ON sends BEGIN @@ -3949,8 +3949,8 @@ CREATE TABLE destructions( tag TEXT, status TEXT ); -INSERT INTO destructions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -INSERT INTO destructions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions BEFORE UPDATE ON destructions BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json index acd5af5911..ed1c7f6e0b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json @@ -180,10 +180,10 @@ "fairmint": "0100000001d8e1083f44827cf8cdab0d756ee5f26c3eb7123c4adbdce79128cca165394c6f010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba46f71bce505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000" }, { - "attach": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cf4ccc12f76f0562d263623f143eee5cf72a7fa3f0cceb97452b4d3227965f7d21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae33222508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace80300000000000069512103cf4ccc12f76f0562d26346240712a35df7667fa3f0cceb97452b4d3227965f4321029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeab092508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { - "attach": "0100000001e04bcce45548f717192b388afca9f58a3ecf19863d37abd12e19f604361aff1e010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e80300000000000069512102cb4ccc12f76f0562d26362231e38db3e8e5833e68cfdeb97452b4d3227965ffb21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aebb032508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" + "attach": "010000000102af911cd075fe7450186580928fb9b87665bd0fccadf663f34752ac5e88a3c1020000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace80300000000000069512102cb4ccc12f76f0562d2635a2e0127c12485563adfc1b0eb97452b4d3227965f8421029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeabd22408000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000" }, { "issuance": "0100000001ec1559a2f51aca1f954491eb75ce429d2d37a5750deea75cd8b425289d213498010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff02e80300000000000069512102e24ccc12f76f0562d2061e67436e926de4c4a6091bcceb97452b4d31cf965f8221039ea8cc75076d9fb9d0151fd6bf10984b6afb51f65ede10ede02a3cf860d471e521025bc8fb22d87eb72fb5e297803ab9aa3ace5bf38df4e23918b876fd3ea0cdd7b853aec3edba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000" diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index 70a1f8f844..005432f66f 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -138,9 +138,9 @@ TX Construct - Transaction constructed. TX Construct - Transaction constructed. 20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns TX Construct - Transaction constructed. -Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0 (1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0) [valid] +Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 (c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02) [valid] TX Construct - Transaction constructed. -Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0 (0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8) [valid] +Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 (a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726) [valid] TX Construct - Transaction constructed. Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid) TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index 0874472484..fdd1c8f3ee 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb','bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160','072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31','a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9','9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26','88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381','3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046','fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4','dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3','57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327','fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5','5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9','2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec','ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed','912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0','deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8','454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868','3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0','c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc','12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f','87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4','f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e','0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9','2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5','f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83','b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659','18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002','0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673','fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e','97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0','c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81','37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead','7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840','324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333','5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97','2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f','fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd','de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f','6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855','acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373','7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f','e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283','989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac','ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c','69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6','d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a','bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a','2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5','70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff','b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be','942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53','6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f','4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1','c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3','6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1','a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76','9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede','da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d','bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114','c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6','a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4','1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12','4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf','9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e','16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e','3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419','5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c','ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1','b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083','cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380','6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a','23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b','49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751','1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0','1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4','a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c','2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c','2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce','5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a','3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3','4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e','3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d','b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14','cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db','c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661','7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801','489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956','c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a','4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545','82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f','6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05','ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408','dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e','67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f','d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66','36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4','08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05','d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b','8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6','9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4','7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43','54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28','64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c','9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b','760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb','abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd','3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2','7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87','8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca','714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818','fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c','b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17','1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034','470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c','80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf','9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88','33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091','8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6','568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911','504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d','3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f','1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea','8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb','4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c','037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0','8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b','dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d','54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c','fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15','5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f','22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5','559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59','986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a','aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619','1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97','41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb','a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732','9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e','1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98','808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb','95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6','d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815','beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8','dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e','902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484','2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c','425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01','53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557','003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de','77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5','754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e','19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447','3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c','6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9','fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3','ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a','d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f','f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9','d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9','a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0','538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768','365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5','008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a','48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e','7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e','62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d','00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973','3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93','be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe','4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6','487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762','e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea','36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604','911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7','859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396','adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7','a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e','719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a','eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6','0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7','48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f','fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98','175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028','6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611','210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a','5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6','599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74','301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507','6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b','5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3','1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7','28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3','4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573','4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460','6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473','61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555','6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046','6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53','3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe','1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887','6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3','ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9','f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb','0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f','957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94','b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b','7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199','7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820','80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883','73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb','7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9','0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe','b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1','a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01','17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655','35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272','a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca','9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4','3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1','4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3','22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c','46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394','e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232','d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df','acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8','25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8','91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92','80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7','70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d','1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5','5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192','59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef','cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8','28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665','27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7','f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5','1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48','0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063','01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f','cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54','974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869','f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735','8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f','90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f','6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a','ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385','cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493','e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90','13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08','ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876','17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b','67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64','f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88','bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379','abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e','625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf','85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4','d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811','2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463','c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1','2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069','5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236','0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31','cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d','7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d','e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b','057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2','d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000','5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc','5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306','e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409','244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219','b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942','a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d','798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633','1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e','34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead','18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade','aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229','af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758','141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe','69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43','eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6','c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac','5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a','6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14','2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb','b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4','74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3','e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2','6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459','a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e','35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801','e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997','a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1','204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a','090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a','3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64','01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4','179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715','88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532','2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df','196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792','e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba','ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec','5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d','90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494','3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb','1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4','2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e','00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8','be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27','6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0','2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e','fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df','387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8','eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693','7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345','49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10','3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d','01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441','8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f','46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121','7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d','09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3','ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672','d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91','6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e','67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1','2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe','cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0','451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d','e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2','2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9','fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c','988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7','a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6','68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498','e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03','6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3','00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c','c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a','4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4','71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925','b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a','eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987','4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe','8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758','9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76','3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f','6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad','faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0','4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b','03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e','1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2','ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916','404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6','c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb','9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180','9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e','070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e','78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786','4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814','247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6','0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e','969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae','26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d','7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414','5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7','4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12','d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0','798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9','70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909','54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d','7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d','2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8','8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10','07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98','c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa','da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539','b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28','124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca','662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41','112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f','2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9','32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab','4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed','9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4','4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa','776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8','0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad','4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46','0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809','d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e','ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4',NULL,NULL,0); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) ; @@ -814,8 +814,8 @@ INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0'); INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1'); INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1'); -INSERT INTO transactions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C5843507C313030',1,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0'); -INSERT INTO transactions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'657C444956495349424C457C31',1,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0'); +INSERT INTO transactions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'655843507C3130307C',1,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0'); +INSERT INTO transactions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'65444956495349424C457C317C',1,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0'); INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0'); INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1'); -- Triggers and indices on transactions @@ -950,10 +950,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1085,10 +1085,10 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,31050 INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); -INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); -INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); @@ -1182,8 +1182,8 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,'8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,'cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); +INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); @@ -1273,10 +1273,10 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',508,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',509,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); +INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); +INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); @@ -2627,441 +2627,441 @@ INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A1603612 INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','23d2f1594063fd9de06cd1afb225527b5926e43c2a409ed16b54563c644d6825'); INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'13d8d6def32619d8814c5b059aff533ac118873e7cc66a9247e7d35c56b4e40d'); INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de258cd8ad734c4390cec947c6a29631009286cff8bd97c162ef69fcb3cf804'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"657c5843507c313030","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508,"utxos_info":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0"}',0,'NEW_TRANSACTION',NULL,'40189d3aa6b2b5fffc0dba9478c4909440ae7b3a6127578dbcdf71221369643e'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','41b769258aea3555a9573b5aa50512049affb70cf06d7e8e76d804d60ebca021'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ASSET_DESTRUCTION','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','a841258d7ac7ad6eb959c75a3f0887a1bd5d3cdc4a230dd95f8eb690ebc3b8aa'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','3e4faa82b80b52912a7d0a78c5087840f995d74fa7352a75f975e1d9ed8ac99c'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1295430efd8fc49c1f1dbf842f12081d34298e8c391ce68f53fafcd7fb8a6845'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","quantity":100,"tx_index":508,"utxo":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','440ae37975a9a0e77670738e2e822a152e290ade446d4f0ae14f705e79ef1513'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'ATTACH_TO_UTXO','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','59e8466cc1d6ba7ddd255fd25c6f9cdf4474a9a279fd0574059368a34d7bd77c'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0","tx_index":508}',0,'TRANSACTION_PARSED','1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0','1c47511b1a00f8649bea976b65f73a2377017fb17590942e0091777d0de01fda'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"63f036694aa85f6ab2246666f9c05e223358519a91080390086960de5cf84bcb","messages_hash":"072e83f086e8792e04a93fb8541e669bfd2c4d861cdbfb4b5facfa2e4791be6c","transaction_count":1,"txlist_hash":"bd3d5a651fa2b8eb1806e3ce2db5d6240732000e15f3ff005195e93afd52f160"}',0,'BLOCK_PARSED',NULL,'d2629645f6aa3811017ecdea5645d91bba651aa1baa541716d5619daaaaea241'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b231b5ab7c971655219cb735a8ad330185c6d98bca83cdd73e430ef16484037'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"657c444956495349424c457c31","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509,"utxos_info":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0"}',0,'NEW_TRANSACTION',NULL,'af6465607af0d6fa2be32333e658c87f5df64bd9735a35a900a012d5b8113e28'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','6a302f284aa2c92002444f27bd4e60ee7396d149465850e7fc99f4bbb413409e'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ASSET_DESTRUCTION','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','8f341166c8692b21471683ba7b55907dab24e006be24ed1af0c9bfc23eb73ff4'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','e0cd9b228b17ddab383b7041233479aab40947c71468df5fd591cc5fd9942211'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','7764a34696a2cf809042f1bfd4a14eb0be7d88aa3f70736ebeb56ed68267c34f'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","quantity":1,"tx_index":509,"utxo":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','216c789bfc932ec2a8bcbc1f42792cdaa7cdcf58f01b87c920046df39a8bcb60'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'ATTACH_TO_UTXO','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','73630cd10004b65a0f5d9f43c0bc5881c1d846633439b44b420f9699ee6f1dbc'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8","tx_index":509}',0,'TRANSACTION_PARSED','0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8','fa06541a3220929312ad317fb8dc4c06f848ced4fd8b160d14f6ac45d3bc0c05'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"ebcfd43d7d27780a06620fc7c09fd4188980395dcb60eda8d75f9bca3b87da31","messages_hash":"9a756c9c738a2ee7066c05da440997cdfe0d6bda677631a85230f7d778dd31f4","transaction_count":1,"txlist_hash":"a34eeaf2f31a7e83e7f144f661608b95f656e3953be403bc1a687f1919ba52d9"}',0,'BLOCK_PARSED',NULL,'9678a9538837a267d48a7ef1aba63439e2c35626a1f70699533cb3acf0cefe59'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc6cb5f16c44801263f2fa247ba08cbf8df197ae4836076dd18d8699fb6e1134'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'1e5e33abb03bc4f8996bc3374a9fb0485804806274ca458d5aed351c1a84910b'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c61dc4571d8bbf06879c94f4bf286c0bae7d8866a759aecc62f18f4746894949'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','25235c50f22b2dbd58cf65c89177c13a2da2c7f66c528e6724c3b52783f0c2b2'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','c2c58989167603be25e187864a5722ac5e57c2d11cc3c6f5e2760d2040538104'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b8a68feadcb8197558ae61da55ad065e677fc80126838101a5224b5f453481b7'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a78db4d6355477861351299d27b22cb942e31ded46f392db8148f3c0d0bce984'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"00ec3edf642308ab97897029f8a33b5b1ffdc05a0b51600dd58f01c1cd2bcd26","messages_hash":"3797cc43b0d0c562eacfc6834926b2e00c7f0b8d0a5d5c130137a22e083e1bd2","transaction_count":1,"txlist_hash":"88d3ceccdf39cc08e945b25a993378c18bfd36f19bd19ecbe3a5562d737f9381"}',0,'BLOCK_PARSED',NULL,'6fc1dcf7b1a79eaa345595dac82191474af13bed1e586d2e1d9aac6b2fab11c0'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59416a3274cc33dbd86f81271bddbe3bd344abb692b33d2759d919da7a8371ca'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'3946fd5fe7bc2434d21875dcc0934b19d2a75738a9de088702fe0c9b11113e01'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','8c209bebc10e1141851040e9fbf6344910e9d3a9204b1d606dae9e1e13c9133c'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','e5eeb79cc84a19214216a1b5b080f90848f8346a475daefde3b3aaa5b347bf33'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','9b9d78e92a0e5a0fb34df940b73074d5db7795fde3937454a0006c019e0920c7'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"e4ad80359f012cd524e8766e358dbe9597be2e9584cd029f9db0faf7ff486046","messages_hash":"dbcb9935f6228a180455e2a6321c995204d6a000162c8fd1e91b870550549677","transaction_count":1,"txlist_hash":"fd1236a5efcb1d8641e9de16bcba79bacb569cbabf10e1f6a451a619f8a35bb4"}',0,'BLOCK_PARSED',NULL,'bc5bcab54f83764e93e050c513cba3635a48ce7552c307aa69a8e7d3532ddfae'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f10e16c35c0e09ef85fda55c814f2302478cf9956bedcf1ca47fdd7825a67ddf'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"c39cce5280faa4c043640a6b2761392bf1de8f99e3e83cb9aa8f072d30bfeed3","messages_hash":"fb8f14fa3157d0765babb89d01779d95f2e197e9747fbcaeb1f3abe962b11087","transaction_count":0,"txlist_hash":"57432d87ab893b6946e711f057276f89c1e9d063cd1a01755bee781819067327"}',0,'BLOCK_PARSED',NULL,'6d15492b17a9f91df4a6058732786632ac961be855953bbfd1d4ce25ac2dc450'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41769a3e3e2c11c2839ce1735486f92083665fd26904409fe5e8ad07985c27ab'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"e7bc8a729256d52da2ea41108c9b59a5413841074702d60595142e7c7ca0f7e5","messages_hash":"2206c2f2cb28cc0dce7892cd2f76271b3ed3f9a519dfa2991897fe13dac599cc","transaction_count":0,"txlist_hash":"5f58b9bba27cc68198bad11b4a0710e58a8be6c6ff2264b951934e67d5dfabb9"}',0,'BLOCK_PARSED',NULL,'98cc42d0aa64a93d54413d942f62bf6c92420f9402af3f1ecfc275ceb4748ff3'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b30b6a5e3c6a27c552028a2884baa9ec13dc0ee429d6cc4950bd1344dcf6d3'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'9a79bd7a18a72722c035c77fc57ccfbc3f91b00c6d4da47e2cfdb5f6bddc76a1'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'93832c9fc472afca9674a31745ce2cb8d49cf9ed2bb8127d875a5bbe49e3a4f6'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'05fb1228b5476b484ae3cc938da689c3e4caab604e94fe5d44a406973f4a5e95'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'a361939ae25193e65235dfc27b1b682a09153abce6786df5131974554a4e7015'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"ec4a32bfe3a9abd260123d33d1c5924f02aec4743fe198102d1c8411971473ec","messages_hash":"912ec7d5123995f513751e7af7770a18e456ec4efdf56096e8f16cc4161207f7","transaction_count":0,"txlist_hash":"ee34a439861f22047f0f289d9587825409268248f4d2f4e56a0e654aa0056aed"}',0,'BLOCK_PARSED',NULL,'159db4a36b5a0da7d78f7f805239e66f92cdf2d9353a5d3b86e54c37c812f67f'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4d343e151b987dc6cb3f315bd8559d6ddc5f3aea4204cb0905a214420019902'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"f5cdabcdcfebcbbf7d3cbf32c7bb9b5d649d1dd3d771f97756eff083948235c0","messages_hash":"454de846b198cd85734bdd547853d832bb75b21b62f7de57d0fc00a017c36c8c","transaction_count":0,"txlist_hash":"deff501f32c85f1b31fab813005c1538c52ec550fd0f45bb51f1f3632ceb4ba8"}',0,'BLOCK_PARSED',NULL,'174eb2be50e64644ab043c3d9204167390489a7072710331b2700797a44b5036'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f085571a79437e53c1b4802b1ae2224ffff3df7a285b26b0502f291c40468bd'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"c78705298f4b76ea77297d82d1df9ba2f71d7ac6f74a684f44995a1bbedb5868","messages_hash":"c7f8331d386235910aa23af4881aed2a03a0d6a028aec5ed44d2439a12fa4798","transaction_count":0,"txlist_hash":"3a2766bd9263f67f6f311832919abeceead513b6db045136f939964c68e8ddb0"}',0,'BLOCK_PARSED',NULL,'0b34f541e4e2bf9b995863e5393a8ef2809f5f860e3220c57e1f029c757ad7ee'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69eb53df583ff93842fad024a1e38025fe1cddbe5f00a81a12ef42fdf2cf563e'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"fa06256343dcfbfa51fdd44c968e3f06a710a63235b956382cd05394eedc58cc","messages_hash":"87b8788c8928391bd063374e0ae4a5df1851b88f45db68e29ee8e01e645ec392","transaction_count":0,"txlist_hash":"12294c7de5a405ff3525f1e428df99752e5edf79aeceba1e24f71a2513568c5f"}',0,'BLOCK_PARSED',NULL,'22760256d6e3dc90517357e5a23e7627a27653a74efdc5232ec4587c2752d202'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2d929ba7aa948c2e8e43cddde4f43bad034a6dcd1466ad5a800e7e57790fa62'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"01ac9e20f5c40ecb868bea274e121f3072a4ab815192a4dd6ab50730b46e29c4","messages_hash":"0f7a3a2ddae279a65ecaa813f428b928babd572ead89f8d591c7a52f976acb2d","transaction_count":0,"txlist_hash":"f16b87f7aafb3970b5097b618ea6b6e2b9df9f3ac9d881ec99268d51c322f41e"}',0,'BLOCK_PARSED',NULL,'38b02763d65cb7583eee29c6b140c2fc2f094c7c9a789a73f04c2253b2776f12'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efc2fd09ba6ce0b886e6e21c8e2172fb231d182c6d333aad4dcf273bc52ecb2d'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"f35946c8b8da9ea58ed147ad01f401c3295f36c3752f2ecde86e1b6f53dfcfa9","messages_hash":"f74222046f0a558ed5b915718a347ad7f82b1381f0bcdfe8771108875b50da51","transaction_count":0,"txlist_hash":"2e4022e20de47dd79d85549cc8f9218513381183905ef390f4de76d2767284a5"}',0,'BLOCK_PARSED',NULL,'8fd56d2ede04e6329eba4c030faeb4419db543d2b7fc8b5fd1edff95519c4a17'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f809034fadceee042a9e64736d0b950ef36127b69a08159894eecf2e59c86cd'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"e588001d5ad4a04c45699c35d41e14dd116033059784f0a11d294b19c19cca83","messages_hash":"18cf762e07c6f8f08bc05480139b0a09e82cdd4d36cd1f6b6934ff29f52db456","transaction_count":0,"txlist_hash":"b7bfaaa225997bdd1b50beeb474f41e29bdc4b7a820f610941e7314638f16659"}',0,'BLOCK_PARSED',NULL,'4c53ccf9ed509f1b00a5e22eb766440119338946abd8a1993934e6049e1e6600'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43cc92f61a33184c4fda3f0ddf846da35bbb442e0dc77749e49226b0a917d196'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'89357a1cfe2f0e417b38165d8dd05e5637b93668ac705911c85fc7ca29ac23ed'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'d974638b0e8649dd7a05d60324af5cf50c280de2f9d6ae8335b9132ff34a6ccf'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b0704aa240c24125f4493e3fc45f227922389ab7c714bba431feda9de079159e'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'34cb8da66e487cc511ad20680c43f3530a6ebcd2118c8ef9c075ba3d3bc793bd'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'559b2f40a02a8b8da94d4fd7c27aa6bf65aa55b074f7d91e6d6f64996f367103'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83c3560803bc69000e9074ab9e2c9bf2efc75c04850ed0318e3cf7c4bdeb5d4e'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'e5a429c11129a9375ce43752a27b2ee471efe7fbc5d1a37452392e02c7da3889'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8ec84a8921e1ec43057825e387e3e9ea8de4984940cdc56b71096ef2cd50f07b'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'69e9b3c9a5c0b7930e6a63e9c0dfc976f6d415cd1e55041b6ef1780610ab682a'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"deb8e48eaff89485788773325e109df4592758f96d4f0d3ecbb1ade17dd10002","messages_hash":"fe5389a682485d1156e444c68e3c8bc9ed0a7ed67d129949539680fcced6e599","transaction_count":0,"txlist_hash":"0842f247f955fcb03dbbc2db01ec9c6cc8379302e0fcbcd7b94d6377de222673"}',0,'BLOCK_PARSED',NULL,'9e5a3adeb9eba7d1e133b2c5812d166d6acc84731bccdd77c36a550ea7719246'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd2168088bb7b799efb0c044aecb0a6e2259b2a117f22a4807a24bf9ed3ff39c'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"87fc7cd13e59c15ec40923f173a7ce721f39d36fdfb3120c67366c0cc931899e","messages_hash":"c4df2cb9a302f6d78322f767c28c8ac6b4ae4f375a9b7be8b90ba61431d632ae","transaction_count":0,"txlist_hash":"97040ccf90e52384f1b5c1bae688966ab8a0105f4d1a4d38533d5757db66f8c0"}',0,'BLOCK_PARSED',NULL,'f921a493a94c7b378dc6a0a5bfc72ad68b3b4025343d70a67a5835935fce0486'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6184730518b9c15c0972b129a6c4287457c103374bb0338ae26bd16d998ba3c9'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"b4c06c7286c95b2384ddd31690a86f864db5eaf86d0888bd1bdff19d4931ca81","messages_hash":"7de2bb9afec26c081645df6b9d4489314629aa5c83d700a0d3b4023b11ed2ba6","transaction_count":0,"txlist_hash":"37f53d5d3306f48abf29c96775428e8cc375a47349b13b4537b527b195415ead"}',0,'BLOCK_PARSED',NULL,'8f0347f4927f475ff2ad3be8692476021ee77a4fa073f681b878b44d42648013'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba33fd621a6397bdc1c58f41f5af2252abe6882cb31c1f7b647f2e1d1ef6b3a1'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"ae7a12285c5bf8d28fc979facb2273d73ee360b9725d17d0c9cf2e91e176c840","messages_hash":"5924cce33113c71f20934956c9964fbd0b006206503ead1577d95231f43faf4c","transaction_count":0,"txlist_hash":"324aa207f10aca57834f08ad4026585da297321cc04272497f1ace288a0d6333"}',0,'BLOCK_PARSED',NULL,'9cb8dd77f9dae2ccafd6a31f7eb1e7d4f39f5e36d6a081ba6742ab0e0c926c2f'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8aed22222ba2051631f3127dcec9c590b898c5bc0de522a5b0b7adb2d4fa1d8'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d39fd48b98637ff9e11876de502b55619a89d9df71cc3854d94a7e8f4ef8c97","messages_hash":"fb3a8c53e8e3af57dc6efce0337f82f0c2c3f4863cd3fb9a75a6c51700aad08f","transaction_count":0,"txlist_hash":"2ee468d8b0d897dd483d8153c3271167505c8286d948483d63d1efa1e535cb3f"}',0,'BLOCK_PARSED',NULL,'931ae73e302bb74402c956ab3c4fcbdbb5f97c8ce914a4f955a7142bcd961076'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa69e6d6619062f2463e79f0fdb171443c709fe2bf275a07cdc5def79516744a'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"5af638556d8cfff648c2924152d5a9c77aed2fb8695a60c5f711562dfa9336cd","messages_hash":"6a3051baab4524523411a320fdf10c30652c2e6689a800cc8035c47258734bbe","transaction_count":0,"txlist_hash":"de12e3f7cbcdea7fd359a1ab5ca39b0f6aed73f061dc7f075477ac438ac9205f"}',0,'BLOCK_PARSED',NULL,'534228770e1dd464cb7e8c17d7550a282517a756eb378761ef06cde56bbe37cb'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b96a840bd4bfeaf4ed4600a8dfbd565740634b2de257434df5d965de916125a'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"414f7c596cd66d22a222fdd78b01b30c0ee3f6e4635a49bbb5f2219b5acee855","messages_hash":"7073ef4f4196f1a5f8bf4894c66c2a4762e21d7b0fd3c8b7987eb47c981fa65d","transaction_count":0,"txlist_hash":"acb5c602d8f707e34d983a24bed42b05b079416c0c9c55f2a313a6a1ffdd2373"}',0,'BLOCK_PARSED',NULL,'99b986c2b627fae162c9d8e2648842aff3a00aa1af1d1c8a08eca887daa6b997'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20be16c569014e1a3d211d221c91c888bd70b272ae901cc5ed2e12b5b320fb1b'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a1766046dcb5b4b6fdf745e4b45e2ed4b05c2733e3342d165fdc669206edab3f","messages_hash":"989c920607d18f38ad2f05f9be68bb670ab0a63a99bef65a2119329009b65123","transaction_count":0,"txlist_hash":"e36623ef5d21aa1a603452283c324697fd0d79a6590973db7cbd774ed2d4f283"}',0,'BLOCK_PARSED',NULL,'4bd0adae6e8743349e164c3f50c8623df9b385abdab918cd97ce595d007338dc'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd9b4599612aa14b58cc6f90a21b17a02976e1b5794190fddbfa62780239ad00'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"c17e0800b7a3fee1549641fbccea275204f90d20e7bb38522430b94815d167ac","messages_hash":"69818476a6d0fa6d06f602b0ad30d17a56bcdee7e87cfac52ef1773a6fb79ee7","transaction_count":0,"txlist_hash":"ab970010ff954b515bbba1dbaae9d7606c8d1e68ba1c497cecfe189f9c10666c"}',0,'BLOCK_PARSED',NULL,'8cad207f38bd9d04fe437250ee9913c0cc6ed9fd51e9eb3bee64213923e5dd71'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10ebc7b843138a88e9ec35b1d4cd3aa645ccab9c4ad89ac001e5705dbc2c2a03'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"c8a1b90b6f9a0d175e4de52af51aa9574f3d19b58945ba20a7ffa2da92e808f6","messages_hash":"bdb475e4d78caa02e9bc80066f9c67fde59fa3793b1cd7e8d49fdc8d0739ac92","transaction_count":0,"txlist_hash":"d4e68ba009594817bfbbc4f8852a70cea874544f9e648dbfd36bd3d73b8c3d7a"}',0,'BLOCK_PARSED',NULL,'36ea6be7c35b3828e0ae5482b2bc8320c4e90dd25d2eca47e2baedcc2224af85'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbfd15e940be58d2647a267e9410078612f74b9d8dc9410db11da351183c0044'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"57869019b1b22d8ede43c433cd91a8aa21e43d9b7921f75f17b59bc85527808a","messages_hash":"70f750c3326161e52d483dbb6a32bea9e9eb5320ecae857dfcafa9a7e46deac3","transaction_count":0,"txlist_hash":"2410da25c18849835845f9940c6babbeecefee4341d1e8035781f613a8d7eea5"}',0,'BLOCK_PARSED',NULL,'f915d2316da02939a25db99118632b1683cc9908db3160cc93bc8da9aae3fbbf'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9667cbf006d947a0cbff5883472443df0fea8dfb5c103cc8e54f42dc61f2907'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"2d77d99a127dfe52ae024466711a87e8ba613aba24075e349f216140f25a48ff","messages_hash":"942b51844e63f50ffb0cbf6dcd4ac359684034e776a56516d08c245a67a52902","transaction_count":0,"txlist_hash":"b5bc91bd88fc2ca1473c667342cabcd1c9a54b9e3a189ff9ca33be3a5521e2be"}',0,'BLOCK_PARSED',NULL,'20c0f226fc9694440886cd8356087643b5e81a59f24443feb976977ec6f01df3'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49f4d90ea9f2906b48afa8f0d25d9c34cd0cb7e102c7362d69dbec56091bb8fe'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"f0db4e0aa19f201831ec724c2d6cb18152448a2d228fa794494860978ac63a53","messages_hash":"4030c7d60422568aaefe741e555604ccb65e34b495c3ec0dd83c3e8e97345616","transaction_count":0,"txlist_hash":"6e96b5e6bb418aa5e4df842303788bdc0c237cc28b0229e787221a6e76edf52f"}',0,'BLOCK_PARSED',NULL,'da64c018b2f552040718185f36e9fde6cca5e1e0a3dc986bc20b41c9d551ac3d'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bde28fd698f0744db660a83ba521180bc52382602b6ec475b8828d649ee518e'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"a83953fe2335e3b6f88d6d80bdc4234e6a74b536af8b5c1e5550a06ce06905a1","messages_hash":"6b8f0a7f7b81303807d7ba0be33db8b7cfd61f2840e2fc2801ba25bd727b0240","transaction_count":0,"txlist_hash":"c9804657290b6aa060a7ae5044ecd3e111828c21d030931924bb8d7852cbebf3"}',0,'BLOCK_PARSED',NULL,'27413698c6dfae3aa142b33ab2473e86a64d9c179670f36796a8d9b93f035b4c'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc55d9c7dcb61ce749d45daa2efd446951e60723dcfb1a632f5b88505326a6d7'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"04b532b6ab410ff3dbb606cd85bbf96313536ec077ed986d98fe0a99765530f1","messages_hash":"9eb681c86b25a014faa8bf64490fefdcb0caf8d761aa0e2b2c71d9153aecf9f6","transaction_count":0,"txlist_hash":"a533024fde4b9dc154de9ec5508dbfb271d0d166d7f4f02f7f0386c0195b2b76"}',0,'BLOCK_PARSED',NULL,'42a9f244fadf298eef10cc6bc056941a71a9e6384399951587f23e67bed2625d'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7948962501b092597137e19d82fb733252ceecb1a69e3f4eea71bd26897b159'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"55d1f2680fdb9f80df055b38c7a5d66a8a84b2c8c4dd6d845e592aecc85daede","messages_hash":"bb3f53b11997cece5ee8809f4e643953b5f35df1066f30b3c3ee4d942d6d78e2","transaction_count":0,"txlist_hash":"da06d5a9c8cba19181ee4d3f18c267cdbec846bbfded96355e7ae996a0b23f4d"}',0,'BLOCK_PARSED',NULL,'b2479703e2f62499293ad3da51cb53b5124772cbd008884659d2f3e8a006fa64'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81904b2a14ade2fdb363bf78c07ad7be7cecec89cfa5bf37af46eb8b18b6b490'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"d901c544d6731d98adcf1ca153423a06f5a9fbd521010fdd71447ca738201114","messages_hash":"a1ee3d748cdc3ccd9a3cf50111ff4f47e809f1f21cf1ad6b7ec5bd378de42e3f","transaction_count":0,"txlist_hash":"c150587ef08b416f678c4a16aa93c68bdd6df85907594abd1b15589378ecd4d6"}',0,'BLOCK_PARSED',NULL,'e9766f1b5822cd1f38754261eb0f3c7b2a49d29ce92b0d68593e7f4196f5263d'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e6601821ab4624cb5f76747d2058dd99f15d81a6f9a499ef749649bd12d9063'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a8f2d12d3045a721c728ce7aab738bc76881cfd2ff23d868a8be19c1c983cfa4","messages_hash":"4798bbc50aadf7dbcbd7002451e9772e15c4abe29969bdada8e944fe297f1d81","transaction_count":0,"txlist_hash":"1a9e583bae644244a443e3b22d43115455a4953bd8d2241e2448442b99783a12"}',0,'BLOCK_PARSED',NULL,'e5d28800fae35023dc91f36b5f27c5ac8a0baa40f0140566f420c7336f13d291'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c1b18714bcf50efbe89b8c85fb825228706383606ad90ce1304aa6732fabc38'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"1a49898297bd478ba50125d74a01fbfa9e1a226a04a66ef9a720f84e9e1840bf","messages_hash":"16e32a2da385417474ce219344fe1e40d12fc27b765eb3f5ab83858327ac3257","transaction_count":0,"txlist_hash":"9f82c1f69f08f7b88cd40e6a29615905f4fd3e0b95b16681f651274d93e0ad5e"}',0,'BLOCK_PARSED',NULL,'21370c180841a87bf5d5fdc3ef65301303ae583047bbfc187eec1fa7a6170b41'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bb0917efb321ead38b8d38db52dd018ceaf10d934cf08210e650f63f1a66c76'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"ff773e31c92d6e35788e634cd85c680ea22283ddcde23299af4563f97f703b7e","messages_hash":"5040a36a25d74dacb76de961f68f47abe76a4858ec3c53644ed8d133c33aaf88","transaction_count":0,"txlist_hash":"3396047675f840358667e2f80e6834d02d6c4db33fde947915a4e96b3f505419"}',0,'BLOCK_PARSED',NULL,'1b46861beb97babd42b4f9e52d17b770ba06ba8492f68b3590ebedea2bc9b067'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f270b773b122b92998d394519b9a86b8f7f350837f5e55202f1a94eef7b4c54'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"c3fce6d641089c1c9c03f3d0bed9f3f8cd75e5de9b00da5e911dd7f5629d044c","messages_hash":"b477877c8e195f62f4006e57d39ce0745812a3481ef58cdf18265dd1717b19dd","transaction_count":0,"txlist_hash":"ab8b1b827d5ead2bf6e228fab203286e9920b6436eb9d04b299844a6951662e1"}',0,'BLOCK_PARSED',NULL,'77973be179f29ea78958d6a7a7886ef2bb5af1d29f1d0e2e48be05733d8335db'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52944f721a2f7b5c9c6331658a109c86f0dc04963c9ff87a37a9196560c483ef'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"65147d7b2f172301c338be1e26684272c9deb4fd39caa60bafad3fa645393083","messages_hash":"6b0c536be49f223e8559e0ac617bf018212bae93e674e7795cbcd8abf0b36233","transaction_count":0,"txlist_hash":"cbd760259284d186e0693995640d042aed915db46c6f2d0a7e9b46054a46b380"}',0,'BLOCK_PARSED',NULL,'3160cd1a8dec5b50a4879b4512d60fa6e683c3c2b820773545363fc3067257a0'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61f8c28ddcaf471a0cb703a4e7d24601ac624fb6d7a6c04c6d7a9153467b859f'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"f26ad42ddb2d388f586bd0371da8a18b71ccfc413150860c408b61edebaad30a","messages_hash":"49f28d8fc866dfd51c846d1343fc5aa8d43a73f29b26f9369fe31825baa967f5","transaction_count":0,"txlist_hash":"23280d276acd9cbd0ce902746755c7e926bc925b939412c6934e39ea77ecc74b"}',0,'BLOCK_PARSED',NULL,'a41aeaf50a15ad6c70cf3d01e0d5784ef2afa280cee0b7d0a9baefde06c7c7aa'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d48ee1d55826a9b1f406221548f08a041585fdccec1786cc9ae605207d8cf86a'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"a34f10a4feec4b86578f958e330bc09170ea3c48e3a2d1ecd2dc178a4c09b751","messages_hash":"1f21d7843c09f58eeca30dc07c880b84413ba9c632be83fb95e01b8d6cc51545","transaction_count":0,"txlist_hash":"1bc9547797f7c06ccdd94777fa7e2ddd239283971b19560506f6c8b2421360f0"}',0,'BLOCK_PARSED',NULL,'1c16d768002c5b2325a92f73a804a07ee4a5c869d7700a8fcf9e543b3a02d683'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d847c511b5b885292e5b0d72e3f92e81f0e5376879767df3599abf549018c7f9'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"e04a58f9255d49f944c7b1071d98e5f051b98087a599a20b493be926acb448b4","messages_hash":"2a23259c2a0901b4b7e1c719231851f5a5892f9ebadfe2aaa3c43a69da806367","transaction_count":0,"txlist_hash":"a0cfa6ec5d89398ae1149854aa1ef6d0923861ccbbe9e9e2e77ff789de8c666c"}',0,'BLOCK_PARSED',NULL,'05ddac77de1cc4a50b81bc2636cd96e560ca1ff298481efccbae7774e88c1971'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29d415acbce2a633035df169780378813c522cfd043ebf5ee36c12f2ac635413'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"29c41ebc4b90ae99422848bc587bee62892a7b60bcc14c5cc577e889a1cb3b9c","messages_hash":"5e13d9f0a5c5316777bda3a1e166468117e296d6f4929792cfcc0c523ffdaebf","transaction_count":0,"txlist_hash":"2600fe30eeaeedef4fee24feffea4d75d255a07b0a31399482de3dcf4df1bdce"}',0,'BLOCK_PARSED',NULL,'570a9151405aebd1ac361d5020d5a9c1c19c489e5cd78ad2846cbe516a0781e7'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03b04f919e65f2892a4025cab3882d235f2cf4cce2c218e29da58f87cae2190a'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"68fa50facfb853b783e3888b9ced25e4793382398ea255a6a0bdee6844212e9a","messages_hash":"4a4e5a831401c3cbcb5becadfba1a9e93c010b7c873ac8122bcbc03118df871a","transaction_count":0,"txlist_hash":"3e20f5731a3ba0add1f2e7687f03db117c40a49792af7c09208bf98e699d26d3"}',0,'BLOCK_PARSED',NULL,'a9dc370ea27654b4068b7d78a80346d61aeab8401d9320c87bebc2c67c04b417'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871f0ac4f29499442afbe588bd68437d25ce4a835d0bc9a7e830173cb97fe984'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"5d99d5f2b4a15956f384954cf74adb0ab0ee713e80b1231246b910302e1db80e","messages_hash":"b4a955fd276b1e03e6ea2ae0f323df503d5c8b58f9ce4343ff82a60fdf9f0d30","transaction_count":0,"txlist_hash":"3656ca0e2ff29de0f38062fa60ef05e84fc0d3fdb0176e68162792f87841dd4d"}',0,'BLOCK_PARSED',NULL,'58eb4b84455197303bc293664150f4908f710e3a9022aa6461f1c42b5b91733b'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514f7b67fe26bec41f0ce91fbd93c1c95283a304c06f1c1066850a8d40f14e4b'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"af40ca6242183860b9ffb60235bafdefe06dc762a0be2434dc2c97910924df14","messages_hash":"c230ec2b793a7f67d424854d3c06632c43fc1964c95339d1ae0df691e6f798cd","transaction_count":0,"txlist_hash":"cdac3ec8c1575414e832940fa57c08cfffd7e2ed0fed4f792f38a77a08c6d1db"}',0,'BLOCK_PARSED',NULL,'060575fb5ebb7fa1ce46a045ff4fee222d528b2427680c9c1646cf21efefb093'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fddb6a18716b8e8703a3ad4a02eddc3d017b8ba3f5df9eb7f3bf663c47bbb76'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"82009db6ff6b875f8944c03db96ec598ef224bb4846af2c7df2fcccded220661","messages_hash":"489fc0ba6c548303fb2339c3b68017e29b4bde8917051aefbcb59fb58e025bd0","transaction_count":0,"txlist_hash":"7856046938b23e6b2f2b18973c8e756f9ab549e500b0b5965787513f15851801"}',0,'BLOCK_PARSED',NULL,'73245f2db364a98b7bb030d7bb3982ce13d14e7163575689b0525f249055406c'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e8c41aa14da7f29350116ef9d85100e328caf98515469234ca93630985af00a'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"c395ade8d6ba410ad821d8163ea8b68fd423cfec4d674b792efefad6a4891956","messages_hash":"4849623e3b1816ecf0034410af3d6f468f8f882d38820a3acf6c13edadf382a0","transaction_count":0,"txlist_hash":"c4d7b1e91385e086b4b888c564b7b3211afce8826fd4ef5e929735e1e3848a6a"}',0,'BLOCK_PARSED',NULL,'5bfccbb9cdf4decaa2a504460e8e04ad1b62f87861c550fedefd0764336d5f16'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30a30f902df395ad8b134cfd452bf7896047402a28e19713babe19feb67de55d'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"bc7341c6b9d125301ecc067f06af8a0270161e45a2d0b7c9edd423e5fffe0545","messages_hash":"6e9f0482fee9a73a40d483bd6fca37ed415ab00be756e0c0905f5d9976bf8cc1","transaction_count":0,"txlist_hash":"82cb40df49cfe9cff391f8b602370a3bf5eb718f69e384433467ce176f33605f"}',0,'BLOCK_PARSED',NULL,'5539892a540296d585b38ca5dcf4ad81319adacdfa5085c1bf195e7c250d4b14'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'240e410a99f182b7d28526228a61506560048322ce5fcec4db2dddb9414c5c57'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"025ecc9d99a8107463698808a0474d1bb90e140503c8813a0f98c9dd99419d05","messages_hash":"dfd2af22f0a47201a90874f2d18eaf133b5c289c58a0442ca17bfaeea7928f23","transaction_count":0,"txlist_hash":"ed842fbeb81e7a0fe3fc242292f170b6e8ecb897b5c4a045bfb33399167f2408"}',0,'BLOCK_PARSED',NULL,'a6d89c88f276ae7806642ea52e06abc7f1090127fcca8acd29d32cf9e11f91cb'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7859d66d3b9f46834e30de55b93a73c393b68f279ec1fa2105ad38da004ae15d'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"ecce8b75a159caad3c03e8f7a9e610e0e18f513694b6347cd20da99808b13b2e","messages_hash":"d0d46f323f8a0660909066ea122eb575fafd859d3bfa601624bf86dc5b3a3b2d","transaction_count":0,"txlist_hash":"67aee85b999111d544cbbaafe2e12c70e98169ef80542d02b39d464eb8a4d82f"}',0,'BLOCK_PARSED',NULL,'9361441ecea89aa438373a3004f4f8829882d0ee51e34e2c84c48b1d00f7f967'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b8a4b08439b30f33e25ef9b7e11b10efe3f05397b5ba2587c8ac67d7fe96f9e'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"85a0b8b16558fcd2981647500df176dc832efb747713c98f3c98d98b346b1c66","messages_hash":"08307f68fc3e73feb99d6015f78ea7e42586836ec3486498d6100f10b7a946d7","transaction_count":0,"txlist_hash":"36cb81c0c39db912e2acdbb433928c58da4fe7e0d576277e376ca62617dfc7e4"}',0,'BLOCK_PARSED',NULL,'35aa91b8d4ea548fbd231adf15d0b9f9f37737d94b7ea9b316dfc2eb0b47b5a4'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0c248fdca9fd58cbf097ec7ce37dfc39fe912a08d4cdbc6706dd3e25d0b3cb9'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b803efa4527293ffd02bf363561c69c0b9e95dfa9590a0c1f65fb8f66767ef05","messages_hash":"8fac10a275d7754710159e1354b9c497f3eab1887073ac8dbdb4d887d63bcdf1","transaction_count":0,"txlist_hash":"d142eba3e2a45ff226f954b1ec6941c35dae3572307b7802b56a3ecac109494b"}',0,'BLOCK_PARSED',NULL,'31c5898c9d48965dcef3dcb47f9548ffe47c91688399a6e7278cfd059ff37af0'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f4eb9d1b9284ecd25d0359fb66c3c592fd88723f27404bb3fbf1fa391a17361'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"a2e3221ca71f2f9b0ccc4d72aa18832d4e456eed210e512b15f9f566193e8bb6","messages_hash":"7556d0adee0348f8b6c4ba4fe51111044406c2c905ad2b392cb96669d10de65c","transaction_count":0,"txlist_hash":"9ae7636f522a45747eefee014ae179b1ca4a4ca4517cf59960d4b8e8761884d4"}',0,'BLOCK_PARSED',NULL,'e02d52141f7195122432aadae173d81dbee5a21c61a914c1363853aeba05e84c'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d152a68b319fc22fe1ac9779c31b5546a97e93c2f919ebdfaaf3a0208218fccb'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3c3e04eabc8f23205c6b6832950a2fef126a80257557abc6d2ce8d8a4aab4b43","messages_hash":"64b9db9212e2fa08913bda6580141635de9f203bfc7554a53a2ddd0a9b34463f","transaction_count":0,"txlist_hash":"54d6b8e5abf2ee4aa8cc118713fd2e4f807469a471c5eeb1e169d0f9db8bff28"}',0,'BLOCK_PARSED',NULL,'5058fe4566a10c6160ad88f32933ca088a21af910ec2b83593f4156a62c81fe5'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1497132139ed16bc1d809ce0ed53b318bfc412c5eaba47823dd5ae7b9f12bdb'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"65722e6535cfe0b3a68e0d8401f9ac01952594e57966d1c5ff735a12f4822a8c","messages_hash":"760e15c12da2afefafa294b99bdb447738284f146598bfe2a367c4da4dbead0a","transaction_count":0,"txlist_hash":"9b0a137d9abb00981252d939fa4a269a3af0d097896de630615699e85bb7fc6b"}',0,'BLOCK_PARSED',NULL,'9b1026dcf05407c7ec6896766e5f81e78ef0717827ae19cc4530499943d03701'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a598444fa23691f07328d5f6453396adc72cd8557d483f7574ff7ec2de2f22'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"e1e483bf74d0f847c952ed931dfbc6190bcfba326dbb7a0501d33018026a8efb","messages_hash":"3f5b80a1bd7d00f40291b4d3e3e2d805923d0311456f005d75f2a370f1a41d30","transaction_count":0,"txlist_hash":"abfe13584519b8f9d70ea46dd5211f8bda472d964cd46a0485133bf863066efd"}',0,'BLOCK_PARSED',NULL,'1021b22c1ebdb918e54790f134734ff125a7ab650372bac64661b69a737fbad5'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58291f653caefb236fa8f91a3414e0ddfabf9b3d6b44dac8c9ba01c077a25c52'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"5bea63d91cce1e2d5d540a166e879613af1105d8ece41c5350fa6637c0f8c1e2","messages_hash":"8c933ad5bd50345f5af389aebe9d665925d11f875bc5ee4f3a4b0523d0bec677","transaction_count":0,"txlist_hash":"7c80d0e792497a10211f6d1030a998bbfeaa8d7fe3d77c1f1286049d49fcef87"}',0,'BLOCK_PARSED',NULL,'ac8d999ba99fcff1eea3467e2f29365201a1045e51557c22764a32c915b90dd8'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9cb9bc1434c29d13edba74170fe6445ace485279fbdb42ff25c4ae98c13a0e'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"ac80cc44a06f4061179617507f4718adfa8c7171a9123a6c41060d65320028ca","messages_hash":"fd6fd1db3f46d72a5bb41868e7f6c211dd3fc0609e7456ae13f04be78dd32109","transaction_count":0,"txlist_hash":"714a33a752431c926931ccd11ae582eb2c9f642178d9070ff182c2c66257a818"}',0,'BLOCK_PARSED',NULL,'6e7d9fa4edecd38dd4f08975c8b5b755e2c74a0ccc6f3576c83dc8765e2144b6'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9299c29a5c63c3fa17f5f7b38c018ae88c1464e735726564768b08d79508aed'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"32cd5e6593e39de77e7f1efb475190c8def6e655ab3da27585a01895b450876c","messages_hash":"1031813c322d13d0817acb7038b98eedc14c247d8b2292c6196b8ae9f3adc076","transaction_count":0,"txlist_hash":"b6398743a3ea58ceb69944d10ed5d1d224733a4c398833fce113d21cfb765b17"}',0,'BLOCK_PARSED',NULL,'569221918736d35953f4eae6235b2f9438851099f2e895cd5718261dc3ffc84c'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b884267b860054c3d6fd12bfe6ea232b74e35abfa21be9d6ada306026c1b391a'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"909e104e4aa47e73d8201c0188cf58fbf8cbb99844279c784dda5e88ea1b3034","messages_hash":"80ef0b23d8632edd5b2d0149c447b641ba761f73ef1cb2ce438cd67c6e711751","transaction_count":0,"txlist_hash":"470ab97631ad7040eebdcf8ad17aa2d5a671d31ed8001afb9d56844fc975877c"}',0,'BLOCK_PARSED',NULL,'bdca01e27359346e41476edd857d9d9dbce53a9a3fa7f83cf2e68abbc39fa392'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229d3618d9fbcb1f351a5c78fbd32fbd22d971b4bed64579a3ca6b75a00aef65'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"cce2befcfbe7baf5232e00566a6d96e1f9f7d9e0fdd06ff532667c2bdfa09faf","messages_hash":"33a501df813bbd301cca04a1e4dfe1017510d3d1bc4caeffb0a686137d4df756","transaction_count":0,"txlist_hash":"9a62daab1f54e671485e148bae52842c469e6cb6cebdb68f8695d859cd7cde88"}',0,'BLOCK_PARSED',NULL,'3c0d219511f7c8af9fe3531a61c1accf59349edcbe5dd01fa89eee932bb0d6fa'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d43b19d609827cba675d5f509d855ff361985cdf7d79b196742d5e8c450e7f'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"37ad25ad320d5c09af70af9b60167beabe5307205c2962e9d2ee2a6114e43091","messages_hash":"568e6212cbdbcf6fd614e6f5dc1d18586593880f673b30ac12c923b463a76771","transaction_count":0,"txlist_hash":"8f7696776747ccf230a9ee3cf9cf4a36b6d141b110648cfe8b38a5bf0ce189d6"}',0,'BLOCK_PARSED',NULL,'e464e976cfb72ddd321a016071d24f96dc8faf3ce56ff098fb2073804d4af423'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9df36923060c4923e701a8aa3e8539bf03677ae794009af3e91b769d8c3394ac'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"7dacf1573861e20c06cd1de049bb470fe8419396f427197a1649cd7eb30db911","messages_hash":"3deba220ac4786b65c575305503a7272fa84c7fb33e4724f85cfbefc8d06acde","transaction_count":0,"txlist_hash":"504b9418c3970a9bcfa2fad8e6815e597f872b6a1465eae0c58bcd2c6d6ab20d"}',0,'BLOCK_PARSED',NULL,'ede8935fdfe369cd953052baac5c7fd8a4e6d634610ff4e6004b863a00f31ff7'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bfb73f2574baebee03851982d23d0f71c81313b47779f5a192cc367f830094a'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"b0b3fd1efcd6e4ddcc47b9331d0a6a1e9658c971c613bbb69246462b0bfc605f","messages_hash":"8aecd4c6ab240edbe75e79ddff8fa7d918a530d3343e351125e67188c4ae335e","transaction_count":0,"txlist_hash":"1d50a3776ebac541b4b65fa284d093df05e137e4efcce12fd1b949274cd4ebea"}',0,'BLOCK_PARSED',NULL,'7319d39fa76d1c89623d8d931d1463b8b776a3abfdaf32489395b13df7cbb636'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aea3d2f5f3e7f74cd0740e570fda1e0db3cce5a1791f872a4c5445de42a3727f'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"a7db34a71911c7067624d7b04292ace839a6f204dd54a9f794e98c77848381bb","messages_hash":"037eda8f92358a3234f5a538dd1d93fcc5ea4c3346d935ac7b2ba23cf5d74eec","transaction_count":0,"txlist_hash":"4e6382911bc0a3b098f96d506cd4379e740c14274298da3ee9e132c0cdeb549c"}',0,'BLOCK_PARSED',NULL,'6bae4e66e578fd7ec616b3dcf9a05fda17beb47786b94399b4313e836a6d5e82'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd5f7dde9fdf2961868d24464f855156619edad9a1803d5cf454b2ad6e40b7be'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"f5e3a304f743de603b3be540b57e77a4191a64582d233709d9fa6efe71196ab0","messages_hash":"dc4930a346d1dd8a827632e66ee57bc6fa023f336fb60745b80decaf9b8cb9ba","transaction_count":0,"txlist_hash":"8362d6e72ce4833c176b44c3e1e653540238b635a137ff2211dd82f059e90a4b"}',0,'BLOCK_PARSED',NULL,'a8a200105e063f3590cdb631f3f741db922fc2471dd3ef240912d90004c03b32'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52b81f557452d29c99a51e0b44122deff227c0fd08fb983ea328436557369b75'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"d1758bd4e6eaa95d132db7d37c955266e5b7c820c2fb3aef7a79f7231d7a4c8d","messages_hash":"fdfc2a2ebea5ecaf3d9805abd8bbef7591b83498e8343e3d8584e34b60bbc009","transaction_count":0,"txlist_hash":"54a9c584e67c01d4e4822b356b5b7708d71bd2112a4780793d3319701998ab0c"}',0,'BLOCK_PARSED',NULL,'e1012d2a468b63d1380ba642bc8b5fd748355473a7bed4c03365f57e3f33df7a'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4b60d2b7dde7dc56b3dc41103626dc54733ded79ee296249db03f276c9e0c8'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"8eb0cf478f5dcfa3ad2b089ea9a78d1461bd72b4ed8557181c784f718e68cd15","messages_hash":"22610fb465bf819e13972703c7801ac17055e961f9177f3563e5534b9009384b","transaction_count":0,"txlist_hash":"5ea37afcbdc472e3b0a6d5281447a2a8717c46c810f45849444631f5e724d60f"}',0,'BLOCK_PARSED',NULL,'0034d29ec1608c516ef5c81cbc5d1e6def86b8923e62d7019a7601aaffc10324'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64d28567d186aec9900c01728016e7fe5d013eaed77b103bfdd475f53cfb96e6'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"978b184083c0954895ef811ff052c6f2ec4f7966bec5197b7ee6a341a3791eb5","messages_hash":"986856bbd69ded37c09229d3e63805e20a9ee69b0a9cc57ac95bc86a1b2a0490","transaction_count":0,"txlist_hash":"559b182607a349f6c49e5557a3a47c5874d082677a01a65ee5c7e58f33cb0e59"}',0,'BLOCK_PARSED',NULL,'7bc65768025981e0c797b5f8dd8c3b5ee5dda7b816c9a36410eb0f2d443accf3'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0874350cbf0f2f1d472ca7d481157413b5b8b5d79c8e3410ef7837bc611c83b8'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"65f65891346f2675f5575024067672a94eae652a8b7c79096389c54795c7dc1a","messages_hash":"1ac4e0a9855e27255248512e09b4aa1e601d78b80bbfb49dd4eacb2705c2aeca","transaction_count":0,"txlist_hash":"aead60f5473a7a1f95b8c54acdbc14a9a38d75424d9182c79d0cd1daa095a619"}',0,'BLOCK_PARSED',NULL,'f3bfa57cdd6586ebadbffb0121c6f50a13beab3c02d70ec76d1e996baf4cce8b'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77c30786eec490703dbbe80d3878096f828b190256ebd553aeff849506e6e6bb'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"5a746088eef2fa322016476502ae2942e3335e2f74faf92ab3f34ec28effac97","messages_hash":"a040812703a3a2f044095de215ce20956b7e89061f4eff2b2054f61dccfd2136","transaction_count":0,"txlist_hash":"41884b8c6faa94f1e0fb7aaca0302f9ba811ff5bc33bfd958a14737d70214ceb"}',0,'BLOCK_PARSED',NULL,'9f8d158f1fcf90e7db0c76dc85ec1fd77b7e8b9a84f5a1b8e4609a2ae916cc62'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6492042b0fc3aabf3f1ce12a18e14b06a1101da094c9b0e62ed0779e93d9555'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"da63d0ddbf40f0aaeb7bc9a81017b605fbf0e0c4cef850a486447658037f3732","messages_hash":"1a9e29b5e7d1b58069fa14668e3df01342394fcfc5fd7714daffd94a5e63559d","transaction_count":0,"txlist_hash":"9cd036d644400858498a4c170c50028258dd74ef80303c68d9362466e6d3270e"}',0,'BLOCK_PARSED',NULL,'26da37d9c53c65ed9523531a6b1b7d530f00de33110283a413fe0e72252be9dd'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6587084662caca5170a7e21033134b1bc8bca3b38d5ec5af673570c6fcbbaf6f'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"333fc320de3045ef520254982cfad6f1a4e39136dcd7fee651576946f7112b98","messages_hash":"95aa2a8ae5981598ab6653d5639c178701deecab058bd7ebf396223e9c42bb21","transaction_count":0,"txlist_hash":"808eb181d6c2f10c0c7ab2679cd5327cefad6c533824a593b26eb3b3a3013edb"}',0,'BLOCK_PARSED',NULL,'c47ffeef13edfd3a0073927de6ac6613ce2fb957897ca7943d72a3d8662ec6f2'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a00ea896c0ed09af2ed0acd47c649560153cbc055d96e88c05351499796a6b28'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"269c954d56e58a8cb060a6763ced5690683e4dbfd54c65299b2ebd9f49139da6","messages_hash":"beabc75703c9a02185f7827831e27c6fb49b33e3e5f63b9a7dda134ae48499c8","transaction_count":0,"txlist_hash":"d5ed61a4f11b7998bbfb30fd609cd7e165d5194c084bbf05f98dbc3445dcb815"}',0,'BLOCK_PARSED',NULL,'36faf0fdd6daae9f1ee1e7301ab51082f0ec0fe211323840b63d0da97ffbec41'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3873da56443f1422918ef8036818e048d58dc5b9685260142a0e19426b875fc'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"907fd75dec1952ff7b114ee38bf4eaa7e4f90978ab80681ad893a6d8ec7b97a8","messages_hash":"902cd4644357bded51ee6d25f53d5b73a1754139bc66ddfa8c16bb1bce4a4028","transaction_count":0,"txlist_hash":"dd49a2ec8283512614b7ca66daa02c7603026cf0e42c9fdbbddacd3e78d4d54e"}',0,'BLOCK_PARSED',NULL,'6e027ca28b0ae663e00a87ba4d2408dc463efef62171d5a9fa1eca7346a9d65b'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec68e53ec60a4889e5a928ae93fab66fadbaac5a2e6e244a965ba6dcf59922d7'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"8d59abe7a15fbb5a0c3f04373ca3f13b6761cb4f1bf019cde15eb2ef3d7b8484","messages_hash":"425defbf12053d6ebffeb17381dfc33433fc0c5f05ea467b0cb1a0a73ed9f239","transaction_count":0,"txlist_hash":"2fea372740ace0e233c78c0c4278faf24776f7f067fd0299f4b225ecea3d708c"}',0,'BLOCK_PARSED',NULL,'9e2bf3bbab44d7139b2b122b6d0053aa14bf8394c5f51b05248d2f7774ab363a'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcc9d99ef53b7ab9f9a4dd157b76d7eee46ad7b53f5e283ee9c5e9a1957a29f5'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"4217b8b27ebd77a0242e50f0698440af7a733a1e4a17bec1be8a9c9422adfd01","messages_hash":"003f3960f6d700195b427462edc6f71660c652d377e4cf2ac2e76edbe33331b0","transaction_count":0,"txlist_hash":"53bc6a4b44bf64012d6003759e369e9e48748975eb691efaac6b48430f722557"}',0,'BLOCK_PARSED',NULL,'ca02ce537fa1e08d656b760ce00a87ae3d198b2338d25c1b8320b6e084719635'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db43ec765b250892f4296235635fb34722a2ee0ccb744adecaece0617ee527c5'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"f01ed8c54b72b772870075b9f84b3d66afa6c9472e951d95d4188dfbed1787de","messages_hash":"754c9e606e92d71df2894a112ec5022eff8cce8020665734c58e57973b65c37e","transaction_count":0,"txlist_hash":"77a26d9bead0b2ad3300c22d336ed495ae465f768b6d6ab31c626a434c88f9d5"}',0,'BLOCK_PARSED',NULL,'4954185c03fd52a9ef7a00f413e4525c6b11ad9ab85b2eeed6c6a7220cc80d76'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c287a568ee248470c0792a9f22199cfcef6e1ce273ce29aa2df1a9bca1e4d33'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"03f3b537ebe3590c8ca5953b7e617e6347fb714c7b582501f365214d307b9a9e","messages_hash":"3524d8105455d2bc52d7b97c27c3bf60fb8eec79574b2fdb9cea50f6062f8def","transaction_count":0,"txlist_hash":"19f71aac65faa9fa204d8e055ccb8082a1c5f0b1c12b1a9fdae6b5e99b231447"}',0,'BLOCK_PARSED',NULL,'704c25db05c5df7037b77ad4800b623d57b9c527b7208565558ca56c14a19c77'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a0e631379c58de23f3a190023112622b6d5e4f73bf28210a5da4bfa66b7f453'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"8dcb29be51e876f0baf92be725b3619e09cc40fcca44508eada5fad80deae16c","messages_hash":"fde10cd51344c2797bc4ba070a53465839cf6f9d51fc8075874336c691803088","transaction_count":0,"txlist_hash":"6aedecb11eb0225e7f5ab262220df587123a320a949eb440dbfbedcdc21e3da9"}',0,'BLOCK_PARSED',NULL,'6e3e1c261ab89710ccdd8fdec5ad696c706b2c57d2c3af4f77cba931f3fd42af'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8badd278d8e1cb421511103f171f37028d33ecc0f057edc0181e67abbb073955'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"c021555764cf8e66bb0bb0dc094add222ec95998d9d9124424e3b94202a6c4d3","messages_hash":"d74b9ae15f0096040653439bc4a08c59d34277065f7684504f1d5fcce78942c5","transaction_count":0,"txlist_hash":"ac1a0bcf9e04c16b51c04a8717ec46e11db72c25387b9884ebb6590edd94dc6a"}',0,'BLOCK_PARSED',NULL,'1bc2276cb9c14f0ff4165f6a1d5063c2acaa2a4774aed075e5a152023124450d'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'452f85b5f3a01a40792b7b0d5dda4b3d2a6b706e92a2ca7b83e088f25845d2fc'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"90c900a8aefdc79e4408ef1ba6484a97ecaaaba0456faa0955015b561e08692f","messages_hash":"d576a52396690d2ec69fb71ecfad04519cbed861cdd4220df8b243a7a6f93599","transaction_count":0,"txlist_hash":"f3d62accbcb3f94eb558589bfdad3f1d64223f86e9e2d41b2c202ea7f15038b9"}',0,'BLOCK_PARSED',NULL,'016cffe7414527772940243bb4d64a22aee62bdfa5b95c1a85d80ded710e12ca'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9380f7e58f5860b887f288124774f1f149763ed41810f7087283913d912322b7'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"27327731582f446329616dff54590f632223fe60a884caf78f0b5037688debb9","messages_hash":"538d164732984f6f53a072474ddf5f01be437f9d9fb7bc3a1910b36ec9aefe1f","transaction_count":0,"txlist_hash":"a3cbf3e5da859d961fb793d251b668ae877a858c14fcba6cae97dc01122723c0"}',0,'BLOCK_PARSED',NULL,'f458773d36fc2e3018d7548cb1669ee16aa02ffd036e94a35d7f8a58074aa7bf'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e593b9ccf2b8db3c986bacc17628123d7b1e3de495332b8c79b1488533d5fc81'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"520fa235691013036b0d2a7258fbc0eb5cbb43216aa71d8cb2f5684047433768","messages_hash":"008e237b3deef8e3179fb23c3951b90dcdc55aaf6a5bce8d91b1d4a4f584d1de","transaction_count":0,"txlist_hash":"365b71c37c80645eb8116f68782c8e5a548c4c970fabad4bb683d4e0db132ba5"}',0,'BLOCK_PARSED',NULL,'4cdd195b610f9f9a1c80e68d035fcb350381689afa4d22d0307ac1bd894df16c'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a894c8c6ddb712636f247e911fc842b185e52df30e0ae94bc8cb1315d862fe11'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'8478ca5f518a98c0149158ba1bfa1042bbe126e63e4dc5629d96f291c479478b'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'41ea8823faa1db854b4ad7ff688104cff681751fe53ec2c0bb72ccb7c2fea6f3'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'870dc94fe1be1243c57ddeeb32df034698cf4ccc1c65587fcd2b8a5d03dd57b9'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2ac46a043de896f1f4dfce98e5e7b5fec455ffe87168563953b980dc34751a2a","messages_hash":"7dcc5f56d37fa4c6a6f4986fd2ed4f357e20d7ad8c9e747dbf203cdf790e5768","transaction_count":0,"txlist_hash":"48dc7218406442e28c079fa50502a716877f19186e3bf1c40315e7621546957e"}',0,'BLOCK_PARSED',NULL,'3e131bd7877ae37245d7ae7f37569c77a63df1a3dc3ba2f7016d4040906b95c8'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'951faa8a651ee5b6461824dfb59f3ed00ccc1b678a1d90c9efde73bf833991f9'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"6d7186efd0530767ecdb37a6652ff4251707e55b8f9f12398f86a37f7328287e","messages_hash":"00281eb1e83a2077fb14bd1211d1901e958a6894ffb8b8f0468c6680eb17e697","transaction_count":0,"txlist_hash":"62ffd36675bf6ef80a2a89d8094e97f1acb82c5326ea9eb528dd2213fbd7450d"}',0,'BLOCK_PARSED',NULL,'72374852d30db958c5f3bbf340a2b12c49cd07ef1ac2a81f08d35993a28463f5'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59b3597e14f9f53e9638e4bcba0cddafbb73d21a0e05bf0ef042833f9e553937'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"61298c2333d1f01f8c4ddc12a6da99c9e752d6bcf7c4e0693ef67ce01b657973","messages_hash":"be8039aea7eff226138fc9bd2fe1054af4b3ec1063aa221e3506ae0ee478277c","transaction_count":0,"txlist_hash":"3ff2b5a3e1ffb530e5301b7c72377dab4ca4fe7e4340550c3eb8266c698b9a93"}',0,'BLOCK_PARSED',NULL,'2de308c06c87e83be78d9ae64499c22dd2e9cea7b8a17930bb64f196650859a2'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'400267f5f004fba52d773828adab750b2d556313a35b3a6b9dfc6f5b5a0cf95c'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"22b30951e4ec4070a4a7c9d483fd616bf4dc00961ef8a940398b4b233c1b94fe","messages_hash":"487902f81ea2a979401a87a68efae8590bfd64e82f0dd27671d39116313f1f3f","transaction_count":0,"txlist_hash":"4d68316f6ba9414076b3370fbb992080ad28776244e83406eb9a146ee7adc1e6"}',0,'BLOCK_PARSED',NULL,'f5a02400793e0d7106bb9defea8665c627ae19ce5792958bdf23bab9c71a1e53'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc45f54dbac311427d0a0becf8a012563ef6a6d28191956642c0786bdf59450b'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"748041c4d5fcef8168521bdb523c3a19e523e4f187e17a9e0de882593cfdf762","messages_hash":"36641be73b72190b9ce48d273d91a92c01cde23318317ab71a744317f5f32679","transaction_count":0,"txlist_hash":"e2a3506d226614f72850e9d1eff3e3543965cc401e8d3e2beb0c497cd8a56dea"}',0,'BLOCK_PARSED',NULL,'4ade6bf93af240a805901c1c68ad15b41671c92394c594b1609f17c47eda61a9'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea29c3bd19677603521a2c8c52309b251ec8b1b7192d46e81c45e04c32a0f5f'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"9ebcd435cfd149c1dc23fc58883adab713e1cbbccf124918525dc164a39d9604","messages_hash":"859e4d590da576476006d3e881bdda3470b19d02dcff4a43fd14efb121c67889","transaction_count":0,"txlist_hash":"911d074908e5665cedc004d99f6b6788a039f2a3342ffb36cab9c015cab7d8a7"}',0,'BLOCK_PARSED',NULL,'2db082f110c912d36268d51a9a5de164603bd8a1891fe5c3f2df70ca599c19ab'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e7ec69487c11cfa2a52de6a101afedabcdb9b12fd5b618052e95acf58f938f'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"f89e9eec7f785a16230a1a5b0dc1805b480db190787427490d89dca960fd3396","messages_hash":"a4ca6dac67978f38372f08f4d188a6a5eadff79ef38586ce86d87ecb3b4a3b8a","transaction_count":0,"txlist_hash":"adecc4346a0ff71ae000bee5d34e61628d4dc37afe3ed6b5cdf3a67c0ce6a2c7"}',0,'BLOCK_PARSED',NULL,'1301f5c3514199be1b600531096ea97e2460fd3bb48749c36ebe31d19310d361'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd73b14544c97bbb873a5bcaaac29b61147377e96f41d6261fef0650c7c5fc7a'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"3534caa55dc2a6bb394dc0f288ae0cbb0fd7066165bbe9de015a1347fa4a2e1e","messages_hash":"eac16a3debbb022f6e6fc4e0c7f30590dbad4f0970b94c491c5ed215ae9b87d5","transaction_count":0,"txlist_hash":"719a1952265dbc09cfc5e6c10933ea414626e7230d018c604c55927f609e566a"}',0,'BLOCK_PARSED',NULL,'06b3199799833460682b4ab482737e3a2561564e0b4be9a8d34c6f69b3c2ce1f'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b565599af4ad3901259acc3b0c98c0ff5dbe8ef8f22985a92eefa4c229f636'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7f3186ab69268e64b510ffcc4839e76e8302df1e6b3c620fd142147e5963b0f6","messages_hash":"48835d70a471dc981467bda866c75e15b23a8d09fa011aa3b47da4b07f160868","transaction_count":0,"txlist_hash":"0ecdfd25d86fe637791086db40bb5aa12dc67eeb17ab20113486429a78e805c7"}',0,'BLOCK_PARSED',NULL,'71cbebae913afc1d275e877927c0069faddea1be7f3d66ce1b61602ea73f17f8'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0eb7107ec8101bc725f33bd82fc53da7380b49ac0f8e7b88a9c4421d700ff1e'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"279757074d500d417cf2cf662645d08ae10cb74fa414ed036f353cd582b3568f","messages_hash":"175693e23885d17d7943a75e83eb2d546008a4775f7ec007f69755fddaa93952","transaction_count":0,"txlist_hash":"fcd210e7925cef70f51d3669c0d7e3b0d13b40ccb224d1b4ac46395becc71b98"}',0,'BLOCK_PARSED',NULL,'a10cd0dfb2c56daff1dc1709477fde68e32975cb7e9d7b7e0e3a015a7810d3c2'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e77b0cd71cf697319347785df8084eb7ceb9895f783d41b14b14a3ab91659e0'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"d377e4e7c11bce5b093d837fe0016722fc0bfb3db1fb08ae726d1574f943b028","messages_hash":"210e950d1b629fdc76083116182c4937e5eb75a24d71a9e95903e958f44964ae","transaction_count":0,"txlist_hash":"6a6d152c8b71fb431950f72f5311c4082d4182e6de3111f1e77ecc7bbc816611"}',0,'BLOCK_PARSED',NULL,'73d7592374e60345522a60738dd65d6161edd0bc72b1b95975452dc6384504aa'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'249fc9ca73ae1c345604c783a28143be205df9d2a82916a4f2025769273e9a49'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"e4ad1f7a36bf14bc3132ceceb4f828aa6da3035e48ea546b42bedd78a81cfd4a","messages_hash":"599c66c6556c4aa5aa63cfab39257e5b26d660ae704d45de0504021ede848208","transaction_count":0,"txlist_hash":"5ad65c40aa0c2f0f61a4ae3e84151a2163e2ca66a3a63712e07678a9c1a17df6"}',0,'BLOCK_PARSED',NULL,'f193e7475393f277c90484f93a88c7feb318229d37238d852bad985284947286'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e77421ca17f7a65631b079b1d3c0439a1a0fd43a7b92759415235a5a378819'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"03ec90101dbab3002be02e0131108e26bcb94759abc1799440c88673bb356f74","messages_hash":"6a0d968a2ebb04cbd93e798888c001db33b583f9325ecd43e33179a4755f4c0c","transaction_count":0,"txlist_hash":"301ee34ba2935f8a710f20082426b0ecb582a9f32dd66830b8048dd8a7b9a507"}',0,'BLOCK_PARSED',NULL,'7d2e457fb909843a925c404f43b352fdadc67d28cab874c808bb688a145f4efa'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bb4b3d0a26fcd998a7115703cbc896ad58ff844b5fc25f1fda3b21e31dfe71e'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a17d81b4ab82136771a8fe6adcc50e5e76342dd196dcce0d270b22eb3982ee9b","messages_hash":"1b4ae9e22d63be4f061ab8860611bba35db26cb16fc8bf15d6e84c3e18fb95e5","transaction_count":0,"txlist_hash":"5f7c467ef95a20dfd26294f6ff45bd31837594fb1d0f51d28a668e0aa58bddf3"}',0,'BLOCK_PARSED',NULL,'2bc2d5562bd0c15e78c7c10cb718a3eae7a4e343822bece68ac9a9165f47666d'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a1e66a8e4b1431b3e36e5d3740e29fb7c21c3405abb7795816165f06675b2f0'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"618bf44ae0c99ad3fb791f1e32f7d18f14dbfdda482a023a190e44cc948994d7","messages_hash":"4edbd95c37c7f3c7fdd8a0224b755e39f6cccc5370d9d5e1ce6e9f2f435fe8fe","transaction_count":0,"txlist_hash":"28d9ca92b9bdb042a8f8c1ae97dba29136f148d70873281b70b56697d4e978a3"}',0,'BLOCK_PARSED',NULL,'253c06b4a62dac02c9a8ce08d102f26fac0dbae4dbde1aef23508917280cb273'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac9918239a27a1561623d52f8195903c8c89145aa7a326efac5208ffa2d082bf'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"ff5df706346a4c562182f47e6559e75aba92d422fdf31dfb4110367f4cca0573","messages_hash":"6a60f551104fae8ad426e0d6875d1423be87d7a87e2b6e82b297a744165b1517","transaction_count":0,"txlist_hash":"4a57fbd8ef286093bd5ffe3ea8c27dbcd37fcd8be3711d211ce2eb6af4d6e460"}',0,'BLOCK_PARSED',NULL,'85559ef81bc9cf54050a3e83a615968c3a050ac42e6ef661caca049823880e98'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44f11c68fdf8043aa475a7f980fd70bdb160b7358542c5133a25926d2ec9bc1b'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"ad19244124254054512e01ffcdb158f0032d5c99f6bf6fdeb56ef06f28af0473","messages_hash":"6464eaaec1ecdb6eafbba19abdb69d85e606bafb8f5360a8a4d1f1ed55dbadd7","transaction_count":0,"txlist_hash":"61d20060ecc1bd77186884630e3cc45204ce36c8a8806861f11ed0911407d555"}',0,'BLOCK_PARSED',NULL,'8e1f175455768176b9006c5382e8f9160a8859c03e61b011e8c434d630905eee'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dab536afe548b2ce6aec3ef1488ca104b1b331e46a1b62988b5d85f7e18750e3'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"c6bfbe5f3a59317c080ef36aba21884299b8f9f282b15cfac93001e3adca4046","messages_hash":"3844cc43adc2526063f719bb8e126f3a7138c8e7d9a19d3fd19ac6e08cead2e6","transaction_count":0,"txlist_hash":"6e147b141f5de292a3cfdc9a6fa1c3f90b8630338c1b42ea02d1a3b4370fbf53"}',0,'BLOCK_PARSED',NULL,'ba3bdf3682fab0d31f8484c61b9b463a8e5fee2dadbf424f5c0c6c2964f6f997'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16242dd2baae365196a266030bb27b47501d7df8c5c462d3a02e89f41881138f'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"5af6fda1d7a57117cbedd3bda4211d1e671e80f3ee08c20ad2e9df8fcf77fafe","messages_hash":"6c1dcdc281d8326319ae64448ca8962d3e8ae5b204780b0d04e407f7dfc1b908","transaction_count":0,"txlist_hash":"1805da3fef077f4e1dbbc25485d8ccff48461858c1fca79f3478e343125f3887"}',0,'BLOCK_PARSED',NULL,'f865a5d906da833aefc2dee0b3e43d84cf6b60c8246742fa735a88e50d9a14b6'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b16266d5c7201e77d066faa780a5d13aaf5af1d63ae14c230753e637addeb69'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"45adec79a01405d6a34bb18c53f750ee4d146816fc0ef8802db56a9efb2580b3","messages_hash":"f47eb23d354e75a37bfed06cc232e1b6299b0ce4e8714b0efe9fc0524036288e","transaction_count":0,"txlist_hash":"ce3c4296fb0543a7f919845a66a1be31753bc5f7c1b346a30f868fdf899b17c9"}',0,'BLOCK_PARSED',NULL,'a427fb3269f4921c87b235f854f89690158e718fe430e6aaface5ab63db4d5ea'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'612898bdd39b11de04c440c792b119d8def9d9748ebcc47930e6fed1650b49a2'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"944da1ddcc26cdbfca58e7badc50aca54d6240da8b191bbcda6ea6da482acaeb","messages_hash":"957aa375965e6ae9578ed5299e3e6e166334b8dbcf18b8e2ef27357991ce6d7b","transaction_count":0,"txlist_hash":"0e4e806244541892c7bc4877cc5354983814543ca7970d440e9d78ad8ab0435f"}',0,'BLOCK_PARSED',NULL,'2608204456dd8f347d2d3a68d7f91168cccd49fcc1103690e190d5aa78bfaf0c'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25bc32bf88d3d33f0b80476795654dc63333d73f78af00a3d7e83f2a407d0264'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"92c8dd2e65df695b59c61b27add9784a5b17dabcec929667da0e89595c651f94","messages_hash":"7a1e3847044cb4c4330046a6c64b00f3063bc5cc6dfb8f6a8feb1436b90a62ff","transaction_count":0,"txlist_hash":"b7054546d8fff72db1bbe1100b20756c27be8ab60796d691f7a3ae2bc5f5d70b"}',0,'BLOCK_PARSED',NULL,'f5d25932f709fca02a32ce0a1ef6a0e9a1fa989496cf8efd3ef62d563d1bec8d'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7088668d7677f2225254c355d3fa8297823404212b35492425be14be7b1d291'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"463d99f4a0c93dac96f996d761402a53690bd133db2f07cd7865345fb63db199","messages_hash":"80259fc5f589c715fcfb2d8467ddf7d495a84c7afb5851f9255deef8bf2010ec","transaction_count":0,"txlist_hash":"7daa2cc3a41f7801fe721df09d1139d93d422ce33f85fd3c803e5de05b32a820"}',0,'BLOCK_PARSED',NULL,'756dbad92551d96a40099ed7c9eed7ece23ecb7a400acffcfc99f9d9ee991f49'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b2de81e29d7abb46a093bea8fbfc2f117bc53c779a90054b1aaacbbdefa7d0'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"22839a3136fbf3c60cc97b58470d8af34799315cd52d2544653f9edb5ad00883","messages_hash":"7536bbc07521f177988034b4e4e8fd48d957ed7679af8f42aa5aaa93999348c5","transaction_count":0,"txlist_hash":"73216a0cf11dd9c19c6d39baab18baefb0fd1302de1c38b2dbb7f71069c9dbfb"}',0,'BLOCK_PARSED',NULL,'78f65041aea1c9458b210a086e7140be6c49c97d7d7bfafd1a063a28e1ee303f'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a317d2dedf5a87124cfb96aad78c1a3d2ecf00bdcb94f27d99d1190e23c28ee'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"146f96ff411f9b2ad72612b47bc9e4608946ed0c63fca30f06120f7c17249cf9","messages_hash":"b1c34b260f4f3e6da69d2aa9b8b455df3eb7f6767f37154d667a467837fab1f2","transaction_count":0,"txlist_hash":"0b23e580b88fda6a6a19732b8c9d2ba681905613feaebb4a05e558d982a0bdfe"}',0,'BLOCK_PARSED',NULL,'b9c9c33f35756fbb676def5076788b687fba4df0dd2b1c92f7baa0dfb46507dd'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd82415434ef8176516bc2e99cedc807dcce24d672fb7cea19d07080fa7a3710'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"4827deaa25d09594b28a684a693147f7180a09507a7d8e510670a92fcf913bb1","messages_hash":"17c0e65c45fb64056ba557e7e92d37fa2741ff19c326cffd513dcc5be0109ffc","transaction_count":0,"txlist_hash":"a5dd12418ca4d79fc484a7bee3f520da9c11fdc4f736d5f7c5dc1bd6658c1d01"}',0,'BLOCK_PARSED',NULL,'10144f112a34e834a3f553072a6bdf81eb8792d0f4fbe68e8fd232c7077bde32'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9f6080e1ac176f56cb018da56b5d6666ac39faed69a2faceef3f83ca066528b'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"5cde4b817eaabe05eeec14e93ce2502115b0a7705deeebfeaee977e83315a655","messages_hash":"a100ebfbd500b0bd2a9bfa5f3f94120afe0d6846c1110ecb313c8b58676d37b3","transaction_count":0,"txlist_hash":"35bf65eac5cd5917e24f5c1fb0cd6bb6682c161ed0215b144e5fac4a88fcb272"}',0,'BLOCK_PARSED',NULL,'8f7a20cb8ccff72b58cdc7da7e71c403cd3d588e1c17b6e51e9745b9b79e1c88'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee03703b9ad55b9147d84500227943c14ade3404a3675509ba6b33ba6426b1fa'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"6dc7e58f6ec825df6186b7f29eb9b125e71c4616cb9b857c7719fc5c1d317eca","messages_hash":"3465915a9e5241d8780231034164e846afc7f0c997000bece17efb4afe127bd4","transaction_count":0,"txlist_hash":"9c6e0d41fcc120fba8c4ee0b5e3b90d7d1c1c7dec7ffb5589372e221a21d6fa4"}',0,'BLOCK_PARSED',NULL,'e8eb9de33056b641d8d0a174ab4885bc02586b47d85177f4d2c150c1cb936b97'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'070161d9d2a38f200fbe7a11e7c874f4cf428285a9cbc696b6bc38ee23a14e6b'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e1ef94b7bb995f3ccc054ead6b1f80c309114d6402e606ee96d0320acfb4d4b1","messages_hash":"22b7e91c89d9c0f1aa3fe6d0c2c2ac40583d15302d6bac7ef7df7959a59acc37","transaction_count":0,"txlist_hash":"4f643429ff714c81af1cc4c79af77aefb3592a0925d5404cc3ca7962fef55ee3"}',0,'BLOCK_PARSED',NULL,'be9fdfb1744bbca19e0517da8f45728109510ca0a7d240610f6fc2f17d66712c'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'908d78122854db529fabc972e11586f03dafd9b7caada0423e21a8a486dd7b4e'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"1a867c26e470a29bc276e753613bb17bb5e6dc6be421e68e205bc02ba59b7e1c","messages_hash":"e386916aa88076dc038bd41319c61b2b96c89e7a26b14ca67df173c63a550a33","transaction_count":0,"txlist_hash":"46d85ecf0d62471ca4117460102be4bdc6fae2b838d97747296010b2417e5394"}',0,'BLOCK_PARSED',NULL,'5776da01d9f51b397157990f446b387ca670df5c13891aee6161830880ca51b3'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'090458001789e8bcd50a5308d64c8403224c918d1b2a6f22f0eebcd14b0852ea'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"eaa2b0519112b9f52386b728b20455a2bf522643e9253ce6f2cf226978ac1232","messages_hash":"acee1084d356038aba325dbc14a55b9f92a099e6f01d7247848abb9347755e7e","transaction_count":0,"txlist_hash":"d1258ad44e2297f5448f5c3e31a845db729aafc3095553c0d7bcc0a2084697df"}',0,'BLOCK_PARSED',NULL,'5f0c8d0da43fddfe0a45bfe420fd815c8452ddfd2b1f139bb12d095d54bfc9ab'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e1cf8649ec3f5a52e798da48dca9a83f8f061fa4ed9b1f1f50c41a4dbc5d2f'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"3cb4b166307c4cef90519cf115f148d9c018d4ee6343a192b0a8bff6870c62c8","messages_hash":"91bcf9e5ac3cbee1f9709c6ffe7bbb492f28d99f68b64fd254de4fe1f0d968bc","transaction_count":0,"txlist_hash":"25460add1b48fe228455d00c2fcceeff1b78b9936b9dc72825d3ac31697295a8"}',0,'BLOCK_PARSED',NULL,'2c8e4028b34361263f16247a3fa516f6b84198e9f32b0907a30cdae9f0d0d4c4'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b1dfa50ea919979d797e8b14b59f0ed4c2921fd3775921447751b7f692d48ba'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"37a9af0f8467a8c2af11b619d63bd2f8f0a40301142bc833169137cd0cf71e92","messages_hash":"70ea5887f56c723b65ae7ba04c94d4600cf99c2b621cf960ec1111dc04e99342","transaction_count":0,"txlist_hash":"80896e3855c5ea60ac265c27c6114bf07da9bfeacff7c8f9cde084fdb807e9a7"}',0,'BLOCK_PARSED',NULL,'226f4b6548b18fc2150fbf1756e7e61125762bcab26f890ed2d20f0f173cb2bd'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d95601e8438f7e6caa92b70195ae99762af2a90a8ab762304870e1406d73b004'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"7e9d5ee0b651b101ba3f9ca873be9f149e2ec5cc76d3192574d2f797fc67828d","messages_hash":"5111e066ecfbdcc539bad3adcc93a4de99d79ba61299d439b85acfe64d8401fb","transaction_count":0,"txlist_hash":"1ce765aa71dbf63811142584dbbb3cc9b0aaa64599780791552c25947f87c6b5"}',0,'BLOCK_PARSED',NULL,'5276021833b4914b1997095083057ea9b46a5f2341544acdece2b483f1f7556b'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7cbb01472dd6af740631d0f7dc708e4788fca928ebd2915bba096fed92fbfac'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"15278b720b5502533cbd7cb3a7c7170c12d50e8148cb829377b87a0f55d68192","messages_hash":"cbad56d5e83148bb3b7a403385486c5f4e445a03586d2e3674f7af6eea9bb5c9","transaction_count":0,"txlist_hash":"59f4c67bb20c0d3eedd1704b6ea363f7ced20945b92840aa60895949fe1837ef"}',0,'BLOCK_PARSED',NULL,'f11ff12be4c728e62d1fbdd77d1d1fd72f3b649750b470c59ab16384a02cc0c3'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'737270ce6731269cebc52c9f17c77b806e8cd2d09acf609df84cd189ffd35c3d'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"35903bb5ecc9d4f9aef820381e95343c97f81c44f6b2331f337b7bc6048476d8","messages_hash":"27c4de86f6911d36f0f8e7cdb618559f11d66bc82f2a6e9246cd605f19c945a9","transaction_count":0,"txlist_hash":"28d0348cce4ee5026e40a07d606e4b10fa3aa0c74112059d36f3937266e75665"}',0,'BLOCK_PARSED',NULL,'a5a83777990fc44907b26c284fb12890e2ad8de673fb46672c399ebfbbba26aa'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00ec036fc88c7a5134e64e84775ec48e8a8eaa268d0375416125b3ab2a5e63b6'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"263b58b4e53c421d2a3a62f0300576d824301aa7e18580b0e27f994d5f8d4cd7","messages_hash":"1ec3040c5df1d5209dd653731cf584479906582b77d9f4946960300621eb72ed","transaction_count":0,"txlist_hash":"f5d42aca70f31d62921276d269c4b59deb7d61d6b18de5d079001cfe04712ab5"}',0,'BLOCK_PARSED',NULL,'131eaa2905c742d260c7a2a593a530c3c7fa5e95155884866d253308448ab959'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8200be09485df063d625e8869370d28a0c78ae970eb363c04b347679f58960ae'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"0ed5375db5580fa1809a5b3bfd775b3165e7a1addeebf63826d1acd3685d6e48","messages_hash":"01724a8db8b88535dec0336f57f3034799006581b0ed4b0a2c69c0587c984dd1","transaction_count":0,"txlist_hash":"0f5cb45faaffac1c39c97bd36366ab057f19308ef5fb126fcf94242c32c4c063"}',0,'BLOCK_PARSED',NULL,'96c6fc1e7bd82dea4d6f3866f107b8629bbf66d2a1774def2d4f67aedf54d1ac'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9c923757630aaef66102affb3907d19ff22f60f54b1318a9f1dbab4e7871265'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7614eb17c49bc805cd4f2be99ceb3e76ff8b9e5a44edfd06b5ef34d153f2a45f","messages_hash":"974848936aec80b9db713a2b5169d4f77aa1d4e75c8a4933a0290d96a8c4482b","transaction_count":0,"txlist_hash":"cfa5a0160f8b4849574c12ef74c8e475d0f393a27adc0470a0131f0b86657d54"}',0,'BLOCK_PARSED',NULL,'9c9a4f37e79739eaa0226534faf1dc82b3cf5602d1164b5530e0f77069826901'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29297d607a0da6cdb1560ef74069a71cd78e08962e281ba35d42f7fdb9936732'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"9384d63914968149b7c323d7447a5fd769fa0cdf28b62e99d3e75ddc58713869","messages_hash":"8caef6a68181f3a86a57899a524dbd9f5a436931ef98f88c51d1586f7d2b8b0f","transaction_count":0,"txlist_hash":"f8d2931d28b1958887cced9cad5000be51ac90a81ada3c936f7a4a135726e735"}',0,'BLOCK_PARSED',NULL,'eab236ea69699f51ff1dfa8a5327c37b9c46200ede0e5d56f59fb1e82f753924'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3744a999c66e5df33de1f0ae38186a9176b1460e91d4bc7b241b530cbbe96e57'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"2b35b83b6a2f10752106c67495007766f843ba5dab9380df6a4cca9f3f3e3b3f","messages_hash":"6dbb771cfda2bc980e68a0dfaaaa3b79f1e0dadf41a6d3c09c07450181f4f6da","transaction_count":0,"txlist_hash":"90a7b1e5dead38495ae59e27917a8dab0be31cc441c77551e5cac37d796db44f"}',0,'BLOCK_PARSED',NULL,'4914b97f1c7161d1de20fa23534e37de6210fd2683429a4300191da46ce3231c'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9468b5e545955bc56e4001835074c77a726be1fb9c76bca2e9f0989225fc1031'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"63c3d8e02c1f51c71392e8022a3838fc748938035ab5ed1ca7b1732eddb1a28a","messages_hash":"cd18ea01909a2fcfcaecc680d5a2ce66975907da99cfe79fba5b95145ecdd23c","transaction_count":0,"txlist_hash":"ca14af9c5a0535e02edbd30a267314028401d83fff4e7eefa191d755a1ad9385"}',0,'BLOCK_PARSED',NULL,'16928ea561f1ef9f1f755748957c8e46786a3796be8f739c92b6c2447a1b9ebe'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e04d9870608589017a664793707775e584bac50b0772ddb5bc88870c0c25c0a'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"236656398d8215975e978c29f1fd76e5f6a236471014484ec594b2be36dc1493","messages_hash":"13d1fe337e242ca1ef04e4d79dd2a61e92a52356588924bad16191d747f9b4eb","transaction_count":0,"txlist_hash":"e5426f24cc93db7379bbabd3dea01f0aa5c4b1d87c0ce4a83f710d38f25d4f90"}',0,'BLOCK_PARSED',NULL,'f292189de7f31d9e4fe1447348acbe69160ec194e5426602b07ba13dc54b4968'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b35927fe9c76c675f2af9347271a681a3ae92357dce3f9608366a01b8492a'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"4a103f78239f7c8bdd8303afc3a5c5bdd62c5f3228a374a266334a297cc36b08","messages_hash":"17123660902b40937908c76492db08343f3701279cb47146707caeaf8d5e84b5","transaction_count":0,"txlist_hash":"ab25235eda6a9d73d52f3b45446f1acc05e824793e0eae9077f2377d2c65b876"}',0,'BLOCK_PARSED',NULL,'85a02ff2b7acca8910ea2a2d2c49102b010e9599e6efadcbc476ea40c25d279a'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'686e7fcea14e6ed33cd959e23853237c271ac890d7655f5d4430191cab682870'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"d88afbc35ef0a4dce36af789829acbc19e7c7c3ee1b74efeae317f51534a610b","messages_hash":"f3c83932c7e15a6c6f15022c1f59070d474257b91e3c3540f2d9fc786cc8e985","transaction_count":0,"txlist_hash":"67a903d6c9219ef28c3f3f990a2abcc66419cc186770c7434839879ff487cc64"}',0,'BLOCK_PARSED',NULL,'f39d2e0b9680d1cd18252a00ec2f987f4365b3d225b01ba417b1ecd90fc83e1d'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4e2a752262d8a9512897990fbe10da1409bb9eb83529cdeecf410a83b75adc'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"b40a3d4203f84d2c8d6108ad0c06fbe87d01b55e40b2b7619385265ae5000a88","messages_hash":"abe967edf74e8423bc3de1a8f63e7102018a2fa3d62ee2d7b927c00789bcea92","transaction_count":0,"txlist_hash":"bfa0019286df43c888f8cfef19f946aa392bf2168a807cfe50fb120f5933b379"}',0,'BLOCK_PARSED',NULL,'882418b2f49f8551fa6fd26311e9b196ebafa999d8d88705b280e6371f127766'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1332ca1e88212611b5db79efd5cf17b61f5ed2bd94db2ec822e045d096ba8f93'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6bab0305d979a4c6e36f5c09e18ef722c5b264f08af3603386197553da5b216e","messages_hash":"85b08ffa37d85868aa88ea5f0d36da15d2bed747f61162d46769cb12085901ba","transaction_count":0,"txlist_hash":"625a3fb6249bd076e3efb4b159478e1704a30d92b0751cc5caaf78e1c327dddf"}',0,'BLOCK_PARSED',NULL,'9328b721ff6b97ad2a1aaf1aa8cba2f188affaac9784e1db7eaf3c1ffbfa9b2c'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'294d08cdeb89565a6fdd57a7ffd75abf12b10f94a2a51acaab553ef615884c31'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"b786320926bc00ad47f615edd09e1b070ab1a4c1bb11efd46d45e38deae11ff4","messages_hash":"2745063f9329f39cbc414fec92451c2dd2a25c08de85aca3e62f7a6f313048ae","transaction_count":0,"txlist_hash":"d2d8322405b2b417ca82079b67ad965c5ed479a3506788a683f99b19207cc811"}',0,'BLOCK_PARSED',NULL,'c87a502cb329fe0e88e8760208acbc0d6c09490b0ff4d691159f89370fa43389'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1a93f9f1fd732c224335273a780108c42f716a8375355483c72992577deb62c'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"9456fad38bb437124d7b709a1cb53f0df72bce51cc2d91a45259e33d1d1bc463","messages_hash":"2162cf5bcbb9250f19fc0d9d2a6ca9fbe55f387ec2c957aec9c5f22fbb3cab3f","transaction_count":0,"txlist_hash":"c394451f1209eeb74fc7ce8ea66f0aaaabd139c2314eddd2ef441503603e7ca1"}',0,'BLOCK_PARSED',NULL,'008f76ccf272e6cb49cee3a0d88acf36ea8eca915ae5d8cfdfea9ecc81ffda4d'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9c29e660ef24aac13de949ab74ff1380058b43bd5eaa006d31f3056fd1adbb'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b04d9807ce61d127d227c9f563e0659f5f393247e4ee2764db1beb3f20824069","messages_hash":"0799034be9514d79fdbb50b7caea97dbda679260e3f677f67c18aed53a9d712c","transaction_count":0,"txlist_hash":"5d4a6a8ed444c5746f4661f85d2ee5a6c2cbfe2414c4b490336f956f6d3cd236"}',0,'BLOCK_PARSED',NULL,'26de6ab7dbaf8699e6e672fa3ecce1a9d5bf88e2a0596bcf65a7eac86ce95506'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2269a2ed7f10a0fa80fc439483de4ce4bf897aa3520e20eefa3359bfb5d44a39'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e9f232460c9d65b3a1e39e1a2533a432522d0c783ddf9f5e2495d3f7ed87bc31","messages_hash":"7878018b9055bee75d77d1aabf38d8cb2110277eeecadd9b7a88f467bb7a1ca4","transaction_count":0,"txlist_hash":"cc9cda9b1d7fc465f33ae55618465b23af176e281ee2f00ecdebd09464000a9d"}',0,'BLOCK_PARSED',NULL,'4aa7bfb082e964387c9ab4924b8985986dae8a0df42f1b455abc97a2530c8a1d'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'703463dc0698238c4bf26bbd17cb8b7cd046369016fafbbd8d0e2ac26931e112'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"3d6e94f2293fd1dc18bf53962b14113f5a3cb86f92ea060248c49964d191961d","messages_hash":"057d427614127e692044466653176c8cc806f3efb117cc3ed1820b509a2641d3","transaction_count":0,"txlist_hash":"e12ac4000530ea1fe3ca3d31923cac189ff68d22d4538f39ddc7fc511322da4b"}',0,'BLOCK_PARSED',NULL,'0a01174c07c1bb69643a493717f58cf296bf1f8f0f2bb3c44bc1e747efa46962'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce9b4019e24ca7a030a39a4ab422136fe8f26a3522b0ea59e750ff967c20728a'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"7b58d91ecb24245228e9fb569560a11017b9fefb0b1e3c2bc3c7664bff29b7e2","messages_hash":"5e574549d0b3dda7386f04381659f2b1b1be72f11fa3ec25bda05a1888a38b26","transaction_count":0,"txlist_hash":"d6f1d0c2b4215179a3d821fc4a5e3f963ee08d22a2ca566584e742a814d6f000"}',0,'BLOCK_PARSED',NULL,'378106d6eeef29a62fcd450113ece90a3f395b37442b1eea8fe13191fe9ad298'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d0babef5c5293e3ded21dade344d64a360e325d05b566405345bfa81865da1'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"6d17f4ab0ce662b6bbad7f17795e8ccde074ec3361724291a9f4e3aa53ab2ebc","messages_hash":"e873c242943a475fc9396dc607d02c64f6bdadb4297b981f1681c2436217e6df","transaction_count":0,"txlist_hash":"5b7202714b34703e642b6cdaa598f5f42db4f373058c0ee8337211cf89443306"}',0,'BLOCK_PARSED',NULL,'fbc229878dcbe4f55b5f00a8611053ce36ba960c23039dabacbf420a47e61891'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d79df11d6b141a4d9d0d4709b83bc4662536ecbbbcd5305c812b42a133f16d'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"9cbee511d5ffcda452b8da47637feb920b8b83f68981d21ad673288ba7ec9409","messages_hash":"b89fdfe3f825f5bbfed9b51f08509e330e9431fb1c03c9faa8f51f8d2093c3c2","transaction_count":0,"txlist_hash":"244ffeea285d6053e3d4b36f3624fbe7369d03b2df1d300c6f736bc2c349b219"}',0,'BLOCK_PARSED',NULL,'07db13c277f0a55dc1bb045b79a08f2a3f73150d0e0730e451037b1cdcae0d77'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9807022127ea6eb3fd25e54518018c077e32150390fa639e6c2e29c940441c17'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"18f7f304c0160f5e1a17a47745a8744dbb86ef41d1581ec21177aecf97fa7942","messages_hash":"798f7a325a303953111a5660fc74b29a2d95943df3629010a000a80c30cbb347","transaction_count":0,"txlist_hash":"a01280fedf7d84019834e21218ee2fbb840aacf1acb6bad8621065b88cdc6e9d"}',0,'BLOCK_PARSED',NULL,'05f8c470bddcf905d03bf93b25dd8a8292e891eec42585f78f0e9375ff25eda3'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b552af2ce4cef59a8c554175f81da76c377b9d87ca3b2670044d5dad9aef1614'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"fc801635007f34387a1228ecdde4909e2e74c38e7c43596d0f5d11008e0bf633","messages_hash":"34957d7666c732cbd2c76fdcb174bc00052c6d621d911f928d61fa18f3cca4dd","transaction_count":0,"txlist_hash":"1a4acb059de9114fd3be97afd88cc04b3529cfae1321c1da14f2ca00c9c9755e"}',0,'BLOCK_PARSED',NULL,'9c0a281eb5b144bf7954b4abc1c52dfd7f1d6100097f4121fd4cd52db9d0b5f9'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36569cd8a0732e350cf3c4c3247874b2fc2125daa81b51bd5ced84c9fe2daf17'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"58b746cc86613e94246bb1486a97d8c251fc3b20f53d0c2da0a05a0ea021dead","messages_hash":"aff66561a4837496e36bb06fba591eb33c652b22863e9bd042c70b08ca249d78","transaction_count":0,"txlist_hash":"18fb6d8a4a69b8cba68a6d352ce1cf9172c5651373e4e97334433789d7634ade"}',0,'BLOCK_PARSED',NULL,'a71e16c8eb0dcbac56ae896a55df052872942f393257998eea0c202cbc530e4e'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f0411afb3c4688715930e36744778ae446da44c5ef3a847c3e972a64590208'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"176df44373c916aa2de33cc5223a66ca3eebd4c8debe4f5bde8394770d665229","messages_hash":"141289653d6d448e69d27510cc94560f2d38db2144df8357b6758c6dea9213f2","transaction_count":0,"txlist_hash":"af243b489d86eac0bc0dde6508322842772751d940b803a653ac5fee1d377758"}',0,'BLOCK_PARSED',NULL,'e1cba902d12a1222cd206cbb178e62278842768fad771ed28f5752704395a539'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b1e0d44fab8c65cf9db52750357b7006c9b88cef5622c1e404fd393a53bbef'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"da4ccd10ca05596d67bde246a41317cb94cf412a677534e9f30a8960ae6d59fe","messages_hash":"eee1c8f94c9fad2a5be10eb91f7e496af73ef1c061e1394f269740e051e70030","transaction_count":0,"txlist_hash":"69da3501c8236581d28c04f283674a99fd0fde22ec8bf79240a410aed3b8dd43"}',0,'BLOCK_PARSED',NULL,'9cb71908b5acb83c0b63eb586df7e202a8a7c90ad48c8b00244aaedc30b1a633'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b07a35e38cb47def7e2b7e5c39f123101fefed3276d352f793621f06e8f1728b'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"390bce30626e2ffd639f69450b0efb62c890786016bd2f7b239e915c5d1201a6","messages_hash":"5002b67844a348f893c9236e283cf6dea3cd63b5011ae7c969e7766845193255","transaction_count":0,"txlist_hash":"c656f03a763c0c15447178c384c6e2e5b2aef938871b7d487662f83cfd3865ac"}',0,'BLOCK_PARSED',NULL,'119ff2bec9534b561d82a3e89fcd81ba289aa575810c1b21cecf176cd393bf25'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c2cc316067ee8009658508c3a76ecca10181047623f97a87ff12654360adb82'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b99345fe06903eb2238d8f6c6bba3f8794830e5094f8e0169edac338717eff6a","messages_hash":"2cd2e6e7ab05ee2889043fff68226aecc6d7beed00790efeec1db7553251ca6f","transaction_count":0,"txlist_hash":"6990d35bb85ea5bb7f0649a0aa71c366cc42d2bf6a46b67519c7958949f5db14"}',0,'BLOCK_PARSED',NULL,'c0e4a3505d7afcf8161f187640d6ffbf7eae37f16d687c5e921a63d581f6dc6d'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41a1b5cf6451c4a771415714bdc94e1a2aa4f95965d97aece333dff42132a938'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"a7ee8098569bf853a5cdcf56497f24018cd60beccc4eabda121aecaaf9c778eb","messages_hash":"74b6065554818ed5ab663814f5d4a934041f26faefb327b8687d218a4b7d43a9","transaction_count":0,"txlist_hash":"b9658dd9e8457ec50824953f6f7027d8f16c3642ede49c09b410d0a8d83364b4"}',0,'BLOCK_PARSED',NULL,'f3d478c240c1778a7ef67683f6f2cff3c3972ab5856beb09c39881ab95665be0'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9118ea446709baaaa4a79ee84430f747cd4a8c35cc254b498f52abecb25bd503'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"c669b0128436eb42c589e1a1bcfd44853239bdaf1c9500137b56c0e528f93dd3","messages_hash":"6b378e38f567cbe3137daff9c231677729734067c613a68a19c5e68a667bd32e","transaction_count":0,"txlist_hash":"e512a03e98ed781ac5050e8731373bbe2b5474003da2e5904a74e7c3a15eeed2"}',0,'BLOCK_PARSED',NULL,'d5e326508ba0640efabd0fda79bc168c19e2f62263cb7a507d9e65f228631fda'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5ca4731ae628c8c34c15c714850e1cfaeb85c581e126ddd2f57e214ab009dfd'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"2b3cf3ffa1ec1d60ce8e38b7337641728b02c8be2131891b6bc3c34691ca6459","messages_hash":"35ec0d7bf1b95daaa7bd35fd796262237b0371b416f0b240d05d7bba5e81ed90","transaction_count":0,"txlist_hash":"a586937e8206f3b027baaf79d447df632952a69d67475370c932c57aad1d324e"}',0,'BLOCK_PARSED',NULL,'e13783635fcdd96caa21c0fb01d340130104f86d3a3f8c1753c29ae67f3f1ed2'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aebc1482c9a8b61197ddc5ebd18bda1d0d23742b8a532ec35173146c64489da'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"40dfbe1c1ffbdf3292e05c8bdd16057bd199fff13a238bd7cd25709b95887801","messages_hash":"a950d6492540b94c2eb940633b021c37f4d75cd16fbd3f13980740c36aa18365","transaction_count":0,"txlist_hash":"e983d3a45ad40f0a04bcdda25816df356433554636f31265b3e3466e06f4c997"}',0,'BLOCK_PARSED',NULL,'41fe98ec251db978f285820413fb386de676f4c56d7930bcd5a24cdceb2e13c8'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5df758f3b96d4d82eeba6fae83271acf57335df20b348884ef4dc0782af4fec'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"8d7e2b7584caa435c1c8b278a13bd60c841458e00c0791fee96a5711ddc2f2b1","messages_hash":"090adbbdf53a9043f00ce8eaf2022fb1eb610d79dc81c523f9db74b9c6a40706","transaction_count":0,"txlist_hash":"204cc524d1f1b557f30ac5d04c1da29c3c03776f786faf3a0044c2bc0936ea5a"}',0,'BLOCK_PARSED',NULL,'6f4ce71f3e91b092074dabacce2a8dd057c69390398ece78944c04887a8551b8'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'292941fc7d329f406d87991078af78d342983c8993d86aa5a6cff34506702ecb'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"5f65eff7e6dc2a84d48f1cf288634013636b146b35f184280ae4ec9dfee72d3a","messages_hash":"01c0b9e8247a4d0e61e80d189da2d2b41a81117368506c322c686acf19b73971","transaction_count":0,"txlist_hash":"3c4c67270aab28c2336c72a475b7e564464bb9038acd5b9c7ac9c9c742d44b64"}',0,'BLOCK_PARSED',NULL,'a16ae1f26c9c68eec5aa5a7df70577566e265e4927fac970ef4cda9fe9e58313'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f152b791e3173123d711b5017cbcd93aa65dce6627054ce7e1bd7e99bc131d'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"431fd3eddf19a556d83d296a2f03a9a81bbf6063b1652090131bdc388014c9f4","messages_hash":"88e7be861a1476c45e1bda31a0b5bbc2fbd5d8d7d3f8ddd4bcc2ef2b000653ed","transaction_count":0,"txlist_hash":"179ebeaac79ce94d2d3a19e1032cdf0bb691a1ba4ac96d3c64b6261ca1b06715"}',0,'BLOCK_PARSED',NULL,'c0d524d1e847e202042f063abf3724ff0dd60398c9b65e38002402c64d491e88'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ddb7974d7dbca3c581534c42354366f177b88a023fc7529007b36f541699e7'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"9b41b8eb2f5af37b2e402455bb9c9527ae659a793c51cbb97e31a595f51f2532","messages_hash":"196f33d47c06a50c54544f787e3a230d7be8360fc81155cd03fc68e60a75180c","transaction_count":0,"txlist_hash":"2db727a29d15f8097a20d768f0229b1098a5ef8f15edcbddfd0324fce93a76df"}',0,'BLOCK_PARSED',NULL,'259c96b41236a576cc0a205a99523ec4dce8d826cda07c37233f18a0e64f4bdb'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f01d5f45c596a2f7397dd4f281e2723d4619cb68e1422b8ace26e6980d728007'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e0434608dcceee737ebca6169d786abf784baf6c69c1c4d541fbd6028e0d7792","messages_hash":"ff3ed0b3c0d9216d24bb3bc2913837d7db0933869db765ad5579fc8fefe6cc2c","transaction_count":0,"txlist_hash":"e9b5bf6f38246421aea3e3a8335085312381de8209f58d38f0db636793aef1ba"}',0,'BLOCK_PARSED',NULL,'e5bd9e02e6fe30de2c7d9e5c72653b29893fb1143802342065412e18a2ed67e4'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bd29984aee0fc0dd860a7b9067d26a615230ef8e11a63a1e94986263e40880'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"15516216f1235198574f7ab6d38164fc58c8a7d8948375f9d7fd3639db4e62ec","messages_hash":"90ed25b3e837254cbe6291b38285aa08b0cc687ace735d44cf1d0b581191e5bc","transaction_count":0,"txlist_hash":"5604e02025a5be95e6aeadee0a905b26137bef5e1c232ae433837751de675d7d"}',0,'BLOCK_PARSED',NULL,'47693aa4a7c7b86b73c8b21b5357ee8af8ceba0b6be2d69d0861168e30221b85'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dc4203486b886cd406a696934c9e0f69fffcc4438a44ef8b152c00a9839f5d9'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"730dab11354936aaf26bd1aec614e3c82499cf418fff1cb99599069b5d390494","messages_hash":"1045b0bba3c3451b8bc1552c32cbd7631bdea0e21e8643682f7b7ca015b45507","transaction_count":0,"txlist_hash":"3219c25eb23fde0113f78470500f7c03a96a5e8b2a7085e7a0f20e27623e81bb"}',0,'BLOCK_PARSED',NULL,'a9f3a5fc680561d95c94e19f605752cf62b8fd2647f3a3ca6ecf6ce6c8d0dc5c'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4582c95690b9c26fae4c0502e8616e17a79d160f3a837751ffbfc6c426268e72'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"713ddbaac73191a90d85e380ba6f22fd92fc552425bf69780524e57d0f42b2f4","messages_hash":"00d026308175834a9e5341dcdeecdf8d98ed50c935b40f9565c6af5fd5588d9b","transaction_count":0,"txlist_hash":"2adca90f0480c18184f7a2ab929c198ebc626e0c970bba44b1b62a043adc887e"}',0,'BLOCK_PARSED',NULL,'693a432e16f1390bb093c001b4259c495409ac0fceabdf95043fb4b83c89a7ef'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ba6274cef177386bc1dd07250bcd24936f9703734910ddc855000b13ec1580b'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"d4b8f4ff3476419df96d642b7596d94435225c083456bb13fb7bc9491ab2c2f8","messages_hash":"6c66bd739f6336e36a070ed7cac6125389890137179fa0bd4e16e519aab5785f","transaction_count":0,"txlist_hash":"be8220629e1c635380db1625b65c23cc4bb2f4e061d942f9ad9b8ae9b05dfb27"}',0,'BLOCK_PARSED',NULL,'d17f4240c2284de7c89a3e649f3353cd286c6b4118a154edc777b4c08c00ed01'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'869ff02bb7b0113c501d1a5973268b163d337b349a77737e4cab4f7b30957819'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"e05cf9632a7f6053b14a63ccdef9a794559352696ad804581d2bd474c232a3a0","messages_hash":"fa258e13bfeb18f298a8f0ac2f5948d66c99fce126d27f8d4d7805d9a3201fe8","transaction_count":0,"txlist_hash":"2f3f7803ef19369da31a240f9f54e3f34a5185d3b1e6a5ceca76785d6dd6b89e"}',0,'BLOCK_PARSED',NULL,'206d5369487ce8f65532b67edd852986b9d6773e20f88921132cb987d063e221'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e68fdf64eae5c366aa798749fde868bea0ff80f7279464ea4170ae5eec9c7b32'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"c443ada7d6a9230d4e1fa7b395dc5c83b74e3070fe2cec0fa4ee3111124ed2df","messages_hash":"eb01ca5badbca3cd05926ce111f77fdca8b6b4b3bcb9369fda795a19ac8e8458","transaction_count":0,"txlist_hash":"387edebb0f52205bc40de9da6fc2d67829396af582246962bbfa1077c6b164f8"}',0,'BLOCK_PARSED',NULL,'9b247802380993061b37245d5c737db5cf364be9af82c8a852d6d7c92d1245a8'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1082d4aca91d7543ccbbada25a81f66cdc6fc02ab734e619328329e51ef5ac18'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"d9a4dfc786d539515e0500babe696f17f43c16b124e6a1d23e82dc3eda7cc693","messages_hash":"49bbf12dad3accf151c455d8a0ad491500267b9225b6973c4dab5d13235ef869","transaction_count":0,"txlist_hash":"7175efb7a7d7cf72889105633716001f74920c2fc8afe5d43a51e90217ac4345"}',0,'BLOCK_PARSED',NULL,'a39d3390dceb5cb0187926f1a5d707af62e4bc96de3f3707d8a8a9b194c3380b'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e17c8d00e8eb04c80a78fa6e8f358a0d1f529052c3d39adfebe793763e93816'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"300815234944d55dabbe517162d082d6c9d27470ade6b5708d080bd2b5e3ec10","messages_hash":"01c54c0fdc847fc93aa3286c275c203cc84335e8817781816b2a22c5729c9795","transaction_count":0,"txlist_hash":"3b30dc27b9a99e6b4f6123e6c2c9468eff50cfff5bd64956aeca57101b76349d"}',0,'BLOCK_PARSED',NULL,'af4df191829b4258740cc8e1251395ce31f2e7949040635e4364e45d7c7a3794'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'916fb76bd468d21b009760515981bcc687928bc1b6f464262b788aeeb97b6cb0'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4dba5bf4a8b41b94b711ff566f745519ffad3a408d059615390ec73983670441","messages_hash":"46f6c8f915653ab66b10d94daeb4a301191acc28527000c8159a11e7e2a1d7d3","transaction_count":0,"txlist_hash":"8f437afe45dbf3b66e3702bf5358250f6c9f199f69dc97f2b12cc83ad232b49f"}',0,'BLOCK_PARSED',NULL,'c0c61064fd931dfddf69c10e8c9bf5c19b32a4fb760f1d825e88f514c57a55f2'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'207b1a38bbf1b5d8dcd10f097d5a251a58030e0f539bd0e9acabe6b5cc00831e'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"3488e31f7aef8e909ab71677b7fc53fe95d0bcf5c84539c7b63ce95024558121","messages_hash":"09419f7bdc1d8ad5bdeba9dfe4b60d9d8dea705374bd10a94dd5154df9746132","transaction_count":0,"txlist_hash":"7a0072f7d8fc4c581d684a66a0e62541ec0e76b025836c9e50d3dbe5413beb4d"}',0,'BLOCK_PARSED',NULL,'1e962af812aa5e3d4286188699098c8169d686f9ab672e0ce5761a0669a1358f'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7732b3a0ce6f48a65751004ba7cd0627ea3b737ede37124d14088e2c687c0780'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"77f2c11735ed8c0f73b6c1cb2b0fc4db7d63a39b51f0672a5ec3887f784a06e3","messages_hash":"d542612ffc0fb3384a6abcb9803f35251374f4efa05d4e05e873ac4044d8adac","transaction_count":0,"txlist_hash":"ecc15dd749d0774cb211485b5998853efbbab5a48e8fd852dbf26147b5d6b672"}',0,'BLOCK_PARSED',NULL,'623f0eb2b805f65dea38b2baca311b1726d77a5c13c6acd084366cefeabde801'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b154d4879b1acf90a8f78c1c42320230e2644284d4cd06820ab92b39d6af642'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"a4b3356efad44e5665d22ec9374b4cb4a32305eaad546d09e3468615bfcfda91","messages_hash":"67bd70ce2e86cd6f01ca709c846e940b57942452b0fc65af9efef7390ec739de","transaction_count":0,"txlist_hash":"6e1cace2d84671d1c6593c90b79b6971c659969a138adde1f49e61ad92d6a74e"}',0,'BLOCK_PARSED',NULL,'012a51832f372b9043af76a2086a343da1a94289e88402923bf9354dd7df1b46'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'382f72af4a7d92c071c81bc287eaafd8df6f8b3004448b34d99fa4b9954afdb7'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"46e6b426d79dcb0ad8a960af21496bc67eb12b01003798e21d8f9256d287f2f1","messages_hash":"cd7c02bbbb7f66153f4a7808c99908917f7736c654d6ec083599650671a08e82","transaction_count":0,"txlist_hash":"2421bb82fee95536ae17b7411926b89538e89cc4d710ea0c403402a5988d9cfe"}',0,'BLOCK_PARSED',NULL,'a4275adfa4f7523b4d5eb6a90f6dc2218a0c62a2d474b7b3d887c120091830bc'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6934a7545acdd33a74fe5dd517196b9f208cb22b852a8fc7ab3a8b34a80b5c4'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"906bc258c901f1d51259fa1095cdc79e73582f3abbce2d6db6082704e302f3c0","messages_hash":"e6aa7bff3e6c05c3ecd42b1d39e32b9ac21501608d3ff2f652bf7c4796f970f2","transaction_count":0,"txlist_hash":"451cf8f2edb1f0312236e70ccfefe6dbd16ad29d740d2711a035952e7bad7b3d"}',0,'BLOCK_PARSED',NULL,'2a6271b402379289130af258433e5ba2382eab214a3ba7ab8e77b2f89af89e17'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d09bc0548c4f1ea611288b0bc94853d86cc563430b9bcea61532505fa4faf5c'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"f3f45de1cd09a4c781a32c71ace116f06a4566548747d4eec0d4579679b517b2","messages_hash":"fd6cbc46a1a3145aa1658af8a5cdbc5a71e02a302cc721e63f54e764371b98fc","transaction_count":0,"txlist_hash":"2ec9befe65e1f55a5acde2515dc93cfb6ae06dfc70654f8f3e36d74fb43860d9"}',0,'BLOCK_PARSED',NULL,'3b64c5e956773d7c7945e6caa641ef390561dbc2a58a344654ce131893647657'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ff2a28ccf824586e330eb7ebbe46e7082ac5530dc25be8f2df8e62176b1c343'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"b1c2021a511e73804eb3389338ad5869c67994c95aa3d754363e416c0ea6681c","messages_hash":"a9dba3d8a497e7dd114f053743071d68bdefc38cc7acc5b1a0ad3cdfa00b3c36","transaction_count":0,"txlist_hash":"988335f51157f59049abbe96ed42150aea1be8675ff651b0161e4c0eb0f899b7"}',0,'BLOCK_PARSED',NULL,'a5cb55ea9dc6a62363f0db3a5703e386faf06119e48f218de92958a8d95e2003'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ead4fcf4ec7e0ef2ccad4364804c332e5d4a3e1bea3cffa35bad9297081711fb'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"f6223905574bd4f4009361308e0ae35230176dedc62c02c405d61d232dc698d6","messages_hash":"e3ea8747eb848e2edf8f33052e6845fa40bbbf85625e17210b18dcd7e7b21a9e","transaction_count":0,"txlist_hash":"68c4871b2452e4658bbf292edc1a5811f2e3815cd7dbbf00d652aa2983827498"}',0,'BLOCK_PARSED',NULL,'2078fda28fb990fc420d7b279316051402599ab277795b0477931a33343fcfe6'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b219491365e68f03deb659302411286fe3170b2e656d7ba1794f0e60521d0ed'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"597db7e18c3fa6ae16785581fb3f8a5d10c24f0c959e4204c0d5c2f17c326b03","messages_hash":"00c5650bed81321f1d8e077fb0c0a053ed6621ce77096f44934cd666b40cd256","transaction_count":0,"txlist_hash":"6c0384de586e98e55261c42b8ff8af612b3f26806e5d39b92c5d5a1ce2e812f3"}',0,'BLOCK_PARSED',NULL,'1f14bd4611cd31a16384b52347bdac016ee1ede9b05c347af475d0c2b77bee12'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e20359a15bf4cdda179dc488d0211710340cbed1523f47d65c0a30d1f8deef7'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"cc430c78c4ff3b51f5f6684f6c3097e96e3ca7a1c7cbb7531ae761f8c237da1c","messages_hash":"4b4a7499e049a8f03cec4f3238e16c0b7d89f2dc68c27d9478f42d4d40f3bb7a","transaction_count":0,"txlist_hash":"c02aa7f01466a1d198d621e84f0b7098d3384102c8ebcc90d2356bf5cd34a07a"}',0,'BLOCK_PARSED',NULL,'d76eaabf2d3efd8cd7529bdac0ce777aa8f0342ef05a767804c59ca814c996cf'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78579f326728c1bec312fbeb7a4a1e0798217b1ce3bd3534f5564089332461d4'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"5183f06fa0f56ea93cfab784ee2f0112c836bc0e5f0b088992cec1c99454dce4","messages_hash":"b344a060be4435bad58aa14e6c570c3486b420361d8e19c0e6949582c09bd1f4","transaction_count":0,"txlist_hash":"71dc1b63932ab8da464234f3940f90ae969a2638f14672bd66464a19a9483925"}',0,'BLOCK_PARSED',NULL,'a06f5b41849e604f9de7082109e6111576d2c24730815a777bd29aa7a898220b'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79e5e0626fd81777eaf68fca009c1267db4feac29c932ffbd0a7343af8b98a58'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"02eb3176d25178a6487c8c6ee62ad753eccab508a47225290d1d42a788f1666a","messages_hash":"4289296ec77f8cd1472bbced371305325b1db6510d59b2805ebaf160d3c7cdf4","transaction_count":0,"txlist_hash":"eb8e9d522f09440475311940d6d6d91f607dda3dad7054866d3b507bee9ac987"}',0,'BLOCK_PARSED',NULL,'99cb9b17343344ec7e701c690595613592687c706f13dfbb119c771e159e062a'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'888d6e54dc087d8c877fbf215b17138b01ba94abbfed11efd260d74c02f49416'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"d5f28169d62dc574e960943f906c971404b4eb2b0e889302e385ff47eafe6efe","messages_hash":"9103584e7c3948b88eac19809d5114c9397813b407872af6294564bc4013fe72","transaction_count":0,"txlist_hash":"8637de5a3234963f7ac6b75becbe735d967f844534af0614f7bd280be1b0e758"}',0,'BLOCK_PARSED',NULL,'bdd7d551f34e37575952586f32bcd3c037a2ba053e3390e947659e7b70f0f9a9'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d8d817512d23d2a5e7edc8b5ba909fe1be0529f3b8b0c39e76e89ceebcf43e7'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"0aedbd680b2c27bda93d758ad384c59428f1ee19abb0444447b13dcb0f242b76","messages_hash":"6a80f809c0883a78a41dc8100b698eb325762e21d584cba6a67a22584ceb92bf","transaction_count":0,"txlist_hash":"3010ef1d6a63674f293f8bc7e84dd6b52a7cad37c953f09ced5273acb953871f"}',0,'BLOCK_PARSED',NULL,'bff8c83360cc9ce70a880b754086c1ab643579824ffec8fce49c15a4c54eb01e'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cc64a5ff4ca92897ffa2fc98c15c07868a43a366b97654bbeb5712eeed438fe'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"3ad6e3217fa84a7ae767546fddb564ef390287e6bcd5680c7ba15d1582ba2dad","messages_hash":"4ddf4bc227ee05fc5ec05775e9dee25f7e717750ea00a65fc19f4efb3174d65d","transaction_count":0,"txlist_hash":"faa54906bf78e669f4ce8426231c774e811cf70b45770cd4479e695997e59db0"}',0,'BLOCK_PARSED',NULL,'e4ec1f3c810dda83ba091d2ce97271e531b9ab0cf7a913c36e0faa3cf291d600'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4828930030e2a4115e7d3e03d700052fcd098867a1426ddabed1b0910528a5fb'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"c10752b8ed80baf55fdc844a09b031b353bc756b360f82867aa7017f641f614b","messages_hash":"1329f241ca276cb77fdba801e3a62a3acb4c4f8833e673318bdade78550d3cc3","transaction_count":0,"txlist_hash":"03d1b52308004488b27a813311b5cbc815bef2def08e91e4fc433b1b115fd04e"}',0,'BLOCK_PARSED',NULL,'4dcdf968aa91b15d714494183726bccee4c9a5f97a909389810aa778c5fbec7f'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ca49b3ae490cb57eff6937e6fb54704a118fe3322a0a643c7fe78094234521'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"f4774de997ad0b7929649275936055b12c485fc6caa28310cfc3298ccc24c4e2","messages_hash":"404b00a3288ba1b42b8eb2ec84915e4489f46450d95eefad2cec8a6c263a8761","transaction_count":0,"txlist_hash":"ddca5ddadb9400eb2c071755131debf24d755f522542a66b71c19315c15a1916"}',0,'BLOCK_PARSED',NULL,'fd8c11ec1da2b87918fc6a6d31977664712becf55dad49f96047f624836e1273'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faa186088473b49cff6c530c884bfb275ae1b2c23b4d7ed36d918b2359a01576'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"a861a2af9302567cf9e0f126d4e3f3a90635315ab5985af711744f3d60747fa6","messages_hash":"9ab03ed22911c066b854f597e8a94f10260ee0a875d15a3ee71f94edcebd2579","transaction_count":0,"txlist_hash":"c97797ca9886299430faeec78a9d9c0e0c0bedc8558fd4775710d72d6eeb7ecb"}',0,'BLOCK_PARSED',NULL,'a6d7cdacb01a4b44322648f1d0de7e769de687b4b441827108cd22aae229ac81'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72fc1c1d79aef1eb8735c10766fcf2e69ba42c0f4d973e6339dce842ff9602f0'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2829d50381ad6378b395347848c99501c6fac30a55f3cfd497c3c45048dec180","messages_hash":"070d0140b7049455ba8c5700e9b8539691032dcdc043ba8d0adafed2eb5315c7","transaction_count":0,"txlist_hash":"9d571255b4560125d31f58bc1a2596ff28f2e9684bda1e4c4de4c8669925f92e"}',0,'BLOCK_PARSED',NULL,'30bdd7f20c771eac030154e36f269167d0bb74867abf736b7df911ac71f99b00'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38e19a3566e73679b1d7f997dacddf135320bd94cc011355f4eba3c6e7783ea'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"6ca0fd463faec2a7acbe884bc705f177d5e5d723db0afe202b67aa1465d1d93e","messages_hash":"4a75870b62b198458a25bbbdb204d4c00bc468f5e38d7bc01907a378b03ddc89","transaction_count":0,"txlist_hash":"78ce8a854f5418029014adc4eb09bed249ab39d1bb8c5efc97d8672da1a91786"}',0,'BLOCK_PARSED',NULL,'3b164c721574dbb91ae0780fb6402e287fa4b244a0b8a24011f3467235591697'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2412af411f428d3506a28541413ee45662f99f6f21e8318b088669cbf34c3d7'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"6d3e35e93b4bb71e45dc147120c87fc935bcab2c3febb0d7b69bd9d7727eb814","messages_hash":"0005348f9d3b1ca2ebca2ffc3f6fc1fd3e97bdd2b00d3fe9c7474b3d2ceaf15c","transaction_count":0,"txlist_hash":"247bed7bbe4e056525194dd2ce616ea1058d557dc32a91129de7fd2ebc37fab6"}',0,'BLOCK_PARSED',NULL,'72e38ebb8964e0e6cbdc9f1923e5714b8ad71129f4d68bf3239263c8fe1fd42c'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3da56bad2856f0376a7c851a7e82fc6bca317768d598520a1a43824a551c8711'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b126fedbb1c360f0cc111d592b9c9694c5c8aec411ff4a6e8dacdb1444b7a52e","messages_hash":"26543623af7285ae374cffc70805e1b07f63539d32612f9a1083e8ce4548b795","transaction_count":0,"txlist_hash":"969f37a41b305363ed0e7c71d5ce36abdad80a68cd677d1da40667535e13f9ae"}',0,'BLOCK_PARSED',NULL,'1d892d20367a9c27701ecde0fe9a2224333a536917c4a43b997522fc529f7750'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb27a45bf3dff1c03010e116163af8f7b6eb96ee388af3b4877550b3b46d0fa5'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"3a72f1d0a7aef8205967578d8fc0f38659a382eabacea99418cba2c0dd981d2d","messages_hash":"5072e260a9624faf3192eecea08113e58796b8bc099411b31e565586ffb7b48b","transaction_count":0,"txlist_hash":"7ebec4d28afc3a357922c25975137a4a42fcaa53f8366d423450f96166951414"}',0,'BLOCK_PARSED',NULL,'ad1616b3e0ee5ea4e9d0189d62d02fa02dbf5a03d5888f325e9c6fbfc8d2a3d3'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67b483eff78060cf0a8424c4862b292b806f83f1a4c00c0ed18418333ca8712e'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"3232b3d53201c944d250d80d0abb32734467f74d7e9d39649df15b8507c388f7","messages_hash":"d6c190d88a49c3b8efb077da688888d38d704c283d51f892982492727f071dd7","transaction_count":0,"txlist_hash":"4365420c4f08343e0e217882603f4e8cdc21ffbdc51b2ea61147dd2e123d0c12"}',0,'BLOCK_PARSED',NULL,'d08f460efd1d50a35c4ab3b119f4d2dbc4a0974766b3e0ce6ffbf19fb36fb48e'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f34bde188e71da307c79ae1d2862217ae98faa17995ca369c3dfbf60451726d8'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"4a2a8ff86ce80c25afc9fc6e3ee81c9b8f4d13ca9d35000527fad9f6aedca0f0","messages_hash":"70075926637da704fbba88ba870e5cffb58c3dedfc3f9f766fce4317dc63cf58","transaction_count":0,"txlist_hash":"798ed3f0ebc9ef0dc9d567614c45936fd0329c7aceca0c587aa2e1cc2c1911d9"}',0,'BLOCK_PARSED',NULL,'2c0c21e45f135f450f779c46ec8404844a13d08c67293d15d4a680a3aeb64094'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21d734f84346892520f467359bf24ddd4d5c4e1aa993878f8657465308bd58fb'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0a77c547f6c99e619de78ae35dc73d573b1be71ddecd68cb614cc9e34bda9909","messages_hash":"7fc04dff5d44d6709ae785c9ed537e013f80c043d4bb680ea2eaa44ca8ba0404","transaction_count":0,"txlist_hash":"54bdc4b31d5632082d64af167fb2d3d5d79ce01907be870d47bff3246fd5d23d"}',0,'BLOCK_PARSED',NULL,'e1757ec649b5cc757e46d47b74b78c38ca54012b1d03564d63eb9b5a9db3ce49'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1658711d99ebb2c7c3336ca50ed3d70941b1dac7dae3cb25258074cecd8adf38'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"30d8174aee995c2cfbfa6a345f4ed79057f9ab39b88723c3c891fa665a9bbf0d","messages_hash":"8ba7eabd201c4d4feed5e3a20d4b0b929b2d43683983842135839ce2ae0fb667","transaction_count":0,"txlist_hash":"2038bb6dbc1c2efb54a0093c06ce6ae0c44285021ddb212d6c0632b09e7f57f8"}',0,'BLOCK_PARSED',NULL,'4a395af705918668e100b96c4ca1fcbf1dba3f88d9e1e4bcf97d67111c68b73e'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a8e0c3162ba0413818e147aa18d18147f3f9455609ba52fbe836649ea720be'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"9ca8c6f9d3e8bfa1c838a7f04c3f5d435bae43290cf0a913f247e8abca698c10","messages_hash":"c50b1de2fe1b987bda002988e3adb03197195f9755c9da4345d446a8a92d29cc","transaction_count":0,"txlist_hash":"07d0d5317d46a5b43ca16b5cd74e94cfd42aac6ac427cb7d5351c8f76f734f98"}',0,'BLOCK_PARSED',NULL,'9669f8db4f3c518e839243ad2da2793d7bbb968d397dc548abe61469c24e8cc9'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f66511e675ed584b3f4c327a6f0c2822d4ccca0829678ad88933d30d711ee0'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"e7eaad7b8759f0292acabbdaedb2438e4342b5b2639213309ca62e1911fa05fa","messages_hash":"b3063eebb8c799a1210c6d1aa43095d02f5283cf2475f6ff7e995f89cb4798db","transaction_count":0,"txlist_hash":"da3c33fff69cd8e346e406887cf7c908e315101eb5c96b49b38df8e7c45b6539"}',0,'BLOCK_PARSED',NULL,'2ed4ad734e87418dcdfa4f2eb7d319455685e0f562a1c41bccd0e44b9a043548'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9abdd00cfffe396d07a80cc6a9346122c57ba8f89a7573b49cf578663e394db'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"7c94a63e59c1ffa449e96ad633d88cedd0525b45254e930f7fd93bfbff484f28","messages_hash":"662b06f4ecd1b8eb3f1d27c3362e7a4fbb1efad8e19b18bae046c4ed24418085","transaction_count":0,"txlist_hash":"124f78aaabb08c5460c264440aefde928baca9efc629d1e2479536ac8ad8bfca"}',0,'BLOCK_PARSED',NULL,'52ecd13bbf65f18add5296d82d57df29b43112931cf135d48a4d6df2377537dd'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcf603f95018239853486b9f05a9c26d9f99fd480b9a746ba7cae1c788f36a32'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"c42a7d6ff3fcdea63316359c2679e165d80bc3fc64da82db407cff125252ff41","messages_hash":"2b42f897e00a0461859e92a1f5011e0cf729f247be8aeeb825493ab65e080df3","transaction_count":0,"txlist_hash":"112f72cf4edf94bd94336a9622f83e36f0028c86ddd9996dc97cdb6f8e9ced4f"}',0,'BLOCK_PARSED',NULL,'27cd1ceb5e207768d999ea0e626e6ff57593debae63c8c3df1be3759ba5fed0a'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73642daf96f91b2e02542cd8cd5017535441316ce1e3b372e1b68c9439d368a'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"da3bee7a46e8711ce43054b9222a87a42a741b253836a3644999c77faf79c0a9","messages_hash":"4887368252fe266708c5a21a8d2f33df5047ee401a578d5b7b117a4b88f50a4d","transaction_count":0,"txlist_hash":"32d845b4a48ef67a35017059a1cb0a617f20fdd5e22e5bd71c57186bb25bb7ab"}',0,'BLOCK_PARSED',NULL,'a37dfc06577f84cf9d36519be6a04069e703b1b3bd3f232c8b59a0415c66d21d'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6f1c9577a7f986ca3ed6f76cbef9b890bf77217159d5e0172ede6a9b770facf'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4d5175094d843048e7b675a6e1b90113c733ccce98393bc3434522412f2d84ed","messages_hash":"4762f34666946d1e752cb34c4d5d4e1fd2c82d5f40189319d044add7e14f03da","transaction_count":0,"txlist_hash":"9635a1ebe38c4a2a5b4ad94595d00bdab776352a305340819f08e7bf05ffe1d4"}',0,'BLOCK_PARSED',NULL,'a2491170b5e133817fd17520171d9d6c82437f54663870e8afa0ba8a04f77d36'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b47d59cbb43a779cf1687d37ae83b786ae241ded9d26435f40aea014ea109dbc'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"937943ecc2109d2360f336c8b60d0788c7b465251f7ac081a9238b57fbe0f8fa","messages_hash":"0b7b0d548bda38e05b190ce1c8fb4d2aecaf51186e0074d6a709e2619e3a86ba","transaction_count":0,"txlist_hash":"776d13b85d99a30faa4d623121deed704fd9d9554193bfe932655cd4230c0ba8"}',0,'BLOCK_PARSED',NULL,'e24a34abf1632370e791b711e82c6e52e0b7731f3fbebe22000199dbb49601d7'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bcb2cde0bd3669ffde55bd0d14b7dcb520ee65158dbecbe4c284d0341647aaf'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"92dad6e8b048ebb1b102e9d4a5523d3059bfd125de9648502961e73d3d8fc1ad","messages_hash":"0763db5bb362b84b0ce39bab687bec2312266fa430e660f0f9c0689cb94352bc","transaction_count":0,"txlist_hash":"4a5e21ac6bbcb87e2459efa85d753de22dee2ef135844dd25221a138f1c45c46"}',0,'BLOCK_PARSED',NULL,'cbb68a265076dcb741c045331e00f978477398bec21d5543e794b668077956f2'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b4b154b5156957e131b1dc3fe91f31c54b8f0744b5efacf74f30b5dc5ca3adb'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"e229ca3b7fe5392b662a03adbfa2cd8fa28fbdbf15792e2cce2e140ab2ed7809","messages_hash":"ac63455eeee20c2be96ed36baec90725ef8456ca12855982c864ecdaea52ef56","transaction_count":0,"txlist_hash":"d9a47c53d72f2c73b3027598ee427040a6c1131e5b62015926cff9a50315614e"}',0,'BLOCK_PARSED',NULL,'79081ce2fcd8366a15178dd9c8a0291d67f1130c872f07ebb3bb39cc12fcee32'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0"}',0,'NEW_TRANSACTION',NULL,'b35ca60c77e5826adaa4c71992a3710a3ac33996e219ac8917aa20415260e40a'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a6e44bac18a1fe20ad7aa50bf9e610fa86b3a4abecdd8b3753f21259b942547b'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','34db6224c2cba72a51798ebf26fa138792fde67f9f4273951cd1ab07b69eb322'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e5a70b35b668dddcae624234d0987e874e223dea0b7116f8044c1d5c6da81d55'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','0a52660dbc4f3f4cdfba4d181c0c7754f649912a31a7853b59c69ff61f2451ff'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','c2c50863293ed4c1a6a11e889c71b07297d9a2652a04898f898cae6efb8d1103'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6e0ac3cbf51a4fffdaa8a7b387b3ab0dbe9a8a22f2874447898581750088254c'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3c20c13624a35c1e7bd738671001e7746d56a47df51bd672d802ad275e69c8fa'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'1ecb3f056ca3a6994fa85b473ce7a2fa7bf6269aa6789b8d766afebb846a10ac'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528099bad1d0185356e13f5748fdbee6416914ea4267b5a6ae5b8061d3ab582c'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0"}',0,'NEW_TRANSACTION',NULL,'a73ac93ec158b06fd501c3d281bbfe0694c25cf7e77e2d86de5e5e7eb4b36fa4'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','82c8e996dc8a3c904fec9efa5729310745197e91f4f54cc4b3f7aa7b0b7b5e06'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','01bb9250351250cbfbc3366313b968db45fae4f0a0c9c212c5bf1de6ea26b01b'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','877eec9a5ca40b248c28be34e8899ef7cd371ae17474366769d9ef307571f58d'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','6745152750bb36fb54cfbd44a90d4a50b0fe7a2748257e8ed1abfada1f6a7937'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','e067f1e65c2f6e43921b2580a6679994c611fc10f96456cb7a0fca533187e263'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bd98d8215b35fba16c6b971971c7a9595b58764ea53300538702ee5965fd87e8'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8bc77220f31770776a5ce2ff53484e5b30f742ce55f5b5d65e9fd2136cbe9c49'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'c6d4a624eb710947b6d04042f3cb12a9343afbce61b746c3bf77ceff4e63d697'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35512b3598ad3f96a0aa909f8ae3868712209f33c2ab76cb53d3aedac8081092'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'caedb504a8148c5488f3dcff5e4997cd597241f4d8f28b8a22f771b1f8a7b34b'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b3b469b1d5e8d30b517dd14f4dcd3a784879adea006d89b1d6e06b193df9a9b'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b941d0c9aedd4a26459eebf5c843cd86eb6ce5e43482c04559fae4a0d8f5004'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eaa8c1632f880b49b9124c1223d4b791ba5e3e218523a9fbd3ee07d15341f6a7'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','975db2606987eba41dd1a47b5053d590566d3c8ac020e80c9fb6df9b2ba430ee'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','64c8ce30f937287fc16fb4cbee0af0eea573ad1ecb4955f520c9e6a7f84dbefd'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'5a2a068c35a2b17017d73246ba800a5ec1b26882dfa552a2882317a7352d411e'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'639f60e9da19011db814866ae8e6ee859ea779fea3359acdebccddfffa46dafa'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a35053e6e0e5a85756914ecbcdd12d6a98d5130109b7fc3df25ca5eca3afa1c9'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1387ca5bb166056135847144896c17e0fa4286ead8e61b5792367e09e648ecea'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a2f8391f95dc433e64988ae2189fa66fde81d9c8f3ec9156357baa2276dbb247'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','51208c169c96045cd0c0f378d1218dd8e60fbf0c0c3049ce982c0ccbd125fb7a'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'3adab6a2f81a37e64ea1f3307f5ec4d982a8f1221eff48af67f83f25bc065088'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'339e09650b0d4d08ab7cac49e346796cad270c1594f2c77a60aafacecb101408'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'172fc284f2e58d414d48cc1beae80a91b24993c164e2a5e195108d259b5d62a6'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0609f823125b92a2b33402a0f37d040fd4d6819c5a18031522bb16f07c010c04'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'e41514375d80c5ade7d86d5a81ba7e5022e8f73aeda79bf163a0ecce960157d0'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9e620183cfa0a485518a320ee1914527de521749ea64c8f751929e37e22d69'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'dbfb90d67c4e1d26fad2d731d6dad5bda42011da3d2c61e65ac29567a7166e19'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'14225fb022f3acb16145c071c108eccfcf7548ad690b45257bd2532ab3e49724'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'07062c0ceddd54f644f91ae768b2cd510780d992268c483c0e059014970647c9'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f8e4214b6caebdafd025229797cd06db265b7cc787cd6dad15ecdc40315afa2f'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a04a13ee6491db965a4f255bb88714f2ea260286c5078211d718c33e0969767f'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3713a9a730487a68543aa4a207098d68c7228a46ff16b5ec511498afedbd89c'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'fdc755804dae601d6c3283f313fcd36f25a82fd5359f9dfa12568e1166249312'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d0b294525624557b1e26fbbb012018b961f082bd5c7ac6e216a6ea3f47f787e'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'c55f286783ba2ec3691ef47ddb919c709ad5dec96f79c2509a4873b81e12f946'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23911491e6a241d8446f339f82ebcd932fe8db3729e850e1e4d6c529c171fd52'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'a628fe0747549e41577a7adef00fb7f0578b40a6a25fdc196e831d79c5e8ab1d'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8f0f033b427280712b7c882679d5974306455ef58994f56a8188b4948c8ffe2'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'f9ae8ef5229a28d1f088f432ff0c23dd04c58bea75c82b063350da58e55e7337'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1943d66ac055c560c7a62be3dcb77399aad93e227ef1022f9e142d1337609d50'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'63f1e423c099697f9522f29b60d646ff417063e151fe4ddf07334d17f687da32'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598454f3b2b7237e91ec487dd8908426d20d8ba844bd29270cf8deeea138254c'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'74aefe190729ccfbb1e97ce83f416a357a43e984784666e12249872f727b8613'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79cb34aa41850cbe98e1612731973fd0a051e69c7310ae4dbb449e0351113c05'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'297fabbc8d47c6cdb3a644c8787076eed82b9ed61ebd4318c7d4792b6610068e'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'9bd9fab844740f3ab48a25256db8e575339b7a5e193ae5306118ff8f0a9e7e8f'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'601e5c07b12e7ae0f2945a6d3a4b7f9ebeefdbbd3bf034fe2df41a73c5314950'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'fd9086ac4c0bdf6b9c3376754dda2994ce20553f15c6aa43d87008e5cadd4b0e'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c97cc2b86b51a8c6cfe4303d188fbcd7bc6fbad4edac4f92accb50aa5eb4dd33'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4caa9a30853ee7a7931186dd4c30cd6605de7f51813d577fb3f2b96d3ee24e36'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7297162e53d9ea127a84af2ccf697534a0cfdee274c692655e5d5640ce972c75'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83708bfa745be321be4d2670121feac375aa2fad63bed25ab0e858acd6b087ff'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6d69c838046d1decb063ef289dbc6b9cc01069b8ab341eb50018a5ecf9545ed5'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'1ff4bf426b7853f5110f885ac868df6d0625fe47bdca47638b92b7472a61722f'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2064a9837855c58a5d1173c5c882adc729cb5eeddf4e724ad35287f2ef3bfe16'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'20fbe45efa365bd82c2e911c58934990a875f44107c885c36b8e9eb5a0585460'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d359257975f55a1ea87d213f7ee4109e296d4c077d0ac13fc909d3f3649639'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'24fc3b06a4d2e17347445ce329d77f2adafb2b36ebc87ed81aed8f1bca0cc0a5'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec1d64b28f3540a85267b12c3fcf1d7fcad36267df30c378971008cff76d1f23'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'6bb6d5fcdf7c1df521268d172caedf6f54c2a75372ab61f6590e610cf511f799'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b60af426be8ef47f5e82220969ab8746b3fb1d0a0c510bf2d82827f5ae7a0801'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'610a4c5ca7c4f92f63d91f2f4357f331a0adbac47e8869300a7c03d9eb7a41c6'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1656fa034588d179d581e9681e10d835c5cd7dd116b1d022d29a6128aaed28b'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'0e727a967824e1a1eeb4517385ceaa1155bca950e422464743d91755213f8fb5'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99140c77faff04960944618ddedc6ef5877a8736d73a48a4c842be339885877'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'9f50a19b03aaf1c22447af5a63b92a24e8b1fd8cb0fb6861230d1775eebb4c59'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4f4d806ec3c652ee99a62c1a50b6e0b8319c7afee6ae4fcfdbb0fc3726e05d'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'b243856ec5e4961ce581a67c4d73eeaa8d5dd6bbaac74711198e84074070f8c1'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b221b989d7bf8a617c6a036f2f0957d987ebabcf1444fc3d48da66175c0902a8'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'6e15d15bba5c35c28a313f2a426ac309bed6865a23eb2631ecd56af3e6790cff'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e85105c6bdfd18d42b06d7b264774b545855ff705a5660284989d92008a9b2b8'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'7f144363227c60be1a1d9193ce60a98ed34e0cd558745d09d82e12467339a734'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'181f664e43500c2a0431940c5239bf62dd94945878efc473c86d16397c2cb657'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'fb45d345e12253e826be18d795ca7bc7a26e7fae2b7ef21a117dbeea66685dbf'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1adc808f936f75f6ab728c9d53aab5b7c648a551b04873ebb0cff82419eb7891'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'bf9f3cc63511bae077230a580de6f3db34a3698cd56ee518fbb7c691f2b489f9'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681e3d0de8424d0130025c0f22555a3d87dbdf03439b31410af6b565d7f690a0'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'f238dbfd92f30c5b11f5d2d12c97552a1eda5860b2450ada00c8d084f05d6fda'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45ed21e1363b85812fc945656a2c717cde533ab12e942f8600f8048b52142903'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'7958a828ef2fcea92d1fffd90ae892c4aa95996c49cab2ffeb8a4d1dd0a0fa9e'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc79fc76527476e94afb8905b59eb268b32693e71665d96bf0fb4fbfe2e95ad'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'1e692b97c3d51731e3f75374f9f385fc8cfbac182973541a4a5c0aa1176a9db8'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3188002ca88a498a3eabbe88eb57ecac8689cf2e8ef9c32dd3a62f40e74e74f8'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'192b3693fa7a83be9b3e3f129ff4dd104f09377006ced58d167d5d3d40b5c973'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d0a44c914c08bd347a65f1d67b5fdc9fd7a28573f863f43940f494fa91fa91'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'46a4bfa3300b8af2e1d356b065a3eac908babd48a83619b85c90c70aab9df085'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'531e7603ccc4054263ec0e8b37ce2bd111a8711ef972ab5f136791f225b56e0e'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'f72d93290364562221fa0789e0b968dc71a9f010568ee306f839983f57cb1df6'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4051c2f1bda2f4e4d54b046db8f5cd570d373dfad38629ca2095006649f6ba6'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'3bb07ba760d668fdf6039d7faee08b3a28097ba62a80b856fcf8dce6dd42fca2'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e03b7b5b1b9fcdae2d4f456b70a92557d638fd48b3b6aa1755df6ebad972424f'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'c8c8eb0d878206dfa128e19ff93f3899bdebdee56b2642dd2bc48e3cf79ecdfd'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daaea7507ff4c9ad85389dabf8153b7171b463b8dd574359f79e932b37b21a62'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'c73bff8fdcfc4bab2661f8ee004e2cb523b948b69e1f49b571a794bc2ef95dd2'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd80b18af7b9a2b002622969bb22ab871448277508143bde5d47020b7535def3'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'54418532dc39356216f464cd433cc02f6b42ea0acc293bf5d81c7502abbf1cec'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c34d705dd16da7e2ed29ba6b630ce5fe657e7ba9ac6962c4ff556bf868a886'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'acc069e02080c3f255d32de0457a7d3bb07fa12fa517179aa361e0be89c62c81'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30cb7de7be7b1f184153935ac3134826b7c30b81d1461dccfc83604fa04f0ba0'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'b270cdb32937d04493f4c18f31aa15f68c07bbfedab331988d7b2754bf563440'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d6549b76a9601d58148004750295fba1e68ff371a5344e4c95aa6b3a6c9df8f'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'a80169089a7ca50b0255cac3cabf0d97ebbd452fb4cff34444d53a1c3b4218a8'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e1bcb6e422ec33980ea1458ddb1adb6991d8c867dbfae97416f1777b5454c21'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'1cf0da5ca09e0a452f39df501aae6a727171d8bdb5af652c323d108f379d9087'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85396fc6218e61e7b1792820b07df7fe447da0f2d7924512a8bfc263f50d99f6'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'ec7df94ff98be7a1dbfe4cd8bc137a158a08a5379eae67afb5a876094e3e4cd9'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b991647530b659c3d4b7264f5282977b563adc2237ddd494ba053101cef189f3'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bc24a916e0b1aec90aab6f8848686423b9653faf43e0fd7795475682ab499f52'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ece75f98ca324b5252989d47d6d564208558684179d5e53fcd1dff264282480'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'a4755b8411931ec5f5b8c04564599e8af8d006bcfb450fcf8d7f1f25ace29744'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0ac43de4094c637cfd002c44331dd98aa620d3ba92ac6cb770e3f8a8075881'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'94e57bb7f6ab496ede1b25be3c4b2b2c427733d4bae1527a4872110d6d27a6c1'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01ecd6939d375d02d2014490b435ea693d62384c82b8fd2ecdff0b01ae05c316'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'93151de0adbd7f1bea046032b63e2b077a1844e745d6a5cdee49f958d7ecc3e4'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf042801af10445725f5b52ffeaf01df256d010ff00ddcd38c3d0dea056b6e98'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'c30622641f4e29f9b6c12433c2e64a29a2c339b856a0d13ca915513751d15065'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae56933006427c812e36fd69437f2cc68e1a3254c14d87843a9808a340ad95e4'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'114ac73448a6f1d0cbacb72afbb55ee46eaac5e39cca6097ddb509fdb543de18'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e118d56025ed984310e5c7efa12d09de71ad9cd3fa2e692584c7f541ed31c648'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'9336378df450bee66673dbf20e1e6b1665f872eb6e9e62b292090eaad6d382d0'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0526179e82e8df8450551c4067f1ae4a54a0ba48b4ef537a929a4f9dd8da2dc4'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'c88d4f7a193785f7e8ebfe9c040d5ed95dbcc839056779d264c54e446a32f8f5'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d47a8669860cacfdcfaace43ce9f297de53086a597da9d730aa7c06ab2638bc'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'330c1ce550ba202d41777db5100b56946ea3be787a6426c36a4451bfd3f2e43f'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c168bca18241eeb72db92aadbc91682be9266a5759c7d31b7aec8cc4ca54dc98'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'f2fe98a7f10d91fc9f72ed94e0f560558006cface5738c19177d77a4b5a27443'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09fc14cd9feea89f00751341ba7349e06dcf8d664e1b9e02b4f9f4ffccf79174'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'0100a18b64e8cd35f603f6a18e74f795149fd336ebe33554436951107ac45b7b'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b520a9ff53ccad57de4cf6af9d6d0d0d0b51ff94df26b698c46c86e4c72c4b8'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'5a699d71510d6694ebcb11c78ee0e3b22e447ecd1919e28a2c39bcab0e2d1256'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bde0146fbbb6ddf6b945d43efeda50ca210a172a907aa1a51c31e46a5c5ab23'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'6b1375aab1839d579cbe2d8ccaf864416c17c079394c8847bf0f5037980835ce'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e75eda0064c4991db7ba311f07170ff63afc11bcb14c27e5e041351b4bc66263'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'71c9ad1de3334fff8c0eed78bf096f68ce9b3c6787615e0d6ae12b77a5baab09'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c7e933157bc4d0ad2ca1c305e9012e89e107e593798d83b5d3dce2a07741986'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'52bbb88f0b97ad86e4c8d1ff4eb8b4b16dc2602e70d4eff16063b5aa1838a846'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2468391fe217cdc4f95c321cbf71115d8edbecf8316f44872d1c299dd36fb6'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'9d907104992ec183e10e1e878e6e56b5621267ad80a0238c73db6613f37b25dc'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97898323d7654f11367c0540d4093865954620c7525c5db3c6a66b2143dd606c'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'d3d762b7c291051089b9ff27270b4639f96e8335a406eec7d244d5757a7ea097'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a3a448d89ff4ce03f3c642d9c4c660f3f701f814be19e0cc964fe5487ea35b'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'a7f72d7475b3dabff21a96bec4ae01ae2ffed010120e077ac2325f3097530e9a'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b983ac36e4316361a8919e5aa657a40626e356103a0b8935f639a68d54f16eca'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'9f1bb72db7e1fbdd34f9112ce9b4916fb15c8340639d18f9187f1ebc3636556e'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'748d7c89983fca160b184bce63d8626c58738e2db250f644133a95b837cc26b7'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c713031f45363a2ff39dd951f7f2add373b143f0be24bf844fb1c03ac5e88701'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd88ec4b4479f1fd61c97b22062bac5ef31fe8c014c74bfb3566a47614fafc8a'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'e2f071713e6a61fedda8e084c812f2f6173f2c376f485ded800980e5a3eaf0e5'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f131ff38d1468514a721fa48739755a4b81b05b5aa8fd8bcf5bbdfa019e5ab9'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'e5d8fcb1247a33a746a4d3788da7e6c1f619249f423eead6dd5bf1ff7aff9485'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33672a9ddb29a82394a84653c306cad74232d8ee456e417fcc1a47cb3556db8'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'f249da94eba5648c70aef21a7054948238597f19edea85b291f41f8f3dd72c0d'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'824cf37c68956bf766613197e915d5581107fc05ee60cc4a36a3b8384ff2b56f'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'263b6f743fd1044fa59c071708d30d5f9740a1b62773d461eff0ee41627d2b69'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e616adf0ee6da393eb81ec6f747058a4fabdbc58ebbd275a243853be81515aab'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'71ca175e090010878353f8c1a1fbdba1334c37f1818cc39253e836832071b96e'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a330d3d60042ba7e7533a8c957bc1bd96684214f4002739e9ae5a22ba9d4113'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'54d887f9de5537122b2cedfe5127788eb26615487967a61c4956a5d0e54b9c97'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77cdc2779c689d97e1ee112e019fc1efc79e079c16e4808664311762f562c15'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'d374e050214c05569077fd14f4b111adbbf16c4598bc1513e94c0967f3e71b20'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cce0dc0f47097b150e9c682fd021eb7695d6b3251e0536672ceddd8686daa5c'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'518d89dbcc26ce0a6a08a56b547a9084a4783a07b1951ba4d5fac5f983cf305e'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94e139383e64eb5bda514ac2f9f1bc07017e38761cd344b1e98581e07d4afc90'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'b167de1c3eacb4de5d76bdc18b06539e31e3ce7580f868fc453ad09e6e182dbb'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4da3f04378ab20c0ecc1f9fc72bffe1626f0405ed0019f49db99b12784692411'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'5dd61e68a7d1eac576e1c473c3cfb44ced787321d38a45084e1bc2016fc7a60d'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38706aad91eef7fc2468455e1f43e0b55693dc694212e360709e16c58dc6224f'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'c674c34e3da1740ddba7475f238f9fa47c8dd480beb9abbd1677c03f28672e5c'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6a76a52e1a1953d0d555025bc54e7013184baa63b823843d36b148704f29be'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'f2d546245621981e88036a6099433a515e8187421af82c21ee1d3591ae83f7c9'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adac8c69e0723369cbe9eb31b2e9e08492b1a4ec53a96c9a9b2914c78a27eba7'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'fb4a5295d1d516b6ea790fba304a24170fd288d738309ee2c8702819f10adc11'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ed6f4a4f7649b98cddcdf1af25c71fc4f3aaa53788df3536093f5687e20050'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'13ea9e672f41da2f6f0ff158097ad1ba829af5517c9bc9f76ad2baa7b0660edd'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01607be5c6e45bf3aa1eae5c075eaf4c805ae25f9d5a950a1015786059afafe'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'07747c3ed359e79cb40ca544bd385eb6df5a5965380337a3530a6568471dd332'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'216d8e391633ef3733e692df45475fb5b27386ad5cb34cec1b356fbaa24911fc'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'aab759797326603a13741c1000e64600afe2de9fdb376478c9475e8cfcb7b662'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1968376948cd2eb0649e3134778a942a417660aa1ecd12610f9f0060c8803f6'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'4dada71c5f0ea8e5c1b500618669786139c1c347a29bcea215e2fe15c76493e4'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83b68c33080ac8180bad432d60d0ed3637bc68b22ddf508797dd64965a96c155'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'36be6deb89fba28dbf50708b50ab29fe0e01160cf7bdd4b74d72bd4da16f5468'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f7f159e7dc425a00214fbbdc0c3874c95614702ff6e47412046dc7c360cc6f2'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'90dce01ca614927c685ee8a6cf24ad078ca39bf1f5cda756aa6914fb436e0a49'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f63150baca29f5ded753979c2791b70d789884b1bf3c4fb073a973ffdc6c48'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'76ade670908cb383d6ff80f9b47a4c2267f58a331ed4582967271cb824e60842'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e71117419b1681092f5f405b4b9fe1f9a24aaaa82a841e878f7057d4f446068'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'b7661cc2ded026bef4558fb178ebe55600684dcf5106dc7713d77a416694fed1'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb6ce7e3dcec83d1ec9e659296d8b781512bef496af7ba672f5c68e168133da'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'3552429b89c75117d6714c266c028ee66cfdd768eb9672419d665de92c4839ef'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8bf9be24a11ed59a3469b322b19c84cdb7e5fc1b1de641c253802e4f6d78928b'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'c248bda6c4ee39e2bafb2f4d8ae0fe58eeef6ddc31cebfc7166a778d862c223a'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'8fd6546e8bf24c405d0a92855c346b83f789f34344942b696438e35606532b66'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f1cbf733e8fcd6cb341433dc2aa5f5257f42f2ae23bfd47857f8e10eadb563a'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'fbf06cc8aacec9ab54a213caeb55a6e0d7016630fdcf9b6818e9dc2fc646d709'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02b89778d8fcf080d067d09847c0707f1bc53e1631cbbb5d6fcaa0d5aa86e77'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'fbb925da42f0d4f7c64e29442c99e9e51aa57031b6bd41422b05ec5dffd593de'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34d0ba5da3624267139babf928deb1f3ed7329bc373ba0c4bd0689f658d13f23'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'ea2282f02f634ece782504b5bb604a997f40077b4eee5b90f38e3d189b48a8ed'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d550656bffdbc24fbeaba8b153c278ae2f624d76ec1f33ec3f43432ba8f33181'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'3dc1775067b68aa5d6fc649ef1af7f9a35d7b3db051e40a01c88ce032574d4e6'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'305da3bfbc1abc58ee9079462269c165d327f9b6935ae86eec88365b9128685b'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'11b724ad6288957a442dd17df42f2eb00ac7eb4128bc046e1a2f0a388349522c'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'270bdf88cd111e36afd8ff30d4dabc023baf3665090bca74887f75671b4f2ffa'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'29ec6690e81e6bbc594237018cc4a72d4c5b6db6f9d0277019f1223a4b00574c'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e26d4bb4bc900b93dc0190df5828a4f035a3df50721e39bae521e02770ea4d'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'9bc671b3fbe3368e2b5e6645b22551492110aa22725e5b041c0ba1ca1d629ad8'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a88dcfe7e53ae6ccf01f93828129a2a37f0a05cc65be7b8ef711acebb032ea63'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'f37aa7c2e3926ad5b86a227eae09d92c1e6188d632bd852e1824937915d69d37'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd3504293046b412c1c0a53157a8542228cf7cbee6f33e8e45dc4356f888bbb6'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'517eac6e36b5a71fd3f3f128e18252751b639d40d8e96804f5e204a3d9cba88a'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681748ffb4c68e1182c2472be54bccf5f0902cf72401fd5b228663b370dda23d'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'5e22a8149df345864b2428238c43af563d71fbf7b482873f47f808cd5fca44a9'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b45098f14089224f4b9ab2031a87802d276f8ab983e52f3a6878ed7bf74bcaba'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'3bb640315bbd7be97819e2d17d11acd06c66d8eaa7bd9850cc9b5de572c8ccee'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38bb437449e8d0fd0456daa6ec647c69d7273bc8460e49a06a801b107f17ef6'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'d36f9c194ea5e391006ecb29856645a3fc5cfe5ffa8296bd08d18489e730f62d'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d9b674846ccd4f7a12266ff5d96ec6acac05e5456b13e4582210c8159614be'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'4ddf6f063adc90b43265acd2403a3570480b7eeb182331f6503d110e7f15f358'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6abdc388e279f73e6f9b7e6bd64158c2875d886bb6545365862627441cf0919d'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'bc809c03c7ef6cad2a617bce70004e4b509a8c07efc17e99553e342c872edab3'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eeee7a3392333b95498f1fd1740e2ac579f107644bea53edd164e22fe3ddca'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'7f95a465688d08bb36f6ca61cffec5ea47298a5b5d958c931dbc10dee34ae6b4'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9481c1065522675ac2cbb4a12c29f63cffb5de735a8561d4c63ece99e6c0e744'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'16d1a9b4d7077ecbb1b23ab3d7e9441f15370890fe58ef6937de8983008b07b5'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cf82d2bcfedfedac9effe35c45fcb8d5210009641546f95a64e757202eb626d'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'213b6c42ca56a784f3acdb55cc50a8f3888976bf3cfcffdc56b6757266bde69c'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a99e309cdd777bfd7b0dbcdcbb93013c8928cf10e3c8aac86244d696dfa7c1'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'ecd1a0cfa57676d9d58b7c3b2c04612456b0a39d6f0c8aa4ebfe5ab399520d68'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e97c71c39fbcd1319cb18280be6b74ba3e22a78b2a3f31b68956a6bffd6c163'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5294797a7851723febbc76243d2fc4ce9080c319966bef8f2ce937190f3ea823'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05df71745a1655303e0ff212cad64c28e76bd1433f0c4af9f867c6d05791d59c'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'b13975a3d267101079dd038875bcb3acacca87d4ac21b3b8e54f8b2e4adac40a'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9938ab64ecc4d162574f15e062676069e994e7784b9ec941f666a0e2632dd7d5'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'4c15486251b2be01f137eb2a34b6e0421f3e0b4f63dae72ce000b3946334291b'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2491a4739f6e967334f6e194c0290436f66446263008b3a90016edd42cf0830'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'15cc20e59f9d7f96c7774a9fa81961613b3a105a1e71fd41f193c94d829f7969'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'982b98aa63d421c5b3afdbd471e7076efd9166d81cb5449d9e69a0512b893f9d'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'bbe47db1421be84a6fe459023ee5e5aa467abc02ebca6a601b4154a127da1194'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0310145c65681353c682b203b117f8250905855b20a960abffb6a3f35365b496'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'5134f39c965743c52dd6652a013b077f382ca0288b36fd1dd3572c65bb0c3f99'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ad525eea308410cd8eaa67e80cb93ef1310b5507e1996d94d88be8ab67eec60'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'f96a87ae6e59f979401517f91f4a446bece4f6ad1930e87c1cb12262d8adf173'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6dd1e77a4be40c3f7ffe8dce191f04cbce5a9f36092a62520223cec0230ec26'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'c389b4188f809f7d35366d00ed99f91c212125ea3a207ae80c4114fb75ec6c78'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'139f80b6b823d65722178f739feb616f9adb27f5e2bc05da65268fe6d03b44a4'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'bf617581dff1968513109c6c0f9132ecd3b55fc4115141f3253d0b1580e13464'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a4a9ef8cef738380f18d366962f130158761ce4237c0bb02b208a601d8d7d38'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'0f0f8f7b51c190f29c37c238390b29e12a42712283d697a195a279614ab0ab50'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9334c2d24384ea206df7fc18ad204f14d6dc84ee796fcc23147bce2dc7627d64'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'4e45dbed85da346e512a1bae0f9d1c5a6d0aa7011d4470caa3a6e8cf609b475d'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'541a0f81a94821d03daddb9c0b65f982fbcfdbbe81e9be074b2f188f4a19b717'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'ea1f34fb4a7ec991d4a7d18e390a15a6151726e6d57dbc16b69db63f8a141438'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2bbae120ac1bfa99c32d3939d6cf10cb0035c7ffa8ca367acb1df6ad6ce30af'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'5761842b1418b13bfab3c58d7dadf368372f86bd4151b8b6aa30e62335d90dbb'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b61b23ab21085162858e61497922b881e69e910f6d8138b876b6c3fdf31babbd'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'b813b87305330b7e338f6d78419e94d6f645f5dffc2e4415671b9b87df8ca591'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfc8dbaab4ba0d0b14ca22da88dfe8ef3c28547462bb4b0ebd6c39778df4701c'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'19642c4665e260e3a6eb35bee9989f3f2a1d253f15090638d97f4513033f5f11'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8d5863932854d27c0629804b003642789cfd48b1606844a36bad5f926c228d4'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'8d95b8dcb42a55a87703f1eefaadf00ee4c0f767bd3222b85353ec36195a46ba'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b44b0885a79fd5027637f7bdbd37d3118774a6814463a59969960b75d138fe7'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'7ff15de7c051a5d249a563ad5569b478d677f2808e8492d62876f640048698c3'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7723c78e28fc8902e52b23991429554555050b90596d599b2d4bb4299fa9c9b'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'b897f9372a4da05fe3cc7817ea3994206755e74446d0836b1117f68057247109'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f39e3b50231f34299b9db8306a540d754eba33f373311900cf29020289d6c642'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'97c4831d277599cb05cb8bb76743e9d18786ae5ac31304bf8389bb9a084d8ba6'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'326d91c693532ea92e93c1647c6a1d28fb4cc7600ea9e035ddddb6393efacbc9'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'134ea049679482d2700ae2c762af99a75747edde8941464ae9f3acf047131bde'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229c9b2ed3fe2e45dd017ca9dd4029d4711891f3d66620ef37bcc8e319290bfd'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'40c881faff08b45d9635c40c6846eed10862a9f35f1a9348ff95ed7d308b04b4'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e17058835dd7c02733b540a162242ea204012fc4e4a9799fb573b4a1060746'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'1799e589fdf41597d83a724bf8c13954e07064138dc3c51702e84f25712e7bd7'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16b67ffd7e42ea9a526a02820f28a16e8e15ad4b1d1134dd66167d2e96d78f1'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'ffe8c5328d1469081a123958b77fc1670c3fb0ba78b33894ea4bd062a12771d1'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a2569f6005b0d0825ff9ad34cff42a30b61033ad30702ed1e5ae7e33aee89a'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'0ac33c97930216c96c8a2b6434953d09f899ab798cb12fde560349187300ecd3'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4775b66404be90e962efb7e45a7a39740b6e7a081775b9e4d0cde5668bb9630f'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'52b82213fc6073cef5ff0ce68f907a86bb3361f649e5cafb865aedbfa2f9e764'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e373ceefcaf190ca98a1e356e8c52829d6f834e22db838c8602329aed1fc2b1'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'e7c5a2f81056ed59b7f514c1a6256cb2d78abc7c7961f04ab784bd9d59ea147a'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f20b4f9b1cade436502ef425bc5250aee9965840f5e1111f1ad74894149e3e0'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'d636aa4cbaa0a913ffa8c9b63a9063458d956d2e3f8d22ce85a65bbae99b0a52'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89adf92b0319a20d12b414cfb50fd34acb12258b7a9fa28d398db6b445ed3697'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'2c0475e90d958b160c4d69ed73402bcdfe53fba54d90a9eef10aeefdfa27c65f'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdecfb2442bcd6c7dada29f20af13cb5b4279cd24cfecfc841ad2cff8d877b9a'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'716a1c547218d205487f3228fe25cadaa41804781912b36ef864dab452c6b385'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0fdabfe03e6d03116ef81834e26a697235a82021f128e96239d15dc2550b82'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'e89771096b466ca3d2557ff3fb7cb4997cce0fa7a3965e04b4b62169a16ed700'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3957d3fffba256e2b8fb18084ffcfa8b0d19a6fe3ae22f431041b4c6487a35e'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'543da5bfe50d579e2ed969d4215d772038e7f42eb75c58b919835c9184325718'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e03c6d6a4028f9fb44466c6bde17e3055ed4fbd23934eac31fa40322f00b7ef'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'58bcbd56ebb5b170a9b5f8500453bca766fe272b4ececd37c41678e61ccfc354'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccea7c078b656323e3335cae52518b15144fab92eed02d9080ac3542e9145874'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'1cd2faf548caecb3ed1d0a27cf99b841424513de629f343daaa772bc5d2062cf'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d98708e7dcdcb55607ab134f8190d89562679a18b09882db23f51630e8eb96ef'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'2a6313bb5deca6a35bdd8b8b256cc64257ff7783a26ac394887444735d2336d6'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff353a546c6c53b4cad0bf5bf220a0b62202958986f2c49f6ba670ad6260fbb1'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'4063fc4e68dd6d16513fceaafbf23d0793bb6066834556b12d664b7b8c1af708'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2876dae858af5a4982820190b06596a2255fc2c5ea2794537f095f3547e8f64'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'5fbf7cbedce8457392fe72ea514fca93f373dbc13c9702b1fed3821ed534f1c3'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43261421b432d2c3ae528cd6655877088599b8620519785b633bf5936995d8aa'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'b16880e10b54dd0f2f719981c2596ced58bf4063c9d2fe06ca8d3f5a3bbeb378'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87290390dcaf700664c8355519f173dbc9dafbc656336632e51c1ba67d6e3947'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'1d63d67c6aab4739310da33b2350e9e2f99f73f7744c37fa867895494a12a500'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e72aa1fe7088c82c936adfeb3b6ae18c2fa70091326c2520dae1f4a7d31ab444'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bb6c94ddacc9ddc305bd92fa9e86492f2baeeb7e338ee4b564213b4d6ad5cf5e'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d8ecfd2c5d2538df2bbbdac6125885b9155d2b4457e61f5be7b8313d8ceb017'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'8a65bfb7eec451e09722d5e3df78f393bd85fb7b8a5db70855d45d351e5c2b49'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4de089849053282aeeb9a397f0431cc8921663fff6086f16ef9696ce7ba962e'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'7da58ad679446bc7ca8ea01c02995f115501b38e5ac3a13aa78f676c0c83d1e9'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9ab4acf537731a8ae4fb021f04e898bc3a1602462a86ff76ba77642d19485f'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'e5f0d33930523b54ba4ffef5d88816e7833a9ef1082c806d97c4012a78f7cd57'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96fea2eb8f886a0db4c16c0163080f91702cc7279862f90997afc1d9adc48875'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'4736384b3d36d482a5a43477b06813d80a5ca91f013eaf6338464d1db1eb6031'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb6ae0755c7ebe2ced5d28f0064702945cc001e244bfdc321af99ebfbe9a5851'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'ea4d3d3d285db21642be8a46d000c0f9b68780d7be2c15a59934213c9a986299'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2907e5825ec2fce47370172a8893a7fbf5821baf62d50510ebfcf705fe61d50'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'a0d9c58d70e7d68aeea696d23933a108164db24e888c94b15a5878e9933bb316'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53973aa8e68dbdc5f3e8f80b0bf5e9fed61e7209ce8fc6a48f16b2d281cb180e'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'1fb5d4ee184f04da658efb21c8d257d94dcc62a91e9fc639fec7af31a5e0db7f'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6738fa455c4b1c2aa35223fde443a51ece71c7e361d403f836efc26ccffa9503'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'60f32977b417204dfe2915d0d0dc39e76a81a1e7d9f342e96812df4a9a92cf76'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c479b21695c099ec240df9c8db1a70a856f17147dd789b54096fd39f0b9dc83'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'1f1ad9abe7f595a7fd055bbc8cb56db305fee989b28cb168fb84478937309ec9'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445f61669d7947659ea24ea88ead2eed1a6ec4ab826d5762c03473e13c05f555'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'aa18da67112d88fd1b06a25ac614c7293a94d0236024f717058bf720593b6976'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0b35b8820c8f792f73eca9b14675291ef52d5f03de7904ffd947de3b8ade3ba'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e35d096172c2d5955d07ac900b67e755163905934f7ba93acef99ecd212b09d4'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8b5ae2b35bb3a8a09f5075e9801d19deb5bdb83de272adf4dcd4ef86af8ba8d'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'b9aa5b3ccf4f8475e9bfe9959bc721eb9f1947d46f205e684e26d8add0e5a10d'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c103d5311491544af16aa4c844598e94df7b9389223c690c4648fa6637cd5c5'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'cdee0aa0fbc06d8f60cfd688986111f9d3e3ea53e2cbf58d699d28085167e39a'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa28590c6c407fa3e5b43adcd65665cd1ec7f87948f0a518066d69aa03034c6'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'ccaa86816e131b91348594f57f26ffbc95b62c18b9ad6ca562fc7335f1afb16f'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2aef97441eba5408a36b945a529f9cbc3946264dad827b01f7da1d4351da24e'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b5da484f340f552dfb64cced02de3b50c5f3e7ddc141c673e2bff8a17939d0ba'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65e9847e048c84044b9167821e963ddfe25a29769262435a770953ff15df9031'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'3933beef3a84436eee5179bf55dfb7471fc4d46a85b5eff7969aa25a5727e4b4'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a44bb2b7008a931c031c19a1fc82a08a9539c0211802f8cc20ffb6053174ee'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'a59493c7d91dbd14145b3abac9243b4aa9845831e3f336f325f68faaaf7f3190'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33342472cd56729de1d1556aad34c7e872c6542fba8f52d59d355279f548d18f'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'b308a6260ca71fedd22768b1a47ae0eb4086610e0ec2a54dd3ab0073bedd60a2'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28b961dab86048b6af3638d10c06201fdcbcf6afd916daea6c60dbae9292ee9c'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'af7dbd5fbffc89aa05fbc0458e29b3d2a022bfd2163996c24097ff69e707cf81'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d671fbda645c6938cdcd9e5d56d000c8a046d8c7a43e576123ed07d453a8df10'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'ff31e694a49a4448c9d9c3f97583bb42b1d497e747eb258001e3d74dd6955276'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'200a1842089b98b40fd57a7d9128ba3ab68f1aa9b0d4f1438799ff66d5b6d8fb'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'d73d18d34ca610e663c38dc80b7d072e91048b9660d7db85e3d624f2459c2a3d'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'993eabb9257dd2d112c750c98eaa69425186bfe3c3efa842929be5f38e88f085'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d399788ba15e76a7e0e2ebf99ff8ce8e71d88fa6445518786b00dca046ae7618'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e62f2b6a6c1528a3ef02a5f6fa6d06c241033c56ca27f74d1aae9156983c1165'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'be0d7bc05a832eae16e6f41b8ac32ef52f09e94cbf372c17b4ada2f3d7b2446b'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eda5034aa623b9149f7c7ebd4122013e6a203f042ce496dd938aa59ee8ec6cab'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'370c20f3349c42120ee231b39039a71bf1820ce164cf8152ef36decc8a8a4617'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'863231fc148004607e1da7b303f280184e89c3d1b9ccc71cdd339959b3be2a4e'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'e943bc9af4a40264f1afbcf70fe6779ec7b6a0f2046449b2a847ddac835a6403'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91cceaae6c08ca86c98abf4d954bdd8f643f8b35f5428d9ab973b1e697c8a6a6'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'a07f1e9ba56ece555b3f29ef35c348d730737e5d96958e5d95999b9905831f6d'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d31a4d715857a35544f6fc3a352f555d3d0ea7daf1855b9b6708ef7f736ec794'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'ea5c3b40e7b5d93e5da5de367e0af56773056545aa60633c6e36800f0dcd96b9'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5d5717fd363f3451b82a9a7f7f643f8bdefad4e79ac67fa3df7053760fda7b6'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ea03ffefcf40e632608984fc2cef37fbcbaf89a2e614cac1ba1f17bf79ce6fec'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cf66eda11e23946f744f9b1a09af8cad2ceb299c46f7e2cc1afd6e1cb1f5a22'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'37ce89772f5808efc68143044d362015314813d3fc684e9625b03a7b87393dd7'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad53dc18cff962a730d7339c35871db071d914e26cf2fbb38db853861ca1c41a'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'2808db9efec5e8530fe031ac849afefc3e99db1419e02dddfe0c190481b05a8b'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14e2318e23eee89e361d1281e9501d360537d17784bcd692f7f0970dc6823ac7'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'5372efd90e6137bf201eb397dc1f11221e253b9e96ffe052a82b7a7284218ca1'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965c7dd11479bb1b496232ac0a1717c36fda46eebb0aa77ff451988bf0c11204'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'9342611f021c747cd2c6f68f1289167c1b51ce3c1678c41fbe51960a0813b0e8'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'353103ecd077c4a1e5f3022a2dd0efe37160af772553351ca3935917737fc06e'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'493109fa8e62034d445b416d39bf6077fb36ccecdd24d15a434df7a7ff909058'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb95ace14d3869214c4434251688283145c45cdeb82ceabdaf17963993f3e44c'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'2c621bd77f539913d38c9ffab5c05822b8cb8c52c9a510ddcddf23fa9c584fd1'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9fd16e884d63116ffe7628e4ee22ef8e70cd338a6db20eea08d4453b350aa7'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'09c5cfb050ea97a0855a1c0c2c6e0f0f516ef037828fc0d66cef654bebbffd0f'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cea766c35d0f5e36261cb714db54b4527d7875b7b0e7a6287971160bed4d6a28'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'d4f3e4697f51f5747d3f73c33aca8fc43af15e8b449b1e2372ac933ea505d860'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'909747d8008563689cbc5c604387c5b683e9b0a4f3a64e190fcad9d6045fd969'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'24a5b25debee05cf6941e88b9ba7d50b9107dc3f71d132d4e2962f213a164b92'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2a96fae7a65fa85108d9750deb87c7a6b640a27d35bb82e86153c6acd31be5'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'0724f578e3a94c582700f65b09d2e857cfc36fb73306a0edb6e51cae340589df'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d6b43d16d755ee78bc94e1330aa57995d4a0b6eb6c12ba26434b483130157ec'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'653fa20b9e1699e7a451e5e1b8061c2a7d3b8262460adbf5b783e43c2a592c83'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09918c6ed105c0d4ad6990f977d976e885ec07e6df035589d865a9f21e4b81db'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'af47ce1241dc92aa231f52003b462125352327a6d56ac994f4c012d4d64b40d2'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f973608672ef63593eee449796c5fbb60d35da9df0d4d9b9c673b40838cdb65'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'013734315591dbe33f60ac8df22148b2371d6b50cc1dd2812ac7ad96fa208dcb'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'071953092251b19378ab4b5c3d8cc92a801083d752e5e91e5a727ce70c24703b'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'5fe024e66b205ef122519ab25abbc271809376555cb0479bd328fce79815eea6'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517c5ec8e4417c74727fbbe780d0ebe410ec3cb24122169c33e834570ae236b5'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'0d24adc409fd1518c4ecd02ed837509f9577d93838b3874d84e8491117d706b7'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5f9f2fc9ef460b1cb9a3879e84ee60f822b0c68db5308c8a9f84e1934bd3511'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'a832d8e01378035069341e07d6ab1ab5decfad3b8ac8d10499906e7f10072111'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a331a01f4df0399584414b72dab6f992b357cce8dcf0e688acd5e088a68a83c'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'4866ae40895021dfae3c073eb2cfed5f266c9782b8485163ae940ed10c39d230'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e775737f252c7932eaec9007a107d3194011bf546b3fb6753f60d918f3466db9'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'502eadea409e3ca0850e696d5b78bd2b88ccdfaca3a0ff18eed799536d337c27'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a37d3a819297967913953070a438581538a259699dfcfb3f22e1471bae892932'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'d83b16a3aa11b5f023f3b43dc1adf83fe1a22f401e57758be3c3d99db6213398'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b335d4ec59683dc42ce2c233524d6c9bdd69b7ec7ce6d981cf9d38ce6368ab22'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'1c80a5e36bb0c1dc9354ba9341a28a32422d2d212a9c6d1f917c60a553eaad9d'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0df766e753f82f5ef9aad93cd39be3c20970aa89e0a48374517e94b95283f6d'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'3df25fdb671877206e171394a2e310a1dd25849b9a3d82f8fd051085642ee5e8'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d1af40dfc9df88bee074bedc42951765560b51845f6a142bc9302304b50ff7'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'de4a780b3503157fb4c8d34bcf1fed856bac97969eefc64d0bddc8743b3b8f43'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f995518c636366fa35deb195b1ad2e5f0e29c722411c6caeb8051022c7d3753'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'1a707c0c15109a7c227038d74d62cc9e8a4461a35e645f3508eb2ba8aa08461d'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e298947bae808453ec73aeb6c3eb345794351a73f7395828520d4c05a78d85'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'b8a283285cd7db83a6f3461dbf0cf7aa311290dd9132568e24fd50ac39e85ab9'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cef71febe3acfc5f2691fc167a63d2c250a6266e6fd8e43e11997540e946f'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'651d433ce5db1b054eb760ac4f57215a5b53109fe39c9771297ba865bf009555'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81261106ad2f7a2b7e89c949bcb1a36f04d4405872ac04f6905293b611a2405e'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'d525120cae059af7feaad95c11e9bb8731de6e4130c7ef49b74b3466cc4fea61'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627278a94eb95c50c32794c72e2965c423261e10af1a6a8efec5004085b63987'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'7c6bf4bc339109a86b66cfa827fca76675eed5f0e5881c1e5fc7b311f2c2cb2f'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e163d9382de1cff5f0f7142f992d1854b8496d63abb5873df9ebb529ff499bec'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'53eba09774ebf6e07459e83408598d0a24d903e8f3ed71cce68406cbda89984f'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c14329fc25d49473ffaeeded8c583cfe2709c6d11d8edc26c5946a3b60d5ffed'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'a647d27d8ccbb484542f309afbefeba198b6b3cc62ea44676ad2b002c961aacd'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92fe554f3f981e577e2ce4a7bd58d9653b0eca53f42018fe17f9306a65392f'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'3f67c00efc0236abf3f24c9011e6e85eadfcb901707f3a36d4d92c80e77e6d7e'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3737,8 +3737,8 @@ INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383 INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0); INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0); INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0); -INSERT INTO sends VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','8cee0dcb5fc541ccff8306d3f0930079773bcb17d8be06a47d659e464cec536d:0','XCP',100,'valid',0,NULL,10); -INSERT INTO sends VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','cae344c4891ba774ed1010ad6ae48e3241423c64913b699064d5d40735edc673:0','DIVISIBLE',1,'valid',0,NULL,10); +INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','XCP',100,'valid',0,NULL,10); +INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,10); -- Triggers and indices on sends CREATE TRIGGER block_update_sends BEFORE UPDATE ON sends BEGIN @@ -3947,8 +3947,8 @@ CREATE TABLE destructions( tag TEXT, status TEXT ); -INSERT INTO destructions VALUES(508,'1eff1a3604f6192ed1ab373d8619cf3e8af5a9fc8a382b1917f74855e4cc4be0',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -INSERT INTO destructions VALUES(509,'0f55bd29ca2cbf6f81c3736518a51efd2504e7d0f044b5a430e598fb2574aca8',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); +INSERT INTO destructions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions BEFORE UPDATE ON destructions BEGIN diff --git a/counterparty-core/counterpartycore/test/parse_block_test.py b/counterparty-core/counterpartycore/test/parse_block_test.py index 4f38d9c36b..288d56565f 100644 --- a/counterparty-core/counterpartycore/test/parse_block_test.py +++ b/counterparty-core/counterpartycore/test/parse_block_test.py @@ -18,9 +18,9 @@ def test_parse_block(server_db): test_outputs = blocks.parse_block(server_db, DP["default_block_index"], 1420914478) outputs = ( - "d8df3ad79b55cb37b404222bf4ba7005107b902b3e5e7738e933c858acbaafde", - "4faefbcea82c4bea47a948e61f544290ad80aae7786afe521c57e0ab007cea5b", - "81fca25af7964eaa8b6f125e32305d383f6b4eb2a86a7d02f33e62ef56dc7265", + "0ba95e2123f1bc43538056308e32b84fe47620535b832b43880b33fee6a952a4", + "37cc718b2f137ebf253df3fda8b687f5d62d7ed14a2e12397792eb0db24f220b", + "c7ab761a931512795fbff5495a87f965fbee2a351052bf1c4a0fb0f6b7c94bad", ) try: assert outputs == test_outputs diff --git a/counterparty-core/counterpartycore/test/unit_test.py b/counterparty-core/counterpartycore/test/unit_test.py index 73b4c61b75..a36f737b7a 100644 --- a/counterparty-core/counterpartycore/test/unit_test.py +++ b/counterparty-core/counterpartycore/test/unit_test.py @@ -44,7 +44,7 @@ def test_vector( conftest.ENABLE_MOCK_PROTOCOL_CHANGES_AT_BLOCK = True conftest.RANDOM_ASSET_INT = 26**12 + 1 - if tx_name in ["fairminter", "fairmint", "utxo"] and method == "parse": + if tx_name in ["fairminter", "fairmint", "utxo", "attach", "detach"] and method == "parse": util_test.insert_transaction(inputs[0], server_db) # insert message as 2nd arg inputs = inputs[:1] + (inputs[0]["data"][1:],) + inputs[1:] diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index 3196005354..4ec3a6cd4b 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -245,7 +245,6 @@ def insert_unconfirmed_raw_transaction(raw_transaction, db): cursor = db.cursor() tx_hash = dummy_tx_hash(raw_transaction) - print("DUMMY TX HASH", tx_hash) # this isn't really correct, but it will do tx_index = list( @@ -833,6 +832,8 @@ def exec_tested_method(tx_name, method, tested_method, inputs, server_db): "versions.enhanced_send", "versions.mpma", "sweep", + "attach", + "detach", ] and method == "unpack" ) From 7511731d806284fbfc9dc48a2cf9971d2630b503 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 11:13:26 +0000 Subject: [PATCH 020/138] Fixes; fix regtest --- apiary.apib | 3761 ++++++++--------- .../counterpartycore/lib/api/compose.py | 4 +- .../counterpartycore/lib/messages/detach.py | 2 +- .../counterpartycore/protocol_changes.json | 12 + .../test/regtest/apidoc/apicache.json | 3419 ++++++++------- .../test/regtest/regtestnode.py | 4 +- .../regtest/scenarios/scenario_18_utxo.py | 2 +- .../test/regtest/scenarios/scenario_7_utxo.py | 27 +- release-notes/release-notes-v10.6.1.md | 1 + 9 files changed, 3620 insertions(+), 3612 deletions(-) diff --git a/apiary.apib b/apiary.apib index 03c64a2784..a9c5da9ad0 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-30 09:27:08.003111. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-31 11:09:38.765657. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", "block_index": 209, - "block_time": 1730280411, + "block_time": 1730372962, "difficulty": 545259519, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c" + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff" }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 660, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", "block_index": 209, - "block_time": 1730280411, + "block_time": 1730372962, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "fee": 0, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 661, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "out_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 668, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 667, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 209, - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "block_time": 1730280411, + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 672, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 676, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "quantity": 1000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "tx_index": 70, - "block_time": 1730280368, + "block_time": 1730372921, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "block_time": 1730280368 + "block_time": 1730372921 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "status": "valid", - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "tx_index": 74, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_time": 1730280393 + "block_time": 1730372948 } ], "next_cursor": 656, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "status": "valid", - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "tx_index": 61, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "block_time": 1730280333 + "block_time": 1730372878 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "tx_index": 42, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "block_time": 1730280161 + "block_time": 1730372719 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730280364 + "block_time": 1730372917 }, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_time": 1730280364 + "block_time": 1730372917 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", "transfer": false, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "tx_index": 69, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_time": 1730280364 + "block_time": 1730372917 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "tx_index": 62, - "block_time": 1730280337, + "block_time": 1730372882, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "block_index": 196, - "block_time": 1730280337 + "block_time": 1730372882 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "open", - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 536, @@ -759,20 +759,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": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "tx0_index": 52, - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx1_index": 55, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,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": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "block_index": 189, - "block_time": 1730280290 + "block_time": 1730372844 } ], "next_cursor": 482, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413" + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 528, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932" + "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10" }, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_time": 1730280286 + "block_time": 1730372841 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "status": "completed" }, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_time": 1730280286 + "block_time": 1730372841 } ], "next_cursor": 461, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "status": "valid", - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "tx_index": 54, - "block_time": 1730280286, + "block_time": 1730372841, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_time": 1730280286 + "block_time": 1730372841 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "tx_index": 59, - "block_time": 1730280315 + "block_time": 1730372869 }, - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "block_index": 193, - "block_time": 1730280315 + "block_time": 1730372869 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "block_time": 1730280398 + "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_time": 1730372952 }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 469, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "block_time": 1730280219 + "order_match_id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_time": 1730372761 }, "tx_hash": null, "block_index": 185, - "block_time": 1730280219 + "block_time": 1730372761 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "satoshirate": 1, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": 0, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "tx_index": 63, - "block_time": 1730280341, + "block_time": 1730372886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 197, - "block_time": 1730280341 + "block_time": 1730372886 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", + "destination": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", "dispense_quantity": 10, - "dispenser_tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", + "dispenser_tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", "tx_index": 31, - "block_time": 1730280100, + "block_time": 1730372679, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", + "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", "block_index": 144, - "block_time": 1730280100 + "block_time": 1730372679 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "tx_index": 25, "value": 66600.0, - "block_time": 1730280065, + "block_time": 1730372656, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "block_time": 1730280065 + "block_time": 1730372656 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "start_block": 0, "status": "open", - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "block_index": 156, - "block_time": 1730280175 + "block_time": 1730372724 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6" + "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da" }, "tx_hash": null, "block_index": 130, - "block_time": 1730280035 + "block_time": 1730372626 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "paid_quantity": 34, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "status": "valid", - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "block_index": 136, - "block_time": 1730280059 + "block_time": 1730372648 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b:0", + "destination": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "status": "valid", - "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", + "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", "tx_index": 66, - "block_time": 1730280351, + "block_time": 1730372898, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", + "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", "block_index": 200, - "block_time": 1730280351 + "block_time": 1730372898 } ], "next_cursor": 327, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", + "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", + "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", "status": "valid", - "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", + "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", "tx_index": 38, - "block_time": 1730280146, + "block_time": 1730372705, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", + "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", "block_index": 151, - "block_time": 1730280146 + "block_time": 1730372705 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "msg_index": 1, "quantity": 2000000000, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", "status": "valid", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 674, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", + "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", "status": "valid", - "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", + "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", "tx_index": 9, - "block_time": 1730279999, + "block_time": 1730372591, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", + "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", "block_index": 121, - "block_time": 1730279999 + "block_time": 1730372591 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "difficulty": 545259519, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "previous_block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "previous_block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", "difficulty": 545259519, - "ledger_hash": "398cb86a881f4ea0e7871fdf4c94a96e3be7a7f5420313f87841c14315220d3a", - "txlist_hash": "34617f8ee34732637535f74a33e63f232639c3a3e663859ca7682d11ad8b68c2", - "messages_hash": "58e982f6ded7ac01ff79d28d1b86919ce99bf789d61d10d1712a7acf2c018c65", + "ledger_hash": "e694b5ceaa98f46299804339ddd76de31b97097ef54118663d814c8c464a2c79", + "txlist_hash": "a544557c0850267a3ee1b712edca6c545c844fd3c6715dbf0682571494680bce", + "messages_hash": "78d117fd91cd0d4aa766e422576dc3d4e74441a3a2ca91c66d66cf300324a4e9", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", - "block_time": 1730280393, - "previous_block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", + "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_time": 1730372948, + "previous_block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", "difficulty": 545259519, - "ledger_hash": "92aa8b958b734e54e961d146c964e3adc252563792a694b97f4df566ea461651", - "txlist_hash": "6a718968ba46e4dfd313aa97c3ac38640564a337bb358ed3b299d3ba4ddefa3a", - "messages_hash": "3856afbd9d4ecf201c0d5c01edc2d5c1c26f2b02c0e91c74f3cfeaf28d5a0455", + "ledger_hash": "9eabdbdb8d08c170d24534f12804db35e8117e5ca3b030fdccfda54259afdce0", + "txlist_hash": "1856356643bbd2e31914fa137298f435690b595300ca3aae84adb85f43d62ea1", + "messages_hash": "4bb0a637432598268ad2ec8428819374864523260e3783677b78a4d06769e5e6", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", - "block_time": 1730280389, - "previous_block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", + "block_time": 1730372944, + "previous_block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", "difficulty": 545259519, - "ledger_hash": "bde6c897559e7916dc9f5a969bd236d5487dd06516c905f841f4261812753795", - "txlist_hash": "16cd141f722190bc24d8fe5bb09d0bf87fe6540ee794064e20ade5f3ad1343ce", - "messages_hash": "d8f5494718d6ef4a69205483e0a2aafcba5416c008f2a9694589a9773c0bdea7", + "ledger_hash": "aaf4fbcf7a3b0486c50a58e65905057dc7811595ef9b23bf02ec111c6e676d0d", + "txlist_hash": "5667df8fbdca65263e8abd987a6b2b1bce10a2a49cf83c79f160a3f2367e10df", + "messages_hash": "2e95505b327ea4d26d95f139f964ee13bb9c1d58c8f1e27137de176fb6fc2329", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", - "block_time": 1730280385, - "previous_block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", + "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_time": 1730372940, + "previous_block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", "difficulty": 545259519, - "ledger_hash": "195eb749c22a8b4c5fe1db2ba54a03e612ff7c6cec598385b12f963900bd9b9b", - "txlist_hash": "4d24a0dbee08f4a6bacbb419f71199e7bda2611ae3d0f7b028df8aacd021c48a", - "messages_hash": "9308d5cc416d2a9008c6c74477509ba388757995ff1067fe41b83d9d0f137447", + "ledger_hash": "447c3573d199e146c7d37c7ee956ff56ff99486380b24877785bbcf155213ea1", + "txlist_hash": "13a802c86f1815eaf079e6645e15af77a619f3c7b6db436259c38db2c235f5d9", + "messages_hash": "35ecdfeac1a13aa451964516b3e0eb6c91a84c4132a2254a88506e70cf9597c5", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "difficulty": 545259519, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0` (str, required) - The index of the block to return + + block_hash: `3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "difficulty": 545259519, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 680, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 679, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" } ], "next_cursor": 677, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 676, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 673, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 209, - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "object_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, "confirmed": true, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "status": "valid", "confirmed": true, - "block_time": 1730280315 + "block_time": 1730372869 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "block_index": 196, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730280337, + "block_time": 1730372882, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "block_hash": "793beb16e9d9bef5f677245366eb7cfc30c52ae8b8f1abe53267423c236ef4ac", - "block_time": 1730280065, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "2970ed9529eb26c10200b04f47fb1e08a90962969e898d60419c877a274fb501", + "block_time": 1730372656, + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69:1", + "utxos_info": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_hash": "2cf98815914378064e9a88a31ea1528dd2bcf0e9776ecb58422c21e45f1fe33d", - "block_time": 1730280286, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "227ab2f1c6ee17f17263219d71e4bd67fd4e3cf3f456f9c711a9b0f08485c7c9", + "block_time": 1730372841, + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "btc_amount": 2000, "fee": 10000, - "data": "0b675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "data": "0b25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "supported": true, - "utxos_info": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776:0", + "utxos_info": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "block_index": 193, - "block_hash": "2e867bf10bc3b17a7454601be722e086ba4fda8947896e09fcc10d6708c5602d", - "block_time": 1730280315, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "273d17317d3a9502ff4b46b48b7d00750a40da989961d16179c27d6a2bfc7c6f", + "block_time": 1730372869, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "data": "46f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "supported": true, - "utxos_info": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b:1", + "utxos_info": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "block_index": 196, - "block_hash": "25649d2f2e2470e2a3a64f9928b579ccda7c33694c42402ba21dc7ce6b06108a", - "block_time": 1730280337, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "block_hash": "2255afa91f7c68293f7b302cd25f743d33facb129769309520bdc8faf5fb2f8a", + "block_time": 1730372882, + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7:1", + "utxos_info": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185:1 bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 197, - "block_hash": "330bf00b99d5896f24ce1a45d3c8ba9d1afd3eaabf45cde2560e2002eb721ded", - "block_time": 1730280341, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "0968e9382fc1a1c33d39fae9af996d7b1496dd48f635c10ae30d12a0647357c6", + "block_time": 1730372886, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611:1", + "utxos_info": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "block_hash": "73eb94bba78e66df0f5e12edbacbc96bd118df9adce773db5eda3853edfb5b7f", - "block_time": 1730280161, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "2cc6e30704759af33c98027d779b8b752bb0925596ba29127986aa22d9e1793c", + "block_time": 1730372719, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff:1", + "utxos_info": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_hash": "25021659925c485e0f4209b4e9f5dda9da1a07760c22b1495abb86e5e86aebf4", - "block_time": 1730280364, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "11362c16bbd4cb118506fb1fa276c2141ed61179209e54ce4633d3f908b129c8", + "block_time": 1730372917, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5:1", + "utxos_info": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "block_hash": "7487290ea1177c5fbb7ff3237edca224033a3d508643c4635c6c5243f8779a54", - "block_time": 1730280368, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "5cbcac4cbc9e6b404291f80527301107900264cd12787a841c2583eabf4b0369", + "block_time": 1730372921, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", + "data": "02000000178d82231300000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", "supported": true, - "utxos_info": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08:1", + "utxos_info": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", - "block_time": 1730280393, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_time": 1730372948, + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46:0", + "utxos_info": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "block_hash": "05f05f3c396846ae90157d04315cc6385a9b53963da5a2f656a25abb4c9dc333", - "block_time": 1730280333, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "block_hash": "573f69d4683632b5a9591e231467ea077fa17e9b6c191629a37fb38a97dacef3", + "block_time": 1730372878, + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480468688a053fb01a934cd35ccb9e6563195a861f4017377656570206d7920617373657473", + "data": "04806a557c3c133028848409f895fd1f2bfaf130049c017377656570206d7920617373657473", "supported": true, - "utxos_info": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a:1", + "utxos_info": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010149c433743b70d46c295524056bc58b2bddec3f3d995738b4ae28a8e3568557380000000000ffffffff020000000000000000356a336673a8ccf2f30a21a4e2063f1e5bce6e8b7a0645c17523d3f71344921dbac365389a0ece832079efe0224d897a4ecc9bf43841f0ca052a010000001600143975935790fecfcd01603f4744e90bda2b7626c20247304402205d3647fb5df1fefe0ec34a6f0fefad338cf680f5fd1f9eacd01b87c214098c2002203f313ad1db0c5630f9543930f08735b4ea4a98017f0f026b025c8ee24e16091c01210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010121e70ff051b5f7f0b6ab2d453ec3c6a643b7cfceece48d361425a05ab80276b40000000000ffffffff020000000000000000356a339ff15f771b17da5432370c2fe147160379b815595219618e435eb4be6b7ebe2ab0bb389832e3eb4212fa80ff2121ea438de313f0ca052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820247304402207812410e7118de06de7e1245b57557eb08a9136c12fea958134cd5ed567dae2f02207e626cef7dbbd37efcdd61f441085ccb80d37113086768fc7b8443b9922d82f801210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3301,7 +3301,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "49c433743b70d46c295524056bc58b2bddec3f3d995738b4ae28a8e356855738", + "hash": "21e70ff051b5f7f0b6ab2d453ec3c6a643b7cfceece48d361425a05ab80276b4", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,20 +3311,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a336673a8ccf2f30a21a4e2063f1e5bce6e8b7a0645c17523d3f71344921dbac365389a0ece832079efe0224d897a4ecc9bf43841" + "script_pub_key": "6a339ff15f771b17da5432370c2fe147160379b815595219618e435eb4be6b7ebe2ab0bb389832e3eb4212fa80ff2121ea438de313" }, { "value": 4999990000, - "script_pub_key": "00143975935790fecfcd01603f4744e90bda2b7626c2" + "script_pub_key": "0014a320dcd943e34b574eafb9cec3aff4f713c7e282" } ], "vtxinwit": [ - "304402205d3647fb5df1fefe0ec34a6f0fefad338cf680f5fd1f9eacd01b87c214098c2002203f313ad1db0c5630f9543930f08735b4ea4a98017f0f026b025c8ee24e16091c01", - "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" + "304402207812410e7118de06de7e1245b57557eb08a9136c12fea958134cd5ed567dae2f02207e626cef7dbbd37efcdd61f441085ccb80d37113086768fc7b8443b9922d82f801", + "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" ], "lock_time": 0, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", - "tx_id": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_id": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" }, "unpacked_data": { "message_type": "order", @@ -3366,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99` (str, required) - Transaction hash + + tx_hash: `4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102` (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. @@ -3377,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b758f533a8ec6ff7c6e5a71b551876ae0aa2eda1bba1b631265bae2614db8b2c", + "hash": "645362566fc33533f7dd49169002450be536eccf3a8fc6ff1bc996eac31671bc", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2efb28a2b2620e58b05c575d2aec93535ebec5093fa20b7c33e953976ff6215d1e8ffc89ca4a335af63ea86685b1ff" + "script_pub_key": "6a2e65f1cdc7328a3156da757980e8625a4b1a7502b4de6c976fbe2215348a209d4825040fa39656fc1324636cb8378c" }, { - "value": 4949932460, - "script_pub_key": "0014468688a053fb01a934cd35ccb9e6563195a861f4" + "value": 4949930546, + "script_pub_key": "00146a557c3c133028848409f895fd1f2bfaf130049c" } ], "vtxinwit": [ - "3044022053bc9b3f60ff03caf112c6170a61f325202d2a2d2b612fb0b93aa1ab2b08457302202058bb4fd5c98c49d7bd7dfe38b6716b78d493207854815a15fea1f55002b1cc01", - "03a887f6e8e7e77d958a74a38419c66046a0a4a78e999b1efabae186a96d83b488" + "30440220667d6950f6813d1716a12e33ec4ef58bb0e1b861bbf9ebc61ccd01d59bf0dc1202201aa80348cbe74604c53bbc145967caa7c1f8354b2a527397582ce01f62cdd82d01", + "02688503f0c14a3aa32e67d330e2abff1caded26f0edabb8345e8f2df6f01c16b6" ], "lock_time": 0, - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", - "tx_id": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99" + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_id": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3480,17 @@ Returns a transaction by its index. { "result": { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction + + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (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. @@ -3521,17 +3521,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3574,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 680, @@ -3588,14 +3588,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3606,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 679, @@ -3617,9 +3617,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3656,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 677, @@ -3666,14 +3666,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "msg_index": 1, "quantity": 2000000000, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", "status": "valid", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3683,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 676, @@ -3698,7 +3698,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction to return + + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -3722,12 +3722,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 680, @@ -3736,14 +3736,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3754,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 679, @@ -3765,9 +3765,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3804,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 677, @@ -3814,14 +3814,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "msg_index": 1, "quantity": 2000000000, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", "status": "valid", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3831,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 676, @@ -3846,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction to return + + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (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 @@ -3865,10 +3865,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3876,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +3889,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3900,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -3922,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction to return + + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (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 @@ -3942,27 +3942,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4021,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4040,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 676, @@ -4052,12 +4052,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4067,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 673, @@ -4079,24 +4079,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": null, @@ -4109,7 +4109,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The hash of the transaction to return + + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `682` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4131,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4150,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 676, @@ -4162,12 +4162,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4177,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 673, @@ -4189,24 +4189,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": null, @@ -4221,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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 @@ -4245,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4266,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4287,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4308,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4329,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4350,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4377,7 +4377,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - Comma separated list of addresses to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4396,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4442,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", - "block_time": 1730280393, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_time": 1730372948, + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46:0", + "utxos_info": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4475,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "block_index": 206, - "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", - "block_time": 1730280389, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", + "block_time": 1730372944, + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699:0", + "utxos_info": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4527,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", - "block_time": 1730280385, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_time": 1730372940, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", + "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4579,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", - "block_time": 1730280372, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", + "block_time": 1730372935, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", + "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4631,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4659,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -4695,11 +4695,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "open", - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4723,24 +4723,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 208, - "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,37 +4750,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "block_time": 1730280398 + "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_time": 1730372952 }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -4790,25 +4790,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "block_index": 208, - "block_time": 1730280398, + "block_time": 1730372952, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4840,13 +4840,13 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 657, - "result_count": 237 + "result_count": 238 } ``` @@ -4855,7 +4855,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7,bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7,bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk` (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 @@ -4871,17 +4871,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "quantity": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, "asset_info": { "divisible": true, @@ -4892,22 +4892,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +4917,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "block_index": 209, - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +4942,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730280415.8124557, + "block_time": 1730372966.5065725, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "destination": "", "fee": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, - "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", + "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +4979,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -4992,7 +4992,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -5012,7 +5012,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5020,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5035,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,14 +5050,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5072,7 +5072,7 @@ Returns the balances of an address "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5080,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5097,7 +5097,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -5110,7 +5110,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5135,7 +5135,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5185,16 +5185,16 @@ Returns the credits of an address "result": [ { "block_index": 208, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,16 +5206,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -5227,16 +5227,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280389, + "block_time": 1730372944, "asset_info": { "divisible": true, "asset_longname": null, @@ -5248,20 +5248,20 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "event": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5269,16 +5269,16 @@ Returns the credits of an address }, { "block_index": 193, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "event": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "asset_info": { "divisible": true, "asset_longname": null, @@ -5290,7 +5290,7 @@ Returns the credits of an address } ], "next_cursor": 59, - "result_count": 19 + "result_count": 20 } ``` @@ -5299,7 +5299,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5338,16 +5338,16 @@ Returns the debits of an address "result": [ { "block_index": 208, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5359,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,20 +5380,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5401,16 +5401,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "divisible": true, "asset_longname": null, @@ -5422,20 +5422,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5443,7 +5443,7 @@ Returns the debits of an address } ], "next_cursor": 62, - "result_count": 28 + "result_count": 29 } ``` @@ -5452,7 +5452,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address of the feed + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5487,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -5506,9 +5506,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", + "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", "block_index": 137, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5516,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280062, + "block_time": 1730372652, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5530,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -5549,14 +5549,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "0856525afa72ec7fd8cdef1decba37519145c2e28542c3c7433383265fcd59a5", + "tx_hash": "4dbaefc8d36d8532ac5a1251625cfbab0083d71528cea66301ec68ce3fbbc9ef", "block_index": 112, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730279969, + "block_time": 1730372559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5571,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -5590,10 +5590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -5614,10 +5614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5625,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5638,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5662,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5673,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "divisible": true, "asset_longname": null, @@ -5686,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5697,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5719,7 +5719,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597` (str, required) - The address to return + + address: `bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa` (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 @@ -5738,10 +5738,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", + "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", "block_index": 151, - "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", - "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", + "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", + "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5749,11 +5749,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280146, + "block_time": 1730372705, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5771,7 +5771,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5791,10 +5791,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5802,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5815,10 +5815,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5826,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5839,10 +5839,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5850,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5863,10 +5863,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +5874,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5887,10 +5887,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +5898,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280368, + "block_time": 1730372921, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5920,7 +5920,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597` (str, required) - The address to return + + address: `bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +5948,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +5977,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +5988,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +5998,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6014,9 +6014,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6025,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6035,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6060,7 +6060,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -6073,9 +6073,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6084,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6094,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6116,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -6136,19 +6136,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", + "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6156,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6171,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6185,19 +6185,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6205,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6220,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6234,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6254,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6269,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6291,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address to return + + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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 @@ -6311,19 +6311,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", + "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6331,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6346,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6360,19 +6360,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6380,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6395,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6409,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6429,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6444,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6466,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -6487,19 +6487,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6507,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6522,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6536,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6556,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6571,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6593,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address to return + + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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` @@ -6614,19 +6614,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6634,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6649,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6663,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6683,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6698,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6720,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7` (str, required) - The address to return + + address: `bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7` (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 @@ -6739,16 +6739,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6762,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6794,14 +6794,14 @@ Returns the issuances of an address "result": [ { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6816,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", + "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6844,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280196, + "block_time": 1730372747, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", + "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +6872,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730280192, + "block_time": 1730372743, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", + "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +6900,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280188, + "block_time": 1730372739, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "177706095b5b147eb09be862d19f1a5fd8414af9a801c547465dd42dc170efbc", + "tx_hash": "6b521808131797a5b8c2267019a8eb6c51a0cbd3b3527b42ba78b02a7ea03ba7", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +6928,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280185, + "block_time": 1730372735, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +6943,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The issuer or owner to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,8 +6966,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -6975,16 +6975,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -6992,16 +6992,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7009,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7026,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730280054, - "last_issuance_block_time": 1730280059, + "first_issuance_block_time": 1730372645, + "last_issuance_block_time": 1730372648, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7043,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730280038, - "last_issuance_block_time": 1730280050, + "first_issuance_block_time": 1730372630, + "last_issuance_block_time": 1730372641, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7058,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The issuer to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -7081,8 +7081,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -7090,16 +7090,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -7107,16 +7107,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7124,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7141,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730280054, - "last_issuance_block_time": 1730280059, + "first_issuance_block_time": 1730372645, + "last_issuance_block_time": 1730372648, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7158,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730280038, - "last_issuance_block_time": 1730280050, + "first_issuance_block_time": 1730372630, + "last_issuance_block_time": 1730372641, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7173,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The owner to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,8 +7196,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -7205,16 +7205,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -7222,16 +7222,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7239,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7256,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730280054, - "last_issuance_block_time": 1730280059, + "first_issuance_block_time": 1730372645, + "last_issuance_block_time": 1730372648, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7273,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730280038, - "last_issuance_block_time": 1730280050, + "first_issuance_block_time": 1730372630, + "last_issuance_block_time": 1730372641, "supply_normalized": "0.00000019" } ], @@ -7288,7 +7288,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7307,17 +7307,17 @@ Returns the transactions of an address "result": [ { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7353,17 +7353,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", - "block_time": 1730280385, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_time": 1730372940, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", + "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7371,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7386,7 +7386,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7405,17 +7405,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", - "block_time": 1730280372, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", + "block_time": 1730372935, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", + "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7423,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7438,7 +7438,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7457,17 +7457,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "block_hash": "7487290ea1177c5fbb7ff3237edca224033a3d508643c4635c6c5243f8779a54", - "block_time": 1730280368, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "5cbcac4cbc9e6b404291f80527301107900264cd12787a841c2583eabf4b0369", + "block_time": 1730372921, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", + "data": "02000000178d82231300000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", "supported": true, - "utxos_info": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08:1", + "utxos_info": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7475,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7491,17 +7491,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_hash": "25021659925c485e0f4209b4e9f5dda9da1a07760c22b1495abb86e5e86aebf4", - "block_time": 1730280364, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "11362c16bbd4cb118506fb1fa276c2141ed61179209e54ce4633d3f908b129c8", + "block_time": 1730372917, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5:1", + "utxos_info": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7535,7 +7535,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -7554,20 +7554,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7592,7 +7592,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7621,9 +7621,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7638,7 +7638,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7664,9 +7664,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7681,7 +7681,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7707,9 +7707,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7724,7 +7724,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7750,9 +7750,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", + "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", "block_index": 194, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7767,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280330, + "block_time": 1730372873, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7793,9 @@ Returns the orders of an address }, { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7810,7 +7810,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,7 +7845,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The source of the fairminter to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +7870,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +7898,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +7907,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +7935,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730280054, + "block_time": 1730372645, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +7947,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "tx_index": 18, "block_index": 131, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +7975,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730280038, + "block_time": 1730372630, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +7987,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "tx_index": 14, "block_index": 130, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8015,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730280035, + "block_time": 1730372626, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8027,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "tx_index": 10, "block_index": 125, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8055,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8077,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address of the mints to return + + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8095,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8119,22 +8119,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", + "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280050, + "block_time": 1730372641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8143,22 +8143,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", + "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", "tx_index": 20, "block_index": 133, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280046, + "block_time": 1730372638, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8167,22 +8167,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", + "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", "tx_index": 19, "block_index": 132, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280043, + "block_time": 1730372633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8191,22 +8191,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "1fff08d43ae2563f0e1c75a68b74a5210aecef167decd19bfea1c7866084655f", + "tx_hash": "0635df74567bc519be99ceb9cfed5d778dcecf6c0a631757d81fb54657ffcc40", "tx_index": 15, "block_index": 127, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280023, + "block_time": 1730372615, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8215,22 +8215,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8249,7 +8249,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address of the mints to return + + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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` @@ -8268,22 +8268,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8304,7 +8304,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0` (str, required) - The utxo to return + + utxo: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8324,8 +8324,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset_info": { "divisible": true, "asset_longname": null, @@ -8338,12 +8338,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8383,8 +8383,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will make the bet - + feed_address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will make the bet + + feed_address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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) @@ -8456,7 +8456,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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) @@ -8516,7 +8516,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8528,7 +8528,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001018ea985dd665e87b13c4436205b98052023cd45f94a3393c2f8dfd4663b256e47000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29499d1cfaa04dc403fe46886db04f2aad65f8f395262f38d16caba5b8fc9c3d0ec036826aead362dd6783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "020000000001018e9790a27a7e684e35c3fca2b87b7d16260d5c4d26eceba390387226f91e5b8200000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29fcb643b1567ba5773f400a234b5ef3f353504fca72348178a4e147bfe95e8bfc0141304dbcd5d0d70b83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8550,8 +8550,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending the payment - + order_match_id: `675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4` (str, required) - The ID of the order match to pay for + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending the payment + + order_match_id: `25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf` (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) @@ -8607,23 +8607,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" }, "name": "btcpay", - "data": "434e5452505254590b675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "data": "434e5452505254590b25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb736f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "020000000001015bd347105bf0a15962aeecccea83557e3f48ad1d23edc7632fbb06991b8a7143000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03b80b0000000000001600143975935790fecfcd01603f4744e90bda2b7626c200000000000000004b6a499a83a2c0a5a541c9d1af973419b95110ed21a63e53b0bec37da11e3680b2da8d6487d7dc2d33462d5f3a65240d8f75e966e90649e753599910bca7acab9489a9f988cbcd1680a14291a99f052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101773cba658e516ae2ff2312d8994161fed0e8740fc7a9859c26148bc2c73d1f0400000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03b80b000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28200000000000000004b6a4969c9b8197a1ed0cd0fcb98f46a47abe54637aa9c392f14f022ae9820e738a5978297b1d754c7a52105e585e9ef0d498d8f102db91618f89839b112f88584173c822688e5e2fffb4bdaa99f052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "status": "valid" } } @@ -8636,7 +8636,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address with the BTC to burn + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -8695,7 +8695,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 1000, "overburn": false }, @@ -8705,7 +8705,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101062e3c2627d5cb01bc729c84d920a8f14b77d0484b47374d146934d8315b5f2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000" + "rawtransaction": "02000000000101915ce649ddf1b7a01cd8198db15f5867b06519002a45973e22447a4a3d25deb100000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000" } } ``` @@ -8715,8 +8715,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d` (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) @@ -8772,21 +8772,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" }, "name": "cancel", - "data": "434e545250525459464dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "data": "434e54525052545946a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "0200000000010166a15b4778eea05fe77880fc2037e528a1594163cb022af2ea04210f2f2ce354000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29466fa949551fba1a1fae86fae1c5ae551723eedbce9cb4eaf0d0ac6d8c35440a1803a6388e107ea4c783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101cf4c5a249a38857b26264ff85abb41f4eff0f8ec74df93d2e40ffa09b4291b7b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29c223e72b281411c64229e9a0558ab8d9b34d968662d71291de2894a918ddbda2a20611d5929ee5fdfa83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "status": "valid" } } @@ -8799,7 +8799,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -8858,7 +8858,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8877,7 +8877,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "0200000000010125f27aa2bcb4c0e084d7ce0b2690e48bddbdac455834c039e1f39cebd4074e6e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000226a20bf4ac73f58f0f8e0e211c00b6f1c345b97012a9b450565cf1eee5db8d815c00693bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "0200000000010103aabe6ec756fb965472f05d0df2ae8c20fc3a7178d43d8383fef9ca898d6be300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000226a20afa7373e359ae8795c5a9dafd138efde689643f12c523bee0cb5d5262daf6a4c93bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8897,7 +8897,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: `bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd` (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) @@ -8962,7 +8962,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8982,11 +8982,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949934500, + "btc_in": 4949939500, "btc_out": 0, - "btc_change": 4949920236, + "btc_change": 4949925236, "btc_fee": 14264, - "rawtransaction": "02000000000101832fab1a682534d9e152054ae0db94f064f2f2f3dffa876027f862e5d5e7f0a501000000160014183cd9edc67caf2c978732ddd9d8044458012d46ffffffff0200000000000000002c6a2a50447de86cb6d52bd5d475ef780080307f1a241217233a8fbcb5d5fc0f8d56d6a8b1be215ea5639c5fe7ecc9092701000000160014183cd9edc67caf2c978732ddd9d8044458012d4602000000000000", + "rawtransaction": "020000000001015a1aa69aef41d782848d368fe9a68b9c911fb351c6b3afc0048330f1a7836f8601000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94affffffff0200000000000000002c6a2a537db7fa02a7337dfb635792921eb0ea1932cfa0076f5989554a2d7e89809ee758f7559b08c98624f67c74dd092701000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94a02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9012,7 +9012,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -9071,14 +9071,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9097,7 +9097,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101f094b788f54160dc223c3caead4174a4ddf7ba3d2e37ae0e567da54e1360b86e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a2116d3a7c348c6a57e7c3800963c37a4db89be15c9006832eb3ad22807454f16727d58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101bed7fba8145554f603f138f8da64c6e19ce6d7e7237889fb0669aaac53c0e81600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a216afb30c03290e5f133b0a0d3d04747d6870e13c811ad372ace5152515b52dbd5ef58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9118,10 +9118,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -9186,10 +9186,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "transfer_destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "lock": false, "reset": false, @@ -9202,7 +9202,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "020000000001017bd5a6e6cedf4a8de8bec9ab1504faa3ddc295ddab3d08ddbee096e9977da0d2000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0322020000000000001600143975935790fecfcd01603f4744e90bda2b7626c20000000000000000236a21f35c4eecaa0c728ee0e113816cadfc984309c9f871bf7b056fe80dc6b6241a51a76bb2052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101a473b31d0f51327a56330b424a425ce5a2b4563e23dbdf5d312cb881e5a06c3b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000236a21b9679dd5ae799cd12838cac996fd1369f5465c1341f07766bf5909fb4f7bfeb5df6bb2052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9231,9 +9231,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av,bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9298,16 +9298,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", 1 ], [ "MPMASSET", - "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", 2 ] ], @@ -9315,26 +9315,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002803975935790fecfcd01603f4744e90bda2b7626c2802941f47986c7001b342b5540421701d38d4dbbee40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a320dcd943e34b574eafb9cec3aff4f713c7e28280f0d974e7adf3a5786359af35f6ec6d133c16f70440000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104f0701669d42c755e18b30aa1dd3da3fe92a38ca7dd0d921cddab03d36743d05e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffbf836b9501e87f3e7de2ab4e2e5657e0d65537a9d4d01d8f8e115047ab0c7a75000000001600143975935790fecfcd01603f4744e90bda2b7626c2fffffffff7a3a10317376723fffa0d5c52f867ece1964558f96819d959f75fdcb8d4182c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffa3d8b4a0925132022ccf1717242288d1bb478945da4696f3797e633cf0f76b1c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03e80300000000000069512102bab3653a92081a36c60f82b3d88606cd3c1a12aa8dc64b90c9db2a024ec9c30321033dbdcfbfa03208b22a32694c4d0a7ae43e80a77e2cd7c124c3c99af0825212d6210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee80300000000000069512102a5b3653a92081a36c6dc82b158bf735e6baeec6540c72baf8e9bc30994e2b5f321031b7f4e96e1c67134ed327278665f3aa6298174f3616c2f64c3c99f13e2dad6f8210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aebcf216a8040000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000000000000", + "rawtransaction": "02000000000104d7609f59f3ccb9f7eaf078efac78d7bf99b690b2ee8c1376e8946a075d6688c300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282fffffffffa170a9e1af4c688d156474cef273454d2e7f8c02b7392a3720a083ba679fa6d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff88639e06782b5da695bd0b5be0c20178214b9137cdca29d3daf90b918fc66d1d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffffe4e7f72a1f1d366ed1c64a9d4caf013808a086dc38c40abaa12721edbf3913f900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03e80300000000000069512103d56b6fa441a6ee2845ade2d6934442699f35935cee110e119018bbbaad1693252102f86957bc094a921bef5bed705c6853143ed13eb7a767bec99a6e36b52725718b210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aee80300000000000069512102ca6b6fa441a6ee28457ee2d413e762b546527017b95fa1a85edf144e5a05546721021aebd64cd03e75b61cfe951305c766e2d2bc2d8bb190ba899a6e335647adb51f210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aebcf216a804000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9350,7 +9350,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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 @@ -9412,7 +9412,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9429,7 +9429,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9443,7 +9443,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001016b4f8d5d5e4706af3ec137c9e4b56060b806a1e9fd868cc94ad78edd5fbe5b2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000356a33c2f3bb08424d829e812dd640c3c5cceb5d42be3713369f0ca336bd493139dff166992ceb320ff50d7bf07f6328c9d9421162fd38b8052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101c64b8963129bab406253885233b40590572d41f329daa740f88a688a5a217f3600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000356a33811ad50f213b536de3415e153fff3bd3ed3979ea6de79da25407d2b58c98fc6f884fa563328340b8dffc23f78f45eec9c16d8c38b8052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9469,8 +9469,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address that will be receiving the asset + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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 @@ -9534,8 +9534,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9551,19 +9551,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", + "data": "434e54525052545902000000000000000100000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001016c9baf15b5cff8a8f53a884f37ee35dabf9df9d9368a33e5d3976cab01807e2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000306a2e2eaadaac60d765f50622e20b4dc164528d6fcdad61f2d66c697bc0c8ee20beeb4e7708a580014ca437a1efa949f85db9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "020000000001015aa3dc4cc3e7ce5c1cad49cdae44d027ffe67fc68bdedf8937d037599a51638d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000306a2e2ca784cf66c5f0762b5b7e444f8f77b4cf916dc6972a47a9cb342f530ffc7774df88f0c1087536bb403ebd7f6e155db9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "quantity_normalized": "0.00001000" } @@ -9577,8 +9577,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be sending - + destination: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending + + destination: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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 @@ -9636,23 +9636,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802941f47986c7001b342b5540421701d38d4dbbee07ffff", + "data": "434e5452505254590480f0d974e7adf3a5786359af35f6ec6d133c16f70407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101789ef5f7018605cde028bd7405f8294af3f8c20e2715747000e824d290d3b264000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a21bc6362a2a9ffd251e048f455579481ba9346520cca4278d5b4a07ceb7b4a36e75c58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "020000000001017804b97c0f2299265f27beaed5207388d7b2c37b7be613667ac53bc3b990cc7500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a2123244a2654ad527c0b5f8a521994790e145e9e38ebdf51e8312ad55bf47816956f58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "flags": 7, "memo": "ffff" } @@ -9666,8 +9666,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: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk` (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` @@ -9724,8 +9724,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "quantity": 1000 }, "name": "dispense", @@ -9734,7 +9734,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "0200000000010146ed71733d9b80c1f3fa2538368424a0559d6cd86588c23bc446fb4d04d39a88030000001600142941f47986c7001b342b5540421701d38d4dbbeeffffffff03e803000000000000160014468688a053fb01a934cd35ccb9e6563195a861f400000000000000000c6a0a0282b0c8aa754d27051e8b250827010000001600142941f47986c7001b342b5540421701d38d4dbbee02000000000000", + "rawtransaction": "0200000000010164759932e0264d9a10273ab79ec83e848f2109b70d0ea62cb9808436fc7f1eed03000000160014f0d974e7adf3a5786359af35f6ec6d133c16f704ffffffff03e8030000000000001600146a557c3c133028848409f895fd1f2bfaf130049c00000000000000000c6a0acab8eaa7a099ce85410d8b25082701000000160014f0d974e7adf3a5786359af35f6ec6d133c16f70402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9751,7 +9751,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be issuing the asset + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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: `` @@ -9840,7 +9840,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9871,7 +9871,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101cd4e0b1f6e52d9fd4e3eb1d9b699a64aad4bd893d39bac63df76fc7f184e388a000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000316a2f14378f53fb75641f8349bd2f53260af876d466ecc8a1411235a28b5c647147240ee532761c236a3e5c06ad5f8a361f23b9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "0200000000010110ccffb8915a9f9f0970833698fffb59ccf3256654a09bda4ea881795665ec5300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000316a2f4e0a0294accf89c8a2643f09f5a8eed524334020bd754280009e9f27c31dfe73efff0fa26a974ee3b2ea381675167e23b9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9910,7 +9910,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: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address that will be minting the asset + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -9969,13 +9969,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9987,7 +9987,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101004e4c29ecfc190dac8de5b0ef636ca860413ae300fa0d84e5852e138da8511f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000166a147376753a3eb63938623d69de6fe5950aca48bca054bf052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101b46f732d0968b584ac1ff925ed0dad312f1a11ed163e783e9777f0d96a13fbc900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000166a1403bfb24ac36a548b7a4b4ca032c7c47d3eb61acc54bf052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10001,15 +10001,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination_vout}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address from which the assets are attached + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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: `4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1` (str, optional) - The utxo to attach the assets to + + destination_vout (str, optional) - The vout of the destination output + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10066,10 +10066,10 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, + "destination_vout": null, "asset_info": { "divisible": true, "asset_longname": null, @@ -10079,16 +10079,16 @@ Composes a transaction to attach assets from an address to UTXO. }, "quantity_normalized": "0.00001000" }, - "name": "utxo", - "data": "434e5452505254596462637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c346466663365396366356133616138373732376536646135623036653436323730343533306163656564363161336631303563633836643934353139653730363a317c5843507c31303030", - "btc_in": 30000000000, - "btc_out": 3000, - "btc_change": 29999918400, - "btc_fee": 78600, - "rawtransaction": "02000000000106af3564cb8ea09212f21b9f6e49375a1d3687e007d2f29b6d119f22421bea810f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffe9f7e13a93079f81d8c8ddd105685291500ec0bf21278eb00bfc292538a9ccbd000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0ceb184edf4ec4437e7ed9ed5cec4a08c8ce7ac1d8ff2b9e376dfaccd99bbe66000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff5b720696f2c9ba6c00b7abdd14aa0aa3fc22564045995c8fbe56f18aabe2786e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff8e73fc9c225a2c1501a755b536a95bd6cecb677a39a5ed1c1a78fcc39a069d5f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff9a2176c9db1ea734a9e9896f5ee17b96727fe9fec3d98036286753e45d4a2aa1000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff04e8030000000000006951210235baf338a7c97717ebd8b6d1e80e5830aa9dc68747d52c25329e988a0e7b025e210323679dc6bfbb1b670ad8c3b964b5fab49fe2f9ab215eee0957197291e1f51cf0210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee8030000000000006951210335baf338a7c97717ebdfb287fb490820aa93c7d008846f323fc6c2cf0e6f42202103646dcb84bee81e301fd6c1e868f5adbed6b7fdaf235cfb4d55192dc3e7a11c79210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee803000000000000695121031fbaf338a7c97717ebd9e382ac40583dcae7a09e0ed169665ef3a0ff380a769b2103525ffcb48add2d007eb5a48d0cc39cdfe5d1cc9f163f9875637d14f7d2902533210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53ae406d22fc060000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000002000002000000000000", + "name": "attach", + "data": "434e545250525459655843507c313030307c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999984603, + "btc_fee": 14851, + "rawtransaction": "02000000000101354aa6b83637f6354b41b371ba10e30b82de4cb320a93e8f515b62cff6ddb6c500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000146a12560b2f20b098a16437c96f5ee8d95b6b4dfedbb5052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "unknown", - "message_type_id": 100, + "message_type_id": 101, "message_data": { "error": "Unknown message type" } @@ -10102,8 +10102,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: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to detach the assets to + + utxo: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to detach the assets to + 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) @@ -10159,21 +10159,19 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "asset": null, - "quantity": null - }, - "name": "utxo", - "data": "434e54525052545964303138373534633562376466303361643761353931383832343138616431653861663963353866333436356632626464636336316333386463383331663538633a307c62637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c7c", - "btc_in": 4950081000, - "btc_out": 3000, - "btc_change": 4950020650, - "btc_fee": 57350, - "rawtransaction": "020000000001048cf531c88dc361ccdd2b5f46f3589cafe8d18a418218597aad03dfb7c554870100000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff1d584177b56185f782adb9d05481c216857008828bb3167e131d12bebae0028b01000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff06e849e024a598d1536daf75ff5953121e5e8d2c5dafef02d8c292a5f5a1871800000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff360bd0ba3e48925f52bb6c43354c1037f8aab68dc31a18134c4875e1a75d65c901000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff04e80300000000000069512102053093adc899e9ecb3361597ae6443b639f4829b67d6c45e589dadf7db48e62621034d0b1cf8e3471205a9707f713f346d0afff091d96f5fb4d1f0c9c2ff36cae5ee2102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512103053093adc899e9ecb331169ef2304eb16ba7d594608ac4115b9ae8e2df00ef4a21034c054bb4e60a000df52d322628797f07a6e4978b6f0da68ef599ceea3397ae352102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512102283093adc899e9ecb3611092a13200fe26c1e0ac03b0f46d39f99a96ee71d7ce210375332eccd27f736198154710590d0e3fc796a2ed596ad2e392ada69c55fcd4302102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653ae2a520b2701000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb302000002000002000002000000000000", + "source": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er" + }, + "name": "detach", + "data": "434e5452505254596662637274317135767364656b327275643934776e34306838387638746c35377566753063357a383534356572", + "btc_in": 4949971000, + "btc_out": 0, + "btc_change": 4949945466, + "btc_fee": 25534, + "rawtransaction": "02000000000102afa9cb0e032aed5f2e61d024f4ba3d214f17fa57a5ee6931cb31abaa7f4f506100000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff4d44d51dae304ab666a719be18d2638f558db08ada59b94b10f43a523c85690001000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff020000000000000000376a3587cf0966c89f9d22ab06aee4eb9ed26801fe64dc903e2b084ef608d61bf82631cc50ac26d4eca739ca814f6e6f9db7d03fe53bd04e7a2c0a2701000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a302000002000000000000", "unpacked_data": { "message_type": "unknown", - "message_type_id": 100, + "message_type_id": 102, "message_data": { "error": "Unknown message type" } @@ -10239,8 +10237,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -10248,16 +10246,16 @@ Returns the valid assets "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", - "owner": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "owner": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "divisible": true, "locked": false, "supply": 100000000000, @@ -10265,16 +10263,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730280348, - "last_issuance_block_time": 1730280348, + "first_issuance_block_time": 1730372894, + "last_issuance_block_time": 1730372894, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -10282,16 +10280,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "owner": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "issuer": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "owner": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "divisible": true, "locked": false, "supply": 100000000000, @@ -10299,16 +10297,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730280182, - "last_issuance_block_time": 1730280182, + "first_issuance_block_time": 1730372730, + "last_issuance_block_time": 1730372730, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -10316,8 +10314,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" } ], @@ -10345,8 +10343,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -10354,8 +10352,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730280004, - "last_issuance_block_time": 1730280017, + "first_issuance_block_time": 1730372595, + "last_issuance_block_time": 1730372608, "supply_normalized": "100.00000000" } } @@ -10386,7 +10384,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10394,14 +10392,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10409,7 +10407,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -10427,7 +10425,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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. @@ -10439,7 +10437,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -10493,9 +10491,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10510,7 +10508,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10536,9 +10534,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10553,7 +10551,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10579,9 +10577,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10596,7 +10594,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10622,9 +10620,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", + "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", "block_index": 194, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10639,7 +10637,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280330, + "block_time": 1730372873, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10665,9 +10663,9 @@ Returns the orders of an asset }, { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10682,7 +10680,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10744,13 +10742,13 @@ Returns the orders of an asset { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10764,7 +10762,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10784,13 +10782,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10804,7 +10802,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10824,13 +10822,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", "tx0_index": 50, - "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 51, - "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10844,7 +10842,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10924,20 +10922,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "event": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -10945,20 +10943,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", + "event": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -10966,20 +10964,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -10987,20 +10985,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "event": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11012,16 +11010,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11081,12 +11079,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -11098,16 +11096,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -11119,16 +11117,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -11140,16 +11138,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280389, + "block_time": 1730372944, "asset_info": { "divisible": true, "asset_longname": null, @@ -11161,16 +11159,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -11250,14 +11248,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", + "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -11272,20 +11270,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -11300,20 +11298,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -11328,20 +11326,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -11356,7 +11354,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730280004, + "block_time": 1730372595, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11390,10 +11388,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11401,7 +11399,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -11414,10 +11412,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11425,7 +11423,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -11438,10 +11436,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "block_index": 206, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11449,7 +11447,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730280389, + "block_time": 1730372944, "asset_info": { "divisible": true, "asset_longname": null, @@ -11462,10 +11460,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11473,7 +11471,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -11486,10 +11484,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11497,7 +11495,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "divisible": true, "asset_longname": null, @@ -11548,9 +11546,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11559,7 +11557,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11569,7 +11567,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -11585,9 +11583,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", + "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", "block_index": 142, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11596,7 +11594,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11606,7 +11604,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280081, + "block_time": 1730372670, "asset_info": { "divisible": true, "asset_longname": null, @@ -11622,9 +11620,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", + "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", "block_index": 150, - "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", + "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11632,10 +11630,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 0, - "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11643,7 +11641,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280143, + "block_time": 1730372701, "asset_info": { "divisible": true, "asset_longname": null, @@ -11659,18 +11657,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11680,7 +11678,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -11705,7 +11703,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - The address to return + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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` @@ -11718,9 +11716,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11729,7 +11727,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11739,7 +11737,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -11789,7 +11787,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11797,7 +11795,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11806,7 +11804,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11814,7 +11812,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11823,7 +11821,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11831,7 +11829,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11840,7 +11838,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11877,27 +11875,27 @@ Returns the dispenses of an asset { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11912,7 +11910,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -11926,27 +11924,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", + "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", "block_index": 147, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11961,7 +11959,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280121, + "block_time": 1730372690, "asset_info": { "divisible": true, "asset_longname": null, @@ -11975,19 +11973,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11995,7 +11993,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12010,7 +12008,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -12024,19 +12022,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12044,7 +12042,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12059,7 +12057,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -12133,10 +12131,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "tx_index": 10, "block_index": 125, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12161,7 +12159,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12201,22 +12199,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", + "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", "tx_index": 13, "block_index": 125, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -12225,22 +12223,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -12249,22 +12247,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -12283,7 +12281,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq` (str, required) - The address of the mints to return + + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (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` @@ -12302,22 +12300,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -12370,9 +12368,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12387,7 +12385,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12413,9 +12411,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "block_index": 188, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12430,7 +12428,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12456,9 +12454,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "block_index": 189, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12473,7 +12471,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12499,9 +12497,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12516,7 +12514,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12542,9 +12540,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", + "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", "block_index": 194, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12559,7 +12557,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280330, + "block_time": 1730372873, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12594,7 +12592,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706` (str, required) - The hash of the transaction that created the order + + order_hash: `a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d` (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. @@ -12606,9 +12604,9 @@ Returns the information of an order { "result": { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12623,7 +12621,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12655,7 +12653,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413` (str, required) - The hash of the transaction that created the order + + order_hash: `25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73` (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 @@ -12682,13 +12680,13 @@ Returns the order matches of an order { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12702,7 +12700,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12722,13 +12720,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12742,7 +12740,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12772,7 +12770,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413` (str, required) - The hash of the transaction that created the order + + order_hash: `25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73` (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 @@ -12791,15 +12789,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "btc_amount": 2000, - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "status": "valid", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "btc_amount_normalized": "0.00002000" } ], @@ -12843,9 +12841,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "block_index": 188, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12863,7 +12861,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730280286, + "block_time": 1730372841, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12889,9 +12887,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "block_index": 189, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12909,7 +12907,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730280290, + "block_time": 1730372844, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12935,9 +12933,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12955,7 +12953,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12981,9 +12979,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13001,7 +12999,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13027,9 +13025,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13047,7 +13045,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13110,13 +13108,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13133,7 +13131,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13153,13 +13151,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13176,7 +13174,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13196,13 +13194,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", "tx0_index": 50, - "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 51, - "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13219,7 +13217,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280219, + "block_time": 1730372761, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13277,13 +13275,13 @@ Returns all the order matches { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13297,7 +13295,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13317,13 +13315,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13337,7 +13335,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13357,13 +13355,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", "tx0_index": 50, - "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 51, - "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13377,7 +13375,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13545,66 +13543,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", + "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", "block_index": 121, - "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", + "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730279999, + "block_time": 1730372591, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "0b1478514977a79b0c7a83efb19c79c80f4410d17978d7a596c14af640211641", + "tx_hash": "15221ed10402f0f12be3d3b41e0a88760bcd0ae85b41049ee37e3478d82693a1", "block_index": 120, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730279996, + "block_time": 1730372587, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5f172e1ffbe2e36ae90817805b9283dede9434d602abc63db47270cecf97a892", + "tx_hash": "325fb0893833128dc0bc8bec0620ecdb5ca8a76a964df89ac40ffa7a278508b9", "block_index": 119, - "source": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05", + "source": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730279993, + "block_time": 1730372584, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "345a49d90706762a3bbde9bd73527af10174277aa1abe8b552d7efdccf0db513", + "tx_hash": "9661048b13de4e4fbc9dbcbcc8a0184ed47a06f7ba07d1c2706b306f35740ded", "block_index": 118, - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730279990, + "block_time": 1730372580, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "023424b7c327b448e64b75c5c93bf556933503a5eb5ad674bee59fb68a3d5284", + "tx_hash": "1b05634e27708285272060b0e392e3612346bcf97218058076dac820a9c62440", "block_index": 117, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730279986, + "block_time": 1730372577, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13649,9 +13647,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13660,7 +13658,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13670,7 +13668,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -13686,9 +13684,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", + "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", "block_index": 142, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13697,7 +13695,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13707,7 +13705,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280081, + "block_time": 1730372670, "asset_info": { "divisible": true, "asset_longname": null, @@ -13723,9 +13721,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", + "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", "block_index": 150, - "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", + "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13733,10 +13731,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 0, - "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13744,7 +13742,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280143, + "block_time": 1730372701, "asset_info": { "divisible": true, "asset_longname": null, @@ -13760,9 +13758,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13771,7 +13769,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13781,11 +13779,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -13797,18 +13795,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13818,7 +13816,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -13843,7 +13841,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92` (str, required) - The hash of the dispenser to return + + dispenser_hash: `bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b` (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. @@ -13855,9 +13853,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13866,7 +13864,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13876,7 +13874,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -13898,7 +13896,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92` (str, required) - The hash of the dispenser to return + + dispenser_hash: `bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b` (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 @@ -13918,19 +13916,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13938,7 +13936,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13953,7 +13951,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -13967,19 +13965,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13987,7 +13985,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14002,7 +14000,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -14044,20 +14042,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -14082,7 +14080,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff` (str, required) - The hash of the dividend to return + + dividend_hash: `0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1` (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. @@ -14094,20 +14092,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -14129,7 +14127,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1` (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 @@ -14152,12 +14150,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "event": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "tx_index": 42, - "utxo": "d3ffca35d1e066c97ab497a5e4d1a8c4e7cda41298206ddac9eca7bd0d7ad2ad:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "651d7b2645372a69bf0e3ad1179b970f52a00eb5a9676270c2c5c275a6887b89:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "divisible": true, "asset_longname": null, @@ -14203,27 +14201,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 680, @@ -14232,14 +14230,14 @@ Returns all events "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14250,9 +14248,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 679, @@ -14261,9 +14259,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -14273,24 +14271,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14300,9 +14298,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 677, @@ -14330,15 +14328,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } } ``` @@ -14416,16 +14414,16 @@ Returns the events filtered by event name "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14435,9 +14433,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 676, @@ -14447,12 +14445,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14462,9 +14460,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 673, @@ -14474,39 +14472,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -14516,24 +14514,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -14543,9 +14541,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_time": 1730280393 + "block_time": 1730372948 } ], "next_cursor": 651, @@ -14601,27 +14599,27 @@ Returns all the dispenses { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14636,7 +14634,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14650,19 +14648,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", + "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14670,7 +14668,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14685,11 +14683,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -14699,27 +14697,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", + "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", "block_index": 147, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14734,7 +14732,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280121, + "block_time": 1730372690, "asset_info": { "divisible": true, "asset_longname": null, @@ -14748,19 +14746,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14768,7 +14766,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14783,7 +14781,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -14797,19 +14795,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14817,7 +14815,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14832,7 +14830,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -14874,10 +14872,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14885,7 +14883,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14898,10 +14896,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14909,11 +14907,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -14922,10 +14920,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14933,7 +14931,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -14946,10 +14944,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14957,11 +14955,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -14970,10 +14968,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14981,11 +14979,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15036,14 +15034,14 @@ Returns all the issuances "result": [ { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -15058,20 +15056,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "26c29628ce5a0038fb490dc72d66e5d1a13bced028d7074e9addd843c3641d15", + "tx_hash": "815d52022fa19c605b511180d4e62f3cebbc844e9ff537616664aa90b0f6a1d2", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", - "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "transfer": false, "callable": false, "call_date": 0, @@ -15086,20 +15084,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280348, + "block_time": 1730372894, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", + "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -15114,20 +15112,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280196, + "block_time": 1730372747, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", + "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -15142,20 +15140,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730280192, + "block_time": 1730372743, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", + "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -15170,7 +15168,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280188, + "block_time": 1730372739, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15185,7 +15183,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5` (str, required) - The hash of the transaction to return + + tx_hash: `de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de` (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. @@ -15197,14 +15195,14 @@ Returns the issuances of a block { "result": { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -15219,7 +15217,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15251,16 +15249,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -15274,7 +15272,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a` (str, required) - The hash of the transaction to return + + tx_hash: `c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb` (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. @@ -15287,16 +15285,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -15330,9 +15328,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15340,14 +15338,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280065, + "block_time": 1730372656, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", + "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", "block_index": 137, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15355,7 +15353,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280062, + "block_time": 1730372652, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15369,7 +15367,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69` (str, required) - The hash of the transaction to return + + tx_hash: `5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e` (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. @@ -15381,9 +15379,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15391,7 +15389,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280065, + "block_time": 1730372656, "fee_fraction_int_normalized": "0.00000000" } } @@ -15428,10 +15426,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15456,7 +15454,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15465,10 +15463,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15493,7 +15491,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730280054, + "block_time": 1730372645, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15505,10 +15503,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "tx_index": 18, "block_index": 131, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15533,7 +15531,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730280038, + "block_time": 1730372630, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15545,10 +15543,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "tx_index": 14, "block_index": 130, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15573,7 +15571,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730280035, + "block_time": 1730372626, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15585,10 +15583,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "tx_index": 10, "block_index": 125, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15613,7 +15611,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15682,22 +15680,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15706,22 +15704,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", + "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280050, + "block_time": 1730372641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15730,22 +15728,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", + "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", "tx_index": 20, "block_index": 133, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280046, + "block_time": 1730372638, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15754,22 +15752,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", + "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", "tx_index": 19, "block_index": 132, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280043, + "block_time": 1730372633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15778,22 +15776,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "38ff72016b2ca16ae13e5a24421d00ae108c87bfb4d708458ecc34a4aa529ecc", + "tx_hash": "98b81b67902ec22793feff63f17f03a1ecc5ff5f01fa793d3e1197e17f3d0ca4", "tx_index": 17, "block_index": 129, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280031, + "block_time": 1730372623, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15812,7 +15810,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48` (str, required) - The hash of the fairmint to return + + tx_hash: `00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15823,22 +15821,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -15856,7 +15854,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5,bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05` (str, required) - The addresses to search for + + addresses: `bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd,bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f` (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. @@ -15870,22 +15868,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 546, "confirmations": 9, - "amount": 49.499345, - "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83", - "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" + "amount": 5.46e-06, + "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62", + "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" }, { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e", - "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" + "amount": 49.499395, + "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a", + "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" }, { "vout": 2, @@ -15893,8 +15891,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced", - "address": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05" + "txid": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3", + "address": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f" } ], "next_cursor": null, @@ -15907,7 +15905,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7` (str, required) - The address to search for + + address: `bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7` (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 @@ -15923,28 +15921,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "3b3debe4cbd52a33fc663bf81ac587415f8e97fd8ed793540d121fd65b6bad10" - }, - { - "tx_hash": "cecd905107c86593aea646828933541f9f84e3ef3e791cb6d2d3a506a03b3f29" + "tx_hash": "1a430881b77813eed0b70a9a2b16c819199eec82b069f29a083c447343e1e709" }, { - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a" + "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e" }, { - "tx_hash": "5c5875eace29b84c50833eeee489b7cb60b942abcfe251f269b4ff65988eea9c" + "tx_hash": "ec8b60a30997a92d5cb544d6a01ac9f102bfbd90e6a5f56beaf1f4ce3f1ef14e" }, { - "tx_hash": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb" + "tx_hash": "82d01d209e938a5870d5cdc36b1f16e06b01c07c63bdea0a35b005192d08c258" }, { - "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd" + "tx_hash": "953b89f32453823d6eba7104ccf8d08952395389017b96d72c832a47937b939e" }, { - "tx_hash": "3e96c423b69232002770982e6d81051d87566aa62470b2f99a7f52470fc7eddf" + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" }, { - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb" } ], "next_cursor": null, @@ -15957,7 +15952,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l` (str, required) - The address to search for. + + address: `bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d` (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. @@ -15970,8 +15965,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "6eb1328d173773610e897e7f1b8c48e48a895f3484db23933f5eacd24876e8ef" + "block_index": 8, + "tx_hash": "616aee910a3c335b90c7614b27ff1ab94bf9fe4402a7fb1e90d5b9017265e795" } } ``` @@ -15981,7 +15976,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5` (str, required) - The address to search for + + address: `bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd` (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 @@ -15997,20 +15992,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 546, "confirmations": 9, - "amount": 49.499345, - "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83" + "amount": 5.46e-06, + "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62" }, { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e" + "amount": 49.499395, + "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a" } ], "next_cursor": null, @@ -16023,7 +16018,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av` (str, required) - Address to get pubkey for. + + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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. @@ -16035,7 +16030,7 @@ Get pubkey for an address. ``` { - "result": "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" + "result": "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" } ``` @@ -16044,7 +16039,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c` (str, required) - The transaction hash + + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (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. @@ -16056,7 +16051,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101edcccdc71284344cd9305f3d3e87d5a74a4f0c266cc1221f3fdd5f4f995c4b430100000000ffffffff03e803000000000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb300000000000000000c6a0ae11c2c4caf70aedbf62ceb140927010000001600147788af5d7ab83c917d033b5012802b3fa7e5584b02473044022064c94a035eb9e92ba5058e032970b5c16759761a5b17fabd6ee51b4d7eae3928022063dcbd95e99c891e44aab012b353684d940c104e42670efbd06da34217185d390121036744fd5ae766411b2fa9fc805037c4a8a5f8f83e3b086dced538ec17832742c900000000" + "result": "02000000000101c399130ec13cd6c2060f384a2ab92c6148fb0eefa4a4f3ffa0a318439b9cadc10100000000ffffffff03e803000000000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a300000000000000000c6a0a39898743a58f2537b621eb1409270100000016001476701feb6d44cfb52c69c0277a7040289bbccb850247304402207af0f255c61e8dcf5bd7388fc9e0168ea1268fd1efa06ccb151f838d9d0b6be802201b2479032f8ce8f34f6d65eec1577352fbfaf3e80572a9998c9f371238aa620b012103354728ec0c9b84cbc2c4ebc877ae9be2833498a3a28821d03b97893ab3f4efc500000000" } ``` @@ -16151,27 +16146,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77 }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "quantity": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, "asset_info": { "divisible": true, @@ -16182,22 +16177,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -16207,22 +16202,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "block_index": 209, - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -16232,30 +16227,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730280415.8124557, + "block_time": 1730372966.5065725, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "destination": "", "fee": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, - "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", + "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -16269,7 +16264,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -16300,19 +16295,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -16322,7 +16317,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -16335,7 +16330,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99` (str, required) - The hash of the transaction to return + + tx_hash: `4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102` (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 @@ -16355,27 +16350,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77 }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "quantity": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, "asset_info": { "divisible": true, @@ -16386,22 +16381,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -16411,22 +16406,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "block_index": 209, - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -16436,30 +16431,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730280415.8124557, + "block_time": 1730372966.5065725, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "destination": "", "fee": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, - "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", + "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -16473,7 +16468,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 9758152a91..e0e8e33693 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -36,6 +36,8 @@ "utxo", "fairminter", "fairmint", + "attach", + "detach", ] COMPOSE_COMMONS_ARGS = { @@ -725,7 +727,7 @@ def compose_movetoutxo( tx_size = (input_count * 148) + (2 * 34) + 10 fee = (D(fee_per_kb) / config.UNIT) * (D(tx_size) / 1024) - dust = D("0.0000546") + dust = D("0.00000546") change = D(total_value) - dust - fee if change < 0: diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index 3a08715100..116b22516b 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -75,7 +75,7 @@ def detach_assets(db, tx, source, destination): if balance["quantity"] == 0: continue # debit asset from source and credit to recipient - action = "detach to utxo" + action = "detach from utxo" ledger.debit( db, source, diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index f65b740147..2ab79f577c 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -618,6 +618,12 @@ "fee_upper_threshold": 15, "base_fee": 1, "fee_sigmoid_k": 1 + }, + "101": { + "fee_lower_threshold": 3, + "fee_upper_threshold": 15, + "base_fee": 1, + "fee_sigmoid_k": 1 } } } @@ -633,6 +639,12 @@ "fee_upper_threshold": 15, "base_fee": 1, "fee_sigmoid_k": 1 + }, + "101": { + "fee_lower_threshold": 3, + "fee_upper_threshold": 15, + "base_fee": 1, + "fee_sigmoid_k": 1 } } } diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index d05181093a..4a0897f38c 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": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "difficulty": 545259519, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "previous_block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "previous_block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", "difficulty": 545259519, - "ledger_hash": "398cb86a881f4ea0e7871fdf4c94a96e3be7a7f5420313f87841c14315220d3a", - "txlist_hash": "34617f8ee34732637535f74a33e63f232639c3a3e663859ca7682d11ad8b68c2", - "messages_hash": "58e982f6ded7ac01ff79d28d1b86919ce99bf789d61d10d1712a7acf2c018c65", + "ledger_hash": "e694b5ceaa98f46299804339ddd76de31b97097ef54118663d814c8c464a2c79", + "txlist_hash": "a544557c0850267a3ee1b712edca6c545c844fd3c6715dbf0682571494680bce", + "messages_hash": "78d117fd91cd0d4aa766e422576dc3d4e74441a3a2ca91c66d66cf300324a4e9", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", - "block_time": 1730280393, - "previous_block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", + "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_time": 1730372948, + "previous_block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", "difficulty": 545259519, - "ledger_hash": "92aa8b958b734e54e961d146c964e3adc252563792a694b97f4df566ea461651", - "txlist_hash": "6a718968ba46e4dfd313aa97c3ac38640564a337bb358ed3b299d3ba4ddefa3a", - "messages_hash": "3856afbd9d4ecf201c0d5c01edc2d5c1c26f2b02c0e91c74f3cfeaf28d5a0455", + "ledger_hash": "9eabdbdb8d08c170d24534f12804db35e8117e5ca3b030fdccfda54259afdce0", + "txlist_hash": "1856356643bbd2e31914fa137298f435690b595300ca3aae84adb85f43d62ea1", + "messages_hash": "4bb0a637432598268ad2ec8428819374864523260e3783677b78a4d06769e5e6", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", - "block_time": 1730280389, - "previous_block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", + "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", + "block_time": 1730372944, + "previous_block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", "difficulty": 545259519, - "ledger_hash": "bde6c897559e7916dc9f5a969bd236d5487dd06516c905f841f4261812753795", - "txlist_hash": "16cd141f722190bc24d8fe5bb09d0bf87fe6540ee794064e20ade5f3ad1343ce", - "messages_hash": "d8f5494718d6ef4a69205483e0a2aafcba5416c008f2a9694589a9773c0bdea7", + "ledger_hash": "aaf4fbcf7a3b0486c50a58e65905057dc7811595ef9b23bf02ec111c6e676d0d", + "txlist_hash": "5667df8fbdca65263e8abd987a6b2b1bce10a2a49cf83c79f160a3f2367e10df", + "messages_hash": "2e95505b327ea4d26d95f139f964ee13bb9c1d58c8f1e27137de176fb6fc2329", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", - "block_time": 1730280385, - "previous_block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", + "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_time": 1730372940, + "previous_block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", "difficulty": 545259519, - "ledger_hash": "195eb749c22a8b4c5fe1db2ba54a03e612ff7c6cec598385b12f963900bd9b9b", - "txlist_hash": "4d24a0dbee08f4a6bacbb419f71199e7bda2611ae3d0f7b028df8aacd021c48a", - "messages_hash": "9308d5cc416d2a9008c6c74477509ba388757995ff1067fe41b83d9d0f137447", + "ledger_hash": "447c3573d199e146c7d37c7ee956ff56ff99486380b24877785bbcf155213ea1", + "txlist_hash": "13a802c86f1815eaf079e6645e15af77a619f3c7b6db436259c38db2c235f5d9", + "messages_hash": "35ecdfeac1a13aa451964516b3e0eb6c91a84c4132a2254a88506e70cf9597c5", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "difficulty": 545259519, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "difficulty": 545259519, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 680, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 679, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" } ], "next_cursor": 677, @@ -256,16 +256,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 676, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" }, { "event_index": 673, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c" + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "object_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, "confirmed": true, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "status": "valid", "confirmed": true, - "block_time": 1730280315 + "block_time": 1730372869 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "block_index": 196, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730280337, + "block_time": 1730372882, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,7 +816,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "49c433743b70d46c295524056bc58b2bddec3f3d995738b4ae28a8e356855738", + "hash": "21e70ff051b5f7f0b6ab2d453ec3c6a643b7cfceece48d361425a05ab80276b4", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a336673a8ccf2f30a21a4e2063f1e5bce6e8b7a0645c17523d3f71344921dbac365389a0ece832079efe0224d897a4ecc9bf43841" + "script_pub_key": "6a339ff15f771b17da5432370c2fe147160379b815595219618e435eb4be6b7ebe2ab0bb389832e3eb4212fa80ff2121ea438de313" }, { "value": 4999990000, - "script_pub_key": "00143975935790fecfcd01603f4744e90bda2b7626c2" + "script_pub_key": "0014a320dcd943e34b574eafb9cec3aff4f713c7e282" } ], "vtxinwit": [ - "304402205d3647fb5df1fefe0ec34a6f0fefad338cf680f5fd1f9eacd01b87c214098c2002203f313ad1db0c5630f9543930f08735b4ea4a98017f0f026b025c8ee24e16091c01", - "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" + "304402207812410e7118de06de7e1245b57557eb08a9136c12fea958134cd5ed567dae2f02207e626cef7dbbd37efcdd61f441085ccb80d37113086768fc7b8443b9922d82f801", + "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" ], "lock_time": 0, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", - "tx_id": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_id": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b758f533a8ec6ff7c6e5a71b551876ae0aa2eda1bba1b631265bae2614db8b2c", + "hash": "645362566fc33533f7dd49169002450be536eccf3a8fc6ff1bc996eac31671bc", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2efb28a2b2620e58b05c575d2aec93535ebec5093fa20b7c33e953976ff6215d1e8ffc89ca4a335af63ea86685b1ff" + "script_pub_key": "6a2e65f1cdc7328a3156da757980e8625a4b1a7502b4de6c976fbe2215348a209d4825040fa39656fc1324636cb8378c" }, { - "value": 4949932460, - "script_pub_key": "0014468688a053fb01a934cd35ccb9e6563195a861f4" + "value": 4949930546, + "script_pub_key": "00146a557c3c133028848409f895fd1f2bfaf130049c" } ], "vtxinwit": [ - "3044022053bc9b3f60ff03caf112c6170a61f325202d2a2d2b612fb0b93aa1ab2b08457302202058bb4fd5c98c49d7bd7dfe38b6716b78d493207854815a15fea1f55002b1cc01", - "03a887f6e8e7e77d958a74a38419c66046a0a4a78e999b1efabae186a96d83b488" + "30440220667d6950f6813d1716a12e33ec4ef58bb0e1b861bbf9ebc61ccd01d59bf0dc1202201aa80348cbe74604c53bbc145967caa7c1f8354b2a527397582ce01f62cdd82d01", + "02688503f0c14a3aa32e67d330e2abff1caded26f0edabb8345e8f2df6f01c16b6" ], "lock_time": 0, - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", - "tx_id": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99" + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_id": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", - "block_time": 1730280411, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_time": 1730372962, + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 680, @@ -1024,14 +1024,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 679, @@ -1053,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 677, @@ -1102,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "msg_index": 1, "quantity": 2000000000, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", "status": "valid", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1119,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 676, @@ -1134,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 680, @@ -1148,14 +1148,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 679, @@ -1177,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 677, @@ -1226,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "msg_index": 1, "quantity": 2000000000, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", "status": "valid", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1243,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 676, @@ -1255,10 +1255,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1279,10 @@ }, { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1310,27 +1310,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1366,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 676, @@ -1397,12 +1397,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1412,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 673, @@ -1424,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": null, @@ -1453,16 +1453,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 676, @@ -1484,12 +1484,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1499,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 673, @@ -1511,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1670,17 +1670,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1716,17 @@ }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_hash": "4fdf7ebc966d4795fa02b625ff5a69c43849fa3d59715f32716fc369e2edf1b1", - "block_time": 1730280393, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_time": 1730372948, + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46:0", + "utxos_info": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1768,17 @@ }, { "tx_index": 73, - "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "block_index": 206, - "block_hash": "0f730bb2e3b7366092a6334a839e977053d390571974e994c8b843e8d2b154da", - "block_time": 1730280389, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", + "block_time": 1730372944, + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803975935790fecfcd01603f4744e90bda2b7626c2806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699:0", + "utxos_info": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1820,17 @@ }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", - "block_time": 1730280385, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_time": 1730372940, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", + "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1872,17 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", - "block_time": 1730280372, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", + "block_time": 1730372935, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", + "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "open", - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 208, - "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "block_time": 1730280398 + "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_time": 1730372952 }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", "block_index": 208, - "block_time": 1730280398, + "block_time": 1730372952, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,28 +2090,28 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 657, - "result_count": 237 + "result_count": 238 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "quantity": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, "asset_info": { "divisible": true, @@ -2122,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "block_index": 209, - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730280415.8124557, + "block_time": 1730372966.5065725, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "destination": "", "fee": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, - "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", + "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -2218,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2256,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2278,7 +2278,7 @@ "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2299,7 +2299,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2321,16 +2321,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2342,16 @@ }, { "block_index": 207, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2363,16 @@ }, { "block_index": 206, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280389, + "block_time": 1730372944, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2384,20 @@ }, { "block_index": 202, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "event": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2405,16 +2405,16 @@ }, { "block_index": 193, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "event": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "asset_info": { "divisible": true, "asset_longname": null, @@ -2426,22 +2426,22 @@ } ], "next_cursor": 59, - "result_count": 19 + "result_count": 20 }, "/v2/addresses/
/debits": { "result": [ { "block_index": 208, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2453,16 @@ }, { "block_index": 205, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2474,20 @@ }, { "block_index": 205, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2495,16 +2495,16 @@ }, { "block_index": 204, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2516,20 @@ }, { "block_index": 204, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2537,7 +2537,7 @@ } ], "next_cursor": 62, - "result_count": 28 + "result_count": 29 }, "/v2/addresses/
/bets": { "result": [], @@ -2548,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", + "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", "block_index": 137, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280062, + "block_time": 1730372652, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "0856525afa72ec7fd8cdef1decba37519145c2e28542c3c7433383265fcd59a5", + "tx_hash": "4dbaefc8d36d8532ac5a1251625cfbab0083d71528cea66301ec68ce3fbbc9ef", "block_index": 112, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730279969, + "block_time": 1730372559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2588,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2612,10 @@ }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2636,10 +2636,10 @@ }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2660,10 +2660,10 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2684,10 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2714,10 +2714,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", + "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", "block_index": 151, - "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", - "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", + "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", + "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2725,11 +2725,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280146, + "block_time": 1730372705, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2744,10 +2744,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2768,10 +2768,10 @@ }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2792,10 +2792,10 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2816,10 +2816,10 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2840,10 +2840,10 @@ }, { "tx_index": 70, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280368, + "block_time": 1730372921, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2875,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2912,9 @@ }, { "tx_index": 63, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -2954,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +2995,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", + "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -3044,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3148,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", + "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -3197,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3508,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3528,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", + "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280196, + "block_time": 1730372747, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", + "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730280192, + "block_time": 1730372743, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", + "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280188, + "block_time": 1730372739, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "177706095b5b147eb09be862d19f1a5fd8414af9a801c547465dd42dc170efbc", + "tx_hash": "6b521808131797a5b8c2267019a8eb6c51a0cbd3b3527b42ba78b02a7ea03ba7", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280185, + "block_time": 1730372735, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3676,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3685,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3702,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730280054, - "last_issuance_block_time": 1730280059, + "first_issuance_block_time": 1730372645, + "last_issuance_block_time": 1730372648, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730280038, - "last_issuance_block_time": 1730280050, + "first_issuance_block_time": 1730372630, + "last_issuance_block_time": 1730372641, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3767,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3776,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3793,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730280054, - "last_issuance_block_time": 1730280059, + "first_issuance_block_time": 1730372645, + "last_issuance_block_time": 1730372648, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730280038, - "last_issuance_block_time": 1730280050, + "first_issuance_block_time": 1730372630, + "last_issuance_block_time": 1730372641, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3858,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3867,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3884,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730280054, - "last_issuance_block_time": 1730280059, + "first_issuance_block_time": 1730372645, + "last_issuance_block_time": 1730372648, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730280038, - "last_issuance_block_time": 1730280050, + "first_issuance_block_time": 1730372630, + "last_issuance_block_time": 1730372641, "supply_normalized": "0.00000019" } ], @@ -3947,17 +3947,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c", - "block_time": 1730280398, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_time": 1730372952, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +3993,17 @@ }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "block_hash": "227ec93cee7d740effcce074e1ec451387c142c0f0a2d457438fecc3a7d05e69", - "block_time": 1730280385, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_time": 1730372940, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2:0", + "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4026,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4045,17 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "block_hash": "2b3086be22c78a1ae95c954571a5ead7f7ece358f4a84afa9f818d92b9a7d66f", - "block_time": 1730280372, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", + "block_time": 1730372935, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802941f47986c7001b342b5540421701d38d4dbbee806b9f7730475fa08b6de11c7fecd35cbbb8596e7180468688a053fb01a934cd35ccb9e6563195a861f488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056:0", + "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4078,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4097,17 @@ }, { "tx_index": 70, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "block_hash": "7487290ea1177c5fbb7ff3237edca224033a3d508643c4635c6c5243f8779a54", - "block_time": 1730280368, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "5cbcac4cbc9e6b404291f80527301107900264cd12787a841c2583eabf4b0369", + "block_time": 1730372921, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", + "data": "02000000178d82231300000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", "supported": true, - "utxos_info": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08:1", + "utxos_info": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4131,17 +4131,17 @@ }, { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_hash": "25021659925c485e0f4209b4e9f5dda9da1a07760c22b1495abb86e5e86aebf4", - "block_time": 1730280364, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "block_hash": "11362c16bbd4cb118506fb1fa276c2141ed61179209e54ce4633d3f908b129c8", + "block_time": 1730372917, + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5:1", + "utxos_info": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4172,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4207,9 +4207,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4224,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4250,9 @@ }, { "tx_index": 52, - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4267,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4293,9 @@ }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4310,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4336,9 @@ }, { "tx_index": 60, - "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", + "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", "block_index": 194, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4353,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280330, + "block_time": 1730372873, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4379,9 @@ }, { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4396,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730280054, + "block_time": 1730372645, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "tx_index": 18, "block_index": 131, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730280038, + "block_time": 1730372630, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "tx_index": 14, "block_index": 130, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730280035, + "block_time": 1730372626, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "tx_index": 10, "block_index": 125, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4654,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", + "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280050, + "block_time": 1730372641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4678,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", + "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", "tx_index": 20, "block_index": 133, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280046, + "block_time": 1730372638, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4702,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", + "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", "tx_index": 19, "block_index": 132, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280043, + "block_time": 1730372633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "1fff08d43ae2563f0e1c75a68b74a5210aecef167decd19bfea1c7866084655f", + "tx_hash": "0635df74567bc519be99ceb9cfed5d778dcecf6c0a631757d81fb54657ffcc40", "tx_index": 15, "block_index": 127, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280023, + "block_time": 1730372615, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4750,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4780,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4812,8 +4812,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4826,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -4847,7 +4847,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4859,7 +4859,7 @@ "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001018ea985dd665e87b13c4436205b98052023cd45f94a3393c2f8dfd4663b256e47000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29499d1cfaa04dc403fe46886db04f2aad65f8f395262f38d16caba5b8fc9c3d0ec036826aead362dd6783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "020000000001018e9790a27a7e684e35c3fca2b87b7d16260d5c4d26eceba390387226f91e5b8200000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29fcb643b1567ba5773f400a234b5ef3f353504fca72348178a4e147bfe95e8bfc0141304dbcd5d0d70b83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4877,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" }, "name": "btcpay", - "data": "434e5452505254590b675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "data": "434e5452505254590b25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb736f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "020000000001015bd347105bf0a15962aeecccea83557e3f48ad1d23edc7632fbb06991b8a7143000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03b80b0000000000001600143975935790fecfcd01603f4744e90bda2b7626c200000000000000004b6a499a83a2c0a5a541c9d1af973419b95110ed21a63e53b0bec37da11e3680b2da8d6487d7dc2d33462d5f3a65240d8f75e966e90649e753599910bca7acab9489a9f988cbcd1680a14291a99f052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101773cba658e516ae2ff2312d8994161fed0e8740fc7a9859c26148bc2c73d1f0400000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03b80b000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28200000000000000004b6a4969c9b8197a1ed0cd0fcb98f46a47abe54637aa9c392f14f022ae9820e738a5978297b1d754c7a52105e585e9ef0d498d8f102db91618f89839b112f88584173c822688e5e2fffb4bdaa99f052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "status": "valid" } } @@ -4902,7 +4902,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 1000, "overburn": false }, @@ -4912,27 +4912,27 @@ "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101062e3c2627d5cb01bc729c84d920a8f14b77d0484b47374d146934d8315b5f2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000" + "rawtransaction": "02000000000101915ce649ddf1b7a01cd8198db15f5867b06519002a45973e22447a4a3d25deb100000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706" + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" }, "name": "cancel", - "data": "434e545250525459464dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "data": "434e54525052545946a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "0200000000010166a15b4778eea05fe77880fc2037e528a1594163cb022af2ea04210f2f2ce354000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0200000000000000002b6a29466fa949551fba1a1fae86fae1c5ae551723eedbce9cb4eaf0d0ac6d8c35440a1803a6388e107ea4c783ba052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101cf4c5a249a38857b26264ff85abb41f4eff0f8ec74df93d2e40ffa09b4291b7b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29c223e72b281411c64229e9a0558ab8d9b34d968662d71291de2894a918ddbda2a20611d5929ee5fdfa83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "status": "valid" } } @@ -4941,7 +4941,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4960,7 +4960,7 @@ "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "0200000000010125f27aa2bcb4c0e084d7ce0b2690e48bddbdac455834c039e1f39cebd4074e6e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000226a20bf4ac73f58f0f8e0e211c00b6f1c345b97012a9b450565cf1eee5db8d815c00693bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "0200000000010103aabe6ec756fb965472f05d0df2ae8c20fc3a7178d43d8383fef9ca898d6be300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000226a20afa7373e359ae8795c5a9dafd138efde689643f12c523bee0cb5d5262daf6a4c93bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +4976,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4996,11 +4996,11 @@ }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949934500, + "btc_in": 4949939500, "btc_out": 0, - "btc_change": 4949920236, + "btc_change": 4949925236, "btc_fee": 14264, - "rawtransaction": "02000000000101832fab1a682534d9e152054ae0db94f064f2f2f3dffa876027f862e5d5e7f0a501000000160014183cd9edc67caf2c978732ddd9d8044458012d46ffffffff0200000000000000002c6a2a50447de86cb6d52bd5d475ef780080307f1a241217233a8fbcb5d5fc0f8d56d6a8b1be215ea5639c5fe7ecc9092701000000160014183cd9edc67caf2c978732ddd9d8044458012d4602000000000000", + "rawtransaction": "020000000001015a1aa69aef41d782848d368fe9a68b9c911fb351c6b3afc0048330f1a7836f8601000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94affffffff0200000000000000002c6a2a537db7fa02a7337dfb635792921eb0ea1932cfa0076f5989554a2d7e89809ee758f7559b08c98624f67c74dd092701000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94a02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5022,14 +5022,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5048,7 +5048,7 @@ "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101f094b788f54160dc223c3caead4174a4ddf7ba3d2e37ae0e567da54e1360b86e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a2116d3a7c348c6a57e7c3800963c37a4db89be15c9006832eb3ad22807454f16727d58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101bed7fba8145554f603f138f8da64c6e19ce6d7e7237889fb0669aaac53c0e81600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a216afb30c03290e5f133b0a0d3d04747d6870e13c811ad372ace5152515b52dbd5ef58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,10 +5065,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "transfer_destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "lock": false, "reset": false, @@ -5081,7 +5081,7 @@ "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "020000000001017bd5a6e6cedf4a8de8bec9ab1504faa3ddc295ddab3d08ddbee096e9977da0d2000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0322020000000000001600143975935790fecfcd01603f4744e90bda2b7626c20000000000000000236a21f35c4eecaa0c728ee0e113816cadfc984309c9f871bf7b056fe80dc6b6241a51a76bb2052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101a473b31d0f51327a56330b424a425ce5a2b4563e23dbdf5d312cb881e5a06c3b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000236a21b9679dd5ae799cd12838cac996fd1369f5465c1341f07766bf5909fb4f7bfeb5df6bb2052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,16 +5106,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", 1 ], [ "MPMASSET", - "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", 2 ] ], @@ -5123,26 +5123,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002803975935790fecfcd01603f4744e90bda2b7626c2802941f47986c7001b342b5540421701d38d4dbbee40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a320dcd943e34b574eafb9cec3aff4f713c7e28280f0d974e7adf3a5786359af35f6ec6d133c16f70440000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104f0701669d42c755e18b30aa1dd3da3fe92a38ca7dd0d921cddab03d36743d05e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffbf836b9501e87f3e7de2ab4e2e5657e0d65537a9d4d01d8f8e115047ab0c7a75000000001600143975935790fecfcd01603f4744e90bda2b7626c2fffffffff7a3a10317376723fffa0d5c52f867ece1964558f96819d959f75fdcb8d4182c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffa3d8b4a0925132022ccf1717242288d1bb478945da4696f3797e633cf0f76b1c000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff03e80300000000000069512102bab3653a92081a36c60f82b3d88606cd3c1a12aa8dc64b90c9db2a024ec9c30321033dbdcfbfa03208b22a32694c4d0a7ae43e80a77e2cd7c124c3c99af0825212d6210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee80300000000000069512102a5b3653a92081a36c6dc82b158bf735e6baeec6540c72baf8e9bc30994e2b5f321031b7f4e96e1c67134ed327278665f3aa6298174f3616c2f64c3c99f13e2dad6f8210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aebcf216a8040000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000000000000", + "rawtransaction": "02000000000104d7609f59f3ccb9f7eaf078efac78d7bf99b690b2ee8c1376e8946a075d6688c300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282fffffffffa170a9e1af4c688d156474cef273454d2e7f8c02b7392a3720a083ba679fa6d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff88639e06782b5da695bd0b5be0c20178214b9137cdca29d3daf90b918fc66d1d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffffe4e7f72a1f1d366ed1c64a9d4caf013808a086dc38c40abaa12721edbf3913f900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03e80300000000000069512103d56b6fa441a6ee2845ade2d6934442699f35935cee110e119018bbbaad1693252102f86957bc094a921bef5bed705c6853143ed13eb7a767bec99a6e36b52725718b210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aee80300000000000069512102ca6b6fa441a6ee28457ee2d413e762b546527017b95fa1a85edf144e5a05546721021aebd64cd03e75b61cfe951305c766e2d2bc2d8bb190ba899a6e335647adb51f210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aebcf216a804000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,7 +5154,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5171,7 +5171,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5185,7 +5185,7 @@ "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001016b4f8d5d5e4706af3ec137c9e4b56060b806a1e9fd868cc94ad78edd5fbe5b2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000356a33c2f3bb08424d829e812dd640c3c5cceb5d42be3713369f0ca336bd493139dff166992ceb320ff50d7bf07f6328c9d9421162fd38b8052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101c64b8963129bab406253885233b40590572d41f329daa740f88a688a5a217f3600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000356a33811ad50f213b536de3415e153fff3bd3ed3979ea6de79da25407d2b58c98fc6f884fa563328340b8dffc23f78f45eec9c16d8c38b8052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,8 +5207,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5224,19 +5224,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802941f47986c7001b342b5540421701d38d4dbbee", + "data": "434e54525052545902000000000000000100000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001016c9baf15b5cff8a8f53a884f37ee35dabf9df9d9368a33e5d3976cab01807e2d000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000306a2e2eaadaac60d765f50622e20b4dc164528d6fcdad61f2d66c697bc0c8ee20beeb4e7708a580014ca437a1efa949f85db9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "020000000001015aa3dc4cc3e7ce5c1cad49cdae44d027ffe67fc68bdedf8937d037599a51638d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000306a2e2ca784cf66c5f0762b5b7e444f8f77b4cf916dc6972a47a9cb342f530ffc7774df88f0c1087536bb403ebd7f6e155db9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5246,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802941f47986c7001b342b5540421701d38d4dbbee07ffff", + "data": "434e5452505254590480f0d974e7adf3a5786359af35f6ec6d133c16f70407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101789ef5f7018605cde028bd7405f8294af3f8c20e2715747000e824d290d3b264000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000236a21bc6362a2a9ffd251e048f455579481ba9346520cca4278d5b4a07ceb7b4a36e75c58bc052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "020000000001017804b97c0f2299265f27beaed5207388d7b2c37b7be613667ac53bc3b990cc7500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a2123244a2654ad527c0b5f8a521994790e145e9e38ebdf51e8312ad55bf47816956f58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "flags": 7, "memo": "ffff" } @@ -5272,8 +5272,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "quantity": 1000 }, "name": "dispense", @@ -5282,7 +5282,7 @@ "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "0200000000010146ed71733d9b80c1f3fa2538368424a0559d6cd86588c23bc446fb4d04d39a88030000001600142941f47986c7001b342b5540421701d38d4dbbeeffffffff03e803000000000000160014468688a053fb01a934cd35ccb9e6563195a861f400000000000000000c6a0a0282b0c8aa754d27051e8b250827010000001600142941f47986c7001b342b5540421701d38d4dbbee02000000000000", + "rawtransaction": "0200000000010164759932e0264d9a10273ab79ec83e848f2109b70d0ea62cb9808436fc7f1eed03000000160014f0d974e7adf3a5786359af35f6ec6d133c16f704ffffffff03e8030000000000001600146a557c3c133028848409f895fd1f2bfaf130049c00000000000000000c6a0acab8eaa7a099ce85410d8b25082701000000160014f0d974e7adf3a5786359af35f6ec6d133c16f70402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5295,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5326,7 +5326,7 @@ "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101cd4e0b1f6e52d9fd4e3eb1d9b699a64aad4bd893d39bac63df76fc7f184e388a000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000316a2f14378f53fb75641f8349bd2f53260af876d466ecc8a1411235a28b5c647147240ee532761c236a3e5c06ad5f8a361f23b9052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "0200000000010110ccffb8915a9f9f0970833698fffb59ccf3256654a09bda4ea881795665ec5300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000316a2f4e0a0294accf89c8a2643f09f5a8eed524334020bd754280009e9f27c31dfe73efff0fa26a974ee3b2ea381675167e23b9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5361,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5379,7 +5379,7 @@ "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101004e4c29ecfc190dac8de5b0ef636ca860413ae300fa0d84e5852e138da8511f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff020000000000000000166a147376753a3eb63938623d69de6fe5950aca48bca054bf052a010000001600143975935790fecfcd01603f4744e90bda2b7626c202000000000000", + "rawtransaction": "02000000000101b46f732d0968b584ac1ff925ed0dad312f1a11ed163e783e9777f0d96a13fbc900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000166a1403bfb24ac36a548b7a4b4ca032c7c47d3eb61acc54bf052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,10 +5394,10 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706:1", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, + "destination_vout": null, "asset_info": { "divisible": true, "asset_longname": null, @@ -5407,16 +5407,16 @@ }, "quantity_normalized": "0.00001000" }, - "name": "utxo", - "data": "434e5452505254596462637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c346466663365396366356133616138373732376536646135623036653436323730343533306163656564363161336631303563633836643934353139653730363a317c5843507c31303030", - "btc_in": 30000000000, - "btc_out": 3000, - "btc_change": 29999918400, - "btc_fee": 78600, - "rawtransaction": "02000000000106af3564cb8ea09212f21b9f6e49375a1d3687e007d2f29b6d119f22421bea810f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffffe9f7e13a93079f81d8c8ddd105685291500ec0bf21278eb00bfc292538a9ccbd000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff0ceb184edf4ec4437e7ed9ed5cec4a08c8ce7ac1d8ff2b9e376dfaccd99bbe66000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff5b720696f2c9ba6c00b7abdd14aa0aa3fc22564045995c8fbe56f18aabe2786e000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff8e73fc9c225a2c1501a755b536a95bd6cecb677a39a5ed1c1a78fcc39a069d5f000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff9a2176c9db1ea734a9e9896f5ee17b96727fe9fec3d98036286753e45d4a2aa1000000001600143975935790fecfcd01603f4744e90bda2b7626c2ffffffff04e8030000000000006951210235baf338a7c97717ebd8b6d1e80e5830aa9dc68747d52c25329e988a0e7b025e210323679dc6bfbb1b670ad8c3b964b5fab49fe2f9ab215eee0957197291e1f51cf0210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee8030000000000006951210335baf338a7c97717ebdfb287fb490820aa93c7d008846f323fc6c2cf0e6f42202103646dcb84bee81e301fd6c1e868f5adbed6b7fdaf235cfb4d55192dc3e7a11c79210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53aee803000000000000695121031fbaf338a7c97717ebd9e382ac40583dcae7a09e0ed169665ef3a0ff380a769b2103525ffcb48add2d007eb5a48d0cc39cdfe5d1cc9f163f9875637d14f7d2902533210356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e53ae406d22fc060000001600143975935790fecfcd01603f4744e90bda2b7626c202000002000002000002000002000002000000000000", + "name": "attach", + "data": "434e545250525459655843507c313030307c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999984603, + "btc_fee": 14851, + "rawtransaction": "02000000000101354aa6b83637f6354b41b371ba10e30b82de4cb320a93e8f515b62cff6ddb6c500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000146a12560b2f20b098a16437c96f5ee8d95b6b4dfedbb5052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", "unpacked_data": { "message_type": "unknown", - "message_type_id": 100, + "message_type_id": 101, "message_data": { "error": "Unknown message type" } @@ -5426,21 +5426,19 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "asset": null, - "quantity": null - }, - "name": "utxo", - "data": "434e54525052545964303138373534633562376466303361643761353931383832343138616431653861663963353866333436356632626464636336316333386463383331663538633a307c62637274317138393665783475736c6d38753671747138617235663667746d67346876666b7a3335343761767c7c", - "btc_in": 4950081000, - "btc_out": 3000, - "btc_change": 4950020650, - "btc_fee": 57350, - "rawtransaction": "020000000001048cf531c88dc361ccdd2b5f46f3589cafe8d18a418218597aad03dfb7c554870100000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff1d584177b56185f782adb9d05481c216857008828bb3167e131d12bebae0028b01000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff06e849e024a598d1536daf75ff5953121e5e8d2c5dafef02d8c292a5f5a1871800000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff360bd0ba3e48925f52bb6c43354c1037f8aab68dc31a18134c4875e1a75d65c901000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb3ffffffff04e80300000000000069512102053093adc899e9ecb3361597ae6443b639f4829b67d6c45e589dadf7db48e62621034d0b1cf8e3471205a9707f713f346d0afff091d96f5fb4d1f0c9c2ff36cae5ee2102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512103053093adc899e9ecb331169ef2304eb16ba7d594608ac4115b9ae8e2df00ef4a21034c054bb4e60a000df52d322628797f07a6e4978b6f0da68ef599ceea3397ae352102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653aee80300000000000069512102283093adc899e9ecb3611092a13200fe26c1e0ac03b0f46d39f99a96ee71d7ce210375332eccd27f736198154710590d0e3fc796a2ed596ad2e392ada69c55fcd4302102e5a077dc2a7ec8242fe7f36fa15b12abd9171033cd386b0597162e02581be28653ae2a520b2701000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb302000002000002000002000000000000", + "source": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er" + }, + "name": "detach", + "data": "434e5452505254596662637274317135767364656b327275643934776e34306838387638746c35377566753063357a383534356572", + "btc_in": 4949971000, + "btc_out": 0, + "btc_change": 4949945466, + "btc_fee": 25534, + "rawtransaction": "02000000000102afa9cb0e032aed5f2e61d024f4ba3d214f17fa57a5ee6931cb31abaa7f4f506100000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff4d44d51dae304ab666a719be18d2638f558db08ada59b94b10f43a523c85690001000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff020000000000000000376a3587cf0966c89f9d22ab06aee4eb9ed26801fe64dc903e2b084ef608d61bf82631cc50ac26d4eca739ca814f6e6f9db7d03fe53bd04e7a2c0a2701000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a302000002000000000000", "unpacked_data": { "message_type": "unknown", - "message_type_id": 100, + "message_type_id": 102, "message_data": { "error": "Unknown message type" } @@ -5453,8 +5451,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -5462,16 +5460,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730280364, - "last_issuance_block_time": 1730280364, + "first_issuance_block_time": 1730372917, + "last_issuance_block_time": 1730372917, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", - "owner": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "owner": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "divisible": true, "locked": false, "supply": 100000000000, @@ -5479,16 +5477,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730280348, - "last_issuance_block_time": 1730280348, + "first_issuance_block_time": 1730372894, + "last_issuance_block_time": 1730372894, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -5496,16 +5494,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730280185, - "last_issuance_block_time": 1730280192, + "first_issuance_block_time": 1730372735, + "last_issuance_block_time": 1730372743, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "owner": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "issuer": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "owner": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "divisible": true, "locked": false, "supply": 100000000000, @@ -5513,16 +5511,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730280182, - "last_issuance_block_time": 1730280182, + "first_issuance_block_time": 1730372730, + "last_issuance_block_time": 1730372730, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 100000000000, @@ -5530,8 +5528,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730280125, - "last_issuance_block_time": 1730280125, + "first_issuance_block_time": 1730372694, + "last_issuance_block_time": 1730372694, "supply_normalized": "1000.00000000" } ], @@ -5543,8 +5541,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "owner": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false, "supply": 10000000000, @@ -5552,15 +5550,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730280004, - "last_issuance_block_time": 1730280017, + "first_issuance_block_time": 1730372595, + "last_issuance_block_time": 1730372608, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5568,14 +5566,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5583,7 +5581,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5596,7 +5594,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5618,9 +5616,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5635,7 +5633,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5661,9 +5659,9 @@ }, { "tx_index": 52, - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5678,7 +5676,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5704,9 +5702,9 @@ }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5721,7 +5719,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5747,9 +5745,9 @@ }, { "tx_index": 60, - "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", + "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", "block_index": 194, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5764,7 +5762,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280330, + "block_time": 1730372873, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5790,9 +5788,9 @@ }, { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5807,7 +5805,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5838,13 +5836,13 @@ "/v2/assets//matches": { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5858,7 +5856,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5878,13 +5876,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5898,7 +5896,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5918,13 +5916,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", "tx0_index": 50, - "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 51, - "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5938,7 +5936,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5965,20 +5963,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "event": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -5986,20 +5984,20 @@ }, { "block_index": 125, - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", + "event": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6007,20 +6005,20 @@ }, { "block_index": 124, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6028,20 +6026,20 @@ }, { "block_index": 124, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "event": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6053,16 +6051,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6080,12 +6078,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -6097,16 +6095,16 @@ }, { "block_index": 208, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -6118,16 +6116,16 @@ }, { "block_index": 207, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6139,16 +6137,16 @@ }, { "block_index": 206, - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280389, + "block_time": 1730372944, "asset_info": { "divisible": true, "asset_longname": null, @@ -6160,16 +6158,16 @@ }, { "block_index": 205, - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -6192,14 +6190,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", + "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6214,20 +6212,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6242,20 +6240,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6270,20 +6268,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -6298,7 +6296,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730280004, + "block_time": 1730372595, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6310,10 +6308,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6321,7 +6319,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,10 +6332,10 @@ }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6345,7 +6343,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6358,10 +6356,10 @@ }, { "tx_index": 73, - "tx_hash": "3141dce98b639bf10614d1de821432f12646d69ea0fe37cd67027362f5972699", + "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", "block_index": 206, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6369,7 +6367,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730280389, + "block_time": 1730372944, "asset_info": { "divisible": true, "asset_longname": null, @@ -6382,10 +6380,10 @@ }, { "tx_index": 72, - "tx_hash": "90abafbb8d108023a6f37ae98be691369e7b1b0f1a6c10ba18337e02b36166d2", + "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", "block_index": 205, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6393,7 +6391,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280385, + "block_time": 1730372940, "asset_info": { "divisible": true, "asset_longname": null, @@ -6406,10 +6404,10 @@ }, { "tx_index": 71, - "tx_hash": "826c7d0e22d498015a5596a2fd72d7a68568a4860d82aea9b4bb1d6cf395b056", + "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", "block_index": 204, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6417,7 +6415,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280372, + "block_time": 1730372935, "asset_info": { "divisible": true, "asset_longname": null, @@ -6436,9 +6434,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6447,7 +6445,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6457,7 +6455,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6473,9 +6471,9 @@ }, { "tx_index": 29, - "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", + "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", "block_index": 142, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6484,7 +6482,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6494,7 +6492,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280081, + "block_time": 1730372670, "asset_info": { "divisible": true, "asset_longname": null, @@ -6510,9 +6508,9 @@ }, { "tx_index": 30, - "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", + "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", "block_index": 150, - "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", + "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6520,10 +6518,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 0, - "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6531,7 +6529,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280143, + "block_time": 1730372701, "asset_info": { "divisible": true, "asset_longname": null, @@ -6547,18 +6545,18 @@ }, { "tx_index": 33, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6568,7 +6566,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -6589,9 +6587,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6600,7 +6598,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6610,7 +6608,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6638,7 +6636,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6646,7 +6644,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6655,7 +6653,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6663,7 +6661,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6672,7 +6670,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6680,7 +6678,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6689,7 +6687,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6704,27 +6702,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6739,7 +6737,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -6753,27 +6751,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", + "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", "block_index": 147, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6788,7 +6786,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280121, + "block_time": 1730372690, "asset_info": { "divisible": true, "asset_longname": null, @@ -6802,19 +6800,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6822,7 +6820,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6837,7 +6835,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -6851,19 +6849,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6871,7 +6869,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6886,7 +6884,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -6909,10 +6907,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "tx_index": 10, "block_index": 125, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6937,7 +6935,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6955,22 +6953,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f05dd2b9f8f8cdd6241b6de2ec2b7d6d9329aa62b38932b8fc37abc31cbde474", + "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", "tx_index": 13, "block_index": 125, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -6979,22 +6977,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd", + "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280013, + "block_time": 1730372604, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7003,22 +7001,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7033,22 +7031,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "05f9f99a2540b4e32415aad9227b04c734d6e78468ceaaeddb11b166aa634eba", + "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", "tx_index": 11, "block_index": 123, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280008, + "block_time": 1730372599, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -7064,9 +7062,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7081,7 +7079,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7107,9 +7105,9 @@ }, { "tx_index": 53, - "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "block_index": 188, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7124,7 +7122,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7150,9 +7148,9 @@ }, { "tx_index": 55, - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "block_index": 189, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7167,7 +7165,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7193,9 +7191,9 @@ }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7210,7 +7208,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7236,9 +7234,9 @@ }, { "tx_index": 60, - "tx_hash": "a010f8218b014f347e3ae601c2d7018bf03538fe46d7ebb322c3b3e0e79ef26b", + "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", "block_index": 194, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7253,7 +7251,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280330, + "block_time": 1730372873, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7284,9 +7282,9 @@ "/v2/orders/": { "result": { "tx_index": 75, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7301,7 +7299,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7329,13 +7327,13 @@ "/v2/orders//matches": { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7349,7 +7347,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7369,13 +7367,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7389,7 +7387,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7416,15 +7414,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "btc_amount": 2000, - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "status": "valid", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "btc_amount_normalized": "0.00002000" } ], @@ -7435,9 +7433,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "block_index": 188, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7455,7 +7453,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730280286, + "block_time": 1730372841, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7481,9 +7479,9 @@ }, { "tx_index": 55, - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "block_index": 189, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7501,7 +7499,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730280290, + "block_time": 1730372844, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7527,9 +7525,9 @@ }, { "tx_index": 50, - "tx_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", + "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", "block_index": 185, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7547,7 +7545,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280219, + "block_time": 1730372761, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7573,9 +7571,9 @@ }, { "tx_index": 52, - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "block_index": 208, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7593,7 +7591,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7619,9 +7617,9 @@ }, { "tx_index": 58, - "tx_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", + "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", "block_index": 193, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7639,7 +7637,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280315, + "block_time": 1730372869, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7670,13 +7668,13 @@ "/v2/orders///matches": { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7693,7 +7691,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7713,13 +7711,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7736,7 +7734,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7756,13 +7754,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", "tx0_index": 50, - "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 51, - "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7779,7 +7777,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730280219, + "block_time": 1730372761, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7805,13 +7803,13 @@ "/v2/order_matches": { "result": [ { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 55, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7825,7 +7823,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,13 +7843,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "tx0_index": 52, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 53, - "tx1_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7865,7 +7863,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730280286, + "block_time": 1730372841, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7885,13 +7883,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", + "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", "tx0_index": 50, - "tx0_hash": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx1_index": 51, - "tx1_hash": "d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7905,7 +7903,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730280219, + "block_time": 1730372761, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7950,66 +7948,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", + "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", "block_index": 121, - "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", + "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730279999, + "block_time": 1730372591, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "0b1478514977a79b0c7a83efb19c79c80f4410d17978d7a596c14af640211641", + "tx_hash": "15221ed10402f0f12be3d3b41e0a88760bcd0ae85b41049ee37e3478d82693a1", "block_index": 120, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730279996, + "block_time": 1730372587, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5f172e1ffbe2e36ae90817805b9283dede9434d602abc63db47270cecf97a892", + "tx_hash": "325fb0893833128dc0bc8bec0620ecdb5ca8a76a964df89ac40ffa7a278508b9", "block_index": 119, - "source": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05", + "source": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730279993, + "block_time": 1730372584, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "345a49d90706762a3bbde9bd73527af10174277aa1abe8b552d7efdccf0db513", + "tx_hash": "9661048b13de4e4fbc9dbcbcc8a0184ed47a06f7ba07d1c2706b306f35740ded", "block_index": 118, - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730279990, + "block_time": 1730372580, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "023424b7c327b448e64b75c5c93bf556933503a5eb5ad674bee59fb68a3d5284", + "tx_hash": "1b05634e27708285272060b0e392e3612346bcf97218058076dac820a9c62440", "block_index": 117, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730279986, + "block_time": 1730372577, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8021,9 +8019,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8032,7 +8030,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8042,7 +8040,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -8058,9 +8056,9 @@ }, { "tx_index": 29, - "tx_hash": "f792830dc1b67b793593a7aa5197ae82fcc2e255da93a939f8d91dc9b399e131", + "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", "block_index": 142, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8069,7 +8067,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8079,7 +8077,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280081, + "block_time": 1730372670, "asset_info": { "divisible": true, "asset_longname": null, @@ -8095,9 +8093,9 @@ }, { "tx_index": 30, - "tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", + "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", "block_index": 150, - "source": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", + "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8105,10 +8103,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "fc67980794328402a9bc230372df6699e69bc8b251af6eac4815b7caaceb1359", - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 0, - "last_status_tx_source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8116,7 +8114,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280143, + "block_time": 1730372701, "asset_info": { "divisible": true, "asset_longname": null, @@ -8132,9 +8130,9 @@ }, { "tx_index": 63, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8143,7 +8141,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8153,11 +8151,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8169,18 +8167,18 @@ }, { "tx_index": 33, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8190,7 +8188,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8211,9 +8209,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8222,7 +8220,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8232,7 +8230,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -8252,19 +8250,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8272,7 +8270,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8287,7 +8285,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -8301,19 +8299,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8321,7 +8319,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8336,7 +8334,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -8355,20 +8353,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8389,20 +8387,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8425,12 +8423,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "event": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "tx_index": 42, - "utxo": "d3ffca35d1e066c97ab497a5e4d1a8c4e7cda41298206ddac9eca7bd0d7ad2ad:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "utxo": "651d7b2645372a69bf0e3ad1179b970f52a00eb5a9676270c2c5c275a6887b89:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "confirmed": true, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "divisible": true, "asset_longname": null, @@ -8451,27 +8449,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 680, @@ -8480,14 +8478,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8498,9 +8496,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 679, @@ -8509,9 +8507,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -8521,24 +8519,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8548,9 +8546,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 677, @@ -8562,15 +8560,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } }, "/v2/events/counts": { @@ -8605,16 +8603,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8624,9 +8622,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 676, @@ -8636,12 +8634,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8651,9 +8649,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 673, @@ -8663,39 +8661,39 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", - "utxo_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "block_time": 1730280411, + "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730280398, + "block_time": 1730372952, "asset_info": { "divisible": true, "asset_longname": null, @@ -8705,24 +8703,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -8732,9 +8730,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_time": 1730280393 + "block_time": 1730372948 } ], "next_cursor": 651, @@ -8751,27 +8749,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8786,7 +8784,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8800,19 +8798,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "a7573b4a866f975c8c8b5c9744c7a6881417e96641b62beac4ff1d39ad5c07cc", + "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8820,7 +8818,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8835,11 +8833,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280345, + "block_time": 1730372890, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -8849,27 +8847,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1887a1f5a592c2d802efaf5d2c8d5e1e125359ff75af6d53d198a524e049e806", + "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", "block_index": 147, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "destination": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "last_status_tx_hash": null, - "origin": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8884,7 +8882,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730280121, + "block_time": 1730372690, "asset_info": { "divisible": true, "asset_longname": null, @@ -8898,19 +8896,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "23031884742874e8180d4d5422c36e687aad30692cc6315e32f9af3740592ed8", + "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8918,7 +8916,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8933,7 +8931,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280077, + "block_time": 1730372667, "asset_info": { "divisible": true, "asset_longname": null, @@ -8947,19 +8945,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "c4ff8c8a58be3e9b0f690b6ea73a5ee1b13dd551448f0f082ded1980fa99b668", + "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", "block_index": 140, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c4165ac80fb256fd02cd72bddf0ec80fcb089c85964f55dd6d33cc69e1803d92", + "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8967,7 +8965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8982,7 +8980,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730280074, + "block_time": 1730372663, "asset_info": { "divisible": true, "asset_longname": null, @@ -9001,10 +8999,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9012,7 +9010,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -9025,10 +9023,10 @@ }, { "tx_index": 76, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9036,11 +9034,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9049,10 +9047,10 @@ }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9060,7 +9058,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -9073,10 +9071,10 @@ }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9084,11 +9082,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9097,10 +9095,10 @@ }, { "tx_index": 74, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9108,11 +9106,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9127,14 +9125,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -9149,20 +9147,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "26c29628ce5a0038fb490dc72d66e5d1a13bced028d7074e9addd843c3641d15", + "tx_hash": "815d52022fa19c605b511180d4e62f3cebbc844e9ff537616664aa90b0f6a1d2", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", - "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "transfer": false, "callable": false, "call_date": 0, @@ -9177,20 +9175,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280348, + "block_time": 1730372894, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c6cb4cb48615df50b4b13abc7e28e77162749a8ae294b2951c413060e58f103d", + "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -9205,20 +9203,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280196, + "block_time": 1730372747, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d962378cd3144a9677d05fd46a24432828bb1bbc1a3345cfae67cb6f58160a7e", + "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -9233,20 +9231,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730280192, + "block_time": 1730372743, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c54513757a5e56b00c30c006a13ec753d1dc35f6b54d191633be173c35eeec45", + "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -9261,7 +9259,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280188, + "block_time": 1730372739, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9272,14 +9270,14 @@ "/v2/issuances/": { "result": { "tx_index": 69, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "transfer": false, "callable": false, "call_date": 0, @@ -9294,7 +9292,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9303,16 +9301,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -9323,16 +9321,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" } ], @@ -9343,9 +9341,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9353,14 +9351,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280065, + "block_time": 1730372656, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "fd59cc3e770d1eac7fa28ee1e95e6cf4e65bdd853416e2f7cf99342ba1e33a2e", + "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", "block_index": 137, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9368,7 +9366,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280062, + "block_time": 1730372652, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9378,9 +9376,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9388,17 +9386,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730280065, + "block_time": 1730372656, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, "block_index": 156, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9423,7 +9421,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9432,10 +9430,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "tx_index": 22, "block_index": 135, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9460,7 +9458,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730280054, + "block_time": 1730372645, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9472,10 +9470,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "tx_index": 18, "block_index": 131, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9500,7 +9498,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730280038, + "block_time": 1730372630, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9512,10 +9510,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "tx_index": 14, "block_index": 130, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9540,7 +9538,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730280035, + "block_time": 1730372626, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9552,10 +9550,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7860b282bdfe2e933f7f802995cb6fd0484808be404b0727ec12dbe814a876c9", + "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", "tx_index": 10, "block_index": 125, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9580,7 +9578,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730280017, + "block_time": 1730372608, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9598,22 +9596,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9622,22 +9620,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "7b9d375f6630eac5ea0e6e0111d19eeb3a995392a517598587d28602fe23e039", + "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", "tx_index": 21, "block_index": 134, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280050, + "block_time": 1730372641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9646,22 +9644,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "a201b91f1679c03ce61a8d16c3c0be8b89e2a103f8a6bf57905208241652d893", + "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", "tx_index": 20, "block_index": 133, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280046, + "block_time": 1730372638, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9670,22 +9668,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5ccd585ef46b2205137abccab8315990dc1769afec8af917afdf6a6ef986fa44", + "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", "tx_index": 19, "block_index": 132, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "a1016bcfc0b526368ba14b154ffe7532178270477e55f2fe3885e0e2dc3640ce", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280043, + "block_time": 1730372633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9694,22 +9692,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "38ff72016b2ca16ae13e5a24421d00ae108c87bfb4d708458ecc34a4aa529ecc", + "tx_hash": "98b81b67902ec22793feff63f17f03a1ecc5ff5f01fa793d3e1197e17f3d0ca4", "tx_index": 17, "block_index": 129, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "fairminter_tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280031, + "block_time": 1730372623, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9723,22 +9721,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, "block_index": 136, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -9750,22 +9748,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 546, "confirmations": 9, - "amount": 49.499345, - "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83", - "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" + "amount": 5.46e-06, + "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62", + "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" }, { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e", - "address": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5" + "amount": 49.499395, + "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a", + "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" }, { "vout": 2, @@ -9773,8 +9771,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced", - "address": "bcrt1qu4dgemw452q53krpe4m9xzm5klkrp5lvrd6m05" + "txid": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3", + "address": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f" } ], "next_cursor": null, @@ -9783,28 +9781,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "3b3debe4cbd52a33fc663bf81ac587415f8e97fd8ed793540d121fd65b6bad10" - }, - { - "tx_hash": "cecd905107c86593aea646828933541f9f84e3ef3e791cb6d2d3a506a03b3f29" + "tx_hash": "1a430881b77813eed0b70a9a2b16c819199eec82b069f29a083c447343e1e709" }, { - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a" + "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e" }, { - "tx_hash": "5c5875eace29b84c50833eeee489b7cb60b942abcfe251f269b4ff65988eea9c" + "tx_hash": "ec8b60a30997a92d5cb544d6a01ac9f102bfbd90e6a5f56beaf1f4ce3f1ef14e" }, { - "tx_hash": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb" + "tx_hash": "82d01d209e938a5870d5cdc36b1f16e06b01c07c63bdea0a35b005192d08c258" }, { - "tx_hash": "0af5327f6622f578c3f92cf8ab65a8dd434a5c70c009073f2d6b14cdcc00d9cd" + "tx_hash": "953b89f32453823d6eba7104ccf8d08952395389017b96d72c832a47937b939e" }, { - "tx_hash": "3e96c423b69232002770982e6d81051d87566aa62470b2f99a7f52470fc7eddf" + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" }, { - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4" + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb" } ], "next_cursor": null, @@ -9812,37 +9807,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "6eb1328d173773610e897e7f1b8c48e48a895f3484db23933f5eacd24876e8ef" + "block_index": 8, + "tx_hash": "616aee910a3c335b90c7614b27ff1ab94bf9fe4402a7fb1e90d5b9017265e795" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949934500, + "value": 546, "confirmations": 9, - "amount": 49.499345, - "txid": "a5f0e7d5e562f8276087fadff3f2f264f094dbe04a0552e1d93425681aab2f83" + "amount": 5.46e-06, + "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62" }, { - "vout": 0, + "vout": 1, "height": 201, - "value": 5460, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "99aaaab408393837635b74bdec5c20ec32afa8721545a08e341a90691f03986e" + "amount": 49.499395, + "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0356c45fd4edb3860c5d3b07a4c6a57fb62068b5e313e530f2f7f9828855a21b6e" + "result": "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101edcccdc71284344cd9305f3d3e87d5a74a4f0c266cc1221f3fdd5f4f995c4b430100000000ffffffff03e803000000000000160014010fd60e1d185927b9155ec299d2d1836cdeeeb300000000000000000c6a0ae11c2c4caf70aedbf62ceb140927010000001600147788af5d7ab83c917d033b5012802b3fa7e5584b02473044022064c94a035eb9e92ba5058e032970b5c16759761a5b17fabd6ee51b4d7eae3928022063dcbd95e99c891e44aab012b353684d940c104e42670efbd06da34217185d390121036744fd5ae766411b2fa9fc805037c4a8a5f8f83e3b086dced538ec17832742c900000000" + "result": "02000000000101c399130ec13cd6c2060f384a2ab92c6148fb0eefa4a4f3ffa0a318439b9cadc10100000000ffffffff03e803000000000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a300000000000000000c6a0a39898743a58f2537b621eb1409270100000016001476701feb6d44cfb52c69c0277a7040289bbccb850247304402207af0f255c61e8dcf5bd7388fc9e0168ea1268fd1efa06ccb151f838d9d0b6be802201b2479032f8ce8f34f6d65eec1577352fbfaf3e80572a9998c9f371238aa620b012103354728ec0c9b84cbc2c4ebc877ae9be2833498a3a28821d03b97893ab3f4efc500000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58701 @@ -9865,27 +9860,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77 }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "quantity": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, "asset_info": { "divisible": true, @@ -9896,22 +9891,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -9921,22 +9916,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "block_index": 209, - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -9946,30 +9941,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730280415.8124557, + "block_time": 1730372966.5065725, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "destination": "", "fee": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, - "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", + "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -9983,7 +9978,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -9992,19 +9987,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -10014,7 +10009,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -10023,27 +10018,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77 }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "quantity": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, "asset_info": { "divisible": true, @@ -10054,22 +10049,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "CREDIT", "params": { - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -10079,22 +10074,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "asset": "XCP", "block_index": 209, - "event": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -10104,30 +10099,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 }, { - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730280415.8124557, + "block_time": 1730372966.5065725, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b9f7730475fa08b6de11c7fecd35cbbb8596e71", + "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", "destination": "", "fee": 10000, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", - "tx_hash": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", "tx_index": 77, - "utxos_info": "dfa40fba888baa4d402b76b439a0e5122bdae4fa9fcf0f2b16518c748297ba99:1", + "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "memo": null, "asset_info": { "divisible": true, @@ -10141,7 +10136,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730280415.8124557 + "timestamp": 1730372966.5065725 } ], "next_cursor": null, @@ -10163,15 +10158,15 @@ "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", "block_index": 209, - "block_time": 1730280411, + "block_time": 1730372962, "difficulty": 545259519, - "previous_block_hash": "1cf7e98093d106c532ca3a9bc774e286743f7d1e78c98e49b4e424f7b9df4b9c" + "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff" }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 660, @@ -10183,17 +10178,17 @@ "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "54cfef73f7201a550c7d480e93e3e3dd754c9d94bafdfb4040c9d24de8ab1bc0", + "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", "block_index": 209, - "block_time": 1730280411, + "block_time": 1730372962, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "fee": 0, - "source": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "utxos_info": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1 018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10203,9 +10198,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 661, @@ -10219,16 +10214,16 @@ "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "out_index": 0, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 565, @@ -10241,15 +10236,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "e6d8b88fb3b9ffef732ef4be7c8447f2742a46bdcb3b91687e6625200c1bfa84", - "messages_hash": "7ecbd26f4b122c15ee2b64852ae3ce031f4b2be53e5c992e32ac2d0cbacc0268", + "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", + "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", "transaction_count": 1, - "txlist_hash": "c5db28cdc4c5ac84b083f7f29db1971a0de30ba3664c986f3c0a72bb4024b055", - "block_time": 1730280411 + "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", + "block_time": 1730372962 }, "tx_hash": null, "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 668, @@ -10262,12 +10257,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76 }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 667, @@ -10283,12 +10278,12 @@ "address": null, "asset": "XCP", "block_index": 209, - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 2000000000, "tx_index": 76, - "utxo": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", - "utxo_address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", - "block_time": 1730280411, + "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -10298,9 +10293,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 672, @@ -10312,16 +10307,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -10331,9 +10326,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 676, @@ -10347,26 +10342,26 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "memo": null, "quantity": 1000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "tx_index": 70, - "block_time": 1730280368, + "block_time": 1730372921, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "204113dab7bacbb598f1e3284ab656c89202ed43023b172f571670ce8979ac08", + "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", "block_index": 203, - "block_time": 1730280368 + "block_time": 1730372921 } ], "next_cursor": 505, @@ -10380,15 +10375,15 @@ "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "status": "valid", - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "tx_index": 74, - "block_time": 1730280393, + "block_time": 1730372948, "asset_info": { "divisible": true, "asset_longname": null, @@ -10398,9 +10393,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "889ad3044dfb46c43bc28865d86c9d55a02484363825faf3c1809b3d7371ed46", + "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", "block_index": 207, - "block_time": 1730280393 + "block_time": 1730372948 } ], "next_cursor": 656, @@ -10423,20 +10418,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "status": "valid", - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "tx_index": 61, - "block_time": 1730280333, + "block_time": 1730372878, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "eca1a9d7ad292ee609a1b4a39368a5922f7df4bd4dbd1cb1b27320624217f69a", + "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", "block_index": 195, - "block_time": 1730280333 + "block_time": 1730372878 } ], "next_cursor": null, @@ -10453,15 +10448,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "tx_index": 42, - "block_time": 1730280161, + "block_time": 1730372719, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -10475,9 +10470,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "c9367d333b807fda96e3e61c717dd30381e4e29c895affb1f50deb927a44d8ff", + "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", "block_index": 155, - "block_time": 1730280161 + "block_time": 1730372719 } ], "next_cursor": null, @@ -10498,11 +10493,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730280364 + "block_time": 1730372917 }, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_time": 1730280364 + "block_time": 1730372917 } ], "next_cursor": 574, @@ -10525,22 +10520,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", "transfer": false, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "tx_index": 69, - "block_time": 1730280364, + "block_time": 1730372917, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "fbaf7137937ec70aad21638c17efe3b29a2a4effa2d941eae2dfdbd121bd3ef5", + "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", "block_index": 202, - "block_time": 1730280364 + "block_time": 1730372917 } ], "next_cursor": 575, @@ -10555,12 +10550,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qg6rg3gznlvq6jdxdxhxtnejkxx26sc05gk6gz0", + "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "tx_index": 62, - "block_time": 1730280337, + "block_time": 1730372882, "asset_info": { "divisible": true, "asset_longname": null, @@ -10570,9 +10565,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2c8bdb1426ae5b2631b6a1bba1eda20aae7618551ba7e5c6f76feca833f558b7", + "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", "block_index": 196, - "block_time": 1730280337 + "block_time": 1730372882 } ], "next_cursor": 157, @@ -10597,11 +10592,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "open", - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "tx_index": 75, - "block_time": 1730280398, + "block_time": 1730372952, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10625,9 +10620,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 536, @@ -10645,20 +10640,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", + "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", "tx0_index": 52, - "tx1_address": "bcrt1qdw0hwvz8t7sgkm0pr3l7e56uhwu9jmn3gjezd7", + "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "tx1_index": 55, - "block_time": 1730280290, + "block_time": 1730372844, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10677,9 +10672,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d39d906c1d36bc0226f7c03aa4adf3cb422a61dc044c16cf5e219d75fa6f12f4", + "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", "block_index": 189, - "block_time": 1730280290 + "block_time": 1730372844 } ], "next_cursor": 482, @@ -10692,11 +10687,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413" + "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73" }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 528, @@ -10709,11 +10704,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932" + "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10" }, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_time": 1730280286 + "block_time": 1730372841 } ], "next_cursor": null, @@ -10725,13 +10720,13 @@ "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", + "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", "status": "completed" }, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_time": 1730280286 + "block_time": 1730372841 } ], "next_cursor": 461, @@ -10745,18 +10740,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "order_match_id": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413_ed0440e82272d9fcca8033cbf17f51c53030eb220c2eb444dd12e7272dd48932", - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "status": "valid", - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "tx_index": 54, - "block_time": 1730280286, + "block_time": 1730372841, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1a1f6ed70a1c1def073b2e6b57f726292bb9eb0175b8bb217926585d66697776", + "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", "block_index": 188, - "block_time": 1730280286 + "block_time": 1730372841 } ], "next_cursor": null, @@ -10769,16 +10764,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "ea6158ebba5275ec4d54d0b738f11d8d75fa68f8faed36de8dec510dbee0c7a9", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": "valid", - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "tx_index": 59, - "block_time": 1730280315 + "block_time": 1730372869 }, - "tx_hash": "c10d7a50433f6eb68adca18d54e9f0e9935484a6d88433f8280329e0ba8d295b", + "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", "block_index": 193, - "block_time": 1730280315 + "block_time": 1730372869 } ], "next_cursor": null, @@ -10791,13 +10786,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "675823d8b89d1aa24f7aa38329af0de2e895f7738b2673976cbb669f70797413", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "block_time": 1730280398 + "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_time": 1730372952 }, - "tx_hash": "4dff3e9cf5a3aa87727e6da5b06e462704530aceed61a3f105cc86d94519e706", + "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", "block_index": 208, - "block_time": 1730280398 + "block_time": 1730372952 } ], "next_cursor": 469, @@ -10810,14 +10805,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "ec6acd99e4f48d6bbbab779c7b4740831a50261c2b25d237745bc2ce978d9e4e_d216bdf6b47b473ba3d7c0f9224394f9e9929a1b9487032347781a0b822b0c0f", - "tx0_address": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "tx1_address": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", - "block_time": 1730280219 + "order_match_id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_time": 1730372761 }, "tx_hash": null, "block_index": 185, - "block_time": 1730280219 + "block_time": 1730372761 } ], "next_cursor": null, @@ -10836,17 +10831,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "satoshirate": 1, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "status": 0, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "tx_index": 63, - "block_time": 1730280341, + "block_time": 1730372886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -10855,9 +10850,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "673f7a6bdadca846e059eace1b47667735cb230f9cc35c932660e2820bcf6611", + "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", "block_index": 197, - "block_time": 1730280341 + "block_time": 1730372886 } ], "next_cursor": 272, @@ -10872,9 +10867,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": 0, - "tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", + "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", "asset_info": { "divisible": true, "asset_longname": null, @@ -10884,9 +10879,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 567, @@ -10900,13 +10895,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mtfcg3Jxd9ciGRu28njw18WhUi82Mc6m84", + "destination": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", "dispense_quantity": 10, - "dispenser_tx_hash": "57387ea6e6a505cb9ca7819e594e4158054d3b72f7fb9192202ae2d70dbfcda1", - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", - "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", + "dispenser_tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", "tx_index": 31, - "block_time": 1730280100, + "block_time": 1730372679, "asset_info": { "divisible": true, "asset_longname": null, @@ -10916,9 +10911,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "77d835411bf8e445e1e7d51a95228d1ad2c93df8405fa96deaca4699c6576b63", + "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", "block_index": 144, - "block_time": 1730280100 + "block_time": 1730372679 } ], "next_cursor": null, @@ -10933,14 +10928,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qw7y27ht6hq7fzlgr8dgp9qpt87n72kztqp370l", + "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8b02e0babe121d137e16b38b8208708516c28154d0b9ad82f78561b57741581d", - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -10951,9 +10946,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 568, @@ -10968,19 +10963,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qqy8avrsarpvj0wg4tmpfn5k3sdkdam4nu28760", + "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "tx_index": 25, "value": 66600.0, - "block_time": 1730280065, + "block_time": 1730372656, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "ed160ec38744d0b9d00df1ac865b4ae640c9ea3ebeb45e6f30e0fded7d267b69", + "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", "block_index": 138, - "block_time": 1730280065 + "block_time": 1730372656 } ], "next_cursor": 213, @@ -11011,12 +11006,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "start_block": 0, "status": "open", - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "tx_index": 43, - "block_time": 1730280175, + "block_time": 1730372724, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11024,9 +11019,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "105986e823ced88af539ad315ed09d2d7ce70f73c840ce7e03aedd29a3a6c4d1", + "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", "block_index": 156, - "block_time": 1730280175 + "block_time": 1730372724 } ], "next_cursor": 196, @@ -11039,11 +11034,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "cdbebcde86f2428b9423ba53cb5496239a5936a68e77f2ce0b8d0748a06b27c6" + "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da" }, "tx_hash": null, "block_index": 130, - "block_time": 1730280035 + "block_time": 1730372626 } ], "next_cursor": 110, @@ -11059,17 +11054,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b15ab60809cd944e04269a0298723b6ca9e26f9ed7148e3e0b0da7248837f5fa", + "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", "paid_quantity": 34, - "source": "bcrt1q99qlg7vxcuqpkdpt24qyy9cp6wx5mwlwpzc4jq", + "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", "status": "valid", - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "tx_index": 23, - "block_time": 1730280059, + "block_time": 1730372648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, @@ -11077,9 +11072,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "984f398e0958e6be0d58259e95e5622eeb40a900f86d8994204d05bfde698f48", + "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", "block_index": 136, - "block_time": 1730280059 + "block_time": 1730372648 } ], "next_cursor": 190, @@ -11093,28 +11088,28 @@ "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b:0", + "destination": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "status": "valid", - "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", + "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", "tx_index": 66, - "block_time": 1730280351, + "block_time": 1730372898, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrq7dnmwx0jhje9u8xtwankqyg3vqzt2xyghvy5", + "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "764652048906cbd40714adfbb72302084cafd67094cfa89752b638aeeeed138b", + "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", "block_index": 200, - "block_time": 1730280351 + "block_time": 1730372898 } ], "next_cursor": 327, @@ -11128,28 +11123,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qnkquwlgrwprdx45u9elfaujrmjhnm5zkj56597", + "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "5adaa267c289af32ff55684e7956a775b522feb743a45d22d35d382b5538c7bb:0", + "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", "status": "valid", - "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", + "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", "tx_index": 38, - "block_time": 1730280146, + "block_time": 1730372705, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q896ex4uslm8u6qtq8ar5f6gtmg4hvfkz3547av", + "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "290f7c37bcc80b86d5566e625e26f658ec97aa879990eb8d020a90ba0f7b5d80", + "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", "block_index": 151, - "block_time": 1730280146 + "block_time": 1730372705 } ], "next_cursor": null, @@ -11163,14 +11158,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c:0", + "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", "msg_index": 1, "quantity": 2000000000, - "source": "434b5c994f5fdd3f1f22c16c260c4f4aa7d5873e3d5f30d94c348412c7cdcced:1", + "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", "status": "valid", - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "tx_index": 76, - "block_time": 1730280411, + "block_time": 1730372962, "asset_info": { "divisible": true, "asset_longname": null, @@ -11180,9 +11175,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "018754c5b7df03ad7a591882418ad1e8af9c58f3465f2bddcc61c38dc831f58c", + "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", "block_index": 209, - "block_time": 1730280411 + "block_time": 1730372962 } ], "next_cursor": 674, @@ -11197,17 +11192,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzmdedny5wq7peq7pdexe88w4nfmsqx3n6j5n07", + "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", "status": "valid", - "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", + "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", "tx_index": 9, - "block_time": 1730279999, + "block_time": 1730372591, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b3fc986b88d11168b734b6077f56e37aa816d70dba0390b9853999d3930594c5", + "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", "block_index": 121, - "block_time": 1730279999 + "block_time": 1730372591 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 8b87c5fec0..98f63cf3a1 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -560,12 +560,12 @@ def test_invalid_detach(self): assert balance["quantity"] > 0 break - # we should have a new event with status "invalid" + # we should not have a new event events = self.api_call(f"transactions/{tx_hash}/events?event_name=DETACH_FROM_UTXO")[ "result" ] print(events) - assert events[0]["params"]["status"] == "invalid: UTXO not in the transaction inputs" + assert len(events) == 0 print("Invalid detach test successful") diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index ccb309fcce..8b9f4bafe2 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -157,7 +157,7 @@ "params": { "block_index": "$BLOCK_INDEX", "count": 4, - "transaction_id": 100, + "transaction_id": 101, }, "tx_hash": "$TX_HASH", }, 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 c8f75ec342..6c2eaa301c 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -94,7 +94,9 @@ "params": { "asset": "MYASSETA", "quantity": 10 * 10**8, - "destination": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1", + }, + "set_variables": { + "UTXO_ATTACH_1_TX_HASH": "$TX_HASH", }, "controls": [ { @@ -106,7 +108,7 @@ "params": { "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", - "destination": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1", + "destination": "$TX_HASH:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, @@ -128,8 +130,8 @@ "event": "$TX_HASH", "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1", - "utxo_address": "$ADDRESS_3", + "utxo": "$TX_HASH:0", + "utxo_address": "$ADDRESS_1", }, "tx_hash": "$TX_HASH", }, @@ -155,7 +157,7 @@ "params": { "block_index": "$BLOCK_INDEX", "count": 1, - "transaction_id": 100, + "transaction_id": 101, }, "tx_hash": "$TX_HASH", }, @@ -166,9 +168,10 @@ { "title": "Move assets from UTXO to UTXO", "transaction": "movetoutxo", - "source": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1", + "source": "$UTXO_ATTACH_1_TX_HASH:0", "params": { "destination": "$ADDRESS_4", + "exact_fee": 0, }, "set_variables": { "UTXO_MOVE_1_TX_HASH": "$TX_HASH", @@ -186,7 +189,7 @@ "destination": "$TX_HASH:0", "msg_index": 0, "quantity": 1000000000, - "source": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1", + "source": "$UTXO_ATTACH_1_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -220,8 +223,8 @@ "event": "$TX_HASH", "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1", - "utxo_address": "$ADDRESS_3", + "utxo": "$UTXO_ATTACH_1_TX_HASH:0", + "utxo_address": "$ADDRESS_1", }, "tx_hash": "$TX_HASH", }, @@ -267,7 +270,7 @@ "source": "", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH:1 $TX_HASH:0", + "utxos_info": "$UTXO_ATTACH_1_TX_HASH:0 $TX_HASH:0", }, "tx_hash": "$TX_HASH", }, @@ -412,7 +415,7 @@ "params": { "block_index": "$BLOCK_INDEX", "count": 2, - "transaction_id": 100, + "transaction_id": 101, }, "tx_hash": "$TX_HASH", }, @@ -490,7 +493,7 @@ "params": { "block_index": "$BLOCK_INDEX", "count": 3, - "transaction_id": 100, + "transaction_id": 101, }, "tx_hash": "$TX_HASH", }, diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 7626dd72a1..954d6a65d3 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -18,6 +18,7 @@ This upgrade is not a protocol change and no automatic reparse is necessary. - Raise a `ComposeError` in `mpma.compose()` if `memo` is not a string or if `memo_is_hex` is not a boolean - Send API v2 log messages to the `config.API_LOG` logfile - Create a dust output when attaching an asset to a UTXO without a destination address +- Fix dust value in compose move to UTXO ## Codebase From 2a5d59a4ca282f99699a1ce50f1b36b32f4c2383 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 11:54:43 +0000 Subject: [PATCH 021/138] Refactor utxos_info field --- .../counterpartycore/lib/api/api_server.py | 5 +- .../counterpartycore/lib/blocks.py | 28 +++++------ .../counterpartycore/lib/gettxinfo.py | 46 ++++++++++++++++++- .../counterpartycore/lib/messages/attach.py | 31 +++++++------ .../counterpartycore/lib/messages/detach.py | 6 +-- .../counterpartycore/lib/messages/move.py | 21 +++++---- .../counterpartycore/lib/messages/utxo.py | 2 +- .../counterpartycore/lib/util.py | 37 +++++++++++++++ 8 files changed, 128 insertions(+), 48 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 3fe82003a9..d2eddc8f1a 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -321,8 +321,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/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index edefae94b0..daaf1c1627 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -122,14 +122,10 @@ def parse_tx(db, tx): # After "spend_utxo_to_detach" protocol change we move assets before parsing # only if the message is not an Attach or Detach, else will be moved after parsing - if ( - "utxos_info" in tx - and tx["utxos_info"] - and ( - not util.enabled("spend_utxo_to_detach") - or message_type_id not in [attach.ID, detach.ID] - ) - ): + if not util.enabled("spend_utxo_to_detach") or message_type_id not in [ + attach.ID, + detach.ID, + ]: move.move_assets(db, tx) if not tx["source"]: # utxos move only @@ -257,12 +253,7 @@ def parse_tx(db, tx): return False # if attach or detach we move assets after parsing - if ( - "utxos_info" in tx - and tx["utxos_info"] - and util.enabled("spend_utxo_to_detach") - and message_type_id in [attach.ID, detach.ID] - ): + if util.enabled("spend_utxo_to_detach") and message_type_id in [attach.ID, detach.ID]: move.move_assets(db, tx) # NOTE: for debugging (check asset conservation after every `N` transactions). @@ -1008,9 +999,12 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_ else: assert block_index == util.CURRENT_BLOCK_INDEX - if (source and (data or destination == config.UNSPENDABLE or dispensers_outs)) or len( - utxos_info - ) > 1: + if ( + ( + source and (data or destination == config.UNSPENDABLE or dispensers_outs) + ) # counterparty tx + or (utxos_info[0] != "" and utxos_info[1] != "") # utxo move + ): transaction_bindings = { "tx_index": tx_index, "tx_hash": tx_hash, diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py index 1cd7944198..6d8948f3c9 100644 --- a/counterparty-core/counterpartycore/lib/gettxinfo.py +++ b/counterparty-core/counterpartycore/lib/gettxinfo.py @@ -562,7 +562,49 @@ def select_utxo_destination(vouts): return None +def get_inputs_with_balance(db, decoded_tx): + sources = [] + # we check that each vin does not contain assets.. + for vin in decoded_tx["vin"]: + if isinstance(vin["hash"], str): + vin_hash = vin["hash"] + else: + vin_hash = inverse_hash(binascii.hexlify(vin["hash"]).decode("utf-8")) + utxo = vin_hash + ":" + str(vin["n"]) + if ledger.utxo_has_balance(db, utxo): + sources.append(utxo) + return sources + + +def get_first_non_op_return_output(decoded_tx): + n = select_utxo_destination(decoded_tx["vout"]) + if n is not None: + destination = decoded_tx["tx_hash"] + ":" + str(n) + return destination + return None + + +def get_op_return_vout(decoded_tx): + for n, vout in enumerate(decoded_tx["vout"]): + try: + asm = script.script_to_asm(vout["script_pub_key"]) + if asm[0] == OP_RETURN: # noqa: F405 + return n + except DecodeError: + pass + return None + + def get_utxos_info(db, decoded_tx): + return [ + ",".join(get_inputs_with_balance(db, decoded_tx)), # sources + get_first_non_op_return_output(decoded_tx) or "", # destination + str(len(decoded_tx["vout"])), # number of outputs + get_op_return_vout(decoded_tx) or "", # op_return output + ] + + +def get_utxos_info_old(db, decoded_tx): """ Get the UTXO move info. Returns a list of UTXOs. Last UTXO is the destination, previous UTXOs are the sources. @@ -594,8 +636,8 @@ def get_tx_info(db, decoded_tx, block_index): utxos_info = get_utxos_info(db, decoded_tx) # update utxo balances cache before parsing the transaction # to catch chained utxo moves - if len(utxos_info) > 1 and not util.PARSING_MEMPOOL: - ledger.UTXOBalancesCache(db).add_balance(utxos_info[-1]) + if utxos_info[0] != "" and utxos_info[1] != "" and not util.PARSING_MEMPOOL: + ledger.UTXOBalancesCache(db).add_balance(utxos_info[1]) else: utxos_info = [] try: diff --git a/counterparty-core/counterpartycore/lib/messages/attach.py b/counterparty-core/counterpartycore/lib/messages/attach.py index 2227dd2c3b..72817a96c3 100644 --- a/counterparty-core/counterpartycore/lib/messages/attach.py +++ b/counterparty-core/counterpartycore/lib/messages/attach.py @@ -68,8 +68,12 @@ def validate(db, source, asset, quantity, destination_vout=None, block_index=Non # check balances problems += validate_balance(db, source, asset, quantity, fee) - if destination_vout is not None and not isinstance(destination_vout, int): - problems.append("if provided destination must be an integer") + # check if destination_vout is valid + if destination_vout is not None: + if not isinstance(destination_vout, int): + problems.append("if provided destination must be an integer") + elif destination_vout < 0: + problems.append("destination vout must be greater than or equal to zero") return problems @@ -159,19 +163,20 @@ def parse(db, tx, message): # determine destination if destination_vout is None: # if no destination_vout is provided, we use the first non-OPT_RETURN output - utxos_info = tx["utxos_info"].split(" ") if tx["utxos_info"] else [] - if len(utxos_info) == 0: + destination = util.get_destination_from_utxos_info(tx["utxos_info"]) + if not destination: problems.append("no UTXO to attach to") - else: - # last element of utxos_info field is the first non-OPT_RETURN output - destination = utxos_info[-1] else: - # IMPORTANT: if the vout provided doesn't exist in the transaction or - # if is an OP_RETURN output, the attached assets will be unspendable. - # We don't check this here because: - # - we don't have the complete list of outputs here - # - we don't want to make an RPC call during parsing - # - if destination_vout it's provided it's the responsability of the caller to build a valid transaction + # check if destination_vout is valid + outputs_count = util.get_outputs_count_from_utxos_info(tx["utxos_info"]) + if outputs_count and destination_vout > outputs_count - 1: + problems.append("destination vout is greater than the number of outputs") + + # check if destination_vout is an OP_RETURN output + op_return_output = util.get_op_return_output_from_utxos_info(tx["utxos_info"]) + if op_return_output and destination_vout == op_return_output: + problems.append("destination vout is an OP_RETURN output") + destination = f"{tx['tx_hash']}:{destination_vout}" status = "valid" diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index 116b22516b..37a82a4a13 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -122,10 +122,8 @@ def detach_assets(db, tx, source, destination): def parse(db, tx, message): destination = unpack(message) - # utxos_info is a space-separated list of UTXOs, last element is the destination, - # the rest are the inputs with a balance - utxos_info = tx["utxos_info"].split(" ") if tx["utxos_info"] else [] - sources = utxos_info[:-1] + # get all inputs with balances + sources = util.get_sources_from_utxos_info(tx["utxos_info"]) # detach assets from all the sources # IMPORTANT: that's mean we can't detach assets and move utxo in th same transaction diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index 107de81168..9389524bbd 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -1,22 +1,25 @@ import logging -from counterpartycore.lib import config, ledger +from counterpartycore.lib import config, ledger, util logger = logging.getLogger(config.LOGGER_NAME) # call on each transaction def move_assets(db, tx): - utxos = tx["utxos_info"].split(" ") - # do nothing if there is only one UTXO (it's the first non-OP_RETURN output) - if len(utxos) < 2: + if "utxos_info" not in tx or not tx["utxos_info"]: return - # if there are more than one UTXO in the `utxos_info` field, - # we move all assets from the first UTXO to the last one - destination = utxos.pop() - sources = utxos - action = "utxo move" + sources, destination, _outputs_count, _op_return_output = util.parse_utxos_info( + tx["utxos_info"] + ) + + # do nothing if no source or destination + if not len(sources) or not destination: + return + + # we move all assets from the sources to the destination + action = "utxo move" msg_index = 0 # we move all assets from each source to the destination for source in sources: diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 5d8bf7cd8d..ecaf823a23 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -113,7 +113,7 @@ def parse(db, tx, message): # if no destination, we assume the destination is the first non-OP_RETURN output # that's mean the last element of the UTXOs info in `transactions` table if not recipient: - recipient = tx["utxos_info"].split(" ")[-1] + recipient = util.get_destination_from_utxos_info(tx["utxos_info"]) # detach if source is a UTXO if util.is_utxo_format(source): diff --git a/counterparty-core/counterpartycore/lib/util.py b/counterparty-core/counterpartycore/lib/util.py index 9d3af8aa88..fbf94840b8 100644 --- a/counterparty-core/counterpartycore/lib/util.py +++ b/counterparty-core/counterpartycore/lib/util.py @@ -678,3 +678,40 @@ def is_utxo_format(value): if len(values[0]) != 64: return False return True + + +def parse_utxos_info(utxos_info): + info = utxos_info.split(",") + + if len(info) == 1: + # old format + info = info[0].split(" ") + destination = info[-1] + sources = info[:-1] + return sources, destination, None, None + + sources = info[0].split(" ") + destination = info[1] or None + outputs_count = int(info[2]) + op_return_output = info[3] or None + return sources, destination, outputs_count, op_return_output + + +def get_destination_from_utxos_info(utxos_info): + _sources, destination, _outputs_count, _op_return_output = parse_utxos_info(utxos_info) + return destination + + +def get_sources_from_utxos_info(utxos_info): + sources, _destination, _outputs_count, _op_return_output = parse_utxos_info(utxos_info) + return sources + + +def get_outputs_count_from_utxos_info(utxos_info): + _sources, _destination, outputs_count, _op_return_output = parse_utxos_info(utxos_info) + return outputs_count + + +def get_op_return_output_from_utxos_info(utxos_info): + _sources, _destination, _outputs_count, op_return_output = parse_utxos_info(utxos_info) + return op_return_output From 90f8f609c3e50e3c799d7d1ab15fd357c5f85751 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 13:34:56 +0000 Subject: [PATCH 022/138] Fixes; fix pytest --- .../counterpartycore/lib/gettxinfo.py | 3 +- .../counterpartycore/lib/messages/attach.py | 2 + .../counterpartycore/lib/util.py | 28 +- .../test/fixtures/api_v2_fixtures.json | 60 +- .../fixtures/contract_vectors/gettxinfo.py | 35 +- .../test/fixtures/contract_vectors/ledger.py | 2 +- .../fixtures/scenarios/multisig_1_of_2.sql | 740 ++-- .../fixtures/scenarios/multisig_1_of_3.sql | 740 ++-- .../fixtures/scenarios/multisig_2_of_2.sql | 740 ++-- .../fixtures/scenarios/multisig_2_of_3.sql | 740 ++-- .../fixtures/scenarios/multisig_3_of_3.sql | 740 ++-- .../scenarios/parseblock_unittest_fixture.sql | 3602 ++++++++--------- .../test/fixtures/scenarios/simplesig.sql | 740 ++-- .../fixtures/scenarios/unittest_fixture.sql | 3600 ++++++++-------- 14 files changed, 5900 insertions(+), 5872 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py index 6d8948f3c9..e35f32e885 100644 --- a/counterparty-core/counterpartycore/lib/gettxinfo.py +++ b/counterparty-core/counterpartycore/lib/gettxinfo.py @@ -596,11 +596,12 @@ def get_op_return_vout(decoded_tx): def get_utxos_info(db, decoded_tx): + op_return_vout = get_op_return_vout(decoded_tx) return [ ",".join(get_inputs_with_balance(db, decoded_tx)), # sources get_first_non_op_return_output(decoded_tx) or "", # destination str(len(decoded_tx["vout"])), # number of outputs - get_op_return_vout(decoded_tx) or "", # op_return output + str(op_return_vout) if op_return_vout else "", # op_return output ] diff --git a/counterparty-core/counterpartycore/lib/messages/attach.py b/counterparty-core/counterpartycore/lib/messages/attach.py index 72817a96c3..8fd7f05135 100644 --- a/counterparty-core/counterpartycore/lib/messages/attach.py +++ b/counterparty-core/counterpartycore/lib/messages/attach.py @@ -163,7 +163,9 @@ def parse(db, tx, message): # determine destination if destination_vout is None: # if no destination_vout is provided, we use the first non-OPT_RETURN output + print("UTXO INFO", tx["utxos_info"]) destination = util.get_destination_from_utxos_info(tx["utxos_info"]) + print("DESTINATION", destination) if not destination: problems.append("no UTXO to attach to") else: diff --git a/counterparty-core/counterpartycore/lib/util.py b/counterparty-core/counterpartycore/lib/util.py index fbf94840b8..84be76cf6b 100644 --- a/counterparty-core/counterpartycore/lib/util.py +++ b/counterparty-core/counterpartycore/lib/util.py @@ -681,20 +681,20 @@ def is_utxo_format(value): def parse_utxos_info(utxos_info): - info = utxos_info.split(",") - - if len(info) == 1: - # old format - info = info[0].split(" ") - destination = info[-1] - sources = info[:-1] - return sources, destination, None, None - - sources = info[0].split(" ") - destination = info[1] or None - outputs_count = int(info[2]) - op_return_output = info[3] or None - return sources, destination, outputs_count, op_return_output + info = utxos_info.split(" ") + + # new format + if len(info) == 4 and not is_utxo_format(info[-1]): + sources = info[0].split(" ") + destination = info[1] or None + outputs_count = int(info[2]) + op_return_output = int(info[3]) if info[3] else None + return sources, destination, outputs_count, op_return_output + + # old format + destination = info[-1] + sources = info[:-1] + return sources, destination, None, None def get_destination_from_utxos_info(utxos_info): diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 9f603007de..09c4e9f3e4 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -181,7 +181,7 @@ "fee": 6800, "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0", "supported": true, - "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0", + "utxos_info": " 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -331,7 +331,7 @@ "supported": true, "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", "tx_index": 492, - "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0", + "utxos_info": " 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 ", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -504,7 +504,7 @@ "fee": 6150, "data": "0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400", "supported": true, - "utxos_info": "b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1", + "utxos_info": " b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -543,7 +543,7 @@ "fee": 6800, "data": "0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574", "supported": true, - "utxos_info": "5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0", + "utxos_info": " 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -578,7 +578,7 @@ "fee": 7650, "data": "65444956495349424c457c317c", "supported": true, - "utxos_info": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "utxos_info": " 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -601,7 +601,7 @@ "fee": 7650, "data": "655843507c3130307c", "supported": true, - "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "utxos_info": " e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -624,7 +624,7 @@ "fee": 5800, "data": "5b413136303336313238353739323733333732397c3230", "supported": true, - "utxos_info": "33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1", + "utxos_info": " 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -647,7 +647,7 @@ "fee": 5800, "data": "5b413136303336313238353739323733333732397c3130", "supported": true, - "utxos_info": "f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1", + "utxos_info": " f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -670,7 +670,7 @@ "fee": 8825, "data": "5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e", "supported": true, - "utxos_info": "a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0", + "utxos_info": " a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -693,7 +693,7 @@ "fee": 6675, "data": "5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c", "supported": true, - "utxos_info": "3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1", + "utxos_info": " 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -716,7 +716,7 @@ "fee": 6375, "data": "5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": "c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1", + "utxos_info": " c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -739,7 +739,7 @@ "fee": 5575, "data": "5b46524545464149524d494e7c30", "supported": true, - "utxos_info": "fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1", + "utxos_info": " fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -767,7 +767,7 @@ "fee": 6800, "data": "00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574", "supported": true, - "utxos_info": "ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0", + "utxos_info": " ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -804,7 +804,7 @@ "fee": 5800, "data": "5b413136303336313238353739323733333732397c3230", "supported": true, - "utxos_info": "33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1", + "utxos_info": " 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -1360,7 +1360,7 @@ "fee": 7650, "data": "65444956495349424c457c317c", "supported": true, - "utxos_info": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "utxos_info": " 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -1383,7 +1383,7 @@ "fee": 7650, "data": "655843507c3130307c", "supported": true, - "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "utxos_info": " e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -1406,7 +1406,7 @@ "fee": 5800, "data": "5b413136303336313238353739323733333732397c3230", "supported": true, - "utxos_info": "33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1", + "utxos_info": " 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -1429,7 +1429,7 @@ "fee": 5800, "data": "5b413136303336313238353739323733333732397c3130", "supported": true, - "utxos_info": "f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1", + "utxos_info": " f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -1452,7 +1452,7 @@ "fee": 8825, "data": "5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e", "supported": true, - "utxos_info": "a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0", + "utxos_info": " a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -1475,7 +1475,7 @@ "fee": 6675, "data": "5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c", "supported": true, - "utxos_info": "3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1", + "utxos_info": " 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4209,7 +4209,7 @@ "fee": 7650, "data": "65444956495349424c457c317c", "supported": true, - "utxos_info": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "utxos_info": " 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4232,7 +4232,7 @@ "fee": 7650, "data": "655843507c3130307c", "supported": true, - "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "utxos_info": " e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4255,7 +4255,7 @@ "fee": 6675, "data": "5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c", "supported": true, - "utxos_info": "3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1", + "utxos_info": " 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4278,7 +4278,7 @@ "fee": 6375, "data": "5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": "c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1", + "utxos_info": " c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4301,7 +4301,7 @@ "fee": 5575, "data": "5b46524545464149524d494e7c30", "supported": true, - "utxos_info": "fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1", + "utxos_info": " fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4324,7 +4324,7 @@ "fee": 6300, "data": "5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": "63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1", + "utxos_info": " 63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4347,7 +4347,7 @@ "fee": 6300, "data": "5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": "3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1", + "utxos_info": " 3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "unknown", @@ -4370,7 +4370,7 @@ "fee": 6550, "data": "0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74", "supported": true, - "utxos_info": "0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1", + "utxos_info": " 0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4404,7 +4404,7 @@ "fee": 6300, "data": "00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574", "supported": true, - "utxos_info": "fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1", + "utxos_info": " fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4439,7 +4439,7 @@ "fee": 6800, "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0", "supported": true, - "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0", + "utxos_info": " 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gettxinfo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gettxinfo.py index 9c8ef0137f..c00a38a484 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gettxinfo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gettxinfo.py @@ -21,7 +21,12 @@ 10000, b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n", [], - ["4f4a408d8bd90ca994e1f6b0969a8fe1a6bcf33211a4b5bad876d26b6f3a666b:0"], + [ + "", + "4f4a408d8bd90ca994e1f6b0969a8fe1a6bcf33211a4b5bad876d26b6f3a666b:0", + "6", + "", + ], ), }, # data in OP_CHECKMULTISIG script @@ -40,7 +45,12 @@ 10000, b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n", [], - ["564501b070077eb6e978a547ae28a3e8ec4505da3de856f03a0d127750a44f11:0"], + [ + "", + "564501b070077eb6e978a547ae28a3e8ec4505da3de856f03a0d127750a44f11:0", + "3", + "", + ], ), }, # data in OP_CHECKMULTISIG script, destination = p2sh @@ -59,7 +69,12 @@ 10000, b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n", [], - ["1f9b910792994070699d898d59217df052bc3568d7b8e4e5d5bba485aa62c73a:0"], + [ + "", + "1f9b910792994070699d898d59217df052bc3568d7b8e4e5d5bba485aa62c73a:0", + "3", + "", + ], ), }, { @@ -80,7 +95,12 @@ 10000, b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n", [], - ["3481e0520d4f928617e86c0695f3d49faabb10b5432d44eb02e01141a4e6fc4d:0"], + [ + "", + "3481e0520d4f928617e86c0695f3d49faabb10b5432d44eb02e01141a4e6fc4d:0", + "3", + "", + ], ), }, { @@ -99,7 +119,12 @@ 10000, b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n", [], - ["3481e0520d4f928617e86c0695f3d49faabb10b5432d44eb02e01141a4e6fc4d:0"], + [ + "", + "3481e0520d4f928617e86c0695f3d49faabb10b5432d44eb02e01141a4e6fc4d:0", + "3", + "", + ], ), }, ], diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py index 260dd74a0a..9652676613 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py @@ -63,7 +63,7 @@ "timestamp": 0, "event": "BLOCK_PARSED", "tx_hash": None, - "event_hash": "3f67c00efc0236abf3f24c9011e6e85eadfcb901707f3a36d4d92c80e77e6d7e", + "event_hash": "0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d", }, } ], diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql index 0dd5814274..0c15573128 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql @@ -152,30 +152,30 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'12f21e3a989f7b28ece1e24d018126bf0b8d6344be24196d8362a1f218fd59c8:0'); -INSERT INTO transactions VALUES(2,'58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1,'bc2524f34d7824f1530f9f53b1aeabdbf38a72ccc39783d41de0a7f80cacc16d:0'); -INSERT INTO transactions VALUES(3,'332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'3cd583567fd9fe4e8162cf71bc098e44cbcb8fe41ede6954df217cbe1e84691f:0'); -INSERT INTO transactions VALUES(4,'f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'467d3d8a2e5651aba5af185af6ea44c52be3e315a2dd885d7ea2efb4d4cdea8b:0'); -INSERT INTO transactions VALUES(5,'ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B332B030DA57B9565324DF01414778B1EAFBEE6C52343FEA80774EE1725484367F093B6C00E1BBE85106DB6874B1AB4E3F4378D0BF0BCFFBD8B51835285DFBF3F',1,'bc49563c96e9ef2df2cbee4ff2c07be675eaf382fef1e249244bb8e712652577:0'); -INSERT INTO transactions VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'d00ab6be126b638ef170c4ae70f5688538168d0b1ced4133fe99c21ca166cd76:0'); -INSERT INTO transactions VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'682a11acb7553de4c3f0f55a61eb033d432adc2ed310a9b1ded49a5630497bdb:0'); -INSERT INTO transactions VALUES(8,'f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1,'d8757243c0f0522e40e5dfa29c2958f3e2ec842b4da0761cdc1612063ab36599:0'); -INSERT INTO transactions VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1,'0a016813237e5169e6aa6cb199572ca6479c5245a3d48bd0842de4aac8a528c9:0'); -INSERT INTO transactions VALUES(10,'7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'b62286ce041e346cac7982d5a815df56a1b55778f1575f08e24c0654400c0534:0'); -INSERT INTO transactions VALUES(11,'c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'78390d392d84db9734cda0f6cb43b9eb49b0568e9473650ab9756c21c4b992b4:0'); -INSERT INTO transactions VALUES(12,'a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'d80f8093a99a0c63350f3ed29af416454993efbade598a2e4de4873dc27180bd:0'); -INSERT INTO transactions VALUES(13,'74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'0081e95041304df8c910d143341190089eb619caefeb02e8d1b803199aeb8c4b:0'); -INSERT INTO transactions VALUES(14,'6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'763fba63964d344185ec530a4b2e18cd83641a7bb280d7dfc1881772d74a9a0c:0'); -INSERT INTO transactions VALUES(15,'2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'1c955d683a1186672eb27bc0364c7b7c373341b2a40c8bb906cd39ec9bed60a1:0'); -INSERT INTO transactions VALUES(16,'65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'c3eb3463857a8defa936fdb1a10580216ebcacd843ae6a59d0328cea5b2f1f83:0'); -INSERT INTO transactions VALUES(17,'94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'6e87b9e2c5817b3fb2d8884f48f50697733404a54dd2651b5f45b4da35545833:0'); -INSERT INTO transactions VALUES(18,'a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'0fe94e9ce6026767f7c6fb2159bb0caafb1396c8d666233718d5b549ac1c9d8b:0'); -INSERT INTO transactions VALUES(19,'f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'1bd34a2e5fa7dc79e1f1bff6fcc0532e1c8ee5714ffe51d4db117b1ff4849270:0'); -INSERT INTO transactions VALUES(20,'dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'d42e76bd859bf8b182e6e798cbb571f766fc69aa64d9b71c15d5c04f7fe8d0fa:0'); -INSERT INTO transactions VALUES(21,'457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'35f2a884080b8d753095b1de08c0fc7e4959da011dcb0118dd3a856d75a89d2f:0'); -INSERT INTO transactions VALUES(22,'6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'b26d7ac6c4f02ba75486ccd6031f7b5b78891da999ad5a28082b77c8188af830:0'); -INSERT INTO transactions VALUES(23,'c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,14675,X'',1,'a97707e3dc3ad8d51d385701161d1020fd8f459b3668a9b0cf6d57a09416a3c9:0'); -INSERT INTO transactions VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1,'c9eecc8059afd7607bf284bcc3322c5c34639e4707a8737c2a98526911c99390:0'); +INSERT INTO transactions VALUES(1,'9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 12f21e3a989f7b28ece1e24d018126bf0b8d6344be24196d8362a1f218fd59c8:0 2 '); +INSERT INTO transactions VALUES(2,'58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1,' bc2524f34d7824f1530f9f53b1aeabdbf38a72ccc39783d41de0a7f80cacc16d:0 3 '); +INSERT INTO transactions VALUES(3,'332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,' 3cd583567fd9fe4e8162cf71bc098e44cbcb8fe41ede6954df217cbe1e84691f:0 2 '); +INSERT INTO transactions VALUES(4,'f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,' 467d3d8a2e5651aba5af185af6ea44c52be3e315a2dd885d7ea2efb4d4cdea8b:0 2 '); +INSERT INTO transactions VALUES(5,'ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B332B030DA57B9565324DF01414778B1EAFBEE6C52343FEA80774EE1725484367F093B6C00E1BBE85106DB6874B1AB4E3F4378D0BF0BCFFBD8B51835285DFBF3F',1,' bc49563c96e9ef2df2cbee4ff2c07be675eaf382fef1e249244bb8e712652577:0 4 '); +INSERT INTO transactions VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,' d00ab6be126b638ef170c4ae70f5688538168d0b1ced4133fe99c21ca166cd76:0 2 '); +INSERT INTO transactions VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,' 682a11acb7553de4c3f0f55a61eb033d432adc2ed310a9b1ded49a5630497bdb:0 2 '); +INSERT INTO transactions VALUES(8,'f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1,' d8757243c0f0522e40e5dfa29c2958f3e2ec842b4da0761cdc1612063ab36599:0 3 '); +INSERT INTO transactions VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1,' 0a016813237e5169e6aa6cb199572ca6479c5245a3d48bd0842de4aac8a528c9:0 3 '); +INSERT INTO transactions VALUES(10,'7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,' b62286ce041e346cac7982d5a815df56a1b55778f1575f08e24c0654400c0534:0 2 '); +INSERT INTO transactions VALUES(11,'c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,' 78390d392d84db9734cda0f6cb43b9eb49b0568e9473650ab9756c21c4b992b4:0 2 '); +INSERT INTO transactions VALUES(12,'a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,' d80f8093a99a0c63350f3ed29af416454993efbade598a2e4de4873dc27180bd:0 2 '); +INSERT INTO transactions VALUES(13,'74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,' 0081e95041304df8c910d143341190089eb619caefeb02e8d1b803199aeb8c4b:0 3 '); +INSERT INTO transactions VALUES(14,'6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,' 763fba63964d344185ec530a4b2e18cd83641a7bb280d7dfc1881772d74a9a0c:0 3 '); +INSERT INTO transactions VALUES(15,'2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,' 1c955d683a1186672eb27bc0364c7b7c373341b2a40c8bb906cd39ec9bed60a1:0 3 '); +INSERT INTO transactions VALUES(16,'65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,' c3eb3463857a8defa936fdb1a10580216ebcacd843ae6a59d0328cea5b2f1f83:0 3 '); +INSERT INTO transactions VALUES(17,'94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,' 6e87b9e2c5817b3fb2d8884f48f50697733404a54dd2651b5f45b4da35545833:0 3 '); +INSERT INTO transactions VALUES(18,'a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,' 0fe94e9ce6026767f7c6fb2159bb0caafb1396c8d666233718d5b549ac1c9d8b:0 3 '); +INSERT INTO transactions VALUES(19,'f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,' 1bd34a2e5fa7dc79e1f1bff6fcc0532e1c8ee5714ffe51d4db117b1ff4849270:0 2 '); +INSERT INTO transactions VALUES(20,'dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,' d42e76bd859bf8b182e6e798cbb571f766fc69aa64d9b71c15d5c04f7fe8d0fa:0 2 '); +INSERT INTO transactions VALUES(21,'457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,' 35f2a884080b8d753095b1de08c0fc7e4959da011dcb0118dd3a856d75a89d2f:0 2 '); +INSERT INTO transactions VALUES(22,'6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,' b26d7ac6c4f02ba75486ccd6031f7b5b78891da999ad5a28082b77c8188af830:0 2 '); +INSERT INTO transactions VALUES(23,'c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,14675,X'',1,' a97707e3dc3ad8d51d385701161d1020fd8f459b3668a9b0cf6d57a09416a3c9:0 2 '); +INSERT INTO transactions VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1,' c9eecc8059afd7607bf284bcc3322c5c34639e4707a8737c2a98526911c99390:0 3 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -513,352 +513,352 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1,"utxos_info":"12f21e3a989f7b28ece1e24d018126bf0b8d6344be24196d8362a1f218fd59c8:0"}',0,'NEW_TRANSACTION',NULL,'c4562b0e060729afdaf544c36180b5d83bf238a04b6c3e32322dad6af06a4bad'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','621914c81d39c367ce1938ec783279b313b38d2d340ff306b2408ff617d5354f'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1}',0,'BURN','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','1d9fffc1639bdbb834b0ed9f82652984a255adc495844bb8b8b51832db80e36f'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"98ccdf7cd2fb29a8a01cbed5f133b70b6966c6c56354dad00baacedd0673c87e","messages_hash":"3623f3bfc1f4e94f32f08ab286c2b7bcda0a00a9d2e20286c71b6462d1858017","transaction_count":1,"txlist_hash":"faf6476a908c85f6e26ca5d182688d6da3f326296602d5ad3aa5979cb8bc110b"}',0,'BLOCK_PARSED',NULL,'dea3330a3858963619ea050348fa352380bba5c8d4b0cbc301beee72aaaf0dae'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'349b735e860a46e343d40f6b3b903a15d7e5332c7354ad6cb27da82cce551fcc'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2,"utxos_info":"bc2524f34d7824f1530f9f53b1aeabdbf38a72ccc39783d41de0a7f80cacc16d:0"}',0,'NEW_TRANSACTION',NULL,'fa8e08741aff43ba11ca1a79a396a76d60d1ba1ea35e3eeca9e0d01ce7c2485b'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','a912e9e1a4dedcc8798fdf622671d9792b0ec420dd182059ef598e39f9db1301'); -INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','042996b972d6f04902734f4cfc86e81726596a1ed79bbf64186f31f25330b1e5'); -INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'SEND','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','9faf3cd41308cfc45f28507258096dd8adfe87e1260f0b52d58271550d56f9ec'); -INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'TRANSACTION_PARSED','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','864c738c97a389113530433d6f05a0b5a855a9c75347b6a17cc73f6de263f67b'); -INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"fd43dc5efe2ee796ef7d24f8d478a67aa58bf85f538ef4b9a49b983a315deb26","messages_hash":"7adab00de2e4ae3ea53c6f69479f45e8122028482f28afdb7b4e06d560186724","transaction_count":1,"txlist_hash":"544f7958bf7661b78699c708ba1097da0dbb044acee3d1d8aa9a32d6b659a14d"}',0,'BLOCK_PARSED',NULL,'0b9e8bdb46dcc8c1fd0f10c4d12ad52b9087558fd6021fa04dd66a1a7b2b3955'); -INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e996a7f54e67638b2fb6d5591a0af49a6150df70104c040fd59474f466b82929'); -INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3,"utxos_info":"3cd583567fd9fe4e8162cf71bc098e44cbcb8fe41ede6954df217cbe1e84691f:0"}',0,'NEW_TRANSACTION',NULL,'38641f6bfeef01f4c6683bccfc943bb236b717256c78f328772cb7fc75438784'); -INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'OPEN_ORDER','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','9564703046ad958b4a72ff94e700eaad7a3631a4443c4b37e2d6c52bd61793d4'); -INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'TRANSACTION_PARSED','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','4bb6f73da77d5b12750f129f6a0c3440e344eb8345408cf56e3ac35e82a10aef'); -INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"dbae4fff32545b4f3c104fb5a051dcaeacecd27401c84c09f93923b8bc30eab5","messages_hash":"184c4a04b4b41417c3995c7f512bde9e419b1bb221dde6bd19a9935f46e0d18c","transaction_count":1,"txlist_hash":"ee37e75a4eba165ed448b7cf96d188d7f738aca4d90a781c7f473974e12564d5"}',0,'BLOCK_PARSED',NULL,'759b1e885caeda18d522def5931171e64d28031e218da7f6150a07878ccb6d26'); -INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8605dc3dcc1400b590802c3707ba518aa2e61f60f1280bddbe2ce7fb1bd83d2'); -INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4,"utxos_info":"467d3d8a2e5651aba5af185af6ea44c52be3e315a2dd885d7ea2efb4d4cdea8b:0"}',0,'NEW_TRANSACTION',NULL,'f37f9932afa1c21f8bf83c1b672d94ae6c60d81eded656f950caecb32dcc5207'); -INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','eb2a87a9b7e818c9bc46315937c1e36d0803d7c435c4dd0b3003da1c068ee97c'); -INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'OPEN_ORDER','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','9efc0752eba0275ff4f837dbbfd5ea1653beb2b2438eff21daeda969cc1aa74a'); -INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','fa03bac3d1da460cc952b6965f220c98e20b557f84a650b74d3e884bafd6df26'); -INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','62b44823ee08edac10bdefc4975b80f0bc2001e7efbcf84a9ce8de4a22eb92a6'); -INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx1_index":4}',0,'ORDER_MATCH','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','ce67467675ff37559054f2112a6146fe8d60a2490eb056bf694f3aacd3ff5ba8'); -INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'TRANSACTION_PARSED','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','ad23c0af7c91f988ab4459db508a9e6adb41796b702788f35067f563d7c35a8f'); -INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"fd0ae9793d9513540246b94ad116fc0531e8e07b2c014752e175a12e2a7a82d4","messages_hash":"f768da98a5a77e142433acd535b10e26a9da322d25054520228c915eae831956","transaction_count":1,"txlist_hash":"107902b17490957ebc0d2cb5dba1f5e667e3a393acfd8b3adde9f6b17aaad5c4"}',0,'BLOCK_PARSED',NULL,'560dad86625eca2dff473b5c5155eefa898b40cfb7945fa6820cf01c87c79f7c'); -INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c61aa99bd5ae397b58d5b5a25c0f5321619c020ee123946bb98b8fc37084f606'); -INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5,"utxos_info":"bc49563c96e9ef2df2cbee4ff2c07be675eaf382fef1e249244bb8e712652577:0"}',0,'NEW_TRANSACTION',NULL,'582701c606dcff04c9618f1faac9ae63b3c5c5d51a7466004fd70d86c68d9d3d'); -INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','4f145be8c1e5afddc20ad5298c959d4328317da370163e9f1a637107357e28d5'); -INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","status":"completed"}',0,'ORDER_MATCH_UPDATE','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','0b83015d7e0b0ffbf3c8805d6ff6ce6b5492eff7a49f03037e00675964a72808'); -INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'BTC_PAY','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','0f82d36fdbb43e74951c176167e53bab9867681422a8e37a961fa77207ed9430'); -INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'TRANSACTION_PARSED','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','497ca5a7953f79d81ccaa13a6390fe8c681cc26d5d5355ddd82d1dcdc99830c0'); -INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bd894777a85b731155a0d6362766b4220c03db4f3e5fbf030d6c2529cb5f3537","messages_hash":"a61a244934ba99ed701f2bc7f70549c3f463473ff7b7e097b90f4d30042a7b60","transaction_count":1,"txlist_hash":"65e6a7c64c8439a60fb066d96d5165e6e40974bd1b98812ac6a4172fb1db1511"}',0,'BLOCK_PARSED',NULL,'733d2f81844570c028fe1b9ec84cf2cb63e4d4b1bccf77b064564b891ad4ad49'); -INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a14fc89a2f0c03c286a31d7f2b56ca016855bc65370b6ac4362f33a884e4886'); -INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6,"utxos_info":"d00ab6be126b638ef170c4ae70f5688538168d0b1ced4133fe99c21ca166cd76:0"}',0,'NEW_TRANSACTION',NULL,'c336f0bdadeb2a2c26834074bbed74c0acff8510020a67d2c39ad219173559ba'); -INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','b0964d7fad9ddbb9b3e8584cd7f412adbedc580afb0db97c4734d72f34f72cf8'); -INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','eb14032964146c0d895282d212f94ffa34483b775048353ef06b570e5562b35b'); -INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'ASSET_ISSUANCE','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','3d7e8e6e7b9081ec9e44647512c972c3b07301dc1f2216918afb0819b5c289be'); -INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','c85e6655a2a8a3c2729e02d7d094017947e86cbb26263369240a861b768795a9'); -INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'TRANSACTION_PARSED','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','e9bbebb14ba8655cb7265a4b52871571d78160c99ba65656961fa41ceae5edc7'); -INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"264c98f1d460f78e52def545d25482fd76549a5309d04841bc27b335f06470a2","messages_hash":"87bc39c1cfdda6f4eeff9c7fc32d4a8b4305f00668a85c222e90b44f81e23ff8","transaction_count":1,"txlist_hash":"9ede5548f7cb273af825360a6285fe9a51e9625c9084b2dde7bec013dec24f0e"}',0,'BLOCK_PARSED',NULL,'480b1a6c99fe21803e4f43916bc404fbf9381de96e7d75e6d67619d576986ae5'); -INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9717d91f9da741979af5b08db5c20ca30e3a179ab287e91c5566711f203fdd70'); -INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7,"utxos_info":"682a11acb7553de4c3f0f55a61eb033d432adc2ed310a9b1ded49a5630497bdb:0"}',0,'NEW_TRANSACTION',NULL,'813de3e4e7d903407b6ce073f7786676fbf05e81b1f1b29e0f0dae457347c1e8'); -INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','ec22edaed79f3baa44e3f97f1229269d4b845c58e88b29caf5c4090a55a87af9'); -INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','0dccf51d79baf5217e9a4f11893d155724d633de90005898c8ddd8ca02256c0a'); -INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'ASSET_ISSUANCE','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','d24d3088b66587bd28e125df2490d9dc8555ab4f7ed7f66cdba3d030694cfbca'); -INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','ab4c9ff88ba2981c2dda7e9a2ef41fe3c161ec2fd9adb166269402a5249c11ef'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'TRANSACTION_PARSED','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','57f5314dc30bda77e5e4b12e2eade12b2703e24233464b4746d52e94c0339e65'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"a1f2aa5a0b8d030c2fc4e1243c3173319ecf68d232262ea3dc8bfdd03a3f923a","messages_hash":"603c141c657a3f0a15800fdea87d0e1497648d77437307fdd4ae2255c73b31eb","transaction_count":1,"txlist_hash":"afa257be6b0f57581b8f1b932b3c8473ff5c89e4bd6c3d3e3dd6a8c3cd9b09d3"}',0,'BLOCK_PARSED',NULL,'3de6daeb2b577301a283cc88aff421d972d3cf22eafdc8b327074127a86a67b9'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afff90c6c803fcdd453e4cca14cd68f9cdfe1fb1e8399ebf53a3febd0cd58d85'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8,"utxos_info":"d8757243c0f0522e40e5dfa29c2958f3e2ec842b4da0761cdc1612063ab36599:0"}',0,'NEW_TRANSACTION',NULL,'e6962ce265500b1f646af6ca9bad6cf6700a313a9f37b4640cc6af943e5b503b'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','3d6e71583ffbbc41b57858bea5fc4e3e919f218e04a853448316cd314c3165ff'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','78e769da30a1b0e54d1bd60240c2060dfde962deef94c80fac3d0c33de845994'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'SEND','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','3db88ed71068e22e8e79c66c949e3ede6a764fd8d07c46cd8434cb7a4ba1f4d0'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'TRANSACTION_PARSED','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','c4957177862f7965129d47f26e67764cacc0533563351731d3537bdf27633bea'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"8709aa2d5064ea2b7ab51a887d21f5fddcb7046753cd883317b533ed121f8504","messages_hash":"b11d3ced5f6094afb447433f41e2ff7c84248037dc4d580843eecedc322f98dd","transaction_count":1,"txlist_hash":"40941bb90c086bd2716de8afc1fba5eb75721143a86a606ef99ee3312de95614"}',0,'BLOCK_PARSED',NULL,'6ac84f601e6db3f01c42484f59caca189b464dc7ce0daa1a36f9804820e67f8b'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'031b3b2811ceb660bf0fcd77d51e1b66b731e657391838ef009d16b787fc3e74'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9,"utxos_info":"0a016813237e5169e6aa6cb199572ca6479c5245a3d48bd0842de4aac8a528c9:0"}',0,'NEW_TRANSACTION',NULL,'2e848242044802c8979a8b73c5866e31431bc0fd664b8adef0d15a9d9cca1d34'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','d6484f31fd46b882cfd59ffe0256d8424fe339d69f668b911ba127b40af4fbdf'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','3753fa4bedd92a369b13b6dde046acd1ae64d3fc729f148e60dca0b9c09fbed8'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'SEND','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','4d2432d5baa624b686ba2d45e3535e100c93aa4a60a46cb832e29638105d8976'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'TRANSACTION_PARSED','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','9183f47e3b9b5082e3b08418541fed4b7f1a492de23b5770bf35a37ca4cab9d8'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"c1c516176fe38b69b31e3668b5ef20805bd90d3112c77f5652f838af8e7f604a","messages_hash":"c374e2c17c37b2a752eb46bf7e89942db70f82275e00eb60c16ee2585c95323c","transaction_count":1,"txlist_hash":"9b186632fe722ba57daaa01573568c3d3405f7fcb0a729005a6338266a4debfa"}',0,'BLOCK_PARSED',NULL,'ff1f123f261208c6dfc1c1deb4ff3a4dc56c25375b699809d3341e5082f7299f'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab624e11fa1d903a36fbac562b5b9c3166c7cc5798d23aaa57012e52acf2f32'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10,"utxos_info":"b62286ce041e346cac7982d5a815df56a1b55778f1575f08e24c0654400c0534:0"}',0,'NEW_TRANSACTION',NULL,'e5e12e212421268ea8b85954d68573a4c55773fe948fd7e42f932f8ff268687a'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','c487d6b6cc0876ec7940fd828ad05cab36b0ba1e061476443969deaec3594594'); -INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','a676894c89bb211a0117f33fd658f1b115f1567ec505ba122e002850ecd11dca'); -INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','25633c9954df162ac71901f86bf05ffd895e1e9b092b04f8aed6d87b85bbeba8'); -INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'ASSET_DIVIDEND','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','5f3a8e62dfdc5c09efcb1eac78d63bdfc9364606c7b99e171dd11503e6e4324b'); -INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'TRANSACTION_PARSED','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','a7a92524f67c6b481a1742e423990cd24880ccd5c4f98a2f68a00e74343c6ab2'); -INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ae8ee9e681f0ac96de96babc1c80e5188b3e0cb91074a0dfd8511ee7d0ae64c8","messages_hash":"123c52af3a6913f75c4eb3926681e4e673b95f29ce1a49390b9f863fe35ee3e8","transaction_count":1,"txlist_hash":"39f4f154cbeae9a65b43ac831b2d5ad0e6f6575b909b979bd4bd97dadbab4cdd"}',0,'BLOCK_PARSED',NULL,'251dadc98738c6c4561383435c384b392039cc883d4839193a0f0f85abf57998'); -INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f855ebfe07fd61be7de7de164cebc2594c70ff1ac68e4190b908a645cec5e7e'); -INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11,"utxos_info":"78390d392d84db9734cda0f6cb43b9eb49b0568e9473650ab9756c21c4b992b4:0"}',0,'NEW_TRANSACTION',NULL,'bbd74753752c77f69b9cbb394b44e4609a78a1b40e04c875739fcc5f51855c22'); -INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','017a16627a3903ec9ee6bf21f7f87d346722003af7d632bd94052104eff696df'); -INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','0919498602a5f231d61262d55496722064a116c0c4b1fbc93399f634dd753f3f'); -INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','6b5798c41ef66119d6a167962512fd77404a4308e7d299cff6647653acbe09e5'); -INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'ASSET_DIVIDEND','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','d2a14cd5b5627fcb5c3193f734e963e281bccc39e545a43680d7a3075dfbb136'); -INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'TRANSACTION_PARSED','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','7b92428649026299467695a4adf485332ba6b9b293f7dd866eee4ccaee5610ae'); -INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"0451ffa5d7ffb0e588e58ac7eacf77f6b3e17f1d27c1039f03d7716b16fb234f","messages_hash":"819db9250eccd28e19c3e5fabb4e5ce05c747906a5e3935353d3625c593534e6","transaction_count":1,"txlist_hash":"0cea2e2e06c6423d1c5ba19f6128fbe8fe6d6c3688316c9c35dd31cf03d38c97"}',0,'BLOCK_PARSED',NULL,'91b2d7d6912dc52d36d08f431e72e1e691be8aa03ad8685b53d1c4886d1b17af'); -INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2734bec3ed1e59730628a075c6ff58590ba55056aa6a1402115b15769cc8f35a'); -INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"utxos_info":"d80f8093a99a0c63350f3ed29af416454993efbade598a2e4de4873dc27180bd:0"}',0,'NEW_TRANSACTION',NULL,'3dfcb368aded39788dff64f48795936ce5914b3d127853125bdab7cb0741e66f'); -INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"value":100.0}',0,'BROADCAST','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','c385089e6224b126c4ca5776897b7fa70226b00aec5bbf6ce22a3ada9c6b357c'); -INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12}',0,'TRANSACTION_PARSED','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','83a9e9b63253769463bef06b6348bd3a86a1a7622beeee1fec4f00b8addcfb10'); -INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"dfaae3f28c2f75e4bcc49034ff2a191b5a41b88035c5d266181617c8c65ad5d3","messages_hash":"e54842926c5bf902bda438e0e7985012ba1063f75c1a75803574fcfdb9c93136","transaction_count":1,"txlist_hash":"0134329cfdaf63e5946b9b5a94b73f59b9a870d4569ca07c0cce078bf13714a5"}',0,'BLOCK_PARSED',NULL,'6a4bc61cc3254d29350de7742bb0d1ba9eb5acb54c790c38188f7816bb3fdcdf'); -INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e60bb7593b83bef861907ae413be7a751594fe02b6255145263d8117beabfa1c'); -INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"utxos_info":"0081e95041304df8c910d143341190089eb619caefeb02e8d1b803199aeb8c4b:0"}',0,'NEW_TRANSACTION',NULL,'50b47d072398d9620589461d18a0f21ecc243e870ad33c74910a993a3d669637'); -INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','b02653eb29f3ac0d8a1e03998504b0817d3876728a423a2631616681012936a7'); -INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','9c10a58d52785fa4c1189b86006275a7dddcd573696a3e8759c1bbce4773d95a'); -INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13}',0,'TRANSACTION_PARSED','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','53a95fa99c046caa2b9727619bd34262b97361afa87ad2e2f2ddd387bac59fbb'); -INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"c711e8cf2d9bbed01724a7b22cbd4900a4fd0a126bb7ecbd7c97ca15a6276553","messages_hash":"3eb36f130e73e8480c96d0084166149091d704c7995e6031ecd44e372a09e70b","transaction_count":1,"txlist_hash":"9a3fb4fb846c9ffff3a50a0a31f3ac3900ba7048a60dd69c6e14752734358f1c"}',0,'BLOCK_PARSED',NULL,'c82bfb0dcd84f1e8e2c58cc22ef6f40f3bd507f85b5021523e279933da24d265'); -INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fff4c5de6bde2a3e320fa07aede4ac5628cce3e3712932723b7f95dc6027467'); -INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"utxos_info":"763fba63964d344185ec530a4b2e18cd83641a7bb280d7dfc1881772d74a9a0c:0"}',0,'NEW_TRANSACTION',NULL,'b0967c7c2940a26486b9c3cad1f7673196c28a2f724e678c6bf78dc8ce88c4bb'); -INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE',NULL,'b3ff5e8a384438bdb4411374eb0c40935c1c66d937e398436acb22059a6ee510'); -INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'c38c61dffe9f1256651609a46e2bf123280dc5cc70a30af7714fad5279fa7438'); -INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','d4e1f5394c96fc27d32f202a654e5a11cd7bac30fbd321c0fa7b0c06e4cbef2e'); -INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','a5dc08a6b3401068677e889ea9e103ea3e3880e9f2a502597719fc59cd8e8f6f'); -INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","wager_remaining":8500000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','589be4d04083a47ec903c530059689debdc9f9043d2897ee698e17a6049b80ad'); -INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','66032ae4f1f22ef4b2798dbdf9e1ffc078dd3637887a371cb122ecd9ee1ac005'); -INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","wager_remaining":4250000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','b29858ff03df16b52a38e699267a1ef64303e7fc7be20bf2f42abb202204699a'); -INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx1_index":14}',0,'BET_MATCH','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','ff101b330f7008e20279e6020f14d80be0f972688fa0da852a07bcec347b472a'); -INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14}',0,'TRANSACTION_PARSED','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','69d7146ae7794a3e7111b23725236e98c9f932df6fbf88038797d4838df0c4a0'); -INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"3dfa5822de8a4c674f1517b17e50d2ef63ccbb1fc4ae96fe5e1dc05cd353aa4b","messages_hash":"a176fee03dc5ad3f9024fcf4096858f84c7d6989649769a39a075275eda4e2bd","transaction_count":1,"txlist_hash":"6228a449b24d607b8fe1aea60a0292874cfe515a9440bee2829f6e61efa0b2a6"}',0,'BLOCK_PARSED',NULL,'2aa1f0042533d58fad071e0cddc29a7b502697a939ba5bc214baa8ee8ed85d21'); -INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e3b3b701c3e90a26ce78fb78af5023a53cc8538c6e57a3fa1ece051de4c5242'); -INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"utxos_info":"1c955d683a1186672eb27bc0364c7b7c373341b2a40c8bb906cd39ec9bed60a1:0"}',0,'NEW_TRANSACTION',NULL,'b3663a9ef1d8d6243f204d73c56e4dcab07106e61c82ca8c3ea052c3d3f060b2'); -INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE',NULL,'fb4390be17fb87d8782f01fba988a3fcfb0957a873529ea63ef0f6c3bd2e500e'); -INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'0f80f0228eb278cf40b6f3cba6eec6ceb14b18b278c5e9462021ca026ab2d2b4'); -INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'1bc82cb9db0d15b2f41f7a35d99a7cff02ecc39fc376286b39c576843eee933c'); -INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','8509a55fa57f6e4a61eaa91b33184a8dbd714d64367549c35d71e319c6621d70'); -INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','9215601289cdb9d56e9e6ea8bb63f3a437b85f1be74742c45ea79c48b9f9457a'); -INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15}',0,'TRANSACTION_PARSED','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','798a40f1f45732f333bd7644af63dc30233a5eb2b08b58afdf3bc11538783477'); -INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"49fcaed957776bc62c9f1feac30dad8c0574596d312f9efee7a453e00bf64866","messages_hash":"9d29d6b1dacb4ef04cc3877b1b6f32661d98822e7f536a2eb49d5a904bc406a2","transaction_count":1,"txlist_hash":"700cf4c54e23c0cfb4d8b02bc6cb1ca509637dd95312629625aa92d32d5548d2"}',0,'BLOCK_PARSED',NULL,'5fb12aa9fd3bf38a6a769dff75065f4c8e75b186475daba36ffb5515ce0ec168'); -INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'578476cf9e1c71f575cbbdefc3804656273726ebd067128f4bba9c922417d869'); -INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"utxos_info":"c3eb3463857a8defa936fdb1a10580216ebcacd843ae6a59d0328cea5b2f1f83:0"}',0,'NEW_TRANSACTION',NULL,'73de1a4795838264ed9cd479de6bce6f7b1b1b61e6b07d7a4da57f67514103df'); -INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','3a65cc8a16827da88724c08fba2662969c180bfca0ec7da77fdae95b5b64e24e'); -INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','563e7a0c41453ec1fdacbfc42b09c89a3f7c7860624c6660cd20d381367876d1'); -INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','3ff48f6b6a4dd5c53500f4a79c51ddb117ec837fbf6e7b33e3073478fe99308e'); -INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','f290ebdf29ac9c69fed485843f262564b6c40c18e0f88fd10b8cdf4fe6d54d26'); -INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','9a6e37c18f6199631c920022cfd593ee2c12477afdcb4198d402d8514cbba7c5'); -INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','e5326f63a0519aac84c9c0ceaeb4e9fd309b900f06fb4f85709cc259819bf336'); -INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx1_index":16}',0,'BET_MATCH','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','959dd5b1c1d7423c144f0fdc2793ad7f00783c00d54bb533a1e537a2176b3d3b'); -INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16}',0,'TRANSACTION_PARSED','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','e48aa34c1adeed694b23a023616093a4e54d18993ee9b5564796cc7cb6a097fb'); -INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"4e4abd3e8ab2658a7ac673e3a178ceac76fee41cf48bb6ed007d241c079979bf","messages_hash":"517a465489b9c047177ae9ffcfe6de613b58012f0e051d3580d9d94ec5a7d300","transaction_count":1,"txlist_hash":"288c9c0f37cb0c2e9db66d4b88b165391a67f06016ac84c485e9b9158ee51f2d"}',0,'BLOCK_PARSED',NULL,'ce293debd6582b6dc4bed32d12b23387e00d5b9bef7514a0b4ed8c7d496eb30e'); -INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a597fa1245fc2eae30fa78e846c5054bb8bad2563b4396acf77d05a622ec1883'); -INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"utxos_info":"6e87b9e2c5817b3fb2d8884f48f50697733404a54dd2651b5f45b4da35545833:0"}',0,'NEW_TRANSACTION',NULL,'5632572920222cc6a20cf0388b65af96695d485ce4fecf4b88eaf2f594cdaa70'); -INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','71b748aeed5aa082b457702104cd57d6577e7215c1b65e56d7198c7fa8972fd0'); -INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','94a04bd2d038dd81eb7ee259336cd3ee0eadbf55dd1aae26520797437fdc78c5'); -INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17}',0,'TRANSACTION_PARSED','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','c7948660b74b182a92e9a01a9a235d27d3ee59673dccab5acc976d7c487da771'); -INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"17a28cca0777254af26544edfefcad8810e847e5d173fded9a7813719cf1162f","messages_hash":"ac2733ba22418b1d94bd24152389dfa9f9d0c98c792431c2e2c2e46b140077a4","transaction_count":1,"txlist_hash":"1bf7e0a4aa8356584087591a8c8e8b28185a6ebfe1a15a85f01165a04ff57913"}',0,'BLOCK_PARSED',NULL,'142e810e9475c421e9fc620f74f4a2fa0116ef15c8a1ee0f08ce093f99e8b84f'); -INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'795f2c980af941098db214ead00b68ccd7f4e82c4d2712ac8c2dbe86adedad27'); -INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"utxos_info":"0fe94e9ce6026767f7c6fb2159bb0caafb1396c8d666233718d5b549ac1c9d8b:0"}',0,'NEW_TRANSACTION',NULL,'6309ad7f41a5777d5a215699a0369df3a298bdfc6e81cb2dafa4b538a5398511'); -INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','8c3ab89632bc67d94e256dd20c900e5807147ac3d6dd7a7f9dc2cb4054f96481'); -INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','dcbd1752e3e55cb7f940aee4b53848abcd85e37d3a4cb0655de12c7ec1ae689b'); -INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','a2459c5de20517c203e30bd50d2c1715dcc0cde2deffff635300b18ccde60a1f'); -INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','02aa643402c9a7266123f46c6b649f791a5eeff0278d7bb7b23806723e02cf41'); -INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','96832f437ab35d6dc8ec976e9b4b55792354c03803820e49b9ef3206506bc1b7'); -INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','29b04a559aa17f3553721db273348255ac3e819052063c88641d842a4bc23b5f'); -INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx1_index":18}',0,'BET_MATCH','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','150a8520c2297d732d00f8a391961d2f6cf3dcceda5ccc206132a8d632b025ab'); -INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18}',0,'TRANSACTION_PARSED','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','4681e19c2b54f1560315801f1a3812ca3c00ceb6c3d137e9329bc3bfc02956e2'); -INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"1fb58120e9eb78908fda6265cad12b4a5770701e9a271bd5c4bc94059bd3bab5","messages_hash":"f108562c7553e868c5f317d4e0a3dffd891923199060910adedfef4ed7e2f0a6","transaction_count":1,"txlist_hash":"62678a570c40b5a12469e442b3a54f1416d9113de2db501f37ed533f345e71c1"}',0,'BLOCK_PARSED',NULL,'383dd2a50c1d63edcb4f07f4fc4d75479bbe7d56a90cde6b9cbd6e9b07b07580'); -INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb55a71a711c16783a415376180ca5cdf38254d37b783f578662dd7003038853'); -INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"utxos_info":"1bd34a2e5fa7dc79e1f1bff6fcc0532e1c8ee5714ffe51d4db117b1ff4849270:0"}',0,'NEW_TRANSACTION',NULL,'39f05d26e1b265f53051f6d866116635a81ceb58b794feb82deba519fde46c70'); -INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"value":99.86166}',0,'BROADCAST','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','5867bda7985322bfbb53ed16b553b6c480711105926540f4490874cedffc8fb4'); -INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','2fa9e55711c5cc0944b5383ea73e2ab21d5f1c41c13847c6c6b5671b7afe9116'); -INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','32587968ef21ff4a247edb67e77f0719ddaea82e3f36a1ec06bc1a478c878901'); -INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','00c2749b7c59b3dc16921e6ab168b9cc818042cc5886ff8d9f411bc6252be5a0'); -INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','7690272ff21b9ccea99f427fabdd28adbe1687852d6a8f606d4b9aa4f1844344'); -INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19}',0,'TRANSACTION_PARSED','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','c4f8a0f8ac14178545f81571f01eab9ac90e81317694823a7f1792b5d6d47cd7'); -INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"304243c1b11644e04d325d7100e4c757c07b874f0349e60163a5a544e84e951f","messages_hash":"94fae4523b535b7b5416e63ef3c189395241a7bde35453caaae5cb251f5eca6f","transaction_count":1,"txlist_hash":"a174e4813aa967f5466148f27f4f8511ed9404295bf613e112c08b72eb3229ad"}',0,'BLOCK_PARSED',NULL,'2b9154516f53cc99cf8b65ca3d582d23e795d2533084e344565960a20407bfbe'); -INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b317317f62b928b2bc764c85e7352b50d002b21ad193a597782b0d7f954fef5'); -INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"utxos_info":"d42e76bd859bf8b182e6e798cbb571f766fc69aa64d9b71c15d5c04f7fe8d0fa:0"}',0,'NEW_TRANSACTION',NULL,'58807e994c5b61f674bb5bced139101c9c72c72af916398bfbbe1e0f86dfc721'); -INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"value":100.343}',0,'BROADCAST','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','4e55408b836a95c51ae807f74600b27932f690d5ce928279661fcb0f37e37d67'); -INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','ccf3037360bd08261c70ab1df71440d12f733ed20042395a594b812187636185'); -INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','7a8173cea143c14fcc6ccb1d5d583bfe4146d321231ca52a0dc168a8f0e2861e'); -INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','dc008deed6ff5560d6e16f78f38969058b12afe831ed8d4b8f7fbad74aaceb8e'); -INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','552b0fab91e1ac426b007b6be923a7290430d3362293d6155e9e73dfc52f0cc8'); -INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","status":"settled"}',0,'BET_MATCH_UPDATE','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','4a91309d3ea7abd6ee196aaf76651cfb5c8c8b7084e5c5253088b3ebfcaf9712'); -INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20}',0,'TRANSACTION_PARSED','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','a341f53650dfdc15086d21659bef38f4fa14de316f600e1420ece250930a3066'); -INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"fc9905ee4863b3cf29a3e558ee690a24ed978a4fd79c464bdde30a34cfff19fe","messages_hash":"8eb8bcd2974acaa109119827a6a2f148b54acd7ef046a1eabcd3c711a135e697","transaction_count":1,"txlist_hash":"c551c2094651cd0e06e0cd9d513fec771b69f4bb89c3034f201c89f703cf8a23"}',0,'BLOCK_PARSED',NULL,'1df639c46353c57678479ab92619e580ede0df4cdb825f1d1ce2d2bd7ec37b77'); -INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d66f8e70a6c3ce90b4e6bfbcd14e53d8f2166f113a4a1a6573f84566bc10f210'); -INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"utxos_info":"35f2a884080b8d753095b1de08c0fc7e4959da011dcb0118dd3a856d75a89d2f:0"}',0,'NEW_TRANSACTION',NULL,'387e504c2a7b2cc42f3dcc8b8941f51cf99785e57a96115f34125b8dda25a358'); -INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"value":2.0}',0,'BROADCAST','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','71b983027c0c5e75499c0b9fe66dbd2bc18fd7444154c3967f80e5fbb45ff98b'); -INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','6f0263fd1c6d4af42f4bbd132d671fe4517df2b05b86e98ab57056053a339d76'); -INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','1d9bbed6deabdc036947eea733b02fa81232af7f1b58d5ffdf8cdceaf84cfb4d'); -INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','cc2fe291513a8bd7bf422c2d2f015df1c5f5fc6106f9cd6259bc2f817e1914ae'); -INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','69c1640f18263115655f8f413ac4919fcf432a23ffea9e1dd856baa0d9b145bd'); -INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21}',0,'TRANSACTION_PARSED','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','091d01302ba24d47a76d6aff934eeab6e95649c9c5c1d83210e4474bdc9d375d'); -INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"e433feac4a09ad727bd3764b10a568acf5c659745a695e9d7e8790514f6bc98e","messages_hash":"32980f68eeed329ada0bac46146a50e54193ca57a310e72605eb5830e6305b62","transaction_count":1,"txlist_hash":"087d41720991e4b6bb72c6141334a65c9a289454dd8fd57edc33a09db467d086"}',0,'BLOCK_PARSED',NULL,'ec751e75df853c3b7b7c41aec199f132bf4ebccdd5732f7937ebeb5cd4f04f0b'); -INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3556d8608c5cfc6ea4ed7b4aa7f9bed1cbfb021ced373daeb2dd6b2c21521c8'); -INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22,"utxos_info":"b26d7ac6c4f02ba75486ccd6031f7b5b78891da999ad5a28082b77c8188af830:0"}',0,'NEW_TRANSACTION',NULL,'efd05c54eebfb922a378e447a4bfc4b8c981af4f7803b38c4547c52c5442d9d1'); -INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','84de809a9cb96cbb1fd0ef4bed9e9eb8c9cd308403f7037eea910d93f9bebed0'); -INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'OPEN_ORDER','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','386288135fe6a38f71c21b37c398a00f56fdb6b26c0f961217246ce601d94177'); -INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'TRANSACTION_PARSED','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','00c0135f3b38e3f60b40d3163751fbd401554e8dd07f5743fb644fdf6311e610'); -INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"622f92da40eae0b1b57218b32ad18daf7d79c9e0202fed4a288d75b8fdcd19d2","messages_hash":"812e86666b3011b817077578811956e488887b458836cfcd3ab72f3a27e86247","transaction_count":1,"txlist_hash":"caa77e83354d56437795411f9625dff332c0dd39d059a0ad7381fe1f37e38999"}',0,'BLOCK_PARSED',NULL,'b0fbe4c0b7e9897ef85d774a9fd3ee954e44612f827c74275fc86f413182b98d'); -INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14dcae9e947c143d0493cf18d23578db8b7c81f61de1bcfa13de16fe7716eeeb'); -INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":14675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23,"utxos_info":"a97707e3dc3ad8d51d385701161d1020fd8f459b3668a9b0cf6d57a09416a3c9:0"}',0,'NEW_TRANSACTION',NULL,'30cd66b3c0feefaf8210d7ec0a40dceb4d6eb5297452674e6459fc334e7f796c'); -INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','b459bce4cbf54340180f737bce4a62283621ab7147f252e8713df2cf744c921d'); -INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23}',0,'BURN','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','9a85a733390e6c94a7ffef265e368d4f155a7ef5f4ce6924445e9a25f2bdac77'); -INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"b7aa8d9ebc37d52d8dcce2cc17431d6edf5a183b73ac85bb3d91276592215cfd","messages_hash":"35ded8ed45aa6e5a1ebeef71ddbc2c89f1777d3af7bb6a858f2783026b40b918","transaction_count":1,"txlist_hash":"df23960a57099b0b64572553e56794b1eff3004e684ee2b31187b585aeb03587"}',0,'BLOCK_PARSED',NULL,'2b4b1376475317c75d92533992de3fdcec9f997f46b582db141d91e69d69a82e'); -INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66915c9a97ac6abc55a182c15ddfab4be86b97fada3ce1869004af387d2a9a30'); -INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24,"utxos_info":"c9eecc8059afd7607bf284bcc3322c5c34639e4707a8737c2a98526911c99390:0"}',0,'NEW_TRANSACTION',NULL,'99775e875966e782ef9fc0849cb7384963f6c8e53534092afbd37db87817dc41'); -INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f"}',0,'BET_UPDATE',NULL,'85c9536f82700294bb52b4595c3c3d99be24bf42e37a09bcf8c1918b756f1d95'); -INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'327df7bc1e6df48bd460a3c13e400b9306ef903f9ad2d2b9e6dd96f9db6a1c72'); -INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'699db8ef5c0a62eecce4fc620d4bd78082fe0c81a9711b114cb38b5111103a15'); -INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','012e8e79a3c24b0e4e5f43abd5a0a0da2a1202b935f0aabbe899b73e6d2d42fc'); -INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','3a294878aa1a00ed4fe9aa1dc263be1927b76e2d5d065a9a40dee2fedda315dc'); -INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'SEND','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','5a97975af7422ed6d299ac0eca53f0d48d072f608b7bff0422b25e9b8b7305a0'); -INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'TRANSACTION_PARSED','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','9cf13cf476363538702fc946e1da2ce78060e8a4c59369faf6c87ce77bacadab'); -INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"501c058860063ca599f3b946d465b3bbd84fd483a2a80527e456e3de32b48a19","messages_hash":"0aedb6ced2e21c0fd8b956947641a38405e45f6bd468c3cfc77d7e563a0e33ac","transaction_count":1,"txlist_hash":"c680a6d4f839ba4f9420a99f0512e51fc1db0b661ed027332f440c6089eb615a"}',0,'BLOCK_PARSED',NULL,'36f87747d8dea278d0541a9d5c62dcfaed41d60587c39cc8811bca7cf49a3c64'); -INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'223f87426b69d9ce85e2980ce3405867ea3aeacecc1bf68e3520683012f15551'); -INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"222986ec44fae1a6196d64dec24b79872970823f17bf0459d3b247bdef316675","messages_hash":"cca1a26027d71afe0475a387ce5b360a9b2037b97d9b41b68530bc0a2ebe1698","transaction_count":0,"txlist_hash":"f40aab7ef7167a17e35279423d9c14d49a9ebc05691fa658b09add1373216959"}',0,'BLOCK_PARSED',NULL,'e8969318f53533fe47782b0398abbb84ef43c18b56487086db13748cfde59306'); -INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b89fd6c4a20ce219586aef5734c46867523301083fc0eacbe863d0713798eaf3'); -INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"bcd88006b9cb98445a74c656d424435e82eeaef95dd9c54e394b42808dc9cb8b","messages_hash":"1d2ec6d87f978d6e9cb57997842da8ad6a81c31f6b32381a7cb1db192ccf7557","transaction_count":0,"txlist_hash":"0e3736813d3c0e789cd9474449abcf83118b5559cbc2f4dfd4d3ee51b5847a57"}',0,'BLOCK_PARSED',NULL,'146256979e392609f8b0c7b7d6be199ed83eec1dd8dd919e0ba2525870065001'); -INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b22c3f15b23bd4de1ff15c0cc70cc5a29a5f9534bfe83c9a453c318edcda36fd'); -INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"3de7bf2043ac2e68bc9eaf8d1c12195a4f2400bc78c8deed0d487af11edf401e","messages_hash":"cbbc9e3eefaf01335537486aad05af2d831cfde7302b18e0501fb167ba6ad8ad","transaction_count":0,"txlist_hash":"c3572580398fcd71e5a1fef6e10217a99dec1aa605d61830ebb64ea65b7907ae"}',0,'BLOCK_PARSED',NULL,'40cf23e319335dc83cfe31d34d9e89dd0514e2533ea7f2c8d4586bed02cd29ec'); -INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49b38bfaa29e6ade49cf3a36f168b9c3a92dcdb16ecbb6cacb00f3f8dca500f5'); -INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"6c2a67783cf36e8987dc1805f87532ee1b94f79fb00952d8ee4cf3daaf655f85","messages_hash":"fbd0cf72c242de4ebddfc748841cf443d3ea0a48e50e115ba15eb73c4cc24633","transaction_count":0,"txlist_hash":"b8b9d102d56df94d4fcea6f8aeb92d3cb859d3281c9fac7407842b7f05313737"}',0,'BLOCK_PARSED',NULL,'7f6747fe257a10078131187a22d569090ea9a73d9805499448bc8c337f7e0990'); -INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff4257725a21dea7a2e8af82f126c03187966f2b93581e58842e7a0ce0998c66'); -INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"659c73390e2e7eccc07d690fb438181c604787208bc45f466e57721fa1e21a64","messages_hash":"02bb87deaf0eee77ebc1483a4bb2f4a52ef153f48c863dd5ecd452029e006a3a","transaction_count":0,"txlist_hash":"55eafa176bc145ec7b98497c8a156226c68bd3b921cbdd06a890b2bd660ca050"}',0,'BLOCK_PARSED',NULL,'e0ec40f6c7f07cbbb029291dd29a57274bc7841011560a5c57e39fa4fca64c81'); -INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b46272773ff9ac95fa93d8062a8eefd13c4071bce7000e7bde91614fdbbf9289'); -INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"87449e7ff7316e49012934d83c1f5b733cedf39680299a9582eb216e260e0c02","messages_hash":"6f4b3e66997c5dd39782d00a208c90f348a8e7b5359eb1bba2157e99d6c99583","transaction_count":0,"txlist_hash":"c2fc809ff3ef6b74b10b1439fe15c275c6fd925e92dea73cf9d603948aba0d8f"}',0,'BLOCK_PARSED',NULL,'113df3f5c5d95693265353d8898a5124cbad203e7ead7747fbc6abad206bb765'); -INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b3e6288440652f497002e9be1aca9846108e655a8dfdc11d248e3ed31b0535c'); -INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"6c4a7f749d0308edf5c88b3ea4de3b1d497ba3bc06435594d77686318b744b0f","messages_hash":"ec79840ea2d6673cdcb440ad7c13918c79973134258eb4333a6aa2f97db4d48d","transaction_count":0,"txlist_hash":"45db1d0cde22349299df8245e7ed24d308e1b1cb227098178606650f20832aaa"}',0,'BLOCK_PARSED',NULL,'b41da87cb3a04aa19eac03cc03a261bb75cbb98e6e97738e69fb1e0456dc8520'); -INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00b788ecd3ce19447f7251527041e11ffe2aa6e3052d97a6e277ec630081c273'); -INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"ecc04b1b2c7803ca17dc2a32adebd0960de2c04c8dbfec9cd88771dd883c885a","messages_hash":"fbf06dd0ef5601ee0a9415ea8c86a7425a0dbde4fdbc4b03f68bee68fdba6385","transaction_count":0,"txlist_hash":"981653075dd609f44e0a5673dac2b63824b84e26080ec226547892c67dd7cc33"}',0,'BLOCK_PARSED',NULL,'828f9cfa2848d8d74311d9c8cb5f17a7949cd2c66342f5161e0d348431759286'); -INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59f4f81dab31f670ab440f0be87977001d3625d299004e03e552f6d3a09f48e'); -INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee"}',0,'ORDER_UPDATE',NULL,'dc7a3cbe56768cd6eaf8c6021b89bed18472a2bfaac0c99839ea53061b091f90'); -INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a379c4cc4da0372996f1a48e89abfc529c4fb50c3f437979ba5e1c5be57515a0'); -INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'e322e85fda53c30fbd4c8ae3a595d6de05e757dbef1c4faee34d151de42802dc'); -INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"01e769c5b990db44a9e534bc6c759567eb4283e0ea252578dd525923c7fde02c","messages_hash":"4e4109b78a7524857ade4154ef083fd830254b00f074536cecdcb5c77683910a","transaction_count":0,"txlist_hash":"81778134948c3577216eeeb6db7fe9687545d855dc3b5f6bdf6053a7edf3eaf3"}',0,'BLOCK_PARSED',NULL,'345f3af0e09fe11d22aa2f64c3081abebc108c2f6c4df453e6f4715ea67a6310'); -INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df0b5798a720868552afaaa8c17b1219bcef0b6c00a8a47de530a5f1a5ac40be'); -INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"2df6b8dca0ffa8d6d55997605188637c2b86300e4dd7ebe3f1f275690169fd46","messages_hash":"5bcc58ce2dcbc4377575d50360c40ab7663d8a25c93f6323b4248f2ad30f4593","transaction_count":0,"txlist_hash":"650b0875a0fb44a0ad1b04edf1a0eb1b50b5ecc423c6ecdd37b5aa60b5e85663"}',0,'BLOCK_PARSED',NULL,'6721def6626e7a1dbda19cce115494c0245d7f0a0d142ef490c4c2d6274c359a'); -INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3090f84dfd548c21c70b58eea7bab227bcd7543b21350944dad3bbc0e1f75c4e'); -INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"7f0dc7c1527a7d11831d272f0295eacabcb96fa3599f5a716bd29ba1bb6b7577","messages_hash":"00c999794ecd07f8241cae22b5059ecea0a0511e962f7e5bd9f5a0e938e71060","transaction_count":0,"txlist_hash":"e9d6c050b077d8e6902999bf64a0f1bf420c881b8a32c511ae81b0359e83a542"}',0,'BLOCK_PARSED',NULL,'7725c6e355a5cc2ee03590f1886accf8047cc72d9c9c2311766229a1d3cb4df2'); -INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35898bfdba08b76595125e5340183caa7410e15c72de1b917b9520ddf3a62d02'); -INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5e0cdf1764ed94672c29144f9c1bd9c3e70784f17c9dd1c9e4ce703a99bb3599","messages_hash":"96d95db5bae3211ebd78a303c54631150fb8b17474b13ef47722a2012271fd35","transaction_count":0,"txlist_hash":"e755b5d80c9995dfa5763b080b9bdd349fd7b5bd940a661836ad418202b77384"}',0,'BLOCK_PARSED',NULL,'4ff0baf91fa521b399fbc0119a1aee34feaffbd105b370ae38ae1e219f13441a'); -INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15dd61ecff5a3a88d2c9ccdbb35f31d7f1de875c3de2b6bea2a74ee8a4d21eb8'); -INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"96da34a5a66b89aa3e8857b4a4edca51a56a0cbbfe600d8153077875624a153e","messages_hash":"826b6cfe13526a704ea2b67c098e2e2c613997d43ad0fb01bf351207be2d0eed","transaction_count":0,"txlist_hash":"cbc0139fb09af6a6c63e07847a37f15767a1f7b01d6305cf40179de841c4f093"}',0,'BLOCK_PARSED',NULL,'e37830f85607a306b43882d410d63800ca89e2bc255c23994397c0267115ab64'); -INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69a2c0cd869fc294a15121710b151ec7ce14b3bbdc0518ece9901762e2a807fb'); -INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"d481358c19b4220aa9a3d135fd0651fada6df8d0f27b9ec954ac07950e876c0c","messages_hash":"dc9ee8c5c08597627d45cda195771ce77564ae3dc2e305ff659d0f813c65b3d7","transaction_count":0,"txlist_hash":"0493eb6bbab5ced7f25c6f5a3b32e4e2da321a5c761855ef64b5e050ddcfe431"}',0,'BLOCK_PARSED',NULL,'5c0b3f36005205bf275c1d3473860ff706b889a80879b66c7c5361c1a2194353'); -INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4400ef0311c88c6f93e1ec6ac4bfe3efa0634615b3016e84a0ff7656fe07b670'); -INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"4e9fcc454ee53b3617c792eb6577c2eefa6eee6aa4a2925538cb1976d48817c9","messages_hash":"b2fe0dd8d0aeb004a8b6e7b4f924c40f9d78b8b443ec56885c03fe9faca3fb2f","transaction_count":0,"txlist_hash":"64b95af50bbee190166820a564e858e5c86769c04b22a68c2bed5adee0f7292f"}',0,'BLOCK_PARSED',NULL,'06b91c2cc8c60628d422c038d3669613acdaeb1142ecd2d5f8655db2f260a912'); -INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e1e86a5ab06dc5ff034eba17fb4b4fcd1bc483f8a34870a24bf1f1613a63e43'); -INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"795c5652d9679942a02060edfb497b072009695d9a72fb144fa3591dba65a2ce","messages_hash":"a3a3930122c43db8e3d8a1d6d29909e89d1263ff72064061a32398d2880c814c","transaction_count":0,"txlist_hash":"9927f1558918a59509f668789e75198eb432fd63e0a7ffb46160d002c0932188"}',0,'BLOCK_PARSED',NULL,'a42471f835db5bf27a43e6df9ad9adf643929de65b4f41eef086f02e135fd70b'); -INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0b46208d4a90efa1616f0a16681554a7cc35da1e7478f43ee9ca494c1f05a2a'); -INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"e569e6e8083818e594e92b3356833e8dd54fcfcf5ed25af0d09e36e24b9dd441","messages_hash":"2c670e1a75b7b79ba8380bd0aeebbd8566efb67b8de497cf760f047433430048","transaction_count":0,"txlist_hash":"969f7176f1a56d43e0d1b4da9cbac17cb1a934be64c12b3784ef33b584513271"}',0,'BLOCK_PARSED',NULL,'7996b2b73af11ae6a0a144e7a60ca267e9844fc3f4bef5551e42b07249f61d68'); -INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41f1024e5e62f52511dfa172cef40e253c4889d080858d257c25aa3420a0cd59'); -INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"2247fcc633175a91921d226f412e56822379c79ca799117c39ecaaca0a702192","messages_hash":"3acbc91852fb2d7256eb8de8d6f79f2131ddb81d57dad850badeac4be11b199e","transaction_count":0,"txlist_hash":"29cb8f1b29affa41416aca0265599863f6b739538f13bc6672f6b3c17e411045"}',0,'BLOCK_PARSED',NULL,'532481d7376e9104bd20c6e6118333013e70d6f39d58f4f26a63151a0ae590fd'); -INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d89a364b0d8e32f5b993bff7edb6121f6b68c07bee621cec080352e5951fc5f8'); -INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"0246c3a2a70b33a038ccdb816f6b0922a50d08310f360cbd5db4df58e97fc4dd","messages_hash":"a974d7e9f5e4257985c069ca2c5517eca6f3386df46f27e39152c8540ff21e79","transaction_count":0,"txlist_hash":"d1ca4c9abe26de83d9a0170461c87f2c219926f8dcb0c48793d74a0cbf01a43a"}',0,'BLOCK_PARSED',NULL,'0aa55a2155fb6e82f1a94465bcb43668de08b2723aa2528e4af13001ca6dd226'); -INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53b66371bd8411a6c0e422b7f73678b2a4d95cbad7a9a7ad8e3c2655656e717d'); -INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"cbe39e9d1a132cdc568f893bbc3d4f55d27bacf7af31f027ebea1b4bed9f0009","messages_hash":"a684213ea28406c1a4757fb316ae5e6234cf739e47c6f27764e433046c84cca5","transaction_count":0,"txlist_hash":"452b2e3ff4075f702cddcb4b8fd9006c756dda7a3527d635f637a200fd621c91"}',0,'BLOCK_PARSED',NULL,'bbe4dcbd61dd1ba0dbd3088d4530039aac8f37e54b899cf0022e144356251d38'); -INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef876dccef855fb3dc88298a6df6807eb3f85ca4ee9b2f64f41b836ee28f603'); -INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"1202b05e118f0940ce270d9002d010076115a0197d889fee2d971a77709899bc","messages_hash":"2b208323abfec338b83a4b1bb3433f4c955f0bd4eaa57218f9af2b31a4a06629","transaction_count":0,"txlist_hash":"527114d86a06f44f12e1f789f095227f9710b47e95251cdbd6f4c03309eae61d"}',0,'BLOCK_PARSED',NULL,'1b3a802c2c5b17d47af9c858189d05e9f70e2eb8ed1dba7c5269f92476a2c84c'); -INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b17c1876f57ec54d77c5403f661e4dd58a6721db47fd768824a01e6082cc7f17'); -INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"0bc49f765419c0b5b4911cccf03b0d9959aabacda266480b98245de0c0d35fc5","messages_hash":"49eb99327ac63bdebc3cfaf095f3234b4fb156d19870849f03ba340dbb6b5007","transaction_count":0,"txlist_hash":"ed6954fc7aadd8f80684cc67580b9cc16f9a402296ac91c021de0148a1ccb4a8"}',0,'BLOCK_PARSED',NULL,'60a5dfdd1f4de624c5bcf5913902c640a5fd7707b097ee0ed24cdad7d4918a9a'); -INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8ddfd579d8705c47a2e9cada24b6e5a13b3c0b8b7013f4ae01e3e8af24d07db'); -INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"e42bf9806d0ff3a0663756f7955b30735747d14fcb0915c89884baa12795163d","messages_hash":"c3fc8aa905a4170a3b72329c94f70bcaff5c4d7e7ad7a5930acb71ed33616c08","transaction_count":0,"txlist_hash":"2e62ee5d03044d0b6086419a6d2fed78b7db3bee75a2bc158bbc04a8f5c34908"}',0,'BLOCK_PARSED',NULL,'b23c7c27883356197bd4854f0a5092285efcd6d9d21c7a09c189f8a6ba0b822a'); -INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37c5e4d7c1769aed657c543750d81bf561378b7f0e93c6aeea3616210f512419'); -INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"b19b5e14741284b4ca06b736120e903363651460a6efb3ede1aca3a4f3c00df1","messages_hash":"b38346e10ea8e6a9dbbec76960270ef45bd5a4e15ea60c19fdd460381b00a5ed","transaction_count":0,"txlist_hash":"bd40f4de40c172e5b5997091f4a069ea54d25504421e6225ef3d9ee360fbca6c"}',0,'BLOCK_PARSED',NULL,'93e1eb57d433ddcb19d24dad1f4635ae03bb9f9d744c8dda87980da2f65357aa'); -INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f11d704d3c8580cb47c07d70d3d5cfac53623d0ac0b5620f2c1218ee37670dc2'); -INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"e870de901ba86d65d0e2053251ffb32cc7dffb55fcc2efbc006a2b9137314a39","messages_hash":"b4710ee09fdd9da9af163b58135750f9e8f935c13ae14d2ac586700afda54583","transaction_count":0,"txlist_hash":"d89730ea689c2912f38a2d2dc86caf6dc35a3e183c4d394129f21368f5c1d371"}',0,'BLOCK_PARSED',NULL,'bb6fa54e7ffdc5cd69f6cba149741142bd98e817c46bb89d63134b4affbbe313'); -INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1e5d119bff30e733a7539a417a539bfc460c24e5a9aabd892aa13655e3a0194'); -INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"44cf354cdc8552ed37e5911340397d3531d0ba45100feae27377130d4ddef359","messages_hash":"c4cce9982e0630076d314f14323ff672dd88eb78f267c6414631569b8068b108","transaction_count":0,"txlist_hash":"1100866c04ae89913abf573ee61b3a7b56ec8fb7526c7d9c9938d61a187586ab"}',0,'BLOCK_PARSED',NULL,'1352750dcd5ba33721c61b56f8799d1127a3a80c528ce99611057bfafac93658'); -INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce3fd243dbcfce2addc0cc4f4eb1d69e714036fa7344e1c3bb8fe8a11a9d58cb'); -INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"7d72f11f48ac99553e1b2c52a7ff5645fbe05728a10a002727b9270dbb32daed","messages_hash":"6f23296f3978004cfecf1ce6c5d6dc6b7cbf7a49ed906db6bd0c5f2b398d76b3","transaction_count":0,"txlist_hash":"1d95ff7cb416f1915ba7db0099ba9591b97c6bc673cb43296cc82655627eb1ad"}',0,'BLOCK_PARSED',NULL,'b7aa0fc901e05a8290a68a6d0830db6c5b7d2763f94c25ab1a8daa38c3b550b0'); -INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7c8a21190da74a3986fd6d7e62879e88a3c392e7138743d4893132dd4f7283a'); -INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"35a965dc90686fc4eb20450da81ca8db9125e25c2cdd7146fd61d98841d80c24","messages_hash":"b340a1dd8a098a9e7ed91c80907755974731a783e82cdf17c94e54ea3ebc2c5c","transaction_count":0,"txlist_hash":"9d15589506565edb31f7627a37c1f6a6bca01d584b0dc815e8603689f07a80db"}',0,'BLOCK_PARSED',NULL,'3f2fc71c147c390c5380aa528ebcc570c89f4b8dcf01548ec8ffddd13d5feb78'); -INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42d06639e8270d16e551b4b64847c09b4767a0eb0b32652228cf40abec0edbcf'); -INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"8604d503e7194ee1c8ebe1143019207b2aad163655107a3d23d018ef26cef550","messages_hash":"d298e055fcbf1c292ac8abd5db069687241c42e48f88bc41749e2b0059a799ae","transaction_count":0,"txlist_hash":"40053c62babd7f69b9822b6d4223732008d45250146216762da4e13b1b9d3a3b"}',0,'BLOCK_PARSED',NULL,'ff01874d864d4f2c7cdade7bff49057280da0e964fe8afcd9608b90ab8c12d4d'); -INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d23948171353883630ecee8a1ad6daadc90073e14278b8688a3d1c8065ef2d6'); -INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ecdb64ffc44490eeb12199d2da5c1189c07f4102f5b91494cbe4ec68fe6bb6d4","messages_hash":"cbe1263aa14674b1e013a819e96aa0841d37340696319b6c5345b7457729900b","transaction_count":0,"txlist_hash":"7d74527f370a78a8dca189b60657f9fd15c27ba5f875344546bb8d6e5b54c8c5"}',0,'BLOCK_PARSED',NULL,'399d644f5f118992b80f9572fcb0915dbc2da8083f34d1a483d77a38e26a32b1'); -INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056a126d75e8827062c239f6ec938165553b3eeb354938c3477d15f43294f865'); -INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"b96b0d51d6327284f5922b65e5d023afd2b2e44c9e11f435afbe2a71df4e6eb2","messages_hash":"3b1440f9878f569483df07219d00d8a3fbbafda48b57d0f746cdf079706f7b0b","transaction_count":0,"txlist_hash":"70b8a2eccd5c79e1c270abfdf683dc4423ff315a62486db9e5972a12daaf60ea"}',0,'BLOCK_PARSED',NULL,'1a171fbc16105ffe4ce171afcad7f78831312f7326ea7b1447b968017ac11dbc'); -INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1f5d547fd669b7c7fc444a90abf95fab675b45555c4e42b48fb66d004e26596'); -INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"c5be3fc23a9c41b7b78cc7df4ed13d1d35fdd7edab77c998cef5a5a5fe2a7d33","messages_hash":"e798e99bcf56938955588f18886328e21c4c766200d5c2355d49739ec608bfdb","transaction_count":0,"txlist_hash":"0072c2fbc0915dcc39103950d4a48feba19eac28bde001d3dfe0f9ddc25e5152"}',0,'BLOCK_PARSED',NULL,'dd946f494e6718cff20709382eb8bb4db72fe9b50d363bcf159e8527c1d2058e'); -INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c23b0524a1d7dac3a750a75a155d411a9ed256d72e9232734d2e3a7ae43a79f'); -INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"faa7cf6128f229fe3d408797c77ef2972eb28d16542b32ec87c5fd42d2495018","messages_hash":"10c3e5aac0859c4d983d73918ef98e51be19de2c8e15c1807918612d103ca56e","transaction_count":0,"txlist_hash":"46c53b0ab86b04c06e8302726aeed5922fb5b3d940102422c53bdf4bafe285e4"}',0,'BLOCK_PARSED',NULL,'057352414eb3f1c14255097027a61d3b2b2685353fbfb9dfb970864959ffa9f0'); -INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ffb97fac9a56b3e68f4691130ddee816a64f8a587c26ec8042047814dacd588'); -INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"135af680c59a3d707ff3e6b67fbbb0aaaf0a97724d36ba584087658ae8c0db19","messages_hash":"6d712601d49493415dd87e5c616c1d4412a4e81eeccb853fe9c39090d15977f6","transaction_count":0,"txlist_hash":"8b3fe70c1d1b8fa1a247810dfbc2667ca0307860c112002e47107fe4836b8138"}',0,'BLOCK_PARSED',NULL,'e5dc29cf1f33c2774bce68324354e76e83aaf850bfe91209cb05c13fd5058bb3'); -INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee15d448661503c8beabecdaf9d03eb3a992ef3d6d0bf3a0ea0f783a3f939be9'); -INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"496b559ef740feabe42d55356bc770bab7b927d79260c22848b7f47d51918f11","messages_hash":"cc6379176fd308de5dce183196f5d17717a9818316bbb7e6d561b3b8b41e73eb","transaction_count":0,"txlist_hash":"ddbb4db386fab0fbbb7edee7c7c45676f994d6feb088f50b0f3edaddcc809e47"}',0,'BLOCK_PARSED',NULL,'0977363b614c82a1d46e629182f9c630ad00bff20f594ab8f4cabbe72aad85a6'); -INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b956d0e564b31c7bfb0376baac04c9fd9adaa4d42c85fc90b1aec97a5556255d'); -INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"608eb77e572aa596c9e14c6e4cb1dc1993bcbcfe735cf0453124c2801192ecc9","messages_hash":"992672b958fa15bfb30aebcf5de672462e86b97f417b4d003f4b50e2fc129254","transaction_count":0,"txlist_hash":"b8d3a5abf9edc13434594de8ec0cdf3b760f6917798eab89ff2a6a4f0bda06d9"}',0,'BLOCK_PARSED',NULL,'ef54ed7aceaee66bfa9420914a86a5aa305cb3273ef38db6257b1025b97324d8'); -INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76fecf02f36eaff5f05bc95d58d1877b29af5477fbed444165955c7ede3e5efc'); -INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"bc5c375d1237425486c9f46bd749fba20b5635bcaf3e2d9178b35ddfbb700f14","messages_hash":"f40c4ac0397d5d9184635b04654691600c0461e51a50960294e78ae1e40d5cc1","transaction_count":0,"txlist_hash":"1766568459fde2e95dbe4a1c1b73a37b6f8443dc1ec36cb44a38fadd95d8f807"}',0,'BLOCK_PARSED',NULL,'7f5105e0c216f373627414272295e727561faeb0abee089a2729220a953212fa'); -INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b23c1f32bcb6595dccfb826badd41d08776c7598149de01f8786562806aec6'); -INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"c6d48d72746c0e18fa0f1b0b16f663869be2c4684a9d98b634e691ea495f4d81","messages_hash":"a0a9900f5eaa5e5b2cca8199a35f69f3d2795cc39afcc61b90203b1433d501ee","transaction_count":0,"txlist_hash":"9f6619aae8ab667b4291ec14e89386177dec7f3465def984144d2991d10476ab"}',0,'BLOCK_PARSED',NULL,'3270677be978f1a9fa61021d8bd77249b736093b9d64288c58ccb243b5d948cd'); -INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15542909e9ef472001053483a399734f7c7837be61a8486d83637d3f500f8820'); -INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"8deffdb1602f1aa2d0d1956d2297ba30ac78901ea27eb223ad8bf7ca83b18110","messages_hash":"8a5bfb59affc8af010b8bf4f040ae20b7bae73e516ecf05d0fafa195daa084c8","transaction_count":0,"txlist_hash":"278612a215aec2522b38d2ddd268f051906a858996b526fa53c48743b1f33c2e"}',0,'BLOCK_PARSED',NULL,'a2613f6ce147545f094f75644f2b05e8da1300f7abd5d0be19e150243c45a31a'); -INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9371bd0b756be43e7927438a921044e834e79b8a4c56ef30669ea7a5fe2405d'); -INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"34859861f240c6553ffbf63fff9bc884f231276ec6173964d5fc6641a6d79b16","messages_hash":"c451afc5cf0e2a783cebef04699a908d781d8c3cb2d6e625b6f260bd2d46b4c9","transaction_count":0,"txlist_hash":"a884effb413598885693dd0eed419a3a2a35db95fe4d6582e580bc141f28377c"}',0,'BLOCK_PARSED',NULL,'08a5fffdbdaac585d96ad15fb3661aa96d4d66f41a2fe77097359d2e09f452a4'); -INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0229e23d3578c69caeefb9c619b36b47872fe19508f3ac3ca3d1e946ba5a5a4'); -INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"fa185f9b97a1666ce3b966dc09b8a7870ba55896a54a54f54d3420708d5a8ae0","messages_hash":"5fa4c517214da3706d54d030b7abc2b36dae8d0306e618b1a17a6649cad5d53a","transaction_count":0,"txlist_hash":"070c320cd53cca3d81560367d437e1f4cb2afb10ab6339e2f1cfb0a2dd6d6063"}',0,'BLOCK_PARSED',NULL,'7e689cfc4a23ab01fe7d392e893461d16ff3c60f3f7c53788ecbd426e3d8495f'); -INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8909ead2e11b5a6f8ce31b714b32dca01960c0e60f710a75cc66dfbd4047bcb4'); -INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9f75da9f944d59b1841d690b2994ead7fb0ee3d679ddbdb0b692e49238f66603","messages_hash":"785359363b3be4224e996ad6fab4033aa3a46982d6af1219186b0dc9d7719cb9","transaction_count":0,"txlist_hash":"fb310206b118e11d48becbd11a695199fd7cc3553dd8b2a7c29c6a927f5bafb7"}',0,'BLOCK_PARSED',NULL,'4d1b13cfbcd695c3c16667decd667593a6132f4cc585744e90ca9910550892f3'); -INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24b4e190ac4de667eb528fe6ac515b2187afd7be3ea612de176971f51a0791d0'); -INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"4740587d203632d1b4061343436e25e12941f0f80be03c3ab390a1c08b842b59","messages_hash":"ee5f54f7b13996f803b277ede2800b1ef7ad1353230e7cf629af6063c2a9d459","transaction_count":0,"txlist_hash":"041e6429d7ad46da6e1a2547daf274a0df952ac4f9b43eaadfeafa6e005141d6"}',0,'BLOCK_PARSED',NULL,'b780727b56b0ad87d1ac9118a8b07e6ab2a61caa4bcf85b3294ddd3550d24ebb'); -INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e249a627870f935925165a5ed80abfc626d9addbe7003a4b9ecd3b9ebbed0155'); -INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"d6eecb0ca22f29b50e52cd5dec8f408250a7b1ddc61bfa9bf6cc6ef0a85a6ffc","messages_hash":"712a4ac75c02f80b3a7deec1b31679674cf124c265662e1bbfacde128bda60ba","transaction_count":0,"txlist_hash":"f8e9baf27b01e99db390d6ee2e06b8ac7d92951c331d8240fdf0dd711ad75979"}',0,'BLOCK_PARSED',NULL,'ea5f3d3c1faafb926cd29f6502f8d044e7a2add64fdaeff3e9b9cb50cb6c3c51'); -INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdf268fdc0172b04ff78544851bfefba184e7c524c03cf95bd45f7bbc06dfb17'); -INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"1508605d4796eb2d8b0553b307827f570b5020f4cacf773926b6c8f2c1b003c8","messages_hash":"680b4d5e8538a0309a993ad5da4d9ecea6788da6db7a3d9172cd9a45e9ed4c97","transaction_count":0,"txlist_hash":"fe7a135af64a7668cee07a66fa146b6a7a54fc78b96eb7c62d0bbd8b8ec4a820"}',0,'BLOCK_PARSED',NULL,'64866f1bc24961a7722541e8323a675238d92b605bb57ee0b5d7cc591d1289af'); -INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69efb98734ca163a51c855ab4451717eb3a281a409f49f05ac69720d6e43e3e2'); -INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"ea7afbe0817cfef5a5a940bf88b057d01d092182dd5d0c7fd156b6750fdf4cb2","messages_hash":"8d7ff05ed2187f5021a153a52a59612d32071becf1965d5b2e9b3ca71a9e4b16","transaction_count":0,"txlist_hash":"561526733017c46e8f7476f6f7f0a1c317a372adf6ccbe2a34e4d8b0fee1a694"}',0,'BLOCK_PARSED',NULL,'6b4b3172e8c7e85902cdd27b69f5aa4551bbc0b3d527d719cfca662576df3e12'); -INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff46002ca668acf34adb6929fc6b407d72cbf9f3ff7581fa26b69f78af9446fc'); -INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"f805d8bd0b724ffeb9e466367e8524bcbcf2c0fe0525b8ff2707af2013824a2c","messages_hash":"edf3f3e335cd8de5ebc1252b433f916cd783c0ae8bab1ebb749ee73b1e381c73","transaction_count":0,"txlist_hash":"4c10a876e31ee15289cd2d82d8771bd9aaffd0e335c6de15f8d5316e6e7ee81a"}',0,'BLOCK_PARSED',NULL,'52566aaacc4390cd75e88b612fa917e6524d5ef47f6f25857c561224a5cf606e'); -INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eed2071444a3bdae0b635baea927ecfee761da4423cfbeba4d357fb4a7efad3c'); -INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"305123423486d17e97e8370399b9079a35977465e4cf8c5b33d50bd7004b463b","messages_hash":"87fd8b8ea520ee6c3fecffd8606489e2b199e9e91246da44f4e75930a4464bd5","transaction_count":0,"txlist_hash":"660d6afeecb2375668200669bac5cf258dbd18b0f61213eb01d29e133a45917c"}',0,'BLOCK_PARSED',NULL,'a47daebdd794fee8b07fa76c114ccbc6a9656b7c6648de0009c1185ad2b12d94'); -INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f69810dddb1e9d91c0d498299d96a69bab31b325e10ad2fa14f51f6a95a47a2'); -INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"b04fcd2cf46165fa31626b476aa06f9ad8c8cd1d5aa1cfdc014e0d55fa7e0761","messages_hash":"9418303a68e008a80383c06c23368324c7cc5787bc5d08d217868e211e916281","transaction_count":0,"txlist_hash":"0791350dc66254e276bfea1651fdda43705668f461f5451fd91fb7e084b26aa2"}',0,'BLOCK_PARSED',NULL,'73803796f85211396077b48a0fafc061cd648c758f8834bee98d830236426afd'); -INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55541f88cb0ad449741ea7b0bfa69395ad1006358183d0b2bd93b8770244193b'); -INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"209f05567343042c8a9172138cc14e28a2e53f9addf16c7affa469fbea9728ae","messages_hash":"f3b9175e84f2b6b2aa0a147f78a4e389e568ebf2b63178657d2c95a981d60931","transaction_count":0,"txlist_hash":"4885e82f77b273e102f9019b8451e08910a7d98daf19366a0a2b9db779352c0f"}',0,'BLOCK_PARSED',NULL,'e178ce0778e9348fb2c762b1b1e8ce903fe157704bf7ed3e841d0bad33c11448'); -INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f51a2393f26921fad17006f8000494e721c8ebbc1785dc5baa163f6304794bb'); -INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"fc18c0dcd6011c4147575f09bdc6e1eb0e6ae7d3144339859054df458651618a","messages_hash":"3feadbb908b8cb77891fa69748ca080e489f66d97ec81cea73c1a86f0e2248ad","transaction_count":0,"txlist_hash":"49cbefb674e3da718d86151b10bb37755e158a2bdca642a542897361f15fde66"}',0,'BLOCK_PARSED',NULL,'a6242a9e0688ee0bba2497dbf412fec487ec1c9a1f695d73ebf01b3a88a44820'); -INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a2d11c70ecfafd678a929cec1a59623a5f65d245bcf800ab9b2e2f8b81ef98'); -INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f304dbebd02e4536b1754502e6f51e058ed309fdf95a2db8329dd7e5635824ad","messages_hash":"d0244be0ab4e6efb3e403f002293a2ed71cc15ff77bf6f200b7f029b88cad496","transaction_count":0,"txlist_hash":"b5e7c72a91d779334162c8fcb6282c7e5baeb43ef83d8f8c0eeb4dd0579f0916"}',0,'BLOCK_PARSED',NULL,'e411c3920f6f58f6c0f38f088887912ae83f79d4108478ba73d10fd0c2602770'); -INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583e05623af009d91ec38f197d9a5a6cea9a85f8cdf3aff17d03eb9b66d3735f'); -INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f39c071315c869425bdbcf05ff84130a0860f5f47b4f851cea970f58a6edc9f8","messages_hash":"34b3ec6753c34f4937e97f5a04f43213896a30e19b36440972cafb4b702740ba","transaction_count":0,"txlist_hash":"e399bd32bd2988f29b4fb003686b343bd72ae59297412480a359bd56ded23ca5"}',0,'BLOCK_PARSED',NULL,'a4f2e96f2b1a0d951aa1057c6b38e6bf83b76e5afdb87810d303b301c97ab0cf'); -INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab2dd8791341ff5f87ca5aef94aa3d09b4a385274f845d4388b7a3b820f72b95'); -INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"20624d783cd8e82044df58c05e6171a744505df43623d9c2a828c1331f505ca8","messages_hash":"6ea716b87bd2592e644fa6594bd361829b64fa5ca5f23458ee308099ab7ef43b","transaction_count":0,"txlist_hash":"c587d5426925227ed7d0ef11834b5bb1291fcf0ea3f0bcac864e4356187b6a10"}',0,'BLOCK_PARSED',NULL,'5639a6237b78e28952cb38c5c04fd3459c1f87af6ef8f4ffb3799444b85d67cd'); -INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4385569db037efc600bd31f9182f831bbc13861886db161019db1c680b487fb5'); -INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"41ae6610121587bd8171a02da3c50645e8e6d3642aef2c560d46f12707506b66","messages_hash":"1034ffb8353aa40feefaed3e4e51f763629a717dd9a1ac5e3718b90d1b3f2034","transaction_count":0,"txlist_hash":"c8331e225af242d83e283889e6234d601ecb507373f4b7de891b8508d1b7b1b6"}',0,'BLOCK_PARSED',NULL,'fde2b28af6b545c1b9973916bc7ec6e7ab0138bd1aeed24085d9546a5cc0eaaa'); -INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e17a46bc8c85b346101d574f556e97c30b62d689250b7e70a84deec72fe9770'); -INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"bbc2068f2a4b47c86198a5cb7242e26f385077126c7a3294eca6607485b1170b","messages_hash":"7f6823b59fd9c02e0eb65bdcd8226a8558c6954f6e93aad320dce9993ba6e89b","transaction_count":0,"txlist_hash":"42ee671f6b45a8e36b4e57dc7edaa2501b075eb75bcfce535435ee4c0cdf2e66"}',0,'BLOCK_PARSED',NULL,'dd229677e74708a65574cec66249bfeab2420793db243e4dc8604e783724afa5'); -INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a60a6370b2b43a56686515bd70a65e2ae04de27fde94e7436a6bfa932bc93e7'); -INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"fc4350d187ec74fa6dfbbca7f6c51849b78356f853c6c713d10ae4a39ee4f7e2","messages_hash":"84c1c9a613c664afdcd6cd6b6e04620001d19927030f4657455e7b4acd1946cb","transaction_count":0,"txlist_hash":"f35b5543ac99e33a4ea6fb61b688d06a2b5b9cc79776df32c24e848b5dad80c0"}',0,'BLOCK_PARSED',NULL,'bac485540ad91dce5a6f35615f4c0621ffc56abeb50371e97f341048a3e27fed'); -INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'066a78be4064166f3680950392f9b24f3fd481a6d4e21d4dcf9912121fc7115e'); -INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"3cadb90f0285d3e3bb107caa2165e88d855cfa057fcff1fccfb278a8f64c9b1c","messages_hash":"3d972a6d152a0d114fbf19ba2e32e75c9eeb0c7a2c97cf0b46e820282492697d","transaction_count":0,"txlist_hash":"3ff813ab5112e5adf9f50936955db90036ed0e2ba309022002c69e81473d7c04"}',0,'BLOCK_PARSED',NULL,'44c0dd204b85a0e466a301d8ecc314fb1a2e0ce25deba70a6c81ce768f43a989'); -INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'939da7500812ad2262d3b625a4b9bae2f376c9fbd2c701a9c33bd29da6deb9a4'); -INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"f3390bff59484b5ce0d84f5034fc88f4d862334ef3c0d7addaa9be7f0e67006f","messages_hash":"93583ecf2d5b685549d14463aa49e3ddd73a41dff346251de7a46fdf1b068121","transaction_count":0,"txlist_hash":"3d843f898e46d0ec4c4cf79709ec7326a0e45d44361a2c9fe45e546bd5f1e630"}',0,'BLOCK_PARSED',NULL,'51ce97d851807a0ac4aebd7eba9b431e12839ea78a402bdfa957a0602cf3c1cd'); -INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6bee7c9ae7466dabaaba5f5eedb2b485d67c84879419c73d881411d3f5c3e44'); -INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0354bf318eaec5c79b4a7835c76c89f373ab0e413f9fe4ebdea442f57763a971","messages_hash":"15c52c46bccc02aa469d18804664067ca31efbf52410420c70e118c8acd4e8cd","transaction_count":0,"txlist_hash":"6405368df02c1207da46178c106ac287c7c90e5b87a98154aa938f6ef5a570d1"}',0,'BLOCK_PARSED',NULL,'26547fe60c8851875edcf3b747a9b30a3b9e1e1687e0f27d3a6d9e396d414184'); -INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8105d643489b559bb488f4922465924e761d7dd2d68f0cf59f312ae4444d0ea9'); -INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"e22b7a64e15ded24f6c54a5f627354dd2c3ed8175c2f4cd31aa5a6789d7b67e4","messages_hash":"2e7144e7eddae7503bb820f1e0986abf84f0ac422875d0be8745e2c76de30d84","transaction_count":0,"txlist_hash":"6f58e857b2891d43f22bb4b44d296ff18f3078de01cf90aeed104283d66342a2"}',0,'BLOCK_PARSED',NULL,'5ea76815aa1c3718a37af2dcc1ea6567e44f1e906816afb0ba2ce6676b0d0502'); -INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a5b8d5e4cc740cd8df21d4b49d95e5b211f05d97e659ef1786f0d0e9b4499af'); -INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"7b8a6f62709cf4d20820031f43d968ea46d73d8cee4ad40f414da60b9be4e676","messages_hash":"27fd01aca700483aff404a765c264893f6b04930f267a6b568aaf9ed4d79914f","transaction_count":0,"txlist_hash":"51c8a62f3e4c43e6eea75410efb977c8ddd2ad8e64c0d6ce6f63a4e5eb153400"}',0,'BLOCK_PARSED',NULL,'6caf9f64f1814699d63191b55dec2690652bebf5a6379c1e1a2f201564a23929'); -INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7459508ede7c561f285fc378a6efd710c7ed0afa26610f309392f8efc38b84c0'); -INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"ae82ee2f7f1e075937b5b8eef065f8643a7bef0428e00689ee773558905eef19","messages_hash":"cf781bd75c601887732bef2d4ccb7af9533c633840d7e07fa61b12a801d01b15","transaction_count":0,"txlist_hash":"7358e41e9a61f87d68cc6851768346daea2e100ab896e86c0047e47228e6cc29"}',0,'BLOCK_PARSED',NULL,'6f2c10073d35cbbac8b90da14be7cf4c9b5d2c48e32fe5eea846eef971d867d8'); -INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bc0303ab223a83a1f66e81d10fb342dc85885e673eed0eeb4b1302ab7b7baa3'); -INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ced371f1349e81cc2f179f064e4b9b202650a0f79e9b4513666ace29f0e8b3cb","messages_hash":"a2632b8aefefe77592f4b0f21f5e1f7d5c22aa0d27ad1eba7a0e007f408b1ab5","transaction_count":0,"txlist_hash":"0e8cd750f8ad91d5b14d2b05b7c03621367036703bed1654555b94592ff41e11"}',0,'BLOCK_PARSED',NULL,'f6594d18e1a8067978300b9cd0447705c5009c31396b6976e3ce54eb21bd8176'); -INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9404bf9ca7f981472aa3e6e5442261e3331dc2befb2082619634d0951bca3d26'); -INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"6c343897092c5dfcd32ee96dc8b96f38fedd31fa58cf5757a3e15a254942cd59","messages_hash":"4f61d8f4df04b07c87f5fb89edc76e6ca3e61f7841f68fe83e9dc901048e24f2","transaction_count":0,"txlist_hash":"c38a183db86650f155005a8828155aaf2fc6d92aa89066d7f0843a123800d771"}',0,'BLOCK_PARSED',NULL,'fdc812ffeda15ab1e9b6cb3d1d7aa5a934d532ba1b46190c6be5b1f393044b12'); -INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12e600239eafd8f663354bc7b46d1975efbb6c60c7ccb925ac4ccb79ef955cdd'); -INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"abc7afdaefa89bf58bc4c28401740657eca24c902ba551f55becb6a1c8992675","messages_hash":"b5fc9a8df6e5fc6059ba0b233ce9f42c84d81c6943f517783b337ed62249b0a8","transaction_count":0,"txlist_hash":"609b4f777892b43541593da80d09aa2c3928f2f73600009615196a7f89ca8123"}',0,'BLOCK_PARSED',NULL,'858a5c0a2482aa49d7ad3f3d51b9b92e9bf8a9be825cefa7b13337af81298e8b'); -INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f2374bf25252d361b89bb9db8cb8fb8750c1e335952f85f33b12cc2e844fcf9'); -INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"4c8ca9b4eeae7adfec822b20665e7bd6fecb51d4f30cc2c826f18402d8401a9b","messages_hash":"08c4a2e687bc145dfa0ebc1393b741db9480e10bdbefe691234fb7a59a71e130","transaction_count":0,"txlist_hash":"fba4f7514306c49b3045912791cc21a26527a23e58dcb1c8adc5563e5c6e901d"}',0,'BLOCK_PARSED',NULL,'0e86e350eeff8a4e7d9ef477356a87b58bd8ad63e7b1975495930270749c6f1c'); -INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'943e49eb637864d7afb09137854ca9db75049d21712078c45f4d95395c0ac453'); -INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"fe7fd2b60c3216d79dfe4e6d38880f6d3b9fde747b619f2c477108825235663d","messages_hash":"c4bb515a775ac317062c2f49543333113dc5312cb34f9f82b0b17e2ee9b29974","transaction_count":0,"txlist_hash":"3a62ce0eeff09c242b3a7c3a8da6dd20bf06c1c2fbf224f73646791557ce3d4c"}',0,'BLOCK_PARSED',NULL,'acdeaa97ef8fb10e5016811c6998dedbaaabec1d971984fa03119e1c7180d2de'); -INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'feee2b0f0515a325d00b9657a244e34dfcec3cfd11c408d4ad746dd2563dd743'); -INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"420b8ff3c159f7e89df2274682e7ef798a0c0233149365114bfd934c38806098","messages_hash":"3a1e7b03b5ae6c616c14fb6b16d6381ed592158a8e7248031b9491971662410b","transaction_count":0,"txlist_hash":"9c866b1985d2ff084264e192e5defce4af96b7aca461a46f58c659008113909a"}',0,'BLOCK_PARSED',NULL,'89b12485785302de7b6725f522cca1ad4f7ae8e2de3c2bfec70106d03f072806'); -INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d59b013aed89936c9e8a3639b26e8b5fbe597d1d7e66f2b9c3347abe4063e2b3'); -INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"f4fac6a570b4f6332a628a3f8e27f5f081689fb4255363cff1cd8bd0244eecea","messages_hash":"95c5f1db0fad6fdbfd0f0cd5e45075ed31f4d19e8c518caf7143d1f2fd5e299f","transaction_count":0,"txlist_hash":"271c5484d7a74166a1b83e9dc6f56cc391d5b01829c9b594deb087e58a22b762"}',0,'BLOCK_PARSED',NULL,'6d90b71e731779a4ee904ab444df244508d54dceeed98a0c0b93d6a8ef0bc085'); -INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bce302c9f413855ec49024beb3d640210d01339d4822e9143d4461fa6036af2'); -INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"adea7b4cacc06ba1f7dc260f30039943936f5baeecf5a8a452d4cbcaa994a70d","messages_hash":"b86421b4257e7fcb195e2883c64749dd2fe62a1bc7652f45d58276a5875fd79f","transaction_count":0,"txlist_hash":"7d8deca0e4f444c015cdf98c74255215af14198d17619640186c6486bb3a6be6"}',0,'BLOCK_PARSED',NULL,'62fd09c27394f75055b98882d7a73f06bfd74835b8f3095da878e04d08710aaa'); -INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25b6d85866db9022e7d57cdd60dd091b87d05e8df4c394c417566450a7f3e4eb'); -INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"a2290c6a24befab16b4d9ed768c3129d582edbafdf8a2326c7ed50397e5db674","messages_hash":"1501c9cd912df3f923076b23691b0f1f7a285a955b07c431e3b2b116fcc06790","transaction_count":0,"txlist_hash":"8bab183d2c7670f060de1a64663fe4ec602cc9df957a4d1ccd4b2c5e4876e5ab"}',0,'BLOCK_PARSED',NULL,'e4d5fbd34b5b63b6ba4d26b1c81a189e24c384fe9617de773005aea641f9d584'); -INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e71e6e7fab52887025472faa99dbebaf739c4929756bc3455ded1d761da272a'); -INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b3c321ea2fb119cbaacfb39f219be47cb346cdd40d895980afd34b4157a3b7ec","messages_hash":"7fcaf4cb70e6d4f7b8569deac9055dce68cf7d699f9ca2cf07ffe4b2384269dd","transaction_count":0,"txlist_hash":"6997f2cf50cb2331a8d5cea3f97b32b41a9c40b6006041939b21008016e013c8"}',0,'BLOCK_PARSED',NULL,'116b6f2813ff5e28626328c7c86b1f73f650b4d0efbfbde656d1114fa3ab1eae'); -INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c53bd1a7e40188370e986431f998a832a61045f0bf1107f8700c3d75e83ff0'); -INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"456a1bd4d6b30f24e798a9c1f975af109db030b0bca19db6b29788f938ce6c4d","messages_hash":"958fa8271a5ef9bfc5869c7a3d94e93d745c6f9584328ee33b53421d3e4cb1e0","transaction_count":0,"txlist_hash":"bd930dddbfc97b06fba95a33417533bd58fd5e95326d8677d2939790850a67de"}',0,'BLOCK_PARSED',NULL,'49e629fc053dfb8bae130416e67b29f75b6a0270efe071b62ebd3cf76bb43ae3'); -INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'313f39b96b9ed3f50236174e911fefed3875c689d8f99942c97d386f45edc9ed'); -INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f48d6574488a24155420ae76aa7dcecfe73f6a262a2434a96eb2e93f6bbf02b6","messages_hash":"bd2c68dd138d914e4e7e656065f597bd8a47b8948a5422c14e22d12b184f5106","transaction_count":0,"txlist_hash":"bf2e65b5a1da6ac499a4ebcde81b607f6516de77ed2a10ff363ddb05dd8e288d"}',0,'BLOCK_PARSED',NULL,'2ffe20409230a7eae6dcfc56014f788ea6591763780eff44d4e6ca94e6eadd76'); -INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97867bb2fa2081d8ad193cad1384d9904db1bc61f0c78132afa3c5f2f5e9f5fe'); -INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e936debeb5d219215ba24e56ed34edb435131877c2947c0801824155fdc70c05","messages_hash":"4ef98bdb706e0f1bbdeb65b74e48b4cca5d4300144a5b2efbf9932079edb6090","transaction_count":0,"txlist_hash":"d18b9514ed9fda087d3c98eca75ea68388964396143b925cc58ce2e2d5c1c5da"}',0,'BLOCK_PARSED',NULL,'bbf3141b8f11bd84f4eff1b517956c6d97c3f0ecf374fc1f1cfb3a5c14aab651'); -INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55f8e9967fbeaf1a719fad03a2e1a163d18a7839ddfc470c16faf798b09efb69'); -INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"2b033a615b9eb693ed59daca9bc047f61a3519bec5c2b64f968cf717c75afe79","messages_hash":"76a2a01c2a99f07db906c049b2499ff01d372ebc367960e685a6a21dc4009cad","transaction_count":0,"txlist_hash":"1c39371c274124af6085dcf02fcdfda68d36d261bb47d7763ea3f09b70d0f62b"}',0,'BLOCK_PARSED',NULL,'5b3ab3f3a8c3980c7cdf3378e21801df0d86801932e7b2b3acea9d869f90195d'); -INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'789b2d205435cdd81af9f0fd8680830246b944e45cfd4e23990b5749394fa76a'); -INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4","messages_hash":"a3d2dc1289f5cd52adfa75e7f081e22c9358e7509f9932e897ee6a062f3485fe","transaction_count":0,"txlist_hash":"e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5"}',0,'BLOCK_PARSED',NULL,'6304b0051fe377d0343ad6f4165efceb5e86062cab202596c41e0fd83cb6038f'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1,"utxos_info":" 12f21e3a989f7b28ece1e24d018126bf0b8d6344be24196d8362a1f218fd59c8:0 2 "}',0,'NEW_TRANSACTION',NULL,'4bfddc38f28d1452cbb5b493763ba8ca5061699e88004f02de7c16cc8a8b30bc'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','022bfc75f15a4cdc721fab22b1aa45a78bb6ae873539657a85013f2a56170348'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1}',0,'BURN','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','18d88615234dc54e7baa583cfe4931cf6709c5b552e1555b8233c865859e6d4b'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"98ccdf7cd2fb29a8a01cbed5f133b70b6966c6c56354dad00baacedd0673c87e","messages_hash":"3623f3bfc1f4e94f32f08ab286c2b7bcda0a00a9d2e20286c71b6462d1858017","transaction_count":1,"txlist_hash":"faf6476a908c85f6e26ca5d182688d6da3f326296602d5ad3aa5979cb8bc110b"}',0,'BLOCK_PARSED',NULL,'9a3bae69e1e387a2df9976fd902cabdbdc06cc1b5d3e146d241bfaafcd57c508'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07fb66d723a25215404d5d5643336ecaf2dfafcfe2f73e8d1025cc23953172c9'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2,"utxos_info":" bc2524f34d7824f1530f9f53b1aeabdbf38a72ccc39783d41de0a7f80cacc16d:0 3 "}',0,'NEW_TRANSACTION',NULL,'0908b0ac310ef9e799792488e058877b7c0fea58f7378838c056036622e98e71'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','0a19521683989d69e4b3cecc6c16622a378e70afb1908fef2a1df37836c8fcf8'); +INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','2b4ed9d774361e8613aa4be22f5ae664243d845c24fd92370f7afb1a151df21c'); +INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'SEND','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','a5eb3b55e22fb8b999998e9a0fc21245ccc50f9b8959e5499c52e19aab6056c6'); +INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'TRANSACTION_PARSED','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','fed12ae125ba454af9b0969487e8af3d6f61b137afb90df9d575326cdafcb8a1'); +INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"fd43dc5efe2ee796ef7d24f8d478a67aa58bf85f538ef4b9a49b983a315deb26","messages_hash":"7adab00de2e4ae3ea53c6f69479f45e8122028482f28afdb7b4e06d560186724","transaction_count":1,"txlist_hash":"544f7958bf7661b78699c708ba1097da0dbb044acee3d1d8aa9a32d6b659a14d"}',0,'BLOCK_PARSED',NULL,'b6d47d4ec2f33a0b27c09219d2a4f77ec7701cca87a331c52b510df4b12c8aeb'); +INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16cd9efd0504b79b9a833f7bb1e160c961d2ca745e797cd8e5ed4742119d576'); +INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3,"utxos_info":" 3cd583567fd9fe4e8162cf71bc098e44cbcb8fe41ede6954df217cbe1e84691f:0 2 "}',0,'NEW_TRANSACTION',NULL,'90f3915d7bcb38ff7abd1be553283e64afcc955c1d8123150c8647aaa8ec100c'); +INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'OPEN_ORDER','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','f39eb0b523ac6f054c404ee2c3a5d6f9e696154bd0db9148ec843c95e92c771b'); +INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'TRANSACTION_PARSED','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','3efad52edf81d83534c3a44f3c9abd7d2fbafa5ef8f69a15065c9a573624ba14'); +INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"dbae4fff32545b4f3c104fb5a051dcaeacecd27401c84c09f93923b8bc30eab5","messages_hash":"184c4a04b4b41417c3995c7f512bde9e419b1bb221dde6bd19a9935f46e0d18c","transaction_count":1,"txlist_hash":"ee37e75a4eba165ed448b7cf96d188d7f738aca4d90a781c7f473974e12564d5"}',0,'BLOCK_PARSED',NULL,'ca4ba2d6c53c8ccc99373fea026caefb2b24a05f96499e5dcc562cb3c063e8aa'); +INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'024e1487956a5c6d5657370920375b1e0ceca78b3b96629c911cba495d23d59f'); +INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4,"utxos_info":" 467d3d8a2e5651aba5af185af6ea44c52be3e315a2dd885d7ea2efb4d4cdea8b:0 2 "}',0,'NEW_TRANSACTION',NULL,'b5bc2db5cbb7cac9cc10b1d77765c3457fca75e5b383773e408478efdd1f6860'); +INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','09859703c00f569e320e7e475a7661bef0ee135675d6892ffe830f9dabdc8393'); +INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'OPEN_ORDER','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','4f8583127459cc22f9d3fb5b6dcc3c47408ccb4c717de468fec537f48fd2863b'); +INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','b5c81fe802d48f092a5a946262da9af296475c69d6a0b2d309df58a4ba95823b'); +INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','33d50d79b9255175a5542e9280763cd14dbe67827ee42cad9b5acfe7483ad866'); +INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx1_index":4}',0,'ORDER_MATCH','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','94fe09e90772a4440dd4fcad6996d0ff9005323fd766f0b536823c443a9b1990'); +INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'TRANSACTION_PARSED','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','d1151a35ce39a43f215b72dd4036bab4d6bd02f4aa4ca30a97f199d0bb226658'); +INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"fd0ae9793d9513540246b94ad116fc0531e8e07b2c014752e175a12e2a7a82d4","messages_hash":"f768da98a5a77e142433acd535b10e26a9da322d25054520228c915eae831956","transaction_count":1,"txlist_hash":"107902b17490957ebc0d2cb5dba1f5e667e3a393acfd8b3adde9f6b17aaad5c4"}',0,'BLOCK_PARSED',NULL,'76afa546378b1524739dd8e90ef30a9bfdf64b5e8ae1fee86ab33d66e61ce768'); +INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd44aefb512abc2f3ac05db5c27342349b36c29c413814a1c3a4b9c2bf8a6045'); +INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5,"utxos_info":" bc49563c96e9ef2df2cbee4ff2c07be675eaf382fef1e249244bb8e712652577:0 4 "}',0,'NEW_TRANSACTION',NULL,'bd9d349ee4d802f39065b6f9699520a42559fa3127e55bd1db5e3e01e347a7e6'); +INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','9062f548109fb66a1e8c5310f682a1404b8a9fa90f64db9bb6df28dfbeff1492'); +INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","status":"completed"}',0,'ORDER_MATCH_UPDATE','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','454f30d148a0ada7cd7110494c0181e02503f6cc9960799e8e8e6c5774905342'); +INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'BTC_PAY','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','b504d75cf7c11628a626481e7edf3b9a9842a4ddcb7e6bed24b35625fe3f7ecc'); +INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'TRANSACTION_PARSED','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','b3e5c23509bf3c12512a31372b981430356fec97889de7953a746a58487cb1e1'); +INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bd894777a85b731155a0d6362766b4220c03db4f3e5fbf030d6c2529cb5f3537","messages_hash":"a61a244934ba99ed701f2bc7f70549c3f463473ff7b7e097b90f4d30042a7b60","transaction_count":1,"txlist_hash":"65e6a7c64c8439a60fb066d96d5165e6e40974bd1b98812ac6a4172fb1db1511"}',0,'BLOCK_PARSED',NULL,'db2bf80d05c0fb3d1fefa7b7204280c6d3e7faee751da43ae12a3d8cb40076db'); +INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0d890ae09ad5928a0ae12ee1def490deacdd65fd7b3256438506460b738ab80'); +INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6,"utxos_info":" d00ab6be126b638ef170c4ae70f5688538168d0b1ced4133fe99c21ca166cd76:0 2 "}',0,'NEW_TRANSACTION',NULL,'5a5de5859c670183407179c205d3e86383b085d253318881c193e7770fa88fc7'); +INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','d9b43aee1ad17ac58921820db68b89c818d6dbe8516c105d1e12b497f4835259'); +INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','0efd9b8bf68a1e22c1cae1c9a99e980b877ef4e7951e22826f012258f8c10a5c'); +INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'ASSET_ISSUANCE','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','3a128dc41a7cc99bbbcb152425705861d4096b95716c670d013391fc4ba75bfc'); +INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','72c0febc0b988bf9768f06b4ad5f8d4422e389c8dfa2fc988e1aea2c8c78eadd'); +INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'TRANSACTION_PARSED','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','a2a750ae3bad3579d2ad45e7e0ae0b4cad0667d89488330f45fee47851eab598'); +INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"264c98f1d460f78e52def545d25482fd76549a5309d04841bc27b335f06470a2","messages_hash":"87bc39c1cfdda6f4eeff9c7fc32d4a8b4305f00668a85c222e90b44f81e23ff8","transaction_count":1,"txlist_hash":"9ede5548f7cb273af825360a6285fe9a51e9625c9084b2dde7bec013dec24f0e"}',0,'BLOCK_PARSED',NULL,'84d83d83c71133b724d857b4db8bd63732a5f063fcff3903e4329c5999f2ad86'); +INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e7051488a0b00d2838eb225d0dc5a4ed04649ba13b8174ffcc73323dc6c1e99'); +INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7,"utxos_info":" 682a11acb7553de4c3f0f55a61eb033d432adc2ed310a9b1ded49a5630497bdb:0 2 "}',0,'NEW_TRANSACTION',NULL,'ce95b95fb89f629dd611e187afe1a54863608f2c230a8e707122dc27bffb8d30'); +INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','b5ce796f98d902f62eaaf4ceaf05db638ee263435f103c111a9a3255cd318216'); +INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','cd3de958c32c5445cccb3f658e29825efce783e9225273f276adfe67fd4220f4'); +INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'ASSET_ISSUANCE','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','50d853376738ce19e6858d7ac9592b178ee672787c7fe104dba44798a1b9dfbd'); +INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','c6cccf6f6aa71499b871a260a3879a68757214900163479ff9226ff89e216cd6'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'TRANSACTION_PARSED','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','5a88f3b22b428a51a3d81c153175d2cf9f7d63ed3d37086445fb905ba7df366b'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"a1f2aa5a0b8d030c2fc4e1243c3173319ecf68d232262ea3dc8bfdd03a3f923a","messages_hash":"603c141c657a3f0a15800fdea87d0e1497648d77437307fdd4ae2255c73b31eb","transaction_count":1,"txlist_hash":"afa257be6b0f57581b8f1b932b3c8473ff5c89e4bd6c3d3e3dd6a8c3cd9b09d3"}',0,'BLOCK_PARSED',NULL,'f7b56258d2ad4053391a00d5a6e1314854a7818418b0fb5dba4e2b321d4932a6'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71e4c07cb65bb3f375b212dd938af448152609a9258b92265d7fb382d9c5254b'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8,"utxos_info":" d8757243c0f0522e40e5dfa29c2958f3e2ec842b4da0761cdc1612063ab36599:0 3 "}',0,'NEW_TRANSACTION',NULL,'29810c037228b2ec938a9f8e8c27641350ae67a935b9027b922c76ebde2bc93f'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','f7dcc15a4bd4a0a12ced2af25c25aaeb41735c2b72925ec004930a9cc65b7710'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','a3f4ee2ef35540509008c58b2f578eab918c62557e64aa7179f304046054fe4e'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'SEND','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','7070469229e06e1d2e9035799d28bf5efd201e994eea45839f8ab311567eb428'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'TRANSACTION_PARSED','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','6f03175cbc7d5ff8073abc3fe84e6d66648042dd724b28f0c396b84c5e659a15'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"8709aa2d5064ea2b7ab51a887d21f5fddcb7046753cd883317b533ed121f8504","messages_hash":"b11d3ced5f6094afb447433f41e2ff7c84248037dc4d580843eecedc322f98dd","transaction_count":1,"txlist_hash":"40941bb90c086bd2716de8afc1fba5eb75721143a86a606ef99ee3312de95614"}',0,'BLOCK_PARSED',NULL,'b78ed78cb7302524bf6bf8d95bdb05a62c4d0fed59fa51250511f320a06c66af'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea5287f3094fc9716e11e48e712945266efce08cbebcbf6bc55fc495b45390d2'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9,"utxos_info":" 0a016813237e5169e6aa6cb199572ca6479c5245a3d48bd0842de4aac8a528c9:0 3 "}',0,'NEW_TRANSACTION',NULL,'64b3f7666c8098046bcd9424c96e9c5a77577d14c77fd4112bc9c6c63507a589'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','e144001478d1b03cd10099dbfd0498960bf8b173ebe16c94e5992ec1f7d15700'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','2030244d22a733ae1d08efb1f6f03a5f786be26a1e4e8f3de64d674133d7edec'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'SEND','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','05069545dcc85469724e894cbc84898c08dd1a89430f1c8c13552247104267a9'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'TRANSACTION_PARSED','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','eb79b8408d40bc2f66fce7fb50c513dd4ede96a225d5efc13ed31dfcb2509b4a'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"c1c516176fe38b69b31e3668b5ef20805bd90d3112c77f5652f838af8e7f604a","messages_hash":"c374e2c17c37b2a752eb46bf7e89942db70f82275e00eb60c16ee2585c95323c","transaction_count":1,"txlist_hash":"9b186632fe722ba57daaa01573568c3d3405f7fcb0a729005a6338266a4debfa"}',0,'BLOCK_PARSED',NULL,'d5011a200d7e7c25e2fc794aa164b364e6326f82f4e55a901300cc4db46f9893'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecfa3e536a463b588f6addc403b49cf59f9d19557c5adf40700006e48314353a'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10,"utxos_info":" b62286ce041e346cac7982d5a815df56a1b55778f1575f08e24c0654400c0534:0 2 "}',0,'NEW_TRANSACTION',NULL,'be03debc249283b08fdd6db4cb252323128a33d70bd9e2a05cacec8f96530a6f'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','45ec42204b915b9abc0d018ff125883bcd1072f78cea6ecd094c4bd317bf15ca'); +INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','eeffad55282fa6a7959908370866d2003a1c044d3933572e1940809c7d3fe3d8'); +INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','667d85d35dbe6b742b1b6df8d75b6f7bb7652b5e0a4c9d7664375d99b49e9c19'); +INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'ASSET_DIVIDEND','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','c82d319b4c7894ffba3ff2d8e8650b6c1c1dedfb1934857a89645379721122eb'); +INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'TRANSACTION_PARSED','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','b9c4f5e073758594f49e3f67c3490e003c9f6e3d91e42f8616292c106bcbc25a'); +INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ae8ee9e681f0ac96de96babc1c80e5188b3e0cb91074a0dfd8511ee7d0ae64c8","messages_hash":"123c52af3a6913f75c4eb3926681e4e673b95f29ce1a49390b9f863fe35ee3e8","transaction_count":1,"txlist_hash":"39f4f154cbeae9a65b43ac831b2d5ad0e6f6575b909b979bd4bd97dadbab4cdd"}',0,'BLOCK_PARSED',NULL,'8cd0802123c1e29f60b4d318b59381d65fc78a1b3d30d5535fd3335e026f765e'); +INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ff920eae7e8cd29e77501888b0f5dc1adf001bfac1f9c8cdb4673c5893ee75d'); +INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11,"utxos_info":" 78390d392d84db9734cda0f6cb43b9eb49b0568e9473650ab9756c21c4b992b4:0 2 "}',0,'NEW_TRANSACTION',NULL,'9a7e1b45c2018257aadcc0744f01c408e0056f5a3eb89500e1b58d60adb3c86c'); +INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','6309893ba6f2e4259af7abfe2067bbeec68664c30e4d90ebf8ad5a75c9bbacc0'); +INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','bb0de44b9bd7e746c727f9a99da7f8bd2966b2a3bce58f756d5448e467ffd640'); +INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','e99d9a8816728fbacd8a09364f944f17f2ac0e98909e73f81f9539f3eddc88ac'); +INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'ASSET_DIVIDEND','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','c311d8b0bd9d0c8247a92317c1e6a6379b7ced07e9d36595f469d0d2658cfc13'); +INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'TRANSACTION_PARSED','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','0abffc24d391c6ee30e91b3073fed2d60a9046de7b64babfeb9dd860860fa7da'); +INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"0451ffa5d7ffb0e588e58ac7eacf77f6b3e17f1d27c1039f03d7716b16fb234f","messages_hash":"819db9250eccd28e19c3e5fabb4e5ce05c747906a5e3935353d3625c593534e6","transaction_count":1,"txlist_hash":"0cea2e2e06c6423d1c5ba19f6128fbe8fe6d6c3688316c9c35dd31cf03d38c97"}',0,'BLOCK_PARSED',NULL,'fa8faa39d54368c61dd0effa3515aedfcf9e78f8bb8490ed3dbc29433263ac80'); +INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3c51c287a04369adb5bca2934d531248459984a8f08c7fede588d139dfdae5b'); +INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"utxos_info":" d80f8093a99a0c63350f3ed29af416454993efbade598a2e4de4873dc27180bd:0 2 "}',0,'NEW_TRANSACTION',NULL,'c51769a424e4756ed16c735d5bf53d39926dd84cd8f3db8b6bc9a81dcdf4eee3'); +INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"value":100.0}',0,'BROADCAST','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','35d334b207d2e13e2f86835b74d35b99b5e8f2d45990545b8464b7b77caa962a'); +INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12}',0,'TRANSACTION_PARSED','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','de344d53316a18656b93f720b96f1d5b9ad88c3fbe9ea7cdad3a0cd7b70bd825'); +INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"dfaae3f28c2f75e4bcc49034ff2a191b5a41b88035c5d266181617c8c65ad5d3","messages_hash":"e54842926c5bf902bda438e0e7985012ba1063f75c1a75803574fcfdb9c93136","transaction_count":1,"txlist_hash":"0134329cfdaf63e5946b9b5a94b73f59b9a870d4569ca07c0cce078bf13714a5"}',0,'BLOCK_PARSED',NULL,'f5f82c9f82fa38a09acc1a6a42a00af31ceeb04eab7c1196c96f810119c8a0e7'); +INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42de3e527e1c8a93b7286c50be8dfdd3064d14ec63d83c23ec455ec675c7c900'); +INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"utxos_info":" 0081e95041304df8c910d143341190089eb619caefeb02e8d1b803199aeb8c4b:0 3 "}',0,'NEW_TRANSACTION',NULL,'ac5f03cc153c8fa1e73ab016c422162385595a1f6f313c81175b12c0043df703'); +INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','b20e0fe97d1f5b20a52156e7f26738ec9989d9c6c9cb1514e3b01c5d7a0fc4c5'); +INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','237a659ad23dd33bbbc8ff6a88c5deac298a0c141028b09f84274eb14bb51800'); +INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13}',0,'TRANSACTION_PARSED','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','70fdb8bb9a7619760659765c104e0bcf60f22f333c41bcf298e0008d8aa876f6'); +INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"c711e8cf2d9bbed01724a7b22cbd4900a4fd0a126bb7ecbd7c97ca15a6276553","messages_hash":"3eb36f130e73e8480c96d0084166149091d704c7995e6031ecd44e372a09e70b","transaction_count":1,"txlist_hash":"9a3fb4fb846c9ffff3a50a0a31f3ac3900ba7048a60dd69c6e14752734358f1c"}',0,'BLOCK_PARSED',NULL,'fb58a2cf57979bfecc0a9af030fbd1abdc9568d9070adbb6e589bbc811709d80'); +INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6577b11d8320e50da9e263083a9a1fcbda4b3289b03bdb4a8075ef56174acbde'); +INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"utxos_info":" 763fba63964d344185ec530a4b2e18cd83641a7bb280d7dfc1881772d74a9a0c:0 3 "}',0,'NEW_TRANSACTION',NULL,'6cd1e06779057c7482729fcf164c3d13a73f44e435d8851a5162a160e9b0d0a8'); +INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE',NULL,'713a42b164c6fe14cb99811d6abc1b7b2ca47ea804910a8da65593828105b43b'); +INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'c44f962c525f3988a04f66ee4e819983e9474144cb9fa6e784f06c8db492d5e7'); +INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','ab0303798e7eae2b286819ea1bb8a9442ae6d7c811ead937a9558f89394ec971'); +INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','d4399e59547cdd79639c2443f8cd28f7747ead4f515d98ff808c61cc1c09be04'); +INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","wager_remaining":8500000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','3c2626fc8030f3cd6f2699f3c6ce657aa32230538cf5010ead92ee40e9ca3139'); +INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','00f174b977e6c7e5394c0e26bdfb567c376246e78b320e6c5faed36fea936aa7'); +INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","wager_remaining":4250000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','8b5e04656a6e94801f2f14a7e9e15c6aedde3365b7198d9dd0efc07b0437948c'); +INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx1_index":14}',0,'BET_MATCH','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','a9e646aacb56dd2dcac53deec67250de692b6212390a8bea8217af9581e70e2c'); +INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14}',0,'TRANSACTION_PARSED','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','a1bb787f084531f5b3cf5e81f19290ebeba22090ad91a2185209c797baf1eed6'); +INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"3dfa5822de8a4c674f1517b17e50d2ef63ccbb1fc4ae96fe5e1dc05cd353aa4b","messages_hash":"a176fee03dc5ad3f9024fcf4096858f84c7d6989649769a39a075275eda4e2bd","transaction_count":1,"txlist_hash":"6228a449b24d607b8fe1aea60a0292874cfe515a9440bee2829f6e61efa0b2a6"}',0,'BLOCK_PARSED',NULL,'43fd10b1c8b7e43bed64c59c69e433e6424ab79136ea859348d4e29761267216'); +INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83a22dd37dff3aa9aee6e60e62a6f4e6914948da2edf9671b4b12eaab81514e3'); +INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"utxos_info":" 1c955d683a1186672eb27bc0364c7b7c373341b2a40c8bb906cd39ec9bed60a1:0 3 "}',0,'NEW_TRANSACTION',NULL,'2f455bc5158ed250737fd6d5cd25c401a47f707d85149ae324cea1151fbae651'); +INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE',NULL,'f481bae3f3e82bf239c610a18c6378e2e572d00ca1eda481f4d4b707175a3f2e'); +INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7916d55831dbb8b846f7a6d9de45146d837899ba745ae58b43afec911299836b'); +INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'ac9b793527af6471cb10835682848b0b2d603335e3649bb0c381ae786b2173a9'); +INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','ebb8602dbb96cd6cf8a09259b3e9c424e38d7d01db992d46a51910a6d05fad6f'); +INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','1a80578a91885e852bc908b05d342c05f8760bb40becf9c075addc278ab4c9dd'); +INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15}',0,'TRANSACTION_PARSED','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','4c87b40cb23b63ac6d40be55613f06cb24e0d817c7b92e3c7cb56198a1608615'); +INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"49fcaed957776bc62c9f1feac30dad8c0574596d312f9efee7a453e00bf64866","messages_hash":"9d29d6b1dacb4ef04cc3877b1b6f32661d98822e7f536a2eb49d5a904bc406a2","transaction_count":1,"txlist_hash":"700cf4c54e23c0cfb4d8b02bc6cb1ca509637dd95312629625aa92d32d5548d2"}',0,'BLOCK_PARSED',NULL,'041f85a3c804920cd5702a0d94f99043155ff6cc0e721c252dd8bbab277aa101'); +INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56cc50904b3175d8f5dd603644625c13ff1db6122faf91e1f4a876d8e2533ac2'); +INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"utxos_info":" c3eb3463857a8defa936fdb1a10580216ebcacd843ae6a59d0328cea5b2f1f83:0 3 "}',0,'NEW_TRANSACTION',NULL,'6dcb6c979036c255e3cd0dbe1b41b5938115342353fa72beb47922be809ceed3'); +INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','bc1dfcb2733ca534a4db5ac18f246ed08e781b3f7bb79a1573bdf99b5aec350c'); +INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','712dca6371c072d14a506b1881692bfe3d2b767ddd70ca042ca2efb99e03b8b3'); +INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','bfe372dc6a490ae91013e1459c19f47aaf6e0611d9142de95e346a3b9c2704eb'); +INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','70a01e951ff812a5b05b977e20ee6856c0e3ba7b8e3affc916857538f285a445'); +INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','efe7b3ea7977c3ccacb3308e7694ede2230f50efce82ca90ff8a72bc00b9525a'); +INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','230fd63d3059cb04329a3a771f94f78be0ef054a00a8eedba25599b9c4e13b7a'); +INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx1_index":16}',0,'BET_MATCH','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','d870d5691866dd3b248c74b7428a9da51e178f2bd8d9a65bed531cc2aa2b9b1c'); +INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16}',0,'TRANSACTION_PARSED','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','65f8bb538c6406cc7159fd977a35a451490008885aa8a858f8ef02b5b442e2b0'); +INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"4e4abd3e8ab2658a7ac673e3a178ceac76fee41cf48bb6ed007d241c079979bf","messages_hash":"517a465489b9c047177ae9ffcfe6de613b58012f0e051d3580d9d94ec5a7d300","transaction_count":1,"txlist_hash":"288c9c0f37cb0c2e9db66d4b88b165391a67f06016ac84c485e9b9158ee51f2d"}',0,'BLOCK_PARSED',NULL,'9dfa8a93c7040ff354bce2fc561639421e20ad080c95cbacc28e0a662cf2222c'); +INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2e204357f1c97308e7271a71bce1b0c220a9280c9fb6fd5a10ee8c477dfa72'); +INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"utxos_info":" 6e87b9e2c5817b3fb2d8884f48f50697733404a54dd2651b5f45b4da35545833:0 3 "}',0,'NEW_TRANSACTION',NULL,'a0d13a9b8b5b9775bd4dfd49ccfb48cee6625a4a2e5c6941ce237e27072321f1'); +INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','8d7b9894e1686104e0c24f0614bf7e337c6d24d2085b3dcc39f2e84c650df172'); +INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','c1c1e39a069a6b9af07d0537e817d1ba0da643a995b240cf0d6aa0e1ff44c2f9'); +INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17}',0,'TRANSACTION_PARSED','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','869c3ce8533a1584db9d6bd6b7dabc85659b94d0d7782a4b7770fb45bb572964'); +INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"17a28cca0777254af26544edfefcad8810e847e5d173fded9a7813719cf1162f","messages_hash":"ac2733ba22418b1d94bd24152389dfa9f9d0c98c792431c2e2c2e46b140077a4","transaction_count":1,"txlist_hash":"1bf7e0a4aa8356584087591a8c8e8b28185a6ebfe1a15a85f01165a04ff57913"}',0,'BLOCK_PARSED',NULL,'d5ce31ecc1eba2451f92f37b66911046c112934ce0783fd433f0dcefbb6fbf6f'); +INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d20ef1c2df2b3fb46f6cc14c5cf5e177cd182577e09857c2883e1478b4498e9f'); +INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"utxos_info":" 0fe94e9ce6026767f7c6fb2159bb0caafb1396c8d666233718d5b549ac1c9d8b:0 3 "}',0,'NEW_TRANSACTION',NULL,'acb1e82574695bc9dee13575123ce8301ddeb8c5cca048d913b9cb9883c758de'); +INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','dc6c871475f64e501b88385d2d0258b934bef33b41a1a80835c06765b5d84909'); +INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','74f3bdb7dfefb65b66aa2c77f61fefc7a737b8dd61dc83c043bb22bf74f46a04'); +INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','890715c50d02530c37f3cfbd0915fc42c1c0afac4b30a59ada401c8759a7a550'); +INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','6e88329ab834e36a351a35f4ba8fca0782473a4e5f603fa05ad1f9fb26664850'); +INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','e14fdac7b80c48205e7898306e6c8834d86a775a55106345f8d3a9788933cb0c'); +INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','7282ff38872cd92062fc947013e3629af628e3a4af1ff6e41ab3449bc01addcf'); +INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx1_index":18}',0,'BET_MATCH','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','00d442eed32beb2af31c725484482f11902038e33b43ca34a50a9af6244f997c'); +INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18}',0,'TRANSACTION_PARSED','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','f1faa343ee2e8e2f2d4d7527bdd702685f1a39623b18977cc4a2b4e1e5a6d92e'); +INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"1fb58120e9eb78908fda6265cad12b4a5770701e9a271bd5c4bc94059bd3bab5","messages_hash":"f108562c7553e868c5f317d4e0a3dffd891923199060910adedfef4ed7e2f0a6","transaction_count":1,"txlist_hash":"62678a570c40b5a12469e442b3a54f1416d9113de2db501f37ed533f345e71c1"}',0,'BLOCK_PARSED',NULL,'b096d83d23641a749304a8d1a07a2b873b8d8600e06eddc8db26b92085abb99e'); +INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b2b699bcf33dd4d3c5758147f08fc6368f0c3f39cc02aa518d295bba1271a90'); +INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"utxos_info":" 1bd34a2e5fa7dc79e1f1bff6fcc0532e1c8ee5714ffe51d4db117b1ff4849270:0 2 "}',0,'NEW_TRANSACTION',NULL,'1e42a4cfd7216027df8d75cda87ff08998dea34abd1b83cc19cdf9c8d8a47e0c'); +INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"value":99.86166}',0,'BROADCAST','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','4492fa86e903ad74b0ed0dc8e5b83ce89d0b6888f72a9820c0910c7e9ec15184'); +INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','98d29f9aac2bafbe92cde1f8cf3a813006a81a996fe282ea989cfb620fdf7c24'); +INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','1c3f186a06f4e216754f66b9fa3ac5dbc3a8b108300e9b4754f87e74691a208f'); +INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','b7321b717885e9e155b97940e9de95c65f2419a525a684af0c2adbfad3bd919e'); +INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','4a54f67cd7999b8485c5c864f9a08f513d4512ee86feaefd627454b81790b9bd'); +INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19}',0,'TRANSACTION_PARSED','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','c8bda73ce47b1a77c6d2ac26e3c4f20656fb4022fd5d5ff5e63ecdbbab7a26fd'); +INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"304243c1b11644e04d325d7100e4c757c07b874f0349e60163a5a544e84e951f","messages_hash":"94fae4523b535b7b5416e63ef3c189395241a7bde35453caaae5cb251f5eca6f","transaction_count":1,"txlist_hash":"a174e4813aa967f5466148f27f4f8511ed9404295bf613e112c08b72eb3229ad"}',0,'BLOCK_PARSED',NULL,'3f60a2b2caf511551c9a3ae658920a221dce5af03b13340f610f69686f31e769'); +INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d00c7488b71718e230cd1ac13c6144ecba99e017fba430fad09e21045dd25dc9'); +INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"utxos_info":" d42e76bd859bf8b182e6e798cbb571f766fc69aa64d9b71c15d5c04f7fe8d0fa:0 2 "}',0,'NEW_TRANSACTION',NULL,'da0b70c545a296a289ee60aef0b45140a3e3c0c7356ed56d4c1a3b2b1c27b34a'); +INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"value":100.343}',0,'BROADCAST','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','8922cf070f1d89791d13ff20c8b1d3e400edfc68e60c80272acb564c4069c071'); +INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','f41a865afebd32651b8dcbe7079864f44bb2f7dd073face7880abcf6f70b93e2'); +INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','8b52395462a00a48a0e74fdda3406fee6f15db939b30fca82e50b563cd113a4c'); +INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','b6ce75aa3983eaea636e6237cd67e3fde3e9d9b6fbb8fdbce8799f4b81c6ea60'); +INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','ef09a271b52e50ee4e6ff9359b06f4b42b11de5616341c1b3111f996dfd40e37'); +INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","status":"settled"}',0,'BET_MATCH_UPDATE','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','a89367d02820784c75891a14d792b6bfa3bcd252c634e3209ec7d12c7d5ee9f2'); +INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20}',0,'TRANSACTION_PARSED','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','ca77dc1b8e6b26175cd5eff3b9d6be08e9714f9793aeccf3fed5dc983dbbfab9'); +INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"fc9905ee4863b3cf29a3e558ee690a24ed978a4fd79c464bdde30a34cfff19fe","messages_hash":"8eb8bcd2974acaa109119827a6a2f148b54acd7ef046a1eabcd3c711a135e697","transaction_count":1,"txlist_hash":"c551c2094651cd0e06e0cd9d513fec771b69f4bb89c3034f201c89f703cf8a23"}',0,'BLOCK_PARSED',NULL,'b27ba868e4cfe07ce0764c91fd6b2063928c5281456eea7fc87c5869959fc365'); +INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f82cf633befcfc7bf52d8fd4485308d91af370b5704c60f34fd05ec3cb8ff56'); +INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"utxos_info":" 35f2a884080b8d753095b1de08c0fc7e4959da011dcb0118dd3a856d75a89d2f:0 2 "}',0,'NEW_TRANSACTION',NULL,'e0ad2a834a1ef2d167940347ab475546725abd8d0cae5ea03c8a8787dda9adba'); +INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"value":2.0}',0,'BROADCAST','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','a5a904c08ffeac43316d045a96553c61d2c50ca00823abe00070cd2b829e03b9'); +INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','1d944224da914623839d8fb8f043acdccf7e58a51c46063e9bf28bcc50d09ac6'); +INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','e5736ef695a592fc819cc7c005dd9ee50289272467ae246536f4bababa20af78'); +INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','dd6be77df12a7cfbcad8b67e34d7b5317ca664ebccba723325fadcec8358ea7f'); +INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','949235152bd21556504e9d5c285f157ecbb3d630a5918abd15f0e9f7608d66d4'); +INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21}',0,'TRANSACTION_PARSED','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','b51c2a2a3600f25dd3cd77132a22eb2bf7198ec6de6c41ba0693ce9184e0c905'); +INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"e433feac4a09ad727bd3764b10a568acf5c659745a695e9d7e8790514f6bc98e","messages_hash":"32980f68eeed329ada0bac46146a50e54193ca57a310e72605eb5830e6305b62","transaction_count":1,"txlist_hash":"087d41720991e4b6bb72c6141334a65c9a289454dd8fd57edc33a09db467d086"}',0,'BLOCK_PARSED',NULL,'e98a39dd4e144a7b19a219787f59d0f7e706b79c253b9fd803dcb3c8e3b4a034'); +INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e81a144085f38b37d69ee0c6cc0f53ca5e5e30bab1439dd310f818e0578df6d7'); +INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22,"utxos_info":" b26d7ac6c4f02ba75486ccd6031f7b5b78891da999ad5a28082b77c8188af830:0 2 "}',0,'NEW_TRANSACTION',NULL,'a81f7bde1bd7b63054321cc43d461e5c7f9c8bbf0c71d387879f193755cd74c1'); +INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','cb1766c440a5059c68b8d75e5a1ae668974e7a24436c338c2bda3e773b09eebc'); +INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'OPEN_ORDER','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','be0447ee52d14113abdb0a067a8f86489bc17114cdaaa8f87285e08d32c47cd2'); +INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'TRANSACTION_PARSED','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','2fb4dc3c009bd3bc723623bbec6bc9c3ed611ffea95fb25931ba631d731689bc'); +INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"622f92da40eae0b1b57218b32ad18daf7d79c9e0202fed4a288d75b8fdcd19d2","messages_hash":"812e86666b3011b817077578811956e488887b458836cfcd3ab72f3a27e86247","transaction_count":1,"txlist_hash":"caa77e83354d56437795411f9625dff332c0dd39d059a0ad7381fe1f37e38999"}',0,'BLOCK_PARSED',NULL,'dc9f4445611c780dda9abf601313661f54f77cb1b42b6beb18feb98a623a6188'); +INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'421fdd7b560ecfde1b0e2d576811c1423977eacabab48dad123530ce8575cd81'); +INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":14675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23,"utxos_info":" a97707e3dc3ad8d51d385701161d1020fd8f459b3668a9b0cf6d57a09416a3c9:0 2 "}',0,'NEW_TRANSACTION',NULL,'3031573d9e86b65a895864c7e6107543d1de17f32f14ac4becfc21f57b8f6112'); +INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','6c71c1ded9529d9bf9915c441efb28b2a2f69d43c787b98fac4107acf48248fc'); +INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23}',0,'BURN','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','655581413f93417cc0edd6fc52297afa06afac690a1acb712cb50f40e0cb0500'); +INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"b7aa8d9ebc37d52d8dcce2cc17431d6edf5a183b73ac85bb3d91276592215cfd","messages_hash":"35ded8ed45aa6e5a1ebeef71ddbc2c89f1777d3af7bb6a858f2783026b40b918","transaction_count":1,"txlist_hash":"df23960a57099b0b64572553e56794b1eff3004e684ee2b31187b585aeb03587"}',0,'BLOCK_PARSED',NULL,'b3fbc686c273086b1fb00b09fe0f95bf000d2024ac1795043ac41428c2fb7261'); +INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac20a236e00187adcfb1689fe9f8c7aa3c6fb316b25c87df7136b22dfd87d358'); +INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24,"utxos_info":" c9eecc8059afd7607bf284bcc3322c5c34639e4707a8737c2a98526911c99390:0 3 "}',0,'NEW_TRANSACTION',NULL,'e31d2a7f06981970457eef3ed4eafdfe3e612a770db626e6c4bf70ba843fe82b'); +INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f"}',0,'BET_UPDATE',NULL,'427d9e03de8473bdc833732b5277a2d15b1e8890397833bf3d6b6faed1c66be3'); +INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'2a7caea705812338e177912c69ca718c15d46449ac7d2a335bb1422f4b91a4d9'); +INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'bd12c4db9dc8f2a9d1eb5c9d4ae9b775ae36498e151b74fe6c8901258e290bb4'); +INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','57b988e9f493f67d29fbc3f1b291077019c7ee36180549f0506e806f7d36c55c'); +INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','b1a28b03028ba225d8f08b2f7e2cda72296589a825cba5756f10b1fb43e52bda'); +INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'SEND','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','0d63595bbf4ff7f80a6e091bbe4a2b2b264e68cce36e40e6ac7ed7cca22a93e4'); +INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'TRANSACTION_PARSED','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','c3f0b4f25d315ef90eddd98c31eef31b1251640f16a4dae4e64884694ba5ac1a'); +INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"501c058860063ca599f3b946d465b3bbd84fd483a2a80527e456e3de32b48a19","messages_hash":"0aedb6ced2e21c0fd8b956947641a38405e45f6bd468c3cfc77d7e563a0e33ac","transaction_count":1,"txlist_hash":"c680a6d4f839ba4f9420a99f0512e51fc1db0b661ed027332f440c6089eb615a"}',0,'BLOCK_PARSED',NULL,'9660fa15f232956a7d854a0c104617215013853913f61f88f26261b82ab6c17f'); +INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0dceed9d3d93cb4a7afbf8d4a4df4f41bb6fc3506211200fc5bf90b1e7724cd'); +INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"222986ec44fae1a6196d64dec24b79872970823f17bf0459d3b247bdef316675","messages_hash":"cca1a26027d71afe0475a387ce5b360a9b2037b97d9b41b68530bc0a2ebe1698","transaction_count":0,"txlist_hash":"f40aab7ef7167a17e35279423d9c14d49a9ebc05691fa658b09add1373216959"}',0,'BLOCK_PARSED',NULL,'ce3c45095d9885513bcd7f11c7ec5cf57ae1446d35c8effe6c94bd2401db4b2d'); +INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3a5b1bd23917a905b5846fdf8b37787e87b87ce500d274b5117d401644ef5ff'); +INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"bcd88006b9cb98445a74c656d424435e82eeaef95dd9c54e394b42808dc9cb8b","messages_hash":"1d2ec6d87f978d6e9cb57997842da8ad6a81c31f6b32381a7cb1db192ccf7557","transaction_count":0,"txlist_hash":"0e3736813d3c0e789cd9474449abcf83118b5559cbc2f4dfd4d3ee51b5847a57"}',0,'BLOCK_PARSED',NULL,'21da34a7e6a85c8ca5046c336d16d63ab010a0bb4484c7a007a074c9dea3f636'); +INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'510e709a0fa3366cfd88a3733fa9b2f8db4fa6cfdbdc5cd05f064430f4c36bb6'); +INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"3de7bf2043ac2e68bc9eaf8d1c12195a4f2400bc78c8deed0d487af11edf401e","messages_hash":"cbbc9e3eefaf01335537486aad05af2d831cfde7302b18e0501fb167ba6ad8ad","transaction_count":0,"txlist_hash":"c3572580398fcd71e5a1fef6e10217a99dec1aa605d61830ebb64ea65b7907ae"}',0,'BLOCK_PARSED',NULL,'f4cdd568bc8d19933f02463cd2537ea876658c68823017fc86496b5e9024ad1d'); +INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'472ba16f71b9c8436eead94f7610f9317611034ae8976d50171169cf278d943d'); +INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"6c2a67783cf36e8987dc1805f87532ee1b94f79fb00952d8ee4cf3daaf655f85","messages_hash":"fbd0cf72c242de4ebddfc748841cf443d3ea0a48e50e115ba15eb73c4cc24633","transaction_count":0,"txlist_hash":"b8b9d102d56df94d4fcea6f8aeb92d3cb859d3281c9fac7407842b7f05313737"}',0,'BLOCK_PARSED',NULL,'b1730f9cca4dd0985145fe36172fcb6947472990faffe6ee50614a065311a712'); +INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59fe3fec9d2e3bbfc32691f53bfc2dd0380696d6d97f4bce9e42bd9e3f1c9441'); +INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"659c73390e2e7eccc07d690fb438181c604787208bc45f466e57721fa1e21a64","messages_hash":"02bb87deaf0eee77ebc1483a4bb2f4a52ef153f48c863dd5ecd452029e006a3a","transaction_count":0,"txlist_hash":"55eafa176bc145ec7b98497c8a156226c68bd3b921cbdd06a890b2bd660ca050"}',0,'BLOCK_PARSED',NULL,'7e212444b3cb3927fad90c29e55eb3775098ec36f12c94816d7658acd0ec773a'); +INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f623b85f2f3c2d8b20c9094154435c20f8736361d6b932bc37dba1aa52be742'); +INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"87449e7ff7316e49012934d83c1f5b733cedf39680299a9582eb216e260e0c02","messages_hash":"6f4b3e66997c5dd39782d00a208c90f348a8e7b5359eb1bba2157e99d6c99583","transaction_count":0,"txlist_hash":"c2fc809ff3ef6b74b10b1439fe15c275c6fd925e92dea73cf9d603948aba0d8f"}',0,'BLOCK_PARSED',NULL,'dbb9f01a004fea5747e29566acc5b3dfb1cbc8614bc70e731cca82ac3dcb5a2c'); +INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d611df3d96eb6db6f9770781231f69b05581c3b8783a3f0015fa72deecb9e49b'); +INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"6c4a7f749d0308edf5c88b3ea4de3b1d497ba3bc06435594d77686318b744b0f","messages_hash":"ec79840ea2d6673cdcb440ad7c13918c79973134258eb4333a6aa2f97db4d48d","transaction_count":0,"txlist_hash":"45db1d0cde22349299df8245e7ed24d308e1b1cb227098178606650f20832aaa"}',0,'BLOCK_PARSED',NULL,'75434997d94940cdabc1397cddf3ac49501d8b4c8364bbdec3f57e5cf4e8b46d'); +INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c60df192e91e7a8f296f3fbffa396a666ae61e1f49003223b1dda2dcb7fe3b4'); +INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"ecc04b1b2c7803ca17dc2a32adebd0960de2c04c8dbfec9cd88771dd883c885a","messages_hash":"fbf06dd0ef5601ee0a9415ea8c86a7425a0dbde4fdbc4b03f68bee68fdba6385","transaction_count":0,"txlist_hash":"981653075dd609f44e0a5673dac2b63824b84e26080ec226547892c67dd7cc33"}',0,'BLOCK_PARSED',NULL,'1600e0465c32d0a5fc18cfae04242562545b6e945f32a18c51c42ec0a1a9b565'); +INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53d69b9cee88dfdcbeded94aedaffc2ed2df4d88f8c5a79b8f723dba2ed3996e'); +INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee"}',0,'ORDER_UPDATE',NULL,'6c325797653c0d0be75237c0ca9d170827d73c3dce68c8ea6448b60bb322810f'); +INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'898e2d21f95b38620bd2ac0e86fea846a001caf4e0152532bf3f61b965100105'); +INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'3b06b07da61dc037e207054855fb81afe3c74950f18699fe4f01622dd113cefe'); +INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"01e769c5b990db44a9e534bc6c759567eb4283e0ea252578dd525923c7fde02c","messages_hash":"4e4109b78a7524857ade4154ef083fd830254b00f074536cecdcb5c77683910a","transaction_count":0,"txlist_hash":"81778134948c3577216eeeb6db7fe9687545d855dc3b5f6bdf6053a7edf3eaf3"}',0,'BLOCK_PARSED',NULL,'234b10b3a54b0100db7b7945218c70b2f5dd61d8a3398633e0e42aeffc36b163'); +INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcb37f6e7a0f6a1dd7e8abe3fcb6dc4970a1c0e609e38ee69a9dd45ab7e43ca8'); +INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"2df6b8dca0ffa8d6d55997605188637c2b86300e4dd7ebe3f1f275690169fd46","messages_hash":"5bcc58ce2dcbc4377575d50360c40ab7663d8a25c93f6323b4248f2ad30f4593","transaction_count":0,"txlist_hash":"650b0875a0fb44a0ad1b04edf1a0eb1b50b5ecc423c6ecdd37b5aa60b5e85663"}',0,'BLOCK_PARSED',NULL,'bc7e8f0d0013c90095128eea377f155cbde8cc33ba7b35b1bd366477885db269'); +INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5df8ae6d3b0d3e65c94ca1dffa7c3c30529c1cc19edda71daf2557a067d06517'); +INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"7f0dc7c1527a7d11831d272f0295eacabcb96fa3599f5a716bd29ba1bb6b7577","messages_hash":"00c999794ecd07f8241cae22b5059ecea0a0511e962f7e5bd9f5a0e938e71060","transaction_count":0,"txlist_hash":"e9d6c050b077d8e6902999bf64a0f1bf420c881b8a32c511ae81b0359e83a542"}',0,'BLOCK_PARSED',NULL,'74105016341033754f3dceecd014676de3f1dd531d2e9818bdd56b6b12a5172b'); +INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c1b281d7e528c6d9ffb2e7dca6c2a19e63b5cedc1110525370e3385e6cbc88a'); +INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5e0cdf1764ed94672c29144f9c1bd9c3e70784f17c9dd1c9e4ce703a99bb3599","messages_hash":"96d95db5bae3211ebd78a303c54631150fb8b17474b13ef47722a2012271fd35","transaction_count":0,"txlist_hash":"e755b5d80c9995dfa5763b080b9bdd349fd7b5bd940a661836ad418202b77384"}',0,'BLOCK_PARSED',NULL,'a3277c08c7e493b74da8e69c7a6e44bfa20f0a01e75174932aab4420e72691ca'); +INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0d3ef5e4551251ede5d70d983dc04bbb97291d6e255cd1b1a52b0f49cf5b448'); +INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"96da34a5a66b89aa3e8857b4a4edca51a56a0cbbfe600d8153077875624a153e","messages_hash":"826b6cfe13526a704ea2b67c098e2e2c613997d43ad0fb01bf351207be2d0eed","transaction_count":0,"txlist_hash":"cbc0139fb09af6a6c63e07847a37f15767a1f7b01d6305cf40179de841c4f093"}',0,'BLOCK_PARSED',NULL,'c15f386a4ffcb026b6635d550717c63f71b38071554aee63be6dec2018cd1d06'); +INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2daecb7be8484da1aafb1a32f7b36260fa0fd5697e86e296ae977d661f6a911e'); +INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"d481358c19b4220aa9a3d135fd0651fada6df8d0f27b9ec954ac07950e876c0c","messages_hash":"dc9ee8c5c08597627d45cda195771ce77564ae3dc2e305ff659d0f813c65b3d7","transaction_count":0,"txlist_hash":"0493eb6bbab5ced7f25c6f5a3b32e4e2da321a5c761855ef64b5e050ddcfe431"}',0,'BLOCK_PARSED',NULL,'72ac3bfd2618d89a167a69497f5f749a6610c8fa390787bcab3972a26a44c64d'); +INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d69741d43e1a77e726b2fccca0a087ed31f30b4666ac9a3f3ed69a658e32d2eb'); +INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"4e9fcc454ee53b3617c792eb6577c2eefa6eee6aa4a2925538cb1976d48817c9","messages_hash":"b2fe0dd8d0aeb004a8b6e7b4f924c40f9d78b8b443ec56885c03fe9faca3fb2f","transaction_count":0,"txlist_hash":"64b95af50bbee190166820a564e858e5c86769c04b22a68c2bed5adee0f7292f"}',0,'BLOCK_PARSED',NULL,'507b380969e05c7c43f4228de13f99084ff745b4a2ca86191bc713edff3a014a'); +INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a2d94dcd633f292219f87804c0d4e91a9608a3fedc886ed57571bc91b9a8a76'); +INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"795c5652d9679942a02060edfb497b072009695d9a72fb144fa3591dba65a2ce","messages_hash":"a3a3930122c43db8e3d8a1d6d29909e89d1263ff72064061a32398d2880c814c","transaction_count":0,"txlist_hash":"9927f1558918a59509f668789e75198eb432fd63e0a7ffb46160d002c0932188"}',0,'BLOCK_PARSED',NULL,'b90d2da4a78904bc223f42d4c192935229d758c88f7c6faf99953635298eb4bd'); +INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d67d3c7a2c2610a0079c980c59e20b5fb696802f41e56dddfa94ac9ea9ee68d5'); +INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"e569e6e8083818e594e92b3356833e8dd54fcfcf5ed25af0d09e36e24b9dd441","messages_hash":"2c670e1a75b7b79ba8380bd0aeebbd8566efb67b8de497cf760f047433430048","transaction_count":0,"txlist_hash":"969f7176f1a56d43e0d1b4da9cbac17cb1a934be64c12b3784ef33b584513271"}',0,'BLOCK_PARSED',NULL,'48c3ae8fb30d2beedb5ee0d19cb2b77d1e32b32b179444307c3d2c4356e2377f'); +INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6466f41149b5a98861c13aa95ffed8b3550140353203d60aa13d959316f79f8f'); +INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"2247fcc633175a91921d226f412e56822379c79ca799117c39ecaaca0a702192","messages_hash":"3acbc91852fb2d7256eb8de8d6f79f2131ddb81d57dad850badeac4be11b199e","transaction_count":0,"txlist_hash":"29cb8f1b29affa41416aca0265599863f6b739538f13bc6672f6b3c17e411045"}',0,'BLOCK_PARSED',NULL,'e0b5197ba4bd3bda2b0adeddc8b5e9f5dd3c3ec9f3fc3c0ab056170f685ddc7d'); +INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b2d31f38313abe1609d67a23fa40d100eada25635075a0c7486c9dd43b7ea7a'); +INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"0246c3a2a70b33a038ccdb816f6b0922a50d08310f360cbd5db4df58e97fc4dd","messages_hash":"a974d7e9f5e4257985c069ca2c5517eca6f3386df46f27e39152c8540ff21e79","transaction_count":0,"txlist_hash":"d1ca4c9abe26de83d9a0170461c87f2c219926f8dcb0c48793d74a0cbf01a43a"}',0,'BLOCK_PARSED',NULL,'e9b3705aa4371a5766e3f97c6b7c225340532b9e96fa33231cdb36fd6fbdf940'); +INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76f8db7c0a6cca15dc14a3541a755347ace73c41b7ecfe4b7e1647129dd8a194'); +INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"cbe39e9d1a132cdc568f893bbc3d4f55d27bacf7af31f027ebea1b4bed9f0009","messages_hash":"a684213ea28406c1a4757fb316ae5e6234cf739e47c6f27764e433046c84cca5","transaction_count":0,"txlist_hash":"452b2e3ff4075f702cddcb4b8fd9006c756dda7a3527d635f637a200fd621c91"}',0,'BLOCK_PARSED',NULL,'78c5deddb495aa342ed3769a98bfbccc03ad5a0744e23d468c5ddecf152f0215'); +INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4266aadf6f42f4ac0a96bd70665f473df35a06c6d6ced0061902eeb497437aa'); +INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"1202b05e118f0940ce270d9002d010076115a0197d889fee2d971a77709899bc","messages_hash":"2b208323abfec338b83a4b1bb3433f4c955f0bd4eaa57218f9af2b31a4a06629","transaction_count":0,"txlist_hash":"527114d86a06f44f12e1f789f095227f9710b47e95251cdbd6f4c03309eae61d"}',0,'BLOCK_PARSED',NULL,'9de297561aac207a6ab987f90166bfba3c0d8b9cb16c248c5912843e604ab798'); +INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47e602ea9a0e5e848c1b224f6e08f6c3b805760457d22ea393e298c4cc152def'); +INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"0bc49f765419c0b5b4911cccf03b0d9959aabacda266480b98245de0c0d35fc5","messages_hash":"49eb99327ac63bdebc3cfaf095f3234b4fb156d19870849f03ba340dbb6b5007","transaction_count":0,"txlist_hash":"ed6954fc7aadd8f80684cc67580b9cc16f9a402296ac91c021de0148a1ccb4a8"}',0,'BLOCK_PARSED',NULL,'97aae1b87ba1d342b4ef546136c46a1d11ad83896e27a959f86aa3bc50a1b1af'); +INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'545244864c662e7905c8b8de7b053408f2991896f93aef52d432f839c172f49f'); +INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"e42bf9806d0ff3a0663756f7955b30735747d14fcb0915c89884baa12795163d","messages_hash":"c3fc8aa905a4170a3b72329c94f70bcaff5c4d7e7ad7a5930acb71ed33616c08","transaction_count":0,"txlist_hash":"2e62ee5d03044d0b6086419a6d2fed78b7db3bee75a2bc158bbc04a8f5c34908"}',0,'BLOCK_PARSED',NULL,'ff3dc9babccf2d5f09905f2daeaf7b53664b1c465484ffee476799a601aa2f43'); +INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455c62a0f815807824f82ab2a18f4427b111a9d706b04c1709887cd48e791e56'); +INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"b19b5e14741284b4ca06b736120e903363651460a6efb3ede1aca3a4f3c00df1","messages_hash":"b38346e10ea8e6a9dbbec76960270ef45bd5a4e15ea60c19fdd460381b00a5ed","transaction_count":0,"txlist_hash":"bd40f4de40c172e5b5997091f4a069ea54d25504421e6225ef3d9ee360fbca6c"}',0,'BLOCK_PARSED',NULL,'a82883d602c3e3fd23ed79690a2a92e4e0da13e6103fa2c93ae2c808340ee720'); +INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a90504804858c04de777d8c350a0de7e7317e5576715883ed2759f18c6464f98'); +INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"e870de901ba86d65d0e2053251ffb32cc7dffb55fcc2efbc006a2b9137314a39","messages_hash":"b4710ee09fdd9da9af163b58135750f9e8f935c13ae14d2ac586700afda54583","transaction_count":0,"txlist_hash":"d89730ea689c2912f38a2d2dc86caf6dc35a3e183c4d394129f21368f5c1d371"}',0,'BLOCK_PARSED',NULL,'e67136c493d94fb44ef8dd785df6b02b636bc959c687495ca69ebfb47ab2a9c3'); +INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dfbd9cb0f3d8a26b62355c2ac82a53f4f4632697a1be00ecd09ec97165f58af'); +INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"44cf354cdc8552ed37e5911340397d3531d0ba45100feae27377130d4ddef359","messages_hash":"c4cce9982e0630076d314f14323ff672dd88eb78f267c6414631569b8068b108","transaction_count":0,"txlist_hash":"1100866c04ae89913abf573ee61b3a7b56ec8fb7526c7d9c9938d61a187586ab"}',0,'BLOCK_PARSED',NULL,'1ef6b8fdfa77233e58c004d0b28e2f7b41ed3bdf65669b0f90bc09561b95c5f3'); +INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'655d93a51d36a959da0bdc7c5fe7acf4563e965338c0d104c09f92a41bddc1cc'); +INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"7d72f11f48ac99553e1b2c52a7ff5645fbe05728a10a002727b9270dbb32daed","messages_hash":"6f23296f3978004cfecf1ce6c5d6dc6b7cbf7a49ed906db6bd0c5f2b398d76b3","transaction_count":0,"txlist_hash":"1d95ff7cb416f1915ba7db0099ba9591b97c6bc673cb43296cc82655627eb1ad"}',0,'BLOCK_PARSED',NULL,'735d21cf4ec0a12718195541c0c30f901ba60bea89010b2e3214497a389a2f01'); +INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fe88796f86ec5a5ea510138190b5276ad0867da17df0bf9ff75592ac3e153e1'); +INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"35a965dc90686fc4eb20450da81ca8db9125e25c2cdd7146fd61d98841d80c24","messages_hash":"b340a1dd8a098a9e7ed91c80907755974731a783e82cdf17c94e54ea3ebc2c5c","transaction_count":0,"txlist_hash":"9d15589506565edb31f7627a37c1f6a6bca01d584b0dc815e8603689f07a80db"}',0,'BLOCK_PARSED',NULL,'f96eeeab40be375f5dba41ba94f765f0c414153dd4a6f243e4f4321c08220844'); +INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46677ef48abd711e72f568de547f5d2e6cca9504e4ea4c3396b1a248075e01e8'); +INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"8604d503e7194ee1c8ebe1143019207b2aad163655107a3d23d018ef26cef550","messages_hash":"d298e055fcbf1c292ac8abd5db069687241c42e48f88bc41749e2b0059a799ae","transaction_count":0,"txlist_hash":"40053c62babd7f69b9822b6d4223732008d45250146216762da4e13b1b9d3a3b"}',0,'BLOCK_PARSED',NULL,'b7ba7d7503cc1f9f00a2da4b3ec93cb87dfc9b516a73dcfaac4094a1c857a475'); +INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'513777f7c46c04083dc0063f2053584e7f06709beb57b78b6a1c9770c936dc03'); +INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ecdb64ffc44490eeb12199d2da5c1189c07f4102f5b91494cbe4ec68fe6bb6d4","messages_hash":"cbe1263aa14674b1e013a819e96aa0841d37340696319b6c5345b7457729900b","transaction_count":0,"txlist_hash":"7d74527f370a78a8dca189b60657f9fd15c27ba5f875344546bb8d6e5b54c8c5"}',0,'BLOCK_PARSED',NULL,'94e596d1b6e3a142aed66d6748c520561514f1065f3f12d79f1a3a3ad8e93e7e'); +INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00d245269ea9c6ffab48d191e2934d775f3a1dead3f186cc11069eafd86fa7bc'); +INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"b96b0d51d6327284f5922b65e5d023afd2b2e44c9e11f435afbe2a71df4e6eb2","messages_hash":"3b1440f9878f569483df07219d00d8a3fbbafda48b57d0f746cdf079706f7b0b","transaction_count":0,"txlist_hash":"70b8a2eccd5c79e1c270abfdf683dc4423ff315a62486db9e5972a12daaf60ea"}',0,'BLOCK_PARSED',NULL,'4728578e006b95a8a39783d1418d93759b1c1fc67e0274d5f626e19490979435'); +INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f220540138d577ed078de316640f8ac286b8d7a65041e9104a754312ab996ac1'); +INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"c5be3fc23a9c41b7b78cc7df4ed13d1d35fdd7edab77c998cef5a5a5fe2a7d33","messages_hash":"e798e99bcf56938955588f18886328e21c4c766200d5c2355d49739ec608bfdb","transaction_count":0,"txlist_hash":"0072c2fbc0915dcc39103950d4a48feba19eac28bde001d3dfe0f9ddc25e5152"}',0,'BLOCK_PARSED',NULL,'d05352da1c89635d6c09bdba15d0a9722bed061a31031e8c185b7678b7f90619'); +INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7600880d4fe7146a3f633e3de857c9364dbadb2acaa6e25fb2423b9286223908'); +INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"faa7cf6128f229fe3d408797c77ef2972eb28d16542b32ec87c5fd42d2495018","messages_hash":"10c3e5aac0859c4d983d73918ef98e51be19de2c8e15c1807918612d103ca56e","transaction_count":0,"txlist_hash":"46c53b0ab86b04c06e8302726aeed5922fb5b3d940102422c53bdf4bafe285e4"}',0,'BLOCK_PARSED',NULL,'0224e3ee41959a3709631902b2d87cf2f93c3a43c9ee886ce0700c44f586b385'); +INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0a7a60c8cf0d0faa3945fb851f50220c104013fe617ed623197924f3c07613f'); +INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"135af680c59a3d707ff3e6b67fbbb0aaaf0a97724d36ba584087658ae8c0db19","messages_hash":"6d712601d49493415dd87e5c616c1d4412a4e81eeccb853fe9c39090d15977f6","transaction_count":0,"txlist_hash":"8b3fe70c1d1b8fa1a247810dfbc2667ca0307860c112002e47107fe4836b8138"}',0,'BLOCK_PARSED',NULL,'1f0ef1af330e3a4bc2e2a75833acbcac47fb52b35bde1112c1f7c28746723338'); +INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26f5167bfc00d06c92c2243a9a27db0c0bebf907f0dcbf52a13a74c3f70b0779'); +INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"496b559ef740feabe42d55356bc770bab7b927d79260c22848b7f47d51918f11","messages_hash":"cc6379176fd308de5dce183196f5d17717a9818316bbb7e6d561b3b8b41e73eb","transaction_count":0,"txlist_hash":"ddbb4db386fab0fbbb7edee7c7c45676f994d6feb088f50b0f3edaddcc809e47"}',0,'BLOCK_PARSED',NULL,'bc15087560f315acdb42959d071ebb1d22bb8a44b9d99bfd46f5d21ff7c2bb79'); +INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43b0e00e383073c4b30a4d2f645a0409d0c253a0eecb1c430b14be094d937e22'); +INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"608eb77e572aa596c9e14c6e4cb1dc1993bcbcfe735cf0453124c2801192ecc9","messages_hash":"992672b958fa15bfb30aebcf5de672462e86b97f417b4d003f4b50e2fc129254","transaction_count":0,"txlist_hash":"b8d3a5abf9edc13434594de8ec0cdf3b760f6917798eab89ff2a6a4f0bda06d9"}',0,'BLOCK_PARSED',NULL,'788a9cfa1498daad6490de6313b1bd9433c0cbaff492c40e2250ce91f10b1eed'); +INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3117e8ff0763078b5ad3bc1bcee696b5047f664c5a12dc99e4f0e79666aa1d7a'); +INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"bc5c375d1237425486c9f46bd749fba20b5635bcaf3e2d9178b35ddfbb700f14","messages_hash":"f40c4ac0397d5d9184635b04654691600c0461e51a50960294e78ae1e40d5cc1","transaction_count":0,"txlist_hash":"1766568459fde2e95dbe4a1c1b73a37b6f8443dc1ec36cb44a38fadd95d8f807"}',0,'BLOCK_PARSED',NULL,'90abc768e12a7557ba4e7776e0e6f0bd2d21a29a3f1d43c4e18017d6333b0980'); +INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8bba6070fffe6e42cd0e1435121f4296e308d09c6f509c912da1c44b09c2d68'); +INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"c6d48d72746c0e18fa0f1b0b16f663869be2c4684a9d98b634e691ea495f4d81","messages_hash":"a0a9900f5eaa5e5b2cca8199a35f69f3d2795cc39afcc61b90203b1433d501ee","transaction_count":0,"txlist_hash":"9f6619aae8ab667b4291ec14e89386177dec7f3465def984144d2991d10476ab"}',0,'BLOCK_PARSED',NULL,'815098ec97951b81ee33c033ff219d4a5beb48a35809cace6d85b176fa0645f3'); +INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c863690d3b3fda4b290ee81406c44523afc8325ba5c784c2e4c789037134121'); +INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"8deffdb1602f1aa2d0d1956d2297ba30ac78901ea27eb223ad8bf7ca83b18110","messages_hash":"8a5bfb59affc8af010b8bf4f040ae20b7bae73e516ecf05d0fafa195daa084c8","transaction_count":0,"txlist_hash":"278612a215aec2522b38d2ddd268f051906a858996b526fa53c48743b1f33c2e"}',0,'BLOCK_PARSED',NULL,'30c944d9b2e9aa52dd5d2b3714d00cc56966b3b4eefac9b40cc07062e9e5c192'); +INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1700bb891b232769cae2224677c7edcc4f4f40bc68520d457fc63c6962a3f3f6'); +INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"34859861f240c6553ffbf63fff9bc884f231276ec6173964d5fc6641a6d79b16","messages_hash":"c451afc5cf0e2a783cebef04699a908d781d8c3cb2d6e625b6f260bd2d46b4c9","transaction_count":0,"txlist_hash":"a884effb413598885693dd0eed419a3a2a35db95fe4d6582e580bc141f28377c"}',0,'BLOCK_PARSED',NULL,'60b36765f80cd5f64a07efc31379efac5452d8cd73850c25f4d5ac72b1a5aff6'); +INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2b08559941b671d57d92dc9c3f9baab92de3f4e1ec5712f6503f384f733e087'); +INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"fa185f9b97a1666ce3b966dc09b8a7870ba55896a54a54f54d3420708d5a8ae0","messages_hash":"5fa4c517214da3706d54d030b7abc2b36dae8d0306e618b1a17a6649cad5d53a","transaction_count":0,"txlist_hash":"070c320cd53cca3d81560367d437e1f4cb2afb10ab6339e2f1cfb0a2dd6d6063"}',0,'BLOCK_PARSED',NULL,'dfa8216cdf2ee40ecf7c7aa5ddf3beba463b10cbbf8ea833b8c51b6e936b0b2b'); +INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c378d496b65aba8853cfa6fe585ba97e6ee686b397a7296c94af75f7efec8f3a'); +INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9f75da9f944d59b1841d690b2994ead7fb0ee3d679ddbdb0b692e49238f66603","messages_hash":"785359363b3be4224e996ad6fab4033aa3a46982d6af1219186b0dc9d7719cb9","transaction_count":0,"txlist_hash":"fb310206b118e11d48becbd11a695199fd7cc3553dd8b2a7c29c6a927f5bafb7"}',0,'BLOCK_PARSED',NULL,'a3274b02e1164d411eab6808524eb1c42d38004ea0f45f1cf713d358b17f69a2'); +INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb1a8daba16160790da9cf396867ce82a0015abe260b4817b05a8b728af848e'); +INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"4740587d203632d1b4061343436e25e12941f0f80be03c3ab390a1c08b842b59","messages_hash":"ee5f54f7b13996f803b277ede2800b1ef7ad1353230e7cf629af6063c2a9d459","transaction_count":0,"txlist_hash":"041e6429d7ad46da6e1a2547daf274a0df952ac4f9b43eaadfeafa6e005141d6"}',0,'BLOCK_PARSED',NULL,'1c9d7d17639f5f8dd5ae1aac299299ca7808d5279e881171395aee6153395f02'); +INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d12b348041ad3fde67243e4d5a301af89fd2c7df7b9a184155219e20423ff0'); +INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"d6eecb0ca22f29b50e52cd5dec8f408250a7b1ddc61bfa9bf6cc6ef0a85a6ffc","messages_hash":"712a4ac75c02f80b3a7deec1b31679674cf124c265662e1bbfacde128bda60ba","transaction_count":0,"txlist_hash":"f8e9baf27b01e99db390d6ee2e06b8ac7d92951c331d8240fdf0dd711ad75979"}',0,'BLOCK_PARSED',NULL,'4145a6eaf5f1ac8a07fdc6de03b22dd034084fcb718c1439af8f0f950fdd7b41'); +INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9c7bc8ffdd248867d064abf53b6d34b1d1dfbb3ac0c64bf247afe54af91b791'); +INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"1508605d4796eb2d8b0553b307827f570b5020f4cacf773926b6c8f2c1b003c8","messages_hash":"680b4d5e8538a0309a993ad5da4d9ecea6788da6db7a3d9172cd9a45e9ed4c97","transaction_count":0,"txlist_hash":"fe7a135af64a7668cee07a66fa146b6a7a54fc78b96eb7c62d0bbd8b8ec4a820"}',0,'BLOCK_PARSED',NULL,'89c591e940fa15ca5a1e65d4c1d3419ee96ca3e86c6e46a6f66b5f7510a9ecdf'); +INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a450a5d736d24ef26ac750e57c5fa162863a8509568a5d6e74b097b2fabca836'); +INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"ea7afbe0817cfef5a5a940bf88b057d01d092182dd5d0c7fd156b6750fdf4cb2","messages_hash":"8d7ff05ed2187f5021a153a52a59612d32071becf1965d5b2e9b3ca71a9e4b16","transaction_count":0,"txlist_hash":"561526733017c46e8f7476f6f7f0a1c317a372adf6ccbe2a34e4d8b0fee1a694"}',0,'BLOCK_PARSED',NULL,'7f752b8fa8d548fccaadf4856716d9a41de2cbc5ebbe429b6c3fcf922338cee2'); +INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'328fe69c786c9f665b8f1a6ff86d568642b6294829e751d222e4684edf04840c'); +INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"f805d8bd0b724ffeb9e466367e8524bcbcf2c0fe0525b8ff2707af2013824a2c","messages_hash":"edf3f3e335cd8de5ebc1252b433f916cd783c0ae8bab1ebb749ee73b1e381c73","transaction_count":0,"txlist_hash":"4c10a876e31ee15289cd2d82d8771bd9aaffd0e335c6de15f8d5316e6e7ee81a"}',0,'BLOCK_PARSED',NULL,'6db3da417b0358aa8b8b887cc3142f5028efaf4ba59422439dc917dd0664ad30'); +INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbf166b7a17c0e4e508ca82dc5838332b2c130c6e0cdf6d1bb8ee2c73cca706e'); +INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"305123423486d17e97e8370399b9079a35977465e4cf8c5b33d50bd7004b463b","messages_hash":"87fd8b8ea520ee6c3fecffd8606489e2b199e9e91246da44f4e75930a4464bd5","transaction_count":0,"txlist_hash":"660d6afeecb2375668200669bac5cf258dbd18b0f61213eb01d29e133a45917c"}',0,'BLOCK_PARSED',NULL,'1a8fc829818f99e26661877fbed74754e0c64fec042c7b491d0cfad867c987d7'); +INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b36a367405be0b6212971334753711fd16eaf95cc36fb8f0226bd8351928b1d2'); +INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"b04fcd2cf46165fa31626b476aa06f9ad8c8cd1d5aa1cfdc014e0d55fa7e0761","messages_hash":"9418303a68e008a80383c06c23368324c7cc5787bc5d08d217868e211e916281","transaction_count":0,"txlist_hash":"0791350dc66254e276bfea1651fdda43705668f461f5451fd91fb7e084b26aa2"}',0,'BLOCK_PARSED',NULL,'e66c7b1522180218fc5474913015dbbc04b10906ff2f295b149440ed07b6d3be'); +INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e06f82d9328d725cf661828ff01a659a4a95c63b4baa0f4c4c2978f00bbc2d5b'); +INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"209f05567343042c8a9172138cc14e28a2e53f9addf16c7affa469fbea9728ae","messages_hash":"f3b9175e84f2b6b2aa0a147f78a4e389e568ebf2b63178657d2c95a981d60931","transaction_count":0,"txlist_hash":"4885e82f77b273e102f9019b8451e08910a7d98daf19366a0a2b9db779352c0f"}',0,'BLOCK_PARSED',NULL,'2e7e3949c8b588a1358ca2593b09d5cbdc784d3562369bf22883df03d4013d2c'); +INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1029bade66f187dcfde02243b9135bc654d83371ca7667196a2065e2b28b5d64'); +INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"fc18c0dcd6011c4147575f09bdc6e1eb0e6ae7d3144339859054df458651618a","messages_hash":"3feadbb908b8cb77891fa69748ca080e489f66d97ec81cea73c1a86f0e2248ad","transaction_count":0,"txlist_hash":"49cbefb674e3da718d86151b10bb37755e158a2bdca642a542897361f15fde66"}',0,'BLOCK_PARSED',NULL,'57ed10f5a0cc67db409072f6adf5678666b0aa8fb507151cb5955e54d7f02e80'); +INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b5dfdb15058998dbe1c86b787d0a15bd2a3383edcaeb87339703091f8ed5a76'); +INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f304dbebd02e4536b1754502e6f51e058ed309fdf95a2db8329dd7e5635824ad","messages_hash":"d0244be0ab4e6efb3e403f002293a2ed71cc15ff77bf6f200b7f029b88cad496","transaction_count":0,"txlist_hash":"b5e7c72a91d779334162c8fcb6282c7e5baeb43ef83d8f8c0eeb4dd0579f0916"}',0,'BLOCK_PARSED',NULL,'1d64e1dcae815a5c7ea9c205f01596265b92fa5ef9af43e5f37bd577fa62c938'); +INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'360b8733a63de382488eed47df12cef923b181f82294b97de36ae9e65da5c651'); +INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f39c071315c869425bdbcf05ff84130a0860f5f47b4f851cea970f58a6edc9f8","messages_hash":"34b3ec6753c34f4937e97f5a04f43213896a30e19b36440972cafb4b702740ba","transaction_count":0,"txlist_hash":"e399bd32bd2988f29b4fb003686b343bd72ae59297412480a359bd56ded23ca5"}',0,'BLOCK_PARSED',NULL,'398a14c9abd81e85bde6c25f4feb2f3830fa9094bad01f1f20d452807319533a'); +INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5afd3c5656c19072b6a38b35681ad7ce373e1be36cdb9112c99fdac2c327704'); +INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"20624d783cd8e82044df58c05e6171a744505df43623d9c2a828c1331f505ca8","messages_hash":"6ea716b87bd2592e644fa6594bd361829b64fa5ca5f23458ee308099ab7ef43b","transaction_count":0,"txlist_hash":"c587d5426925227ed7d0ef11834b5bb1291fcf0ea3f0bcac864e4356187b6a10"}',0,'BLOCK_PARSED',NULL,'d5b42f1f052ff5cbd610546ea4090fe782371477f8994ad0147dd76b7d1857d8'); +INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bcdddc47eff7d392f867933e0a3e6932ebe7bcdf12905c43ad4a1ed7b7a399e'); +INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"41ae6610121587bd8171a02da3c50645e8e6d3642aef2c560d46f12707506b66","messages_hash":"1034ffb8353aa40feefaed3e4e51f763629a717dd9a1ac5e3718b90d1b3f2034","transaction_count":0,"txlist_hash":"c8331e225af242d83e283889e6234d601ecb507373f4b7de891b8508d1b7b1b6"}',0,'BLOCK_PARSED',NULL,'deb7f717bad57d095a5a452dba4862a17db6823513a5a81e67f682a60f709256'); +INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a688b7bd3fa2680b3100f1df4cabe404118f6e4a5c686651426c5d27d8ffaf4'); +INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"bbc2068f2a4b47c86198a5cb7242e26f385077126c7a3294eca6607485b1170b","messages_hash":"7f6823b59fd9c02e0eb65bdcd8226a8558c6954f6e93aad320dce9993ba6e89b","transaction_count":0,"txlist_hash":"42ee671f6b45a8e36b4e57dc7edaa2501b075eb75bcfce535435ee4c0cdf2e66"}',0,'BLOCK_PARSED',NULL,'504c16af492bc977d39f59ce9bbe3e55119e163802debfc3e9273008ee1f54ff'); +INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3936bd23a45b024017dd5f42b9ce6d52c8c29be906b20d8408d3eae49db31a8'); +INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"fc4350d187ec74fa6dfbbca7f6c51849b78356f853c6c713d10ae4a39ee4f7e2","messages_hash":"84c1c9a613c664afdcd6cd6b6e04620001d19927030f4657455e7b4acd1946cb","transaction_count":0,"txlist_hash":"f35b5543ac99e33a4ea6fb61b688d06a2b5b9cc79776df32c24e848b5dad80c0"}',0,'BLOCK_PARSED',NULL,'3a7d6f6727082a78df0d0eda332b678537bfa79f0c82229106f30fa02db0071b'); +INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9801254b44c2fc0793549e934c78e00202810afa347d70449d9b7064895e2e1f'); +INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"3cadb90f0285d3e3bb107caa2165e88d855cfa057fcff1fccfb278a8f64c9b1c","messages_hash":"3d972a6d152a0d114fbf19ba2e32e75c9eeb0c7a2c97cf0b46e820282492697d","transaction_count":0,"txlist_hash":"3ff813ab5112e5adf9f50936955db90036ed0e2ba309022002c69e81473d7c04"}',0,'BLOCK_PARSED',NULL,'42b4722d3af98ccedeac5878864baa8113840bc8d70cd7955fcf7a95193a4738'); +INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581060559c602cd5e40fd53659ca02df517fd82d06ed04face8ec7f2537b7077'); +INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"f3390bff59484b5ce0d84f5034fc88f4d862334ef3c0d7addaa9be7f0e67006f","messages_hash":"93583ecf2d5b685549d14463aa49e3ddd73a41dff346251de7a46fdf1b068121","transaction_count":0,"txlist_hash":"3d843f898e46d0ec4c4cf79709ec7326a0e45d44361a2c9fe45e546bd5f1e630"}',0,'BLOCK_PARSED',NULL,'7d4433f7eaa657969a0b49a389e59e7bba75fcb73effcf2b1f46870dd0f6b23c'); +INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e32e8380122cbe603ba9738ec722b6e538a54db647b36251b3a59dd857de577a'); +INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0354bf318eaec5c79b4a7835c76c89f373ab0e413f9fe4ebdea442f57763a971","messages_hash":"15c52c46bccc02aa469d18804664067ca31efbf52410420c70e118c8acd4e8cd","transaction_count":0,"txlist_hash":"6405368df02c1207da46178c106ac287c7c90e5b87a98154aa938f6ef5a570d1"}',0,'BLOCK_PARSED',NULL,'b2e1cdae56b5fee3559f032cc2c5212e1652fa451cc4358c5ddedea018993c05'); +INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2e69a53cd83ff23880cd4538988d0c3182a89d66b2c2fe3bce3e670fdf1a330'); +INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"e22b7a64e15ded24f6c54a5f627354dd2c3ed8175c2f4cd31aa5a6789d7b67e4","messages_hash":"2e7144e7eddae7503bb820f1e0986abf84f0ac422875d0be8745e2c76de30d84","transaction_count":0,"txlist_hash":"6f58e857b2891d43f22bb4b44d296ff18f3078de01cf90aeed104283d66342a2"}',0,'BLOCK_PARSED',NULL,'851a0dcb126b98b9720ad797f17d70ca85fd71d7c7735550070678076cafdc99'); +INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9348cd463de1894016e68df2fb6cf5ca76234ff36443c0a4fdc034fc8158e2a'); +INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"7b8a6f62709cf4d20820031f43d968ea46d73d8cee4ad40f414da60b9be4e676","messages_hash":"27fd01aca700483aff404a765c264893f6b04930f267a6b568aaf9ed4d79914f","transaction_count":0,"txlist_hash":"51c8a62f3e4c43e6eea75410efb977c8ddd2ad8e64c0d6ce6f63a4e5eb153400"}',0,'BLOCK_PARSED',NULL,'98e63f959cc79a4feda1cdaf081f90de93c6894b75a930d2facad5fd8bfe5670'); +INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd97bfd13a3befb021dc5312d4a415b289f8678eb9349113ae14fe3383ac25ac'); +INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"ae82ee2f7f1e075937b5b8eef065f8643a7bef0428e00689ee773558905eef19","messages_hash":"cf781bd75c601887732bef2d4ccb7af9533c633840d7e07fa61b12a801d01b15","transaction_count":0,"txlist_hash":"7358e41e9a61f87d68cc6851768346daea2e100ab896e86c0047e47228e6cc29"}',0,'BLOCK_PARSED',NULL,'50f0b43146d88183042382bdbde63b4a04996c929bdc29e7c4b099549edb2dc7'); +INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9624e1290365aa236c377223faaba0b87bc7529a59494ca96d9b3e1945f76de'); +INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ced371f1349e81cc2f179f064e4b9b202650a0f79e9b4513666ace29f0e8b3cb","messages_hash":"a2632b8aefefe77592f4b0f21f5e1f7d5c22aa0d27ad1eba7a0e007f408b1ab5","transaction_count":0,"txlist_hash":"0e8cd750f8ad91d5b14d2b05b7c03621367036703bed1654555b94592ff41e11"}',0,'BLOCK_PARSED',NULL,'23997848230b08aafdaa854bdd740213f8b3b3ca58ac4d2116a1c3e07b1a81ae'); +INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'805a2c68421ea175aa73dc80244daff7514fb74dbf85fae1aa6dea1258ffe924'); +INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"6c343897092c5dfcd32ee96dc8b96f38fedd31fa58cf5757a3e15a254942cd59","messages_hash":"4f61d8f4df04b07c87f5fb89edc76e6ca3e61f7841f68fe83e9dc901048e24f2","transaction_count":0,"txlist_hash":"c38a183db86650f155005a8828155aaf2fc6d92aa89066d7f0843a123800d771"}',0,'BLOCK_PARSED',NULL,'b66d524729d6962cd3c1c3e3599f0ee5d142846d80e5f84b302466a4e88ae5bd'); +INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1970ef81b68caef4d6180f236e3bcbaff4d167823213aa8b02d04c07adbcefe'); +INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"abc7afdaefa89bf58bc4c28401740657eca24c902ba551f55becb6a1c8992675","messages_hash":"b5fc9a8df6e5fc6059ba0b233ce9f42c84d81c6943f517783b337ed62249b0a8","transaction_count":0,"txlist_hash":"609b4f777892b43541593da80d09aa2c3928f2f73600009615196a7f89ca8123"}',0,'BLOCK_PARSED',NULL,'dd7478f3e08308619d0e392f9d95107ca9e6c2dd6d872e7ce8d808abf4036d6c'); +INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c8eeba9a62fb9c652c01adfe34d12821f64b64a5779413cc8c3b048b19231e'); +INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"4c8ca9b4eeae7adfec822b20665e7bd6fecb51d4f30cc2c826f18402d8401a9b","messages_hash":"08c4a2e687bc145dfa0ebc1393b741db9480e10bdbefe691234fb7a59a71e130","transaction_count":0,"txlist_hash":"fba4f7514306c49b3045912791cc21a26527a23e58dcb1c8adc5563e5c6e901d"}',0,'BLOCK_PARSED',NULL,'c2fd86a892600ccfa0f83335bdd48c0120b8b9708f216386c7e3d70ecd1c9387'); +INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'818c4dff450390b04bb8c0e452c7ed9ac4ac20ac3970f580a0240ea93b993d12'); +INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"fe7fd2b60c3216d79dfe4e6d38880f6d3b9fde747b619f2c477108825235663d","messages_hash":"c4bb515a775ac317062c2f49543333113dc5312cb34f9f82b0b17e2ee9b29974","transaction_count":0,"txlist_hash":"3a62ce0eeff09c242b3a7c3a8da6dd20bf06c1c2fbf224f73646791557ce3d4c"}',0,'BLOCK_PARSED',NULL,'49786b67c0db483115b6751af6f125b2cbe095e6b73e8ec9ac908cc270cecd0b'); +INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62ba725f9fade36449bd6706d0bb06b2618ee974fc9926dfce581b1f250b07ce'); +INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"420b8ff3c159f7e89df2274682e7ef798a0c0233149365114bfd934c38806098","messages_hash":"3a1e7b03b5ae6c616c14fb6b16d6381ed592158a8e7248031b9491971662410b","transaction_count":0,"txlist_hash":"9c866b1985d2ff084264e192e5defce4af96b7aca461a46f58c659008113909a"}',0,'BLOCK_PARSED',NULL,'41401b2cf7c702976c1e573dab94a686c64e70326e43c08ff23c17a4c8dd2919'); +INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8da2badf8e80f6295c7efa4f7e367efd393cd87f09ada4a1e649082b08c0760e'); +INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"f4fac6a570b4f6332a628a3f8e27f5f081689fb4255363cff1cd8bd0244eecea","messages_hash":"95c5f1db0fad6fdbfd0f0cd5e45075ed31f4d19e8c518caf7143d1f2fd5e299f","transaction_count":0,"txlist_hash":"271c5484d7a74166a1b83e9dc6f56cc391d5b01829c9b594deb087e58a22b762"}',0,'BLOCK_PARSED',NULL,'23d2b9993d86cade20ae988f801d34634c79c8cc8051160ccced3b5970cc45f9'); +INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb63f0fd8a98bf9a457d9e2c4698784a68daa335d41356f4f6469f79cc8586df'); +INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"adea7b4cacc06ba1f7dc260f30039943936f5baeecf5a8a452d4cbcaa994a70d","messages_hash":"b86421b4257e7fcb195e2883c64749dd2fe62a1bc7652f45d58276a5875fd79f","transaction_count":0,"txlist_hash":"7d8deca0e4f444c015cdf98c74255215af14198d17619640186c6486bb3a6be6"}',0,'BLOCK_PARSED',NULL,'7a5a97d3bbbb32db31b857966d2494afe1cd55f1745fdb19f16a3281e411e844'); +INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1018e0f1a63f84f452ebe0fb557b3a3b80c1254c46f12c5143540f551e498aff'); +INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"a2290c6a24befab16b4d9ed768c3129d582edbafdf8a2326c7ed50397e5db674","messages_hash":"1501c9cd912df3f923076b23691b0f1f7a285a955b07c431e3b2b116fcc06790","transaction_count":0,"txlist_hash":"8bab183d2c7670f060de1a64663fe4ec602cc9df957a4d1ccd4b2c5e4876e5ab"}',0,'BLOCK_PARSED',NULL,'a97e13116bd2a72204ae392fda1e60b9d55a8e3f432cfeb4283f00286fb52f6a'); +INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c96c56a2f103af1c263aa381cc1798082f74699bf79e2b37e07c2d11b006068b'); +INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b3c321ea2fb119cbaacfb39f219be47cb346cdd40d895980afd34b4157a3b7ec","messages_hash":"7fcaf4cb70e6d4f7b8569deac9055dce68cf7d699f9ca2cf07ffe4b2384269dd","transaction_count":0,"txlist_hash":"6997f2cf50cb2331a8d5cea3f97b32b41a9c40b6006041939b21008016e013c8"}',0,'BLOCK_PARSED',NULL,'835cb5ecf86455682fffd8c943e51b21a8191feaf949c004a1f7298e7c86b76d'); +INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68d14f8bf984e66f8e7661bdd95e33f1d0a744a3481a55b71875b071838a54a2'); +INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"456a1bd4d6b30f24e798a9c1f975af109db030b0bca19db6b29788f938ce6c4d","messages_hash":"958fa8271a5ef9bfc5869c7a3d94e93d745c6f9584328ee33b53421d3e4cb1e0","transaction_count":0,"txlist_hash":"bd930dddbfc97b06fba95a33417533bd58fd5e95326d8677d2939790850a67de"}',0,'BLOCK_PARSED',NULL,'14b9a69590b992db453cc561737f5ff432c474183c03040b008c186cf4696869'); +INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84d96c9595790f994ae3d95d43445bb104a6907b4010917597898213bcc40764'); +INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f48d6574488a24155420ae76aa7dcecfe73f6a262a2434a96eb2e93f6bbf02b6","messages_hash":"bd2c68dd138d914e4e7e656065f597bd8a47b8948a5422c14e22d12b184f5106","transaction_count":0,"txlist_hash":"bf2e65b5a1da6ac499a4ebcde81b607f6516de77ed2a10ff363ddb05dd8e288d"}',0,'BLOCK_PARSED',NULL,'e5f3d0095034e2b7e5b9b929d8ce89fd4e999fd1b89deba8124dc7dfbd7b3d8a'); +INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af9de9d0e6106f3e7aeab8d83f81a56bf913e0b97285282a0080255c11b6f834'); +INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e936debeb5d219215ba24e56ed34edb435131877c2947c0801824155fdc70c05","messages_hash":"4ef98bdb706e0f1bbdeb65b74e48b4cca5d4300144a5b2efbf9932079edb6090","transaction_count":0,"txlist_hash":"d18b9514ed9fda087d3c98eca75ea68388964396143b925cc58ce2e2d5c1c5da"}',0,'BLOCK_PARSED',NULL,'7b6c4c712db7e31518ec642c09061697818ab2c88945c665a5689dfcc660f2d0'); +INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2453d896ab0956d1398b514b3fcbe52ffb4032bf42bb7e95d32af93cecfd6ce6'); +INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"2b033a615b9eb693ed59daca9bc047f61a3519bec5c2b64f968cf717c75afe79","messages_hash":"76a2a01c2a99f07db906c049b2499ff01d372ebc367960e685a6a21dc4009cad","transaction_count":0,"txlist_hash":"1c39371c274124af6085dcf02fcdfda68d36d261bb47d7763ea3f09b70d0f62b"}',0,'BLOCK_PARSED',NULL,'2026e89778ac40d730093e7bef3cf47aa7d30118d30d5feb8eb758abd0fa9c8b'); +INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'812927a1fd3a98c257f41fb1d9666f6095d42c8e16dcf59012144bef2ef72947'); +INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4","messages_hash":"a3d2dc1289f5cd52adfa75e7f081e22c9358e7509f9932e897ee6a062f3485fe","transaction_count":0,"txlist_hash":"e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5"}',0,'BLOCK_PARSED',NULL,'006703e18f4caa3b4a378acec2894bfbaa35a36bf371ccbe6ff5ff8279eacda8'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql index ba14a832e0..44b0e4bca4 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql @@ -152,30 +152,30 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'7b17f1bd3ee49ce2e5e9d749bcee03749fd056731fc38e3405c6ad4885d18b0d:0'); -INSERT INTO transactions VALUES(2,'5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,'8a6f8cd8a437c07534cd71f9eaedcad50459726a90d52e6fadf0ef1c8c348f2e:0'); -INSERT INTO transactions VALUES(3,'04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'c0b7ba21d78ad1b9d15cb6b9f3a0e5be7308e48da38cebd72daf42e4f8cb63c6:0'); -INSERT INTO transactions VALUES(4,'98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'4570ebcbadcde31bb1b2cbe5e0bce5593c8aa7f246a6c62978394dd046267a24:0'); -INSERT INTO transactions VALUES(5,'90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B04D5809F0085BF2655C500A8C65D6D8B42DD373160FB431AF05792B0F30B63A698EF3D31D1777AD18801E94EEF03D4314911AC03D7A82483B40614EA5CF80E52',1,'d2c33c5859fff1bde271ed0b48f3853ff5441f7d5a29f64a31848b58496c16eb:0'); -INSERT INTO transactions VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'6b24ccc7f3e91ad0db1bb059bb144912e7deaf6436b9b1eef76cbd1e3426ddad:0'); -INSERT INTO transactions VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'65161bae7afefbb7b46cccbc42d943189fb58bc93833504a9beb8a81d1ac3dac:0'); -INSERT INTO transactions VALUES(8,'30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,'2a941755031caa5ca3afe08d8e55aa57ff5fe9e2d725ca91388504885d7658eb:0'); -INSERT INTO transactions VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,'25c2b96162f286879550ee980db0bb717e27d63c62beed1604b9e83df8500bcd:0'); -INSERT INTO transactions VALUES(10,'f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'04b45929bbea052062fa897e2bc54d323b0bf9a46f4f5140f1362ca244e4768c:0'); -INSERT INTO transactions VALUES(11,'15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'52def9655f61f72912a55624d1ce0b1fdfd98f7eab1d12eec193c29392572817:0'); -INSERT INTO transactions VALUES(12,'1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'e9063537bf8b14d57f0fede04e91efe40d98d1c73ecc39c9a3d82a56cb013761:0'); -INSERT INTO transactions VALUES(13,'1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'7e8fe4f026481975d26bdade6d84e07654ecfd624ca1c054a2b20ebed6433f0b:0'); -INSERT INTO transactions VALUES(14,'a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'453f22afbd458aeee8eeb422a378fe72b9ee0d2784e5c19517fa52bd442b1ae7:0'); -INSERT INTO transactions VALUES(15,'040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'f07ce90f370ca2c0f6b9b0d35fb394a31fd9d16d60f688a11e02679b303798fd:0'); -INSERT INTO transactions VALUES(16,'62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'1dad931f9d9dbf1dc2e862ba958fd0fc15c2adc0dfbce0f8ba9a399f485ece4a:0'); -INSERT INTO transactions VALUES(17,'578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'7bd26829c3e05451a26c34693af7528ce97e743068f941bf25467ae457d7b6db:0'); -INSERT INTO transactions VALUES(18,'479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'e63bf97412baed033932c81838cd9de48b2b82772a4dee207c95061fbf32379f:0'); -INSERT INTO transactions VALUES(19,'16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'8090ca2faa4b18f1033ce16930f4a4a7ce4ab9761072e16ff025b99dfeef80ec:0'); -INSERT INTO transactions VALUES(20,'65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'1368eced55ba8fd8fe90c029b9cbdee09b2f023f957c95a0e38ae273e2603aaf:0'); -INSERT INTO transactions VALUES(21,'43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'bff102ed8b0979ba6966715d3b4b5138e128cb04031953136441e61d9edb75c2:0'); -INSERT INTO transactions VALUES(22,'cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'a81dcd4abba199c95c7d52cea0390fa94c33b0b11358a09789c469256e62d083:0'); -INSERT INTO transactions VALUES(23,'ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'0446c9865d4eb11e643bd97ab9d4ec5d5fbab31025f579f860089d00b6587815:0'); -INSERT INTO transactions VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,'ff2c227052f38fc83140ec7ca8a5dfa718f3ab0546cbce41920ebd36aa54c691:0'); +INSERT INTO transactions VALUES(1,'63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 7b17f1bd3ee49ce2e5e9d749bcee03749fd056731fc38e3405c6ad4885d18b0d:0 2 '); +INSERT INTO transactions VALUES(2,'5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,' 8a6f8cd8a437c07534cd71f9eaedcad50459726a90d52e6fadf0ef1c8c348f2e:0 3 '); +INSERT INTO transactions VALUES(3,'04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,' c0b7ba21d78ad1b9d15cb6b9f3a0e5be7308e48da38cebd72daf42e4f8cb63c6:0 2 '); +INSERT INTO transactions VALUES(4,'98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,' 4570ebcbadcde31bb1b2cbe5e0bce5593c8aa7f246a6c62978394dd046267a24:0 2 '); +INSERT INTO transactions VALUES(5,'90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B04D5809F0085BF2655C500A8C65D6D8B42DD373160FB431AF05792B0F30B63A698EF3D31D1777AD18801E94EEF03D4314911AC03D7A82483B40614EA5CF80E52',1,' d2c33c5859fff1bde271ed0b48f3853ff5441f7d5a29f64a31848b58496c16eb:0 4 '); +INSERT INTO transactions VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,' 6b24ccc7f3e91ad0db1bb059bb144912e7deaf6436b9b1eef76cbd1e3426ddad:0 2 '); +INSERT INTO transactions VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,' 65161bae7afefbb7b46cccbc42d943189fb58bc93833504a9beb8a81d1ac3dac:0 2 '); +INSERT INTO transactions VALUES(8,'30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,' 2a941755031caa5ca3afe08d8e55aa57ff5fe9e2d725ca91388504885d7658eb:0 3 '); +INSERT INTO transactions VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,' 25c2b96162f286879550ee980db0bb717e27d63c62beed1604b9e83df8500bcd:0 3 '); +INSERT INTO transactions VALUES(10,'f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,' 04b45929bbea052062fa897e2bc54d323b0bf9a46f4f5140f1362ca244e4768c:0 2 '); +INSERT INTO transactions VALUES(11,'15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,' 52def9655f61f72912a55624d1ce0b1fdfd98f7eab1d12eec193c29392572817:0 2 '); +INSERT INTO transactions VALUES(12,'1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,' e9063537bf8b14d57f0fede04e91efe40d98d1c73ecc39c9a3d82a56cb013761:0 2 '); +INSERT INTO transactions VALUES(13,'1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,' 7e8fe4f026481975d26bdade6d84e07654ecfd624ca1c054a2b20ebed6433f0b:0 3 '); +INSERT INTO transactions VALUES(14,'a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,' 453f22afbd458aeee8eeb422a378fe72b9ee0d2784e5c19517fa52bd442b1ae7:0 3 '); +INSERT INTO transactions VALUES(15,'040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,' f07ce90f370ca2c0f6b9b0d35fb394a31fd9d16d60f688a11e02679b303798fd:0 3 '); +INSERT INTO transactions VALUES(16,'62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,' 1dad931f9d9dbf1dc2e862ba958fd0fc15c2adc0dfbce0f8ba9a399f485ece4a:0 3 '); +INSERT INTO transactions VALUES(17,'578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,' 7bd26829c3e05451a26c34693af7528ce97e743068f941bf25467ae457d7b6db:0 3 '); +INSERT INTO transactions VALUES(18,'479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,' e63bf97412baed033932c81838cd9de48b2b82772a4dee207c95061fbf32379f:0 3 '); +INSERT INTO transactions VALUES(19,'16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,' 8090ca2faa4b18f1033ce16930f4a4a7ce4ab9761072e16ff025b99dfeef80ec:0 2 '); +INSERT INTO transactions VALUES(20,'65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,' 1368eced55ba8fd8fe90c029b9cbdee09b2f023f957c95a0e38ae273e2603aaf:0 2 '); +INSERT INTO transactions VALUES(21,'43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,' bff102ed8b0979ba6966715d3b4b5138e128cb04031953136441e61d9edb75c2:0 2 '); +INSERT INTO transactions VALUES(22,'cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,' a81dcd4abba199c95c7d52cea0390fa94c33b0b11358a09789c469256e62d083:0 2 '); +INSERT INTO transactions VALUES(23,'ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,' 0446c9865d4eb11e643bd97ab9d4ec5d5fbab31025f579f860089d00b6587815:0 2 '); +INSERT INTO transactions VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,' ff2c227052f38fc83140ec7ca8a5dfa718f3ab0546cbce41920ebd36aa54c691:0 3 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -513,352 +513,352 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1,"utxos_info":"7b17f1bd3ee49ce2e5e9d749bcee03749fd056731fc38e3405c6ad4885d18b0d:0"}',0,'NEW_TRANSACTION',NULL,'627ff9cc7b396d172eb41e6f6046bbbbf026b14efb0b345f30488c37015ab024'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','a002ad765b1e0b4f940a5184860c88da2dd7b9622a5494865a71b5dcc67a530e'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1}',0,'BURN','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','b9ff4a6733301ef461e16e6c14d337680b71e1dadb2527f464cb7a0d80b2d98d'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"7e1322d444b3395f9d8ce6b1ca6d48e8f0d78e5d72da997fad9520899bdbebe3","messages_hash":"552834a4127080ad2b9d1adb20a5be06521c25bfb26025b5bdfac27ce53002eb","transaction_count":1,"txlist_hash":"702e537dd6e79386a246cbc44fbccf8ea2a4e575c9f1e072189fbbd831308672"}',0,'BLOCK_PARSED',NULL,'3079339ceb00974a363c302ca76c8aae17a66c9603fc4df8a0781ed00cc90b72'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dd06badaa72da926f5af51e6f5ff6734e2fc5eeaf47db98da444baf904cab7a'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2,"utxos_info":"8a6f8cd8a437c07534cd71f9eaedcad50459726a90d52e6fadf0ef1c8c348f2e:0"}',0,'NEW_TRANSACTION',NULL,'093d3c36b54aa8ef5e61cdb0d7232a4eaf3b9891dee721f4fc0f001759da313a'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','de8f125c1258dd7c4830cd90e53feaa24e031c13e52d0f795b9705daf5e73fdd'); -INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','9c996993a4eec18dfc4acf9260aa9c7940aeda8283e44e136eff4560f13506a2'); -INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'SEND','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','e0caf0aa44963588d92bdf1b6bf38fc9012d5dfa9524e3cfe9b73a12d781e5fc'); -INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'TRANSACTION_PARSED','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','27e082a6cf40da651457e93a43843e47353b6e35664a9046e97cc5a77f39c788'); -INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"3e18d8a969bce2d869cb86b28c23823d88e6d8a840a3cda905a003b37222ebb8","messages_hash":"c2f806a9a12341f0bf89ecee3d9644f26adc4434014e0113a5524016455bc7dc","transaction_count":1,"txlist_hash":"bcd62109b750a9b5c3a07fb6e3ba7a5feb2cb56fb554da3b2b4b560a632e3e2e"}',0,'BLOCK_PARSED',NULL,'c2924020bed74f6a58111278cf300ccdce62589f0e05abee2896cd2a902d9477'); -INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1aedbfc8a6262a74c0e2f611854450dba2bd3fd4afcb5f81a7ed9f67fb8a1aec'); -INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3,"utxos_info":"c0b7ba21d78ad1b9d15cb6b9f3a0e5be7308e48da38cebd72daf42e4f8cb63c6:0"}',0,'NEW_TRANSACTION',NULL,'72b0c99ee918f6654ea0977d8c73f9f1e9b4f33071c130e24e4ceab3a313b7a7'); -INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'OPEN_ORDER','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','94fcfeb004b5acbe98c7242ad47ea84f693bb6a22853bf8354b05dfe0ccd892a'); -INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'TRANSACTION_PARSED','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','20154334b83098c164c421b91122f5a3db7a180c32efa6752f23191c8c3a852f'); -INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"71dfa527236bbaf632db18cf1773c63f7ee3a0076fc6562e46db0c955b346a9f","messages_hash":"d856d7db060596d120d2fba33f71d26680355bede7cf11a678e09dd5c903f7a4","transaction_count":1,"txlist_hash":"f7e5b51624875d95cb14e212ee733c94f12f69084eeefa4b77491479ea3ae990"}',0,'BLOCK_PARSED',NULL,'677675e422b94b241a5469792098469b7b611471920cef0fcaa3c6e2ae975ea9'); -INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f02a113c136cb5533926595e8d1ad8dd5c1051a74b700dd542c8ce95a22895f7'); -INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4,"utxos_info":"4570ebcbadcde31bb1b2cbe5e0bce5593c8aa7f246a6c62978394dd046267a24:0"}',0,'NEW_TRANSACTION',NULL,'74fd85ea999974e34aac2462d949aa3cd5febb1ca721195b0794261ef42f9653'); -INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','222568fbc6caaf5f452bbda6d60e803c90e1abc1abf8091b8e5375d2e01d696b'); -INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'OPEN_ORDER','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','148dbd4a5ee3cbeda66781db64df922d59098898997592a19500f60743e1ff3e'); -INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','d47395b085ba08ffb7041146acfa93aeea16831f81347dd0ec1666ad286a2fb4'); -INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','cdd91c425563d45c7de7f5ba5306ac4d12fe05bd9c6fdc71e47476859d7d4618'); -INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx1_index":4}',0,'ORDER_MATCH','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','f9eaf34429701d5400649cc3533e4dd63b25302d5a48524f4c1d6eda4cb1db12'); -INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'TRANSACTION_PARSED','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','660d69a4c2d3affcfc0abf1f11b1f47683d0f3d44e4bb2fe8a95fa0cd5b0e11a'); -INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"39feff81ad306adcfb9610e6bd8442e35dd6e1924e75a53708c1d2932bda67f6","messages_hash":"3ba416078c624d16f08723cb72829d2b5e3ee29dad6cfe5d2d12226f260886bf","transaction_count":1,"txlist_hash":"a857bb0cb63c343a04d6efdf7d69f1de6f89a67dc25ca5b3e9cd9405ef48c416"}',0,'BLOCK_PARSED',NULL,'80e76e5f6f8864085625fc9367a95afec9c9ff417e1775025a40d85f2b485d74'); -INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e37753a8d74fc52b521f29222f22f34bff96cbc2448c6fc35cb1b1fc5541f1a6'); -INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a698ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5,"utxos_info":"d2c33c5859fff1bde271ed0b48f3853ff5441f7d5a29f64a31848b58496c16eb:0"}',0,'NEW_TRANSACTION',NULL,'abaf69611a70f1fa641599d7010fc63f31bab12b5f2e84875e7d6927d20ffcc9'); -INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','4cdc819bc67fa8b23c05b04be16a0cd0dcd74c49ccdd319c90ecad8985a7e3ac'); -INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","status":"completed"}',0,'ORDER_MATCH_UPDATE','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','5035137710af9625b17069c3b528962d62f6809658299e0c1f217379475dbef0'); -INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'BTC_PAY','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','19d58a9bdc8afbb8052856e33f63d003fa10da11e3e53a7dff1b7b380655f2eb'); -INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'TRANSACTION_PARSED','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','eb98bb26306bcd457790e53fbf1f82a85f24c647de3c1ac1f48c6861a8b17f3a'); -INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"1cee0851ee48eeaa3f71e7a18f9f52fffa28cd3b2e1cbf1f79c0f562618b88c6","messages_hash":"76887dad5c1d2e78b4b37a226770643ad4636e012f301b3a5c9c9c2957d74c5b","transaction_count":1,"txlist_hash":"32e68b308a1281ef170d188fe7d19a93486667d45d8a6b50a0c39f00d6924cde"}',0,'BLOCK_PARSED',NULL,'1d3d37f73a6c34617918eee8525e0b7410b3315401742400cc6843bbd5ab8a28'); -INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd2ca536a8305fc23db4c3c6cf40a3c147ad1e593b321e81b86378343ab202f'); -INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6,"utxos_info":"6b24ccc7f3e91ad0db1bb059bb144912e7deaf6436b9b1eef76cbd1e3426ddad:0"}',0,'NEW_TRANSACTION',NULL,'7dd24238341ddaa4da8a29dcf6b618502e26f5ad067e9e04f387c9c205b3e4f6'); -INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','83eab25947975ace05439f76bbeae659f3c5ccffbb2b804ece366454f1a6f288'); -INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','13b77151e120a94ba52b16592c20a937bbcdb56827759e9b7764c8031522bea0'); -INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'ASSET_ISSUANCE','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','28be0134b6151cc8384841c4f190f82a1bc6a2d7f7b426f6cf9f583f342bbea7'); -INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','09d17e98a4bf3a862c0656351f587b73215295193afd4236949408e7b80b119f'); -INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'TRANSACTION_PARSED','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','f47d881729aea02fdf7943546712fafbe7d2341d3b721ca99fd404fada5dfd45'); -INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"89f516c3fbdcd1540125561301db451fb55b1baead9ae8f408156075aed104ad","messages_hash":"df48153c075eb97228d7c1004cc4fe908d610e2e9f827384356e520c58056e01","transaction_count":1,"txlist_hash":"3a41f3c4d912ee4628975e61c4a04b836de31df5a9aa5fbd7031628d9c4f0eb6"}',0,'BLOCK_PARSED',NULL,'f4d67b227d8f4f2f7464747165b35580240324768a05076269951196629dfd40'); -INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'224758cc3ddd1b9f698deb7244febfc8089029eeb5175eed2fbd2dd1c04ab709'); -INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7,"utxos_info":"65161bae7afefbb7b46cccbc42d943189fb58bc93833504a9beb8a81d1ac3dac:0"}',0,'NEW_TRANSACTION',NULL,'6672e6e726e91c12444660d44476a0594661d4cac5857897bc88a05524e48071'); -INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','8b55d56ffb8be8be1d6d16dc254407ded1f85838798aa3a9e0b850762cf30af4'); -INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','73d226893a1028badb53311b36db6bca153f86c912f60a33c4c896e400747377'); -INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'ASSET_ISSUANCE','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','f73142b4bd0471b9d78b23a58a1cd102adbe842b850afeffa7bbad69cd67e314'); -INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','0ca2b3991ffdee9da49c4691478e61d20fd60c07751cd366039be35c7dee8d4f'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'TRANSACTION_PARSED','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','78d06727692c8784bbca4088205dbef983f2ba51a2874ae2862cd77e660552e0'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"e9a37cfc1055e8c18d369896a14422cad3c5ac8d9b4d5aff6053d8e31dd56336","messages_hash":"a7e3bf30127962e93c128d1a5864ca96755552f356d1a168abf31fcd4b97be8f","transaction_count":1,"txlist_hash":"4d2d6945b23826371a1cdb4cf2f841cf2b78c891a6b93da8167ed219388edd65"}',0,'BLOCK_PARSED',NULL,'4acfa4cc07a251a51d614e0c9b31748c6ff2cbe515ad7d0fb7aa65b7b789f22f'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59b7ae8469368107bb32f4b2ad3de482e78c1eaf6799f2d720e02923a87fd10e'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8,"utxos_info":"2a941755031caa5ca3afe08d8e55aa57ff5fe9e2d725ca91388504885d7658eb:0"}',0,'NEW_TRANSACTION',NULL,'0669ece2f58417981ff470c23845447088b454f8ec5640d796613d9b73436461'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','bab3bc753892bd0eac98b2884b30949df91b36c0f4bf67409c86b53af457806d'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','0e914a0192b28975ad645b32f2797ec9fa37e90c963269e75e80241183811ae4'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'SEND','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','5829f22ecf75ce61034ee82ff67d78fa9a8459381838e06c348b153cfd45c1c8'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'TRANSACTION_PARSED','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','5cd0661c87ae03c2dd0254b2c8ad40c74196220a3e036fa92cab341ceb61859b'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"174c7c107c37e0ca2c907b1bc35e086eebbad8eb02493a2f166ff2279ecc013c","messages_hash":"953607d722b777c690e11bc7b4be7c8e15bc34a21fdd43d8c8df7c4c021c4d26","transaction_count":1,"txlist_hash":"dd1e7522ff359cc0ed124a82d3b367ea105127d45ccf563848b531aaf75b8c2d"}',0,'BLOCK_PARSED',NULL,'0bd51094e6692ee3b4d1b82034c400270de0303be7b8152cb249f103f8cefcdd'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffea9c75cfb7575f5ef1513e2aadf18efcf99e0803fd9690c9c4b9e288a38791'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9,"utxos_info":"25c2b96162f286879550ee980db0bb717e27d63c62beed1604b9e83df8500bcd:0"}',0,'NEW_TRANSACTION',NULL,'c1ff4cec42c8c25e7074a97fb6e259233f982a117faa44fdf1f4bc78dfbc5a95'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','f24ec4dbfaf834231325e7993b4ee06f12f3331aff657cd6c3e4f398254b864e'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','e941f7d304e1e984071c10b26509d77a750ea46c70c836358e27ebe268f8c55c'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'SEND','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','a25c039443616a00b6245612c118e497c99dfe04e9df779532f918cc75d326bb'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'TRANSACTION_PARSED','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','c8cf913e92009fe9bc5224da98d5089960d8d7689050f0103e50f25c47a542a1'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1463da3ebe264e703ecc0c708baa98f737b31f51726f85d3ac646f5e301b7c10","messages_hash":"f2f508918acbaa10662a53dae0b5acdc6708361ae5dc133aebf758d444d087ce","transaction_count":1,"txlist_hash":"3e547d66bace022adbb42aba8172ed287077f306537c9ce69bb11f47ed1b34d1"}',0,'BLOCK_PARSED',NULL,'c74cebab2e92293aefdaddf2e4b991d932e95e2a4904e5354fb39f1563dfa091'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e110df6298c77178fecd6375b2b3962c7e9804489121976550044a469d8d50b'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10,"utxos_info":"04b45929bbea052062fa897e2bc54d323b0bf9a46f4f5140f1362ca244e4768c:0"}',0,'NEW_TRANSACTION',NULL,'c62d3bb067390fad5ddd6be3759e1674c40ed522f4d8ed7e535c58308fff9745'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','9dc47456c694b5d452a546b009f584b9aeb56113bafb42255afc6395af194f1a'); -INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','bbf74d723bfea3306436aaa4b4c4f05776e8b200b2ad3dbd32bdb745a8e1f48a'); -INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','38fba6611f8780adb172d826a23bd4ab59d733b969549b1466bf6205cd6e5b46'); -INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'ASSET_DIVIDEND','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','6c63c065ffe985aa3680b43ba544ebf77d759c6144f030671d946fa879d90b35'); -INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'TRANSACTION_PARSED','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','e6a43190c3e4470222316f373e565a877d770e7ff768c86c6cacaaeedfd82492'); -INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"dfe8c57b4ce4ea12f002d11cfc127f95b7cea7727bcbaf64418b2d584602a250","messages_hash":"23b93395070934bec727c5d12e4e87b0f13f1d142b939b667d53ca7831262f96","transaction_count":1,"txlist_hash":"20b7caf43b34f595139545c800247b16da6e00b0b1162928670c80ffc2cc773f"}',0,'BLOCK_PARSED',NULL,'15296cb17c10a20923b7a7d91eed69041f0b2a2b2e1a11c0bc1d762c39d4a055'); -INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'543f215fb8b56c7d5f231afb2f87268ee9cecf7428a4cf2cee4132b7a460bee7'); -INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11,"utxos_info":"52def9655f61f72912a55624d1ce0b1fdfd98f7eab1d12eec193c29392572817:0"}',0,'NEW_TRANSACTION',NULL,'935b6686cff9e52367f930449e787789e23853d42257f605cfed54976a328544'); -INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','88bcbba2a8e26fea5ed1d95e5aa42149d76922d9a837bfd607d5ae4e72b20d06'); -INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','4a33e78116a55932fb2c62031b97a827d48c664ea3f1d5ea87f0c0f2064ac9f9'); -INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','60edebb7df4f2d4daa838e549ee42594c6a58095b603605359527dadba49818d'); -INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'ASSET_DIVIDEND','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','e38ddc7704c21e3baba112cb517ad398602dc173a62a3a8b3a6827550e0105a8'); -INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'TRANSACTION_PARSED','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','f813d557819b442bff6d308b51c9d3ad094980d12ca5955bd2829ec036da86c1'); -INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"f9c936d3bb4c8bbc20e544d9262ffa3906fbaeca5e4b2e3b241f6059868f506e","messages_hash":"786f39cfca8921b807a90a0ed8bc82066808bf6f6742f4028933abb6ccc3834f","transaction_count":1,"txlist_hash":"47442be955776c7e31fba3f14df298b088192577691c17dced8b14b6037e3c50"}',0,'BLOCK_PARSED',NULL,'387a60a8dbdfcaa55fc10cb2dd5a6ddbcf7c6138d50c860082ba71b992331c65'); -INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d6f15142bf25bb11391caa6a5dc1c0ff2676e573eb9e4d16d61721ed5b8f03b'); -INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"utxos_info":"e9063537bf8b14d57f0fede04e91efe40d98d1c73ecc39c9a3d82a56cb013761:0"}',0,'NEW_TRANSACTION',NULL,'f8dd3e6da1a3af1befd465ab2ab64c25f5fd43ae47de9be1e7722e382553fd26'); -INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"value":100.0}',0,'BROADCAST','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','fb5c965b4850e106280e33aaa144386a10447543803448e0ffd6fdc0cee16d06'); -INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12}',0,'TRANSACTION_PARSED','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','0763779634cc1e72c0ae61a994db2fea47a880dc5cf66725d012ab4d0c04a0a3'); -INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"490bfec10bfd72eca7fcbae5887b94ce4739454a82e601dc754e4e9d1030f3c2","messages_hash":"83622204e7a7c0e1bb7967a740957ab2af05c6ddcf8c528908173cf04d791dbd","transaction_count":1,"txlist_hash":"8a060a9cc82b497e020ad7af45a62c07110b724282ce0c7ca34ad24584638a3b"}',0,'BLOCK_PARSED',NULL,'842950de559108452152e6141d6969bc0c329bf771b1c89ddffbe39bd4660664'); -INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c44609e99c67f20d33ebc537f79abb2fd7b7a08ffc3201ebc4d81d70f33f697'); -INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"utxos_info":"7e8fe4f026481975d26bdade6d84e07654ecfd624ca1c054a2b20ebed6433f0b:0"}',0,'NEW_TRANSACTION',NULL,'17d44bfeb63e923c21e4228f110b9aac267ed29ae59cde07009e26a0568b4d75'); -INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','161aba87a33486214a5750d9dce0e964e12fbb08680fcc4b2a278805b5de0733'); -INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','5b8b41fa088ac96eb43b23b11a095dbea3140999ea10ba7409c18c1e7d232c1e'); -INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13}',0,'TRANSACTION_PARSED','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','3cf79a95c7fb7de952d9acdf7b3f3168ffc8f46c169b3deccfc52060e61c1012'); -INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"621d39c103bff9a76ada332f41e3ad54c89676bb6057f624942ddf28b31b5927","messages_hash":"73e6f94c305baff4e1c1373581a980e84ab1fda23ab7b4b8ab5b796cb0d276c0","transaction_count":1,"txlist_hash":"4eb1fdd02e0f8ba27b9134ddb7b03b51caf3417e92687c7c1a7b50ce2d52e6ca"}',0,'BLOCK_PARSED',NULL,'43240ca35e5f6cb9be344a1b77d09a6bfff1438e58157cfdfb6a6c7c10e0a7a2'); -INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5107449304d03010c10d40d450be6da6277b53c147dfc29518c6af63a78de5be'); -INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"utxos_info":"453f22afbd458aeee8eeb422a378fe72b9ee0d2784e5c19517fa52bd442b1ae7:0"}',0,'NEW_TRANSACTION',NULL,'a55704e55cfd1c5622a089875712061e89fa11095e1336e1fad230e32db64035'); -INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE',NULL,'367919cda77a4e3b2ff0eb31005b4fd0b620d2e6b37ba5d0c8e3f27454484e5f'); -INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'8e613a3f095e3943c1b6cfc4737c2fb00f80937d3a3c8583cd70d6c2bd19a6a0'); -INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','1da3cdb494f399e00f0aa1bddb595f28de0f15fce6e896b878d2b77c28860c0a'); -INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','b138b5264a988a686527afcc1e5803aab1dea11b0d743abe906b80f8d6553f49'); -INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","wager_remaining":8500000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','ed7cda93f882862cdcd52529f96788b4a1155f776137489a4c067b45e3f70554'); -INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','e6e929e82415a5be5260d08f3a62c2244b8b5613852ac16b92be460d5878e233'); -INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","wager_remaining":4250000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','50d18807472ee7b5fd30256e47ec9e1c28c07ca0b03d0456f9039fa181cea776'); -INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx1_index":14}',0,'BET_MATCH','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','cbbb92138698f6d5e3db3a3d1a240d5068aaaf16c001bea4e070a4652edd31d9'); -INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14}',0,'TRANSACTION_PARSED','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','9d741fe77f9fe9a1dcf8c4777983439e5b3018a86dc10494711ca08efb884217'); -INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"7d31be770d6bb6669bcb0a8a5964e57a758788cbbb942d1d3da1abd25b5dd158","messages_hash":"702ee302651e4a1683d27ecd09a5b728a1ef43b6a12414b7d724ce9174383615","transaction_count":1,"txlist_hash":"c71d132b3da755134d5305e814129761fdeab1ac933dc320f83570bd5d007002"}',0,'BLOCK_PARSED',NULL,'0eb6babf7d66d56eeea12fae53e6d76af055f1a8367c8467941c23010edfe9c5'); -INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8acbbdadddafbd5e9e18aa50c7e5f52ebe7b35c9963158a658a0b3af519abc84'); -INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"utxos_info":"f07ce90f370ca2c0f6b9b0d35fb394a31fd9d16d60f688a11e02679b303798fd:0"}',0,'NEW_TRANSACTION',NULL,'b779d4054aa6aa596286c79a1a2030c614dfbc6baf6b1286e7a6763a270aa5a7'); -INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE',NULL,'6b62dd29f5bf195b3de118417d27d6e0da60be087390d6c07513c411f31ea767'); -INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b23dfad2e29048931caf8a6da4001bfb0ed853fbd58fb2034e0e52ef4d7a52fc'); -INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'ec27d669b4d45bce1bb2e54dced8372fba5151f805ae78e87bdefcbba0fa4456'); -INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','9e9870700d43989c33cb3832ddba5295e6653f32ae1b8a4daeb9682275683915'); -INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','f94b5bd7e61caf60da4cec0c3c00c9d86ebb181d26dfafc6e8ffc4a7bb030fd4'); -INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15}',0,'TRANSACTION_PARSED','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','5a7c134d722b81606d256ff419b6b999fab029b341495ed2569fdf043c43814b'); -INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"3aba9622f8de243bcd5e6a5c88fdf04a79a52d95bdc1778d57586b13f30e501c","messages_hash":"fe686a32c0f827d9aab2d14f76a7831683da225ef2f8612ff2b18f7a1776233e","transaction_count":1,"txlist_hash":"d7949a992d062d2eb763b2bd406ffab07d7d676e3327f5e38a4a8a4815e97f35"}',0,'BLOCK_PARSED',NULL,'9ccfb330782ed75baa31e8c78c1f087a7e9862c45a87cca9b905f16221786524'); -INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d0aa432b161f5ffeb88d4ca522ccd5709b1f89d68de5a4d9121b6cc6059c177'); -INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"utxos_info":"1dad931f9d9dbf1dc2e862ba958fd0fc15c2adc0dfbce0f8ba9a399f485ece4a:0"}',0,'NEW_TRANSACTION',NULL,'87f254b313b8023a818f2ff64e046d87629aad3d0b6d13155f81b3a9a4741257'); -INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','acbf0263c66ee354dc4c3560ecef523d1659ef421bb0917d0f364e0b8c5e1063'); -INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','9c4a32e43d47f239d5ef3d22525518a68c51aca77e743d758c57f1376c9fc0be'); -INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','2a42f3ba3bf704a68342793f6094358bbc8dd0865d708a6fcbd4ac4d856e0b9a'); -INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','be966bf3177c12728bc6e63a6cccae5301ad0b585d21f0bab0a5af4b58b5f200'); -INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','334505d94135ec428173ccade3efc8157049c7308f6e98e375a7de8ecb28310e'); -INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','f0ce6993803e2fee776dfca622c0398f3730f56c18b617c3b7d49291dda54e87'); -INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx1_index":16}',0,'BET_MATCH','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','31b9a1c5e95b2acefa6f7fcff7d2746544da5c83199e0648b7917a2a3d170f79'); -INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16}',0,'TRANSACTION_PARSED','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','910d50994dc4fda4df04a2d89a10c87c058db48b5f34e5e042c1a77fee1d2723'); -INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"342e5dddd2289d3d6e381fade13e5a5e3ed27615b89bd8e06ea2bab8f8b48be8","messages_hash":"74218ec7fc38341f5b5037c99528bd4055ff9fe959997c9366cebba810218ba2","transaction_count":1,"txlist_hash":"5afdd424176b977bd7b0660867d92952a9cec422a6861c62a876a10014807084"}',0,'BLOCK_PARSED',NULL,'75ce73a7dc4d899847678e72cf81d4d87e8a5c805726fc25b5dbfce07ff7ebe7'); -INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ef220ba576a6d274466691fe8db3dcae4e8c2ffd655fdeefcef6deccf57c1df'); -INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"utxos_info":"7bd26829c3e05451a26c34693af7528ce97e743068f941bf25467ae457d7b6db:0"}',0,'NEW_TRANSACTION',NULL,'4e540cd9aec1ca25c951c9813c4d4e6bc46d2c172f898240abb349b40b4cc214'); -INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','58e25d518bbffd673b5ead15aedcda88fc9eb40d09f2817efa2ed596d87a9bc6'); -INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','fb44023e61b63800c25b333af699206d8eeea09a28f550399b08806da81c4a8b'); -INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17}',0,'TRANSACTION_PARSED','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','b2dc4aa1279bfb70c42dd1eacbb1020bd95ed8dd4ecea7ca2910dc2d2d7d1cf7'); -INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"51b904e6b18ce4d17bdc491457036ff3a4ba70789ae929862844e9456c3b9b01","messages_hash":"d3a5f13d3fd6ed0b387a72b12de69c309daee0a67edc0e177772f940e17e24a1","transaction_count":1,"txlist_hash":"d74711d3af6b2313835591b58b1ff53bc20bc194922d10a60cb1274ca632e153"}',0,'BLOCK_PARSED',NULL,'239e32e5f6eaf2e6c8dc232260da1cf99600f7e4aace91784fd6a120454d6f68'); -INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d778d15187dc93d837fe2aede6997e3ecd7d229a79fa5b4b2100f2e564a73f23'); -INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"utxos_info":"e63bf97412baed033932c81838cd9de48b2b82772a4dee207c95061fbf32379f:0"}',0,'NEW_TRANSACTION',NULL,'81632df657e1398691f5f5c5538feff45ace11db6fbf8b3cda7a047d8a9397c6'); -INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','3383d0c03035156c9d35247eda8f2627858978288549318d7209fe9e417eb5fa'); -INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','42f9f75985010bfcd811e17bd5dd534c547f024dc1abe21d8a2ebf733e9dac2b'); -INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','7f1f311f9680a1adb11f0e92c869ea20f2e44be2bf8621f72921717552987ac5'); -INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','e6febcb087cc408eacc970c805d278d8bec1bd7fae3651f59e9cc4d7819ee990'); -INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','c5be8c96dd8a909f6460cc0b34df8e44768714a378de41935fcc5d4c47f4d0c7'); -INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','7fb32f66b786f3b977763d8566d4ecc61eabfa1ea69afcb21e6ba3f842208caa'); -INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx1_index":18}',0,'BET_MATCH','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','d3f7b58bcf56bcf64705b994b72367dd4535aa5a4f5576845545f911d8e6207e'); -INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18}',0,'TRANSACTION_PARSED','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','341ea9940d89d2017309160ebb4ec61518e2638f701c5eb2469af07e961c4fb8'); -INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"03a60654bc84711524cb38171f6573acbe8cc2120787bd09e5ec621b2f53929c","messages_hash":"b201e578ecbd921781c9b8dfafa0871e096042e549be9762d294b5876b40de9a","transaction_count":1,"txlist_hash":"bafeaf2f42cf716cdd586e1aea74504257d170275022dfb2c11863cdc33d3127"}',0,'BLOCK_PARSED',NULL,'fad5c70310a04fb60b7825d273efd2789c90bb27e88e76ab511061bc1a82d006'); -INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71f6739fd9958227a4621443fa3f8514912d0f64de695f748c96c8789f19c9b9'); -INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"utxos_info":"8090ca2faa4b18f1033ce16930f4a4a7ce4ab9761072e16ff025b99dfeef80ec:0"}',0,'NEW_TRANSACTION',NULL,'7b1ae02fa9807f08d12fa684cd519e820f51e1e2764bf69a74203d046af7dd5a'); -INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"value":99.86166}',0,'BROADCAST','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','1ce3e6a30c31ec41ae238e2c8d8bfde1c1db3ccccc414b055fdaddc079a9e796'); -INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','4f3ec5da2fe6bacc23c1b9a2c0b10d72d83cbe482ff0b761a60bde56a57ae729'); -INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','f18320452da473cad6af5984db995535c0c6f5189f54ca1898ff0b02d588d795'); -INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','d91886c54148a9f57faf47e49b4c4dce9d41cab320d11748b8023cf7f722977e'); -INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','92eff0073f4766f6fcbc61de76f9799e5f2a0d3766dcea6a9892dea3784044f3'); -INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19}',0,'TRANSACTION_PARSED','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','49fea512fd9bf7723a57ede21eb9f54e44a41639fca6785263824c5be8c98586'); -INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"a590602f34163cf8f880c3620f07a8cd27b9aeba8fc80ccb201d88364eaed210","messages_hash":"56f25721852b30fb1a0d7bf5465cd20955455bdb304488100a159e075052045e","transaction_count":1,"txlist_hash":"930eaaee66936628f4ac02f6417167100cc7e2335aaae56dac78cf2ea81bb172"}',0,'BLOCK_PARSED',NULL,'cf2953de44fc886d4e27103b02035db870a7701867a2bff690fea2a7a57fb0bb'); -INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90539fcdfe055e1214a91f01debf408d78422c2d8ed97578ff433cf597860fd8'); -INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"utxos_info":"1368eced55ba8fd8fe90c029b9cbdee09b2f023f957c95a0e38ae273e2603aaf:0"}',0,'NEW_TRANSACTION',NULL,'2eede6d9c65a5c502da12b14f745ea43f66cd6de0d44f19729593305a871a56b'); -INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"value":100.343}',0,'BROADCAST','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','ff2fa05d459d895f9012f0caa5e967e3d6381a8c4319655f727fc21493883a5e'); -INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','d74d0a73cbbc903d4a6795d0d82b78cf533894080cd430177efa15b626421905'); -INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','b6e6e6ab2f25677fbb506e9617e03edc9f08e076a758e4900aa7b81fc8267c65'); -INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','d56a760b0db6a4640530c9046c457fe7e6adce7c3554eeddb5b2a3336e44e99e'); -INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','fe80c03ab8ef893b084fbac418341ea31fc9d779d7ae30a51956735c364f2908'); -INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","status":"settled"}',0,'BET_MATCH_UPDATE','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','96a6cc80bf6eb2fecb1037cdf5c8331e42c41dedb3044d26a40bf9764e8d2b39'); -INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20}',0,'TRANSACTION_PARSED','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','64429373e33c972b7e5cadda8ff177e7ed9562eb360e07a3f42c7a9399f4c303'); -INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"1b340e7abac4c458e6a0c6ff2abd6dadaa2913414f450cf926725b5253210950","messages_hash":"5fc07543d231a3ec1569d5c116bcdd5f67ba8e89bc5e886f472595ff5e0ed40b","transaction_count":1,"txlist_hash":"ba496b27fd545d9d811d7421c6f9663e68aa9dbe3a7b5aa9d1ee5644cd142b4a"}',0,'BLOCK_PARSED',NULL,'e8a9d927b816e9095fa3c2014321a98cf4cfe31f674f618631eaff235c53478e'); -INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b412e893cd5f82484d069fe98bbe04cf8b18690967b3800b0729c401b177d510'); -INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"utxos_info":"bff102ed8b0979ba6966715d3b4b5138e128cb04031953136441e61d9edb75c2:0"}',0,'NEW_TRANSACTION',NULL,'3982c99e58b931b8df609034ed094a6d335ba05f025affb84404561dc516f5d5'); -INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"value":2.0}',0,'BROADCAST','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','fc3af8d674670d3f95c8c402d27e989d17fe2b37cc87a7496519df01b3e937ac'); -INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','3152968c1450959386093e5e9a0bd4cd73d8b102d1bbc68644681cf942db569c'); -INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','5fd06d02022cb1724e2fca1afc4fb8a484f144aae79323d9bea02196e0520573'); -INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','54852fcbb87ee40901a86427625ba01150264b8314aa6f6c7b1b42db6fdbe08a'); -INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','283c582af226e73a915ef4f463fac0c4a4ec628fb407398ea59f75bba3460144'); -INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21}',0,'TRANSACTION_PARSED','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','44e108aa7aca82c5f5beefbc5b269f182b04819d3d558da10563304188ed7054'); -INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"5a5a31ae9b03a362b44c9e38effadfeac273bd370374ea4816b8402d6b8a8a1a","messages_hash":"43a63216cf2d86fafe6abe3656888c9a29ac21d0e21e808b76d7d1afd0edb0a7","transaction_count":1,"txlist_hash":"be94a40c259a5f9e2ad5cb714089c4be18de7bd6d3b403f3a4620f4d889ba4ed"}',0,'BLOCK_PARSED',NULL,'b4e63a8dfad924d90e6eb8f89336c73b5cf4a07e279523866e047156745424e8'); -INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d725f062e625128166ebc685b77175a6aeb98a7b02164ad8bc1f298687a2162'); -INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22,"utxos_info":"a81dcd4abba199c95c7d52cea0390fa94c33b0b11358a09789c469256e62d083:0"}',0,'NEW_TRANSACTION',NULL,'7dca8797828eab72d820b4d51bb5578a7ecb07e40a76b6860a6a25a6e0a15f8a'); -INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','353f0fa1c028e819793cc6f90cca807a46b542ad8b2729d78fa64f103ef6b4ef'); -INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'OPEN_ORDER','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','a0b52f1746b35ae87e24d267f1c63800a4678a61e75c2126b5105468d131b0ab'); -INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'TRANSACTION_PARSED','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','a5cd34ec5cc790d981485e70ae87cf5e569be9c1d03658193b8d0c1178c8d0e2'); -INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"2005a300856ccc74efe80c56927fc13619d5c40ab03ae4ee4fba2050bc2a6b75","messages_hash":"08bb4ea791ea864610410913a61a2273bb1f197405289e0dd3dd8d572deec241","transaction_count":1,"txlist_hash":"afa68f3f9cb6cf8f767075bc9119411e146b6838278d884868a80d9c8e80e26f"}',0,'BLOCK_PARSED',NULL,'7548fa805eec105bf1f6b44251623d3447c572756816d11d09b26f77922f66c4'); -INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2a6fbce24ae59fb034abd1e565ee1eb3da4d2a2b4fd8efaa83f9960eb6d21e'); -INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23,"utxos_info":"0446c9865d4eb11e643bd97ab9d4ec5d5fbab31025f579f860089d00b6587815:0"}',0,'NEW_TRANSACTION',NULL,'90b81e17ca36319b3d43946ddd7b55e619974063758891408becfad852fc689d'); -INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','ffc98b83284d3a03127fc4da95afa7504949207450ada5ba7fa9e3289e320b5a'); -INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23}',0,'BURN','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','bfd82be15a9c0bec36c30032c68c65f0b077bac253837224a2e5a6c398940b79'); -INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"95307de52e23a8433143d79710e7df22ba7205e2651c88a2eda220ebc8e0f289","messages_hash":"4068ddcc0045689c3e9645ebc794d2b528065513deb2080edcda01624de8429b","transaction_count":1,"txlist_hash":"66f27b0e46d782b3e7eb8207ba442131069820295ea19ba9b1f8be5ae5b1367b"}',0,'BLOCK_PARSED',NULL,'ec5efd16ccaa34d53f8d69c8b69bdb76ccfb7c6d2e7c1c4b5268748f9e07fdbc'); -INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cff71314e9d21d4b2c55fce3a751811bdbf61bf8f45e8085caf26bdc68085483'); -INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24,"utxos_info":"ff2c227052f38fc83140ec7ca8a5dfa718f3ab0546cbce41920ebd36aa54c691:0"}',0,'NEW_TRANSACTION',NULL,'22626a0a5d09220d171f1a264ed06ba01f7f638a3f054abf39eb30c1cebac7ca'); -INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887"}',0,'BET_UPDATE',NULL,'5422ec615e879711f9e56a59d98cf348b0b2305ee16cc12cf05d55c8f6991dd9'); -INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'deb21587aba9d6c936ab64ee7bf91be56ace7f4cad45aba8e88c6c26eda734dc'); -INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'d6ae3812afaf89d9ecf2440cc9c1263c687bf8e52618c1770e10813511098ec8'); -INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','b7786e928bb7b9f710bbfa5c1f0988d3b7240d620bd13359201c1a6e3781c6c0'); -INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','cfb6d4ab9a91fb03b5ff53d80042923476a31dc18ad470f80bd87f90202ea700'); -INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'SEND','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','9442857a90f9173b4ddc46a06dd13a964048c91c0f64441c71e7b964c841c94f'); -INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'TRANSACTION_PARSED','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','709387c9a83de5a2b43b525a62d0332fbf0147dfa93aa5eaec518cc65e7e0552'); -INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"de5a22c228bfc58ceaf428d55f180e951ff877537ef463821ce1206f07ab02f3","messages_hash":"ba4728d205413e91313a95fae1eeb6f9499f9681301ec896dd2f54cc00a7f8f4","transaction_count":1,"txlist_hash":"eda7d728863433b4e738e2b317d661a68d7f8921ed3fcf56120e0e0df464f161"}',0,'BLOCK_PARSED',NULL,'24a981dfd7489b6d2349b61f7dc163923403d63754e9ad8140cd8ed2e408d8a2'); -INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc9a4d0a5f09d5d97efa4eb853fdc846c33426be0fc291bd135a285b9249a24a'); -INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"e54da9db6c4911087dcfb2824acfd7429431e3297f6b5836dfa8f95165ac9b08","messages_hash":"d564f49e3a77a2c556845b2c16222d4b3ba1bbff35b3ed77b48d10981afea914","transaction_count":0,"txlist_hash":"6d7b69dafc9e895a4a4b75c2e7ee2dcda352e21b82249074bfd0865e04dfe6f6"}',0,'BLOCK_PARSED',NULL,'fee967c8e9cab75a5de51b4753d3a7807effd6227bb45ac11b7884446cbe05aa'); -INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e11b72c8e28b4dc72e1f2790ddedd4c115f4a272e88c98c258f42451f4885725'); -INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"dac63e0e407785c7a461d839ddd749f020f8a33026cd6ea2acd659567a36c40c","messages_hash":"d1248587b14af743f1d77729b791b2349f2765838aa37d21ba7b654d82f54397","transaction_count":0,"txlist_hash":"fb8e2f9f37cc8ceb72b92925cdb86f62af821bbae196e5de5083d784436e26ef"}',0,'BLOCK_PARSED',NULL,'1b0db446892010dfb206cefd12f302ec6269369375504421a291834adc62455f'); -INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57db7449bf0d8f38f27a95861ee56f942b0aadb95bbccae888b6891c5139c2da'); -INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"0397b7da62fb672aadb96fbdfc37f3265ea04c4d401632d5d9018b9b0ad7cd45","messages_hash":"a9becd46fc3d51a70f96d07323a5767c23da421ba7abb0d27697da19619b5585","transaction_count":0,"txlist_hash":"35f40cec8ce2dab43b642668fb3baed3654b63a328ef005e41c8772cbf02029a"}',0,'BLOCK_PARSED',NULL,'00c3bff4a6fe6e5e0877285ceb9d8ad0e9e906ccce85727fdfc97a7b34d1941c'); -INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89a86beb05999b7812f8be1fbcff85b1c5a02de4ba7cb4b64f8e14410b586f44'); -INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"dbe43e77c383acc66cb46105991ed066ed5309434016081c26ca1a7dd948b6ce","messages_hash":"75c7e51b159ba4fe32829b56a4394952baf61276163e6fea9478289f2fba39e2","transaction_count":0,"txlist_hash":"df94b526dfa87413c5d4c11024019c28dd94051780c00b433b28093788b15ce0"}',0,'BLOCK_PARSED',NULL,'9e8ce9276a2adf6cacf91605880e793a024f5449655157fc844a6690afa8315b'); -INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90124b31889d72e2a560b97a4bd3b086a84c9786e7adbf714c0ec8980bfb6769'); -INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"ce1021a584895988014f16dd9f7b7b29bbe59ca8a761914f60c9290b5ec6a16f","messages_hash":"be170f0adccfcb6c8ab4790ea15cf54bed3b05fc293b7eac889958ee71b0ddaa","transaction_count":0,"txlist_hash":"7d8c18a5d7ec2d6d87ef468e4ed6784e9d41b248bd3d6754bef8f6bd1df9b9f2"}',0,'BLOCK_PARSED',NULL,'6a897154ca05ed79e7d88a32e66c91d5604b5115a87f68fe1cfc238dcc294196'); -INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7340272cfa419897e134cefe890c741202d2d13f6f66310a4a643795233fb4ea'); -INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"4a066ff12cf6f8dad894e23cfbb4fe6a087893b717b3f0c1ec53764b1e922bf4","messages_hash":"6c9c189470ec33433d6c5791eebdca6cb4703ddb73b2f4fae7899a88a1be07e5","transaction_count":0,"txlist_hash":"0dab776748029f3a094e8c2ad8871c1771263f81cfc6de79ded15ff475239371"}',0,'BLOCK_PARSED',NULL,'e652e88a709d42a2d736bee0553d7b294ceb8f8f048f6dcc2be8879e4691c05a'); -INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6048c52f8b7ee348ba134e5c465627577c689c738af4ee47efb5cfa6e9082e3'); -INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"be1cc89117e7cb3fc18eb610103d72f144c31848da4d8001c334aac577f19427","messages_hash":"73cec7370d89b28ca75d7158c8a0b06eae98c3a5fa31f9e1b57f8504949a38ca","transaction_count":0,"txlist_hash":"934400af42a6099d1279e8fc2700bfc118bc313da8383d06892521a17663ef73"}',0,'BLOCK_PARSED',NULL,'a0050646096b88e455417fb2436d7127b322a0a27aa740b2d429872271dc6b6d'); -INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76b7bd95e3bd9177995d5e2b388a15700ed841f40c159fedda976b5fca61a8fc'); -INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"a616b3d81a1ad1db1a9b1491b06ff6bcead9037f75552d14a4c7234b6ff56670","messages_hash":"401372b7a326740d2cc70981c72f81c163ba337296d45cee689937b615add2db","transaction_count":0,"txlist_hash":"b45534f04aeeee6c2ed877085eac7ebea9f7eacceb2026e5ab8a34ff715bc3be"}',0,'BLOCK_PARSED',NULL,'62ffe964515d7159f7ff0ea8f22867d623fb4984e482e75d88784dc5cf40c0f2'); -INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b738f9ac7d838a08a9d47aa4fd127618206abd77a090b7812a9998665569776b'); -INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee"}',0,'ORDER_UPDATE',NULL,'3a15e1f7c7a490251d45c9372ce7da15f35aab5b5024c6fac0faa7c6baaa2562'); -INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a65490c71d126fc57e0e243856988bff07e9040cfd57a993507f300a1bba2e2b'); -INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'01d9818b56dd8b00d0fb1e6fe28f2f1b9f52a2da4f730e9af572f93baa64d1e6'); -INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"e7e76fe32ac5c06696c0bda815f29f1e0785a9d48641615f2ef78fa9982d258f","messages_hash":"3ffdbf7b756e126259a5a2a189e1718a1488e7f4df769568e0869dad0a015262","transaction_count":0,"txlist_hash":"b8261f9bd73b90fef96702a2e83111c3b9305e55efefae86a4078d99ce8c3d0d"}',0,'BLOCK_PARSED',NULL,'e317cea1fdf0b1c366476066c3b1a14a169a4bd5db258a0d62adbb74bb58528a'); -INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba34e72a7ec386e87861316171b79190250f81e9ddf2b2f0d8eefd8cc10c45f8'); -INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"f0d33d2f73f83449c18b9a7bea43857b36effa24eb248283d9356c5280e4992f","messages_hash":"67263d625b0b74ae67bb045b400c9ca95ae58b0e6e0b2df2225dd1f86e34429f","transaction_count":0,"txlist_hash":"bd3133719a6698bda726f9304fa48db5847cc475db79b879d2566da3cc7299d0"}',0,'BLOCK_PARSED',NULL,'7b3d5e9e144c18038a4e5d552ef73badcef5024ef5f22ae48c456a4ebca3aa01'); -INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d7a77873b50a0729aed3ea10ffcaf5ae37849b93140d93a2c8495a77d0ded7a'); -INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"434d631a1c3ef7d31d136b4eab8b3044dc2b65886bf43642537cc592db0415a3","messages_hash":"d64ef53c4c580f5485e1434101824d01cf54c6e89f9949b1b9eafcedcf1437ea","transaction_count":0,"txlist_hash":"eea570d87d2e343bcb9b93764aa9bed952588f4b053d13e87da410b8dee27d7c"}',0,'BLOCK_PARSED',NULL,'c6a616a6c2b6cdb06d4359a5c2658f45533185f7182c84804c4302b6d7f32c81'); -INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'603abe222ebb5c5f35e17392ab804e46e61ea520e964f5f11403747246555adc'); -INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5ca42816d9c6aaed19f6d25cd02e842b5d834254f90a169630544c83a129c7e5","messages_hash":"21564219dc16025f549b73ae0d077e48b341e8a37771558145c731f348f8ca4c","transaction_count":0,"txlist_hash":"c827847c2f94718cd8c3efdf2b30cf9c8753893a76590efae0e30c61ef9a2d4a"}',0,'BLOCK_PARSED',NULL,'45ee992632e71b9ce04dcbb6f906ba725cebdc38e3ad66feaf8a63ba8cae9355'); -INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10c5f98f5af0f8515fde61b302eeedd9f4f732ab63a099870fe237426bff18b6'); -INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"31aecb842ea816f98aead90fed7ad005c010919a2ef2c5d7a8965b71832d3201","messages_hash":"081773496182dea9591ae087ce76d4597265cc6ea4d8110884c8daa94158181c","transaction_count":0,"txlist_hash":"5a69c5cc5e4aa7e7d071da7ecf8cff88740a707f70ddec29c57ee52b3da09127"}',0,'BLOCK_PARSED',NULL,'07afeaa71f1d32a2956b3c281b732a8c282a7257f8eec4a8106959181c67a1bc'); -INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7304cd52f166d9544a18d6f49821d14e7751f535f771292d4d65afd25f6f7149'); -INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"7a3167eb2c8a80c7c363ac47200ebc8cb6bd53f57da64465bec14bd86cf2c6c7","messages_hash":"4617a2e4e119e6dfb945a94c1dfedfde0242cc01ae918b7e371be250307b20da","transaction_count":0,"txlist_hash":"8bc588a7a9286c3f5c13bc31c0faf29f155391f14ad89defebe3d0a0b21d049e"}',0,'BLOCK_PARSED',NULL,'ac485eaae230ccd0149a611756dccd2c42f53ec6656896504bf803f47e04db61'); -INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77395088a546d216b36cddb4c143a4aeb16d6a31ce525e706c031600d575abfd'); -INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"212bc51956081e57aa618360926e186824dce8987948ee7706403451ab417a0a","messages_hash":"48bd217a7207d35c57da214a35f2666509a6bcc492e3c7c77b4ab60bc19bc0a5","transaction_count":0,"txlist_hash":"77861a778f50d5f8314cf4caeb6a78539702ee5b36b882713079b88143d4c6ca"}',0,'BLOCK_PARSED',NULL,'7d4deeea77b58f8c17daa0bb2d7916163145e03c027c98be39bafc31ccebf8d1'); -INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cde2d9188234aaa6938536ca4bf9773269d1abdd02da0b01132ce9ab92b5a52'); -INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"03e72d7551164403b41956638a0fdec8703c29373ea2b15c770717b0ec39fa95","messages_hash":"a791233ec9114fe7c51326f039cec0fff3ed94853ee9a1273a917252be74c617","transaction_count":0,"txlist_hash":"b445575b555d0621a37fc3f9f22c113126ea35507703f8885294cb2a4613a6c7"}',0,'BLOCK_PARSED',NULL,'93b47b29f548cb2ca12c571afbd3db5b63f17ec68f5fca4868a9905709244e74'); -INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'deb365a03004a9a8b3c863f721b4097989b9079f57cbc326cff8eba3cee36a34'); -INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"922aa744aa0c08274d1f47a0f80638c7937ecaaf95555e68ceec09449e60d080","messages_hash":"3d455ae7d4a5bdca02d48834b93167dae8138051a41d42bfc97faccab6754a86","transaction_count":0,"txlist_hash":"d46179d869f330c786bb81e0c122952d33b264f3af2b4a70627764332cce3fb7"}',0,'BLOCK_PARSED',NULL,'00eba548aa0d0aae55fca421b5c4ccdab156a7ec98e39888d7c497caf235288b'); -INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'926c93e97de9d471529558e92d9cb358f888956a25c7ccce693c07406339d9ef'); -INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"de422fc7f3f11d20b697e0ee57afe101ddeb5e84105153a3bb10f97f9c3f1783","messages_hash":"0f5ddbd4a96f2897519bfbe26c493bb8a36e00b61546ffcf7ebb030a14110285","transaction_count":0,"txlist_hash":"d0cef146e488d50917e659d8c039e7304a41d239d2330947d81e49d3bc7aa723"}',0,'BLOCK_PARSED',NULL,'a64a987461073ef79bc97cae019dee6841bdd5bf08032f0c21bc00278db13e73'); -INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e98e6b80ed1e5ec5ddefcbbce2fb3c1401fc3664cfaba1af57160cb972c840cd'); -INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"82d7c9a0c9d63c3f93b125a9eabc2a7b5f560eccc5fb578d71ec071f150c8fac","messages_hash":"dc17ffc07165ea0d0e8094184ad60245bd6c1026c3920bf82273813413804f14","transaction_count":0,"txlist_hash":"68777d56b0179c05517b00df97200e16079b34c54a270d598c28caa4f39ea43b"}',0,'BLOCK_PARSED',NULL,'c5d82f4bf69170cae3437595b7c6dea368cf4ef58502b998af2ea4a66ffd264b'); -INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'899c6f1719c2e3fc6ac03c4d3e824038ad5a569df4f83f640f0dff19705c9b7b'); -INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"c9232d9cfb183cc9bc09bef78f7c83bac3d9af803e6916c9b14063c4f619d9e6","messages_hash":"3b90dbb12b4a05b7aefecc2ba66a520e19a2172b4b684ecbcecff68c6694c314","transaction_count":0,"txlist_hash":"728975e1d9ed1caeeef47b1b8f1040c3d1ede182cc47282f32f2f464071057b2"}',0,'BLOCK_PARSED',NULL,'afdb8641951e8139ef45fb0e5a8d72ed2d74b8f67c69bec72379b29c699a41ec'); -INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec9d12c72e22bb6409dbc24ea89473ffa78e88f608cd16012e624ac279d68c5f'); -INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"71c3e7aa2ad71e35b752dd4e48381b4ca845c370e5c340f2a221dde808966a45","messages_hash":"8b7febbfb0f18becaf8ee766706aa0a5017d59476c1dc9f14733ba1bc4abe948","transaction_count":0,"txlist_hash":"56e52a1e4cd4954442f83c421e7b8c653e38cd7725d6b140a47e74f57df2c169"}',0,'BLOCK_PARSED',NULL,'bbe3c6a3720552a17dc30c7d9724828d345663be7588716677085bad18a908dc'); -INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47b1cf00c9b14ad44d0289ca26225f413218c25b45813c692e59c1b7259e806c'); -INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"47230be2ba96e7adb6088b18788b52a65aa48183c2c00095b79999f5ea1af514","messages_hash":"49d8af6df66144910832f67fce9b703445a520c1ad7de27ab26b3b32e78b4c98","transaction_count":0,"txlist_hash":"e8b8a81eeb5c9a9fa6f19f6d9617c7c8e1d19368725d223ef270b74b09b1a541"}',0,'BLOCK_PARSED',NULL,'714b342147d116244350372cf2caa7da56460d4f643314e8d3f6fec2207dd22f'); -INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f763d581745934b2bc2c7bb2929edc538ef9cb31e7035eb1724610246735c04c'); -INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"2c306c41049fba2e58a07b5d14f930bcaa465b2afa4df24d8a887958555f0c57","messages_hash":"d5b4db40f8afea6020f21bccadaa9c5eccc364bdc70fe21016dc67cab3eca30b","transaction_count":0,"txlist_hash":"3ed01193d67e5b016184cd322ca01829a616ad7f7c98bdc034c642ab5c37938d"}',0,'BLOCK_PARSED',NULL,'85f2d48e06d22531411bab91f37f7cad245ae996b7a9afdfdcd5694c4b67b96a'); -INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c783c65dd773ac72bee2309e4eaf4cd8cbb2efb471807b473851332fd95500d1'); -INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"95a6325dcb8b9f7aef9da35bd20a46addef23aa5c36795beccacf992bee88d28","messages_hash":"3105eaa549b93d754bb978078aeaf1865301aee814095b5cde4a1875558483ad","transaction_count":0,"txlist_hash":"730fe6316784de4a36e2530b3935fbbd2e1bb9c876c61d0cc436f86a103d6655"}',0,'BLOCK_PARSED',NULL,'ebcf757d156312b572c3927686956507c590559944830a59e4ebbbf36dc33666'); -INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39c183ea653875bfd4fa1062e396924157c3f81ae779f1ca8b39b8afaec229cb'); -INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"8811d6a6b22ff3e0ecf399dd20a28a17ad000e99b17f90e63e02230ed42cf260","messages_hash":"adddcf11a97e071694c4494e4c91034bce6cc8a51842eb7ea88f1ae741925bec","transaction_count":0,"txlist_hash":"a1772d6d909c4fd092a9e511c2f0425480f61c1f2a3d513d973a15e587c47a51"}',0,'BLOCK_PARSED',NULL,'a11b826565b06fc0de1dc2abd40162e2acbeb97cb32311e80cce8619b696be36'); -INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bdb9b47191ddcba8f5bf9df22b1b8766a0c6f0640f5bd9ce83aa029ff165205'); -INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"4bffe3d3071cee255f64108bd8b97652f06190cb73caac5bdc4ef61d3ff9ecd6","messages_hash":"7ebc90dc37959a4cd4fc4fec9486ac5889338b05e6726beff8895ced7ba47480","transaction_count":0,"txlist_hash":"af66fd2b113c2349077f00be46a1cd5629b2ec39576ae16ec004249438781905"}',0,'BLOCK_PARSED',NULL,'f66e1003a50ee9b83d955af8ed798c090332cea8d0fd1e7f07a683981e75f173'); -INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'333e5e47a855b5d57d5ca6f67d648ce56f2b90abeef86bbc399a737586b9ce6b'); -INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"b00d5001e914fde448457f3b373637385114eeb07d79751241f4c1f50cadc050","messages_hash":"9188f5b574d26f34e57ee0929371a1c7379e5b7a82ec522742b559b1eb17834a","transaction_count":0,"txlist_hash":"64149e5936bce967da53b587f07492b64472145ac66f58c1773a4df324ced96d"}',0,'BLOCK_PARSED',NULL,'c9295d6a80293c0efa4b2696651cdfd42fc6f175cd89810335ac93a945ec3ff2'); -INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cfc5a770a5c98be86c0524ba7b2b943d08a5ec4c7078bcc31f7d1f726b2291a'); -INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"90dd8fabe43314ac6ab6f5485275a4b1131c232a1e9d92395fc030659873edb8","messages_hash":"8aec4a1e3193643635db369dcdab91b33b72345292833f8dd5f1557381a120c1","transaction_count":0,"txlist_hash":"71f3161707a90feeb8b8e3340f47a9102c344b652ff70760aaa1f7b3bb30a14f"}',0,'BLOCK_PARSED',NULL,'c16b58b4259bfa4301125107d1f9542e30c994bf94191a64bd1834e5de2b0f2b'); -INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'585e64e43856c1edf677240b147055bc160d395a0cb94e41b2d1a7e71e86bc1a'); -INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"923848bdc7906ab89898021e05e201f69305087b12803c459f066f2d681fe9b5","messages_hash":"25c51426707a0bf04e70dfbfe94bcc1b0c963400d2466ee85f764e88b40c19ad","transaction_count":0,"txlist_hash":"de443d5cc1b054f4cff96f616b234d91b0b5e3712e6d72e64d564c201b7cd757"}',0,'BLOCK_PARSED',NULL,'b584d417a3e7fb1baa2f9be3943e72c4f4b0343f04b9275cef50ee0c3b4a3e83'); -INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e2a6f8fe0c8e6102c407dfdc78fe7272be00adc43b0a2cdfac35f12944b7633'); -INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"e5ecdf8c0a2166fa8fe25adea0d374d34131d29a3c901868fec579eb20a5a930","messages_hash":"475175769e725711441f8a3646330382689cb2eb827383fe08c8002d98532451","transaction_count":0,"txlist_hash":"05b8fe3b76416a506aed1b000e3649af38e59adf26cf0d168c5e84112641ea6c"}',0,'BLOCK_PARSED',NULL,'f58e68c895dea890423ad1a011e53f826f1b91775fe90c2517b1ffaab59264bd'); -INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c0418d08ca1e9651753078aa9314af6016d5414c1bf9ad8e7b9cd4f66baf551'); -INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"03cd75c14bbe11800f4d436dce93235787e2521a19b1d5a90796a5de369680d1","messages_hash":"9327fea38511453a28aef4aa71228afabc9277bf0eaf02cdf5df4ce11a8fc3a6","transaction_count":0,"txlist_hash":"d8edec966eae31778588f68b7343dbdb4bf878b30cb430246b04ebebdd9e43b9"}',0,'BLOCK_PARSED',NULL,'54da397d6f8eb6fdd333c8d52a207cbd5c53796bc9649a94cd4ef28a0932c473'); -INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3b6b4b55d9da86a3fa267fa15e33a6b7042365b0f61bb6e69b3ffceb005c7b1'); -INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"7239560704ca831dfe90791f1cd21ae1f1506275cf6b45933676be9b096d340b","messages_hash":"2ea5884e4241457abfc076bd3c0ceb4ec721c0521820c7138ffde796061d0d22","transaction_count":0,"txlist_hash":"1294057c4f21c98f97d10d96510ce83d0e8d348d138b3caa2c76ef1be47a3c2a"}',0,'BLOCK_PARSED',NULL,'6fa356aa7eafde391eb3295a6393eb66231ab681e9d490b545326d54ebd2e7c6'); -INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5578425fb74613fe09eed2a12af9ee48fdbcc597addb05995283ba1b79acde8'); -INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"3aa4ef8714cbb71c4f0b052dc7ec7795322103ba7b8361db3f33303f564f3815","messages_hash":"35416149d3d326643ca16a87efcad4b38695db8fa6695c6ea23c6d3ad4947866","transaction_count":0,"txlist_hash":"211d0e47a87100167138974db02ac1299bf1b2a1d7b60606b19cecf2f06df0fd"}',0,'BLOCK_PARSED',NULL,'59d6ddee307ffa5874864098045885f396a82ef992d76c29db2cb0850563e5c4'); -INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34421beb7e3458761f22f47cb90ed90377c77abcce4348d456d6629485d298f7'); -INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"fee33c0a466c580887106b4bb7a8c6aeb7a049c94987bae64f695ae400c4a4a1","messages_hash":"81f7bbf8c604ed9441531c78867e0fe3b4198283b5e493ae0d20e8cbc5425903","transaction_count":0,"txlist_hash":"f851a0d0a25322d5939a5cd2cafc831b6282af5ab81932553cb80ff3825b4a2d"}',0,'BLOCK_PARSED',NULL,'2f6bf0cf9a2aa06055dadcdbb6363d13066f20eefb7e26b2080f48a8032a889d'); -INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ca80bdf9285b6ef399d8f0ab5c8dc6bc115e2f27f17b993e426c1622716863'); -INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"94d58bd9a65a2e13c7ea2373e521952e916b0e1d31d803eced96e5c8903aa625","messages_hash":"f48d3c887503182ca1e6a90beec0d252c9ab19691705d61c97e8b17ac7d11745","transaction_count":0,"txlist_hash":"e959bddf887904cd324ff7bf5fb60380f2c4a7c2b1b4215c63715a59ad297200"}',0,'BLOCK_PARSED',NULL,'d3724dbaab552f8a1c7875ad22483ff77a3875ac1e9850a99a8015fbbbe0b33a'); -INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cd17a98af5f0b0db8f449a3de6e9b646c5584147f46616dec7c79e829c41026'); -INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"e9c87b2a652d4ef3d48ac74424f57d06dd85893fd542e0784df067c37396b0df","messages_hash":"eebcc49eda3f3aaa2fbd2e50e6533a76536e6ae7bb4d5f483143f1be6fa7bdc9","transaction_count":0,"txlist_hash":"ec205004b519cbbc750bcae821effee41789b3f643f90148e8db2d9d9f83ed49"}',0,'BLOCK_PARSED',NULL,'d8ad10aff3a3295355f379292945fc9d3687f6c24aebdfe22763673ff454a7e1'); -INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b723742f1baacc96abad375cca553d657364009c0cb753c27699334cbf4d0abd'); -INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b664a0985edab20768aec36096a7b2faa159cef4af7e779ad421942137ee317a","messages_hash":"d3d1e2aca506a79b3013c73e4f9558c2fb2b30137e353695d0ab7abbeb704a0c","transaction_count":0,"txlist_hash":"dec86d178abd72944cda84a3154303e16eaf39e5bd5bd59a80cca27a5ed5887e"}',0,'BLOCK_PARSED',NULL,'a060f10fe826d469ca2f66301f702b28483b74091bca6d9f3aadf66a4b22ed18'); -INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c310c366e8e0ace9c61c03eb7522eef7869062f364a5c613c032ba18319ef23'); -INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"5ffa5e1f36c5539b2f5a89a6a60d45ec6372ced770d9b0e0e8dfd61edad84c22","messages_hash":"0b75b269953266c7e9c604108ff699a45385b5a0099967aefcbc7b3c8c1f05a8","transaction_count":0,"txlist_hash":"be052ccd372d556b9b28d0d2b6f9dbfc9b32ff173b71d7842fb6008047a67384"}',0,'BLOCK_PARSED',NULL,'ceb75de629c9af2ae1a21b75a9d2a3901e53085c9317ab26b3f7ec237bbdaa34'); -INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee4647c2b6d4d41a312345859f0b7d54ce4dbb081a90b813544921ce8347f233'); -INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"fc6f9f23c3b8954c7989b0e4ce40087b66dceabc7c0e407ac7f4b397fe2a1281","messages_hash":"4a0c441e144603acead6249c3f1152ca2e6d5c45f23505a3a0deceba0d55f15c","transaction_count":0,"txlist_hash":"1495ca8eeb434877ce36335268a349709e99811e93f416ccf1f0c98114731824"}',0,'BLOCK_PARSED',NULL,'91e4594da5b35d60db844a3230233404f2c12da1a611344225541c39a8bdbd61'); -INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82ca43fbbb0495cf4dd5ba9933240cc03f4fb9f65a88acaf759e53bcef41e304'); -INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"cc6c3b8cf2c457b2f6afb5b208f968544767be8b86ca53bdab4224619a03121d","messages_hash":"c675a64144e460a13c9ad0191178f53c4723c4f5095d6411c893f0e8fa73e95f","transaction_count":0,"txlist_hash":"93d193df39b7340b932b5abd85a027df086e033ff2b18fd8c9d0d03cd6db392f"}',0,'BLOCK_PARSED',NULL,'c3ec7f2630b3dd2d2991d086ea250bc3eba9a8f90b27525a73d2b5b0b84fb9b5'); -INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d32abec583cf8ce4159e30963e4db200a629d2d4b9c658309145246b0426c709'); -INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"cc57ac6aec118ebfb03f5113ad1af749522e60ef4ca201d48bd43478cc0a29e4","messages_hash":"8e65ba6f2cf7d44e6e2f285a16d1e8b81f7e493530f91ec79586dc65d6c050b8","transaction_count":0,"txlist_hash":"064c03f24da9de841de9f492487de4077b842d6de92366d3fe7ff37d558998c1"}',0,'BLOCK_PARSED',NULL,'83f8afe0000305e5dd9bcca367cfc06ff5e7536a86cf6c17f7a89b3e0a6f4655'); -INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15b082cbf7f2e82c8cbc579fde7db44a85967325b33fff1eeac879eab2da3991'); -INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9999be70079c0943f0a00c54236680bafe0c87dd3bb75c982211f751e7ecdcae","messages_hash":"0a6c3691e3b8a2b57e2f181238bcf9935dde9f5c245b7820f0b5f433c796ba86","transaction_count":0,"txlist_hash":"f1196c84f3767cea82b4dfb6a5e4be30f3ed3f53e9b9cefdadf81af9f2b2bd49"}',0,'BLOCK_PARSED',NULL,'4b2c6ef4e0a357137e1f72942fe20382edf9b04cf68f2c38da59ea58c9823b24'); -INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b4af65981181ff424fb5456933b34689e5fcabda855e269fbfc4b3f3ad6e646'); -INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"efb2fcb7b5628bb99994bc1ada157bf80b4516d961497aa011c06da1523801d7","messages_hash":"59b0e5946549cce1cf27bbae93e29e8204a5dc29b4100e9decba75f6ae4fc5a8","transaction_count":0,"txlist_hash":"ba6d273c442538389e43b3ad47795d7e61d9b17427d1a1044333f96cafe575c4"}',0,'BLOCK_PARSED',NULL,'ef005de305cab1fcd4b15209ae417c8f383d7370646d51ad3d595b840eaaf937'); -INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08abfa40a429c9ada9c0c23c9aa8df901da4a8fd45d193a4cbc44cdac2cc70b5'); -INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"fb396fca9af7816f97b22b8bf1b01951e271a75f1a640dfc64955696dc1c0b7d","messages_hash":"b323893b6081dbad6766eec90402ee9450feaa111c83af4d20b162368be1afda","transaction_count":0,"txlist_hash":"20ebf686e5c5a50c0df23ee15488559024622039aa4fa47f1b07dc3967bbc760"}',0,'BLOCK_PARSED',NULL,'a2cf18c3fc09308dbbd4c41c755c8b134c2c6a2deb10635e66589a217190b197'); -INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88702598c561c54d9e6e5ba660b4d9c4e51a69c5c81c61cc8d1ed81449cacd79'); -INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"6cbc681ed90e676cc507d07120888bd4c8759873a0b9215f721a0ce707070086","messages_hash":"184d92a010711b1e64bfea7bfab82dfafefecdccd2159bcd83f1456fa169488f","transaction_count":0,"txlist_hash":"d8c09411f0c7fd43774558fd6cc9884b032cfdcca63a08845b61293ff52ef380"}',0,'BLOCK_PARSED',NULL,'015a4d00d2485203471d82031d8a4b2869fbd424b9666df15b1310b3ce114933'); -INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0b265812831e5bad4725594764c817a1952383370dcab1b5617f10eb681b53a'); -INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"7cb734eb3e24e92de8915a6bea42b6ef721251c481ac9ec751cdbdc08e110011","messages_hash":"08385957f620d0a52d90b02fd33126cef4bc28ff5f86837fb6d3be7d373888fa","transaction_count":0,"txlist_hash":"4f02ef18a644ac564db930818e845496ab0ea3caa34ff70878f0f9f0ef6641e9"}',0,'BLOCK_PARSED',NULL,'ca90dc6c10f0a4ebede49352ef7662e514126ddd711a99fd1ec98f35f5e7c73b'); -INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2b416ade4ff10e4e4df21837c29625854f162a5a00c9591e501ffb311c2c39'); -INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"7b57a4d1ce0995a938e174e52a096cc9829a0ddd59f698ed04d8b43371a78126","messages_hash":"bb08ea081f9f395784ff3a7cd7825416edfb81864cec59018260adc70f37097e","transaction_count":0,"txlist_hash":"7716368643d8c6d26932d9efabb6fd6e574c1b13b8f149363ec4b99d9f405435"}',0,'BLOCK_PARSED',NULL,'da0d0367b44b3a44718746d43c6bfab203a9514f098ff2778144df9252005161'); -INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95de8c9cc2b5b23990669e1f00121ed68242f2bdf0f8e52248723241330499e7'); -INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"f46f820a64ced97ccf68a56c048459de0b2855ecd4299e447c4b630913ce1749","messages_hash":"f7a91cceefe49d8855f2df2c50939c1c8fcee740a8a4d5ff418ce7ce6b76e270","transaction_count":0,"txlist_hash":"71375966f9a524c1df04c5033ebb17e4293053f3ecb8e724a2f093b3373641b6"}',0,'BLOCK_PARSED',NULL,'9ad5a49abac06eacbdfbf37137eed10171b5ef700ed1c64808cf7af39c622ee7'); -INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1405c66f208c036768bfd9ad2e0d3baa196d52793353a3776f91fdeb3e0d217f'); -INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"878239189ae0afa759af5e59db8a17fd17c0c9a2c017384fd2d0ca789e738050","messages_hash":"b730c18506b801abdae97a502b3b5e5dc8f95c35823a0144ccaa290a9ceb9448","transaction_count":0,"txlist_hash":"4ead629f99d32f3d0ef6c5f7ad1bbffa91608d71b815293128461a9b5850ad15"}',0,'BLOCK_PARSED',NULL,'9d0998ca65b670bf71d77a7357f63bac88586a7372589b78f0cc3eb02bda2717'); -INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01df1ff628fc77cd27d1e77b7b1fa777e86f9a4e5cf33e2e8c3771c502efa421'); -INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d2d86823f727bc075138653a682373a9c76d21d48b5881968adb66042b501e53","messages_hash":"3096cc3bab8d42731e982f34668a9275eeeae9c9a83b9fe0456561ebd93822cc","transaction_count":0,"txlist_hash":"3958da4cebd7670ab3e197b6ff8b5a770dc756dccc1806bdd050513e75e9e33c"}',0,'BLOCK_PARSED',NULL,'7470622a2c71d7129eef885119fd8301982c7aa0daa09f163417ade9fb37d772'); -INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ae2ac8c65c8b9741f532e04575c92d2a76062ab65b0e0fdbeb7708b72a4f5e4'); -INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"9fd098fcc7d71c0c46fc741ea278de92589c44a6efc4980ced53843193553ea8","messages_hash":"3c4a51b4fc3a9c9ef2f01e18d2a12b365ac4d2f0fefae6960d221107c8340f2a","transaction_count":0,"txlist_hash":"f5b2e274c8dda92ac634490b28d13b18d7aeb22fd1a5101c805d3f4265422a7c"}',0,'BLOCK_PARSED',NULL,'caf429b45e7378bb07d47be1c707fe357f5127b28cfda5390ea1d583fc491755'); -INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d938fdbcde4a41ee7e2397237062ec2867e42360d7356af6b039a78d8eb48a'); -INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f1ad21f9b4134bc0225c26fb8969af3565c07997197a7ed9636c01f187f07042","messages_hash":"aa3399ef7fe13c37b8a318f94962d0b1444013d4199c9b7ffc85b2432808d5c4","transaction_count":0,"txlist_hash":"3711ef31e2cc58fe1a9cbcf0a5bfdac9a805f346137b923fd86c65f850b35eae"}',0,'BLOCK_PARSED',NULL,'bebe887fca640063da06b4d648ea33f15683120f93c07c1e9ac13c1b37cd50f4'); -INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a79216eda758e3be02758cae648160152918558deb58b2ee3abd39bcf0bcfa8'); -INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"9a1f3de6b5a255720973fb0c93ae2bc8fe8936565140b8ae991b9d83f86a0002","messages_hash":"be6116864cd2323c91dd504e0c5ba6643a9841aef76d3ae6ac7d415ef3598cdd","transaction_count":0,"txlist_hash":"8e73f7f52266820ca7f25665628e31afc6a5e3dcbbf51bc1bc8635440ecdf669"}',0,'BLOCK_PARSED',NULL,'ebd01e5bc6b314b7c11ff79602454b9290570d6d39ac48ef581a55d9e6d552a3'); -INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'365ad20c53677b4cabb1cf0e31450f18f265d9f157acbfde2988634a1ab3a3ef'); -INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"ab56d9f59575b2d8ecc4933bbfa1fb0cb81c7a6fe84c1ba81bdee40c3da13164","messages_hash":"49b0ba1f0d345b6e60e4e793b6c9e73e0fdf0bf209c9a3c24b0c24d7769f0a02","transaction_count":0,"txlist_hash":"2720a0a338a84ae1b56086f0d4f1b341eb5e3b46e9290887d7675800c6872081"}',0,'BLOCK_PARSED',NULL,'984d37161addf19738b596812a4b19d386ddf93fd86cf7ea59e077e25e982572'); -INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eb29f4382463d89ec484e49be97fd4b0ad57f58211265a7d0778149b971a6b'); -INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"8399d461b5079a145c716f8f6004d2f7870fe93786bd944fa36ef27134c9517c","messages_hash":"d184a05b0691956c7975c2357fa70ef28764e489afea6e0fb9b9ee30ea223149","transaction_count":0,"txlist_hash":"18ee24262532a6a1e49086f1a8ea0161a5c1ae80ce2230f1b76ce782f6aff39a"}',0,'BLOCK_PARSED',NULL,'d1953bb5b8a6e0f8212d37f86c97dc5d2fb710e85318625c762ccb7e06a46fc6'); -INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b95fee803a67bf76cf5a346e3ff86b6910d436d9ca7d4e7e675f117f119c917f'); -INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"b6696a1511704128bbd5ec2c80a1d7d8d3bda6b959f1a674537ace152cb7f8bc","messages_hash":"71a164247eff544bb5d76c3fdc206aed6f8b32f4b7824b05924347d24f24003d","transaction_count":0,"txlist_hash":"e839a4222aad212860b0698214f3d426d065226d1e7983e6620325a583b28abb"}',0,'BLOCK_PARSED',NULL,'dc7f191a576aa3e65b1598be525d9094725e51551a2803b88bbc5d379a7f8354'); -INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'562f5c76516c89879f8c001ebd73fa0f4c0388824930813f7af6459acade6915'); -INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"9aea0f996c36a815e4103b86ee7fc9be784d7c72549e54d04d84cf7fb8adfb78","messages_hash":"3931d114fcb35c51b231f2802a92e41f14c36352664c528cce401ae99b71b99c","transaction_count":0,"txlist_hash":"fca6c96a2d6bbe118c5418a3e2b85dced8cfc0da2a8b46fef65f49e81a459efc"}',0,'BLOCK_PARSED',NULL,'a1dd27e2213815d25e922ebe9c28a8bf9c00ba138fffc2f00d939d3c42d18fa2'); -INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6ad8c576061032c24085447e1231c62cba3299f02b1a948e755d8f34af70740'); -INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"7571b554c5600796b60982bb6df3517eed517a2a3627f8383b92a073cc4a5872","messages_hash":"5284736a51bb78845b202630a9b0b8683844d818e96e75d2b5b3a5ddfaa1bba2","transaction_count":0,"txlist_hash":"a168e4a6c3de65e68532d534107bc3033588b2b0d67ae2f5d23b1ffac1a21ca8"}',0,'BLOCK_PARSED',NULL,'7121875f821383051d946764e12e05fcfe3a92cacf67b61a0a5d40f20dd61a1c'); -INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'730bb85ddebbab91df23d7092cac6c3a3f2ffe478ce005391ab461546d6c8e34'); -INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"b2507a73ff4f6998582daac667c457308ba78744e3d1d7533c0232092e3eab1f","messages_hash":"0b7333f33db9510d98e2ca8def735467ab64140060a516e2df91c367d715cba4","transaction_count":0,"txlist_hash":"379aebcf4d32a0480f5d334f5c04629b6ace33bdc5f138907c338eab7b1d9093"}',0,'BLOCK_PARSED',NULL,'b8dacb1662fcf7bdabda61287adfc0dfa798e0f09baa3456fdf7ca2c12cfb398'); -INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a743f5e51ca4dd9128853a4945df448cbaed86952042d0b259ee33fecf14e66'); -INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"18566f22ffb9bc5f98712ef3234f8da84f8f3e382007b23c3bb8e6c910043746","messages_hash":"f8deddc029ee14e7198cbc0e1640b9249fc407b9daa38cd8007d226abd118a18","transaction_count":0,"txlist_hash":"b238ccb2ac0b6329a0fc30267fd29e4813bfc786ad871de90c1797c6c72e65bb"}',0,'BLOCK_PARSED',NULL,'31a03a17ceb8ecfbd1e0f54b65270f324d516f560b3cf8c144fb409ad3ae7709'); -INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93d70bb59753ae17c575ee2241e9c368640ed5b152bff4244fba646296291c80'); -INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"72c44bddd5b54657623692e444bf893ca7b6d8da992c274bcbaa37c6db903825","messages_hash":"68c33e1afdc6e1b1780bbf565e7921e894507a1f5bcfc617c0e20a50eb2b2848","transaction_count":0,"txlist_hash":"2736ff0669b8c3cfb5b4ad8f082e23d985cbf0c4ba9990175febf1c02882bdf9"}',0,'BLOCK_PARSED',NULL,'bbb8a22546640d21dab4e5bf57b3066df864804bdebc894bbb80e51e0853481d'); -INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad7e968a4e3961995cea7884a41f1d33a372ef1d8acd88462ed9ba8c66806860'); -INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"1ddc441adb4b262862caf5b811b2375bd376d9b5d7b8ee251c4337478833cde9","messages_hash":"ca1a7619ba2ae79805699121cc333fde414c57ec9a390e488e662a3189c3e3a7","transaction_count":0,"txlist_hash":"3407db619adaf80236c8319a7e9283c10a43a7b1717d4d89115ac90e8f52b706"}',0,'BLOCK_PARSED',NULL,'b5fb3fb352e7407daa0f9f7b9d9a81f072a4f9a4d1b1f92b91dd431288f4b5ea'); -INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c475458cf4aae7e3591bcfb1fcbf4d33dc3b4edd3a1f314fcaeb0aa9d3d1209'); -INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"b59447846d380cb8d32639ca13e6e396b68b18483f70b6380296bff65dced3d2","messages_hash":"2e0a475cffb88069a2cc4dbb4b12c74b6363d83f39bbb65d5abe1021a17f6ac3","transaction_count":0,"txlist_hash":"e02f456fb1e9b6de38bb9923f6f68973d592ffa04f65731c66dae734e4fd1d44"}',0,'BLOCK_PARSED',NULL,'73a539c8896732dd44ccc125a5d8637292872724bac028fcc2d0b28040049817'); -INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74c86a67d70ad826cb52bb24742f5afa18b291a3dbd314dce490704eb8f5bfa1'); -INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"54a1c32d20665e7ff92ea43451ff2e59a98136ad7da576fa6b2614dda700b707","messages_hash":"097c6f1f44bc67ebec7cbfdfd708b63baabd73a3146ba1edf6b54dc87f710786","transaction_count":0,"txlist_hash":"5177e82a6aa417664930ecdb0495e108b3fb660ff08a608fa540a29b0c4c2650"}',0,'BLOCK_PARSED',NULL,'bbb6ecc6139a5606e61ae97f2da86258ba7231792884eb7e1a74f725230e7263'); -INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6c86ba01b5590f26e5976df98d111f63392a26be31d3d120adc9cd672117ab0'); -INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"f0bef715c366843e002c75992b8d50d82a3ea54f144350f158e862eb03cb45dd","messages_hash":"b73f3c7b7b1e0f19a7d1ba2cc6866dd7ca76be770e208cc6ba7e0c603fd433cb","transaction_count":0,"txlist_hash":"84abe1e98b75d07291ef4b9847c336f787fdcc74f9a2570d23cb8ce396c9104a"}',0,'BLOCK_PARSED',NULL,'ef7e2dfe25a958de232757ec7dc3cc22c6c6d6f9909ac4788f3eeb27c299c54b'); -INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a33c671f631c868286d812bf54bc7e635b5bf48a747cc35f655dec38e76d43b'); -INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"0a4ce98b783b97f81fff9ab73d7a7091087e8511ebb425c81ccf60c3f9edbfd6","messages_hash":"86b7353dad0c3fffac641322a7bd882fc52f56199747926f4c328534f5f4c105","transaction_count":0,"txlist_hash":"ca0f3a6b9b2eafb864eb324359d4ad9dd85361a7c7d2833ba6bfd230d0e60773"}',0,'BLOCK_PARSED',NULL,'27cbf172f9d3c9375ec524d1adb86c72405a2e2c73d68e358bcb65d90b4439b2'); -INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c832350c2cace2aa9ef33b628cca27294ca134c0d1709a0479fd3984bf06a54'); -INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"f3b6781eebab3a6928791cf281d4ae7cb4f7fb59c6ae7575eba253e6ec6e447b","messages_hash":"dd3c289c76649de35984676df98ce7a261674944cf41c78e74af915a020af2eb","transaction_count":0,"txlist_hash":"283080af19ccbde44c6e268326ddde17fc850d7ca1add3698adb3e606cd984e4"}',0,'BLOCK_PARSED',NULL,'a59a0b7703d2e77c3e087d10021ff00313cd5280f870720ff41edec3da9d42fc'); -INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'754d6d017bed2acd7f4735f1bd1686511fd084a26c7928731d7a99a3317b43f5'); -INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"14261b6b340632c469847700cee16c0163a7f8cad4dac7ad4555efeb5f3235fb","messages_hash":"78fe875ac35c3758592ec74da5ebd82484347ae0e3c8ed4881e947805619d00a","transaction_count":0,"txlist_hash":"744bcdbcd8d44066eb9528c6fa39109148ea557d3cc3bdb88a818b9f9a9dcb25"}',0,'BLOCK_PARSED',NULL,'1bc467158c388465591d2ae6dfd924e31f9a0ba6f0aacf08d2aed5a5b87684b2'); -INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff9d0a2bb67d817c6def3476a248333d0425ba5ab1172e3e18b6aee76147c0a3'); -INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"3c033a502e1890e8a3c697e354cd1769e4300ce7f62ee7ac47a7201e1ad5de2c","messages_hash":"c6b034f77fc0603ddcdf933d1b62c9cd2608a19a97a199e14e01176dab7e8d55","transaction_count":0,"txlist_hash":"c424d1724a85f76a855b4dc834c8b599f764b5095b0649448a0fa2aef1e41d31"}',0,'BLOCK_PARSED',NULL,'2113dc906c30981e62035aa04b9be5ee23155f9bfd34485f0b12124f38ea00c1'); -INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a955ddc71a92cd19e145d1370e24d9c20fcc0a9edbab82b9834eb6aed40b0fec'); -INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"acc1dc4b7ec10c0989af833b57640be486035d76f74b57a50b023fb60f418be2","messages_hash":"6588649087a15a41d8bc572c8483daa38fb89f42cae69e9058c5ed8c0f0aeeb3","transaction_count":0,"txlist_hash":"dde73fa3b80a8e2d1cb8aa692dd62ad712549fdceebf4083965cb36f692d45d9"}',0,'BLOCK_PARSED',NULL,'cf88607b6c0423d25d5552bae58694df66d5207d0e74786481799e6be3a60496'); -INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a0b090081ebf6964ae9e4f527b60255d0e0707207cc497d41bda92fc865a4a3'); -INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"1443d97efeeb04291e117b152f1e18537035a59c80fabb574577cb3e66e5db59","messages_hash":"8903f00d95a0d220ef6471ae385a6b579ce5ea829650b352bb98b1b8434aa154","transaction_count":0,"txlist_hash":"a52c247beb178317cdd18532927c8281abe3af9914c676cf250084d4b1e96762"}',0,'BLOCK_PARSED',NULL,'2bd04e42cb0325300411f23232aa186ef5659b7414353e98a21fa33cc202c368'); -INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b343dce326329896c8c90913962fa8de121456bed3e08b4dce7977de53aac32f'); -INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"1c74208da191b965f52006e577c3f4df30f29b36b1d137ab457bbfe30737285d","messages_hash":"1d0ac0a9afcc74d1940fb96a15b9c256a847e2bbfca44b6724582f3153847d07","transaction_count":0,"txlist_hash":"693d04e9be7d9de1aee3cfe832c6d913213bbf44b0f04a5b394e1aceb77b7b49"}',0,'BLOCK_PARSED',NULL,'3b5c03efa9e3a3e80344551ea4a95840c3ddc3df68d3a0ee528dbfb601c751cc'); -INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeb2297779753afa75b4beaeea59742df5b59e8ee6fb60d8fb916d38b029d00b'); -INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"662e1b232c5afeba4df756a31d7b63f7f33dbb4aa752abbea9f0b57f1c7c4295","messages_hash":"08ce8e7e7278a67d7a7b525a898550f0704cacee2ddffd06ca8a9ba82cd01b36","transaction_count":0,"txlist_hash":"bce25b4036b54089a064c1fd781923787126977938ff3c206f0a8d76ddf52489"}',0,'BLOCK_PARSED',NULL,'66963d73327a11c1b838bfc354d2a0c413bb6f00295c23633100953f262b8349'); -INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c08a6324568cc734da1efba2b6232ced231dcc39bc2fe87b1cc0e3a87b5a8b7c'); -INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"8a1b60657764a35ce95c9e215600f63f0fc8c4933c682ea017553010743c97a2","messages_hash":"ec7c4e83f9b0e1011862ce5421dfd8ca94c79ea422ee5c77d62efbab4d6e07b2","transaction_count":0,"txlist_hash":"0d0259b0c4755aba3d725283f1773bdd766a0ae009f2b94be00a5589b61ef8f5"}',0,'BLOCK_PARSED',NULL,'79884d112a3ec477ee543b540c9b4957f7085fe5870dbc74aadb23cdb0177ba7'); -INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b9aad361f5eb6c1627c687374ffdf01b6640b76782f5113ea1e051cd6e751e3'); -INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c2e25d20f3c50a67a4268d9aa3e386c92e5217cf8f106d2affaae19e49b48828","messages_hash":"86a2e2d74f9bab3f7e5c2a92385ced78332b792eeb786a8a5830093b6bbaf8d9","transaction_count":0,"txlist_hash":"32c25e6b70ffe5ea4582a7fd8bf8c892d4fe0afb247e3aca79686e5b5ce9e430"}',0,'BLOCK_PARSED',NULL,'54237bbaa1ffdb9c1ca0fbf9fbb84133be2a517f7a70cc4c449809450abce006'); -INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba06877e27deefcaee191a3cacc65c8bfaacd413c7eb5880f52d0d32eeef41c5'); -INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"bd7479caeb388072138c99d19624e495200df1bf02f47caf0ae8a5007fd9dfce","messages_hash":"406eb03b3ae001f61024cd239356705095e1a66b9399c0e3b4ae90689f565f90","transaction_count":0,"txlist_hash":"0fdf6d97b6a63f690d30aca13e27aa4cd6bc3ebbf525cfe6f6eee3ce529dfff4"}',0,'BLOCK_PARSED',NULL,'47bc98e1bd77fe08fd5c4ecffa010f3d4f45b19713994f2e6d2fa199199e6e30'); -INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d624177502344c984f24494646b7c7a7366a92ed0824654e826fe57bff39376c'); -INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ddb8394df96a37e0127c8894e669072cb195ac953e2a3e922b95bf40804820b6","messages_hash":"e686f294e7b2c37fe3b5b23ef946a17f1be14945d349550afa083fc02d9314c7","transaction_count":0,"txlist_hash":"8cd686429ec5799fb9a78d07d662c5f51431c6d79691a45c109d512d261aa5df"}',0,'BLOCK_PARSED',NULL,'30266e0d9c4ab6b890bef6a738bb8ba3680819f670a3ec82455162b344c398fb'); -INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86dfb64f7648e7ba945af0afd8828c09cd02f8257822ca48a29efaea321bcf1d'); -INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667","messages_hash":"8d97e6692ae1488109eb75f96eaec5cc775f8aa9fcc1ef1bbd0a95a46e2264f7","transaction_count":0,"txlist_hash":"b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1"}',0,'BLOCK_PARSED',NULL,'0c9e90fe4f45dbd7a1f5dae877d6643645dc94d637144a9b86de19dd06954cdc'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1,"utxos_info":" 7b17f1bd3ee49ce2e5e9d749bcee03749fd056731fc38e3405c6ad4885d18b0d:0 2 "}',0,'NEW_TRANSACTION',NULL,'afc41970085f75e81cec3db41abd06c672a1d61b2b439a9948e4916947b97b7b'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','8cdeeb2436af3974e1880aa1bc9aa152152c2c634ff3a8e2159991ad94ec6d92'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1}',0,'BURN','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','74f846c54537de9ce1ec64fc9e3b62b1f6220c39f3f006d3f4f7f79be515c5e8'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"7e1322d444b3395f9d8ce6b1ca6d48e8f0d78e5d72da997fad9520899bdbebe3","messages_hash":"552834a4127080ad2b9d1adb20a5be06521c25bfb26025b5bdfac27ce53002eb","transaction_count":1,"txlist_hash":"702e537dd6e79386a246cbc44fbccf8ea2a4e575c9f1e072189fbbd831308672"}',0,'BLOCK_PARSED',NULL,'b7c19b17e3a2420305ab113b646c18064f69b06d37f658e444cdded9e08bead8'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'815b4db9274a92e1f34a2e4a02fa990263a11d1d1ebb5aee6067dc6a5837ca07'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2,"utxos_info":" 8a6f8cd8a437c07534cd71f9eaedcad50459726a90d52e6fadf0ef1c8c348f2e:0 3 "}',0,'NEW_TRANSACTION',NULL,'aa3f949d71eaa006ccce9afcf943f113383d36056e01fff40ddb126f76e6f09f'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','1858782921a1d6e90b5476c3831c4596d1dab3857e9eb5a511fd6a70820b6d7d'); +INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','5b02b0dc112210126a6e74da30320b24d78e0f6ba1c9943e5ae143419c29a518'); +INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'SEND','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','c1777a79a6178dbb11eac0ab067cd7692a5079b739d0e1336f24656d486bb48c'); +INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'TRANSACTION_PARSED','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','c7c06ae43a0f21dfdf2f63cc99e4e6544da3da62d36ae3bfdc1def6779f4aed0'); +INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"3e18d8a969bce2d869cb86b28c23823d88e6d8a840a3cda905a003b37222ebb8","messages_hash":"c2f806a9a12341f0bf89ecee3d9644f26adc4434014e0113a5524016455bc7dc","transaction_count":1,"txlist_hash":"bcd62109b750a9b5c3a07fb6e3ba7a5feb2cb56fb554da3b2b4b560a632e3e2e"}',0,'BLOCK_PARSED',NULL,'2b00a8ae9487fd6f6f50f67741dabdf7f5078b666084b4e1b7e20de4d21c4199'); +INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd78cb3ae084777eeff00d8062201a6a0c5a3d18459d4f126c4ce433a4fb529f'); +INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3,"utxos_info":" c0b7ba21d78ad1b9d15cb6b9f3a0e5be7308e48da38cebd72daf42e4f8cb63c6:0 2 "}',0,'NEW_TRANSACTION',NULL,'06fae2dbe04a9a9b5d0b304766ffaf97de09d01d19b46a94c77081f40cdd5311'); +INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'OPEN_ORDER','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','f935794f1f6b7adbc763ca53ee5bfccc97c468672846cab95d850c4974829c9d'); +INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'TRANSACTION_PARSED','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','f0d37a847389729489b1f9e518a8cd79b26440bc9d6a9d4943179eff88c9a037'); +INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"71dfa527236bbaf632db18cf1773c63f7ee3a0076fc6562e46db0c955b346a9f","messages_hash":"d856d7db060596d120d2fba33f71d26680355bede7cf11a678e09dd5c903f7a4","transaction_count":1,"txlist_hash":"f7e5b51624875d95cb14e212ee733c94f12f69084eeefa4b77491479ea3ae990"}',0,'BLOCK_PARSED',NULL,'2db4919af637df835026b331c21d0d22ceffe814c89367f63dd5b19556559b12'); +INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'515c05358ae6432fbdfa0b97eb40e5df586955eb24077620eb42995dd8c89146'); +INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4,"utxos_info":" 4570ebcbadcde31bb1b2cbe5e0bce5593c8aa7f246a6c62978394dd046267a24:0 2 "}',0,'NEW_TRANSACTION',NULL,'1a205a37082c4d718bdbdd9fe8b2dc0bebefe517267894cdc5d087c4ad177587'); +INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','407601382298e00b8fe771190e8b37bd53690b7c247974f6a91a4b48523d5ef8'); +INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'OPEN_ORDER','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','8c8658a4baf0fbb2b6ce77684dab49fe8002eb04c320efc4682fdf47a8e3bf1a'); +INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','0257457add6f458ba0a31cd9df1f439ccbc80774a2c3898369a52b1f8dbc4e87'); +INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','4eaec981162ce434f06558b9373987f8f7da1ab7746dc107c433df570df6bcdd'); +INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx1_index":4}',0,'ORDER_MATCH','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','d49dc2f482eabedc1834228f2a468f6aac9f8a7cfbaacccab05f199b1d331cd5'); +INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'TRANSACTION_PARSED','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','e16dfda948e19ebc3d3d72c3c4bdd2196f1d450233d0555bf0c22bd5350d8656'); +INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"39feff81ad306adcfb9610e6bd8442e35dd6e1924e75a53708c1d2932bda67f6","messages_hash":"3ba416078c624d16f08723cb72829d2b5e3ee29dad6cfe5d2d12226f260886bf","transaction_count":1,"txlist_hash":"a857bb0cb63c343a04d6efdf7d69f1de6f89a67dc25ca5b3e9cd9405ef48c416"}',0,'BLOCK_PARSED',NULL,'97b3c19bb765bb0e8a3a30e350eda21446cedd002ea4b7f3f141996e839fabdb'); +INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90e54c0ffb527171b1b9046473846ff1fc653a688cade4c0d95a126e55928fcd'); +INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a698ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5,"utxos_info":" d2c33c5859fff1bde271ed0b48f3853ff5441f7d5a29f64a31848b58496c16eb:0 4 "}',0,'NEW_TRANSACTION',NULL,'f39ab797f15cce2e7a5e464bb2520db2f3949e844fe97327ca7ce6e42227aeec'); +INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','1633f593cf1ea2300f47daff7d780b72778078f589cdaeccf4ebb257da28b3bb'); +INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","status":"completed"}',0,'ORDER_MATCH_UPDATE','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','83b8cfd6774d09ee7634eca3af0caa028eb02c9165987c9f528d09d32ac267d5'); +INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'BTC_PAY','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','a324c5f1f8b0456c1c5731e7f8f72f13c3a39ee22797932837071ee118c34f9d'); +INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'TRANSACTION_PARSED','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','0e7af88e462a95c4c2ca49f811e2322786053a8d12565c64322d3e38467bb20a'); +INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"1cee0851ee48eeaa3f71e7a18f9f52fffa28cd3b2e1cbf1f79c0f562618b88c6","messages_hash":"76887dad5c1d2e78b4b37a226770643ad4636e012f301b3a5c9c9c2957d74c5b","transaction_count":1,"txlist_hash":"32e68b308a1281ef170d188fe7d19a93486667d45d8a6b50a0c39f00d6924cde"}',0,'BLOCK_PARSED',NULL,'63d8ac5f65063bfec9e57bf5f8187f72640c8d755f81eee26af7c28c268b7212'); +INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'019fe2f058a4ef6c636f0481389aaf76c7c51e1431944a38783679b63b55a5a2'); +INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6,"utxos_info":" 6b24ccc7f3e91ad0db1bb059bb144912e7deaf6436b9b1eef76cbd1e3426ddad:0 2 "}',0,'NEW_TRANSACTION',NULL,'a0dfc76332e317782bdd65cd150b87b45f8fa03115027728cdfb41233bc5cf31'); +INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','98e3c6ed4450f399b21d0f5699b55c7203218f5b4f34d1234dac38c9c5818d75'); +INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','fa7262cf3ef5592cc52e173cfeb16552b992e2bf555beeea2bc74da152541c55'); +INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'ASSET_ISSUANCE','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','14400b848cc6d8ef352fcd0165a42deecff244e142c1812963c04cecaec15166'); +INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','9fc407f8703e19f9b9f9462572621ec849125162cfc6cffd66652729bc641d13'); +INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'TRANSACTION_PARSED','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','174fa134968fa971df9279af1a931c7fece35a9c3a9fc09fcf7ed4f703b920a4'); +INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"89f516c3fbdcd1540125561301db451fb55b1baead9ae8f408156075aed104ad","messages_hash":"df48153c075eb97228d7c1004cc4fe908d610e2e9f827384356e520c58056e01","transaction_count":1,"txlist_hash":"3a41f3c4d912ee4628975e61c4a04b836de31df5a9aa5fbd7031628d9c4f0eb6"}',0,'BLOCK_PARSED',NULL,'92e222a2599195eb2e91dad0bf8ad35b640dee46472d323ec7807bbec4d60692'); +INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5ad1fbdce936b1c462b72804cbbfd5406588e63a8195bfa7d1a186b8b59ef57'); +INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7,"utxos_info":" 65161bae7afefbb7b46cccbc42d943189fb58bc93833504a9beb8a81d1ac3dac:0 2 "}',0,'NEW_TRANSACTION',NULL,'9b3b71d3ae0ac5e40126d0ac5f425dd190b74d0cc821b276d7a2075f210eb021'); +INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','8f7ef9e196d993684f2b76c8e01fcb4a938c4e3fcd337dbe4b72b430c0b8a5c6'); +INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','0db74d6a2af346e20c454e53f2aeaf932b635380df6a0e75b01eaeb2937934ef'); +INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'ASSET_ISSUANCE','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','252c0f8e8573e8b5225f202ba0c6508b27dd2eba33f83473708c646558395e21'); +INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','39ce7f8a058070285bd10883633789df3c520fc327b0257cf05c2a671c23d3da'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'TRANSACTION_PARSED','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','569f7393c04a062bf88ab3dd67dea0f7a9100eb9ce2691f518fe6120fbbff517'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"e9a37cfc1055e8c18d369896a14422cad3c5ac8d9b4d5aff6053d8e31dd56336","messages_hash":"a7e3bf30127962e93c128d1a5864ca96755552f356d1a168abf31fcd4b97be8f","transaction_count":1,"txlist_hash":"4d2d6945b23826371a1cdb4cf2f841cf2b78c891a6b93da8167ed219388edd65"}',0,'BLOCK_PARSED',NULL,'117f7fcfc8c20f129e0662fc9b66a38034dac70e8f002ad43b1589726b79d4e3'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4e59813696042f259111912f70976c8c301d9b9eab1342f7cf88e140fccac49'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8,"utxos_info":" 2a941755031caa5ca3afe08d8e55aa57ff5fe9e2d725ca91388504885d7658eb:0 3 "}',0,'NEW_TRANSACTION',NULL,'12a50a22e72bf5eb71a4e50edda1b5fc275c426371d47b0f3f6c802022ee75d6'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','496dfb4e48b382d5255c62562e78055850c6e3e00930da1e7f02d53c09db6cfa'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','fcf39f9b0192aa472958f9c476c4feceb904ddf83f3f5f71d1888d2ef7d67945'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'SEND','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','ec8994bb88aa77fba52fe344336c984290c889411d01b14b3044818b898e6383'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'TRANSACTION_PARSED','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','a30c2d2eae828fd38bbd4c596ed1f27d4d3c7cb742a5e8fea4645d7c41c6cf2a'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"174c7c107c37e0ca2c907b1bc35e086eebbad8eb02493a2f166ff2279ecc013c","messages_hash":"953607d722b777c690e11bc7b4be7c8e15bc34a21fdd43d8c8df7c4c021c4d26","transaction_count":1,"txlist_hash":"dd1e7522ff359cc0ed124a82d3b367ea105127d45ccf563848b531aaf75b8c2d"}',0,'BLOCK_PARSED',NULL,'908ee769aa328ca4e696edd312d8fe682b51c133c521d78309274d0f2c839fb9'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d4bb90c3b49e597432a237fafd0d6774da7158316da13babe4d444347c80cab'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9,"utxos_info":" 25c2b96162f286879550ee980db0bb717e27d63c62beed1604b9e83df8500bcd:0 3 "}',0,'NEW_TRANSACTION',NULL,'0dac868e8254150d14ab1203b3c2bf81aeb8391d5f3c4cf191834e1bdb69f932'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','d40b236c74e68ac10a98b5e5ecbc5883bc74acbabfd6a58bc2cf6b95518c7579'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','196913c56b94352f19daf2eae61463994939090a29e37722c738e4eba59fbebd'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'SEND','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','57e828c18fcb744970f440e8bb82e801fdedbc400e19e7a480faae967ba0bc51'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'TRANSACTION_PARSED','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','72f9c2304dba9dd7652ac0479076b9ff9a7ef438d8659c1e12808d5dca3fe43c'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1463da3ebe264e703ecc0c708baa98f737b31f51726f85d3ac646f5e301b7c10","messages_hash":"f2f508918acbaa10662a53dae0b5acdc6708361ae5dc133aebf758d444d087ce","transaction_count":1,"txlist_hash":"3e547d66bace022adbb42aba8172ed287077f306537c9ce69bb11f47ed1b34d1"}',0,'BLOCK_PARSED',NULL,'18a7ac3b6f950ae9089b0754e22289e08692634f6b5e7415098df472e19b5f22'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c43ecf3fcdad0cb0bae983adaef8edd960728d779719a3e08bd63420418cb577'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10,"utxos_info":" 04b45929bbea052062fa897e2bc54d323b0bf9a46f4f5140f1362ca244e4768c:0 2 "}',0,'NEW_TRANSACTION',NULL,'877eaba0e59676cb7575d1eb8c7b8913f4c5c57d3439604f8fe51e0372848990'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','2d680927621176dd43ddcdb09da9b8b845d929c58cb5c3f49636dfaabb743ce0'); +INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','44c35d648afd5dec3f5b359df0f1920c4572dc6751ec8a6e3e38f62e207679a4'); +INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','707c4c52abbdd594146a64713912ffad987757d1275bd1931fd0f37ff58dd6b0'); +INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'ASSET_DIVIDEND','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','ad5dfb352619039450cb687478c1969aa4def660f7fb87c240a37185b5998066'); +INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'TRANSACTION_PARSED','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','1643e35db80bf1e5ea22ff4ca962a0264b2e29cc0d0b6a66aae36612881de15d'); +INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"dfe8c57b4ce4ea12f002d11cfc127f95b7cea7727bcbaf64418b2d584602a250","messages_hash":"23b93395070934bec727c5d12e4e87b0f13f1d142b939b667d53ca7831262f96","transaction_count":1,"txlist_hash":"20b7caf43b34f595139545c800247b16da6e00b0b1162928670c80ffc2cc773f"}',0,'BLOCK_PARSED',NULL,'96919b292278bc382c07326314802347b4255c953454c82e250e2652df4d69ce'); +INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d674ab324024ba9de6d1099f6b8d2f64e8e8402eacb05ed89c44f018258a0de2'); +INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11,"utxos_info":" 52def9655f61f72912a55624d1ce0b1fdfd98f7eab1d12eec193c29392572817:0 2 "}',0,'NEW_TRANSACTION',NULL,'775b7dbf280be69fd09ee22c2108ed1445caa6a9a3a69a9a16126fc040ab9bbb'); +INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','d98a7e1b3db3549c9f495e7fa4c37e64d43a37e126448a45627bb5684c74d04e'); +INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','7689432bdd47d4fe81285595676d39b2d8061332e1b454bd2e2671e62f2eeea5'); +INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','216d8f570164e1ed167ccfc4d4591bf1fcc2ae9022e3e588a561c580a7e2c3d4'); +INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'ASSET_DIVIDEND','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','c584202ea5690921398db154904f95ebccce1e11d46ace2f3221e294f9d36699'); +INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'TRANSACTION_PARSED','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','240a863fb60ddcccda5cbfbcec4699d61f15fbb8b8ffc7777d8169df57a11ea7'); +INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"f9c936d3bb4c8bbc20e544d9262ffa3906fbaeca5e4b2e3b241f6059868f506e","messages_hash":"786f39cfca8921b807a90a0ed8bc82066808bf6f6742f4028933abb6ccc3834f","transaction_count":1,"txlist_hash":"47442be955776c7e31fba3f14df298b088192577691c17dced8b14b6037e3c50"}',0,'BLOCK_PARSED',NULL,'8107260f7ced9dee8941ce7bfb6045110847216321a589a6dd244064cf868342'); +INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'981c2a8909986e09f224bcc4a6c1e070067846880ac5cdb453e2986863aed2f3'); +INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"utxos_info":" e9063537bf8b14d57f0fede04e91efe40d98d1c73ecc39c9a3d82a56cb013761:0 2 "}',0,'NEW_TRANSACTION',NULL,'8a587253fb129417a7dfda35fd415048b61423541f5659b737fadf819883b492'); +INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"value":100.0}',0,'BROADCAST','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','fba92b17cd43c298dea0d373a40fdcf42117336d084253d93f6badc3b2052bfc'); +INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12}',0,'TRANSACTION_PARSED','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','4621dcced7abc243f85a979ed3a86defc9d982d0b729ac2e71eae40e06eeaa26'); +INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"490bfec10bfd72eca7fcbae5887b94ce4739454a82e601dc754e4e9d1030f3c2","messages_hash":"83622204e7a7c0e1bb7967a740957ab2af05c6ddcf8c528908173cf04d791dbd","transaction_count":1,"txlist_hash":"8a060a9cc82b497e020ad7af45a62c07110b724282ce0c7ca34ad24584638a3b"}',0,'BLOCK_PARSED',NULL,'484a30c15fbbaabc5894cbe81267f12c65b39b01bcf0de0ceec87b90d80c3cba'); +INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc9b02998c923855678e4c49fa788fc3f2a78d74c56a55e2f057e4f4c52656b'); +INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"utxos_info":" 7e8fe4f026481975d26bdade6d84e07654ecfd624ca1c054a2b20ebed6433f0b:0 3 "}',0,'NEW_TRANSACTION',NULL,'cdb7cfdbef438d2f6a2accc0c34c6555f525d45a3ab90c1d5e82941cd8eaa9a3'); +INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','8500612b2ee3eeec2b8afe886c90b2cedb55d9c63945ac21dbd8cae5e1b99382'); +INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','949b62a1b25c200f96ee3113ebdff85e1765ca4f8514c475ebf07254e96af4c9'); +INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13}',0,'TRANSACTION_PARSED','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','0c7b0d73978332d63fcaf2465bbc30f2d5e0fed59a82163a7a4190e158f36846'); +INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"621d39c103bff9a76ada332f41e3ad54c89676bb6057f624942ddf28b31b5927","messages_hash":"73e6f94c305baff4e1c1373581a980e84ab1fda23ab7b4b8ab5b796cb0d276c0","transaction_count":1,"txlist_hash":"4eb1fdd02e0f8ba27b9134ddb7b03b51caf3417e92687c7c1a7b50ce2d52e6ca"}',0,'BLOCK_PARSED',NULL,'a9c66ab7df0e490f2f358cd4cab6ae9811a409de91a36cc7f66738f61746ba78'); +INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6f5a2cbfa42ce62973839062a410cec379f3c2b4a20620be64ecf29269ae9c2'); +INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"utxos_info":" 453f22afbd458aeee8eeb422a378fe72b9ee0d2784e5c19517fa52bd442b1ae7:0 3 "}',0,'NEW_TRANSACTION',NULL,'f40020b55888282ae8e17a2689f1e32fca0eb3cac231ec2467015951e466fc16'); +INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE',NULL,'8eff8b9f1159534a7596cb459d4d0a43af8ada906bab3bff017c905a918c1bd5'); +INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'b2a28820193cceb3d717c2d0982065474a5f473bceb6f3ffaef26e37ff9bde4f'); +INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','9d9487afab2e159b32d6b0ba55a8465982739fb57bd9417c44eac6f09dd1ead8'); +INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','bfe523f1752711ce18f51dcd21bf18bfbb538eee6482b80c4c8e105092efe677'); +INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","wager_remaining":8500000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','8f7b89bdfd3aff6a12b1527e0766131ae241226de4be2d85e1c9a42e386a7e88'); +INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','4b2c5ef981ea2a7ef7047718dc49200e0420e8cc54281038a0008258a4ad3f09'); +INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","wager_remaining":4250000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','8d9616c1fabc2b4d2c2eaf5c159af14564744c8582624a82ef50310e4b809b45'); +INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx1_index":14}',0,'BET_MATCH','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','fa38dc8abaa595c776e951342ef37319cb1cac2d394b80e2d376beadbd3d6c09'); +INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14}',0,'TRANSACTION_PARSED','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','a062c73a732825f077d1fc69e7a135ab104dfa8e640f594aa639f4a1f3b8ae97'); +INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"7d31be770d6bb6669bcb0a8a5964e57a758788cbbb942d1d3da1abd25b5dd158","messages_hash":"702ee302651e4a1683d27ecd09a5b728a1ef43b6a12414b7d724ce9174383615","transaction_count":1,"txlist_hash":"c71d132b3da755134d5305e814129761fdeab1ac933dc320f83570bd5d007002"}',0,'BLOCK_PARSED',NULL,'aa04be3bec802a7a7d1e4cbc4a63f61d9d348c060423504aa7e45a0235965adb'); +INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b8b6bea86e7835c80b47bec8088acd3ee13a55ceb04be67c9c4e02bf56cd6c1'); +INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"utxos_info":" f07ce90f370ca2c0f6b9b0d35fb394a31fd9d16d60f688a11e02679b303798fd:0 3 "}',0,'NEW_TRANSACTION',NULL,'fcb318b59c7dda6d1b72f7058512ef83e056301d9a5189ab869234040bbba585'); +INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE',NULL,'710e26e29074b8e9a21e21aa74329ec154c63bc27f10087280a43efe497b6570'); +INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c62988d59a81a98ff674d8229bd8755f4b7c2aa28a543dfd8ae7212fbbd42c30'); +INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'c76ce8ea2658c2f2e2ef6cd4ebfe0de4199b6dba6a4e2ff871a833edafa5b820'); +INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','a87bfbb841972d7560a639e568363a74426de5ad6a77e8c8764d445329fe3757'); +INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','2212417a9f8fc2a91276899ee03cb17a2888927b8931dde641b2d682a7ec0952'); +INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15}',0,'TRANSACTION_PARSED','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','0e10be9e6f3938f1fdae8445d65e98f0aad0843713e55a42cd9e03bee4e97973'); +INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"3aba9622f8de243bcd5e6a5c88fdf04a79a52d95bdc1778d57586b13f30e501c","messages_hash":"fe686a32c0f827d9aab2d14f76a7831683da225ef2f8612ff2b18f7a1776233e","transaction_count":1,"txlist_hash":"d7949a992d062d2eb763b2bd406ffab07d7d676e3327f5e38a4a8a4815e97f35"}',0,'BLOCK_PARSED',NULL,'31b79a5290a5a73205c03c2a21536018fcf6bf74299ad9b0bc7b90d30987b806'); +INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b2719c54cc460cada9b601e3ada771fbd8f5703571a5f24c228ae8a3c7eb3d'); +INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"utxos_info":" 1dad931f9d9dbf1dc2e862ba958fd0fc15c2adc0dfbce0f8ba9a399f485ece4a:0 3 "}',0,'NEW_TRANSACTION',NULL,'f803c7e95e8f566c5eea4bc5628ffa53197f359ef04d9025bd1f3e0e9fc1580f'); +INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','0a86e7c00c35cca26930f3f6cbabf853152632484fccef4f64ddafde34d73c32'); +INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','169aa1ea0ab45d3cda29084a98ef73d895613c9278129d272278fae1ce5d0b31'); +INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','77737bfe96b658a75fdbe0ea77d38b0ae9792a7497f686b2b5dc0f4d88d78d64'); +INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','cc5d8951e4b3f77910321f8e350b780c918f735d2acf9adb145eebd953ffea73'); +INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','53f05453496e390bccb20e4ac02a37e28158dbe18159ac51776bf4eafdae8121'); +INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','6ac41af7c850e7178063e897e3202f41e54054738cdf503eadb197b73ffe0eea'); +INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx1_index":16}',0,'BET_MATCH','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','38a1c3c873b429a0259afaff39ead6304cd9c0e2880b4476197711ac4e3ec0db'); +INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16}',0,'TRANSACTION_PARSED','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','0fadb59f8bf1eb0ca8ffc9c7763180ab7d6ff1e75d36c9cd3c782a7976262019'); +INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"342e5dddd2289d3d6e381fade13e5a5e3ed27615b89bd8e06ea2bab8f8b48be8","messages_hash":"74218ec7fc38341f5b5037c99528bd4055ff9fe959997c9366cebba810218ba2","transaction_count":1,"txlist_hash":"5afdd424176b977bd7b0660867d92952a9cec422a6861c62a876a10014807084"}',0,'BLOCK_PARSED',NULL,'47bbf971b4630232c43ed7c142755b083cef2001d14345ccbc1669ca0dc5079f'); +INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e974f952b88d210900ce8efa7fcd9f70fe82d0f611b76ca7c76875d60c92c259'); +INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"utxos_info":" 7bd26829c3e05451a26c34693af7528ce97e743068f941bf25467ae457d7b6db:0 3 "}',0,'NEW_TRANSACTION',NULL,'729137b793107de14edd677d90b787ef3426050064fe74093a760e3efd8932c8'); +INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','99ebe74f7b1b1de48ff1b95c2d3fee649a5a22c22ccc5b8a47c8ebc6cd4b96c7'); +INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','f80a68057dffea3aaf23de95455f5992d80ce79a3082d4ca6a41bfd2ca645a35'); +INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17}',0,'TRANSACTION_PARSED','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','2c098536c91769182ed03715232cfdde8fa70e484c68cbc4249f3077603a661f'); +INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"51b904e6b18ce4d17bdc491457036ff3a4ba70789ae929862844e9456c3b9b01","messages_hash":"d3a5f13d3fd6ed0b387a72b12de69c309daee0a67edc0e177772f940e17e24a1","transaction_count":1,"txlist_hash":"d74711d3af6b2313835591b58b1ff53bc20bc194922d10a60cb1274ca632e153"}',0,'BLOCK_PARSED',NULL,'c4888dbdf446b0e2e3f2e715195f025e5822bf420f98d72b0a9311d4faa8207a'); +INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef4f6d1054b10fe74d31310a07bb90e1686e4132a0f02cc0c477c20eaef0e3a8'); +INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"utxos_info":" e63bf97412baed033932c81838cd9de48b2b82772a4dee207c95061fbf32379f:0 3 "}',0,'NEW_TRANSACTION',NULL,'683a354cf472a3aa775bb56c84b33d2b082b0d1ac7f1047ddcae945e1672b521'); +INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','e49df2da3ec043e292de6d9f3680f2286a8c93c5f9ec760402cc92e1f1f033c0'); +INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','f4647fd36a9cbb45185230a7b4e92093ea5ea327968ca9a1d3d70a1164813980'); +INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','f3ce8e104e7f5ae9f7f7f9398ccc0e3a77aaa9f5be85e53cfdd01287c2540009'); +INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','820ae2ecdd09f66bcb1bf916dd2ee970eaf9a4fb66703534f0284008d3ef4767'); +INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','5acf67053146520ee9ba7a88de3629791cd6ab704b6f82b6e07fbeae1b3244a6'); +INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','aaa3ba9457a42db77992eeeaf0565509a39d35b0823ed7e180b1e511774a12c9'); +INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx1_index":18}',0,'BET_MATCH','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','789eb0a006520d3ef46593f22ad873259276bc0fdc3d1ce0a968f72786d75746'); +INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18}',0,'TRANSACTION_PARSED','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','9f7c226c894400e74c2b33801e90a0e66e53879016f7a66a41fbe77abda0fb56'); +INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"03a60654bc84711524cb38171f6573acbe8cc2120787bd09e5ec621b2f53929c","messages_hash":"b201e578ecbd921781c9b8dfafa0871e096042e549be9762d294b5876b40de9a","transaction_count":1,"txlist_hash":"bafeaf2f42cf716cdd586e1aea74504257d170275022dfb2c11863cdc33d3127"}',0,'BLOCK_PARSED',NULL,'33d1de51ab4266d1840addeea90419cd29d61d029e0c6d0c8a1febb685a9260b'); +INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4baee6ebc3f1042431b2c3ff688f56c538a6c6ebab8465e0cdd0cd7d613c668'); +INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"utxos_info":" 8090ca2faa4b18f1033ce16930f4a4a7ce4ab9761072e16ff025b99dfeef80ec:0 2 "}',0,'NEW_TRANSACTION',NULL,'4f9a383a7650b68f70692cf1d10bb627fb7bc8a843c1c7f5f096ed2b739d85c5'); +INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"value":99.86166}',0,'BROADCAST','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','91bd4412c39101dc06208b58b73d08476575dd15836410093bdc0225705d8a86'); +INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','72ad0876b0387e10df43015d167718b3c0b9f69382f7aaef119be9020bb001e9'); +INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','d686c12ea2dbe93876d6c914fa41cf76ec2ce4e9d459da4bda6882b0501219f9'); +INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','0a47576f1951b99ab5c5412caf460259c35eab268b84c1687a78c888b22b806c'); +INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','2b054aed68a64a2880edea5adaf2de3e24765ec688e591075b55b5af8336d268'); +INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19}',0,'TRANSACTION_PARSED','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','e3fef22aaf672a99e006e1ff2b77b8f2dd72fd19f2c47c3b56b2162007ac71ec'); +INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"a590602f34163cf8f880c3620f07a8cd27b9aeba8fc80ccb201d88364eaed210","messages_hash":"56f25721852b30fb1a0d7bf5465cd20955455bdb304488100a159e075052045e","transaction_count":1,"txlist_hash":"930eaaee66936628f4ac02f6417167100cc7e2335aaae56dac78cf2ea81bb172"}',0,'BLOCK_PARSED',NULL,'9be010ec2cc8196a3c7070d3f9d165fca8cafac02a241c7de5ea1a383895c47d'); +INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fb7cd5c18dc8e599d3ad1c60497af816ab9ab42f82d8b1b1816098050253b8a'); +INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"utxos_info":" 1368eced55ba8fd8fe90c029b9cbdee09b2f023f957c95a0e38ae273e2603aaf:0 2 "}',0,'NEW_TRANSACTION',NULL,'ce9003e0799c6694b09cd3437a5511eb0bbe37d7484450efb2f74632754bf4d9'); +INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"value":100.343}',0,'BROADCAST','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','4ae27d879d24e5a0ff727c7164cbba2bf87906d168f3b573f91e0ab0207374a7'); +INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','69e9de6c1606a551d25eb0d33d5718a4df1e66c8f3aff2a72955026414e47b8b'); +INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','f2074887f4388ff99888c8a12749d3b50dc666a8ad34964c019d2314f31f37c5'); +INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','e29235dc652756c26588e494dd910c30bf40258c6207b000b633941bab640052'); +INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','02eff6144e16eb535fcb0266f7ee354558abf045936edfc172e6e29639e9b0a3'); +INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","status":"settled"}',0,'BET_MATCH_UPDATE','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','55be5d578db36b54dc3e43e81e0be412f4f014b124bfcd2c04ffddcb92a2c386'); +INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20}',0,'TRANSACTION_PARSED','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','36d761ca3b7d1c6b6121d2fe80fbbc03a4965afb650496150e2b7b8ccd32d8b6'); +INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"1b340e7abac4c458e6a0c6ff2abd6dadaa2913414f450cf926725b5253210950","messages_hash":"5fc07543d231a3ec1569d5c116bcdd5f67ba8e89bc5e886f472595ff5e0ed40b","transaction_count":1,"txlist_hash":"ba496b27fd545d9d811d7421c6f9663e68aa9dbe3a7b5aa9d1ee5644cd142b4a"}',0,'BLOCK_PARSED',NULL,'372d99653ee45be662a711fe834f98162480267a8686bce6d22174545a9bc06b'); +INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dc82795a67452533fb5b65d8127ade9d10889dc92e9a5841280f6bf8bcca119'); +INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"utxos_info":" bff102ed8b0979ba6966715d3b4b5138e128cb04031953136441e61d9edb75c2:0 2 "}',0,'NEW_TRANSACTION',NULL,'4499031ac235ef56599b82024bf9b3d5165bd8ce28ae19f43294c60d67cb9477'); +INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"value":2.0}',0,'BROADCAST','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','6f340e092614ed985ee3b27b0ab7e9b02cc14e516789a591e480dea825145c65'); +INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','11d0c68bbb3f85c6da0bcd01f3e80ceabfd1ea5d3c8fb5384d6ec266464fb82f'); +INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','4fa26e9b193f679f1242db7a2434d4ec08535cbfcddd6d5d37150814d00f3180'); +INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','647d522e28d936968445225b03d67b5299bce8303124656b3206ca2f4f315062'); +INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','4429918aa07d2247082954c419506e5767f927945c49a63be3a2119f67473c3b'); +INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21}',0,'TRANSACTION_PARSED','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','e6fa73290d7047e415cb64a3fa06a699b740eb095639f77578f2d2c1b6ad9d79'); +INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"5a5a31ae9b03a362b44c9e38effadfeac273bd370374ea4816b8402d6b8a8a1a","messages_hash":"43a63216cf2d86fafe6abe3656888c9a29ac21d0e21e808b76d7d1afd0edb0a7","transaction_count":1,"txlist_hash":"be94a40c259a5f9e2ad5cb714089c4be18de7bd6d3b403f3a4620f4d889ba4ed"}',0,'BLOCK_PARSED',NULL,'84787dffdf43919cf53c4fd3c1e4728171a0aca5b554a149bd7f99852d93f1f3'); +INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5912042b0684b817f3969996aefb652ace63d79f8c79a0a66392b546668da280'); +INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22,"utxos_info":" a81dcd4abba199c95c7d52cea0390fa94c33b0b11358a09789c469256e62d083:0 2 "}',0,'NEW_TRANSACTION',NULL,'c3d6cd2442a0ef9b19cc872da7c435eea5e9017d39420ecc7d70bdc9e4fe664d'); +INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','d730056eae063b0dcaf821affdcf8145ebe2a7f0e6543d54d41badd8abef77b5'); +INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'OPEN_ORDER','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','2d2f06d348f476e4cef5f9aeecfcb994ff36bce0f0ef54662142b4058033d4ad'); +INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'TRANSACTION_PARSED','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','5bf21182a138c1cf5aa4a705bf0c5a1124b6c7ccc1146aac0e14534ded026da2'); +INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"2005a300856ccc74efe80c56927fc13619d5c40ab03ae4ee4fba2050bc2a6b75","messages_hash":"08bb4ea791ea864610410913a61a2273bb1f197405289e0dd3dd8d572deec241","transaction_count":1,"txlist_hash":"afa68f3f9cb6cf8f767075bc9119411e146b6838278d884868a80d9c8e80e26f"}',0,'BLOCK_PARSED',NULL,'3c478c66e912b7ef8d32c7552e1319ffbd1467961176ca37104887588db25552'); +INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05829606240908adb77e1e73367c5a6624de4825417ae69b76543fb4ce0125f5'); +INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23,"utxos_info":" 0446c9865d4eb11e643bd97ab9d4ec5d5fbab31025f579f860089d00b6587815:0 2 "}',0,'NEW_TRANSACTION',NULL,'6684bd5e1d373e944fa610e7e5e3d161039c7838ea7595e0fa54c8c1aaddff38'); +INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','2a8fd0f7a4c2aa1893749303328a0e69f9e28af36965aad18273ce6fb9be02f2'); +INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23}',0,'BURN','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','445c6b06d6eb47561bc4952a96e1d8e3f846e830883a47ee3245e425b33ed67a'); +INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"95307de52e23a8433143d79710e7df22ba7205e2651c88a2eda220ebc8e0f289","messages_hash":"4068ddcc0045689c3e9645ebc794d2b528065513deb2080edcda01624de8429b","transaction_count":1,"txlist_hash":"66f27b0e46d782b3e7eb8207ba442131069820295ea19ba9b1f8be5ae5b1367b"}',0,'BLOCK_PARSED',NULL,'bad6e86712e7286cd1a68c7730f2b5c56c6af9b8635f676675786d730fde947b'); +INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00eae822efeda28d5b4d7e6f7420a8b32496358fade891c09db5500e83588a0e'); +INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24,"utxos_info":" ff2c227052f38fc83140ec7ca8a5dfa718f3ab0546cbce41920ebd36aa54c691:0 3 "}',0,'NEW_TRANSACTION',NULL,'025995fb7db83f0ed216126fd536e5958570d3474f329fc54b175dcb895d77c7'); +INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887"}',0,'BET_UPDATE',NULL,'0a444e56db19e8ec44ed3a9182b43d4ea82af59c28cd2574f874f9ee0284a84f'); +INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'535a8275a3e168daa2e1d913df1e9b88fefcbaee473180d34a67697bc2373020'); +INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'3b4f353352f0a9b18b4d1bda97e837a147b2477dfc5c3caea2bf7304237f98b5'); +INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','9790efe1fafbb184d4d498c6fc6e933a842f0ef28c48a435186943b574be3bba'); +INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','3737aa6367ab2c2d13a9e704f065ceea18728578c1eb0b13fa159492df9fb25f'); +INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'SEND','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','33917881db187475b9be1d4fe10a9c74b23f074268d32db1eebbdb3a2013ef1c'); +INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'TRANSACTION_PARSED','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','808956814a5b6b6ad97cd76b3c5c5930653ec0ee327da966f0f7f914d4948809'); +INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"de5a22c228bfc58ceaf428d55f180e951ff877537ef463821ce1206f07ab02f3","messages_hash":"ba4728d205413e91313a95fae1eeb6f9499f9681301ec896dd2f54cc00a7f8f4","transaction_count":1,"txlist_hash":"eda7d728863433b4e738e2b317d661a68d7f8921ed3fcf56120e0e0df464f161"}',0,'BLOCK_PARSED',NULL,'538180474f2d8ea3b2c9ee7f1c2b804202399419006af0bf9ae20e484ec2d0e3'); +INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad433152000fd0dcb360972bf13cfb42c2ec03af3007e79ccf6b30fec865c537'); +INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"e54da9db6c4911087dcfb2824acfd7429431e3297f6b5836dfa8f95165ac9b08","messages_hash":"d564f49e3a77a2c556845b2c16222d4b3ba1bbff35b3ed77b48d10981afea914","transaction_count":0,"txlist_hash":"6d7b69dafc9e895a4a4b75c2e7ee2dcda352e21b82249074bfd0865e04dfe6f6"}',0,'BLOCK_PARSED',NULL,'c4822b51a4bb6387a4aeb892e96b5e7a530f7052a09319a3242dd0ba6720c60b'); +INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efa4cf7b8b02e5867fcf866d4aacf283a7928baaac47fc6849dc8328bb8c435b'); +INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"dac63e0e407785c7a461d839ddd749f020f8a33026cd6ea2acd659567a36c40c","messages_hash":"d1248587b14af743f1d77729b791b2349f2765838aa37d21ba7b654d82f54397","transaction_count":0,"txlist_hash":"fb8e2f9f37cc8ceb72b92925cdb86f62af821bbae196e5de5083d784436e26ef"}',0,'BLOCK_PARSED',NULL,'53dc3c14feb261962276f875509bd2a1d2339b17dfd5b38bfae79e1a4ca0515d'); +INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37567d25df73be05d6ade0ed40a11c4e5737f8b6eabc98634f91e5dc68d9f8a1'); +INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"0397b7da62fb672aadb96fbdfc37f3265ea04c4d401632d5d9018b9b0ad7cd45","messages_hash":"a9becd46fc3d51a70f96d07323a5767c23da421ba7abb0d27697da19619b5585","transaction_count":0,"txlist_hash":"35f40cec8ce2dab43b642668fb3baed3654b63a328ef005e41c8772cbf02029a"}',0,'BLOCK_PARSED',NULL,'80d3f9170b3a552ff8c4bf341d5c7dcb541db5559535f066bda06159f071880b'); +INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'556a8865e0bc62a2da20c45b3c3742611e2f525249fbf1b687fde7850983da6c'); +INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"dbe43e77c383acc66cb46105991ed066ed5309434016081c26ca1a7dd948b6ce","messages_hash":"75c7e51b159ba4fe32829b56a4394952baf61276163e6fea9478289f2fba39e2","transaction_count":0,"txlist_hash":"df94b526dfa87413c5d4c11024019c28dd94051780c00b433b28093788b15ce0"}',0,'BLOCK_PARSED',NULL,'ad2e89f91cd1c434e7283df11730ab886764f8f9af13457c4a314fc86d3ec781'); +INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1609725f24df1871053d4b45a45e076536de08e87eb41a30319bbdd916cc64d'); +INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"ce1021a584895988014f16dd9f7b7b29bbe59ca8a761914f60c9290b5ec6a16f","messages_hash":"be170f0adccfcb6c8ab4790ea15cf54bed3b05fc293b7eac889958ee71b0ddaa","transaction_count":0,"txlist_hash":"7d8c18a5d7ec2d6d87ef468e4ed6784e9d41b248bd3d6754bef8f6bd1df9b9f2"}',0,'BLOCK_PARSED',NULL,'44e46956bb9912c3f4e05cd568787bacc070a4e394721202a9dd727ed23c9473'); +INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7736c27904c190e56be80676679c0b2732d4b16136384bd2f7f556b78ae6c787'); +INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"4a066ff12cf6f8dad894e23cfbb4fe6a087893b717b3f0c1ec53764b1e922bf4","messages_hash":"6c9c189470ec33433d6c5791eebdca6cb4703ddb73b2f4fae7899a88a1be07e5","transaction_count":0,"txlist_hash":"0dab776748029f3a094e8c2ad8871c1771263f81cfc6de79ded15ff475239371"}',0,'BLOCK_PARSED',NULL,'e00e645f897f4e65e065e5e6ea9bde483d4202e1781c83cabb5fe0710b639be9'); +INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c852f4f4098ad4fa000a402394917b60dd8b4a15d1d97f84bf4f81d561369b0'); +INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"be1cc89117e7cb3fc18eb610103d72f144c31848da4d8001c334aac577f19427","messages_hash":"73cec7370d89b28ca75d7158c8a0b06eae98c3a5fa31f9e1b57f8504949a38ca","transaction_count":0,"txlist_hash":"934400af42a6099d1279e8fc2700bfc118bc313da8383d06892521a17663ef73"}',0,'BLOCK_PARSED',NULL,'61cb06a465de9abb7331adb940a74abac0d448f40a7fe1dfc56d258b43d6ab9c'); +INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a06664bd83733af9ebb19bde5e8c5d7f4f66813b9d2920c54860c2991f2aaf16'); +INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"a616b3d81a1ad1db1a9b1491b06ff6bcead9037f75552d14a4c7234b6ff56670","messages_hash":"401372b7a326740d2cc70981c72f81c163ba337296d45cee689937b615add2db","transaction_count":0,"txlist_hash":"b45534f04aeeee6c2ed877085eac7ebea9f7eacceb2026e5ab8a34ff715bc3be"}',0,'BLOCK_PARSED',NULL,'a6f12d98b01df4df4253da14fc362774e80a5ddfeba485d605bab56258fb92e0'); +INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8caf81cf294cac4a4b54fd6f075c068ae708be84f0b047da6fd14a0c8ede649c'); +INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee"}',0,'ORDER_UPDATE',NULL,'59b824c8704f1980100e03b997e928367a39a5ff80dd6696013854eb68cf7f32'); +INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'13bea9e1b5219a53b421fa2cce702de2a847bd43e448adc90ccf65239978b332'); +INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'f115fd50833d93474d4619a4944c7fc04cdc7ddc9ae5492fa8f63c579f4d9974'); +INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"e7e76fe32ac5c06696c0bda815f29f1e0785a9d48641615f2ef78fa9982d258f","messages_hash":"3ffdbf7b756e126259a5a2a189e1718a1488e7f4df769568e0869dad0a015262","transaction_count":0,"txlist_hash":"b8261f9bd73b90fef96702a2e83111c3b9305e55efefae86a4078d99ce8c3d0d"}',0,'BLOCK_PARSED',NULL,'e9dfe6c546e83caf177ee3c76ade6bbdb05d21106ad7f012f863d584bc363faa'); +INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8348d6b1122a8eeab511d16c1a17d49975673825ca71a69633e0a5753ceb9f3c'); +INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"f0d33d2f73f83449c18b9a7bea43857b36effa24eb248283d9356c5280e4992f","messages_hash":"67263d625b0b74ae67bb045b400c9ca95ae58b0e6e0b2df2225dd1f86e34429f","transaction_count":0,"txlist_hash":"bd3133719a6698bda726f9304fa48db5847cc475db79b879d2566da3cc7299d0"}',0,'BLOCK_PARSED',NULL,'01b8f0efa320a64a762cb9eb19e7bd75b75989d77974a99eecf08ca830e13821'); +INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c906afe5d8073b36e6f25df5dcd004a1bf88c6612a7e6f15a00f3d1ab39bb80d'); +INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"434d631a1c3ef7d31d136b4eab8b3044dc2b65886bf43642537cc592db0415a3","messages_hash":"d64ef53c4c580f5485e1434101824d01cf54c6e89f9949b1b9eafcedcf1437ea","transaction_count":0,"txlist_hash":"eea570d87d2e343bcb9b93764aa9bed952588f4b053d13e87da410b8dee27d7c"}',0,'BLOCK_PARSED',NULL,'cfc99820e7ef40b3a692df8d406f42e6b25d37c7a82fe4763c80b8c4818adfd7'); +INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59317195c284196e7b8bdc46090ed24473cb96e179f55e74c588935c33449611'); +INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5ca42816d9c6aaed19f6d25cd02e842b5d834254f90a169630544c83a129c7e5","messages_hash":"21564219dc16025f549b73ae0d077e48b341e8a37771558145c731f348f8ca4c","transaction_count":0,"txlist_hash":"c827847c2f94718cd8c3efdf2b30cf9c8753893a76590efae0e30c61ef9a2d4a"}',0,'BLOCK_PARSED',NULL,'73c3d1ef24ac29d98a25e5d91f195a08495bdd88f39941df87f469342a250d90'); +INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a95f7c575e4f7a46ac24743fa756223d772307e55f2cfd9bd69c783f5122c566'); +INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"31aecb842ea816f98aead90fed7ad005c010919a2ef2c5d7a8965b71832d3201","messages_hash":"081773496182dea9591ae087ce76d4597265cc6ea4d8110884c8daa94158181c","transaction_count":0,"txlist_hash":"5a69c5cc5e4aa7e7d071da7ecf8cff88740a707f70ddec29c57ee52b3da09127"}',0,'BLOCK_PARSED',NULL,'3bc8c810944ad6d85454ef6874ff3f685c432d80003c8b2b4b60f67a961e58e0'); +INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d5f4a1fe7cbbd77f19af60bbfa309416942440d422ea446e61f622b31aa9c57'); +INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"7a3167eb2c8a80c7c363ac47200ebc8cb6bd53f57da64465bec14bd86cf2c6c7","messages_hash":"4617a2e4e119e6dfb945a94c1dfedfde0242cc01ae918b7e371be250307b20da","transaction_count":0,"txlist_hash":"8bc588a7a9286c3f5c13bc31c0faf29f155391f14ad89defebe3d0a0b21d049e"}',0,'BLOCK_PARSED',NULL,'b1ed4778fb019903ce9abe63b65fb1410d45cbe92fac8f0f7b7aa402c022466e'); +INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'139c47eed4570dd3ed451419f28ec60b643967eb0124ae61f0c2f04ac6c18d34'); +INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"212bc51956081e57aa618360926e186824dce8987948ee7706403451ab417a0a","messages_hash":"48bd217a7207d35c57da214a35f2666509a6bcc492e3c7c77b4ab60bc19bc0a5","transaction_count":0,"txlist_hash":"77861a778f50d5f8314cf4caeb6a78539702ee5b36b882713079b88143d4c6ca"}',0,'BLOCK_PARSED',NULL,'69c98e72ce46f570c090b862793ce2c9259ade3009bdf01009bdca390ca6122a'); +INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93c5cb35835c333d068ce7dc8beff967a4df635dae637af2c8a87d6cf418db95'); +INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"03e72d7551164403b41956638a0fdec8703c29373ea2b15c770717b0ec39fa95","messages_hash":"a791233ec9114fe7c51326f039cec0fff3ed94853ee9a1273a917252be74c617","transaction_count":0,"txlist_hash":"b445575b555d0621a37fc3f9f22c113126ea35507703f8885294cb2a4613a6c7"}',0,'BLOCK_PARSED',NULL,'ee199bca3423ec3b413185c35ee1a94b80644940a2964423bbafba219895067e'); +INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'448c1688b3e05a60e8f567531839be7cbba636f0556c72bde119a71775b53628'); +INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"922aa744aa0c08274d1f47a0f80638c7937ecaaf95555e68ceec09449e60d080","messages_hash":"3d455ae7d4a5bdca02d48834b93167dae8138051a41d42bfc97faccab6754a86","transaction_count":0,"txlist_hash":"d46179d869f330c786bb81e0c122952d33b264f3af2b4a70627764332cce3fb7"}',0,'BLOCK_PARSED',NULL,'adbee0606b15f5ea2d5e7c22fddf4be2684ff27e265e9359d3f6301abc692799'); +INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51ef2d388e125dc56cc1547578b7172a964f0518fd5115e88b4f1703f66db9d'); +INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"de422fc7f3f11d20b697e0ee57afe101ddeb5e84105153a3bb10f97f9c3f1783","messages_hash":"0f5ddbd4a96f2897519bfbe26c493bb8a36e00b61546ffcf7ebb030a14110285","transaction_count":0,"txlist_hash":"d0cef146e488d50917e659d8c039e7304a41d239d2330947d81e49d3bc7aa723"}',0,'BLOCK_PARSED',NULL,'758d74ef9d62a467684ce419dd8d1b9b8c533dbf8c5f2dcbbda885ddd2e0d9b6'); +INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9d4f615d3b2263e6b94585916b47c65ab4affacdf2bc8efa856143b5e17418a'); +INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"82d7c9a0c9d63c3f93b125a9eabc2a7b5f560eccc5fb578d71ec071f150c8fac","messages_hash":"dc17ffc07165ea0d0e8094184ad60245bd6c1026c3920bf82273813413804f14","transaction_count":0,"txlist_hash":"68777d56b0179c05517b00df97200e16079b34c54a270d598c28caa4f39ea43b"}',0,'BLOCK_PARSED',NULL,'de442952658cc997eec2b7951a3b2329ea4fd259a82f7c16f1c3b11fe66aeeef'); +INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7f3f1b5a16c32e82a134432931774693e96174e49bc8821be409b560ee03f26'); +INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"c9232d9cfb183cc9bc09bef78f7c83bac3d9af803e6916c9b14063c4f619d9e6","messages_hash":"3b90dbb12b4a05b7aefecc2ba66a520e19a2172b4b684ecbcecff68c6694c314","transaction_count":0,"txlist_hash":"728975e1d9ed1caeeef47b1b8f1040c3d1ede182cc47282f32f2f464071057b2"}',0,'BLOCK_PARSED',NULL,'ed0c2378da4abf82e4f31f69d91f0b951913687f5634acdfd011a3707e26c20b'); +INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ffb4426a7dc80068a0f3f430e091900cfa72adb1b32f7d8cb711cbb5ab5f889'); +INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"71c3e7aa2ad71e35b752dd4e48381b4ca845c370e5c340f2a221dde808966a45","messages_hash":"8b7febbfb0f18becaf8ee766706aa0a5017d59476c1dc9f14733ba1bc4abe948","transaction_count":0,"txlist_hash":"56e52a1e4cd4954442f83c421e7b8c653e38cd7725d6b140a47e74f57df2c169"}',0,'BLOCK_PARSED',NULL,'32efb218bf4211ca4661eeacb713de13248b5ae9c928c984f7cbf09ef2e8c846'); +INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c97434eb50ad0c9e82d1404bf3311788f2430aeb436b69067c2f63d2d1b9c23'); +INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"47230be2ba96e7adb6088b18788b52a65aa48183c2c00095b79999f5ea1af514","messages_hash":"49d8af6df66144910832f67fce9b703445a520c1ad7de27ab26b3b32e78b4c98","transaction_count":0,"txlist_hash":"e8b8a81eeb5c9a9fa6f19f6d9617c7c8e1d19368725d223ef270b74b09b1a541"}',0,'BLOCK_PARSED',NULL,'8356d1252308e6a720095cff69b9026c80a77754ef04d19b7d9601b5cd22384a'); +INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ce12c3f1b0106c203ea2a8098a5ff50e0c77f62145866c64769b41d05647877'); +INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"2c306c41049fba2e58a07b5d14f930bcaa465b2afa4df24d8a887958555f0c57","messages_hash":"d5b4db40f8afea6020f21bccadaa9c5eccc364bdc70fe21016dc67cab3eca30b","transaction_count":0,"txlist_hash":"3ed01193d67e5b016184cd322ca01829a616ad7f7c98bdc034c642ab5c37938d"}',0,'BLOCK_PARSED',NULL,'228455d64ede49a3335c999676bf3cfcd2da20577766f38bebe8168bde7f2222'); +INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0cb7cd9ef0c0361b57a528bad8243036eaa494c335e4d0f6e6e04922328f07'); +INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"95a6325dcb8b9f7aef9da35bd20a46addef23aa5c36795beccacf992bee88d28","messages_hash":"3105eaa549b93d754bb978078aeaf1865301aee814095b5cde4a1875558483ad","transaction_count":0,"txlist_hash":"730fe6316784de4a36e2530b3935fbbd2e1bb9c876c61d0cc436f86a103d6655"}',0,'BLOCK_PARSED',NULL,'263755eeea131f2b2b029171e2766fcfc99ca2e6d6a2b453b80a13bf6abea899'); +INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc31b77c6fe91b24f11e61ac529d9ea7c2a22f471d5cc17fcc0c2e244430aa0d'); +INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"8811d6a6b22ff3e0ecf399dd20a28a17ad000e99b17f90e63e02230ed42cf260","messages_hash":"adddcf11a97e071694c4494e4c91034bce6cc8a51842eb7ea88f1ae741925bec","transaction_count":0,"txlist_hash":"a1772d6d909c4fd092a9e511c2f0425480f61c1f2a3d513d973a15e587c47a51"}',0,'BLOCK_PARSED',NULL,'46791e9ff1b55b4fe1fda33249ddf6b6247e0c7b62dcc682298ad4d01d5eb38b'); +INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ba9252014cc09769c69606e8a8f51686b8ebd53f1ff5e90bbcb477d674f3e3'); +INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"4bffe3d3071cee255f64108bd8b97652f06190cb73caac5bdc4ef61d3ff9ecd6","messages_hash":"7ebc90dc37959a4cd4fc4fec9486ac5889338b05e6726beff8895ced7ba47480","transaction_count":0,"txlist_hash":"af66fd2b113c2349077f00be46a1cd5629b2ec39576ae16ec004249438781905"}',0,'BLOCK_PARSED',NULL,'7e6bcece5c215cece3e72efb0b4f640cb4b4218ae92010b9e19e01f1c598615f'); +INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43052603af67ae81a715a7ca15f23020ec970da86b7e4ff306b22d819f089d6c'); +INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"b00d5001e914fde448457f3b373637385114eeb07d79751241f4c1f50cadc050","messages_hash":"9188f5b574d26f34e57ee0929371a1c7379e5b7a82ec522742b559b1eb17834a","transaction_count":0,"txlist_hash":"64149e5936bce967da53b587f07492b64472145ac66f58c1773a4df324ced96d"}',0,'BLOCK_PARSED',NULL,'8477f671ce14e8bd2f85e6838ff848f0cfa7c1c30a1d2eb6dc6a9392e4f6e446'); +INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'688dff39509e3e435b2fa716618c657151acfb6b10ee3f8f5040cdaeef7c10bf'); +INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"90dd8fabe43314ac6ab6f5485275a4b1131c232a1e9d92395fc030659873edb8","messages_hash":"8aec4a1e3193643635db369dcdab91b33b72345292833f8dd5f1557381a120c1","transaction_count":0,"txlist_hash":"71f3161707a90feeb8b8e3340f47a9102c344b652ff70760aaa1f7b3bb30a14f"}',0,'BLOCK_PARSED',NULL,'172b5e8c14c4f672eecb0b1c7b29c11c3f0abe3112f1114da27dc7f13aaf50da'); +INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1a4cf44bd068760d6ec9a9cb6cc346b0328e5efb390f0e1bcb58f3d1fb5648d'); +INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"923848bdc7906ab89898021e05e201f69305087b12803c459f066f2d681fe9b5","messages_hash":"25c51426707a0bf04e70dfbfe94bcc1b0c963400d2466ee85f764e88b40c19ad","transaction_count":0,"txlist_hash":"de443d5cc1b054f4cff96f616b234d91b0b5e3712e6d72e64d564c201b7cd757"}',0,'BLOCK_PARSED',NULL,'bc661854d46f7d9d214fa8e4b2ecffa45a505e2b8579c02c0ae1d8acb77c52e5'); +INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6faf0f4e94fe7e3d9facdf77bfff6aad5661c9493ff8ffa485ea7329a6a223a1'); +INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"e5ecdf8c0a2166fa8fe25adea0d374d34131d29a3c901868fec579eb20a5a930","messages_hash":"475175769e725711441f8a3646330382689cb2eb827383fe08c8002d98532451","transaction_count":0,"txlist_hash":"05b8fe3b76416a506aed1b000e3649af38e59adf26cf0d168c5e84112641ea6c"}',0,'BLOCK_PARSED',NULL,'d92c917f9092aa55fdac5783c9367e5875ba102def0c88e4c48fbf864dea574c'); +INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f502d6b0a083bd408d738b580723e43440c6504e2a3b0e2a0eda8ff69cfd5f'); +INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"03cd75c14bbe11800f4d436dce93235787e2521a19b1d5a90796a5de369680d1","messages_hash":"9327fea38511453a28aef4aa71228afabc9277bf0eaf02cdf5df4ce11a8fc3a6","transaction_count":0,"txlist_hash":"d8edec966eae31778588f68b7343dbdb4bf878b30cb430246b04ebebdd9e43b9"}',0,'BLOCK_PARSED',NULL,'6d5af16fd763a38e71072e3bb2e8b30c5b22074f153e1a63cbc0a948fce63b18'); +INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16a055f12d51724786bb8a7195695cdb1099bb5ddd20ca2ccfe2c27643b095da'); +INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"7239560704ca831dfe90791f1cd21ae1f1506275cf6b45933676be9b096d340b","messages_hash":"2ea5884e4241457abfc076bd3c0ceb4ec721c0521820c7138ffde796061d0d22","transaction_count":0,"txlist_hash":"1294057c4f21c98f97d10d96510ce83d0e8d348d138b3caa2c76ef1be47a3c2a"}',0,'BLOCK_PARSED',NULL,'7fecd5f75a4cea6e042b65ffe58e907032831efb68b4aadb920cc3dfca6bc72e'); +INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8fd34a5f8453ba66bf73cd725eba7350c1a4189f17f21a00081a4c72e37c2e4'); +INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"3aa4ef8714cbb71c4f0b052dc7ec7795322103ba7b8361db3f33303f564f3815","messages_hash":"35416149d3d326643ca16a87efcad4b38695db8fa6695c6ea23c6d3ad4947866","transaction_count":0,"txlist_hash":"211d0e47a87100167138974db02ac1299bf1b2a1d7b60606b19cecf2f06df0fd"}',0,'BLOCK_PARSED',NULL,'13a6353184bddb09c867714c22230032782606cc68de0888eb1d01ce7bb91769'); +INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc68a6619c1a6fde0eb07a2edd88091835ee4f73cb94fc8e019fe8d7c2b43e90'); +INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"fee33c0a466c580887106b4bb7a8c6aeb7a049c94987bae64f695ae400c4a4a1","messages_hash":"81f7bbf8c604ed9441531c78867e0fe3b4198283b5e493ae0d20e8cbc5425903","transaction_count":0,"txlist_hash":"f851a0d0a25322d5939a5cd2cafc831b6282af5ab81932553cb80ff3825b4a2d"}',0,'BLOCK_PARSED',NULL,'33847a2f5580af15dc94b50c0d9b1ac227f83a746ccae6d475e99b9bef8c9241'); +INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33ea2aa8cbe3933440657f715662e8ce5517745632a62a0d4425566010fec08a'); +INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"94d58bd9a65a2e13c7ea2373e521952e916b0e1d31d803eced96e5c8903aa625","messages_hash":"f48d3c887503182ca1e6a90beec0d252c9ab19691705d61c97e8b17ac7d11745","transaction_count":0,"txlist_hash":"e959bddf887904cd324ff7bf5fb60380f2c4a7c2b1b4215c63715a59ad297200"}',0,'BLOCK_PARSED',NULL,'d6bfd393db95473b66d3075909382e696702bb4684fcd22cf324eaf1edf4b2fc'); +INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f42edc1786b67991d5f288bcc38929c9b20de8e2e655479c5bb43790c431188'); +INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"e9c87b2a652d4ef3d48ac74424f57d06dd85893fd542e0784df067c37396b0df","messages_hash":"eebcc49eda3f3aaa2fbd2e50e6533a76536e6ae7bb4d5f483143f1be6fa7bdc9","transaction_count":0,"txlist_hash":"ec205004b519cbbc750bcae821effee41789b3f643f90148e8db2d9d9f83ed49"}',0,'BLOCK_PARSED',NULL,'56efb94bd1aba927430bc4e770164311d5e6d276e1650a202daa9898527ad394'); +INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1d2973ff69c94c0c66ef8bf79b7c7247c0e9d9e4468389be742a5f945b39d8c'); +INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b664a0985edab20768aec36096a7b2faa159cef4af7e779ad421942137ee317a","messages_hash":"d3d1e2aca506a79b3013c73e4f9558c2fb2b30137e353695d0ab7abbeb704a0c","transaction_count":0,"txlist_hash":"dec86d178abd72944cda84a3154303e16eaf39e5bd5bd59a80cca27a5ed5887e"}',0,'BLOCK_PARSED',NULL,'6c1513db2e51fa6767e250ce5a7e05f93a64c8401a469d2b3ef7d24ee5aa3db0'); +INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'800f2112954bd344171a18822c61046b8ec55814334b108d151176a9607b25d3'); +INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"5ffa5e1f36c5539b2f5a89a6a60d45ec6372ced770d9b0e0e8dfd61edad84c22","messages_hash":"0b75b269953266c7e9c604108ff699a45385b5a0099967aefcbc7b3c8c1f05a8","transaction_count":0,"txlist_hash":"be052ccd372d556b9b28d0d2b6f9dbfc9b32ff173b71d7842fb6008047a67384"}',0,'BLOCK_PARSED',NULL,'1d8ac2b923c345e56a8ef6c4398e6276b919a4459e742193d9d1aa47f852e864'); +INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d6008f32a361fd50bfcbc5fddd1c3e7b409b3d3229d802347f8e8e0725e830b'); +INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"fc6f9f23c3b8954c7989b0e4ce40087b66dceabc7c0e407ac7f4b397fe2a1281","messages_hash":"4a0c441e144603acead6249c3f1152ca2e6d5c45f23505a3a0deceba0d55f15c","transaction_count":0,"txlist_hash":"1495ca8eeb434877ce36335268a349709e99811e93f416ccf1f0c98114731824"}',0,'BLOCK_PARSED',NULL,'350358893ff855606f8ec78fbba2047009c2e01b1aa79f3e4f1a018ec7c33e67'); +INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89d8f616b4b7857902849db407dcaa908895a308979592d778e4f325b16df89f'); +INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"cc6c3b8cf2c457b2f6afb5b208f968544767be8b86ca53bdab4224619a03121d","messages_hash":"c675a64144e460a13c9ad0191178f53c4723c4f5095d6411c893f0e8fa73e95f","transaction_count":0,"txlist_hash":"93d193df39b7340b932b5abd85a027df086e033ff2b18fd8c9d0d03cd6db392f"}',0,'BLOCK_PARSED',NULL,'10242d1115210fb2428fd72cb7522dc5995c421f600d1d86f893778e85ec481e'); +INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d73b83c5330019ec96de3a0f47c3d0b5a98803eb0a925d5a0f18ab369aa66857'); +INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"cc57ac6aec118ebfb03f5113ad1af749522e60ef4ca201d48bd43478cc0a29e4","messages_hash":"8e65ba6f2cf7d44e6e2f285a16d1e8b81f7e493530f91ec79586dc65d6c050b8","transaction_count":0,"txlist_hash":"064c03f24da9de841de9f492487de4077b842d6de92366d3fe7ff37d558998c1"}',0,'BLOCK_PARSED',NULL,'0a833c1ab1c2a1f4033dde57c5c4841a62e306e4a6158e414e5a2a4aab5177ab'); +INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec9a5b12eb30d5cb2bb693fecaea5b5979750fde56ce40b496811ac4917b246a'); +INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9999be70079c0943f0a00c54236680bafe0c87dd3bb75c982211f751e7ecdcae","messages_hash":"0a6c3691e3b8a2b57e2f181238bcf9935dde9f5c245b7820f0b5f433c796ba86","transaction_count":0,"txlist_hash":"f1196c84f3767cea82b4dfb6a5e4be30f3ed3f53e9b9cefdadf81af9f2b2bd49"}',0,'BLOCK_PARSED',NULL,'4826301840c8f9ef3d710f7e179d7cf03d91ac7c09e1f87aaf1c85a5db8c53c5'); +INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5ecbdaba483f163dde07e9343e0c3e3fd806311c42300a5a4ca85dc365cc9c9'); +INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"efb2fcb7b5628bb99994bc1ada157bf80b4516d961497aa011c06da1523801d7","messages_hash":"59b0e5946549cce1cf27bbae93e29e8204a5dc29b4100e9decba75f6ae4fc5a8","transaction_count":0,"txlist_hash":"ba6d273c442538389e43b3ad47795d7e61d9b17427d1a1044333f96cafe575c4"}',0,'BLOCK_PARSED',NULL,'61cd7b286e3af2d223bc4a19027aee0a5b869504111093cf0dbc7cc7fe079961'); +INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81f9da7365e9597da0c40e320d17e703d2b60b18e0f1e0cee96fe1ebb261d4b8'); +INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"fb396fca9af7816f97b22b8bf1b01951e271a75f1a640dfc64955696dc1c0b7d","messages_hash":"b323893b6081dbad6766eec90402ee9450feaa111c83af4d20b162368be1afda","transaction_count":0,"txlist_hash":"20ebf686e5c5a50c0df23ee15488559024622039aa4fa47f1b07dc3967bbc760"}',0,'BLOCK_PARSED',NULL,'5ae00ddb9329bfecd4c1437bcffd4cd29ff15e35a7e0a73671ed266afc0ceff0'); +INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cd82dc24c9ababddb45df69b09dbd91480d34145c2e57c10fb28489835d33f3'); +INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"6cbc681ed90e676cc507d07120888bd4c8759873a0b9215f721a0ce707070086","messages_hash":"184d92a010711b1e64bfea7bfab82dfafefecdccd2159bcd83f1456fa169488f","transaction_count":0,"txlist_hash":"d8c09411f0c7fd43774558fd6cc9884b032cfdcca63a08845b61293ff52ef380"}',0,'BLOCK_PARSED',NULL,'595e1e91a9311c4c250116aa0dfd181ee9e89d24c79a6800e6c9284c8fe46770'); +INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3b5918140ecac443578de90931c2450f894328833f6a849ce1f449b44fb3837'); +INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"7cb734eb3e24e92de8915a6bea42b6ef721251c481ac9ec751cdbdc08e110011","messages_hash":"08385957f620d0a52d90b02fd33126cef4bc28ff5f86837fb6d3be7d373888fa","transaction_count":0,"txlist_hash":"4f02ef18a644ac564db930818e845496ab0ea3caa34ff70878f0f9f0ef6641e9"}',0,'BLOCK_PARSED',NULL,'a52e098140601d0a51646b28ee48245d670b39797f4656032e7ea6ce8295d081'); +INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59dd49548b055537fe314a36a5912fcef9d43ae306adae3e9c489ffe6aa91588'); +INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"7b57a4d1ce0995a938e174e52a096cc9829a0ddd59f698ed04d8b43371a78126","messages_hash":"bb08ea081f9f395784ff3a7cd7825416edfb81864cec59018260adc70f37097e","transaction_count":0,"txlist_hash":"7716368643d8c6d26932d9efabb6fd6e574c1b13b8f149363ec4b99d9f405435"}',0,'BLOCK_PARSED',NULL,'0383c7cff30f3b1a35484337ca339aac1c44e1734746bf33320a8bd6277cb77f'); +INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08816eda5914fefd265ca59d5e4a6f080d099da04ff4a28615382aa58c3ba46c'); +INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"f46f820a64ced97ccf68a56c048459de0b2855ecd4299e447c4b630913ce1749","messages_hash":"f7a91cceefe49d8855f2df2c50939c1c8fcee740a8a4d5ff418ce7ce6b76e270","transaction_count":0,"txlist_hash":"71375966f9a524c1df04c5033ebb17e4293053f3ecb8e724a2f093b3373641b6"}',0,'BLOCK_PARSED',NULL,'19e37d39c32f4e486883f2632d549be28a1c69de446c686c9b1d1d117dac5172'); +INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'859c425aa271de3ee2c799372e235374458875eb687b49a73f1f2a265ba4a824'); +INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"878239189ae0afa759af5e59db8a17fd17c0c9a2c017384fd2d0ca789e738050","messages_hash":"b730c18506b801abdae97a502b3b5e5dc8f95c35823a0144ccaa290a9ceb9448","transaction_count":0,"txlist_hash":"4ead629f99d32f3d0ef6c5f7ad1bbffa91608d71b815293128461a9b5850ad15"}',0,'BLOCK_PARSED',NULL,'819056fbe445c66a0bf3434fcb0e5e563b4d7ff7e7a044ae95cf3898c4641f5c'); +INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d4c035e305c05883d04365b2e7d1ea36904a8ae924a01a200b3a4b357176274'); +INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d2d86823f727bc075138653a682373a9c76d21d48b5881968adb66042b501e53","messages_hash":"3096cc3bab8d42731e982f34668a9275eeeae9c9a83b9fe0456561ebd93822cc","transaction_count":0,"txlist_hash":"3958da4cebd7670ab3e197b6ff8b5a770dc756dccc1806bdd050513e75e9e33c"}',0,'BLOCK_PARSED',NULL,'e2f536cb7ab1f32a73103c4326dbd3ef401460d3f6d33900b22e7534209fd273'); +INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7117c590ced4e3c6a11802deff6a22e80c4dc6c654ae415cd57ac156b4031bd3'); +INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"9fd098fcc7d71c0c46fc741ea278de92589c44a6efc4980ced53843193553ea8","messages_hash":"3c4a51b4fc3a9c9ef2f01e18d2a12b365ac4d2f0fefae6960d221107c8340f2a","transaction_count":0,"txlist_hash":"f5b2e274c8dda92ac634490b28d13b18d7aeb22fd1a5101c805d3f4265422a7c"}',0,'BLOCK_PARSED',NULL,'3f4c2974e6a5e979e7a99f8686d27f1ee738e0471d6a1b59f6306652e174b931'); +INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'937aa9a176e437cb4ce4ef81d9b94b048fdee27dee1bb59c7ced3ea954e4fb0c'); +INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f1ad21f9b4134bc0225c26fb8969af3565c07997197a7ed9636c01f187f07042","messages_hash":"aa3399ef7fe13c37b8a318f94962d0b1444013d4199c9b7ffc85b2432808d5c4","transaction_count":0,"txlist_hash":"3711ef31e2cc58fe1a9cbcf0a5bfdac9a805f346137b923fd86c65f850b35eae"}',0,'BLOCK_PARSED',NULL,'7e36c40f60a5f8adec71262055555ec0e219fe283bf7495a2924d80f3d7d855a'); +INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1d726206d01c4d7684e8af5f22562bd0d8c7e563e7acee0756cefdb57164f81'); +INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"9a1f3de6b5a255720973fb0c93ae2bc8fe8936565140b8ae991b9d83f86a0002","messages_hash":"be6116864cd2323c91dd504e0c5ba6643a9841aef76d3ae6ac7d415ef3598cdd","transaction_count":0,"txlist_hash":"8e73f7f52266820ca7f25665628e31afc6a5e3dcbbf51bc1bc8635440ecdf669"}',0,'BLOCK_PARSED',NULL,'63efc46c7186a179c030a5e4abafad575dcebc3bc449c1ad94fe0c480b5cbe6b'); +INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28eba97299d6e0459f4dde99f95093bec29482dce10470f29637b89d75f2b08a'); +INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"ab56d9f59575b2d8ecc4933bbfa1fb0cb81c7a6fe84c1ba81bdee40c3da13164","messages_hash":"49b0ba1f0d345b6e60e4e793b6c9e73e0fdf0bf209c9a3c24b0c24d7769f0a02","transaction_count":0,"txlist_hash":"2720a0a338a84ae1b56086f0d4f1b341eb5e3b46e9290887d7675800c6872081"}',0,'BLOCK_PARSED',NULL,'148454962bff8fca30cc8ac76e3521857a60294fd665f1a417174157db3085c5'); +INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea1cb99370239a59da8f9fc75c986320f3504070d7a0b77a46366437187b167c'); +INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"8399d461b5079a145c716f8f6004d2f7870fe93786bd944fa36ef27134c9517c","messages_hash":"d184a05b0691956c7975c2357fa70ef28764e489afea6e0fb9b9ee30ea223149","transaction_count":0,"txlist_hash":"18ee24262532a6a1e49086f1a8ea0161a5c1ae80ce2230f1b76ce782f6aff39a"}',0,'BLOCK_PARSED',NULL,'e93d253421aeddf8e4221b2b064dab3756c516088f5304cf5f970516da79e2b9'); +INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ba058ef8944099de072589bf14a7f376633d95046f4208e4d31ea7167f6f22a'); +INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"b6696a1511704128bbd5ec2c80a1d7d8d3bda6b959f1a674537ace152cb7f8bc","messages_hash":"71a164247eff544bb5d76c3fdc206aed6f8b32f4b7824b05924347d24f24003d","transaction_count":0,"txlist_hash":"e839a4222aad212860b0698214f3d426d065226d1e7983e6620325a583b28abb"}',0,'BLOCK_PARSED',NULL,'35d1129aa7e33edfc55c86b5c6582738fd948194a9160b30ad56179572253bbd'); +INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7914b9aadb3610df2cfa291a8aac908c3b9b0b54833a3559f00f628ff84a2733'); +INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"9aea0f996c36a815e4103b86ee7fc9be784d7c72549e54d04d84cf7fb8adfb78","messages_hash":"3931d114fcb35c51b231f2802a92e41f14c36352664c528cce401ae99b71b99c","transaction_count":0,"txlist_hash":"fca6c96a2d6bbe118c5418a3e2b85dced8cfc0da2a8b46fef65f49e81a459efc"}',0,'BLOCK_PARSED',NULL,'9b8ec9fba0eb129ad45ba2462761b5f482549af4526fd0fabba2e7db68d211e8'); +INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'859d383b86ae7f7d6c7aa74bb0eeaab9a44b1bea15be5244e2f8aa0112637e87'); +INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"7571b554c5600796b60982bb6df3517eed517a2a3627f8383b92a073cc4a5872","messages_hash":"5284736a51bb78845b202630a9b0b8683844d818e96e75d2b5b3a5ddfaa1bba2","transaction_count":0,"txlist_hash":"a168e4a6c3de65e68532d534107bc3033588b2b0d67ae2f5d23b1ffac1a21ca8"}',0,'BLOCK_PARSED',NULL,'9c95271340a05a0d43f19bdac15ce6f057ffc95fbd9992b0cd8ea36c5569ba22'); +INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'370e4f36c207ea6b413369f82e7fd7db3ee00e8422152f4605c20158c18ab04d'); +INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"b2507a73ff4f6998582daac667c457308ba78744e3d1d7533c0232092e3eab1f","messages_hash":"0b7333f33db9510d98e2ca8def735467ab64140060a516e2df91c367d715cba4","transaction_count":0,"txlist_hash":"379aebcf4d32a0480f5d334f5c04629b6ace33bdc5f138907c338eab7b1d9093"}',0,'BLOCK_PARSED',NULL,'2e5eeb4bcfec527c54a73ea3f0eb4a5e7b73427789a13554df6dff8618aebe49'); +INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8763c34b2547f59184bb4b8aef729926bb5fb5abfa3bcdbc9b57e7d282941cdb'); +INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"18566f22ffb9bc5f98712ef3234f8da84f8f3e382007b23c3bb8e6c910043746","messages_hash":"f8deddc029ee14e7198cbc0e1640b9249fc407b9daa38cd8007d226abd118a18","transaction_count":0,"txlist_hash":"b238ccb2ac0b6329a0fc30267fd29e4813bfc786ad871de90c1797c6c72e65bb"}',0,'BLOCK_PARSED',NULL,'8fe957916c9f13776da9eac134b0663afab3feec2ede1c62facfc09fab5e5146'); +INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2749b513e77fd6df6e5122f7e02d7b2d3d38066a9533fceb6e6e49f197727ba'); +INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"72c44bddd5b54657623692e444bf893ca7b6d8da992c274bcbaa37c6db903825","messages_hash":"68c33e1afdc6e1b1780bbf565e7921e894507a1f5bcfc617c0e20a50eb2b2848","transaction_count":0,"txlist_hash":"2736ff0669b8c3cfb5b4ad8f082e23d985cbf0c4ba9990175febf1c02882bdf9"}',0,'BLOCK_PARSED',NULL,'07d13bb0965d07d9dca9e17cbd35ba57afb66fa9755327ab0ba66a832364ec43'); +INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb80d2e5babd6ee70c9e53f41560a913dad31e21966ba28f60b7449c5af39165'); +INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"1ddc441adb4b262862caf5b811b2375bd376d9b5d7b8ee251c4337478833cde9","messages_hash":"ca1a7619ba2ae79805699121cc333fde414c57ec9a390e488e662a3189c3e3a7","transaction_count":0,"txlist_hash":"3407db619adaf80236c8319a7e9283c10a43a7b1717d4d89115ac90e8f52b706"}',0,'BLOCK_PARSED',NULL,'ad0b7c72ffc43a4ce481b79a615e1323b0a64b45d4bbe84afabdf3a35ccf667c'); +INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0073e3f84f19000d9cb30bc73fc7940e52d197ed142310b3fd43c69f8be8c93b'); +INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"b59447846d380cb8d32639ca13e6e396b68b18483f70b6380296bff65dced3d2","messages_hash":"2e0a475cffb88069a2cc4dbb4b12c74b6363d83f39bbb65d5abe1021a17f6ac3","transaction_count":0,"txlist_hash":"e02f456fb1e9b6de38bb9923f6f68973d592ffa04f65731c66dae734e4fd1d44"}',0,'BLOCK_PARSED',NULL,'26c2b8b4b499428b5fbcb31e39c16cc44d90e1ed7394e032e35aaefa07b814c3'); +INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8327eb7c67842d45b943f2fc7549bbd9a2a454c23ef957ac02cef0819a3984'); +INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"54a1c32d20665e7ff92ea43451ff2e59a98136ad7da576fa6b2614dda700b707","messages_hash":"097c6f1f44bc67ebec7cbfdfd708b63baabd73a3146ba1edf6b54dc87f710786","transaction_count":0,"txlist_hash":"5177e82a6aa417664930ecdb0495e108b3fb660ff08a608fa540a29b0c4c2650"}',0,'BLOCK_PARSED',NULL,'4be16bcf6b2bd2868e3e4209e33364b5c33d8c9ff7a5cf37f0d191ef015ca8ae'); +INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3b345e73e0ad23c203187c5b51194ff1c7060b07203cb9d4df6e1785bcb5671'); +INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"f0bef715c366843e002c75992b8d50d82a3ea54f144350f158e862eb03cb45dd","messages_hash":"b73f3c7b7b1e0f19a7d1ba2cc6866dd7ca76be770e208cc6ba7e0c603fd433cb","transaction_count":0,"txlist_hash":"84abe1e98b75d07291ef4b9847c336f787fdcc74f9a2570d23cb8ce396c9104a"}',0,'BLOCK_PARSED',NULL,'ee1592bd3886d746da7b10f82db21038ca8bb74374587903b76aafa22b35e509'); +INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3825ca3884342f2e36b0a3ce9cba3146534019311fd7869340dc3e3ffed331e9'); +INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"0a4ce98b783b97f81fff9ab73d7a7091087e8511ebb425c81ccf60c3f9edbfd6","messages_hash":"86b7353dad0c3fffac641322a7bd882fc52f56199747926f4c328534f5f4c105","transaction_count":0,"txlist_hash":"ca0f3a6b9b2eafb864eb324359d4ad9dd85361a7c7d2833ba6bfd230d0e60773"}',0,'BLOCK_PARSED',NULL,'9f72da95685d9f3cc549b58a014881698310df8b9ce6734e40e0769681ab3ba3'); +INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e390b222ac0e97ebdc8d4a9c4182bd223688546ab3494b9c6f40ea129de35df2'); +INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"f3b6781eebab3a6928791cf281d4ae7cb4f7fb59c6ae7575eba253e6ec6e447b","messages_hash":"dd3c289c76649de35984676df98ce7a261674944cf41c78e74af915a020af2eb","transaction_count":0,"txlist_hash":"283080af19ccbde44c6e268326ddde17fc850d7ca1add3698adb3e606cd984e4"}',0,'BLOCK_PARSED',NULL,'c1dedaba083e67c752d0c8975502bbe63fc0e31fa82c941baa8b64b5f660a69b'); +INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2594960f5a3d922df30d202d9e793917f201c01e89707ebbee6d1d6a3468237'); +INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"14261b6b340632c469847700cee16c0163a7f8cad4dac7ad4555efeb5f3235fb","messages_hash":"78fe875ac35c3758592ec74da5ebd82484347ae0e3c8ed4881e947805619d00a","transaction_count":0,"txlist_hash":"744bcdbcd8d44066eb9528c6fa39109148ea557d3cc3bdb88a818b9f9a9dcb25"}',0,'BLOCK_PARSED',NULL,'318953f7f1ef69a535ca5ad155f28b05c49e21f0a8ea355013dc930cdb9d6fe9'); +INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eb022a07a2e5d1a188ab0b770576cd604a53949de250f6a27a4502abec43f85'); +INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"3c033a502e1890e8a3c697e354cd1769e4300ce7f62ee7ac47a7201e1ad5de2c","messages_hash":"c6b034f77fc0603ddcdf933d1b62c9cd2608a19a97a199e14e01176dab7e8d55","transaction_count":0,"txlist_hash":"c424d1724a85f76a855b4dc834c8b599f764b5095b0649448a0fa2aef1e41d31"}',0,'BLOCK_PARSED',NULL,'a8874ea5e2a63df56261d4000084d4f1f376c144a15fd2a54faaa25eadc346eb'); +INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de0212658eea49a7ffdc4d3906aafc6a1a354c75c4d866ef6e189bf3a4e4096a'); +INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"acc1dc4b7ec10c0989af833b57640be486035d76f74b57a50b023fb60f418be2","messages_hash":"6588649087a15a41d8bc572c8483daa38fb89f42cae69e9058c5ed8c0f0aeeb3","transaction_count":0,"txlist_hash":"dde73fa3b80a8e2d1cb8aa692dd62ad712549fdceebf4083965cb36f692d45d9"}',0,'BLOCK_PARSED',NULL,'1eb30b64cac6c3a142ba2764b798d35cc14c38c48617f2ceda053f85d733a1f5'); +INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84a18507f1e4e316c0061a42e23d94986edf539ecca3aa1b60a48c01acfd9b25'); +INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"1443d97efeeb04291e117b152f1e18537035a59c80fabb574577cb3e66e5db59","messages_hash":"8903f00d95a0d220ef6471ae385a6b579ce5ea829650b352bb98b1b8434aa154","transaction_count":0,"txlist_hash":"a52c247beb178317cdd18532927c8281abe3af9914c676cf250084d4b1e96762"}',0,'BLOCK_PARSED',NULL,'e0b39a0d32a267841c013e63e677c9ec5882dc70c2e839cbe86c03c94ac77c36'); +INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3521a33e8c30111fa1db225926a6d4f8d29731559f08e1099bb2aa7846b57ad'); +INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"1c74208da191b965f52006e577c3f4df30f29b36b1d137ab457bbfe30737285d","messages_hash":"1d0ac0a9afcc74d1940fb96a15b9c256a847e2bbfca44b6724582f3153847d07","transaction_count":0,"txlist_hash":"693d04e9be7d9de1aee3cfe832c6d913213bbf44b0f04a5b394e1aceb77b7b49"}',0,'BLOCK_PARSED',NULL,'ff3682f12450c552861282ec16b8369e5ba710bcd7a269d9194e63be88d104db'); +INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2533aebb99724189593a5215bd0dbf77b7386a380c806d3f90b677ea29fa95a6'); +INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"662e1b232c5afeba4df756a31d7b63f7f33dbb4aa752abbea9f0b57f1c7c4295","messages_hash":"08ce8e7e7278a67d7a7b525a898550f0704cacee2ddffd06ca8a9ba82cd01b36","transaction_count":0,"txlist_hash":"bce25b4036b54089a064c1fd781923787126977938ff3c206f0a8d76ddf52489"}',0,'BLOCK_PARSED',NULL,'7dbb1e124734e1a1daeb92763d9c93bef762fbf950e577893e266930a55a576d'); +INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19c7ab4a9b3d53b13ee44e05acb8bedfcb8263261d76eca422f1ae1613615942'); +INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"8a1b60657764a35ce95c9e215600f63f0fc8c4933c682ea017553010743c97a2","messages_hash":"ec7c4e83f9b0e1011862ce5421dfd8ca94c79ea422ee5c77d62efbab4d6e07b2","transaction_count":0,"txlist_hash":"0d0259b0c4755aba3d725283f1773bdd766a0ae009f2b94be00a5589b61ef8f5"}',0,'BLOCK_PARSED',NULL,'e230a37c512cf039bd9d834a7e98c53a07524e00c56d3ccdafe19df0b8f5ca33'); +INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7274fba52e1274e82088e5efb2ed3fd304715a063b3fdd8b3982fccb5941cf12'); +INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c2e25d20f3c50a67a4268d9aa3e386c92e5217cf8f106d2affaae19e49b48828","messages_hash":"86a2e2d74f9bab3f7e5c2a92385ced78332b792eeb786a8a5830093b6bbaf8d9","transaction_count":0,"txlist_hash":"32c25e6b70ffe5ea4582a7fd8bf8c892d4fe0afb247e3aca79686e5b5ce9e430"}',0,'BLOCK_PARSED',NULL,'e636542aaf8449f7d472fd728bc4cf839118946cd5b40899f62b7ed4e78eddc0'); +INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cadd3d30ad60354a9bbecfe710da50ca1e17a821540a85ad894e46fae41911e'); +INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"bd7479caeb388072138c99d19624e495200df1bf02f47caf0ae8a5007fd9dfce","messages_hash":"406eb03b3ae001f61024cd239356705095e1a66b9399c0e3b4ae90689f565f90","transaction_count":0,"txlist_hash":"0fdf6d97b6a63f690d30aca13e27aa4cd6bc3ebbf525cfe6f6eee3ce529dfff4"}',0,'BLOCK_PARSED',NULL,'ea69f4cde700ef37fe0a7d18eb2f9a57a2a942e49b163ea2aa314b83e0f6a1b3'); +INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'775eef3237fdb10a4c7acbdfcaad88d256d8be683bdc76eb26392d1816a794c8'); +INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ddb8394df96a37e0127c8894e669072cb195ac953e2a3e922b95bf40804820b6","messages_hash":"e686f294e7b2c37fe3b5b23ef946a17f1be14945d349550afa083fc02d9314c7","transaction_count":0,"txlist_hash":"8cd686429ec5799fb9a78d07d662c5f51431c6d79691a45c109d512d261aa5df"}',0,'BLOCK_PARSED',NULL,'7bd51531ace1384453b02bdf209fc10b14fa779f964494dd28db0375637d59a5'); +INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f73ba46d39b77f14848167069dbd811b20f8e36724df6ddd5f5b66b27ffe5442'); +INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667","messages_hash":"8d97e6692ae1488109eb75f96eaec5cc775f8aa9fcc1ef1bbd0a95a46e2264f7","transaction_count":0,"txlist_hash":"b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1"}',0,'BLOCK_PARSED',NULL,'aae5387ca31765ab627da5ecf381aadba61fb8d50dbc01193209b4b2663a6c44'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql index 099c68357a..197166e5e1 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql @@ -152,30 +152,30 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'5a1dd4e714aefe0a715c2b0ea6428c2e10cf3d3e3dc7e740cd0877c1e4edec24:0'); -INSERT INTO transactions VALUES(2,'eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1,'ba510a377d1e3a7b8ef283dbff7b885f86b7ae606773a85915618aacd3ff19ca:0'); -INSERT INTO transactions VALUES(3,'025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'56bffd88516cfd0d35b3c4fe49592a213cc276b1af94c73d4254f689dc408946:0'); -INSERT INTO transactions VALUES(4,'c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'db6a3690de6726ffb0fbfdb3e15c890ab7619b967b60b9e8434605070e0264de:0'); -INSERT INTO transactions VALUES(5,'b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B025CA2C1784CA3C9389B9F227A5A04445908337E21E2EF9411C890E20AFF61C0C6881F7505BD7FE0742C2CE50490E21431705BF2DF4368BE43F423FA0C515AEE',1,'85a2ebf947069bab0041ce8cdcbe9f0252300f8f02f46b5a8c688d2ca40f74a8:0'); -INSERT INTO transactions VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'adb8634c149c3b6052a0ba9800ce5fd4deb634cc1081ecb64da04a0c136ff9ab:0'); -INSERT INTO transactions VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'8c154a6d6b271e4a1d2778871fcba2f45cc455b1260f79ea08e031b9ad79c727:0'); -INSERT INTO transactions VALUES(8,'e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1,'51d85687c1c89962f2676b6beb0374e432835723638250959cc084f37ff6da88:0'); -INSERT INTO transactions VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1,'6663a90d7ca7b4ea4ca5bf8c409457230bc427c7fc6a5d0fecba5ebb7a6758f1:0'); -INSERT INTO transactions VALUES(10,'cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'b0ff0b363dfa94369ca5a5c66e1cdb0b4417d879031471cbb14a371b58d26f99:0'); -INSERT INTO transactions VALUES(11,'c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'f723e723c8b285dca6cb5d4ab84ad48be13f56e1f664d6b6a14833ca440019cf:0'); -INSERT INTO transactions VALUES(12,'0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'1d08e7f0e0844e03e7ca4db4990dd81ba00b39cb05ab13aaf69fc990592f0f64:0'); -INSERT INTO transactions VALUES(13,'c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'62a77d25a0ce892f3de8300271ca730514c843ad2e0d86cfbc9a0b092cc46bc8:0'); -INSERT INTO transactions VALUES(14,'23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'2edaae7a61984f1fb31cdbb4513d8523f5b5ff7feaa86390bc32b3463c55b656:0'); -INSERT INTO transactions VALUES(15,'a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'36094f1d95f27bb5e6cb42a8174cc0fba3f39905d6cd6ac2140273c73d55e04d:0'); -INSERT INTO transactions VALUES(16,'6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'e422a810d19bbe9a4215c706193e554053f06d80d74ab60aeaa519d01f2d8abb:0'); -INSERT INTO transactions VALUES(17,'91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'bf409565cd591e16a2102fee4781a64681cbc79982ec5526ee17bf31c7a4403e:0'); -INSERT INTO transactions VALUES(18,'c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'b7a480818948d8910e2cf2e6475aae1072be41ede27832fb8f99e3f14169f67d:0'); -INSERT INTO transactions VALUES(19,'c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'86676313d1f457055a16784cbf7dc0c9066499ed114d72535379ac4f9ca398f6:0'); -INSERT INTO transactions VALUES(20,'c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'3b7b4a98830381c9af4bda05e9520bc30013663a4fb71081a094e1017c6cc7ff:0'); -INSERT INTO transactions VALUES(21,'54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'0f06ac488c13977713320e18f2c2ed82d6efce5eefc2988cd4b2e4bd1220dddb:0'); -INSERT INTO transactions VALUES(22,'6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'0b84fe823c78ce33db02a287f480ad6c2dac38de1bca142b10690dddd06b9429:0'); -INSERT INTO transactions VALUES(23,'df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'fa714c345a1ad0cf699f33c9572c70e3a5d96c16be2ddaf0ad0a8580e99a3ede:0'); -INSERT INTO transactions VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1,'64b128fe57538b87e472586bc2efacc0d692f07bdb4bc4868ec66c3f2061b109:0'); +INSERT INTO transactions VALUES(1,'5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 5a1dd4e714aefe0a715c2b0ea6428c2e10cf3d3e3dc7e740cd0877c1e4edec24:0 2 '); +INSERT INTO transactions VALUES(2,'eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1,' ba510a377d1e3a7b8ef283dbff7b885f86b7ae606773a85915618aacd3ff19ca:0 3 '); +INSERT INTO transactions VALUES(3,'025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,' 56bffd88516cfd0d35b3c4fe49592a213cc276b1af94c73d4254f689dc408946:0 2 '); +INSERT INTO transactions VALUES(4,'c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,' db6a3690de6726ffb0fbfdb3e15c890ab7619b967b60b9e8434605070e0264de:0 2 '); +INSERT INTO transactions VALUES(5,'b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B025CA2C1784CA3C9389B9F227A5A04445908337E21E2EF9411C890E20AFF61C0C6881F7505BD7FE0742C2CE50490E21431705BF2DF4368BE43F423FA0C515AEE',1,' 85a2ebf947069bab0041ce8cdcbe9f0252300f8f02f46b5a8c688d2ca40f74a8:0 4 '); +INSERT INTO transactions VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,' adb8634c149c3b6052a0ba9800ce5fd4deb634cc1081ecb64da04a0c136ff9ab:0 2 '); +INSERT INTO transactions VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,' 8c154a6d6b271e4a1d2778871fcba2f45cc455b1260f79ea08e031b9ad79c727:0 2 '); +INSERT INTO transactions VALUES(8,'e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1,' 51d85687c1c89962f2676b6beb0374e432835723638250959cc084f37ff6da88:0 3 '); +INSERT INTO transactions VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1,' 6663a90d7ca7b4ea4ca5bf8c409457230bc427c7fc6a5d0fecba5ebb7a6758f1:0 3 '); +INSERT INTO transactions VALUES(10,'cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,' b0ff0b363dfa94369ca5a5c66e1cdb0b4417d879031471cbb14a371b58d26f99:0 2 '); +INSERT INTO transactions VALUES(11,'c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,' f723e723c8b285dca6cb5d4ab84ad48be13f56e1f664d6b6a14833ca440019cf:0 2 '); +INSERT INTO transactions VALUES(12,'0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,' 1d08e7f0e0844e03e7ca4db4990dd81ba00b39cb05ab13aaf69fc990592f0f64:0 2 '); +INSERT INTO transactions VALUES(13,'c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,' 62a77d25a0ce892f3de8300271ca730514c843ad2e0d86cfbc9a0b092cc46bc8:0 3 '); +INSERT INTO transactions VALUES(14,'23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,' 2edaae7a61984f1fb31cdbb4513d8523f5b5ff7feaa86390bc32b3463c55b656:0 3 '); +INSERT INTO transactions VALUES(15,'a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,' 36094f1d95f27bb5e6cb42a8174cc0fba3f39905d6cd6ac2140273c73d55e04d:0 3 '); +INSERT INTO transactions VALUES(16,'6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,' e422a810d19bbe9a4215c706193e554053f06d80d74ab60aeaa519d01f2d8abb:0 3 '); +INSERT INTO transactions VALUES(17,'91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,' bf409565cd591e16a2102fee4781a64681cbc79982ec5526ee17bf31c7a4403e:0 3 '); +INSERT INTO transactions VALUES(18,'c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,' b7a480818948d8910e2cf2e6475aae1072be41ede27832fb8f99e3f14169f67d:0 3 '); +INSERT INTO transactions VALUES(19,'c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,' 86676313d1f457055a16784cbf7dc0c9066499ed114d72535379ac4f9ca398f6:0 2 '); +INSERT INTO transactions VALUES(20,'c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,' 3b7b4a98830381c9af4bda05e9520bc30013663a4fb71081a094e1017c6cc7ff:0 2 '); +INSERT INTO transactions VALUES(21,'54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,' 0f06ac488c13977713320e18f2c2ed82d6efce5eefc2988cd4b2e4bd1220dddb:0 2 '); +INSERT INTO transactions VALUES(22,'6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,' 0b84fe823c78ce33db02a287f480ad6c2dac38de1bca142b10690dddd06b9429:0 2 '); +INSERT INTO transactions VALUES(23,'df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,' fa714c345a1ad0cf699f33c9572c70e3a5d96c16be2ddaf0ad0a8580e99a3ede:0 2 '); +INSERT INTO transactions VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1,' 64b128fe57538b87e472586bc2efacc0d692f07bdb4bc4868ec66c3f2061b109:0 3 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -513,352 +513,352 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1,"utxos_info":"5a1dd4e714aefe0a715c2b0ea6428c2e10cf3d3e3dc7e740cd0877c1e4edec24:0"}',0,'NEW_TRANSACTION',NULL,'ec843c72f0a1f609ce60d8876560100a721c7fda7a2cadc1732ee48aecd3f7ca'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','c342f6acc927cd0c65aefe04733179780a67aedf5fe69c0101c043e95f1ad275'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1}',0,'BURN','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','2940e5d188dd6f67d631441917b52613d5195b263efe3f3c04b432a356f148c9'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"a16ae7423db132c887ae41cc33b7fa48a0cc6571d5a49e0963be25ec8a9769b4","messages_hash":"2f1739da6af89a64a270eb18f33e6b1d96587b44c2621ac4e660892efc5c182d","transaction_count":1,"txlist_hash":"b8fb4fb649dd315851564165b076d636e5a85e043d59c11877bdccced38f1b3e"}',0,'BLOCK_PARSED',NULL,'c7a331e2c9dcea0d6260cbf8af6b9d8657071d69c3e8ccfc2663fd1ee26a215f'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d088ffc8957c7d1ce3be94d8f1dcb3f3d2c6be093cf4aca8e95e10d8a4ea9516'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2,"utxos_info":"ba510a377d1e3a7b8ef283dbff7b885f86b7ae606773a85915618aacd3ff19ca:0"}',0,'NEW_TRANSACTION',NULL,'f1af9838aea6875a0b0f5f8f3b69125f810cb735b7a1c0e3a6ccad686ced24f7'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','9d16678660133a3c04915eb274142800e14615cffc50d63003f31c3d0df59953'); -INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','c7caa2308f6c92bef36f362fbba7570dbcbc92649ab2f2cd358393f388a14ede'); -INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'SEND','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','ad31ac029ee18182ea87646ee6a8bc88fe66932ce72701fddc0ef0972daaabd1'); -INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'TRANSACTION_PARSED','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','02ae309c92680b8d76cadeb5eb30269b9933bfa6f56984968a5ff3637e79dc50'); -INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"0cda5c4a26f0b23d5b948142dcd226b2718c57c9c6a481250128a7a1c8ad30dc","messages_hash":"e9deaabf7fd801d95ffee56908c3914de322df83a1144013646e6187bb27cbb3","transaction_count":1,"txlist_hash":"1c009ff73127980e51ba6a7035bec5c2a9650b5a184da1d55c3d807fa658f8e7"}',0,'BLOCK_PARSED',NULL,'2dd7991ac219ddce5cff9fe307b2790e22d9cad14ba7f2b7984429b3463f37bc'); -INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3c27ff8d8aebcdff37565e7f33f585d0caac4c39f6f9452a380816422ec038a'); -INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3,"utxos_info":"56bffd88516cfd0d35b3c4fe49592a213cc276b1af94c73d4254f689dc408946:0"}',0,'NEW_TRANSACTION',NULL,'efdaaeb6b05ca34b9b26991f059cfb59f72be3592e22f4ff872ceedb92bab1ff'); -INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'OPEN_ORDER','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','8ca0268e3f3b3a8357f32c4ab070fe82955dd2fbcc91ff2eddf9a41bab2b5cd1'); -INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'TRANSACTION_PARSED','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','b1e4af96fd68cb223716e9c2bef6c0a76415e80f5f0a6d946d9c929c45dd1cf3'); -INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"657c31576766cf1f8a699a14e6c7493498673f1948bea1be4f639247f4d52d53","messages_hash":"6e9bd4b7b0149368c0454b12e392ce277bede7f11ac07338bc4d199baa4606a4","transaction_count":1,"txlist_hash":"c674bb5077acb71ab19a6a4a8f779015846135e7b93a5006555fe1f4ad10c58e"}',0,'BLOCK_PARSED',NULL,'c36c5dc14582b5661438ba4a87464f0292f2b9bfc45461be5aaf51cc649b95c5'); -INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cb829ababbd494f40fa4b353474d0a70e32db827e021b7901cf403cd2ab73d'); -INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4,"utxos_info":"db6a3690de6726ffb0fbfdb3e15c890ab7619b967b60b9e8434605070e0264de:0"}',0,'NEW_TRANSACTION',NULL,'650c44aec476a217b3acb001843a2587857d5996aea5c09cba2328daa6790c41'); -INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','57c685d1247cc1515ea3fc87788ef782a87306dd6c963efc427525baf503e279'); -INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'OPEN_ORDER','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','11ceb59f1955c32b5600ced078d10a573acaa62235c5e69afdcbbf55d07bcd76'); -INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','7faa1133a8e6da16ebfa0dd6b50a9f2f85a77d7fe23cc29b87a160c698438730'); -INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','1ceb96306ed52ae8df8fc232fffe3943f5b8a62746fc2bfd8070bb71839a25b3'); -INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx1_index":4}',0,'ORDER_MATCH','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','fdc9d1c6be22e8c52042fa36a7f0fc2df17c491c36710b56a6a98ac96cf75727'); -INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'TRANSACTION_PARSED','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','fc27f5972499d271ff44f41f42ae16053bdb1b8834e46cd4c994298a2527a9e0'); -INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e11e7eeb21ff539c27324c94a407dc6f04c739f3ed9841f9f661bf4441e4d847","messages_hash":"35acbe7c58004be5eed9247725e54a9e62d9c12d1819f476b96438fe89ccee24","transaction_count":1,"txlist_hash":"105a5c9915547d3ebfe733d284d6e812cada8e86a904510fc196e2f0af5b50a4"}',0,'BLOCK_PARSED',NULL,'387b23ef13a912cc5ac2f6135fa7527953068f85e714401bcef31b70896a2303'); -INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9da4cf054046ea8c3ca603b2d0e40100f7d8100beb56887c0085f5708e3c4b75'); -INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5,"utxos_info":"85a2ebf947069bab0041ce8cdcbe9f0252300f8f02f46b5a8c688d2ca40f74a8:0"}',0,'NEW_TRANSACTION',NULL,'02e15d7c7ec9cd648eac86699322b7b31f66999777c2200548359a74270ed6a2'); -INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','3dee833f9acb5ca5419f2bf64a1d3b379c61956003c910cfbc2c081f88a9ff0b'); -INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","status":"completed"}',0,'ORDER_MATCH_UPDATE','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','44eb2dcbf051ab2501ddfce0465e54cf2ab17e65b4d226a907174615b804af33'); -INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'BTC_PAY','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','67af0330adfa5654eb03754932337e67efd0608b7f52d3d45933d848dbea2d68'); -INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'TRANSACTION_PARSED','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','c1f209564be8d40f575a368bd137de8ab8b9647a94f535a577de1a611766b710'); -INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"2742a3e99eed62c09d9ecdaf501aa69b0d0b21fc092ca061448d5016957f35e0","messages_hash":"4511574655e8ca48d331335647f4867eb537696f16a1e1967aa0d5eed9094011","transaction_count":1,"txlist_hash":"369b47f51b512708e680edc5ba459b91e2a514f5a5c7cb8435670a4b3ed34dbe"}',0,'BLOCK_PARSED',NULL,'6b3e222ccc61b2be62dd49de5d4723c5b93d6aea2fbd5bbf8b96bbcfe57cb5ad'); -INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4561b2edb90eff7006c0b5ca689cc2f04f8ccd6b8ddc5508b198fa05c1eb7ecb'); -INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6,"utxos_info":"adb8634c149c3b6052a0ba9800ce5fd4deb634cc1081ecb64da04a0c136ff9ab:0"}',0,'NEW_TRANSACTION',NULL,'9f212b6004e4b96aaf50aa94a65c248e9913e55ce5d094faa49766258b5e4443'); -INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','9ee11d186f7ba988894d88ee57246c732c3766ce38cc827d698086a581fc40da'); -INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','c01e72bbed0924c202c739b8d321c12a8d1537373c14d25dd77a02d92c7d5646'); -INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'ASSET_ISSUANCE','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','7c60c7116fc2b2be1ea660b77ef5aa481ef4d74522982e9f6e78fbe1fd99f575'); -INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','5ceba8ab01a6cf5dac53b1145d4e7079890e5c993e9eb4d55d04c10a90826a91'); -INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'TRANSACTION_PARSED','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','63f36eb3b3d62210b42258185709b744d6e26c42c012930d54bed788c6b37eea'); -INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"49f526a56f21491c797e8e2559f722ded6f6990b1f69c55dc38791d8d30f4048","messages_hash":"568c98891837d627aece7b98720a3c2e84ffac264b920c6a96c1bd3c2f839df4","transaction_count":1,"txlist_hash":"f0c2ddd7c39b14fc55d8518c65aa0811fe7807ebd1eebb4b66df8459f9e5352b"}',0,'BLOCK_PARSED',NULL,'a7395801319a6092679df4ee128cbda2f2177da4af2cd5dee790f7524086bdb6'); -INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c49f4b3dce2aa296e87faebe6b19707853dc0401ea2d0a07ac3cdeb30cb09f15'); -INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7,"utxos_info":"8c154a6d6b271e4a1d2778871fcba2f45cc455b1260f79ea08e031b9ad79c727:0"}',0,'NEW_TRANSACTION',NULL,'53c50a8a484e41956773eb8a5d62020140662398e90f7fb9ef382ea34aef4e42'); -INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','0a5f8d0421d706516388e9dadc57c44b1f99d6553f69160150bf86cdbc3c3326'); -INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','f5ffa8f186a80361cb14ef4cc13829afe538af471404dc03031939b3a5a20800'); -INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'ASSET_ISSUANCE','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','ef113184a5e3af4f18f4c434f297ed5d2624e72b39f59f94aadf76e6d87e99d0'); -INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','7265abfd9df8e3126573839203856a1644d0e8f3a10bf6f3c8685937a44494b4'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'TRANSACTION_PARSED','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','08966e8be9f86c47b4a754b7e68fe5d9fbe0fb32340bc382f91e4a07597e3130'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"78787c4c9537fc4db5d1dc7d31d4fab6b445d57021aab1a38d4bd6a9404713c5","messages_hash":"616a0d9bd0a91eacf780f74d009873b90c573644794634ebc9e956fdbea9a76c","transaction_count":1,"txlist_hash":"877117b3bd10ddbe6e46f417845085a6bdecd86a4961b99c80e991b4c51e0f5e"}',0,'BLOCK_PARSED',NULL,'4f035d2c60a021168ba81258ea9732f983e55bfdd0a70eb342b273c11f728778'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af6e1cbd088ec598455ef0ac0df917b0e8772b9c8187ee97eace56236452617'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8,"utxos_info":"51d85687c1c89962f2676b6beb0374e432835723638250959cc084f37ff6da88:0"}',0,'NEW_TRANSACTION',NULL,'58baa2a0533b9b177a4b773bd55b23dc4daf12be0c2984948fb7fd3fd31723bb'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','62122ef307fe04643e7aaa92123747d16d38dc4908035071ad65cb3afae32008'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','34ff9e9755372676f4396a939fa87d24a15733de4eb6ecf22f3d2742f4c17f63'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'SEND','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','dbd4c418d534d28910866e3d79d8f181d2c8b09547193760579e56418f255a31'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'TRANSACTION_PARSED','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','c807f7f3091488d60d76e477bd69530999a812ce8d076208cbdde8583b1c46d7'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"5cc2599b63007433426c220c59a777b5c37b1165595f2ba239c3ce578c8055ab","messages_hash":"6812e7237e054268ea52058fcefef3f801d36bace225eb6d3fd95c93696c1a2c","transaction_count":1,"txlist_hash":"702a5772ce8529995f7a66a244e8be495e3f7cbedb7b09f47e3d5aa941c7f4c1"}',0,'BLOCK_PARSED',NULL,'4b7024d1391515a644130f4720e3be0789c815fa2de4d88a74cc6dc5d730c298'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd9d6d24e4f6adaffcb4186a1f7dc8fef80912489cf3fb33693932d2416e78f4'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9,"utxos_info":"6663a90d7ca7b4ea4ca5bf8c409457230bc427c7fc6a5d0fecba5ebb7a6758f1:0"}',0,'NEW_TRANSACTION',NULL,'93f48c6a7a447a53ef0c5ae1924a8a6895c9ab66817a01fcce08ad93129e5c19'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','59b3b209121cb1cce63df1e9cc4feec90f95d9af1ebe2b7dcbbe26a6e7db1d5d'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','ecbc87450a6e007cc9f727a014f24dd10ccd86885ccf727da417d333acf13dc9'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'SEND','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','9fc2409dac3e7784b3145429547363c5a48ee52f6020fd1e0501d2985d257904'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'TRANSACTION_PARSED','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','3c67e92f649598fe35f09b905fa4eea8a8b80214eaf9e3c0b9538a3cee726996'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"9550db622e679ff3d63d814f9ffa743d57eb12491b213ef6474617a6c738c3fa","messages_hash":"4e94d7dadd588f5cbb2a3bfa338879bb835e63e0be3f29cc63fd7c9df3e6cb02","transaction_count":1,"txlist_hash":"6c536f7ae10567cbd91945e3e958640e6c65408f83e4a1d93e705950ba39de1b"}',0,'BLOCK_PARSED',NULL,'17563a82c00b5e690cfab4d69c680a08e9d545cda75294730148cc5bcc4e08ad'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a881ea3696dd2619be04336eadcdca80868451a0de5b5bcb3b173d67a057904c'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10,"utxos_info":"b0ff0b363dfa94369ca5a5c66e1cdb0b4417d879031471cbb14a371b58d26f99:0"}',0,'NEW_TRANSACTION',NULL,'0bd7c08b474d6b66e15c3d107e09cc37e89ab8e29027f83c82a17f3a411f2ddf'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','eb5604c65827cc866a192b92132cde69d31d99413e41dc76205b9fa661011ded'); -INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','0ed542ffd5c8de2a6eccc4c587e179b3f80448148735ed1301a4b196e0510d3c'); -INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','8dae99c2e5f22d08b30c02b1105fd0dddf4370beb10782dfc386952679010b8b'); -INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'ASSET_DIVIDEND','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','ff5f700d1882e84fc26c663d7c4908ed530a361d52092565aec27360f91ebc7c'); -INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'TRANSACTION_PARSED','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','4ace899803fea5da2f22478bd0a896a27148ce4fb2d6d332981da6b22cf8965b'); -INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"08c005dd5bae7f21ca27803d75318ac4b968c6d4dd2c275ef284c03fea43b189","messages_hash":"276a777ddf31320752e501401ac7cc87a15c6ce1495f1f6d4dabcef1126204d1","transaction_count":1,"txlist_hash":"8f8156aca3441754221fbf9cc21b0e7d877a533e00f63950be3f95d0a9305433"}',0,'BLOCK_PARSED',NULL,'bdb98a19297023402cafc3dcebd7187a8e53249dac8eaacff6ceafe0b58879ae'); -INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0fc97086cf37ee506a31da6bcba1bb7f9fbfcceb8040e92cb860bcbe44cfa14'); -INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11,"utxos_info":"f723e723c8b285dca6cb5d4ab84ad48be13f56e1f664d6b6a14833ca440019cf:0"}',0,'NEW_TRANSACTION',NULL,'5d37f6d58f42f0829a110a47dc3c43a477bd99fff27c00da30af475257a1f165'); -INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','179e1e1cd110d58612e3865d87813dddd3d685ac02685a4aa26f1c29edde65f6'); -INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','ca15a87f896b9ca37bc95d3f1a8ce029b0499d76178f7a37b899ea6a950beed7'); -INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','fb57a312a5b987647b3019b52098260114b1994d17fba96c864a21f4f599a6c4'); -INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'ASSET_DIVIDEND','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','7279f92b4ecee34a5b66eda4e3f321a76e1d56e91c5cbee7c0a4387ab5260238'); -INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'TRANSACTION_PARSED','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','dee7a98d0c6ffb1d79047f1bed453081dad99680262a9d27bd7040858f162913'); -INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"07f48634d06e6be1d800e068cd213a648517fe167ed89c355d9db966897ed7b0","messages_hash":"89068f2acf4a0563d3d3f344fbe7e4dd63de7750c3a9a39b44205306fc404565","transaction_count":1,"txlist_hash":"c5956a9750e786639ceb4a252a219afef6abb753037888c90ebf17a5c5db079f"}',0,'BLOCK_PARSED',NULL,'a7dea40ff3aef58ca6c1b36fcb6d35eb7c6fd6e074dc77c599d34685f6ed64fc'); -INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a77c857f4dc4b11453a62f445ea8d1c8359b32ae62043d5504518272a66cdcf'); -INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"utxos_info":"1d08e7f0e0844e03e7ca4db4990dd81ba00b39cb05ab13aaf69fc990592f0f64:0"}',0,'NEW_TRANSACTION',NULL,'9c6eb01ac2b6d55688e9922c2d8c85fe48986f08a8b009615c73d5f03becd885'); -INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"value":100.0}',0,'BROADCAST','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','eadb543ac4675362fee5d82c9ebda0a393641773eae50a1f20e5e768776069cb'); -INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12}',0,'TRANSACTION_PARSED','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','bfae5e2f68cf996beff4b7be3327deddeb86d5255925982501123605f2492f1c'); -INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"8d0be0b3731bdd0d611e81b48efa6c706a983990f31bc563d57893f705b73aa7","messages_hash":"108d8251dae0667820f5aec7853c9352b69ebbb1ccec0e2ce3b9d845111fe9f0","transaction_count":1,"txlist_hash":"219d47523246e5c4ffa99ae9c29bdcfdf9f419bff3d21da76fdc91cfe99fc28d"}',0,'BLOCK_PARSED',NULL,'e4904afb2682349afc4137b61464cd6472783bc4610b55d019e373969b5c4253'); -INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'057e24e59cc4bfee5d3684f58920a1061b2cced482fc4f1f8a3b4f2f1caf1ce2'); -INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"utxos_info":"62a77d25a0ce892f3de8300271ca730514c843ad2e0d86cfbc9a0b092cc46bc8:0"}',0,'NEW_TRANSACTION',NULL,'a5c8a8c01d31d7601f74a6ad8fe30e7aa76eb4ed3510891c401a56b6af385feb'); -INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','ff9ddda0ff62005f5fc90b6a21987b86fac78703b918c9369de61ebecb7d67e0'); -INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','5ee94df8b89e6dd905ff3d88a7fb5bb8f334f46bf2cee6df5f557fde4d43ada1'); -INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13}',0,'TRANSACTION_PARSED','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','656904c4fc2081bc12101cf8f90de731689ebfb77f112e0e1a9ffc17a21eafa4'); -INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"e3de05180536ad40eb9007f19ccb819fee0586cb9e7c414dc560e506ae5c09b7","messages_hash":"b4422a845b0561883b59a4f9b510b5d280fc096482796017698996356d61383f","transaction_count":1,"txlist_hash":"ce6072bd562a52051fc530ec552aa343e4980a1b236f1cb8318c415d3eb2e851"}',0,'BLOCK_PARSED',NULL,'852a1fe3e871ea1ebf78f220fd16d7598cbb19ceb8cad3bb0810f0985c5c0374'); -INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce1d20285090dfcd1d4128931702bce6ba6faf3abdf586067a8dcb2edc5b218a'); -INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"utxos_info":"2edaae7a61984f1fb31cdbb4513d8523f5b5ff7feaa86390bc32b3463c55b656:0"}',0,'NEW_TRANSACTION',NULL,'b20e87d3f2bb93f074812b773584b930e6e8b1a372fcad9cd284c590a0056a37'); -INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE',NULL,'eea9471bc2cadf2f069ae622a0718d0a7ac24541f801323e778694a0af719742'); -INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'0f7d5f96e8755973b87251c75ed565cc83bac7d25d4241706f4aaac85a911b9e'); -INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','34646b63f8e5e60cdf5ca4dcb72d4b1b8a7702c267e29cd5782667cd47de5d5a'); -INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','5e3d91fbdadee11ae7dfac01d2d9f6912775f8fb79b8f56019985f80411ddab0'); -INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","wager_remaining":8500000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','b1d2c3b848e438ce1fe0c1937a637cd09152c61a9cdfeec9dbbc4e446c2e566e'); -INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','827ab869a5ad40eddbcbd5843a6740f7eaedb90173dcd01ea0edf76ae52d3d1c'); -INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","wager_remaining":4250000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','31cf42e7a15475653c227b3be2dd8ea0a65238c35e5e96180bda5d6ca3f288fd'); -INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx1_index":14}',0,'BET_MATCH','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','083a5e3a524ff9e3f5cbb55de915d2c8a6488bc240f53361a64d4bf8d668cfd6'); -INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14}',0,'TRANSACTION_PARSED','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','b9b94f57c63054bcb9efb4d4fb2d15e0dd9feda9c93b98a81dbbaf33cdb76dc8'); -INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e521556db091cc726fb38cbebfd10923e37dab652c51dca73a646fe5bd81bb96","messages_hash":"04c93ab3e40fcc757d95d7d988100af4f8a3b8030dfc3bca00266e58e13c4f59","transaction_count":1,"txlist_hash":"1a1e24f2debcd4b5b1e350a71823758d3114335ac831367bc91c9e487b94c65c"}',0,'BLOCK_PARSED',NULL,'4c2e1fe681004ee246f635d41f44c673dcea3568b71001cd7ba58ea48a88efc0'); -INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cda397b9078a9ccd1dd08272151befa339cb0b101c944923942b5ee4afdab98c'); -INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"utxos_info":"36094f1d95f27bb5e6cb42a8174cc0fba3f39905d6cd6ac2140273c73d55e04d:0"}',0,'NEW_TRANSACTION',NULL,'d792f63b973ec9c184d24bc5f4630a64185a3bdf25f1987f13ab11c67fc41397'); -INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE',NULL,'a3c9e78ded6e2fcaf97b472684a318254fc99e8926f685b4ee4c39998397a136'); -INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'2ca31cc0c05a2cc178703bde22c943cb89fc355b21a46589a36546acb2bd4829'); -INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'ce484a9d3afd2cd74966d35ac587ae26aee67df6e64eca38c41d8e12b9244400'); -INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','7f2a246fb07bc2226ec2702d906b589cda9cf3403245ce2ecb3c298aefaa3ccc'); -INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','f2e2e85734256a8be32600bc53562bb17a292f2754e1a68386827d86bb50b3d5'); -INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15}',0,'TRANSACTION_PARSED','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','5d9ecf9655e3e74636914a7dfe83def8d69ec49d5904deb834c0cef85853cb53'); -INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"1cd6d92fbbca9266135a35f20a4328d510c8d209ba6161dc8c9e9bfa69032c57","messages_hash":"20ffb72682c5b27ecab3983388e6c375dbe0607f4c8f5e3dd070e00b7b58e37f","transaction_count":1,"txlist_hash":"80ee1bd354b8e1aa1c2f57926fbd36c0d9e2dbd3f77d8f2e43d59b29bd8175a6"}',0,'BLOCK_PARSED',NULL,'0649e60a280ade0c41daca1a8ed4f66772472bf747f35255da7c7e4f80d05197'); -INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c875bead17d47b5ad54370da5b0d4dd50dc5c358ae068a6bfd8208b08dbc8a0'); -INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"utxos_info":"e422a810d19bbe9a4215c706193e554053f06d80d74ab60aeaa519d01f2d8abb:0"}',0,'NEW_TRANSACTION',NULL,'26e329bc783db487c57ccd9b80d6602ff99ba2a9921bce3ca99a4a6c803b6757'); -INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','398542d32f50fa25148932ef96baf79a26c67789dce19786801ec95c4363dfb8'); -INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','55c0ded5bf1bad2fd46fd641b24434d2012cde9a2b08c2f34e438e7709b078e7'); -INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','e3f5d520bbaead8e1e9dc89ed45e01887020c9a6527733f4cb49958e7919628f'); -INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','ebf55c3076f6911d6ded4893315b9cf96d4aebf7d41510f2b6b0134bc8af4900'); -INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','3ed135ddefed25e945cee8d5b419fa81285616387e8b7347df41aedc30209335'); -INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','a470e7444abdf6f8523ceece1f510c68c31e1a9393e9b8e4ff5fe59e6f7f6c47'); -INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx1_index":16}',0,'BET_MATCH','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','d15ed678f9efcab6f36f1efc7ae4fee65184a1aa1e62f97288c6903f074cf26e'); -INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16}',0,'TRANSACTION_PARSED','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','b6bfe7052360a7232e790b5ac6a33b643414beb996f8b4aa981e05474ad38381'); -INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"62759ea6d5070225bd30253a42b6c68fdaf2c4165b1b221b8e7bdddeb26e9737","messages_hash":"f3d086dfac0849706c5dd2047451ef87178f00ea00ad422051d0814b7843b47a","transaction_count":1,"txlist_hash":"30a124b4460d985c715c7bbd85cfbe972a5caf457e45844e0a54daa258ca3376"}',0,'BLOCK_PARSED',NULL,'4e41fd6c4f82169b4fdbe3cd5b0ec0dcb1789b068f5b89c95ec239be37e30788'); -INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8788ffd42680bbb35e8855dd8d1b8357de923922f952bf64f40fe9ab5c259cf0'); -INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"utxos_info":"bf409565cd591e16a2102fee4781a64681cbc79982ec5526ee17bf31c7a4403e:0"}',0,'NEW_TRANSACTION',NULL,'e1c4c113df27ea60d0e27ad6e414c218e48d1b58181f47f1a4afb678b085a243'); -INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','4dc4ec091a3bfa042211ed659c4cf21ec6291a9b228b3fc2a64caba855a97d1e'); -INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','e1c66c08b28ee3f8a4e6b821d1634ce4e131a5518599b11260c02970036cf9c9'); -INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17}',0,'TRANSACTION_PARSED','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','c0f0fbca87b8a02a8576cf3ea415a492d8388d3c189336402e1c4b228a52d04f'); -INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"f9fc0dd4d98ac5e06e4f9673cf5678f9fc264cda23172e24427b833331b73c33","messages_hash":"fed2f51431618faaf65ac437f4e2ab09bad0f39f5c97b3ea62e2fedc91d6708d","transaction_count":1,"txlist_hash":"cdbbf3665287df62a1660198e00049d06f649f37c49cb76e9fb1eab12960e66c"}',0,'BLOCK_PARSED',NULL,'6744824e446e213326b567cb2284c668fc78a83560a089117189141c6654db5c'); -INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b0d653782bac1358b89afd05ddea6d7a7791be01b779964ed96671b8b5838f5'); -INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"utxos_info":"b7a480818948d8910e2cf2e6475aae1072be41ede27832fb8f99e3f14169f67d:0"}',0,'NEW_TRANSACTION',NULL,'618f5051c0520a4a8e0d709d479d37aa4c2d932d70a7e81d1f52b57baa024069'); -INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','7e8cc9156e988eb6c8e1b1412f439520125e874a61c826d3958d2d6e45ed195d'); -INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','42592eebcbf54756bb69ae00076f21798fc16b695e1cefad5ab504892e4c60ce'); -INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','a113d2d57b0d906c95859356456448d4508765b147367ceac8c8a2eb813c8d74'); -INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','dcd6f8bd95537e10fae34b65313fc8b32a9e29f04bbebcf2aa49e2cd36028383'); -INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','e370e498601afe71c1dafe44f054f7b9bfcc2c1252ae95a9d4be1bcea3e22c40'); -INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','c40c0b169322205aed7de59eb21450fcd7593351c8160d02488dfab12bcbec7d'); -INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx1_index":18}',0,'BET_MATCH','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','90a74adc37d752543f95faa8e0fed553234e6fa901cb7ebe1d7665c4fd546314'); -INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18}',0,'TRANSACTION_PARSED','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','e0cd0e272876853878958ea29498f44efd44613eaba7e27be930159886126d22'); -INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"4a355b8e80a902030f384f58700d05da9a6efaae3f3ce0b1a056dc1250d9ec63","messages_hash":"6e730d3392bf1313956c89d2323a4fdc27e3100c2842eea65bee8900f427000a","transaction_count":1,"txlist_hash":"355616d4b8b8408ea7061e787ca35918b6d0417895a2a2ff224d207f0f76e02a"}',0,'BLOCK_PARSED',NULL,'53681ea53db800787062052133a4f0eb6d3b1f7759fe9ec2b04003caa3cf856f'); -INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e29c84f114a8c4ffee657d91ce52d550bf314286664a3a8500c18c528961c8a'); -INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"utxos_info":"86676313d1f457055a16784cbf7dc0c9066499ed114d72535379ac4f9ca398f6:0"}',0,'NEW_TRANSACTION',NULL,'397ed61f8bf35f01c9409c28fd4e6171129032c86c9d250258af827669e1acf3'); -INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"value":99.86166}',0,'BROADCAST','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','3d73e5e98136df609439bb7d15d35902dab460f9fc55fab2bb70b473247ec71b'); -INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','d1b6e5a33a122caa6f45c017d07e21ccd404d08a52e2365a8129aadcacdf404c'); -INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','84b7b41734fcfcf645b7416f5166a6d6cbf1ae6783e027c5a1fadc41bcea531d'); -INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','4986c016c07995db32cf5b869f6af8cd279ad2b9ebc17a433076eab69d33987b'); -INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','721b9fe00fab63df6cd9fbe0a9c4bf641eff0c8ee8e1379f8d7132ea6ad282b4'); -INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19}',0,'TRANSACTION_PARSED','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','bfcce39cbf3d6968cc20421705178133bf79e30cc4787bf939de695edf753b82'); -INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"57aee8f9c9b63342ceeea3a3162998e9034a3d624d6d85b19782943ce170cef5","messages_hash":"3f2a2498095f847c8ee4dfff40c31a208f7018a1ccb785289c931be3bb856faa","transaction_count":1,"txlist_hash":"7987b849a43c706d33e421d45e99ca6593c9aa8c69079522888f746a8d4ff748"}',0,'BLOCK_PARSED',NULL,'11796584045c161bcc38a8b41822c775be3f5366a80007b0589f6c12e4ced027'); -INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2b9194156c3e6942f3b3587cdd4c8c236b397db5b9a2e4a49d3793610f1adf3'); -INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"utxos_info":"3b7b4a98830381c9af4bda05e9520bc30013663a4fb71081a094e1017c6cc7ff:0"}',0,'NEW_TRANSACTION',NULL,'834a1155bc8d0e6ecb0dc65dc4c6ba59b0bc4fc9db7ae421507ae5dcb03b7f41'); -INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"value":100.343}',0,'BROADCAST','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','7671e71bb7b18f67d5d46dcdc0d7b1e80aa518d0f7c03e53ddc9a13c59fd6fc4'); -INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','07451bc98fd992115714897c5dc11449cfc08e636830dc2758d40171e20b6c17'); -INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','0881d9fa3cadb5d5a4ad4105fae5bf2a8c120a925ac3f4b69d52d347782163d8'); -INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','8c21fddd52a0309499b3a0170b3b6b4c56ddde46ced6375be2745fbfd49ff1c2'); -INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','b7ede997e946b05a13dd701073afad9b1a5dd14b0fb081a50c2d80b180686e8c'); -INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","status":"settled"}',0,'BET_MATCH_UPDATE','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','f3ab5e147b0dc3c9456504fd1bee3c8b008a1c715e495c504d46f1f0f8bf9ece'); -INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20}',0,'TRANSACTION_PARSED','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','0da3f19ed517339fa5400e33140c3ffa79130e30458e3b1611ac1997bead2a6e'); -INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"d11f94528a9e0034365e4388ee455f02102d2024c65e1428cdee28b6e5aa7e1c","messages_hash":"c19f295295d5be4e3fbfb303d263903b04d6db9ecbfdcdcade7f55730ab5ec70","transaction_count":1,"txlist_hash":"14d0604fb6986f281715ae660221c79b7bfddf15cbc7da02c722e86b8e264d85"}',0,'BLOCK_PARSED',NULL,'cf2f965ac2e8e5b335de2ebb52e5a52cf7b3ee2a080a8d4ad6c90506c118eae1'); -INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5e391867ad4f481f23b75c8b0d6dee05a4c73da2b15cd60577097032a4837ea'); -INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"utxos_info":"0f06ac488c13977713320e18f2c2ed82d6efce5eefc2988cd4b2e4bd1220dddb:0"}',0,'NEW_TRANSACTION',NULL,'b76c5677182eb201e0509112dd06b652fd22b6247c900779c291744dacea003e'); -INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"value":2.0}',0,'BROADCAST','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','dcdb6e038cf82703a66090343452837dda6780b828db3afaf6eb129025df77a0'); -INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e72a744c26e1f8f2b75b1ef2e8cc0985e765b1d22c41c97a26dccf22240f2e1a'); -INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','1c98cb31528aedd7bbda1503cb776c747b127f86d763ccf777374d30fe75bfc1'); -INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e40a849c4c59a37e7c8d7a89c41ed7c76ad736c00a7f8c3ac3c04c905cfabab3'); -INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','92ab3ed9232b65889b94c03be7b83035646bbdfade2534b31264d28751ffa4a7'); -INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21}',0,'TRANSACTION_PARSED','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','2a837fa418ab40fd9a360a52e2146c621f923b6d7af2cc23f87d2d7f3463007f'); -INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"4397f5568bfcf8cc90d1e72b7c61e7cc6905a0d9d3b3890c33e2afb464a25fb9","messages_hash":"584336adb53629a35656fcd61eb8c4f646f69a3b7b87ad4e6dd86d49b965d7e7","transaction_count":1,"txlist_hash":"5483ead85237ef0ceb3486e3c3e6ee1e5080a5dd602f805b811cedf996b8dbaa"}',0,'BLOCK_PARSED',NULL,'2556ba3a437a45eb4bc52506d94637a32d601c1ed5d29785a9695005378ac5ec'); -INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4c499f4634fc6f9e703ce679c4ab891aa3669fef1923efd7acb2b606f659a1e'); -INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22,"utxos_info":"0b84fe823c78ce33db02a287f480ad6c2dac38de1bca142b10690dddd06b9429:0"}',0,'NEW_TRANSACTION',NULL,'347c64479ebf81a2280eabdde3620ae319d1018e69f14b3e43b2188d83dc6f0f'); -INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','ac2e1f50168ea77d2fbe0e537b7bdead796341f6588dde443bdd9c3624385748'); -INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'OPEN_ORDER','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','5cc9025a1facfbece5e202ec81201931e4a45d96504b34a5aefe20da1044cc11'); -INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'TRANSACTION_PARSED','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','f690a666a836405380fbc8f1b823eb8bcadd8713a734b4696c37bece520a049a'); -INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"16b7018344f7a97695eb17dc5921c4955b3f8cf4d9e70bd8628041c4033886b9","messages_hash":"d08b542decc13c0df72de898facffec9edc2fbc1d055d5fce7c872eaa961b46f","transaction_count":1,"txlist_hash":"bd68fe9b7aef054c8a5925dff9ff140cb5c00eb611a8802156196ed486479ad1"}',0,'BLOCK_PARSED',NULL,'5f9ddc7541b71415d395b194ed1d384e28e3eb73be33b5572f5b0d8861ba510f'); -INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f20c440abd168cf85ebfc2447352f324093e7b5896a9c3218c5b9fa7fc83d0d4'); -INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23,"utxos_info":"fa714c345a1ad0cf699f33c9572c70e3a5d96c16be2ddaf0ad0a8580e99a3ede:0"}',0,'NEW_TRANSACTION',NULL,'bf8e93556a75e4acb71a0271ac428f376924cad5025665ece223fb23d6346c5f'); -INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','ce0c6d3c7a4e961e660e123a480a18b9050dac5aced6c444fce7dc361f541b01'); -INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23}',0,'BURN','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','37e9705bfc5f2ac0479f3f9c9cf05e1d0328bd5a76a1cca90e7646489d88341b'); -INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c3c26212677f4aed4614b653f1e5da509f962c29502d22c84c1c5522bca0dcf5","messages_hash":"066fbe373bd1997fdb3c38d6023bd6e8f05f3e58461ad6a422cd4dfbeb0f2fb7","transaction_count":1,"txlist_hash":"109e820ac7d290ecec049098115ba6b467ba90ba624aa24326cc7e103e51b265"}',0,'BLOCK_PARSED',NULL,'2e1f888d62e696c0974db83b718038bdcf783df84f7dbd312ffba9d4479ded98'); -INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3737bf3c67de60f0d31d27bb5fd5625c3bab709f39c7b58ab4730cfd28b6dc5e'); -INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24,"utxos_info":"64b128fe57538b87e472586bc2efacc0d692f07bdb4bc4868ec66c3f2061b109:0"}',0,'NEW_TRANSACTION',NULL,'85e49b34c5b2196d1e6c612f0ea96234cdc229ad9c87d5448d0fea8a2e39d7fd'); -INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8"}',0,'BET_UPDATE',NULL,'4a78be9c412071b4419d5fcc53ffbc6d5b597058a4f4e2635a20aaa5411d6e91'); -INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'36b3eb4d9202d96ac663417ef5f7e5b065b827c7fa51f1c89ee9b4e3e96a048b'); -INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'0ef81821cd83d1a6d45e9daf0e652d5346456ff89d1f55353ed977c791ed5886'); -INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','fda2a1e701d22164250209263818b07a3c45c9270e2037bedb441fd01b6d400c'); -INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','b9eaa480b78fd13a6f83719323148f48a39e9cae72d5f10ebb120b6211710387'); -INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'SEND','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','2bec64d1a5638cd0d1301a0fb8b19fe9517795d50d700a1e559f658a62455f5a'); -INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'TRANSACTION_PARSED','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','ae2d503271f53750f608768cc1321c681f0f551119e9f3ba4462f30619152cd3'); -INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"420b753d9e2a4ae5c00cf65efccb9a657d2daeb19159075d1671a076d8c1ade1","messages_hash":"32f524eca487a1118524f31bbd88b9e80384752bd324b9ed82a103f497722bd9","transaction_count":1,"txlist_hash":"8e03eae75b5f9306a0a8142296412f7271b17f8c751e9e8e1b1cbeca5418f4eb"}',0,'BLOCK_PARSED',NULL,'f8e951b92ba0568b116d7e83a518ce7a88217a6582327a6566530d2651da1483'); -INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fca0d1ef68e5bd9a14ecb0981001305c62c98527c84d987f95ffb86fdb5d60d4'); -INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"786e9c043df5025bb8d123322e2dd9cba30cc433ff90a44b7b7036369565835b","messages_hash":"d17f4a4249ff8894cbe38c53470a085c0b43f37af3def5827bdcbd512627975d","transaction_count":0,"txlist_hash":"6a80f89b076199d165801b34c7d292976e069920f2ae4184e09dad8411735b94"}',0,'BLOCK_PARSED',NULL,'3c61ddb86c2225e3d8958d826b39136d76ee6f509f2163ff2b94aa702700ef2c'); -INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c42cf4a97f8783652aa91539c7006e8972de32140ea9a6e1ac42353aa8f5ce'); -INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"1a2e0585eb1a7f608b4ca4b1d252f555f87e7f16fff124ed869285ec17643059","messages_hash":"99e549c635c9de25af9aaff573b979b84e570faa4804ca23d16774af1a0667d0","transaction_count":0,"txlist_hash":"a2110149cc4e90d1474c53bdf91e24f8bbb8931548542a6afda94bc343fe3a7f"}',0,'BLOCK_PARSED',NULL,'6a711d4287e8822b53d0d8916913c3801fc60970e49793808be33b453089120b'); -INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7515a4234586b5a12e6a139e2ce92e08b4e37569f0b33b8d3d9573c5dd04d5c1'); -INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"44a1f10e2df25328c38e20c36029bff557c7a93784030ece591406df9c71ebd6","messages_hash":"593ae1a07859992830aa36425fd449b6d7fea9a58d2377c9c7fc449869fe1539","transaction_count":0,"txlist_hash":"d087d907b7af1ac1171c61f00c756754fc94e0edf0dc265d9eced163a07357c1"}',0,'BLOCK_PARSED',NULL,'8eb9d358b1a8e25a4233a37bba0e2b0a64e2485205b1ab8163deeda371585e17'); -INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8886b4d39f7cc8099f2a6b14200a1ceb2781d325cecab4630ed842d24a59e25a'); -INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"093f82c2b8e108242edc6dad72e5878700b9c33606c359e673bdfe65341db64a","messages_hash":"97b27836562b1c9153a00fae9035dfbf9ff10a7f36aa0a4fb3bcaf8103a95d7d","transaction_count":0,"txlist_hash":"5796b7de2e12cda876546b21e2a64e92b85792c201f39fe404e7fa6c395e78db"}',0,'BLOCK_PARSED',NULL,'88be5a20b2f580cacfe61fd7b93ee596689d2d11d1c33cfe7a45dd8f1c84d06c'); -INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'401e96b656d68a126a539b923eb1c001048aa9daafefd41466567fb098cc1b2b'); -INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"efac93e04f7cd9d3b1c0af3da102c29b50d940b4b5687fb0061b3b6e169290f6","messages_hash":"9936dc9a6205f83183b394d439ef19ec875b09b6818b3bec22e9ee9824158df3","transaction_count":0,"txlist_hash":"5daed82ccefd923a597451b918ece6172dbc75df5cd53ea0f7e40065e3d0d929"}',0,'BLOCK_PARSED',NULL,'71c90e712f1205710ba5c5740063c8a22aab11f79cd35c488f94d7ac69fb1375'); -INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1710f51e650fc9b281dd40ad80491000418b9b2e960274783820b3e00ee15f45'); -INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"1fa464e853787685a588de6dab287456de7a0efdcd76052a41ddaf5e2f85a648","messages_hash":"2fda1ff9913e7eaec6e0609c08119f99b5521f4acaae37f169d384154d833d5a","transaction_count":0,"txlist_hash":"818415429923b4a38cb65dddb4e8b8a17264cea0188e905d4a19db340e98ef82"}',0,'BLOCK_PARSED',NULL,'b37a2f52646d884c145a33e5c67686cbd17ef8f9fe8512780597caccb58df243'); -INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db1ee80666f1a4ac7461b5db800b889bd4c4b8625bd5a0eed8f29a1a38bfdcee'); -INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"fee866f1cf6e5f83010b97e0e9d88b54ce43fdf45e89081ba3b2fe07b62434fc","messages_hash":"b3650d2f7043b841e9ed73321a8136a8b16e31c59c814fb166c396607f944be3","transaction_count":0,"txlist_hash":"7e3fb0dc1ce885afb71be88ad0ca3b189202535d328ff70bda7cceaede6813bb"}',0,'BLOCK_PARSED',NULL,'b678f7f891d4f83036f6add1ea721acdea95f38403656a18378096736449a78c'); -INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1a9b78bf98d5c1c7196670ff63023c2122068e4ccc516c2e219d66f1384df35'); -INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"11ed526c46610698e7a4f102ae91755a541d668750ec3bc10decd0c1709d1115","messages_hash":"ed225e48b5d71bdf3a0225eb3745f6f823968ebb5afcfad54bd1ccc2f9efdccd","transaction_count":0,"txlist_hash":"e3044e5fc57d122eb707d271ca1f4248358a8f477a6466cedb739e7799351bb8"}',0,'BLOCK_PARSED',NULL,'c4e3cacb1a4cb597a6c8459b8b91f77c41303bb6afaab4e946f88de97c7ea748'); -INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fec95abb61ae23903053d1e44a17a494a445a1beee801d7a2f69f78165163ab6'); -INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e"}',0,'ORDER_UPDATE',NULL,'df4577eebc2741c2900f1e254f8da3a3433fd8a1dfb659b3066967a83bf98f4d'); -INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'1e5016bfc25aca53ea8bde87ff35e63e5130b943714d0836465b851723dd1c6a'); -INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'050d40017ed30e0770b8071191c375ef744f0cc3a58aa90021e948ecb49a7d01'); -INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"7930e5a2c6150df64dfd995801aec68ce11df292e206f08f7ff20eda9ca2d017","messages_hash":"2fcd14de99cfc0051e32cb7575fe68f249435ea6e1fdf13995bb7b869310c8b9","transaction_count":0,"txlist_hash":"cbe01ce5a4da72538e9310180de025f141ea8baf1b6eeede8164cac3488532fe"}',0,'BLOCK_PARSED',NULL,'664aa00cf874fd57d39f8ea7f85d26a507434067697161331cded8cf3016a1cd'); -INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25bc7735fe27a62db83ae55236c4965e90b12f09b38f4c37081faf1169d70db'); -INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c5834a54b3ad7f9fdbb18a87c8cefe867eff2ba1ae5bff238a3a041431d0afdd","messages_hash":"c9f47c6da5068b7919a832cdf502e72fa2c792fb368ba9eae73728e8ecaf0941","transaction_count":0,"txlist_hash":"81bceadbd9f9b956ed25021e2e0a9f4217c7424522105f8a0ba41c9f78234fcd"}',0,'BLOCK_PARSED',NULL,'d9ad370b618930ebb0cd4298af25244e2f2cb58bd476210344b4e1f333d6789e'); -INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99d03ee43b0ab27deac24de92d4bb8afd4d35e2b5d1fd2fea779fa338af2333'); -INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"5a4b3f29cb1554ae8f670955df4dde45fdcc57623a50ca7d8f2c78ad79186a7a","messages_hash":"aa253a5f5b5741edccdf5a5b002cf4bf2f469e378ee25dc7279229f144677104","transaction_count":0,"txlist_hash":"0ec430eb4c16f386b5abbd6586133741dfe6c19eb820d388810f3680442d363a"}',0,'BLOCK_PARSED',NULL,'08aadcb6f35b9fee8bfcd15903cc1908dc02a09e4d574c2fef70ddba5fd7e6b2'); -INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88549b6e3a2f5b62a513b6b18c6c47b95ed5a1a562afcee7837ed7a0c53451c0'); -INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b81834ed9e92514fe7d277378be72e1f81043a615a4b67cb67dbcf97e3c3b43e","messages_hash":"3d929d7479aba70da9c122bea1eeb8bdbfdcbf28998dfe4f72e49f9f92088360","transaction_count":0,"txlist_hash":"a883860baff0c6dec150c9d80b8a640401e191312eeebd4e9f21914e7803c46b"}',0,'BLOCK_PARSED',NULL,'c62850a468b49c392395e0d98bacf2df072731f0b6647a1ab8c7005b7dc9daf7'); -INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a74f27f678c924a172e2142d17937312fc2049bb51667849fb82f12f2e45d2a'); -INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"736adff04611f10a4e384b5d5c44651bdf037c0caeb8dda5bedbbc6d18d04ca2","messages_hash":"04df2e8a894e19473dedd9493069c49bcc1c57bece30ab85a94e4e85de076ff6","transaction_count":0,"txlist_hash":"821ad697a76d9a35b14a7c388b65b4f3a86fc66c42e02af6d568f73e2586beec"}',0,'BLOCK_PARSED',NULL,'e2fef27ec3a9da9a62280769fe263afab790360482b31c4812d512c803d27ed0'); -INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52fe772956b83efd02017843bd6e77e722659f2aa9e962d59a161150246a9ffb'); -INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"34d49fb14a7ec85ebd02ffe04768f5aa7382ed0ac7f9ae903e71567dc5d9ab67","messages_hash":"80ff1983d78ac09b5786d969122672922f34dc77570b9c1e3cc7877a739d6c62","transaction_count":0,"txlist_hash":"c5ff4e50b07b755c23a6d9ca6dd5efe71a2728c4c662418fab814993be455308"}',0,'BLOCK_PARSED',NULL,'770b68cab7763e86e432c9939d01b2972876b762039027bb7e526bc6037bd9ee'); -INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4791998cfee2e252ef4dabbedbd9f312a1cc85cf091e5b4daa4785f35b0560f'); -INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"9bfc3bf0ed35dd256f0df04c813dab9dd818238163e6b01842e18815971e7010","messages_hash":"c4cd65293538194afdf55ff89f59cb8067f83af62b3eb0040d3f7d922d745a75","transaction_count":0,"txlist_hash":"8a2ea429a26990e70f9c8937d11c58c986f991c55f196416344847435c670849"}',0,'BLOCK_PARSED',NULL,'fe0021a6e46cdf508412b2b9f267cae967d6aee62c1c86ad78d7530da7af1604'); -INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b23d7dd9067d9c819fa27a75f76aed7bfe181d82c1b2b9296b7adab7db814576'); -INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"da7a63f22053d1713c805684d14695c31670eaf848bf23eee3331e679744f291","messages_hash":"ed3a4d705697bf957f0e3e679f8636cf18074e7c3d5821404acd359e8c5e8c7a","transaction_count":0,"txlist_hash":"9f186391b30cc438ae59dabfb18dfca8811193a8fe37cada73d513ad688a80f0"}',0,'BLOCK_PARSED',NULL,'c7507b24ddd6808a92d0b81eece7f46409c7f37e032e0ab7dbd18c487e9fffcb'); -INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e6b0a653d405cdfab01d27500542aa525745a6def121ed88c3b8e3afb37a187'); -INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"ddb485115b64342bcb172cc3e77b20effb1294e635459119b59179f3b6a87d66","messages_hash":"4b8888c285233ef646619f95ba8b80393673659147e71b97002924c64ede9d3c","transaction_count":0,"txlist_hash":"f73c8b5e92181566aeee4ec42a1e50b950fd18680c69c58fe20b5288a915d7e9"}',0,'BLOCK_PARSED',NULL,'d6d6617cc7b49c671eb3ffc047a432e965cf2bd3912e5de2a9e4d7b04db6f62e'); -INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'900730c6ca82c9a84b28d5e8a8dda19b77270d21bdca2967c8f363f432707ad5'); -INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"b58d05ae5f282f7904c7a759ae5624194b5cb091f43f05d738cb4002a999c26d","messages_hash":"e66d0468081429a32e87dcf4480bfb96348560715ad3a6b0e342691f1403a488","transaction_count":0,"txlist_hash":"73ee837bac9153dbc94c23879192b6c2fd71a9a6148502e8c4693bd342c4feec"}',0,'BLOCK_PARSED',NULL,'328079d2d9fd39417f5dc467e7b4c8825290e4d8631aceba3941c6343ea3ef76'); -INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0f375399310f88c6927d05bd80b0aaf16ee92911be5b3c9a27c26defe6fbc72'); -INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"c18e1989fccd8bc7168ebf2acc035c224a9010b428b81c814683b0ce1e244113","messages_hash":"eb297e8409f08b38b5a5a86c98f636888cd7c893f58235c16d6385e211f20460","transaction_count":0,"txlist_hash":"9ef577154ca6e451585e9dcc4c3690d496b8a666856987194c4e41414743945f"}',0,'BLOCK_PARSED',NULL,'2cd821bc9e23b33ad53111013edae26ddd544eed9f1cbd42e8d1ed8705eeb2b9'); -INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'975d349dc1a9fca1057811a55cae0c05f9e7c09ed7b92a8f7deae548e265e9a3'); -INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"1a935492fce6a168d9aafd24246bba6f5615f53a47311549059b21adc6a67154","messages_hash":"b4623b45d79503405f544a3b246ef9f2aa5d3d3b0a7ea344228737146fc26120","transaction_count":0,"txlist_hash":"29f3ff5d49a8c6ffbf0ddc41a5e45fd3b777fd7c9ea60a914191fc551ac46ea4"}',0,'BLOCK_PARSED',NULL,'bbfe5d9ed4e6d5ef79e0a6a7a6c33a2636921ccbe80ad89ca116968a0afb2479'); -INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca049566a36372daf96c7bff3871d9a76845a5208f81ffe7f3f8b728f9776f2d'); -INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"536611cb3cb3005f8c4ffc5b8ed8271734448b5d6f49bd47eb0456bc4ee207e4","messages_hash":"6683f4f0bae39aa62af117279e5b65385d61a0104451f3e35a5fe0fd54b40fc4","transaction_count":0,"txlist_hash":"6f22c984234616fa84a474dc80c5d5e25ccdbec1a84b0cabb279505e93aa4d6c"}',0,'BLOCK_PARSED',NULL,'b454134769f36ee397b24a620fcdad37e9e702b4d3894db19818a7f517bd47c1'); -INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52dcff3038e27ab8b59d75f5f9f3d437bd8941552da4303c85cb7b2a0c666dc2'); -INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"ebbeea29c073c61dad3e091302cd945a9926741db0dc6a918792c4c01b8cc30c","messages_hash":"06fcb3429bb75337ac36ff2159d07b86b513a711b3e69abb5ac028c178f37e4b","transaction_count":0,"txlist_hash":"a1d1a029c0bcbe481f8ba760714e266ff9e759844517ceef96bbaefb05652dcd"}',0,'BLOCK_PARSED',NULL,'8e3ec63a23cd4243d1c72bb992403d4c2a0359ca70f4bf61eab9905277ed72c0'); -INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fa093c8bad5ccf238171bc0a2f7eb4b7039a8663add472168cfbe57873ae11d'); -INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"d9baff8bec82f3c29f1fa69c9ddd456f1867f33a55d1648605ea7109270d8e07","messages_hash":"2d092e5abe539c768cd52e2bd108fc9592c211544680e746faff1af941f833b0","transaction_count":0,"txlist_hash":"26f6ea6c1e350b91f4757619dd52bb7a2b2bad7277497f0d4e1d61b363eb7a99"}',0,'BLOCK_PARSED',NULL,'dff585de50070b96e03c3340bd1a2a93204d628d8bfdfb2bfb8bf517b0182fec'); -INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ff8646d1fe175e5b412b84440366456d17bb897ee163e8626a5726e91746a25'); -INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"09ad4a6bb3f671e6ac6d595bcbfb82371cc41f35c309142678eb5b7df97a5de5","messages_hash":"4a59838efe59a9dea7167e349a1ff3e322129d3cdbb9f4fb60d6b6553629f7c5","transaction_count":0,"txlist_hash":"5e32dc4d14838fdf0460146fd87eeb59ece3416bb7104362d24fd6d2bf0fe963"}',0,'BLOCK_PARSED',NULL,'1b6e32de441805ced602b29efe37fbcf08686e17825746ac11329b1d86be4c2b'); -INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a24d1289d796e1260e75255a6a6c48c91cf6f83b48647b69bd9d62d46b11a73'); -INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"208200708851a32b0ffaecade58f78f8ba7d5820457c582d5ca127e16fec0952","messages_hash":"b6994f5b5451c36854174318af39a43b3ffda255f8db3e7fda875fcf954e1d99","transaction_count":0,"txlist_hash":"c0a8253cff82f71d9a90c7b982e5d5093d5c2bbc2ee2859d9d7d09afbef56192"}',0,'BLOCK_PARSED',NULL,'1f1299d2337635543b9bf875c8af3fb2dc8d209c2d6d2c20ca9964f414837742'); -INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'decdb577817752e54af3eb69f191b3f6c445825c3ee673cd5c1833fdf6dbe5de'); -INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"9d1a7335d989bb73b0363bc88da6dd82c0fbaf064b1d70708b0aa2f6a8a9958b","messages_hash":"2c582e0398b9bc18f222d7af1f884b5eb8855cdf7209790a377ae57e86ebd1a6","transaction_count":0,"txlist_hash":"c07861a54cc9537b7a2486e5a7e6366cd04413fb1307712ec6af55588dd22cfc"}',0,'BLOCK_PARSED',NULL,'650bcfeb434f65aa2881f3c050bb9d870279aa00f3e3fa9323413822a4b22176'); -INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b71978a749b2e7bd3042589e6dba2701cad2a8e31cac1f4ff617d9efd3cff9fe'); -INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"2fd9039e49fcbb070315defae275bed858cfbb539bc4db8f2ec5f5ff6d69ea25","messages_hash":"26396bebf934270906e3d61a14c9174639beaf51d92249476006f7766fd0f022","transaction_count":0,"txlist_hash":"0ae948495f47c1ad343052f786467c6236cd6ca23dce0c628503a44ada8f8329"}',0,'BLOCK_PARSED',NULL,'ad3b8996dd375358df05aa7c8100e55776e309dba2469ba20ca5c61b4ffbf4dc'); -INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e23e6cff94d3a11c07dc11a0069d3d64f67b5a44b9902374b27a1ec2d2043fb'); -INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"2e97864865a020b04ed60b22c347d9dbebce5d00abce86c2b3a5054a3184699b","messages_hash":"0700cf8de8063fcd09a6131b1c8c974213d459a987bf0d750e773735206e1b15","transaction_count":0,"txlist_hash":"986536c5e9cec38d9b78bef44e21e73f93a654b9c421c7822dcba475b14f2127"}',0,'BLOCK_PARSED',NULL,'0355737e5b907c252623ee99c6f499916206d23a41dd860811f83a6f2f39901c'); -INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66ec6472c50dc8a0cb4d6830866c89a672898c72b23e6c90252d3e124e94b7a8'); -INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"f6a8e9f4cde78fbf6c9a5ea176312116f3813f2c0bcaee6c92f3beb13a8c3899","messages_hash":"0b2929cadbfd7a6678bf9776a4d55ee816dc97800e6c4e079826bfc3b57334c9","transaction_count":0,"txlist_hash":"4ffb95c683e1839d31018cc7ec92e978014b8cd32f308c2819ff2e79ff60fa2d"}',0,'BLOCK_PARSED',NULL,'aa0dd47558bb84c57967afc03818d866139fed945894d0b309af29f9a2671a55'); -INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'531e01c446b2d86e41dcd612ffecc7408d391143f81ae45fb00e433ba13f35a3'); -INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"1d84e4657febaa291b4873d808d9ab433370227976196fd6436a65839c3575d1","messages_hash":"1b25e91387df793334d9aada005b105dc2c1242acd739ea34a18ea1e5d5f5cb6","transaction_count":0,"txlist_hash":"0ed99730b61327cff9ed15d8585f70d7629b2b10150a717093dac4fafcc4e737"}',0,'BLOCK_PARSED',NULL,'0daae966cbf6455ace6fad679ae9326fb205facdae9ac1427ce9c582ca400d41'); -INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'266a774dc2106b2eaf5240d2751338b50a2fb050a00c6158594f28a810c8f209'); -INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"083f6b773191caaf1844f47c53077e8724e100d0b46461ddaa642b88d5265c9a","messages_hash":"b157f369d48b334ae12ea5c853aedbba8e8cad288ae183771e8a6e33bec299ae","transaction_count":0,"txlist_hash":"69aa5d1c74c026da7b7cebe352bd6d907a31174cfd6f346e09382b0cf3fb8239"}',0,'BLOCK_PARSED',NULL,'600e464d11f1d6fd5ce2630ab2581d881208dc621ab6c018b887afde43bef6e6'); -INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22a708d48c4e517301954c0bffad1af4c59e31e0a5f3a296a0485bc726210073'); -INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"b1302087b804fc5753df5a4d8aaf8626e80ff99b429f52fed97767b051c24e8c","messages_hash":"0eafdd35080661c9f45ecd3fbd30b94ffe647926ca046a5774e0db98817a6868","transaction_count":0,"txlist_hash":"e35d2a19e5b60e2534a36d8c1d0c14c6211d56c29b4aa4953a14bf0b83bcc405"}',0,'BLOCK_PARSED',NULL,'13c51e87d942e357ebdd84360838967df9e46840b40543299d90a3dcc6ec8b48'); -INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d72872311b7d0cbe152d5045b017d3005cf42a9bd870f664a4585f565a91c422'); -INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"956c9ca0b51eaba7343703a165eb96d5947fc764457ef3dde5ca90c18d3b2f3d","messages_hash":"397a62f4d919dd7a09bf1cce83560d51a067f9b938a905b79374c6280fffdeed","transaction_count":0,"txlist_hash":"165a88d3d459ce6f4f37cc2ddb1c365dd01542b102dc68181d41b95ebde044dd"}',0,'BLOCK_PARSED',NULL,'4cc3532183d1af87f904ef9f2b01e562b1ff416dc89b32649110d8954c65c11f'); -INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd4ef4ce6397aabd13abd6e9185bac65b6fd112ad3aeda6e739c6eb0798799ca'); -INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e86cae3e73aa13e8498a98de335ed0cbdb7899b24e91839bbf0f50aa22355ecb","messages_hash":"f837ddf62d133c68191de84b68fc2705a4cab57412d89fcf4f5bed131e2c3ed0","transaction_count":0,"txlist_hash":"37394f57952a82ab5fb6ceb7323152d83f3c911a533e289c55b531fc83269268"}',0,'BLOCK_PARSED',NULL,'731ff71ec03a6cbce95e991b6880b20f287d1ab90d5e77e11f3888066ea494f0'); -INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'733586d3f81550bc0be14c0b38268d130fefeb96df3a6fea44c789cb1bbf46f4'); -INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"54bd5e4fc1bc17df27f9e6f22b5e1facd82229a877e09ec0136f878f2da81344","messages_hash":"bfb4cf68e7b32b6bd342aaf45e0bd054f99e5ad06bcfb3576b90e12f4e4d7af0","transaction_count":0,"txlist_hash":"ebd7b1c7c24aa51a0622e244d1b486d4bde8b1019d86e1d8845b6e90847ad09b"}',0,'BLOCK_PARSED',NULL,'c0f2555af8d1926cae1de058b08b379ac062e9eea5baa253c83bb235f775c5db'); -INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8180117ec5071c7a1424a96bb8022261c0b357b30440753df5f78bfd7693ec95'); -INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"1403832427d4c482b0d2d925e08a72fe37f5aaa6af73e74f601f7e22fdad7662","messages_hash":"df0e6523af1c6569970513c07e9a30923c5c0cf212abe0d4163e2cdb972cbea3","transaction_count":0,"txlist_hash":"cb71b795988456a345fd21a3c729005ab802707d54311480012920f07db40bc9"}',0,'BLOCK_PARSED',NULL,'0038d7507b31973475dc04ca875548ee124305a2cb6997d37157cf64e780f8b7'); -INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f81a9356b9e3ff17bb6879fc0a65f291a2d49e13dc370c55e9a8a0cb7690ad8c'); -INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"7b08f124a953d0e5511b0698d3314f5ec71ebba77b94c4d236ff9738d5a587e8","messages_hash":"8d71dba32d92013399bb8f18e4f4eb87c9cfcb2aff4c32932573e2dfd822a620","transaction_count":0,"txlist_hash":"cf47be21938b5a55ffb8eba6a9f63eb61b89e679b279d75080571832bf08c0e0"}',0,'BLOCK_PARSED',NULL,'d9ad28d5c4850296d36075c53aba5f2848b11f1ae59a84b8f1d2748a967f5f80'); -INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aef7b6046abf1c95f95027c2e8a5ffd9576947fa8a83d8ad8c172837a00a4a1d'); -INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1de158dfd18413618b9800236a2aa265d2fab497b09a839be408da8871b0960a","messages_hash":"515fefec184d55e09a1f40afb966f020c444683cc63cefb38df33585004186ec","transaction_count":0,"txlist_hash":"a9c1a3c24a410649e701fc0b321b2030b6fc35de7a2538a10e75b482cbe96b3f"}',0,'BLOCK_PARSED',NULL,'e3735ecd3dbd5d190ab37f2228609a9f9b2858f0ccd596e4e9754eb1964c9f9a'); -INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c63111a6e4190bdf7504b1f575a633b85ef9ded290a833f9c73c7a0c918ea2fe'); -INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"aa4be540bad6cd762a02b77856c3d6a737d90245e71f61b63a426573bffb3a4a","messages_hash":"793060ef4fbf8ff5072973c0b32c21e6cfa993adf8d62784985f255a6f5c6016","transaction_count":0,"txlist_hash":"93d0499dcc4fc819927eed8d1eec8b094eb5a4323b70d2cec33d568e31737ce4"}',0,'BLOCK_PARSED',NULL,'aabba9e2b350875a998865dfe52869004e9fd11b811d4ec01c934c0a83900812'); -INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e17ef78d79cca9bb1327a92ef151ec678d80983ebebf7aa8ca6b6ec7967b8a82'); -INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"49edce8190c2480fe3c6b3df7c7c5f13d34f67c3aef3b2aa12eaea603153aa83","messages_hash":"54c31939735d7929d522d3ec88edc2d22ce84d382c5fc0da3f2fa3b3fab5a199","transaction_count":0,"txlist_hash":"a76d957ffb41dbfd83b8c92ad487582586cdf13ca49dc1dfc30e869afc8ca76b"}',0,'BLOCK_PARSED',NULL,'1480c4b20f193136c6f01d7ffcf518ce5f80359cac1cec38bedee3efc049edd6'); -INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52bd6bf83becdce6c2995a53e9d5d9f2e3eb7daeb4946c7ba657f649b6c7fe5f'); -INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a2a8c9946cf45490858deb15c8f277ec545854dfc02dc9d248a684c0c3544d6e","messages_hash":"fcd1038b34ea4065cf1aa061f22e225bb7ecf797c3afd06d7f7aba0b788413d9","transaction_count":0,"txlist_hash":"0270a3faca0bc1a674fbd3632a1edbe8363d5115db8af56f135493f09a63df30"}',0,'BLOCK_PARSED',NULL,'0a0bacd1c2fca3de7ca83675f99098b4d4524ef4e3608798bae92d1f0e3f9d77'); -INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21ae9d3c52f49dfe545868ad47d8c823bfcf0fec6236d55b4b23e19e5cb0bbdf'); -INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"ca1e5d385fd9cec1184d28095a6f4a2ec2914d40cc016309fe322dbb335cf2c3","messages_hash":"8bff6ea3bfb733a3b1f1282f9c7bbdb768a16b54d3f0d062d58c7ab838ca4e0d","transaction_count":0,"txlist_hash":"85484b37f06238496ca822d539fe09e0e2906d12cf5b6d77c6219af29ec7410a"}',0,'BLOCK_PARSED',NULL,'5d52c9815cc912e86dfd20bbd7127601ab96455c968125a8267e82ba679a62e8'); -INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1e2dd00fb220312256dad8f6babcf55e990ad6a6d2e8c001d666b20e2d9c4b9'); -INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"73519f53874cc8cbe9052bf8dd18c590e0a4bd5bdc2a286c4930e8cfd006a993","messages_hash":"3113db4f601a0a22f575e73f034b71ffc2cce96ea0c7e04d5231d7e6aad5e2eb","transaction_count":0,"txlist_hash":"9c360f75cdc0788ebf8a530fa967e8eaefc3876b19739dfef2f7307e1af414f2"}',0,'BLOCK_PARSED',NULL,'4707cc58771af50db9f8aa0207f07a6ddab5e53c8e964e12e7a32fe0d943bc7e'); -INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd3e71921b6692061ff303c058a32c9c6f034e95cf359faf3581e1e31291c22f'); -INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"5de09a95e36480de84f9d3c8db3e18b7bf5145f8b6ee6bde57b5c3de11274cbd","messages_hash":"bd0000bee542571f0ded86b42b37a80ce1ff645fc16ed10cbc8612a757dc37e9","transaction_count":0,"txlist_hash":"b4a32df829f1f913a9077d0ecd83362230bf893ffd654703538c5fc1c30a181e"}',0,'BLOCK_PARSED',NULL,'97067f73e59ac84ad2a1f751511fa730140ee64c76f678435aa13c152623483b'); -INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1c551c12674ba21fd209c1d5817babfd53537b11aee5b2f1541c24f83ec2a59'); -INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"be6a452931358d500eda0fd2aa3a91b86483fa847a7bf350f23d33d85712592e","messages_hash":"382e4621850d0db961e9c198c9fdb46ec461d20c61eb8e7327a796854735532f","transaction_count":0,"txlist_hash":"fc4f551737950e1293a8718899c3b74c2ce76d8d1f58d6e22d10976ffd15eb24"}',0,'BLOCK_PARSED',NULL,'bb259e702592973006ed9d68763fde8d11dcd725be897c766ab537a7c4a090db'); -INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe7261118516e57f99028491eff90e8bd5e58d929d20070efa864eb64b1eac03'); -INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"5940a47dfa1a1c8bc1e51f1e64100cd0604c74197c88b39f6f7a9d5b763a0b56","messages_hash":"56eef3f8075ac1b4622cf9b8aa2e2a693561e360428c0d8f7797ab56c0c5bcb3","transaction_count":0,"txlist_hash":"53ce1fdeb3b9e39930ad127bc86bc71e7b497f24cc34af2a022200db36ebfa36"}',0,'BLOCK_PARSED',NULL,'b1f3a057cf5e873c0c761b0c6b8a1ad7631a891b3f03329096dd8cca69c38a3e'); -INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'197be3a1cabf9412b1ce7ed274c0a60fc7ea146bf6c74a25ba51da278876826e'); -INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"6aebe68545207e7cc81d68c3aca801f0b39e276ac86e8e0130d5029eefb60e2e","messages_hash":"56deb2b09ef813d1575b12c373b198b0dd0a2708bc9d4cea9b32fbd7a512092f","transaction_count":0,"txlist_hash":"0d482039b615aa55b721fef8ddaffcc2942838dbda8784940e9fdd8dba8b1465"}',0,'BLOCK_PARSED',NULL,'584d0f77331aa4c49a96ed9f4f5664b1525039bd7ba270e8cfc4800308cc049a'); -INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0643efbe7be2b93fe2c88664c1342b8ccb99e01670223b276a49ea41ba2d42f'); -INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"d005aff752907b93e2dfe442896c8976203f0139fb67cda3ea1936aea495e008","messages_hash":"490813f31a900925671df46f758b7f1132867a465069c0269e6d45e486aecde5","transaction_count":0,"txlist_hash":"8be094b2e99ec5c85a594d4a4059b7427ffbee3671190b84161fbf2fadb6f313"}',0,'BLOCK_PARSED',NULL,'2f6a6268796d0d2c6bdd6fa3e2b40f173fe3d3ccb7bbfc6dc3b2c4d3179e1106'); -INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee55c9b79b3244be6c123e4450651ee663e19085c79f6ca577d04b40c3dc2abd'); -INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"781f0ebe67964c25640f0bf5624e08cda546dbbb6648bd6e8d9f280c7f075f7c","messages_hash":"a9673ee50d9f65eddccedc0b3e98382f57547f8b96316e443ac21f49c775a8f1","transaction_count":0,"txlist_hash":"9c5e049c1738beda53ffdffe18492b0af038a756278f2bdeaddaa1a726681ce5"}',0,'BLOCK_PARSED',NULL,'a30064a5e14f5b443488643916e40c68cac1926014fc6b00aa625b6b607a7b62'); -INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77c425c45652aea8baa1bb699faf9d76e4466bde85ef986177cc9469071fd2f7'); -INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"83b5e1ca76fda895b144e8c03cda5fc3d18f6324b5413fd74923e51a94ccc53a","messages_hash":"8892c734b6cb78ac0551dd5e0f39f1af27598ee2a829884e04ff1ad32c33ef8a","transaction_count":0,"txlist_hash":"a7199dd9b360cc694f85a81ccf72fd614e6c0400d753132cb517ca9da55df86a"}',0,'BLOCK_PARSED',NULL,'40a0e22cac8e6b297a8aec47b80a65eedc8a9d0f1415f820a4c0f2581d93f1fd'); -INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15f6efc780c34bce0d2754ec0240ec0f4c17642839469244f234bec7536e1d46'); -INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"4293be396327c0aa3c56c77a9152068cc32612692c76ba94e8961c59a9ad780f","messages_hash":"e2536800bbba398a97e38efcf5f4c2febfee15b735b57236a3ed34491126647d","transaction_count":0,"txlist_hash":"833f9d3ae03e5819eec47318d948999dfbe35fcbe66766f985b6ca71eccae54a"}',0,'BLOCK_PARSED',NULL,'23d6e085319f4ab272644d5d2a4ac94032b4e72bd921b989526e2fcbf73de298'); -INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d8a7934033fb82f0a48cc95014db1e204717d6f0945cc3574388a93a78883b'); -INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"d08b93b609f1766534cb0c30502350b9e4ccc4a885ebff7633e9e5c5b52d8e90","messages_hash":"c9c37a11996ef89c4516c81d8bc8d2b3bb1a342f044bdf47dda4d9691bf46bd9","transaction_count":0,"txlist_hash":"7db8bbcaa76b087fbcdbd8f5b428b3587c494f0cd7d458a2d519abb0ef26f424"}',0,'BLOCK_PARSED',NULL,'f2108d1315b6edfca662681be8ca2e2be71ddda26eaecb1329882bb687bac742'); -INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55c142cd19820553c172582334b20afa5442cce056c89f3102ae838bb2f31f2b'); -INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"06c72d219df429f2873af74b6250f3d12996cce14496d151bf8bd4cf819532e4","messages_hash":"e5fc7d8debe247d68ba41b0287e7b8ad40b9b210ec62a8e6fb7111604b65a114","transaction_count":0,"txlist_hash":"8f6a902dd8d5d573658f07e8ac598ccc46ed49bff95b2a9ed89a051c852215a5"}',0,'BLOCK_PARSED',NULL,'b262e13ba9bb5659c4cf6c97b0f691a63b9ad5dc4af750ab3a9468b043ee4697'); -INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e61140363cd75d0cf81f0fb8517da71c194fcd2d36ef69e81eb6f99d38cff529'); -INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"0ff019cc4b9b8a394aad1b9f8f579fd5c4cc48a846e4fe71ab2f45226cec5a1e","messages_hash":"8234496edc47944c501573c82525dfb55fd7c614872379a059562d66b44a71ba","transaction_count":0,"txlist_hash":"e1ab0a4cbd4e60c5b1da333c5ef542bbc1d8bbd7709fdb35374c072a1f54d38c"}',0,'BLOCK_PARSED',NULL,'75f13dfed4e9eebfadce6c4fefc1be4843f619b103cb158578f0543dcdcd97a0'); -INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69b703be15b92303bdeef28c68f02e940a4d783dc8378750507e753e694423b5'); -INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"6ea40a02464725d0ba45b9969bdbb7529ae5e3ca794ae00abf4783bfc9667104","messages_hash":"5f55694254aeebeed7a8b70fe5bc347b4df6a966080f72d16262447e56b6b2cd","transaction_count":0,"txlist_hash":"be6f6965b6ba8aae157eb48f28bce3fa91c3bbc22b88fc3ee8d4f126c1538032"}',0,'BLOCK_PARSED',NULL,'4aacab05f7e74aa534a72bb156777953c3728d218587fbab6cdb3beb77c22a24'); -INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db284f08381e2191f49b32c87f2f2d3f1d36d52ceff901477a8d90332a6ba1fe'); -INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"076abf036bd51c47525fe4e638dbad403a8a1667a5b7c2f81ffc2a70e79b80a8","messages_hash":"9381a2652532f3ea053e1cb0f28a44bc8f6e98f04d51783651435fbe689c9891","transaction_count":0,"txlist_hash":"eb97110f496f9813e14f127af2cdcdb26d54e9745e274fe227fb0646cc132c29"}',0,'BLOCK_PARSED',NULL,'5e193280c5bb12795c7b70921e8145296d0285892d468b14efcd7d8d5074eb7b'); -INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0a5bfd2d83689e177831b31055b08e2158998421d34337aa2880fa52733bc8a'); -INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"8cc2e62f7b3ae2c89977ee9e31acacff38f944d00a978e9b0e48678487cdbe27","messages_hash":"16f709bb262ad8b0e6c048b5207b7514d2bb6e02cc385ffaf146dd03d4a04dda","transaction_count":0,"txlist_hash":"93c6c5967f4d297df962f2853f2a2ba3870f5692c8835413c08528cf243985dc"}',0,'BLOCK_PARSED',NULL,'cae5a6213ce4bc34da4afe7f9e28d0bd46a145db512cf7592f3c30a4e2675308'); -INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d88377bf43f2f29c28a91b259daa318693fcab28c4f2b7be9017298358f60da'); -INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"ec86fa6786b598b091121fc2001650bc04668d26d88805efff7271312c76a373","messages_hash":"9f1a7928095be6b7191d8a72d743d000d2b5040606789fb7b89d697b261a82b4","transaction_count":0,"txlist_hash":"e6cf70178316b3c594c60d10ac1ee3783f1dafe5054ce4c6fb932bf3c771f703"}',0,'BLOCK_PARSED',NULL,'8d105c071c43dac337967dafe8eb5a48713f8b70a05dd727c584a00a97378078'); -INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0916d2c67e5533ef71f96f24039208e28afc5d7b028f3e2fbd8af447b32bfdc'); -INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"6b720db96b2d10816e5022ab8c61fafba49cc6bf484909fb500295451e61f768","messages_hash":"923002cf1253a4d2229ecfab2b4a9b049d08cabedd9ca831de2de63a6addf730","transaction_count":0,"txlist_hash":"254cf1d1ac865c611a3d9fbd78001152928a52ad94fd640c526e043ce7c0fdb3"}',0,'BLOCK_PARSED',NULL,'722059c845c06943170931d1ccc990a8d6239d75aae5d39b49c6cbf5790c4a8d'); -INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0428a1308456efb1e4a7abbaf23cb86658773f0168e6c35041ad314c37de5204'); -INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"d8c6fabb9b9dff0f1f3ba35e75c08be55dc4ded8dcf54e51f0cd857625b87dc8","messages_hash":"4158c7703a1fe910acfb1ba2e9bce1d7298dcc5dcd9e8c71662136d6b5d31ed1","transaction_count":0,"txlist_hash":"a34f7e98c65b95becae5908e74cfedcb846366a83605f9d8685e98ac629d1278"}',0,'BLOCK_PARSED',NULL,'507dc833bf938e55bec74b509e6c319c2e11713e617573ca9abcac963bb3c7d9'); -INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a74299864c2db74aa64b26cca21424416d253d53099ee33fca9828bb7bd611b'); -INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"eba03194b13ca764dbfbb86f86d16841df4486f12c26a214f7f1020468b52d27","messages_hash":"ebe529dc2a9cf1491d2d5d1d9c3c58179025fb398aabd74b96c7e36e7707665e","transaction_count":0,"txlist_hash":"e5a15333b0539a58bcf306d993b0be078d8dfd3cf3f5929a690da5ac534eff5e"}',0,'BLOCK_PARSED',NULL,'fc1c79fcb77ddf8c42ed5e8680517a6469fdb0e96dc21dff131717a62ef77ead'); -INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c19015f259b00bb0d76d510ba58e287402eb95263ce80f0da9d2e474d0a609d9'); -INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"d7fa8085722edc91ea5cb907e439649533e32ad5429b52bc10463629719af5ab","messages_hash":"25013bbda0f976f456e9899c5e6f84515b61640e1ddd41d31f40aacd0354e1f7","transaction_count":0,"txlist_hash":"bfedffe97e2bf812728130721dec204767d92ab05bfcf2c4596b5386fc6ea380"}',0,'BLOCK_PARSED',NULL,'1a3bc7ea838fd5631e0d0a4cc20158c2109f59feb24e35cd9c91e640d609858a'); -INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d29f3d11079d692638b7fe400d48a57067f1fba62bb9c5e522ca437f4a020aa'); -INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e84e0b26a5a67af1bca0cdadadea17b52b79f160d8acc0281289de1c70bef248","messages_hash":"30b9d419bf1481515cac50b1152199544accd2a8c60be770efb9f5aa403ea5fb","transaction_count":0,"txlist_hash":"2b4c3ff824d597cc1376a524f89bac6deef025a71395e848b51e9c06002d7f12"}',0,'BLOCK_PARSED',NULL,'7905cd295852457b56f635fef5620986a0594182d0a5ae1a0f104a6deb1e0881'); -INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c950a6f1507a0d0b98021f05e1fefbb1c74c002aebb4e28b3ef5b33df26970bb'); -INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ac3522ba0e8278bac956b5f9d7af271424f8e4eff23d57d2a5ff88416dd02ff4","messages_hash":"b62c5ddcc39b609c001c568e8a96b2d91de3fadba244635cc5aed05d35763889","transaction_count":0,"txlist_hash":"2b3b181734d815e3cd024f6fd91b11de8cd457bdc5f833520af281a6c42ab391"}',0,'BLOCK_PARSED',NULL,'2a6c511417a945c4b6a121c1c6cc1e6c9bedae63ab004a28706f83f4100fa8eb'); -INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dba7d8a252091229f62f761c336c5d95cac70910a8fe92de0e0b6bfcd1868fce'); -INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"86255a3e32e6c7a96d0f0a6e7815d61d9a970272f1df38bb0c29ee9f2051f2e4","messages_hash":"9f0ab7dfb41ef3180a08536fc0252e821991d592ec233ab048424419f8e0e799","transaction_count":0,"txlist_hash":"9092b97fab9af004edd169f26446c6712e5e1ed1d5f94fc5ac0b49565fa65b4b"}',0,'BLOCK_PARSED',NULL,'e63110e673f0a60eada8cb2e514687b5273a073e86343bc3550809b5b5a94391'); -INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dde92c6e355c7b47e7e220c4b5a2945a550a155be958f8e621deb2c0bfb727aa'); -INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"9694fd19263381693133a47584432de876ef1e0a32060d52c8db96811ff7d09e","messages_hash":"6551432da4efd50d021d5dc88ba8d6768fd40c0785ce93cdc0491f179d399739","transaction_count":0,"txlist_hash":"06ae398816ea8ca96fa424903182c7df9ce93c5d1bdbc2ead089ee71acb90531"}',0,'BLOCK_PARSED',NULL,'df1e7f569099e7617bbeee35b2cf99e3b8673859dc46a46d59577883458d4136'); -INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30f6d06ca8baa154e99d87ed3c3498a1df42c19a4f4bbf9815fdf7900395691c'); -INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"3cb1b469cc6627cbed3f0db1a00370d5c95edf9940f8a4c9406fc78076640d90","messages_hash":"ca6e8c9105d538b6872ea6f62f0636cdd245b17f2a382048a6712e1ad9f4b290","transaction_count":0,"txlist_hash":"2c688b2021aa321432ae1bd5a60a9f65cdb6d3720512ca2c304bd2773e7647d9"}',0,'BLOCK_PARSED',NULL,'c2345ad46576e9a1f55d81298d235746d9dd7c48d7b1c9a61daa07151ad51633'); -INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'422493891b68d7e2cdfd661f289af0f717b2029bb7d0519b8f18c4ef0262c3fa'); -INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"cac7cc49c1d632aef2e9bcb3456f60df2ff11110c4e9980989ce0f2d8a5835e1","messages_hash":"da5e150ff4f4000664421aa0506fb40a5a09bd0e67d00d2f1c94d4083d594472","transaction_count":0,"txlist_hash":"2a7ce0455e84f973c078752f1c0ea93ffdbe993f239baeb7ed947e749c119dfb"}',0,'BLOCK_PARSED',NULL,'ffdf992ded00ea4a6aa66bcf35c99844fda2be17bef086b4d52e888b4c18488a'); -INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41214c1a6ec967b390d19eb70d66ac5d342b62afe7bcb47e1fcc2957acce8e7e'); -INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"1614a317b1144c7f08fb2785bf468bb299b9f19450331b7fdfebd510fa07e574","messages_hash":"b2d1f80a9255751fb1fed53b2bc3b638c0296d95c6d2d34b5568a4689dd224a9","transaction_count":0,"txlist_hash":"270190f8eea6e059acfe66f7369986d3748f707f3ad0eaa2e396a190cc047a6f"}',0,'BLOCK_PARSED',NULL,'004b30d91fdb6cef81894321326a30da8b4155581173b15c1be6d61be8077858'); -INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36c2c1f8c0219357007d3a35bce9cfce4c63402f2d1f30f7385e345bf57f7cc2'); -INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"631d42f4b3fb091a4c67f737bc2da60b8bf9820d27c758f5b9453b40813c5bc5","messages_hash":"f079d3b7bdb4c56bfc3f61400a4092a75f9e6231f4a62bc00f476523ff679edc","transaction_count":0,"txlist_hash":"35ca62f9b66717328f41e23c80e72395f4ece758ce3ca9aabe1d1edd87d06016"}',0,'BLOCK_PARSED',NULL,'7a4efaae02870faeaa6936c94e8053746acbd7c656d227a998f12ef80ea275fe'); -INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe86937ae3263c98a12a01c673c38a0776c30fba6bf16deacabecf2c7e2e0b68'); -INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"2b3f460da72fc0a9b3a720abca80bff0c44654287de69567c43c62a5557144bf","messages_hash":"6198309a64cb0964437b25c3d2c72354f8ee78c81f0d525ef4ea92daa208eb5e","transaction_count":0,"txlist_hash":"37d35cf95c6f102413739a672d5dc1c3b0760068de256676b336c631bdc94447"}',0,'BLOCK_PARSED',NULL,'f672787e946a1664c7ab9588cbf59072274cf4c2c635ade425e2527070846e9e'); -INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a302edbd367b478d332760a823ce873c3ab011f6fdec7dfbc186549b75433ed'); -INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"db62bf94ddb276cf55ddfe73f8023e760788647910807adff6e0672ce1d5e23d","messages_hash":"9b09326d60df6598e7b742f971954a5ca84a154851c17fb0e52c0bf755b74959","transaction_count":0,"txlist_hash":"2eec38760b106cf52b3bf0fa51198348cb611ae9bb75edd8e4a343e7fef1e042"}',0,'BLOCK_PARSED',NULL,'37e4dd45eeac7861820f696136cdd0ab14cfee549f700241919d6bd641af1aa9'); -INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a99fc30d771c6f414a2dbbe59f524ab7299e98c398091453e24ef9c49f3ae60'); -INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"1c427808f1eb1972df57b51eea9f3405d3d63a1d58c5a3faba616d7160e3a264","messages_hash":"af0ec86d25140f5a952df3fe646f217de042ddfd8dfd085a6fb5d88e0888b13f","transaction_count":0,"txlist_hash":"be57a1f4088437c89e3bdd7c9456b8ac9dc6011d15ada8d5432ab662f80e9a52"}',0,'BLOCK_PARSED',NULL,'137653b4bee90842f2b22f572f323890fb5c6b1e27ffccc3faddd7bc2febf1eb'); -INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fb15099b15dfbcb6794f7598da4963c885a08eb1adc0bd855cd57c13049ff15'); -INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"cd28b5ac0f80f8815467663c1e90b15ffe46ce067a1b2ce004b0d371cb0ceb16","messages_hash":"a07a2f28740a4c0534b49158731d7a5ebdcc864a78f6a43712f0801df161b7f4","transaction_count":0,"txlist_hash":"cf5fed759ba01d430d2e97ed6d52503a67c35688f02ad6742e87f1da1b468ae0"}',0,'BLOCK_PARSED',NULL,'ea5bd189aa8d15c32ac9b738f6de6f757c347f70e7b1a2bebf1646adffca4a5c'); -INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'230989676b0d800ef04e5ed48084c74ddae62f07ed894c0b6b103597e9c010fe'); -INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"69adfbe756c116e395fb3a5170b57210ac2721b07144b3d7a35c4327f28e28c9","messages_hash":"22f0cc2c3132b52f202ac56a0f3b655a80749220c831f02962583c757681f799","transaction_count":0,"txlist_hash":"528e0ea934cb95d328ad13fb3a3a47a1d89824ee44abbb2cc271d707bb6d62d1"}',0,'BLOCK_PARSED',NULL,'b5ca13ceabc0ab3d03df5e2af4e450f960110811f528c83ec5786e4c2493f1ff'); -INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da632fef177acfa491ecaf00df2472808ca26ebb106b7ab0ae4ea345418d1697'); -INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"d50cb66a25a410db360cdf749b5d10932410b5e37c3e5d3d834a65b5671dcca6","messages_hash":"b02de37f697c714bb2e208429c8209346762735ae91f02c7a6bc88a65f970db0","transaction_count":0,"txlist_hash":"f0e0e40238d13f69c9c40cad5b8be218cb09af9bc061e728b56d74a42182788b"}',0,'BLOCK_PARSED',NULL,'3ecd1b2364e3e8c0a6c04575feb76de3e62537e903d7d0b70c09e04873a3287d'); -INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30c593ad895e309d89bcb3768b2c8cf5a45957ccda8a0dde5c3f81b048ec3b9e'); -INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"384f8d2eda5f1b7b8273ef149ac37fcaa9ae51865fd57bd348339579b8a078eb","messages_hash":"b93269658cde34c18f66e0b0243c38a6425d52a4cc55934972ccb78e0a0e0cec","transaction_count":0,"txlist_hash":"19ac618404aade5a0914a9a9c159ea229384be303a320b08b9915474beccf1df"}',0,'BLOCK_PARSED',NULL,'2bf148e80908f92d599cc7d5dc6ec1c1ea508754bd616ff426fb9007592a17fd'); -INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'435b70438805348beb8f84643a8ec420d6108a085c2af82d4fd19b8f676d5fc5'); -INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f","messages_hash":"d37c9a6017c79571efd424729624af5c2bca215c2215fdbcf718de863ea10f89","transaction_count":0,"txlist_hash":"7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e"}',0,'BLOCK_PARSED',NULL,'2487982af43113bfa0d2effb131c43add29387efa13ab9b8a5daddf24641e9c2'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1,"utxos_info":" 5a1dd4e714aefe0a715c2b0ea6428c2e10cf3d3e3dc7e740cd0877c1e4edec24:0 2 "}',0,'NEW_TRANSACTION',NULL,'11f9fe38ff249f17b9f7d4095a37cbca3d81bcea511b7cec26d12f61d29fd586'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','4a364634a53ca5bab58268a2b6c4729b2bb7f9234fad38abec3f42d010e241dd'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1}',0,'BURN','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','91b1de591fbab7558b19b8a561741c7fcf88d4d7fa819ecc018ba8372eedbb88'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"a16ae7423db132c887ae41cc33b7fa48a0cc6571d5a49e0963be25ec8a9769b4","messages_hash":"2f1739da6af89a64a270eb18f33e6b1d96587b44c2621ac4e660892efc5c182d","transaction_count":1,"txlist_hash":"b8fb4fb649dd315851564165b076d636e5a85e043d59c11877bdccced38f1b3e"}',0,'BLOCK_PARSED',NULL,'0e0b042b0580f02db2ae86bc1f26ff82fd059480a11728e78f85e7442b7a1dff'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adce9e856697d2413c8af14e5dd2ab6d08729481d97ee6a6e2d67d911a2412f9'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2,"utxos_info":" ba510a377d1e3a7b8ef283dbff7b885f86b7ae606773a85915618aacd3ff19ca:0 3 "}',0,'NEW_TRANSACTION',NULL,'f4c2aa1d7fd0e11d52e3c66b3f7e7038081e3f889edd6f24d7697a4d50abe4c0'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','c2cf6c22f73a1528b6062c44e47ab266e5391155935aea61d40e9bbafcbb403d'); +INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','a9d43f659da4e6b058802297b85a2290699dcb7ae0b3bf026507433927f6b797'); +INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'SEND','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','b37f0329ce8aed040cf0f1b0b097ebb5d51c18d822a5ee21ef2548a97fbf9248'); +INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'TRANSACTION_PARSED','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','26ea9b32f26a6025316029abbe8bcec340b43aa771bd0298046e5b8528d381c0'); +INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"0cda5c4a26f0b23d5b948142dcd226b2718c57c9c6a481250128a7a1c8ad30dc","messages_hash":"e9deaabf7fd801d95ffee56908c3914de322df83a1144013646e6187bb27cbb3","transaction_count":1,"txlist_hash":"1c009ff73127980e51ba6a7035bec5c2a9650b5a184da1d55c3d807fa658f8e7"}',0,'BLOCK_PARSED',NULL,'4058060adfd3aaede615e85b06d35e59a84bd5b0589b126898836b64806dcce6'); +INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f201440f740f1c43ad41ed491a497fc7a5b2c129cf7cc0737d1465da0a6f936'); +INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3,"utxos_info":" 56bffd88516cfd0d35b3c4fe49592a213cc276b1af94c73d4254f689dc408946:0 2 "}',0,'NEW_TRANSACTION',NULL,'42ced27b36338bb6b8eb21e710b8fe5ae006fa20fe82b23f665af1b421e1c287'); +INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'OPEN_ORDER','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','7dcb0db8bbbd514c8e47b2af9fc5eccd47b995b9dab3104adf4b291f4a0fb2c7'); +INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'TRANSACTION_PARSED','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','ecbbc18d02ec7f7a03deea46099a7a0a64a33e20582d24c6b584995161763d5f'); +INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"657c31576766cf1f8a699a14e6c7493498673f1948bea1be4f639247f4d52d53","messages_hash":"6e9bd4b7b0149368c0454b12e392ce277bede7f11ac07338bc4d199baa4606a4","transaction_count":1,"txlist_hash":"c674bb5077acb71ab19a6a4a8f779015846135e7b93a5006555fe1f4ad10c58e"}',0,'BLOCK_PARSED',NULL,'b6a5af1a4787363e9c1a50bd8ac2b3075659f81f02895851c55594bb7cc9fb08'); +INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'161326d0022fdb9ad82993eefb6583faf4ca572a45a4337f2374dc5be97795f5'); +INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4,"utxos_info":" db6a3690de6726ffb0fbfdb3e15c890ab7619b967b60b9e8434605070e0264de:0 2 "}',0,'NEW_TRANSACTION',NULL,'a250392e6d1a6330ae5f7c171ccbc461f7a13281a2302d57575047235a5c17d9'); +INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','c2abb3bfb94618f7113613b9b52757b7e144013e224159ed062a3c9d11057a51'); +INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'OPEN_ORDER','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','977d7a28f12674953fec5935c42e967a46a0d9d4102db9b69672a27bdb815e29'); +INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','dc176ac73167176a8ba7eec918cb48f6b1a270508f3a99dd797d280044243af9'); +INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','e16e63f606fc7ace68b2e2a506e8b2fe94b6e3ceb99b09a61bcb2ba592862704'); +INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx1_index":4}',0,'ORDER_MATCH','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','537e38e85cd024451a0211c98a5bc2fe301a65e9f872391cb7d3341c9c9794b0'); +INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'TRANSACTION_PARSED','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','85e7032ff8be9cc71ba2be6e079408239753fd91a2959bc4258aeac48f2fc926'); +INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e11e7eeb21ff539c27324c94a407dc6f04c739f3ed9841f9f661bf4441e4d847","messages_hash":"35acbe7c58004be5eed9247725e54a9e62d9c12d1819f476b96438fe89ccee24","transaction_count":1,"txlist_hash":"105a5c9915547d3ebfe733d284d6e812cada8e86a904510fc196e2f0af5b50a4"}',0,'BLOCK_PARSED',NULL,'437d127fa44475c61e8967708a2477ab040324473b06430f255427bd2a667d5c'); +INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d3f204305db593878a3e396438821993bcfba78204a8d677e95956024d85ae3'); +INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5,"utxos_info":" 85a2ebf947069bab0041ce8cdcbe9f0252300f8f02f46b5a8c688d2ca40f74a8:0 4 "}',0,'NEW_TRANSACTION',NULL,'83b1986d33802fcd54d7d3b57f51c565fdbdec4ccc0c5b3ccf3cec2ba4f2cb68'); +INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','9531f831ff18ec2b44d9a1ea3f95f5a479b83eca1b5fb99c400ba5db27354eca'); +INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","status":"completed"}',0,'ORDER_MATCH_UPDATE','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','f2e7df7e19dcf9b001b92d83a986275ad024ad51f255362bdc89363c059e4f58'); +INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'BTC_PAY','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','7bdb03c940e31de78abddaab5b438e143e67b98b1a4b9056fea3db219498c7cd'); +INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'TRANSACTION_PARSED','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','ff9dd6e0b1ae9a2672cb78abb81122507f407dc2ccd72965374e339d262f2bed'); +INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"2742a3e99eed62c09d9ecdaf501aa69b0d0b21fc092ca061448d5016957f35e0","messages_hash":"4511574655e8ca48d331335647f4867eb537696f16a1e1967aa0d5eed9094011","transaction_count":1,"txlist_hash":"369b47f51b512708e680edc5ba459b91e2a514f5a5c7cb8435670a4b3ed34dbe"}',0,'BLOCK_PARSED',NULL,'fbe630fb53f018f7e7c33f6cd9aea1f1b2066dc5c3fd3d90c580ec2748ccd2ea'); +INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf157763de7f068a9aec213ebb434e799b7305c6980585f02172648049e1cd62'); +INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6,"utxos_info":" adb8634c149c3b6052a0ba9800ce5fd4deb634cc1081ecb64da04a0c136ff9ab:0 2 "}',0,'NEW_TRANSACTION',NULL,'14de6a112508dd64d6372e9506f3f60c47c78dcff923a968413b533ab4992ac1'); +INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','9c8d53176b5561574199d95d394f2892003b127dddf0e1da291fa46665565aed'); +INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','013c1122e3dfa64f6648799d00c940b94ed093855bbb997bb8433f342109d612'); +INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'ASSET_ISSUANCE','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','278ea71155f3e549b52e29112e9288c486faffd11460cda193b14f6066d774a0'); +INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','4dacf4073442d00246ae820c9a57d1e5f5093f08c732e2d7b6871eeec27beb58'); +INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'TRANSACTION_PARSED','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','e6daf5172dd8dec0085fc4e030a761791b421197ebdc4bd93d7813118d3988f1'); +INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"49f526a56f21491c797e8e2559f722ded6f6990b1f69c55dc38791d8d30f4048","messages_hash":"568c98891837d627aece7b98720a3c2e84ffac264b920c6a96c1bd3c2f839df4","transaction_count":1,"txlist_hash":"f0c2ddd7c39b14fc55d8518c65aa0811fe7807ebd1eebb4b66df8459f9e5352b"}',0,'BLOCK_PARSED',NULL,'2477d8f562a1354f19f364baa29d5b233afd83dc123296436fdb53e5c4567296'); +INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cbb38097a1136d3be41a4f73a7e0cf1614037af4e25d1a9a9cd087bebad1f3'); +INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7,"utxos_info":" 8c154a6d6b271e4a1d2778871fcba2f45cc455b1260f79ea08e031b9ad79c727:0 2 "}',0,'NEW_TRANSACTION',NULL,'3924b0d01cc24ba5c70ef00ebe608fa2aa3c614ad75dc58f8f1e5f9c197d9355'); +INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','c9e08aeddeb6bd874940c0307bb10ef438a363d699522ccb495598545644d087'); +INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','f4e5d3689fe96a8d9867a4d815872544fcb2fca9189f1fe0ef489510ad7f6f22'); +INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'ASSET_ISSUANCE','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','acd82fd876c43244d7fae189398e6a396b57d3f13d587126ca73776fba8977fe'); +INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','4b3e95237a8efe191d9272e71b48a65e7ce562439e04d3c4b3dc9b7d40e333b6'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'TRANSACTION_PARSED','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','63bb172926a8d0bad0d40c121185e1f2e6e1d71fe5503b6b5e5ad938600d71cf'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"78787c4c9537fc4db5d1dc7d31d4fab6b445d57021aab1a38d4bd6a9404713c5","messages_hash":"616a0d9bd0a91eacf780f74d009873b90c573644794634ebc9e956fdbea9a76c","transaction_count":1,"txlist_hash":"877117b3bd10ddbe6e46f417845085a6bdecd86a4961b99c80e991b4c51e0f5e"}',0,'BLOCK_PARSED',NULL,'0c56aff2b8ed5cc54c8ec1b4e7be7bd77694f8b0a9148a2f399c4e424816aedf'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d479265d60afb7e2db55e61e21330ccb1d34c9f02844795a63957628caf7b72'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8,"utxos_info":" 51d85687c1c89962f2676b6beb0374e432835723638250959cc084f37ff6da88:0 3 "}',0,'NEW_TRANSACTION',NULL,'fa38211b6b75427a2b551f775447ecb7a27a82b0bda946cbfc4d61534d8c8b97'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','4ec40d889921eea129d57f4b41560fc5987e553ee67ac96b1f1609fe44721b55'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','94c4d8f92a42100e81f569bf6f36b4037e2918d3d383aac8ca78827089a5437e'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'SEND','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','9cb48ac0c0a0ec4ef2a747446e13b42a01081d877515571fdb823174d47c94de'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'TRANSACTION_PARSED','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','ac681b2a04aaedc957c3328c89bfb9b5634e5c3b2cc8dce4cc2ec38fff23af47'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"5cc2599b63007433426c220c59a777b5c37b1165595f2ba239c3ce578c8055ab","messages_hash":"6812e7237e054268ea52058fcefef3f801d36bace225eb6d3fd95c93696c1a2c","transaction_count":1,"txlist_hash":"702a5772ce8529995f7a66a244e8be495e3f7cbedb7b09f47e3d5aa941c7f4c1"}',0,'BLOCK_PARSED',NULL,'e11f24e6a5819bdf39106863a189dd663c852392ad17ff7d8424baadf2f6b6b8'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'551b442ab3a2ec54245537c635c8279439917802f17782b478d847c0c863b33a'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9,"utxos_info":" 6663a90d7ca7b4ea4ca5bf8c409457230bc427c7fc6a5d0fecba5ebb7a6758f1:0 3 "}',0,'NEW_TRANSACTION',NULL,'e0ea0d88d966178a8fe886058ab8dc60e4b6464cfb56b6a52ff33b1659eaf16b'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','39c62e0be5a2c19c3195c7fedbb87694d1af5f3fdb20038faf30936d9de4b3fd'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','d48acfd77e31df182ee316791461dd801119d09fd2f5701fcd84da8dfc5893e3'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'SEND','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','ec1f8954c6fa5b7bdf7c68a117d165373c074c8e4963c6843cad413d19bbed28'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'TRANSACTION_PARSED','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','41efa2384c9f9a27b03f04126293481869bb268283f99517ffa9adb4c141c448'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"9550db622e679ff3d63d814f9ffa743d57eb12491b213ef6474617a6c738c3fa","messages_hash":"4e94d7dadd588f5cbb2a3bfa338879bb835e63e0be3f29cc63fd7c9df3e6cb02","transaction_count":1,"txlist_hash":"6c536f7ae10567cbd91945e3e958640e6c65408f83e4a1d93e705950ba39de1b"}',0,'BLOCK_PARSED',NULL,'ccdd9d9917c6fb58951d1508dac46b22602e8508bbabf078a19f7bf13fb39993'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'946900cc476b3c8e6ee186b86ccec385a793ae0342f52c239364ba927802a816'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10,"utxos_info":" b0ff0b363dfa94369ca5a5c66e1cdb0b4417d879031471cbb14a371b58d26f99:0 2 "}',0,'NEW_TRANSACTION',NULL,'4903fc52704671fcc20f66abf1e69593f877e255debcfde5a58dac15e4193e18'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','f24b46f5ca3f6d0863e97f6c31f7d9831d4d9f5b3f7fafdc51aaa928095a07fc'); +INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','851247ad8175078322702894b86c4f74a4f80bfa322912aa8c194e990186f828'); +INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','0a11c734c65c8fa7b0af709083dbc0f432d85e604546d2538c6843016fbd588d'); +INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'ASSET_DIVIDEND','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','de5e9dcb09cf37bbf452f3332d3df8172fc26c5cb93e2c1ec5cd0add50e7a1d8'); +INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'TRANSACTION_PARSED','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','e37785301753b6f8505f2a6fa05609a3e7f2efb1d0fc7665db4acb5309df84d4'); +INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"08c005dd5bae7f21ca27803d75318ac4b968c6d4dd2c275ef284c03fea43b189","messages_hash":"276a777ddf31320752e501401ac7cc87a15c6ce1495f1f6d4dabcef1126204d1","transaction_count":1,"txlist_hash":"8f8156aca3441754221fbf9cc21b0e7d877a533e00f63950be3f95d0a9305433"}',0,'BLOCK_PARSED',NULL,'f18264147a911c73245a60414a46d6405d1845c11551f6965ac53ad379525778'); +INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d387ce1484a1b889d8008b909690c35c2dcdbc44ec199efe28c8abb107b1ac60'); +INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11,"utxos_info":" f723e723c8b285dca6cb5d4ab84ad48be13f56e1f664d6b6a14833ca440019cf:0 2 "}',0,'NEW_TRANSACTION',NULL,'5b26d20d8ed527269d9ceac19e1ab8b98ee39f21420e104199a5bdb5f3ad68e1'); +INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','ca8e742c58c861068ff1fce449468b26d1afa472535a2b182519560f5f14c45b'); +INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','1dd45dd140889c007ac3152384e6d02bfb24a0abc57b7938d981fed40b8aeac4'); +INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','aa45d27573411bdd288f0f4859c47f3ab872031649bb983d874f6083255a339b'); +INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'ASSET_DIVIDEND','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','fcda0f59bb650268da3ee8f6d8e458caa2ee1c719dd1edc8f9aaf508d193b305'); +INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'TRANSACTION_PARSED','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','df1f5768fa8d05b8abb1e23141de8ea1be3bf920304728ad7b0a26aac4a69a41'); +INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"07f48634d06e6be1d800e068cd213a648517fe167ed89c355d9db966897ed7b0","messages_hash":"89068f2acf4a0563d3d3f344fbe7e4dd63de7750c3a9a39b44205306fc404565","transaction_count":1,"txlist_hash":"c5956a9750e786639ceb4a252a219afef6abb753037888c90ebf17a5c5db079f"}',0,'BLOCK_PARSED',NULL,'cd4c42b46b7cdd478e847f6a23964b5d015d54456e28b051c77e308f05f77dfd'); +INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c194c950c4d15f6744b19ddcf9d1154fe2b1d9563d92adeebb170a0f6df3941d'); +INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"utxos_info":" 1d08e7f0e0844e03e7ca4db4990dd81ba00b39cb05ab13aaf69fc990592f0f64:0 2 "}',0,'NEW_TRANSACTION',NULL,'58c5da8bd75e46a98bbcfb80e08f9e02188b42e6cdddf0080999ce7370d83935'); +INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"value":100.0}',0,'BROADCAST','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','740fcff395da392489a680319ce03f094b5e33687dbbb2a418ee43b2504018e2'); +INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12}',0,'TRANSACTION_PARSED','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','60499c6b1066f3a6618789df54ec783389810831aa780660235035dc79eb4386'); +INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"8d0be0b3731bdd0d611e81b48efa6c706a983990f31bc563d57893f705b73aa7","messages_hash":"108d8251dae0667820f5aec7853c9352b69ebbb1ccec0e2ce3b9d845111fe9f0","transaction_count":1,"txlist_hash":"219d47523246e5c4ffa99ae9c29bdcfdf9f419bff3d21da76fdc91cfe99fc28d"}',0,'BLOCK_PARSED',NULL,'088faadafb3cf9d431a93d92aaff528fc4a66b055cd213af290a47b44a4397b8'); +INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbc4781f3d0195a53d309a9e4da9a41aea00dc0d8fe2474799e01a15c0b4f998'); +INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"utxos_info":" 62a77d25a0ce892f3de8300271ca730514c843ad2e0d86cfbc9a0b092cc46bc8:0 3 "}',0,'NEW_TRANSACTION',NULL,'53be293c75f28724c6d6cfa3d61e1cd1eb5974f317c395c4c9e4ff37c74faa00'); +INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','0b516402b91c0b8c4db6a880c1d4ef299761b7d159a328ae7f53a6b9672da01b'); +INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','0ec8460d4d296cb208117a4e85b31346436720f7ecaefb4c5b0f405d183127ab'); +INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13}',0,'TRANSACTION_PARSED','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','6c9f9bd44c60aac77f24ccef216ffcdde54409260f94219f028f93c655876e92'); +INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"e3de05180536ad40eb9007f19ccb819fee0586cb9e7c414dc560e506ae5c09b7","messages_hash":"b4422a845b0561883b59a4f9b510b5d280fc096482796017698996356d61383f","transaction_count":1,"txlist_hash":"ce6072bd562a52051fc530ec552aa343e4980a1b236f1cb8318c415d3eb2e851"}',0,'BLOCK_PARSED',NULL,'659b671f222bc267fbe63c5a0aa1ab93652f47fd3bcb5ad41a91797fab85159b'); +INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bb64d4522ef784f09ef4f50d2a19b44345806362f47321410953431be17c451'); +INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"utxos_info":" 2edaae7a61984f1fb31cdbb4513d8523f5b5ff7feaa86390bc32b3463c55b656:0 3 "}',0,'NEW_TRANSACTION',NULL,'aa27dfcb8b3b99f5cd058b5ee7726eb89f5f7d9492d9a3a7c7b4a4b85713e3ab'); +INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE',NULL,'016911bcff193eb1cf613e626cb5053c02aa758d7571d92a55e0963b03d59a93'); +INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'fd8bc7f6357d08be5394251064e235eff231e14e81a13e9007e690f00a39a269'); +INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','e6d8461767157f59b1ac87ba67546f37a73eff19d51aa0b953669a149f4f251f'); +INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','e16d8294c861ce543385b3901fff4dc45526a601b4ee563538ea38c6929c5bc0'); +INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","wager_remaining":8500000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','b25670e20eebbe320c2fb2eab16157c0a730352412c52ee91c75a25ba10dc83b'); +INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','f15586b724b6397ce61c144c8f4bd2d9cbeee2e779e3c9429fed102cd3a85f53'); +INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","wager_remaining":4250000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','cc5d7df008affe469bc3f60c6039d77bed1949e73b58fdacf835d8b106de3a9b'); +INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx1_index":14}',0,'BET_MATCH','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','110a88dc6de27fe14f6f0d6b99625787d2a45c8603688980f09db452334c4999'); +INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14}',0,'TRANSACTION_PARSED','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','98776a5c98decbcf3811c071a2e9c0125b1ec6bb4850b472db76629cee4db67b'); +INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e521556db091cc726fb38cbebfd10923e37dab652c51dca73a646fe5bd81bb96","messages_hash":"04c93ab3e40fcc757d95d7d988100af4f8a3b8030dfc3bca00266e58e13c4f59","transaction_count":1,"txlist_hash":"1a1e24f2debcd4b5b1e350a71823758d3114335ac831367bc91c9e487b94c65c"}',0,'BLOCK_PARSED',NULL,'9dc6820b316b91a943989db7c42b97043a1156c0225a98279be38316966299f5'); +INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5fe0ec1d0e55ad515f8b792582d8846eb372c109de8b25401b2ab7e9573d5272'); +INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"utxos_info":" 36094f1d95f27bb5e6cb42a8174cc0fba3f39905d6cd6ac2140273c73d55e04d:0 3 "}',0,'NEW_TRANSACTION',NULL,'1d648d8e3a938d9ccd8b9590752f47a6f9a7f8cd0f638f7ea56b7ad95b0fc70f'); +INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE',NULL,'7c0f2d8c16954fa04eba38b8f1567a27a511fda02f4779de74179a87c539e9d9'); +INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'823129bcf7101ea40fb8d8d952424326280c46341bf5237386f3699928309f5f'); +INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'791e3f7f569840ed7e07cc2fd87ec49c91a85d0d0ebf04ca36cd0adf3464ec74'); +INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','706a919e4208e34e5731c76570cc683bc36e307b3d93e55a66b77e32aafb732d'); +INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','cb32254f36bcd6e0ef2ad746da3e1bf07be7f1d2e317e2d853d58bc7e9c92aa6'); +INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15}',0,'TRANSACTION_PARSED','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','70b25964005fa27f4d433c12a5b78da514e4e0ac4f6311ee84838a54db1e80d8'); +INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"1cd6d92fbbca9266135a35f20a4328d510c8d209ba6161dc8c9e9bfa69032c57","messages_hash":"20ffb72682c5b27ecab3983388e6c375dbe0607f4c8f5e3dd070e00b7b58e37f","transaction_count":1,"txlist_hash":"80ee1bd354b8e1aa1c2f57926fbd36c0d9e2dbd3f77d8f2e43d59b29bd8175a6"}',0,'BLOCK_PARSED',NULL,'0c2cbe550aad39f2c2c1a0c3caed46a75f1e5be20263ea230e1dcfd0c3aac8c3'); +INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0760f094699eb9170f6803de1474ae6bdc93db2307b337e525d4e0a2bada7b5'); +INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"utxos_info":" e422a810d19bbe9a4215c706193e554053f06d80d74ab60aeaa519d01f2d8abb:0 3 "}',0,'NEW_TRANSACTION',NULL,'652a5779b007fb43a386ad6a55ef193e56574b74350e1c995ded2d2324b7a1f3'); +INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','8d4e38729cc774f4216098758db7399e7e0c2e890de6982f91cf4123b03286db'); +INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','09941f8b0619f0c5642b0240153753522295a4c3d7e23adb05c55aa321051a77'); +INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','ba65887d2edb5ca22773b544cedb3162ccdb872ce7da9e15a6d8bcac679f1465'); +INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','d8dce1f51ca0ee14ede8335f54656496622947fe433661252a84efd9d52968be'); +INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','403612a62fb5c7d611a2aa22adb8c59e5e860cdf730b8a170f2349a958719810'); +INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','4d5e5330dc0df33bd193269ead1eb552598d836771e0c7f11c7c54a03cd0dbec'); +INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx1_index":16}',0,'BET_MATCH','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','9c332af8671d0d2f2d8967ff7dd85e6e7bee343dae58e99b532411f62aa4d5cd'); +INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16}',0,'TRANSACTION_PARSED','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','1ac625ff216647b4cf53f8acc2f562537da7d1c6506ebef98c42a376b7b3e2d4'); +INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"62759ea6d5070225bd30253a42b6c68fdaf2c4165b1b221b8e7bdddeb26e9737","messages_hash":"f3d086dfac0849706c5dd2047451ef87178f00ea00ad422051d0814b7843b47a","transaction_count":1,"txlist_hash":"30a124b4460d985c715c7bbd85cfbe972a5caf457e45844e0a54daa258ca3376"}',0,'BLOCK_PARSED',NULL,'8b7140312e7da35b8103ad6a78f23a77fbcbc60918dfe504134558289defd10b'); +INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6888ec82069b117c7983e276eb4cec3bd25f75089c5e575a465f4735f8c373b'); +INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"utxos_info":" bf409565cd591e16a2102fee4781a64681cbc79982ec5526ee17bf31c7a4403e:0 3 "}',0,'NEW_TRANSACTION',NULL,'57e8cfb387b30e6cb3c56d355560304c7dad8b4ab8384a7b51aca99ee74b57bb'); +INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','a127f886a28cc47169bad1f7f2ddcfb659a8d5389ba4a0a7b4fb53ff1d5d3737'); +INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','46fb77505d6c2216252ffe99f8111c6a87098f0a5c4916df32701b10720ecf5d'); +INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17}',0,'TRANSACTION_PARSED','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','ee83ff0a84fe4a1fe5c011267933a9221990e88983b3361605ce70f88851fe02'); +INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"f9fc0dd4d98ac5e06e4f9673cf5678f9fc264cda23172e24427b833331b73c33","messages_hash":"fed2f51431618faaf65ac437f4e2ab09bad0f39f5c97b3ea62e2fedc91d6708d","transaction_count":1,"txlist_hash":"cdbbf3665287df62a1660198e00049d06f649f37c49cb76e9fb1eab12960e66c"}',0,'BLOCK_PARSED',NULL,'03736c82ab33d0a5b76f12e66cbafb55568caaef93041a3ba9751c9111db8f8c'); +INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8577e17843d620c43ef4d1030929e636d6031e21e44b466d3dbe642455fd4d4e'); +INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"utxos_info":" b7a480818948d8910e2cf2e6475aae1072be41ede27832fb8f99e3f14169f67d:0 3 "}',0,'NEW_TRANSACTION',NULL,'3b23a7110549e09854b8f7722e0df35517e5c7e01d2d3ec762ba34d0296e62ce'); +INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','a0af2da23cc3a25c1204a0f5f14a5775c8372e13810f12455c9c74fb074e855e'); +INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','197cfa46b3ced95fbaf2afb101495e6cc1b3f836ffa7e0a322f34b5f8643b929'); +INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','70da992da8b5b5d3818a3bafc7df739def5a3edf4d09ace908c6956594665d12'); +INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','cbf4db4d4cfb4a7cecdd3a400457e6a0eb078c57d1ccd862c64c944bcc73266a'); +INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','7af0c8064d0916641a680a52c05be05612b6cc473ffe80109fd156b2be68e1b1'); +INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','dfb9b3bb52a49ef3f570a91f50fd473a9d99a175dacdc7c4d8b72ce8ae28c429'); +INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx1_index":18}',0,'BET_MATCH','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','1c4b96da50651b2147a81bc395f5f028bd9b21c3e5c87fbbc6f310b2126ff40a'); +INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18}',0,'TRANSACTION_PARSED','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','c1ad021fdf53c0e0ed237a7e91d414da3350ed83f63e222322a813c436ad5e37'); +INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"4a355b8e80a902030f384f58700d05da9a6efaae3f3ce0b1a056dc1250d9ec63","messages_hash":"6e730d3392bf1313956c89d2323a4fdc27e3100c2842eea65bee8900f427000a","transaction_count":1,"txlist_hash":"355616d4b8b8408ea7061e787ca35918b6d0417895a2a2ff224d207f0f76e02a"}',0,'BLOCK_PARSED',NULL,'5f3bc6578b52309a86205d9e93aa4022ba2a293bf204eccf4663b093aafa63f7'); +INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3676bba0206dae34aa4f1ff2f4e61c226ceb8ee5d21424a5918a8fa1d2b3bfa5'); +INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"utxos_info":" 86676313d1f457055a16784cbf7dc0c9066499ed114d72535379ac4f9ca398f6:0 2 "}',0,'NEW_TRANSACTION',NULL,'b3544fbee282cbaa3a050b727dd337cb00a8f853337d2c1b04a44d493e162234'); +INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"value":99.86166}',0,'BROADCAST','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','fcdba60266fa990942e7ab975e0d67c4286138a32c453447a93fe5d7a0a6d700'); +INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','6aa979ae32f35f21fff9cf8ff488163ab851841ff9558a2e19aa5bfd9e15ab76'); +INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','89114cf014270c275d8ab0514118281c835ae41494fa1b93139885f6a89167c9'); +INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','a8d29e9e1749a2bfb3758d4087ce336913562990996da0a02eccdd32c694c819'); +INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','0a0c62163616c9a7d1eb15824e6c901c7e1976442ce2225df0b23a70e216af22'); +INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19}',0,'TRANSACTION_PARSED','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','8530f52038df9dddd7d5c1c8eed1105d5fd08668bf648e53f74f8fff6f83ca75'); +INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"57aee8f9c9b63342ceeea3a3162998e9034a3d624d6d85b19782943ce170cef5","messages_hash":"3f2a2498095f847c8ee4dfff40c31a208f7018a1ccb785289c931be3bb856faa","transaction_count":1,"txlist_hash":"7987b849a43c706d33e421d45e99ca6593c9aa8c69079522888f746a8d4ff748"}',0,'BLOCK_PARSED',NULL,'86b1beb245340548a2d70fa559090c4eca33c7f0088ecfaf0637169deac0d741'); +INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15b13362e59253e33055e3dc4aac9f016dfa46be0c50d4d999c7e0b822e2ad1'); +INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"utxos_info":" 3b7b4a98830381c9af4bda05e9520bc30013663a4fb71081a094e1017c6cc7ff:0 2 "}',0,'NEW_TRANSACTION',NULL,'11feb3d931594d5219460116fec9ecae68bcc17322ae2d39495a3c07cb81cc53'); +INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"value":100.343}',0,'BROADCAST','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','e0310e6077ed21a44d687dcdb80f3b66e85b731eac4a48f405d582158e4c76cc'); +INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','68c5258141592bc46f26cb1e871322a7dc2ef4270dcd5674c996aaf0f1aca6ba'); +INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','98fd9e04c03dec51dc2b04380278f1846a22bfb7b330d0383bdd5fdb95f859c2'); +INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','736c9710a2012a888c314e7696660cdf3f8e16e7fc822159496a7d58c208c122'); +INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','15ee0cca33ea2205b538cf29c4df720348ce6df3a7bf5b2955c13d3f96369d36'); +INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","status":"settled"}',0,'BET_MATCH_UPDATE','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','62e24847651c64b242906c81fc217e1723fdf093ceefeece775a8c07d7a38b18'); +INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20}',0,'TRANSACTION_PARSED','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','bfc63186fc3a58c299e1e2c81d4f62bb6deee7f5826195fd93f92e94b28bbaea'); +INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"d11f94528a9e0034365e4388ee455f02102d2024c65e1428cdee28b6e5aa7e1c","messages_hash":"c19f295295d5be4e3fbfb303d263903b04d6db9ecbfdcdcade7f55730ab5ec70","transaction_count":1,"txlist_hash":"14d0604fb6986f281715ae660221c79b7bfddf15cbc7da02c722e86b8e264d85"}',0,'BLOCK_PARSED',NULL,'f081e291a0db2ea54c3eb3276b456d2f65d769e201f28403f4bf3476c7a1aab6'); +INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23110950cee04f3ed120d880d88e33563febe0680a4f5b47b5587cf31f38599f'); +INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"utxos_info":" 0f06ac488c13977713320e18f2c2ed82d6efce5eefc2988cd4b2e4bd1220dddb:0 2 "}',0,'NEW_TRANSACTION',NULL,'70616122d0478e81c34d4d2ba34eec96ed62829229ee14340a117e21313e3bb3'); +INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"value":2.0}',0,'BROADCAST','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','031eff319e20c510dfed52c82d733e1047c86516384527100a515dd2d2bd1b0f'); +INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','1a57d11fff9b921ad3671ddf4263bfbee3eb0cb98e36f80ef12ce9e6be581cac'); +INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e25584296e8c20add3b954f8b90a1899d4a44cc2f8b115ef31349182c61eb066'); +INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','82372ea4f385360c311a5356943542fe1b2e18bf4968973a7dffa5090e2893d8'); +INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','90572521e7184b0be0f1480a5c000798c295148100e2fca39bc4377bdd7948a5'); +INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21}',0,'TRANSACTION_PARSED','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','32c3f6629f438e81b59e239d1023769d6492fd7f1c60800a0373acc9eb9f39f4'); +INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"4397f5568bfcf8cc90d1e72b7c61e7cc6905a0d9d3b3890c33e2afb464a25fb9","messages_hash":"584336adb53629a35656fcd61eb8c4f646f69a3b7b87ad4e6dd86d49b965d7e7","transaction_count":1,"txlist_hash":"5483ead85237ef0ceb3486e3c3e6ee1e5080a5dd602f805b811cedf996b8dbaa"}',0,'BLOCK_PARSED',NULL,'3dc5cc436d47299621467893e2bb95538eda2060e7ca75c1d01092340a49dfa0'); +INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8982461ea7a43a59483ea7887f705c89b0982fd787b8abb13380529b8c760c7f'); +INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22,"utxos_info":" 0b84fe823c78ce33db02a287f480ad6c2dac38de1bca142b10690dddd06b9429:0 2 "}',0,'NEW_TRANSACTION',NULL,'fe683c71063b9005a7ce92bd60fe7be3fb9e8d7308457c2f52b2fb198c75da87'); +INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','86ff48b4f0ac1187a57a6134fdf470af7473838bf7fb32caa1826ed13a5804bd'); +INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'OPEN_ORDER','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','e310324e5522a0ace4c6adc2ad6259829678457ca3328176c0284fdd72f5b397'); +INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'TRANSACTION_PARSED','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','867e67defe5a11f5e4568cbf4ae9eb578e7539e4d99449c189d9302ec3a9ae70'); +INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"16b7018344f7a97695eb17dc5921c4955b3f8cf4d9e70bd8628041c4033886b9","messages_hash":"d08b542decc13c0df72de898facffec9edc2fbc1d055d5fce7c872eaa961b46f","transaction_count":1,"txlist_hash":"bd68fe9b7aef054c8a5925dff9ff140cb5c00eb611a8802156196ed486479ad1"}',0,'BLOCK_PARSED',NULL,'c5bb88258f7f80a2f1560af1cdcbcf69fba355e4e846cc603b102ddb10bbeca9'); +INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d9c6ca975e107a62442ff9ce5281a43bfe7efb2e40fb475b8f4ed7c979b00b4'); +INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23,"utxos_info":" fa714c345a1ad0cf699f33c9572c70e3a5d96c16be2ddaf0ad0a8580e99a3ede:0 2 "}',0,'NEW_TRANSACTION',NULL,'8b3d2a55f4dd195f5587f3fd6a117165d8f47f32bac1d6a22ace977794667ebf'); +INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','436660361d10d4a1af3f78b2663ad5a276db5758240aafeab1dd30517753cfcf'); +INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23}',0,'BURN','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','497a9bbb297a2ff9d8abb5794b010a6501b27c5d26dd80a157e8c05487a178c8'); +INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c3c26212677f4aed4614b653f1e5da509f962c29502d22c84c1c5522bca0dcf5","messages_hash":"066fbe373bd1997fdb3c38d6023bd6e8f05f3e58461ad6a422cd4dfbeb0f2fb7","transaction_count":1,"txlist_hash":"109e820ac7d290ecec049098115ba6b467ba90ba624aa24326cc7e103e51b265"}',0,'BLOCK_PARSED',NULL,'cc9556abc3e02290d71d498aa09c2538b699952da38923a1fd5f5250e9faf2d8'); +INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db2d3000ba4e11708aac144f63640076013512f27f836fcea93b1c1a61ae8eda'); +INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24,"utxos_info":" 64b128fe57538b87e472586bc2efacc0d692f07bdb4bc4868ec66c3f2061b109:0 3 "}',0,'NEW_TRANSACTION',NULL,'6f83a3801358cb0063814e830cff1a30829f783e551371e421af665345b68ec4'); +INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8"}',0,'BET_UPDATE',NULL,'de57103b51dd57e791e62994b0d8e00c6938e43300bd474df2b491636b1cccf3'); +INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'19d0e26b3f9ec839588e2bf54ebe00aee50f11149f3ea66887409458e1f44479'); +INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'4f2987ac43e143eaf7ae31d08f11498eac4445753569da8ce88e18b5fd73a548'); +INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','758160a0573cab1ed9c929802dbf845a829cea314ad56a2dc2ae8ad00206f1ed'); +INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','4949b1b73472c2c2b406929f934d6813efc7542137e9fc1b5a264a75d8dd6289'); +INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'SEND','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','0d2ba76b085e73de23a13f3be043732b00c1a762920d29e863a4911f754dad81'); +INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'TRANSACTION_PARSED','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','1241c5367e277a710d5d36d5cd40ae54c75cacdb15d32015f47e62a77ce4afe2'); +INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"420b753d9e2a4ae5c00cf65efccb9a657d2daeb19159075d1671a076d8c1ade1","messages_hash":"32f524eca487a1118524f31bbd88b9e80384752bd324b9ed82a103f497722bd9","transaction_count":1,"txlist_hash":"8e03eae75b5f9306a0a8142296412f7271b17f8c751e9e8e1b1cbeca5418f4eb"}',0,'BLOCK_PARSED',NULL,'1a4cad04b749db4dafc7e5acc848dbb613bd2f0ce19824d635d68a28c3cb1619'); +INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ed680c7571d0dcdd148c56df048f2af64e6cbde20cfda35793e69e8a142dabf'); +INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"786e9c043df5025bb8d123322e2dd9cba30cc433ff90a44b7b7036369565835b","messages_hash":"d17f4a4249ff8894cbe38c53470a085c0b43f37af3def5827bdcbd512627975d","transaction_count":0,"txlist_hash":"6a80f89b076199d165801b34c7d292976e069920f2ae4184e09dad8411735b94"}',0,'BLOCK_PARSED',NULL,'254a257ddecfa0291f31e2a04cb1d30cee22bc00402cf0a309431019b7235f56'); +INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe1e40258b45baa960cf82ad478ffedffd150edb0b59b71353bfc14d85136bf3'); +INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"1a2e0585eb1a7f608b4ca4b1d252f555f87e7f16fff124ed869285ec17643059","messages_hash":"99e549c635c9de25af9aaff573b979b84e570faa4804ca23d16774af1a0667d0","transaction_count":0,"txlist_hash":"a2110149cc4e90d1474c53bdf91e24f8bbb8931548542a6afda94bc343fe3a7f"}',0,'BLOCK_PARSED',NULL,'2872700a093ecc536fef144cac2a885b371250d0baeae06febcab38bd185a21d'); +INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64f70776124a25d9cd7d28adf6772d3c90b11c0db0434fe2823b5038fcc3effb'); +INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"44a1f10e2df25328c38e20c36029bff557c7a93784030ece591406df9c71ebd6","messages_hash":"593ae1a07859992830aa36425fd449b6d7fea9a58d2377c9c7fc449869fe1539","transaction_count":0,"txlist_hash":"d087d907b7af1ac1171c61f00c756754fc94e0edf0dc265d9eced163a07357c1"}',0,'BLOCK_PARSED',NULL,'e0bfbb34eb8f13d53c15fb4feda3353b0c7bc86b616022b483b03c8b3aba3c81'); +INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2101f3e3aa54431066314ceb1fb39552ed5565f54d0eec4680d668337dd6f2a7'); +INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"093f82c2b8e108242edc6dad72e5878700b9c33606c359e673bdfe65341db64a","messages_hash":"97b27836562b1c9153a00fae9035dfbf9ff10a7f36aa0a4fb3bcaf8103a95d7d","transaction_count":0,"txlist_hash":"5796b7de2e12cda876546b21e2a64e92b85792c201f39fe404e7fa6c395e78db"}',0,'BLOCK_PARSED',NULL,'8e3d50f9a15489033870103f0a68f5ea156cabea819915b0c70bb6101bc59251'); +INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67cec3be41f3b032142782d24e988d9517c984bdf8c6fae3e3a57e4d27e7f7fa'); +INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"efac93e04f7cd9d3b1c0af3da102c29b50d940b4b5687fb0061b3b6e169290f6","messages_hash":"9936dc9a6205f83183b394d439ef19ec875b09b6818b3bec22e9ee9824158df3","transaction_count":0,"txlist_hash":"5daed82ccefd923a597451b918ece6172dbc75df5cd53ea0f7e40065e3d0d929"}',0,'BLOCK_PARSED',NULL,'94f1bfcb61f95560389a6fe986cb02bfd70619b275f240adec891dfc9aa40690'); +INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f4ffaff8a53478a226d1f9a0a9c85688d22585e95b1e73faaf35620235fa220'); +INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"1fa464e853787685a588de6dab287456de7a0efdcd76052a41ddaf5e2f85a648","messages_hash":"2fda1ff9913e7eaec6e0609c08119f99b5521f4acaae37f169d384154d833d5a","transaction_count":0,"txlist_hash":"818415429923b4a38cb65dddb4e8b8a17264cea0188e905d4a19db340e98ef82"}',0,'BLOCK_PARSED',NULL,'cc1139571eb9d12a1a3c7937d48960e6713469dedbcc750310d00724692f3414'); +INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5eb78ead348d843c68e1a1e38cc831ca86d063cc5ff43f50e534c430c20286fd'); +INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"fee866f1cf6e5f83010b97e0e9d88b54ce43fdf45e89081ba3b2fe07b62434fc","messages_hash":"b3650d2f7043b841e9ed73321a8136a8b16e31c59c814fb166c396607f944be3","transaction_count":0,"txlist_hash":"7e3fb0dc1ce885afb71be88ad0ca3b189202535d328ff70bda7cceaede6813bb"}',0,'BLOCK_PARSED',NULL,'2fa8cb8033252320bac1ffdda1f82ea6fa6eeb083fb7ff4d9c6f0f4ba284e804'); +INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddd4aa49a359b3926f1b3a93e9b9e1e028d4cb8c52b3bf868e31d9b57b33a496'); +INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"11ed526c46610698e7a4f102ae91755a541d668750ec3bc10decd0c1709d1115","messages_hash":"ed225e48b5d71bdf3a0225eb3745f6f823968ebb5afcfad54bd1ccc2f9efdccd","transaction_count":0,"txlist_hash":"e3044e5fc57d122eb707d271ca1f4248358a8f477a6466cedb739e7799351bb8"}',0,'BLOCK_PARSED',NULL,'cdcaa5ab28b1c9939d88b026c6e95cb656dbde229f2f588bc543dd1a6d620ea1'); +INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47ae3b9d8288a8495ead52d8f354452efddfd8bf2e2f080051bf15c3e2cf7091'); +INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e"}',0,'ORDER_UPDATE',NULL,'c6018fbbb8ca1b8698d51c34508d11d414ac7155958919efa7f6d8a749c6a8c5'); +INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ab225c971c1514fd287ee734103d2343b86464b84bfa043417030e115897c48c'); +INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'8218c8838804f23d7725e73de0e50b50771d4aa4c01591defedbd3ea6dc93e94'); +INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"7930e5a2c6150df64dfd995801aec68ce11df292e206f08f7ff20eda9ca2d017","messages_hash":"2fcd14de99cfc0051e32cb7575fe68f249435ea6e1fdf13995bb7b869310c8b9","transaction_count":0,"txlist_hash":"cbe01ce5a4da72538e9310180de025f141ea8baf1b6eeede8164cac3488532fe"}',0,'BLOCK_PARSED',NULL,'1d2f9e2e3565852864548222963f09f3ca3872e6df5d3453859e96cca5727f03'); +INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5215c16facf06861403daca09ba930323644731e30d268893d2b4e5ff201db72'); +INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c5834a54b3ad7f9fdbb18a87c8cefe867eff2ba1ae5bff238a3a041431d0afdd","messages_hash":"c9f47c6da5068b7919a832cdf502e72fa2c792fb368ba9eae73728e8ecaf0941","transaction_count":0,"txlist_hash":"81bceadbd9f9b956ed25021e2e0a9f4217c7424522105f8a0ba41c9f78234fcd"}',0,'BLOCK_PARSED',NULL,'aaa0d0717a6bee48a8fc2216cb2e07ebf6405ec046876db344aa13a351d9622e'); +INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a9bc92611e01623231c4e28200e277ceaf39a3070857de7750d2bac61899feb'); +INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"5a4b3f29cb1554ae8f670955df4dde45fdcc57623a50ca7d8f2c78ad79186a7a","messages_hash":"aa253a5f5b5741edccdf5a5b002cf4bf2f469e378ee25dc7279229f144677104","transaction_count":0,"txlist_hash":"0ec430eb4c16f386b5abbd6586133741dfe6c19eb820d388810f3680442d363a"}',0,'BLOCK_PARSED',NULL,'db95a5578e656cab5d8a4850b1f7ecf6cba88b9877ddbf0cd5c3cb6f2676ef26'); +INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0276eb071144cfa50398b7e4a21e6f9a1792aaeb2bb2ac7ff83ad2906980a96a'); +INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b81834ed9e92514fe7d277378be72e1f81043a615a4b67cb67dbcf97e3c3b43e","messages_hash":"3d929d7479aba70da9c122bea1eeb8bdbfdcbf28998dfe4f72e49f9f92088360","transaction_count":0,"txlist_hash":"a883860baff0c6dec150c9d80b8a640401e191312eeebd4e9f21914e7803c46b"}',0,'BLOCK_PARSED',NULL,'42a98d7cc17c94102f2ef2ef8189a1aed27f7380ae04ca90157380aca620b70c'); +INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21e2d8bb4502ca5a61471f3f3f1a6ff3d0eaf6b6e50a2ac56ec491404c21852e'); +INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"736adff04611f10a4e384b5d5c44651bdf037c0caeb8dda5bedbbc6d18d04ca2","messages_hash":"04df2e8a894e19473dedd9493069c49bcc1c57bece30ab85a94e4e85de076ff6","transaction_count":0,"txlist_hash":"821ad697a76d9a35b14a7c388b65b4f3a86fc66c42e02af6d568f73e2586beec"}',0,'BLOCK_PARSED',NULL,'1862171855b5cd80f301652649eeadd6c49593f28e8c13b6dd8f6f08ef34ff00'); +INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f93bfb80b8dc39d10ef8b75d3315e126c74e92ffbc1ec8343baa67ea8554ed7'); +INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"34d49fb14a7ec85ebd02ffe04768f5aa7382ed0ac7f9ae903e71567dc5d9ab67","messages_hash":"80ff1983d78ac09b5786d969122672922f34dc77570b9c1e3cc7877a739d6c62","transaction_count":0,"txlist_hash":"c5ff4e50b07b755c23a6d9ca6dd5efe71a2728c4c662418fab814993be455308"}',0,'BLOCK_PARSED',NULL,'36add7d31ea48fd8709d9b1d385167f735721cf044e762505400f15e45631e03'); +INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ba83314b4764220ee30086d8555a5d538370fdec5117f2a484813a15e0a7be9'); +INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"9bfc3bf0ed35dd256f0df04c813dab9dd818238163e6b01842e18815971e7010","messages_hash":"c4cd65293538194afdf55ff89f59cb8067f83af62b3eb0040d3f7d922d745a75","transaction_count":0,"txlist_hash":"8a2ea429a26990e70f9c8937d11c58c986f991c55f196416344847435c670849"}',0,'BLOCK_PARSED',NULL,'4f991cb09ae4bb7e34e2a1c112736fcc767ac51543aaafba41cc11d040dfcc96'); +INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4dcd83e89a1011ebdd6f92f9136efbf1691b3b60d4d97d262e86074b536e648f'); +INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"da7a63f22053d1713c805684d14695c31670eaf848bf23eee3331e679744f291","messages_hash":"ed3a4d705697bf957f0e3e679f8636cf18074e7c3d5821404acd359e8c5e8c7a","transaction_count":0,"txlist_hash":"9f186391b30cc438ae59dabfb18dfca8811193a8fe37cada73d513ad688a80f0"}',0,'BLOCK_PARSED',NULL,'b3cfe12e677ce1e4a7f04280533bf88dc217ad4981e948300fabfdd90e498f4c'); +INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5885b1412876107a3faad0f202ebcc9c868400b03764fee11944277897116791'); +INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"ddb485115b64342bcb172cc3e77b20effb1294e635459119b59179f3b6a87d66","messages_hash":"4b8888c285233ef646619f95ba8b80393673659147e71b97002924c64ede9d3c","transaction_count":0,"txlist_hash":"f73c8b5e92181566aeee4ec42a1e50b950fd18680c69c58fe20b5288a915d7e9"}',0,'BLOCK_PARSED',NULL,'60ab3ccf3aacdb2a03de62efefb17bce8d96e38684e85f0842850227d3ade1ab'); +INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6e2457884504e816b357d22f44329f26390ec041271dcc8f7adfe1102fdfe07'); +INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"b58d05ae5f282f7904c7a759ae5624194b5cb091f43f05d738cb4002a999c26d","messages_hash":"e66d0468081429a32e87dcf4480bfb96348560715ad3a6b0e342691f1403a488","transaction_count":0,"txlist_hash":"73ee837bac9153dbc94c23879192b6c2fd71a9a6148502e8c4693bd342c4feec"}',0,'BLOCK_PARSED',NULL,'77c89d7db19335fdb295fd66efe2890ac453c192895e7fefb1921b7615d47fd8'); +INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40c36d6e3d423b9e7db408c2bf99c724916eefef2e8ca3a744acff365793748a'); +INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"c18e1989fccd8bc7168ebf2acc035c224a9010b428b81c814683b0ce1e244113","messages_hash":"eb297e8409f08b38b5a5a86c98f636888cd7c893f58235c16d6385e211f20460","transaction_count":0,"txlist_hash":"9ef577154ca6e451585e9dcc4c3690d496b8a666856987194c4e41414743945f"}',0,'BLOCK_PARSED',NULL,'6cc58fccdcd95aea631df7e68b6763a6c76b2530fb4653c1849cf55f80d9cd54'); +INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c237b14568cb40c93dc7720fe0765f9a2be839f41f22666c2b7bc274368bf99'); +INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"1a935492fce6a168d9aafd24246bba6f5615f53a47311549059b21adc6a67154","messages_hash":"b4623b45d79503405f544a3b246ef9f2aa5d3d3b0a7ea344228737146fc26120","transaction_count":0,"txlist_hash":"29f3ff5d49a8c6ffbf0ddc41a5e45fd3b777fd7c9ea60a914191fc551ac46ea4"}',0,'BLOCK_PARSED',NULL,'4eb6a52c7716be64ce99aee6c1a1ef08caf4920b9a8e3132f7d39db30d93d2f6'); +INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceebb60fb2eff5cc6c7d3766bb1629c557a0149dcd7d35e7da4e4ce4793735a9'); +INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"536611cb3cb3005f8c4ffc5b8ed8271734448b5d6f49bd47eb0456bc4ee207e4","messages_hash":"6683f4f0bae39aa62af117279e5b65385d61a0104451f3e35a5fe0fd54b40fc4","transaction_count":0,"txlist_hash":"6f22c984234616fa84a474dc80c5d5e25ccdbec1a84b0cabb279505e93aa4d6c"}',0,'BLOCK_PARSED',NULL,'f381cb224887d9ec0fbbfd170e42fda00cc6a21c48ae3c9a1e0b8416688adad1'); +INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4820faf31403e888207b05ae50b185d6b7452ed829b8ac2e02842479a631bf33'); +INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"ebbeea29c073c61dad3e091302cd945a9926741db0dc6a918792c4c01b8cc30c","messages_hash":"06fcb3429bb75337ac36ff2159d07b86b513a711b3e69abb5ac028c178f37e4b","transaction_count":0,"txlist_hash":"a1d1a029c0bcbe481f8ba760714e266ff9e759844517ceef96bbaefb05652dcd"}',0,'BLOCK_PARSED',NULL,'599946cbca1a016a002f26f05c46503ee2dd52fb790b151f2de25de4bc35e2f7'); +INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'994cf182a5e8c44b2fa8e5dc594e52ffcf326c59374f0ee10596d68c37f525c9'); +INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"d9baff8bec82f3c29f1fa69c9ddd456f1867f33a55d1648605ea7109270d8e07","messages_hash":"2d092e5abe539c768cd52e2bd108fc9592c211544680e746faff1af941f833b0","transaction_count":0,"txlist_hash":"26f6ea6c1e350b91f4757619dd52bb7a2b2bad7277497f0d4e1d61b363eb7a99"}',0,'BLOCK_PARSED',NULL,'246c957036ff8ca651b0651e647f7f6869acdabfb65fda58f3c78a7bc15643f0'); +INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7904e5422831aa75c2418a3ea124c203fbf7af3bf9f5e79b8ef6b4ce3053e406'); +INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"09ad4a6bb3f671e6ac6d595bcbfb82371cc41f35c309142678eb5b7df97a5de5","messages_hash":"4a59838efe59a9dea7167e349a1ff3e322129d3cdbb9f4fb60d6b6553629f7c5","transaction_count":0,"txlist_hash":"5e32dc4d14838fdf0460146fd87eeb59ece3416bb7104362d24fd6d2bf0fe963"}',0,'BLOCK_PARSED',NULL,'fde771082307f5230e6dd535c6ba0ca60de50ce15c7c79e30a152c3a80904437'); +INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06d56f658e91a5eb23ac19a4074654c1a61811bd61ab5f587b84fea07fa09511'); +INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"208200708851a32b0ffaecade58f78f8ba7d5820457c582d5ca127e16fec0952","messages_hash":"b6994f5b5451c36854174318af39a43b3ffda255f8db3e7fda875fcf954e1d99","transaction_count":0,"txlist_hash":"c0a8253cff82f71d9a90c7b982e5d5093d5c2bbc2ee2859d9d7d09afbef56192"}',0,'BLOCK_PARSED',NULL,'d2cff50e338839c1d78c0321823090cdf1874a5e57ef93c9802594fcca9e21d2'); +INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae73e19c92699173b0a140e9828a466064f1eb718d1feb90a8981fd02874db9e'); +INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"9d1a7335d989bb73b0363bc88da6dd82c0fbaf064b1d70708b0aa2f6a8a9958b","messages_hash":"2c582e0398b9bc18f222d7af1f884b5eb8855cdf7209790a377ae57e86ebd1a6","transaction_count":0,"txlist_hash":"c07861a54cc9537b7a2486e5a7e6366cd04413fb1307712ec6af55588dd22cfc"}',0,'BLOCK_PARSED',NULL,'1c6701d63c22d81d2fc9f33b7ac9c1f9dd5dc3e6d15ce69559a4d51f900bba1b'); +INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd16f7f7e35518e4718fb2ba27295ed3a894782c6d51efdc46d07c0c9419fcf0'); +INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"2fd9039e49fcbb070315defae275bed858cfbb539bc4db8f2ec5f5ff6d69ea25","messages_hash":"26396bebf934270906e3d61a14c9174639beaf51d92249476006f7766fd0f022","transaction_count":0,"txlist_hash":"0ae948495f47c1ad343052f786467c6236cd6ca23dce0c628503a44ada8f8329"}',0,'BLOCK_PARSED',NULL,'30d5cbece5e6b1f87d3c300f5edd108826b2bc1b85f162856e1d057a984f4a72'); +INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ab663e061d7237e4eff71d5538c20a160461aa7359c01ef5efc56c9e1ff59b2'); +INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"2e97864865a020b04ed60b22c347d9dbebce5d00abce86c2b3a5054a3184699b","messages_hash":"0700cf8de8063fcd09a6131b1c8c974213d459a987bf0d750e773735206e1b15","transaction_count":0,"txlist_hash":"986536c5e9cec38d9b78bef44e21e73f93a654b9c421c7822dcba475b14f2127"}',0,'BLOCK_PARSED',NULL,'01921220103e2cf57cb307f40efcd69f03ca7eed57d3f59895ae2eac7ac422ed'); +INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4239a274d4f628ef73616dd0f3bd9e5e4c1fc162bb26b031184cd5dee81cfab4'); +INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"f6a8e9f4cde78fbf6c9a5ea176312116f3813f2c0bcaee6c92f3beb13a8c3899","messages_hash":"0b2929cadbfd7a6678bf9776a4d55ee816dc97800e6c4e079826bfc3b57334c9","transaction_count":0,"txlist_hash":"4ffb95c683e1839d31018cc7ec92e978014b8cd32f308c2819ff2e79ff60fa2d"}',0,'BLOCK_PARSED',NULL,'0dee77c52bc7f98f5643242fa417c198ba9af00164f648886395ffb50105a961'); +INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8acb40b930b67dbf826f538776a983c6e35a8b92e11a7d24280c2f98c09a8ad'); +INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"1d84e4657febaa291b4873d808d9ab433370227976196fd6436a65839c3575d1","messages_hash":"1b25e91387df793334d9aada005b105dc2c1242acd739ea34a18ea1e5d5f5cb6","transaction_count":0,"txlist_hash":"0ed99730b61327cff9ed15d8585f70d7629b2b10150a717093dac4fafcc4e737"}',0,'BLOCK_PARSED',NULL,'0c3449bfa093c1ecf4c4034e881ed1443e271b563c3e541b36c3065efa96b3f8'); +INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f6b6753f681a01987f00de77c7c75d48218bb2401d1ba816d63b399cde023da'); +INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"083f6b773191caaf1844f47c53077e8724e100d0b46461ddaa642b88d5265c9a","messages_hash":"b157f369d48b334ae12ea5c853aedbba8e8cad288ae183771e8a6e33bec299ae","transaction_count":0,"txlist_hash":"69aa5d1c74c026da7b7cebe352bd6d907a31174cfd6f346e09382b0cf3fb8239"}',0,'BLOCK_PARSED',NULL,'ce089531d9324a2811c79938632d47f8b63290dcf82ae20fc4da220fe5a4d19a'); +INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aabe3f87ac0c2ecb81e2c725b461c451e863da286d59bc4d564b96f8662236a1'); +INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"b1302087b804fc5753df5a4d8aaf8626e80ff99b429f52fed97767b051c24e8c","messages_hash":"0eafdd35080661c9f45ecd3fbd30b94ffe647926ca046a5774e0db98817a6868","transaction_count":0,"txlist_hash":"e35d2a19e5b60e2534a36d8c1d0c14c6211d56c29b4aa4953a14bf0b83bcc405"}',0,'BLOCK_PARSED',NULL,'4ddbb37a3de567af5db89687a7a4d0e9dfb2356e48c2ebbff3fbb05a56982a14'); +INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42009ebcaca96c74215d2df78dd8f71a9906db15e1ab7261cb6399894e21dbd9'); +INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"956c9ca0b51eaba7343703a165eb96d5947fc764457ef3dde5ca90c18d3b2f3d","messages_hash":"397a62f4d919dd7a09bf1cce83560d51a067f9b938a905b79374c6280fffdeed","transaction_count":0,"txlist_hash":"165a88d3d459ce6f4f37cc2ddb1c365dd01542b102dc68181d41b95ebde044dd"}',0,'BLOCK_PARSED',NULL,'67a17f40322064ded94ce1100cbd8a710e4656ce67067fa029dbaf26fd3649ce'); +INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d56fa7eb79ce559090995623317e50ffb8d56881a406b4a53a0a6f64fa90e84'); +INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e86cae3e73aa13e8498a98de335ed0cbdb7899b24e91839bbf0f50aa22355ecb","messages_hash":"f837ddf62d133c68191de84b68fc2705a4cab57412d89fcf4f5bed131e2c3ed0","transaction_count":0,"txlist_hash":"37394f57952a82ab5fb6ceb7323152d83f3c911a533e289c55b531fc83269268"}',0,'BLOCK_PARSED',NULL,'786853f4bc2364cedeff92d538f63de2d5329455819ce052d1722a305ad13ccd'); +INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'850f8b9f9802a60ce2659121356f3ef296111d39b87731a302c6077ff26e4e8c'); +INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"54bd5e4fc1bc17df27f9e6f22b5e1facd82229a877e09ec0136f878f2da81344","messages_hash":"bfb4cf68e7b32b6bd342aaf45e0bd054f99e5ad06bcfb3576b90e12f4e4d7af0","transaction_count":0,"txlist_hash":"ebd7b1c7c24aa51a0622e244d1b486d4bde8b1019d86e1d8845b6e90847ad09b"}',0,'BLOCK_PARSED',NULL,'1ef2d319da65e710ce97155dae6b772393608a71b2637d2912e1a91f7d7cb543'); +INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17cbc04b42eb9f2f4eaa304cbfea2c9151b19ace68246c8c72efed41a7ddbaec'); +INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"1403832427d4c482b0d2d925e08a72fe37f5aaa6af73e74f601f7e22fdad7662","messages_hash":"df0e6523af1c6569970513c07e9a30923c5c0cf212abe0d4163e2cdb972cbea3","transaction_count":0,"txlist_hash":"cb71b795988456a345fd21a3c729005ab802707d54311480012920f07db40bc9"}',0,'BLOCK_PARSED',NULL,'d82570fb4f9631d5ba743c124b03a016ceb9f5454f8e3926fc25e16606c1e9f3'); +INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'824c9ee57db5147711b48764b27de907ed693d3b1ce5c89daf6f90e124cc13d0'); +INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"7b08f124a953d0e5511b0698d3314f5ec71ebba77b94c4d236ff9738d5a587e8","messages_hash":"8d71dba32d92013399bb8f18e4f4eb87c9cfcb2aff4c32932573e2dfd822a620","transaction_count":0,"txlist_hash":"cf47be21938b5a55ffb8eba6a9f63eb61b89e679b279d75080571832bf08c0e0"}',0,'BLOCK_PARSED',NULL,'33a405816f1f507ced5bd2c1bc31ebfe5d35c8fe62c970e2b4b2acdb4e7c5341'); +INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c98b902918a29d007888945480d5667c0f3bab492fe1e7a4802d829aab640dc'); +INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1de158dfd18413618b9800236a2aa265d2fab497b09a839be408da8871b0960a","messages_hash":"515fefec184d55e09a1f40afb966f020c444683cc63cefb38df33585004186ec","transaction_count":0,"txlist_hash":"a9c1a3c24a410649e701fc0b321b2030b6fc35de7a2538a10e75b482cbe96b3f"}',0,'BLOCK_PARSED',NULL,'af0e5dd08fb2ef1edbcfff76548cbf6226696a3ff90a376f2f2818016886c34e'); +INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14f584435b6e75885a81689a45888548251945ef9e37e972b539a8adf43db385'); +INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"aa4be540bad6cd762a02b77856c3d6a737d90245e71f61b63a426573bffb3a4a","messages_hash":"793060ef4fbf8ff5072973c0b32c21e6cfa993adf8d62784985f255a6f5c6016","transaction_count":0,"txlist_hash":"93d0499dcc4fc819927eed8d1eec8b094eb5a4323b70d2cec33d568e31737ce4"}',0,'BLOCK_PARSED',NULL,'ec9134e239a930349555f80e35014fe3a4987ef97f558a24220910901a29a666'); +INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27db4894272382293cdac8d3b7804f39acb5cdb605b5ae66e2eb9cfd8d37b9bd'); +INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"49edce8190c2480fe3c6b3df7c7c5f13d34f67c3aef3b2aa12eaea603153aa83","messages_hash":"54c31939735d7929d522d3ec88edc2d22ce84d382c5fc0da3f2fa3b3fab5a199","transaction_count":0,"txlist_hash":"a76d957ffb41dbfd83b8c92ad487582586cdf13ca49dc1dfc30e869afc8ca76b"}',0,'BLOCK_PARSED',NULL,'91e2aabf066421106398c0c3fb6b394e34c24dd6037d6f5d540c380e3e8f4bd0'); +INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2b61819d1806802a88188e91be958e3c539daf1d334910bf7efe5bb8d57e6b6'); +INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a2a8c9946cf45490858deb15c8f277ec545854dfc02dc9d248a684c0c3544d6e","messages_hash":"fcd1038b34ea4065cf1aa061f22e225bb7ecf797c3afd06d7f7aba0b788413d9","transaction_count":0,"txlist_hash":"0270a3faca0bc1a674fbd3632a1edbe8363d5115db8af56f135493f09a63df30"}',0,'BLOCK_PARSED',NULL,'acd576992ac1a20b1a2547b6719ed1eb7bcd7716ee0c4e2849d675c7b0749e23'); +INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f6b9cce051bef095155274ec3bb5bcac9b3d2777fa316f54b760437685beed0'); +INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"ca1e5d385fd9cec1184d28095a6f4a2ec2914d40cc016309fe322dbb335cf2c3","messages_hash":"8bff6ea3bfb733a3b1f1282f9c7bbdb768a16b54d3f0d062d58c7ab838ca4e0d","transaction_count":0,"txlist_hash":"85484b37f06238496ca822d539fe09e0e2906d12cf5b6d77c6219af29ec7410a"}',0,'BLOCK_PARSED',NULL,'33be3498678cd2630a824f42b2adc652f79197142989a290db3ad4ba7071d61a'); +INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05dbc65a525fe8017d9003ad47dc3b84c517cccc1f73e8ea06febfc33190a36c'); +INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"73519f53874cc8cbe9052bf8dd18c590e0a4bd5bdc2a286c4930e8cfd006a993","messages_hash":"3113db4f601a0a22f575e73f034b71ffc2cce96ea0c7e04d5231d7e6aad5e2eb","transaction_count":0,"txlist_hash":"9c360f75cdc0788ebf8a530fa967e8eaefc3876b19739dfef2f7307e1af414f2"}',0,'BLOCK_PARSED',NULL,'26484cf2cac38b2f4cf819dd10da183f1033286c025374c8aea5012388a04ff0'); +INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'005135be1529565462c15ed5312c423da2a99438480c8d57d94d7274babbea54'); +INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"5de09a95e36480de84f9d3c8db3e18b7bf5145f8b6ee6bde57b5c3de11274cbd","messages_hash":"bd0000bee542571f0ded86b42b37a80ce1ff645fc16ed10cbc8612a757dc37e9","transaction_count":0,"txlist_hash":"b4a32df829f1f913a9077d0ecd83362230bf893ffd654703538c5fc1c30a181e"}',0,'BLOCK_PARSED',NULL,'6ed47d134e871c8a6131a5e212155c280fd5046927c767386573c37b07ce41ca'); +INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a28f063a74e0b1d4bec204cad8914c7c76b2bd43746f847439688bbebc2e4f2f'); +INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"be6a452931358d500eda0fd2aa3a91b86483fa847a7bf350f23d33d85712592e","messages_hash":"382e4621850d0db961e9c198c9fdb46ec461d20c61eb8e7327a796854735532f","transaction_count":0,"txlist_hash":"fc4f551737950e1293a8718899c3b74c2ce76d8d1f58d6e22d10976ffd15eb24"}',0,'BLOCK_PARSED',NULL,'87a66020149ce6b22286d7f804cdd3e33c188d28b122312cdf4a703136846bc4'); +INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'024d57fd248e96baf75245811ce32b564d683e71dcd3f7fdf800b949f35ca373'); +INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"5940a47dfa1a1c8bc1e51f1e64100cd0604c74197c88b39f6f7a9d5b763a0b56","messages_hash":"56eef3f8075ac1b4622cf9b8aa2e2a693561e360428c0d8f7797ab56c0c5bcb3","transaction_count":0,"txlist_hash":"53ce1fdeb3b9e39930ad127bc86bc71e7b497f24cc34af2a022200db36ebfa36"}',0,'BLOCK_PARSED',NULL,'997e8c86b8292ae071328831c8b461852ee3317f5706a8377261920ca14fd26d'); +INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f0ed3a8dd4973201f70ae985db305cffdd01b8e119ee7c89a592a983651230a'); +INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"6aebe68545207e7cc81d68c3aca801f0b39e276ac86e8e0130d5029eefb60e2e","messages_hash":"56deb2b09ef813d1575b12c373b198b0dd0a2708bc9d4cea9b32fbd7a512092f","transaction_count":0,"txlist_hash":"0d482039b615aa55b721fef8ddaffcc2942838dbda8784940e9fdd8dba8b1465"}',0,'BLOCK_PARSED',NULL,'ddad8528478fa84343a085dcbe7e330c5daa03a95cb1265a1010d8bf4607f161'); +INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17f94167e0fe4a314ed3a3de7cf71f18e29d2557dd8fa42f7c7465f340a62ca5'); +INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"d005aff752907b93e2dfe442896c8976203f0139fb67cda3ea1936aea495e008","messages_hash":"490813f31a900925671df46f758b7f1132867a465069c0269e6d45e486aecde5","transaction_count":0,"txlist_hash":"8be094b2e99ec5c85a594d4a4059b7427ffbee3671190b84161fbf2fadb6f313"}',0,'BLOCK_PARSED',NULL,'82153738befb7e92d8af5135123ecfdd69059c26fb34ef5e03347e45fe0906ab'); +INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c82093dfb5aec8d335aa02ea8dc9ad9cefd9936938a15cc879568f1e1f82f8cb'); +INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"781f0ebe67964c25640f0bf5624e08cda546dbbb6648bd6e8d9f280c7f075f7c","messages_hash":"a9673ee50d9f65eddccedc0b3e98382f57547f8b96316e443ac21f49c775a8f1","transaction_count":0,"txlist_hash":"9c5e049c1738beda53ffdffe18492b0af038a756278f2bdeaddaa1a726681ce5"}',0,'BLOCK_PARSED',NULL,'b1e8c2765a064f6255ed037d7ae84a0533050392c9fa300e60eaedc705ff8856'); +INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbcf73ae66136471920399bbd914ca5969d5672f17556f89c678c2ab46d56d5c'); +INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"83b5e1ca76fda895b144e8c03cda5fc3d18f6324b5413fd74923e51a94ccc53a","messages_hash":"8892c734b6cb78ac0551dd5e0f39f1af27598ee2a829884e04ff1ad32c33ef8a","transaction_count":0,"txlist_hash":"a7199dd9b360cc694f85a81ccf72fd614e6c0400d753132cb517ca9da55df86a"}',0,'BLOCK_PARSED',NULL,'e96e4e5a5fd7f9b1c356dd3dee0c6890ad77eedf9e7c3730b4f9076a65cb8614'); +INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd19eaf447f6bed8859c1d8dafcbc10ecdc08901bdd885e2d9b6474d0d473d1d'); +INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"4293be396327c0aa3c56c77a9152068cc32612692c76ba94e8961c59a9ad780f","messages_hash":"e2536800bbba398a97e38efcf5f4c2febfee15b735b57236a3ed34491126647d","transaction_count":0,"txlist_hash":"833f9d3ae03e5819eec47318d948999dfbe35fcbe66766f985b6ca71eccae54a"}',0,'BLOCK_PARSED',NULL,'0e999b569feccaf63fc15cc825ee82ac3d2ee7fdd1bf5ff337fa55fbb49858b2'); +INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4f4ec24cbfeb7f49e570cf88d3a7a04ea2bdae1b5029ca2fe95f726c344aa66'); +INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"d08b93b609f1766534cb0c30502350b9e4ccc4a885ebff7633e9e5c5b52d8e90","messages_hash":"c9c37a11996ef89c4516c81d8bc8d2b3bb1a342f044bdf47dda4d9691bf46bd9","transaction_count":0,"txlist_hash":"7db8bbcaa76b087fbcdbd8f5b428b3587c494f0cd7d458a2d519abb0ef26f424"}',0,'BLOCK_PARSED',NULL,'46e9c8d1a9981f375023b9faf9f4f4a4261a0d56245a7ac96326946285824b66'); +INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a268cc52072313bb71b26751e48163f9f548fd68bad846f6d09fe500bad7f61'); +INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"06c72d219df429f2873af74b6250f3d12996cce14496d151bf8bd4cf819532e4","messages_hash":"e5fc7d8debe247d68ba41b0287e7b8ad40b9b210ec62a8e6fb7111604b65a114","transaction_count":0,"txlist_hash":"8f6a902dd8d5d573658f07e8ac598ccc46ed49bff95b2a9ed89a051c852215a5"}',0,'BLOCK_PARSED',NULL,'361052a6e00124a5dab64278eb86710e57b3e66121549344ce8ccd91c682a505'); +INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2acf23dfa5c710cf6e09d066803b9d03fc5fe9a2329f8ed5d271d1d31025c7a'); +INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"0ff019cc4b9b8a394aad1b9f8f579fd5c4cc48a846e4fe71ab2f45226cec5a1e","messages_hash":"8234496edc47944c501573c82525dfb55fd7c614872379a059562d66b44a71ba","transaction_count":0,"txlist_hash":"e1ab0a4cbd4e60c5b1da333c5ef542bbc1d8bbd7709fdb35374c072a1f54d38c"}',0,'BLOCK_PARSED',NULL,'91f76500a53a0f3db684a6f0fba9aa0f1521fd198ca8bf8ec426fd12f0b37bfb'); +INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3121f1e4cb5c62b80dc6d055f5eb3588fc4d020807ba5bfbd95ce1fe1ae0ee87'); +INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"6ea40a02464725d0ba45b9969bdbb7529ae5e3ca794ae00abf4783bfc9667104","messages_hash":"5f55694254aeebeed7a8b70fe5bc347b4df6a966080f72d16262447e56b6b2cd","transaction_count":0,"txlist_hash":"be6f6965b6ba8aae157eb48f28bce3fa91c3bbc22b88fc3ee8d4f126c1538032"}',0,'BLOCK_PARSED',NULL,'a07436895a4f88a7a8f4e7692d1927d6b9990518bd71ca7e5b889cb894541731'); +INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4c512d25e0e4af487ec8dd2ed020200a11a02a804f1d94aa5d21292e680b41d'); +INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"076abf036bd51c47525fe4e638dbad403a8a1667a5b7c2f81ffc2a70e79b80a8","messages_hash":"9381a2652532f3ea053e1cb0f28a44bc8f6e98f04d51783651435fbe689c9891","transaction_count":0,"txlist_hash":"eb97110f496f9813e14f127af2cdcdb26d54e9745e274fe227fb0646cc132c29"}',0,'BLOCK_PARSED',NULL,'2f1860e3286a6cfb9a2af894c4b4cda3493607f378d51fbda92a12ff85ab2e5c'); +INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e641a07985f8678ef1cf91d6b5934782f7ae68b7bb3ec50560408b91a61947'); +INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"8cc2e62f7b3ae2c89977ee9e31acacff38f944d00a978e9b0e48678487cdbe27","messages_hash":"16f709bb262ad8b0e6c048b5207b7514d2bb6e02cc385ffaf146dd03d4a04dda","transaction_count":0,"txlist_hash":"93c6c5967f4d297df962f2853f2a2ba3870f5692c8835413c08528cf243985dc"}',0,'BLOCK_PARSED',NULL,'88923c5328fc13e3b56934c01ccf1bbc7a1b71c503ae42e67a6219f6ad5c2287'); +INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0cd3b29e1bd13b5249242d07fa0c6578a4de9dc3d01c3d4d335a6dcadf50034'); +INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"ec86fa6786b598b091121fc2001650bc04668d26d88805efff7271312c76a373","messages_hash":"9f1a7928095be6b7191d8a72d743d000d2b5040606789fb7b89d697b261a82b4","transaction_count":0,"txlist_hash":"e6cf70178316b3c594c60d10ac1ee3783f1dafe5054ce4c6fb932bf3c771f703"}',0,'BLOCK_PARSED',NULL,'6bb9e829f1accb2d884773b4e1d885d075fb64ac73173a630ae0d4f74926661b'); +INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c8fc406ee9c45919a06bdf1165067d5aa4076658af8546228791ad9133a15e4'); +INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"6b720db96b2d10816e5022ab8c61fafba49cc6bf484909fb500295451e61f768","messages_hash":"923002cf1253a4d2229ecfab2b4a9b049d08cabedd9ca831de2de63a6addf730","transaction_count":0,"txlist_hash":"254cf1d1ac865c611a3d9fbd78001152928a52ad94fd640c526e043ce7c0fdb3"}',0,'BLOCK_PARSED',NULL,'91045b329ec733b08f57339eb9ef5ef4333d39afa22fbd5d4458afcc5bf400c9'); +INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e036d025d9e20c05c71d9e4929d1c6508134767931a017c2baf501d797d8e9a'); +INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"d8c6fabb9b9dff0f1f3ba35e75c08be55dc4ded8dcf54e51f0cd857625b87dc8","messages_hash":"4158c7703a1fe910acfb1ba2e9bce1d7298dcc5dcd9e8c71662136d6b5d31ed1","transaction_count":0,"txlist_hash":"a34f7e98c65b95becae5908e74cfedcb846366a83605f9d8685e98ac629d1278"}',0,'BLOCK_PARSED',NULL,'d1ad4beaa3513c874dbad0fdef363651950cc0822fbb4a5e8efb01354b0c7d70'); +INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'377d0956801b0258f95ed3ddf324a237821189e94bcf577f1d363eb6e665cffe'); +INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"eba03194b13ca764dbfbb86f86d16841df4486f12c26a214f7f1020468b52d27","messages_hash":"ebe529dc2a9cf1491d2d5d1d9c3c58179025fb398aabd74b96c7e36e7707665e","transaction_count":0,"txlist_hash":"e5a15333b0539a58bcf306d993b0be078d8dfd3cf3f5929a690da5ac534eff5e"}',0,'BLOCK_PARSED',NULL,'4a2900fa2a83dcd5e5d557f21aa86a9ad9790e87cc105a27d6431df05c243b38'); +INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b456043c07b3c8703ad3ebd07bc44301eebf9e66e78795739f00d97d286d059'); +INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"d7fa8085722edc91ea5cb907e439649533e32ad5429b52bc10463629719af5ab","messages_hash":"25013bbda0f976f456e9899c5e6f84515b61640e1ddd41d31f40aacd0354e1f7","transaction_count":0,"txlist_hash":"bfedffe97e2bf812728130721dec204767d92ab05bfcf2c4596b5386fc6ea380"}',0,'BLOCK_PARSED',NULL,'02808e9ca065004f8fc5fce829dfa99630b8398432ca46b6e4c9dd984607f422'); +INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'616056c702fe3ac06858cc48193ec9174b6262093927b4959fad8a7cc8fe5d90'); +INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e84e0b26a5a67af1bca0cdadadea17b52b79f160d8acc0281289de1c70bef248","messages_hash":"30b9d419bf1481515cac50b1152199544accd2a8c60be770efb9f5aa403ea5fb","transaction_count":0,"txlist_hash":"2b4c3ff824d597cc1376a524f89bac6deef025a71395e848b51e9c06002d7f12"}',0,'BLOCK_PARSED',NULL,'69c8a91b60f0a624600bd5c2e5ee0f7389a31a8ef86f19230c3bb18bff76ad16'); +INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a4037ed037b7a9ebdb5bcc25c3de02198f1c69c5f3172fb271b77b0e3dd635d'); +INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ac3522ba0e8278bac956b5f9d7af271424f8e4eff23d57d2a5ff88416dd02ff4","messages_hash":"b62c5ddcc39b609c001c568e8a96b2d91de3fadba244635cc5aed05d35763889","transaction_count":0,"txlist_hash":"2b3b181734d815e3cd024f6fd91b11de8cd457bdc5f833520af281a6c42ab391"}',0,'BLOCK_PARSED',NULL,'b489f4a9ac5b063e85c6bcd86eb0c1f2bb8928669bd7da6b6ad6078743827292'); +INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c838daab2aa99a416cde68eab870930be51a15821c14f8519db8f68724d8d128'); +INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"86255a3e32e6c7a96d0f0a6e7815d61d9a970272f1df38bb0c29ee9f2051f2e4","messages_hash":"9f0ab7dfb41ef3180a08536fc0252e821991d592ec233ab048424419f8e0e799","transaction_count":0,"txlist_hash":"9092b97fab9af004edd169f26446c6712e5e1ed1d5f94fc5ac0b49565fa65b4b"}',0,'BLOCK_PARSED',NULL,'c5ad6e8de53bd7395448635f3aa64d553d234c78c01b509f1b7a70554d2b236b'); +INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbccdf43762f609b1b650c2ecd47f0b16c20db5288640959f47bae6f2e9182cb'); +INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"9694fd19263381693133a47584432de876ef1e0a32060d52c8db96811ff7d09e","messages_hash":"6551432da4efd50d021d5dc88ba8d6768fd40c0785ce93cdc0491f179d399739","transaction_count":0,"txlist_hash":"06ae398816ea8ca96fa424903182c7df9ce93c5d1bdbc2ead089ee71acb90531"}',0,'BLOCK_PARSED',NULL,'993e4cbd58d92cb65304ce8eb193c9dbc5e5b1d1445f712ae245bf899d60357b'); +INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98a5153a60e9a1757e27ac54c3c25f44426c3ad4470e13f902b556180d8693a9'); +INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"3cb1b469cc6627cbed3f0db1a00370d5c95edf9940f8a4c9406fc78076640d90","messages_hash":"ca6e8c9105d538b6872ea6f62f0636cdd245b17f2a382048a6712e1ad9f4b290","transaction_count":0,"txlist_hash":"2c688b2021aa321432ae1bd5a60a9f65cdb6d3720512ca2c304bd2773e7647d9"}',0,'BLOCK_PARSED',NULL,'151e3599f7084d09c53875cdd9e0deb98af2c04319cbdf3f4d40b6b5c2dff0a1'); +INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e118cca988be0482c36102392a56a1c755101e947df177d2e792bc7b2b1850f7'); +INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"cac7cc49c1d632aef2e9bcb3456f60df2ff11110c4e9980989ce0f2d8a5835e1","messages_hash":"da5e150ff4f4000664421aa0506fb40a5a09bd0e67d00d2f1c94d4083d594472","transaction_count":0,"txlist_hash":"2a7ce0455e84f973c078752f1c0ea93ffdbe993f239baeb7ed947e749c119dfb"}',0,'BLOCK_PARSED',NULL,'6989efedbd84eaa81c05d0a2a7c4d901aeb318291889bd598fcbd9ca67325cdc'); +INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13a81d31ffd63cb7c852361d6d8cec4c66fd72d64fd434613483714f760cc0f7'); +INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"1614a317b1144c7f08fb2785bf468bb299b9f19450331b7fdfebd510fa07e574","messages_hash":"b2d1f80a9255751fb1fed53b2bc3b638c0296d95c6d2d34b5568a4689dd224a9","transaction_count":0,"txlist_hash":"270190f8eea6e059acfe66f7369986d3748f707f3ad0eaa2e396a190cc047a6f"}',0,'BLOCK_PARSED',NULL,'555f9e1461ccc0dadce3700c755ad29e06ad31f0d079651e22de89d1242731f9'); +INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ef43ef4378e2682ef01c29e04bdf6d842c345bd27e03b3ddf4c2ccd0caa0d16'); +INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"631d42f4b3fb091a4c67f737bc2da60b8bf9820d27c758f5b9453b40813c5bc5","messages_hash":"f079d3b7bdb4c56bfc3f61400a4092a75f9e6231f4a62bc00f476523ff679edc","transaction_count":0,"txlist_hash":"35ca62f9b66717328f41e23c80e72395f4ece758ce3ca9aabe1d1edd87d06016"}',0,'BLOCK_PARSED',NULL,'eb5b290a912bd50e238e443a8a8eec002f84104e40153377076c0c76f2db1928'); +INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc8dc600e3bb42963f66bdf0443d177b05ff3fb6274bdecb0c883be2b1da45c8'); +INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"2b3f460da72fc0a9b3a720abca80bff0c44654287de69567c43c62a5557144bf","messages_hash":"6198309a64cb0964437b25c3d2c72354f8ee78c81f0d525ef4ea92daa208eb5e","transaction_count":0,"txlist_hash":"37d35cf95c6f102413739a672d5dc1c3b0760068de256676b336c631bdc94447"}',0,'BLOCK_PARSED',NULL,'dd21032a2b17526d0d7fb6be5e383f30531dbc921f3e52e71e93b6a97044a027'); +INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2ebef82f320f44b36c177913d8e898f6977e3548423ff7902cf0c961ff2b682'); +INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"db62bf94ddb276cf55ddfe73f8023e760788647910807adff6e0672ce1d5e23d","messages_hash":"9b09326d60df6598e7b742f971954a5ca84a154851c17fb0e52c0bf755b74959","transaction_count":0,"txlist_hash":"2eec38760b106cf52b3bf0fa51198348cb611ae9bb75edd8e4a343e7fef1e042"}',0,'BLOCK_PARSED',NULL,'1623e652dad8490e32ce57bcae1dfd744f7e38069f6890f6b71257bba8525ea6'); +INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22a2357a6ef0d2ad9822f30edf2ce1e20c7cec7eb9a37b2ecb4b969d1cf0a2c9'); +INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"1c427808f1eb1972df57b51eea9f3405d3d63a1d58c5a3faba616d7160e3a264","messages_hash":"af0ec86d25140f5a952df3fe646f217de042ddfd8dfd085a6fb5d88e0888b13f","transaction_count":0,"txlist_hash":"be57a1f4088437c89e3bdd7c9456b8ac9dc6011d15ada8d5432ab662f80e9a52"}',0,'BLOCK_PARSED',NULL,'e398b489c02f9579548b8c5c4d4babb958b4164cef8e0fcf7099096748b06d3e'); +INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e27cf9b2c6ab004eede280f31ef0abd0b49ab0c3ca9575ffe8c0163a9bbd661'); +INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"cd28b5ac0f80f8815467663c1e90b15ffe46ce067a1b2ce004b0d371cb0ceb16","messages_hash":"a07a2f28740a4c0534b49158731d7a5ebdcc864a78f6a43712f0801df161b7f4","transaction_count":0,"txlist_hash":"cf5fed759ba01d430d2e97ed6d52503a67c35688f02ad6742e87f1da1b468ae0"}',0,'BLOCK_PARSED',NULL,'fae7064bc39424e375c98c194f87e8cec321bff4bf4d66f5d1419cbd917cb581'); +INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a3491d88e414b1e2de94aa99c967d6746f5738bb5b2ae7e00b6e30d2ad18155'); +INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"69adfbe756c116e395fb3a5170b57210ac2721b07144b3d7a35c4327f28e28c9","messages_hash":"22f0cc2c3132b52f202ac56a0f3b655a80749220c831f02962583c757681f799","transaction_count":0,"txlist_hash":"528e0ea934cb95d328ad13fb3a3a47a1d89824ee44abbb2cc271d707bb6d62d1"}',0,'BLOCK_PARSED',NULL,'87e2f93ae9c6b77a0b550bb362b0e000b2c285a7e34b074943320d0eb335d5e3'); +INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aacab41fdfa5fd187172b97177b192e1815b66c4433415524dd0d21f47741ae'); +INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"d50cb66a25a410db360cdf749b5d10932410b5e37c3e5d3d834a65b5671dcca6","messages_hash":"b02de37f697c714bb2e208429c8209346762735ae91f02c7a6bc88a65f970db0","transaction_count":0,"txlist_hash":"f0e0e40238d13f69c9c40cad5b8be218cb09af9bc061e728b56d74a42182788b"}',0,'BLOCK_PARSED',NULL,'d0a43df21bf2f067b060411c317e306c3d84ca5fbadab11cabfc571aba342c90'); +INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2351a8b298fd47a85afcdf2d1b45babbf7324c6cd20fc88d5e25cbbf394a7857'); +INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"384f8d2eda5f1b7b8273ef149ac37fcaa9ae51865fd57bd348339579b8a078eb","messages_hash":"b93269658cde34c18f66e0b0243c38a6425d52a4cc55934972ccb78e0a0e0cec","transaction_count":0,"txlist_hash":"19ac618404aade5a0914a9a9c159ea229384be303a320b08b9915474beccf1df"}',0,'BLOCK_PARSED',NULL,'f8fe7cc5fa6ad22b2eae6df2c78fe82b74519668ee4224dd105462c6f9929d82'); +INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98e6ce942a871a1a6b47e4eb92de449cd2eb6f5188a208633bd6df385d4a28c3'); +INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f","messages_hash":"d37c9a6017c79571efd424729624af5c2bca215c2215fdbcf718de863ea10f89","transaction_count":0,"txlist_hash":"7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e"}',0,'BLOCK_PARSED',NULL,'2ca6799089f26a4eb4f56bc2d9610252cce500a02a15c837b1c7ec280d1a9abc'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql index bdf315aca0..a1c0d42156 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql @@ -152,30 +152,30 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'750ccad1bc0bfbf5a710bbafd8b462594ddfee190e3430bca7e8c8d270f2fd5f:0'); -INSERT INTO transactions VALUES(2,'121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,'a91d2e8deef46214f4c9b8aebb35b6d8807f2a400c2fb6fbf3fb47442d7ea39c:0'); -INSERT INTO transactions VALUES(3,'c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'4c3b65c423a0600af4c17f48fc9f8443e1e7918f419478a53d22f14b793ab4b3:0'); -INSERT INTO transactions VALUES(4,'89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'e108001c44f040df19f8e751538a100b2dfbe606f72e8e359794e9c05bc3f52e:0'); -INSERT INTO transactions VALUES(5,'f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000BC953EB18873CE8AED42456DF0ECE8E4678E13282D9917916E7A4AEC10E82837589A44A3314B298A83D5D14C8646900A5122B8A1E8F6E0528E73EA82044D1726A',1,'2fd391aa096ca17e07a6dd0f8cf70121cb8c7c542d17254f34d5c302093a4e3e:0'); -INSERT INTO transactions VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'c06c060767776b7f09c3eed96bea1466a3d9f49c4d00d16cfc4049bd45821fb3:0'); -INSERT INTO transactions VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'70e7cfe725accafbee3f35946c1a5d4ab2aa80adcfb17a0aed6af3e79278a848:0'); -INSERT INTO transactions VALUES(8,'b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,'d36f95f3a8fb5852f28ff84250bd92661ec31fce6d5b1505455279e2c9826ec8:0'); -INSERT INTO transactions VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,'f436cbcb20522b45ba9c40785725c876d3a520a4f3f683d08d6c24a4e6c1563e:0'); -INSERT INTO transactions VALUES(10,'f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'0d302299946d398d35a9735af378054a896a17db28edcc87586ec5ff530520e2:0'); -INSERT INTO transactions VALUES(11,'a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'3704b23673489a138f7021044edddab7f1d94a14e12aedfd5a736d331a7d4495:0'); -INSERT INTO transactions VALUES(12,'9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'23f74e8488b875442229dff279f819780d8051c845960fb4eb71585e8ea0ba47:0'); -INSERT INTO transactions VALUES(13,'ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'edbd203a595616cf0285a982c3f85d998f302ade18b011fd847adba54b508001:0'); -INSERT INTO transactions VALUES(14,'ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'70125234408f91cf05af61871ec76164b8676907ba299908cb2ddbaaa3cd2fb1:0'); -INSERT INTO transactions VALUES(15,'6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'e1eb255cd51ddda8caa319a7690a45fb5385f1ee33bfc8d5011e442434cd4e11:0'); -INSERT INTO transactions VALUES(16,'10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'534148dc2423208b93e138f110e12734d45b678bb534ad1aed2bd50f9d5e21a7:0'); -INSERT INTO transactions VALUES(17,'caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'0c3c3475ad1a79c2fe673603bb38447ee12b478094e9e51e99fa6c06f7e72ae8:0'); -INSERT INTO transactions VALUES(18,'67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'bf7acc19b878a8ceadfb1ea2bff6fa3a692e1e8599869a85e45ff316ecf0f92b:0'); -INSERT INTO transactions VALUES(19,'e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'17063806c5eeb2cc730ab380dc0ebd3ebeedd5fbe5c502eaaf46b065d901dd2b:0'); -INSERT INTO transactions VALUES(20,'1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'ff1c30c31e2e0b511c508c7111d22d77fdbb4f20379d49042bef4e231b9c098b:0'); -INSERT INTO transactions VALUES(21,'dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'2e07fb3dfdafff224b0cb92d718788af96b51014f621e726986b11b9113ae3f8:0'); -INSERT INTO transactions VALUES(22,'4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'168840008f0acd950b58778bb6ee9d625b19dde6fc5a85f02a787aa78d541341:0'); -INSERT INTO transactions VALUES(23,'181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'a64251be6598696807b458ee6811a35eefdcd8170ab68e36c37d1c5b0bb84350:0'); -INSERT INTO transactions VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,'806ec51cd29841b7bb12b0cb41cf9678b3e3e26f9a95d5aeba5e0868330b8e60:0'); +INSERT INTO transactions VALUES(1,'15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 750ccad1bc0bfbf5a710bbafd8b462594ddfee190e3430bca7e8c8d270f2fd5f:0 2 '); +INSERT INTO transactions VALUES(2,'121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,' a91d2e8deef46214f4c9b8aebb35b6d8807f2a400c2fb6fbf3fb47442d7ea39c:0 3 '); +INSERT INTO transactions VALUES(3,'c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,' 4c3b65c423a0600af4c17f48fc9f8443e1e7918f419478a53d22f14b793ab4b3:0 2 '); +INSERT INTO transactions VALUES(4,'89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,' e108001c44f040df19f8e751538a100b2dfbe606f72e8e359794e9c05bc3f52e:0 2 '); +INSERT INTO transactions VALUES(5,'f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000BC953EB18873CE8AED42456DF0ECE8E4678E13282D9917916E7A4AEC10E82837589A44A3314B298A83D5D14C8646900A5122B8A1E8F6E0528E73EA82044D1726A',1,' 2fd391aa096ca17e07a6dd0f8cf70121cb8c7c542d17254f34d5c302093a4e3e:0 4 '); +INSERT INTO transactions VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,' c06c060767776b7f09c3eed96bea1466a3d9f49c4d00d16cfc4049bd45821fb3:0 2 '); +INSERT INTO transactions VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,' 70e7cfe725accafbee3f35946c1a5d4ab2aa80adcfb17a0aed6af3e79278a848:0 2 '); +INSERT INTO transactions VALUES(8,'b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,' d36f95f3a8fb5852f28ff84250bd92661ec31fce6d5b1505455279e2c9826ec8:0 3 '); +INSERT INTO transactions VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,' f436cbcb20522b45ba9c40785725c876d3a520a4f3f683d08d6c24a4e6c1563e:0 3 '); +INSERT INTO transactions VALUES(10,'f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,' 0d302299946d398d35a9735af378054a896a17db28edcc87586ec5ff530520e2:0 2 '); +INSERT INTO transactions VALUES(11,'a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,' 3704b23673489a138f7021044edddab7f1d94a14e12aedfd5a736d331a7d4495:0 2 '); +INSERT INTO transactions VALUES(12,'9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,' 23f74e8488b875442229dff279f819780d8051c845960fb4eb71585e8ea0ba47:0 2 '); +INSERT INTO transactions VALUES(13,'ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,' edbd203a595616cf0285a982c3f85d998f302ade18b011fd847adba54b508001:0 3 '); +INSERT INTO transactions VALUES(14,'ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,' 70125234408f91cf05af61871ec76164b8676907ba299908cb2ddbaaa3cd2fb1:0 3 '); +INSERT INTO transactions VALUES(15,'6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,' e1eb255cd51ddda8caa319a7690a45fb5385f1ee33bfc8d5011e442434cd4e11:0 3 '); +INSERT INTO transactions VALUES(16,'10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,' 534148dc2423208b93e138f110e12734d45b678bb534ad1aed2bd50f9d5e21a7:0 3 '); +INSERT INTO transactions VALUES(17,'caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,' 0c3c3475ad1a79c2fe673603bb38447ee12b478094e9e51e99fa6c06f7e72ae8:0 3 '); +INSERT INTO transactions VALUES(18,'67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,' bf7acc19b878a8ceadfb1ea2bff6fa3a692e1e8599869a85e45ff316ecf0f92b:0 3 '); +INSERT INTO transactions VALUES(19,'e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,' 17063806c5eeb2cc730ab380dc0ebd3ebeedd5fbe5c502eaaf46b065d901dd2b:0 2 '); +INSERT INTO transactions VALUES(20,'1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,' ff1c30c31e2e0b511c508c7111d22d77fdbb4f20379d49042bef4e231b9c098b:0 2 '); +INSERT INTO transactions VALUES(21,'dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,' 2e07fb3dfdafff224b0cb92d718788af96b51014f621e726986b11b9113ae3f8:0 2 '); +INSERT INTO transactions VALUES(22,'4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,' 168840008f0acd950b58778bb6ee9d625b19dde6fc5a85f02a787aa78d541341:0 2 '); +INSERT INTO transactions VALUES(23,'181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,' a64251be6598696807b458ee6811a35eefdcd8170ab68e36c37d1c5b0bb84350:0 2 '); +INSERT INTO transactions VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,' 806ec51cd29841b7bb12b0cb41cf9678b3e3e26f9a95d5aeba5e0868330b8e60:0 3 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -513,352 +513,352 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1,"utxos_info":"750ccad1bc0bfbf5a710bbafd8b462594ddfee190e3430bca7e8c8d270f2fd5f:0"}',0,'NEW_TRANSACTION',NULL,'81bb5fc1f1b00277d322e23562aea335ad9dbcddedc72dc9084e7b8cf0b381c8'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','422bb4a8d52843822cd798abacdb25c2943a41ff758a99943acf8ff0db30b23b'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1}',0,'BURN','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','f7c4870ea0675c8871a1e497835094e1e9a6fe94cf4ccb24bb199450887adc82'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cff3ba7c92f6b318eb4a4a5e2b90b655fc055d4e8a82101b813aef6e1c6152e4","messages_hash":"e34cf3d8f2969e78eef50d68dedd6c97c987cffb56fac320ccf7b444e954c813","transaction_count":1,"txlist_hash":"9f6f20e36fd2b2b44df6e91fbfaeffc6d7fae9917b27d196245ee90c36d99ff1"}',0,'BLOCK_PARSED',NULL,'3e5a5de437afee4d9df7081910401023b5e3a1f6de392bc546949bf42fab9db9'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'131f0a050cd5ff6dcf2abe121c143858728e7086db222d0c4bb5a96c73046a81'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2,"utxos_info":"a91d2e8deef46214f4c9b8aebb35b6d8807f2a400c2fb6fbf3fb47442d7ea39c:0"}',0,'NEW_TRANSACTION',NULL,'2b339d60998c043c666cf39927e282f1e361eaa6fb8ac3f602cd5ca9436cd649'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','0eb129619d5d71523693a06129d7094198266c40b26193b2d26d51160b13b062'); -INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','1291e0990735d8aaf441a4c0abec428f907ec10145b451cc9fded19c414a0387'); -INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'SEND','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','ab38c012dd323d30890029c17c85f8ed6246c01dec8d00c2d5b7c992dbac97b6'); -INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'TRANSACTION_PARSED','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','2e2239ba6d7f52c2ac4dcb9294808144ee642b7b59b5a0f6ffe66b4bd5518360'); -INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"2281de0177f4fcf8d730e2751d7b9fb5da4df741196bbcaff470c7860a2ca0b6","messages_hash":"f2f12869b75da9f58a31c1156ee42571b4c060589ff6bdef01ec3851fa4a9d58","transaction_count":1,"txlist_hash":"49836952844fe3f887e718d236efa6b1f4cc0b81cfc010f79a6349562ebfc162"}',0,'BLOCK_PARSED',NULL,'fc7ec74b438bc9b87ed35b076ad6e4a6faa6738ed6d92e1a4b112e2193bb001e'); -INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f30f2b87e6a47261d95142bc23a1b69e8ac57487df5bba08a83c71377edbaef'); -INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3,"utxos_info":"4c3b65c423a0600af4c17f48fc9f8443e1e7918f419478a53d22f14b793ab4b3:0"}',0,'NEW_TRANSACTION',NULL,'753aa9d874607da70bbe0d9cdafb1395fe3f71ce24b96583c964a304e05f34d3'); -INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'OPEN_ORDER','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','1213dcbb65c4251934b422cc30d6b77916b52c3bcc666943e99adee4a6047d12'); -INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'TRANSACTION_PARSED','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','c4d4d2bdb766862b824143322ab9eea491eeeeb397360fa18cfe96d138ab079d'); -INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"802742a55d8ab83de24c45efb86d1daa0ad4e565cc4db6dcaa5cedb16ec4125f","messages_hash":"4d33dbdcf0af53fb34c19807641fdf4151a190bb14fe21ad3dab4bc53989a28a","transaction_count":1,"txlist_hash":"017a0ddcf461ffcc3c89042ba6a6337efcc276c8f144daad445ba0e4a36bab33"}',0,'BLOCK_PARSED',NULL,'600640b111220318005ad02f1af1087e29962ace34c35ccd52c37b0332aa78ce'); -INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f5c48372c458bb85f97ed5ada7495d2c8a2898f221ad5731cc301ee32c4d4f8'); -INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4,"utxos_info":"e108001c44f040df19f8e751538a100b2dfbe606f72e8e359794e9c05bc3f52e:0"}',0,'NEW_TRANSACTION',NULL,'2d0e3139de28cad2e860b2058fff99532945a6b8a5819547594a6f50177059ba'); -INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','bd759105560f205b6c2c40d827b4c769a4bf0444f49c6d3c72eeda7601c250df'); -INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'OPEN_ORDER','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','11ecf20823aeb4ef0aa6d76602d56ce296d6f5d0f75747f8901579599973b569'); -INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','412325bacb790f4e63716baacdde3a354b985c0b7255df42326e00a3247e4c93'); -INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','cd09095b7b5580497f70ef92c6910e1450b7601c0ebb7fd9f10633660fed9fab'); -INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx1_index":4}',0,'ORDER_MATCH','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','b28dce002a5ad7cf7a9effcda0dd88f769f0be9e5cde8131448b65969d8f44ee'); -INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'TRANSACTION_PARSED','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','abd7f728a441c2975d3a1dfb0b1d04b09fab83184e1e15b43ce198f8757874f7'); -INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"ed279c6a985256134cfb39f1283ec97c8dc800b7255a3e8243ca9846884d0378","messages_hash":"cb25217db7a4ae17a295f847aafda153adc24f67e8475354bec53aa1bbefdcef","transaction_count":1,"txlist_hash":"8ec458bf08abe2f3634eafac5af321f02cf5d470c2a87301b8061efe3dcc644f"}',0,'BLOCK_PARSED',NULL,'f30e47f7277255cf7fa6d2e972e30d87a7486cfef4853ab78c2cae0ec1e9aea8'); -INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea2bbe9e6d693715d673a5edfceee19395b3817f1b01dac954d9c7fdf0915c20'); -INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000bc953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e82837589a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5,"utxos_info":"2fd391aa096ca17e07a6dd0f8cf70121cb8c7c542d17254f34d5c302093a4e3e:0"}',0,'NEW_TRANSACTION',NULL,'ec5d79ec839e0ee023ca43d7841fcce9d1044647f6409156a83e0ce278ee602e'); -INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','8c57d8f347d9c61c846cc7dc3753213f844f6c095e447ac18277322b6c3daa6f'); -INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","status":"completed"}',0,'ORDER_MATCH_UPDATE','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','f7bd0d8e2205f224e13e4062568fc9c35ef62e26fb51132daf3b5417e5076b6e'); -INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'BTC_PAY','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','9b2e7d1a7d33b3952230a859af70cad124499ef37885389a084e99ab11e3bdca'); -INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'TRANSACTION_PARSED','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','96ff490bafeb30ccd0236e81f07a16c8ae35138a9eb0cbeb505bd685910fcc86'); -INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bba1ec90ee149be7d8a88ff9df1fca931e076e885be21bc822637829a8675e02","messages_hash":"deac111f81e769502b94500b9ef8626fd2c6203198f7fd51d82267a01184e7a0","transaction_count":1,"txlist_hash":"e2e334cb3c300e622a50d2c206fe532a3320f56c445dc1a9dec750417260fe9a"}',0,'BLOCK_PARSED',NULL,'a12c8875d1e06dbe35670b5f25ae3962723151818687ed177c960e49268eac2f'); -INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae03d1734ffebd3a9c51a2c16032a0f2beb87c8dae55230ced177ddd9c213224'); -INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6,"utxos_info":"c06c060767776b7f09c3eed96bea1466a3d9f49c4d00d16cfc4049bd45821fb3:0"}',0,'NEW_TRANSACTION',NULL,'9554a20a6fea6c401f9e2b93f2ffd7644ef50846cd0a33a60078e4e8ee4cf845'); -INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','df26040d6f775cac5bb47af521fd1dffaeee14ebb00b93b0b6a0c59c5136ab6c'); -INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','885b46b03d1be647dc71a668639bcc5c99096243fe494dc52441e35e45230115'); -INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'ASSET_ISSUANCE','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','ed102188e7444943ca2fcc625e349ed26301841b0d8f86718f68ba1e7a56102a'); -INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','4141e35d9e66064d8a12dbf827e551c6553eca716efd40e85756a39bf194b602'); -INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'TRANSACTION_PARSED','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','d65de20b5db30a2f926cc5c599a562bb9ae625170fa5bcfcb41efab469fa1043'); -INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"5f8a9d465e686b3e9471041bd15d645b7fc8afee36ee890873aa6c3c51d87bb5","messages_hash":"a505a66c740529cdd8a5b685ceb24cc403626ffb4f6e6e2ae126ee92ae1010b4","transaction_count":1,"txlist_hash":"260ad7ae2e2b555f7adf9155fcb761e7ed7a2d22f128457db0f1ff363b498d64"}',0,'BLOCK_PARSED',NULL,'e163e06861bd5742cbeb168c441d169e7f2cf27ddd46e938528cdb44a17c319a'); -INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd92272861e89534cdac5b426360dda7cfdddcc96e42ac62eda0e1746524e464'); -INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7,"utxos_info":"70e7cfe725accafbee3f35946c1a5d4ab2aa80adcfb17a0aed6af3e79278a848:0"}',0,'NEW_TRANSACTION',NULL,'0d5f962aa19ff92dd703cb51b7efaa49921c1c681b2d1703bc04db4bd621b1f9'); -INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','fdab52767add9dcc80f1465166f10e0ab0fcf9cc9547e7f376a77b3d0318642d'); -INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','3df6069e4c791f7465f571de27e373d9c13d4c821af367d10be1315c39ffa95b'); -INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'ASSET_ISSUANCE','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','3b43e3c2919716c652f6d615e29659fa0e69e3ad2d4748d2491fc1c9451daaa0'); -INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','f24438d18124f352257179b4d3f9ee991e988aad43dde3518104ac90f6019c2b'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'TRANSACTION_PARSED','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','311f2412a1d38a9dcf7b6e1f8a78c807e04e640509966eb30ab5d64490f11414'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"153795f1c7ae2dbec7fc19bb25d03dd518f0664bca82b9bb92bb7c4f1e22f040","messages_hash":"74f1ec6a8af3bd659896a94080f4a95ba73e835962aefeefc169819c54c9f5d8","transaction_count":1,"txlist_hash":"c047baa686f8bf24c406cf03687c0b4fe6b95e4afe0b396e0f507a694fb10245"}',0,'BLOCK_PARSED',NULL,'72ab77dda90a0e3b00ca193c1419b6fd83304c30eafbe2ac1c749828c1e73783'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ca08f170f07832b94f087c999ebc84c6684a02496643c6ec9a133acfe8de27'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8,"utxos_info":"d36f95f3a8fb5852f28ff84250bd92661ec31fce6d5b1505455279e2c9826ec8:0"}',0,'NEW_TRANSACTION',NULL,'0ffadc6a6dea4447895992694bff971eff6af9d5477fbf72e623707fde2cd09d'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','83cf5c17064c463be009256450f96eb675874e01e4759245731ad3f6ed1ff9ed'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','ed2e15099f7669cec6be3ae829942c57896e10c5ed8a7bb6a5fd8501fc7353a5'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'SEND','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','dc741d4a40330b7525929d7aeeca1ee5b124d3a2bdcfac7349d9bf6d4b829349'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'TRANSACTION_PARSED','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','5fc82f509ea726e7b41e1dcd3ac68ced514444a4c1c297fa374aaa8e675e2336'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"c5d21baa8c6949a8e9f0d73a37436d431bf4876ab3b60b82553877ec53fc4454","messages_hash":"795e66c4657593332a2de8d7dc8d6d780ea60ce935a73972fd9be099cad85a07","transaction_count":1,"txlist_hash":"d9532f5bdd583968d88ed24feb95b50c5e319d36171dd7bc6067ddf3d13c623c"}',0,'BLOCK_PARSED',NULL,'d4be71177cef578036e2733d7bc99643b4f95beea9abba3ea32c79ea9d2aef76'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac775a02c14d2dd47e63aaa2746de02a8c90abf712d17326ca482402df7b5d95'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9,"utxos_info":"f436cbcb20522b45ba9c40785725c876d3a520a4f3f683d08d6c24a4e6c1563e:0"}',0,'NEW_TRANSACTION',NULL,'7fd71648e3b36f63b805cefa0591322abf652eb3d7fe4781101acddf47d67a2b'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','5f1304abe6c97386b85cacde8500929acabe239f7726e8561882ed439c06bb5f'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','2e6ef615872253fd22674d78abd042f2a32aaa3df43369dcc6d4dc25b6d214ae'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'SEND','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','88e1896b4b2d02a82353b1e5e8a8db0fee1d4df9e797bb2a9504e7b3e582f61e'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'TRANSACTION_PARSED','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','ca3b12902fef2c1ef99dee615be6d3004e024ada2867b53d1af2207730f7a0c8'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"579de8204446e9128076fd27a644a82da77ca5ff2793ff56815c24a11218af5e","messages_hash":"6e9fcce8f6a3cb387e8ed0f75d4c34fdd2bd04cbacbf29e5037e86c1a02c5df2","transaction_count":1,"txlist_hash":"5b37c224e5684c0b3a913793e7e97c4f88b26b6c6d7683de8e06bb9485fba409"}',0,'BLOCK_PARSED',NULL,'aad4e1a1789b41a99f546589e95660f81a366f91a18af1ef1644b2642f300a76'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c99dcf28723416f6a544552a0305f3a5e084348f1aabcfe2f19ae5c0c106b94'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10,"utxos_info":"0d302299946d398d35a9735af378054a896a17db28edcc87586ec5ff530520e2:0"}',0,'NEW_TRANSACTION',NULL,'dd632f2d80b252f963eba57b32108bc178f68814cf58c428aebefb08e1254af7'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','f088869d07db077f9ffc914cae0abfe86a996fb8caefcb34e45fb33db633b37a'); -INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','260804ea8c83d85018f05b4baa695a6764f323f376b26f1d1315850638f785c1'); -INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','16243a7ad087945a17a66fb1d5aa2da26ea2017a03f1f56eee86e2b173d8fc46'); -INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'ASSET_DIVIDEND','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','01ef93a87eb13b42765dfa1f7459351c98b0f5df0626827bf5f7bf4419314c2d'); -INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'TRANSACTION_PARSED','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','b705e441e567c8d42766cfa07888da220784ec944f2d4330f27d9815fae630b8'); -INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"c03a6e31f50f172c86029ce6a810ec730e1179ad3e76ba5d4290595ec414bb87","messages_hash":"93015fad6abcaeec7e64b9ac939f3d686c365f2aa21ef25fe835aab70165c9f8","transaction_count":1,"txlist_hash":"f81c6592f74098821e15c146c2a7e4a5be2cc743431d37a5fb6d4143b89907d5"}',0,'BLOCK_PARSED',NULL,'74f66c6751798d10c48439f94bea854a8f5ca8206c74913d4a92c7b78a8181f1'); -INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e599c75d20fb2fdacb8976c9b3a6ce29059bebcf4a5c97e5938dd927acee88'); -INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11,"utxos_info":"3704b23673489a138f7021044edddab7f1d94a14e12aedfd5a736d331a7d4495:0"}',0,'NEW_TRANSACTION',NULL,'ae7f59ac23d9b2c5a40d7004e9f1e4bea1964cb1505a584c3e76ab40ac0b9eff'); -INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','c0cec06b0d972fb2d10a7931bc81b8276a37fc72dcc78b1ab0f38050e525302f'); -INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','0670f88de64111af2329a9fc3526920c0f6d9cc198158912f2cdad34a1b8d100'); -INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','44548570196e55c43b43cee9d7b19db231332e1c373b0ebf0dd1468dc666f396'); -INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'ASSET_DIVIDEND','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','e86d91c818e9a4d342242c05470c52304d4c80c4aef31942a31ab6a9f0aebff4'); -INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'TRANSACTION_PARSED','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','516746c3e639c53c49a9d65710017d82f59ba0dc14a2ea5bdfc0969f58d83e1a'); -INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"804651f6571bb24ef7534c97116ae35fb0b6b31aa6a4574a419aae7fc2900b1c","messages_hash":"1c71e31d13a1db84d1d3210591a1282cfdc810d32b87c2bbefcc8154de7546a2","transaction_count":1,"txlist_hash":"3698516a21c2c590522e6419eae91ed8b469d922863141def1f3e295c4954dfd"}',0,'BLOCK_PARSED',NULL,'e1cd66984d1b0e0229c0b39a0102a440c60324266c3f4f3616560453a2576e87'); -INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab7782bf6bea5441ff776926263cf080b44e76a37dd1072f975e166a395d27db'); -INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"utxos_info":"23f74e8488b875442229dff279f819780d8051c845960fb4eb71585e8ea0ba47:0"}',0,'NEW_TRANSACTION',NULL,'8ca8bb74a522289c1fe82e32454d86333a6c841d894c32eaaf8d72a3e496fa14'); -INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"value":100.0}',0,'BROADCAST','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','51fe9c0cfb21e77a041f9f3ec662d4c0a894796133f7745fad9e7c0c60ea0ec9'); -INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12}',0,'TRANSACTION_PARSED','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','a407fcb751919a5954f92c010ad6c2b4bc4cc2b382e0f7cd17a2204c9c7072e3'); -INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"a9a18fcba1a83d637dcfd633f32848d55c86c5b499e0c15af6a626653b7424b8","messages_hash":"ef70b586c4bc6a9e3136b64db7b36a32bb394189a064a694eaf7108c79fab899","transaction_count":1,"txlist_hash":"deaaba2ecb1772901052ae6490a1015e75146af3b2707b1c148562deff91af49"}',0,'BLOCK_PARSED',NULL,'182476e43d6c547658b2eb459a29e6d47303313651a5def991e15a51c706bb08'); -INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b3340885736a9545566fe9ea1cab90fe38fb6c36800068efba9c66ef5e4f62c'); -INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"utxos_info":"edbd203a595616cf0285a982c3f85d998f302ade18b011fd847adba54b508001:0"}',0,'NEW_TRANSACTION',NULL,'1867dfad7312518a3016fcaab7e7963bbcb3f0b677da2fa472504f7b2548eeb5'); -INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','51ce8afd13c192bf9fe77df626088f9a855554a060de420bb6c32a98fba8a8dd'); -INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','f13ca990f408a0e04dc493c97fd1925e46c1bdd1b358375c6a8f749c5b455617'); -INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13}',0,'TRANSACTION_PARSED','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','3c8bb2861b99f9768e877b03fddcd6cce9bbb1af989a5c5a75ed9695b850c772'); -INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"27298dbdb9026b5d54228b686b7a76f9d42479da79b38b9ef7cd13e4fee27159","messages_hash":"99d83b7a7cb9db6487d3a10b0a3ee91690948667d7696042234cc8158ce30663","transaction_count":1,"txlist_hash":"e409e7c7435482a64f10aaaaa6e62d69a4f0ae3083922c91907d6f15393dbb22"}',0,'BLOCK_PARSED',NULL,'06d8841c7fbc02d0a065f63b2b0b7b9e72a5fcd616c07e55c42347245f2969c6'); -INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b672db45d53eb5ad69efb876664f263f9386f3d5d54e89c32b2165763e287208'); -INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"utxos_info":"70125234408f91cf05af61871ec76164b8676907ba299908cb2ddbaaa3cd2fb1:0"}',0,'NEW_TRANSACTION',NULL,'e371957a06673372e813fd5295fd03ac2fd8e015998f238b7da45674c05594a6'); -INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE',NULL,'7a8778914d8b93122fa2fb84ebb5f0a35bcdb69c8a6280e5d368c35f7f53aab1'); -INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'32e2b1e4ddeef09235a96477f62fbff5cf432370993ba7a494d2058ce5625aaf'); -INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','15969df1e5208f18a177a56fa8bf65f31962dff1ee46f27438ca86b635a82244'); -INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','c81bbc3c0dcc0c1969f8defbb96c2b13970f60d760f5e12aa28c800986798086'); -INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","wager_remaining":8500000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','f9e8c94904144759950550098ef75aedc895c6e14047f3a0474b1d05dd8a2f91'); -INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','4af2cfc35419ae34f0560d00ab5f08c0c89c33fc196f1edad89b9de83670b493'); -INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","wager_remaining":4250000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','a7a58f0a19fbe366181496f21adbdc7c11393d1fa83d8e04b8478bf4e1dcc63d'); -INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx1_index":14}',0,'BET_MATCH','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','4496f13918dd6531d551b11984784a16b126aea20f25eb02c5ab6f2b5d0a15aa'); -INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14}',0,'TRANSACTION_PARSED','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','520dc23772d97c99b5243012384f8d44725c37cfeff3d749e41cc6b77fa93c7c'); -INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f5fbbb8870bb8253cfba52c58765b8c2493ceee6a2db5779a4212ed456bf892e","messages_hash":"c75ef478918bdcd77cd2229bf91ef2d7312fc67496b84e528673b94ef1efb0be","transaction_count":1,"txlist_hash":"78b492a743e24d50541f29a1a8e476434e81961bd457552c55fcbbac68d68fca"}',0,'BLOCK_PARSED',NULL,'7d4a10f8fd7316259a76181e9a607715a598a03dfa00d915ac3bc5e9597f67a2'); -INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab977955b06940d866ae02cc5781962fa1b65c5e7a265cadbce1ff21c2bc76d7'); -INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"utxos_info":"e1eb255cd51ddda8caa319a7690a45fb5385f1ee33bfc8d5011e442434cd4e11:0"}',0,'NEW_TRANSACTION',NULL,'ad5af093dffad32a251a3cb005c69f32bdfc96375db204ea3017575bcd72d603'); -INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE',NULL,'351518e57a2e6c0c710ba020e59b3f3962e442031ec1ac7888597b669d7d4d17'); -INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'243254e9bf861385a73caebc7b9fe5230b7a4ad25162395ce7eacb4ae37fe204'); -INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'3fb88ffd0ef10ec620a082e6a2652ef50b0d54a3a16ddf4713f8f8f4099ab5cd'); -INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','38ea49e219d077286d22ec5dc5a79e72aab77678a1f426ab6e9bb7b4d6b374e3'); -INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','6632661c43c1d4727cd28e6b774e963beeafa3d8a1881e8f24b3c7e2a833adee'); -INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15}',0,'TRANSACTION_PARSED','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','44a01d8a7c74d2c26bdd287e405fd6228434fab135728309f388219e6f6d14d0'); -INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"f1e77a7a4d28d64a0cfd878112074b6205ef09055b93b8923b0c6466a07ea500","messages_hash":"0c5504f7347d832a83338fd2c82d0879e01e3cffcc12d577a2c5f1bce3eae18d","transaction_count":1,"txlist_hash":"475ee3563b60fa5bbf8f8db5eabf9bdfea4a2f1b5fc82aedc37fa7c581c5f065"}',0,'BLOCK_PARSED',NULL,'610ffe80a8911b8ca1a86c9e33a28841229c27e6e6628c2a482669ce78546b43'); -INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b81164679a83eba9f69de00505f15b844d9d9fcfb8dc02a733bc2a3757701ee7'); -INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"utxos_info":"534148dc2423208b93e138f110e12734d45b678bb534ad1aed2bd50f9d5e21a7:0"}',0,'NEW_TRANSACTION',NULL,'eb7eb01c8ddd646209044fd1cb49033f2057ce2df18679676942cd0de960ac9a'); -INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','7b64c7b1aec1a03871dfd8db9995ff62009a419bff690f187364c01c29f78165'); -INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','bdd476056ba401b43b2be0cd8b5ac562377d84ba91adff6d65719f8d7107e2e0'); -INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','267e7a05fd32e33616b105fc616590f3a3951567c863b2fae7ce216e7827b259'); -INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','837cd0ef6c6836326301c83636de5f99a4c182912bb4e368bca90433d2ea4332'); -INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','e317db0512faf054efda870d71953532445bfccaab28fb5a3e7a4fd0e73b5a4b'); -INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','24095d2233a116ab30589a51b12325a00114761041f83c0af8b0ab085228cd39'); -INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx1_index":16}',0,'BET_MATCH','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','932475f17038b216cbe20f6644301f8f3bb25033a1841cd297e38be6eb0d42aa'); -INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16}',0,'TRANSACTION_PARSED','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','d07e6c2cc2fe4b6c594392eaa6b60e4e6fefa5542702d137829745a4c5a0db9e'); -INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"014bcc839c0ea0d2fecd9aab3074528ffee3b2dce7f805e4d459e2dfb3d98a51","messages_hash":"eab4a29dc8927c9a399e40c8dad77dc6345cf53a2f9223ae08cb2254b73fbe9b","transaction_count":1,"txlist_hash":"5d40b180a3f3b38eedd15c7f40e8585aaa5e2fdde3967dff443a74703fa45fd4"}',0,'BLOCK_PARSED',NULL,'ea422cfc30fa90ed9170acfa14e722172b5df8626fc6f6b46b96193ec965d9b1'); -INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d50e2b03b5c84419663d0e237bd961dbd9c08832c21908ed4443628a7c9385b2'); -INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"utxos_info":"0c3c3475ad1a79c2fe673603bb38447ee12b478094e9e51e99fa6c06f7e72ae8:0"}',0,'NEW_TRANSACTION',NULL,'636364b8459145f22de0698bdcae0060484fa075969a096f78ac334687554fa9'); -INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','9011dbbdb6c69f623e6fd097b4f077effec8694b2073b47e25ab825264b5c794'); -INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','96cceee512b03fd24c7426acbb39e5c2831c8c9a5934b9284e48199708666caa'); -INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17}',0,'TRANSACTION_PARSED','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','ed32f618bdd08d6deafd0d02252656543bc703dc43c8d05261403f0028b3d666'); -INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"9f72d6a84ee58e1e851a90a62b525dc257c3b1b0c7e9964f93a7e5df6a2e4007","messages_hash":"1175f933af404b894d599928a88a44801ffb7c991de94956c7d05717e8353f36","transaction_count":1,"txlist_hash":"e990e43e7272c9d971fcc782768bea70c71d45fa7d712a7195bcc4151617a57f"}',0,'BLOCK_PARSED',NULL,'fac00c36e52bf18418444a420efb38d99361e212b9724a1788eb6450b812e935'); -INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78b5cf6aeaedab0f109c4b535541fae32aa6341cc1f76c14f19071f0f51292f3'); -INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"utxos_info":"bf7acc19b878a8ceadfb1ea2bff6fa3a692e1e8599869a85e45ff316ecf0f92b:0"}',0,'NEW_TRANSACTION',NULL,'2f899644b3900474ce6353a8acd2f75a0fc544a65faeac547c968be4841d64fa'); -INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','9f06c9dd734740eaa74af7947ab950f6f1a395d20fdbbb1adbcca08ad7518d2d'); -INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','5df06d8060d48b7551ae4f51eaa76effd75559825c4f8d87c1aa59d29047541b'); -INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','0e10d4133b2fd8cfb81dc6ed0fa9eec8ad2552b0ec381a711246533753965fe3'); -INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','208848600cd43c8182e12fdb498b46f7878815a7df5eea5056f0131c2e49dbaf'); -INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','2f44e784d143a5e3f56272667bf3b0930e543004bed867fa35ae441d86955656'); -INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','691983f567f30a1e38f30c6e07afe1e7f42721d68e47b2cbbb5b92a595cd0e63'); -INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx1_index":18}',0,'BET_MATCH','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','fe8c99bb7e03ef4f9fa799536fd26065bdeef750e87904eb0e589fff995840f3'); -INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18}',0,'TRANSACTION_PARSED','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','ecd74ee6a5ec104e7e14298e74202e1e9e2851569e7a2778bf6735952f1f730b'); -INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"5d1e195a7d313d703253640cd98be600b04a7d98aae69b5327a29e740573198d","messages_hash":"914fb3d5fab479382e6c224e26ebcd36e867ed3c667e26bad314b9eadbbe18d6","transaction_count":1,"txlist_hash":"443444009d5700747b2d345cc10a70bf5a48214bc279d811a311ef76e52abf04"}',0,'BLOCK_PARSED',NULL,'b42b4484d226ab0844b95ddc1853c7fd4148ac1c5d3e50f9f94bce0352e41f6a'); -INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18ad499896e7adba60d5759338050b0ef5c44d1debe55d47856879b3c76fc5ed'); -INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"utxos_info":"17063806c5eeb2cc730ab380dc0ebd3ebeedd5fbe5c502eaaf46b065d901dd2b:0"}',0,'NEW_TRANSACTION',NULL,'756c8ce8b0b97db738cc30c07461a3566226a7cdc17d478c334040899dcad276'); -INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"value":99.86166}',0,'BROADCAST','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','6f6052cde88c559458db760599602fb644bf4f1435d8a7f82598b35d87abeb88'); -INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','6aae5f153de925d876d6382d28d1a90021b6976a951ceec5790c3f1061e9c7d7'); -INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','b6a41617ecb5228b0b4ecfd4e12b16ffb766768c9c61b11f40113a7bb4710b67'); -INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','a70a96f10e2cc2ca42f60c9041ebfb676661393cc411712c2cda298d28a2cae2'); -INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','b3fcdb1b0e2e2c9daa02bf19e435a4fd58c70b45e5f918cd24ae98d412fb02f3'); -INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19}',0,'TRANSACTION_PARSED','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','a238f1e9d9f4e274ebef168089226fda7c5c0a0c22a083a8df40175c2d149b9e'); -INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"f38538a4a2cba9bcf8821b56e1dc877990e027135d3f220338cd8cb11f3eb205","messages_hash":"b9d6d30aaeee490537a249a73c0b95d56cdb47780d64756f878561838b785230","transaction_count":1,"txlist_hash":"abe72d22a1fb28e1ce34bfe3f1fd012d5a41fe219a0c4ee96f3b4b0e49aea889"}',0,'BLOCK_PARSED',NULL,'86c99a86fcc2ce5c60fc37db9c06694bb7bd28fc95f3aed970925e282fad852b'); -INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce951ce9e657b74efcb990a5907aa7c04effceda445d70c2fb0244f5d5fb299c'); -INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"utxos_info":"ff1c30c31e2e0b511c508c7111d22d77fdbb4f20379d49042bef4e231b9c098b:0"}',0,'NEW_TRANSACTION',NULL,'9893a2b87ed3eaa1a16f9904338d3fdcad6b388469ffc8162b06599b927e9bc5'); -INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"value":100.343}',0,'BROADCAST','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','6c75402c2602707da954b7000ff4789bee15e7be82d8ed6a54e2c7909ba7594e'); -INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','150eb73ed50d228818a61bc2db91612ddb91216b046a5f693c715fdf16ca7cd5'); -INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','2aa1376a07368189c0f309ac962a22497ea07fb3f5eba4f35f264c4687b459eb'); -INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','2f0d85a546668de1c842dbbb8884e6c75467f0f97389abfb6ac0d71e326df2e1'); -INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','3fb326a357388ab9f2b8744373e9748340f872d395e9b1fb49cee415496f2ac1'); -INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","status":"settled"}',0,'BET_MATCH_UPDATE','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','21520e1e0c6a93d4fd264c372ea6c01a50edd7ff709bb34ab2c48638c27f98be'); -INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20}',0,'TRANSACTION_PARSED','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','43a2b39e7fbdb824e44e089e83b6b21ef14e70f12947dff318fd08798359e8e0'); -INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"3a51f1f061d953c940ac7e53f8bb37df041f2d4f42a16f5c5d23707b8b0c0dc6","messages_hash":"aa4fc446acca13213b02b43cbfac832be287d77d408ab0e5f569b202cecee307","transaction_count":1,"txlist_hash":"8bea2f5ef9805bffa4b23881f7635ec213525f8dfe98aa45e716e43a73ffe114"}',0,'BLOCK_PARSED',NULL,'9d13a9592da3e0589cc592eb0e6dbd6119eb18612e29d75fdda5c8ddc2762c4d'); -INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5696cd0b0341f4dc76f4c25de35d23438047975c5fb4046b9d1cedef0d030b4'); -INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"utxos_info":"2e07fb3dfdafff224b0cb92d718788af96b51014f621e726986b11b9113ae3f8:0"}',0,'NEW_TRANSACTION',NULL,'779048396bb7525e0e0d07d2ad7abe18bd692912c317a62b47e071bcdda581ba'); -INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"value":2.0}',0,'BROADCAST','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','31154da92399a934e96fd5fdf7a5a165466b55b058822684a658cd87f7961206'); -INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','a79cd626ffb86fc9cf798b02d0264171a0db9a4088b3b8e713a57657fcd0c0ac'); -INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','2123823d3ef924961ed02e6a8bdfee04088e6c802db86fc209e449f7b5a964cb'); -INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','404e17b34abbab0cf018ef2c3d0f665b68b1fa4c88a1c58cc835afe7e89f7bf9'); -INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','a20146a244f60d1c55e754ea8ec0aee0a88f88395ffdcdf6edc23dc96adfc3bc'); -INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21}',0,'TRANSACTION_PARSED','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','e08887547d7a235a1a99968f5e260a984647c6134a245e0f89a806c52184f5c3'); -INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"cce3284c53fcf79ba268d925e32ab70e3d4df1e6f13dbcbe2920e93fc689128b","messages_hash":"3da0f56d98f2d15804c762b1b7f178198303f193b2cd2e00384d4b44f1e5ffd8","transaction_count":1,"txlist_hash":"d0e8a123b3125a8e057d8504b7a96e77188895c86907c273922b80e7e9ca42d2"}',0,'BLOCK_PARSED',NULL,'1d2050bc466b8a926b8e624210e6bdff85484571d3b7897ee313362a184bd8c3'); -INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2451c052517fc725f09a3e8ab8b4dcf942c8267d739a7d56c7f598cc0ce6306'); -INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22,"utxos_info":"168840008f0acd950b58778bb6ee9d625b19dde6fc5a85f02a787aa78d541341:0"}',0,'NEW_TRANSACTION',NULL,'baf1cc5449b233437e10bacab4ad9e9887cfde8a883361dea0e4c6d8b2991873'); -INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','4fdbd857b1abeccb983a90cb0de8075cf663391723496ef31bca8c5642dd9de7'); -INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'OPEN_ORDER','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','07f5316ee8e61d11c19f51d5aea18d26af92227cbebc7f87873941c096d3cf43'); -INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'TRANSACTION_PARSED','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','17faf60330016af847f7277523d64b71198f7b6abfb4cf99c151ea01c85d2b5f'); -INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"6ad5172a6dcaa6706d5a4f6fd8ada183e103b9faab58e42c1365613a26477490","messages_hash":"623ead14481f2c23d69aed1859f23de624c9b8076ec139480aaee298c5134648","transaction_count":1,"txlist_hash":"1c207ab28dd2c5d297f47d5ac366699523cd97ccfc8a3e348dbf6fe900c32b5d"}',0,'BLOCK_PARSED',NULL,'6ea0407ce1882f119af91125d1e2b97da60c2b362b3a7b0d9f2089a4b4bf1a55'); -INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a17bd8d82c62ee08795fdb5a8e2d35f85465e1c5767312edb96a6ab8d85aa2f5'); -INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23,"utxos_info":"a64251be6598696807b458ee6811a35eefdcd8170ab68e36c37d1c5b0bb84350:0"}',0,'NEW_TRANSACTION',NULL,'fa1bfc376be55ef0dca415e3c6ecac14da9e3f8606fe5c1d58cd3d1af2d1699c'); -INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','56b8ee9995f16399bc9d8bd00e5dfb207993dafb93620e2f29dd65a1232dd17a'); -INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23}',0,'BURN','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','65c49a8db05834392d2fa2648ea9db7d3f8930dc23a12bee7fe7a08631205ffe'); -INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c9361fea7f3dd2415969eb6ad7fe893381c9ca65ea391f2e47a966e342db3a90","messages_hash":"9e700f536526f3d8b732a6584ce850fa8450bd6c6709faad69f34acc77ad3776","transaction_count":1,"txlist_hash":"c0867554bd3d50cd8ca4bb6e2d055250fa0c3c46f47b5f03ce5022b7090e07d4"}',0,'BLOCK_PARSED',NULL,'d1ce65f683b83c60adf314c88ba525ffc9a10ae43d7756f43287f22fee0d2c62'); -INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6892899c0adb0f06d843a74484fd45b786321baca8c4b2fe6070ef8ac89c1c94'); -INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24,"utxos_info":"806ec51cd29841b7bb12b0cb41cf9678b3e3e26f9a95d5aeba5e0868330b8e60:0"}',0,'NEW_TRANSACTION',NULL,'b50c21edd3ba441283b5b9e40bd5f5a8ee9ca1e330d915bfc9a248523c1537eb'); -INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c"}',0,'BET_UPDATE',NULL,'dff861c9cb1a5fe3428002934a86e90d1aea6ce8b94324446e59935acf4ecd05'); -INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6be32e41f1ca6a2019711aa245dcd90f641caa758ee87c85424d189ea2dc089d'); -INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'588ce3b83f005fd8c5381024745d36de97136babcab409c26c139b757ba9168d'); -INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','3a5bfdc8aeda0761d550d4793e80d943ce0a6bfadfdb890018d86397df228d20'); -INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','93a7b6b752b375b8252681178437353b32881647a8a4733c493135f070817cdd'); -INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'SEND','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','1147cb214a7eabc6b7bec15eba485b8e257a1d5520ad2f7a31fecb960397ee5e'); -INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'TRANSACTION_PARSED','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','80d3019f61b537f6402915b753b7c73fc175a23d983d1b8f6a91139eabf6c30a'); -INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"f63680db66cf963aaaebf64130629790e7492b5ea9396434c2179a5eb8774412","messages_hash":"9155dc75056569d35fead5ca2325335d529dd3352a64706fa129aecd33c58dce","transaction_count":1,"txlist_hash":"6a3cc06342da18a8eae7180bd93af2cc3a6f7c51916a19265365814f52a58119"}',0,'BLOCK_PARSED',NULL,'6381c53f866998187730df7989107b47f0a61fd59dacaf1af7a44d00bd7b85e0'); -INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d89a10bfdb2fe57d393bd103ad9570326110a2abe86298832ae6eb245125294c'); -INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"d69ea243fcd5e525ae03af680d5610b654a9d2bad17782e196305aaa110a6ba9","messages_hash":"78864ce118a6b397e3e201f6a8bff45ac11133df639014347b69454996e5604a","transaction_count":0,"txlist_hash":"7e4a0076ce614d5b7bcb0a59c84e79d21702a3507ba88bc0d8ce9e644d7fe692"}',0,'BLOCK_PARSED',NULL,'294bfe4b2cba49253654fe08c06da82636e3e8c8c9f5cbe62031c33dc0815c2e'); -INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be20226cde568907cdfd3a77a8e0fb5c152389818b5b2306f8715833721c614e'); -INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"721906ed4cbd1524fafdc8e3ffef27d8b03e0c798bbcbe3eee7bc7f14afe4e81","messages_hash":"6affc572ab0583b1653f09c452ac6aadd1be130bf5c07f06cdbbafd9702a3627","transaction_count":0,"txlist_hash":"c1596eb8c172f2968ddd2ef70c1a8f125ab989c1a7bb012ab56f6c75cd96bb41"}',0,'BLOCK_PARSED',NULL,'8c59359fe2e7f40fb0491af6d24e42809d246c69e8a75fb4d1b89da952f531ba'); -INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'771005aa2b09a90e1e5fbb9557033bfd6d27ce6c52a8a463ee78122281088ac2'); -INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"27912da2afa797876030dd0e50c31aea462d54c7bfa4f89d2f14fdb7b80db6b0","messages_hash":"c51e667f584517b4c96b7a3f784a1d508f588d0f203f20914ffda390a9955710","transaction_count":0,"txlist_hash":"2d653751a75829265f2cfe2dd7bcc3a594be62492893d36642e3c8815d339fbd"}',0,'BLOCK_PARSED',NULL,'bb35cce6a9c5e5b4a4815e74f89ab7fa1c335221c5cff88d8b80076da2b1134c'); -INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9869b869e2121eea0947369e1213d98ef2580181f81dc7b786f650ef48d34333'); -INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"cc0734ecfd2bdbd2d04d236b853f60e324feaa9115fae33a8add961c4a5f9436","messages_hash":"827a7b7bfb702c7723f626adba352f625d232cbfb69069694c935c1c9c213427","transaction_count":0,"txlist_hash":"3d5c1eb8dafccfee04f7d91b2819d9f51a9fe8df4050c025c19c29ceb18b3575"}',0,'BLOCK_PARSED',NULL,'a2414ff5120024965c709c3aa0426f60cff620822a8f06d5f10240e20763c958'); -INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa4844a8b0d3104120c86594c934393df563a28f6fcf970a8e23eb3e67ec70c1'); -INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"d3f5fbbe85d5a81fef8735c73349f61a43122f4b6f3f7aa61215323a683ce3aa","messages_hash":"e28265acf72abd9e2e1640e135cbca8d4bd04aec2de959f7dfd7177d2dbe5df0","transaction_count":0,"txlist_hash":"e6600d6d90725ce81afdd7b00220f8df650f85dc3a308d2486fab88edaaa8981"}',0,'BLOCK_PARSED',NULL,'fbc7df30cda98187e304408f126fef60607fd0f6fa690adcc7e90a86070d2ebc'); -INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2695cd576b622cfc14ae614af18f59c990308f241a94a86d162d96a10f66d5ba'); -INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"74d08f0d1cad9f7102d0cfe70f50614c7ae7f4844ca6d02390031e1e96c2b418","messages_hash":"fbd9b3a5e935168cd77253901e2e487144e18db8a9edb9c079653b61e141f584","transaction_count":0,"txlist_hash":"341aa44dcd4967cc3356ca23c97111b1cf3ee128c944493a0ebc6458c4f119be"}',0,'BLOCK_PARSED',NULL,'e9f193506a9f196897e999c08435f6ce3db6bac318a055e046ca943b4fdea939'); -INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f11e8ff0842bce51fbc1b020fecda5958b49775980d953c552aa62f87930c48a'); -INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"753a1a8bb877851ae24dbc33884344f34ee18c6b0d70a4d909231448b943e8cd","messages_hash":"636beda8065dced60a15b93f698312b1205303e89e440054f47f30d3806cae64","transaction_count":0,"txlist_hash":"b9385290e5bd72f2a1a5d2cc889108a6da0aa888fdcf76170b166888c6301407"}',0,'BLOCK_PARSED',NULL,'b584972f89312f88e1e5660784d43740ff145f8a69ad1b4c885979949e89db3f'); -INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fac8c66c5aee7b69d99d9a0becc53ac4b11324f927aca223a87aea95d9babec'); -INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"f7c62d08a4efc854dea6f47249786d3d00778d97223dd84de1d0fd1eef3e2ee7","messages_hash":"0b089ba8e2c07f64e5275a19c72e23717c2f6615e41787e9fe484a3ad95ecd1f","transaction_count":0,"txlist_hash":"6c27a0cb80d8602b9ccd126f53bb69727d358353b4c1299434c3472b0469d85f"}',0,'BLOCK_PARSED',NULL,'35f06da986e46f25ba514ec7a1324df4ed45a77369b0f40d65c9e5f1b02b0e0b'); -INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d87b1d63c148edebde48ca09667bc5558c08db9096df0e182af11281b8334994'); -INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7"}',0,'ORDER_UPDATE',NULL,'8112087ed716927df15bf5adfcb3a867a4a884b90458c8a8eb7bfd61cb71b856'); -INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'beba383bc23f7a1b5e89ac9c8a384f3c64db819ea1ccb285c4a8e658534a0678'); -INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'ae72c1360791145838966f35d30135162b0d15320604d40e0a0b6e9ec00705f6'); -INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"833690f195e85b427b61890640fe8f0cc7419e0f4301b6f4738bab12be06dbb8","messages_hash":"0613fdf8179c40a496e175e4650066c352531c47db27800599c58aa367de8deb","transaction_count":0,"txlist_hash":"cb3ca17e5c792309fead54d49039ee0e00e7b17291868a3a2e86e09bb3dae80e"}',0,'BLOCK_PARSED',NULL,'a39452cfed1a203bf13caecb232d468430bbd71be3461d31ea2f1708870acc29'); -INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e441ffbbb3b03182c0f9ef2f60d300f59ee39efa92b55e43c0addd6c935d015e'); -INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"a1e118474a6f70b8f700a67b43ee0272c4609d3309603b5be6434ca587eaa704","messages_hash":"2f23e44306cdf377f80b08b032eae1a1b4784abed44d12a2ac67a7a585565bb9","transaction_count":0,"txlist_hash":"2f097bb1b1dff2b4266dcb3b46d29255401e23a2fcfb75f28e9f7184733e14bc"}',0,'BLOCK_PARSED',NULL,'a5296f0aab6e148307c5d8efaf68f791229a70454df459436f1e5f88602e3075'); -INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'462d7d7c95110cf62332378d09b3fef62f3d1a9bfb2d6a5c6302831d051fcb6f'); -INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"3b6427f61fb59ffd674ed8e0af75687fc4ccf8b462011727d4dc4bdf4c794775","messages_hash":"dec5e3a86f2072ce434785271240c70984fcaba5b19f7bc33755d1700f81fafe","transaction_count":0,"txlist_hash":"be05766d9a1c70d8907d523979a313ccec8cf2900335fd91800b4b90da3bee12"}',0,'BLOCK_PARSED',NULL,'81968e93dc050bc6fb405aa391a048112c16300e8f3f0cdbe22b001c3a112477'); -INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a69b81934106f4291f2abfd1d124eb3d604482271b41139ee35b1f25b4e50bef'); -INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"d065384f739c52a718f656717f88eb2fecc10d8567a93ccf823434c003d28c55","messages_hash":"05d70ee9655f79e42a6afe31be67c186c88cacb58a11c0ff890b1456bef081e3","transaction_count":0,"txlist_hash":"41cb2236ce676fd45ae98593c9cac6291fa95479ec07a5af615ccb5fbbeab760"}',0,'BLOCK_PARSED',NULL,'4ee17bfa29c7fb5b45b12d6b5d7de6458684ef24e6337a7fc36caec2d2195c47'); -INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5db5cab22cb8fbb376ecf8eb533dec304e9405a51349596cd934360985b2675'); -INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"22cddc8dbfcbaf4b851fa5379c740a96294acc3d772dcf6d684881bef18d7fbf","messages_hash":"f18df71f40fed5ae0d51f0c9e86730bec7481f5f1d42edab3b43ac8432ff21bd","transaction_count":0,"txlist_hash":"0beb88a3d4adbf913601c2d5144599cecfd48886ca51f995aecfeb50c56aab1c"}',0,'BLOCK_PARSED',NULL,'34a9a04091fb5b2245f54d1c541b62231ff3e5ba7e38a9645a1656b6069cdb23'); -INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a09079bbe3f8e38444b854c91fb56d39c9b3b459213c2eb90135218eabec0980'); -INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"93172c51a9c4cb5c33937a199a32ad3c13a40a60f4c194a1187e2c59a15c0ccc","messages_hash":"78e67095cf665c1de0b2af21f2165790b1417274feecd81456347f6cfb6c9ab6","transaction_count":0,"txlist_hash":"ea276540d3637a9165f482c48e414467e3a78c2c25c6a70bbed0c38f7205920e"}',0,'BLOCK_PARSED',NULL,'ac44a1fd465e15b46fd727ecd58d51dfaf36fd67bc17034b3f914cd978b14da7'); -INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7685564a2c9009780f55596b42fdd7492c1c7f8ffdfb8b1e4e12aa9d1f2c4404'); -INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"7a167a13f7e576c7e066035dbe2a2513659f1386c095a9e63afa494c043b7def","messages_hash":"c039524f327b7a85c87da066d6c888e7db7320268025a7c4848205af1420740f","transaction_count":0,"txlist_hash":"15ef5d6175a7ce1937554ed6c2b10be6555aa14f7179245b7b140d1a620095fc"}',0,'BLOCK_PARSED',NULL,'ed66a03a87607142f73d729dd6e4eaf871095dd125fba0177c5c618614f0ce98'); -INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'744ad686516ce58d5e6b160a2dec408d97554b50a607a9e22b6b7e0188671082'); -INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"4733d9ada3d4f60bc09f0a6eba3fdcdcd8e8b18adfd38c7bf06372259e2d38f3","messages_hash":"a92cd8e4412d0da2a8c8f8004614b64b31a9393e1069d2a2bdab3838e176e76c","transaction_count":0,"txlist_hash":"4ac5fe346b8577626d58c9442c95fccd4955506ac712ee3f27b5df6b7ec1d0df"}',0,'BLOCK_PARSED',NULL,'6f2631cffcca29a32cda486c27050a1e952b5fb41e0a4a84befca336e4da57c8'); -INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'debdd12fca785c1037935e75385400b7c7f5235627483e8cfdff9a5ce44eec20'); -INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b8021bbe3744e58cedfc3dd99220fce48f4e56a8fe8256d7894dd55c7312a76d","messages_hash":"f90e6dfbc029264f89c00090f608e58489bb9e6823efb114b2872114a62af866","transaction_count":0,"txlist_hash":"acbb3114dc5c7599eabdaec4833952c3b6de20dde616233f3945151977d5be16"}',0,'BLOCK_PARSED',NULL,'83479527585f6231c56ded72e93eaaa504dfc33edcc9c77625b165ca4b45d2b0'); -INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3eeb20810460c53f32f15adb66c95666fff8aeb89cd17f968170cee24a3a6ea'); -INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"017b79a5fb34785dd39964a61a5bde69d676f75ee085c27bbc9e3381983c2dab","messages_hash":"6ef27739cbb44fbec1f834c103cf6a7fdcf7a810a99d231ce6f7e2d1a308255f","transaction_count":0,"txlist_hash":"6cbdfb2d6b3677c91097b1e80a32dafb0172725fabff370adcf444321ee48509"}',0,'BLOCK_PARSED',NULL,'dd90eb7a036392db94e68e2370ff87acc2824253ab93168576030c5ea9112337'); -INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76016efd11c761462e8e676c92a926584c9b1bbe5626a1e5e884d93ae0f302f4'); -INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"cf5389c037b6c619025bf95d9718fb5548cd67978c3ebf26f76029873828162e","messages_hash":"714689f948fd44867292f758edc7deb1d760d0436623b44a621f75bf4bca39d4","transaction_count":0,"txlist_hash":"a091876d90aaf1dd5b0d53403a3a9b5788710bf3d0c1996184a91961a1f24aa0"}',0,'BLOCK_PARSED',NULL,'b44d0deb35d9380ab87b1e2e4ee64d08a0ca7c8bc5d7cc380ac5f2b6079e2df6'); -INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8fdb1c6194415be609d237de75afdfbc93ed28646384143b8018cf8d2725ea1'); -INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"df116ea1fcf5f968644dcc97c1149f0ef6061b188fd56c27152543256ce79009","messages_hash":"603e460fd6b1161f30ba21885046af008af9b605159052f0e98e8825519ba2e7","transaction_count":0,"txlist_hash":"eafb7d2cbbb2d1afe4a3eb65ca6bc7be653d7d824238264082d2c5e382757e54"}',0,'BLOCK_PARSED',NULL,'b29937d0dcb87d02f88328818c6a597dfa12d6ad9d28b04e5fbc755466cb0a5a'); -INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff780a65ca67144aceb8114b723fcffdc641844788b297fec4bb542cdcc0ab97'); -INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"c12cfaa984bfb34e781ac93848a87cdc0318c45a1cd9f02d31f5c3a4abe8d918","messages_hash":"57fd0e4696e43a7d7bb8fa26f243319f1e82833ff1e1e3ef61761f4a1d6c1864","transaction_count":0,"txlist_hash":"61cb811c578f90cd6cc9f6963ff80c280f6ad0edb53fe53dd3075a8818404fe8"}',0,'BLOCK_PARSED',NULL,'2b4cba729855959af33c1388d8074b1303f23a3a7ae0cac3bb0e48b24664d392'); -INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe915a73cf36f2f623d469bff3e2bac469d2eac33f7fef4909fa22b56da940b8'); -INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"999a9ed2673de2db7637e22eb8a1876e0c794e90f09cdd76d1442e56ae12b1c8","messages_hash":"df129d2913a58f5186cd0b2b5b7f5d7769698ce730314dd80db18f10976381db","transaction_count":0,"txlist_hash":"ce9e3f0524576a630ed0154cf69c7798065a001e6752c4f369c30b06aebbe378"}',0,'BLOCK_PARSED',NULL,'b8d744a099b4bf12c824d3d9e46b867b076da82d96934131be933e4659b227de'); -INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b0e8a09ae4b563acae98f45a81a7d5c181c7de25f5a080a42549dcbff13f967'); -INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"240c9a2f6dc918ed868abfb5de6838d7a17f02263fdda0ccd3c7481c09e155d1","messages_hash":"4e07f32943f702131817b662d2c3ffe3cd796368ef4f73e48439c9eb02939a4e","transaction_count":0,"txlist_hash":"4f83f9bc531841759d1071a92ccda5d898af693fc88db0de16b2d2ca09630d59"}',0,'BLOCK_PARSED',NULL,'4548e442dafb0232418ce16ab790b79454ccab558aae52e3e5b07f0a26043ab7'); -INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf3a23fd9ace01b188c5133bba6c755ff008d5bebda1047879b802e84f5543e4'); -INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"79836105e355e25afd709d15632e2c0d1ab53ab251cd3750ffee9fea4a2605b8","messages_hash":"05fb8afd82b430088303ec8ad4e865c81b504b1443e524b67af7e09a83f9c086","transaction_count":0,"txlist_hash":"b17c5d4fc0eef05c315095d265b324a0ea7dee28145d7b4e251a944b4b6a16fb"}',0,'BLOCK_PARSED',NULL,'157a0870d933039755f1a711640ac133c3de144f66e9399ac3aba99d19c33624'); -INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58ed692c4041251c89076e96500b6595e73eb16f5b9774330d38d0afac12e0ca'); -INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"6bf0789392e97311c4283d9f748b37effe7b0d1678076e30ce5725eff345a8c5","messages_hash":"96ae5e483fa7eb49f9d1750aa0c19a550e24f9c157be12641d6ce9ffe7fc98a3","transaction_count":0,"txlist_hash":"f9f7ec8bdc9301d4ea41a099d04f84631badad709fdbdf43582327f183102590"}',0,'BLOCK_PARSED',NULL,'f8528c655a4a4d2f26b7c0b2c1ac74ded1df4ba45cb9a5c7ae3e6aa419f7f321'); -INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec1dea8ad5dd0905cce2a6fa010485f8bb8078152f1930f2535ab7609f080589'); -INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"1842c46a03800f5e191cb8d641aead6bc80e6d25c2ec826f3a5df426059cc1cb","messages_hash":"d08178883b6f4531d41d2e3b87bf8fc6ec60b894b457220f02c178e2f0e9ad53","transaction_count":0,"txlist_hash":"458e51569acd6ef757e0b36ab3f558e76f239ea3bfbf1b0ce7824f39ec5ac23b"}',0,'BLOCK_PARSED',NULL,'3fc0bac534eaa99d48d9ab3e66b152b0e6ef4ddcf4f48799e2da4a0c5ca7c95a'); -INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'749641aecc5db096b232614a8f7f720a83e18a2220f84b1857edcb80f708e323'); -INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"d424b02109320491b2d32388869d6468ab1fca26d4bf72374cfef729efad866d","messages_hash":"9c8ff110093c5f2dac33bfc29bff548774965b5c2ac9dd3db577d54d9ac8b877","transaction_count":0,"txlist_hash":"53e0972193c4f689d3a7216f22607a9b0cb7b8a9f43f144469bfbf25f59edb09"}',0,'BLOCK_PARSED',NULL,'815240bff1fae8db18915778418d278f7639ac86eefaba6e371340ee96678f94'); -INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6f1a33297712bfc2bcf5170043a6b4f7df5c16e6f0b3840d7694077aab5165b'); -INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"d1db4181403136b41168ab7786831f2fadfc418a05b7477246ab097bab531859","messages_hash":"6f8f9e6db4aec069909f11ab4e236402bf83c5fcacd2d904e7efc22a67dea365","transaction_count":0,"txlist_hash":"89bbd06ca16ed2098ac6b7accd2296b4e0a2d8236dbf1cc14137e90ebad364e3"}',0,'BLOCK_PARSED',NULL,'de2227fd06a3d0c92d09149a5ce156c365a59d10f3df839b40713f1d078fe2be'); -INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55c2970a70c8d1d61341bc8f5345f198c54cea39e3235f0b659ba919d99b55cb'); -INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"97fdb6b2c8e636d23109a67af55ab4bb30955a84073274de3fdc788074dc1b6b","messages_hash":"1d3bf43cf1894650df05b52dbfefcee4890ec800b128c70a86e8ffdc142231f1","transaction_count":0,"txlist_hash":"8b8739b799483eb556e0e32f92cc092c349bb2bcb87044e88e762d55d6f1b033"}',0,'BLOCK_PARSED',NULL,'f110964a0abbc3deffc818c7dd16b7603044ef5c733d8ba3e795fcca6ba9fb11'); -INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'747a808a2f482e4d441019e7b0cd7c55f1b7082408f601b28fbd99e9781943b3'); -INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"0506be4f04a22058504406210af3f1475dbf6d6834c1c1b7f6ac0fe013b47363","messages_hash":"bfd798abe2d6a96c3a49465159876cc1f1f24ac4726ee865e925b1d8a3c717fc","transaction_count":0,"txlist_hash":"05673a7bf2fc7e9a5daf3732cb03bcf43712df43ef7ecf1bfe89d18f54726b6b"}',0,'BLOCK_PARSED',NULL,'fc0a6937f71b39713877201aecc9215fd0d905dd118e9d979cd5e4a3e4592500'); -INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'116f9a17d1127ec0c4b28992fd7f411be7bc7daad76d34ac07bb288f2e5fd19e'); -INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"3dc7894c1368c9ef5d32a95fdc292e7de8237b73b61365a25b9d0da95eedc2e6","messages_hash":"1c61644d099e237a4f81be83ffa963fe9d6035f475fdc848c98564e2f54851b5","transaction_count":0,"txlist_hash":"4651aab35442e5ec1d79ba6422ca0c2b0df02369ee49b33efe1ef54e2ebc7080"}',0,'BLOCK_PARSED',NULL,'4ebbea7556fda914f19ec2f0057130e2dee1b61946959ace77c4a4a8980d7dea'); -INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'524bf0ab4602b6a80c6319bc4358ad08ab1eca3a29961aee9ac944d4135f2d1b'); -INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"a9ef2c8bf3a88c326d2bdd722c3d82ed4f4c10b65620b136d4b893ed93174795","messages_hash":"a060cf630cb9ea9d3323991699ef1d3729615d3c5c96d88cd762dee0fd536702","transaction_count":0,"txlist_hash":"d826fea28c0f5e82a6fbefae4d6885a0a49a3180d3c16d6eeb4faff9f57d4d89"}',0,'BLOCK_PARSED',NULL,'cf55873c1068aaed0b8a8beff085668253c75a9e878494dd6f8de8acb16407d1'); -INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cbeda4821095696640b37c5bcc27e37ace49c6a79583c377eb7962899350112'); -INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"13b76edecb04a9733107d5c21420ee20424fd463dcde2ea98424ad99ed3383f0","messages_hash":"6a9de88b55f133208cb74555bc17202b2e369ae05317ac44b9609c6be277b894","transaction_count":0,"txlist_hash":"fe620dd60bf5b6f3c610495735deca47cdbfcbb510975ebba2f68c7df6d32a15"}',0,'BLOCK_PARSED',NULL,'ca5595407073ddad60cc7cb2235efcc6e4746ffd26bbffba08bbc95979daca9e'); -INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d51c4d116d5fe238b9c13499db0be3b911887244a8becb605e3bcea970ef6b56'); -INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"41c8a47d7bc4e73aa2f09685acb9fac052c5c55764ec3a8250abbbcde40dbe90","messages_hash":"0ebef95e7af00e825fed2b9ec7bfac3b75e2a4d6d4e8d2fcd1be32466e400314","transaction_count":0,"txlist_hash":"553ea196d7a1045f71dc6261cbfe4b84c78b7dc37de89b8865f4d385cbb42863"}',0,'BLOCK_PARSED',NULL,'0b8a52e916b27743d75512ecec59af6ced0d4a8bd45c4b2c1ae4eb2e63436ef1'); -INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76f85a78102cbaf31ff9d4c65b31287ff12a2e117d44b736c5a7daa1745c886e'); -INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"0b8ec211d258206ab8c318c079d9deb33d444a7086d5a05aaba97abc0be137df","messages_hash":"81b77dc97c9febc824bc9d8ab08c75d04ced65707c217066634dba9d655a79c2","transaction_count":0,"txlist_hash":"c3fd7824c9b8413f24feb96ca676285447a980d684f730d10b81c06a440fab7a"}',0,'BLOCK_PARSED',NULL,'693b624fcce7150634aeb79a7e78cb38bb67ab9acce1cf992f6f3aa2643c525e'); -INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb2fc66100c9d4b3414cde0ce4928ea0b4aab054f2109b7ff6e1e69eb56ed305'); -INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"f5c2686408577854893d11b02f52d8ea917e90777dddf67c98aabb36a3339b6f","messages_hash":"1517b49569ad5aaf4b3ada4f6b5d7c2f40be41ea51d477d6f705363ec22cc8b1","transaction_count":0,"txlist_hash":"3f73e1d36c82dfc8ee58f83502643d962ba6558cbf0fb46d83fea966b5cdfc59"}',0,'BLOCK_PARSED',NULL,'f492ee4c97d6a87e0ac1dc8781030cb53d6df65e7807184bd636e7a34960f4ea'); -INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'921e16ebcf11497a14d94994704de3e85b721c9b47a0c6ae5c4c19d30496791a'); -INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b80d446905550494f56f4f8240b501d593b0d0e63b5d98a09e180b1a0a68e3b1","messages_hash":"fbacb5df11579446cfe22910ca43521a0ba4f20c0ef4f50529c54718ec117c7e","transaction_count":0,"txlist_hash":"f1995db5beea80756d509ddf79d3467bb14ae96b0d151175499030505d1f648e"}',0,'BLOCK_PARSED',NULL,'9400e3e5e0b8c0b498e0c4af329a773e513f3b55eb25fd4df3a5f64824f8f0a1'); -INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dafaf554f697fb43692bae83acc98f83289d7d81ed3fb8f0a47cabf427f3a812'); -INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"41b30d23becc727151698b29a1bb733e45ae5086683c5256d073a6f817baaf49","messages_hash":"dd05dc53bf40ea738bc520430a6deb25cbb7d5771d077d8e3a09cbea4446800f","transaction_count":0,"txlist_hash":"de6a4e6bbd49de2001ce26387040970beeb7062b4e16911757204d2745f6c409"}',0,'BLOCK_PARSED',NULL,'9d487e703f59a3acbb60cbde78a1cbc7a8d7ede9fe6eaee6e5c1acd79cdc6e3e'); -INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a59e375c82290d91032193a6a430e3340a8047ab48e7ab41569f472a9105cd60'); -INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"f873f47e89715e965c98e92616339f8ff4200f6b8ef5cf747e8de2d101cbde02","messages_hash":"0cacb3f54ca81f783e0ab0859b202c4addb10544083e7709a7cb3454ed8e8efc","transaction_count":0,"txlist_hash":"f2954d07588b07ffc063170f43afbb12548fe61584575a979526d28dd631edaa"}',0,'BLOCK_PARSED',NULL,'ad9cdc58621b59c170d1ebec6e1586c06e392379c770b3d9308fdd837c0d0a94'); -INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22223d43e6d97b647e2bb02d7b86284ff3939958f7ced987dee9c2bae3af974e'); -INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"14ce21ebfe6a00eccd7bf1aac2d5cf122441d2ebe8c0f5fd6dd14a95b5a209b3","messages_hash":"5e6809578b7600188094c773afb02a8079d09f7be6dee3b8214839142ee65afe","transaction_count":0,"txlist_hash":"96b5675e5c3a3b66d7e2bd3424316119cf795c17bbbf2c8677b66872e4659574"}',0,'BLOCK_PARSED',NULL,'bb5c26b97b2553516b49a83acbdad6124b69fb18009f7f38be059d526efa414c'); -INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f4e32163e5c1e33601a0b984eb882d45d6a52010392c98f332eaccdb6bb1c03'); -INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"adb05bac5e7f1e6a1679d5c51f252dc877ebd99c2b73a56df69a9c848cef98a7","messages_hash":"cd6aee357ca42dba8ff4250ed8bd069e4d0855cc6ea9abeba4fb07e46917ca8e","transaction_count":0,"txlist_hash":"243e437b3c00d8106e8c9c2cb08d22376e8a16bd3b62a8b62b86128ddd6d139e"}',0,'BLOCK_PARSED',NULL,'2e80cdca057cbd7abc3d750944ee59e0dd36bc73182480b6318efa92f1bacf8d'); -INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab483195ba5fd411566f315f10cdc85b391ef75efea43493c08ce320b2a96019'); -INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9065476b6b2cfb122888e036cea71d36f3d5f7d6c72451c63d770b40a4560fac","messages_hash":"8c59a14fd3231936199eba5628f8b3ef6ff898ec1dae67431ee574fff8ab6db7","transaction_count":0,"txlist_hash":"4af47a042289756821ffb0b14aba38fcc8c972fd254220d3991b05642df641e6"}',0,'BLOCK_PARSED',NULL,'b712ad56c5c6d505de95d50bc39793ec24c1528329c53bed837c0ab4f27eff51'); -INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59357f19c8482dfb7de91da284a26d538568e359ced687ab005c9c946f2de24'); -INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"7d5d369827ec0cd44743ed9a519d45003789ff8dc2e511191d2726e1482f58d2","messages_hash":"5b94fbbbd4a8629cf7a25bbf42ab82b7860eecdb05cc8c7d3b6c3c09ec8b51fb","transaction_count":0,"txlist_hash":"4d61dab0197a7a3f452f3751a92cb1f5378106a13be0351f0f8942d011da097d"}',0,'BLOCK_PARSED',NULL,'45eb8ea178fffc707a1f28b7b1549637bd70c51e29190aae9432f333f77872c0'); -INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cdc02af3449aa2c34b93516a7b4ee73d36134e8b6d1f423557dc4c0ce9aa29f'); -INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"301b22a9338d5dd39bbebf6bf518ac53bbb8e1cf7469322484cbcee2fee666ef","messages_hash":"4f3d0952941025cf22e983d89437b3c1edcb7da0bd3c919740235b095454178f","transaction_count":0,"txlist_hash":"ae0cf0361293deb7b8903f20aca2410197db694ea3aff0aec3b635690168f5a5"}',0,'BLOCK_PARSED',NULL,'8ce54cecf5227072e73e6d80a034072200c8ebbe39e84fb3baef497a10654953'); -INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f142ccb82d7007dd0e2f21043d5145e965aff97daf922ed32f409ff04289eba'); -INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"fc281736e1dfe5a89a9a3dd098565c645904a4ad1626dd70ac8e9bc447dfb8b8","messages_hash":"8c23ac2fd5238c72ee1ff3cc59553beafa800332aa3c2f839850f2f19d1fb742","transaction_count":0,"txlist_hash":"460295c507a33a24231d1f4c760e5987b54f29d1e17bc97959db2a712f0339bf"}',0,'BLOCK_PARSED',NULL,'adde1fcee590a75cba26a4be28e67d6fa767da3441a7264819c0d0b4a659c6e0'); -INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af156fc4987f0b625c4107d1606a89ddfaf01b2581857b486cb5114489adf5b'); -INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"b0249a0dfd008a4554adc24085d3c5f44278403cbccb44ba27ee354b23c5627b","messages_hash":"a469ec5f0bac890b8983e2c577e6f70aebea60fbf60110b3b9a0499ba143a31c","transaction_count":0,"txlist_hash":"d07500b12517493106b918ff5b6c96c371bc10bb3699eb279647539ea7ab1fd5"}',0,'BLOCK_PARSED',NULL,'409e368ecc6e9e0ec22d59380664279c8c263cc0921c42a9aaadb32feaf7719b'); -INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'128f7ec460f099e665c6c0f79a336d65222c65861f402ea0bc936ae1b5f65bc6'); -INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"d34051879c8db679ac5c49e50edf2085d0ce88dfc1adb971e7b097c0177854c2","messages_hash":"f64c00b3803d4ed0897b2019ffc9a6ae6d6ff5ca900f901ff97bef9d32936c70","transaction_count":0,"txlist_hash":"874e494499820bcc0ba41ac5cd1bd153ac1772f730c9b842b77b289adbb2c2f5"}',0,'BLOCK_PARSED',NULL,'decf342626bf556ae2208564253fde54cfd3833abd9a7200a52759a1ab77e6f1'); -INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7dc637fd3022e4f24d35a778acba6163ac4f4fe623acb20b35540371e5d9266'); -INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"0186c5312af19576cc628a85014ce7c33892dc23b5352c8ff5a0f230adfe263b","messages_hash":"62bb2badcd7c376dd59f2bb55f1e5c439b32971cd54bb6116678251fe17a94c8","transaction_count":0,"txlist_hash":"01342c18caeaea6b35f2d815b9aeffbd92228f6ad285103faa13cb25171fdfc6"}',0,'BLOCK_PARSED',NULL,'137d690f0d70e8c6fd5b82e941ec1e77fd030cfd1024c02f6640ef5b2286f0c3'); -INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba3474b86724f899ada91b470699f5b5ff5a8a7a7ee34f7c886d385d565deec9'); -INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"5376530512d61c3967f21cf01418d317ed072976119b8583fefaf3991b93d8b2","messages_hash":"97df614eaef187b9cac1010ae8b47cf9e9a9b3071d2b5eb4ac07d4d5a2303255","transaction_count":0,"txlist_hash":"72a7d63ad0b15a401210b197da00ca549b6e8c80d8eda1650cf9017bcbc92532"}',0,'BLOCK_PARSED',NULL,'b3fc58e7a8ef5f53e64eb12cf769d4dfd1aac174a3b7435c7a9eb181402afadb'); -INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'469ae64bf0867eb72447fc858467dabf7049b7b93a31c56d2a2e8a329e4d53c9'); -INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d15fe704fe5de58e9203ff5ded50218a1a01609b65a1a259aec510b8b9e6d690","messages_hash":"fc69b2a194e31e2c1bebc2f45c01768c1cb8020230be272b657450a4d0c3d185","transaction_count":0,"txlist_hash":"924753a39229b5005b684c4b2dd111b6233347b89179f2fd2732d256b960ace0"}',0,'BLOCK_PARSED',NULL,'a911711caed5bb90dc2e089cad6fe19d98428208dfad114b46c6d33c099b6d0f'); -INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd3daeaadf0d33634a00023a444204189aacac138c5a2722e253788650824873'); -INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"61015667044d0dddac3bdb16db67faa6ebcb71758101bfad898fca8ed183e7c3","messages_hash":"be820504eced707b7dc61f3725fd36d05b6264e89b1d465e8eec9e168fa81146","transaction_count":0,"txlist_hash":"298ed692f21afcee61b06fd853cf07e5707dbd63a05f0caff6b6a177edc3b613"}',0,'BLOCK_PARSED',NULL,'57e3632eea9ec1a81f1da6fd778a4ecf50c99a1adfe2c299d8fb6862ca8df927'); -INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bb50d31522019000c7cdc399772f6e5fb7efd3574f9985ff2b3ba2b59ad23ac'); -INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"5dd06f32075c46b6e573d73f12c1c31cf82cac5d1588bbdf302b8fe95c4b948b","messages_hash":"810e52710c97026f8cb61ee50f1368103e4df21636b9aa432397bdcc00b4bfa9","transaction_count":0,"txlist_hash":"528e4b6aee88202f84f9f2b56611d0aba2336d925b8d8fe47039504e6eea1ebc"}',0,'BLOCK_PARSED',NULL,'d72ef8edbb094b2df661912097dd0d3dc7fd4b8d6707b0fb42e73edb84cee10b'); -INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33c7542ce69e9aa3dc915d712ef0d1d46c627993d7c4419bacb54f53d17a883d'); -INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"8e1782c2f35a07fcc4c57b34b2226b70cc4c7af2761386f38fc8fd74d53d5e60","messages_hash":"ae25ca0277fc33f75f17767762036f55b49f6722743c7e4ecbfe72e09bc702e5","transaction_count":0,"txlist_hash":"76682f0ffbc6b86d16fbcec967a7562f6f12558c12aa3d9abd8779f51cc870ab"}',0,'BLOCK_PARSED',NULL,'b759e266b98531f218a657dc3eb0358c7d2286427bb2cb5560cc4fd8eb479b41'); -INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'474af56a571cac940479b6ab165cbefb447ea2dc22b201816327608ff348471d'); -INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"6469ff80c3890d274817d30602f33d5d4b0a7c0a9e3b85100d21d7b38d894efb","messages_hash":"52e35a802a0df97ab70b4e1f2777aeadf40db5e127637964dc433641d0deb52d","transaction_count":0,"txlist_hash":"187e9ae8428d46b7f8c8d652ab31dcf7c86a574cc781714a71784857dc0d1365"}',0,'BLOCK_PARSED',NULL,'4b8ee9d58727307cf60b569a8c9370153ba839f515cffcddeaa12bf7501d498e'); -INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c253a267f23c519166f54f60cceddbb150cd8f26fabe04e4211671242746579a'); -INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"3ca73c2bf37c694281938a0599335633dccf0284a027f5f3b8e17a9e68cbcdf0","messages_hash":"b84542bf35868e749c26374c6d49188f71646950df4c5e148b2794b7e12fc43b","transaction_count":0,"txlist_hash":"f7830250755fc0566ee5162a06e7308b51c9c0a7a951752be6cff224806a90fa"}',0,'BLOCK_PARSED',NULL,'34c03d90ea8df10593393d498e6ab22348ec85721abefc363f452fac4710f074'); -INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ff122f1043eb359df2ea5bfeb49b838efaf49f9552882c1148cd6cd0e51acca'); -INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ae4a36e1ce7d5e11f059301684573cddce85b70ba69188a116e0611ceba5c140","messages_hash":"cf1e6d2f8230e4b520967669c5ecb25097cea49050928d9d43fd75e5df7d327f","transaction_count":0,"txlist_hash":"8d3b4ed30546c5f19f5522a0f57a86c29159ce27bf9e1e183a5ecffd9fbae8a2"}',0,'BLOCK_PARSED',NULL,'99d8ae204bb612231b56af8f5878085f029fb1ed5875838836abf73c718901aa'); -INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827c84a152c74ad40b348ca58fa7e84b1df68bc8b63081394cb5cecad150d229'); -INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c2c0b96c64f1ed555c8553da976e0fcc3a5ef403819ceac49cf22b476281ced1","messages_hash":"5cf30a3ceed0d709cb0b5c39eb5028531a9d80bfbd9cb5d7ea17581c3c069882","transaction_count":0,"txlist_hash":"d9ecf83f3f9f40246bee151938855fce34e0f9c636a5c9c2c80c896eb59287b9"}',0,'BLOCK_PARSED',NULL,'45920cf09fe37c117b64dae946f357cba9e9c3e41e051bd28358856d220a932c'); -INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da2414121ffb69699393057d0aec072a970de0befcf807e225803fab618e3ad2'); -INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"88d1b09f8141b90b44740e4618422298f8a64f2b3d11230c6b04084ef8d11b2c","messages_hash":"4482a13c9bea52d65ee94adfb69aac0bee89623b4520913934a7c9c6a5f3e1de","transaction_count":0,"txlist_hash":"49e2f64485ac3ef523a079732bce9b2197384e2abfb3a4ad9340bca5a7179e31"}',0,'BLOCK_PARSED',NULL,'ee3eaa2abc3b754d4565e9867ccdfe7c09f0f7e4cd311eafe0ea03c2c5b30081'); -INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c09ecef31f3073feb9e750b6dbda118228ecd5bf5ff0e3fc1357185b6cb5003c'); -INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"dab22ae7a9216033777136cbbac87a3597cf6478a2fd008260caab3cad0cde3f","messages_hash":"51101fc829c2b78e2d0593dc5773c73fb7dabaf514fcd7dee977cb08c9421b34","transaction_count":0,"txlist_hash":"5406c6e3c63633910da82fc039c525dbeeb1aa818dc450a9d34d43084eef680f"}',0,'BLOCK_PARSED',NULL,'bf7a4dee780ae3bf21d5d8639745b05cb8d6ba17324355557a6112da0356b36f'); -INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20c023dbbbde1afe7a67dae36e01805975823bfdcf5016c4894f613c59977e3f'); -INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"a185e60dc97d19a211b0dfaa3f3da154956499b4af146751bf1d776fc68c15b8","messages_hash":"9b392f76b8224d5eec7db732a198ee87b3260852f8baba95185b7ddb67a39a92","transaction_count":0,"txlist_hash":"76e009b37822fc739a1e4abccf9f908a5fcdbed7fac540a719efbff8ebc694b7"}',0,'BLOCK_PARSED',NULL,'bddd278a474199241fe7e9bc203a76358f6f407150c3e92781f8e42b982c62f9'); -INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bd0ca305a6ec36673f0e92a7654a3c493a94d8d96f2d8a41b5fff91280537b0'); -INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"622c574321be176c535fde918f319e10cfacaab383978be51406334303d14a8d","messages_hash":"fe483b13911d5128e3cdf7fbf65c7d7b33e88ce236f61e8c371334188a0ee673","transaction_count":0,"txlist_hash":"f3a3c37d89eb008f2194267a1eb5a7a52e9443f8b1f5fe51267d93a57eee27c7"}',0,'BLOCK_PARSED',NULL,'6ddc4ff391c2f78edcc73c6584893ae9cb40d7549216fc78635922da0e609323'); -INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0b17598239beee4569118518c593fdbfa1d7e549d043c7a5e2d169bf6376513'); -INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"5556084b92f51175d4de4097fcd820a3c367c2f0630d3a20081296e892462d84","messages_hash":"9d62620e8e0b2ebb2846ad244ea34458a8ef8031469188571dfeba769a3a5da7","transaction_count":0,"txlist_hash":"f284f757d004154b6ab9b9ee9d18281e6f8dd51f25f3f1fc7cc58450e0ba5f17"}',0,'BLOCK_PARSED',NULL,'a819c1cdfb89edbc8c23460255785ee5caa8069f49e1b0e710a8535ef9aff77e'); -INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd4e18635599072e7311026c1e4d274304ffa5f371be8237abb709d523478482'); -INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"fc9dd8ef92fc7d47b187a75bd16e9698d61fa9ce6b4da7bba75982f59b0fbbc5","messages_hash":"e36b2420ada93acbebb22a2b3d4fb8324af81f862a4f3bee9c16976ea9804c39","transaction_count":0,"txlist_hash":"e5f9da1d98725423a240687ba2985b42f8acb274ba0122b4e31e25c57619845f"}',0,'BLOCK_PARSED',NULL,'257c124f9fd3d943862aa9e36bffdbec9333ce63ea958a8bb7613b45b1eca331'); -INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84c8ab3d20b55f7fe929695e3665a724e8bd99036adc1912e599a3a1f19e0e7c'); -INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"21f7329fa27373fba176043db9081b0d9f95f75421e5adce87177a3edffcedc0","messages_hash":"b5f798a239f4152608d82265d035add67b2b8bc5a593024a87f3173d7ffc6007","transaction_count":0,"txlist_hash":"7935ee6c215a123367ddfae34507170148723d08f1963aad7e47b68520fa4e70"}',0,'BLOCK_PARSED',NULL,'f9bd0cf34e50f47da281236091930a9a01e65d1e3d3c43c88fbfa4d41b05f1ab'); -INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe9d84ef5d109bb7d138c271c6205efb91d8b79d6d2392122e79493198860470'); -INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"19164a10a0602df57d1add2e3a31ad4eef9d3ef9e53e70174b44aa91de2d6296","messages_hash":"83f30b14f9a0153ad52089488c36a948017b2cd2abab7f2502b2c8a7f1e159dd","transaction_count":0,"txlist_hash":"d35a417416c712908cdfbeda76e261a55c605ff8091605a79d4d4fc986ae76cd"}',0,'BLOCK_PARSED',NULL,'73d14cf178c769464cc3d3a34f27992e6bf0e5a2a706f1911fc59a296a16b1c6'); -INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d630304f13d8589aba86af1ed405ddb6f59e819dc5b15c8816e42229284982'); -INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"87f1c713c5f2cd84fab28b996008900f86bf9eaad25ceedac1507348a949be7c","messages_hash":"3a95521b8d9fe32cf6061c904fae948e3a4ebd1a18d734d43fb944023ab92e4d","transaction_count":0,"txlist_hash":"44c73622e27c362abf0460a5e0d7b836091523b763b6183cb9815cee30d66bef"}',0,'BLOCK_PARSED',NULL,'d74f908e688dbccd2fbdfdb8e27745adc8817058413a36aa58708998667a0cef'); -INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d90f4dee03cab575b41662f826f8a06f9582d1ac240c5f25f92f8f7ec1bdd8fd'); -INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"75264a6a628d669a60b4a8ca7e24b6b5ef1ad2c74d955b8325959f906c3bc337","messages_hash":"1ead8c1166b2720988979e2274b287f6409fd6f8b68bf7d9ba730d37be4ac3e0","transaction_count":0,"txlist_hash":"c1771520c57b0c705c3a5f0d576622c8dd40c399e4946b63ba153af976b23b0e"}',0,'BLOCK_PARSED',NULL,'0b1e32f28099d25ab07f72559706300b7d4043320979032e0cdfbdc6be622bc8'); -INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbd1917d3946c47b2ab98debc61841d8a88350944e4b0a55d73dc931a4427d8f'); -INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"27914e38b3ca9d8444275e5c6d24b5cfe0b4093f7c645d5c1fc3c39e0d3a3c60","messages_hash":"4b5fe8d7693ddc79f5d2ba024807838779813bfe2dad8467ec90090a75abc8b5","transaction_count":0,"txlist_hash":"329ae5ae96b71b9a116cb82d9518110e63d32a9dfcb6fece911201ab6c3a78c5"}',0,'BLOCK_PARSED',NULL,'4d9ef59cd64eb23baecf87eadfb35d60b5316168619468e719527d38d8e98c34'); -INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d575851891e149764903a7308d9b00c69545ac726c3035b05e22cff18ffb6a7'); -INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"eca83e762899ace4d990b8acb23183263df5f92be10b63aecab3518b340b975d","messages_hash":"f0bf250e00a2ac9cc3fb758f41cbcfdeb3828ad8c09a5e1b089335f97c686f8e","transaction_count":0,"txlist_hash":"6183465e58c5e5ef0f359a032e98d12cd247ff080ae44dc7a90ee35006e74e9e"}',0,'BLOCK_PARSED',NULL,'866d35ce09ba0fe8eb40a5040bd6a02c6cf206a6cd1dc476d8692b291e13f59a'); -INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e121637482b06f9511757e0165451b6f9335e6764830f4f28f5a0b3dea326d9c'); -INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"3544fab97fe90a35b1f52ba955f88a8149d90329986df38d97e12992201bb187","messages_hash":"2647f9675bc9aef4c5810a0d37259488b99cf6eb3ff1c88164d30aac19df4a28","transaction_count":0,"txlist_hash":"407c0451107403f827f434f3f8f8e3c9adb33362ab584802d87903afe3851f4d"}',0,'BLOCK_PARSED',NULL,'20efc5616eeaca9b30e9733e52e42d10e1c0666c4bc59c120842ed92e44bc786'); -INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62409a15e8f7e4af5316c4d250e2d2bae42b0152dfa3d1460633d5123fa99a4b'); -INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"df1e6d8f1be344f78c0b58baf7260c2abdbed3175adc45a122947815c08fcc16","messages_hash":"c6603b3ad9264f282f3f4c95b65a5bd68445c51847a44d5df2902f57ea7771ab","transaction_count":0,"txlist_hash":"d4bc7124f8beb9fe04930a1b19a66aef57669e6bf790a5d38441beefcc001dbf"}',0,'BLOCK_PARSED',NULL,'4779a5d42e14d8b170c4e49ec2e26b50075d395f124ae134874dd87ddf4489a8'); -INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58e8d09687bba6ee3101c9f9f74ff5cca920e6acd7ff054ad3e6b867413fe938'); -INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"8b9febcfe1a9447f6a820c060f503dfe6e5c02738df4d9d63b007fe03847a6c7","messages_hash":"586bba54ddbd352c7b58308253bcc354b178d99d988f9d2d0645acd1120c1f4b","transaction_count":0,"txlist_hash":"7038d6f46cc32e35793799e50fbce7bde13c52c379e3bea10da0e6443a221c62"}',0,'BLOCK_PARSED',NULL,'c1be51165c4df479ab4ee6a5a2767f900d238e5395b2703f104112fcfd8dc88b'); -INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59cd8e39c4318f486e58f24e70fc41c9221a781f5d20c0170e76c0df55040b6'); -INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b927091b4cf42f8537058a9adbec3814b574c1e1ccd242fe44c5f3671a191304","messages_hash":"dad021e3e421756b962576b700d8a73ab057bcaa21f536d57200f38945612fc9","transaction_count":0,"txlist_hash":"7640d47e11233c9d27a8e868bec5595acd99b3c7326a480298f7ea38c4a66689"}',0,'BLOCK_PARSED',NULL,'afb222b88e343bed9ad1acff02788c84dc67284b895d36381c57587392302411'); -INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc0286b69642ca045e355082e9533110b2d3cafb9c865e994a49c47057ae0083'); -INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"649d094cfc74f90e06bb4514276aaf3b0a0ed45f56397a2f774cae9602d02e6f","messages_hash":"9248b84e4d356487ee97784f5437a907150f76998f52b915f1265dff11c06e58","transaction_count":0,"txlist_hash":"ce9cdd6db6e1bbea3a9446b50b092e504bcc58900befb237580896e1c107eaab"}',0,'BLOCK_PARSED',NULL,'19b969f927c71fddfb3886b27a31d378c54d0bd59f249defbef20100680e8935'); -INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8654c63ab3a3ac3466b556be17adc3387dec054b75024da363ed6dba1442daac'); -INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c9a9dec300afba2cc3f171f76ff4c07cbeb7a41a86a3f498f712e066a8acbd17","messages_hash":"01c8951e997d5633836b621f7778099959f961cb95c443eb0ae310a5b5295311","transaction_count":0,"txlist_hash":"7153d6b86e3d8ed76bed0edd2dbd4fe6200e1e6d82d51dd3f812d6b43109f503"}',0,'BLOCK_PARSED',NULL,'70f8f109fe295ab943d09dd2c5eb77c9f8c113b2a2d4a072f2c6475abad416bf'); -INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17afa1a15927452f3be86757c7af4b473946b3e95b98488dc87ae4bea8a4d929'); -INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"3c7434887f9373b5370664180ba640fa63c2eb5b85569875105e4f4db67d8c02","messages_hash":"684ff321efef12a06017502ff5d3c288cb3fe021503127d9a805b96613224b6d","transaction_count":0,"txlist_hash":"adfefb6d18cdf44329bf9330e32f265145f60290f2a75db73fea8dd8ed2eb7d6"}',0,'BLOCK_PARSED',NULL,'65320804717a4b08e2aee2fd4164f8842ada19542297b6a70517e8f9f7fcaa16'); -INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2259fed12efdac03fbe56f82083e8c6409e7087b452422993e9f80fd4a965a32'); -INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"7e6a09386c3d8552a0dcc25b75143876a3046ebac0ff9cb09d6224ea7e2f3df9","messages_hash":"fc34584264cb48162482623fb22805123c6d42a309a1e3b717bbafbf5dda66f8","transaction_count":0,"txlist_hash":"2776deb848ce539546aada2bc1756d9de92b23e0a8d513f5dbfb1b0bb3be3bc5"}',0,'BLOCK_PARSED',NULL,'f02572dbcb8e0d3834293ef5abf6b3c13d70ae6e735213ab3dc0a3dc88db8320'); -INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d478c5eb631fba6438ccb8d173e35cad0b65936a62a66f64b799e03499968d08'); -INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030","messages_hash":"53165a6a7eb5bef338ac5509678ec395a1821a1db21de30d49ddaffa33c58abb","transaction_count":0,"txlist_hash":"6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce"}',0,'BLOCK_PARSED',NULL,'cb0999f8df583e8668fb76e866735a9aad626e8e170b57718688e9cdf8d3e41d'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1,"utxos_info":" 750ccad1bc0bfbf5a710bbafd8b462594ddfee190e3430bca7e8c8d270f2fd5f:0 2 "}',0,'NEW_TRANSACTION',NULL,'93d86b56638879098e8418f3f6ed7f11b1f88c680bc9cb019928f88064c282ff'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','e6fb6ea6d4cb7eb89e04fc9b7b32a53e0b57babbd120c5e8f95f4122bf9acdfc'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1}',0,'BURN','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','9b577de2747c022fe34652840f19921419f44f4a2a4d71227b344395c212ebf0'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cff3ba7c92f6b318eb4a4a5e2b90b655fc055d4e8a82101b813aef6e1c6152e4","messages_hash":"e34cf3d8f2969e78eef50d68dedd6c97c987cffb56fac320ccf7b444e954c813","transaction_count":1,"txlist_hash":"9f6f20e36fd2b2b44df6e91fbfaeffc6d7fae9917b27d196245ee90c36d99ff1"}',0,'BLOCK_PARSED',NULL,'7ddc6a366fe33d0da33ba008fa2b88021cb681de16b4ed3b19470cf13972c64c'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8c3fceda11a7e4d45e9ff47347a7ad9640bf858df839bcfb977b158f58e4c58'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2,"utxos_info":" a91d2e8deef46214f4c9b8aebb35b6d8807f2a400c2fb6fbf3fb47442d7ea39c:0 3 "}',0,'NEW_TRANSACTION',NULL,'393a59c32bd466fdf78b5a3dc3da3e5135b54fddef603235833c713c8e3beda6'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','f4ec34782524413658d8b9d4897b60e6e83d0a9be960e2cd079023ecae562146'); +INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','d1c6b12d018fb555d393049b20e10db9a73e6f0507009b35d881a9e4394a5c10'); +INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'SEND','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','b4903656c2646c3fc1b66b62ff646c92f17b42966d8c3b547ccdb1f00aa77b88'); +INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'TRANSACTION_PARSED','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','38befc91d2a0c882aa476a3acea7dc5827928b48ec91fb1ef60736cb631a0170'); +INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"2281de0177f4fcf8d730e2751d7b9fb5da4df741196bbcaff470c7860a2ca0b6","messages_hash":"f2f12869b75da9f58a31c1156ee42571b4c060589ff6bdef01ec3851fa4a9d58","transaction_count":1,"txlist_hash":"49836952844fe3f887e718d236efa6b1f4cc0b81cfc010f79a6349562ebfc162"}',0,'BLOCK_PARSED',NULL,'eba0078f43d0e15a23591dca147dcc2443f92ae7d664a812f9a4fab08a8001c8'); +INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ee4689494b5e8bafeaaec46cbbc3df7724f2b0dbe3d741693e998c0c1e8911a'); +INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3,"utxos_info":" 4c3b65c423a0600af4c17f48fc9f8443e1e7918f419478a53d22f14b793ab4b3:0 2 "}',0,'NEW_TRANSACTION',NULL,'f338463890e0d7b59104d1449f14b259a22b0685c7d6e56b0e6d6ae1e6dba313'); +INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'OPEN_ORDER','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','2f704c8a93c4e61d0b59b14713dfa001766d8dd073b72b1ae63b156ecc174160'); +INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'TRANSACTION_PARSED','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','df33c1d917d6f973a21e8e867fca484d671d9ecca3e1269838fd9077fc61c91d'); +INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"802742a55d8ab83de24c45efb86d1daa0ad4e565cc4db6dcaa5cedb16ec4125f","messages_hash":"4d33dbdcf0af53fb34c19807641fdf4151a190bb14fe21ad3dab4bc53989a28a","transaction_count":1,"txlist_hash":"017a0ddcf461ffcc3c89042ba6a6337efcc276c8f144daad445ba0e4a36bab33"}',0,'BLOCK_PARSED',NULL,'a15a287e766384942f42a737eb524282995ac97af827d61236de8e985eb7d35a'); +INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7212b7ed76daf43b77f0c96acc53f7dcabae9f1bf336cc3b1f1b5644d837ddc'); +INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4,"utxos_info":" e108001c44f040df19f8e751538a100b2dfbe606f72e8e359794e9c05bc3f52e:0 2 "}',0,'NEW_TRANSACTION',NULL,'e875ec5ea3bc00c08ae4c8cd73a5df325074d57c48b8e7b2d285e648ef4cbec0'); +INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','05a4142fa4ae1b34d34b3412db2801640f48cd5eb6ad79b5ea7385fad4daf901'); +INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'OPEN_ORDER','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','6136c2e0f8d1dcd31411789448a2374f49fa96c728d7b4bdec4e4e4f7f8c8d60'); +INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','e64df3b4ec0591574ed671094e55c530e7f331122d3fc24216f44fdbc066c63a'); +INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','135edcf5cec116872a1dc53f17aa441419218f620fcd25f1ab279fcdb59e57b1'); +INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx1_index":4}',0,'ORDER_MATCH','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','30cd61c0a45e54d4d1ac05d0ae71c588c9d65a2a02c316717677539af5201453'); +INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'TRANSACTION_PARSED','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','384a1999f31378778bc4bc066c7e417120b23ef945bb1d8a35349666630dc4f0'); +INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"ed279c6a985256134cfb39f1283ec97c8dc800b7255a3e8243ca9846884d0378","messages_hash":"cb25217db7a4ae17a295f847aafda153adc24f67e8475354bec53aa1bbefdcef","transaction_count":1,"txlist_hash":"8ec458bf08abe2f3634eafac5af321f02cf5d470c2a87301b8061efe3dcc644f"}',0,'BLOCK_PARSED',NULL,'0a09aa0c50b13b9f4e78e2dd49fa31c3bdabbf4421d7e67af61e608af832483d'); +INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d7377d99115398eda4d067d50507aab9a8d1c79e675c3cbd430a9f7ad139ec'); +INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000bc953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e82837589a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5,"utxos_info":" 2fd391aa096ca17e07a6dd0f8cf70121cb8c7c542d17254f34d5c302093a4e3e:0 4 "}',0,'NEW_TRANSACTION',NULL,'6414bb0ac210efb805569a62fd1d5bfff3fd03e2da9af8d5efcf83a1e8cd9485'); +INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','ff7aac7f68067f3ba2913cc04de777f92fc77465162a1579c8190bd87178f85c'); +INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","status":"completed"}',0,'ORDER_MATCH_UPDATE','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','d6c4817334fb84474b601ca066c9dcb5141ff5c6b5ede562ef1841e1e5c24538'); +INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'BTC_PAY','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','88b95676ad6a28fc66149ebf81cd563145ff8f35dc42cf1f7ac836351de38bdd'); +INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'TRANSACTION_PARSED','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','60037809f957bf8e073dc0aa6499070482b5bf0530204c5797203f58c9c0459b'); +INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bba1ec90ee149be7d8a88ff9df1fca931e076e885be21bc822637829a8675e02","messages_hash":"deac111f81e769502b94500b9ef8626fd2c6203198f7fd51d82267a01184e7a0","transaction_count":1,"txlist_hash":"e2e334cb3c300e622a50d2c206fe532a3320f56c445dc1a9dec750417260fe9a"}',0,'BLOCK_PARSED',NULL,'dc202d7485369964787404d5e28837344239f4419da63e20599a6f526e971284'); +INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46bf8681912059f0ba2faec3c528b9804187e6a86f076a77683208eedf304b5b'); +INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6,"utxos_info":" c06c060767776b7f09c3eed96bea1466a3d9f49c4d00d16cfc4049bd45821fb3:0 2 "}',0,'NEW_TRANSACTION',NULL,'360581bf89c008f04f1774c11f7d92fe6b53e456de471697a39f590da4f907bc'); +INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','abd24d42db0e69ede5fd686d1d9cfaf7ec9b07bb7e02cf10dd417d13edfefe98'); +INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','dbaeb8c26472fbf910eeb7a955bfe8fb0fdeb4b1c2ace6ec8696ae7e47c6a2de'); +INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'ASSET_ISSUANCE','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','dd9f4eb7f0f6f1ce90e5a512b3678d5b07d08fd450690aee81af9828dc9d51b6'); +INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','140d8befbbdcb278c7d70a161c2e69f2ccdf662694c94dcc70c5e2ddff1dcb74'); +INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'TRANSACTION_PARSED','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','f8731064304259d66a66a661e8faaf58d8b850d0383ce3c8e286fa0dd90c74dd'); +INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"5f8a9d465e686b3e9471041bd15d645b7fc8afee36ee890873aa6c3c51d87bb5","messages_hash":"a505a66c740529cdd8a5b685ceb24cc403626ffb4f6e6e2ae126ee92ae1010b4","transaction_count":1,"txlist_hash":"260ad7ae2e2b555f7adf9155fcb761e7ed7a2d22f128457db0f1ff363b498d64"}',0,'BLOCK_PARSED',NULL,'2f65625d84c806ecf8ece1e03cb8dd6ab76050cf468e0ba20148f2f23c9a1c84'); +INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efcd1be856bce957f520f89904c8e5622a03139949c55632df1add563b77037a'); +INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7,"utxos_info":" 70e7cfe725accafbee3f35946c1a5d4ab2aa80adcfb17a0aed6af3e79278a848:0 2 "}',0,'NEW_TRANSACTION',NULL,'31c9c0156676e3b64e2053f238dcac3dcb9154ab1354f88aedc9e1cc5069d14d'); +INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','2c76962c81f1fa82be741ee40dd9bea0dc0c33cc3a55daf502c9ae7274a6afff'); +INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','e9ac1a4edad3342265ae46eb82406d7fa14cdbcf9b8b429b00cdb2fa5f9346fd'); +INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'ASSET_ISSUANCE','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','1f6ec4fe3dea4316838789ad620a29daaea3fbbd91eefa6566a439d1d380fff2'); +INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','960ac89ffb3bd318847e494c47454053f3d6511b73e39a8efe7f1d6f9dc15900'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'TRANSACTION_PARSED','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','b74110a9b0d55929672fcdbe0854d5bf305a50354514ae224e7e65a758e006af'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"153795f1c7ae2dbec7fc19bb25d03dd518f0664bca82b9bb92bb7c4f1e22f040","messages_hash":"74f1ec6a8af3bd659896a94080f4a95ba73e835962aefeefc169819c54c9f5d8","transaction_count":1,"txlist_hash":"c047baa686f8bf24c406cf03687c0b4fe6b95e4afe0b396e0f507a694fb10245"}',0,'BLOCK_PARSED',NULL,'f18b447be7d01f39387deeacdfadd24deb9487a11a16cc3c4e91176b62c514fc'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'476ce4a4d790c89a288b08bd018e901eeafbeb79c74349d11b2ec9247313cac7'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8,"utxos_info":" d36f95f3a8fb5852f28ff84250bd92661ec31fce6d5b1505455279e2c9826ec8:0 3 "}',0,'NEW_TRANSACTION',NULL,'ec5a2c0326fa6a612cf7b49fc45f98a93c2c61e62e8c5e611ccc270d2748d246'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','918d71d09083a22a49b91b172fe53df0afe686c3cfe01ca5fe9300c226865068'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','f152284b700a4bbe84ed0afa0e351b8ef06e77544fd1e40e5bfb53fad817e3ed'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'SEND','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','ee537ac446c9b50d2da63f11f534dddecfeeb2c6e5c5fd253ccb9577c169d776'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'TRANSACTION_PARSED','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','edde9c9c565ec4895a4d4e7fa3e63b6be921da0d9778ed916558afc9d967e231'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"c5d21baa8c6949a8e9f0d73a37436d431bf4876ab3b60b82553877ec53fc4454","messages_hash":"795e66c4657593332a2de8d7dc8d6d780ea60ce935a73972fd9be099cad85a07","transaction_count":1,"txlist_hash":"d9532f5bdd583968d88ed24feb95b50c5e319d36171dd7bc6067ddf3d13c623c"}',0,'BLOCK_PARSED',NULL,'7e971e714287b96a8886e72264ac72d01f0dd54985e3e19a23371022fd1fb706'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae36d47207448e99945a35d510cc50626260e3f8b196a281f0f2c8368af0acc8'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9,"utxos_info":" f436cbcb20522b45ba9c40785725c876d3a520a4f3f683d08d6c24a4e6c1563e:0 3 "}',0,'NEW_TRANSACTION',NULL,'197e5b62cfb8fd3e6042f882b2b9133ac4d6590c52bb74534f3df1197040acbb'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','e3eaed4b75800d17e32cd26a23d95bcb993415309c079899ce483e4a96644e93'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','d68ee80a33407e23aedcc848bb1bf669ae91de8563c76c0ebe51b49bc13bba99'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'SEND','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','8498a9d1e390fe107e890843e6573c9439add25e9d7c7aaea8e70431a3a29d9f'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'TRANSACTION_PARSED','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','97d6c91d6dc548f571516ed646ea0811260833f861d869cd39d05024fb0e6acd'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"579de8204446e9128076fd27a644a82da77ca5ff2793ff56815c24a11218af5e","messages_hash":"6e9fcce8f6a3cb387e8ed0f75d4c34fdd2bd04cbacbf29e5037e86c1a02c5df2","transaction_count":1,"txlist_hash":"5b37c224e5684c0b3a913793e7e97c4f88b26b6c6d7683de8e06bb9485fba409"}',0,'BLOCK_PARSED',NULL,'564edcad3574f5d85f52c31d558ec26de1e90fdd4abc4d6ff695fcee9b4d4fd5'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cca1cc2c55cd76d1caaa2d9ca1e444e336ec9f3985d1fc8581d393650d8227f'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10,"utxos_info":" 0d302299946d398d35a9735af378054a896a17db28edcc87586ec5ff530520e2:0 2 "}',0,'NEW_TRANSACTION',NULL,'5e05d96a38454e248510b310ecd23ef101d0b3dd9ebdeb2ad2b130233cfc35e3'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','1de6e09d016a0d08dd5e262509cb69506f407f11c7e8643fe7ac9ea98a64c0c8'); +INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','c99ae463bf3d9afea06d754ecbb467fddef1330924d4212cc0ab1dffc693b2b6'); +INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','34c47c461bf3a73d5f5be8fb40b34f64327d117adb9dfffa9c27ec571e25f9a3'); +INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'ASSET_DIVIDEND','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','e6ae7b289531e09de156e8f231eab750a55df5510f6c7385172394628ff1f9d2'); +INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'TRANSACTION_PARSED','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','b2cfd24ee6f424d6fa2e432e8ccb2820dd8b483699239b6d6942965061403a86'); +INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"c03a6e31f50f172c86029ce6a810ec730e1179ad3e76ba5d4290595ec414bb87","messages_hash":"93015fad6abcaeec7e64b9ac939f3d686c365f2aa21ef25fe835aab70165c9f8","transaction_count":1,"txlist_hash":"f81c6592f74098821e15c146c2a7e4a5be2cc743431d37a5fb6d4143b89907d5"}',0,'BLOCK_PARSED',NULL,'6842d13454a6120c7c91c81e0a20e0226c84334180827908c77c7dac3faea121'); +INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d167d43addecefdb02cac59738f3ec6ff4508f3fe30b5bb40ea0a123ad2cf2a1'); +INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11,"utxos_info":" 3704b23673489a138f7021044edddab7f1d94a14e12aedfd5a736d331a7d4495:0 2 "}',0,'NEW_TRANSACTION',NULL,'593e93a6a27e62713eb074696a01c04754b017b45a6f207336fd7665ed73c18c'); +INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','2ba56cf61b423f2a9152ac36b55e6f1ca95071368d6f918fd727001fa22ff271'); +INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','0c035675c4bd0778b6ce72ad208969410d8dda78c2d1ac5589c954c9483ea60d'); +INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','207e72a490eb254cb3de1e11e286469b56bbf7cdbfd1dca00e9ee9e92abc02c0'); +INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'ASSET_DIVIDEND','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','8b315ddd49e8a8a9bfdff9144dccfe7885bd0d22009703fec49e2435bed98a9d'); +INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'TRANSACTION_PARSED','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','d40a96ec65fc40d300bb4d4b2f599c6c6b19b3444c025e0c3d3e37d1f2949872'); +INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"804651f6571bb24ef7534c97116ae35fb0b6b31aa6a4574a419aae7fc2900b1c","messages_hash":"1c71e31d13a1db84d1d3210591a1282cfdc810d32b87c2bbefcc8154de7546a2","transaction_count":1,"txlist_hash":"3698516a21c2c590522e6419eae91ed8b469d922863141def1f3e295c4954dfd"}',0,'BLOCK_PARSED',NULL,'3120858e93ee72b9ea0918b63361e07dc1131565ba45adf036f6654d70ba6f68'); +INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba1681becb28e18c0460dc89bdda047443607f9d118311e0fde96d1d8ed0197a'); +INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"utxos_info":" 23f74e8488b875442229dff279f819780d8051c845960fb4eb71585e8ea0ba47:0 2 "}',0,'NEW_TRANSACTION',NULL,'2113e3ce535fd440545abfd528e6122bda5369ad80c0a3702ca53c7dbaaa4b02'); +INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"value":100.0}',0,'BROADCAST','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','3d1a9c59223c99e3b68d7eff342ffec6cdf6d15f92d9ae6c073496dd26c29eab'); +INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12}',0,'TRANSACTION_PARSED','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','7ffe39c9b4895c2a0bcef05cb3a55a77ddca709457d7ce05aa52419a657c546d'); +INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"a9a18fcba1a83d637dcfd633f32848d55c86c5b499e0c15af6a626653b7424b8","messages_hash":"ef70b586c4bc6a9e3136b64db7b36a32bb394189a064a694eaf7108c79fab899","transaction_count":1,"txlist_hash":"deaaba2ecb1772901052ae6490a1015e75146af3b2707b1c148562deff91af49"}',0,'BLOCK_PARSED',NULL,'1847f0b618fc3e0ba851dd48b8acf8ffbe31e3241c1f1a0ea197a670a4dd6da6'); +INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da3cab9b918d7fc99fefaa095dd9da4e5aced611a6631b27fc66b77525e6b51a'); +INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"utxos_info":" edbd203a595616cf0285a982c3f85d998f302ade18b011fd847adba54b508001:0 3 "}',0,'NEW_TRANSACTION',NULL,'9e394a8982bcdcf909baa9c69dc1328c5d6a754ea75443edcf666ff805b227fd'); +INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','1adf55c5d237e90cb95b973e8533374fa7581b9b5a96858595e1209b0e5f0055'); +INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','88d0795b88ee0eaa4131b04f9bb2c0b664c94a15bf34c85e6c1649a0dfe4d438'); +INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13}',0,'TRANSACTION_PARSED','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','d9a96d58065e47ffc9b21bb7253f60df404a27dfba9b3217ee2e770f6fc736cd'); +INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"27298dbdb9026b5d54228b686b7a76f9d42479da79b38b9ef7cd13e4fee27159","messages_hash":"99d83b7a7cb9db6487d3a10b0a3ee91690948667d7696042234cc8158ce30663","transaction_count":1,"txlist_hash":"e409e7c7435482a64f10aaaaa6e62d69a4f0ae3083922c91907d6f15393dbb22"}',0,'BLOCK_PARSED',NULL,'fc8c6afa4ef790a8bb4ad5c06d452970789278b079a2b202034a59c779804097'); +INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18c51863163cbbdd0bb52e633240a135ad9f2f6fdce6df78dcbc7abb62a93b9'); +INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"utxos_info":" 70125234408f91cf05af61871ec76164b8676907ba299908cb2ddbaaa3cd2fb1:0 3 "}',0,'NEW_TRANSACTION',NULL,'29382018cca24eeb7a00394020d3a0fe14b6756be771ef43eea0f1b15ab5f677'); +INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE',NULL,'236eafaba50de8f61e6d3945ddbf0e8977b4b28075c37c07af1b636e1de980c6'); +INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'25d5cea953d16bf2d2864fcd8697b43af0dc34ba49905d4dd4ddb3610a2a00ca'); +INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','4460649834c64c055a91abc91c4ae3b4e91ed3fa4f77e9940152c4e07d12f563'); +INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','b26b7981d3fb6190fa70d92ec75b8bae76eabd6883973796b41c2b234370b572'); +INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","wager_remaining":8500000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','c9d3425257eaa0985f7f7da7d387b3f5b695ea6c45517b6d4b3ac09c9eaff289'); +INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','79ff29b2fd2d4809285a4647c164f7ea25ce6848ff365d026c9992b85195795f'); +INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","wager_remaining":4250000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','a54768278644a7cf3a87b672aa45706079a468dc399b79d701a381e5918f696c'); +INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx1_index":14}',0,'BET_MATCH','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','c490e1474fc9cf47d3f314c001512669b8b8fdb35832db0ea954357f94528107'); +INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14}',0,'TRANSACTION_PARSED','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','2cc987fb3566b15f7e2cad9459aaa7e1c268775a8a56d478e3b33182be7102f9'); +INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f5fbbb8870bb8253cfba52c58765b8c2493ceee6a2db5779a4212ed456bf892e","messages_hash":"c75ef478918bdcd77cd2229bf91ef2d7312fc67496b84e528673b94ef1efb0be","transaction_count":1,"txlist_hash":"78b492a743e24d50541f29a1a8e476434e81961bd457552c55fcbbac68d68fca"}',0,'BLOCK_PARSED',NULL,'62250b149b67b5e88b4d3f25d4cb8886953ae191ebdcb31b4f25fdf84c7cfb06'); +INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0b73974644edd7f4262631b9a75ea45e7a2ef6c6112284c7cbcfee490e2d16'); +INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"utxos_info":" e1eb255cd51ddda8caa319a7690a45fb5385f1ee33bfc8d5011e442434cd4e11:0 3 "}',0,'NEW_TRANSACTION',NULL,'b4735d9dc5f8e37b176016e32d7552269faed23c3299f6f5ad0c55cc4a4a6df5'); +INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE',NULL,'c361fd2d0a35ea8165b9784b5e7701a0d2ea1fe5a1a4b3fb1a5aeb4ae90b049f'); +INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7eb4d7e4bc169c8aab261a486aeb957b52aa1b181f29860316b5eae423da8a45'); +INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'d95213f64566fb9d995b712ee1a8615b7e91a36f52dd086eeefb2620d12b0a12'); +INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','7abf1f966cea2470b0b9ce70c39913023db990555a38ee9e679118f09ca30c65'); +INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','353274130bdba279f1206f89a1e237905686ca83a975eeea3f63879f1eb5c6ca'); +INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15}',0,'TRANSACTION_PARSED','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','ec9ba58818147cf18900a5d75993f8524b66ccc1a95a04a4f9eca0bd7cf5f2c7'); +INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"f1e77a7a4d28d64a0cfd878112074b6205ef09055b93b8923b0c6466a07ea500","messages_hash":"0c5504f7347d832a83338fd2c82d0879e01e3cffcc12d577a2c5f1bce3eae18d","transaction_count":1,"txlist_hash":"475ee3563b60fa5bbf8f8db5eabf9bdfea4a2f1b5fc82aedc37fa7c581c5f065"}',0,'BLOCK_PARSED',NULL,'7fffbb4c15a590e15602a274d5e0c8733a440489a59090ed6d7ea13bc17db269'); +INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db31e0e4884aa0d4d854d30ca90051e61dedf7c4d6ea0657f9b3e5d82b1c2d1d'); +INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"utxos_info":" 534148dc2423208b93e138f110e12734d45b678bb534ad1aed2bd50f9d5e21a7:0 3 "}',0,'NEW_TRANSACTION',NULL,'10088d438d11d457b2bd3f2e71693b16881b9422e7d959d0cf9a68568f9076d8'); +INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','f40cef273e173ce14d900df97b6b1d2fac82784552216a15bef85fc5a7bae6dd'); +INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','c0b6d0ec70329d6d6d3490e685f2a4febeba7cf6d4fd7cd40ab90ea136a3bd0e'); +INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','18301755d319e613685fbd2e845ebf9ab2db5a191087a85e62c3da1d5f546f63'); +INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','f0a821d23f1522466cbf9baf2aeddfb43f5475fa38fb144b9cacd166aa95c299'); +INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','b397c3463d73fc5bd84f2a6587d2c8ab698de0a9b28fb540cb9cf7dc92509852'); +INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','1844da850257e1f0fc9ddfc9a0d93931acc8df33e2dec35b6ff91e87686dc0bc'); +INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx1_index":16}',0,'BET_MATCH','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','a93c89c0fd7a4bbb386b2cecf6e8633637bfb89521acfedc6e81fb85709e47fd'); +INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16}',0,'TRANSACTION_PARSED','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','820b27cd85761ebac0bad3310c896af51177ed988e04acbe9ab2a3fb2ed16ae1'); +INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"014bcc839c0ea0d2fecd9aab3074528ffee3b2dce7f805e4d459e2dfb3d98a51","messages_hash":"eab4a29dc8927c9a399e40c8dad77dc6345cf53a2f9223ae08cb2254b73fbe9b","transaction_count":1,"txlist_hash":"5d40b180a3f3b38eedd15c7f40e8585aaa5e2fdde3967dff443a74703fa45fd4"}',0,'BLOCK_PARSED',NULL,'f85eac1490f8078b9c9d5a5ec1d8c9c59ccc579736fde28776c00d60501c316b'); +INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdd9ed4319f22d783223edae8da3cc2f939859c34f76c1546fda18a1250462eb'); +INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"utxos_info":" 0c3c3475ad1a79c2fe673603bb38447ee12b478094e9e51e99fa6c06f7e72ae8:0 3 "}',0,'NEW_TRANSACTION',NULL,'c2b2ca1f1b9d4f8aa98db42d45b0f22af2aafa8259e5470f36f601db9dedeb4d'); +INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','15ec65cfb9ddc88444a4ff903c2303de3a9b113c82d63ec9c52e8ffa2487c20b'); +INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','dbef470494f8d1a18f126e4163cf332edc062cd4ece601a95adb11564af501f2'); +INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17}',0,'TRANSACTION_PARSED','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','3e6ac643172a42072b8757f134c49a6309ef8522bdfa4ad4960b174fbf1710fd'); +INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"9f72d6a84ee58e1e851a90a62b525dc257c3b1b0c7e9964f93a7e5df6a2e4007","messages_hash":"1175f933af404b894d599928a88a44801ffb7c991de94956c7d05717e8353f36","transaction_count":1,"txlist_hash":"e990e43e7272c9d971fcc782768bea70c71d45fa7d712a7195bcc4151617a57f"}',0,'BLOCK_PARSED',NULL,'77d59c7fc413022d73a2112c04cd23ac60b2a2ca9a3d7191063d3ad5703b4621'); +INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f88cda08e57b27c9a954534e5c4a06198a73db5bcb69e50724f62fd7cdf639ef'); +INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"utxos_info":" bf7acc19b878a8ceadfb1ea2bff6fa3a692e1e8599869a85e45ff316ecf0f92b:0 3 "}',0,'NEW_TRANSACTION',NULL,'34e987f3617cbccc9fbc8905bbe6b966d64d658f74a849e6e12183fb9e926069'); +INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','381d57c69743b791ff2db650255665d0f6f0ea9a1127f90bb397750371b4e0a4'); +INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','e61030a05e142fbc37dc51ccaf657ec51e668ab0eb0066263bf47ea801b1379a'); +INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','5b3131a855a1cdcc4342a765887139d419008e0bdecb4ac9827bb671d6156c93'); +INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','58f40b2cc8c3b6c16f59da49a65e87b499cba89b8945c2ff46287ae1084191c0'); +INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','5b235c7bbbf58ab1c79ff8536acff57a14317ac24e6ee981c63bc0cd5a30f88e'); +INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','759d011c72aa5cd4ed20aece8ed41a9b0bd0528af97f68976a3965ff3e3709c3'); +INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx1_index":18}',0,'BET_MATCH','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','90eaa4b4b11525f4444bb275efc94277c79da3970b7397e2d57d85e44716ccc2'); +INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18}',0,'TRANSACTION_PARSED','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','5aa17b7bb44e8c24d87a8f40215cd02aa0f7c9d809fcdcecd6fca2fc192e2c9e'); +INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"5d1e195a7d313d703253640cd98be600b04a7d98aae69b5327a29e740573198d","messages_hash":"914fb3d5fab479382e6c224e26ebcd36e867ed3c667e26bad314b9eadbbe18d6","transaction_count":1,"txlist_hash":"443444009d5700747b2d345cc10a70bf5a48214bc279d811a311ef76e52abf04"}',0,'BLOCK_PARSED',NULL,'d29f590305e2a2adfc6f86b6ad1d91d398d04e19069d2ee3cd6b2991401b4721'); +INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d97075ef6623bfc7f2212b93185731148ae030ac109be3fd049b3a0e5020f0d'); +INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"utxos_info":" 17063806c5eeb2cc730ab380dc0ebd3ebeedd5fbe5c502eaaf46b065d901dd2b:0 2 "}',0,'NEW_TRANSACTION',NULL,'360219582ed2ad99c198625db577ec483e7a67cbdaf3e286e1e4809f19ee8394'); +INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"value":99.86166}',0,'BROADCAST','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','cca7e8e6757d7f53b42702c070fbd39db384780d70b439337342d2e1647ee920'); +INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','a6e78590915ab71e36684045a54a0d1da334d222560e3fdbd07bc32091dcd873'); +INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','c98d52a02bca87a682236e0cd0f5e51c6f0067460dfa7174e3d27bd3db8b881c'); +INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','0a4f9acacba60e39d52b1d864183da45ff95425f04f0db6722808c9ec27ac7de'); +INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','39386c63da2582c1d4eb6b6cd6de03449c257dfab526bcebe32317ca368d484f'); +INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19}',0,'TRANSACTION_PARSED','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','c5fec6ff128b0ac1e72075d1ed7eacf257bde02842b63f0aff47badda88e5eae'); +INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"f38538a4a2cba9bcf8821b56e1dc877990e027135d3f220338cd8cb11f3eb205","messages_hash":"b9d6d30aaeee490537a249a73c0b95d56cdb47780d64756f878561838b785230","transaction_count":1,"txlist_hash":"abe72d22a1fb28e1ce34bfe3f1fd012d5a41fe219a0c4ee96f3b4b0e49aea889"}',0,'BLOCK_PARSED',NULL,'ccf430ba2541ee8fcc4f3040822c17216d4549e694d6e8d84e42ebadd7e24b40'); +INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a1c3267a64f028933954a2cf03d5dc6811024f751f4df65fd961c34882fa8d0'); +INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"utxos_info":" ff1c30c31e2e0b511c508c7111d22d77fdbb4f20379d49042bef4e231b9c098b:0 2 "}',0,'NEW_TRANSACTION',NULL,'40b896f30a85dd54b6c451782c7a9650f5929a70b57138c8b68b199702a7d20b'); +INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"value":100.343}',0,'BROADCAST','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','e38e33918d83aaf1a172d779393913b03c4bf9c14eb155b12f0d40e14640ce61'); +INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','94aa29040fda3aa1a49ab53790b52a2a70a895a97f26649767b719c4e8015128'); +INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','5a17376e045150e0bdbc7582bffe4be13349472d8a2f5aff356c818cf844359c'); +INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','7a5339ad57a325f1eb45207aac4324e06dd3989f529584fa9e3c8bd2a3fb87a3'); +INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','16a873c74fda3122c8d89ab1a3b79d6ef983d3e1afc6d2154aeded5736d66144'); +INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","status":"settled"}',0,'BET_MATCH_UPDATE','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','379a0d78cf7b03926f9ec486f1acd9b88b60f50f4b8bd4142ea06f23f37e2799'); +INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20}',0,'TRANSACTION_PARSED','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','62d602deaff950f9cb937d85e1ca9c518dddfb675da0e88d33821b1ac813dc16'); +INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"3a51f1f061d953c940ac7e53f8bb37df041f2d4f42a16f5c5d23707b8b0c0dc6","messages_hash":"aa4fc446acca13213b02b43cbfac832be287d77d408ab0e5f569b202cecee307","transaction_count":1,"txlist_hash":"8bea2f5ef9805bffa4b23881f7635ec213525f8dfe98aa45e716e43a73ffe114"}',0,'BLOCK_PARSED',NULL,'8924e2d2bfa5186f3a9ffc6a16b027a89231bd631a30abe57e72e6acccbf4364'); +INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2082273c4064741c5f2d34700714667c85433620a37adaf5dc9587756e6b9c72'); +INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"utxos_info":" 2e07fb3dfdafff224b0cb92d718788af96b51014f621e726986b11b9113ae3f8:0 2 "}',0,'NEW_TRANSACTION',NULL,'bb5d305cf6f3eaee39dd52c134c12f4813a999077f7a8fe04948232ec0c0c884'); +INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"value":2.0}',0,'BROADCAST','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','0eaeea2f896a6a9260092effe6294dfd069291e40d29fbd8b1711e5bdae26b40'); +INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','4a778ca7b959edc872d5bbd8555f9ab90dce2d9f6b6f876e3ead4b35297c5c84'); +INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','8dc35addb536607549c1e708534a40f6ddb375f9833e07b7d034883e91558c14'); +INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','dce9728ec49b1af5ec5f49afa1c8742692faf12975642db352a5b746e8c6f29b'); +INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','2e4560c6863cd97980b5b49373704e8cb2d7bf85dd97518f2ca79d66022ea41a'); +INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21}',0,'TRANSACTION_PARSED','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','7d10b0a73447d252a00a67211f4a5c8cf4110c2f27a23d5f13986b854ae6ce8d'); +INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"cce3284c53fcf79ba268d925e32ab70e3d4df1e6f13dbcbe2920e93fc689128b","messages_hash":"3da0f56d98f2d15804c762b1b7f178198303f193b2cd2e00384d4b44f1e5ffd8","transaction_count":1,"txlist_hash":"d0e8a123b3125a8e057d8504b7a96e77188895c86907c273922b80e7e9ca42d2"}',0,'BLOCK_PARSED',NULL,'4031fcebc9ab88ed3e506d6d1928a9aaa85392e13e71f2d6ee4ecd1fbd02c3d6'); +INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24892b52a1078fd988199745ed8b52846f6d6964978e650ceb5eb64f6aec67ec'); +INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22,"utxos_info":" 168840008f0acd950b58778bb6ee9d625b19dde6fc5a85f02a787aa78d541341:0 2 "}',0,'NEW_TRANSACTION',NULL,'07a9778253907416620a050e78eddd1b24028473bc1b8357ce0aef0153fd6afb'); +INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','09349d8a8d42163cc86be5f7c69a3d4653ea305dde7aae667576ce8f0cc924c9'); +INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'OPEN_ORDER','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','73ccbcbadc84a8923b8cb4870a4da42db2f29509a710a6d9369dbd7a474133a8'); +INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'TRANSACTION_PARSED','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','6b1a4cc76e266f93edfc1de7fa70c1203a591032c6fb5795f50c015173f39dad'); +INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"6ad5172a6dcaa6706d5a4f6fd8ada183e103b9faab58e42c1365613a26477490","messages_hash":"623ead14481f2c23d69aed1859f23de624c9b8076ec139480aaee298c5134648","transaction_count":1,"txlist_hash":"1c207ab28dd2c5d297f47d5ac366699523cd97ccfc8a3e348dbf6fe900c32b5d"}',0,'BLOCK_PARSED',NULL,'bcdd0e066282f99c689e4b6409f78f86a8e720b45e494d4178a4b08a53e958db'); +INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efb5dd4136b1b90479fd0a4d07dca0452dda6860eeeaa7b1761248e332351c8f'); +INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23,"utxos_info":" a64251be6598696807b458ee6811a35eefdcd8170ab68e36c37d1c5b0bb84350:0 2 "}',0,'NEW_TRANSACTION',NULL,'1d5efd5b8fd013f6db64165fbd9a16a9dbcec9296112be6714b51ba58eb7e886'); +INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','85ad0020377803fe20c2cbed2e112e9f0f1283b38392e9aeab55b58b8443f63d'); +INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23}',0,'BURN','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','64debd2dbb5cf9e250cf58a1c7533d1e16ecb3374489f7c34952fb0577a4b55c'); +INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c9361fea7f3dd2415969eb6ad7fe893381c9ca65ea391f2e47a966e342db3a90","messages_hash":"9e700f536526f3d8b732a6584ce850fa8450bd6c6709faad69f34acc77ad3776","transaction_count":1,"txlist_hash":"c0867554bd3d50cd8ca4bb6e2d055250fa0c3c46f47b5f03ce5022b7090e07d4"}',0,'BLOCK_PARSED',NULL,'851c625fd095de646b48fe112ca42c70d54c6e8a05176b20b116cd175b9ba0e7'); +INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04cbe04f2be10d7096046f7e23e32cfc3825ce9322835746df6ad9b1faba5ef9'); +INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24,"utxos_info":" 806ec51cd29841b7bb12b0cb41cf9678b3e3e26f9a95d5aeba5e0868330b8e60:0 3 "}',0,'NEW_TRANSACTION',NULL,'545a3b49f65f7ba5ad3e2d1ec45e356acb8180a63828147e7f9bbcbaa4b91f32'); +INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c"}',0,'BET_UPDATE',NULL,'558cdd253172bd2d773464bfc8ce0e4aa97c749bb32544fe945a62b8c64eeaf3'); +INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a66258ea6666bb29472f06d4de81bd95838063be7779901349c73b5a617f0082'); +INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'99863f3bc00d8f1da05475ecdf2068874854b72a21ab6135d8cd179bd20b7f0e'); +INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','64d57e6f32785167c20bb31e0697273038e2c28378620c1fc4fca9a65c891a90'); +INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','37932ff051fa9b74d4ef2ec6b091085c22bfbef20b0fa475f7927f332e786e96'); +INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'SEND','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','bb6c84e5f329bffced500ee32f5e5fa28ef0ab837c75a5f118b8cf81beffb7d8'); +INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'TRANSACTION_PARSED','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','f07a70901bce30f34ba42fe526d4c772ba03a5f8d43b0f6d2a1d5054c1f61413'); +INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"f63680db66cf963aaaebf64130629790e7492b5ea9396434c2179a5eb8774412","messages_hash":"9155dc75056569d35fead5ca2325335d529dd3352a64706fa129aecd33c58dce","transaction_count":1,"txlist_hash":"6a3cc06342da18a8eae7180bd93af2cc3a6f7c51916a19265365814f52a58119"}',0,'BLOCK_PARSED',NULL,'0c5ab82299309e63eebedb2a28f676dc0c27060e1b4f21e4af4ec002277b959f'); +INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a9ce7669037cdfdcd1e7880e93be08ab58069331f048348e5e4a20aa3704cc'); +INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"d69ea243fcd5e525ae03af680d5610b654a9d2bad17782e196305aaa110a6ba9","messages_hash":"78864ce118a6b397e3e201f6a8bff45ac11133df639014347b69454996e5604a","transaction_count":0,"txlist_hash":"7e4a0076ce614d5b7bcb0a59c84e79d21702a3507ba88bc0d8ce9e644d7fe692"}',0,'BLOCK_PARSED',NULL,'f636c0bae6127ae71175a656048331cf091c420b23ed2ce9c65b7738a8fa3740'); +INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddade5eba05365a7f8a797339192f033df57bc690a73748ff763b7ca4e112a83'); +INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"721906ed4cbd1524fafdc8e3ffef27d8b03e0c798bbcbe3eee7bc7f14afe4e81","messages_hash":"6affc572ab0583b1653f09c452ac6aadd1be130bf5c07f06cdbbafd9702a3627","transaction_count":0,"txlist_hash":"c1596eb8c172f2968ddd2ef70c1a8f125ab989c1a7bb012ab56f6c75cd96bb41"}',0,'BLOCK_PARSED',NULL,'2670a2de374883a73e716efb20a1e1fa440d9aabb513276b84f5601b9d419d31'); +INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bbe03725b09df045bd552d87e71f72c7ad265e2fc7f0072782fc35ae8f444e'); +INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"27912da2afa797876030dd0e50c31aea462d54c7bfa4f89d2f14fdb7b80db6b0","messages_hash":"c51e667f584517b4c96b7a3f784a1d508f588d0f203f20914ffda390a9955710","transaction_count":0,"txlist_hash":"2d653751a75829265f2cfe2dd7bcc3a594be62492893d36642e3c8815d339fbd"}',0,'BLOCK_PARSED',NULL,'a7834b0666b62866aaec7beacefddc7c4ac5e9ab30be935714bc85922e7f5610'); +INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d616040a70dc0a88793019cc328b3c20fb3b757786b5e3069e7cefa274f644e'); +INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"cc0734ecfd2bdbd2d04d236b853f60e324feaa9115fae33a8add961c4a5f9436","messages_hash":"827a7b7bfb702c7723f626adba352f625d232cbfb69069694c935c1c9c213427","transaction_count":0,"txlist_hash":"3d5c1eb8dafccfee04f7d91b2819d9f51a9fe8df4050c025c19c29ceb18b3575"}',0,'BLOCK_PARSED',NULL,'2aaa596bb6365b7e613288903423b45c8cc10ea9647e66cc996ad3e8d1f3dbb2'); +INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65e4149a393f7b635c7e788e76d51db6ae725f412b794b8ad7079d73734a2046'); +INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"d3f5fbbe85d5a81fef8735c73349f61a43122f4b6f3f7aa61215323a683ce3aa","messages_hash":"e28265acf72abd9e2e1640e135cbca8d4bd04aec2de959f7dfd7177d2dbe5df0","transaction_count":0,"txlist_hash":"e6600d6d90725ce81afdd7b00220f8df650f85dc3a308d2486fab88edaaa8981"}',0,'BLOCK_PARSED',NULL,'5a2fd0701b6492fe0b8eab17cb69e8e38855fba9c0a22423c88e13812f3bf7e3'); +INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5bb07f52ac94188dd303b76595834f44a29ae08ed8d28712d5797fc62f200a10'); +INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"74d08f0d1cad9f7102d0cfe70f50614c7ae7f4844ca6d02390031e1e96c2b418","messages_hash":"fbd9b3a5e935168cd77253901e2e487144e18db8a9edb9c079653b61e141f584","transaction_count":0,"txlist_hash":"341aa44dcd4967cc3356ca23c97111b1cf3ee128c944493a0ebc6458c4f119be"}',0,'BLOCK_PARSED',NULL,'6d4e521dd79e9c054ab4949e80b82bac9438e727f77ab0ea2b9e61daee0a221a'); +INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'449375224e9d22ada6e9ef891dc01a48fd71520463ecf90dfb9ea5f52ec0f212'); +INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"753a1a8bb877851ae24dbc33884344f34ee18c6b0d70a4d909231448b943e8cd","messages_hash":"636beda8065dced60a15b93f698312b1205303e89e440054f47f30d3806cae64","transaction_count":0,"txlist_hash":"b9385290e5bd72f2a1a5d2cc889108a6da0aa888fdcf76170b166888c6301407"}',0,'BLOCK_PARSED',NULL,'529f3f62f7457c2616ee98871a0d08c95b8184636f624c13730958617703ee48'); +INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32b8d21d4c2047f6e9e3d3686a7d5d81955a3aaa9a0a40d221087d37a569455f'); +INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"f7c62d08a4efc854dea6f47249786d3d00778d97223dd84de1d0fd1eef3e2ee7","messages_hash":"0b089ba8e2c07f64e5275a19c72e23717c2f6615e41787e9fe484a3ad95ecd1f","transaction_count":0,"txlist_hash":"6c27a0cb80d8602b9ccd126f53bb69727d358353b4c1299434c3472b0469d85f"}',0,'BLOCK_PARSED',NULL,'37ddf569ac6695f7a18682fd759de395c038e2fb484fd46197b5a5111231b0e8'); +INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67040745e030c4eb26e2532c7cc377495de8ea2c194798f66b1919bf6cb646ba'); +INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7"}',0,'ORDER_UPDATE',NULL,'cfc34dd48e8cb07eb9de73149168597825a4e7e765c20bce5879af521252819e'); +INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'28e4fc639d5492330df9f7887e5043828e3f56df97a5794eed2c813d3214d7d4'); +INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'c5ca1891adf3356a43d9539cae7e540b47ac48024010d31e544761afcc6da5c8'); +INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"833690f195e85b427b61890640fe8f0cc7419e0f4301b6f4738bab12be06dbb8","messages_hash":"0613fdf8179c40a496e175e4650066c352531c47db27800599c58aa367de8deb","transaction_count":0,"txlist_hash":"cb3ca17e5c792309fead54d49039ee0e00e7b17291868a3a2e86e09bb3dae80e"}',0,'BLOCK_PARSED',NULL,'3c3b8c87ae1e3de32bfe62d4727544a4f0c55c5df20a44f72b74adfaabd39134'); +INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'211f18761d39019407349d981ba176fc14e634e2108b875fbacfc8d1d98dcf6e'); +INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"a1e118474a6f70b8f700a67b43ee0272c4609d3309603b5be6434ca587eaa704","messages_hash":"2f23e44306cdf377f80b08b032eae1a1b4784abed44d12a2ac67a7a585565bb9","transaction_count":0,"txlist_hash":"2f097bb1b1dff2b4266dcb3b46d29255401e23a2fcfb75f28e9f7184733e14bc"}',0,'BLOCK_PARSED',NULL,'a1e45bd4ff64c3192ac6668426bc55507e33413e12791c3c1f8880d8b3463857'); +INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6351a1c2d8d1606d2791bdfaa6a54b6df2947a294adae897056deaa2d43cd319'); +INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"3b6427f61fb59ffd674ed8e0af75687fc4ccf8b462011727d4dc4bdf4c794775","messages_hash":"dec5e3a86f2072ce434785271240c70984fcaba5b19f7bc33755d1700f81fafe","transaction_count":0,"txlist_hash":"be05766d9a1c70d8907d523979a313ccec8cf2900335fd91800b4b90da3bee12"}',0,'BLOCK_PARSED',NULL,'e5e4b2470dfecfad168ea8233d8d42804a9b6a3457199687350b9b07ad69c1c8'); +INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1b3ecd369086c0480bca8e35258ff24ad39b6fc0dfc06c683ee4b4c932b1883'); +INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"d065384f739c52a718f656717f88eb2fecc10d8567a93ccf823434c003d28c55","messages_hash":"05d70ee9655f79e42a6afe31be67c186c88cacb58a11c0ff890b1456bef081e3","transaction_count":0,"txlist_hash":"41cb2236ce676fd45ae98593c9cac6291fa95479ec07a5af615ccb5fbbeab760"}',0,'BLOCK_PARSED',NULL,'28b2a4afefaf1963e1243d3a3b99d495b97c7972271d5bbf5c0c0d1ab9f12f97'); +INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79b946ea8b4c4726322351ef24a45e83e58c075e6c8d62120dac73155b34b840'); +INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"22cddc8dbfcbaf4b851fa5379c740a96294acc3d772dcf6d684881bef18d7fbf","messages_hash":"f18df71f40fed5ae0d51f0c9e86730bec7481f5f1d42edab3b43ac8432ff21bd","transaction_count":0,"txlist_hash":"0beb88a3d4adbf913601c2d5144599cecfd48886ca51f995aecfeb50c56aab1c"}',0,'BLOCK_PARSED',NULL,'05202b5ae799468fd1b80cae80335405cf005327d08cd68a673dee5e680e532b'); +INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3acbb864d6cd6f83fffa1d132cd54f3bc2e7319e7b70a8c39133ed591b8e9359'); +INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"93172c51a9c4cb5c33937a199a32ad3c13a40a60f4c194a1187e2c59a15c0ccc","messages_hash":"78e67095cf665c1de0b2af21f2165790b1417274feecd81456347f6cfb6c9ab6","transaction_count":0,"txlist_hash":"ea276540d3637a9165f482c48e414467e3a78c2c25c6a70bbed0c38f7205920e"}',0,'BLOCK_PARSED',NULL,'e9d1dab78dbf98a06fabfcfd18504a5f4bc9ba45db6da972716aa084ed24f4cd'); +INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'458c6a3cdd790a3ca87c3cc3aa16d818ebce3d2925b8e9be0be2142e6751d5ba'); +INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"7a167a13f7e576c7e066035dbe2a2513659f1386c095a9e63afa494c043b7def","messages_hash":"c039524f327b7a85c87da066d6c888e7db7320268025a7c4848205af1420740f","transaction_count":0,"txlist_hash":"15ef5d6175a7ce1937554ed6c2b10be6555aa14f7179245b7b140d1a620095fc"}',0,'BLOCK_PARSED',NULL,'55002a2832b78b9fe09c2afc25ab381b25757769b21bcfa76b6fd6c8c104298c'); +INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08ef82c48ff0a8ce4cf9d24fe40cc829f930553a6fb98559ddac5825973f14e3'); +INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"4733d9ada3d4f60bc09f0a6eba3fdcdcd8e8b18adfd38c7bf06372259e2d38f3","messages_hash":"a92cd8e4412d0da2a8c8f8004614b64b31a9393e1069d2a2bdab3838e176e76c","transaction_count":0,"txlist_hash":"4ac5fe346b8577626d58c9442c95fccd4955506ac712ee3f27b5df6b7ec1d0df"}',0,'BLOCK_PARSED',NULL,'84b05f2a162b219e6c5dc8b87fda9a594ec0750aba3a4631de4fd2fc24a44023'); +INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d5fa1cb2d44c83fcde48427e1a4b49189a3e7c9c3c3bf942fd2a3487234d211'); +INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b8021bbe3744e58cedfc3dd99220fce48f4e56a8fe8256d7894dd55c7312a76d","messages_hash":"f90e6dfbc029264f89c00090f608e58489bb9e6823efb114b2872114a62af866","transaction_count":0,"txlist_hash":"acbb3114dc5c7599eabdaec4833952c3b6de20dde616233f3945151977d5be16"}',0,'BLOCK_PARSED',NULL,'a0533f3b077f08a5a580b81b1fdbede57bdb4b9d2d01cd7b5c709fa9571d761d'); +INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2e5e3f90d9e34e0b3944ee9bed005c82a15fde6e68f08031b8dd9b7ce1e25c9'); +INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"017b79a5fb34785dd39964a61a5bde69d676f75ee085c27bbc9e3381983c2dab","messages_hash":"6ef27739cbb44fbec1f834c103cf6a7fdcf7a810a99d231ce6f7e2d1a308255f","transaction_count":0,"txlist_hash":"6cbdfb2d6b3677c91097b1e80a32dafb0172725fabff370adcf444321ee48509"}',0,'BLOCK_PARSED',NULL,'e900dbd0cf5b342015abc275ed44d9ecc2d8c9f2f4c695bbc6e9f19583373dee'); +INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44e7f4bea9b47fbc6897a016143bad1b9c07d0315c18f6119fc78b9c54000603'); +INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"cf5389c037b6c619025bf95d9718fb5548cd67978c3ebf26f76029873828162e","messages_hash":"714689f948fd44867292f758edc7deb1d760d0436623b44a621f75bf4bca39d4","transaction_count":0,"txlist_hash":"a091876d90aaf1dd5b0d53403a3a9b5788710bf3d0c1996184a91961a1f24aa0"}',0,'BLOCK_PARSED',NULL,'7d0bb0d21096afdb44fae8be235f30cf7d0c18dc6a4b276ab27adaa1a8539487'); +INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ae0721820f98ab24fa595bebeed0c959b36cf1e9a78dc748afa8266874e7e62'); +INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"df116ea1fcf5f968644dcc97c1149f0ef6061b188fd56c27152543256ce79009","messages_hash":"603e460fd6b1161f30ba21885046af008af9b605159052f0e98e8825519ba2e7","transaction_count":0,"txlist_hash":"eafb7d2cbbb2d1afe4a3eb65ca6bc7be653d7d824238264082d2c5e382757e54"}',0,'BLOCK_PARSED',NULL,'1203166a699262e40a9382516a9af347716cf40ec92b46b0baf82bbda23b569c'); +INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9687252dce45bf4898500a8daceda4ec376cd8b855664095ad93ce6d1f5367a7'); +INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"c12cfaa984bfb34e781ac93848a87cdc0318c45a1cd9f02d31f5c3a4abe8d918","messages_hash":"57fd0e4696e43a7d7bb8fa26f243319f1e82833ff1e1e3ef61761f4a1d6c1864","transaction_count":0,"txlist_hash":"61cb811c578f90cd6cc9f6963ff80c280f6ad0edb53fe53dd3075a8818404fe8"}',0,'BLOCK_PARSED',NULL,'e5827941a2b22920c472e77446f75621e6c35e071a2ec9e884766388eaae2696'); +INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0eb66a7be86a7989c452368dc724487d21d3c512e1f8e41b7225dc7f54e5421'); +INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"999a9ed2673de2db7637e22eb8a1876e0c794e90f09cdd76d1442e56ae12b1c8","messages_hash":"df129d2913a58f5186cd0b2b5b7f5d7769698ce730314dd80db18f10976381db","transaction_count":0,"txlist_hash":"ce9e3f0524576a630ed0154cf69c7798065a001e6752c4f369c30b06aebbe378"}',0,'BLOCK_PARSED',NULL,'f86aa831a3e88cfeaaabf04f080ef9b421794b930f7c98e411dcc5c95a2b5ed0'); +INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6306e30b16e9eaa0e0f7fe0ce1e611b4e3b62129536b45018002f5e4c4ba660d'); +INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"240c9a2f6dc918ed868abfb5de6838d7a17f02263fdda0ccd3c7481c09e155d1","messages_hash":"4e07f32943f702131817b662d2c3ffe3cd796368ef4f73e48439c9eb02939a4e","transaction_count":0,"txlist_hash":"4f83f9bc531841759d1071a92ccda5d898af693fc88db0de16b2d2ca09630d59"}',0,'BLOCK_PARSED',NULL,'11ac3b918cbcd5212248a708df48b113d6264090ec23391a83d0ff9528f9545d'); +INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ba0051c7cae74b61634dad49f15d23a380bbe886bc62b67055525f9c7630ea5'); +INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"79836105e355e25afd709d15632e2c0d1ab53ab251cd3750ffee9fea4a2605b8","messages_hash":"05fb8afd82b430088303ec8ad4e865c81b504b1443e524b67af7e09a83f9c086","transaction_count":0,"txlist_hash":"b17c5d4fc0eef05c315095d265b324a0ea7dee28145d7b4e251a944b4b6a16fb"}',0,'BLOCK_PARSED',NULL,'9151e4089fce8c878187682db6574c3909d81579ed78cd89fb7c1db6f72ada41'); +INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2257094035d54e57c34c17010fde161a1019c4218f8a83cb5596dcdef309bbc5'); +INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"6bf0789392e97311c4283d9f748b37effe7b0d1678076e30ce5725eff345a8c5","messages_hash":"96ae5e483fa7eb49f9d1750aa0c19a550e24f9c157be12641d6ce9ffe7fc98a3","transaction_count":0,"txlist_hash":"f9f7ec8bdc9301d4ea41a099d04f84631badad709fdbdf43582327f183102590"}',0,'BLOCK_PARSED',NULL,'fa933244ed50995f0433fabbeaa41493d5f1f0cd21ffe7842f16a566a441621f'); +INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b4acb6c6ae4ce1cd63bbd7438227234f2d5bb59921a351aeaa72331143a6a7b'); +INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"1842c46a03800f5e191cb8d641aead6bc80e6d25c2ec826f3a5df426059cc1cb","messages_hash":"d08178883b6f4531d41d2e3b87bf8fc6ec60b894b457220f02c178e2f0e9ad53","transaction_count":0,"txlist_hash":"458e51569acd6ef757e0b36ab3f558e76f239ea3bfbf1b0ce7824f39ec5ac23b"}',0,'BLOCK_PARSED',NULL,'be5bb7f23e5fd2fe2f2faf0f0c6b4ab304c510099fe6a636228736adf3625607'); +INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cdd7d6dc060d90e207d6322d4747d4f6627cd256e0f4d346e4580853644eeb5'); +INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"d424b02109320491b2d32388869d6468ab1fca26d4bf72374cfef729efad866d","messages_hash":"9c8ff110093c5f2dac33bfc29bff548774965b5c2ac9dd3db577d54d9ac8b877","transaction_count":0,"txlist_hash":"53e0972193c4f689d3a7216f22607a9b0cb7b8a9f43f144469bfbf25f59edb09"}',0,'BLOCK_PARSED',NULL,'56ede1cff74470141e72e57156a54062f46c459588258e5f9e3a59ddaa66d4d1'); +INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0d1a667a318c267ea2b5c57288c071c550f44b1cda78dccdb08ee31f8ba024c'); +INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"d1db4181403136b41168ab7786831f2fadfc418a05b7477246ab097bab531859","messages_hash":"6f8f9e6db4aec069909f11ab4e236402bf83c5fcacd2d904e7efc22a67dea365","transaction_count":0,"txlist_hash":"89bbd06ca16ed2098ac6b7accd2296b4e0a2d8236dbf1cc14137e90ebad364e3"}',0,'BLOCK_PARSED',NULL,'bc8b4fac16121a863a5630e6beeaeadadbced691d3dca4ff8593a9e9a677b74d'); +INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92fc14ae7acd2ad8d5f12b46e443b7edd3a37c81990b260ec7ab3922d98fe893'); +INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"97fdb6b2c8e636d23109a67af55ab4bb30955a84073274de3fdc788074dc1b6b","messages_hash":"1d3bf43cf1894650df05b52dbfefcee4890ec800b128c70a86e8ffdc142231f1","transaction_count":0,"txlist_hash":"8b8739b799483eb556e0e32f92cc092c349bb2bcb87044e88e762d55d6f1b033"}',0,'BLOCK_PARSED',NULL,'ecdd54010a2b59fc42ed0dae4d84e201185b129a707a460f98a5f2f8027769a2'); +INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e18cf0ad5fed3fe6b22de264aa42b52c265564e2548f08d3296b3eba9fc83e7'); +INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"0506be4f04a22058504406210af3f1475dbf6d6834c1c1b7f6ac0fe013b47363","messages_hash":"bfd798abe2d6a96c3a49465159876cc1f1f24ac4726ee865e925b1d8a3c717fc","transaction_count":0,"txlist_hash":"05673a7bf2fc7e9a5daf3732cb03bcf43712df43ef7ecf1bfe89d18f54726b6b"}',0,'BLOCK_PARSED',NULL,'204a383d4e04c46e8eddad90867ad85a91f264a916cb30614401cc15191ee539'); +INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3a552f6529d5745f0081308c91c20a76f8651e1ab70409b6e6d6f67e5a56d2e'); +INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"3dc7894c1368c9ef5d32a95fdc292e7de8237b73b61365a25b9d0da95eedc2e6","messages_hash":"1c61644d099e237a4f81be83ffa963fe9d6035f475fdc848c98564e2f54851b5","transaction_count":0,"txlist_hash":"4651aab35442e5ec1d79ba6422ca0c2b0df02369ee49b33efe1ef54e2ebc7080"}',0,'BLOCK_PARSED',NULL,'890453c2f556711538ab2336cc6a454818fa8bc913e9daffcaabf8f47267245a'); +INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3424aa7dbf9d2f17ea661512b0ff74d78b850d8d9ed532ba07b29641dedb8b04'); +INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"a9ef2c8bf3a88c326d2bdd722c3d82ed4f4c10b65620b136d4b893ed93174795","messages_hash":"a060cf630cb9ea9d3323991699ef1d3729615d3c5c96d88cd762dee0fd536702","transaction_count":0,"txlist_hash":"d826fea28c0f5e82a6fbefae4d6885a0a49a3180d3c16d6eeb4faff9f57d4d89"}',0,'BLOCK_PARSED',NULL,'6bb77f5f794f952bf49d1393dd0cfb503269148d418dcf5ff60fe58b8b37e353'); +INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b141e5a52e83e9d5e03b5f1024607312e947e7102e5ff188deae2263bacf10af'); +INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"13b76edecb04a9733107d5c21420ee20424fd463dcde2ea98424ad99ed3383f0","messages_hash":"6a9de88b55f133208cb74555bc17202b2e369ae05317ac44b9609c6be277b894","transaction_count":0,"txlist_hash":"fe620dd60bf5b6f3c610495735deca47cdbfcbb510975ebba2f68c7df6d32a15"}',0,'BLOCK_PARSED',NULL,'785006a0cb88a53767c51451c0ed5a7f9e74ad3b140a2eb08b20d2046a993230'); +INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30d1cbccf96f28617e810b7b44b6db1c5238d656d9d146ee030f33e80183cbcb'); +INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"41c8a47d7bc4e73aa2f09685acb9fac052c5c55764ec3a8250abbbcde40dbe90","messages_hash":"0ebef95e7af00e825fed2b9ec7bfac3b75e2a4d6d4e8d2fcd1be32466e400314","transaction_count":0,"txlist_hash":"553ea196d7a1045f71dc6261cbfe4b84c78b7dc37de89b8865f4d385cbb42863"}',0,'BLOCK_PARSED',NULL,'1e66322121b07c6a0dc6accfd768e25a459f19a3b8c4b5af925fe763b8862a3a'); +INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64b3c7702b833f29840616082b748b9ad0e9193e3a08d80e6719bb786176423f'); +INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"0b8ec211d258206ab8c318c079d9deb33d444a7086d5a05aaba97abc0be137df","messages_hash":"81b77dc97c9febc824bc9d8ab08c75d04ced65707c217066634dba9d655a79c2","transaction_count":0,"txlist_hash":"c3fd7824c9b8413f24feb96ca676285447a980d684f730d10b81c06a440fab7a"}',0,'BLOCK_PARSED',NULL,'f74a9292db44572cd83c2ebb532d3a55c0ba65bef790dbb72103c981cd0a0c2c'); +INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e551b6e8114134eea41585e380b89e8e655820d433ff7158f301cec24bdc45f'); +INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"f5c2686408577854893d11b02f52d8ea917e90777dddf67c98aabb36a3339b6f","messages_hash":"1517b49569ad5aaf4b3ada4f6b5d7c2f40be41ea51d477d6f705363ec22cc8b1","transaction_count":0,"txlist_hash":"3f73e1d36c82dfc8ee58f83502643d962ba6558cbf0fb46d83fea966b5cdfc59"}',0,'BLOCK_PARSED',NULL,'217d70ff897186c013edecd6ccdb8f2efd504b51be9e459a7b2e6c2466a2fc87'); +INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6e76e09e5285b74f0ed0eb38f689a785f686f7da861c4c792bccd9b93362a91'); +INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b80d446905550494f56f4f8240b501d593b0d0e63b5d98a09e180b1a0a68e3b1","messages_hash":"fbacb5df11579446cfe22910ca43521a0ba4f20c0ef4f50529c54718ec117c7e","transaction_count":0,"txlist_hash":"f1995db5beea80756d509ddf79d3467bb14ae96b0d151175499030505d1f648e"}',0,'BLOCK_PARSED',NULL,'c52eaa57ec30383da46b7108bd08ecfe67512a009efcd8edb0f0a54b0075f8fa'); +INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d47e838d4e0ff317c23eaa0aabecd7544ef9bbac00a4b65c9eba6d6026874f88'); +INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"41b30d23becc727151698b29a1bb733e45ae5086683c5256d073a6f817baaf49","messages_hash":"dd05dc53bf40ea738bc520430a6deb25cbb7d5771d077d8e3a09cbea4446800f","transaction_count":0,"txlist_hash":"de6a4e6bbd49de2001ce26387040970beeb7062b4e16911757204d2745f6c409"}',0,'BLOCK_PARSED',NULL,'3cfc4fad09e068e4b73748da6869841e7da3edd0eaddfdfae85d4e1b2d0462e8'); +INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbd5eab3bc6fcb4a97a065a0b0d30328f48e027b259d1179ec3e8e44657ef758'); +INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"f873f47e89715e965c98e92616339f8ff4200f6b8ef5cf747e8de2d101cbde02","messages_hash":"0cacb3f54ca81f783e0ab0859b202c4addb10544083e7709a7cb3454ed8e8efc","transaction_count":0,"txlist_hash":"f2954d07588b07ffc063170f43afbb12548fe61584575a979526d28dd631edaa"}',0,'BLOCK_PARSED',NULL,'9d04eea44598ebebf1c3ec1c246b6836063d1ef32f61b25ed98009e4139756cf'); +INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7afce1b58c178096427d3a95e249af4bf26ca5d790de8e68bcf85877e48d815a'); +INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"14ce21ebfe6a00eccd7bf1aac2d5cf122441d2ebe8c0f5fd6dd14a95b5a209b3","messages_hash":"5e6809578b7600188094c773afb02a8079d09f7be6dee3b8214839142ee65afe","transaction_count":0,"txlist_hash":"96b5675e5c3a3b66d7e2bd3424316119cf795c17bbbf2c8677b66872e4659574"}',0,'BLOCK_PARSED',NULL,'558b080ce79c0c53a612442b108503032bfa6637863e5db62f6f7c1e5e7e43cb'); +INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e149aedc4455c150b16de736a78935ac0aef9278c845931a7cd6781971fb1c'); +INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"adb05bac5e7f1e6a1679d5c51f252dc877ebd99c2b73a56df69a9c848cef98a7","messages_hash":"cd6aee357ca42dba8ff4250ed8bd069e4d0855cc6ea9abeba4fb07e46917ca8e","transaction_count":0,"txlist_hash":"243e437b3c00d8106e8c9c2cb08d22376e8a16bd3b62a8b62b86128ddd6d139e"}',0,'BLOCK_PARSED',NULL,'06666aac8d60841099f2d293b9f38f45b7a9ee4336833da5adeaa4c9d1786005'); +INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82a160c30c1f2b25245f398d14dc600e2e4210f4a6e3f46496cf10746f9c325e'); +INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9065476b6b2cfb122888e036cea71d36f3d5f7d6c72451c63d770b40a4560fac","messages_hash":"8c59a14fd3231936199eba5628f8b3ef6ff898ec1dae67431ee574fff8ab6db7","transaction_count":0,"txlist_hash":"4af47a042289756821ffb0b14aba38fcc8c972fd254220d3991b05642df641e6"}',0,'BLOCK_PARSED',NULL,'19542f729835cedb0b8fe0c35449b3b06c390dc17067c27fe5eaf2629c503d33'); +INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64fd52365abcc4728b6aa7699aaceac59100c5452479dbdc78f5df5222bea8ad'); +INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"7d5d369827ec0cd44743ed9a519d45003789ff8dc2e511191d2726e1482f58d2","messages_hash":"5b94fbbbd4a8629cf7a25bbf42ab82b7860eecdb05cc8c7d3b6c3c09ec8b51fb","transaction_count":0,"txlist_hash":"4d61dab0197a7a3f452f3751a92cb1f5378106a13be0351f0f8942d011da097d"}',0,'BLOCK_PARSED',NULL,'c0a05e63d27d7e24ede4c641d8b7a7e6fc7922f1fb3225d44ecb598ef49e08f8'); +INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28dc7eb85d8e58f9bf70a6c9d8f2ede5429acc6985d28184f2faeea35b27d54f'); +INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"301b22a9338d5dd39bbebf6bf518ac53bbb8e1cf7469322484cbcee2fee666ef","messages_hash":"4f3d0952941025cf22e983d89437b3c1edcb7da0bd3c919740235b095454178f","transaction_count":0,"txlist_hash":"ae0cf0361293deb7b8903f20aca2410197db694ea3aff0aec3b635690168f5a5"}',0,'BLOCK_PARSED',NULL,'9a03806acdd1fe86b5c388829860209a34a1f797206c2a228cc39e998316a7ac'); +INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31ae9142941ccbb174bf784e5f7f2257f77cd52338920e0f5d370311fc5b1d55'); +INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"fc281736e1dfe5a89a9a3dd098565c645904a4ad1626dd70ac8e9bc447dfb8b8","messages_hash":"8c23ac2fd5238c72ee1ff3cc59553beafa800332aa3c2f839850f2f19d1fb742","transaction_count":0,"txlist_hash":"460295c507a33a24231d1f4c760e5987b54f29d1e17bc97959db2a712f0339bf"}',0,'BLOCK_PARSED',NULL,'cfcbd1b0cef085d8f997adb0d793b2cb01fd61c21f0373efa11b1f80f4864030'); +INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53b81fdecfb90e3b41b113e5dd2bc1b6404e9abccf5461a46dfbb72e497b8c98'); +INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"b0249a0dfd008a4554adc24085d3c5f44278403cbccb44ba27ee354b23c5627b","messages_hash":"a469ec5f0bac890b8983e2c577e6f70aebea60fbf60110b3b9a0499ba143a31c","transaction_count":0,"txlist_hash":"d07500b12517493106b918ff5b6c96c371bc10bb3699eb279647539ea7ab1fd5"}',0,'BLOCK_PARSED',NULL,'132966c67ab9ce5dd90d7585d72b5d796e6a1299183e47513428ee3464018324'); +INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc6999e1a9a391ac80bd2224bf25cecbc108a43912fbb0f068e3b9a132e0096a'); +INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"d34051879c8db679ac5c49e50edf2085d0ce88dfc1adb971e7b097c0177854c2","messages_hash":"f64c00b3803d4ed0897b2019ffc9a6ae6d6ff5ca900f901ff97bef9d32936c70","transaction_count":0,"txlist_hash":"874e494499820bcc0ba41ac5cd1bd153ac1772f730c9b842b77b289adbb2c2f5"}',0,'BLOCK_PARSED',NULL,'61dcdb9c7eba04431fdc834545e46e3adad6c531e113935dab6ec68a954ea3fd'); +INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87b348ad1387eecab19a9509024aac5785ca79b229161368016a970730c33c9b'); +INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"0186c5312af19576cc628a85014ce7c33892dc23b5352c8ff5a0f230adfe263b","messages_hash":"62bb2badcd7c376dd59f2bb55f1e5c439b32971cd54bb6116678251fe17a94c8","transaction_count":0,"txlist_hash":"01342c18caeaea6b35f2d815b9aeffbd92228f6ad285103faa13cb25171fdfc6"}',0,'BLOCK_PARSED',NULL,'4e81a3375380ae888bd28e1ede8f321a732dc67797ba7bfd253b2ee1292299d9'); +INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12490dedc2fec624589a6d25c2d16e0932107f1f5860d856b976dd2953eca91b'); +INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"5376530512d61c3967f21cf01418d317ed072976119b8583fefaf3991b93d8b2","messages_hash":"97df614eaef187b9cac1010ae8b47cf9e9a9b3071d2b5eb4ac07d4d5a2303255","transaction_count":0,"txlist_hash":"72a7d63ad0b15a401210b197da00ca549b6e8c80d8eda1650cf9017bcbc92532"}',0,'BLOCK_PARSED',NULL,'f6b8d7ce5ebec0e85eb0c9e519fe7e23e2aa3aca1e5695baf47821d4a7fb9b69'); +INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f48d7f6a815fd3e126cdb643f394b781529c70736b4b6ed7021a7b293c23091'); +INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d15fe704fe5de58e9203ff5ded50218a1a01609b65a1a259aec510b8b9e6d690","messages_hash":"fc69b2a194e31e2c1bebc2f45c01768c1cb8020230be272b657450a4d0c3d185","transaction_count":0,"txlist_hash":"924753a39229b5005b684c4b2dd111b6233347b89179f2fd2732d256b960ace0"}',0,'BLOCK_PARSED',NULL,'426c8206c8d3ce89086da7d1e2f7fcc96247eafef710bb78efbb83b8a4635fa8'); +INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'668da3f157b856ba715f1c2b2c0e356931fa3beeab64ccdf71c15b957d2c03b1'); +INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"61015667044d0dddac3bdb16db67faa6ebcb71758101bfad898fca8ed183e7c3","messages_hash":"be820504eced707b7dc61f3725fd36d05b6264e89b1d465e8eec9e168fa81146","transaction_count":0,"txlist_hash":"298ed692f21afcee61b06fd853cf07e5707dbd63a05f0caff6b6a177edc3b613"}',0,'BLOCK_PARSED',NULL,'cc8a033a56aa304f2e2884db120a69d9525f9e9555f7c7b4155449ec3053fecb'); +INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da7088058920c823a9f2260ba97c56bb31646e7da93c2ce74dc93a34c287a610'); +INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"5dd06f32075c46b6e573d73f12c1c31cf82cac5d1588bbdf302b8fe95c4b948b","messages_hash":"810e52710c97026f8cb61ee50f1368103e4df21636b9aa432397bdcc00b4bfa9","transaction_count":0,"txlist_hash":"528e4b6aee88202f84f9f2b56611d0aba2336d925b8d8fe47039504e6eea1ebc"}',0,'BLOCK_PARSED',NULL,'67318aa047e45e3e7bcc2c90d02b37a1ef3304c59722880a4de1b01707b40a17'); +INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd33eda26f6df6a835a97bd200a1bf2ffdc2ef9c0a2db9d15e307dad178c903d'); +INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"8e1782c2f35a07fcc4c57b34b2226b70cc4c7af2761386f38fc8fd74d53d5e60","messages_hash":"ae25ca0277fc33f75f17767762036f55b49f6722743c7e4ecbfe72e09bc702e5","transaction_count":0,"txlist_hash":"76682f0ffbc6b86d16fbcec967a7562f6f12558c12aa3d9abd8779f51cc870ab"}',0,'BLOCK_PARSED',NULL,'eaedd24b35af3a6ef30664edb18eb0fff31ba609f18ab17cf8b650c6a3537367'); +INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57da20b7d5e07ae0f05a94d0873be6b86c30421e86b82c1024c23dbdfd2ea9ed'); +INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"6469ff80c3890d274817d30602f33d5d4b0a7c0a9e3b85100d21d7b38d894efb","messages_hash":"52e35a802a0df97ab70b4e1f2777aeadf40db5e127637964dc433641d0deb52d","transaction_count":0,"txlist_hash":"187e9ae8428d46b7f8c8d652ab31dcf7c86a574cc781714a71784857dc0d1365"}',0,'BLOCK_PARSED',NULL,'af5a9cba7f748b33f6d5893328899412c9cbb1dee7dce36f2b82d120b5271cd5'); +INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'586041e3f94c58e30b641bfd8623efc5d8b091956d42bbae4d2db76886aea956'); +INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"3ca73c2bf37c694281938a0599335633dccf0284a027f5f3b8e17a9e68cbcdf0","messages_hash":"b84542bf35868e749c26374c6d49188f71646950df4c5e148b2794b7e12fc43b","transaction_count":0,"txlist_hash":"f7830250755fc0566ee5162a06e7308b51c9c0a7a951752be6cff224806a90fa"}',0,'BLOCK_PARSED',NULL,'747c007b6cb043fdbf3105d6352cd20830a2003cabf341d358a4bf7c89aa451d'); +INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e353732147b12f0f7da1f04a656967d890b1880b04abdd5b9a3f9b3f56fee10a'); +INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ae4a36e1ce7d5e11f059301684573cddce85b70ba69188a116e0611ceba5c140","messages_hash":"cf1e6d2f8230e4b520967669c5ecb25097cea49050928d9d43fd75e5df7d327f","transaction_count":0,"txlist_hash":"8d3b4ed30546c5f19f5522a0f57a86c29159ce27bf9e1e183a5ecffd9fbae8a2"}',0,'BLOCK_PARSED',NULL,'d26e13c3a666d4941ff3fe4fa91aaa58e0955b6a283e39537282e7da40551c42'); +INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e2d293cae63a1db85c3d82a4cb837728498ef2b2fd15d06c53713bb67d45228'); +INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c2c0b96c64f1ed555c8553da976e0fcc3a5ef403819ceac49cf22b476281ced1","messages_hash":"5cf30a3ceed0d709cb0b5c39eb5028531a9d80bfbd9cb5d7ea17581c3c069882","transaction_count":0,"txlist_hash":"d9ecf83f3f9f40246bee151938855fce34e0f9c636a5c9c2c80c896eb59287b9"}',0,'BLOCK_PARSED',NULL,'f3d1c02ba6e4aadacdd2f987ea69516654f710e67bc5029df551f38359de48ad'); +INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a31537a39fe817e30f86055584a565a3eea1b0a0482b30ca81c0ae0a1219761b'); +INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"88d1b09f8141b90b44740e4618422298f8a64f2b3d11230c6b04084ef8d11b2c","messages_hash":"4482a13c9bea52d65ee94adfb69aac0bee89623b4520913934a7c9c6a5f3e1de","transaction_count":0,"txlist_hash":"49e2f64485ac3ef523a079732bce9b2197384e2abfb3a4ad9340bca5a7179e31"}',0,'BLOCK_PARSED',NULL,'7c1db44bf09ed4409b98a49e6eb8798fdf1e2da500fd1082dcc87cbe7802ed34'); +INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84521ab5d5e0ec9f61e62cca0ecfc6d8089f8941388bbbe803d26d10d7381001'); +INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"dab22ae7a9216033777136cbbac87a3597cf6478a2fd008260caab3cad0cde3f","messages_hash":"51101fc829c2b78e2d0593dc5773c73fb7dabaf514fcd7dee977cb08c9421b34","transaction_count":0,"txlist_hash":"5406c6e3c63633910da82fc039c525dbeeb1aa818dc450a9d34d43084eef680f"}',0,'BLOCK_PARSED',NULL,'97504fef8c213f61cc01220bbfe205782001351065d130c440c26f19064a8e50'); +INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bfbc1559da56b15ad3c1041bdb0e3c6a803591a040718eb052bdd4d252ab27c'); +INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"a185e60dc97d19a211b0dfaa3f3da154956499b4af146751bf1d776fc68c15b8","messages_hash":"9b392f76b8224d5eec7db732a198ee87b3260852f8baba95185b7ddb67a39a92","transaction_count":0,"txlist_hash":"76e009b37822fc739a1e4abccf9f908a5fcdbed7fac540a719efbff8ebc694b7"}',0,'BLOCK_PARSED',NULL,'232757ac1f5ab76bdcf8f51e31c70a4b435873cf97ccb8b28c11441349e3429f'); +INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31071722fcb073c632279efb0b86503a537ffee6d419d0f0ec906e1d91de66ae'); +INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"622c574321be176c535fde918f319e10cfacaab383978be51406334303d14a8d","messages_hash":"fe483b13911d5128e3cdf7fbf65c7d7b33e88ce236f61e8c371334188a0ee673","transaction_count":0,"txlist_hash":"f3a3c37d89eb008f2194267a1eb5a7a52e9443f8b1f5fe51267d93a57eee27c7"}',0,'BLOCK_PARSED',NULL,'a4e5841ec34eddcd2fa3a85b5d7db17d1c7fb50da350d082c8e505a10f7a0699'); +INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'839849289bc02b6c5041b7b98dfd3498481cdb0320d9a03179265efb705b9eae'); +INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"5556084b92f51175d4de4097fcd820a3c367c2f0630d3a20081296e892462d84","messages_hash":"9d62620e8e0b2ebb2846ad244ea34458a8ef8031469188571dfeba769a3a5da7","transaction_count":0,"txlist_hash":"f284f757d004154b6ab9b9ee9d18281e6f8dd51f25f3f1fc7cc58450e0ba5f17"}',0,'BLOCK_PARSED',NULL,'dc4219b04007d2d7fc6797d258b31b75b172f4ad0f36572f9a1e3c29f13a88f4'); +INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eab9ea039b81fb629fe2ec3f83b9d8e67874f144f4435d19a8d46a968184a2ed'); +INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"fc9dd8ef92fc7d47b187a75bd16e9698d61fa9ce6b4da7bba75982f59b0fbbc5","messages_hash":"e36b2420ada93acbebb22a2b3d4fb8324af81f862a4f3bee9c16976ea9804c39","transaction_count":0,"txlist_hash":"e5f9da1d98725423a240687ba2985b42f8acb274ba0122b4e31e25c57619845f"}',0,'BLOCK_PARSED',NULL,'03e2bd8137b3e84e2c0f4f654bd30acbfc65f20159096c9a1e76061edfd410c0'); +INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abf6f3c720271e78298bbcbe074f45e058817ca00e17cc38b8bab31760f63218'); +INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"21f7329fa27373fba176043db9081b0d9f95f75421e5adce87177a3edffcedc0","messages_hash":"b5f798a239f4152608d82265d035add67b2b8bc5a593024a87f3173d7ffc6007","transaction_count":0,"txlist_hash":"7935ee6c215a123367ddfae34507170148723d08f1963aad7e47b68520fa4e70"}',0,'BLOCK_PARSED',NULL,'f26d3549df3238cf06e6a1c62485803bb1b93842669fcc7d39f7251c50e1599d'); +INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb3881b7db033b28ade074a31cb352e294f5bd8072a4714ce7b40e0f59829fc7'); +INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"19164a10a0602df57d1add2e3a31ad4eef9d3ef9e53e70174b44aa91de2d6296","messages_hash":"83f30b14f9a0153ad52089488c36a948017b2cd2abab7f2502b2c8a7f1e159dd","transaction_count":0,"txlist_hash":"d35a417416c712908cdfbeda76e261a55c605ff8091605a79d4d4fc986ae76cd"}',0,'BLOCK_PARSED',NULL,'b172fa0cdef3ef2a126e5f07386aa918911d692b011792bc6b929085d2faeb5e'); +INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51869bee823bb218308b3baf6c38b908db4ac3c949e2bffcc5c93383cac93438'); +INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"87f1c713c5f2cd84fab28b996008900f86bf9eaad25ceedac1507348a949be7c","messages_hash":"3a95521b8d9fe32cf6061c904fae948e3a4ebd1a18d734d43fb944023ab92e4d","transaction_count":0,"txlist_hash":"44c73622e27c362abf0460a5e0d7b836091523b763b6183cb9815cee30d66bef"}',0,'BLOCK_PARSED',NULL,'c10f712da684b302c480740a07ef7406889e622d2561b136e086b46968107707'); +INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4c6544680bdfc04b35d5567de0a9dee079b14205a7767466b7f033a1aea8fd'); +INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"75264a6a628d669a60b4a8ca7e24b6b5ef1ad2c74d955b8325959f906c3bc337","messages_hash":"1ead8c1166b2720988979e2274b287f6409fd6f8b68bf7d9ba730d37be4ac3e0","transaction_count":0,"txlist_hash":"c1771520c57b0c705c3a5f0d576622c8dd40c399e4946b63ba153af976b23b0e"}',0,'BLOCK_PARSED',NULL,'0f3f0b578e9760753ae3546e36fc5064444c9ef20ce3f4d6189875b4a45ef355'); +INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02ce14746a0d07c1783225f5d36b678298dd7a1e6f4decad41e80ed8239d6364'); +INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"27914e38b3ca9d8444275e5c6d24b5cfe0b4093f7c645d5c1fc3c39e0d3a3c60","messages_hash":"4b5fe8d7693ddc79f5d2ba024807838779813bfe2dad8467ec90090a75abc8b5","transaction_count":0,"txlist_hash":"329ae5ae96b71b9a116cb82d9518110e63d32a9dfcb6fece911201ab6c3a78c5"}',0,'BLOCK_PARSED',NULL,'9bb86fb37cf9c8021bbcf81a46f493113b09ecd39127fc2b50db4b012760a989'); +INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c9b39a1cae16826f791cae98ca5e52ed720b20381a519fc57d5014885d92dd'); +INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"eca83e762899ace4d990b8acb23183263df5f92be10b63aecab3518b340b975d","messages_hash":"f0bf250e00a2ac9cc3fb758f41cbcfdeb3828ad8c09a5e1b089335f97c686f8e","transaction_count":0,"txlist_hash":"6183465e58c5e5ef0f359a032e98d12cd247ff080ae44dc7a90ee35006e74e9e"}',0,'BLOCK_PARSED',NULL,'618ce48a288c89416d805a89217c7cde7e29d4974dedb068d1472fadfb9804e0'); +INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dad5167b09df22c406907837951418de271f0e4121c32a3d42affe290227225'); +INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"3544fab97fe90a35b1f52ba955f88a8149d90329986df38d97e12992201bb187","messages_hash":"2647f9675bc9aef4c5810a0d37259488b99cf6eb3ff1c88164d30aac19df4a28","transaction_count":0,"txlist_hash":"407c0451107403f827f434f3f8f8e3c9adb33362ab584802d87903afe3851f4d"}',0,'BLOCK_PARSED',NULL,'9da7ba771e37231c80d644b813d372abe5a2463af5665d24b41949b0b4be4dd5'); +INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4ceb8ddc475b1c45336948b38b1fb6435ad8129bb4963be52befaca46204475'); +INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"df1e6d8f1be344f78c0b58baf7260c2abdbed3175adc45a122947815c08fcc16","messages_hash":"c6603b3ad9264f282f3f4c95b65a5bd68445c51847a44d5df2902f57ea7771ab","transaction_count":0,"txlist_hash":"d4bc7124f8beb9fe04930a1b19a66aef57669e6bf790a5d38441beefcc001dbf"}',0,'BLOCK_PARSED',NULL,'29ee020f7be94847e970f7e7336310c67c362679985dbcadf07e9582f06a4493'); +INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'419529e24856092dfee7069436ab20631787068fc9d506fc81f63fd3c74a6305'); +INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"8b9febcfe1a9447f6a820c060f503dfe6e5c02738df4d9d63b007fe03847a6c7","messages_hash":"586bba54ddbd352c7b58308253bcc354b178d99d988f9d2d0645acd1120c1f4b","transaction_count":0,"txlist_hash":"7038d6f46cc32e35793799e50fbce7bde13c52c379e3bea10da0e6443a221c62"}',0,'BLOCK_PARSED',NULL,'db1c672dd9db9e064df724ef49ecac5ab1ed906b04df1da7634ccabb69a4bc2c'); +INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36480fe1f10fda7131724d4b12dee1df58d063e2f8fdc74dc9bd9da083b179a2'); +INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b927091b4cf42f8537058a9adbec3814b574c1e1ccd242fe44c5f3671a191304","messages_hash":"dad021e3e421756b962576b700d8a73ab057bcaa21f536d57200f38945612fc9","transaction_count":0,"txlist_hash":"7640d47e11233c9d27a8e868bec5595acd99b3c7326a480298f7ea38c4a66689"}',0,'BLOCK_PARSED',NULL,'d173fad3882ba1c01efa882df47c6beb59a734fb1243923dcec8e0f13a9c637f'); +INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4f7e7cbb0f82e5b0f46b1933a183e9f67e2d94fffcc956a50460b014c21efbe'); +INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"649d094cfc74f90e06bb4514276aaf3b0a0ed45f56397a2f774cae9602d02e6f","messages_hash":"9248b84e4d356487ee97784f5437a907150f76998f52b915f1265dff11c06e58","transaction_count":0,"txlist_hash":"ce9cdd6db6e1bbea3a9446b50b092e504bcc58900befb237580896e1c107eaab"}',0,'BLOCK_PARSED',NULL,'afc14e66992274f23ac26dfac142a896656a34e4245bf656a2818446baeaa629'); +INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b675b648d703877aa7367a4bcdf3ac4fb8bb5e1545482ebb40fefcf5c4e3154'); +INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c9a9dec300afba2cc3f171f76ff4c07cbeb7a41a86a3f498f712e066a8acbd17","messages_hash":"01c8951e997d5633836b621f7778099959f961cb95c443eb0ae310a5b5295311","transaction_count":0,"txlist_hash":"7153d6b86e3d8ed76bed0edd2dbd4fe6200e1e6d82d51dd3f812d6b43109f503"}',0,'BLOCK_PARSED',NULL,'ae28bb13e9c4c26ea51ae9de16e17cac222c12572ffd81abd8ff20cb3a6b36d5'); +INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'332852cd93b4f4c21e94e473c5e6325f12f79bc06f47a5360fb84871da27a03e'); +INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"3c7434887f9373b5370664180ba640fa63c2eb5b85569875105e4f4db67d8c02","messages_hash":"684ff321efef12a06017502ff5d3c288cb3fe021503127d9a805b96613224b6d","transaction_count":0,"txlist_hash":"adfefb6d18cdf44329bf9330e32f265145f60290f2a75db73fea8dd8ed2eb7d6"}',0,'BLOCK_PARSED',NULL,'44b5140ce000f151616b5f757c8f3fcc9740030c7f40583796fd487286dc425b'); +INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b7234193d8daa6317a8d10471d14cec5ff0fb0da1f709e311f343ae7f788a31'); +INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"7e6a09386c3d8552a0dcc25b75143876a3046ebac0ff9cb09d6224ea7e2f3df9","messages_hash":"fc34584264cb48162482623fb22805123c6d42a309a1e3b717bbafbf5dda66f8","transaction_count":0,"txlist_hash":"2776deb848ce539546aada2bc1756d9de92b23e0a8d513f5dbfb1b0bb3be3bc5"}',0,'BLOCK_PARSED',NULL,'a5f9144d84fab86d45e93ce62f9fb428193e7a893b97fa829951d966e76c1314'); +INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c14a5f1c156f690f53d749f87194838fd9c71d81fd7ee158c543ec9eaff9a118'); +INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030","messages_hash":"53165a6a7eb5bef338ac5509678ec395a1821a1db21de30d49ddaffa33c58abb","transaction_count":0,"txlist_hash":"6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce"}',0,'BLOCK_PARSED',NULL,'d8885d24b56356c412def933f079b1ed9561a8dddf509738c7127269400b7602'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql index 4613f5ff24..0e50076cb6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql @@ -152,30 +152,30 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'2d81a3468670b6532dcbc5d7e41697ff15aca083d5e3780778e2f6cba4d7c856:0'); -INSERT INTO transactions VALUES(2,'8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,'6ec80f30ffb172559eb7d1af7ed17f317a4128ca3525dbdb86d1bfacc818a5e1:0'); -INSERT INTO transactions VALUES(3,'1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'70047c0e0eabacdc2f575666720317b02d31d0fb0c0dd12ff8399c9997b80671:0'); -INSERT INTO transactions VALUES(4,'a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'cb9968e5706e6aa44a68604e6aed6701eeb63316ab175efc0fa5fa8a080561a4:0'); -INSERT INTO transactions VALUES(5,'06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B1385519CA199F1B39BB89CAAC062FE3A342F18E393D301D7A56C150A8AB84093A2E93083B871E68CB89E216F9A99C4C6AEA1EB92CBDBAFC5B4B0E160C19C517E',1,'836b1d6d96f5b1d0c93cca1e36df45a881c8e240bd43d3d690056eb2480a6f56:0'); -INSERT INTO transactions VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'b5a95d7d655cb40e81800c2006891e40b1e0db52eb074d8bc6bc6eadee0cc255:0'); -INSERT INTO transactions VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'d5e0055606dccdcfbb5a605326bf35341ff6fe56c7fedb31fb17fe0cdc39d905:0'); -INSERT INTO transactions VALUES(8,'8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,'00d442dc4662614c34b1627d2d88b504afe410cedf903547fa0776f7645afa90:0'); -INSERT INTO transactions VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,'e1fc13f6ea93f3984c4ad70bfe66968407b6e926ca8433d153e3347c505d3cd6:0'); -INSERT INTO transactions VALUES(10,'6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'72576f13d48e27ecee32624b00990b0f161c782a80abb4f57b4da1f5a517c2f2:0'); -INSERT INTO transactions VALUES(11,'8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'549177a785a6c389185b1b6cf035323f787879bdb7baa3159ca5f92a00c6e6e1:0'); -INSERT INTO transactions VALUES(12,'47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'07532d3c2a9697cdcda1ff358b2f4381439deffe5be06598da2cac861a79fd8f:0'); -INSERT INTO transactions VALUES(13,'5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'3563ce8b45e350880d0a051b0b157f99ec551fc1ee230a1c8843d21f1682a5f6:0'); -INSERT INTO transactions VALUES(14,'813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'0e99c34d5f3649841d71c8c34ed4f5aa1c5ce38c45cda20bf500ad28a260df40:0'); -INSERT INTO transactions VALUES(15,'33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'820d199eab44dc21110b89e5210bc07d83a257d5d0c7595d0410d5cc9dfc7bd3:0'); -INSERT INTO transactions VALUES(16,'22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'d72265fd12f4ecd9c417122e366bbe23bd1835d99d2554a20e9252d41291fa5a:0'); -INSERT INTO transactions VALUES(17,'5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'f203086e1289aef19494acb2a48a734ecc0bd65149ee60cec66f839cdb37ff9f:0'); -INSERT INTO transactions VALUES(18,'07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'f7c3acafbffbae86eb37a0334e4440425dd54628c1ffe103aaa4332f612b0d5f:0'); -INSERT INTO transactions VALUES(19,'5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'74fb288e8ceaf5f9cdeaefe2cbdde99ec1eafb8ea3b80ab96725cbc6913ef266:0'); -INSERT INTO transactions VALUES(20,'0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'9ff1232263d22ec7f8d8fcd4fa194620e14b9bb67f8704cce671114867664a4b:0'); -INSERT INTO transactions VALUES(21,'2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'5d2638e1c58ffa4055d6ae17293c34a353e57c7c019a5b1a90fab83747fc6113:0'); -INSERT INTO transactions VALUES(22,'19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'322ca39f1c6a4e524868c74a1bc3ca8d5db6448e33db2511a9989643810625c7:0'); -INSERT INTO transactions VALUES(23,'3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'ce8432a1b0579faf1ec3f8b93b7bea7fa3dd3a8b1a3b74b1bda7d3030e701e58:0'); -INSERT INTO transactions VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,'5769ce4243e3d2e898a792c556ec8da59a8f8a1f262af59569e2b617e5867776:0'); +INSERT INTO transactions VALUES(1,'c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 2d81a3468670b6532dcbc5d7e41697ff15aca083d5e3780778e2f6cba4d7c856:0 2 '); +INSERT INTO transactions VALUES(2,'8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,' 6ec80f30ffb172559eb7d1af7ed17f317a4128ca3525dbdb86d1bfacc818a5e1:0 3 '); +INSERT INTO transactions VALUES(3,'1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,' 70047c0e0eabacdc2f575666720317b02d31d0fb0c0dd12ff8399c9997b80671:0 2 '); +INSERT INTO transactions VALUES(4,'a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,' cb9968e5706e6aa44a68604e6aed6701eeb63316ab175efc0fa5fa8a080561a4:0 2 '); +INSERT INTO transactions VALUES(5,'06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B1385519CA199F1B39BB89CAAC062FE3A342F18E393D301D7A56C150A8AB84093A2E93083B871E68CB89E216F9A99C4C6AEA1EB92CBDBAFC5B4B0E160C19C517E',1,' 836b1d6d96f5b1d0c93cca1e36df45a881c8e240bd43d3d690056eb2480a6f56:0 4 '); +INSERT INTO transactions VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,' b5a95d7d655cb40e81800c2006891e40b1e0db52eb074d8bc6bc6eadee0cc255:0 2 '); +INSERT INTO transactions VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,' d5e0055606dccdcfbb5a605326bf35341ff6fe56c7fedb31fb17fe0cdc39d905:0 2 '); +INSERT INTO transactions VALUES(8,'8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,' 00d442dc4662614c34b1627d2d88b504afe410cedf903547fa0776f7645afa90:0 3 '); +INSERT INTO transactions VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,' e1fc13f6ea93f3984c4ad70bfe66968407b6e926ca8433d153e3347c505d3cd6:0 3 '); +INSERT INTO transactions VALUES(10,'6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,' 72576f13d48e27ecee32624b00990b0f161c782a80abb4f57b4da1f5a517c2f2:0 2 '); +INSERT INTO transactions VALUES(11,'8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,' 549177a785a6c389185b1b6cf035323f787879bdb7baa3159ca5f92a00c6e6e1:0 2 '); +INSERT INTO transactions VALUES(12,'47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,' 07532d3c2a9697cdcda1ff358b2f4381439deffe5be06598da2cac861a79fd8f:0 2 '); +INSERT INTO transactions VALUES(13,'5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,' 3563ce8b45e350880d0a051b0b157f99ec551fc1ee230a1c8843d21f1682a5f6:0 3 '); +INSERT INTO transactions VALUES(14,'813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,' 0e99c34d5f3649841d71c8c34ed4f5aa1c5ce38c45cda20bf500ad28a260df40:0 3 '); +INSERT INTO transactions VALUES(15,'33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,' 820d199eab44dc21110b89e5210bc07d83a257d5d0c7595d0410d5cc9dfc7bd3:0 3 '); +INSERT INTO transactions VALUES(16,'22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,' d72265fd12f4ecd9c417122e366bbe23bd1835d99d2554a20e9252d41291fa5a:0 3 '); +INSERT INTO transactions VALUES(17,'5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,' f203086e1289aef19494acb2a48a734ecc0bd65149ee60cec66f839cdb37ff9f:0 3 '); +INSERT INTO transactions VALUES(18,'07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,' f7c3acafbffbae86eb37a0334e4440425dd54628c1ffe103aaa4332f612b0d5f:0 3 '); +INSERT INTO transactions VALUES(19,'5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,' 74fb288e8ceaf5f9cdeaefe2cbdde99ec1eafb8ea3b80ab96725cbc6913ef266:0 2 '); +INSERT INTO transactions VALUES(20,'0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,' 9ff1232263d22ec7f8d8fcd4fa194620e14b9bb67f8704cce671114867664a4b:0 2 '); +INSERT INTO transactions VALUES(21,'2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,' 5d2638e1c58ffa4055d6ae17293c34a353e57c7c019a5b1a90fab83747fc6113:0 2 '); +INSERT INTO transactions VALUES(22,'19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,' 322ca39f1c6a4e524868c74a1bc3ca8d5db6448e33db2511a9989643810625c7:0 2 '); +INSERT INTO transactions VALUES(23,'3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,' ce8432a1b0579faf1ec3f8b93b7bea7fa3dd3a8b1a3b74b1bda7d3030e701e58:0 2 '); +INSERT INTO transactions VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,' 5769ce4243e3d2e898a792c556ec8da59a8f8a1f262af59569e2b617e5867776:0 3 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -513,352 +513,352 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1,"utxos_info":"2d81a3468670b6532dcbc5d7e41697ff15aca083d5e3780778e2f6cba4d7c856:0"}',0,'NEW_TRANSACTION',NULL,'53b2e2aa5655399876c377f2060a4c69406301f3fded7ad8fdf825b810397972'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','051749f3414b69ec8e38fadebac893305e1bda1305587f1522eef274c4f44da0'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1}',0,'BURN','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','d64a56415794c9a6f6901db7ed7c3d9d1d54f03ecc56e016662d7c20c6b9620f'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"09fa44ed277cd9e448baf3d4a2accc520d57c77fed0d97379ba9bb804e3dda71","messages_hash":"cdd7cfb36849df06cdb98cf660d9e802a268d8bd4cf3604cb545bdb3545114b4","transaction_count":1,"txlist_hash":"7d9cd23062d78e9eb1a892f69b154410935e9675ede8e05fe9c1269cd3c54b12"}',0,'BLOCK_PARSED',NULL,'2c70946bd0beef4ab97dd447e0e44c2f1c85f65c2353c2abb4e401c6ad21c557'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb475aa4506805e7d505353962d5b126243a691365b7f0845c038f73c3ae082e'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2,"utxos_info":"6ec80f30ffb172559eb7d1af7ed17f317a4128ca3525dbdb86d1bfacc818a5e1:0"}',0,'NEW_TRANSACTION',NULL,'196e49f9dae44d77ebe539cfecb2373c592956804165d24a820ea5b674caa224'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','ab6c754cebd7f64bea714240de60397f34b74c5f95170641313bfd21ec42f302'); -INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','29e213e52072e3cc2532bc0849b0cbb8afa260ed85ef4412a976856d1812f7e1'); -INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'SEND','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','bf778822c4357bd2e35930265b0a1fecc7288637897618dd75ec5aa83499bd62'); -INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'TRANSACTION_PARSED','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','560772e66f5c170ce3a31934b8c024fbb0083a0f91d121491f8a88489c34557b'); -INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"b2237a0b0b29b2198355f47d38cb995e013c0e074c29dcbf1b99ed4c0f459c8d","messages_hash":"46cf1a2ec6b4f9f129397cd5b4bae808c2afb11ab272b11c3c82a190f6e379dc","transaction_count":1,"txlist_hash":"adddb3e1b9020e7ef190f661823c79abbc5951801b15469ad9f483c512af002a"}',0,'BLOCK_PARSED',NULL,'887a6248e9a92697e85777f306fd0fa6ac30551688b91dabf7c5c3a08f22103f'); -INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'388f5ef8d9547bf38e7a336dc8d3f0d1a0e4bdd55b4cd33283e133ea3cd6ad5a'); -INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3,"utxos_info":"70047c0e0eabacdc2f575666720317b02d31d0fb0c0dd12ff8399c9997b80671:0"}',0,'NEW_TRANSACTION',NULL,'957d2bf8f29eba4cbd231c82c3071e37107b02e3aa5f73be827b70073d41d870'); -INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'OPEN_ORDER','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','38770d629637aa0d301ff893b6f3863c2b86a773bf8fa3d23492b91497f56eaf'); -INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'TRANSACTION_PARSED','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','9d658cdf78be61a8f03bb7d0701dfbdb87f747a5ef21dab0ba8851bc2e4fb855'); -INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"a3c393a285361d2981551f0a903d45847e7a0142779692d384bc77bac420db18","messages_hash":"a60dc5b15a8402865bc6620eb24f3d1d0db59aff0c18fe1fe324ba57589ea442","transaction_count":1,"txlist_hash":"6fddb621bb8a1e2d10cf0ec8f507ada12be28578223ee53997aad614097bb35e"}',0,'BLOCK_PARSED',NULL,'729a2ca17a80478bcc0496d54b99d515746332a963c69793be7e1a78877a9ee0'); -INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87fdb9df89a97465be3836f0200bc4f8c28bc7b1d0be02c5ce5807544c9f121c'); -INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4,"utxos_info":"cb9968e5706e6aa44a68604e6aed6701eeb63316ab175efc0fa5fa8a080561a4:0"}',0,'NEW_TRANSACTION',NULL,'216c9de6bbb0c260016b90f7d3dc61b46431aaf68c6ce278a6348a15413ca326'); -INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','30c942a76de815c2d409c07db4c54b4285e76c9f62dbc2ac1524b64ee91a5108'); -INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'OPEN_ORDER','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','38423aa5bc76d578c819f2916021fdad019f971249b182e1633f626f4c57b33e'); -INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','fd9032578d77e93467079f5cfaae652f7b984f0fca5418bdd6ba5ef0c7d8b6ec'); -INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','b958618b3f5be2060cd1bbed032242d5ecfd68d8dd746335264febb1b640527a'); -INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","match_expire_index":310023,"status":"pending","tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx0_index":3,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx1_index":4}',0,'ORDER_MATCH','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','8ecd823158b56823b8960a3d2ddc46dcc05c7a47a4036921c1715874f0509919'); -INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'TRANSACTION_PARSED','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','1336dd0cb2323e76a184b31166fc5af62042f86d85f0cd943ab09f377ef41d77'); -INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"f96ba90a471ab5524a574cc4ff72a228a8dc7019824482a664569dcb41c126c7","messages_hash":"025dc5067a0a78c67086cf23c504d129cd15ffd77cbc5f49a30b76f263961e04","transaction_count":1,"txlist_hash":"d6756ca2a0f2a403b0a1714964ddb71bc773e0a18c049008f78670efb7137e18"}',0,'BLOCK_PARSED',NULL,'db88338c959fbde3247f649d535131f2ffe0f46af29e805e481b9e11307bb42e'); -INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78e4425c29f89fa5068c414258f3c8749f000f4a59f2fa61ed12fc1b00bde4fb'); -INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5,"utxos_info":"836b1d6d96f5b1d0c93cca1e36df45a881c8e240bd43d3d690056eb2480a6f56:0"}',0,'NEW_TRANSACTION',NULL,'b7e839f69850c2f8eeedb0a57f3e1388da553e5b79da23741d95a28ce755380b'); -INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','2e4be0b52a42c32ff7e65b21b296da94ae64f6f3c83315d6bfb9a4bfd61584e7'); -INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","status":"completed"}',0,'ORDER_MATCH_UPDATE','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','30c416c0f2f0232483772ceadaf91a54e8a6d108220a24082aaa59cc26dbec53'); -INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'BTC_PAY','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','db0bd7d117a994f41fad29d66a30b55b6775c50d7277b3487b2476b2e7ba8f47'); -INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'TRANSACTION_PARSED','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','70946fefefc662ba45133b7ce74ee57c84dc88b55087e307c07ba9b5ff38aa4c'); -INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"943a23e317f71981b24d636cae98f495b2bb00c949b1603a778eb7500894c844","messages_hash":"9ef44afa61d3b04ba3ce97bed19bd1e81c821d8f105694004169abe0f281f6fd","transaction_count":1,"txlist_hash":"be04682401f137d4d02c7539d1c776bbc76263dea1bb88fc95197128ec1a700f"}',0,'BLOCK_PARSED',NULL,'050c5081a06913dc543b58bf76c513b7b11181684596b8858149571ad7084d45'); -INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80e223db9841dbb973d191d5bfb03b0d606094626cadd890ea56121bce6c775e'); -INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6,"utxos_info":"b5a95d7d655cb40e81800c2006891e40b1e0db52eb074d8bc6bc6eadee0cc255:0"}',0,'NEW_TRANSACTION',NULL,'4ae324d57081868e40b122b2339db1963d2a3cb6acbbb7792f0f2c0570b14cad'); -INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','ea82ba9afa871c4ec3ace91996a4541f1e77a0b3473c40e228d3d14d0448a305'); -INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','9a0a319417797b7f2cf104b576da7c891ad874afa7ecbbacf63d220e7275b01d'); -INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'ASSET_ISSUANCE','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','57a2e210bc10438b3d6f585aa434dbb1e160b95a2a2973d89502a30e2ef83f46'); -INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','11c30e1b01a47523e6e0289411da48be9c79b2f05e58fbb09db7534c51bbcb62'); -INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'TRANSACTION_PARSED','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','78b198828483d050e3c67ded60624450780a6e4c1c87a3420b1dabf8f86c92ec'); -INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c5f3dd2d439a571eec03583442fb051bedf5bc0b0ede92012922b27847af2a1","messages_hash":"5302cc3a2aad2a99620fe17d4f7db57bd319bbca22220d41c4bc88abc87220dc","transaction_count":1,"txlist_hash":"03c8d26098b8e49a297c104f22af44a622378afa711195bd8b91d46f01d68d65"}',0,'BLOCK_PARSED',NULL,'9a95eefc6abf5e44abb963352d606823fd4e03970508be90908a84ebdfd8f04f'); -INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb58d41f9b6b4f0ff905e034317b3d0cf32fb1d801489a410412f9537381505f'); -INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7,"utxos_info":"d5e0055606dccdcfbb5a605326bf35341ff6fe56c7fedb31fb17fe0cdc39d905:0"}',0,'NEW_TRANSACTION',NULL,'fce02e9c512d6688411dbddbfb0d7499353a2069e9d71d0882e035039c7c54f0'); -INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','d43d2d8456fe277d10fa25d94d6068748ed75d4ad4ccc136c4d1b0da027e5738'); -INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','b670549cc31aa7961ee53595d6ad7352a2ed873ce4007300496bbb7107880048'); -INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'ASSET_ISSUANCE','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','981db055a8888143fc1709bbcb4f513dd4ff900faefc9652fe53747ebdbb101d'); -INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','5da134db594b59e36d7ff24976d612f06d8ef2206ef94d9173d19ffc21ab6913'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'TRANSACTION_PARSED','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','6a665a4dde0b926e99a22042ab346a30e79c2380a43258cb87fb9a48a8a2a077'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"377fe894d79d60b011958ed747908b6009c5e0261fa177caefc664cb8db4c74b","messages_hash":"cf3561843277a8d426214eece828a4da68a2c3faf71210a295a19a17bf396729","transaction_count":1,"txlist_hash":"079ec7423e2fe87820626aee8980e236a78e7d51b453a739fb5768d9d520bef6"}',0,'BLOCK_PARSED',NULL,'a6b49a98347ec165294fab92b1de8ed86a2ca01d71632586535115639217e605'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49abb9a9265cd6993f2a0b83c592d40854760515485efe6df829be4e30ba18b'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8,"utxos_info":"00d442dc4662614c34b1627d2d88b504afe410cedf903547fa0776f7645afa90:0"}',0,'NEW_TRANSACTION',NULL,'45345b51d72fac712af3698dc4058581ae7bb17f18396eb41e1c701bb136782c'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','80623ef5d863c0bdaf1233d1acf570bd6b7d46493f9490b25ba710cbb5441cc5'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','e4d4c3606e4b5fe36a7865edb25c4fe4e40da76e71f41a714131d419812d3eea'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'SEND','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','dd69e2cb02af4b88bbe85ec4a39cf154cb85daa386ec4d47b5fe2147330589c2'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'TRANSACTION_PARSED','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','f1d57ec9412bbb85b09bf1e39169043eb5293bf6dbb758eb4f19bafa649793ca'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"4be55eb54e78e829306dfa31248b3073d311f49da420d9844f9aedabfbd296e3","messages_hash":"df1a18d5f84035f4c65a30c493efda958e28f39ebbeebab8277ca1584e97aa4b","transaction_count":1,"txlist_hash":"d57db7ce89eeea61f270e7c676b38d3574c52166322cb0e287f1857a7d085e5a"}',0,'BLOCK_PARSED',NULL,'2ae275f3c056890f153b12ad9bb7c497f0c6ba13cebb4986ab1688f4d3519725'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3579aad985a4f8490df24823647cf57a1d665cec8c7bec9c503b2433ce610ba3'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9,"utxos_info":"e1fc13f6ea93f3984c4ad70bfe66968407b6e926ca8433d153e3347c505d3cd6:0"}',0,'NEW_TRANSACTION',NULL,'8438d0b457b8958bb27d4b006b633ef15817d069bb10ba653ddde932da9758f9'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','1500fadedc6d6932e795e0ef068f932eff06ae33ec1c7e7c01ec7df57388d90d'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','b3c94eb02409730240e73ad632df1874ec0c1855a21ca9729d1aa16fd8f04845'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'SEND','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','4c92034f7d5f0e3896b5dce683533a7e3ce93239e81e484380adfa1b2c2efe2b'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'TRANSACTION_PARSED','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','745307eeeda8ce7ce2e822bd2b655df20da271c555b781bdab84fe41c85fdf4c'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1248da848479b90f9dada38eaa02b9fe1226859e6ed1e3c4a121172786178dea","messages_hash":"70aa51fd28706c9e79bbf9c6102d1122f3a01fed4b84c8a98364cdebc7467748","transaction_count":1,"txlist_hash":"8727f3f9af7958daaecda9f2cef1bad0303d631cf9f8418636cf130581e4bb79"}',0,'BLOCK_PARSED',NULL,'5d95091459ec2b840af9e63789b3e3f123432d745539f6b50e0d60868d92defc'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e2a626e26bb813bef7fc8b66f2e3f2a86891f3301dbdcd02c658bbee5b4f560'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10,"utxos_info":"72576f13d48e27ecee32624b00990b0f161c782a80abb4f57b4da1f5a517c2f2:0"}',0,'NEW_TRANSACTION',NULL,'2aa059b6eeda1c2ffc78cd84dbfb79788739ea1ca74aad7ad844f861b35e6150'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','d1a04a38a885db739429ed0332f1f57e34fec9446744f6b23687aaa36afb7005'); -INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','b1f3858f55f910752c20a96272d2b39a05297d66c8657df61b69a46e38a2b048'); -INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','3f45aeb6a4119edcfd4d6819b36b977957fb7f23877ad62b60d7a52978d8de58'); -INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'ASSET_DIVIDEND','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','47ea520d928871354b476df8a909c0dc446dfe7f3d59a5724103d60c928be478'); -INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'TRANSACTION_PARSED','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','29a3b5763e9a87629f5aea4abf5964243207382081d45b253aa92a3192132d49'); -INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"1e1b07f218127eccdfab98a4bc127ce185cda15314e72328dfe10eb8f2f18726","messages_hash":"acdaa5ea197e782c372f9a8b8e6c0ac96011cf331ebbbe7d53001f78de9e43ea","transaction_count":1,"txlist_hash":"baa3b08e70e0db5ecf913bb99da662ec3dc04a5650f99d2d36408eb8ed6cc4ea"}',0,'BLOCK_PARSED',NULL,'4090902d6f59126ea6df472b85b70644a0436301eace65803ba450d9b148d047'); -INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bdd10458be55c46a4cb03f728e28f427d6e38ffe1fe225cbf659752a850df11b'); -INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11,"utxos_info":"549177a785a6c389185b1b6cf035323f787879bdb7baa3159ca5f92a00c6e6e1:0"}',0,'NEW_TRANSACTION',NULL,'2628b3177a6d95fd362e52b76e172439524dc9d3df22b23c67469c4a0654e7cb'); -INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','7dcc5191828b6efddc88e0698b1fb5ec7419dd2a43c88bcf893ff94a96b5f244'); -INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','3376cf7d630275b1d66609b0b3700ad51781ce41a983ed1163fee167e49b264b'); -INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','0deddea6b769d0bf8dff33bf9958268af05ea2a87850fee7f7a9b6c06deb9b69'); -INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'ASSET_DIVIDEND','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','589c474bc8f345a45c496e1fe174b0c85bb7361383ebfefc288533dc49e5d001'); -INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'TRANSACTION_PARSED','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','2b574b48725c3b413a863f94ff8479389920b0e366d63988a3fe6f19b6225e6b'); -INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"03be7c3d8dc521277625164e3e828be106672cba205129c014ce7771a3b8730f","messages_hash":"8a5519cdfd678d31631807bbe5f96516c8896d8ed7022d917c7ae9bf80075fc4","transaction_count":1,"txlist_hash":"5def9d6ed9fcf82c7ec9dbc2247657f349ec4df0b75dac4444f7ff90e24f0955"}',0,'BLOCK_PARSED',NULL,'e95051168fe8283e56350fa8d327a09298233e183a35f670a5ca5e7d016a099b'); -INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22a23f60dd49ef5dd0985e35b194905d8411fa8394bb9df0e05e8b27e8eb7900'); -INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"utxos_info":"07532d3c2a9697cdcda1ff358b2f4381439deffe5be06598da2cac861a79fd8f:0"}',0,'NEW_TRANSACTION',NULL,'d177ea693b8a3df2982893895d193cf6d2ddf5501866044e79d59d0625db24d6'); -INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"value":100.0}',0,'BROADCAST','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','2219503270215a2cdb58f7f3028a46095e30242d882ca9c393165df77064e44d'); -INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12}',0,'TRANSACTION_PARSED','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','3c00d2153f1ab848c466abb859dffd722bafba067082e4718186f08e41de4d31'); -INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"db6d49ef7cfb461f9431b2e712f694f0747012ae28f3684e0d41476f77fab667","messages_hash":"3df854741f72fd68821490fd6d11941f9c5c70a3f2db77309a8e6dd23e93b029","transaction_count":1,"txlist_hash":"f6d1a346abbb2adae7dd7fe6ddd94061bcdae3ed30bd091958d445c8b5f57f4c"}',0,'BLOCK_PARSED',NULL,'a9650995d9f6b05950f19d7dbb26625237d5d1493f1cbece2c14a8ae62dff9e8'); -INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c64a1e9407f6e373ffa67c30816d5e20a47a345eba55746f8d74c8b61df8348d'); -INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"utxos_info":"3563ce8b45e350880d0a051b0b157f99ec551fc1ee230a1c8843d21f1682a5f6:0"}',0,'NEW_TRANSACTION',NULL,'5406b52a8ae111b6087fedcd96347f28c5dec030f91c57ed521e3ad36ffe8806'); -INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','3838b3ff8b0e56a0c470ecf038df264cfbcaa04d0175225eb8d1d7a3a61e8008'); -INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','1e0f1d332d374864294d1a4f0b92394c2c10caf3989db0a19fc233c86368420d'); -INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13}',0,'TRANSACTION_PARSED','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','7d836eacbbcc1321929ba538c3861ac1ef669a666d2cfee080209e2af169a49a'); -INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"ac399d193def488d3457876edef42dd651b30c976025c3d6f810e4d37c88c822","messages_hash":"ef104201a8351440eabcac45c06be81af901d6f0243cf3fd4777583ad87ef380","transaction_count":1,"txlist_hash":"273ce70d30b249ba5afb8382ddf7ded2d0849044d519fb48224a6ea69b7ba6dc"}',0,'BLOCK_PARSED',NULL,'491d2282c31751c3ab9b4b1105eccda27f25b644475010fbd1fd17a1ed11cd4f'); -INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'532ab13feb4bacb6034143805600cbf75dc073505a46755e4cceb4d869f3afa2'); -INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"utxos_info":"0e99c34d5f3649841d71c8c34ed4f5aa1c5ce38c45cda20bf500ad28a260df40:0"}',0,'NEW_TRANSACTION',NULL,'e06f9af643f6a4fe1f3f159d14a26c47c3d9984cd25c0389428e05494251f79c'); -INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE',NULL,'9a17fc1c9e08ae57f6299e9e0c03793eda43cb39189c1d989e270c9d4e164cb3'); -INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'91a35daea86de53a86c73d936a1a59b9704af7ffe582e59e86a7f2c927538595'); -INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','5bd09450df5b572647be353c93dce9cd81f6802ab174a44a424989ff3ba56127'); -INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','d8fe2e91983a2d545c62dc4dbaeece7d00902a8601e1e8f79c4b5b1213d63fc6'); -INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","wager_remaining":8500000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','43dd9aa3f128460cc14079f6113f02300978d10e7228ee7c814d8f95c0d54cb8'); -INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','5699341ab47f1a3ba8bc0fdee11d4f5a52ed6b4d460ecc6ef1ae3c07156fb133'); -INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","wager_remaining":4250000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','2552809e5f259e825015367e0700b57038ea94c088f3c8c3f60c930d95290004'); -INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx0_index":13,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx1_index":14}',0,'BET_MATCH','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','9b4a252754ef939263d19ae1a8e793897d15f7e39ca5c06cb0bfa693d9499eed'); -INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14}',0,'TRANSACTION_PARSED','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','e56e78335d2224719f9b21206c8f4103f7f814156c98ea8e0bb3683d7583eb7a'); -INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f6fd6f6280b1c580abe8e31de28bfa0f269d453068946733cad69d29f6874936","messages_hash":"f5578fa7619c659bfec7ceb2ebb3a18461f889f8ef7e15bae9fc450ddb9ec828","transaction_count":1,"txlist_hash":"ce4d93afd619a9f22326d72b5ae6c10b24d3075399374184463f65d489a57c51"}',0,'BLOCK_PARSED',NULL,'c71ee10513de558776f60a5a603ce8e6dd71e673aaed8deb74418c69a47db028'); -INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'890fffc8ccd2a9951ced6a23663a22c7696d0679add2326630e3315cde1b21f5'); -INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"utxos_info":"820d199eab44dc21110b89e5210bc07d83a257d5d0c7595d0410d5cc9dfc7bd3:0"}',0,'NEW_TRANSACTION',NULL,'52bb1a6cc7316270bae453cddc21e7850f8639d4e183bd5f56cfadd658105264'); -INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE',NULL,'49012e0015be3288b626003a0af65f54dd92c4837181e28440f4fa99609fe70e'); -INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ce67c78a3df0bb3647552a50d2db47cf9a284be246a54f9e718ff8423060741e'); -INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'e268de3d71cc1ef73841e3946b81f43023d94a1584ecc3454f8b882c8656fb71'); -INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','4fe0f0202c578ac0c3a0bcbd2d33675a02005976883f855d116847e88997a7ec'); -INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','e9fb8eeb64bc069ac5dfdc177b723bad2c9f212fc1f0b69b5918c44760a22a67'); -INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15}',0,'TRANSACTION_PARSED','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','728f75ef694a2a67a966524f20496de8856358a7ed6629311db5ed56c24faf39'); -INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"0c52d56c6f7c25da7b757aba30e890e9eff402155b5497a5420e13e69b7cb54b","messages_hash":"63c5ff402dc15fc0fdf0849146c0a8fc18b4b7f7c7409dabaf3d3bb46a9f5dea","transaction_count":1,"txlist_hash":"7df6ac77f91e828339a1f92ce8197c74ff120f6c00d180bdb19a91f7da14a83a"}',0,'BLOCK_PARSED',NULL,'070c9bc7cd179a03ff3d3178c0c759e827f7cbffc8f795fb9506fe00e6a053e7'); -INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcc1a1558fae188de25e53d4e8f12784b019d30c2376da685ef515d641e62a1f'); -INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"utxos_info":"d72265fd12f4ecd9c417122e366bbe23bd1835d99d2554a20e9252d41291fa5a:0"}',0,'NEW_TRANSACTION',NULL,'8729c9ee7ab4f4d5a5a0a10841b8342a52231b74ffb26d49b3029e4dc7163d70'); -INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','67c61241730c8afc642c7c3cc8a5abeae77f4343c071779c6d579885418a0102'); -INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','5d1755f5c9e8be13d47831c63aac35ef30cad53d32c9e57914cb9a5f3d2d14af'); -INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','46307ede21dfd3e9dfff5cd5ee7bc761e6a1cb48d9c12174fa8669714943e1ac'); -INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','1daafce25a83dd50023f4c4ef49574ef23fe7e800814036499a3272ea511763a'); -INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','bafef7d7d332365755dad54c81597f7bce1e869f50ca294c45e1bde8986cc627'); -INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','d5b972b592cdaa8f5db422f92e5250917af74a7ee513ae313e7626641b2bcf2a'); -INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx0_index":15,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx1_index":16}',0,'BET_MATCH','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','472da67f93ddee462d36e29e81b0cc2c288af057c839f3118f5e7a5322688a12'); -INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16}',0,'TRANSACTION_PARSED','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','6d1c9c971769db5b3dc5cf3c4f88d76767881f5c6b9d67295494b7eeceb74002'); -INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"03cd020f708d5f082f5b63e3c1f58e5f25d564a60699ae0f23471115d9e37d5e","messages_hash":"48076abc31b5f8dca92d2030012b8ad17dd7805e245dcca0d123ddd35c0cf85c","transaction_count":1,"txlist_hash":"45379e27de14058cb9100cc29417da1e5b2534e4434bfcd074c811324e46fd06"}',0,'BLOCK_PARSED',NULL,'52e74e1775b07344901726675e10717f2e578b28805b184e7e787a8fdc55af97'); -INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'819d3f784f8c725a0e6088b3294c83269d9776ad19c15d0ece6a2249e7ce442f'); -INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"utxos_info":"f203086e1289aef19494acb2a48a734ecc0bd65149ee60cec66f839cdb37ff9f:0"}',0,'NEW_TRANSACTION',NULL,'b1715fc8a3fd8aaab3120595807266fcfc7b6dc84b705a69542f269c6dafb71f'); -INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','9946814cee853d4be68661bf1d974aec46952743fe8561f40c31e81f5da3a3c2'); -INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','180ff6bc01f1dc3a5f21b194c88be6cd940bf8dd07c504569448695ccaeda7b1'); -INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17}',0,'TRANSACTION_PARSED','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','fc853caafd185a58c125e2cb7c8e11cdf227f30663b0f6b78ae23ddb7c490b01'); -INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"d95cf7b2af3f578fc64450d484323075e81999a868918d3dbf89160269d68980","messages_hash":"4955dceda957cf6323feff202bbb6cba3b8a439f29294775bbd8166a13c0a73e","transaction_count":1,"txlist_hash":"92ed43fd80e4e254ebff7dc725c32962beb79be51dfe8d62d12bd8e123320532"}',0,'BLOCK_PARSED',NULL,'38a0489b8b7edd94664bf96c51b95e350db11800b01d4d8d2d80222a274d196a'); -INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18f8f25fd708c70d0625498e9748e2c0db497b4a8e46dad7c06b00fde1ec3e01'); -INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"utxos_info":"f7c3acafbffbae86eb37a0334e4440425dd54628c1ffe103aaa4332f612b0d5f:0"}',0,'NEW_TRANSACTION',NULL,'8d79d3e3da218c5ce0a333fa9f1ccf4ed0183251ba9bdcb0f47359824b3a4c3c'); -INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','47025c9998ff540c0ef6720acf913ed0ed96c1461106ff9260558c7bdd40c630'); -INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','b135aa5fa2ff117d6f19cfabf6222f553a0c6188ab55a686558a1c5d633927e7'); -INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','d5fba9a64275b15aabe44e890278fadabf88b0285c7e4ddc394cb438e2a60fab'); -INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','7951afd8bd0275d5d31c51c821dd0281d71515b9fc9d319aa4897607f5a3087e'); -INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','d121f13873565dd43630a10ce693ee44c5fddb6ab5e6c9c490a42f88113ba9de'); -INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','f63c5eace7df7924e76f86ae821f98f254b7a2d56ec40bd696edcb980188cbee'); -INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx0_index":17,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx1_index":18}',0,'BET_MATCH','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','91098f44ea65cf7d9583cdd601e69bc4eb1d7aebb3372d6e3e234e51fdce4a60'); -INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18}',0,'TRANSACTION_PARSED','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','47d50c5eb9dc17c030ecd79e16f24746c51cbe4df6ed6902695b18817e3da015'); -INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"725783dab777f54b11be66fdf47280852fd6b4d8a9b9f2fbba9e92056538ce73","messages_hash":"7b823a53dd39b7ccea7c1a7c4c7789754bad84cf2c0e5e371113733fc1c2b95d","transaction_count":1,"txlist_hash":"f21d857139bdc083724362346aeaa455f82caf0fdf13f2ca880db6dbc6e047b2"}',0,'BLOCK_PARSED',NULL,'544983af4c3278fa3cd60c6d1d1a38881c88f10d949facbc89fd75389e8c466b'); -INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f8d39aa01a0c04ad120aecd598ad9389c112aae023c55aaa65fd4be165f71e2'); -INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"utxos_info":"74fb288e8ceaf5f9cdeaefe2cbdde99ec1eafb8ea3b80ab96725cbc6913ef266:0"}',0,'NEW_TRANSACTION',NULL,'26946e326c305ef10fb73a2f5fbc4aab538b15d4b12c36c7506a98878d4c9214'); -INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"value":99.86166}',0,'BROADCAST','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','d58a0ac1277e4bb43cfc8263123ad93da9443f44cb8e740de9233a9ff786c1a3'); -INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','1a91b168903474a94cf992beab67a681d864aea9599eaa8e358338a62ddbc8de'); -INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','779c7583f41fa104294c4646d097c70dcedfbfce98f68c4d3bb568fe3f6982c2'); -INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','2c9e99df8306934427cae9a23d42550c604f4bf0a4b3937523f1a416a7ded277'); -INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','29303f6cbe7460ecdd78ca29444bd17305b45435215d11bdc6c710593dece9ae'); -INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19}',0,'TRANSACTION_PARSED','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','7737a6b6821782c092ca03fdec951ff4d955c573ff602b46072882498ca210d0'); -INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"05ad248fa836b50ce72a2f61c7465a455cc48ac92f2c0ff9bb9f94e69081d1e7","messages_hash":"5e62f70801f3b2129dfd23282d32d903c77fd54118061c40ef159ceaa660fd2b","transaction_count":1,"txlist_hash":"3e8a8361086aee82a316c2a041d8f4e1d7b4000c3e18263ca84a3267a811ee7d"}',0,'BLOCK_PARSED',NULL,'2fc94643640f7d428b490fabe383c7dd64a49c3b5dc889ed9802dc04769943eb'); -INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1ac54582a6f5012beadcf8edc0840cd94f6565925328524ba475fe90d9cd4de'); -INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"utxos_info":"9ff1232263d22ec7f8d8fcd4fa194620e14b9bb67f8704cce671114867664a4b:0"}',0,'NEW_TRANSACTION',NULL,'5167424e96298c39452ace42023e4e30a8eb769bcda6c5d57d475b5401a2fdac'); -INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"value":100.343}',0,'BROADCAST','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','96aa325e0595c4af17ecb6d0522762da7c855b4902eecf883240432a11b64d4b'); -INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','82976457f80919e8791d127ecc9bbc95cd84a3f7c9b02eb4b1e5410d81764981'); -INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','28d7d9a4218d71dbd88c56058251aaa055ed43a37ddce534f238a1b05d4fa726'); -INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','14427a99f0d6c9836fde6f51247deae7a3cfc6dc20349bc00dc336fe1da680cf'); -INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','6a2d837cb782447af90a86238d3e0eae0bf2bd74f82478868e958859ebdf1d2c'); -INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","status":"settled"}',0,'BET_MATCH_UPDATE','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','40295658a81e064c0f1eac5d3401384a39c77f4e52a66524a172aae5929e92e4'); -INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20}',0,'TRANSACTION_PARSED','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','0cf23893ae2ad150809ba09d9306aed15e2362b17f9fdc400133529eaa398bdb'); -INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"0ab8707bce7b77beecc32ad6124482cb561776ed245ce6dce08f5318e2cf396f","messages_hash":"aba9048e5807f1d3db7db36856e9b2c80f734c42247beee1bba2853f56cd6ace","transaction_count":1,"txlist_hash":"d66ff9e099bc707b866c2595b0bb642657601a36ab06cafa070f18e9f3ad30e3"}',0,'BLOCK_PARSED',NULL,'31a747dd5572763c30d27a3e971248bd85c1cfb572ce700b9aabb9fe22e6d940'); -INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fca52e547d7d74ae3219f59f6ade738b4da9dc0cefce4c7b8927689f699b52d'); -INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"utxos_info":"5d2638e1c58ffa4055d6ae17293c34a353e57c7c019a5b1a90fab83747fc6113:0"}',0,'NEW_TRANSACTION',NULL,'98c0acfb042dd3b5bc1191a371875826ccedadabc20f7606579cc6e593cdcd9b'); -INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"value":2.0}',0,'BROADCAST','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','96d298a1c4aa249ea5e23bf0239b209ac1c6c791715672a31c0848fb8077fcfd'); -INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','865d59aeda51dabc97c2a0248c0782267446b75abf14c961fc66de119982895d'); -INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','ea2997058440468ea848fbbd856cebb18eb5bc31f939715ece399d44bb2128d3'); -INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','d454affa8b6ed679c05e226b8b624ec89a28ec961d852f41d2b6546c58c7bd81'); -INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','6218d38e8e80e3e91534c79df3be96f81616958a52373f11d555558420b0a906'); -INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21}',0,'TRANSACTION_PARSED','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','09f18c07efef57c3ec7aa1ce67f36a62e52032039e857afa53904222c9e2ac0b'); -INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"198edc4bf109549538a2f8f96714536a99a1568fe16fe4254881520474adc68d","messages_hash":"737b668f687cfb8851e94bb1db0a9fd112ee191da880c68f100fd3638e4de83b","transaction_count":1,"txlist_hash":"3bd8ef01a2be7a5d817b535f19e456325bcf2d684ac25f09124d4582040fde54"}',0,'BLOCK_PARSED',NULL,'dec1e645cd9da8612e1760cafa3628bc550e6db50aeb6eed7f6f24b53e4fd0b5'); -INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea0bb97ff185c5068aa702f7172c5a29bb97a44749136c67e84b8d47b2a15a9d'); -INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22,"utxos_info":"322ca39f1c6a4e524868c74a1bc3ca8d5db6448e33db2511a9989643810625c7:0"}',0,'NEW_TRANSACTION',NULL,'157de7aa6edbea767d307aa8471488b5767a6874dbdad389036e600e3fd515df'); -INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','32271cf41d9c0f56ac2f5e765e20145065b47680eec94398b6b9b35ef954f30e'); -INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'OPEN_ORDER','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','6faaebe9b193cf0664379f66334d33e6d29c75d39ac134547859ac2909913863'); -INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'TRANSACTION_PARSED','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','ec668ccc39643ba40d5c3da8590e08fa03048aa384e9ec54f7fa780c069d4fad'); -INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"52482033c5c11ad24257707137b090606305497618e29050b2fdd3e13bc822ce","messages_hash":"e2b4dd145c9cee2d10a246962b4a93c266bd6b4b983fd5cc7c529d542fade04a","transaction_count":1,"txlist_hash":"7d74bbdb4057dc5d0e9b568e983df362b87bdacdddf2724b1ee4c42b6602bd47"}',0,'BLOCK_PARSED',NULL,'f35963e88e328ae804c3bebc91504a39c6bb15f1c1cffe90b311d6ef692167fa'); -INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9a6719688d3b3240c2504208d38799f83b3f4c0b3987261ad380a6d7651fcb6'); -INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23,"utxos_info":"ce8432a1b0579faf1ec3f8b93b7bea7fa3dd3a8b1a3b74b1bda7d3030e701e58:0"}',0,'NEW_TRANSACTION',NULL,'9fa8bc1e6f8d923c6b242c7e64e338465ef2362ea766155719bdf34fe4d03805'); -INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','77d4876721357e6c988fcf028bcb9d910a764366dac9440537112b630bf68d8f'); -INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23}',0,'BURN','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','96771850969758e79e3d3c502403e4e5e0f39952d534ebba432e5815bc70f5d8'); -INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"85d639cc8147885470da26d3c0470dba0eb8b6870d5941b12bcc4afb8fcd9af1","messages_hash":"3dfae7363b9faa49ecce0cfed4e84027ba2d6a879951a3cbb8ecd659e4c7e193","transaction_count":1,"txlist_hash":"568bbeb4d12090c110442540d6f12734602dcf84ae5e331f0391a4a47857d059"}',0,'BLOCK_PARSED',NULL,'884e4255a0f7b38166bfcf86dcf20d73e65faa8cb96b9891ccd42dff2d8af2f5'); -INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e8dda71fa67e164275e0d8b364b24927282d704a1d1532799254ebeb00198d7'); -INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24,"utxos_info":"5769ce4243e3d2e898a792c556ec8da59a8f8a1f262af59569e2b617e5867776:0"}',0,'NEW_TRANSACTION',NULL,'8d54ef3f85312c612cc26bdbdf53b494ec78e1664a73ab4931c0ac475a18884b'); -INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16"}',0,'BET_UPDATE',NULL,'e0468541d153f16c0285e148dcf77dce965011d1e9b0e29b677891eb9b166a90'); -INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'0b4f12661ace09adf661459f526bf14a0e9d17bbac2fab77ff040138c225e253'); -INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","bet_index":13,"block_index":310023,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'8ef833e8a29ccfc539207bf3731f907723691fa7c5d0f4e0c95253e1b3f9e532'); -INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','96a773d14206be167d6b97f968f8b4f04dcb8652da5fcb6b01ba211de45a496f'); -INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','7f16b757a1392c06624efe4630317e4b2a2a9dc23a5519ffb9ea1bb1d8074648'); -INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'SEND','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','b5791a8d963f00cd884cf9867de4880d9d07d56010e2cefaeb5f3086678eb1d0'); -INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'TRANSACTION_PARSED','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','17cdc198a65b449bfa8df2796b2bdeeeca501bffaaf1b5864ea379f500db8430'); -INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"eb62ce47d68491a84b9a29b92db2742021881f0274072f1bc39dfef08cd7a590","messages_hash":"50a70cb61673f43e37c40122dcea6d876a18b0750c4b60b97cd70ad522d0f1ed","transaction_count":1,"txlist_hash":"877a4d466f5f780e8103a42fb7771935ef57486ed7d74aa77757b9cb434893b3"}',0,'BLOCK_PARSED',NULL,'da53aba6c10d8f3c6b76acb56c80d1c44c20f183ba2159a5a873684fef5c6604'); -INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ff7fd3a6f86a26431110f520e803002d45f702062258ae61a4c291dd73f51f9'); -INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"45e73afbc34855b5cbd342a6fb77545e01f3ff4601a04c6dd25dff665aeff484","messages_hash":"7064f6aa2fab1df1994fecb94ec0fc2aa3287c19afd6d56ff907bf37e77d4e29","transaction_count":0,"txlist_hash":"b16082c8d932618c9bd89f7b8d6372190cab18b274ed8dbc1b4f04e5edc2bdbf"}',0,'BLOCK_PARSED',NULL,'3a15b5758af82acf26de61d22cbbc62fd19d1d09cc18c38497005b68c5588f69'); -INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2a26eb863d862300087fc53fb42f11bf7921b51626a3697d4ac7dcbed8400f0'); -INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"714702b25559325c7bacffdf28e0af30c47bf48e6b4fda053c21ea31c7604128","messages_hash":"738c93eeaffb0fcd540f90e0283f8d6c8b1117d792311d9f998a0f93122d16d1","transaction_count":0,"txlist_hash":"391a822509e48a899634f3b8a6b0c99fd298eefd97230b401b40c301dd7e6052"}',0,'BLOCK_PARSED',NULL,'80b21837b02efe0850a2462028f47ecaf2b615e9e4c906d425aa6a14ac933662'); -INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3011262b5232da5d05e4190b7bdd2b7a423b42717abb0a7533f4b663c0feedcb'); -INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"b305741a1e277ba0ce8436b914784ea0156616ac308282a7f29dbca62a54cc82","messages_hash":"3849411409b69075a3729c55adfbf460f3c784712275625a7bfbdd7900e57cbf","transaction_count":0,"txlist_hash":"16c8d91265aaface472342f436e376984d576675529de1f58a188f994375dea0"}',0,'BLOCK_PARSED',NULL,'d301e912d5d7995551dd9b8c60c4d25a34c517def9235fd75d8ac19ea6115522'); -INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c253f1e56b8a2696619bfba69be144929e3e5446a9e175cac828e757d6121c28'); -INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"1f833f7396917e02b4b65b0a05d19754b6a53b030b659514d0c21cad062d45f9","messages_hash":"ba8229f11c3c9d602c755f34071edcd92a5f1faf7d095e65055b0e690de58314","transaction_count":0,"txlist_hash":"d7a61a46b4f6da78607245b9fdd4e0b1d7499b5687805939342a431ef570711d"}',0,'BLOCK_PARSED',NULL,'a53dd64af6de45500130b380402bb66ccfd5dcdb4fa391938168ce8300bfb427'); -INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583e74d8614c9dcb638ff1f9cb9fd6a02a372b97415cfb617920212990494d18'); -INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"47b38906beda7ad735a86b9fd63669b0357b7ae0a0c1a54c9827bc8b90185626","messages_hash":"4276937d9996f1bb75edab14c7af1d00e860e61be3ded18378103e1f8f4e8835","transaction_count":0,"txlist_hash":"a8a0b67ddb47a15f89fd14f227e118bd374dde04f4bce3205d5ee07a8c7509d7"}',0,'BLOCK_PARSED',NULL,'1a0e7ad6dee0dd1b720a27496e5f05c8011ba97468c3b0b896699cdefbf8b1ad'); -INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e236b802e5e391b8f65ac062736bb65bf5d59f963da604deb06fdecfacffcbe'); -INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e69f6c9b649ac04920be70f9b076f7909bcebd8312afa715be3d8922794a72e7","messages_hash":"4a104128be63cab6611ce387dae35f1a85aef88e4cca422517f90d6c89574bb1","transaction_count":0,"txlist_hash":"355199be765ee2db25308e58d6cdfd22c6941a296b51800e8f937cea1afedbdf"}',0,'BLOCK_PARSED',NULL,'c748a4a69232450fbfb6e545903408d1f06bd610e9bd654375598517748b86a5'); -INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ef2ea839ac4c314e038b56883478f8af2515360c519959b67934ea0f6ff0c5b'); -INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"c51828b04433b000787c92eaa7e5abd5cc0bc31c619cb8479aff675af6e00c55","messages_hash":"3b1037567473a39c6691c30254bce767e05eb91329a44a3afbb1d2a10daf0077","transaction_count":0,"txlist_hash":"b4bb7325ae90ccf0095b0970cb4828c98915a2e6694723ca8af1e9f77523d540"}',0,'BLOCK_PARSED',NULL,'7e7f8666d89edecdb0e3bac3faaa4dec34b188ebe154be0bb8aa95f9a263ef7f'); -INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'008d1fa902605d8a7e01415ac146f763c02eb4d1736dca643d86367c19fa86ef'); -INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"26d91568af76b5ad4b357693ecb0b9341aabbf5de5d5c83f9998dc2f95d76e5e","messages_hash":"1a57f0fbf111707d2e3acae2cf0b66ca1b467f9f50f194799e51131678df6aa1","transaction_count":0,"txlist_hash":"b13328f7f6011c05736a1c728af4726f63f557ae1eafab7d70b6b7fd60025616"}',0,'BLOCK_PARSED',NULL,'ab60e89ff5603f7181890f0509f1ebbe55dfbef2442297049679c7f73fb8f77e'); -INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93a729be63aee3c71ec5e3767d377f49611fee34cbcb74345b5f499c8f3a4348'); -INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323"}',0,'ORDER_UPDATE',NULL,'7c1e2f3ef36e0b94f446b665f498654d4f10bcae033e4598a62b69df265a1aec'); -INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'cd719f1e9dccd0c5d67df3fcb4cc1368d58fa680bc98ef21d543039954ae235f'); -INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'fa82a3c9347aba961161a01b2623dd45a4762d6e8e10d51ef98860410d4097b5'); -INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"21f8da71c386ec1e5e31a35c1190b895f2df52529ea028d5fba25e0d57616952","messages_hash":"8591a73d500a1e48ddb372d274ef4e049768600d6ee3b6c94023825de8f14a38","transaction_count":0,"txlist_hash":"80980b4466ca949fa21a42ffb8c22a2f5853722c4fa02bf0cb962e97365384f1"}',0,'BLOCK_PARSED',NULL,'4a3498dc363df52831a7a01e7f304e06c0289d073a8193932c15a428e2e13c02'); -INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3e40021e3e649fe27722c6277987ed27ed00dde0fe1395137f84becdd94c114'); -INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"1c844a38fc28e83406c8019615d0c24a1ea84e6ffe4da392d29f353ca676001b","messages_hash":"c0cd2e695e46640cee105806ff2881a413d0ecf484c26bc15566f3e6886c3ac1","transaction_count":0,"txlist_hash":"0c2f46b4f4d5f345399be6073d2f72bf689f6a3a20e57c41ccd541cc0bae76d3"}',0,'BLOCK_PARSED',NULL,'64676303a88e39d4d3919d58157e03f556ae60949c716153db4b95df77823dcd'); -INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee13f371a5d3cd595d6e21371e4cb788ef849cc425da9304f6a1379044cad0b8'); -INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0533bc0d3bc008b5d65932c569e9f85e3217ea9efbb8937935be93b7a01ec2a8","messages_hash":"70c4d884c1952c33c4251085f3488422194bb9b47bb1b5265295114264c00694","transaction_count":0,"txlist_hash":"9f5f89f0c9821b7de30388b2a0891011612096ac158a70838d4479059a4bfc50"}',0,'BLOCK_PARSED',NULL,'aacb2436e4a635c418ef15b7d3fdd724417b932fd2c49024b74355b2145bb948'); -INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c68bc7e41bed00cd9362cb638d4b0cbc55ba8a4409d52a56d0085ad91e1e81b0'); -INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b5f0b7406fe3b6dbcbb5c3b28fb8fb119e237f07532f500b422058ba898e5b22","messages_hash":"342784db7d2956e0158cf91a69d31e7d5b75bc60d3170f8feb4494ddefebf58c","transaction_count":0,"txlist_hash":"5847c5ec7d8ad0e27d47b3b6ff7df903c4a67a269aa248e69ee918062e58976c"}',0,'BLOCK_PARSED',NULL,'c6827597feaff48fdc3b1489239a3d32d11f438bd8456e5b8dc2db1962d841ce'); -INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445eeb8125d8b57f3b222517e71d7ceb422a3a3eca060d7db9ab3e1f5018f421'); -INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"7519ac8cdf4c13b25929d913e3858855aca68bcf3fe6d3636e7371894af27f04","messages_hash":"f986bffba5ab909aa33bf7dddaa130aba86e37212bca5a0205e838e912a546f2","transaction_count":0,"txlist_hash":"46fea446096a8d96f1f990374d94405f358ef5a3a8bf09aeba2f76977cf867b0"}',0,'BLOCK_PARSED',NULL,'2da6bff26d32163e824a0e95d7cd843ffaf05403ea53c753c132c093337032cf'); -INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c24033b9ba98efb92ada1c7631371ea16843e1fcd4322b05391515525ed24c6b'); -INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"f417da67da0c23d4bc44bbb864de5b94057916e28502641ba70764f44165a1fa","messages_hash":"b47dec27e998db5107a8296f6bf8bf7a8494534d490a4e0fe532fb9ed5ef0fe3","transaction_count":0,"txlist_hash":"e372a6531d2f206be5cca17be0f42a75e2e6617499a6dec377c274f7738620df"}',0,'BLOCK_PARSED',NULL,'a6210b87842649bdb184c977b889aeeb065c4ad32fc6fe99749d671e458cc52d'); -INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db01c646d4c07f970222979eabea799f980b60bed58adaa02c82b049030681a9'); -INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"098eb6f2b0a1c584d969167f50bb55383ab71593ed1f0ca61d83c4513a209107","messages_hash":"1c8849a2bac5e6d1a16423b91c4a79da1d9d5901fa78cdf514132690ea110e6f","transaction_count":0,"txlist_hash":"da7704f6d661aa255af6e2d3ad713fbca0a0e6296b16e3a364989bcb5a4e38ba"}',0,'BLOCK_PARSED',NULL,'1afef2cd7e4d167a8a6aa530c944ea0a92fe1eb8b1107b9d429ed2bfecf5003c'); -INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4847d99d844b0d1e772eb35560e8cc64db22099f110e68f6835e7f03f19bb0a7'); -INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"a4aa60a1320e47c975628f6650d8fdc44b6a729d26a3178031e32fcb48b59491","messages_hash":"db21a59f978f14a7dc6bc79e90bf519d2f6f9977027f16dd4b829a46bfa9f88a","transaction_count":0,"txlist_hash":"02eb5dc168a03d3cd067677480b22185a8ad6731e467c0b3bd5a907834e01013"}',0,'BLOCK_PARSED',NULL,'d3fd8cd0983f27650306f5242cc0ea91478fa94d2fd68725a6768f9e5da80d79'); -INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c58dd30949895e1fc77e81a6c6fb48088f397f1e38e18541b9d62ee05af8080'); -INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"cc5b2af6948531b635b18a4b6698efa318190762c8e4419aa9ca3634e7ed5d1e","messages_hash":"b1f5bbf3497e30f219b506f25fdbb4f4da88f45ae1d21e77d40c6258d4c8ac34","transaction_count":0,"txlist_hash":"f6ba96a6e3e2e3442722bbc1bd770d3f6f0f4a4ffe57d0858586539f81e868b8"}',0,'BLOCK_PARSED',NULL,'7c0b83c0d81eef67f6ba36ce8ad8370bce848f19d1e2ace6f28a66c9fba93b27'); -INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad685d564d0820c57f7f94659d7e01fb4f5a0f00cbff05ad3d09348cd7464e5d'); -INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"7ad02b4853bde78025942e9f58c212a76c1828337610347e516d4a359af804b5","messages_hash":"d126df6eaca69d43425049467657ff6ef20226bf3de2c49d35820a3ff5bde37f","transaction_count":0,"txlist_hash":"d8089b22bc20979dce133885c84c5babb754ff0522d7f2193e1d3157c5251631"}',0,'BLOCK_PARSED',NULL,'06136e7ed45a612620063947387fcd3cf3f833142e1489aa050602bef892eea9'); -INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11885156eb7ad223b2b414675d11b61ae541f1cf16405c2d8060ca608059d7f6'); -INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"64a91735950113c13603e49ca549fae9b30092a9fc02d53a32a20eaef64ab6ce","messages_hash":"00e2758c956e96027b43ad138f0f52d3868b580a0d978c3d887916dcfbf8fd60","transaction_count":0,"txlist_hash":"554d6b2a2182d87b00111b748a5d904aef85a56b92f1d076ad4f866f0d054041"}',0,'BLOCK_PARSED',NULL,'3ea774426da94d6e79ec8c10452be3921ca7b0f4ff503b85d14f435841c1169c'); -INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30238ed136979f4bbcbc61f61b91b0601f34608aa4c2c737fc161a4f75d151c7'); -INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"68107847c7a9dd19612d8b47c1a39cdc446c752f2c05ea8fcd961a42f835d155","messages_hash":"8cb4014c4047b62f3992f4cfa56ca3151d04cdccaa5e572f08b767190c4c7911","transaction_count":0,"txlist_hash":"f2b1800a73d98a15428bfb5289f7ccbb9d3c66b98fb0a36f00ffce8a78279801"}',0,'BLOCK_PARSED',NULL,'438086ce54551c45e42ba01107b9a8e45e8c8999b57687214d645377d165d17d'); -INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5df858deffc2e6818d48f340e23b3505dafe3d5f88bc7a0997b22f3b4a29eb22'); -INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"64d4d51adb6994360b3dbf04663c4f067ba223e62912fe1c5a96a190225bb54c","messages_hash":"7e7c1245270ca9ce6913330ffa09cbe29cc4e9fd7453347f80cf5938c67cf493","transaction_count":0,"txlist_hash":"ce4365857faa29eb04e638064e4810620f434fe515efe63eb2ac49c3adce6581"}',0,'BLOCK_PARSED',NULL,'a3cd2d14787e26018c417ef072f2facae448f4ba2b8dfb36bae60df8bc3b88e6'); -INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e0a5a84ccdf27cd28449d6a42953176d37a64419d0632f64ce490f4bd95a364'); -INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"3ba2d7685f63962f576e9fa94e4d6709ace95249a3064804c3822078c982d11d","messages_hash":"72c3e96325e91dc4e9b305fe54c177a92f30e8d54e8566f324e8fec9971fa8e7","transaction_count":0,"txlist_hash":"94729a0956e8c1b095c9181e01c220b94257ff582e35d87923e3c5ddba3a3566"}',0,'BLOCK_PARSED',NULL,'377275b26ea2758b2f3f6dd1eb1b19860aae9b87642c9ca67b536289006d185e'); -INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0bf4c0569b0c9bcbb4a4e1f5fad1006f4dd691db507c81bf7de0e72a13e9269'); -INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"6502f277568bed2705c5f496e278e5d99310ff6705751a3999cb4b2bc7d725bd","messages_hash":"5619b736e0174a0015cfd92a5f5af15de2e7fc72f2ab671919fd0098be505d29","transaction_count":0,"txlist_hash":"0986f1e944c39e36fe955ff092028c51647a9359492f17a76c682b4346be714e"}',0,'BLOCK_PARSED',NULL,'e2fa60e6a16b548ecc752ccff64b9d11ac7668fdf3fe9af77ebdc9235667dea7'); -INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1e09a4e3ae3432058e1a24e076c7964ad6806aacfed6f4d8d08ab10dc5f9143'); -INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5dae29289f36e64b87d56f9870af0bd5ad77ca45f1093c1a41140ea397945130","messages_hash":"dd620615ab2f575f38019c823903090c58f24160d1201830adda43416539ef0e","transaction_count":0,"txlist_hash":"f14e3c5de5e186beaed6835c7c61fe2274603bb73e62ebea5899ae2a998e26e2"}',0,'BLOCK_PARSED',NULL,'210e1aaa781ee00ed3574fbc77bea254ecc58e6d20e507dca6926c9caffa5e87'); -INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'299fce69b9886e1e91031c6aff0c670d193fa2d438e8a7443d84987480f143ed'); -INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"d5dee49d7b78e2ce4dd2a648e345a52bbfa7e0e76de9e970b1dc0b6aea66c130","messages_hash":"666bbc7cc6aab4534cea6e2a9c499bf54c8cefc5034ff0a53a76ca8c60f5b37e","transaction_count":0,"txlist_hash":"e31cb01f21f653217b3bff72061a63f3778f45a72a8419988a496d8f388cac1f"}',0,'BLOCK_PARSED',NULL,'d70960a2cef2684c549902491048121193f1430e2b1efeffab11549bc0b56c27'); -INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a04c5ecafdd5d0453a496bd4ded968c97377e56b6067a7c16c0ad43a2a17921'); -INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"2b4c97a93933b8986ebb061d47f2e8bbb1672206058ae3c3ae388bab36b8cbc8","messages_hash":"ea70be9299ef9e4094626af518ae72220b18076905f64f7e9f1bd35e9dc4a6af","transaction_count":0,"txlist_hash":"eb45cf1a49da1dfd4ce7231e8f6da96b7241b0b034884cb2de57dc107723b7a5"}',0,'BLOCK_PARSED',NULL,'3b972c27bd7535f28ae626a4b661d9826b58738b5726e11c89abf452a54f54f3'); -INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'103c327f07bb2247c10cf6d654d747676fe47dbfd531ff29e390bb211c2c9972'); -INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"115913763ca7ef5691512a5c6d47cbd49203aee8a3242928f62640912c935872","messages_hash":"049f466d37e49b3984a1bb79b489466b989d6e894619f33f4a9e9447581ef4d3","transaction_count":0,"txlist_hash":"db0d0812374555812015a2058ea7f6bc8aebb8aa7d2824eeeb26b7b42d75f97e"}',0,'BLOCK_PARSED',NULL,'69a0297fb9d3ba3ca5db0140424fce1e15a03cae72428e152a5328dbb6e4f4d5'); -INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c845b0f552e86515bb8333d2b53decb4df3a6aa5afbfea65f28328c8b22302fc'); -INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"72f24dc53c759a08aeb447d826bf64aad71ca8f4ab9640e30e440e6bc050a0eb","messages_hash":"56b473eeef05a1e50b4621085980de48ed4f8031c976f125dddc99afb946d55e","transaction_count":0,"txlist_hash":"b3834012ddc576765f337d3dd8b3c916f66711481c0bfa2464f6ec2678d1512e"}',0,'BLOCK_PARSED',NULL,'8f64b80a91543eb0ab7e9a5077e63edf67ebb1b4182e5e3a7d026c5718cc1eea'); -INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88ed1da67c85008beaff9e2eb3013de656f44cb6f37da94ff5b5332213e1932b'); -INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"07846004f2da033bfd113e13040b0d0d605375370b7437e2ca2ea9467fc80c1a","messages_hash":"8d9d1aa551568452a11231eaf33094e8a235fbf2b368ff62f22d64eda80d1b59","transaction_count":0,"txlist_hash":"35357fb0ca94373955c3cdf08be75d20e9665a9632be0df0c90b567875594049"}',0,'BLOCK_PARSED',NULL,'c6ef4d3464473347869edc06450d86626b2bdee81e6cf1055d3186e135c43079'); -INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31696ed18d22570f01698f5f4c998a1df041aedea3c615032418693dab4965d0'); -INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"7bf9a701337c043a7268cecca5ff765c24600a2056137cd03e3ead9d64ef2348","messages_hash":"ba934fd3019fcfb08be9bfe75bbea568e6f594e4a99222e4c71e40fc97141f15","transaction_count":0,"txlist_hash":"d177ed9e0bb4b3d77bc5b1a044e724cabb92dee3189747bc1c01d1fee7148fa2"}',0,'BLOCK_PARSED',NULL,'972c845f1aea586a6ce337246860b47b09313bc7c20370b4f0eddbb6c0cf4b5e'); -INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'609b66129b09c02ee6aa334ab8e200f9294df725227f72fd0cafb2870bc56919'); -INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"d544aec17018203fe2f5c9bda52a5da53d41d3364b8026770d1f620aa53e6c36","messages_hash":"7c3d102d83354cec29f653350391e7e695863e5c1f7706dab61b75095fad5406","transaction_count":0,"txlist_hash":"8a3b92aa200f79e8aff4a849618914f7d39c34ef2ed636d3b5633a2ad2f647ea"}',0,'BLOCK_PARSED',NULL,'62f209b22064ea73085e2942b5aa828e039b8adf000bc470da110f782e726777'); -INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'305f151ff8147e701f79763a84000ad0d06b3fb8420df6bea8f4de868ed343b8'); -INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"bd3044c66f7e2c24944a9c938b8f162ac8f566a1338444c219396eadf5179d3e","messages_hash":"2a075e52bf4f6fa252522292e30bbb2f4700f4274d771b78a42afc5c21d1b681","transaction_count":0,"txlist_hash":"59ce208e69d4e1427791ae237a6db6a05efcd50fa386f4f8f56862c6cc3b12d5"}',0,'BLOCK_PARSED',NULL,'f68a78cba9a4503c7900953f1553f00ab6d4a826b6506748c83a2233a9ed53f1'); -INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'655f1f5c467322de612f63fed0fe6cc1cf148c126d058d91e8d2f182adb91882'); -INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"b19346f726636aa9da55af6106a471c596a7f7b93289b70d3d33b45334bca9d3","messages_hash":"a6dd9ca3664581c6a79302ed3fb193e342f0c4ef12713e4ba7e60fe274bec1bf","transaction_count":0,"txlist_hash":"8e9d4b1d3ad7c5e8e479640da0ffd8b7423aee810ff6adc4ae2d37d545169579"}',0,'BLOCK_PARSED',NULL,'76d3b41dcd7afd3a77421ecd9093995c30f473c8607700d98d5f2ae2489b552e'); -INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af29e07a32a2b947e2fe33d99b30f6d0134c64ee45233bd741cbe3c27c16de8'); -INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"35c2ad9ccd3bd68cdb0c4d8fd4e30938521b8559c1cec331a29b1802d649947a","messages_hash":"2501b5b9bbc8db7856863b97c8d7a815a8defb26969e6a86da9d04b8926d1ec5","transaction_count":0,"txlist_hash":"e14484629fa3aa2e8ce54505b3983d0f33e7727d3dacc5de57a574c2e0c69baf"}',0,'BLOCK_PARSED',NULL,'35298847c0b4204dd91f4cef653d99c0ddc897346dcf11af6f24abd19d3a9ad1'); -INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'538e864784481812c10f67589b5e027e76a1353525a3e0c1ee2c8f8f84e958af'); -INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"e9a705d6661f0345ffe0f45ae26c0d6ba6bd5a125eef2f0e9558d0702ee6d63f","messages_hash":"d77a5fb5bd075ade951f84581f0cac8f23c244edb445c0ccfbe6cfb36e810b94","transaction_count":0,"txlist_hash":"cfbb1995e2c28020dabca30e98f72afee01b64fe276acacee7e104b22772de65"}',0,'BLOCK_PARSED',NULL,'231626411d1f241b3e7697ef6187f8b86ec6abafb769a000c487577ae1cf49f1'); -INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea99ae0bc6b6d03e7e856bcc1d370accbdce1f0180640158b97421f797384e56'); -INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"61efe4d33a7f70cae34df86753532aee25fb0b153744acb962142691f6979482","messages_hash":"73b8d193cd509a77b44763af64d122a1a318f18d9a955fed0d192c71db8ec009","transaction_count":0,"txlist_hash":"401b057e48ae9e423f354f7ddbb11e70c0ec2209ef1a26dc7ffd0bf6003f1335"}',0,'BLOCK_PARSED',NULL,'281ab405b5a2aed230b76aa6124a2dadfe905b3abdcdd2ee18951547f468b84d'); -INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44f939d97fc80d67b635cd6e55889b90e64237d131504767610e457d5f376ab0'); -INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"59d9785e783c59c12783977087ad439b2dacad9ae1ef2be6384bfc9036da9804","messages_hash":"0a71078c193648bfd3c53f4c03b76b6086eea50b06e9fdf7c9c681ecb22d3351","transaction_count":0,"txlist_hash":"6010ccb1d9476ce07d8b50633bccb97ecff1a229a0ea7701c802aad32f961be9"}',0,'BLOCK_PARSED',NULL,'5eb84304a2c5abc0a3d90fd4ca1cee3536c71127fe55e887daf276bd1180b988'); -INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4738c9b3773cfe9296875ff3eef61d205d2b638b84f8706b167ba977919406dd'); -INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"e257d59ab5dfb01b8396bd12d2fd169f9ac7629365b90bf6e593e627738d3754","messages_hash":"e8f32321ce75ec4726e63d32b3dcc62dfea38a9eba6931db9516d0b230d63793","transaction_count":0,"txlist_hash":"bda63243caec3f70173e1e93a16867ecbcf45d987b6a5f72d1bea54d361f0ed2"}',0,'BLOCK_PARSED',NULL,'4bbfc2dc4ea60b109c9513e01da4fb642dcbe281b81bc42ba23f5b997b0ee886'); -INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ce8edcebfbf2ab9787b7bf69e3fe343e56a289f902cabac79ccafcc78834524'); -INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"0dc0317a88a6fc4ac791cd4d45edcf2a142fb83aa2e8a2f299fcac48a2c2e04d","messages_hash":"ddbb9f74d5a313dcff0f4f0a6f7da3d88cad299c1df4e59b69a69a6993c47876","transaction_count":0,"txlist_hash":"ea9f3db44eb05a8ba1c860cd0a13ea662f84715b59e78a87f49c78377cb6b2c3"}',0,'BLOCK_PARSED',NULL,'5fd531c6f5cce892aad426c5b8503c5472f3047434ebfb879a42de647bc9be05'); -INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81af5c6a77efc296b4fa1e05722b81456c33cfb91911c7516aff3904a8c99a77'); -INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"892d6a49aebb262f2a626a35c0806c488c836c04d33122c2d65ecd8904fe3d85","messages_hash":"4eb612191aff721560d90bc875a9a3289eb2996cbd4917814761b169ecdcd671","transaction_count":0,"txlist_hash":"3fc1380f35c9123d16b9ffbeb23c44f24e4d6001406a484ce30ee5758b8ec965"}',0,'BLOCK_PARSED',NULL,'666a634d513c7ba8209b71bbc4221c4ef103fbd7ada68a1fedc88430d95be3bd'); -INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'500fa0c3ffb6cb04805b6feb7c6adcd19436498b8d2d41a795fedddf25e14885'); -INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"e345abbf8dc42737a9f2dd038534409200d63a9ebf5d1cbf3344ea9413c388c0","messages_hash":"2d2adf98878851493ebd8d2982c2b0903e2c0f452532db7db44d259c1d7eb2a9","transaction_count":0,"txlist_hash":"be23706267b965eb38fa15ec1ce8c17ed5727bfedba0ca4d4be3db2fd703744f"}',0,'BLOCK_PARSED',NULL,'a30b0d6bba00a880a9e9413492bdc7b147135b4eba3e47b4421247562f388eb2'); -INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9397ce5e18b0b1962643fc0e8a0d66d1a0239e2cbd2d676c2924dd0c4887367'); -INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"84ec781d054c0602ed97384cd32cd060b938627ea490a7635fa3ac0babba94cc","messages_hash":"952a765cac09e551860b43599e11d9b4e04cceacfa62b2e8d527575e037571d7","transaction_count":0,"txlist_hash":"1f7417cf7a3d9f07e5a8faf658b166c288aff136ee56f244797ef589f9cf98c5"}',0,'BLOCK_PARSED',NULL,'786dd92f5567a12ca3798d6cb2310a2fc6e71bf505be63ddd038c2ea2a06cef7'); -INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29d6466f5235ffc39067cb01073aa43713ce6400c710e7bcab06341ccf023b09'); -INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"3478612a8bb95c2966891fb4d1b35493a1342364a6f08404b83ac9fdda763aa2","messages_hash":"af4e2ab9d9894c27831f4fc9b95ebe600de27038b17cc4bc3c4e347a800fa94b","transaction_count":0,"txlist_hash":"7b4317e7c2db815ced2d81aaf8efaa6331e475a7a9b3a59041640d43484b1a89"}',0,'BLOCK_PARSED',NULL,'0e8687647eefd910b57c2fb1db09ccf0875f4f7d0729079dabffe660a22b7704'); -INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d8527352debad79019cc7a5c5205ad31911ca5cd6ca383c8b02c1ddb059e448'); -INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"c532c4c5f5e2ae1026ec2582645d9aef06afee46cb9781427a1f40667378ed67","messages_hash":"1689c8152ecef02d7d34ee885ede78233d791f27acb74010c6c15a27406e5dd2","transaction_count":0,"txlist_hash":"89699fdf437b96128d7eb89a45d58e45d0b829789c6e0b29e8972b48ce5e62de"}',0,'BLOCK_PARSED',NULL,'3b30c564117efffe8165e765d36fe09f1eccaeb9839fca23442f31746ad417e5'); -INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db8ddb17f19fe4c72052190e46d0a1090165fcdf57f4a8f7c62ac044f2fb3651'); -INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"5508189396fa6dfe63a7d06fe97a3073e986eb305bcb49430157f99e3848cd69","messages_hash":"70e9092b45626b7680d4f0a97b314a32224b637918c6018adfe3452a10486d01","transaction_count":0,"txlist_hash":"4c49d9334c909f728f3b06a0ef613fb09f6369dd431b7078db5d269cdf9dd4bd"}',0,'BLOCK_PARSED',NULL,'3c233ae8f744cae875e4eefab17b790e25f97e1b3e08e98744913e68cd74d871'); -INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'208a6194669a23b15339f800aaa0c3d7467c287694856e3fd42698c0018fde9e'); -INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"9b0b5d09dc7aaffaf5a3603fa2b914c54b04755a5ddbf83476320149f802292a","messages_hash":"98f06025cd293f2f32530f64a676d771b33c139b78979986a9963b470d460986","transaction_count":0,"txlist_hash":"ef4759403c17482a8f8042fb93a5cae1b741085cdbf73e839638fee316044571"}',0,'BLOCK_PARSED',NULL,'0290c192c56900b2a0e7c431a077bc5fd1a0064b509663ea896aef0c2ee65a6f'); -INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39a2fb10630359166e08a82d4e2693b3b3b15b5600fad02c57093826436cf0b9'); -INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"2e40d398c2eb131e195a667f1b2b5e8de29e80423a2d0dd3935fad6dd7cc919c","messages_hash":"892dac54a3b4e00c51537282af26b89399d21ec8a9afcf74fb08bf3eda858a8a","transaction_count":0,"txlist_hash":"18e3230ce4fdaca025887c118a2f2fa6bcbe81fba5c968301a90b43e27f2c7aa"}',0,'BLOCK_PARSED',NULL,'52b593cab379c4b9828aee7acd71f30b4470ae9e97be363f24f60dc9823fb35a'); -INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c48825258baa9154e5e01939b8b569f45723a5cc1b615dc5a81764b52e547fa'); -INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"763d3d949dc16a797f5b8a2f5a27fd34b4636fa3dbf33eabed5db048e1a848b4","messages_hash":"8b5a82627b0b7c25ac15f51a92fa81a56b4376432ab534d06b7c6de998ea4078","transaction_count":0,"txlist_hash":"7b10cd9561d4a33c7771570925e5a9a879a501ac503004eccc5e60074d2dedab"}',0,'BLOCK_PARSED',NULL,'f7da1230a91d152665efd6f90acc7218336da60e32773ed9c6b599c64616f2e0'); -INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94c5f16a25c09005a99b8542f383f0531b07db58e8dfdf83f775f559d803172a'); -INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"d9b9d6a52f757604a5652aac64c343a47a928160790963521ce33d125486cb0b","messages_hash":"e7829389ce15ba35b7933839e9778132fb84f4e096aec8bfe04c81afbc256d19","transaction_count":0,"txlist_hash":"deda10c92f292c186698b9b4d371727688a9c0ea194963464fd1c5b429fbbff1"}',0,'BLOCK_PARSED',NULL,'0c2351e9635977c9693bb9464456c50df6b3389f6344207b87d4ec6bdcba7dc0'); -INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daa7c53daf241743dc00665403546227fefc495b13e08f0c2d970b1d9b325a3b'); -INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"9c1a650b6029cc982e9e617b619da6d88878453ccea68ff82047581d5cc74e9c","messages_hash":"c9bda4cef6bede46f37e9016c462a01a75fbcc0a81239cc5937b8d11b429250d","transaction_count":0,"txlist_hash":"26e4cfa82a9ed189ffafa596c7022cab40002c8099b48814f3e7fbc48b01b0fa"}',0,'BLOCK_PARSED',NULL,'2cf258e93355e7d967f543045473ab5f6d7cc49a48b57a05b948c66ac83746a5'); -INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8468a8eb0444a23327e0b0b7fea8f44daf906e93f0df21dc0d075ddded60c500'); -INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"32d648a0d0b99f6826376e8badb278c06f95a0ab781cd873e2f7f55219953b01","messages_hash":"d3dd198acd7b8a59dec75034fa800d231eb43b0ec02c3a05b35b7fca372366a6","transaction_count":0,"txlist_hash":"f10d714905f2e84a57e0c792ebf0dd67158f19f352176a571278dce49aaf778b"}',0,'BLOCK_PARSED',NULL,'f31a518f6c20863ba5aafad06ecf35ef23cbd61f1a6ebfcfb2aa3e33dbbfed1b'); -INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97a28b337f607a45b915b80b389b1ee0fcfa0729aeae33789a6241e6f75b7f1e'); -INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"67cd615e67e397cae8195fc8753403563e9100ecd623b2796a46b137ca553be2","messages_hash":"0b7efc03ac30e551e385334d021b23c632ce7d89a19d7d44bda65fc353e77f07","transaction_count":0,"txlist_hash":"d0c0ffcafa826685b59ef036c4315e79cc688ac1ee43097143debf445f6e638b"}',0,'BLOCK_PARSED',NULL,'244f617fd3d7cf64336cd79f468f29de6a3405e7491aa73bcfd73b8f0d72e7c2'); -INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04a76f786203f3c920c5edeb8983cb86f0fe812d14cd284bebf8b6de22c4bac'); -INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"d636f3831cd35437271557e6299024d70c4be6b9a685a4fed61e7d67e61540dd","messages_hash":"d3a4beef978d32248d6ae339d8cce33ebb5bd3168fb9b68a4ba2739021bbe5e5","transaction_count":0,"txlist_hash":"fb11ef8957cdc599585372679a59440580acb37458ed3da092b22974a4857bb6"}',0,'BLOCK_PARSED',NULL,'481df9c5d9b720d619397a9f6c8c4ff2b98cf194f58d1e3bd4bc9ada62a6d40f'); -INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'111dc7329f8eec9971f3e158dfce563540658cb3dcd9e49afb3682eaf8d0f47f'); -INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"abf96247f6b99a24e518d89162c23cffc821d5cae5703f5b7c7c4587e34cdf98","messages_hash":"d8d5bd36c915e726bdbe2dc54bdb44eea9ea6303f602b3700ed0e76466ea26d6","transaction_count":0,"txlist_hash":"67d8b52c93c5d07ce1a335ea3572f0015a971effdecf921193cca273553466c1"}',0,'BLOCK_PARSED',NULL,'251c8fc58619edecfa1be70205c9fce3fb7d475aa77ca9276a157a362f95f9b2'); -INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c574aca645174cafca8e190b905d1b980348f867803e0b8601efc2ea772f34c'); -INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"06aeace2e79321c6776dd1098982e71bfc0baadc55470721022db67a03bd4478","messages_hash":"b92bc5b22e71e91261e73a83d4519e63be236cfcfe9348b68c387dead5eb394f","transaction_count":0,"txlist_hash":"2e148e6946d39fee7c6d1b320122beb1689903e929397821a63e612d5216326d"}',0,'BLOCK_PARSED',NULL,'81b9ceb5d13d3ebb77b364a84a57c571ad6d732bc001776b34243a073df521f6'); -INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9bbd6bad48cd73a170e6a53931b291db1bd0bc7149d6c69876b83009d4eef1a'); -INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ba2c7078ee940b14e584459985a5a4785156762135541d40a138c31ff9bfe4fb","messages_hash":"1134bdaddebf9c5382218910e1f0b419cfee0e527ce676fa98e0e06a14c367ac","transaction_count":0,"txlist_hash":"63832ac6186f8a8e8091579221ada474b43c36f465ae25ddae4ead963207150c"}',0,'BLOCK_PARSED',NULL,'72cd410c224b0bff6fda32af69a7504268f80277cfe899cc05e029e439880789'); -INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8325eae15184d757d8b6f5d312f7ff0c77d350e6b537ac24e0671b28b6a39e90'); -INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"af327b161ed9fa8022f3efd81b695d25ad9ae8f250a6d08739a40b0883262045","messages_hash":"da3a0dc1215829eac78f5d767a670170f757f03b6718e1d9a8d3c1632b900de3","transaction_count":0,"txlist_hash":"47bdbc4933d69cd703c277d9a5e156951ef57791f87f92d16b85c15ab3194061"}',0,'BLOCK_PARSED',NULL,'85dc688a9618a285bdaed4936c73ed08588acd9a0b4399b048f4378986c66696'); -INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0543aa66bbe1b219011f0e977a6f5a9f83731a400140e380d154ed21c3c43f81'); -INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"2c4d6568a9c77737c5942fab33613a1ef055ce21b9f0a9b4a42fcdf6e9536a59","messages_hash":"01655101834f1c5a4383e57d422fd3597e2598a231bf693c83402f53ed1eecc9","transaction_count":0,"txlist_hash":"7d57db6fdebb83dc0fbd1746eb328a94403f4a66e7e003593fe90c95fdef3e5c"}',0,'BLOCK_PARSED',NULL,'143ea6f87742ae14fd5ad68d4c5443d45071ff0147fcca039078f245818478d7'); -INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c8257375a2da3ba5cd9fd18764b697f0e4396233853687edc12d56903b05ca0'); -INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"0b8dcdff637e5e60ae045d4c7646bd47e6047fc992860c99dd422477b9a90d74","messages_hash":"be358a0b7e3ee4d406e3ee14b9cd404a8fdb6972555a8598d9cb228ad54e965e","transaction_count":0,"txlist_hash":"61316fca3bd986c2398fa5dd92a8b874f4a64095691626d695e82e3c30849e27"}',0,'BLOCK_PARSED',NULL,'4c05e7ef13c843af69a6b85f172efb8dfb3fbee793f684fa61bd13f40fd949a1'); -INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'082a784ef30d71c3e6131c046afa551d1f83f8f5fc75b2ce6383b168b58c4f28'); -INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"eec6578a8bc1f5766427f4753ded18cb97c53e710f5fff8918bbdadb59678f64","messages_hash":"445b80511aa1c8629c79f60af11be51474e24316a549d98ce14cc8099d771f29","transaction_count":0,"txlist_hash":"bc5cabb9579b79f03b329c0e5e3c8652d8b0eccde9563d838890218bcc8bd932"}',0,'BLOCK_PARSED',NULL,'25a48bde0e5cc9680b041652536ec79e025253ab6e2c2e8680d4ea9c2e514a23'); -INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58b7b2f14b281c75c9fa52c38a505f6498d38a0bf07cc737987930f8e4ee8e90'); -INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"a2b2ed6a61f1c9a3d322a050178c6be119b89d1a0795fa9c9d7484ad8edfcecd","messages_hash":"b7d972e703eac857c7b4f2bb8bb5f36d3d6d61e2183015c6d5063658f09d4a3c","transaction_count":0,"txlist_hash":"86e50073092182d9a5b37cd2453dd5a7a1af175ad0a1150492d5001510b05e6e"}',0,'BLOCK_PARSED',NULL,'acba1fa77654cb1e0b192eada23b2f5e2af12d4ed275cef8751ef2e4579042e4'); -INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffbd856a18916ad215a2ee1e7fdfdaf71949a548caaef3c91cc820e6a8d0600c'); -INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"02828eaf91883ad16beb5563f9c84cb226269c655a886857b31e5e150a1053ec","messages_hash":"c2da16dd7a9273b89014ec20a155a1d94a37019824b1bf07a60f23e0d98fc291","transaction_count":0,"txlist_hash":"bf59d4fe42c11ab04792ba5c95cfd811a6ddf18e125daebb93695bdd829736c3"}',0,'BLOCK_PARSED',NULL,'a15c500be4bf90db9b8bde2bc295c0807683d48a4099ddf4046fc0098c30edfb'); -INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b56486b292ece6696a2f124ccb88ea716a7f3cc1dc8773e985bdead0e7c4d1a'); -INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"5427b45ed778796c26d0d2ddf73e975856cc9ae081c36762e78d046f6cfc376c","messages_hash":"24b5b1c411dd1205b672a30c52c6202bbf70ec884e3e3d3ea383c557e6028d99","transaction_count":0,"txlist_hash":"ca0801d366e8dc44c01db11f67594bcb3ea3e81a3031cee93d24683b82185461"}',0,'BLOCK_PARSED',NULL,'99cdd8c00a899497c97ff3243b60ab3dde2ea610efa6bbc75b9b0bab84e8dacf'); -INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8867036490e83612801d01870422c916ef956dda9518c495982659227159df9'); -INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"34c2664f81b1bbb53c728636097bc4b7cede67bb318ddcc5e5e6b5735bcc55a7","messages_hash":"84baf6fda414c991518e6ccd0f5a7ab75c8026e5283f9383f10dcb5fa2dcee9b","transaction_count":0,"txlist_hash":"321bd59dc3c2996a1a2a6f74905f89a8db172b3b2b35a2d1cbfc6d06f49d09c9"}',0,'BLOCK_PARSED',NULL,'b7abe3549a56b255a146d1cc37d61a643d6ddbdd8c4f03645ac74ff346e8dab5'); -INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95a15ab41733d036908a9598de50b0447b86776abd457ad55f43a6ffbfd76e3a'); -INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"14615dfa6194665d43cf2f495b8f65fb9efa04c2e90885172d229ad4a9dd2358","messages_hash":"2e0a9f989a77873aa89e50cd308c8772bf827c6457d596ce10718374dcc0771d","transaction_count":0,"txlist_hash":"3ef6f8bdf30073f297852db2b7036374e3d2c1e91b0d087cb2c6c88e400de110"}',0,'BLOCK_PARSED',NULL,'0900a55e9fe54633bd09498ad347e3cf7c0327b35eb17094b3a4625918246788'); -INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c5a613def3433a0d21094667fe2107206321f4a086fe1cffa0a507a3d7b512a'); -INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"fc0f077548225d481384a1aba2d91ed4ec8b2df0f0a57ab603305c615672b25f","messages_hash":"7d3ff97e27c84b8070f94368ec21ce817e2e8724f3ce9ed0e912579485760812","transaction_count":0,"txlist_hash":"0788356af4b45cc44c143c457d069e64d54aa12703f8c376cf3b98827052c173"}',0,'BLOCK_PARSED',NULL,'d864c4be28185e728553c8ac54554e5fd2664b1b5845525e07dc219a23f06521'); -INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9abd2829929929a64a234fa9f3ed4063b8e40e207b54c7cb66eb61d4ca6f403'); -INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"5749263295014a597071acf2293fcd185d02a6a7b3a96df859aae3bf146b276e","messages_hash":"17fc977fc701a764e28139fdf1e0094c2409da1b483a07b2cecdabc66d1bbbb9","transaction_count":0,"txlist_hash":"02938682157ea8b10c49e9d87ed444c1303a952a00f6acfe33a1661e84868cc8"}',0,'BLOCK_PARSED',NULL,'cd246450f0e8dfba77cba77dbce63236965c2671f2205f48f7dbe576f215bed3'); -INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1569c8bafadedb33bfd7c62d2284a0e6f8c4d4bad143a9d0fd96c24015f9cfef'); -INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"ae369a1ec3e4f2aea602eab8c7ab1181cacd6b8d01582c96c4771fdd7b3de771","messages_hash":"116f33c905cf1981ab7da9781d643891b2c36cc82730c370a7a389c5f1b2e898","transaction_count":0,"txlist_hash":"04aaa17c2a3dacf6c38b16ed63d70aea7b9546dc7e733dd51a3c08248ca13eb1"}',0,'BLOCK_PARSED',NULL,'00aea6459a23909fdc47832c29b5aee1fb08fd274040ab311b6483fd2c5bdc71'); -INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07369fbaefddf3fd2e8d9ac966eaf68c492e12a90ed19481d25f3007431a30c9'); -INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"06a2ac591c418d2b01c74edf2524100afd1140c3933f32120c4cc3180c1de3f0","messages_hash":"98a0547c308e122d7c8af33fd866af798f6834286399f5472a67cc3fe92b3767","transaction_count":0,"txlist_hash":"421eb90f1258261c97512745b3543fee15ae8d17769d523646033851abde9c75"}',0,'BLOCK_PARSED',NULL,'4b1338355e564735d78a7980dee06d591ee94670d0a85032c2f01921a557680d'); -INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab53e8a9b15c7f72ecbc70de835b93d4fae50ebe346fc754a09e652ce5a693b9'); -INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdf0ae4d5d06b8735e3e62f5a76a902fee40742fc760578dae98b43635f2e57a","messages_hash":"6b7cefdfa2550e8d99ed1c5f0baa496e496a47ca5e4dd3f709643c5f4d907a43","transaction_count":0,"txlist_hash":"cbe924452487ba251291d1bf1ec518a7233eda0aa956d002bc2e0933d0057c53"}',0,'BLOCK_PARSED',NULL,'eb1212d4e1bb374cf999efc989162648edcae3f9c5a1154173aea11c7632c0d7'); -INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd88d51ad72b0313b8bf383ec84bb9ae781f3b0f750bda44ad95646e0756245f'); -INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"77d836433add0cf3f7691884ec1607dde9a3996df00128703644527fb096bab5","messages_hash":"a41e690e1bc931a48c6420fec2999266a6088e6b6a6eb6043d045abfd6223860","transaction_count":0,"txlist_hash":"2dad9d43a8612157867a046cc0dbc8939f30c41cc8f527a1e184c93004cca63e"}',0,'BLOCK_PARSED',NULL,'7f76cf9908d537dc921f1fb2bf3c7325a49185527e48a597a9da7c62b45ff68c'); -INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bafcebb70ecced4144f75790dd7097726b6f1ed7ef592a1fbfd38f5c975eb8e5'); -INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"770a0187b5c98725dc32e15a414b9323030f407749fcb0652b1e1f2e4e762e7e","messages_hash":"67c11e93a9c14e402dadc5dfaff7e53e83df98c16c6486d25c6f6255b534916c","transaction_count":0,"txlist_hash":"251e12514d80ad256c13398d257708ad2dfb3b70db674695a8d72d977337ac90"}',0,'BLOCK_PARSED',NULL,'247ebe3420b3d618be3f2f96555f26c4a0c8a0e71a389cd4c1e98fa6437ad808'); -INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a03baae6e6b0fdb7f899e820b56f5b79433e0d0b4e446e8b24dca4ec28a2bb02'); -INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"567e91f9456ecd020fbd2fe940d796ac976981485f870db8cb0bc41d77a0fd0f","messages_hash":"1d47d96274fb003456daf8f428e980a27f74975735c87f37879ed0c5fb717354","transaction_count":0,"txlist_hash":"48924c125c80fbe8887ff318ebbab0edf8629e604eed0561dd48444bc4acdab3"}',0,'BLOCK_PARSED',NULL,'8bd216afd6d322fa101e6fb9318ede564c0241896186256eb81359badaf1d23b'); -INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47725afe9ee459b3862b12470d2fdfe7726e74c9d34d7dc6e7283c5c2afd373b'); -INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"447ceafb93aeb346eb98d87db46f07f4d1f51ffde3d44adc6056a624bea3b0c3","messages_hash":"d73f9168822ea96d7e310145ff303035693ca29a9be5089dfc77a1c98caa0554","transaction_count":0,"txlist_hash":"213f5672119909ebcda9f987e3bf69dd0404134584b36c56acdd3596a1ea6881"}',0,'BLOCK_PARSED',NULL,'a9ff6ea9616e3fd51d99e7af0937be473872a6e6d9c31ddcff31c7e0342f22aa'); -INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be10985cb2caf8b458ba61e81d41924ab3f97c9e028f2d1b4edb3af35b1e8e6c'); -INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f510ec6201f4eb850d4f62b399d0d360d0d8cca7e3d955f849ad59a22fba1677","messages_hash":"08d4d7f19122d0e1a8e63fb9d5c2cb883d521a48c51f6234029e630abc1b7397","transaction_count":0,"txlist_hash":"e504e97b361e32b0256aeb1640291eeda547dc564043835013086c87f5e637c2"}',0,'BLOCK_PARSED',NULL,'f11090a9eb20ba6dcf484bd08c4c9e3d08a8329c9df71e87fbaec17f1a7e8844'); -INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcc72cc687d0791fecf5abe4db358945052d25920d414de976cb4c656b6ad6a6'); -INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"1f956e2c07defac832b7c90982c1e7a1192988c4d1e622b54b40b78065deafef","messages_hash":"e58313adb26c4265bdd393efbfe363dcaf1c2c1bd219c55ebcecbd1219c9b152","transaction_count":0,"txlist_hash":"891969418c97f41be742eeb562f39cfe92543c159095f58c5f58c8c2b0274423"}',0,'BLOCK_PARSED',NULL,'05d0f725a42186c61eabe00e0ebb29167a9db3c706f84a56d80567435d5b8f49'); -INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b07369b42a5750a0ab10d45975e40340e4fcff9067b1a8fd2f4a657fc91da64'); -INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ac4cc3e01feb10ba2211afdff4ec43a4ce13a12e1a90dc6f675c390e6395b1e3","messages_hash":"31c7403032ae032349b6685314b783b829940fd5f843b25e39e5d672689bdb79","transaction_count":0,"txlist_hash":"71e61b2d7aca45ccd7cfb6bda957b18fa076cc16bcbbfb63668e4c4f2749b7f3"}',0,'BLOCK_PARSED',NULL,'538e366218ac2b9183d604025ffa0be1f654e2ec04368639158c295cfe9bb41e'); -INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa1a0a28b1adee4f0db5fb38edc2b08a3b220062853adfc103b6970c085b12de'); -INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4","messages_hash":"1b2b42ed277c3eccf500db635ee0cedbe6ecd9226db87a8e1ec54b94865652c3","transaction_count":0,"txlist_hash":"e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30"}',0,'BLOCK_PARSED',NULL,'6a52c52316152afd946e7f4d3e72c3399de2bf322d3d8c9fee1ebedc04f1b2a9'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1,"utxos_info":" 2d81a3468670b6532dcbc5d7e41697ff15aca083d5e3780778e2f6cba4d7c856:0 2 "}',0,'NEW_TRANSACTION',NULL,'0fcf936267a6bdeb9edda74c33396a6aa09e3d07c416b7f039b304e2123049d2'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','d9bb60d44e1097eeda825dfb016dc0ae41b1ffef2c92b8f88954ac6d0cec365f'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1}',0,'BURN','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','9e6aa91ab4bb41488728971f572cb04ea3528c6587782478ca2548adc8cca4e0'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"09fa44ed277cd9e448baf3d4a2accc520d57c77fed0d97379ba9bb804e3dda71","messages_hash":"cdd7cfb36849df06cdb98cf660d9e802a268d8bd4cf3604cb545bdb3545114b4","transaction_count":1,"txlist_hash":"7d9cd23062d78e9eb1a892f69b154410935e9675ede8e05fe9c1269cd3c54b12"}',0,'BLOCK_PARSED',NULL,'b0497ecc25e8d8e4a6a34fb48843ea20044206249386b6320134f279d271352e'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a7001c49db508d30e4b17aa99365ba36442d8d63672f85bb10f8400256f3231'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2,"utxos_info":" 6ec80f30ffb172559eb7d1af7ed17f317a4128ca3525dbdb86d1bfacc818a5e1:0 3 "}',0,'NEW_TRANSACTION',NULL,'93697e838265b8dab6b7195b2d31cdc5e11e1e85e9a4087284a969be1daffc14'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','f121f8bd84cdf302490d7cc6523d702a25c31f80177cd41350d0d3af0f4114e5'); +INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','f776648ef42ea22a5d03f12af4bcc08da7739c086cd8a5b4e6a66a2828833e23'); +INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'SEND','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','a89aba2309a87b107ff3d368c155dc843fb227040365a1c7bfcfade81febab83'); +INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'TRANSACTION_PARSED','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','b3a79cab0b2b17db44d3abde327241077d75554357745b87bf10968453145874'); +INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"b2237a0b0b29b2198355f47d38cb995e013c0e074c29dcbf1b99ed4c0f459c8d","messages_hash":"46cf1a2ec6b4f9f129397cd5b4bae808c2afb11ab272b11c3c82a190f6e379dc","transaction_count":1,"txlist_hash":"adddb3e1b9020e7ef190f661823c79abbc5951801b15469ad9f483c512af002a"}',0,'BLOCK_PARSED',NULL,'1b3da0224f4f47defea7c456790f56c7ef6b711c188e510c145fc4e3544fdac8'); +INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d52c7733065ae7b499784997016ff5ee2d4169600f0906be109b1279852eb0'); +INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3,"utxos_info":" 70047c0e0eabacdc2f575666720317b02d31d0fb0c0dd12ff8399c9997b80671:0 2 "}',0,'NEW_TRANSACTION',NULL,'0917a7bec2747898cdcd96e235c30ce56ccea204dbd4beeca9cafe088a9cc72f'); +INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'OPEN_ORDER','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','898c4b138d89329f8757af7af68b6d91524e0bf68fce9b2299da8e3b6fb8c9cd'); +INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'TRANSACTION_PARSED','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','603b2c45094f358610d09f0bfc0197e2b127251abe36a9009b1ab212a0c21928'); +INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"a3c393a285361d2981551f0a903d45847e7a0142779692d384bc77bac420db18","messages_hash":"a60dc5b15a8402865bc6620eb24f3d1d0db59aff0c18fe1fe324ba57589ea442","transaction_count":1,"txlist_hash":"6fddb621bb8a1e2d10cf0ec8f507ada12be28578223ee53997aad614097bb35e"}',0,'BLOCK_PARSED',NULL,'99efbedab9f4dfffd2ea78f1ecaebbc5a174abea97754542352b8b0bbd30b90c'); +INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44fae87fa0b1d0e83dcf12ebde413e7a4762f7b9d78e4907f88e400d7b717f9c'); +INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4,"utxos_info":" cb9968e5706e6aa44a68604e6aed6701eeb63316ab175efc0fa5fa8a080561a4:0 2 "}',0,'NEW_TRANSACTION',NULL,'e44b255f140f03a28451689cc371965e2da0f02a5aff4d076702986a48c3a809'); +INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','9bdce2bc64b5566d44ef57e544cb9a270c82223753bc64dcaa9d1cd3c6b8a693'); +INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'OPEN_ORDER','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','d37532903ab100c09847d0fe299a61bf54cb129245353a1e983f592e8b3095b2'); +INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','25f188726cedb8a491c078429228bd281d4dd6ea71db374497c9a1208f1db339'); +INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','4aee26d95386551b7db33508edd9d885ed469ec294e4946de84e2004cab04a49'); +INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","match_expire_index":310023,"status":"pending","tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx0_index":3,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx1_index":4}',0,'ORDER_MATCH','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','5760ab650f769cba76dfabc145bbe91c43b6e9183b6f5d1010f5c57aab473ca5'); +INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'TRANSACTION_PARSED','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','01cfdffe63997d765689a7ec5e3cc22d97ec618961937fc6807abf7e3ccc1090'); +INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"f96ba90a471ab5524a574cc4ff72a228a8dc7019824482a664569dcb41c126c7","messages_hash":"025dc5067a0a78c67086cf23c504d129cd15ffd77cbc5f49a30b76f263961e04","transaction_count":1,"txlist_hash":"d6756ca2a0f2a403b0a1714964ddb71bc773e0a18c049008f78670efb7137e18"}',0,'BLOCK_PARSED',NULL,'2afc3e49904d43f1a2ebcfc5e4cf34fca34780bc870bd1ed5d63a1cafe45f90e'); +INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2b23a4720267c39d29dc2404c2b3f697d295c300fde8768b7aead4ae46a3b3'); +INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5,"utxos_info":" 836b1d6d96f5b1d0c93cca1e36df45a881c8e240bd43d3d690056eb2480a6f56:0 4 "}',0,'NEW_TRANSACTION',NULL,'af7112f05973798f35a32364e2094864a49e8fb1861df36a4f1bf1310d1bd146'); +INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','19879eb16af0ed74e6ced0e297a2f4f97be7e138f2ee41117b53005c85b00026'); +INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","status":"completed"}',0,'ORDER_MATCH_UPDATE','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','983ae9a6bed798b6bf03a70e1513c0d94f959903dded71649f9ee99025425c42'); +INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'BTC_PAY','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','f4ab1e8ada28942257069dc99daf167e7c05751f2f7dafbe90176bddc47beb17'); +INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'TRANSACTION_PARSED','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','fef584869086830224949a366ea1e2628e450bf96fd3f6c029980f587d690476'); +INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"943a23e317f71981b24d636cae98f495b2bb00c949b1603a778eb7500894c844","messages_hash":"9ef44afa61d3b04ba3ce97bed19bd1e81c821d8f105694004169abe0f281f6fd","transaction_count":1,"txlist_hash":"be04682401f137d4d02c7539d1c776bbc76263dea1bb88fc95197128ec1a700f"}',0,'BLOCK_PARSED',NULL,'c7f56018317c646e36b9eeca4d30de84b3a2c8a62eb1d65aeaf2c47423cf2f3c'); +INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0df42d2b4384964ef234df55e9ab22d7dc2b1fca42d618383317c7d5fea82fc7'); +INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6,"utxos_info":" b5a95d7d655cb40e81800c2006891e40b1e0db52eb074d8bc6bc6eadee0cc255:0 2 "}',0,'NEW_TRANSACTION',NULL,'0ebec76c211f9c7b57fcc36badddb78a3b5541fa464efe0c1a62dbfa514dfc70'); +INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','bc6c3e6b0d47e7360a1cc70c75d94683aec821f127b225473de9fd0419418b0b'); +INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','1ab04d3fb458a3701fe340826007d8d9cdc935efbcad962a767d9daaf5f52248'); +INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'ASSET_ISSUANCE','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','a72491ae86c0685c7dff07e0a32d0827eb220cd5d05377410d70b77c980d4350'); +INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','0d912279653adf04ee66dcdbd3ad3360bd599e1228dcb359b9ba3ea842f57705'); +INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'TRANSACTION_PARSED','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','b31573d0115d65246a986761a153c76356b35f5062664a87b2c590db0173dfa4'); +INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c5f3dd2d439a571eec03583442fb051bedf5bc0b0ede92012922b27847af2a1","messages_hash":"5302cc3a2aad2a99620fe17d4f7db57bd319bbca22220d41c4bc88abc87220dc","transaction_count":1,"txlist_hash":"03c8d26098b8e49a297c104f22af44a622378afa711195bd8b91d46f01d68d65"}',0,'BLOCK_PARSED',NULL,'ef720fc828f47f808bcae13e7c67cb505df7b6fe584a535ca1d67b10f72f7d9e'); +INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51089af48d4ac4a21032a0b66bfd7b6ca65d63364447b081c991dd0d18ca4d2'); +INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7,"utxos_info":" d5e0055606dccdcfbb5a605326bf35341ff6fe56c7fedb31fb17fe0cdc39d905:0 2 "}',0,'NEW_TRANSACTION',NULL,'2721a16ff8bf6c5286fa5bd37100c198a3e77856d283ed7bd35f5b704bc56b81'); +INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','eac3a985c44a01a5b11797b94e46d7135981ed73926f29d9533b4ba990830af5'); +INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','9d5b58da55fc789f24ed448fc1374e3e3d3b9e531ad683c50e70f28856e33540'); +INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'ASSET_ISSUANCE','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','cd672f62eb8a98094f27fd7005a9c5e8b27a23dd2543250850c6cc31378bf5e9'); +INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','63137c00052e98911cb4b546b01c008ec244916aec1f9a5d598081a515be0147'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'TRANSACTION_PARSED','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','045b59efd72c2a5d60c4b743b145c3954c4f6257ba7984f3ca9eee3158aa9386'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"377fe894d79d60b011958ed747908b6009c5e0261fa177caefc664cb8db4c74b","messages_hash":"cf3561843277a8d426214eece828a4da68a2c3faf71210a295a19a17bf396729","transaction_count":1,"txlist_hash":"079ec7423e2fe87820626aee8980e236a78e7d51b453a739fb5768d9d520bef6"}',0,'BLOCK_PARSED',NULL,'d71ad06c6c72526a56fd9addd69d346022e16a0507e09b4cd6d0b1cbf833d722'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f51aa4b9c0579049fedadc24d99fde8afade7b3ef68027a8d3af14c7c7b60c5'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8,"utxos_info":" 00d442dc4662614c34b1627d2d88b504afe410cedf903547fa0776f7645afa90:0 3 "}',0,'NEW_TRANSACTION',NULL,'87bbbf9233036a4d41768c4b253dbcb9dcbc1016d986c56f06c5540e3cc6c12c'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','fe64f18b66fad5bdb0c1751d1af97be93b64d9c618fab78f38bf98e2cc95ddad'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','4e98636dbc153c9be4ca97f72e734c9e2a563b5440295694820c93a876421adf'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'SEND','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','49de358061c070a32020d279915a886ab2a8f4a0368c96716bad3b06c74bf68d'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'TRANSACTION_PARSED','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','c51130e28f63a3fcd5852bff762aa86b06039e80682c4819d4a2c1106554c0c7'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"4be55eb54e78e829306dfa31248b3073d311f49da420d9844f9aedabfbd296e3","messages_hash":"df1a18d5f84035f4c65a30c493efda958e28f39ebbeebab8277ca1584e97aa4b","transaction_count":1,"txlist_hash":"d57db7ce89eeea61f270e7c676b38d3574c52166322cb0e287f1857a7d085e5a"}',0,'BLOCK_PARSED',NULL,'353c85af8a469b823143685a1f46430896e2adce08cb5923389cb27328e4f662'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b354f15fdb58492c0b49b02194ce08d415a35b5b93db4c463d0c2ff16b2ea799'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9,"utxos_info":" e1fc13f6ea93f3984c4ad70bfe66968407b6e926ca8433d153e3347c505d3cd6:0 3 "}',0,'NEW_TRANSACTION',NULL,'1c6c223a28aa9b025e39467164c2bd1f7381aa32c030590bdbb13154c8feccac'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','b7a0c6e2128c5936a668c1a913fb8a763051b80b3b8ff59b1e7bb7920f36bc40'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','693e24467bd9d1d823324f89fc79f6d2896dd061e1002167156358b3be30c96b'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'SEND','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','54225345f23afc3ab7f171c000ab73dcbc322d02943b561c0931f139e38e8f35'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'TRANSACTION_PARSED','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','64880be0f752ec1464639a0367dc7ce81cc21814a7b734529ccdc78a38047466'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1248da848479b90f9dada38eaa02b9fe1226859e6ed1e3c4a121172786178dea","messages_hash":"70aa51fd28706c9e79bbf9c6102d1122f3a01fed4b84c8a98364cdebc7467748","transaction_count":1,"txlist_hash":"8727f3f9af7958daaecda9f2cef1bad0303d631cf9f8418636cf130581e4bb79"}',0,'BLOCK_PARSED',NULL,'c8df680446095b25b0bbda717db01be0b593055bc91a3d6839f26aee5d4b6c9e'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3fb02b464c077cad49092b2360ccc2fde20bd2141ade5f7c1da4f1f1a97f77'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10,"utxos_info":" 72576f13d48e27ecee32624b00990b0f161c782a80abb4f57b4da1f5a517c2f2:0 2 "}',0,'NEW_TRANSACTION',NULL,'7fa8b1e625e4c5209312bdb298e8ea2b9600b6bfe4df3880b3d4f384a2770e6b'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','aa39f67e37bedc2f388a4610ca4e4f0278b88b3f3943b842eca5512f171ab0ee'); +INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','7411e8a5a9162f1e304788a929fb1f69ad1097917052ef79c2a83783d60e7fca'); +INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','bbb83edc50b6487b50a2c2e9f3c0c049df4826dcbdfc94e61b20b1368425c476'); +INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'ASSET_DIVIDEND','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','802938a0eddbce6503a3740dfe0b39cc7daf3445e9ff092fe7391f4b0f2e4515'); +INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'TRANSACTION_PARSED','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','13ef13e9b09ef084824fa30698fcfba43759c029889dca1becc4e5b1da8942cf'); +INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"1e1b07f218127eccdfab98a4bc127ce185cda15314e72328dfe10eb8f2f18726","messages_hash":"acdaa5ea197e782c372f9a8b8e6c0ac96011cf331ebbbe7d53001f78de9e43ea","transaction_count":1,"txlist_hash":"baa3b08e70e0db5ecf913bb99da662ec3dc04a5650f99d2d36408eb8ed6cc4ea"}',0,'BLOCK_PARSED',NULL,'de61e65660d625c97e1cae6a3a4758805b970bc283634518710d0a1a7c12ec91'); +INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cca20539192164960bd916982718432a3d306a324367947cf30a6c83828158d'); +INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11,"utxos_info":" 549177a785a6c389185b1b6cf035323f787879bdb7baa3159ca5f92a00c6e6e1:0 2 "}',0,'NEW_TRANSACTION',NULL,'22f75c32cf1cbcbed93b2addfcb16ea6b735122a792e7330a073a2e5fc27f451'); +INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','7482bfc803d69d5af0c16c138c57fe19396a9b2f86dd1a8f08e71c61e3a7e72e'); +INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','7bd208828e68b1641eefe6076a5dd61ec838d04ec26ed4cc6fcc1c288974e72f'); +INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','dd16b7de2fb56b065c1e26960276513077cea6a5090038404a2550e669b507f1'); +INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'ASSET_DIVIDEND','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','765635c43a0867d50d5e76d454a8ae5f93d0265018fbde35ef4c77296213c684'); +INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'TRANSACTION_PARSED','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','763492e03b97e94df34446291605a81e6f1568a168c8caab196b07cd0af6c8d6'); +INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"03be7c3d8dc521277625164e3e828be106672cba205129c014ce7771a3b8730f","messages_hash":"8a5519cdfd678d31631807bbe5f96516c8896d8ed7022d917c7ae9bf80075fc4","transaction_count":1,"txlist_hash":"5def9d6ed9fcf82c7ec9dbc2247657f349ec4df0b75dac4444f7ff90e24f0955"}',0,'BLOCK_PARSED',NULL,'be798bf2009b1df9e44df736072fe1adc1040b1a0b3d4bf5463d965c694e573a'); +INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21459eb2b6f5cc91879f9665f52ef07610add526b2f7b9ab4b6fe9f10764902c'); +INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"utxos_info":" 07532d3c2a9697cdcda1ff358b2f4381439deffe5be06598da2cac861a79fd8f:0 2 "}',0,'NEW_TRANSACTION',NULL,'62028ec4e6b99c7d23d0a1b83b589f5a07eddf550c5dc42e272ad265f11ba14b'); +INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"value":100.0}',0,'BROADCAST','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','178a25f338ec3de956765044eee5d0d1ba8bdb27245bcd134e05815c3e3fc7a2'); +INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12}',0,'TRANSACTION_PARSED','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','6f2375fd0ed83e1c3478f6b6713bf5cc3b6c7ff9664a534992aa3552bb1706a4'); +INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"db6d49ef7cfb461f9431b2e712f694f0747012ae28f3684e0d41476f77fab667","messages_hash":"3df854741f72fd68821490fd6d11941f9c5c70a3f2db77309a8e6dd23e93b029","transaction_count":1,"txlist_hash":"f6d1a346abbb2adae7dd7fe6ddd94061bcdae3ed30bd091958d445c8b5f57f4c"}',0,'BLOCK_PARSED',NULL,'832188d3210609cf6317da12102857a98cf1cc8c94553e5fe18145093b732e3c'); +INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bf60a45165e2d75edfbe109108db14967977b6a1418ed6271ff73f432130e89'); +INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"utxos_info":" 3563ce8b45e350880d0a051b0b157f99ec551fc1ee230a1c8843d21f1682a5f6:0 3 "}',0,'NEW_TRANSACTION',NULL,'33aecb53cc898045fd3ac92c5fc9d059e09293ed525abcdeeb8a074883f9c43b'); +INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','8add9e2e35c3bc5f1579fe67789e6d04325f1b24fe0b2aa483dc706ffb50560e'); +INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','bd3da6f876c15316e519e8fc410b1a34a594da05b694cff9efc73493c8a445e3'); +INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13}',0,'TRANSACTION_PARSED','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','5fd603504be5da8b078593aa51325751468ada8de64693edc501b56eaaa21c0e'); +INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"ac399d193def488d3457876edef42dd651b30c976025c3d6f810e4d37c88c822","messages_hash":"ef104201a8351440eabcac45c06be81af901d6f0243cf3fd4777583ad87ef380","transaction_count":1,"txlist_hash":"273ce70d30b249ba5afb8382ddf7ded2d0849044d519fb48224a6ea69b7ba6dc"}',0,'BLOCK_PARSED',NULL,'1137566eab008b9ab98a4a617f3e6921cb9103182bb142dc5084d62d30b9f951'); +INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d0bc7179dbf1f66cb1070d5ec813656fb1cb1c628366dd0cb4292ade6016f62'); +INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"utxos_info":" 0e99c34d5f3649841d71c8c34ed4f5aa1c5ce38c45cda20bf500ad28a260df40:0 3 "}',0,'NEW_TRANSACTION',NULL,'75ebbe021f9c338b0d5e7218814e6cec3187f0bc22827d9d9c2cbc926f18b44f'); +INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE',NULL,'5db88daf64269965e84cd7ad48ef58bef1adfda64cfc839ff05a3e437d033fe6'); +INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'6e35d27d018a17626ca0dae1e1e68c6be5bc1b753122d5160df91299b2c0e84a'); +INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','075188b2981f83b5b0d2bf7b020be424850d32a56690f26b9b39b25dcbf24d35'); +INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','f07e0f29281e04256025fcc15ee01f318d8cc199431a7f2e222d6a0b1ec83321'); +INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","wager_remaining":8500000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','58072385454cb1e0791823a28e8380b77ccdf22bb52cbecb25eafb785bec6920'); +INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','33dea7d4af4916393252dd95b9864b63a7162e66ab5b8a66661ae191589023d4'); +INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","wager_remaining":4250000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','fda3063d7c376632d03cc5a82bb2b1e0917a4c40ce0ba8aadabeeb5e84f7013d'); +INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx0_index":13,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx1_index":14}',0,'BET_MATCH','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','c0e8247a6ed61a634846d99ee33c981567cd678b05a6da7dac017abe5a9849b2'); +INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14}',0,'TRANSACTION_PARSED','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','8ee14fbb1571aca714d883d986a41f4f16c7165cbbd4dc7be29fd3425b032566'); +INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f6fd6f6280b1c580abe8e31de28bfa0f269d453068946733cad69d29f6874936","messages_hash":"f5578fa7619c659bfec7ceb2ebb3a18461f889f8ef7e15bae9fc450ddb9ec828","transaction_count":1,"txlist_hash":"ce4d93afd619a9f22326d72b5ae6c10b24d3075399374184463f65d489a57c51"}',0,'BLOCK_PARSED',NULL,'ecee7b23f69a3d4eda08a216148d9082d74446708c9a344f9eaead0ee5cb1c54'); +INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'322728113e575c2739505d3ce39a558c60209166f7678822a22543d8c6682bfa'); +INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"utxos_info":" 820d199eab44dc21110b89e5210bc07d83a257d5d0c7595d0410d5cc9dfc7bd3:0 3 "}',0,'NEW_TRANSACTION',NULL,'d814c1a3bd9b12e657d4060f0a1542c741bf7d50d56711af2e23268730c018e4'); +INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE',NULL,'8786e24802129e051b331ade4a0b46dbc8019167b655a4431a1ca4356fcd6d12'); +INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7737e4c8dba7bdfd9e65dd23e16e1d5b9146c7a8f3bda5bdaf832d4c6c821301'); +INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'7d87285d2756fc1fcdcc0fadec1a691beea276d99141780ab2229f0df75ea381'); +INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','972fc38adc43e448c970f753e9f67dbd1e2ef944e21ded823a8ae0d16d3b5bfe'); +INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','a7faba64460a4ca0dad6070a63c5d0fae0830e15ee53f2474fb76633056769f0'); +INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15}',0,'TRANSACTION_PARSED','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','5aae1987650bcb55190ec89c1a4b6282ba5cb3ee648201702e287aaaba729504'); +INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"0c52d56c6f7c25da7b757aba30e890e9eff402155b5497a5420e13e69b7cb54b","messages_hash":"63c5ff402dc15fc0fdf0849146c0a8fc18b4b7f7c7409dabaf3d3bb46a9f5dea","transaction_count":1,"txlist_hash":"7df6ac77f91e828339a1f92ce8197c74ff120f6c00d180bdb19a91f7da14a83a"}',0,'BLOCK_PARSED',NULL,'9ba53f82ac2222afbab539eb16e72ac5eeb46e8c28dea44414362142e399c51c'); +INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04ebdea63d02ae8fa8945f1b2ac4b6c7316aebbe8c6a57afc11aedd218ddad45'); +INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"utxos_info":" d72265fd12f4ecd9c417122e366bbe23bd1835d99d2554a20e9252d41291fa5a:0 3 "}',0,'NEW_TRANSACTION',NULL,'7128223a3fcc7aff0624f0c09302c691e2aa48b2b8d1d1604f4dfc465966e107'); +INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','b63e66019239c8a1dba11a573b8b210f772a25a6bfa3371d65976a67a942b500'); +INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','b1d8928f44cdb93e1328e81231ee3de84ca86146eef4b2ebacc44c52ede459f2'); +INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','048a65781ddd4957b1f632554d17c022e23a0885b8835bd43d0d4fe439f15fff'); +INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','b98a54f97826f349c573109eebbc4e1e69ced7e5f454a975d55b7311e09b7e18'); +INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','60d7af824815d31ed7c93807578e4086243194ee24e4f72d9edc4f0816b196c7'); +INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','3f9c58e2e559207be4c7017be65d131e924071038ef508188af5851b1ab6daca'); +INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx0_index":15,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx1_index":16}',0,'BET_MATCH','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','64db84be8b0ed3dd35e9d439d0517aa62f27ff49e9ef9eab2cb677d099519e42'); +INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16}',0,'TRANSACTION_PARSED','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','d5c10dd71b4879e0792063bb22b1e3f6e0b55b1624726be3df73a8f1be591977'); +INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"03cd020f708d5f082f5b63e3c1f58e5f25d564a60699ae0f23471115d9e37d5e","messages_hash":"48076abc31b5f8dca92d2030012b8ad17dd7805e245dcca0d123ddd35c0cf85c","transaction_count":1,"txlist_hash":"45379e27de14058cb9100cc29417da1e5b2534e4434bfcd074c811324e46fd06"}',0,'BLOCK_PARSED',NULL,'2cb22a26094f9e6c1c0ca0abe0bcb5e2c5b85dfde1fa04abb7bd8849b222deba'); +INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1e723fffca7bd5509a2df91e3571ebaf7626c2f31f72cabe9146c9db5fd8ad1'); +INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"utxos_info":" f203086e1289aef19494acb2a48a734ecc0bd65149ee60cec66f839cdb37ff9f:0 3 "}',0,'NEW_TRANSACTION',NULL,'5b3a172f227016417d971888ce8a24ffaf0c39786a7eb658ced8fc3923357179'); +INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','c461020d5e11bfac83b24cd263d690d0897c8f95810e0d3f491e2ee6a2c93d8b'); +INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','911c2e8424136f651511b3580170983b55e10d7f2760642c82d5992fab42d024'); +INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17}',0,'TRANSACTION_PARSED','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','5e77c4bc35d3f7102d23c0f8768985c9c1cf7e3d488183f15212b28510d84f9f'); +INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"d95cf7b2af3f578fc64450d484323075e81999a868918d3dbf89160269d68980","messages_hash":"4955dceda957cf6323feff202bbb6cba3b8a439f29294775bbd8166a13c0a73e","transaction_count":1,"txlist_hash":"92ed43fd80e4e254ebff7dc725c32962beb79be51dfe8d62d12bd8e123320532"}',0,'BLOCK_PARSED',NULL,'ebd1fc970b9726449fbe8381f1d4fb8b89f75ab553723c6576a07ac7d519f79e'); +INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cf6eaef333cfc85a76ac4ba7b5232800685314f522031e6af279a73d3b3f0b7'); +INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"utxos_info":" f7c3acafbffbae86eb37a0334e4440425dd54628c1ffe103aaa4332f612b0d5f:0 3 "}',0,'NEW_TRANSACTION',NULL,'7c2172e13b4ad68ed4e781b0fc312cd11b7896a9aa3f10537d4c542f62049ea4'); +INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','8185840dd82c26a206277ddf21c17cb3ee389360c8c1d5c2772d43eb1f22d5a3'); +INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','af939d7311df22a8a18ba96bb40c92904574d09c921421448c70d4028a4d430e'); +INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','e138fb4158c66cdc0a31c250d97ba9e27acf0589fafdbe887d3788f7a0d94e91'); +INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','1e9afd626bce3d7688bae86544864cd2a27a390d9f133b846e2346c0c221e75f'); +INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','5dc8f9be3bc975c11c8f5fccf22f1bbc969bdbcdbdd25aa1a1cbef27f7f34166'); +INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','4a83ab7a6f5b3a0f161d38b382133d710bb9dfbfcf92ea7d2a76903848c8e025'); +INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx0_index":17,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx1_index":18}',0,'BET_MATCH','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','767a1cfb082a7533d54eccf33f53444d766be4cc44ed37e36746d11a37cb7ddd'); +INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18}',0,'TRANSACTION_PARSED','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','c1838a955a6e2312ff8977f986eead2eb8cf74f4f9493b974da4e83a55f429e9'); +INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"725783dab777f54b11be66fdf47280852fd6b4d8a9b9f2fbba9e92056538ce73","messages_hash":"7b823a53dd39b7ccea7c1a7c4c7789754bad84cf2c0e5e371113733fc1c2b95d","transaction_count":1,"txlist_hash":"f21d857139bdc083724362346aeaa455f82caf0fdf13f2ca880db6dbc6e047b2"}',0,'BLOCK_PARSED',NULL,'0fb811525d0facfced85bfe4d7074b78939791ad611a20a524eac26d5b5bb5ce'); +INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3366862979d89a44c2cb9f2f1d6dbf88b4bc168d87f9f400d47c5b1f8db835f5'); +INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"utxos_info":" 74fb288e8ceaf5f9cdeaefe2cbdde99ec1eafb8ea3b80ab96725cbc6913ef266:0 2 "}',0,'NEW_TRANSACTION',NULL,'f153cf4cf9845b15129d812021672fd3cc7d4712862166e99c32ada2fe2e2cf0'); +INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"value":99.86166}',0,'BROADCAST','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','8aa299e4b5ea021aee63e564823207dd901e7e2df7ddbd185563e347f55792bf'); +INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','aae4fb99701d7b61b03ce718c03ab309b3a0f93f42d97f1ef73a7883c27b172f'); +INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','f3eb8c2258c17ff8125a3035f82c183f93d07bd205ace51b694206fba692c68b'); +INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','e80fb59deaccd46cef207580f72a647ea80a6132b5693c76f718e20d46106a29'); +INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','cc73d2e3d0183e093e64981182c7c4986f0c2d42d6593ca709d9687d4a973692'); +INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19}',0,'TRANSACTION_PARSED','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','43321033d9c6f6c826099d3cd581d273737ebff7477801b6a536fe1b285ef103'); +INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"05ad248fa836b50ce72a2f61c7465a455cc48ac92f2c0ff9bb9f94e69081d1e7","messages_hash":"5e62f70801f3b2129dfd23282d32d903c77fd54118061c40ef159ceaa660fd2b","transaction_count":1,"txlist_hash":"3e8a8361086aee82a316c2a041d8f4e1d7b4000c3e18263ca84a3267a811ee7d"}',0,'BLOCK_PARSED',NULL,'5f059698db1138e641427e02b0bfd27832a2fa7fe181444c58e6f386ef89130a'); +INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede08b2e46656970c9661862e834e6b7693082a1617e9f1f1b4a097e63976fae'); +INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"utxos_info":" 9ff1232263d22ec7f8d8fcd4fa194620e14b9bb67f8704cce671114867664a4b:0 2 "}',0,'NEW_TRANSACTION',NULL,'e5daf09bba67cbc3ad7e6ba5c6a6116849bf25a07fb4d8b2fa250d4ca811588d'); +INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"value":100.343}',0,'BROADCAST','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','46b560617dae78cbcab10b4527989c238a4c0c34e2b8e35c977dbc4f4b91c7d7'); +INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','dcfc0ca9f23a87a390e16be38fd9380409cf28ac44eead312da93b0ed003bfc8'); +INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','a2d96a0fcb60bbba057c7cd221712e024bd2a9346ccc5229bb5a7225ff3be17e'); +INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','b1a5b128ac762371289ba344ef1cbaa4d7479d0ab08e93d20e70c240b1e91fad'); +INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','a55a66f67090efe469ef6589df1a0095687a1275e234dc7f91540212ab5a23e8'); +INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","status":"settled"}',0,'BET_MATCH_UPDATE','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','e4bae57d2691d1e650c1296c16715d00882d4315ab2c3e73e8baa324697a3af7'); +INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20}',0,'TRANSACTION_PARSED','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','f158361c06c470caf762e4a30aa2e61bc65c8cca650dee9832874b75a13ebe79'); +INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"0ab8707bce7b77beecc32ad6124482cb561776ed245ce6dce08f5318e2cf396f","messages_hash":"aba9048e5807f1d3db7db36856e9b2c80f734c42247beee1bba2853f56cd6ace","transaction_count":1,"txlist_hash":"d66ff9e099bc707b866c2595b0bb642657601a36ab06cafa070f18e9f3ad30e3"}',0,'BLOCK_PARSED',NULL,'47dbf36cc6d432d08c5760264359c677aa7107fbe10bc7ca78a0634387a99321'); +INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e9ab1a6906b73f50e87dc1ca727a74adf31a982f3d0143aead757af8109a71'); +INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"utxos_info":" 5d2638e1c58ffa4055d6ae17293c34a353e57c7c019a5b1a90fab83747fc6113:0 2 "}',0,'NEW_TRANSACTION',NULL,'e64bd5c46cfa967cc562cd72b098b52cbaf7f03c5c895cba312a40f941a66af1'); +INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"value":2.0}',0,'BROADCAST','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','85b42d934f016a71f77b582b0a2e0661bb82087ceced7ccfee3326f57203a51b'); +INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','c848da7cb6155657c31e546ccbef439c88e34420ca2bded021fbfdc71562e0ca'); +INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','8249930051412b3c93cfce146ea329e72eed7ccc6b08e4a00795810e16af11d7'); +INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','c920f04eabbb6d062c18698e3382df5ca8e4fa53df64ee90bd7a36c8b4c10914'); +INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','33fac518e686753f582027e53839433f56c90ee20f6dccd4efd5328b4314b6d9'); +INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21}',0,'TRANSACTION_PARSED','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','6179bef4053ecdf9bd3047b17c568198c089850b41adf3a823cc4a6f40357de1'); +INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"198edc4bf109549538a2f8f96714536a99a1568fe16fe4254881520474adc68d","messages_hash":"737b668f687cfb8851e94bb1db0a9fd112ee191da880c68f100fd3638e4de83b","transaction_count":1,"txlist_hash":"3bd8ef01a2be7a5d817b535f19e456325bcf2d684ac25f09124d4582040fde54"}',0,'BLOCK_PARSED',NULL,'18fb2cf7b56f497fc9652b8857be577388ca8ee5e341fd7e76d262ed2d7025f0'); +INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54c757c8471cea042aff9a429cf54874d46ef8a11688f9d7ca657d023cb1c6bc'); +INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22,"utxos_info":" 322ca39f1c6a4e524868c74a1bc3ca8d5db6448e33db2511a9989643810625c7:0 2 "}',0,'NEW_TRANSACTION',NULL,'1b6847753bd49c391f95237775809a9d36c57828d28691d03cd573fb02ab0867'); +INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','d2f752e0e413dcece521e6893b4fdd4d73d7a7691da38c1e5ba2dd778765c986'); +INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'OPEN_ORDER','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','629c5c669f69d77b20eccd6b194e191d33d2de2de67652037fe34230790c138a'); +INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'TRANSACTION_PARSED','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','9cc1ea9c6ed7915ca87daa0485d5047d81e0965315f586a60818c80028c78f00'); +INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"52482033c5c11ad24257707137b090606305497618e29050b2fdd3e13bc822ce","messages_hash":"e2b4dd145c9cee2d10a246962b4a93c266bd6b4b983fd5cc7c529d542fade04a","transaction_count":1,"txlist_hash":"7d74bbdb4057dc5d0e9b568e983df362b87bdacdddf2724b1ee4c42b6602bd47"}',0,'BLOCK_PARSED',NULL,'a0048db6ab33599224c58fa2375f506c9e86d15412b0b80b9090c6a98ca10350'); +INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6d5a53522351d823a93b2fc2a10395b382c06bfb9bba96942aa61830902dd06'); +INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23,"utxos_info":" ce8432a1b0579faf1ec3f8b93b7bea7fa3dd3a8b1a3b74b1bda7d3030e701e58:0 2 "}',0,'NEW_TRANSACTION',NULL,'0e57f1ec386c853757bcfb44c0e3dbd907c7a376f66951044c7e4d881b678937'); +INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','d486a0f215e073bfdd212aaaac42bc055f251aeed10fcbba8c3ff3a303d474f7'); +INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23}',0,'BURN','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','4709a95dcb5388ed9d8a7ab7174af263a31b764fe1abb47ed77ed44eb817e463'); +INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"85d639cc8147885470da26d3c0470dba0eb8b6870d5941b12bcc4afb8fcd9af1","messages_hash":"3dfae7363b9faa49ecce0cfed4e84027ba2d6a879951a3cbb8ecd659e4c7e193","transaction_count":1,"txlist_hash":"568bbeb4d12090c110442540d6f12734602dcf84ae5e331f0391a4a47857d059"}',0,'BLOCK_PARSED',NULL,'425c4ef98462e9c87a50eeeede1b29af6041511e46606f10531e6691ee94be4b'); +INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eeb905e024db0e3f816a7ed0209cf2b963b2d567c9f477d07b1a249d6c54614d'); +INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24,"utxos_info":" 5769ce4243e3d2e898a792c556ec8da59a8f8a1f262af59569e2b617e5867776:0 3 "}',0,'NEW_TRANSACTION',NULL,'c48d23432f82135610533be9fb8366e3138e0c019600c5b3da48bd260ee08646'); +INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16"}',0,'BET_UPDATE',NULL,'d157e1cee951fd9801e2be9cb9cea3ee81f6411d43e7d684bb0e36ff642371a4'); +INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'d16f67f28fc2b66e42f832b35c8e10d810830595c03201fb49ae85704d745bf8'); +INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","bet_index":13,"block_index":310023,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'6bf9ff9fa3c09f06f229214b3c95a03a3c485a0a9956fcba9a3f424352c7c4c0'); +INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','6103ab3857f35777f1ac2e00b9abfd8e01ec170f9233fbe1e33de4669e050e6f'); +INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','f47069ca30f4bd0badfaf3bd8087be5b876b8fd0af9c48bfe3ddc069ba6c0e02'); +INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'SEND','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','3671d68adf1a23166dcc0717a81176a32af245ee1e6cd84480a68274df91ab61'); +INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'TRANSACTION_PARSED','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','51c987e39965a4a729f28ccc84a7684960ac93d27c5e582a30d67fde00c505ff'); +INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"eb62ce47d68491a84b9a29b92db2742021881f0274072f1bc39dfef08cd7a590","messages_hash":"50a70cb61673f43e37c40122dcea6d876a18b0750c4b60b97cd70ad522d0f1ed","transaction_count":1,"txlist_hash":"877a4d466f5f780e8103a42fb7771935ef57486ed7d74aa77757b9cb434893b3"}',0,'BLOCK_PARSED',NULL,'8f77e2dd1816fac1c52613abf4c386df653d6b179ae45b4e3f0a0076ad7afb20'); +INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c8289ac18f4f4c282ff7aa33df3f351c86c5da52a3e761c1b4ed55cc93ea80'); +INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"45e73afbc34855b5cbd342a6fb77545e01f3ff4601a04c6dd25dff665aeff484","messages_hash":"7064f6aa2fab1df1994fecb94ec0fc2aa3287c19afd6d56ff907bf37e77d4e29","transaction_count":0,"txlist_hash":"b16082c8d932618c9bd89f7b8d6372190cab18b274ed8dbc1b4f04e5edc2bdbf"}',0,'BLOCK_PARSED',NULL,'ce84afb1de15efdeeff17a2f3834e800a9718ca72286a8b33cbc39cfa7bfb814'); +INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd184f12b5fc6b9f9c36b3edeaf463984618ef9a4ea680a81fa7d2840ebbafbd'); +INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"714702b25559325c7bacffdf28e0af30c47bf48e6b4fda053c21ea31c7604128","messages_hash":"738c93eeaffb0fcd540f90e0283f8d6c8b1117d792311d9f998a0f93122d16d1","transaction_count":0,"txlist_hash":"391a822509e48a899634f3b8a6b0c99fd298eefd97230b401b40c301dd7e6052"}',0,'BLOCK_PARSED',NULL,'d4f06911d93fa29ca304dd78bebf3e4d33fc41f2de88366e3d0cdf1d1eb80fd3'); +INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'618593277bd32941a0053b366f6aed6f2cb4a8a86054cbead4f2bd8217a11919'); +INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"b305741a1e277ba0ce8436b914784ea0156616ac308282a7f29dbca62a54cc82","messages_hash":"3849411409b69075a3729c55adfbf460f3c784712275625a7bfbdd7900e57cbf","transaction_count":0,"txlist_hash":"16c8d91265aaface472342f436e376984d576675529de1f58a188f994375dea0"}',0,'BLOCK_PARSED',NULL,'def554b17ed849df78b21302e3f5cce4ca7d8d04ac105b4ab80204e0b87dd2ff'); +INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fc35c611049660698dfdc2daf5bd247f25070598f96234d383047fae31ed21a'); +INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"1f833f7396917e02b4b65b0a05d19754b6a53b030b659514d0c21cad062d45f9","messages_hash":"ba8229f11c3c9d602c755f34071edcd92a5f1faf7d095e65055b0e690de58314","transaction_count":0,"txlist_hash":"d7a61a46b4f6da78607245b9fdd4e0b1d7499b5687805939342a431ef570711d"}',0,'BLOCK_PARSED',NULL,'371f80a2132703ac86a9f63866dd50083c705b57ca8ff8d7001a82d480a4fd7b'); +INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e35fc0c8720458c7840abf515b789758c2b464ea8747422bb18f0fee5506e38'); +INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"47b38906beda7ad735a86b9fd63669b0357b7ae0a0c1a54c9827bc8b90185626","messages_hash":"4276937d9996f1bb75edab14c7af1d00e860e61be3ded18378103e1f8f4e8835","transaction_count":0,"txlist_hash":"a8a0b67ddb47a15f89fd14f227e118bd374dde04f4bce3205d5ee07a8c7509d7"}',0,'BLOCK_PARSED',NULL,'637470511f5f111e50d4ae86dfb4bae853579c3b452e741aff371603beb53d94'); +INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'879fe48ba3fd35af290e96e19c9aafef77c2a3ad9a0558664445091012815a5a'); +INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e69f6c9b649ac04920be70f9b076f7909bcebd8312afa715be3d8922794a72e7","messages_hash":"4a104128be63cab6611ce387dae35f1a85aef88e4cca422517f90d6c89574bb1","transaction_count":0,"txlist_hash":"355199be765ee2db25308e58d6cdfd22c6941a296b51800e8f937cea1afedbdf"}',0,'BLOCK_PARSED',NULL,'cff300a824bb8444d2a0d3c0c793a6072cb5721d16952cb8a377196d54ee11ba'); +INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af6b481a33cdef0ffb5d596d7975dda19bbe153dd62bd7c54d3a4c0f5068f650'); +INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"c51828b04433b000787c92eaa7e5abd5cc0bc31c619cb8479aff675af6e00c55","messages_hash":"3b1037567473a39c6691c30254bce767e05eb91329a44a3afbb1d2a10daf0077","transaction_count":0,"txlist_hash":"b4bb7325ae90ccf0095b0970cb4828c98915a2e6694723ca8af1e9f77523d540"}',0,'BLOCK_PARSED',NULL,'780de0fb84184655c775538d225a42de700f93c8239e9b9a5c9d71fd33725a4e'); +INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbddf4a56174fe73fc0fc3cea71a771b4a7d4dfc1f0fddbfb95685ca6baeeccd'); +INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"26d91568af76b5ad4b357693ecb0b9341aabbf5de5d5c83f9998dc2f95d76e5e","messages_hash":"1a57f0fbf111707d2e3acae2cf0b66ca1b467f9f50f194799e51131678df6aa1","transaction_count":0,"txlist_hash":"b13328f7f6011c05736a1c728af4726f63f557ae1eafab7d70b6b7fd60025616"}',0,'BLOCK_PARSED',NULL,'6bbbc9725fd055b0fa344784617fab38224cf7aff71a7d24eaecf18a0853ae02'); +INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3340dcf5b1d57bd578aa97ede4221322b5fcb638b7620e385ca20e0f1e9dab9'); +INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323"}',0,'ORDER_UPDATE',NULL,'0646c97ce60bbd5f4c9aa7b1bd2da69406eea69b1cae51a80be795663426bd9e'); +INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ecd336e8319322d43f04a16e23ff9840a402f841c9b6955a18ac077db656702f'); +INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'eb2c7a9b7b462bfb49dec2731e69b34b1ba137093123f548da66d64c6be661da'); +INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"21f8da71c386ec1e5e31a35c1190b895f2df52529ea028d5fba25e0d57616952","messages_hash":"8591a73d500a1e48ddb372d274ef4e049768600d6ee3b6c94023825de8f14a38","transaction_count":0,"txlist_hash":"80980b4466ca949fa21a42ffb8c22a2f5853722c4fa02bf0cb962e97365384f1"}',0,'BLOCK_PARSED',NULL,'f9dcfffe95186464d829cc2ebeb25277263d320ebb180ae52d72233dd098dd1e'); +INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11bc39d62e06e9efcda405ddf9237859f72fea5d15ad2838ffe2e4bc4c2883ab'); +INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"1c844a38fc28e83406c8019615d0c24a1ea84e6ffe4da392d29f353ca676001b","messages_hash":"c0cd2e695e46640cee105806ff2881a413d0ecf484c26bc15566f3e6886c3ac1","transaction_count":0,"txlist_hash":"0c2f46b4f4d5f345399be6073d2f72bf689f6a3a20e57c41ccd541cc0bae76d3"}',0,'BLOCK_PARSED',NULL,'967707697830729a053a92729e66861c949b83ec9812501c3894efa960b0503a'); +INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cf8b1990976ba716b60caa43578ef8ee3e6a1a7f464b858a6b570f236aa64fa'); +INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0533bc0d3bc008b5d65932c569e9f85e3217ea9efbb8937935be93b7a01ec2a8","messages_hash":"70c4d884c1952c33c4251085f3488422194bb9b47bb1b5265295114264c00694","transaction_count":0,"txlist_hash":"9f5f89f0c9821b7de30388b2a0891011612096ac158a70838d4479059a4bfc50"}',0,'BLOCK_PARSED',NULL,'139a8d690eae42f0bf9aa82524464245a43725370a296393a263736874a389b4'); +INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'798e1e28a935a94cade97613b3911d571f0f218a08990baf41df64896e631e66'); +INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b5f0b7406fe3b6dbcbb5c3b28fb8fb119e237f07532f500b422058ba898e5b22","messages_hash":"342784db7d2956e0158cf91a69d31e7d5b75bc60d3170f8feb4494ddefebf58c","transaction_count":0,"txlist_hash":"5847c5ec7d8ad0e27d47b3b6ff7df903c4a67a269aa248e69ee918062e58976c"}',0,'BLOCK_PARSED',NULL,'0762a4823b36b5d06c3bade62d59bd93a1fcb31cc0fce0b4f5ab7fb27a697be8'); +INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72264f4de96f534c04531ee8cdf902ff7dd3e4f1a92d717f1eaa116d5c0c40c9'); +INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"7519ac8cdf4c13b25929d913e3858855aca68bcf3fe6d3636e7371894af27f04","messages_hash":"f986bffba5ab909aa33bf7dddaa130aba86e37212bca5a0205e838e912a546f2","transaction_count":0,"txlist_hash":"46fea446096a8d96f1f990374d94405f358ef5a3a8bf09aeba2f76977cf867b0"}',0,'BLOCK_PARSED',NULL,'76d245054be85aed9d958a40ef7d8b244d2657e0d67e25ef64efec68096807ab'); +INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59a4cec6485dc296d905910771693f9d330ceb63f0c61a77c685f02c17777214'); +INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"f417da67da0c23d4bc44bbb864de5b94057916e28502641ba70764f44165a1fa","messages_hash":"b47dec27e998db5107a8296f6bf8bf7a8494534d490a4e0fe532fb9ed5ef0fe3","transaction_count":0,"txlist_hash":"e372a6531d2f206be5cca17be0f42a75e2e6617499a6dec377c274f7738620df"}',0,'BLOCK_PARSED',NULL,'5b087eee9ace1e0cd6fa8d44aca6fb096cf983a3c55382d11aa054a4bd822e4f'); +INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2463408996908f9d7e59cf35c017073696f2f32e700db4a0d39b1a23623e25ed'); +INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"098eb6f2b0a1c584d969167f50bb55383ab71593ed1f0ca61d83c4513a209107","messages_hash":"1c8849a2bac5e6d1a16423b91c4a79da1d9d5901fa78cdf514132690ea110e6f","transaction_count":0,"txlist_hash":"da7704f6d661aa255af6e2d3ad713fbca0a0e6296b16e3a364989bcb5a4e38ba"}',0,'BLOCK_PARSED',NULL,'869aea76abceabe19c82c7e986c1b89a5ce5af2c2d6c7bc8f8f5edcf1c6e7ad6'); +INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'730dd8aa58bf858ffd36b22bbc208bbec467a8680b355969b21000765bc44f27'); +INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"a4aa60a1320e47c975628f6650d8fdc44b6a729d26a3178031e32fcb48b59491","messages_hash":"db21a59f978f14a7dc6bc79e90bf519d2f6f9977027f16dd4b829a46bfa9f88a","transaction_count":0,"txlist_hash":"02eb5dc168a03d3cd067677480b22185a8ad6731e467c0b3bd5a907834e01013"}',0,'BLOCK_PARSED',NULL,'4cd4fbdc03825f240f61fef0de949009b84816f0dce194ffe8559bd133d2963c'); +INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9fd43d19cc6f40f71008971c7bd5bffc5928a7e7494e136bf49646446c676f0'); +INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"cc5b2af6948531b635b18a4b6698efa318190762c8e4419aa9ca3634e7ed5d1e","messages_hash":"b1f5bbf3497e30f219b506f25fdbb4f4da88f45ae1d21e77d40c6258d4c8ac34","transaction_count":0,"txlist_hash":"f6ba96a6e3e2e3442722bbc1bd770d3f6f0f4a4ffe57d0858586539f81e868b8"}',0,'BLOCK_PARSED',NULL,'627b99a943bdc2e5bd06ba39127b57a728da0667b6d3faeb5ad6ac79340e4766'); +INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2a8302e7a18b2b330d17d914e615166d3772d3db82b67eb52f39c131e1866bb'); +INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"7ad02b4853bde78025942e9f58c212a76c1828337610347e516d4a359af804b5","messages_hash":"d126df6eaca69d43425049467657ff6ef20226bf3de2c49d35820a3ff5bde37f","transaction_count":0,"txlist_hash":"d8089b22bc20979dce133885c84c5babb754ff0522d7f2193e1d3157c5251631"}',0,'BLOCK_PARSED',NULL,'0bfe54fb6de08901645ef3a6d4ee8739285d3285071fc8908a0c299047b836c2'); +INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9de7080b2e2bcbba84d54d50b51f221a8616b027c9f63f051b623355c514bac'); +INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"64a91735950113c13603e49ca549fae9b30092a9fc02d53a32a20eaef64ab6ce","messages_hash":"00e2758c956e96027b43ad138f0f52d3868b580a0d978c3d887916dcfbf8fd60","transaction_count":0,"txlist_hash":"554d6b2a2182d87b00111b748a5d904aef85a56b92f1d076ad4f866f0d054041"}',0,'BLOCK_PARSED',NULL,'201004a30eb163402486ba6c412d4f8011a317ed07bea905162dc76d8d35e7b2'); +INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0edcffd33521f68bf257e286c4ecee4d988319322163421757bd2e6f7be3b369'); +INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"68107847c7a9dd19612d8b47c1a39cdc446c752f2c05ea8fcd961a42f835d155","messages_hash":"8cb4014c4047b62f3992f4cfa56ca3151d04cdccaa5e572f08b767190c4c7911","transaction_count":0,"txlist_hash":"f2b1800a73d98a15428bfb5289f7ccbb9d3c66b98fb0a36f00ffce8a78279801"}',0,'BLOCK_PARSED',NULL,'39c3f562c08ed7177cbbf70c854db37a8ddbeaa3de6e8efbb1ac6a511da89bf0'); +INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80a95ca171013a9bb6082c4e728d8b465fc6bc033b696a467db463d093b0bc35'); +INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"64d4d51adb6994360b3dbf04663c4f067ba223e62912fe1c5a96a190225bb54c","messages_hash":"7e7c1245270ca9ce6913330ffa09cbe29cc4e9fd7453347f80cf5938c67cf493","transaction_count":0,"txlist_hash":"ce4365857faa29eb04e638064e4810620f434fe515efe63eb2ac49c3adce6581"}',0,'BLOCK_PARSED',NULL,'2a1f3619494aa89875aeb07e18ec12d1b8293c88863cbcbba114d944a45505cd'); +INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'250651563d4f057d6bac52f6b9b594a0592e83cd0c4dac2ab6cfd7caf5178612'); +INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"3ba2d7685f63962f576e9fa94e4d6709ace95249a3064804c3822078c982d11d","messages_hash":"72c3e96325e91dc4e9b305fe54c177a92f30e8d54e8566f324e8fec9971fa8e7","transaction_count":0,"txlist_hash":"94729a0956e8c1b095c9181e01c220b94257ff582e35d87923e3c5ddba3a3566"}',0,'BLOCK_PARSED',NULL,'f30fe05be96b337da94dd6a10608c50b2f662dba64c085d0440244ed0e5b903e'); +INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce612990cf38802a4e9b06e5a468f9071fdb10b51b4d2a0ff608246bd5851b44'); +INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"6502f277568bed2705c5f496e278e5d99310ff6705751a3999cb4b2bc7d725bd","messages_hash":"5619b736e0174a0015cfd92a5f5af15de2e7fc72f2ab671919fd0098be505d29","transaction_count":0,"txlist_hash":"0986f1e944c39e36fe955ff092028c51647a9359492f17a76c682b4346be714e"}',0,'BLOCK_PARSED',NULL,'8373e3add31c86b02364d2b1f1efb35bfb2f5ed374aad9a22087bbbacf4ca458'); +INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3af3cd3d659346821c905f545d33e369d3174f39e0d3e4feb41f62159ec25379'); +INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5dae29289f36e64b87d56f9870af0bd5ad77ca45f1093c1a41140ea397945130","messages_hash":"dd620615ab2f575f38019c823903090c58f24160d1201830adda43416539ef0e","transaction_count":0,"txlist_hash":"f14e3c5de5e186beaed6835c7c61fe2274603bb73e62ebea5899ae2a998e26e2"}',0,'BLOCK_PARSED',NULL,'10361f3dcb3e9d384a4eb55462a5fea4928a4b47f10ab2a7802a8bb9a1e9f036'); +INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cef18b9ef448eb094f0d3b88548ff97bc675a5f527b53b846ab1dfdbfaa97064'); +INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"d5dee49d7b78e2ce4dd2a648e345a52bbfa7e0e76de9e970b1dc0b6aea66c130","messages_hash":"666bbc7cc6aab4534cea6e2a9c499bf54c8cefc5034ff0a53a76ca8c60f5b37e","transaction_count":0,"txlist_hash":"e31cb01f21f653217b3bff72061a63f3778f45a72a8419988a496d8f388cac1f"}',0,'BLOCK_PARSED',NULL,'d70578ce15def00873bcd8987a664c9dd01c025b7fe24259de5a0cde204f6c52'); +INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d968ed691e48aa1b2516022b864940d2480b4ebb47d181f39152fcda7d845085'); +INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"2b4c97a93933b8986ebb061d47f2e8bbb1672206058ae3c3ae388bab36b8cbc8","messages_hash":"ea70be9299ef9e4094626af518ae72220b18076905f64f7e9f1bd35e9dc4a6af","transaction_count":0,"txlist_hash":"eb45cf1a49da1dfd4ce7231e8f6da96b7241b0b034884cb2de57dc107723b7a5"}',0,'BLOCK_PARSED',NULL,'a7c1f19b30188e78c32ad6b6b6870f3649ffe4947182ad17c78092611b17dc18'); +INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ab97a08f8dea0b0ba7b534171b93e96ad2349df51341e9b2621372db6a951b9'); +INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"115913763ca7ef5691512a5c6d47cbd49203aee8a3242928f62640912c935872","messages_hash":"049f466d37e49b3984a1bb79b489466b989d6e894619f33f4a9e9447581ef4d3","transaction_count":0,"txlist_hash":"db0d0812374555812015a2058ea7f6bc8aebb8aa7d2824eeeb26b7b42d75f97e"}',0,'BLOCK_PARSED',NULL,'00c1ef4c7b4e2104e1d0ddf9987d0efb8bc03b9c1b27c96a008456f2f14b8c6d'); +INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a151ab1d77f9b3036383cd6fbcb054deba61507e8a923030dfcecc3acbd9ddec'); +INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"72f24dc53c759a08aeb447d826bf64aad71ca8f4ab9640e30e440e6bc050a0eb","messages_hash":"56b473eeef05a1e50b4621085980de48ed4f8031c976f125dddc99afb946d55e","transaction_count":0,"txlist_hash":"b3834012ddc576765f337d3dd8b3c916f66711481c0bfa2464f6ec2678d1512e"}',0,'BLOCK_PARSED',NULL,'d00c338a857339d81b4a80a11d7cef3856f67500983db582f2c2dc9e212597ae'); +INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'405aad12048f2c71be7178ab48243caf64496ab2433775ea779cdc3b37730593'); +INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"07846004f2da033bfd113e13040b0d0d605375370b7437e2ca2ea9467fc80c1a","messages_hash":"8d9d1aa551568452a11231eaf33094e8a235fbf2b368ff62f22d64eda80d1b59","transaction_count":0,"txlist_hash":"35357fb0ca94373955c3cdf08be75d20e9665a9632be0df0c90b567875594049"}',0,'BLOCK_PARSED',NULL,'e6b5bb413df14abba2c2b96a6bc972ca4cb61042697c38f1ed87ab5ad83197f2'); +INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71365e02556c8ac1639b638ef2fd42e726c3294c7a4548a2ae4683a3b9dd0665'); +INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"7bf9a701337c043a7268cecca5ff765c24600a2056137cd03e3ead9d64ef2348","messages_hash":"ba934fd3019fcfb08be9bfe75bbea568e6f594e4a99222e4c71e40fc97141f15","transaction_count":0,"txlist_hash":"d177ed9e0bb4b3d77bc5b1a044e724cabb92dee3189747bc1c01d1fee7148fa2"}',0,'BLOCK_PARSED',NULL,'62ce69e64b11e0bd8b0a3b8f0dcbaa6ff48a5a7782a86c6cb75b1a011679790a'); +INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e29f8593e87b7acdc034e344ab5e3a3c3009dab125fd3297ddefa72d819376a'); +INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"d544aec17018203fe2f5c9bda52a5da53d41d3364b8026770d1f620aa53e6c36","messages_hash":"7c3d102d83354cec29f653350391e7e695863e5c1f7706dab61b75095fad5406","transaction_count":0,"txlist_hash":"8a3b92aa200f79e8aff4a849618914f7d39c34ef2ed636d3b5633a2ad2f647ea"}',0,'BLOCK_PARSED',NULL,'d5abb187ad481815f318be6beaa53f6b4a207aba3a98a768ffe2cd1bdfbc8d2e'); +INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26fd69619f1b7984729c973541f3f123ad5756ca2ab0918939976d149a1c523d'); +INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"bd3044c66f7e2c24944a9c938b8f162ac8f566a1338444c219396eadf5179d3e","messages_hash":"2a075e52bf4f6fa252522292e30bbb2f4700f4274d771b78a42afc5c21d1b681","transaction_count":0,"txlist_hash":"59ce208e69d4e1427791ae237a6db6a05efcd50fa386f4f8f56862c6cc3b12d5"}',0,'BLOCK_PARSED',NULL,'cee31a3ffafcdd4e102761d2d00ceaeb55eabc2ae680bf6f95e64a3ceee0ff38'); +INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e722eee5010342632fd1d10ac96ffe4e20651ad97c3873562ba3f73960e0939f'); +INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"b19346f726636aa9da55af6106a471c596a7f7b93289b70d3d33b45334bca9d3","messages_hash":"a6dd9ca3664581c6a79302ed3fb193e342f0c4ef12713e4ba7e60fe274bec1bf","transaction_count":0,"txlist_hash":"8e9d4b1d3ad7c5e8e479640da0ffd8b7423aee810ff6adc4ae2d37d545169579"}',0,'BLOCK_PARSED',NULL,'132a5b2af393f41abed0f32f0b030d4ef0b9901ca84ef1245911d3dd558226b1'); +INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'544fe3513096956e52f351720ad825975aaff5ab7cbd80340dcc8e6c8c88a40a'); +INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"35c2ad9ccd3bd68cdb0c4d8fd4e30938521b8559c1cec331a29b1802d649947a","messages_hash":"2501b5b9bbc8db7856863b97c8d7a815a8defb26969e6a86da9d04b8926d1ec5","transaction_count":0,"txlist_hash":"e14484629fa3aa2e8ce54505b3983d0f33e7727d3dacc5de57a574c2e0c69baf"}',0,'BLOCK_PARSED',NULL,'c941aba31a279b22c5647076fea273bd79152ed168fbabcc027a60a58366bd3c'); +INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa2061c3bd637a7e9bd75351813db18f55c6c89dce13741ab62749403821646'); +INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"e9a705d6661f0345ffe0f45ae26c0d6ba6bd5a125eef2f0e9558d0702ee6d63f","messages_hash":"d77a5fb5bd075ade951f84581f0cac8f23c244edb445c0ccfbe6cfb36e810b94","transaction_count":0,"txlist_hash":"cfbb1995e2c28020dabca30e98f72afee01b64fe276acacee7e104b22772de65"}',0,'BLOCK_PARSED',NULL,'579182a4a4380c4da933cf269dc7863a7a0bd55b94cad0dc0ed5eedb7a4d73d1'); +INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee181f9839548765149b38703ecd504da6960734ca5bf8db37edaf15af1fc69c'); +INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"61efe4d33a7f70cae34df86753532aee25fb0b153744acb962142691f6979482","messages_hash":"73b8d193cd509a77b44763af64d122a1a318f18d9a955fed0d192c71db8ec009","transaction_count":0,"txlist_hash":"401b057e48ae9e423f354f7ddbb11e70c0ec2209ef1a26dc7ffd0bf6003f1335"}',0,'BLOCK_PARSED',NULL,'8d160d0c0ab4fc27240f04c69a60738779f8b1d2a430414fe6732e5f5ee501b6'); +INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f908eb6c9f6bd5b1298025b3500398869719657ec09344eb4957f50cead78df3'); +INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"59d9785e783c59c12783977087ad439b2dacad9ae1ef2be6384bfc9036da9804","messages_hash":"0a71078c193648bfd3c53f4c03b76b6086eea50b06e9fdf7c9c681ecb22d3351","transaction_count":0,"txlist_hash":"6010ccb1d9476ce07d8b50633bccb97ecff1a229a0ea7701c802aad32f961be9"}',0,'BLOCK_PARSED',NULL,'387067c977383774485a9eeaa6628948c24a61fc799cbd8a0b6624aac7906089'); +INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db66c7e0321774c53a2a98409f0205b1c292b8d6b79039eccc7afcda16b0ae8'); +INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"e257d59ab5dfb01b8396bd12d2fd169f9ac7629365b90bf6e593e627738d3754","messages_hash":"e8f32321ce75ec4726e63d32b3dcc62dfea38a9eba6931db9516d0b230d63793","transaction_count":0,"txlist_hash":"bda63243caec3f70173e1e93a16867ecbcf45d987b6a5f72d1bea54d361f0ed2"}',0,'BLOCK_PARSED',NULL,'d54da94c32e2812682b7a9177ce776c1565c7f6bfa7a76e8266c1c2ef7f92858'); +INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'715a56671037c167381e6977aaac98c25dd8df3bd61b134df4ccb0f05737de55'); +INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"0dc0317a88a6fc4ac791cd4d45edcf2a142fb83aa2e8a2f299fcac48a2c2e04d","messages_hash":"ddbb9f74d5a313dcff0f4f0a6f7da3d88cad299c1df4e59b69a69a6993c47876","transaction_count":0,"txlist_hash":"ea9f3db44eb05a8ba1c860cd0a13ea662f84715b59e78a87f49c78377cb6b2c3"}',0,'BLOCK_PARSED',NULL,'d4a3c58e050f6873c8ead3ad7a39b1b3be96de02fb353e011c67257179418be4'); +INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1f4a0699eb5746e75e71528de9d7c62d427bdd7ecd78e5d42a837a2388e9219'); +INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"892d6a49aebb262f2a626a35c0806c488c836c04d33122c2d65ecd8904fe3d85","messages_hash":"4eb612191aff721560d90bc875a9a3289eb2996cbd4917814761b169ecdcd671","transaction_count":0,"txlist_hash":"3fc1380f35c9123d16b9ffbeb23c44f24e4d6001406a484ce30ee5758b8ec965"}',0,'BLOCK_PARSED',NULL,'afc65b9aef1f7d0f88dc2aef5a2f92993b99307f6c4decdf8370e488223e797d'); +INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'128072fdad3048529babe28d16e74bb3b24d004f98667159193e67f23a06307e'); +INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"e345abbf8dc42737a9f2dd038534409200d63a9ebf5d1cbf3344ea9413c388c0","messages_hash":"2d2adf98878851493ebd8d2982c2b0903e2c0f452532db7db44d259c1d7eb2a9","transaction_count":0,"txlist_hash":"be23706267b965eb38fa15ec1ce8c17ed5727bfedba0ca4d4be3db2fd703744f"}',0,'BLOCK_PARSED',NULL,'aa791f6c00b3e6c9520d65664bac7087786bcca1e2c9f1b7d1ab18351aabd0f4'); +INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e99a85250dbd766d19e34c9ca9fc17c59f9cee4807db07f9b5631f3106defc4'); +INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"84ec781d054c0602ed97384cd32cd060b938627ea490a7635fa3ac0babba94cc","messages_hash":"952a765cac09e551860b43599e11d9b4e04cceacfa62b2e8d527575e037571d7","transaction_count":0,"txlist_hash":"1f7417cf7a3d9f07e5a8faf658b166c288aff136ee56f244797ef589f9cf98c5"}',0,'BLOCK_PARSED',NULL,'2413e2d578c580238bc332bcee750a679b0c932d5a0d2a8b4bc83491087f3930'); +INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81de71359cc4240c155575ddc6010c2247403fd9c9eb5d4b5ecd780aaaa1a1f9'); +INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"3478612a8bb95c2966891fb4d1b35493a1342364a6f08404b83ac9fdda763aa2","messages_hash":"af4e2ab9d9894c27831f4fc9b95ebe600de27038b17cc4bc3c4e347a800fa94b","transaction_count":0,"txlist_hash":"7b4317e7c2db815ced2d81aaf8efaa6331e475a7a9b3a59041640d43484b1a89"}',0,'BLOCK_PARSED',NULL,'39dd497a04f2a810e8a30fb8a63aaf00ccc783e5e1860cceda94bf232bfeec16'); +INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69e48dfe54b0bfe547afe8ad7a99262d6112fe79f9d751bbb24851d081c2a13b'); +INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"c532c4c5f5e2ae1026ec2582645d9aef06afee46cb9781427a1f40667378ed67","messages_hash":"1689c8152ecef02d7d34ee885ede78233d791f27acb74010c6c15a27406e5dd2","transaction_count":0,"txlist_hash":"89699fdf437b96128d7eb89a45d58e45d0b829789c6e0b29e8972b48ce5e62de"}',0,'BLOCK_PARSED',NULL,'fb6f6e9727e07c60b9046223a469e362d10c015ece450fdd6746fa44776da6c5'); +INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f39973e275b659728da1019f5f0db4b5beaf1b25d230092b29ac8e2674fe1d23'); +INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"5508189396fa6dfe63a7d06fe97a3073e986eb305bcb49430157f99e3848cd69","messages_hash":"70e9092b45626b7680d4f0a97b314a32224b637918c6018adfe3452a10486d01","transaction_count":0,"txlist_hash":"4c49d9334c909f728f3b06a0ef613fb09f6369dd431b7078db5d269cdf9dd4bd"}',0,'BLOCK_PARSED',NULL,'d172f9a8cc20b1d65d000abecc04be591ff58398e01aafd570076990542eeb09'); +INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1d11da7729ad12032d4a6dbbee5ccd7b531c06f33a08ccd60c349b8d46d6b34'); +INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"9b0b5d09dc7aaffaf5a3603fa2b914c54b04755a5ddbf83476320149f802292a","messages_hash":"98f06025cd293f2f32530f64a676d771b33c139b78979986a9963b470d460986","transaction_count":0,"txlist_hash":"ef4759403c17482a8f8042fb93a5cae1b741085cdbf73e839638fee316044571"}',0,'BLOCK_PARSED',NULL,'8180ffc10ed7f6b31beeb3d4f4c6786b9965d23b079580a9509f7a8e315b5744'); +INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de92d6f6fa0148ec9b426606f0a313e65f93841e9b10eb1b92fc12a2ea954f99'); +INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"2e40d398c2eb131e195a667f1b2b5e8de29e80423a2d0dd3935fad6dd7cc919c","messages_hash":"892dac54a3b4e00c51537282af26b89399d21ec8a9afcf74fb08bf3eda858a8a","transaction_count":0,"txlist_hash":"18e3230ce4fdaca025887c118a2f2fa6bcbe81fba5c968301a90b43e27f2c7aa"}',0,'BLOCK_PARSED',NULL,'a8905fe94843c7de98b5552461985125e60c21d055d5c39f3b6f1e7351623011'); +INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa0e52bdc04900c7c959904cc68ce754bc771b428041d3ea33e70c2df6c8f0a0'); +INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"763d3d949dc16a797f5b8a2f5a27fd34b4636fa3dbf33eabed5db048e1a848b4","messages_hash":"8b5a82627b0b7c25ac15f51a92fa81a56b4376432ab534d06b7c6de998ea4078","transaction_count":0,"txlist_hash":"7b10cd9561d4a33c7771570925e5a9a879a501ac503004eccc5e60074d2dedab"}',0,'BLOCK_PARSED',NULL,'29b4ee9405d13f85e9762b949d262680a1642334f7cd6780b0f6c9ee947a6c52'); +INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eb88e5aae12a9c020403cb30dfa3510c4acce1280a4f4c3206257660baf09b8'); +INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"d9b9d6a52f757604a5652aac64c343a47a928160790963521ce33d125486cb0b","messages_hash":"e7829389ce15ba35b7933839e9778132fb84f4e096aec8bfe04c81afbc256d19","transaction_count":0,"txlist_hash":"deda10c92f292c186698b9b4d371727688a9c0ea194963464fd1c5b429fbbff1"}',0,'BLOCK_PARSED',NULL,'327a128018f2ca16232c420e426f07cd6ae6bc85c875eff1aaad7d4cb3538433'); +INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2639789a8c7aa8c365552bac6c2e11ffb17c17f2db4b6edba39c7564caf2fa10'); +INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"9c1a650b6029cc982e9e617b619da6d88878453ccea68ff82047581d5cc74e9c","messages_hash":"c9bda4cef6bede46f37e9016c462a01a75fbcc0a81239cc5937b8d11b429250d","transaction_count":0,"txlist_hash":"26e4cfa82a9ed189ffafa596c7022cab40002c8099b48814f3e7fbc48b01b0fa"}',0,'BLOCK_PARSED',NULL,'31cd9b6239f96f39a5ce297436ac4087f24aaded54d81242fce1605e10f80c13'); +INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31a20bb8c31cd38e6895ab19bb0f611abe9873076ac86fcbc8ea9c747be02e7b'); +INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"32d648a0d0b99f6826376e8badb278c06f95a0ab781cd873e2f7f55219953b01","messages_hash":"d3dd198acd7b8a59dec75034fa800d231eb43b0ec02c3a05b35b7fca372366a6","transaction_count":0,"txlist_hash":"f10d714905f2e84a57e0c792ebf0dd67158f19f352176a571278dce49aaf778b"}',0,'BLOCK_PARSED',NULL,'1e2f2eb43e674d77a490c2994e516f0347373d95b88ce5d8b13e496c3e0aaeb4'); +INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'472158c0f6eb2153c96125946be152ae71e69604fbd32379b452b1b528be3662'); +INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"67cd615e67e397cae8195fc8753403563e9100ecd623b2796a46b137ca553be2","messages_hash":"0b7efc03ac30e551e385334d021b23c632ce7d89a19d7d44bda65fc353e77f07","transaction_count":0,"txlist_hash":"d0c0ffcafa826685b59ef036c4315e79cc688ac1ee43097143debf445f6e638b"}',0,'BLOCK_PARSED',NULL,'e30ecaf46f19fc0b441973c1d75e7ef6cffa340d82a3215268f04ffd2d424c2f'); +INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76d0b2e28a2796afc674a4ce96bb003602a4aea8f1042cc52ebae765445d2aec'); +INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"d636f3831cd35437271557e6299024d70c4be6b9a685a4fed61e7d67e61540dd","messages_hash":"d3a4beef978d32248d6ae339d8cce33ebb5bd3168fb9b68a4ba2739021bbe5e5","transaction_count":0,"txlist_hash":"fb11ef8957cdc599585372679a59440580acb37458ed3da092b22974a4857bb6"}',0,'BLOCK_PARSED',NULL,'8d79e059909b8c9e320c58a4ebaf37be990356bd2a682d01f87888ec2fadbf89'); +INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d56a852cbf893d81c061996cbe4ac7155e9b838a12ae5bd9b149af620d953b56'); +INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"abf96247f6b99a24e518d89162c23cffc821d5cae5703f5b7c7c4587e34cdf98","messages_hash":"d8d5bd36c915e726bdbe2dc54bdb44eea9ea6303f602b3700ed0e76466ea26d6","transaction_count":0,"txlist_hash":"67d8b52c93c5d07ce1a335ea3572f0015a971effdecf921193cca273553466c1"}',0,'BLOCK_PARSED',NULL,'f772677e37b2467db793a2c3044289123e5d5a244abab8f2e10905426cc3806b'); +INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbec1c38d74163b72657eb51772f3419c4a910d7c5d9575ab8ab7de3787b8b31'); +INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"06aeace2e79321c6776dd1098982e71bfc0baadc55470721022db67a03bd4478","messages_hash":"b92bc5b22e71e91261e73a83d4519e63be236cfcfe9348b68c387dead5eb394f","transaction_count":0,"txlist_hash":"2e148e6946d39fee7c6d1b320122beb1689903e929397821a63e612d5216326d"}',0,'BLOCK_PARSED',NULL,'8338ce6cffa272542943e109a9c04a3b8858f60d5549c9e1e8337485db6fb705'); +INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f892982f4681c1eb8b7ab9124e1a14327efdf29c066d79f3673d1610debe17a'); +INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ba2c7078ee940b14e584459985a5a4785156762135541d40a138c31ff9bfe4fb","messages_hash":"1134bdaddebf9c5382218910e1f0b419cfee0e527ce676fa98e0e06a14c367ac","transaction_count":0,"txlist_hash":"63832ac6186f8a8e8091579221ada474b43c36f465ae25ddae4ead963207150c"}',0,'BLOCK_PARSED',NULL,'72d39903d78fb1ae3e403b74c44e366030b157f8de62d14805bd3b83b15d24d2'); +INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b448134d68218945acf2484dd7105371b257bb590f4780d04af2614115a5a74c'); +INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"af327b161ed9fa8022f3efd81b695d25ad9ae8f250a6d08739a40b0883262045","messages_hash":"da3a0dc1215829eac78f5d767a670170f757f03b6718e1d9a8d3c1632b900de3","transaction_count":0,"txlist_hash":"47bdbc4933d69cd703c277d9a5e156951ef57791f87f92d16b85c15ab3194061"}',0,'BLOCK_PARSED',NULL,'659763c4eb0294455407e1df201127016439807af5c1a2389dfa475a1da0726c'); +INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a50cab915c978e3606510caafe3647452df9fefef89b17f00b4143222f44b47'); +INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"2c4d6568a9c77737c5942fab33613a1ef055ce21b9f0a9b4a42fcdf6e9536a59","messages_hash":"01655101834f1c5a4383e57d422fd3597e2598a231bf693c83402f53ed1eecc9","transaction_count":0,"txlist_hash":"7d57db6fdebb83dc0fbd1746eb328a94403f4a66e7e003593fe90c95fdef3e5c"}',0,'BLOCK_PARSED',NULL,'99758fc8550301e6d80a4c7763891d4ca920c17a6f2a18e5037a3a11bf91d1e4'); +INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96abd970511527474a1d2f92b2dcf0e91a3f9e726ed1db02966e7e714922bc74'); +INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"0b8dcdff637e5e60ae045d4c7646bd47e6047fc992860c99dd422477b9a90d74","messages_hash":"be358a0b7e3ee4d406e3ee14b9cd404a8fdb6972555a8598d9cb228ad54e965e","transaction_count":0,"txlist_hash":"61316fca3bd986c2398fa5dd92a8b874f4a64095691626d695e82e3c30849e27"}',0,'BLOCK_PARSED',NULL,'30ee86dde55cc035612f43edbcc6d02feacb51bf545ac4f6e03a8ce484b783e5'); +INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08906bfcc341388ba5d9807fdca7ec194f8c6039d6556fc8996d9e14c6b062fc'); +INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"eec6578a8bc1f5766427f4753ded18cb97c53e710f5fff8918bbdadb59678f64","messages_hash":"445b80511aa1c8629c79f60af11be51474e24316a549d98ce14cc8099d771f29","transaction_count":0,"txlist_hash":"bc5cabb9579b79f03b329c0e5e3c8652d8b0eccde9563d838890218bcc8bd932"}',0,'BLOCK_PARSED',NULL,'980e8c189bba8b49fbc7ad78c5023023fd52bd37faff184a877c4fa219bfd934'); +INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c637681ea75dd5bed05f395ad653df0b7cb721730bd2da5d9c820d58e3a55750'); +INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"a2b2ed6a61f1c9a3d322a050178c6be119b89d1a0795fa9c9d7484ad8edfcecd","messages_hash":"b7d972e703eac857c7b4f2bb8bb5f36d3d6d61e2183015c6d5063658f09d4a3c","transaction_count":0,"txlist_hash":"86e50073092182d9a5b37cd2453dd5a7a1af175ad0a1150492d5001510b05e6e"}',0,'BLOCK_PARSED',NULL,'9877262e9fcb87293c7bec2ffbe1c2815fe32cca73479d57aee327121ee72218'); +INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae85561894fb48f0741658c899e7e6fa73767dd935d5c2d246cc3ddf39513cab'); +INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"02828eaf91883ad16beb5563f9c84cb226269c655a886857b31e5e150a1053ec","messages_hash":"c2da16dd7a9273b89014ec20a155a1d94a37019824b1bf07a60f23e0d98fc291","transaction_count":0,"txlist_hash":"bf59d4fe42c11ab04792ba5c95cfd811a6ddf18e125daebb93695bdd829736c3"}',0,'BLOCK_PARSED',NULL,'feb82895dc9e6483224bb30e02dbcecdb513d47130cde5aadc2f73bc3cd9e4bf'); +INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aafe76db1c3a36c3559ab93309d625057bd17efbcdca9575a3dd5100eaed7a88'); +INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"5427b45ed778796c26d0d2ddf73e975856cc9ae081c36762e78d046f6cfc376c","messages_hash":"24b5b1c411dd1205b672a30c52c6202bbf70ec884e3e3d3ea383c557e6028d99","transaction_count":0,"txlist_hash":"ca0801d366e8dc44c01db11f67594bcb3ea3e81a3031cee93d24683b82185461"}',0,'BLOCK_PARSED',NULL,'ae73c5a7328184e0c2582d4ea1fda75c66a43ec87832b3621d21d79ca006e2cb'); +INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f7c039b93a85bd84d2abe6a1853f5bc4ddf940bde033b21d0ab2a516c33f5b7'); +INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"34c2664f81b1bbb53c728636097bc4b7cede67bb318ddcc5e5e6b5735bcc55a7","messages_hash":"84baf6fda414c991518e6ccd0f5a7ab75c8026e5283f9383f10dcb5fa2dcee9b","transaction_count":0,"txlist_hash":"321bd59dc3c2996a1a2a6f74905f89a8db172b3b2b35a2d1cbfc6d06f49d09c9"}',0,'BLOCK_PARSED',NULL,'9a3723e02b31fef9f3f13e1ee763f5247e5fabea3a59d08d02685c0e5d4e6c29'); +INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c85398068d4df7bace2ba8b3cfa7b53cf601181377cc59e5aab48d7a1ea6d391'); +INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"14615dfa6194665d43cf2f495b8f65fb9efa04c2e90885172d229ad4a9dd2358","messages_hash":"2e0a9f989a77873aa89e50cd308c8772bf827c6457d596ce10718374dcc0771d","transaction_count":0,"txlist_hash":"3ef6f8bdf30073f297852db2b7036374e3d2c1e91b0d087cb2c6c88e400de110"}',0,'BLOCK_PARSED',NULL,'f3a0a304f3e0bb013d1994335f1a2fc86364509285987f41c7757bb0ccd6fc6a'); +INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'839f4c60d0a9a49ff45212c59d8ed9b557536c2736e2f069bc342724f6e702f4'); +INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"fc0f077548225d481384a1aba2d91ed4ec8b2df0f0a57ab603305c615672b25f","messages_hash":"7d3ff97e27c84b8070f94368ec21ce817e2e8724f3ce9ed0e912579485760812","transaction_count":0,"txlist_hash":"0788356af4b45cc44c143c457d069e64d54aa12703f8c376cf3b98827052c173"}',0,'BLOCK_PARSED',NULL,'4b00ab21476e14bc9cf519be5a1c7528129fe26cd66c1585aff92b1a548d781a'); +INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a76ebd33fc2604e331ed0da26e5c2f87b2da31389ef010fe81f6ef6ed669226'); +INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"5749263295014a597071acf2293fcd185d02a6a7b3a96df859aae3bf146b276e","messages_hash":"17fc977fc701a764e28139fdf1e0094c2409da1b483a07b2cecdabc66d1bbbb9","transaction_count":0,"txlist_hash":"02938682157ea8b10c49e9d87ed444c1303a952a00f6acfe33a1661e84868cc8"}',0,'BLOCK_PARSED',NULL,'03bee1c18f99c050fac92664972ebe99bcec1fe5e682edaa36af72497baf7cb2'); +INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61c73569392c61f9b92e7060d2ea3d60cd25ca4ffbf298d6a391af4e13768aab'); +INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"ae369a1ec3e4f2aea602eab8c7ab1181cacd6b8d01582c96c4771fdd7b3de771","messages_hash":"116f33c905cf1981ab7da9781d643891b2c36cc82730c370a7a389c5f1b2e898","transaction_count":0,"txlist_hash":"04aaa17c2a3dacf6c38b16ed63d70aea7b9546dc7e733dd51a3c08248ca13eb1"}',0,'BLOCK_PARSED',NULL,'7667cf8b60c90e8cd6a6f77c02767a6417dc9efd55e343bd326b5d43adc6981c'); +INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0f9d84393f8518b0cd8a4c2abadef6f8e183f85074d297c5f038daaa40ec631'); +INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"06a2ac591c418d2b01c74edf2524100afd1140c3933f32120c4cc3180c1de3f0","messages_hash":"98a0547c308e122d7c8af33fd866af798f6834286399f5472a67cc3fe92b3767","transaction_count":0,"txlist_hash":"421eb90f1258261c97512745b3543fee15ae8d17769d523646033851abde9c75"}',0,'BLOCK_PARSED',NULL,'0c90fdce794ae020ba25d1c2a756dcf233fab961ef724c0b08796ace6eeba314'); +INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50dda2ae794a731aec390d2cc94b0e2fce0d60fae4dc48da365c178c695b27e3'); +INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdf0ae4d5d06b8735e3e62f5a76a902fee40742fc760578dae98b43635f2e57a","messages_hash":"6b7cefdfa2550e8d99ed1c5f0baa496e496a47ca5e4dd3f709643c5f4d907a43","transaction_count":0,"txlist_hash":"cbe924452487ba251291d1bf1ec518a7233eda0aa956d002bc2e0933d0057c53"}',0,'BLOCK_PARSED',NULL,'485d8af36e7aef7d8dfc24af30fe902d5ba1f85ccfed904c1f0fb482aac07f4c'); +INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'633ff367caf274597d09761863771c325d0e7fcef64eb069322d0ce7bc451b3d'); +INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"77d836433add0cf3f7691884ec1607dde9a3996df00128703644527fb096bab5","messages_hash":"a41e690e1bc931a48c6420fec2999266a6088e6b6a6eb6043d045abfd6223860","transaction_count":0,"txlist_hash":"2dad9d43a8612157867a046cc0dbc8939f30c41cc8f527a1e184c93004cca63e"}',0,'BLOCK_PARSED',NULL,'55d6313a274b91783c0311c02ba0fc815ceeff0dcdaf945b9d22532095751b95'); +INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b84214237cf7c87824c6c25c0674f1d1142eeeaccfebc38069ba1ccb99013b4'); +INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"770a0187b5c98725dc32e15a414b9323030f407749fcb0652b1e1f2e4e762e7e","messages_hash":"67c11e93a9c14e402dadc5dfaff7e53e83df98c16c6486d25c6f6255b534916c","transaction_count":0,"txlist_hash":"251e12514d80ad256c13398d257708ad2dfb3b70db674695a8d72d977337ac90"}',0,'BLOCK_PARSED',NULL,'d417d7ab74103325ae3c4fb545c1e8cef9f4c8be8a13ab4e80e24487324ea14f'); +INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c2378c6cef6a8a30d15b0db8f9640fdde751887270eda16c009e2584ba073d0'); +INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"567e91f9456ecd020fbd2fe940d796ac976981485f870db8cb0bc41d77a0fd0f","messages_hash":"1d47d96274fb003456daf8f428e980a27f74975735c87f37879ed0c5fb717354","transaction_count":0,"txlist_hash":"48924c125c80fbe8887ff318ebbab0edf8629e604eed0561dd48444bc4acdab3"}',0,'BLOCK_PARSED',NULL,'b6c063836078b54225ff03b13c4f45898d76d8cd2fca9bf6fd6f692aca7ad4c2'); +INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca978c7d607eb003b9b72c27c1d98446e7d77557f7a2724bf6785a4f08ea1a3b'); +INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"447ceafb93aeb346eb98d87db46f07f4d1f51ffde3d44adc6056a624bea3b0c3","messages_hash":"d73f9168822ea96d7e310145ff303035693ca29a9be5089dfc77a1c98caa0554","transaction_count":0,"txlist_hash":"213f5672119909ebcda9f987e3bf69dd0404134584b36c56acdd3596a1ea6881"}',0,'BLOCK_PARSED',NULL,'73c72bf353f2d1fc064c899c7f1d07b274727855d91920669a105c93b6180222'); +INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f00b2a684096b3b7161a8ae0c854f5e85e3e3cf2de0a5b000082e0b8cd69226'); +INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f510ec6201f4eb850d4f62b399d0d360d0d8cca7e3d955f849ad59a22fba1677","messages_hash":"08d4d7f19122d0e1a8e63fb9d5c2cb883d521a48c51f6234029e630abc1b7397","transaction_count":0,"txlist_hash":"e504e97b361e32b0256aeb1640291eeda547dc564043835013086c87f5e637c2"}',0,'BLOCK_PARSED',NULL,'9e239dbfb6c02be5e67c4525cbfe1861d66e2eb475bb24d8cf7c42ad1ea0114c'); +INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac7a6cd27695659a31bbebf2610f208f1ba3e54f485ea2c578275b97779ebda6'); +INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"1f956e2c07defac832b7c90982c1e7a1192988c4d1e622b54b40b78065deafef","messages_hash":"e58313adb26c4265bdd393efbfe363dcaf1c2c1bd219c55ebcecbd1219c9b152","transaction_count":0,"txlist_hash":"891969418c97f41be742eeb562f39cfe92543c159095f58c5f58c8c2b0274423"}',0,'BLOCK_PARSED',NULL,'91eb9fd19009cffe797988ae9650504d978761712edb30dd797c8d3153acff8f'); +INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5e73a35d4d8dddc577fc8290110fd7583bd0d0ebe9411da444718dc77c39657'); +INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ac4cc3e01feb10ba2211afdff4ec43a4ce13a12e1a90dc6f675c390e6395b1e3","messages_hash":"31c7403032ae032349b6685314b783b829940fd5f843b25e39e5d672689bdb79","transaction_count":0,"txlist_hash":"71e61b2d7aca45ccd7cfb6bda957b18fa076cc16bcbbfb63668e4c4f2749b7f3"}',0,'BLOCK_PARSED',NULL,'9276b8e7bf808eb85896fb5dd191dc914b70134b0620e3f4becb33a0ec1cb988'); +INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'690fd518e0fd190801ec9665253b30e6aee76af6af48d62fb3679eb02f67836f'); +INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4","messages_hash":"1b2b42ed277c3eccf500db635ee0cedbe6ecd9226db87a8e1ec54b94865652c3","transaction_count":0,"txlist_hash":"e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30"}',0,'BLOCK_PARSED',NULL,'7d6b8d048b6776fa3f4da195a88c2147e83b6e8170cd7f91f3ed6b16896963ce'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index b4162cf648..73b49442d1 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -755,70 +755,70 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0'); -INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1,'ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0'); -INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1,'8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0'); -INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1,'197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0'); -INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0'); -INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,'2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0'); -INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0'); -INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0'); -INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,'4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0'); -INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0'); -INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,'8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0'); -INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1,'ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0'); -INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1,'07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0'); -INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1,'1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0'); -INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1,'a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0'); -INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1,'3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0'); -INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1,'698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0'); -INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0'); -INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1,'903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0'); -INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0'); -INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0'); -INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0'); -INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0'); -INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0'); -INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0'); -INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0'); -INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1,'fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0'); -INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1,'0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1'); -INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1,'698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0'); -INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1,'c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0'); -INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0'); -INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1'); -INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0'); -INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0'); -INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1,'a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0'); -INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1,'61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0'); -INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0'); -INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1,'bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1'); -INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1,'2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1'); -INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0'); -INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0'); -INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1,'66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0'); -INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1,'147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0'); -INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1,'dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0'); -INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1,'34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0'); -INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1,'01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0'); -INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0'); -INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1,'1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0'); -INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1,'968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0'); -INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1,'2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0'); -INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1,'fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1'); -INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1,'0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1'); -INSERT INTO transactions VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A46524545464149524D494E7C7C307C317C31307C307C307C307C307C307C307C307C307C307C307C317C',1,'3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1'); -INSERT INTO transactions VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A50414944464149524D494E7C7C31307C317C307C307C307C307C307C307C307C307C307C307C307C317C',1,'63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1'); -INSERT INTO transactions VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,5575,X'5B46524545464149524D494E7C30',1,'fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1'); -INSERT INTO transactions VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'5A52414944464149524D494E7C7C31307C317C31307C33307C32307C307C307C307C307C307C307C307C307C317C',1,'c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1'); -INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6675,X'5A51414944464149524D494E7C7C31307C317C307C35307C32307C307C307C32307C3430303030307C35303030303030307C307C307C307C317C',1,'3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1'); -INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0'); -INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1'); -INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1'); -INSERT INTO transactions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'655843507C3130307C',1,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0'); -INSERT INTO transactions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'65444956495349424C457C317C',1,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0'); -INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0'); -INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1'); +INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0 2 '); +INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1,' ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0 2 '); +INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1,' 8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0 2 '); +INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1,' 197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0 2 '); +INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,' 44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0 2 '); +INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,' 2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0 2 '); +INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,' 5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0 2 '); +INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,' e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0 3 '); +INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,' 4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0 3 '); +INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,' 70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0 2 '); +INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,' 8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0 2 '); +INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1,' ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0 2 '); +INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1,' 07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0 3 '); +INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1,' 1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0 3 '); +INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1,' a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0 3 '); +INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1,' 3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0 3 '); +INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1,' 698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0 2 '); +INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,' 1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0 2 '); +INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1,' 903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0 2 '); +INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,' f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0 3 '); +INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1,' aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0 3 '); +INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,' 9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0 3 '); +INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,' 4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0 2 '); +INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,' 821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0 2 '); +INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,' 9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0 2 '); +INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,' 3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0 2 '); +INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1,' fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0 2 '); +INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1,' 0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1 2 '); +INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1,' 698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0 2 '); +INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1,' c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0 2 '); +INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,' fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0 3 '); +INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,' 3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1 2 '); +INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,' 2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0 3 1'); +INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1,' 7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0 2 '); +INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1,' a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0 2 '); +INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1,' 61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0 2 '); +INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0 2 '); +INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1,' bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1 2 '); +INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1,' 2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1 2 '); +INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,' 6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0 2 '); +INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,' ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0 3 '); +INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1,' 66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0 2 '); +INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1,' 147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0 2 '); +INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1,' dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0 2 '); +INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1,' 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 '); +INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1,' 01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0 2 '); +INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0 2 '); +INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1,' 1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0 2 '); +INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1,' 968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0 3 '); +INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1,' 2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0 3 '); +INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1,' fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1 2 '); +INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1,' 0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1 2 '); +INSERT INTO transactions VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A46524545464149524D494E7C7C307C317C31307C307C307C307C307C307C307C307C307C307C307C317C',1,' 3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1 2 '); +INSERT INTO transactions VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A50414944464149524D494E7C7C31307C317C307C307C307C307C307C307C307C307C307C307C307C317C',1,' 63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1 2 '); +INSERT INTO transactions VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,5575,X'5B46524545464149524D494E7C30',1,' fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1 2 '); +INSERT INTO transactions VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'5A52414944464149524D494E7C7C31307C317C31307C33307C32307C307C307C307C307C307C307C307C307C317C',1,' c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1 2 '); +INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6675,X'5A51414944464149524D494E7C7C31307C317C307C35307C32307C307C307C32307C3430303030307C35303030303030307C307C307C307C317C',1,' 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 '); +INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,' a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0 3 '); +INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,' f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1 2 '); +INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,' 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 '); +INSERT INTO transactions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'655843507C3130307C',1,' e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 '); +INSERT INTO transactions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'65444956495349424C457C317C',1,' 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 '); +INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,' 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 '); +INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,' b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -1327,1743 +1327,1743 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":"e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0"}',0,'NEW_TRANSACTION',NULL,'4a87cc49a20843c26b1df763f3ce6b52d59ed1c028ac6c36a1d96f52bae51b4f'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','885ebea2d49f4a749882f86e10e9b21fa6abc1a52e145cf510b39f1aec3bf6ed'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','60ed070dd6d08a8afcb118fca013550daf8919696f16a8830e8184536c5c92b0'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'d4cf8a624f76c044302f63aba8daf9799694941ea251bd7a39f88954bb411315'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c40adcd29bd386c6971d1826236154e7272070e3939aecaa73a5659eb39c1b5b'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2,"utxos_info":"ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0"}',0,'NEW_TRANSACTION',NULL,'965afca74493b295ca82e11e875f58c913fea311185bf15fbdae93851d9651ca'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','dfc0b17fa4a97e06afccc87c24fbb7b2ee9690de70b3739bd570cd4ced5149a8'); -INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','3601db0efd870070245923a53e4103d25bac7ea07aec0873967ce2af7c59e0d9'); -INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','69c133f7b7135486ac7ee00edcb20ced09224d33b74ce5dc6b1dfa6476b625b2'); -INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','81cd8e7e7c9a522bbb5edeb55fcb57f69777f03724c212b82fa372c1a4b7c7f0'); -INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','c59cd5348a0e48274981749db99d617a54187b29e054c0e4e5e71ecb75d54212'); -INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'d431ea5c36c8281924eea675245c1a57bf6e7627bac0bf7de1ae202e6ec18026'); -INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a732ea775c3074c37c07538237a921cfa12b99981c1fceb7ed63560f5503c8b'); -INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3,"utxos_info":"8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0"}',0,'NEW_TRANSACTION',NULL,'c623ecc76935dcb8986103a8c6590e0bbc401223ba99900fcf2b57e61bdf8e13'); -INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','773f817e9ea734cf7567d73494998fd051354c7153dcd01e19051fc9b50b31b3'); -INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','f1918d0943111ca12faa0a2d582b839f3c6f7b7f522fb2447eecf3ec21af0ac0'); -INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','75da65c1cb4fc710f930c8908b52ae371ff6e1674f75d5cfb831d21a653f5d56'); -INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e5277c57bded43ba153e9414b1fcc3739b812b81bf401ac5e4435c7c5d1eae3c'); -INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','48f7e87482b45a402cb6453ff16eb5f39eeadb4002dac42d149984644d4d86ec'); -INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'c4c4820a2ef1f9c4193770028ed8c44c2d9728703979f55e545ac817cf87f6f7'); -INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00df60911b15aa382ed254af3a3624487eabcfd421371ca936c9d9f1fc563e3a'); -INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4,"utxos_info":"197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0"}',0,'NEW_TRANSACTION',NULL,'bcdd799ff3074eed4c39841d84722bffa0987c1303effc3c1db69db9d7fbe186'); -INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','5cfbcdb9dd51a4074410a6b41a04892cf1d4bf12d2ff195fbfde0a0ec89df6ef'); -INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','8566b0c679622bb955c467781d9b57a112194af24888c3501e63ecbc38f51434'); -INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_events":"creation","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','3f925e130865a7c1435d9466b2e761e3b235e9f226f8201bdd0b2468ffcc68f0'); -INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','0da26f4a283dd456401e2af17ba06532136a36594551b92416a68b863da9a0af'); -INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','f760bc0ebe62320ec71d89b27aa4f452ce2a54088c87baa139dc922416c6be1a'); -INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'f6760ced99e0cfd61d2c96f82ac131e36e4e091c7d48999bf5b31d075dcf7a76'); -INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea9f278a9d09a5b3f943d01f9733993daaa92bb2d83549396ff05eceb4001806'); -INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5,"utxos_info":"44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0"}',0,'NEW_TRANSACTION',NULL,'fd60331ac14a6cf0b5a37da04efc294f561cc5e03d6daf1647b26a8af85436c7'); -INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','63eb85bc9e6ce79431a845d85c6c292975402064dda9ff8d8fabb514eb6ba952'); -INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','0e874f68e1ea54e92d714c0e388f9c3a8084ea59cfd8bd918b6568758fa9df2a'); -INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_events":"creation","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','aa6e01961cb1584d941d9f907034a568a687ce7a9e04ec7def596d284b550630'); -INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','a9332642805ce7ef970a9c1c7839c194692a274a60ca292ea984a80defe9f205'); -INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','dc531da38c647694df8f746528e5baea3214d33e1449985b29df2ff15890d0de'); -INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'85da0c8f33d4810f09384309fb01cb17d91a545532dde211b377360abfcccf85'); -INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b43a298d8c3571ba4b79f2e7af02ec84af43fb311f316510b98cd92618e38f'); -INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6,"utxos_info":"2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0"}',0,'NEW_TRANSACTION',NULL,'082641c57dfa01635f6e174bcfa502f8e015b58862895b3ebf870bf7869e8f25'); -INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','a9cda90cefd6e27f76a3d1c32656c031ece3ee6d1d2a48b54a5184c05319a14d'); -INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_events":"lock_quantity","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','b8f03583abe2116deb359be7332f265dd520bde48aeb4cb277bba9fd07d62e92'); -INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','02fcca9e65062cd7559e51ccd31db08aa9b3e65fe3a8c3b345df6234cf127e1d'); -INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"63a7957eda022b56b21c330252e25c00991d7559c0d1c4c0fd743be972baeed6","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'8c237237da030c6a34d865127e0db59c7ad3eb9da44862483f7ac0b2847664d0'); -INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'444e29fa3681eebbc16b504da1a57ffa1114467ee50381b8db75122dfbbe0507'); -INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7,"utxos_info":"5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0"}',0,'NEW_TRANSACTION',NULL,'06b0b177b3631212484bcfe991cafd09f71246f910920ad4ef4a9b2c40589593'); -INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','9bc5694cf09e0aae9f176e113d1368c84ed134f4d9865203a8699c2ed772a6b3'); -INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','637f827cbf7aab9d954de79a059e779f2e10a2ab5c8f5026a658271344118d6b'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','2893ff829d6f87617eef6eaba696c79dab808a23d01c6de86b85d711f128db83'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"f1ec09af67d51677f20a0462711cd5841b16d4aafbdd0a96d01acfb39260d0f5","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'47aeccb9132fc2c1f0dec942697758b066be5a378acc16e29f1d3e7a35abee50'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34af993069c5d53cfd345556a8d11dfe6c55b1180b3f0f6aebb830bddc05e73b'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'e568436d741dca9bb01f63b71ebee92561c328ecc792087f718ab1833d20f273'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e346ab4fbeef4af6e0fb414b4b3cb6e725fe557786f0c76edc320e96bdfac91b'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','0d61ead9f6f5037f035b3a12eb85ebc36668cf6e3d8aa475ac15f49253169fdf'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e779a71198c4db10385f578eabb3268b1272b1ccb0f2e6561e68c215f10ec000'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','8c336012367e08dcbaf4d2f30fe65d86b880352bc3e0d741b0a23a6451286b9d'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'5c27371da8d8e128183af90c3b2b69f180a3943becfa19818dc1ece29175ec22'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc30887d62b3e5c4bf3ad2b302c1b741d1ddbd6ebca817fb598939e7d7db4f6e'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'bbcee5dbe0ba6f067acbd54a30b67ecce294e37c618031284896be5e54497b2f'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','7498e3b9b57713023a48ce928bf6b15fdf572e75eb8647a5587c677fcbecf53b'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','3ff860d717820224852fe2bd470f085062dd9a94a6d333eda8fbaf1c0502181e'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','e21f8194fd6107fac5a633f878462f4ba8f705b6c5615d65232fde27dc9bd1ce'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','c35521c94bc0168370e08adefaa497e883b104ddb952187f59ed7bc58e7b746a'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'788b0ee4b7b9d2583337fed8a00f194799e4a74bf9c590951ca6135271fbbdfb'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30b41bc6d7ca96ed586dd3928cf2e9d8bde83016391f5b9eafe8a5648e7ab62b'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'84c90085c9d545b88f66ebfb3e58c256d722fc8271ac00620489311f0d140a2c'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','aeab1ae877e14d7192421d2f0c4c2eef18cd7fb2539197776cd74d342db53329'); -INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0f31d291582232e230be79dbd0171d99e7141f4c810f303c9bd2f60066b79aa8'); -INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0baf9dd2c3e8289d08fa38a034d2de588266957cc5772519adabc76dcfa8222b'); -INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'ca6f3d75b375e844895d85737d9f0285dd06736cd4761c2f47099ff0c6b923aa'); -INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab1ebff0b08db009fa7577720821c2817e0dd8b7693a309aea2ac9c4e39171f'); -INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'bbde1a346ce21fa2d5f3ca3a761c68b62ae938af0f8c9267aa267952dd471389'); -INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','ea662f1fad289dc920ff16261eaa7ab2c97334dc7782b46a1fa11e5230ae6bac'); -INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','fc8b3b08702f726889a32188982286643ead219a82ae851296660dcf9dc0f431'); -INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','2cfabd4ad7f38de43a7159d319df2c939fe5e51719410a1752ed5e666ba2d7bd'); -INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'794107603e582efa04f3bb7355bf23fd23808de48b436b95c19683f2f7a47e00'); -INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f6cbdb5ba126f33684fe397561300b0b58e03c6b334cf847b1066e422afedc'); -INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'39de1e16910d9ffc1d5dfd353f94b13436658f32dc894b69ee53d2f17494c4b8'); -INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','f55704cfc55133b23eeb721254bc4780eec3557f828dcdf082cc65006ee9c94b'); -INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','d3d5f9ba975cb392aafed578df2b458d2c4bb30b0a1fc12ceaa78cf5da9af557'); -INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'b1feae4c1bf7d56ef29731c9c708d30f8dfb45ad3769245a7eafca99a1cdb5e5'); -INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c8b8d3164663c23c9184fd566a11ece3783f126fd57b1a6909e29964338cbbd'); -INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'52929b833155c012ad3654694e2802a9bbf8ea744269006fd3de014dde5e752e'); -INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','13a736d355d427ae1ff311ffcbb7e1522cbb3d5b3f62fc45b77e82e5aca1304f'); -INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','77759c9ad4c731beb81ef9f54301407219c49c8b91c07d80fe11c23b453f9cab'); -INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','eeefc8dc97a031d62677810717974c12fd12a2b381efcb8d0a2c11f03fdc71ae'); -INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','e2105538776629201d9ea29d9c4704b9693a918df4ded276f722b49084be3a06'); -INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'d07370a170926072d6540065cfcc9541cd276b3a52bab747329cca67ba3223b2'); -INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23c2019f9fab23c19025889a50c34e68ea31dce366bcb08c6672cd993fb841dc'); -INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'b5b0c17991db53d142b0de1798f357f691146d8399fe708f1619fe77bc470bff'); -INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','21a4036efb63510cc77620ce57528cb9807509080d5605aac281b274842fdb1d'); -INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','f3742564a5e22a383a9ad4ea5f826b9deb446a54bba7f43f1c97ee0e894d86ac'); -INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','53a488de9f8a17c91c12c7bfc0ac019a6c2203a6ec6c27ad92f5667485e9393f'); -INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','2b0102e07ee2c35c2a69a48987e7c4c740af38013a67167ceaf862e47fad1f74'); -INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'ab0e7f4e1b60d73709cc709b6a65fdc5c2b4c97e5e7dc2d432b1c669b4c8a8fe'); -INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1415550ee0e00cb38f6afae73d0612f99830b209f5cfbb16a358f9691de7f0dd'); -INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'f36e8129f5999e3307dfeefbd46d40343435a2ea90c85ce620dd25b409970c68'); -INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','cf3770393644c8898da573bbbbd5c3ef33725a69d8fcc790b62660bc1c03b784'); -INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','19822c6c2c9efd20219336ada6b366524e7b6301d19b5aa9958de9661433d61d'); -INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','fc332d3d2d6b225b2843d4e65291800a1265abe6fff55f17816aff187b69c348'); -INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','10de4999556a31a7c115ce8d1416fb63dffed740920b2abb741f618081873c5f'); -INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'5e581ad87a6ed82653e9b62f44ceb318a3ecc36c26837d79fe73e5d26d30d890'); -INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39546673ceab955e8cb2444191e9acfec389c943559705f78c2e5a6ed9235b4'); -INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'25fb63b5b4d60a7874f2f3fcd2ca6481cb044d5f3ea547d6a9c7dbc2ee0b9ad0'); -INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','16f1880f51e0c78869c00e6cf521519626cbfc8126c8fba1f778319abe9412aa'); -INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','ad9be938c6fa3767f627f08f1ba15ab325ca10fc575cda7f577b59118821b268'); -INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','838d3682ec71b13129a424f5d72d601bd605a89880b96ac7bc601879be0e4322'); -INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','174ece8514fa69a0f4eb6a6815c97fe28e5d6067a0ffdca4eebd730b39504a0f'); -INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'bcae308dea2e4c5a95175b030665c14f71837e788550a8882108c3a465dc34b4'); -INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'903d485875ff95d6d1d3e2b345cffc055cd5da4fbba5710f88eda2e4f9f31fb8'); -INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'09327f73589be2c0a79e5e9f5fabe63e645902295669933a34bee8a8aa9f3eff'); -INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','35c653a08edd22ae96de1acce6f8b2e57d01854d3747259681bd3df7adec621d'); -INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','411d0df4bb704c60f5e086e3c9042941b559b766982f71ef8ddeac906caca26a'); -INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','2047ecf5dba08f541dbf5c01abf763646d35703a461f475431f05555391e4b5f'); -INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','14892209d114b93fe7c3c19ef2edc947b71fc109ac5001a2c0fcb6959eee8df3'); -INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','81b270ff43063922eb6c9f7b040cd1bd8c0337c6bf3d74f4db992477e1207e5b'); -INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'7f319e5b69ff85f258f69a6ecdcdabd01d805507fd2941794e47feaa926fb716'); -INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48270feee536c8028dd9bbeab8eed83c2ed9deb47a2973db1a19c0e097e308c2'); -INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'381d9f5a7e412850a58264eee4ddc7c450597c4087160da6e6c7d5c805d53fdc'); -INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','66f68ac5163eeea5c70647f45c57708728672b53850feffc934839316f71498e'); -INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','bf853aef472ce2ac079d2995ffdda733e9b93dc35c2c6f15d8e56728319380bc'); -INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'c62a71daaf7247e45a0017d2023250037551358ebb1b262e0e4c1e407db9a907'); -INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b6a3eb6f2044997c01649643cb0505166eb44fe0414917ed60d2b947eeb9c3'); -INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'fc520a70f9593e5598bd39d33f1f8e5a07593509d73b5691072cd0b7316164d1'); -INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','3b3eb5457f4c7708c1b6d4f1a662d948129bbcac6a008c4efffb242549ce075a'); -INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','e507784fa08c088a607afa05d8c634a951591c8bb4c3661565af2380245e51db'); -INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'df09864d7bc1603c14db2d0118d11b135b3ef57dbf00aece490f1a66b6f63a11'); -INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'085ae744048017ff5604f5df80b31492e40c2ea15120ebc37e8b9a19c03da1d7'); -INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'37404e473ad508d08f3ac0df32adeca07149455a676d8f6415d9c7b7e6082b23'); -INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','7bbd2e4a1be627b418209e1107163eeb04a9f567ad8885a881f8f8738324973a'); -INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','a677d8b47ae37ddaf66058ccfb038d9eca01ac3b291470a0d1463aae9a38cde3'); -INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','807048baea88ef11f693232bbcd8628166e1b02896a1714f22ba2d5ea5f4a8c7'); -INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'4c0c4967f7d4baa4e125fc010f444e2832f7f607dfb420f609fcb7debdfc3bbe'); -INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66cae2ad72897e37d7ed5ab7ae1aabb5b6efc0564af68b20282bfa42abb99e7f'); -INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'45d992c3142ba2d5180d63708db693e804149ed4f8b57aa43bfa4a29533ac294'); -INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0565c38c7a3c8d56b71e7e12f5615085c709c6b9f7df56926728f5ac22b7ec0e'); -INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','94a3f0e66b199ff0b516af7dbd8e58cff5b1970e07eb12e81043715e12a31ac8'); -INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4e9c313b0951fceecc6d2a1996ce9826b7b283e7e098f03de956a6bf8edfbbb8'); -INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4dbc8c9a4e1fa046ab5f52167d5f8da704394b4d67e0f51187707395889f3f9c'); -INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','2d5ab3fe0473bce1563ccc75e22cf858642598c12163d227bde8229bed605822'); -INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','d0f4b9237a4e8f4cf1c1bcfe43067caa868ea11902a0e9ceaa70d750e56b92bf'); -INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','e1a9f17ac6cdf73b5c199f81825e3cedf247f89cfd75dd865b00c0fe3f2b15ac'); -INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','fb75210f8e8b7366fbc90be3458063658691852e9b7d00242590ec700f28d1ea'); -INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'c27b4af41012ddde47dd6a0858d0ac4ef033525372e968ed99fd88c0e05c4b4c'); -INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1000c49830c56a4c9b5722153907c8f32dbe63db60cbce758367d299aacdee0'); -INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'36caea7893ba863d7993673cc602c2a1229b7ede35a192935924c8bdd800d84f'); -INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9eaf497111c52b9ee116f2aa09b27c08847c5940b1e4fde8c2c7a6c001eaabe'); -INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'849c7f0e62e87f17b73b4ec552854fe7f94b867a1359b7abfe1a4eceff4aae43'); -INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4841734cd02ff5ca765f2aef75436371929df9bae21837873ae595e58f3e5af3'); -INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'0e484a3676e1e2b9618fbd6e673183f7ccdebeec47d436bdc2bbc8242af16660'); -INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a9e27f2607338d2232b2a94b5804de9b9e57641fc3f83b77ff365a11dd5fd6e'); -INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'7206b36633ba205a2dcae010d5153b73b32ed9b9079b1f0cd51905acd88fb5c2'); -INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc59f06fbc0b858f102661bdf80560b150f9d83ce64dba92519fcd659a1ce71'); -INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'a70b7e6ecbbfc3d4465532de5c2d45a232f9d1a6af7662fa898a4c96ae678bb9'); -INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a965e48b0ec09164c6f32ae8102bd87459308443bc91096ef21c92c9b3f1703b'); -INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'84dca6fd6e1885b5b0563d9ca0a86f26c44c14bc60e9a436f6aa231fe8c488e0'); -INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d85aff8a2f60a5ea0482be20b760cfcec9695cb7aab66f5d42a11b5fb87b74cc'); -INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'bbd7f3126c49f53ef8716ba16ef42d2b53412faf47543cdab441789a59152c37'); -INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1f8433f56668f8e997e1c89f4d97847ea8d0881b7500cf0a61930eff23ac88d'); -INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'cd13d66f5be846f79e83b9986751c832d5a2f153c9b93ad5324280592205c215'); -INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12fa4c0f3d5c7e631e2492dda31e2022b935acd15d835e7f02a3c1d2b9a8664'); -INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'d99b76f4e3ab727b19e5031a0a920a72d06c23cb6dd59d4a85553bf6dac39c46'); -INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e3fc64bcd798d0ece378a85c534ad26b00078c11c952819efcc5c72498efda4'); -INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'7137c1d6b79c82b57d2d5940025d25248a5fab44ac3f380687e0d35e46c2faee'); -INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fe99d2f6c9f780c656a169fdfff77972b1d7f2fbf87e4c5b6237fd2ce3023f7'); -INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'296b8c62c0f1707832fe0d10df75d10feae4c7a9726dc05ad944e756a761eb6a'); -INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bae69677402b686bb3c742caa6cfb6a1c17a49065edde8630f7be16cef11cf9'); -INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'3dd27a508c73b2a6a11e2b38d74f9da5928b6816ce622ae6c8dfd25ce654355b'); -INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5887016ca25b304216bcbc3cf885bb85c6be4f7ffe4675788eb91fbeb37b933'); -INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'c6bb67adfdd2374a7a72422a8bef60ed3291c9db6591217a54be704e86d7cdcf'); -INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d86b2bb6d620afb5cd2f972a0fd5eb58d2dce63ee75f7845a1adbcdcea4d0ee'); -INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'4ca7063a3981109476c1b8553724e376a8514fd84ab1f2ec3e9fe3cee90c0d39'); -INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40af5cf4479c3bb7304823ebeb4ecec3552e5e86fe4ddfcf41c39477c02bacdd'); -INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'7f90575af3cf09675853b84425653428f9f001535de467d9a446144fe01b3fe8'); -INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'981b6b3e5aa312535c687486d6d5b94e10d82d427a145c61d3e5bf784fc578b4'); -INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'49f50558df793ddb13bb3648d1c3343a1d92f1218f97775686f8fe544c312179'); -INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15ffbbe275fe1e72bbfa5212d874d4090f7f307146fecbd8161233e935cdba5'); -INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'359583eb964b07ea19ce4fcec7e2b4cb5c9b36736d12b07b2aeddc6fca8eed7b'); -INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2c001acbe50118ad0d412c4a01dca54690df860584dcc8aff2a0a19dad803a6'); -INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'0f479f616435a3a84558ae92fac0209feadac1ee5764154a786950dbd4ae26b9'); -INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d6681583df4b32f9eab33a6ca50e743be4027364b333d8af4b31f4419d0d4c'); -INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'5d6f1c795d453f450d290340f1b2c987d27c1e23366e4b8e9464bafe0217ec98'); -INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20474c93bdb9d471e15f5c67eef54df716f6213859b313720e765ed5758931c5'); -INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'4f1982c1ef9dbd6a5ee800f4bc544aa4c54fcfcc162ee8427621ce364b2a7b8f'); -INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e47266787ab75e2e7827451248d43c493e01b4ee541c2aaa06ae9a9fbb4f01'); -INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'65e45bdb60f7d914bbf86179d713a22bf9ef1c4996356234f653579f437a5539'); -INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52259f668e251b5e0bd33a5c5af04e2b4ee584d8e158655b9c4cf25eaac3d779'); -INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'0bd862eabe9b55c63e81aba1321b88246dcf4f85b35ce96faf437cbe6bf5c537'); -INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f60e63b1e915185790fcd0ac219902623d5f261162529950fdfe279f2e6f975'); -INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'81409fbeb48abd8081b7d54d66c440edd8cdf0724d96c6a78505731530497cd2'); -INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d98f8f2a8252ed0fd7a3ac19efdb9ffbd180afb16d28759a8c4d4ddccaf773'); -INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'09e1f178c6b57a78ab2c7b482a1393d3c95ae20eaae3d863cc9a582ef47f505e'); -INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b46ef2e4e5fa8be790470fef84602cab68528168218657575af71fb6dd88042b'); -INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'8e3e7f737fbba921d9107e2297c3370d9381d4f1a2d4cbe4a7d1e2bb1c04d54a'); -INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b380d8c3526f6423a05da82f691100422b50ee0236031bba9de380551dbb15b8'); -INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'48c504e25e2e54b092b1756cfdf955a723630352aaa3646946e51f706e77ed20'); -INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81410fc80e3a1aa2f9e10d7956869a0c918fb25c45bc2c65a7a800689529f774'); -INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'0d6a291794529fba6ae502d2ac95dddd9b700944beff971b4bc26a304eb5bcf3'); -INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae27194fceb3f4e7a9406a4507a5dca3fba6792782932814892cd84c8980682c'); -INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'d245b6a0f732edc22c4b146f52ac6aeda1ce1d7a81b71c2ba666395bccfc6867'); -INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8381c4b3bb472a763aa0adb44fc243ebfdb42808c62d870e380699a9a1608642'); -INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'71539d2f4aab4b2d1f05455b9b35de5d4b0d28e8aebf4f521ba4f0d72a9a336d'); -INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c57cd896284d0406ed37b0370ba9e2a93529b597a5f0dbf38f5a822ec3238d8'); -INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'8eb860043d3123b3803a935dfed78713c0adcdc0c1fb22c2d151bbcefef9d916'); -INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbfe04ade1d316e9e68520c02943699873ce4ae0a10d53ae838137c2dbc146e'); -INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'595100cbfc377fd31034201c2a5b8aee275c2bd25b51066b0702790e7beb346a'); -INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f910c8a8663d9f5acc39f18df4221f6b7a5c89f6b7b42a11b66cb49917d48d8f'); -INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'9dc557db6411ca43156d7eaf024f3ca26f7aa8f5c9f8891b4d0cc3de80b56c06'); -INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9379c2be6c3a85f49eed04d52c5ffb7683e53d6fbf2c82e14b92ce1480d4073'); -INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'7722385f3c6f9293789ad3644b457da51b581d578c9da9b6d8415a02610d6117'); -INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0904fae16291fd65f6cac082a1c0fdf39a7e054bb479ad388ea40ed2f7222f3'); -INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'09d4977466a8fde33cff7c71b08c0849a6f84356fc41cf983a8f57b56c31b3d4'); -INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66e3d408d9956be6e9af9068281bf70b77b7e96caa4d1a306d62cdcb4790b7b5'); -INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'62322fbfdd42166df9d24a615989c93b5ba5997da848e0d68853bb322941cf63'); -INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f130d08dadaac0373dfaf3519d73b73767260457c6c411b6f0522b324c5de23f'); -INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'e4f8d5c62b9611e8ae9439c2755185ed72d8caae4d0b8dbb351c971457fa115a'); -INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbdb2d78133f993c8c0dbdc7e6bae3d3b3914fb1cf929cbbaf74748510b87d6'); -INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'56b38c4d19ee44a84d657f706a63263be9f109d0950298c85adedf7e50671acb'); -INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb89657ef77add312ee7c61b725f9992dd900379e722659edc3b3e833981501'); -INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'2ad63ee548cbe138cfb0beee8ff0583ff1fc192597a30a7bf422cea7dddeb6b9'); -INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f2ed1e9de80531823e856d258a2f8239b7f556d3d1f9671540f421ee34b636a'); -INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'e64fa833c979be7c8f2bf2d610ea2ce43526b126c02d5d12e89a830a79563c41'); -INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aa2881516a432b0191650706f291cef2ba16dd5fabbd9098f8fda96390f1f32'); -INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'afe190cac7afbda4fe9f8b5aab7aa8a632920dc42cbcff763a876c0462b82a29'); -INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f90c3d869a58329efa7dceda5dba504bd32faffcbbec96d63bca63109fe705e'); -INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'ab67cb20be1b3e5f2410ce81613a87b722a6a4990a17965dbff4517e67acdf74'); -INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f397cc02462b6050af96bb03b1b69d2de30b2e42d46f35266579e9a9b44ca04e'); -INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'3b25d57df8a6f04fdd380fd45981a04c0d004723e1d438293a588a2b59cfcad5'); -INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05539c17ece6d3f692d93a3dee4f18ce2893e08916750c1ab9933a6bca5468ab'); -INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'72ae90d0e55fd96235e67a3167ed132198fde41ecb2aa5a5648fbe4031e135d4'); -INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ebe2916ab50075e3fc0df7ef42b65e4272d2d8e773118f708ed70369a1391f'); -INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'69a0cafbdc312952a622f45b097ad964e654b38b9460f0d6e15cb6bad3e3cd4b'); -INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a928b89ce4ae3429651d7bd5369ee5da765c5b8fef0edcf1bd4c19c36b01e3ce'); -INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'cec165e7024a5d9d2836d87c41b1df966c4cdf32d205998e28bdd05286eccc11'); -INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a23c3133179363242f29207442c6fd0bd98418358b9f5d855a8acc8ac41f0f8'); -INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'202c4c9ed85630b13a0060bcb4fd017d4ce82dad9177cafd61bf91aa7d7419cf'); -INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfc73daed01eb534ede8f27a9fa8b8a0b4e6b245f85cc2affc67ce43af0d8606'); -INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'529186a187c8f2aab6c1d284ddcdf6e294c1f440c1375088cbac73bf36c4e395'); -INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e92f80fdf5af68eb57e7b5d469a68ff417850c33d292debb5c92f2f0dec6697'); -INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'efcddaae124136b4a77d8bf69d4e9b693a9f4d4bf320b6bfaecbff34a99d50ae'); -INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77357ec2983f3eef3a28887fa76b96b93f91b5a3210ae0726cf3f5176736d007'); -INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'df0a0e7b3f2652269bf2f14aaebd226c9ab24598d52301f0df2702aa994a1426'); -INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7702baa50fbad13c99eaed5fe5354ea96a675d7a4c0529d2084e45a51a081d1c'); -INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'dacae719868f094c94024e225f9c862c12956417f7acb848df5f1a393d1cbb03'); -INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ec25c9f8067d6f2816217fa2176c16f42d6e3ac0e6f7409e26e0d2e30500f4'); -INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'b6868bb65925a761fe79692c4e6af332322f38e67d53771c3f46ee934684a3a4'); -INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20575c41f3a99717a24ead4ac9370aec34fd1b089f7b1536a11d3d1beca8c730'); -INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'6c9f25611381b5f18978c0a4fc15a5a7cca102305e321620ad8931d280e1a3d0'); -INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b6b3df78e59df842273a5b338d88c3f1a55d05b9f433296c3c233dc23e38fb'); -INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'29791ae3366bae7fac2588ec5eabfbe98f70fad6d07e23707d2615f93adbeb37'); -INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d8e9f0bf9e6fcf2a4bd5389bf4418d3ecd281675a14cfbb14cf4130699c63fa'); -INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'d9c69489b8844d744e1ac05f29455d02ed99178c25384d6f818d95bc5297f9da'); -INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'359b698b13674cb2807cb4d6705194140489b7f48dee53a9a3a234070d8332d4'); -INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'58117c05d614e52dff65c9d5da2162c1e2ff4152d482421a4c72cc07474bfdf9'); -INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'660ae9a67c9fcfaf2a4a5afabfbf58c407bf473e7e6f3370d139ce3b1145780c'); -INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'2c3fc175388964be7fb6342f8534eb636444e4f22cc808bd2036066480492caa'); -INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'291e230500a12c0160da86471d6006ba432d478211300a6f6684007423991a50'); -INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'4148c7b69aa9705ade7cfad347e04512da111d2df9705b1b8eb1d9439dd7302f'); -INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8e6b31c30b5d49c72c0cd1a249436d79803aae399f2f38a395385bbf08e70d'); -INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'00070dde52423ccfb0a2b65f156e339cf5ba4de5621116438c0ea69fd9c3fa24'); -INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6197cad69c4b876e3d3496e86fdd3487a50ebc0199bb10fbc6f45dd93d61cfa'); -INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'dc5c5761523e66e33ff17e79fa228f5374969b9674f4d00c151934cdc0cd3a08'); -INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89028edb7f7dc8a3356afed6f15561699f0f373fa6a8feb66ff932fe7989e78a'); -INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'8a5c3547d434663efdeb3eaaa3ec5d7c863624425ff24f93fa4c3b8062340563'); -INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2215f5cde6fcbdb283beb6ddedb6f0689de1316de8eb4fa607305e5ec1a21242'); -INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'702727c6ba49d2053912cb98b4c860d3f844e5df9f77a422e26b3b28440ce983'); -INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07f870a3327a80809efa6278958c0073deb33f2a00b896aa8d4ad25df1dc015e'); -INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'f6b776798bf6a39a19dd7c642c1967a67c081ca832d91d7f3d13265963638e5f'); -INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7e368a23cb6236cc68714a7a94731bfb18a8e9877faf60082f0ec7da3437d6d'); -INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'ad45a35f3ca7cd77dc14f947b803bd6216340cabb2693887e28e727589dd4163'); -INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'364b20f124cad4db2b42698b1555961a95a0e13db750829da5a7461097d8eb94'); -INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'73477770792b773b73e11391e8b42cb6a9aba7476327889a2f0d96012f4f04b9'); -INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f8aa4195ef8a868c836c30d813f2619b19388406edfeaab0efcc9a1f4960f66'); -INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'65e89890a346f210de477c58092d18e5ce321d6f42b93234cdbef736ee1d20ab'); -INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0eeb158ba7a8012c787d9a84231799ad347e740de45c25a445110f0382dbb031'); -INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'f0eaa5bff3dba66243daf8e3f4760e5be2c1f5333622ad421a3b055e6b4feaba'); -INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1e241a3bafbf8f4b8e3762c95a3c89d6d4e4b366ddb4d01bdda69bfb4f6c697'); -INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'50b0b4f9dc9682f97b3fb1937c57d50cc9380e1473df99f991b76fd35eb4f6b5'); -INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a10dc3859ea15c23653d3c14364f3ca88d6127a2fac601d26ba11f553c2f21a'); -INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'ff6ab06d496200885ae621306331404d22292bca75b2d59a9832d3a154b711c8'); -INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7ee71f7537580b13d9178cf85e6b18b5ec767fde7c3314c5944e4c9e6bca2d2'); -INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'49666868904c174b8069ae8db42f47478ea7d61c6ba0c7dabc20fecdb9ae0033'); -INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dec89958bf298766ae474a9ba4f4c8e62354c22e94dd4bf23fa30ff25abf01d'); -INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'b9b45c033282817968d016f74671c3b018d04e2d24a5d3f77b1602b312bbcf9b'); -INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7a03fddb167b9e8ff0f5b66d4a84f197ae1b3e467940fd08169a8791ad94210'); -INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'10f9837dc304db44c0b67272b34d1ed7b62a44cb9d6835a87e868c2b8070069f'); -INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88e5afe9a0c779d1ac92d89bcd539ad62d47baf1f58515b43ca736fb4aad754b'); -INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'876ca8cc04d633add65fd0a09961e323b65c13931cd685e859baebc42ba148ac'); -INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8166c704f4e12092f3882e541e40c0b5986d1ebde72bcaba5144bbef4068e132'); -INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'6aea24f9c70d80acdbc54e8e7dca670489e8c3e6c10aa8d6bc1424bae18b8d95'); -INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dfc8bfc108e9a4e28272a38d1dd1966db19acab6b107e209894aaaf04129866'); -INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'74743fce296e373bdab3a853c818bb5dc8f88d12ca3acacbb1ce28e8c461a306'); -INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9fe6f20eb864a6bb75826b20341efb978b06d4aeebba20e8d7c3dbe0492af42'); -INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'a288ab21f901fb5532cf78210fbad9e2dbd68ff6f2170ee07e4c5a38ce751805'); -INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48da4516187d5153214d32d507ac814c634c4a4a750ddd45302707c5c5df734'); -INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'57e955fe62c97f03084b36cfba4e2768f893b961324733139484849d08f94400'); -INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9817a796616aa6a9a362b8a742cd18d4ccc9e94248aa33c70254e596269cb414'); -INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'b0d4f400bd71c25f26761dd27d58d5b7930658567e6e42e8a1c93bb1cf1e8afd'); -INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e4cd9164e92b8355725e690455d8703e239032c84084df6b71e1ef58991d58'); -INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'c70110eba2d2251decdd1c50461c75815dc751405622e27800501fdd770b82c0'); -INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'907842e4ccf6ab3df3ae4f2d213c4eeda42aa13911dd6de89e548bc1cc1fcdad'); -INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'996079984b3466e390d59593134abfe034b88001e8ccc9d2823c0ea27e9980cd'); -INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7490ca004542ac98e510ce44cb93ae3d3de42784608f9b136303a3f3da855a4'); -INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'4cd9d16ed067802f5cff819eddd667c29054084d79416471e5c06cd884028030'); -INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dcb2b1266a2e1fda63bf2315a2e1f5e50d2f51a6aea5de42b1839e2e3777833'); -INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'1797476f29279d131e738dd0443e98ab1befb06b55dfe520bdd9cb1b55757c5c'); -INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','7ef4293e04c229fcf8c15d3a65cdf0cbb7e9e1b5b0d6f4d9acf32783c5cbce90'); -INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','bd92db187866f48e800a2919ea98214d7e884eb48ab9edb79624c5dc9c956972'); -INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','faab4057d591da0fd3c4768a54d33f31db7461685738ac706dd78416c187841c'); -INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'755c08f8c073ee0bef05ba38377e77c06ebea116e5ecf37b47431bf9704386fd'); -INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378b5cc739d915e8f9e5dea03870e3062d6414a0095e8cfa9a439719d0c163a5'); -INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'85b33acee03db333fe95611ddda44ccb3efb32d72fc1223fd19719b8e1f57077'); -INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8366d982fa2e95e6ec3d639a5f08ccb0e3b274a37bd337688c00d16155a91701'); -INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','70a938086b0932bf79d26f5fa689bf67fc1b95387f3e69495be382ff7b9520c0'); -INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','e0bcbba28bf3009ddf0fb5e4319546bf330eea7873be97329bdf85aff992cd1f'); -INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','f745266d88d1c462a96d9efe1a84c6cb9ef1ea19d360afd21f1ab0cc572ff208'); -INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8eaeb45415744a112e870976aa49c10efaff45b81874a1b9e00a5c3677b76c1f'); -INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','928667d286cd267cd1d7d1f20d50eed5dff2f9b2bb8dae2d38a9203712f802a0'); -INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8b6180af59e1a5d67c2bf4995aa72598e6f35bf30477a159956931ebe11da85a'); -INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'f54f3b56a09a34b74055898b1e55bdc87fb23f67becdf3c8f3c6451f471f4944'); -INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b93aa38280fd68f6ac92768284a5818cc4258ef78623ea68622f4cd22b089b3f'); -INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'4209b94ff3279be5c409082354b91c30d3e16cda4d6d3a4b9f6911a63df76b12'); -INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','fc465bda3f5f7a55edbc8c76e81543abf7230e7ec0e558c8b57998766f310f59'); -INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','292703416469914579a59ce755ef4f017453a116d7100166f7be26529dd029c6'); -INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'ffb7898a1bb4dfabde83b8827b3c1b64eb50e580b6d94935c370670d892c81db'); -INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a2a05e2f9b8f36659e4487a644f69b069f226fa35c556554f75a95ba238929a'); -INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'9d9a20ae49061eb65d815ff080d56eba6c6cd02f66083212a41738f7a0bdffc5'); -INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','c99213dc7003935b5c5a1ad5a405f71574202c632ad8a3cab395600f76588786'); -INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','6d3a13571ece3daa9638a8183393bc0c51dafd5e9b6775814f53aa71966588d1'); -INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'6f46c9eb4aa28a5955f1ae194bfab2b17b264c642051395363e039fb9c4107ec'); -INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3aaca280c6f57e0607b0f9a0e658904b42a1c8b913ea6f5961c63f15cdb12acf'); -INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'1524d32918b43fc7a287c03bc164e4e1f08647e3e6b66e9debb6c484d8379bb9'); -INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','9a49ee4a72e99e8f557de52b140935694ca04ec65675752de3b001861f3b4dc6'); -INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','5fcdd2ce595da97edcf0c122a2ca10820b186adddd98bccde12e2a16142eb675'); -INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'3f8803338870d2d2472b3977fb32a2325e370435b247a84288becc09fef133d2'); -INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'debdcf0eaa10a5a828598146289413f6aa41e6f4a390520fc10e916fa0d7dace'); -INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'2135c16b8e25faf8d03014944f4a22a37245c4ef5570dbe1e2fbe1d8e92a86e2'); -INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','13bc9d8902c0d176680d5443aeb684b764694ded5efad2ec5094c8e3918178e3'); -INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','ec9372f9c1fe239136c0e8ac8c697e37a3cf398007543ef2067e26af8d47a391'); -INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'e83ecfa39dbce369c0d5669f27422531ba7883b0d7dc551e859d1bc9dcf15f9f'); -INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7db307cd3fb1acce1fa7deb7fec31c13facd7610577694f000d9c303ac83e23a'); -INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'15cbc5acb8478193ea293d893200ef1852038917f644269f0842d94c96907fdf'); -INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','901f1007e365665d46197b696f5914c57fc9f3ffb85ad72bde71539e7cd9efe6'); -INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','92fc5fa9466255b03e6ec3498efc2760d7c12461a9760fca9cec6408e03eca9e'); -INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','98e7ccc71427873d6483bcad9d4a19e826b0498040632f82596a96a55875a8ce'); -INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'86fb01e792d29a4299f4e56171d0e61991a189960bbc4f7adc0888d726d2bfac'); -INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b00625027ceef378a4920e894de40d5350cdc431feb31e9742866aac20eb500d'); -INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'68d10f0c9e0ed7192b1debc1eeb09fe8a42cff2a2b212ab199a7d56cb2b41dc3'); -INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3cb4871299bf6c401068b24f2ba51a64b562bf45a872f3b7c89ba6ddc9eb5903'); -INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3afd608d04818201da2c40add505aefa84d593f9bdd90bdfb1c65fa143d9f814'); -INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'3ce623ad399fe63886f091cd6aea29f051d43586d3c4340a0e2a68f0dbe6f353'); -INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a579bce2495c1587c0f43a4ca6c61997aaa34f3bb7a39260035420af7f30dc89'); -INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'8fc96291a6d666b09bc28384dfc6954910ef37e4101f0fdeb24e9dda8ffb4a30'); -INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','165d7691c7f3a6e5c3b556a367ae348b372e0186aafd536721c0fea2a0a65d25'); -INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','6f3a852067bcad12bf284b148d75a5da1f1e2bd4425a2a6e46b54b4b1b350e3c'); -INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','3767aaf5c1053af6c50909977e1a3056ad0428c3ea49dcaa8e24045ea39a3fdf'); -INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4905818a23aa3080f0c0055d0a422a742580865e4dd8c53ce2085c54c0a31ac0'); -INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4994524f7686072075a08239edc40c65305b602dc89c54d5c66b69dabd92689a'); -INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'c8983eeb48b9abf32aa2c52413fcb306966e98e3a39ae9dfc11c39b6bdd8dc6a'); -INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eea1544474e9cc0401ec357de123d9dd2ba8422819a9c0daefa4ed8ba5f987cf'); -INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'e25ccbaab8346c4787d384134dd0d19f4c69a890736b056e47c8396d928f59c3'); -INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','44ffb08d3e01384f316c88e67395c780adfd165cddac7ba855db970137a31fb3'); -INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','d6b755767564eb90e1eabb88471e51c744747624d3a1cf286de970556effda03'); -INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','fd4c5fa3359820ba69208178754789546aff07dd6b35aa61704ae06ef5804b69'); -INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','eb4f17f990ec32ba907fc95aa3043657f3381365d47ffc94c599a1d7bfbab844'); -INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'52369cd36f600d9a5299fc69b9c15746749a46f3394e8b7fcbb0c22b5936161b'); -INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77389ee6ebaeed790bd1aa40bd7a394c5141e8cf4de3556037ea2b76683d8ec'); -INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'71c8232391018b3911c82c739516466aca7a157dd3d23a2607b67f9eed6458a7'); -INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','c2882a4a6235a89a05b6cade2eea250b130bdb813381062b2b9ea4112b588fb8'); -INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','707660880324c28d35a43d805ad91dbfd7abcb70cd01f0a0743b639bab973f7f'); -INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'ae8925347c72ce2187508fad189adbd29fa98dadfd1ad9a7f5f50cc64e020dac'); -INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0824df62aeca851a1f0a98c8069ece41602d11891483dfe49592bf89938b6ed5'); -INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'f4f4102129ca9055eeb4eac616325c6f7f28e86c5a34e6ee57a5f9fb44635128'); -INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','f541d35806f2ef3002df9dd9d6bc02b5a1c669e9f1d7375266906b93e58a9270'); -INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','25fa47732ec33afb2b993b56fe4019f0b175efa91cf113b57bfec36f93e8d4cd'); -INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','81d69399eb3c6c4e515c7bbb12330eaee3798f7a9e7fce7a18ff0c19000b1102'); -INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'aec5bf6ebd0fbb7841b98fe202e492fe02c10e41b6945fcfdf45fdf567bf918c'); -INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9b386eb5fed9b4ebb2cfd8bdf5276bb92a9e233d68f6402e3ed98efcaa344f3'); -INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'375de8fa0b00fe22dcc473147d42fda87c8107fec0ec83e829bbc32f8a8af8bb'); -INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','d788d6d8d6fb6c0d4cec96c2b469fe690721069ca6122666c843683186ef0889'); -INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','f88828f544e93c774efc63e9ce1d612548192672d8293db8fed97c639726e01d'); -INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','65596607bf455061c65b0122c9f98b37ed832cd3f4164e9256c5f79fd3c462b4'); -INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9b2e7a969d5c28e9cce4af97cc877ce8671e71e9e9e55cebb9392115b3287a57'); -INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','6f0ef6f7eb1ea5a18f2a5ebe42c6583849ca97844e2ac04ea30a7656c4374a14'); -INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'5b359c5318cb8f14dcc4ab71981655f29c955cf11e101bcf10b515dfe4c4323b'); -INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91ed803de9dd01efd03ec238dfa63f2e8d53f2afc08a3f0af38ad2838607095'); -INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'277b23be2aa7eff1d4d30d700e5dc96fb8a99000a891919d63e2f5e907bceb1b'); -INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','03e618fcc039fad4d7a9214cfdad39924dac56ed620f65e334539e940f9ecc9e'); -INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','023da103e3b90731c942c37d01c20edd415b708a4dc36c53855af2b66a39107b'); -INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','ae6ecfc83d6e539ad370e913b138ee0185234cae8ad57eb3f2f33c5188ea6e35'); -INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'854c5467e8dbe45e3831b7db1060b48c9e2669ed7d41e7a9b9bf154ccc992d33'); -INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c67db4f5bded4fcd5e1d9ad8ac81c072540a81dcce35942f85af6553fed019b'); -INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'0c6eb16abb07cbd42a503a2410e1a2a2bfff8a5d62137f685cddfc05815a15f2'); -INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','d50d0c6813fcba1ee89d25eae262e404e6e1deefe4cb2134bd5bf3e0b2f2eff4'); -INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','a2535331cabddf376d73bd0d8697386fd129199116dd7b158d5ceac055d89a7c'); -INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','f651484a2023bfe23cb4081a94dc2825cc4c041d4daeebcde4539ab49eb19090'); -INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'3bb8c98103478cd047d0ca5c6ac53dbe53f7b629d08d543dbb6595a2f4a1b540'); -INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2982522422ff54deb1261277b7fc18d361ab9e6809eb380f87f03fa96e9ba9d'); -INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'a4d4828200287527da38cd8f22c803788c24bc167cdcdfc582c3d311d290f982'); -INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','8fa6894de2473c1c23acdcba9e2f672415a5444274eb154c2c3b3e9dbebb89f1'); -INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','f24a98e7f408b399f6c3117c685742cefad07fb19869b0b0959e6ed78381d352'); -INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'82818680a2a719f5ad2350eb5723b43a5e533e532ac705722fe943d1ae6d1ce2'); -INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f3f1baf881e37b1d365e3a80d54ab86af25e82fc9f29f217728c0e98b2432c9'); -INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'c728ebf82360fff2ce3550374495e67fc8e3427f340691c5a8b2b0daed505b91'); -INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe8165314fb996a70b238de73bec6f8e8569f1f867c1bc16f8e6cd9035927856'); -INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f53f8cf31ac2e0e41f80681339b4f2fb4c7b39c190b448cfa655da6e10818aae'); -INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea8ffb435df42363a495444eb533e9016e400a76b1aad8b40ed4a5dc52bb4984'); -INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'967b220e8d33272ec10a2c0adf2e57451a2488ccfaf455b33173163d29535107'); -INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12ad1fb6e31eea51f2263e5a973791aea1e45196153e2ddfb37ea032cb2986c7'); -INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'94d032b1876ea96c246ef2b1a9aa2c4fd6d5c565fcc75609ff605c5ed72fa1a9'); -INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573a663e98a5e5ea47cdb7e242d31c7044ba90e0fadee59c331680c1319c4be8'); -INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'a1127e8ce16d3a86b90b42d1604bc7a6dc71493a05ffa07ffd703c40b5dc909d'); -INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cba2f1d184d35badfcb353c34e9dd0398a4ab0b1eed9daf8710da842433091ac'); -INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'ff0adc6279322a0a10e634683882b470e479f21b23d312f0e9dd8551e93f37e1'); -INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cbd75cac3035eb8589cd793d8bb6e25c02364eb86059b5e2b06545ea3758c2d'); -INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'4a19e14e08d39a22aa296e77a7d0d0985c9996962ac3328aeb180968ab3c046c'); -INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c7af017119bb61fa04a66225625cc37ccd33984a4873664a821b960731fcdca'); -INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'7ab468172234e65fd20e02e27078deaedcec3bef72acca76fc0530618ebae9fc'); -INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3a65a5acd8030d9cf055d10358ccf7d73bfb4a617a88181ff9870920cef538f'); -INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'fbf6488266c08636da0a9d4685b9ca781bbad71bbed8ca88bf0f0a49a73d2046'); -INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05feb8e3e2fb33ed0556f47a2b30bb3705d473ad3a7c30df69748310326a39e4'); -INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'11e5d50f6c44a81feda24e71f739f43620826cd80e11938bab5141a3dce5c072'); -INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a086f57f6556d16e93f9042f6a8dc172975bdedff47e10cd7ba56cc5b8ee6733'); -INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'36ba2f74d2c318136364ea89e6573ec7723cae92ef11de90bbae6879056038dc'); -INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91fbcd0a51dd13a5d9815f54c1dd0a05d042725a3312f4a475874dacc0436b0'); -INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'3b452379a67cb0b9d5272601c9d2f7298e02308e12151c8e91c5c2b2cd44b7ee'); -INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d49cc89b9e9c4cafdb9fc5f5382cefbecd86280d2286c6851fb3d3288d1b916'); -INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'eb41a39ac2ade8af0f5aded29cc2e3ae8bbcd8592b722f03fb5f3fa7e2019976'); -INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc3261c9a4e36d0fba139331ef6b65c785639270240a038df17fa5792017ef2'); -INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'b441b13aea73ceb3b7729d3fa35ee768262181fe3fbfda95871f3d99a7112301'); -INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e9cece7e4212509c652c59efef704a0a78fde345e310f44385fddc8ce93f7f'); -INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'ab137518ed227988515f5c42a8850f9e0c169abcd2d3cbcbdd63a824ed1075a7'); -INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37606fb761c4de8c6ebe56bfe2dd7136808dcc63839d38f25f4134574f5460a7'); -INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'d298e16c2c405889386ca1b973b9ca9a72952170c92c586b0ec722d2193519c2'); -INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1382d264290502dfc6601696b6ca21b64e6a69f295b7b77b32d90d4116e938a'); -INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'82e43c435526a17b145b2043a819e4a91dc8af0885e7ab7805d4f0beba61fb29'); -INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69f0f865c134f7a919fd802cbd24175b836324c71498a121385483faf00a5e13'); -INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'5ab10e7e1a3be743f66356f08c7e6ba227054e4e17cd2fa8c820ad829e8a4d14'); -INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a35d919f98e9a5f572dfa3e403f3cb6bd79e6d9e00a409ee85d644599a0461'); -INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'99ef7d389743b7bf9f899b6af1255117b07517ddcbd7133eb71fb0b08df74454'); -INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0e43c732de2ccbdfd74565295ee0c6d51c0a62424d1cee5e15bd81270e63b08'); -INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'75036f16c8f6f6f67168bc2589a8d7dcda22cb6ce1830571ea7fabbd4e73f280'); -INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86aa2836913d0a6c22a1ce4ee106d81f73c0729d907e054abb53b90e00794eb9'); -INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'3131a595eb85c20a3b4f448ddb53fdddac76f0b1ca8accaec21a731f8c971fda'); -INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a0f9d6794421f8801e77dae04c9ed6b4b5e77f5f6648f46c20ec4476c4bb5a'); -INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'e342e5a4f8f9664ea0fd8137960d1ca24257e1c70131a314f4fb1d58a8775feb'); -INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c9c5f96a1584c4110572124780ad936dd15ed690be5c3e6a491a8b6f4c2ec86'); -INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'b22c2d762cbfeba4dc4c3b890c15433706b6685c5af3d5fa02c960fa20c211ab'); -INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98f12bad5e44c9734c2478a9ad2eaaefbaf5235e126156cec82cb82412361626'); -INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'20393c51a2f1574d06266d88d91368f74f461d38ceeef86189e5bfb63086ed2f'); -INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f06542c088a23be38eac07d259a0edf387740f7adb4e33666249181e7310c6'); -INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1400654573ef1cdf3d0478dd8086c016662b04a0802469c37eb5a4b99a74e8e3'); -INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66b42e083a4eaa208cfe7e8718477146ab4ef857cfa98929ea2045e94bed54'); -INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'d359de69f32c2171c4f5270ddfe7d9dd6e4793ac0ec36e62ae18ca8a9d021519'); -INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28158649fd4ee92a98fd6e7568e955d1fe882612c3a410a4ba463152c7cf5bdc'); -INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'ee46782180d1b0655556cddf4862f5f46715c001778e767e66832082b9bd7fc9'); -INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72556d0087f178ec8f35e95c16f5c13439847c29e4fbab9d6453713ac5d7dec4'); -INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'a79e91257bf7375c69eeb7600bb0fa566adb5d275fa35acbc99b96e3f2fd2c10'); -INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4fe3ea3ce0c28937db14c22dbf37db9ab84733f4c19b4ab345c248b3589ab0b'); -INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'fae80b84d40c293f48ecd70a079124da4dff8823de86a816bdaa07d6f476da28'); -INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0636da226180f12fc793b2391c160637aacd1617c6b4b5141180f7120c2165b'); -INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'f9d57973ddd7c15af05188f33715333b6595d5d9b31cee9c1d81033b30f57e69'); -INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbb8f58abe20c7849a6384a9db97d50bf53cdb4eed6a27914af74313b2c4d48a'); -INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'90253b19a0e9abd44c6cf8778266159aa7e7e8dec2d6ef9ee65ab7fca59de655'); -INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7afeb97ac06a1e2be7e6f49104024998094061d397a35ce06e2aa33ccca9d5b1'); -INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'a02fec56e0063700fc49625efe22cc83e12e1d4510ac3167a16e1d0942551fca'); -INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c7832162901f3a22061e350545bc93a3e3d4297dc48f6e73c0156cebac65db6'); -INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'e0b01a0576325d4a99e481a4695af4cf2f5cd18c96c14938f49403cfeb3f2935'); -INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'650574583d0902a9aa8924f926b05d51734b7fc6348499719e8d4b97b0a293d5'); -INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'4376cacc6d17e7d2d70fd5997fd7c7f2217a5ed73561143d350b0581c2305907'); -INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487d1b683e55df5698c7fc8ba8fb91f9cc15abecec01a8883e24bdee022485a1'); -INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'9f1c95065c3971316d7addc5a3dfd3d316a0e66e3d04c16fc3ee01271d61d98c'); -INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ec7cf77e86a0c9c790ac7094cdb6a2d503e71d48618ee60b4adb3d969072fb0'); -INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'e9d3fd2253f3b17dee6231d026dcd67f01d6eb0a75ba23d84a98cf735cdb3c2c'); -INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8994dc295ebf7ff80406aa0811fcbb7662a2007398013b402b44e572b2553930'); -INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'180080c903e6ad9020a78795184ccf98a965e82067538e2d68560ba492fcbfe7'); -INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18009bbc736a99445304d2e9e5d112d5cf195c29f09320ea0cd612a451fedc0'); -INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'2bba4d4eaa5976bdc2d137852f6dac3dd86d623dcc766954572297ed9485e568'); -INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d19c589bdba8f6744b405a9f603bdea811dbfb677f49ca88ebdd1767982896c9'); -INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'ca46df8e5760443519f2d63bcef13ee8dac1b8ce6ed2116511b27e35b284d189'); -INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cad4a273446176c1457317364b02b4580607c5a413576b567507b897e11915c'); -INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'6e97526872ffafecdd95e0cd210586e014f0693975d0dd09ffbb21f8e8a43ca4'); -INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ff3dbe77fcc4845dbf6b63ef7afd1b997ccd821d572d4d4c4cae56aba50f94'); -INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'a3c577d8e21a599382a251570f12847a57c3f5eccc5014238f11ed054efac25d'); -INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb34197d8a5562ea8af64d726039cb664efa1dfda08dca84c88530bbadaf4b67'); -INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'0491954756a4896fb8435326e224810fc784b0b3a29d41ffdecdf700158c7656'); -INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cc4592a0eda6c645d6b7e86cbe71b61a476d2a9996128409d8430aeca7018'); -INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'ad6216d005b12d158dd7134b06762cdbb9788a8c7003b5fe1c4616ed7f6c4fab'); -INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d62fad9025087092a2f049d133ce3432e8dede275842d20c9c0ae5153a84662f'); -INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'c215b125d23ea423152e85bd116c4684d89c77b14a09c7bf03d040c45b8c39a2'); -INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9106b0f2672a3e8142072f77b07cf8275d2812d44a195a0f9e8b0a4e20092963'); -INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'8cd92828b22a5922ef49894cc4ca65922b292e47ec4d4f07fcab23b00a3de771'); -INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20adf24ad75b708dfacc3ffb1ad5805f94750f2f4f2122d788c9c781ca6e0d18'); -INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'0c6b930c818909a2ba99263e36ef0a8d6960927c5b69c016e9faaac52b6eb5d5'); -INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47cbded5048b6f0ad625a57f525da2a323cb0dcb551f113ba7cd719a02e800c9'); -INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'7bbaa0b70f34ce6ae6a6a467e201f8e7df7e1fcd0dc295485e638e7e3c8c52e0'); -INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'083387f76a4e0e272a1e7646fa74376fdc409a1b263bcb8dffd917be0046bc3b'); -INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'772ecfccbe152c815393a5ad0329ec3a9760deea442cc41a5ab85f861e3b06ab'); -INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'403c148e181c6bc1c84ba45712c0845e6f77ddb5461ef7308651d9a51cfae994'); -INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'c7a50eb2f6783a5988681c33a26f3e0554b4218fdd0bb05d64076d2b224ed216'); -INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2335012db7033042044422c7ab4a697eef6258a3790fa530db27f795c5d4109d'); -INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'6c19cebbfa7202678a9cda97c53811668e7bfb4c251e143eb2be6606009e78d8'); -INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3d810e5bafa7ec782525812a89e231dfb8a457776005c561661d37924f2c6f3'); -INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'3340ea49b5cdc21957b491e2b36b8c9d7e5d0aed7333ac3e4a6051c74dd3adf8'); -INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa94a4ee2ef996d04ae85acd007880f3a97b83d07acd68b6170563ac5e4ac6b'); -INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'da5c6f9ff3a813045d08cc5915fbd041440577558bd7db001c8dea1c5f3e0146'); -INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3728e9af327365853f4ca6297ae69b72755d7978c5de2156f2b70d36181ede4f'); -INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'2a48f3c849a3d54159088ebe1d6b90d5474372c90af18df2cfb826e8223819be'); -INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a10e5e642f8eb035e420bef79a5fd3c8bd9f8a6f3dc9e64cd607d9a4ac47c350'); -INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'b880aa065219a962deaa77646882ecbf5137853ab6d2b5534bea1ac94a428fd9'); -INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4450c9bcf4322cd3882c2b6f295796d0ff9a597c2a99b0a04632b1e73cf08e1b'); -INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'1887c571d32ca88e4e062a8f3230362628ed3e58e37f8d195c539d57902de8a0'); -INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1835a12582e759b6f3f6c079d88cad41c6d28fad33235b3d8388dcf7286239c3'); -INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'68643dee09a94224018c39820c6bc78a2af43616fe3d26a5b26342273b935db0'); -INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e19c53441ed4157427bd33b16bc511e49a1bed79b67a8df4a1afa30c4ed612c'); -INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'1cb24dc971f7d7c6d384663421fcf4d0ed7b2b8aa1e5494526208b0435352f4b'); -INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23a457ef8eafb8a9c0863f560d682d8d5516382b927c10798bcdb8d1d0ae79e8'); -INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'18c5f97a82d17c41f34156e9cea407ab31af2792a1f435b3414f9b6db2f2ff09'); -INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ace4b28b2d07559217a2f613313797c799476cf1c319f042e8ee89a725c141'); -INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'92b5030891960e1a494fdf9c09b4eec30312b5f416ce031c3fb453e6605160ee'); -INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5762cbb84fdfe7187afdcd979ca8bfd08280c71df343f2b0ca2906ac221cb374'); -INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'6a4dcad785432d4724bd705155044381fdbf87ad830ea6bc0209f1c5df0a3c12'); -INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b31c6144ee4bcbe91129b7dbb3f0a003cf89c120bf8f1e5ed6492c94d8928fd2'); -INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'10a471d85d8028dc701874bb0efcf4617754b7ca57caeed8109ee58736108f0a'); -INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7c530887658fb91662e645aa831168579ff496a3194e07617c449c9751aff0d'); -INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'1ac86d2f2a7c16a712be98866d861b9ff5b01a370ee4b171141cf79c9394cf8b'); -INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a07c3c131eacbb72bbe4ff9c19292758d42374312a3f12cf79ae81112db5b3ec'); -INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'b635d1e54a6d85890544053d01ba78c818764624d12a7d72a41c672fcc2aef20'); -INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70f8153bfc4e461b861e9cb048207f86658daa900c6f8da4ed4fe5142f2ca8ba'); -INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'59fdadb237d345524f2041079b127767f4399d8c09926b83d8935a6a2e7b5680'); -INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47eb2f2596b0c4eee716559562892e490b25dcf97ed66195874ab4093ef4b92'); -INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'a512c275391cbf2fd2c2f2b189b38da8d1ec6c4485a2025bbe794cffafe2b0f6'); -INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69d6ce1e8205b636532acfedef5c550a998d469d4f8999a86679d51835c8ad4c'); -INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'825819f4ae6267e6418882e7a77bda096d699e2ef0ea3dce3c2f89ce46b9432d'); -INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'402a3c3944f929608870b877fc18a2cf712c27794dcae3c13499237f39a5ebe8'); -INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'326dd0a8153333d05c96ab3f68145d25d53b24e6bcb78356d8753cb691c4049b'); -INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d77bbca99669707a2c5cbfb14249d44e0ce966f55881e059ff5e2d6729818c33'); -INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'75a7f9e2bd9fd2528516207b4d143e70b9e0b0968dcdb291f17d336181da97d0'); -INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31677d891f89919b46e372556d27ffb8b649abe8c10673b67a71159e35b5b436'); -INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'5190cbc9a186bb31733f2d6f15f6253195db05fcff85d3774e3bf970d6c29136'); -INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1634d7cdf391dd588fdfe40953e035580657c4202235ef564fb0068e930ee07b'); -INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'883e167b2ae58b9978759abe8861be6169ac7f893c379aa1162d5b9196b1809b'); -INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab1e2bde29f09bac71c95fc1e906e6faa4299e7bedb2c34746276be91edfcd15'); -INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'58cacba23006f3a361beab0435468b676523689b7991b66ae24c134e2b78c172'); -INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5589eaea13d7b3e6ca8e6f6c3d19154e01603c6c0003910eca8d0a9a810940c'); -INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'5f5cd2ec8519d7d0561d9634e6f56a1fd39d4070fdeac4ba907bd02fda62db3e'); -INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597c16d10234d83d4e6f328a4ae3bad3441a4555bd1f158a0ef305b3e2d58f5a'); -INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'5548be9935807dda0bc96be7dcbf3171a52c6d732a1cf0c45ae9cf8440e59e6a'); -INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9431c0899f3ae4308819f83e1a9ade0f18d451912257a54830a39d0b430aedc4'); -INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'8b7d49a16b73564a22065d89ee858bc775dcd7dd93c48caffb5a01083c74f3d6'); -INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f366c570bd6f32d93102981d706568b0633244d3200d2a0fe666e0ade79e6fa'); -INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'bf4196a163337baf0b900336f56e56a1da928adf69242a26f20a0dc38e674ae0'); -INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20e6d2c049e2f14859230c5e3fc1d6ec62c97d2e02a9212ba55c3b726f54ff4a'); -INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'87c0488feb49becef95b2b5f89adf1bd82880b7edbf545dbf3a583bf034a16d6'); -INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74659b8924ad2e4d4e048e73241851d387f93f17f31fd2c247b48309637db4da'); -INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'42d8fe5f14affb0eea08a1e084fc3feb0d8c87348d311ef6fc65e6a2ca487361'); -INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c24cdf16acc72ae6b33351a6d7ed3b1bc232f716d9124d76d7a22c98bc8152d'); -INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'9d4bf33fe7dac31b2304421294f84a9e9956861273676258a0233836dedfda71'); -INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc51c44eca228a4703343298c9d2fcea69dc759451e5179e1bfa23d71bd56404'); -INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'dfe31f68f0a5912fa8de96452f93edad0b986a69036dd39cd36f86c0c4016e76'); -INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86115f2a521f783dcb6c831db8e715328651feb1d5a2564bcf1c11c7fe3c608b'); -INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'57651b5123d23d367cdf51a0e9fdd5897517cf76f1895e4a7846286e46fce31f'); -INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee8ba445dd321ed3e4d2ff79a57fff1749f0e761b9565661ac86659cca380f8'); -INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'252ac32cf228720bfa021bd181b1f2f7ac306082c0316e840a54f7c6c01d88c7'); -INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac59353bda8e4c0e6743c796cc07eb3eef0a303aad6e0174936d8c48e93bf86e'); -INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'c78c71a5bf7a2320cb6f2c4a7d83395ee5a0c809999cf46f3d8e95d5f92bbd85'); -INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0647fad362a751d61efd195a2ae0d166b1e0ada7b8b3c731beded76919d2d04b'); -INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'757c641891f5400ca737c4d2c0b47f9012e572a3243b8a999e6dc27ed8250300'); -INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90a5384fa361df5c389d62b6d79824015e9ddfd90a24905ff976e77b8aeddd85'); -INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'a8cf98080ef17e80a3efb7f1fc0eca2710642d50e015be3721ca18f8d783eee1'); -INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'432cce1aae2256fc502f40bff93a7f6b0bc66e0b3d62830e3aa52ae43c8a11b4'); -INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'55df58a9117ee925faf6cf7bfe1046586dd022903298272202502b260aadbda6'); -INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'719a5b83898a146ee7f8a78989635d844d9b02ac4ffe4d129b4fb25f79ac8f80'); -INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'2314f7f91db14e636c3a2ef207b8ca52e9eec50e39e2e458c90ed0458b9c3c03'); -INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48a8f837d08858e0cbf6b7ba04155656f53dc56c04253fe99b5b2518358e767d'); -INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'ebe03a531d1a0fdb16480f9ddf81f64cfb3ba9e62fa83c74a7d3cc80a4481e0c'); -INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbfb939ca449ec0aa9c4ea77ab3b293fe8559bf106e5d10de6295861ef8c15c3'); -INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'0913412fef141a63a1b89cecbf3f8e83135a31b53015ecd8ccdae626d289c4ee'); -INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25e90bd886aeca1d89983ecd7e1edc67beacbd6475543f7e469590f27233d39'); -INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'e31d692b9a12c13d94530691fb88d09e12018a8fbf488b4369ec35093a734963'); -INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43548ede4f4f2bbd478161c4460550a1e799f343c691365a9d67b03df92774b2'); -INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'b92dc64cc7f104bd977a3b018e4f814b94bd4a4fd7a6c937b1c97d81977b1efd'); -INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8345684786af1c33b56e370ee79534aefc4abf8fb6c907f17f65b1767148248d'); -INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'7d87a90e14c3d3fd38f049584dfafb4d5d6ccd7dadfbbc273f17c435985ab1d4'); -INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ffc8f685c4013b0050e34e6728b2458cf99c18029a00f5071c5fb52f83be75d'); -INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'518eb67d9830cb3dfbbb3889d30fda989547134016c45601c915784d7b71728e'); -INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e9cfaddae6ad6a67191ccd3fba2fd470945f4aaf79d8f9e5aac686d75460f17'); -INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'6217679754dc7bef13b9c8817a639670f10079483c211332d0230538e875f6e8'); -INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bdd985d94ec0aa64d038931ea98a715d3eeeafa7e1994c8192550113f779c0'); -INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'d2cdc8a7558fe9f8c72fdafde66681d9e4c6228052c5c06aa6838ac28cc32fc4'); -INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4788829ad2b7e3af0905cb24a46d392be4a4b9d2c899b2fc84adc88897878a58'); -INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'110d1902c9fb5ed76e35b359d3555c70c8d090b3d8342988688a6564c1bcc555'); -INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b51fdc00338b75460ea50ce86e74ff1f697654da77af3459348cde8853eebeb'); -INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'96f4ccde65ab834c5f39d29e264066ced3a2f150906f7128528e53474a6b0a8e'); -INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79f712fea9ea973590e317e65e0358384373791863fe2c4ff414429494f6647f'); -INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'57deb2e1a8c994d2140e111f91c8bbc1bdd107c969a7e31b15d2e46ab79475c4'); -INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1eb2e9d871ebd8b28bd593435ab7f583b805aac94cb021203ef3f851e8984137'); -INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'8d635bdf6efd47a4e5bb365d33bcf6337eba6544a9e6651cdb2ce39094207b74'); -INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f845e14c87267e2272e017690ae27cdcb0ee6b5662b859eea4d0e66f84143dd1'); -INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'c8500557508604064de750d03ab6c057a1e364a2b561867fbddea4a543e4762d'); -INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8dcf834d2d0060c024ab767db7cbedda55797a6f2236de8b9f148b5d10369da'); -INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'c9ffbd8488663a571992d2e7e7838f2edac618dd7b60cb19f8c57fe5a222f6a1'); -INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60a4e6553f75459f8eb56f4a9b1a3acbd1a1a99c2e9e2eeac4a0c24351144295'); -INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'574d54d46aa5cfb9fa5c7e53cdd8eeb4858ed0de26fb8324754fad25fb59bc8d'); -INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aca96b16f1777ca6d70f391aaef5b909dd19c72ca5871a3a19a6b7a55c8be52a'); -INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'7ffec4dfc9c7e53888e8187b753c4240a93ee9f3ede6c387a8c112805dbc75cd'); -INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc3668f34897d274bbf174fea35b2ecf2f8ca90668ac2aee511e7a38340d8c4d'); -INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'e87b2613d4fc2c709d373f5b080e7a6c2658b1e58b55728f21695b278666a073'); -INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c28304f8c2a21b57f33781493d08664baa749dcfcc21697437e0d6f8ecd6aef'); -INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'401f82295bf3a2ea75280903628b0b3c44eeb8a99d3ac258b9855cfa0deb1864'); -INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ef32a5dcb79a4852cba3765e6eb17a953d873704f7f67238992953b6ce5663'); -INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'e4b0996886cf51d4f49be8a22f6a401ccded53eba0a8632a72946c48af93f77e'); -INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'857ac60692fef44b58b321f194ad42a638161dd5b1b993815715c39a6d358ffd'); -INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'88bac24b63533ba64b0f1a0b72fd511b05af88e937a37e1b979ea8c8be186cf7'); -INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13deda8cea8eb084a5fd1980d15d06e55f5ce5de1cd211d5cc8f571d434dee06'); -INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'385ea2f7c789c89220fd28bb8ddde69fe3958719c5c3ffe668ace1c30c41736d'); -INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a1db8f8c462aa6f681d1262f4c91982f4c6c83ff4671b386b730e74ecd5a8b6'); -INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'3688153cf2533aebf0f775fa8c0aee8053384acb6a77b86ca32cacae710d45ce'); -INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dabb07a0432bb42e9ad1823f0804e86f73bdad6ce37e67718fdb1e4b856cfeb9'); -INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'0f417a54d86c653edede5a0f277495946584b38cc651bcb3d2ad18884ff9ce50'); -INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03e1f6889dadbfae6eeeabb911168beedb23b6cccbff4ce0eda3b398f8c2a145'); -INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'790fed3e2e68e0fef03d64a6b7745a5ad79c3ed2db6c2e9c9fa5e667f276f854'); -INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce20722e1fccced65fc6a9fa4e20893ee10cc6aa7158681faeda27cf96ce1c5c'); -INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'54a20cd29fc3edade37ad35e91fbb902292791bffd828050d1cd11bceb334eac'); -INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41217c2fb56f2fc7ed5e8eba19ff478c384b490e1dba4fa8cacedbeadfc2b198'); -INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'8d29427a9da803bedca8de529da5b9b90a780ba0b8409ceb2687b3650c46b727'); -INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bdba14052cd37203825b7bac135f52ad7e150b89da2057a3a518902ded346065'); -INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'184c45faf02909eb584e9d1fc57bbdc4e70e9e31a04b576c1aafdeff87bed78a'); -INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50a2d785ee64ba33ceae8c9a884914b29f88a0d1eeb679ca7e42a9c3d9c0e854'); -INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'10838cf8ea482e1ab7e126a4c59f5d567f6010ce1f5d575afb73bcb8c092010b'); -INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9209565129820bad76a9cf64a4d8caec9c9cb40bbf60afee03b904ab4e65ce4'); -INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'e28a8740eca26cf7003e5de30f5a929e32ec5b712d1ec1bbf1fcfe9c0a010648'); -INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48038fccc0a81c64ae0293fd496638bb7f36d286a3834494c73eebd5f4e634c7'); -INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'4b6f93f581631cc98ca1087c406d68444e275e5c42dd3b91a096c79e6670426d'); -INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c60f2ecc1ef6e070a03d36f4d286090d819927f27c9bfc5ad69ad40d363db48'); -INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'8129b6dc8298547e563cbcf84f334436283dbba4ff83f91fb3980121f484d4f2'); -INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'375241f9a4725502fab7b3b0ffe48300198f1b049a97e3fd926376f92d76932d'); -INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'3454705e5a76d1f581d3c7ed471b7ef3e939b62b7968687606254f1e577039dd'); -INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea25fa4f752cc01b9dc2186a2b9255e6ad079e1d1f6234118c149ba4d5011b4'); -INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'a05b06fd5ae3e257fe30d96db4c491f56657a686a08e3130517b5feaa038bfce'); -INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08eeea6f729789425e312ca904743bb096423fe9c0b46700318b22e13592b438'); -INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'6f83399cbe27b8c3ff7c30830abbea6ed3efd2414110ecbb171b06d2f05c42f9'); -INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed5db6371e4a45d59a6d6825e3fe8b84edc9c2392d3927c33c17fa0e924ea1f6'); -INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'2246d41144325360527beb1780e34c567e374fd9ea38fed5381821e5b56c2acd'); -INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd287d7fc8b3150632870d94edb32e8125e1760b7798ca315ad4e4e8ddc8bb7e'); -INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'a44f1024e78e4eb2f689a0c31f452dee4166df1356be90c994f7e9566d487334'); -INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044eba7e3a319df0c2c87e5a70d8dbc349f5776dd101f5d337fa515a9162f38'); -INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'4ef2317b4174a254c9b285b20afc2b69e12a24753b79738c5ed16cf51f0536e8'); -INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f8ecb676d71da6396249498cc678e620c522f968d2e63fd10d7b7f68a191f6'); -INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'b0279073d2aafe426768fecd19c86b2c9be0312d3559972c5a6e68c6e0c52239'); -INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fa1fb6423919317d5f8af45ab7fa80076e61e25357fb7294023ecc764c57e8'); -INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'62108be4dbc01e835f1758345d304a5ebe93c03ae1bd66d23338917d0011f9e2'); -INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a885d48dfca76735008e1c1a75806aa99cfb3f82123a8b0a9458db2a52b61b7'); -INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'3577eb9ac451b2026c5210361a046264aa3865d69044d001b3968bc6d67b075f'); -INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f6dfdb8ae2d5489c8e8e6ba5f030c143e497c4fcb287e93f396f4b3ad09242d'); -INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'dbe81b4c2ba98a9b7ef0a9b86d184c7b81c3cc4a4c935313481ef2fefd02849d'); -INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bfd0a84346aa799dce7a9353954d91a4c51fa619af28ddca2966ba38689d85'); -INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'d5e9985cd629894f5c7f714fe284a3cd1e014481148227f466797f7596fcbb2d'); -INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc9a939f5356d0cd2fd82c78fe4397b7c176c72a64f01d9bf85273bb92b0984'); -INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'2624cbb800b08b7588599118b867bfb390bfbe9b80309eb71c0c8333db57826f'); -INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c0587a6c4b1ab94e5da348d00dc54651dc46b9df9468dbc0d4f9e3b233ccb5e'); -INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'734c57ff239951864f1a2230e11a301ee1afbb9a2a4459788f45263be2f83e4a'); -INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03606220538fc36da3e7b471d1793ad7e6812b62690a05b4a26d051630d0a7e6'); -INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'ddfa2778c4f7092dc2ff0de610fd795199c9dbfbb7e87572b1423936ce0c8fe6'); -INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ccd4d5a86135e407149884f391738d5c465ffd433f5646a984cc03a7286ca5e'); -INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'f7f63b9e079232bdd2b6a6ad74a947d8666976702334e91410fdba387dbf663d'); -INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34c668dd5166017f051a324dadd67c68271eae5f3749b5347f78f5bc680d92ea'); -INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'fea626473879e0938ba3a5fb4ebc7c6a5c66c9a9d124d756070281eab6264250'); -INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94f8851cf6dbead80b11a00bd4c7cb58154f440ec19a3d86617ba27875c89bcc'); -INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'fe190da1c7c7d7659f8f235e20f5524c1a6f78330b4c41eeb8b3eae85afd967f'); -INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ce7e69c5ffb8b7b6c4b51201699d68273b6d085d611bada43d7572492fa3b75'); -INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'36b0bba5767a67e573e96bfb1a6c80833d252d2018e68f5e081e090806bbc16e'); -INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'801662ae0f533376965f648750b0c7ef42daeef78241cad02deaf13cba7fdad1'); -INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'f75a7c7121d4d2906644c8cdde99afe2e996a2cd764f4d4273ba4bf925f317ca'); -INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75e2a561b062c8cfda2947ddde58ea8f94553eb89c59e46f90eb749839fa6a5f'); -INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'cb0c4fd1d9642804acf161e5643809106b182f666a4f8ccc726796b91ca1c709'); -INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'654de8f6b0592da57bb61cb2d3bbc5e1832e69cd68fb4a64cb7a8f21fb60a969'); -INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'08290c7ffd74a10b9d85da1794729d5c0dc7de0e6dbef98223ffbbdc67ceb9e0'); -INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2fe311734c3c4e86927507324f142268eaab4789ec642e0a01b8cb50477d70f'); -INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'e22477faf984b23a0d6005e0b59f4be76e4e033a5c505bbcdb0bb2da505caf6d'); -INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3368e75cb35baa286643e140341e2f861e7f5485fc061ab1d98d07103ea06a2'); -INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'f857b5fa2b0ab0cc436af8bfd238b2a3a2628dcb0efbc04b7307178c905cbd3f'); -INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb23d0b6b7c8b3ddc663d99d851873b2cdc35a0c9a74132acd66ba26ef14cc67'); -INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'50e24365e4164d9e3b868516b2b23a7d869b096051f3cf735046465f88814721'); -INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93d703a155ac4402bfdc5e9720f788e41df1aaf181fa147ebe67465b1ad47944'); -INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'49db494484aa8aa705a1fccaeb16f5479dea3706234a5e4c824ed821a922f9a5'); -INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13cd048dd45541d14577817103059987e37ff07d94792f5cd4c7ae8c5228f3eb'); -INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'110915848e6fe9e4c821aa856ee5fcd24cd2a86b9a4d2aeeb08aaad766e8b656'); -INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'770e5e77bee3c25819ec590b02c61d2922acd4d54135b475add1336be8b5ef4d'); -INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'67d9bff31f3534f24aa9a073d8dbe4fe324ec917a0710da45208b037fdea4917'); -INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d0ef27bed71488200fee94620b69f6b5c24003c1ba11fc997c98d3b9d8e917'); -INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'267b938c5a7d943d8c32b8b3beeab835bf461f36c55cd96e74c515bb8eb2c409'); -INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af831bc45b6e6ee542c99da1ab0c1d2a1c5200a5a7e26a5cfe51657d42f0fc2'); -INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'ed857180b1648ef8e78f318305fb500948b0f0119b5670d978b17ab3f4c9c640'); -INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55907180336abc07e15e254398a6fb88ba1663aa8c5d118bfa89de6a1d24d377'); -INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'0730308bd43265c9cf66a959f2e5bec8b0c3e7376b86db469af4b2fdd9fbe43b'); -INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5651034304abadcc310efb1b477717dc2486ede278b4465ed4580d9c264a1272'); -INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'f7b3a603f32a4b14eee4a33f3ef884fac441701f1722668459b81633721efdfe'); -INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0110f1ca989be1b19716dac9bcd5fa2efebd53cb9e90567643c86534aae5c40'); -INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'8f8693d2df444c5a705746c89c84938fc9cb474327448fc81fb9bce511f1c16c'); -INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a8475adafd0288780b176574d8ca082f78d45c8fed2bd9a6adde132297bd3cb'); -INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'b6ffd06d8c87643f817e32c2314adf52d193dfa2f7a95cd9210bbe20920e60dc'); -INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'312c6efb9396b6a9a1c8ee140fb37aaae6e788e9f33f2d986d7a0255bb1c25be'); -INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'c0e951235fa4f58cff2e327a92a2468a55caff1e4af70aa985534bbe08331df1'); -INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9f4646ddf7805ec75c7976e1d380659c25de9b9bf06d1ee0bc7fc7f74830424'); -INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'0bd0ae8de0ad9d23b9ab4af9dbfab3822a4e69279343fb7692a30035310e017f'); -INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bde3bfbd6dd2e86b98194ec43617bb69a53af273049d531f002893ec8d308896'); -INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'53bea0bb37cbe9e802e573bc98efcb8f6e548fc7182302739e458bab315e53cd'); -INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d90e92cb46b0be9ccc3d13328b78b543db15a32f74b4b42d516bcb08917132'); -INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'d65f02ac05ae37954d39943e9cd350be29af259d3505253560d6d1c1dece5c2e'); -INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'572d28c545c589ea3df70655dd097e97ce1c0ae39615d398e978c114b07dc257'); -INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'7a42ae03143e0f700bd0f05b4a21b6bdff8d93905eb20fa1208f0c3ae1dd2002'); -INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b585fe4e5592ab4f7faca3700c629caf33f5fa3c52decae754c8cfd35b613b'); -INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fdf20c080068605d9225f9da1a6007a1239ddb1eaa2c70b41f9d0d7495476bb0'); -INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'813cfef9b7c6f1908c9f53303aaf10f058fe2499f119c27394fb32804a1f4bd8'); -INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'8a11abf7b13e6e1acaeb5ac1faf0adab14ee119ac69bea0eb87f8882a22b6d66'); -INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f87d4a29166735d39551a3f9370043dadacc920f01ec21cc2ac4c2313e295bc'); -INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'3663c52cedf66166e6b9c067c7a66f39f685a24c40d802763069fa3f704198b1'); -INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd564b65447928ae9ffd93d7daf13947fd6a4dc90e99afd3dc7cc2e57615ec9a'); -INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'77c3dd8918d083705b2f2aa1d7ee047c501f42f28179391587df22ee012ddb18'); -INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'333f75c30484462892642a33d5fe9c864b3d77f9531bccf3ccba6b029b753ddb'); -INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'5d702ed47db10e673c5e2e96feb2463c84192ba4b99622de7459211799ce76ee'); -INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cda7e4af30f7d49450d9405b2d02fa52b5dfebb536e9bf6c2cdb57d78175e89c'); -INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'a93efcc617d63275187523951f555c75aa1cc5033d710fd075070eaf345ee0a2'); -INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5b4b4b08a595ac8eac98f655b2150d6259c19cd4836368c5609e07ff52f5bcb'); -INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'fed330cfc1a305acf39a44f35812d44c676c6846903f59104c3dc0a72f44c018'); -INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d99ca7c9cc6bb2411eb8945f480ce3289d28fa0c95fa099c9103ec3702a33022'); -INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'38589a544c8e8bf210a167035ce50efd2a6ec16ea8bd079a735064296dfb57a1'); -INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c7fd8cac1e3b2375fb0935a5278a2a1f8657b0b1a8e7fd488f510081d7742a'); -INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'0f8e365daab0533cd2864321212570e145527461e6ecef689762e7d2625fa93b'); -INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e4bba471c6a6c90476738551eb8df9a23ca7f5620ab5ba1a4b6883e6dc43526'); -INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'0701119b894deb9e64cbfbbbd526f86c6c46a713e42a20fea8c6267a5dec6cb9'); -INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b32dd204942122e3ae87e1611ebd2400f6df86d4b31c1e51b627b8cac97dd2c'); -INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'88748bf27d7e579d67262b7f674ea6a45324c92ba23cdf7091b6ee0ce94bea7c'); -INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a0502cbdddc342f45be404fef8d46dde5459477e507172adcf4879795995ae0'); -INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'d192fe69ddf53d06f8bde96558f4434c4a992e0f7147739dd85f231655a0ddc2'); -INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbaa8ebe7365b203020cff0db0dcf7d03664e19b408e399c2c73b9468d92ba33'); -INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'252c8e182e2e8161e9b8a3a7d62b474708bfc79561f10fb8be95940f01a2f85e'); -INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14b54f1c26c3a77f43a753978a0031afbef8539ce73f25a6d5045e1d079be13f'); -INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'adbc8b8d591395ecf6e8c9ea9d7068e57dc3641cef31d2219e529176c78c93cf'); -INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19f5ef1456a819db37ebadaef27633b15c40a8b6d79f069db29003f160ab31ba'); -INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'701ef9ac3848fa2924e2a3b62ec0ee102c166209bc407b5d909202b094e8dea3'); -INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a23ebfad2058d4920e87b206b3c73425fcde72e247448ddce930dcba752b8387'); -INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'95e3aeccfb50f8cd1acc83deb47ba5120665a49aaa32e46e11c21c0afb9addbe'); -INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79640c7fa78e8c1e5980ac490b6743cbc8382896a8be15a6fa2b949b5bbac52d'); -INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'739a08c11e820b8638e694efc23f8e1faa8595c554b39f28e9c7cd4548802cc6'); -INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a615644bb3a0d6ad91cd43b0ad591e11eac4c7c6009a28129a2944e4789b2037'); -INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'e71f8d95bd9bc166401b359feee92d6a473b754a21e73cd407089959deb0b5ed'); -INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa72b55cbf48365303e7b40db265f1d2e1e52c295bbdada1b01b43ae41ca2165'); -INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'2d0bd48846478e8781cd96d0d29dbb906d73218825a6fbc3c2d0aed9fc7f14c4'); -INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eddb0b3fbb76518f09fd378eef6aeb0686ac59b6906a3132de17c46af55bc4'); -INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'0a8b890c079a7a72f8aa145c8ab1a8857741fcef14c9372f5dfa238b76865e2a'); -INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24623e76da2a67d672e2dd3e366fb65d2461facdedfa440e67a8caf96712a7a4'); -INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'48f999edf6d3c6b7cb9ec2f61180427fcceaec834555d9007405d028e5bff15a'); -INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3af6181af49f4488e7ff85d5277527f406505e2be054681d527f914a41d49da'); -INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'9765ae51d84c376e38ac2f5b9cb8b076c6c3f7a6dbdba23ed2e2df2d376d92e6'); -INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b8ac8dadcdb98e015e7a45af1b6e1e84066f7d64b265d38b50643945733ab5'); -INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'121e240c442e1d9a9cac1e334b45317d0b973499ad34a06f0033b4a97984fe42'); -INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd0d8338a03b933b4cca3c4b5147feec312513c72e05eebffae8f1edd826cff0'); -INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'384a210142fc7cd99f8a9679b85c6ec05b380af489e3f305b4ab0bff97dbbb79'); -INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'deca65b1aeaf3b549d219d8bb7a19e41e2906f85a8e3625328a1ebed7e4b89d5'); -INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'b3501d6691c11a2c256d692bad417d461ba7aaa60581f22a5df9151360f59e97'); -INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce66325cb1677b0d7bd8b8cd69ff4e992d60c160bad470ea5ffbb8919e0ab4e'); -INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'cf1ffd5a5d16e2fe393e37a9fe1b2312fe07076ef829d9f7a179e94f89a9c300'); -INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'410dc9b1d4a186afef39d24751e3d5ecdb43af3560b21c4e5a490521b8d89539'); -INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'3ac16cd4ba4ecb152788134c0d41eb7baf83539e9ce4eb56eb14a27571d19b6d'); -INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b941cb4ad5ae7f3ebd9d394b95123feea7e258ad143bdfe91c8b5ddd0dbd3974'); -INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'059e165056609196a5742cc6a5cfc67ba6b4fd08f5eb769f5d461848c16f35b1'); -INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a6c5578efa3d84810a12583e21f476df4b3403b13652007ccb089a598fcd695'); -INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'caa3ab2beed9f5b0ad47e3ea1914b99adc0ef56aea789944810a8b719b5e3f3b'); -INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d17d589d71c6097850e37b4d37b78bd7a93a3013685f58fbd57510ccec6193'); -INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'b47e0b95af214f16c837ec5f242c6135deeca4b7bbd20873d1f27f873b96642c'); -INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29ad350f6d96e8391eeb7f5af998c300ec83de68d59dd420d41a8a79c3658188'); -INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'0c63e23ec7cf5874b119ce283c48d7c384a6d151de373dec4fac08a878042d23'); -INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f08e30fae779e3888a5644e3c1a09604613b74de893647f24b0877b14d214ab'); -INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'7eb594f44b42fdf3beb868efa1b9ef889522c59d6b1041d6090b293e838daa29'); -INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b1e09487682628be9c52725e359f5462118a8afff2c8a0bdaf1299b0d848a2'); -INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'ee56421d1c60fb1524691a4879a4e3673ff54db9d0c0f64bda0927b566dd140c'); -INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbbd5f87959bcd54fb3c376630bc7762665944caf815e18e62735ef0edefd198'); -INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'c6e0d5b076004344f97f7a9749fb5de13592c2655f49a845fc452485e94431d7'); -INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2555da0b640666368fb10dbffe9127e9bd562177a38a32874cd9d6b68b10dd2b'); -INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'a6ab125671edf06e3f2f731cb52740863f3c552ab5de99eb6f35902b92b2c888'); -INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a3b878ef16419b047aacada354c8b692ae4a2cf9cafb90b6c533b5279607359'); -INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'93c2101df2e30f15b98acaafd7e0146f3bba6046a5ee95867b072d53cfe833ce'); -INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'281ee6a842c96c8f6847162e9d3ee3b39bfc0625942c52e9f62e7e499b37c063'); -INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'00c38bedb1647e3f675469a03c614423d6d9225ceffa373b5f9771ab7dbed5d2'); -INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'941df8dad23f98c1a034e26db3b135821efbb80b272cdbecba141b193520a68a'); -INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'565a2da071b055b99fd7cb3101c63952c39fb26fa471329768ce4dd7ade37d08'); -INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6cfe43b368030e9cee8c07579dbeb2b2ab3049eab37473541a52468eea97304'); -INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'dd7bc672ae69ddad9af6f85f56b316b74588d82417f667b0d11933df74d59350'); -INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f88a531dd00d04cc0b7a343748bd73eb6bb8e83a5eadfbcf7282a9b3ec9c4d66'); -INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'68a4e1f42336d2092a69de230d10966d7034f94872e62532a9a6769c49964f3a'); -INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79364cb9020ab800b61e9e5a3a3ff61a9604aab5a9fde46e204265d18fb1794d'); -INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'b71dd3a31e24948c312b7b18946fa23e0dc1da01c08d829cfe3f56976a72caab'); -INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15321de8c4e76d1a569e5f1de5ebcbf37455fb02751b83f512f5e435876750c1'); -INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'f8b393e6784936a5a7706d11d4d8e67e9d8c002b41171dbbb68521bf9622012c'); -INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16ee452133acfe45ea32df7b48daa938338d1801790dd52c93d721695521b5c'); -INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'3c1e5730c6b870a10af5ee54321b4685040647d5c9cbffd7677b95621828d7bf'); -INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9127da66c9ae509aa9444272c273466b57f8f48fce9e436cf7cfbc9011a3274f'); -INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'d1ca3796a3ef49816742466bce93225dcd7d1fde02b0d0956fb3b2908ec6e8fd'); -INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a51826fc79b8ed55614643fdca253a67a2a3110e2a48e39d2f77c378ce871eb'); -INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'1051bdc481470bd28d1dc45b415fb473e4ba210f6f3b1cc44fe8ec5e63970346'); -INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c169e13b5e294a8e0252e9bd14d1f51c0dc4d791aead1d28dc8cdeac428fc85a'); -INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'b5605aeed6105dfd5d74c63b10c32d06896da667e71662fbfe5318c99a32be8e'); -INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b385ea93ce741b5b27ba46352a005a0b0441f67ae27359a728dc96b206216e2'); -INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'0bb71a3b2aabda320087fcd69dd34cab107b3c29482cdd928b96323976f6b989'); -INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cf422a0cc44c3a0720e91143df3735267dda998a83ba7b3e5b32907183106e5'); -INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'c129ff3dcd683badfc5cf205444ca921c475a82d6ae4a6f60402509428bcbe8d'); -INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ede8ab316b007fe0ae75ea437f3fc3e1a1cd30baec67decedb25085222cfaed'); -INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'c351fb90cd0d4fc1f9cb0c0756ebb2819f3edadec790c8017d7349a46ec47f56'); -INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84695b7be0a74d046b54be3b871d71d1b3adfb945c843959070d07d9fc9037be'); -INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'6a037d65ff147b07a0bae235c3c5d835997f0e94d0c1ea656ce36e7ec756d8de'); -INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bf444c3d042ddd4c093b7f3d890a476302ca50f3638677bd8c0df363b3df859'); -INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'b194e96e87240f2c383295ce5d8c491b4f99635ca07f0c68a07b671737a02f0d'); -INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebcfd6c7b0b0b3985e3f41e2bd432e6ddab00c33e0c97b76b7d9caab2af8de36'); -INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'48fee8fce667da74f9c52375bc66064df95f3db6624c973d061a8f9a59e64ff9'); -INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abdfa5597beb55cfb6407b6027ce318cabeaccab20cf021360022104b3d0030a'); -INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'eb02a629ab74dad6452d851a43a18d5b7a034c33406c7b8cebe5b04bfeddbb52'); -INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520f8468d214e1314f21e655799a12637ac26584dfc4d04ce24dcdfd6bd088fe'); -INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'b2b64ff45fd91338930c55ad78077b55709238e7c84f3c03d0bf2615c9aa0dec'); -INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1573d1aaac046317d1640e3629d44599b3c0db344a321950bde9f7ab5aa17faf'); -INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'f2b247d938213799e86bb0dbd55c5ce9b66b125ca97ae73179536430447e8354'); -INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ab7bd959196794f58c31dfcde0270f0fe3bfa72ee2e8864126d2050bdc78beb'); -INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'6a769929e9bdcb46d4088aacc0a9c495479751366f72a3b531942b199ab3f467'); -INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf282f0cc7eabc711267a683a487643039dd80718d25979cb645fa8f0d568bc3'); -INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'8acb9570201d6f6527dde3fccfde147854a38cb522a6bc415c733f822a6e6723'); -INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7b7d19a516c6832ebed8445790a0654e22f2aad7bf86069e5c2ceeacd51a59'); -INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'bcf298baa933ec181cdae4efc2bca3b461d41c40b40e0169b62f85032d8bd510'); -INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c5ee4ea2b42d7cc8a3dd7e6373fa02c55e38b0642e7511ce072b87338165e40'); -INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'d1ee71d80d563d577fc16d763b469be61d0e71b260a6c308316536bb10fe0c5b'); -INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d74fa939610bef85050dc71e739e15e4247cc346c4a38711e5988396201aed3'); -INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'9f8766a41a068c176b22900cba464cb80648e2417b40ed87ea70ad02622a6169'); -INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e77d59f1fcd429e5d2a2c0aec6805518254ea06509c332db703c056e625ad7f'); -INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'bd97b7f5daaa9eae781cff5f21fc5d88233f82792f8aac8f49aaa9e425b1e2a5'); -INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e2a372f4fbe14e2d37de767e5359c654cc150d7b5a65358c5658938e1ead47d'); -INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'228023bf140ecc80af850a1d0afde1816af7e4c5fe073d0cff0cd65abb2f3178'); -INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'465e116d3ffa9c62071e03d50d4a1e13996de3801e02380681eaa2a9cb59efdd'); -INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'e56eae7e6a14217c7296e1792bf9f5e7815ef4be48f0cf31c871554e5be3491c'); -INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf0d3bbe38dd9d16b57ec1e375ca2915eaffcd6e8350efc7668f4448943fe47'); -INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'e376f155244e3e47b2e38ef372428e20fd804bfb9c61a5568521ce2ab040aae2'); -INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc0b7348068437eaf707453030b049112344bf02f25afa84017a7dd5696e389'); -INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'196e997e821340b8b2bdceafefc9ebe03421d31f95e86eed0483ac8bfb4ac0f7'); -INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7e5d93450507a4d28c3e4dc4ce5917c6d5a7fa1032e37c632e1e9d58f56463c'); -INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'6b7402bb99fa27874a4403285a2f02886b019700955a0616295b05cd7f1fb97e'); -INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac805a801c03da4b1ea3cf390d8854a75bce25967a845f788b6986a2369d435d'); -INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'95b1e949510b1277ed93497c8849ff1752c3b336d81a2e8bfb4519d0b9557c4e'); -INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46155efc0eba28bec8d32cb8226d73f37a23198cbc99c1bd445c380b1910b602'); -INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'3aa189adde4a77caeb52702728a1d1e674715a414f194914502a14999bb84532'); -INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a34655637f60532c5c7d97e941be105d6b2664ffa152403f48547c2661b68b'); -INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'0211bd21fe905adf32fe757f565a6edc34d92e6e0daac8d4e306f3ec16eb1e88'); -INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2709e4a0ff674606cb340f91a4c56d533468392b0331e2b0c1988f9dc9338487'); -INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e8d3a52dc566a7889c5c4a60f48ec1f991a1ce1871dd64ed0a4b685373aa41e7'); -INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8d3c84f4bc7724ebe7391052eaeb7949dff4fe61d15f06030e4b2747be4b9f'); -INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'38be8572bc2063c38cf037e745be3d3616aeb4ece9bba8bf9d5a76850396a5cd'); -INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942e836e870968b5d1006074519baab50f80dda93d44e5c35c614d01d119b93b'); -INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'a0aacd6a8d16d37c114c837135b197b7a47c067ad8f0c992f4f4b4e8fe920331'); -INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff560eecfa437607176a6a536cbb0a7371dbeaca920a6cb17c906146551b2c75'); -INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'f76d597291de43c14a07040c9b6f0fbd424e0e72ea56d7315a719ef8ebfad12d'); -INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e50d40e3365af2aedc0f8a0b048b4d7aeb5e6e58c2ca031316a1e0ded56eb2c4'); -INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'635fa6adc8ba3a1a5cd33902c90352ec4b0152bdc344e5a70942c2a01548be65'); -INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044aae52525ef4f90095b5a181a72537d3de5d105d1a752973c2e73ff96b448'); -INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'1262b146c96420d4572a1ae74f34a11425bc7a6d7eabc311e62ba736d28e464d'); -INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4481c8ba6363c0f1ec9b0d2c214e938e15d0bdc7171a2e62816ef4a0096ac1bb'); -INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'15a6f1c702034a728ec69cb44dbb8bcee7b0abd292ab9a3886d122301350836f'); -INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e3d8fee3d92772e3ce8d24db13ddfe5d5b38d952b38409ff6aa281313443156'); -INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'851c88c4ca33c90d8b62dbdc3dd09c945361bae257823f737c6784f27a0f562e'); -INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10bf1e4bdc10aa4b7abd5b02a2085d1f3acc053676f548717a362d50417d608f'); -INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'6c81eb71f37e59b7e662db6021fecf5933575f30abba5e58a1fd3f0a04efa0b7'); -INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68680f3c451ffaa3dda20b240006d2d8749d8e6fc9de1c1838f0c93036aefe49'); -INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'3aeb66de0543ea3b63be5dd661766f413530023be4c9fff3d4824103a4f35962'); -INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45768d01bf6166719637b4642c513dd3f6f1ac7ee95fb7db7bd1aa6bb02de2b1'); -INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'51df58c15ac987605aef89e9e0fb2a142587eb41c4aac7fb512c7a42085c60bd'); -INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'744daa08c2727f528343df5907002d3e8f74cd246b80714f9b47a616a67761d0'); -INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'0df6d9ddda9cd88405e4645061dcf23d9d2d1722ae067926df073eb522cc6469'); -INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29145e3848592ff7c993e5cf568a576163ab0ff3a9e0575b7f85ea157d0d2bab'); -INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'e0b0c6b451315fdb54daca7f5f8f45c5e04600072783fb868c4968c655523abe'); -INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f0b9e81a521edb655ba542ddabff05ff95b18943b7762167608b85eda51155a'); -INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'f6283fabfc29c88ed373ebce196d11ad52ecf65befbf90b1311feb61052f9d2f'); -INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'864526d07dbd44776c797b5c017c1284ed25639bd564a5bca838aae094f65405'); -INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'44d8462a1fe2f9a92fbc84644b5e575beb766d9737b153931aa0abbf2f1ad074'); -INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9982851062dc8963db4c7c86347843c0a361ec2d49610aadfe4b24013d3d613'); -INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'f016f2f0b02dbbcc34826e71a41160457d759004c307824ab96a7a0fd083b0d0'); -INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2717f990a88d6806425f8823da0b541c89c43843f4ad30c2149515747c78dd56'); -INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'69a5a3bad82c047f5d48d48485a8a3693bffb6624980300f6e20ccb17f7b6ab1'); -INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74d27bc7976dfcb915e56fa3fdfd8f15fa166cd5b528d4f30627284144011097'); -INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'80a0c577b98cfeab23e9d8012aa69aae2bb9c3f26a465c1a0ee37ee0c8e3e8be'); -INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d6af6cab373181d6c7764fc165bf1db3221893a3c5e13cde310431577abb5b1'); -INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'e322409ca174c2988aaf8301a5d1b2e28ab6d8cacd25b072fe3c3e170301aa80'); -INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'064ce2555cc2be57097ff8de299dc6526261ff5c44591c716a3fa55cb8e9b4ed'); -INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'21f7b04a7414237c75926b29382bc38c80ca5e5a0f0bc40a522c6bd260301f07'); -INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af963b73017ba0002a5481da2a9175c6fd71335accaf771317868f290877500a'); -INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'bcff6cf3db5802b852855de8c2b1a7211c1d7e4f24783748a56ccf950ebfac1e'); -INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1917f48f39f711d35a80bfafc10003525d89730199e1c333a468abf0030a8e1'); -INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'94f72679b9e1dcedcfec27edd47b3532b489dc439fc3aa0b1e24ecb35ec91db4'); -INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede2ac3a98eda4f5b2514394981ad2da543fe49208d0c2b54608d9332dd66034'); -INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'c5c842af36183e2b34273ee4a01ccd3d78a7d8f2bec7b55d7a91c54385757cf8'); -INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21e4b0b797c6d65666938531e587ce399f8f61efad208331ebf8b71c0ea3588b'); -INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'537307138c080542d5c63f6759a90ba883c5795f53ef8855fde3f90d041e52a7'); -INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd3b3bd569c45d9a1d9324a1ca15e85c6ea6d88d7a3df8ff7695cf7b5a7e9ec1'); -INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'6d38878b2350ac01d9156d1db542345521ce4b48a611ef25a9e443e6c3c29b31'); -INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c0ffd6791ad3957f26128e1883830f7e97e1aa2ffe5b936325e179c45d6d70'); -INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'aa35e9aca0eba4c43fcfec2cc897aa0c1815b141a54351b90f3a1bc896accae7'); -INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5163c09c77ae0c6ad92ae298f7b53ae4d452e2ff5cb98adc50c9846804e5c218'); -INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'9d84b506bef5608019dc3663c6eed13628cf7d3ccc6df3bc023980b12866e697'); -INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82859ae6dedf1fe44de5ecf15a460a9f513e89fcc8856b32a5c5099007d71976'); -INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'3ec593244036782c1840c3400e925fe46c169228e0f176972be4d10896f4258d'); -INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b6aef63d1b84768311a5db68c7f6d2ce7f80815a21b820db64690cf6f7d5422'); -INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'e20fdcf3dd182261491a77f059b0c5c4267b08920a4a439d470c79df35472d1c'); -INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b547d119a8d12fa80d3dd3d62d493c52e9ed981301df832a3f720795774c50f'); -INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'b311fbd959b3b55e52b159ca070c4351569c688cb705b492f77b974c8a43b5e6'); -INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c0c8463dfee50b4a24924de567f1960fe4cd5252e13d7752578754bcdbfa775'); -INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'baab490dfb829500eb4da80048423533384f7434602461a19a28cf158a710ee4'); -INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8332906b32caa71af1756107abbf51a178e178096883bb6ae7ddf60c2ec569e4'); -INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'1d71b1330cdd16a46091aabf069c9166b359439eb7e7844d7cb4be55ad5d6969'); -INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5de08f826b05ac3736a8bc0f8d46eec682e42606d58c87263911c5cd8e9fa95b'); -INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'ad54408a484576d17d2b099c8ce668a58a15b03e8f97bff93a5bdd2c044afc11'); -INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947a168e3da5d2e1bee450ca962218c8faf78eece16d288b93b1bb145c5f768c'); -INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'e0c8e9450e811a40205fe7eb538d9d9aee497652c971bf3d194a03e0146ae976'); -INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76aef61c5b3203b470d57476486cccfd6462c4263ad0162f16a3aeb2099cf5f9'); -INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'288d9147d780d12e0dd4b3aa9d0387072f99906c2bc9cb4b110d01e01e8fd6c4'); -INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a4babd5134df984bea588240d63e6a6f42af6d51d63cd597e73f172429b2a3'); -INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'16ad78081e519e3f6aa9ee2ed6d1f8741ffd588e8db0e0c5f90c789d8b433429'); -INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbc3fdc5c80378cee9691f3abc1a1d2c5d39b05f80cf8ddf973c5c0e95aed4c'); -INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'d2abd872706377e0fc99c2c8eaee5942e40e825823235a958c992f6c82f39a96'); -INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'067aff1f440155282082dda7db16e5e840ee4b2f90fae9f117df579a142b8fae'); -INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'ec3a5f773a31f87fb5091a9f8a9945c429dda1763cbdab8b42c64f321280219f'); -INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7ca0088ede2326098d0e810bc553008a25d2dc6ab5dec1bd60a7de740a3899'); -INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'c36916a511174c2da8fd8201fe018101401e8d13bdb7e51503ce2b4bf4fed395'); -INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4615aac517f010d16b6bbb0ec3600ac5aff2eb9c4e51b18a047287953955c0'); -INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'4c1ad7bdaf49f7a035ca8e370460d378f7794ad666c96cf62cd5c7dc2c610731'); -INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8241f611d83e002970970f2addd1f86ac8d3d65ef0ac346666deadc33d45262'); -INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'d5180578bfb3ef2a2cac1b8bf667517f11a7161bda0c2ce6d8d6aeb2a3955136'); -INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d102f408c688ea3c076be721e0606a2df1060b3eb091457861c2534bf793ef08'); -INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'f2797b3a3f3cdbd50d451c944cd4b42c07fe15d7f852f7f901e6f8ff74572ca1'); -INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6178d1818aa2abe4ff3dd8ac1e17823d15749a078db01b265285d812a6d99d9d'); -INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'08f72c66b1599e1b5c2ad561a6a7f55367d292fdf3c02b498b659319b4c7adf0'); -INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a0152e92bf54e38017bd0e3515457d901cd2bcb22486247cff91761b24ac6b1'); -INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'49415db02917d9263231ae7bc2da08a7b9f29ffc37532cdfa475d67e1c2c84b0'); -INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9393c16953ac9edcf0f1ad80bccc6ae62626a47fad39bcde0798f1eed2bd2b'); -INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'75f23a601b5220efc335d18a14724d8a697067e5675fc161f26042d82169bbd7'); -INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'718d538e8db524a533801fac8796ad4b021e43abd151dfd296f72fefc06c52e8'); -INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'80f8ad4737679f999d9ce9f67ce59c83e9cb66f9e736d80cb07799cca24e358c'); -INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3731116753956ecdfb561747b8a53f85033352f1927bde3f52274d6884c55aa'); -INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'474935a9cd3b34f711c9e1c893481dc4c4491f0201d7652cb050915913a2f97f'); -INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'763a9d22a3aff3c35cd1f1b5c9f1be7bddd3ba250d6c474af21e4f7d1fc6338e'); -INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'0f0e04a46efbb3e8f5b38cccc5c34bf7fb2c1de5d16033203bb50e689f79b98a'); -INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72dd27cfe564860a7ab108ec863529df83c779a4648991e8bf78b014a8bbeddf'); -INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'2a109e6004f63dfaccc23508a7ef573e21436ae31f1d904ab5cc43561868cb96'); -INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55bfda5a8be7cebdcdafa0306c462ee2854d564ce3204538f5a52b3fba5978c9'); -INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'12fb319a6a67049c6fe9ecd015ac484251eab6691dfecf4bdda691da424fe780'); -INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'601184f25ed0ad0790dce52f74f0aeb2a5e8e346eb564d53aff39b3ab38445d7'); -INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'36eddb9015fee56764175a50fc4729120be11928443431065e7026cd64c9d6e9'); -INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0356fc94e22ee5b5ca931bba0ef120409b95cde8241c6f6a02b26ec1dfd78ba9'); -INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'a6d686bf8398fca7caaeaf3f624ccfaec5d47e32c268882cc7829042422ee8c0'); -INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'518bdc99280cab3b0214d14fc06304b0fe4478e21cf18e973441a834313039f3'); -INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'dce80b74ec716594740fe19ac4d60a771fc77bfd3b04fa6528fc94ae8b4f6fdf'); -INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa912ac654c72b109738daffe4b074efce5fa89e5115ef761cbe4a6a4aff5a1'); -INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'275192336b5f10e2450fb1a95b80cabe08f0d8d82184d252ba63c4f064a51a9b'); -INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcc3a14328a7d481cd9421a91ef5fe91c18943eca3b3df0eac11194961e9608e'); -INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'99f1acb981a47cc5573616c11970252c47a6ec5f9c22741e8547df776438ca32'); -INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'369542bddcb46cfe146f4aa17e2dcb1570b3c9c030a662670164b3f3b9e0060b'); -INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'5a7a63e351d6b25ccbf8c82cc11e900d6fddfea51c1620d4964c527ba5b423f0'); -INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67dcd841d60878f4c141a78c2e79765b53cf02f6e079a46775d43a0bc034c797'); -INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'658c7cf29eedf2e85325dd9a01dc6b4e986aa48255749ae711c0ba779d8710c7'); -INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67695cb8559ee564ee11fe61f2db26cde91a720238828f28e481698a869501ee'); -INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'3cc16721b1fd9d72c618d62d66821a698258aa1d437841707b4529521a591575'); -INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7184dd79c19a5c393989120d109264e2ef4a8f11c95ae0aa190266faf85d90ea'); -INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'4147e8be9455eca400e7e5cd4f6d7d6d2a3b76ae074aaa106f3dae409b3abd37'); -INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23b20f686956df81b4e56c112c37c45c8ff9c340f828d5d1262b1e3dca1eb70b'); -INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'04672b25a6e7fbc647308029ba6e1a527fa35bcf1e949749b0541fabbaedf866'); -INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6804d7df859018a0d69fccc4078a62d03275f0d8d2648d1608c7e5ce8fae44ae'); -INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'e54d0e60270667d868e0ba17051df9c1f7640ef0200a9afb5a84d27847c7e6bb'); -INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee180efd54ba58277db3826bdab76a0ed0691e9647969884f173bd6ed99ab322'); -INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'5c43dffd8a2d615b43792efa30097c484e961caa4344650212d09e63431dd81b'); -INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3093ec75637cafc964640d6675d3265b6f07ba7de9ac7c5ccbb5536b72653685'); -INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'3c76597342cca10fd844f2d47d7aab49a76254b76d5ba5377c68e8a93b07d03b'); -INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca9f33d7bed7204ffc10713ea5184b35abb8d10f97e215d2717c57f1b5ad9816'); -INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'43478c4bb1c377f71d0ab7d52e9d617d3124863dfd985c22897dae66cbcd6b35'); -INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d093dc2b7337c237fd4cf1d106e3c142f246a2f8c0862724eb3120a516409df'); -INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'72ea1aad63efa63e15fb41726db2f65c2a63ab9137bd801fdc44fc2efa8a8879'); -INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57860f7f7f9766532b4e84a962fc786da1d09b74033ba8887c901b8375718f09'); -INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'bc9bcd78b36c85497887cd6a5232edd39259dc989f41064315ead5b7822a9389'); -INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fda26db1b6abcadc03992dd1b83170340ebe7b1a8301ea2118a73141b1ee3832'); -INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'7492d3f976193353b1283f81f82765ae84f3ac0266d3edc3335e37afb05b5c0d'); -INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad2111612c42af3313a71f8b596de9b8a02eaaff6a9f79c0524c7dddd1fada28'); -INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'d773d5ca112847109dd374b251d459538ebc80816193c4098244989d988f6835'); -INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e134b1f51ceb44a63429b7b12f8b9a2df29938d4110342115db26e8bc8a58db'); -INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'26d05762f004b3ca0b2d37d6041e489cfc46555170a9294f95d03e57207a7779'); -INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'741772c021987a8c24a1913d3e1b4b067ba1d3f4c8369c22ae825ccea542b55d'); -INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'c2aa54a6e05a2380b7f98c87f3867785ced7beeb6a508c0d48844954d060c678'); -INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f0b0a4ac6a31a511adeb23b19cfd508ecc2513bb7c806a6c20a8cc91276aa8f'); -INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'c0863bd3d6ed5f299e60f6c6569e96ce138507ebb9ea792b370d5cd2bb0924a5'); -INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'398782ec1ec652422beedc503467d0afbfb207f1453104c4fa36c3173a60d5b6'); -INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'39797813b40ecfb611cb8a9797687caff4c8b36644a96cee40641ccf7e67b5e7'); -INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2015eb28ad77750efcc10944b80c5f080347e103a18e40bac2226806c38941c'); -INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'989d8ca358b1294428e11a9a33d92b72622b6d978ef2a67f485349699dc4ff11'); -INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2dc1ea03ef71cef028e83a1c5656feb8af82ef2f77eff0dcd273d114bfd27a0'); -INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'8b70a8f16adaafecbe166943c0fa2714d69233737df1b982e175ebc49a699746'); -INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7793a3d0ae048d5c3f85c2349bf487521e853841037c26ceb8da0390ada9eb5a'); -INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'16743087770e29bfe8854b9cf6c63bf3c64d5039bf0a85eb10d93b8d4be5055d'); -INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee0274514931859bc774bea7f4e9412ef4c8d96bfef8f348765773f7d021fdad'); -INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'11160b92c60efd2785cc72c35418f7756410e913538e25658585c13ca1f3019d'); -INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd1b4664a78397bc71cbbedcb4104c474979accbc9993a6e6294d4fa01e5f491'); -INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'4455eb118131a48058b711a6c69ce59f9cc551f882da16d43d8f106ec265a137'); -INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52ba4ab49febadee0ab9de41a5c33dbc02080227d8a622cc7c85ab31beb98e1a'); -INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'083ecd9aa5e2be23021e5d516b792bf454c5fefc9f225d268bf168bf99ce88db'); -INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58a25c42584e1d16f93c8c189282036a99c55a5c3fd8866ef8e76bad1a2e3282'); -INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'bddee76f9bae09f9f53ddb10ac3d351e41e7428590372bd1a3e92f823ce1a01a'); -INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f5097bbb77f531e85c1d6d747f5242c12631b7c7916281823c4c72886fa8232'); -INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'25c786ecb89db4eeda9af2dc72228a307e11604b53be93d8acaf850ad635b6a1'); -INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e4661af5acca55f839fdb4c53abe668f45dea5aec6327f95346dfacbd8087a4'); -INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'936fcbf4146f153ba457b161c2c5ed3a9820d6d9ae43bf424c5490e544e5e1ab'); -INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fddc5ff2079512260a64506f0248d92714a8f76a9fe9492928bb5234daecb198'); -INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'fb72cb1ae0879921b36d9b30ac2f55ca47ee96651bcf5e362e50fb4304a6ae52'); -INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f040185c8241a9c98c50641a1a0f6cc1d434a923f0e6944e4afb944e8deb374'); -INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'c7dd8f85be2e65cb14b71a52cd70df39f17e29590c23867410f713d7fcd23697'); -INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10d6a644dc2b9fc48fc6c676b6fb7c999ff258045614527369794b40544150ba'); -INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'ae8aa8517c348469386bbc872c77b3d3499cf1ebd46a8522015f31d345972af2'); -INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'146171e0ee4f0c2e0d2c42c99b782399d9d116e482284f72ae885fce92f09507'); -INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'1efb178d24b3e538a81b5c4e302f758dc1b74354de2ae09bb203c1f333428b55'); -INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520c8ed12f833da681175bfd57ed55eef497f7a20363b44c8175abfce43a93f1'); -INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'88647d550a16afe94bfdd0288ba5a2f7bf4e3405520d13e5ba83e3c2539af089'); -INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d65c59513ed1f21f3ec2bfd18737d10124aa9ff0fd7b671a6da37f88fe5a574'); -INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'6717c44d7fa8d8297dc42ca9cbd87b1e0b78b97affc761d852352a6a271bfdcc'); -INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb9178d898e05886f17b9d99b65354bafb6223cdc043689f56d43d9f72da62ca'); -INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'043116af2cc35f1bd606db2d86bd9caa93dec65e1cc083cd117896fab95229ec'); -INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12bf234653d2d88dc39da69a7c00b2c7661a658cd683f543d970eda9d38c003'); -INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'56eb76235162507726c18c4051ba7a1c685314c3c8d929ef4bdaadcf5beff0bd'); -INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6c51668aad361a3a49b6a4afdeb8a23d70be5a7f42ca87c9ccab3d61482f3ed'); -INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'1f19af47bfb8421ba1280d4d6fb5d27c443d002fca614647df1e7da0cdec6970'); -INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'091309149d83d047ee70e6dda4f3ea4ca74f2fa6cc206275cd81cf085e5aac10'); -INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'5a985c32a98d4bec6e0c70e5b648bc08a6af2d68b70c5764a5d6eda65988eee6'); -INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca4e7f2b4dc6a223dc1c22c5d33e705a4fec76c08b44bd03946a58a820bdb3f'); -INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'772e5c76667cc718786f68bbc7aaa3c9f3fcee52e2de8fba2695d83ab0d2f70c'); -INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea06a99dfb87892c3ca0b2fe39686731f842eb839c95a1259e09585a1f2e83e9'); -INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'27e192c661d79d786d99db931c5f6a08737eca652b47e7c7ef11a2ed36301e23'); -INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f46ea5e55f8ebe4a54b0f4ecfb2fa39fabaf3c2b1d8175238239fee75bbeef'); -INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'73462e1a73f5386b9bc171d41526fae242bee9306f71e37d2ed7b859d8ae2758'); -INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b38384c9be140e81fdb45e43503c4c313f69024cf55e280abf1b852201ddd9ed'); -INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'d3d2a58c7c41b37a99d7a45e5e20cf1b7f2c4d3d41a7425ae76bfa1aa8c29540'); -INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05dcdc8a6dca39b287b6001fdb4e620c079cf3ce4fad57d7aa1ccf39afd5e4dc'); -INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'822c2be95d5c878bcd43bf442c03f5a888d207ef660665b5db70010c93d643b8'); -INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2753c477d84e83636c7614854c0ba9c18bab66c535914b0b0be7b56564f86077'); -INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'f3f59d5ff5ce4653d3e728e44ff42fe1e11e25a6fb8dfbcf9d5b4899682f85d6'); -INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df64d9da8683ab3c6c59d892a85c109feffc9c8536a13b3fa15528bfbd0dbe77'); -INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'0607401a7355da382188eb2170280c29ae9433c3cbd5bcec871cc2152ed68265'); -INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'862a341a267c891d72754ec86560e37d9eb57b0b3cfc4e624217eb5df6acb0af'); -INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'e3469947afd58b47e739ca3d10a5e3db2887d0492a385970538e96fd88f19b14'); -INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'537edfa3e3d96935ed38c1b549d72c243659e58297f3a7bba3cb478448c3d714'); -INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'ef8f2d05c496884f04030cbd5153a6c2941aca1db9e143401407e1c50714ac4d'); -INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a141d0aa030223f2fa7d729abce7b83c89e1be8df30c7e32b1ceba13c5d20358'); -INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'7d134e7dfd7fc1672c0ee1e110962755d5caa9b2666664be37d22b72215a3e92'); -INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145dd029c336dd222e0bc355f614fff56fb98318288d9ff4df2106ead99a41da'); -INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'f04bd751ca0f172b58afcd0215af39672823d87b32d3e63c5ec1dcf2c0440e84'); -INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de605ca77591296554e622ee070cafad7386851320f0229c5035295306d80ff5'); -INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'a1c3a52984f1f6a8c329f3552f483411687f442463f6ff4832187076ebcc037d'); -INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c179a127d798927d0f50820bf2746585aa79646f044eb0b9586489df920240'); -INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'131999f810c361417450d5843463628cd0e34a92c6d11d4a54aab60fc55222dc'); -INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'236d51f42a250e38d81e5e138282502701ea9f3e16f8cbecc81c3e268720723b'); -INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'716695b834e5d02e190a4b766a396a1c3cbbfaccf47a8f198bd469c9f41aac28'); -INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47695f4ce560cde58e3a9ae973ccd70a0870d4af1295f1b23b7d6f42e3da36e4'); -INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'f39fa01ca279e6ca02ccdc29f8fa833455dbbf96b8a3c2fa9b659a39b4c79dc1'); -INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed1aad9fb826ad94a93b3b917dd202ef0b6fe0783e678b684c1e797e52316f54'); -INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'74b5a91c41bb8ed792a98cef2d6ddebb302c8bd6631fec8dc2eac699837c2567'); -INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc717d003dbaca16920a70425575de0259598c9c487e17d57c6b137a0b3add59'); -INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'f54db505e4f07fdf6cb9fb63fc1f1e9d30dc5b5bc09cb2c504cd2e1c1d2276b7'); -INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65b30643585b8fa662f44c7c30342cf8a530ea9dcf7da0f032a6ee951bb2fccd'); -INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'6e0a3084ab89aa970722862f3f0d4153ca96037b7244393d74b83a6aee2a269d'); -INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9bb47c08d4785e10f22f91ed72db33b8183632bf799c41569fc911e8ec229ea'); -INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'a8e75192603fd8de597dc91f0d324c1c6ec4e3ad960c53389a3695bb3cfe431e'); -INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ef84a3d989dccbbbfb2e37d3a24b476772fa1941c1fd97c7c7edcf1b5b4a524'); -INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'d26be77346b2e3915744a9e9cf3fbce374400817c334b310227a8e771f027ba8'); -INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e4fe1c6c9d0de95da827c9671954190a9b05f39698ebd82671d5d7e0d4bea9'); -INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'4f16ea5c823015195f8e0714013328e82f7f283555c1a36b26e68f301750114a'); -INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad18063e012bac15bb9817169e98ea7a7b4abc25a7618166737ae4a7d29f90c'); -INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'f2447db529324818a1aec859c380ab263c88cd970761dece55b296e42e387a1f'); -INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b7a4b76923d4c894e3767b9b9df5469811078828882bc809108dbdacfc17e1'); -INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'786907378bb6b539d3890c522c2bdd296e01d2beb6256d0ad528e954f2879c85'); -INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a84dc2069003755ed6c0cfd441c2e626a7677e0f1c9224f6f450598e46bd662d'); -INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'e789136b0c862b56bc79b2b295cc61a42a59d718e7f617c2ca4d6d24df3769fb'); -INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17bbfc4d2007e679ad1062cea58deaaf071949f810e399d26a908f228496e6c6'); -INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'9df7f28775eeb70df42745eb3cbce824ebeb6499c36e0d7913965c82ecbfc4d2'); -INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1e6837900e8bf0ae572f8902ff1326f269db08c8377ba600b45c52ffe7b96df'); -INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'9b0272a36cba6a5267a0a00aadc460735f69674cfdfbe982d45b2416746217a7'); -INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145ec91d1c03a812611b1834a7ce23b6b801a6047d0d5fbbcf0a5800633993ab'); -INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'922d9f3dea24eb678312cfa604d055b0d830e5e03c0d377a642d0c8a7374d40e'); -INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d147875d527a59cbcfcddaee89cb9b66460654dd2cd17a5bfb195a08923efc1'); -INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'144655c3c3a6d64b66b197e7762f43616f0511889ab615a69c6ab415d1f35185'); -INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22865a546811743adfc4ed171ab3535c3e3ec06787217d8bd3edb0f38f22abd1'); -INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'8aa47903e47936734072fe6ab4e9ac15222a14214ef1d0540351607d60d2f304'); -INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a74d3b7df8ad4120788e316e692d95f6cb34c47483982b643c032536dc9980'); -INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'39faffa4ec48136bc482297452a4f553354ac51971ca84856eb19b528a7d29df'); -INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04cea19b67e8003545ee72d4f5082f8d553644b4e6698ece1cf9d85f036eeeb4'); -INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'5ec8f01099af8b2dfd94c6e7ebf86d696b234f3dfc7593734fa72a216eaace3c'); -INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21196aff3e5b161327d5fada1290d3b757b3b97d8c9b17c541770cf4c73a4e05'); -INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'a1ed12367ec8edbf61414da74987bdb3c1872c7a65f9153b5a5c9f4516d2d5c2'); -INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dae2dbbf447cd273140c65bd157bae379b30af7ae41c0b257c76ea47bf96b125'); -INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'504a0d7fcfb3cfc08ba3f9d324313476bf2cf7979830e70fd20bd6a7e5b9806b'); -INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b031b5652c751ccb718524b94426025e12518013bdd4ef9a92ad3f3098e3d210'); -INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'94eaccb65b21deeeb531ce4860d63f8e3c7526b477658917e851640420745871'); -INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67a21e2d353d16a2655bca7aebd78b371fbb5f8361daf42ed842f22666a0bb20'); -INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'6415332a53cd4ccee8714c5ed0ef39987bb5f78afb1a915fc1d6a50a14aeacb7'); -INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8d5481eb2eec69ad1638a78f1fc453c6f2503a1eb3988a1464081870671cbe1'); -INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'7d066c31f1ec46d1023982c1e3f45efbac26ea3929571393c5905aca35eb627c'); -INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6a297583fdf5f8f1eee43e11ca9bbad8d36f51529fafba3dd830e8eb6f674a8'); -INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'4e390569011f2173c1cd888a0498598f2936e1a666e531f1a5216ffe192cbef0'); -INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dea87a5372339db424f91e9b858684e91e25bb320e46a59968da5a448fb1cbb7'); -INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'1ccc43555278f647627e7450ba0674d603732e65d16e30c4b830ad45c04e35db'); -INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cca12dd04ee1373b563c88d3fb148f2f9d41542a6b3caea4b585f1bc26f2be7f'); -INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'cabf9dbe4c1eeedbbec59d0b80f131692b3f876587ab94d219f5611b0db318c5'); -INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78e65e247057ef2a8f344dd9755619b01d8caf524e50ba69a446104969191173'); -INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'312289a9fadb25b288cb69d6f96c60e150aede1300df7f6eda41393926c948a8'); -INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a2d79818b7e4b5beb0b931133d4d32525978b364863d7d71aa8c4c2de3b089b'); -INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'30ed99c48ec8722d071bd609c5905cf1098329493a6209f3fbfb2c473fb88535'); -INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e3b689138d4b9b649e100595d02d69b12b6fdc707b93bb2a6668606a2cb775e'); -INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'3bb67fa1dde5d47255d547589522d44ac150eee1fb31a1e9d3507a548f451609'); -INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'057a410678ac10a8a7f3f1fbb5730fd509cc358eb46c77985ee20621df58ebdf'); -INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'bb1fce646415292c55e4ed2cc5753b2311e571013ded8a39ea154066006f705d'); -INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5be8112029a2386c64778c15a3db61d8a5dd51a4a221f2497dc17adef50902f'); -INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'08a258b78f58a8df747708a757a0903691cce350d8a976779621bc4c26753e21'); -INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fca84eb1d50122698056b68515b1e5f745fb7a5e297fe58ebf854eccf31325d1'); -INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'ddf1e0e34f9111e3f7f8b06285872092931e51da5488aa5544963ef4396a2581'); -INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfe56aa04d359c1de7247e9248f50da3c39d13a1501131c9eaa268b04dcd0302'); -INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'740a8a0dc6ade66153575deef1796761608d2de441e577a86e354bd580920a41'); -INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'743e293c4cbcf5a41e72de54195d912eda8b117d3409c6248eaefcb96c5c2d2d'); -INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'325348a4f6d917b902c93eb11853f9c5081daad75fa4ca189ac0ab168b1465c1'); -INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bba14e60d2f6c47e80a83c4a653c6b2253ee0d8ab9c2ba906313cb4c85e4d7a'); -INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'28c9aff73772bf8d51509ea6f328f9c147873beaac8a031daea58b2b2b8dbe07'); -INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da3d1765159f5a1f1d18b145dd54c7fdc2ef4ef557a07bebbe5f72af0f80bf81'); -INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'4683f856105406f32530aa72934ae0e5fc80e11ab88d04ec823975ef8f9fb357'); -INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'792af9f34af0a0947378449af7c2941f13f7e7c37c34baaf094127894a2bdc7f'); -INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'10c2f5502efff9dcefe6a5f84964ec6135b323a9f7bf95b2c43f15d0a84805ff'); -INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','0739c4df82694a088ff5605ffef1250e3c832e46fd52021aa9929af8d7ea0cb1'); -INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','a2e94fc1e1e02f3380d1333dbaf836ed9e71efda883304e087f504386da01b48'); -INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','19e6737dbf959d0c4c34c379c710784ca56b3e8ff21b02432fd0a25c0c6de141'); -INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','e0e98b5d282051ce298a3e29cdab37b1ad2016999a0fa355cba335871dee0aad'); -INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'989c558155c8efd99369281cf3db69d9fdec94947224a628ae65f9e9ed366240'); -INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79f2bed15952af614701c745b20ca36e4d5914ad3c2121cc8b8e399db0879cb'); -INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'188076d88fc34736748d37cbf33aea994ae40867288ef17b7892dc0d8f3cde06'); -INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','174c693e54e8a7e3b14b3e6898e3acdc4faa39d6ef8f6fcd9f24c3be61a7b602'); -INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','9eaf133cf67c0f85959ea776d119a2eea5f62a14e22cb778f78caef26c7dc2b4'); -INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','48c2c4c34a8f852d5dffc7a1a44c0f560150b13acee747046bf98a0d948185d0'); -INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','7a21f74eb29ec41290152ba9e06de7d653ad1e3c0a7fec065e60e58c9d88c420'); -INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'aea27bbb55d21cbb91d700f71ed280398fa0c0902633658d0b42690262d9ae8a'); -INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'997c6d9de685d904bf7c3a031784571891ce436fd13773b603c3d1caf4aebdeb'); -INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'d1f6db9b4fac434d370be8126f888459f557876b72ab042b734a88c931d0ae37'); -INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9e063e0e54ae458a9c4e9d05dbaf4e328f0472c7be06ace4b688286e4763869'); -INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'4239b0e818eb157192fac27a4713e81e5d215409b9d375f998e63f499bd579dc'); -INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52420edbd9ea6e9c9dec49e0de5997c5592309822e1751cdd134c917fafdb57e'); -INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'87fba357c5e996226f7c5d50b7a40e8935e105a6e5ea41bf91efa8ce4bcff187'); -INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46e427fcd7a1a5d8e4c2f8f7eafe4619f7f975dd82c8f6211a60016a25d0355e'); -INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'9f3c1380ced45bd709a85870c99628ab28765283ba6bed51818ce8c73f7060d8'); -INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a5bffa603311b905f4ff5b0ee3116e1e3427f947a7ce9c5c07cae97dbffb2b0a'); -INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','51322de4241d1fc2b3f97a7ab2209b06255530f2f45982e6e6f4b80fd79b9b22'); -INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'4327db1052f4c8d0c2c70c58266298f04aea5af1627c9fae4055bbdd94e31122'); -INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc413ee91e6b38643f6758e251d3915b2e0b02e43bf9bdce2f142dd331d9d300'); -INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'654e42cad455913d8f00534427329c00088a448ca06d6ccf90fbcc17851fc05e'); -INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','a90246720371c9f5759ca13510c9da7673bcdbd1013e9092d93659fb42902b67'); -INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','5e23dbe1f13c627607d4a0aec19835fb5d5f378538b231637bf8c14eddfe4c95'); -INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','d88ca564ebcf4551253ffe835bf08e51213d59772f08a4b64e167ef5ce560660'); -INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'02a73b0af6ff144b34fd388cffab27010f006472d7eefec076d5337b4531e38f'); -INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbb763c7b607de2f75d9312570d070984741e7c096f1112c934765dc0132c5b'); -INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'94b98044cec023ef4c04c2fa85fca827a67713019f16d4b49d81bf78e83618b5'); -INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','91b1ece2262a10c631d5fc8b8fb434be3a770093873772a620f84cc3c666a6d5'); -INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','2883411bac65a84fb059c2a0a62f7feb559c79c1785454eb12fe03651852c702'); -INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','bbf8dfa1f802a00a1fcefe9592b7dc3e75b334b9425fc1f1700bfd0a1ebbc91d'); -INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'c9d3bde8bc05436ba8c9a490f058bc006173f21ead57467aea6581ee4d2801b2'); -INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd16bbc09a08c9ad2b4f5bb999a96c0f1d5d60bab766262fafb424b71a9e58b5'); -INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'4afe016aed001f429e19e2e098cf6b0c2f01f2b642a3e1affb486db876b1e408'); -INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','2f8956e74b2e059909b8c0367dd6500edd5e59bd7df1270079fe37c0e33361e8'); -INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','25fcb041a198ca55be29e146928f49b502a03418c18102b858219463a12eb6f7'); -INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'d11b87b8b455ec37f96243e45a53eb13e44a865914d9275c8de3be80a79f46ce'); -INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60d11b26f4f3d614917511166f40cd275661b91aa9864806e07af9845888ab56'); -INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'e542df9be2e0cef6f05091a2211e51468f344254118acd035fad38df2ab60e36'); -INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8db70722ace56ee70c9e63f16db216cfe1125dac31ead5dc538797d1a4b77f74'); -INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8263a6430182b6165d246726ae952979981332bc717fbd3453b77d01e0715bf8'); -INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','b0e6324579a40247f87dea9363d71137a37571eb7039a1a046a8451becf18bde'); -INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'8cc85d88963ea08974d322b29a833c065feb4eb8116508ced2fd0489182a9a53'); -INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89021e886bba03758d6b0bce278cdf9ea429b51d676cff1154fcdfe8c2241470'); -INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'9353f4676e0cb082d3079eb251a6b155d1536c9e82f932585ac488e6a2c94835'); -INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','03aa69bf3ca82119897ae3a5b9477a7c4ac72b4148af444850b37834c8d33c69'); -INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','49aa378af2a0de50b8552e0c7c3cba1fe15d604df7677d0ef063cef3c168f1ea'); -INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','a9447bdfb3fcf03aa64bf22148c68b2ae6bc709ad0a7dcfb2025d6bd6ea83e98'); -INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'c1d1f8131a18c13373ddc06ff9abfe95d8a182c85ecfbd28592423ae54962cbf'); -INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455ed495ecf3330ef327dc7742a5c0180f6d29b807e9bbf56ba10d84df88eac2'); -INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'b2ec7b13e35cf01e93e982d58e7a67c0349051bba748c92b720a74a55f478504'); -INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29b2c664d861b90d75821fb525d4b85779733d9bd3560555fcb8b74d09e3677e'); -INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','2c69413b213976a4095fa84431155767543593db31b274cdedb536e0d5834015'); -INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29c0c7850bfddcca428b7ae898fe88be7bf53f570eac12c6925a697a7c4554e4'); -INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','74eef0b2dfd51995c7c6d74c9d85ae0c81835f0dbcf6878dbceac7587d3c3584'); -INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b3e30c737cdab07772d9151dfbfa1b5a62e54ff544e6265f0d9ffb0f01aff9fd'); -INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'2b2f3bff123997a08653fefbe305bf9de101307246e895c4566231514147ebd1'); -INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de5106f57a303f7a219d4880e3fe4fb9f1312b53af5dc46832dd4087e4c09665'); -INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'2ee15d64199399ecaa85990d4cb505dcbbea47a0f7fa5b546420d20927cadad7'); -INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d65da0514bd73ca2d76086ca2d152a5596eefc81d51ea781be8706aa853096d9'); -INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','b0bd1b5f1506aae7e1cba5c22cbe7b3ad79861aea66179dfa10786562fdc8d11'); -INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'c2ab5e3d2c55612d69dcdd3125d5aaf1831ad3000f8cb5d5d2559fe057754628'); -INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b7632227d93cfd5f1659c3c28688cb9b5a4187368cfc8c3eb5d32ccf598753f'); -INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'f9a88798697ef65e8778c190421261d33ed26577341656e76f9e865b8bbba62e'); -INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','8b81dc12a96622fd1e5ecdeb62f8cfbda266950e5a08c4212f39dfae9bd2ead4'); -INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','2e719a6b4be4c8df66d77f22cea3f2df51d62295a7b2d6dd64649e78352b80d9'); -INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','22a1bf9c206307a5735f4c6cf34a7262c10a44f3e02fe36a6f26bde8818dc7fd'); -INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e99abe801cd9ba296c1a5d02cb1bef31de305e1dcf40ec0e8c4fe04d00dfb10f'); -INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','6933d8bae483e2dbf7e48b35597bef62ab7488faf6a7da2cd483579ed2e513f8'); -INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'140b6697da862d76795d035301edc871aeea1b2144cae55e6dc21989452897f6'); -INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed9684834edbc52cd92115fd645202ed352cc689465f821c1d00931ba745884e'); -INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'375d5b75e9401201c3cfa649c6737051431c04d4844f6b5dfa6638f350115ccd'); -INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','55d0c3ff21648bc078ba0f988fd4ddee6ecaf3d69d91249c487ce15f8c1e93fe'); -INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','81dd60665ff456a7ad3926d74039941e977cfccc8336c6ebfefe3aef08ba4e33'); -INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','24b5edfea2b3f132c97b45a70d2e4ac627a45dcabe8fa61f34ce65052364ec1b'); -INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','278ffe6242fe844526f578dd32df5eb09d3733cf347f3d8fdf0257dc071ac454'); -INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'b3ce6c4059ff913703950e12bab024781878b50a8357e4f6689a1d3b9935814f'); -INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c2ce8ac901907aa556ee787464b755abcfa225e339579d400752fb08c1c2f9'); -INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'7805a262fca1b0cbfbf8890bed02645e2c74bfbd29f884cbc63296902bc72445'); -INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','d64880428fc4cb1892fcd94fd920c8713c1ca407ac9e96df29f1e1dc90938ac8'); -INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','b8aa933061666576279d5a261e9925986d6dc04c28d9b94268fafecb75dc4b1c'); -INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','38ad269b0bce08f4dc625ce48d37aa650e92d22dc9fbc7ebea5be7b75c530191'); -INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','5a3567caee5fc75ff196a68f42216c98799de6c25af93ad84770034120601a4a'); -INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'8b3d452311fdcd9ce202f23d99dd2e1546ff795f06c4fd71dfef3564e9802e19'); -INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9d8a4da65d816e5d1fbd566746f7c93bce7dcca614833cdbe64a538a8b20bb'); -INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'0e4553fbcaea28b4ff1d5d5afc76ff759a38618771c2d0bcf1b8ec46d87fdce7'); -INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','e124ed9a91ce13d69b6f7c0296753f15943126833db83f43345bcc61395e329a'); -INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','5c378d66994434498754d4474b56b199717e38198497e23a5a758d9f3100c41e'); -INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','9e1f3f5d8ad3232c2d96569904fa43751a0e91c37391afd4a1ea008e044eb8ad'); -INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4ef09cb8d447c7d5d89876870291bb6d3eddd1271912b76ed102c169122a106e'); -INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4797e729337f09fd2e50798448fb2f550d2ec3e17fd847345fb523afe575be61'); -INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'830b461648e54ac39aefc077e93f2f244e25a1459a1140fa1f5ab01320a2553a'); -INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5ad6dea0a8dfe8d71ee6726ab62d77c29c424178572fd36d6d9547b405e505d'); -INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'a7fbc58e4979753fc1a3d09910e51a96c804af2d5a5b2adfad77af72d25a6f48'); -INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','8c11643a14032fa25f203c04db02ae293ff4451522359f5db2ec8fa84af2c829'); -INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','e4eae522a194e874a3c28df059a3665fc157db778e3f6e0edf28c519a328260f'); -INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','4ea31f1e918c61ebee3879c306e20bcc12424912565bf6523a78abc5de8bee85'); -INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ac448abbe8cdf694b27020c25fd4e9726ab5e4f2a3a2f544fe422683cab80099'); -INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ed811f5cdf70c06066b0393e8f5da43a7772398ea1ada8cfc7a9daebfba9a55c'); -INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'61e07ecf01fa9096c0e36a9f093a35538edbef348ddce8312355c2e8b0b106ef'); -INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07d7840ff2b17b72d39740abf7f995aabcf1b6976b29e8a6455a2cfa2babd3dc'); -INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'e81e86c05e38b5440448a37363f2bd65bc888418bee40a81504ff19336983863'); -INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b22c5137782dd205660cf3a350afa1a6d25f86b05a02e23e622ec7cc70c37799'); -INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b6a36225ef6f14e0762544e25c96f87686bb0d5d56e3e166119df377b80034f7'); -INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','2f85790bd3b93ff0fcb88967c683445ac81a7c2f94eb3adb485680cb48373093'); -INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','5df267db63bc6bd6795671b9a06d4e244869a4edc9e984cf74c75ff6a9551f06'); -INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','6385d6652354d933814cd087b3f500fcd8d01de83d4844a26ad3746e7b97141d'); -INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'e4a8266ea5b9f8395a9a6d06acdeca74ce08af8edaff0bec7e5eb63517b5239f'); -INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32f103bbc4cba8e3d4ddba74e249d07bc0ccffe26e249b6e869a89b6edf6f725'); -INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'8cc059b18fcb061b8011d64363a9352b35f14e6c99a9c99a974305f69751b896'); -INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','dc4a12ce05a0109732fae42394af626545aee14fca0cd8cfd7380246ac0cc4c1'); -INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','93d99ee2945e66203aa7031be1f22f6221ee2dd4e7abf419cdc79429ef49e627'); -INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ad5b97831ad3447712847e1cc33c95f8d26f240f1aed729ee0d781f742ce6a63'); -INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ead56d663cf0a731b0534a0d0a90f2b4102a911043d4d82fadd54c5b4eb0a0dd'); -INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','23523f9c0be3e7086e64e60dcacb0874262b85f5c20a64d9d9890adf77d43c93'); -INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'51b4a2fa820e516555dbf949fd1e7c08ba3c972bccbf98aa1d4769af9e4e0d4b'); -INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d483acc65a8afc1c8df9fe13c0ffc4c0aa961b13d34be2b205a5aeafb38ab0b'); -INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'038edc64dc9f33e3e3025707adfbeec7e69160f2d416af7b8985eb26814bf3b3'); -INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','681d69de170d6e916c2cbcb765d10ca301d1d37df2d808f7fdc141e23bc99a21'); -INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','af1c038513bbccb7f1534c4da478782b64bf1c9fc372c8e5c70e8a1a0f3b4593'); -INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','cec502417f98df44e8fcdbe6618109fc0f1aba2825c91ff9e357d0e17c088b79'); -INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','c0a601a9e14f5644b3f40434cf7f5c1ffb7f19da2c26ca7d7002aefb13e6485f'); -INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'3a3ace40af1364342228ef64500780e7d5624d3723bfb1083823cc21eaa9981e'); -INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40ce0a6ff3c55a6b57e623237baa42321d035172e942ac11684037c941171247'); -INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'09b826ccd29db294a46173a808735c28559d7d3332cd159c83df4f6f45363874'); -INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','dad4537919932e4b2e105f60646099439ce15c0fa16b3ef9d67f994997ccb787'); -INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','06de89ab597c41aaf8e29896a0524a45c69459d339cd11f43fc1d787497a2352'); -INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','2ee3794483f6e496f21cddfff7fa6313e6dd21c147f78f3dafec27b3902647d4'); -INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','51915774e48410827f5df365d0f7366e3989f895cac7b45565a77a95a79a3567'); -INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','f44ba9ac4612327a02c51ec97a750cb210ea4bae1925e74262d69e47d9fbf58c'); -INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','03c546607baade42816d44358a6ac15198778d57aa5a92d4e4f1724bf13a5728'); -INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'b7d44852927e24df4321dbb8b04b903e686c1f17b84683c6148fb604ffcd3c87'); -INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'474a77a500aa600e4bc9c67508a8b3de1a070434574b87a9d25a8309ec05867d'); -INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'548b46181af0c946fabd4dbee31b85f9cbc482fe518da8a03bd6cdff345cecc9'); -INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','d08401b431da4fd05f7141826e06b9b6edc2f2eac7a80aa14e2c75a92bf3b731'); -INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','92e7f9f18a34ef2523550b1c9e71b08d674719c0f3f19638dcb2a13190eb522a'); -INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','5da30e150c16827b6a48d657901f9c76b1b5e3c88f08000c56efa1b1c2e2346d'); -INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','e40b26ca73ad0c30921231342077eabf9ff18d7a0e99ca5b8be35f16d4ef4ae5'); -INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','69eb4885bda1ca9cf01db3cc4c89e5957da1641dd4a3c86cbb2a8142dee35803'); -INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3b0458356a2d03af89e8efece607ae0cf0a4031d4b9abb6629cd48d2e4fdf324'); -INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'089a79f8e189b0b30ab30fb32247d87fb75ae5f7be5e95afbfaa28236bd7a22e'); -INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fe72fb37d670513f545c9999f36f4d234a18a2fbafc1b6c812d571eb6157194'); -INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'b43588348ea210a11e377d3c70afa2cd56c584658eca5e4e7d3ed55fa9f2b976'); -INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','58cb9461bc0d889ebcbc3031245c3fd40468c9c7252506995d8adf4739d269f3'); -INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','2cdbbbbcdbdbba080a44dc45921170a7fd8e3b99d301a858f41abe866accdb25'); -INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','5c6503d88ee1450f6aa0aa13aa8a2215f3967bcbdada0e535d4eab79095be0ae'); -INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3f281826ad154629c47194ad75326a52b403e0fc0dc5618b2b5aec3f0cf4083a'); -INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3577515ee92f2a5d1c15ef39a6a845e059f57690b88b04feba62c6dfaf33cbc0'); -INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'a9409d65f16728bdf19aad8e066f5fa1b54303ec6994196b4bbf8b2d6ab44f8c'); -INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3318a7245e093723ca11cf73652ea9a4f410ed5b37544108be6e97bee4b7f800'); -INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'0bd7ba3f90b37ab1cdedac6e0597f5d1422af7e1cb38dfd3669ae5a51ea657d7'); -INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','aef1ec7c14a6be4b4fd99e33acf023e4a52dec6a2c66e5f4f39ecc1d3afaeee3'); -INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','b0d0ab9754b61d9fb63eee90acb96f18e6c78a0a2c4f1f935048720194ffac7d'); -INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','fde181f74b5fd7da901f9463cf0a4f4b8d56fb2e93d37a2c552f58481a2758ca'); -INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c6dd3c2ced8fe87a761c54f7b2a5e4ef0f53062f4fe365af99536b912e23afff'); -INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ba3a7011f1de3fcb8cb951cd3c607a8e464884bad6b8d204e412b83e9726bbc3'); -INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','91bb753e5136c757b48d7b865426d8a2e11ab1fa0f84ced6695fb6cf6c1a6f1e'); -INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'7134047fd69370a504a667f83b09b68629fd2d9be748c95138a404e99b3e30e3'); -INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e665bdb61f7e89bd9bfa8d9b85308c84a89e846a5d6bd22f9cbd882fc77cda6'); -INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'aad52d1e230229d875080942ccf61b01ed73601d408d07a3ca51884a3c64ffa9'); -INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','26b9a011941780ee87a02f03b3faca5c657f6c83f15777d4dc4de6640d887e57'); -INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7f5d449b23d65bd3a9f04a5251fbab4485c60aa2c3dd82e85128667a42240942'); -INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e4b59bcc6416defbfa6cd7eb4088109fe29ef9e80606f17d5474823ee20a7657'); -INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','12db13644a58f885058aafead3ccd7aedb7e28c28c1b3c24119105c91a182924'); -INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ce4f3df23178cb3071b62b7e93238902c7efbfbf8522634bd6e10616946f55de'); -INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','23d2f1594063fd9de06cd1afb225527b5926e43c2a409ed16b54563c644d6825'); -INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'13d8d6def32619d8814c5b059aff533ac118873e7cc66a9247e7d35c56b4e40d'); -INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de258cd8ad734c4390cec947c6a29631009286cff8bd97c162ef69fcb3cf804'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0"}',0,'NEW_TRANSACTION',NULL,'b35ca60c77e5826adaa4c71992a3710a3ac33996e219ac8917aa20415260e40a'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a6e44bac18a1fe20ad7aa50bf9e610fa86b3a4abecdd8b3753f21259b942547b'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','34db6224c2cba72a51798ebf26fa138792fde67f9f4273951cd1ab07b69eb322'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e5a70b35b668dddcae624234d0987e874e223dea0b7116f8044c1d5c6da81d55'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','0a52660dbc4f3f4cdfba4d181c0c7754f649912a31a7853b59c69ff61f2451ff'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','c2c50863293ed4c1a6a11e889c71b07297d9a2652a04898f898cae6efb8d1103'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6e0ac3cbf51a4fffdaa8a7b387b3ab0dbe9a8a22f2874447898581750088254c'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3c20c13624a35c1e7bd738671001e7746d56a47df51bd672d802ad275e69c8fa'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'1ecb3f056ca3a6994fa85b473ce7a2fa7bf6269aa6789b8d766afebb846a10ac'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528099bad1d0185356e13f5748fdbee6416914ea4267b5a6ae5b8061d3ab582c'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0"}',0,'NEW_TRANSACTION',NULL,'a73ac93ec158b06fd501c3d281bbfe0694c25cf7e77e2d86de5e5e7eb4b36fa4'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','82c8e996dc8a3c904fec9efa5729310745197e91f4f54cc4b3f7aa7b0b7b5e06'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','01bb9250351250cbfbc3366313b968db45fae4f0a0c9c212c5bf1de6ea26b01b'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','877eec9a5ca40b248c28be34e8899ef7cd371ae17474366769d9ef307571f58d'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','6745152750bb36fb54cfbd44a90d4a50b0fe7a2748257e8ed1abfada1f6a7937'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','e067f1e65c2f6e43921b2580a6679994c611fc10f96456cb7a0fca533187e263'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bd98d8215b35fba16c6b971971c7a9595b58764ea53300538702ee5965fd87e8'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8bc77220f31770776a5ce2ff53484e5b30f742ce55f5b5d65e9fd2136cbe9c49'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'c6d4a624eb710947b6d04042f3cb12a9343afbce61b746c3bf77ceff4e63d697'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35512b3598ad3f96a0aa909f8ae3868712209f33c2ab76cb53d3aedac8081092'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'caedb504a8148c5488f3dcff5e4997cd597241f4d8f28b8a22f771b1f8a7b34b'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b3b469b1d5e8d30b517dd14f4dcd3a784879adea006d89b1d6e06b193df9a9b'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b941d0c9aedd4a26459eebf5c843cd86eb6ce5e43482c04559fae4a0d8f5004'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eaa8c1632f880b49b9124c1223d4b791ba5e3e218523a9fbd3ee07d15341f6a7'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','975db2606987eba41dd1a47b5053d590566d3c8ac020e80c9fb6df9b2ba430ee'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','64c8ce30f937287fc16fb4cbee0af0eea573ad1ecb4955f520c9e6a7f84dbefd'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'5a2a068c35a2b17017d73246ba800a5ec1b26882dfa552a2882317a7352d411e'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'639f60e9da19011db814866ae8e6ee859ea779fea3359acdebccddfffa46dafa'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a35053e6e0e5a85756914ecbcdd12d6a98d5130109b7fc3df25ca5eca3afa1c9'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1387ca5bb166056135847144896c17e0fa4286ead8e61b5792367e09e648ecea'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a2f8391f95dc433e64988ae2189fa66fde81d9c8f3ec9156357baa2276dbb247'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','51208c169c96045cd0c0f378d1218dd8e60fbf0c0c3049ce982c0ccbd125fb7a'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'3adab6a2f81a37e64ea1f3307f5ec4d982a8f1221eff48af67f83f25bc065088'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'339e09650b0d4d08ab7cac49e346796cad270c1594f2c77a60aafacecb101408'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'172fc284f2e58d414d48cc1beae80a91b24993c164e2a5e195108d259b5d62a6'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0609f823125b92a2b33402a0f37d040fd4d6819c5a18031522bb16f07c010c04'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'e41514375d80c5ade7d86d5a81ba7e5022e8f73aeda79bf163a0ecce960157d0'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9e620183cfa0a485518a320ee1914527de521749ea64c8f751929e37e22d69'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'dbfb90d67c4e1d26fad2d731d6dad5bda42011da3d2c61e65ac29567a7166e19'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'14225fb022f3acb16145c071c108eccfcf7548ad690b45257bd2532ab3e49724'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'07062c0ceddd54f644f91ae768b2cd510780d992268c483c0e059014970647c9'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f8e4214b6caebdafd025229797cd06db265b7cc787cd6dad15ecdc40315afa2f'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a04a13ee6491db965a4f255bb88714f2ea260286c5078211d718c33e0969767f'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3713a9a730487a68543aa4a207098d68c7228a46ff16b5ec511498afedbd89c'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'fdc755804dae601d6c3283f313fcd36f25a82fd5359f9dfa12568e1166249312'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d0b294525624557b1e26fbbb012018b961f082bd5c7ac6e216a6ea3f47f787e'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'c55f286783ba2ec3691ef47ddb919c709ad5dec96f79c2509a4873b81e12f946'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23911491e6a241d8446f339f82ebcd932fe8db3729e850e1e4d6c529c171fd52'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'a628fe0747549e41577a7adef00fb7f0578b40a6a25fdc196e831d79c5e8ab1d'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8f0f033b427280712b7c882679d5974306455ef58994f56a8188b4948c8ffe2'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'f9ae8ef5229a28d1f088f432ff0c23dd04c58bea75c82b063350da58e55e7337'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1943d66ac055c560c7a62be3dcb77399aad93e227ef1022f9e142d1337609d50'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'63f1e423c099697f9522f29b60d646ff417063e151fe4ddf07334d17f687da32'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598454f3b2b7237e91ec487dd8908426d20d8ba844bd29270cf8deeea138254c'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'74aefe190729ccfbb1e97ce83f416a357a43e984784666e12249872f727b8613'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79cb34aa41850cbe98e1612731973fd0a051e69c7310ae4dbb449e0351113c05'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'297fabbc8d47c6cdb3a644c8787076eed82b9ed61ebd4318c7d4792b6610068e'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'9bd9fab844740f3ab48a25256db8e575339b7a5e193ae5306118ff8f0a9e7e8f'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'601e5c07b12e7ae0f2945a6d3a4b7f9ebeefdbbd3bf034fe2df41a73c5314950'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'fd9086ac4c0bdf6b9c3376754dda2994ce20553f15c6aa43d87008e5cadd4b0e'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c97cc2b86b51a8c6cfe4303d188fbcd7bc6fbad4edac4f92accb50aa5eb4dd33'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4caa9a30853ee7a7931186dd4c30cd6605de7f51813d577fb3f2b96d3ee24e36'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7297162e53d9ea127a84af2ccf697534a0cfdee274c692655e5d5640ce972c75'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83708bfa745be321be4d2670121feac375aa2fad63bed25ab0e858acd6b087ff'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6d69c838046d1decb063ef289dbc6b9cc01069b8ab341eb50018a5ecf9545ed5'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'1ff4bf426b7853f5110f885ac868df6d0625fe47bdca47638b92b7472a61722f'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2064a9837855c58a5d1173c5c882adc729cb5eeddf4e724ad35287f2ef3bfe16'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'20fbe45efa365bd82c2e911c58934990a875f44107c885c36b8e9eb5a0585460'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d359257975f55a1ea87d213f7ee4109e296d4c077d0ac13fc909d3f3649639'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'24fc3b06a4d2e17347445ce329d77f2adafb2b36ebc87ed81aed8f1bca0cc0a5'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec1d64b28f3540a85267b12c3fcf1d7fcad36267df30c378971008cff76d1f23'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'6bb6d5fcdf7c1df521268d172caedf6f54c2a75372ab61f6590e610cf511f799'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b60af426be8ef47f5e82220969ab8746b3fb1d0a0c510bf2d82827f5ae7a0801'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'610a4c5ca7c4f92f63d91f2f4357f331a0adbac47e8869300a7c03d9eb7a41c6'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1656fa034588d179d581e9681e10d835c5cd7dd116b1d022d29a6128aaed28b'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'0e727a967824e1a1eeb4517385ceaa1155bca950e422464743d91755213f8fb5'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99140c77faff04960944618ddedc6ef5877a8736d73a48a4c842be339885877'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'9f50a19b03aaf1c22447af5a63b92a24e8b1fd8cb0fb6861230d1775eebb4c59'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4f4d806ec3c652ee99a62c1a50b6e0b8319c7afee6ae4fcfdbb0fc3726e05d'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'b243856ec5e4961ce581a67c4d73eeaa8d5dd6bbaac74711198e84074070f8c1'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b221b989d7bf8a617c6a036f2f0957d987ebabcf1444fc3d48da66175c0902a8'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'6e15d15bba5c35c28a313f2a426ac309bed6865a23eb2631ecd56af3e6790cff'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e85105c6bdfd18d42b06d7b264774b545855ff705a5660284989d92008a9b2b8'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'7f144363227c60be1a1d9193ce60a98ed34e0cd558745d09d82e12467339a734'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'181f664e43500c2a0431940c5239bf62dd94945878efc473c86d16397c2cb657'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'fb45d345e12253e826be18d795ca7bc7a26e7fae2b7ef21a117dbeea66685dbf'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1adc808f936f75f6ab728c9d53aab5b7c648a551b04873ebb0cff82419eb7891'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'bf9f3cc63511bae077230a580de6f3db34a3698cd56ee518fbb7c691f2b489f9'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681e3d0de8424d0130025c0f22555a3d87dbdf03439b31410af6b565d7f690a0'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'f238dbfd92f30c5b11f5d2d12c97552a1eda5860b2450ada00c8d084f05d6fda'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45ed21e1363b85812fc945656a2c717cde533ab12e942f8600f8048b52142903'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'7958a828ef2fcea92d1fffd90ae892c4aa95996c49cab2ffeb8a4d1dd0a0fa9e'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc79fc76527476e94afb8905b59eb268b32693e71665d96bf0fb4fbfe2e95ad'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'1e692b97c3d51731e3f75374f9f385fc8cfbac182973541a4a5c0aa1176a9db8'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3188002ca88a498a3eabbe88eb57ecac8689cf2e8ef9c32dd3a62f40e74e74f8'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'192b3693fa7a83be9b3e3f129ff4dd104f09377006ced58d167d5d3d40b5c973'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d0a44c914c08bd347a65f1d67b5fdc9fd7a28573f863f43940f494fa91fa91'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'46a4bfa3300b8af2e1d356b065a3eac908babd48a83619b85c90c70aab9df085'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'531e7603ccc4054263ec0e8b37ce2bd111a8711ef972ab5f136791f225b56e0e'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'f72d93290364562221fa0789e0b968dc71a9f010568ee306f839983f57cb1df6'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4051c2f1bda2f4e4d54b046db8f5cd570d373dfad38629ca2095006649f6ba6'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'3bb07ba760d668fdf6039d7faee08b3a28097ba62a80b856fcf8dce6dd42fca2'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e03b7b5b1b9fcdae2d4f456b70a92557d638fd48b3b6aa1755df6ebad972424f'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'c8c8eb0d878206dfa128e19ff93f3899bdebdee56b2642dd2bc48e3cf79ecdfd'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daaea7507ff4c9ad85389dabf8153b7171b463b8dd574359f79e932b37b21a62'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'c73bff8fdcfc4bab2661f8ee004e2cb523b948b69e1f49b571a794bc2ef95dd2'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd80b18af7b9a2b002622969bb22ab871448277508143bde5d47020b7535def3'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'54418532dc39356216f464cd433cc02f6b42ea0acc293bf5d81c7502abbf1cec'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c34d705dd16da7e2ed29ba6b630ce5fe657e7ba9ac6962c4ff556bf868a886'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'acc069e02080c3f255d32de0457a7d3bb07fa12fa517179aa361e0be89c62c81'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30cb7de7be7b1f184153935ac3134826b7c30b81d1461dccfc83604fa04f0ba0'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'b270cdb32937d04493f4c18f31aa15f68c07bbfedab331988d7b2754bf563440'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d6549b76a9601d58148004750295fba1e68ff371a5344e4c95aa6b3a6c9df8f'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'a80169089a7ca50b0255cac3cabf0d97ebbd452fb4cff34444d53a1c3b4218a8'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e1bcb6e422ec33980ea1458ddb1adb6991d8c867dbfae97416f1777b5454c21'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'1cf0da5ca09e0a452f39df501aae6a727171d8bdb5af652c323d108f379d9087'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85396fc6218e61e7b1792820b07df7fe447da0f2d7924512a8bfc263f50d99f6'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'ec7df94ff98be7a1dbfe4cd8bc137a158a08a5379eae67afb5a876094e3e4cd9'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b991647530b659c3d4b7264f5282977b563adc2237ddd494ba053101cef189f3'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bc24a916e0b1aec90aab6f8848686423b9653faf43e0fd7795475682ab499f52'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ece75f98ca324b5252989d47d6d564208558684179d5e53fcd1dff264282480'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'a4755b8411931ec5f5b8c04564599e8af8d006bcfb450fcf8d7f1f25ace29744'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0ac43de4094c637cfd002c44331dd98aa620d3ba92ac6cb770e3f8a8075881'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'94e57bb7f6ab496ede1b25be3c4b2b2c427733d4bae1527a4872110d6d27a6c1'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01ecd6939d375d02d2014490b435ea693d62384c82b8fd2ecdff0b01ae05c316'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'93151de0adbd7f1bea046032b63e2b077a1844e745d6a5cdee49f958d7ecc3e4'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf042801af10445725f5b52ffeaf01df256d010ff00ddcd38c3d0dea056b6e98'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'c30622641f4e29f9b6c12433c2e64a29a2c339b856a0d13ca915513751d15065'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae56933006427c812e36fd69437f2cc68e1a3254c14d87843a9808a340ad95e4'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'114ac73448a6f1d0cbacb72afbb55ee46eaac5e39cca6097ddb509fdb543de18'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e118d56025ed984310e5c7efa12d09de71ad9cd3fa2e692584c7f541ed31c648'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'9336378df450bee66673dbf20e1e6b1665f872eb6e9e62b292090eaad6d382d0'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0526179e82e8df8450551c4067f1ae4a54a0ba48b4ef537a929a4f9dd8da2dc4'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'c88d4f7a193785f7e8ebfe9c040d5ed95dbcc839056779d264c54e446a32f8f5'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d47a8669860cacfdcfaace43ce9f297de53086a597da9d730aa7c06ab2638bc'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'330c1ce550ba202d41777db5100b56946ea3be787a6426c36a4451bfd3f2e43f'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c168bca18241eeb72db92aadbc91682be9266a5759c7d31b7aec8cc4ca54dc98'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'f2fe98a7f10d91fc9f72ed94e0f560558006cface5738c19177d77a4b5a27443'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09fc14cd9feea89f00751341ba7349e06dcf8d664e1b9e02b4f9f4ffccf79174'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'0100a18b64e8cd35f603f6a18e74f795149fd336ebe33554436951107ac45b7b'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b520a9ff53ccad57de4cf6af9d6d0d0d0b51ff94df26b698c46c86e4c72c4b8'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'5a699d71510d6694ebcb11c78ee0e3b22e447ecd1919e28a2c39bcab0e2d1256'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bde0146fbbb6ddf6b945d43efeda50ca210a172a907aa1a51c31e46a5c5ab23'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'6b1375aab1839d579cbe2d8ccaf864416c17c079394c8847bf0f5037980835ce'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e75eda0064c4991db7ba311f07170ff63afc11bcb14c27e5e041351b4bc66263'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'71c9ad1de3334fff8c0eed78bf096f68ce9b3c6787615e0d6ae12b77a5baab09'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c7e933157bc4d0ad2ca1c305e9012e89e107e593798d83b5d3dce2a07741986'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'52bbb88f0b97ad86e4c8d1ff4eb8b4b16dc2602e70d4eff16063b5aa1838a846'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2468391fe217cdc4f95c321cbf71115d8edbecf8316f44872d1c299dd36fb6'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'9d907104992ec183e10e1e878e6e56b5621267ad80a0238c73db6613f37b25dc'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97898323d7654f11367c0540d4093865954620c7525c5db3c6a66b2143dd606c'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'d3d762b7c291051089b9ff27270b4639f96e8335a406eec7d244d5757a7ea097'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a3a448d89ff4ce03f3c642d9c4c660f3f701f814be19e0cc964fe5487ea35b'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'a7f72d7475b3dabff21a96bec4ae01ae2ffed010120e077ac2325f3097530e9a'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b983ac36e4316361a8919e5aa657a40626e356103a0b8935f639a68d54f16eca'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'9f1bb72db7e1fbdd34f9112ce9b4916fb15c8340639d18f9187f1ebc3636556e'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'748d7c89983fca160b184bce63d8626c58738e2db250f644133a95b837cc26b7'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c713031f45363a2ff39dd951f7f2add373b143f0be24bf844fb1c03ac5e88701'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd88ec4b4479f1fd61c97b22062bac5ef31fe8c014c74bfb3566a47614fafc8a'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'e2f071713e6a61fedda8e084c812f2f6173f2c376f485ded800980e5a3eaf0e5'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f131ff38d1468514a721fa48739755a4b81b05b5aa8fd8bcf5bbdfa019e5ab9'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'e5d8fcb1247a33a746a4d3788da7e6c1f619249f423eead6dd5bf1ff7aff9485'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33672a9ddb29a82394a84653c306cad74232d8ee456e417fcc1a47cb3556db8'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'f249da94eba5648c70aef21a7054948238597f19edea85b291f41f8f3dd72c0d'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'824cf37c68956bf766613197e915d5581107fc05ee60cc4a36a3b8384ff2b56f'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'263b6f743fd1044fa59c071708d30d5f9740a1b62773d461eff0ee41627d2b69'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e616adf0ee6da393eb81ec6f747058a4fabdbc58ebbd275a243853be81515aab'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'71ca175e090010878353f8c1a1fbdba1334c37f1818cc39253e836832071b96e'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a330d3d60042ba7e7533a8c957bc1bd96684214f4002739e9ae5a22ba9d4113'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'54d887f9de5537122b2cedfe5127788eb26615487967a61c4956a5d0e54b9c97'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77cdc2779c689d97e1ee112e019fc1efc79e079c16e4808664311762f562c15'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'d374e050214c05569077fd14f4b111adbbf16c4598bc1513e94c0967f3e71b20'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cce0dc0f47097b150e9c682fd021eb7695d6b3251e0536672ceddd8686daa5c'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'518d89dbcc26ce0a6a08a56b547a9084a4783a07b1951ba4d5fac5f983cf305e'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94e139383e64eb5bda514ac2f9f1bc07017e38761cd344b1e98581e07d4afc90'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'b167de1c3eacb4de5d76bdc18b06539e31e3ce7580f868fc453ad09e6e182dbb'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4da3f04378ab20c0ecc1f9fc72bffe1626f0405ed0019f49db99b12784692411'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'5dd61e68a7d1eac576e1c473c3cfb44ced787321d38a45084e1bc2016fc7a60d'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38706aad91eef7fc2468455e1f43e0b55693dc694212e360709e16c58dc6224f'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'c674c34e3da1740ddba7475f238f9fa47c8dd480beb9abbd1677c03f28672e5c'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6a76a52e1a1953d0d555025bc54e7013184baa63b823843d36b148704f29be'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'f2d546245621981e88036a6099433a515e8187421af82c21ee1d3591ae83f7c9'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adac8c69e0723369cbe9eb31b2e9e08492b1a4ec53a96c9a9b2914c78a27eba7'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'fb4a5295d1d516b6ea790fba304a24170fd288d738309ee2c8702819f10adc11'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ed6f4a4f7649b98cddcdf1af25c71fc4f3aaa53788df3536093f5687e20050'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'13ea9e672f41da2f6f0ff158097ad1ba829af5517c9bc9f76ad2baa7b0660edd'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01607be5c6e45bf3aa1eae5c075eaf4c805ae25f9d5a950a1015786059afafe'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'07747c3ed359e79cb40ca544bd385eb6df5a5965380337a3530a6568471dd332'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'216d8e391633ef3733e692df45475fb5b27386ad5cb34cec1b356fbaa24911fc'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'aab759797326603a13741c1000e64600afe2de9fdb376478c9475e8cfcb7b662'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1968376948cd2eb0649e3134778a942a417660aa1ecd12610f9f0060c8803f6'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'4dada71c5f0ea8e5c1b500618669786139c1c347a29bcea215e2fe15c76493e4'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83b68c33080ac8180bad432d60d0ed3637bc68b22ddf508797dd64965a96c155'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'36be6deb89fba28dbf50708b50ab29fe0e01160cf7bdd4b74d72bd4da16f5468'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f7f159e7dc425a00214fbbdc0c3874c95614702ff6e47412046dc7c360cc6f2'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'90dce01ca614927c685ee8a6cf24ad078ca39bf1f5cda756aa6914fb436e0a49'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f63150baca29f5ded753979c2791b70d789884b1bf3c4fb073a973ffdc6c48'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'76ade670908cb383d6ff80f9b47a4c2267f58a331ed4582967271cb824e60842'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e71117419b1681092f5f405b4b9fe1f9a24aaaa82a841e878f7057d4f446068'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'b7661cc2ded026bef4558fb178ebe55600684dcf5106dc7713d77a416694fed1'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb6ce7e3dcec83d1ec9e659296d8b781512bef496af7ba672f5c68e168133da'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'3552429b89c75117d6714c266c028ee66cfdd768eb9672419d665de92c4839ef'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8bf9be24a11ed59a3469b322b19c84cdb7e5fc1b1de641c253802e4f6d78928b'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'c248bda6c4ee39e2bafb2f4d8ae0fe58eeef6ddc31cebfc7166a778d862c223a'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'8fd6546e8bf24c405d0a92855c346b83f789f34344942b696438e35606532b66'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f1cbf733e8fcd6cb341433dc2aa5f5257f42f2ae23bfd47857f8e10eadb563a'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'fbf06cc8aacec9ab54a213caeb55a6e0d7016630fdcf9b6818e9dc2fc646d709'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02b89778d8fcf080d067d09847c0707f1bc53e1631cbbb5d6fcaa0d5aa86e77'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'fbb925da42f0d4f7c64e29442c99e9e51aa57031b6bd41422b05ec5dffd593de'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34d0ba5da3624267139babf928deb1f3ed7329bc373ba0c4bd0689f658d13f23'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'ea2282f02f634ece782504b5bb604a997f40077b4eee5b90f38e3d189b48a8ed'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d550656bffdbc24fbeaba8b153c278ae2f624d76ec1f33ec3f43432ba8f33181'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'3dc1775067b68aa5d6fc649ef1af7f9a35d7b3db051e40a01c88ce032574d4e6'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'305da3bfbc1abc58ee9079462269c165d327f9b6935ae86eec88365b9128685b'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'11b724ad6288957a442dd17df42f2eb00ac7eb4128bc046e1a2f0a388349522c'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'270bdf88cd111e36afd8ff30d4dabc023baf3665090bca74887f75671b4f2ffa'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'29ec6690e81e6bbc594237018cc4a72d4c5b6db6f9d0277019f1223a4b00574c'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e26d4bb4bc900b93dc0190df5828a4f035a3df50721e39bae521e02770ea4d'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'9bc671b3fbe3368e2b5e6645b22551492110aa22725e5b041c0ba1ca1d629ad8'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a88dcfe7e53ae6ccf01f93828129a2a37f0a05cc65be7b8ef711acebb032ea63'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'f37aa7c2e3926ad5b86a227eae09d92c1e6188d632bd852e1824937915d69d37'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd3504293046b412c1c0a53157a8542228cf7cbee6f33e8e45dc4356f888bbb6'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'517eac6e36b5a71fd3f3f128e18252751b639d40d8e96804f5e204a3d9cba88a'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681748ffb4c68e1182c2472be54bccf5f0902cf72401fd5b228663b370dda23d'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'5e22a8149df345864b2428238c43af563d71fbf7b482873f47f808cd5fca44a9'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b45098f14089224f4b9ab2031a87802d276f8ab983e52f3a6878ed7bf74bcaba'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'3bb640315bbd7be97819e2d17d11acd06c66d8eaa7bd9850cc9b5de572c8ccee'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38bb437449e8d0fd0456daa6ec647c69d7273bc8460e49a06a801b107f17ef6'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'d36f9c194ea5e391006ecb29856645a3fc5cfe5ffa8296bd08d18489e730f62d'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d9b674846ccd4f7a12266ff5d96ec6acac05e5456b13e4582210c8159614be'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'4ddf6f063adc90b43265acd2403a3570480b7eeb182331f6503d110e7f15f358'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6abdc388e279f73e6f9b7e6bd64158c2875d886bb6545365862627441cf0919d'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'bc809c03c7ef6cad2a617bce70004e4b509a8c07efc17e99553e342c872edab3'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eeee7a3392333b95498f1fd1740e2ac579f107644bea53edd164e22fe3ddca'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'7f95a465688d08bb36f6ca61cffec5ea47298a5b5d958c931dbc10dee34ae6b4'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9481c1065522675ac2cbb4a12c29f63cffb5de735a8561d4c63ece99e6c0e744'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'16d1a9b4d7077ecbb1b23ab3d7e9441f15370890fe58ef6937de8983008b07b5'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cf82d2bcfedfedac9effe35c45fcb8d5210009641546f95a64e757202eb626d'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'213b6c42ca56a784f3acdb55cc50a8f3888976bf3cfcffdc56b6757266bde69c'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a99e309cdd777bfd7b0dbcdcbb93013c8928cf10e3c8aac86244d696dfa7c1'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'ecd1a0cfa57676d9d58b7c3b2c04612456b0a39d6f0c8aa4ebfe5ab399520d68'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e97c71c39fbcd1319cb18280be6b74ba3e22a78b2a3f31b68956a6bffd6c163'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5294797a7851723febbc76243d2fc4ce9080c319966bef8f2ce937190f3ea823'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05df71745a1655303e0ff212cad64c28e76bd1433f0c4af9f867c6d05791d59c'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'b13975a3d267101079dd038875bcb3acacca87d4ac21b3b8e54f8b2e4adac40a'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9938ab64ecc4d162574f15e062676069e994e7784b9ec941f666a0e2632dd7d5'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'4c15486251b2be01f137eb2a34b6e0421f3e0b4f63dae72ce000b3946334291b'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2491a4739f6e967334f6e194c0290436f66446263008b3a90016edd42cf0830'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'15cc20e59f9d7f96c7774a9fa81961613b3a105a1e71fd41f193c94d829f7969'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'982b98aa63d421c5b3afdbd471e7076efd9166d81cb5449d9e69a0512b893f9d'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'bbe47db1421be84a6fe459023ee5e5aa467abc02ebca6a601b4154a127da1194'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0310145c65681353c682b203b117f8250905855b20a960abffb6a3f35365b496'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'5134f39c965743c52dd6652a013b077f382ca0288b36fd1dd3572c65bb0c3f99'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ad525eea308410cd8eaa67e80cb93ef1310b5507e1996d94d88be8ab67eec60'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'f96a87ae6e59f979401517f91f4a446bece4f6ad1930e87c1cb12262d8adf173'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6dd1e77a4be40c3f7ffe8dce191f04cbce5a9f36092a62520223cec0230ec26'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'c389b4188f809f7d35366d00ed99f91c212125ea3a207ae80c4114fb75ec6c78'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'139f80b6b823d65722178f739feb616f9adb27f5e2bc05da65268fe6d03b44a4'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'bf617581dff1968513109c6c0f9132ecd3b55fc4115141f3253d0b1580e13464'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a4a9ef8cef738380f18d366962f130158761ce4237c0bb02b208a601d8d7d38'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'0f0f8f7b51c190f29c37c238390b29e12a42712283d697a195a279614ab0ab50'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9334c2d24384ea206df7fc18ad204f14d6dc84ee796fcc23147bce2dc7627d64'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'4e45dbed85da346e512a1bae0f9d1c5a6d0aa7011d4470caa3a6e8cf609b475d'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'541a0f81a94821d03daddb9c0b65f982fbcfdbbe81e9be074b2f188f4a19b717'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'ea1f34fb4a7ec991d4a7d18e390a15a6151726e6d57dbc16b69db63f8a141438'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2bbae120ac1bfa99c32d3939d6cf10cb0035c7ffa8ca367acb1df6ad6ce30af'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'5761842b1418b13bfab3c58d7dadf368372f86bd4151b8b6aa30e62335d90dbb'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b61b23ab21085162858e61497922b881e69e910f6d8138b876b6c3fdf31babbd'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'b813b87305330b7e338f6d78419e94d6f645f5dffc2e4415671b9b87df8ca591'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfc8dbaab4ba0d0b14ca22da88dfe8ef3c28547462bb4b0ebd6c39778df4701c'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'19642c4665e260e3a6eb35bee9989f3f2a1d253f15090638d97f4513033f5f11'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8d5863932854d27c0629804b003642789cfd48b1606844a36bad5f926c228d4'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'8d95b8dcb42a55a87703f1eefaadf00ee4c0f767bd3222b85353ec36195a46ba'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b44b0885a79fd5027637f7bdbd37d3118774a6814463a59969960b75d138fe7'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'7ff15de7c051a5d249a563ad5569b478d677f2808e8492d62876f640048698c3'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7723c78e28fc8902e52b23991429554555050b90596d599b2d4bb4299fa9c9b'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'b897f9372a4da05fe3cc7817ea3994206755e74446d0836b1117f68057247109'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f39e3b50231f34299b9db8306a540d754eba33f373311900cf29020289d6c642'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'97c4831d277599cb05cb8bb76743e9d18786ae5ac31304bf8389bb9a084d8ba6'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'326d91c693532ea92e93c1647c6a1d28fb4cc7600ea9e035ddddb6393efacbc9'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'134ea049679482d2700ae2c762af99a75747edde8941464ae9f3acf047131bde'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229c9b2ed3fe2e45dd017ca9dd4029d4711891f3d66620ef37bcc8e319290bfd'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'40c881faff08b45d9635c40c6846eed10862a9f35f1a9348ff95ed7d308b04b4'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e17058835dd7c02733b540a162242ea204012fc4e4a9799fb573b4a1060746'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'1799e589fdf41597d83a724bf8c13954e07064138dc3c51702e84f25712e7bd7'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16b67ffd7e42ea9a526a02820f28a16e8e15ad4b1d1134dd66167d2e96d78f1'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'ffe8c5328d1469081a123958b77fc1670c3fb0ba78b33894ea4bd062a12771d1'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a2569f6005b0d0825ff9ad34cff42a30b61033ad30702ed1e5ae7e33aee89a'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'0ac33c97930216c96c8a2b6434953d09f899ab798cb12fde560349187300ecd3'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4775b66404be90e962efb7e45a7a39740b6e7a081775b9e4d0cde5668bb9630f'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'52b82213fc6073cef5ff0ce68f907a86bb3361f649e5cafb865aedbfa2f9e764'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e373ceefcaf190ca98a1e356e8c52829d6f834e22db838c8602329aed1fc2b1'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'e7c5a2f81056ed59b7f514c1a6256cb2d78abc7c7961f04ab784bd9d59ea147a'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f20b4f9b1cade436502ef425bc5250aee9965840f5e1111f1ad74894149e3e0'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'d636aa4cbaa0a913ffa8c9b63a9063458d956d2e3f8d22ce85a65bbae99b0a52'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89adf92b0319a20d12b414cfb50fd34acb12258b7a9fa28d398db6b445ed3697'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'2c0475e90d958b160c4d69ed73402bcdfe53fba54d90a9eef10aeefdfa27c65f'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdecfb2442bcd6c7dada29f20af13cb5b4279cd24cfecfc841ad2cff8d877b9a'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'716a1c547218d205487f3228fe25cadaa41804781912b36ef864dab452c6b385'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0fdabfe03e6d03116ef81834e26a697235a82021f128e96239d15dc2550b82'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'e89771096b466ca3d2557ff3fb7cb4997cce0fa7a3965e04b4b62169a16ed700'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3957d3fffba256e2b8fb18084ffcfa8b0d19a6fe3ae22f431041b4c6487a35e'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'543da5bfe50d579e2ed969d4215d772038e7f42eb75c58b919835c9184325718'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e03c6d6a4028f9fb44466c6bde17e3055ed4fbd23934eac31fa40322f00b7ef'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'58bcbd56ebb5b170a9b5f8500453bca766fe272b4ececd37c41678e61ccfc354'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccea7c078b656323e3335cae52518b15144fab92eed02d9080ac3542e9145874'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'1cd2faf548caecb3ed1d0a27cf99b841424513de629f343daaa772bc5d2062cf'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d98708e7dcdcb55607ab134f8190d89562679a18b09882db23f51630e8eb96ef'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'2a6313bb5deca6a35bdd8b8b256cc64257ff7783a26ac394887444735d2336d6'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff353a546c6c53b4cad0bf5bf220a0b62202958986f2c49f6ba670ad6260fbb1'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'4063fc4e68dd6d16513fceaafbf23d0793bb6066834556b12d664b7b8c1af708'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2876dae858af5a4982820190b06596a2255fc2c5ea2794537f095f3547e8f64'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'5fbf7cbedce8457392fe72ea514fca93f373dbc13c9702b1fed3821ed534f1c3'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43261421b432d2c3ae528cd6655877088599b8620519785b633bf5936995d8aa'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'b16880e10b54dd0f2f719981c2596ced58bf4063c9d2fe06ca8d3f5a3bbeb378'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87290390dcaf700664c8355519f173dbc9dafbc656336632e51c1ba67d6e3947'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'1d63d67c6aab4739310da33b2350e9e2f99f73f7744c37fa867895494a12a500'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e72aa1fe7088c82c936adfeb3b6ae18c2fa70091326c2520dae1f4a7d31ab444'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bb6c94ddacc9ddc305bd92fa9e86492f2baeeb7e338ee4b564213b4d6ad5cf5e'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d8ecfd2c5d2538df2bbbdac6125885b9155d2b4457e61f5be7b8313d8ceb017'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'8a65bfb7eec451e09722d5e3df78f393bd85fb7b8a5db70855d45d351e5c2b49'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4de089849053282aeeb9a397f0431cc8921663fff6086f16ef9696ce7ba962e'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'7da58ad679446bc7ca8ea01c02995f115501b38e5ac3a13aa78f676c0c83d1e9'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9ab4acf537731a8ae4fb021f04e898bc3a1602462a86ff76ba77642d19485f'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'e5f0d33930523b54ba4ffef5d88816e7833a9ef1082c806d97c4012a78f7cd57'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96fea2eb8f886a0db4c16c0163080f91702cc7279862f90997afc1d9adc48875'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'4736384b3d36d482a5a43477b06813d80a5ca91f013eaf6338464d1db1eb6031'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb6ae0755c7ebe2ced5d28f0064702945cc001e244bfdc321af99ebfbe9a5851'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'ea4d3d3d285db21642be8a46d000c0f9b68780d7be2c15a59934213c9a986299'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2907e5825ec2fce47370172a8893a7fbf5821baf62d50510ebfcf705fe61d50'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'a0d9c58d70e7d68aeea696d23933a108164db24e888c94b15a5878e9933bb316'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53973aa8e68dbdc5f3e8f80b0bf5e9fed61e7209ce8fc6a48f16b2d281cb180e'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'1fb5d4ee184f04da658efb21c8d257d94dcc62a91e9fc639fec7af31a5e0db7f'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6738fa455c4b1c2aa35223fde443a51ece71c7e361d403f836efc26ccffa9503'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'60f32977b417204dfe2915d0d0dc39e76a81a1e7d9f342e96812df4a9a92cf76'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c479b21695c099ec240df9c8db1a70a856f17147dd789b54096fd39f0b9dc83'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'1f1ad9abe7f595a7fd055bbc8cb56db305fee989b28cb168fb84478937309ec9'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445f61669d7947659ea24ea88ead2eed1a6ec4ab826d5762c03473e13c05f555'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'aa18da67112d88fd1b06a25ac614c7293a94d0236024f717058bf720593b6976'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0b35b8820c8f792f73eca9b14675291ef52d5f03de7904ffd947de3b8ade3ba'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e35d096172c2d5955d07ac900b67e755163905934f7ba93acef99ecd212b09d4'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8b5ae2b35bb3a8a09f5075e9801d19deb5bdb83de272adf4dcd4ef86af8ba8d'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'b9aa5b3ccf4f8475e9bfe9959bc721eb9f1947d46f205e684e26d8add0e5a10d'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c103d5311491544af16aa4c844598e94df7b9389223c690c4648fa6637cd5c5'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'cdee0aa0fbc06d8f60cfd688986111f9d3e3ea53e2cbf58d699d28085167e39a'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa28590c6c407fa3e5b43adcd65665cd1ec7f87948f0a518066d69aa03034c6'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'ccaa86816e131b91348594f57f26ffbc95b62c18b9ad6ca562fc7335f1afb16f'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2aef97441eba5408a36b945a529f9cbc3946264dad827b01f7da1d4351da24e'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b5da484f340f552dfb64cced02de3b50c5f3e7ddc141c673e2bff8a17939d0ba'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65e9847e048c84044b9167821e963ddfe25a29769262435a770953ff15df9031'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'3933beef3a84436eee5179bf55dfb7471fc4d46a85b5eff7969aa25a5727e4b4'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a44bb2b7008a931c031c19a1fc82a08a9539c0211802f8cc20ffb6053174ee'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'a59493c7d91dbd14145b3abac9243b4aa9845831e3f336f325f68faaaf7f3190'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33342472cd56729de1d1556aad34c7e872c6542fba8f52d59d355279f548d18f'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'b308a6260ca71fedd22768b1a47ae0eb4086610e0ec2a54dd3ab0073bedd60a2'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28b961dab86048b6af3638d10c06201fdcbcf6afd916daea6c60dbae9292ee9c'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'af7dbd5fbffc89aa05fbc0458e29b3d2a022bfd2163996c24097ff69e707cf81'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d671fbda645c6938cdcd9e5d56d000c8a046d8c7a43e576123ed07d453a8df10'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'ff31e694a49a4448c9d9c3f97583bb42b1d497e747eb258001e3d74dd6955276'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'200a1842089b98b40fd57a7d9128ba3ab68f1aa9b0d4f1438799ff66d5b6d8fb'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'d73d18d34ca610e663c38dc80b7d072e91048b9660d7db85e3d624f2459c2a3d'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'993eabb9257dd2d112c750c98eaa69425186bfe3c3efa842929be5f38e88f085'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d399788ba15e76a7e0e2ebf99ff8ce8e71d88fa6445518786b00dca046ae7618'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e62f2b6a6c1528a3ef02a5f6fa6d06c241033c56ca27f74d1aae9156983c1165'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'be0d7bc05a832eae16e6f41b8ac32ef52f09e94cbf372c17b4ada2f3d7b2446b'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eda5034aa623b9149f7c7ebd4122013e6a203f042ce496dd938aa59ee8ec6cab'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'370c20f3349c42120ee231b39039a71bf1820ce164cf8152ef36decc8a8a4617'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'863231fc148004607e1da7b303f280184e89c3d1b9ccc71cdd339959b3be2a4e'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'e943bc9af4a40264f1afbcf70fe6779ec7b6a0f2046449b2a847ddac835a6403'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91cceaae6c08ca86c98abf4d954bdd8f643f8b35f5428d9ab973b1e697c8a6a6'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'a07f1e9ba56ece555b3f29ef35c348d730737e5d96958e5d95999b9905831f6d'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d31a4d715857a35544f6fc3a352f555d3d0ea7daf1855b9b6708ef7f736ec794'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'ea5c3b40e7b5d93e5da5de367e0af56773056545aa60633c6e36800f0dcd96b9'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5d5717fd363f3451b82a9a7f7f643f8bdefad4e79ac67fa3df7053760fda7b6'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ea03ffefcf40e632608984fc2cef37fbcbaf89a2e614cac1ba1f17bf79ce6fec'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cf66eda11e23946f744f9b1a09af8cad2ceb299c46f7e2cc1afd6e1cb1f5a22'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'37ce89772f5808efc68143044d362015314813d3fc684e9625b03a7b87393dd7'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad53dc18cff962a730d7339c35871db071d914e26cf2fbb38db853861ca1c41a'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'2808db9efec5e8530fe031ac849afefc3e99db1419e02dddfe0c190481b05a8b'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14e2318e23eee89e361d1281e9501d360537d17784bcd692f7f0970dc6823ac7'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'5372efd90e6137bf201eb397dc1f11221e253b9e96ffe052a82b7a7284218ca1'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965c7dd11479bb1b496232ac0a1717c36fda46eebb0aa77ff451988bf0c11204'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'9342611f021c747cd2c6f68f1289167c1b51ce3c1678c41fbe51960a0813b0e8'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'353103ecd077c4a1e5f3022a2dd0efe37160af772553351ca3935917737fc06e'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'493109fa8e62034d445b416d39bf6077fb36ccecdd24d15a434df7a7ff909058'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb95ace14d3869214c4434251688283145c45cdeb82ceabdaf17963993f3e44c'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'2c621bd77f539913d38c9ffab5c05822b8cb8c52c9a510ddcddf23fa9c584fd1'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9fd16e884d63116ffe7628e4ee22ef8e70cd338a6db20eea08d4453b350aa7'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'09c5cfb050ea97a0855a1c0c2c6e0f0f516ef037828fc0d66cef654bebbffd0f'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cea766c35d0f5e36261cb714db54b4527d7875b7b0e7a6287971160bed4d6a28'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'d4f3e4697f51f5747d3f73c33aca8fc43af15e8b449b1e2372ac933ea505d860'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'909747d8008563689cbc5c604387c5b683e9b0a4f3a64e190fcad9d6045fd969'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'24a5b25debee05cf6941e88b9ba7d50b9107dc3f71d132d4e2962f213a164b92'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2a96fae7a65fa85108d9750deb87c7a6b640a27d35bb82e86153c6acd31be5'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'0724f578e3a94c582700f65b09d2e857cfc36fb73306a0edb6e51cae340589df'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d6b43d16d755ee78bc94e1330aa57995d4a0b6eb6c12ba26434b483130157ec'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'653fa20b9e1699e7a451e5e1b8061c2a7d3b8262460adbf5b783e43c2a592c83'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09918c6ed105c0d4ad6990f977d976e885ec07e6df035589d865a9f21e4b81db'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'af47ce1241dc92aa231f52003b462125352327a6d56ac994f4c012d4d64b40d2'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f973608672ef63593eee449796c5fbb60d35da9df0d4d9b9c673b40838cdb65'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'013734315591dbe33f60ac8df22148b2371d6b50cc1dd2812ac7ad96fa208dcb'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'071953092251b19378ab4b5c3d8cc92a801083d752e5e91e5a727ce70c24703b'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'5fe024e66b205ef122519ab25abbc271809376555cb0479bd328fce79815eea6'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517c5ec8e4417c74727fbbe780d0ebe410ec3cb24122169c33e834570ae236b5'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'0d24adc409fd1518c4ecd02ed837509f9577d93838b3874d84e8491117d706b7'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5f9f2fc9ef460b1cb9a3879e84ee60f822b0c68db5308c8a9f84e1934bd3511'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'a832d8e01378035069341e07d6ab1ab5decfad3b8ac8d10499906e7f10072111'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a331a01f4df0399584414b72dab6f992b357cce8dcf0e688acd5e088a68a83c'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'4866ae40895021dfae3c073eb2cfed5f266c9782b8485163ae940ed10c39d230'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e775737f252c7932eaec9007a107d3194011bf546b3fb6753f60d918f3466db9'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'502eadea409e3ca0850e696d5b78bd2b88ccdfaca3a0ff18eed799536d337c27'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a37d3a819297967913953070a438581538a259699dfcfb3f22e1471bae892932'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'d83b16a3aa11b5f023f3b43dc1adf83fe1a22f401e57758be3c3d99db6213398'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b335d4ec59683dc42ce2c233524d6c9bdd69b7ec7ce6d981cf9d38ce6368ab22'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'1c80a5e36bb0c1dc9354ba9341a28a32422d2d212a9c6d1f917c60a553eaad9d'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0df766e753f82f5ef9aad93cd39be3c20970aa89e0a48374517e94b95283f6d'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'3df25fdb671877206e171394a2e310a1dd25849b9a3d82f8fd051085642ee5e8'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d1af40dfc9df88bee074bedc42951765560b51845f6a142bc9302304b50ff7'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'de4a780b3503157fb4c8d34bcf1fed856bac97969eefc64d0bddc8743b3b8f43'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f995518c636366fa35deb195b1ad2e5f0e29c722411c6caeb8051022c7d3753'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'1a707c0c15109a7c227038d74d62cc9e8a4461a35e645f3508eb2ba8aa08461d'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e298947bae808453ec73aeb6c3eb345794351a73f7395828520d4c05a78d85'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'b8a283285cd7db83a6f3461dbf0cf7aa311290dd9132568e24fd50ac39e85ab9'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cef71febe3acfc5f2691fc167a63d2c250a6266e6fd8e43e11997540e946f'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'651d433ce5db1b054eb760ac4f57215a5b53109fe39c9771297ba865bf009555'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81261106ad2f7a2b7e89c949bcb1a36f04d4405872ac04f6905293b611a2405e'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'d525120cae059af7feaad95c11e9bb8731de6e4130c7ef49b74b3466cc4fea61'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627278a94eb95c50c32794c72e2965c423261e10af1a6a8efec5004085b63987'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'7c6bf4bc339109a86b66cfa827fca76675eed5f0e5881c1e5fc7b311f2c2cb2f'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e163d9382de1cff5f0f7142f992d1854b8496d63abb5873df9ebb529ff499bec'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'53eba09774ebf6e07459e83408598d0a24d903e8f3ed71cce68406cbda89984f'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c14329fc25d49473ffaeeded8c583cfe2709c6d11d8edc26c5946a3b60d5ffed'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'a647d27d8ccbb484542f309afbefeba198b6b3cc62ea44676ad2b002c961aacd'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92fe554f3f981e577e2ce4a7bd58d9653b0eca53f42018fe17f9306a65392f'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'3f67c00efc0236abf3f24c9011e6e85eadfcb901707f3a36d4d92c80e77e6d7e'); -INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64de25b63c8bde33b4039a7384ef59eb667ce2b26f0f66784972cb92001b1ac9'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":" e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0 2 "}',0,'NEW_TRANSACTION',NULL,'76dfdf330f906f5cc08d5a85a01c41e7584f080a77e42abee33055c3c24dea53'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','bded1aad045cb3fff4b198d73bdab694ea912ceb07e0d69eaad1e3750b87ef64'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','e8fb4c77bc2943cf8e7e86f335657a1e5cc7823c646f810441a78b90de42fa97'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'80bc197cc9f8b6d19ee8bf98d5aafa27af8b3fea0ee76cc4cc38734f20ce2607'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d60d2de99a9528b5d2c33a8db6744aea4a1bb25bb3dbad49d292b225cd7ad271'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2,"utxos_info":" ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0 2 "}',0,'NEW_TRANSACTION',NULL,'b57c5846cd488a2e09090ce9b886a69db27965b9dfd295c9eecb838200f45e75'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','e50454e88d472e8cb80d60ac3d8539392f638568067071f4222bcd9aa3d3e0f3'); +INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','0ab74b44dcd03786bb3edcfe075111045284366ff6b3862aa1c48ab4fc18255b'); +INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','6042afbdd3becdc6b33cc52c9524fd9c1a7df7a28f6d8c6918ed7b4d433a1d71'); +INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','2d015ef61c827fb9c779df6f70077ced290cbac42b5c4b70c833571daee7f8f3'); +INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','efb11bfcde923fc274c9aa642a439837111018e768c3bf64a875a31068f5f3d6'); +INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'ff6ae1a821eb27cbe1a32e38847a2a0d1142a75ffad86852fd4faebb8fb8de9f'); +INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67096ba415ae558b1e0f874d102e59857ec5f2b5961e41b8a3bf56b6b8bcd2d7'); +INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3,"utxos_info":" 8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0 2 "}',0,'NEW_TRANSACTION',NULL,'f2be5e6395fb55fc946914e0cdecf53966c654b8b350e13f6797a310044f3fd4'); +INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','b11ce8bd3c74182935409a45d5829f748e11a2cd1a4bffbc40465cc45ec8136e'); +INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','235fb355cade25d8c0fa6be12bfd6dd76fb394077d3dadee815136dcd36a6680'); +INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','76f4a448f27a3516c0f9e4908d8496ffa984908113a64e93fd49f57f0a81e0e6'); +INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e1fb93fa15f7f4631fc1a3d23d0bccee1a8b479f44cc9f6d6f31596cfb435968'); +INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','07237ee005ffa21011a46c14e08fe7b701a51a1c83dc8a1705be6955c9993766'); +INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'b8e9780d2fa251939cd570daca39aca6e152de5c5d0ccdfeb10cd132fc9a9c68'); +INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e804d3169038c014499c98c98b17c790e4d517ce51804d596445208adb10afd1'); +INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4,"utxos_info":" 197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0 2 "}',0,'NEW_TRANSACTION',NULL,'1abd8229c3cd2d7e6fd2a07cf847a8142265a07db6a6ceb7d29d6e3db7b23faf'); +INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','130569342dc1739c01d07fcdffb38bb5e94870f0bacf39954c110b785726c010'); +INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','cc5c95f24a3a059f3831b5fd0c0fd42a4269165aaa01d9a7e2fb487a2863caa7'); +INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_events":"creation","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','65e465d460aca5a2f45fc1312cbae63fb39b96613bd47c19c13bb49117989f07'); +INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','41f8c61d1335f3ce3d41251cbdec886ac2e20612210f7bdcf42eb1a88a89dbe1'); +INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','0d3b4ffba768f2049e965afc5ea17bfb209b8a44203a128eadbe96f7b68cf730'); +INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'f14ec5351505492551b724ad5a36af4657f366849e6296a683a2b5ad3a3e6383'); +INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09d954c8f663b3adb06985d2efc03bec77d90479583c14a5065c8d7476fc5ab2'); +INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5,"utxos_info":" 44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0 2 "}',0,'NEW_TRANSACTION',NULL,'6311c33b34364be9fd0be1d5987a9b23745b1ca3eb19cc12d7b6a2bb06fa9b64'); +INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','da807705dba783eb5e65c5ae9baa461f259ae459fdf5d4a3100a722d7f593359'); +INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','d8be45e91e3f5feb5686e4f88a53bf87bd846819f61f6cabd73553585923818a'); +INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_events":"creation","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','ac63d941cb70e31c8d20f82c30ee878c12b385e60e3fb7e9095a181111908ce4'); +INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','1935a414cdd969be0c83449f50ebb4559a401af08636b8929f613cc60fc942bc'); +INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','28bfd9c25126889b483f899873d267c2a0875e54b26f8935a1199e61195ccb58'); +INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'dd09dfb0b040d2a28fef17cb352ba6a30204afa10b31bcae4f71445fc0f800a4'); +INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3161b3729164d1adda1b2bbb232e9da1f8c73ea13bd48425428c26ea5f5742fd'); +INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6,"utxos_info":" 2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0 2 "}',0,'NEW_TRANSACTION',NULL,'2a58194b5ef81adb892d14f9782274e84dbef049891fac322c1f2f4a48065372'); +INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','698a2687da067480bc29ecec2cff0461669071c0e762cd874e28df634ea6d559'); +INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_events":"lock_quantity","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','4dd17ce399cf827622a167847e9f4873a8f8d4c323bde8425359c5a371a55d2e'); +INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','16aa5771fadd01be729ee82c30852bd16f7442ee8442e34e731c968d6b9cbb0a'); +INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"63a7957eda022b56b21c330252e25c00991d7559c0d1c4c0fd743be972baeed6","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'a2e57656bdcab128b200d20a15ea603096209118336cb9132f075117edcb1b2b'); +INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b13d3d31dcceef4eaa7df055df90ccea56ba4ae54f108063e397b1b43cee33'); +INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7,"utxos_info":" 5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0 2 "}',0,'NEW_TRANSACTION',NULL,'e0f0b9b01feaf118f956178fe3da0a2f3a1a2b991138ba9cd0cdcb20c0235d1a'); +INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','a3c283707eba9643d3096b0593d419f109a1ca135ca7a9f305a83572890c697c'); +INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','13e365c4c7ba694e18e8f6e246b739243c921af0735d25507688e4643574ce99'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','82ef1d6f1c1ca17d7d1f203efe679c394a95f882c2ab15a958cea06c71c6521a'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"f1ec09af67d51677f20a0462711cd5841b16d4aafbdd0a96d01acfb39260d0f5","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'22faea68ec26f521cead21b7d503bd79ce42a0790af9e6369b4e7646ba5ec191'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b75e92364d3b42fad655a08e223283a36fa57dfca49b615aae1c63c9444a1ad1'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":" e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0 3 "}',0,'NEW_TRANSACTION',NULL,'2e4c37e509d13d7806ae0f544cf54cedad58207c9d71220a49a3c11904f3b6a7'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','4c314c8b6e19b454d78c61ee692343ea31d0c39d2190631a3edc4164c81e9e8a'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','b5dc2a6f1a9d3fa9a6c44e99941520e04d95f0793712a25d3380f538976cdc7a'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','52d9b64878b4e34ddef295f68878dc641e7217f789221580812672db83eb14ef'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','078d627e980c667041dee82f1ae5fb09c7ff7d428acd66ce7cca21ca3d4fde35'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'0a6f9eec170d170282bebcad42ae73a96cfa380008b5aa018a5450758d0e92ed'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e989ee71e1d59830e4422f0d09b4966d35cabb77f7daf16851b2896443433245'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":" 4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0 3 "}',0,'NEW_TRANSACTION',NULL,'40637483820e97055371d0e5b3ee16f9f35bf58ed0b35f6354b36c72716e2364'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','2a6387e6cad8c5d1b0825c15387b62c50c756894c970f9db3c72b58f9132712d'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','772b0c2628ba9b6648298057f3fa9a40a2b9f7333cf4acef7343f23f153fda23'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','9bd15365b0773afc0016a31800bf31c897d75fa84e28f330c0ec60b5f99558fb'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','2ee5506e00e1620806bc916f7ee499ec166199cd75131292207a1508e905ea8e'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'71c32f234ede5c3c5b65d91f4efbae69153d9dd7533e47b22f5f52d36a0925b1'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'321aba22a9b4799f3a55918cca9784544076fcf2eb2827703198367034bbdf93'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":" 70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0 2 "}',0,'NEW_TRANSACTION',NULL,'b5ea581f715827ac9fd845c253eb682f8f0e12073d2d28dd28623c3239393673'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','f34e9dfb5013b06f33c6de2249414ff74d805d111341b02df11865392a1d0226'); +INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','4e3c2ef3d16b1527af6ce3ed8573fa9490b6f769d71e32b954dfd5a648ca94dc'); +INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','b67a905e32aab0d705a2d7fad0392d805dfb51a7ff835f87b6bd0399eb3ba61a'); +INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'8cdf4c8786386a394bc340db351fccbbb9515ec0666699e8eb9905c23f7fd01c'); +INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06de4ba96000ad55b9e92933e2eaa0ca0da408e1a5195e16937e9cb5fbe770d9'); +INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":" 8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0 2 "}',0,'NEW_TRANSACTION',NULL,'0ca84450b8e3466386338d4ec9c14bd5a9775d0a1c50755accebd29813614a19'); +INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','cb1f8047b4eb4ab2c9f0554efd342f6228cdbe8351376d156d5a5dac8ebcc4aa'); +INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','d44de6662b0c7714816b0cc5a8d442f1ed0acf9b33191a177650ad820e180107'); +INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','1bad7b09e966bbaf1f5eafc9ee9ba4cfab634daafcfe3bdf309d1e76b8af70b4'); +INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'b78c806ca87c78f50deece1086839167150d0750481fcccb08c413e1dbb22d15'); +INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec88a35b861bc80a4ea804e840465d944cfaab6081160d5fb1107a8d69607728'); +INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":" ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0 2 "}',0,'NEW_TRANSACTION',NULL,'21cf518ddb4ee777c57659da3911a29398482219c520b6468a6ec2cdb4d37de6'); +INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','69b48ef0da158de9c1cd218fd1ca14c29a1c2a72bd166a25de73a6ba348d171c'); +INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','afb6df2ff5e8ee1253707e93764ac7cf33a5607a737aeeba7311678393fe24d4'); +INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'08649280b8e46a83eb987a8fd1792b8c2cc8a0adf03cf3c9dafa687f7e8a455c'); +INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'338b9b587973e1baab952543d2b1b51b9ace165954a735588eba3a9c1ff8b349'); +INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":" 07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0 3 "}',0,'NEW_TRANSACTION',NULL,'e5f4ce11a5dc2a7187641d611e2c384d522a62893681f5980151dddbd9d0e12e'); +INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','01a7fdb50bfbeaa943d2a32544c50d5b9a02ab3bf866318400ca18043edbd7e7'); +INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','075d160f4a89fe6466af13c5e9ec0d6d5f1c501335819e29d72a81ee810fa39e'); +INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','998cc2c6c62e709cb5585bb04ade5092bb3a27f3be8178ffc410a22700021e51'); +INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','d88364086a8fac47806865f6826a02d781542c7cabe24f5fda07af51dab7f479'); +INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'41489221b3c439d654df25bc660c516f4f3204efd3f83c7359ea943d6f4db070'); +INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bc777d526cfd06524cc51a7304dc3d373b63fdb2d2b0aa2390e819efbdd32be'); +INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":" 1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0 3 "}',0,'NEW_TRANSACTION',NULL,'9adb5fa21951ec2c33d0245565f227851b30b7f4c2af25e5b58e3bce3bb8c335'); +INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','ce9f0c430bbdb369e8e514fcb1289d9c0e3f62cb0f211008ddb4800f6fe4013c'); +INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','b724bf677efd48ec2f1644f8f06f334c73ab48738f792c416b0eb78ff065ee2e'); +INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','60bfa881592de31e5ae5723e8c483d2ce2d9ee6290d8dea7027a6cbfd66a534a'); +INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','b0650b65dbe612113273dee8d35c130aedb0a0856a367ab5c4bfc09980625a24'); +INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'af563d1b719d6c59b39e85aec4f1be1903b9d34d4f4f33ee390b7dd1c61036a0'); +INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fd37ff735e8d3db92742feddc44f1b0b81e2feb7593be2e0bda2abe0e4a1634'); +INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":" a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0 3 "}',0,'NEW_TRANSACTION',NULL,'4cea9db64bf74a2cf4d24200e79cf6e277c748df9189355535df320bebeb6c05'); +INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','c3f54fa36a105acc536be07ccf726f0cb8c51ae3619fb430384d6c4e628fd5c4'); +INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','e0ed226fde8ddecf860435519885b6e0d22f2dfae9e12959e88b8a3fb85057e8'); +INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','27de35c8096e9c8ebec52e3cdbc6ca3e445666c2ac9e94453cb5823baa3ef576'); +INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','d2696b31bc7454c75638bfc473b5b1ea0c5c9d9d36cd4a3ee824e0c4387f4115'); +INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'66c4f846294ee3aeb27ed5d96679a2a93782dde25bb5758de605d480a3c8c253'); +INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dd29c676a75ee2cdcdc4ed04da025a19486eb20581e6f6f40efe322bdc0b084'); +INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":" 3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0 3 "}',0,'NEW_TRANSACTION',NULL,'c909b2baf473507ade85756686c203fa5cf78816ab55aef68d01de97fbaec606'); +INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','937a707c58ac36f67f25f92aa49d1499fa80db271851e0f11fae0d871de70bd2'); +INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','f4fe8192f1924151739cfbf76a3b0ebe448eb07542676a99c517df2ecdecefb1'); +INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','8b0ea20903ffa28b3506719ff244cddba7844d02a87952a17eb0eb237339a8c4'); +INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','69a02f3ec3a16c5b52167b903f07e516eaf76685d4418ea8115044357a7cb767'); +INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'750e4e7c9c4593a71052f8f06882da65e701614aa571a65efedb321986183222'); +INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b91ffa8a07404696420d2b474eb8cc4097c2fc31dcf7d9bd1caa55c50324246f'); +INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":" 698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0 2 "}',0,'NEW_TRANSACTION',NULL,'3f5345fc155b073655a287c8ce8c6803b188eb43b6bbbb3733f8301dc2de2da8'); +INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','0147cc2ebf899defd7b49c6f527ad80a4fee64237cac05c5e168d69e2998f6a3'); +INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','690758fd1ca559a022f3f9114affad4e1f5850d6d7c90a3ca39c5769b9612dea'); +INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','4db72b73c8c6656f357c10b1ad937b6f4d5a8fe4f0f825906caa940273563b7d'); +INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','e8453c0bcf6d02d257f9ca97bacbbe25067fe2f62138abbab2c1d97517dec5ef'); +INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','eda169a1d8b8fb210143f7731448608cfc25e00e560cac08e559f9b46f9bf167'); +INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'d54634a2a191c36526f30e1ce6d336a7e26f7edcd9d0a1322baa4a56a663220c'); +INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81e9f9ddd5966274110335a69bf9317d79453071b2db260475f54b2c3e09d15e'); +INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":" 1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0 2 "}',0,'NEW_TRANSACTION',NULL,'5b9bb2d6c4f86e7f3fca30dc19e630232f9250cdf0e8ef7cbacf12e50f6d865e'); +INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','aa689d7eee7cabe51bcc039d14a09665c2b9670c773c9fc18b553463f1e30192'); +INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','adbfa2387333c0cce43583f43d7681516a4f9c5a5dfda2101eebc4fff2697b42'); +INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'8f65a186918b79b9b4db4e20aab4acea5e422d1f944fa4e322478e54586404e3'); +INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fd2e9e718ded26d3a8a4ab2a410f7fd172f27e194d0be5380a78eaf86e9e03c'); +INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":" 903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0 2 "}',0,'NEW_TRANSACTION',NULL,'453ef08535e78fb41d67647e677dd9ee1bb7d21ad5fa661cd6cf12b8bc6d6c40'); +INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','c3d179a5fcbfdea52395bee17da3d3f1777b61c9621d94c9089a70f9cd05c36b'); +INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','ecf0d08e054f396218872c6dfaef710fd9eb49b1b192e4e6fccf3a735bc8400b'); +INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'0725cddd0d82dbd217758930f7066dc6319ba2bba9f629b3830abbb270e229bf'); +INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45565d932fccfe78f9d17acf1a5a1e7699beaf0894fd0e8520cab88323ea1ea'); +INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":" f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0 3 "}',0,'NEW_TRANSACTION',NULL,'a2b01b358a7c6b094e442b0052799a1ad3e23e03b5a3cd8e7a79da52b4ea5738'); +INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','41142197c0591c97a724f3931254b65f25a666224af6fac35eb1dbc730df7c4e'); +INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','5eaa632549517205525eecc7c22b779bdf4bf10730c1b588443f9a33e72a735d'); +INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','846aa2688337e8579770a677f9f42acfe2bdd308a5702963f2375c729452866a'); +INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'a773366142dce15956d0af123901beec23a63c1280946b6c3c66eded88c8e05d'); +INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24fea1e62c61dac2757d0b7a4e67326c1eb2702697fc130af0baced92cfefc30'); +INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":" aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0 3 "}',0,'NEW_TRANSACTION',NULL,'6b1394530824a4c1639840b44032955c6b7ba2e5ea67a20ca461f21350e8758a'); +INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','713223c5539394c8c60af7fb28913efa6404c2243d6352275d6d5736a9f540ad'); +INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a56c469e338c41b4f773ed31c02bafe07eed38eb6ad6bb77f065dc35a3666d97'); +INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','7ad6c3cb0314e4a7a1a6ed2f3eeb6cfbf24fc9641218bf2b996033a1bb1dcb24'); +INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','94fa621a2ccd13494cb7b26a0e830d523768ae0b423a0fdbd2d320efc99b495b'); +INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','f137fd10106da5a92a3bb873acebd7ac6cd78272601262471bd99119d0c9e801'); +INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','bb972f5414aa6fa0657394fa1e004f91c0ff0f97d4e591ae305f33943d1d4c5a'); +INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','92f154ea2c08506660c1013d686b7c23d2efe7f7324bc8e022bf5be292fb58ff'); +INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a5b4c2e78f239296119d61776e7196db660f95b592ae9fe0556c3294620abb86'); +INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'4c010961181f632256da7e6f8287ef447c7096688167fe325d3e6b3462cafd44'); +INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b30e2486db1868c0e748d06956c243e57e698578748662be60f42a2f53044ef'); +INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'ca43f2f4e84d2b0ac5166a95473b8237018955ffc6ea94e25871337573167236'); +INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48fd0426b62aeec193dd6808f9787e5ef8aa252be94d72d7c7a73c0b0781880a'); +INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'1eafbcdebb73ec804727d1f2de88a7a379230f1545f589695a9d5d06640a39ac'); +INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff65b3309b56bf51caa54a48c0dee4bd73f47cfc228d6084cd3c9c81e9ecf53a'); +INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'84e2db7ee3e50831154b9f526ff50bc2656ef3725009cb6a2d375ec7dfa132e1'); +INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a1576582f55dc34e4ce5c13669af5f20d1c3605222b4237534d03efc978aaab'); +INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'ec8c66dc88168c8f3bbe7674dbb8407b0d6419ad34f9586f0d314e1a24869355'); +INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'991258002766a03a163ce8e4560ff7956b6525ee146de29fdd87734084439c61'); +INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'3f736f0bdc9156a3495db0e0cf005d75c1c3c9332d4620426cf6c78ecd5aca14'); +INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'294a3eae58d695117e5003d132865e925213bf973b26e104322a61c123adcf47'); +INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'22ed6a5fd487e3ad0fae38e80192216316fafe64cec2063a0bd6330f3d408d46'); +INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b618b5ffefc39e38ebb12fb303a94af97c846cf604d474daaee19736cdcb6307'); +INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'605b80b807d90b65632b1570250d69b229869be43828050069eb4f72179db207'); +INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d5a7e65b03da5b8eca6395f445b576dc28623adf3370e7e194877caa13b71e4'); +INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'354c41620fdcc560cc1ff9a297b1b1b54bef941b972c5ebc55059b08e84b49b9'); +INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'595feef6db7fa5e431cd2473622df4fb5622f9d18677250de3808e2faebf7ea5'); +INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'1132bb8d0adcd7859bdcd9d3f6e137627f947fa2b73c8fec50463719314ede6a'); +INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'410dd4141e519ca4009fe041e67c0d4eb0568b6813353e288e00cf8e9184eff0'); +INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'81b110864cad65e8f7ce6301262c91182a637d15efdf8b3c5413a11d43adc27e'); +INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'729fa406517948bea255ac48b67dd3c556d148d00acf15fef6d52a77f54a588f'); +INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'76814dcadde97b2c210cc0e1c9ec424118b5e10bebf5fd32dbfccf4857f7b5c2'); +INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbe5f1ba9cb64f8f5d3edb0a89f182959d9dbe03a9b762c801869f19b3b82d02'); +INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'7a935d1990210ffb07e594d113d1d2bf92f788b3eb4ed5e777e453a43ddea51f'); +INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc16a6817df0256745ffe2024bd0d933c7f3bbafaaff48fcada5c048f14cf9e7'); +INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'5c8204ce81d904440548c48653a55a98eddfd90797904ca414ee4bb019ecccce'); +INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0bbff032febb91a0fb8a54176dc070c379f0a470e35c5ec101f66de911ddc0b'); +INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'f19b1a3fbb399d331c0d657a9487e497b5ed0569f1dac390331ccca8155632ce'); +INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e4f67244cac30303aebc9f9c11d4ff3617b062fbc4a1b1d691387ccbdee8770'); +INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'56777d4248914e21a6b5596f07b54a81f1ccedb482480bfdb5c1745710d4c18c'); +INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'994e0250958616667f4b019c6076c714f2d5c68dd2e4dde4ff3bddbee527fd29'); +INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'75df4a02fae5e8af6de288a05c9b48b99bb4c5911907de54a3a2279c8ad661de'); +INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05ece1d784aca61f481b4a7fa2443c6fb178f84f4e2e954b2ff63fcbe39fd534'); +INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'005ec26db8e60db103bf67b5f96fbd0c31901514eb5a03f5a1577c67b0053fa8'); +INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a35ed91ddbb93a8cd19baa2d5f93325fa47349b406a107a6cd78b116a07da3d8'); +INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'3f2296244e65ff4fbc647bb45f0012a29d417c3654a2e388cdda695b9e07183e'); +INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acac529ccb5290d85d283897d690823b67432fd93500fe4bf8611348515aa5a6'); +INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'c9df6e81ccd2de599f1acc5cb4770039633c18a2b3f090acb2bc2e13751f7a93'); +INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'339b591df463e51394d1a4973366c01d6c903eaa7a41c2e61c9e9e65887136ad'); +INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'e67c779a43670d0f69bc00eebbd643a2d351029c9520a6af3f88b5691987fdb8'); +INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69862cc3f1d1c9d551a5da59d721de9a9392598f6fa47a8791ab3e7ed35f632e'); +INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'8135bbda61098c06c7159b9aeca1bc95d26244f0f256f47b16bafd20c71daca8'); +INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3d1ecd6b5727cf196ad43f6004d4c893fa0fdf1865dafb0d7985d70d3cf487c'); +INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'5572389f01cfac29fdb0e25455670920642af98a783349c2631854c96507ed33'); +INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99fd3b4ca0d7f96ac1cd832046d781ad3fac6fffcb7b8f35717980ae6e68496'); +INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'f8b00cdd8cc78ebd09910a1d7689adb9c579ffb596d108ef63b0db38766afe52'); +INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5720fc24bd8017b33d3409fb515319c9a73b1ea7efdb6fcbfa257ec18bc6c4bf'); +INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'cef78b8c8aeb62cf6cd6b9444cac3c08f316f1794003c88dd8a45ecfc322b2cb'); +INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51f8f1a87d34d842e41f5559bc4bdd8dd9c3c65d6b50d0cd5f2884c42629d605'); +INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'ac585c4150adc1359fb933be771b83f42ab5d3531bad0dad2627efefadde24a6'); +INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ef0def9cf11a3100220a449ae35f945236df145ef5d98b3d912302ab5873a4'); +INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'061d0d1d9d39ae0906ddb7e324348fd477bf12d7a08c6af3d93f19a12f42466f'); +INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e919fe336ce97388f9acd1a1ccb526930073ff484f6334d30d64c67c6a388545'); +INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'0cd62dcfbc16ef9811fbda98113c9a4018889cb9285bb41df08957038cbcdd4b'); +INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8253e3179b669d0e70b6180388353cb92ca63b934ec0ae4988d749a6a1dae0c1'); +INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'55d9d13d152a76b1f79d14daf9616de14f9a004cc6038de07af1b6ce400e7087'); +INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01b92b9da6fe61ae27fc16fc37168dc8155090cdbbdad7652aac0da130a794cd'); +INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'ccfb675d4fa0dc75ed727820cf26349dd17711e3d05e6e12dc3373ebb7996a13'); +INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45308c77e6e393efa3d9942375c1e14f344c7a5aa2b4a893420afeab912c436'); +INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'ac2da11efbc55d09d633b716c95bda493b6a80bc754ca7f58f25be969ac85672'); +INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d87b5ea94bbb2138eda9efb6f4395b893d71e994af9191c5424b3a60f0d9c69'); +INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'1490f47e5305a736beddc7306cdfbd6a14f631cd22ea3696d608799ab7a48cd2'); +INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72fdc9135ceeb24e0b14073e089c195c8d5e3968e4ac7d55662719a9ad7dd332'); +INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'091aaba969d90908117ab9663ab4d111699b2db51f706c68b257886d37f8d1b4'); +INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7bed58dcc5e2817eb821866ed8b1fc56adbe2feadd93c7e0a54a54ca2c229bf'); +INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'77a3bb90ba45685ce3a2a12abfde17929c0e8e00709318a5368b105365fe944e'); +INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65b9268aebbf6a4aa622c626482db23d12de0419e06fa5708445302e192f99e1'); +INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'e5d824ea9997a19908eafbaedc016a5d8b6eeb96f1061fceb17cd3f0da22980f'); +INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3a759bb9f4d3aa3d51d52a66849d240404e48b63c5dd3cfe90b2a3a67a2aab3'); +INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'af0778ae193e83deba3904ab7ce7047f9a6127d9bf602f576f563347e8b74f47'); +INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'841a2953e5adb4dd655ae17e6176b8331c12e4c9c08cf973b14bac4c9c9dc8ec'); +INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'b94800f50cf29023847b5811f0ae7e40466b3b3e275ca462886c65d8afadc693'); +INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3db3036de26db6b64230240295e1eb97567ff18767f4c09e2bf8ebf88e61e1eb'); +INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'96268f6001788613440fc64b1a8ac9aebdd188e0ce3186e3fc0477fb8c06f69d'); +INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bfa78e52937818e0d1ab8c142c2dcbe851cfb5778f3c59a2656bcf5b9157cb0'); +INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'6e4a396c6795862f47c223d7451c0803de405e1119b300f82180887ca15d3ce5'); +INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'505fed3f4b873a671c1f2d96d20dae7bdb85df229a6d1a5712ea973f410f2728'); +INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'9707ddc6c6aa71dce7c18e3173936cba08d0bc1b6c5502dd49a8f0245ad30620'); +INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8c7700d1ef30596bd328d41867bb3e35221a49116dd1fa9aadf3ef33e3822f'); +INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'f8065f67ff81c425588dbed9b5191b049bf4a83aa53ed54fde56b43971928696'); +INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06ec4177d0281c54bb963db1320edd187da51a23ecfec678c91679914147b64c'); +INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'c093aca39c6bce7cb5ca1cec3f571fbbbbc6fd91fbef5d3d7ae15583f03a1f19'); +INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa5bda27070eefde89311edfe867b6af3867d6d6718619496b0d0803b6e9e9d8'); +INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'4d585525755e93a7b28a88ae9a5f6d6efcc6879351ebde64d5bf5f3b2a068038'); +INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a40eb8151e484db30e4e2ce32b0560c2d249fac403ae71eedbecb4a260fd75'); +INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'c1ec96b1656eca38852a9ac8357294359bc1dae1c18254efc0cfa02f7429b9a8'); +INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'180edf4666551f233f908889eac59e81d3fac199405a6f9cf86cf02ea386f9ee'); +INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'adc6f8fd9900b26c876fb0b42fe3d6ceee4b5335a7308dea9359ee1bee3ddf4f'); +INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b500bf81d9c02ca795f60543120036859e6201cd9045324f49b864095bb4e7e'); +INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'554106ce61dc444d39684633e94367317f2ef5917588e98a639eb691e2848e18'); +INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d6425a78475f5ec4f9e92a2204a86b5f3d07e10419cff41c66dc6f737788a17'); +INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'c13ed18e01b1e08462289daadbf40a3cf96582c7b000512e305bf42469620b76'); +INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21fc641546f2106c1c1a518593ccf5658629e687c0a7cc315aa325b281bb23af'); +INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'ca2dc04b47d24c7135d2a30cbcd1c616539a4b4ca42eee1bc49b904d7cfb0825'); +INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07ab1978bf482fd32c51f2112bce2e3a80c7e96a44dfba2f33716f18f3ca4beb'); +INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'f62cc4b3c39fa9c7edba8add56bd4c0a35422b7e3dfbe8d82eb6ea9c103db5ce'); +INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cfaff0f4ad796ca9d218177d871c192ab9da42f14600162be44b02d27569dec'); +INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'b316a8415d45211f01e09dabd42a70c39d8bae6cdac979ff09d6ab9161a17cde'); +INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71b7e03b8a582a272e1aeedd3b7221967734c28bc10e2f545014a2dfe4b1450f'); +INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'06f9b90459b23a02e2ad5e1b8bc007e877a31bef7d8336fac31570e110606919'); +INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'267f37a007939db8aac929e723cd2d301b80dd176d9c26634e7625417a47cd68'); +INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'306017c6e71eb7745b8d39786ef5d25781a4c2e24fe74e0cf907b517e863b54c'); +INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a66cb674016ec50c62a567311924b4a1768d0b51d0495e10e732eea7f8ae793'); +INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'ddd6d1ea5e97c0419bb469e388d7caf895588635af3a5689aa1f76059c7ed18d'); +INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43abe60861672b9339a00be6c30a78ab1ef73772810b8be289457417461b8b0a'); +INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'b884a43b17db2925e90a850e33ec605c457310fe458e448bad45a06fd5d0ff66'); +INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b542bdf8b73cb1aa292a3e48fd064be47c9f3bc7b5e29d2711e6af0ffb2bfcd9'); +INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'5c1f70ccd5e68dd395fb90236453edd20e60c3fbffa15b34c84f295dc700d87a'); +INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a382bfa9d2e3350f302e7c93da1f2a0bb708b323360e61c9ac86d85a8b9863'); +INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'b81a8af38abee5b548f2ae390cbd6575ca1987dcfbf775e6737b7e3979b6a24c'); +INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2427eef2ec390a05ddfd4ac62f7b524d51f1dc3a104bed67fb62e12bc21fb9de'); +INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'0fc7702f0ba6932d2af0d200762b98f8ba01750f5132509c907ce3ed49e01f4a'); +INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cae2597aec4e99551b3ae809031b54e5690ddc5e79de6d303bd77bf37bbfd96'); +INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'6b6f5fa6c1d504a7456dce828a0d893d3643e8d712ea28ffc243234280c05647'); +INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25ff664bfc4a0cf8813af05e045a139fdf4a8b2a07e98a45d4e379441f3346c3'); +INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'4f1b1f9ff3317fe8fc19c32bfe1f9414633948a2d63a299657b38c4db886be10'); +INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'869b94643054faf051936226b71e293bcb2990dd1a0f7f6f57773442c8154bb9'); +INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'c76bf626f67f7fd1b37952fb0e4621b216528850dd68bdd53b42d175d1783bc2'); +INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03208e0c661aafb6c0b58734a38e609980d1b69908c86061ae9d025f7e275e7e'); +INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'c593681265c9d022a0deb97aa94eafd55e45b4d41ecadeaa534d974997b40eef'); +INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f95f69c11c9e06d58a7aafae2992824b936a0f82246f7776685ef9e89f73f0d8'); +INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'8b8b00edc8039a625650b4ca4cd48970d624bdc31a79a3cbd104c952110d43f4'); +INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf8927d0233b0586ca03aacdcaf6954ade2a0fd5ddf83388e5e3bf228e09f275'); +INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'b8f91d4d7f5530f8587114526308d895c051a84b10e972926c805d9c7b5466c9'); +INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89414c731b2330dd197f4d982f37f0aeb786f1f907671803bd57946ffc22c776'); +INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'6194708358f6c0a0967fe1357bd63808482b082fb643175960ec8cd930a354ef'); +INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f039d46669e0a674037462c77fcaf77057ee5bb73d899ebe684c1f6b549617f3'); +INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'1b2f654b832d28fb4d052b9ee87f87985bf736e14b438b37b370a104115e16d3'); +INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dcdd768960e5d743ac2c36ad60dd8833cb04d862c2001313f2aa14d6d12f0f0'); +INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'4f7098cbb7cb7f2a145599acf4a768d5a81ab15df86afc9eded2cccaa5856623'); +INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6d6b76ae3f3b2f324c1ddfa38930d97f80c8bdb140ab6885297497fbc552bc9'); +INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'6dcd989b6db6a449ae756994fcee0735beb155553400f35607b59c9dac67d776'); +INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0af9091af9a30708f0c87d27bc2973cbdb7fca476ee8f41010e76f50b60801a3'); +INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'25e1287f11aa4da2bd92921e9af9c72f2e69402785ebe5399817878dd1797760'); +INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7015e6dcef2b0e12e059f1c78488a75df7ee473d2f37655b9bcccf6a9aa6f9b'); +INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'67d4027e8bfb6220ed0c19b79d9209206f84bcb50c0079fd7efb37da140b3bcf'); +INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ba1badf6c77216f3080ab817a34b65ddc90cd9235890aade4a440dba6434f35'); +INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'22ad05dc1e092e1ec57d273b46463440e34a8425b91d902bfecb2663ee8bfbf8'); +INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f914576717393378e4717b9e65e6346c6540aad384074bd08c2b3f98c01db570'); +INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'ad254208dd6eb906b953144cc22620d720b3f02fbdd90758419b6bc2f156c19e'); +INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b6be2312ddc0e8cc4de2b54f3cfaf4572c9597f7646501992660fcdb73f2f98'); +INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'93f9b039b0f904765fc76369c8b663296330c612a35ad93d7ff084d5b883f742'); +INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1824ce6cdde5eff1a49bb5a7c7c9f82803ad10fac7daa98343bcc0744f156b5b'); +INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'419e5f003e2a4fce412f1a47fdad40bd49f631632ccd391f8f2ae404e6a12ab0'); +INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc01c4ce515a6a191b78ccfb2ef55602023e15fa672c044a6c831e051e663740'); +INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'e642f5caab168286930ec1a083212ef23abfacd784d810478eb9ee972a3eff0b'); +INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6587f04a3fdd2089e290544fe662776a813b38503a5b2603b3fd2dd26ae5d02c'); +INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'b771f931c2bd79556a9d9f3f1f72bda156fa1c343c03ca203d1920eeea74b8be'); +INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a36daccc624cb4713e4ba4756a42fc60c62547152c544f9ce228fdfe30f3e16f'); +INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'003e4800d59900bdb21145b15eec292d11bfdcdf7ed77b6213730d2221e06445'); +INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ccf0c216b3d408bd34ba7a2e63e4db4e9a364d4391454271c3ed7e289fd7d4c'); +INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'71e1d3663cc50c6c9844c03bcc0a2ae33effb7c10911fdc3631df127542d3118'); +INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08a75938e3bb24ec1f06ec07c2fd06c459abbcbc1f22239275cca579215951f8'); +INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'630a5e9563cf2ad7c508d6375734392464251db7f6441dde2199ec8731d6b723'); +INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'358fe064ecc46bdfc1de8f818adec9e446901630b1277ede3392975e67fe8f36'); +INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'3812eda8f5af1a81d2b7935b91b163db244a029e3cfae62f8f929b4c0065947a'); +INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67a2897786a9e7ebeb9460d184f7ab530a5ddc2537e3fbf8cee594ffbad9b70c'); +INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'d6174db3814c10b2c233f32074d40cfa7ca46a296a8e776ba1b8d7582cd55abe'); +INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbe08a7e6de19fa3a55fef861bead3b02f5b7c3c7d3c67608848e50ea2721bea'); +INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'4c4bc06c0396640ac429682c7a933705ee900f2c792c0c501aa4af6be64022a4'); +INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4bcfbf645f8f077367e03f3ab1b05a3db8c279f83f6a8b2883ad93d382d6118'); +INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":" 9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0 3 "}',0,'NEW_TRANSACTION',NULL,'843a982e25ce6e1c6e1640cb692e7f7e0fab53c612738fcb5f8962bda8df55f8'); +INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','3eb30127ab40a9cda761a1f21319244ed6bd0039f1e699e73536276b5736e6f3'); +INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','f1f1e376097752a51e15d995f72dce9bb1a2545525315c7eb80215e6af9eec93'); +INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','60c121ed4efdf5d40406cd09d45ecb3efb36703346d41464509fe5bb467dbe97'); +INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'af15e3077962f4b46e05625db3e1aa30a75028bc96fa6e3368fa876952d3243d'); +INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23def5421d8d369dda5fa99cf567045028791b5941591c74ca30e83a3035c4f0'); +INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":" 4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0 2 "}',0,'NEW_TRANSACTION',NULL,'f14107af2f425ffc97894440c996cdab30728f43c792d63af01c2fba2750f656'); +INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','c88ffc0e65a8de6281bca192cadded5bdc42f4a7206be6a77f54677574a10708'); +INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','10db534b21419eb08412eb5ccb6ee159e34ddec023e4430e6c78bb7f7dc33a99'); +INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','d20a84a5f1958013192af12387341edede993afb589af8326fcdeb563c1c7231'); +INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','bb1b63c83e72d516c68ed038fd31e9e49a416b7fb6f1436c89cb63ff024e47ae'); +INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','07e0ced4701217cbaf9766b88a8526265dac36fa0c631b0566d14a34889c3c58'); +INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','1c783b224493b4764b8a3f7446ff4c4d25a617a3e059e07a28b23618992f8a5a'); +INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','ef21b0080b5718061ec74748c5e63ad2bc15bc791fa1a3c7b6a2d361d709c55b'); +INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'c9789889f17f8ff3426c06cdf6358be00cb44672bd8bee002d37f1acf874d719'); +INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'326733267424f0d7348644bbb5bb4fe1a9cbb6094d304f7066d9d7a6af201efb'); +INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":" 821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0 2 "}',0,'NEW_TRANSACTION',NULL,'e9df602c9d6bca250e681f9c0e6789559277118128356a5d0f0a58315d82e167'); +INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','027fa14eaef0e213420614b34ce0cd391f39918a8b59de32374f32c3596f53f9'); +INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','b9586655a0d19286d9ad90679a4bf7a48f7ae9e22d41327d080ccd9d87d57209'); +INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'b1317987bd16968d38773baef69314f5182f2532b10dd84e50618caf67a751c5'); +INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f182086a14b2d54420e1a40d74958b5cbe06434b29460a3f714ada08718806d'); +INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":" 9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0 2 "}',0,'NEW_TRANSACTION',NULL,'2dfcd10331c3168d520e477507e5195739a63ff72fc82c05835838c7f4559205'); +INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','1bfec1042327b7e61e66594c1b1d4b4cdbe7ea5ebb966fc86a119e7178f7026a'); +INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','01a0c03f976c0b1a3a058b763bc9a706d65ee6166eec066ac1ccdbc7d423df86'); +INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'41195e4ca4c3aac72c361d750d4c942bbdecd93a3243859a86e1ab3e49bbde6a'); +INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d4216f9afa45da34b4f1eae51c29f11e8a298317b5aa107071bdcddcaa64169'); +INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":" 3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0 2 "}',0,'NEW_TRANSACTION',NULL,'4259c2940edf2103fa36698f92e4c6ccb5e59e0327cee6d3a0b6b684c8917a5e'); +INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','f3dc2b865183e9bb846c619fd67677324c6b2e5a1b1a17dbc09d07c4b56e8857'); +INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','6a20880191ea518ded01cfedd9e239603e5b55701910331a470ef42df0f1b134'); +INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'f0d19d2106223dd697fc2eee803cbaca88b9872be6cf6c2fa11a1e1cb8dc3e22'); +INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0b0d465656b13b44f44ac52576de25b6b60b0f0fe688cea0f0394389b50d4fa'); +INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":" fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0 2 "}',0,'NEW_TRANSACTION',NULL,'d063b4563465588eef1432f52d095a6de10f75a154c68f39efe6185e57ead7f7'); +INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','d466383395d1bb6dcb3be5a540110aab03f0561e217e78d5fbf245c505eedbbd'); +INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','245c5d0f69ec21fdec4344147cf97c117851584d1211fb1ac8de814f3906f3b6'); +INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'8d0212f2b96026a56c368d35ce95914e15061b1d979717c9eb799fa529a00f06'); +INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2479c14631ddf8c68dc003251991eb19f742a92197d064340e53904c0d95fa8b'); +INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":" 0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1 2 "}',0,'NEW_TRANSACTION',NULL,'5a867f0c4e81c8469cd5711dca90f906bf98a3f70f300c150bc910108fa56633'); +INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','74f01d430dde4aacc2a20e1f486cf51ee8a6be3bcfb836dddb3afa6f963eb604'); +INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','54c985c488b2cb399b58c9e6af1d2967d5276ad8e92d8f2eee786dee3b815e7e'); +INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','2d96d5d9e7cdd64d2e180a735d6d26ca49d44f92c1980cd3e2de5f3c61da72c7'); +INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'191a4149ac42ff04bf44135db6d776cfe5ff17ff097834cde4d4df7886a5204a'); +INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54ce1974813c286bc27f2e6961f923d1befc97d99f36e076d7e724e7761539a3'); +INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":" 698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0 2 "}',0,'NEW_TRANSACTION',NULL,'ff8d282cbd768f26a8f7dc539f9da38ecf786297b2e48f1b7027a70912cb5182'); +INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3c2c91eccbfdb6546d97c5465f2225b1321b2c74e70bcf2c4ba235a0ea7f4cb9'); +INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','c60854a960db15cb681597514fec1f9f2a34989bde30da9aef3243e4e14b6233'); +INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'6958756e992be7e8bfa43e38f238ccdfff3b0020c9f9c02602c6c68b2b8c7adf'); +INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce1992c43c081c05d75511f833262ea2e7584b3a21f5014e64f90e41a482925e'); +INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":" c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0 2 "}',0,'NEW_TRANSACTION',NULL,'87681cbad2284eef7b1351fd3490908f3bc687079c1f62b9f2383af3a6b2ecaf'); +INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ac1346d7c5aea143adfd1633defc1c4f3d32a316743742f8f6a77c15e5fb22e5'); +INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','7502794f1ad16fbedf802c4a6569dbfa9162f9db2f334ef17805a7edb4fcf372'); +INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','521e947ce150ff729d738ff99f4d01c2ac942376897f9457e8a1e8eb4ed083fc'); +INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4a81208bc8e6549215a75fa51d97c2a668352a5752c2fc421b8aab57488bac16'); +INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ec27ce23f8b7297bd3fd45f71186dcd765208139058aab8fad334f7911d52f22'); +INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'8f0ba69dca4b0216f7a39c439bc965a38a942d804312a3308dc963b696e6bcfd'); +INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c7bc270ced2d438e1079c3b07500564a7aa74e3da1c84c719254abb56be506a'); +INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":" fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0 3 "}',0,'NEW_TRANSACTION',NULL,'c045d31f969329b3f781dba14b3b04eeb6b9920bd1762cf8b5ba9f6589bf87ea'); +INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','187452d628fca6c00a3cb4cfb93477c60be1c6a536de658487eb522066bdb9d9'); +INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','757e16aec34c7e19cb0cc6e9f27f39fc1672dadc8c495d6dcd19442bc566ed32'); +INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','751f5943f0837891f996aa22a7559509bd35351669e18b3aa213b9c87f915c8c'); +INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','20f69300c64066763826e77f317054a0d68fd491e3920aca683cf095cbfcd3bc'); +INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'988859982c4703249604fcbf27c73863455c684e01562314a1958fb294404ec6'); +INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'587869a28910ac6884f1d5befe517eeea14cf5c9fc64d044dc02e22e245f4b53'); +INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":" 3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1 2 "}',0,'NEW_TRANSACTION',NULL,'bc7d01ebe994dd0c44b5a7448b2b125d560691396f856b12a647962459238aab'); +INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','c65f3ece162faf8bb37c8f8018e8d036ad00f066326f1ec8b461c6e52ba31555'); +INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','30f3b90486bc270ae22176d6d7851980fbfff348536881f071fd9edce3079a1c'); +INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'78c4bded1f742ca84376249a9e9894062fc65d628c0e56e019c47ce9ebb36766'); +INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ee377e81c2d78c228603065f2b49584050969d7e4a491a49090fd770600843a'); +INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":" 2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0 3 1"}',0,'NEW_TRANSACTION',NULL,'cc4bfcb362b9de3f6292285d62799799296a37c5333e4e583dd96ee0e693cd4b'); +INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','033acf3e06946f40b2baefdb8aa640edf839442ccf861d3eb2e9835a89e13163'); +INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','2a77662920b2dfa1c9faed9f5c5619bf8ea7db00d8af88a3c9ceadadf81edb47'); +INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','9fe09a51c64519d328b2d2724ea4f0f57e99cda56fdfe838d2908a44d9998859'); +INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'f4bd1b00522326d342649ccbd9fd66c6986be053cc228770d30e6edde7ec91a3'); +INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e53caaef9ddaba3da9881bb5bda8c67ca87a00029f419c0a6ddd25436612948'); +INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":" 7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0 2 "}',0,'NEW_TRANSACTION',NULL,'bb107f3c167ba9defba997d64303d97ce71727b650d2f1cfb8a5f3cc4f4d3f2b'); +INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','0ec27b9b947a7c0f39329c543a81eeb85e4e5532cf4204efb3b9312de643d472'); +INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','96c27e2088623ce4279ff83f6e0c1ba7a52bd39bfb4c07af1107a51b47eb60fe'); +INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','488f674b476cd1e6ff9dde7bc6d08150e481fd9f0e0df6be133bffd8b577f08e'); +INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','e54d415aa14f8b731b9fd6a48e0269e86d53a58d4f70a186e27ad3f54c99fe29'); +INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','a62b05bb2364bbdff980b61933c29be34629450ca8f3fa40055704a988860184'); +INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'ef639fca5ef4a3c4470e5ad69336fb24bb7a6bd00f069f52bbe9d7d08d6b7758'); +INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'421c348c7e53f12d4a4d6873ffdb25029b2d3d4368aa2433b6a762c34b5c1d93'); +INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":" a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0 2 "}',0,'NEW_TRANSACTION',NULL,'b3afde2b974d712a72debedcee1cfee35c2acfc121b00aa0c1b01818490d64dc'); +INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','2df3f74ac41f5a62708110b5cd35277d920e7d8f05791f5f006c3b87a624be2f'); +INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','558b2c3e4e46fd407e2aa1ad5b57a134e8846e54d85e1490da1768e7fe339a7c'); +INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','9ca1e84b8accbb70e39e129fed790d6ed1d7c0cd4115e81327b24e67b626bc17'); +INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'4740662d45cd6b1a93a81f1af3022c27d7874ca4703635c5916024f071d2e092'); +INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1f865d9b09e83d026ae125dec0248100b17373b8ca4d40c0915fe624717daa8'); +INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":" 61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0 2 "}',0,'NEW_TRANSACTION',NULL,'ae99494e0ce2202cbb59e256041b58c9467df23654182d22e39f5bb3b338f23a'); +INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','0a73cea6b99f35912d9fa705d78c93a9f12c495bb9a8f52a72a4e9e415b685ad'); +INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','446fc6887a7ad6497c02ac1149b0a6ce963be3117ddebfb734301b09c235a0ac'); +INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','6415642e97d05b72a78846aa250522cdf83263956dcf1890dfc70f0f41ac1126'); +INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'487c72b9b13d7193f6a3e3d72fab3d3f2d94e3a2885f0a39f81c8a6c24bc74bf'); +INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'753eda5028b5b1a10e0d8f0b36c229dcbe455e8deced84ff74ed479b003a0e41'); +INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":" 44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0 2 "}',0,'NEW_TRANSACTION',NULL,'78eda6e114b86e96b6006d066249fab1afdc642ad4ee6d09bb4f7e745b58e2d4'); +INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','2dfd6bb0702f7c3e920e5c5dbf36a94d62585c583886c016dd4d85482a8e1c6c'); +INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','101d9726f9b4d324ec979f822b5ca29de093ed54f177bad19e7c76b241e07c83'); +INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'116de95539ba54fbde9b9c286c9c596e912a55a8474deb33f206e14a022c5a9e'); +INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f126bd484d94fb0818cde1f88ca0fecea9ad52c7b3795a0dd516b2c26b5a70d'); +INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'1a600396be7c05df4ae5da94bb22f3ce3147d9ee4f1de62c642b09187e9ab43d'); +INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ace06d347593be838ff064d8fb6c205b4af98d9904abbe5d952fad08c799f68'); +INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'2f9603b016423eb83d155c4bf3625ef5931988c75011827d98f5c4b49b284ab0'); +INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f5930603aebf5794682e8b5c7432a71e9114160294e5594eeae2ea5f2a68e4d'); +INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'b6c621772f82860e716d9e96122ca5628b65e337eb1dab3d507667db49faea6b'); +INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af60a55e93aa9551ee3c55e8dceb4e7a11cbe586b6d372e57bf3e494b03747be'); +INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'3c1ae84a3af0a7deb9d7ed943db5b9e807874d5bc403b00f1f8bff123d3f8a5d'); +INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e9c2792b99e4c4cd7b22ede0fd446541a195886b58480bef2daf181b97756ee'); +INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'b2fb49b2bcbe1491b3214c3c6db03f348251377efd8beed770e9524bf676a8f0'); +INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cdc92e02771cbddc76002e4fba69fdd2c02dd9d9992114a4698992b67445974'); +INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'0538fd6df138899ce894b3ac55cce9063f181f39c5fc7a8ed9124b4d18329187'); +INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'846a2e4d71c27f259239c84d1445d1ec00e5ef109e5aa0d526c443be6fb5f727'); +INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'e9af072522b7f76ddc83080fd1e70cf3ba789c259702ef2cd11be77abff482f8'); +INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6815684e26870900be32c2dae4eb7dd50d5f576176d8a2aacd425be57eb35d61'); +INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'f14202675bf5495ad669c51510693ee5630c950f9084a9f55ca657f5739fd399'); +INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0f618ac5c7148ec16496d11eb57c3dc507eb7aa458bd755b3470da2df2ff484'); +INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'1008bf8e6f28be5a5fbe7e601fb441cccf30f0ff687f64cbf483b8a84587cd28'); +INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e7e643843e0c63df06369a6141b6ce6ed9e1c75994750769c0ef3b9c6513e8c'); +INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'df5f6a294b88f49c53c94016eebeac9f99fed2efe4c31eff491aa22cfdbf9dfa'); +INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15b137d4cfc5b24d3d6ba8b40d7cc2c29398c38efa047048adfbad5260e9ffcd'); +INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'f0a9a323560738592f6d09dba02460531b9acfc98dc9ddfd7f04eca38912f25b'); +INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c52597513075dd3ca9016ea8c7275dad7bc7e7b50dcd8e652deaccf4906bf00c'); +INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'6ad9ca507f970fb130c69b6befb93549635dc06df3f36c5a758322f085b2f6a3'); +INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de20b15ddd0cf2fba3ddee93dc931f4d954c97bc0f337418ee1469fa9cebf5b4'); +INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'5c69aea5b8ad4defd3ec37146cc5ad04098468b00057a87454984d80068d1b2a'); +INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a217f07b5f1f22fca3f206951be9e66eb0b82b7b029c59f43b098a07e84e711'); +INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'47747ba01878599a137dad0efd2239e3eae3e243deebe913bd8f41a844a66cbe'); +INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a005ed88ff9156c3b484514db3d6a8dd324340db5b5fddc54bea6733a3b84bd'); +INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'f16974cd4469bc577724ecafc9d23ecff7fc01741b7a670fcb1b621e92cc5429'); +INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b80bef5282154aa8be392c238be3b6ab05c0fc7227ba03aa0661717f525f589c'); +INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'fcebe6a31ef33aed81b71007a5243b1838b731c4cb54057c85dc9e1eb3cf3d1f'); +INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29dd4f763a305bfb9ba95912d7988d305b7e9e51bae80f6af781bf3101995a29'); +INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'f65ca953a9d45c8d028913b322cadee0d6183f8ebbb37b1f8d129cf6f8e41747'); +INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bf4db4006114788fe7aa761861783ea053479a1838a867182207e92cfb0fa79'); +INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'60d140ca93a36d71ae3ef1abcff30dd99c1b485504143424570f40c6c895a48e'); +INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93790566acc8f0bd7b7ed32ea117342605be03d4d823d24eb881ae9addf794ca'); +INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'7ab40178a1dd60251f12920c42dd172d36460af836b9e5f0b900340d0b96e5de'); +INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b15eb7be2107949b53e588209ada8e4d06c724023b6c28e08fdd5668ddefaac'); +INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'fd29dfdb42de1e5c47f644a303de48d83d7a7c375d4d17c1963c53dfae94a236'); +INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'511d4f0c1dbb948b9a4d1090e8fe2586ac2bb40426705464be8fa73d559eba67'); +INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'3b79f9f7ca38d1a72a83e61d8d076b8e45c7366d7532f54d055d23181a0ff8ad'); +INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5af0a9f9b1d6d5a1afb9ec04ec0950af4ee87f060d5098cfb8e58184e4f8c4fa'); +INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'9e2a7edf6804eeda68ad73a2ae856c80fdb710e788325a0e46974e7869c1c399'); +INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbe37704876f31c8f7be2a040590980b94bac740c90027062c49cd5218dfbe6c'); +INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'fa05485ba9e2305d50843d3bafedccbcca60b23785d00ad3481c03eefc7df774'); +INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cbb5a6b08c27384d7ab30f24229468f0ccbfd2ab857b2c85b7f6938cc1fa56b'); +INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'2f60e902f297203de9f24bf975f65c8c3e95b9605872f5a64a904e9ac90eeed0'); +INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29514c93a15f78b0b1f18fecc1e74cfcc5678d770f15bf681a47cacd0ed38906'); +INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1cad41468e900d11b77a2dfb2b76d7207c1ec3a8665b7c1f84ddaf7f97abb9da'); +INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1e090272e47f37f1982c97c6231edd1c8feeb18c2e5ada3a0e5835530fefbd4'); +INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'644ae1889b6a2883d80534eea484e6ba79ef8ec8f8e2f6d40d294c49e0b2cf78'); +INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33623adaca50bc24887f4ca4d787acef4c4edd3ade5e2e70927bc5f5e6c5dec5'); +INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'865f0f57002bbb725dfb6306257ce37b69dc2fc67f93f8bc44ff96e7b625881b'); +INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e25a38e594f20e8c524e6f76885bf5b0ecbcd6eb39839687719ed127170b3a3'); +INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'e23239ab5bed8a3890420d1d6844d93bc0185e529e634fcac9ecdfaa3f025e98'); +INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbf8c37c916334891eb58fcd0d817ea7d39e579e72b954adbf7550aa191f9da1'); +INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'429c4a6c9d316e8c0cad6f4f4b912b515fdb37f3169ac6cdfb224a2cdf539908'); +INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a6acc37e1c418dcfd57fa5fea03230ed1a75b7cb75d1c7d2251cc52c1bf47f6'); +INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'e9d7a02ebf972081bdd6516943807de273e1d105b151f56f38724b639dd5aa12'); +INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902aa031ae796530eedadca4514220ff697a1e7a6fe283b3e318c00dfa9323c4'); +INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'d4ef7f55f1d616b7d6c26baff5a683371a25928d01e018fabac293c758647ed6'); +INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa1e73ece7e5a3ed8c8331c1e478b5fff3f733f80fdcd3141f2c44393aee36c3'); +INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'77a515f91210df0a6e4311aeae52024be3e9e595377bfdd208623d2d4e2bde14'); +INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cbf9e231f2610b2854d72078909a6c7fa6a9ad9e1ebfe2e4454ed39d97ac682'); +INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'432ef929d283711a89305647e17b671615b358539bf3c5f9100cbd21e1e4166f'); +INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5b9006cfd7b93d7a0b4eb892fe0d7d5497cd446ce761d7169143125bafc0028'); +INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'9881a1f11b9ccb7267950ae43c65f470096c2fc69be00643818484aec09d3adc'); +INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fef48d6ae0287707ced05902bccc575d36f4a7155f6e591072b482368641d67f'); +INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'20c1ceb4a3bc621bf8365a3812c36317bf9381ffbc0f4bf375e41fcf1a6cbb3b'); +INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b878f3a12e5b62c98b63a25a685d96cd7bb1bdfa3371a3c314c66a725787ed6'); +INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'633d18d1cdaeb69a8db9eb4663b15441b67ed7faad4e78dff3dfac64afda700c'); +INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d58c2f33358ce4a97b1cca9cfa878670d762cc8d296a6c4c9ceb585b5cbe7411'); +INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'7d1270ebea2ddb21981d2748a71af4226797eef53606243044b090987d827189'); +INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4354ed3783f755bed2faa175f69bc62448299242493d2207fc5019940f5d16c5'); +INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'d0227437516b4c732744ce2afed66910ecd9b423d2d9c97ced0e9a1ec4bedf2d'); +INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73f0215f91e8e910689af885af49845a6cb251f677cfc4b0768c0871bb71ea92'); +INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'e3cd1ec4c017bb5ef2f1027cf95c0d043f04fe8a52a211aec61fc0153a7d7507'); +INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70055e22e0b0e3cfd070a79419aa0d967c123c18ce332209f795592746f5954e'); +INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'787c1c788efd0c8b8c0b1bf762bfdb2e462baf7e06b408ee5112246a5ba75acd'); +INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'027a3cf9aeb073aa3a579d1b9d987abb31b3eedafd1ff23efed917c2d68f765c'); +INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'8185010c0d3093026ec39a4f3ffd2706d5fecf384cbd7500dab6d84ea89ef91c'); +INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c9f888d1c9bf7d9c176bc3ee0ea76d6661b4d521bd799a987eb58e6e602a077'); +INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'862731de815f0fa716984491a9221ae5aec78d4aee4c2d9ac199823d4ddefc21'); +INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3176d790400744f0c02acc80ae5bef31ba6c65f86b43f5269779d6e87b87813'); +INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'f95f9253602144caac66b14c64d490445f64c50a0e18173c83ae8adc8ef2fbfc'); +INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eaee67fe1605533020458cf83ea4487974fbef5d4b9f90c9253b409de0841916'); +INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'4d2cba0d5a05698c23ac5d7e7a8d82290814dca633a7a40d6ba902f03d11decd'); +INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24b43d3e383cd4cb1fa344c4b9696dbea737a64ba950234d680ed0e5a5ca3b04'); +INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'7cf06e2ca840659899e6b18fff00095a6005be88de3f717a8d3c8d26d19dfb75'); +INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df054c9e601e91e26ac74417e7457fda1ddee71bfab5f82e6a44dc114bf3fb9f'); +INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'f38c6ef1fa58cba97cf53921c2e2b0cb6d6300e512b535a6bd44429e0c8a091e'); +INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc2157974033dfeeaf81d27327b73b3934671667d6c986d6e699a44e64ec68e1'); +INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'e4583a0a8e06807e22e99e91a96873b75ec96d965da3920ecae3bc1bb1bc4db2'); +INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b4691cf648955d579c5cd471415d4b81471cf48dcc42f65dd5f4f42d56ee31'); +INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'e16a833844789277c773ea6c8bba9ed5bc9487f079b03d423bbee8cc0ecb82b0'); +INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66d3d7891b786bcbc94704b822cd18996cf3d37e6296f7e1d832441c3471832c'); +INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'e1eba128af1c989473645bde40db7f44e590b78ddc363ab794110f8968b6f43c'); +INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eda15f1752ef6b90274cafdfdbf15b46e83bcdefd24fc805f0d9dfee2ae6a9b0'); +INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'e47072c8461f9bacd1791166bf675c49cfb93311863d511f5384f1beb72df798'); +INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59ecaa2b9058ec56d4d2ef6c75bab1acd2616139e521ae4efa779760b18faa1e'); +INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'4c5164e2b8a6717d9d6b3eb2a1a24ab8ee5bad8664a0d56449a6040bd8926b87'); +INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c46e1c5d999c53b042db7cefc1178836c184833b690df0189662dc5abff46bf4'); +INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'f7f0d054453a7b1decfb2e65337d55cc8d59875962b3ce1e92982981535015d6'); +INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'157a6cbfa9152c16332a1cccc437d3a60676299ae06f9f367a9e7b7597d87502'); +INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'b0018c7eddd01344e395465a4e74efd54001a5d6ab349a76f9b14dfd1e2527b6'); +INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7501d8d555b9660ede47076cdbc9f7681be7b9ad2e31287a4eeffc971140d77'); +INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'1d86da066cfd017e7507bd61a4115744249ef7e3a829728692694e2b1e3630fa'); +INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7b7c37a6208f975d80e4b75be27dd9402b4d35ae6eb40c06f89f34b1f1daa14'); +INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'75559f5b8b1cc9a5d96a7c3fef25b3d16cc514043f875bd23adbeb0575cdc48f'); +INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee258a9cbc5c5fdf579946fa25f4eb7069cbbc249fe1031b95b34b501421ec4'); +INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'583372b0033668190a3d7a1b381eaef326a203748d3cde82c3637a5fa35fb435'); +INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d021d6a8a68208ce684ffb00efc863b0a7366db9a80af8de591567aac7c6d2b'); +INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'742517eee87d6b5d9d17eb203a52b50fe4b51dcdbe04797d023aa6eff0f02b3e'); +INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b237238d53fcc46ba34bfa12ef33235c8496d85c9736e2bffa44a7deca10234e'); +INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'2f427b9bd5d5eb9f3f770a5b4b5626b950dc32e228e1598d582e32d302d3d14b'); +INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74cd05c9d9694e959afe2b208245453966bbe3540b256110c3808fe846a26b73'); +INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'2c870f4c8116627e57108cf40ebb26392f1227530bfeaa586a0c7db8da11e402'); +INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38111459c305dfec5830cb8b832442ddf37d9556cd22f2b57e94a401c495d9fd'); +INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'4c6d7e23dabf3a2145a6cb92daf4ae1c283116a6a9d699b13448abbbb2480cde'); +INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3454bda27c119fb68af788f77bcd09877ebc93e9f03d399071e221a8668de9be'); +INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'131339a0830f2c29846d3ff99d22831cdc361c689f5775cd5a1616ad77058cc0'); +INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0646d5a2039e91953f4171b4eb43d6da803cd88565f8aff1ba87b6442bbd949'); +INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'bc1e852ff29c87112ab846962b7e952b4e4f993c6150bc0447a9310226358271'); +INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53d97aafafbb2c3428c0661da37636299d428235803fc08066c6bd7b43b7f4ff'); +INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'ac864efbcffb6cd6962356d012c95c1e4da087a7d6a40ffc4a5c0122d73d0290'); +INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6975fbd4eb323b2303f2bee3cbf987942fb1ec8210625e12704976cbecdffcef'); +INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'4068ae19fe5906b7b015c28fc0000ccabc63efd9deb65983d28d86eac1ba95bd'); +INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffa12be01344d8d86533b3bdbfe2b938334228454a06480ac723d2611bc7f1a5'); +INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'ebb181300869e984be9cc3a965fd620ec833d28136396ffbba59bd17257bafb7'); +INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c18bc0d2bf0edf63dbde83adadc01b58ac2b81527ac7e762abd117442d7d3162'); +INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'7f682c2adc795ee625e40a20b6d425218b721036480fce5e3cf68c2e9d0cf18c'); +INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acd6a7e5cab513a79e7f2ab280ed1cb31fe2387a20318168fa784970bcebee55'); +INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'954bee57b2248cb78fe104006acbc52a293b0c8be0abf8e63ff1301277d54f5a'); +INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3bdd61759a585d8ff0ae45ab026861aedc9e902869db7a3cd159e3a1a2f5f81'); +INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'7f3a021b80b2e4e4e4b77552062ec9c583995cd4d30b53a3d421257868277e9a'); +INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d82f71371a23564f8472716e9e0e2e483486b0bcaf701990bfd6a8f9f74d311'); +INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'ac2cdbd6845d69e89ae16dc61e6b921b9224298a3061e74454dc6600070760cc'); +INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed273875de536afd033fb08e336a22fd3e32190fed5d326ab7a736af820996d7'); +INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'13c794e55d2cbcf2ccfc05de209e4fe3da9b1bc2c825e80ddba0f1bd3b96f560'); +INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d11bdebf6177cdf293fbf9be353ac6981c4a4a3c9f7c625f112f48a1c433b38a'); +INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'26d3797f2f70878e825c4136d54ab954d5232736cc5219cf505857929c5af9bc'); +INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e39f875060900f78ab7d149af33b3ebc676100f404c2f2234dc5f73c1050f5'); +INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'3a214da6917637c2caf68d3562f43007f76579b4725554e280ecd6013be89278'); +INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44674db2cb4357fe65887402b8a8cb5ff9354e668cb184e0c4b6c1f5aa39dacc'); +INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'a8b59855156ce08a864bc63651799cb1fc10a412b9b01c1438d075b2b7cd6eca'); +INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff40603b2471c4cb953f6335d6a803d16069ecad6095d9245249b4e8e93deedf'); +INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'927a6c8eb5040f4e726ab0ecb0084c5c102d8ce8ca008411f54ab101202865bf'); +INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0daa079800b4c884df0ac57046b285808ca2b754ca06764f9ee27c73e7eeb590'); +INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'d66004245913220dada079fea5c7328ec928fbb2af8454a68e19ca2cb05fe08d'); +INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a7555775af2c601ea1897914f21fe25db3176b7fbe86daf56a7cdeca4591f17'); +INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'e33d4b9bc6b75a4302af973e735dbb05c002aae6bcb46182446178b3d5ce6bf8'); +INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dd1960bcf4239862258e3148855c7c7786647d003ffa889b9c67c9aceaed4c6'); +INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'19673a9678396609250f339bb20eb1a0c2c154739e2f70e8fe545deddf3e8beb'); +INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd36befe3c3aa1f3bfde1153deee0187776b47cb231d61ca5e5dd00bda41d803'); +INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'8e053bd236ca79fa0b3cf001881b38d3d7e744c51c0efedfe4f6cee90b90572b'); +INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65ab559d72cb6690253915107fe1b3e6ac5cb9071df538b195bc9824f7f857c5'); +INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'3ee21e13eb2444384f366ceb66eb882d49a3c51cd4e74e7b58d476a3c6bbf671'); +INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81c9b30f78b35b002cbac4f11969fc1f8447ebd19d55f4c1b24730bbf1631bd6'); +INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'96bc6d4f7b608b15783e479c74788f868e73ff062cba9da1ffa7be777ae9a943'); +INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1387e31a1a20ccc66bf09fedc262e45355538402c88cb5d9e67985f1bad0d34d'); +INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'31409ff85a00172c752618f01295c454eb37a3f25698a32d20a2807ee1e98705'); +INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'092f5d8aa55492d590b13f250f7407f3a040c65415f7247a627f21b6d5114df1'); +INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'71bc0e8eac74a2c354e2fe528c869fdc07cc08341f98abbfdd943c5c465e9e8a'); +INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d658d8dbbb8163be5194106c76afd742b664e1ce6d16be56f8733a3905726833'); +INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'4f2fd461166913ef4cf053d75a96fe6e4625bef06e5125aea9aa34bafdc75b87'); +INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96b187969a1a4b479596915bb9a6edd9c7021bb6b07a4b801da46e744712de86'); +INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'4afbc4bdef20660ca67708bea8ddc4c4f7c2233ea7204be18ea00e6a4f161c1a'); +INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e06ae3817e4624264e6ac317ec49feab926ddeb9ff3b241dfee8d317ef5658ee'); +INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'3c8fcbba676c3506c4295794f066623a40fe1837f198b598902be05ec6a350ee'); +INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d004c7c1395187aa0eff76f8f508810c80fab2c149a206a408413f1a15b0881c'); +INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'88638f0f1ac6c7f277106e6c6b15e5504f21422e979f45228443d8d74d6f6e37'); +INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b5088b4261be9d3d523786cf209d1028a6149024c58345f5d3c7b0e484f892'); +INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'fbb9ed92fa8cdfc4773047f399b5b3466a070670726f9600a94e5de30653f8b9'); +INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc0877421ccacd7c145a67d960b8d05bb7bde872c9ea1c4453a7a75425661a75'); +INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'2ff3b2bb36e885d596b70c5312228dab16813e1263e9e513ef7168ed50bfdc93'); +INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c78562316f8010b5b69d559fdf7184cfaede1d64b6b2105eb3fd4d1570a75297'); +INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'b3ee8631bd3944f50861fbcfda193239a709f52ce8675ed97f64e08156fa3d6f'); +INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73ad4fb2da5601dba335edfff74ed1f9846eaab92d266b7728696cd45bb78f45'); +INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'416c08a9d6b2c2414e24eee9449abbaff1149fde0d2badd9c6ae3c83c96602b5'); +INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77fb23d075b2dc0eb5b9c96ffca5ef67e5873278edb47fafeb43e9b9828e1e85'); +INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'ddc217f6d9fb8524959a9b90bc74ebe3b04a83348436ee31bca9b27d0ffd9969'); +INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a349984c84edecb6a23a05f742661e63277b6c60e99f3d233eb4bc03a98a330'); +INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'0706da57fb5b6be4c7d7550d649a0a81d1ab0bcfe9585d65d1d6e1adc58d08db'); +INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0598510bba78fa5123d7bed09ada4f5a00cac92572137ae819cae215b809534'); +INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'49aa89250a464de193b69733053180efdc8c7e982ee742278f9fdf1a758fdfaa'); +INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e8559eac4e5b18542fbfb4e790e4edc45c32d3514583e1eb49064b5a19c9fe4'); +INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'85cc9df0b8bdde23896872d7c0e564e2382fadee36ff75fdb2c352dae90c66af'); +INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab084380523ce8dc2be0ee561bdd8e70d7ea13a5c4206eef4b151e564e664bdf'); +INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'d9c42c21e21f028261d7c948d66aefbc59e62f7e5f92b29e228a43d9a9950cb7'); +INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a8d54499982def5e68aee26810c3de6fd51e2548bff25acf1d66c28bee30612'); +INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'69885efa93d0786cfd2d2321c3758e6c78cab0930ceecf37b4f9193cc8624380'); +INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965459c4885be2035a1e78d6c308124819dae3dd201219894d20cb88c90b37a6'); +INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'cff150ce5722abd2dfb5c1787626976f21e7570594febd538d1de0b50ff80960'); +INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a95ba320e29030e421b986ffcd48e952c5fd57a28c1087dd98f964c6484fb6c'); +INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'b8505563f5ad4b8d2a5b11d397a4a2b41f031962f95cfd89a1a0c9a02719a744'); +INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e55a4c57b672e136837a2370be5c8d345e260c35da0c009c6c2b1a69f570e977'); +INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'e3734ca6f4b476651067de5de5581cdb55d1c190600c5d1f425957e51911706b'); +INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e882a74f829cae548086329ac4d86f38ebf4882f444bc95ed7ea7e76fbe620'); +INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'93796f97303c93223ef89269b9865f732d0bcedeee86a6afbd7428d6c198bcc8'); +INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f07cdc43d65f50a3bed43a503c2866232f60f8b6d77c63bc21fc24645e1dcf0'); +INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'885ece8e292d89ad318c348c8a1710640344e518226964a0ab7fda15b3173561'); +INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d464caaaa202ce403359aa75b07771f0ee14384326156f6e745de8b1056072e1'); +INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'a4462a06be8c8542fed02472befd132f446460e33f2ecb9f2dc70833f463ecc2'); +INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'043ab0fda39fdac35706b72ff6cd0bc92e184a35087c9b54aebc744de8718eff'); +INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'169b43dd0f6724ac5aac7c1f9f0761f19ba65dac5488105b67c02c86ec38ef47'); +INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fa615d573168a431d400743f41d6f69143b1f35c2680a65bfb510a8faa125c8'); +INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'d14ed7c2d616b097b6c6893f9f422462a2a7d20178d1323efb89d926af73a309'); +INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce7b83bb36a0900a798262614c00d37640de5e857b43c250d7631a94f8764c61'); +INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'357a9bc297b353f70d7f5c2e3ba5e65ccc6b35464616acb0b9a9b8a58f8e4e36'); +INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef3981b816f81790f4a40617c15b0a4731921324951046d5a61edad85b02769e'); +INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'05be3e01b627ab6f561a8200dac0eae3dd6be278cf01fc503a08eab846e126e8'); +INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d28ea6e185d0e49515f36b1a014ef658f1d5294a79d9789b98ca0cdbe054f904'); +INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'e5c5c4a70594c3cedbfc30829fb2d4cff32c34c257bb127698e4115820b5b8c8'); +INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fa49ac747b8c98aff6ffd4b34932546e66ba0a05c0c7f776349f44df2dfbf9d'); +INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'4c4463dc79d1c06b482b3fa61dcbdd6b5921f7c5d8e9fc47af55cbe410a239e1'); +INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581746347b48e6e99e40a8c9d1ef6991b1c9fb16b650cf0be386fcbcf1b26c48'); +INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'b076924d329e2f97878e84f65970ddb00696afaa293888c6f6b91fb8344bd313'); +INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c061600f29718ecc51ee7eb9c7edee225cb62f6ba821e26e3c09d97bc3bbb34'); +INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'2b887e1da05d3b23bc8a9223769f904f42169deeea7c3b56e692abf16cd373a9'); +INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa3ede4e56a307e600c3b7af4630aadcb9e0d3f5335c5497c68051663ee10ad'); +INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'02544c4b96cb48e2d8a70205ffa00d06ecb3f155fd456113208d56c0c8228016'); +INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'907c706ed33717a082a8b2e4943b245374015389e3cf831ff34caec87787f2af'); +INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'ea47fe9a170999abcb7403de5e0cad54c8f1a2c9568766cb0a8d4c4d77fc1d09'); +INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'790a4f104f8b6591ba2df0860747ea7fcb2400716a3fddc692ed0a6f2bb7335f'); +INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'ab8bafd4aca1f47b2dd9a5e57718a7bb70ccffb140b2f04018f2400498e28d3b'); +INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efa7ca1c8a6166708b7ad67d0ee744d29be351f74a0d1f1bcee113a5af900273'); +INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'fa22df1bce85473d45fee500be0eff227bdf4a1e2036e877d5cbe9fa32cbf76a'); +INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5aeeb1c65448b5ed93edba881de4fdffab6d0cc2f5012305eb9c791d602baf0'); +INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'3cb01afb82c44a6e90b685c53288f482a425c956a67c4724ceb4a0dec07ae652'); +INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26748b8974e853268f27f12b4ea64de0f83a4df818b3a9673fdd98e269d4dbaa'); +INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'70a27c56718c6cfdaaed714e4087f83680e9c0d34692764d95e0bf24f4c56804'); +INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe1a876d39eaabbb75272079b0205d1bb10c33fd8fc4caea18d2a3f1828930e'); +INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'84800a25cebb6be0f57a5818dba7f9cce6ce2fb33a21d301eabfd979e83da373'); +INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fb42d8b37f3942188cbe011869027b88a7592fc66a997ad96dccdcb64bae77a'); +INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'28ed4ed8dc77bf4dc10a04691c3d59225c7f0a797853d6460db0c12fd882a427'); +INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5272f07f1155893db494ca5161812b33baf9ca6db7424199875c933ea7feeed3'); +INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'a6247093df7d24770f60da6a20b356103f9d5422d251d6dc114da9ac4c39818b'); +INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb719fffc851a0f2e9d0e084a36684c202e0c2787209837a1f18fda089a936f8'); +INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'d0da276347f47966d14b4a8e2433eaf69194f753aea144bcfc9bba27e4e5eda9'); +INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8698b46a003ff1e3b14496fb42e82a904c7e5bce1816775e10b3acad507f1bc7'); +INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'f8fe947f769bd1a5a017e104138e199101cc5333525e81aa5246939d5ade3035'); +INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'557211f61592a7ce76fd8141afe6d20f1b4a7e95c3dd004bc3608d1a3aa3545c'); +INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'c71199947d20bd3a80af757529b99272e2130fd6ecda2e423883a686b3e0273c'); +INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09ef5d70f14a32ac7ce3afe231de642c75cb5e80fd23856ca726fc612a276c18'); +INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'a5cc6d704c958f0937985ceff0ac4c7bffae202c3eeb2d53df971b63a3aeb5b8'); +INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e72aaff4dade6dbd5ebe36a5b6d5e5ea1ba147c08db26c49f8652abee1c73a'); +INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'caad056f3ad8c7ff46ada70e53c2257d2128ff644a0d4d7a82d3d46222e2768f'); +INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8d585436677e9a224309a8b2f181e5e724e7348ed2f62efdf570918f825133f'); +INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'e25c3452542ac1e2cd00ae76aaca8cda43378f1f6e9569f72a61b77a2d5771df'); +INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fd16595fde502ea87e6d8b3dea4de4cee722000c6a45a458e30e89b664fee17'); +INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'6858286435a71d40b40b56f6f24759f78822f2ce7b79f2b6738a07dbdf46217e'); +INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c250be0a591c7ce7858b2896d327ee6bdc28fbb513db3f2cd8e2ddab14b27008'); +INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'23202f86e7dec1639fdb064afdd0025435d7b72b3e27387529e7dcbadf964d96'); +INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee23dab9ecdff6757b04efb40b1befca6152a835e1a0c60a766f0a58ca9daa10'); +INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'1b4f4551eb4bc78a688cc518647f0ec84e78b989a6c3204e6bf0d7617e2323c9'); +INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc6e7b3c0c791a368919c745654738d82b1f64ac1a9bd1b2f53cb53e7f04651'); +INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'bbee85dad1a258ed1ac260bfcd99c5666b07d4c714055195f5284fb415e2be0c'); +INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a74d4351bd6f6d76a0427ce5dd3f2e6853de67385333392408c2cb3b7ee30bad'); +INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'0d27e8b4ed0849aa3b29246a5ea7c483c4de17168e0680946d90dfcf0ae6d46b'); +INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4bad7e7fcd0d1e97b4c00399b37f5c9501e2795c665b521cc0ef5562738490a'); +INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'95e5718458ac68c2e90b8bb8d72d3f03fc49a296a4d00223dc31bf168c8df4bc'); +INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56f0ae20537103929cc68e61b425a53ad96a601625c1fa0314232ef060b4f224'); +INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'d0cd1ff9d0ffb6c7564db9acc5e3ed9b52c301a4576962bec4845206f7a6a0db'); +INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a2512b463ee4ba5ffe9907837d7274989dbd237a336e1d7d50368122f2b73e3'); +INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'19b7e70e1b295415e6ac99c33fe43a4ffa4e899c6fa05ed28f50d352c1c95961'); +INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1b47b70d95cac38fd975e88e41696ef72433f0f7df73cd604001980b17ebca7'); +INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'13f5cd7f20fc90f39bb75d0394ca2011fec39507c4a43859d9b8ac05773d7212'); +INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c11646d9fbca926e2255c9c960815739d471d1e4540ef70985e23cfc38d0c769'); +INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'b40854bd06c6257f9fd363d4897d57e215fa4d29f14994ffe0ad65f9de88d1ee'); +INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c66d39c9855c0891598b0c0933650066891da078030725a346818c8799cdec63'); +INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'cbe6a6abbe9441914de4493ed071037ceeeceeb419f5fcfa073905db9000b811'); +INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4781ae9d0929e1dd9a9a1c33c4fe9adbd6e9448ac9c8bbfabca7e11573294920'); +INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'6fece32a65c9ec7d738938ee6ae9cf64652ac4ddb9a2e6d7f1742dc9b309821d'); +INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68928172d6484573f33a381452e3700c4c771ff2b090abefdd42069d7e28aed6'); +INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'08ebef9a16f021edd1040d84bb7b43bc6b2d792e31e459c90fe21046945e97a6'); +INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c31c2ff891a2db3c02b28ce5045b93745fb1b9f140d92e3378105653c219507a'); +INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'cafd1de4db32f7d1253e7175c555eabfd9f96ee0137378e7226dcc0378280639'); +INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa63a607ba6958d67da612fa8ed8d3edfb66fdfd86f01e77c15dac31ba2584f'); +INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'a58f9852b63a7c93b5cbbd323ed123c76690898f06fc31d106829589424238e9'); +INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298f813b5afa5374323e8f5d13e2f95637a497aeeedad1bfac18d0120312c6e8'); +INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'cdd55f3a531c6c3de831a681b244590b6efe14b7a0bc62da28e03d1557df6828'); +INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'669a13c5f3b25af37da5ba9419d6e5668d452f99fccc3b9a02f92e17e11c24f3'); +INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'a22bc4a29afb0787163bef101527e485a7e4dadeee968f6d1605cf661402f5c8'); +INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61f710f153e74afa73d07f04384e5d3806a35e56a6e292932726d4c888856825'); +INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'299a2391fc96532ffc60f01711bd71350d9504431183b3557a4f2caa7d9d0b81'); +INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82a159e1c5d0b411cb9d406e50c7940f59f59e85a2b9444a6e15faa22056a267'); +INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'abc8c53fd37243ace3075d4c02069175e3fe689f090eadf7caea13b2b9c6b7e3'); +INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'534599197907ee2118e5552998d2052f533ea81f874c3e3c5c2611ead7536f96'); +INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'cab5c948a74e49f0cbf47697d47dabb4f903dc81eb4ac19da6e92d309e96d0d5'); +INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1d74527bd05a9d79b77cd4147b5b4e2771adf71389b90cf7b02ca6988057e13'); +INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'17ec0087b37398efb3b46ad09079e5f4767157a4ca274309b5ad4c0dd2127fd0'); +INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8e8f26925042200d1553b7131cca996b17b400e7d70a8b2e9a68ffb26c32598'); +INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'e4d652e9064a58ab0e01ec89fce333476ca7265e424aba95d2678489686b0210'); +INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bdbbeca6c159e3ff9aecaaccbb77c48a1d02b66b1da9407bb06ef37cfdbdd14'); +INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'93884762b0463de59b0139eae62fcc911fffbe6db0cac18c88c2a8c4faf2f53d'); +INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0a6aa4c64fc588a1734c4d4ff67af74314f640e531ed4e84c2467a6c73ae2ce'); +INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'d57ef7f5f6e466869063d59d4a15a3086c905c575caf83b27ba90881afc60fa9'); +INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'863b9e69f4a217f9dcbbfc009226d31178817d36c97576c3561a746866d9960a'); +INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'012b976ae0b01035bc92991deb361a72c2b9e4ebace40a3335348cbd5e52c596'); +INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f40cde6d37b09261ded9a3836948e266a2c64b23de6df0b67c0881c5c4d2d8f0'); +INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'e88cefb2b33e9b661b60880e3c9485cc9b14f100f50b881f549d6ef3dafb33a6'); +INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f49bbc656a996826b1f61c313256baa179afbcb790d90625ad6a2c4ebc6a89f'); +INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'9e76f8f943a280ed94318e6937005fb228f9b807208de3d9dcd118c0f742ab2f'); +INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecd898e96db44fe461915c3c838516347b137bb8e62fd79aba2cb09af3c16186'); +INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'428c05dfe3353c63e338bc642fab2160ced1da8e0f25931a5c542b432142899f'); +INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d00cd00c56ba03fb3fbec9decb487be3042e6c18d9c098771052684c90882ba2'); +INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'6c73a7fdfecb8750a259e7a97dc9007fbd9dd9b7e0d46ee203f75560791e2c68'); +INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4381e9c9ed9742983a3a408fa6173b5a7f1bb4d8670584e139b4116fd9c4328'); +INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'16e6d049172694a3cdc642852bb295e09836cd2858cb28b6b7558e45762ab28b'); +INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f074fd3203adaf347736cd3adae70b65d341ce1703aa07a8b867005d15bc7c6'); +INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fd9720aa927c0ff5cbce32988fd002b9c6a44f17a38f76c82a68a1f89b9cf7d0'); +INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa6c5a0dfa3369a34defa4f7ec2c97fb66580f671cb519dfbfc2158c436f5f41'); +INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'7c255b2d72637ac2a7798645c2119ee30426cc10f586e21f3fb3b178927db8de'); +INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a6e74f37066f49bd55f99590e1c68a4e1cf3d6672d35a81b3c93f7adfcb1f81'); +INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'94b3fb7e6b3e4bb1360b7b7298d5f8bad4f10429228ade2289ef7a5870fd30d8'); +INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2782c0fa42325ccff725746360109be32f5ffde5c0121d4cb87607b451e1e18'); +INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'0923bf654a64558eff49071d589a7d80173360d32d0db406afcd382d256cd332'); +INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6469fd6567705d726a29ad902772df19203924051e91f5c70034f14b11a43dd'); +INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'d185c9e6cd6fe6024c80b80160c212c8762870da977a620289cbed626d410b3d'); +INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99f3efae8e1feb2c4cb6bc15a1f9246a79b78e7ed5d865c52477d2bbc47d7441'); +INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'8e5b431b43db6fa969645e6451072454ccc124a1615575b1ff78f4ab684c1341'); +INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c157f2848d051bcf4e549be24b387ed5472c78c6d02d9f7901cbf6ab124b2e2'); +INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'527f9f019b46ff1f1a727796426d1ee472a2cdee5a45f0e4eda958fa1ed1ff46'); +INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4a4264ed1738c9a80b2bbf36bf7adaba2178f294cbe24cee1189d6d3f48477e'); +INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'6fae66a1afb4c424f7988994467100d91952087c75c5af3aad367ee188e2fd9c'); +INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00830e9907c36ea22f5d510df92964344d5d3c9bb1ae3111799330dab57e55ac'); +INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'aad282f6a4aa7ad11bd1fbd4faf81cc41c9df0b5bb1b656d3378ad09c41a88e4'); +INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94d4451121e8bbe46a2913a2f830b2a9a19d27456fc2f6690b666473aa58483d'); +INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'15f090c04723b3b35af3d87e819e59c9b86c60995665694e158f24d63767e754'); +INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38db818b927bf8598ca92c27541eff03f6591be7960b21e53c9d6b460fde50c6'); +INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'a288e1758d9dec9175dd29bd4797863ef91d29c29449fb0af07e51ca54974170'); +INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528420bc24a3b0787e3f45909f7b8ce11191f4b4f50bf269b7c9d3b25625116a'); +INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'fbd85a0c1add957616f00eb6e677c34cffc121098fdcd2dd57656402970959d1'); +INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2115139321408032f8a6395b3b959b6f3a8a4f29fc7b335d478694102aa407f'); +INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'70e8e442499f5fc948c0a95ac0d83cf8b6b58358e345111884109deed5f6d424'); +INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c494eb0a1a9c9cd3bc2cff340a969f7f87ff2722f85bd88c57b00c5361cb334'); +INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'bc1559545b960811c523ed5cff84192e5061421fbfc21324062ec20908d8ff7d'); +INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42aee3337615aa75cbc5028133364bb753caf2d0b0f2532aa2a92ad4cd1bfaa5'); +INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'49a705dcab1289d78e3a65d5bab0edf4c0792a6e45735fe34d121284ba5b2173'); +INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a4d60b4bc88229dc155d2c16193375b8a68ce960666354d1231a7c030590c2b'); +INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'849dad510bf5f3d3b485096bf1312dbc6bc734941350a2c519fd26dd0adb287b'); +INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'162a47955ecb28022670826bdb4a2c37d7feac1c8e7073a2c05cac8ca789a0c4'); +INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'824e9c7fdef000afc2602b1ec4b684e3d4459fd7cdd8da0677245f2307c6ca49'); +INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7509c700fde8d78eb90cf007bb4555cf2069892794f7c3566308733f1138817d'); +INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'aad403d0d16c6226659ac62cf32341617f50fe68bcddfadc7246ae05e90f7411'); +INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c398f6034dc1c25abae3dc9fae3e0056991aaecd3269e935c387cae458fed09'); +INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'189ad95693c347bb9974cfa6a2daf2bdaf3459e2f3a929714885fd874a8a500e'); +INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0bdc4d936acdaa380d21a2acb5089b73d472c81863ef78d7a47c8a0a876d61f'); +INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'593dfecf0235765c271596a0e0b941a8427b32f380aea7243efce9babe232b69'); +INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5dff052f682b20ab3818e480fea6e806827725538b8536f746b962f767442216'); +INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'6bfdfddd4f29bf6e431ecf167378b1650a28a1d353d16269909d2cd4d73820dd'); +INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c95d8af0c50d9b14364c21c2a38d28f8d2659223bbe427f1c6f6dea352bfb8ea'); +INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'2b251e4d3a7f3adc812408268dfaf1bac1ca3b0874fa4ed39571b52cd18e402b'); +INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d4359404bc0564798130bece8b36fa35e8e78be1f8c24e5170fbb661d520377'); +INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'10ddbe73839910f5172c6fb8a63bad9c2ab22598cbcd520368b7e21edbb3de6a'); +INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96bb6a9ce8e13df08eb0d1066c381acb5af5b8cc94a226af7b248c07b5ed3dfa'); +INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'37ce247c63ba4b5c6839c44d9890b4380df439ee83db30e3f219f89aa5ee2e2b'); +INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'caba6d09daaf745b65701048cb686e13aa8ff9e85aab4ba201708da1e42aae3b'); +INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'303a7da48b9c0087609a82455bdcc851f1eeb6c1fa9dca114f66c8a562c34025'); +INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'450cbcdac44984d3a79c3507f77f058c44ff3438c5d37c6644afc3d7a7a8e58f'); +INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'5d52071658c0dc31845e7271d465a4443e1718e380a8d81c956a5995cdd480cc'); +INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'624413c5d106fbfa45dccafc6e8c499650cf9735d7fb37ddf8727b213bee2b09'); +INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'3ed16a509a4e59a69b5df9f08862e829ec384fa5b6ba8e3e29265409acb84416'); +INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20675a51655ed48056ddf006f0cd7369167d46190bc094ad80f469bd1fbe628e'); +INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'e2668e18b2db35d07c60ec0f26ec8a40071003eab4f6e30f59d802ff8e8f3ed3'); +INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c876c7e596f89595ac0a0a63bc02992d5abff86af94398b81f849c6bab6e16e7'); +INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'f791c3e04bc4aabc185bec57373c0e0bed74fab6a30dab31b766a6c43e9ae477'); +INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed02497742cf9452ba2f7f12851c1c288bccddeb592f5e1b71cba281a6219143'); +INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'dc9d519b611332e40201ed5b014d9f54b5a73d0ebd1dbd60cdad71519b1b0050'); +INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d899fd49a9e794ab5bc652a2ceaa83571bf2a2c479b02a8b8268c920091774b'); +INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'5298c342486ef9aefc64c08df99a11a2d188728dbfe10a4fbcddd06ae467cdb1'); +INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25d2b757e323348eab07a83490d4c7e882912ca77fe802ae5c40ca878ff981ca'); +INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'11322dcbe88061a801561ac3b832713ee53ea7f90218aba5b215eaba5f4e5137'); +INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9c3c826368469f82ab75696c5eecaf65891e771c3c98b7425a10207d3f05296'); +INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'106c05804cba4ce2290474a4887441df76abbc24f61823be8322868e7e0e46d3'); +INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3320dffd27f632e0a25d1edd2ca8e1e10c85b93a41faf94beedc1c0997aa786'); +INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'3654d7e70254465734c3ff26dff4151a171d67965de9d485e08e289248601d11'); +INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6091ec65003b6f766cbb3de07a85e3962bd39487321c497be6ac7110ae95fad9'); +INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'fa51533b20085be0dda8384508cf9050ae31023214420f84095f331f1ea7dfd5'); +INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4e3d1d98fc1611a7129d93e8bfad497c4a0657cb8cbd0f575323a2bfd72fb81'); +INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'dc0836fe27be750f38c8a042c849069d595d3c72237ae33b7f9018b06c7c7812'); +INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9ea1da8d6bed90f41069ae3468226dea0a1fc17fbcce8875e0272ae2ea2ac9'); +INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'6ee4e1ea7abf481f30d0cb0661efe127014d5624c1a47ae213c0371fde825ec3'); +INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8e731c95e7bc960f3608f5e198e0ea859e063c04ea71454bbbd355f58a2aa45'); +INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'59c2b30e08f985433f53e1cce2b8dad9731d8600447c70c3eb39fd1f8bc1cb85'); +INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bcf1a6c28cf62b6690f9eda6e8d8942573bf38208f4cfb808b3945be1d07210'); +INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'cc4ecf5afbb67615effca9ba66e57150a2c1d2a2b406ffb53b3655419b05aeef'); +INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d0b3cfbff77d588eb552adf43c903caecd1bac9b2d434474f4570e7820e9450'); +INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'0b1f9e8fb1df754db4bb7c45d07622914a1e4f893885d19534c69b14acb0fa7b'); +INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d9f0d335f617656fa0ae21acce4bdad1d0b72bf6f11c09e1a178b7cc4f51916'); +INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'49a19c19235987ab6aef6c0c444221986b5a7cbcd040e517cbd68d61c90ed30b'); +INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'230177b8b6ecfdf820fd3478da94bdecdfe93aff11774e381576e44b587c45e9'); +INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'253df5213e91a88e6013243808312fe0fea2f76b1ed3633f5275437e08852617'); +INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd2f186879dcdd1b11221279231b58e9307e1e97d900abba9a0c92c8f2b460bb'); +INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'8402e93c6baa36b467cbfc63bad0e4570b36aa0bec511154316ae1f26c047f3b'); +INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad568e7937c844eaaae0f159e00fe1865f0b66a47e8f6854c1210f551a86b70d'); +INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'61c70200afa2862001bc383953f05e93cd301eaac0d2a121670f0f1fbcac62fc'); +INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8e17b96b128d0a09d86e0b17621c10ad2998f83cadffc22d93e90ae1fa33264'); +INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'139dd7e693a26f5bd3c5d5abfd8a8d82935107827141caebb3141f9d22e4c84b'); +INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d794d732f234fcc059478ce482fcdd16fc763101f0f0074fb59852066314129'); +INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'28404239a6062b39607403ede2fce94256b8f6a5215c748e373ea159c3fcfefc'); +INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'806ffc4a5f72eb35a5c72296d2dd24e586fb2effc58151ee5150b3c5040525d6'); +INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'7dd012a757c3f3f58a15eb520c83f7be375ed8fb9df4583e61245b6fc4820ba7'); +INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be1a8bbd8e488e45953ba6275353f4af9f5b6107743177169f281c6f541d5952'); +INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'f5afccbf8f2625e4b4271c7ffa3a29f3421c388a8c8df1f0056e42b8663247c9'); +INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4938dd445d84d36c954b73f320bccf2133cacb45f8ac83a5333f239686416847'); +INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'904ae829e4786ae35f110b20c78cf988641330b3b060900571757a9616125b46'); +INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'802bede01b6cd579ec7b20e3890a513f4ce5de6cfb1a62013a3e1270a748f893'); +INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'1a3e21707278ba7eec6ff501ddc878cf6606b6a5a5f27793d2f0f3aae6909cbc'); +INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79c6e4d682aec6660d7452f923895efe14ed20f4b69bce56a86882491d944e9a'); +INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'41388fefa79b0178b5e85685814ba9a4c89db454d46f5fc8992e33c082b3a708'); +INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bf7a7eb38b2f8965b669b29cfcff0e5fbec16fbc69e0604653d1156ad979ad6'); +INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'803e6ac6f1757084c717427f1bb6347b8b73652f6313c66f571017378bcd7b59'); +INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6810ea23f5aced87d7de033fef7062fbb60325461522392dd33440eede0a8235'); +INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'ae4dee462529f5c9b9e3175180f255c04150669e2f8eb30403b7f71de039fb8d'); +INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bd5834a724edf3686109eb057fc7482fc93e41af0d122ad91379b10f910491f'); +INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'e04a7299a53327a6c3a14d0fbdb22d012e5fead961dcee642d89e2f785d8f3d9'); +INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc884e318a5717aada0892f60538be22f114dfec282fc2df8173984061e8071'); +INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'9e38eb02181a679e63ede2b33c71b47f374a818469f21c8579e85107efa159e4'); +INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be37430f88815825a5ee52c0f97d7081f451848fdf3f92f23f666e315792ca88'); +INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'c98617714bf9630d64c61b1ac207ef9dc4f89f151806773dc28c3563d6109db0'); +INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98bd0ac9ee3433035c4279df2da8a8e2bb6952105d78faf05b488b71ea8e915d'); +INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'55c32827009833454c8c6cb23019b2c00bbf104739cf08645c0d5af4604ea4c3'); +INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a7e3040ffd4f1d8632cce13241184ec9f348e62d3554402c60c5ac977cece8'); +INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'547f92062690ac559a92b2962c7c930d80c5b3bd06751397a2dde4b1e3db7f50'); +INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce296971d53f20cf72af15dc6e1a3e4511b949eeed4052cd6a7a9838b5aea67'); +INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'6c8bcfc41bca51fbac916fc3608ec28bbaa8f684d0c3088a034f3e87c997a07b'); +INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04b1a700ef8a0d05cf244ca20edfc62a6b5424d08f5d8bcd8c563f0f43e0eb85'); +INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'93f151ed30fc51ae8d10d72d49197a47e5b5b947fa34619bf78d3c9231d2948e'); +INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91b983b8b50ef83cb0cb41eb4efae76c083e94310c4ccf748ed7d9e263218dd8'); +INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'9ea2ed8b090bf989efd43c71ba85c497fd1dca2db2d79e64689c6819deae7ff0'); +INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52ad22bb56902c2b8a2c4f10fcb4ebd47a6771977801267627486600f7daa786'); +INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'f4b40c55d7dec4494eb7ed51eb9d3d00d9ad3d9a240e972724199a6267f0f2de'); +INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5bd9d84fa41437e720f8a3b0aa4711c4ccc72401d2b633195823bfb1e22451a7'); +INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'4c05a2a421618151efb3c310279a1ebdeff95549eaad025e978722b6ff0840f2'); +INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'194feccad93faa655ea1d4c641bc9b6d959d7ca2396a96b75d97db9c63d5558a'); +INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'845f587b8579befe0c1c504ed93dffa7c7eae6807b255e4ade4df92eb8e897d1'); +INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ada109cc5f3b0e57720fde628de92383bf681afb5d9810dd8ddd2319d2e6f529'); +INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'b43e58dde0385e41e08cf61cbd2ad64f553fc170d9a4435591e028feb03094f3'); +INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65c8519a2f00357d1c58d09d0cecf61ed0c691e405080e0f22b16cdb7136e783'); +INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'fd41ccce8ddd3a46c41d01ec5178376c0f8ab70c4c359ad62e853bee78f7c43f'); +INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20e1c27ad10c558588ec5b9c14a7dd573a475ce71d9874f268dacaddc41e19ab'); +INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'b7df44f3415ce5d9dc97293809c2009e26c313119204b488cb953f64f0ead78a'); +INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b402286ae3d052fe921756ee297999cb250e82b609a36e38d6732a024cfc71f3'); +INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'6795c54b3490ab4c3a4ff54a7013fe3a5ccd3c8d3420a064ea42048b38ac1206'); +INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4565c6ab6a02f11d25c7238d436396ab3ff2cb3f37ad4c0e39c563f2d920ac0b'); +INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'a6b5a7de8504854dcf4236119abfad050bdac0567449b5db1bd70c7fe09f9a9e'); +INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce209022752e3225fd7111481dc946a9eac68d199c2dfa063a115c978737760e'); +INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'28f39a705f825e8ae9e6392e07a8a471de08939b7e6fc52e30c3e7e6eac91002'); +INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7395be841f7ef9a161ac15b60a5e14f6aad4c3d3beca5cf68b4ce126905cbebd'); +INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'ebac5c4b9e6f19bff6524096ee3d86a5aabc87647c51ccde18528bb6aefa1774'); +INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02ba9c856c7062ebf1fe3084be1b6b48d29a260067e17c4eca74f0cfca0c9370'); +INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'f45b6f699b75b9113a71f149a347be2c82e5d1acb277de804c945428b5c8fe9d'); +INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bbd6d9723202915481f6b46704d13e54489d94ea9a7ff4c5b2844a2337659d9'); +INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'e0366e706970cc43b588de1e759a9051993a06c66dfa419443c6f290a2a5a672'); +INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54eb7ee9d7c46a2e6f6b7c0930be745950efd90913309d3cc538854a15af54e6'); +INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'15b958b7fbf246128f47a4b8e90cf0f75bc5827c205f28145d34b4e673a3ab2b'); +INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e840dd277e63bbf6b5f0706ec43acf274b38960f8119d28023a0a8d187a2773'); +INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'4c64399a659949ea9ef00c447132d00f9e36ebbfe42923c27fd305aba378d0c9'); +INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21cad96b5687386bf75151c68d3350968764f63652c60a7c0d27eb2361339a5d'); +INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'f1b4adb87d61794fe53f2e368fe08dae31276fee2fbb0abf492feca00ccd8fa7'); +INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1e28e43b4f5b56259916e4079446dd992486c72d7f0fdeffef1a9e30006e4da'); +INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'f23ac124ed30516ea88d8722c364606787b1184e0168d7bfb46d93fe0264d08d'); +INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6d2cf1f2e0c1893128ed25c72bd31a75aa0e016ef3f2cc7097774a87088a0e3'); +INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'ca07a0e666f381216566b74460d18f745c5084d83bbfd1aa2f90183ff187915b'); +INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37c984697346adc5e7857350aa7a7c405c85bef3b0c148e4c1ec1be2860e331d'); +INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'35682790c82095002b8059b836f1db54d4c1fa0ada9219dd5eb1c0e93c9acba2'); +INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'511941455d1b9f3884bcaead062596ec7a925bb60e2198e6ba28bd0e9ccb8310'); +INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'e5b8730ba34375745ca7d8cc133c9aade4c62a9ca2874d38a66355444a77ca1e'); +INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97ec372cc5b9f1683a88ee38c9465613dfd1fc4359077bf4093d4b470ba844a5'); +INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'a3e9c61a169926c2c0abde5567e171b5a182d4574843a553f404914bd479b3ea'); +INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05bc37b9b7db988dc33563532bd01617cb9d87da8a88d39af811666e8f1e1114'); +INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'42f6820e6d9b09ef2788446211bbfc318c0866da289a86a0824e05488e8822f3'); +INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20580a11f57acd2a7f0d27312795141077cde393a6a565e45d09d5a4959f5a66'); +INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'117f75d51eff860729bd7e6731f5297aed566f30075c8d8dae83f4a544b0d630'); +INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f725e66e9a6d45176bb0f853e909768845321a382d655f6f43df9965910ea3e1'); +INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'2dbcce4539e58a201ba965fb4c24260e02c48f3a40e1495c680bf270da779d37'); +INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25a56665aa9750ad678e6290da37bac1c0d36466003c5b53f9a4d440024a393'); +INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'6cca3e1cf9f74c607ab1da18be7f53d57dddc3ab5443a32327f016d3fc3f2bda'); +INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6e0add3467c62ca8bab6e4ac6291ab255c30dabf61f15528b168f836551f85e'); +INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'79b0817d52315a460fc64d1a117bf251184906f25498825d7899321fca5c32fd'); +INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c799145e531f7070bae5cdacb4b72607b5b876868c1c7e5408d63e34f569bcc'); +INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'4b1a793358c4b1bfb49b095250bc487597e6e2541f1b92e2ce4c8162fb78ec09'); +INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73dcdc82745293422e199ee218292b22220fd4d1dad19c901f2f7e23f152451b'); +INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'587a93c5a49bfdceff1a92969da2a191374b4d19f550b06359c7cf1880dc1c07'); +INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc0c6e534f0183ddf92a62d46a3235a27c0bfdbc444d9764b16ee656f0029a2d'); +INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'ce1fa28c6dae26692db645d9cb1a29440a4a41440d820029f1fc9cf7b45185f4'); +INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b485113b5900fe0596ec087d1a7c7ec6c12cb04c7f81b61d8cde689c2beaf73'); +INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'090571912821aef2ca3c80ca2ac6ed29d2023bb050f891b8b1aab9b465a48865'); +INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f72ae757ad04bf45cb904eb8822bc61c878e76390025124a309f5048ba9f5c6'); +INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'39566245db768a897a19f5b8b9c75f516678542ff1c56bcba79a9f844b86408d'); +INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe3779b9616005f024decefb465f8bccf5e2602ae2fb2f0b36d7a52ba1b7ece'); +INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'61dcea8cdc2b39a00a665f2c02a758a00ab785024c06047a84d0a8cb070eb496'); +INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70da718bd7b2f44f3ef71b970a091b2c9fc277582892e9750a4722ff9fe114d5'); +INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'6a3ca9b7b0b592760b53902247a453ee0d18f2183c5d959e2712b3383e860b68'); +INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0af4bc7a59c758d65743fe223bb122e445713f9c8c3e4e4071ddba41bd16fdad'); +INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'081387e26f66bac828a984d213e52432ae7a2f1614b6bd63031531b0f7099737'); +INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b6e683d24eac23435fd93d514483bbd65ee9a92a070f6a1d4a76697d7640f7'); +INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'8df5b1b06e983842cbf6adae9c0ee62c0580f4ee515df08d0466e59d60944cfe'); +INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a43be1c7867c18b9f0774aadb7222ccd531499c58ee666f93f83c39085b26e4'); +INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'23b145266d79241ba4604b130e4170829f18309e87ddb076a4bb2c380bcdd0e0'); +INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e732d2b0d135a0ae2681a63363472dd11f1cd1107b1be7de75ce680e533c10'); +INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'d9f18adf9497ceea3b524a37175d9b5727c94b28b2d63bce4fc357afe8566a1a'); +INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'933bc0cdae4e52fdac839cb1d6fbc47b382f89c62118234a450b910c8a62d903'); +INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'7417101d1bf7613f6e562132a14bcb60b291e37c164296f06caae0998ec6bd6b'); +INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a18a6fc591c87365f476ee41076fab71e59512d9cd6342471e86256ec8a1012'); +INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'7564cf786dcad8da630dc300cf6a4c551603ef511d37f6119dd57038718d6976'); +INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91a629e982e46ef359ff782da98eb3a271df5d19373b9674fccfa7a8af2eb8b2'); +INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'e2bc5120285c36a4642391d43f4276c8fd36477996a5ee0a7745a107991544ba'); +INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1753d8dd3f64c932a16379f8af1a6f8090e0b61375c9f0eb0febd327f3ec292d'); +INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'8510e02cb1820ee0ec2bea7f652a3d6f044e94f985b8b7729c81a6d4c4ad10e4'); +INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0448ae8e37b142b705d7ef0ab7468383f9c37eb6cbe307f568e936d04d296086'); +INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'aa3bc8ea07f2dd2edce37e194acbf9fe81ff759c64152746ea629ef40dcdc8b8'); +INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebc364eb2bf3e265679dbf3a2c7d817377847ee82c43097ee0a8191ece5d244e'); +INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'fd292142b82f55dd7b03168f12c85c69bdae599ff77439c1a2cbeead9cc0a7ce'); +INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'052099698436f3904f3acc72e2b3e8266ed19951b910e6568fbe08e5cc1133ec'); +INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'64a7d18578e5024fe7a2a6477b3cf7a4654564c750f9852ed67b2f672380f378'); +INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98095e994c7310221b65b34563c382168a5a0c8a230021c7d26d43a95fbecb99'); +INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'8051e37e8d9d20b5e3915668ce8aba618c7dd68025a9690ff97afb6b7ddbd9b2'); +INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81705b0032ca7a23697815ed3b01337e594ba1f57235106abb15e313c5b58987'); +INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'6dca408667afeffbf5875da1488ec92de431854125a87b0d228d74e655640c6e'); +INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a592b676a46a3f176ee35f572c1a2aee831db9f3b9f8ad9535b9efe180aa4d'); +INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'c14a3b8eda1b10cdac0abed866546277dd10e59ce9f9a25ab4bbe545c3f2c1b8'); +INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8d49b04f6588217dbe62d64fc250d4b985d251d482cd6b3541abb7cf90f02c1'); +INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'fefeaa89de64f6a7797dacdbee1c691b1f136306a5c9bd90743d3e89bcfee6a2'); +INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6494cd52fe491366da72d4d19301f067c36827d1cc6a3c4e7ebb3e349950d35'); +INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'e8acf415cd49f15a328afd565cc4125939361c037744bec1783dc25e3b34cf89'); +INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5a0334758e2ee1efd1373eb4ac9d9f7cee44818c16a8757b1854ee907101c84'); +INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'fdaf6e893404e671a790fc00f0e7c56f01268ba9d050e6a644e6eea5de2f6857'); +INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c571f07b16ce870417b1ca17d34db0e1edec0ab36c43d62e0924b7373c1a4479'); +INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'3bade58352fe5a27256978e4c89bf1f5617a638a57508fdfec81bce65a5ee8d6'); +INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4822ad98136f966f2fdcbe9c80b94bf872ae45cb898d5f212adca228c2f33239'); +INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'9831f08a66435b186c0483d23961d9a63d29be75503246c811631599eac2b745'); +INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34e2397a4e6e0140287d736cc08ce109408c9b2aa51bc71a4da836095e76c42f'); +INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'01238e72d30b4437063074b3a0bb0126a33f76b446857d849fa88d05f45119f2'); +INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9221f6d71e86b0756c24f6cb8650c7c3002aa6eff87e5173645bed7776f32ac'); +INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'00e06f8949ec94a441c897d99b6a3c11dcb0a3df6335dd25d718bb8cebc50a8e'); +INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dddabbf93ae42b73677f6fad54a3c4ac050aa3163abcca0b75ff402a374e0d75'); +INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'bc4fdc372eab5d4ec6a41e2ae355d4cc4bc2b068f44ab94f1f6c7315bf58b2df'); +INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b233384613acda1dcd4d0a670105b8f94571aa19564a08c29f049f1208749b1'); +INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'5a93ebd8471a09880e4178670e1b87f27d6c4cd12e379383604da6362ccbacf7'); +INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afd4ba135717b9f40d6ccd8a85bc64612c31003eeb0ba21fe4112257c7c797d7'); +INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'ad6b8423d5401e57b6f4c772b98df1d2cdde9d3ee69a19ec95ea48bd452af030'); +INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fd67c144cb98b2653e8493efae070d28108023e03bb3e1694f604cfd6a32164'); +INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'a30e4cae4fe0ad8d929e6ebcdc93c6d8dc4a2244817fb0934f00daac215694e3'); +INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7af8d595587d10c5ff6d4aaa23680cee70b6dd695779708781b9c0a6866ec829'); +INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'66cde998c8ed074500d12584f957be6d396201ee369ed45af509f647596ad8b2'); +INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c81f5140ea60e18a4d7b88e8de021abb81a864797c34ecb997e5aa664e0bbb58'); +INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'ced3f7b80493e294fdef076386fa3fc21883127a3d9269c5e6a095f9f5fdca68'); +INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96ca92ea8582a8e0aac64f750204967903f6b19d8a1eafb85dbb5ceded735a6e'); +INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'eb08baaf207fe995c0a662cc6746cb6d9bf3fd700c8c17ef3020ffdab4297d71'); +INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a3a5e2d6352ef6afb274ea622b38416e073d12446282c10504aab616bbd99c5'); +INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'5ad7e29efc4342381ed4e14cf87d805c321c5eba63fba5d556e6d906ee59bfcf'); +INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a569091994fe3c1e30356948c70a0c86748f9bb3e13fc08fe9e871b9ee106b'); +INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'8ce1ba84eb0b3b12beae2e7422eabf828699f5fc274263808b4b415787809fbd'); +INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f00dbbf9e89851ca4ef6be00dffb98597bcae19ec13f5bb4f945bfd143285bd3'); +INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'4e1021d543e414bc20ac80efbece5fc64743e4c5b962d04b7bacb18116ea40e2'); +INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c46f620a374238e29ac21749fe3160f9cd68115cb26fb050c601200f40da2567'); +INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'a09f58432640a49fc9b1ab1a20b27de4406fd08b3cd3d3880121ede7a9a9e6ef'); +INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67aad9066ada1ebd965e7459a4ce801c145947a0812a81d8d30234fd88cffaff'); +INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'25065085e332b8b2599d271c137cdfc9626ce5ffe7dd9b9ad5ef412cd9b8cb36'); +INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c56833a237d067f1ca31b95837740f80c2ad7730e807f44906326a04691da1a'); +INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'49499082d3a596c926b0a6ce96ed2dcacc31422a755193212f12e40284e89980'); +INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8a2951ab754a1bd8fbfccb033d09ae140c52dba58af4019b30d96d06a9e5882'); +INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'e9c9a9792a8ec9ae96aeebb739e06890819ec5ab6cd159e654144b84ed72f6ff'); +INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5578a5c81d495974ba123c4a10adde7c015283f01bc179739693509fa7dba288'); +INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'1a565fe894c74d0eb8aa68ec6bb9b16ad1b5ada5afbe7511b538522e95cd03f7'); +INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eb6a049b0cb4220c38f356781b293735965e292e17003031eac6869dc0fc2c4'); +INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'d8980739a7e973575a9411fd06c4543a9a5a43322d1b23d766a6f87f188d2845'); +INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e12725d34ba4a73f7c03ae582339af480e28cf6499605d963db91e53517ca92'); +INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'68037f440c329fa58800f6a106936a5ef6ba7e9e873b2b7bdf3991dc3371ab3c'); +INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40188af66ec8be7dc94c0d7f71962c3552a30de0fc4bdd11d8ba4aba0bb8eb85'); +INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'a4c84ce92ff814b9ee59c595c6c4c1929c51292a3839e19564056aab8f152c84'); +INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e20f99e63a7940677a0b8231d0da4c73b92af214a805dae7e95748dd78965c7'); +INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'04de0f1e3278e73a7f33eed5968286e633c545099ca0aa04fad3bbeca613ec73'); +INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1920c08215d01884f71241f2c3471bcbbff7cb5a9838e12711bd153101c667e'); +INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'7e063ce6cbb3af29eb4597d7617cc8365522ccc70b35c21e10b5bcd83a70d554'); +INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee666d625b4a291c2c10d8d8e74caf5dd5c4825ae1e50f06ae74db46514c5a79'); +INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'5597296d8979dca77ba04973df70f87c5e547173ed8ff4adc6a4252a319dfdb0'); +INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65f46c37a1cd5cf8b7a1883d3e598f3a44e2f8a34e16e5dac8b22cd73c679c9a'); +INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'d0a1a37b9d3cadaf1e5eb77cabbf73659b5c3798e0f8916546c38719c432657d'); +INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8862366c8f8489509d5be49821715197b378c3e774a43d6fd9a0fc14c850b9e5'); +INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'05edb5be4b62c93e52c7b36bb2639098a347c63c46f10e1c92fd9ed1be1d98e3'); +INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2175b4ba2b9b00bd935575b4800d5d0c1f388a74af412521be8837eca650d0c6'); +INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'b96e03e5262f59cff5011a3775de1981d41e5f9bdfc966b5dd10fcefbc98fa8d'); +INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d0d6e5431aa9d603c490cc83281566681aca7ec80694ccba60ef0bd5a50705'); +INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'2e0904eafc00b75f8a089a8389c54509964634ba9e63eecda8691b547ab9a6bb'); +INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2a047aeb41f4e3a7cdcefdec4604063c03757ddd67600bf7c92919ce0fd77c7'); +INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'99d7ac3f9c516c0baff5e248b588501b5bf182152f995a534ab33d83340fdd74'); +INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13342c076220992f3ce3cb90d5fd81d396bc56c2d16b570b8d2034dd217faa4f'); +INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'72c9f9027cbd091994046d74b25cbd93f7050744669aff6b358471c3c8d12e11'); +INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'774c95c5b7f84a80a0bbaca56ac6991b338a24260e074ccbfa98673016af6124'); +INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'93bc96b74c1479fd2ba9eac2610dcc7e70f650c61904ed0880d02cf640b2cf80'); +INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca411d886c835df96f326f05de649f04e249fd73987380da4921d42f1df49ea8'); +INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'58715fd16d6887084bfbe5b807d58459af541f5c581758a0b3d4368223444dd0'); +INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d5cdde1df06cdaaced217a9c4d316a8c7c3d53341d7ee749afa0d39b2cba946'); +INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'7ee5725bb5bd2358928ca186e11c9d494d06939e8142a5b051ff510e02e242d5'); +INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1aff8f15c607dfcd49b8ae4c7bba4d096e5224e5bdefe1d214f187b00d4d1c37'); +INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'c9b941b82ad0303e6f7af1367393355cff61d68204198ab59b1f84038608f72e'); +INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79704cf6d2d31f6687a373114d19019b09269ebf63df2ec7b4291901a984a54d'); +INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'3320d025578acf491080052d30d41ad8c8e5ce69f7371983e1a1d631959a2279'); +INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb77ea43064f376e8b964edcc3857eeecf9acc3b2192532f6b6213258d402524'); +INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'0ffc35b556c56b498bee8c586bfc835585eba3f51e7126995fb18fd007cb10c4'); +INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4df559e56f151da68328a4810136381cf1ddbd72e801d98b61b25c7a6dc4196d'); +INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'7f0317a86d261e346911d63d8465fc42e73a7da0ff86495a6eac3cb8724891c1'); +INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d91509b341e674d47edbde60b1fc22991e1502611bb80facaca5628ac9426bb2'); +INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'0eef7ba10e0c1d9438d2e134e4f23caca26ccc6e771825d7ba7576b48524b129'); +INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afdf83aa677f57cbe12e61335f09c3fb7d5eea171d43fde20fe09083252e950d'); +INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'47ad7282748978bd99c037b97827eb312f6948d5c2cb8ec4c58178d36b9af1b8'); +INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55a33f267492a5384cbc2796106d03245075b360d9352fec63935babdf49dd20'); +INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'f06958d4dc70938e664f71bbaa9fa5f65542847d3bc130a8f2b42e16f90e38c7'); +INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bf1dbccc84b63275341419f00e6e05d931278391183cc05bf51cd9f656d1a95'); +INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'e06fecc3e2a4ec04f43d38020224022a179e75f98ac936a4d63972846151fc97'); +INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da95e4ea1fc6edb977b9de0139b2dc543c4e58dcb9b536ff6c0eaa552f22e677'); +INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'aa184548997f00d82f3dd3122e5818828c29c3cc9c65f7b43b9df48e3bedfc6a'); +INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeaa60319f9ba666197eb7b62f95b8da4850f86907bc129eff58639216e68e1e'); +INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'76f946a7d0e5dd775d5b5b2e46849b94a0fb8b4a5f4a2ade53dba71785dab8c7'); +INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c48e2545ff01b08653266e25ba77ed3cd362b0a01ccaa490d0f0e97c68ec262c'); +INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'aff33d97c98d41213e43f4e29a660d2115b7383b2513c09874e0cc8026eeefdf'); +INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'221c54e3d28ec973edbfa7f5c8b5cc359177a5f52af4161d252d9fa7f878cc0e'); +INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'665daf00679568f1627099ba62a5b5767ba6ace8f9d6eb067ffb7be9266d4e3d'); +INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fcb89f7f6f7dfc703ae329edec4eaab4d66e25f4b1fcc9d6ae5b3986437ef1d'); +INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'6a1f094dae876f2f6076fc27b57c113ccea894a52e1438021824f54c4b3cf9b9'); +INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'222f18e83fde760ebe00936fd26a2f5c3aa2adc0f2a4380fd1b07861840b50fb'); +INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'600be87bc4df3737a707f57a52de870954d645a81a594a3eb4d5a8a7eaf17090'); +INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45c1b0963b8a9b18d51b05f59b9606dbab4f8494071cbae56036a60e3931200'); +INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'8115118305403cb82a5f1a50942b1c4e5f443907c3957e6fa878f01331f96028'); +INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'249c8bc909469c6e47bdd69f656e66970012a6de51e87f2106318181b2d02eda'); +INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'1498976a55a3fcdf603eaaad1cfd07a2cc0b7974a9844715ee1bfcd141f9b039'); +INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4219b2234c5d019b9bbd88f7d98016baafa56bc04630b54370b843e7b4f236c'); +INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'385cc6eee0f36444ce7ba7c88c69b8ae2ee4a4d06d08466f593ee61ee8aafc55'); +INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb0679e7af48c48995bdbaec54c26a3408049ca2b2c60f253d557472793352ac'); +INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'6118b695316a09aa485e3a7a732318c62716e8122977cd69c38594c3f9a80db6'); +INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9e6c72bb35ec275cff0fc3e233a11b6ec45f50dfce241d896f9f0a0acd541c9'); +INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'6f8e53ba63ea2cfbde174b7b4aab43511abfc41084cd7d46c0a519a2f1562976'); +INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0c6d12bfb615086351526ab3d0759e8c1bb069c341a2bf9e3419c701f06f3ed'); +INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'ad25e9a2a14703af758fd083254bb2cd1f5a6686c05feb924a46a81c1bba7a6a'); +INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a0f9d7e264b2e5a27af285af8f4c8974ea1aef6332d3aab68948976239b965d'); +INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'c581dda07f0e935adc46975e703e99dee3ac05cdfd6bc25960d17c962faa22f7'); +INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07cf930038abe05df1b8469d5eec98a1679682da3d3cb7755043cd3910d49cc8'); +INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'2a7a375b1a4bb9f866a3fd0fc2a051bf748281a4b78e7cdf59657980a4171027'); +INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'739a1b5d9fadf4a6be75bc8f7624bf698be8f4d046bd0adc8f21e6b8dcbf9a18'); +INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'6990bca05dd0935ebb81dd1a220114ab32d66051c85f8f3ae360c87f47a039da'); +INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a0038a9bcb3b1c20a0bd52e37e32956594450bedc82efb6c525776ea32407ff'); +INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'d176cca98a39a7a04b8a9937a448cb50be4078a661145e888d19c454801c4fff'); +INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3430b5afbb60ce4655b816d167c222dc9a4d2001ed115929763bc8e7062216b'); +INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'35a8cc5a7e28946966d3f490697d8885a9b5988d7ec29c9ca72ac2f081f830b9'); +INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd8ff5daab1b5457fa08fb8e3933620bea7bd9596f079d6dba560b0f0cb9fc87'); +INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'420843921666bbdee55605804e658717c8462c85607af507dabd54d33fcef727'); +INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24277bdc6a856208fbba4f319fe3fe58fed5cd0b1e567b89c924b078b441e0ef'); +INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'f1eb15ef84670581aa49c9898e0c8b148b169a72952dfd6d7250e73c048261f3'); +INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43007698ed546fb805833524589a4929486ffcebc2b23a5151b59d9192ebbb18'); +INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'def5dc740e9c5d75d46bd115700731229182315466bcf0cb9ccf0a9c80ce5d4b'); +INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b87eba54863022d1a33cea974467d7cd4cd7642c2de5787deb1676a973778ba'); +INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'c442cd2203f99bef4a5bf09f4ab0d167f116ebcb5ff4dc2f82d205cb8030a6b9'); +INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ea697c74b4615ad97aa86a736ed5540cf7cb03252e15517f1471555a9f1d60'); +INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'936daedcd6c8f822542de3843ec7d9c70ea89163ed92fa4926cb854ae590341e'); +INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'695c7241887597488910b7627ec986eb4074f449566df0bc8365b70c7461194b'); +INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'15173d48adf15a6cb0742c4f8f754fb45c8312c7aaafdf8dd8eb9c45a338a1b1'); +INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae9871ce96aab6be5719ca38c2660c5e0a05b80196f9c8f41e6b75d8e102efc8'); +INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'cfe06901d3cfb1476dc73800033716adc662e9e2c6a5b38241a14d0a77bf73e8'); +INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2179e256ee179815d43d0253c90efad60ba68b3a29979b58d3aadbe8f93404e8'); +INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'b87b7bce9a7f4908acfe01a4580becc1853761e1597548d371a4819eb6a173ab'); +INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66801dfb120569918a0af2e7810136753f17c407d278b7c48e7b6f1c0c8defba'); +INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'588758edb85aac19db5d0ac904c07e43e7fb50d8ac88576325e32c7a8590a938'); +INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2c99acec0c746fb33558ed01522d765578fe7d07692684d8a67372b9212e20b'); +INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'c0862d5156a8817c70d0be8e0e2210a09e89a0ad1175f632121c48c7d0593f73'); +INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07aa1c5358a2446555adfebea6bb1a9aecf2205bfa62077aca193cbdf5b6a33a'); +INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'b28b158faadc54c835f173c91c5db050d77e1ff22260209700cad614986149a1'); +INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'101b8e5fd147af0a3830cf3865a9e7f7a1263ea3746921bd7b7dc08eff29ee27'); +INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'3543121f5256889222e02ce5125e952c9f244d5a331b374b6a07833659bc3684'); +INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'caae02a310f293913d55c06f468aca138cfb0bac151298952ac1f3610ef4321f'); +INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'294f6cc9ca50f8f78f7cb6ad46abf2c3ca81e709f64df6fb2f09dd4d888439b2'); +INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84e673a01c1d41d5dda1bc01b36bb7fc7e4c3bf0a713dd85227cd57b5c76e7a8'); +INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'c6f77b7a17c050780da9ffdf6b500581966d03f23e2195822f9b2a4d96cbd729'); +INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3aa7b5cd88ebf2dea8c5e61768fb5e70a9601eaa3a5b3192860005e540a451e'); +INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'d2fa60d97f0473c64d4412e091f19056ba27e109dad7f9c7abbf3733281a2ec0'); +INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62aff0aff679fad6cd4057e371b4baa77fa3e15e0aa1a409e779aeb3876014c3'); +INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'a6fca78c68d34aaedeaea980b730f9eeff7d887a3e9863e33d2c7e7175cfc75a'); +INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51cc36a7aad40df71e35657ca7662543f93f1dbab6678847c748436b6c5cbb7b'); +INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'37ded11e6d064db65828161f3cc7c028f84740275205d25a22aae24fb3597901'); +INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'428b2f69ac8bbde2cd4b7a51c5c7fcff6997ceb45e3ff6b317d44e66641084f1'); +INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'83c8ac49b8de6b31513c24356df2037382608bbafff10c7f3571742a4c1cb8d9'); +INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2bf2724327de5b9123d1ff44e9f7cdda1d1977a42702af258750d1ea42c06e2'); +INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'f05c33879ef466c4a5f3c4fc193c25b7485ac30e3350aff37fa9c73c981900db'); +INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ddada529ba270e6219c2af79f87b178b8f5917b93ba6ce05745d7f39676d7aa'); +INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'e9ca6c12875f9404b948cf53d29c59a6cd40f9431f74d3356fa489a9e180ba4e'); +INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43ac985ac53d84f6bddfaf1461fd804ac89d9bddef2323a54e7b4448c956d136'); +INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'9704151285f08947f446085479c2176d545611ad95e068292b9ff11e5b663a15'); +INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f8b19e0fd8bc4b32949950df9eb53246a5042a0b12dd3a6863e72cf0c0037ae'); +INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'e37e4862b3d89b9824b35caaf82323c3362f22b96bb7995af05d476487d2a27f'); +INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa1c4d13f72854ac929e60955e503bf151782bc4deb575b92069fd9e0c7ec9a3'); +INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'14b2227897db62660e3bd64ee8c9986342098f00c77880c52cc1fac159ee45ad'); +INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8fc9d750301b8e5fe9b415a03cca6a70c3584af0edfbe50a116ce68f4d7209e'); +INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'b68cf07e38a5c04e8501f9003fdd42d15847ff81dc01b2265a29a0044570b401'); +INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86fb10b3b75a1f80f41f12c11c2a73fb915c4a9022e70e957617df89cd350591'); +INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'c3817de4a47c6f02340d9e233561bc0921a317824a58d719d295d59839422118'); +INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1d006d145ec7d5ce3f083ed2498a46b559a59dca3d7fd4f3a9c1153ab5f649e'); +INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'90de81d4d8fd3839582dfccca7b7ce14e0bf34282896098565c07a23454e7ae9'); +INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16ecf7ba9e23c1b4aea99e6a22b838695bc067fbb1c7ff11bc6e94017fe45c8'); +INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'4a86f36ac1cd9bda1dc1bf344504cfe963c26e1fdc8e326e22292a539aa74215'); +INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a40a849ca3ece5bf5d9f098136b173eff9a61742e7363879f416e3cf1849767'); +INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'d08cc98b6ed42e788821fceb7d4fc9f6783b3e880e565b4107fcdfd634b2f567'); +INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e5e084fc4e6667586cdddd30aa7eab8327125d33c6d480f3a78e4266bd38323'); +INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'701721f0be1b0bfd07313fc401e8d00087d0343bfd45bdd67edad2e78fd9fbde'); +INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1de7c7635bc3fdb6081bede5511a69f0970cb856e3ae8e7f332bda72aed3e0c'); +INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'d7d58f24a9d736357846d9453122afcbf1d0f2fc46875c59b740fe8ffd13ac04'); +INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ee791617fb885ccac306474b26e94eab19333fedd00cbbb66a8b2ddf5b218b6'); +INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'be18c1468442730cd8bc44819dd4e7b590380551d241b4c4f9d72de0b28b13bb'); +INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'323e82c78dc71f58ab8c9f6668209f760095f007afeb45c4ad8f380800b2d1dc'); +INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'a9693ccbbe1be02719f93576cd16288a8d9e274c686dbe94a7b87d193d6b31d6'); +INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17a91ef33c3e1d1c60fd10a3b2b10f636e578e127adcef05146b689fbd508a22'); +INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'cdd374e424151bb9eecc53eca5ae94b4888826ba598e206b1c8fc9e2c089957f'); +INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'361c6b3e511bb8edeb1a81f737b5a163fe09585b5aaf5eb0efa3d1f0758ca8f3'); +INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'ea1e86d96df393f969daf94c2ed25f957129b61dd7646751a8c1be38a532847e'); +INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3be69ea84b6c0c7eb052908faeed36eea53771ac85c4825fc4567e2bc7ceb919'); +INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'d81472a5791c17b36758388086f0115d3a21b44a8930079d407163dc8e11c01b'); +INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9917ae6e558a49db60d30e01696624b3403a7d5d4262b2db59bb78dbbfb01855'); +INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'86d969d1dc22f8176aafd82bf2c9602d3f3fc1553facd875294bc2e3ac50b897'); +INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8322196ed305a9633d4571027aaec1b4f96860394f21c0f7f878811cb4f0953d'); +INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'b8f49bf05b3d535d5680bd648223ef6d597155fa23bc0ebefdb687c6cb415fe7'); +INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a52c84f240dd0357b5d3df316756b1d89767288aeb9ed6a93eb55b591dec47d'); +INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'e895b5ca6e469fe573f49372b2ecaea869bd63dd045e21df5b3c0978360e6809'); +INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35a71f4083e895f0bf954d23a32346bafce64c1cdff06deffcf9c43b73cb05a0'); +INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'2ec533766ef842dd263024d28cc1b98fc4b834093b419e70b0167633125f9b75'); +INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d02a5a82c995459d2d5bedb396902ed3d76f99e4d629a5606e7b4f5543c9b89'); +INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'a8b75639c643a821d659f13e3cb48bcc59c003819bb3c055f06ef131de2521b9'); +INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'538444ba29018fddb96bdbe393f6a08c8d21b38f06a7f6f299a3e58c13ff9114'); +INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":" bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1 2 "}',0,'NEW_TRANSACTION',NULL,'ab12876e044c8e49080eb32948ac149ab6fbfb6d288e2e0fab4847114b7c5561'); +INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','01d5057be7016081607a6d4f47fef01378b81433216e432704219bae854fceef'); +INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','e069fdbf249bfb7a5d121977d68935c103ff00f29ea922bf7b2c31bfad8faef1'); +INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','c7420bb74993320122216f02cd0aa8360d700304ee93ec9fd7da708598fdaaff'); +INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','144c4f73d383b063c5c030534df35862a3222af47719fcd730f031294c60407a'); +INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'a67c819aad054e9214a1b6d8e7f65f95aa70a5151d85b4335102fac83fcaf36a'); +INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'133be32317ab82782b6c8f541336238cc13d3904937d972a5f6ad349a75e18e7'); +INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":" 2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1 2 "}',0,'NEW_TRANSACTION',NULL,'5343f6497d3d39a1000c6e26677c6d8100500c3747388943eece38e0cdba96d0'); +INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','6b02bd8d81763190556eb30370ab618abf3fd33f9f818f4597d4d490479c5926'); +INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','20698a8f0b16905cf258a7905e327be77c02ab2f441cab9f46c38f243ec63227'); +INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','83eb2b519582ae5b522b3b924b45ca00842d9e735a2b77e3a72b41ebabf42a45'); +INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','7c9c4fed44e6abdeee02e65573d44ff20f52bffe0561a6f73f6b7aadc4526bc7'); +INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'272511a05aa897c2d9bf85d5ab6e9c3185f96986c62335f8997fc21473d56802'); +INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61cb6d9d67e3ae9a274cc18a5cb7aee918302076b09cc71a72ca471111e431ef'); +INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'f041120710b11b2d1eae1af21011e02508d6b060c2a47b300c2ade60059d9e3f'); +INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b446db0bad426682fae906a552a142710270980ebd237c51a34ffde94d6378e'); +INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'10a92416bb8ef6cc9f40e9fa26745221d4e17a505ee3871d951bc7169dbde3e9'); +INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90940b48ce2dc1ef67dcaac49feb82dece47aabd68b54de6229e5ad2a099879c'); +INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'a7d26b7d890477c6d29d024d30f7b11983da00ca99d1ffe5c06fca2eb800db3e'); +INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46abd42d5111a743c4a841987590c68ad080ffb28e4322449ba74860b6141a3f'); +INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":" 6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0 2 "}',0,'NEW_TRANSACTION',NULL,'e227724ad5c81b8938c5649eab47db47e27815432377c96d9e70e39b03636953'); +INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','3ecb22bbdb77728ac5b7d0008d8af4542c5636ec2ac608c904a15b2a110d9e41'); +INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a50a06261666786dad0b0e5e624a33eda5b92359e1aa500159be20f7b7be649a'); +INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'a1ce16d15a43ba00116d80c7e28f177b0af54e83a652395f4938bcc40cacdb13'); +INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3615ae2b8029e503fd6dd5131bcfa8f5b0b4f1444d2c3a1c98f5c1170ea304a1'); +INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":" ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0 3 "}',0,'NEW_TRANSACTION',NULL,'549167402d453e7fc6c2df78f5354fb60a57eb42c93b3732904d5ee5b7181a9c'); +INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','4211ca16f351b20e53e65d6248850584989251f0e0a406626e9bb42bcdb9c1d4'); +INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','6c08e1469de2b460ee21a1a5cd9d73e69dcf909affe8eb38876437bec372b0d6'); +INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','e32b2564efe1332cf4aaf455ed143ee44604d5107e025ebf33ae8ea1dd01f4ac'); +INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'175f73c546720fff6289ab7f5e4f88df28d32dbc80cd0de012419a0c3322d474'); +INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dd96659be47d871fec58ccefeca2d9e9aca1a0662373a11b51afc7a6245dfdf'); +INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":" 66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0 2 "}',0,'NEW_TRANSACTION',NULL,'e348171fa9e27121ff957c6f64dc1c46de5d75010b9d7b981382da8fcd593970'); +INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','3ebb107c9e1a3636590f1bc5a26a2f3c2de631ac478701db09d647e01db1b530'); +INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','d4b8ca55d492b231004f1d9635f03aced9caa44f5cd2a39b65f0eb31c86de8b4'); +INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','603a173e992f0c349dbc22c76f0353cfd77f2657bc72ed47923ccfb888709ec6'); +INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'dc01e0e006761d3a9392045d1590057b6d021c1c2612cf71913d70eb3e5f21f9'); +INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ff3e4b823835639c9bfab9ea8a0fb407145ca39edbdb585576c8ee076fda678'); +INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":" 147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0 2 "}',0,'NEW_TRANSACTION',NULL,'404af779bdb3b6be8bb41690488a584b3b95272386c080259be98355320969f0'); +INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','7aa7e489e22c5e84b5f52294422acdef9f6e7c5413f07710de3b0a108d5081e0'); +INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','286974cc7ce3a783617b5c49e360fae67c668a9603c57985482484aa4411b198'); +INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'c3bfcbeef4b3b464909e0fe0c106e5c1291b51621e7f56bf0d8b6a951a2f6102'); +INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c2aae289d53720e167c098843db3cdca9b0b7b97c8161e1a5548edda1f3511e'); +INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":" dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0 2 "}',0,'NEW_TRANSACTION',NULL,'3673fed952bb9e68924616129469c2f927f7469f19c1f1aa5e1d864d60b450d6'); +INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','71dc19a4ee367e03b39b293a93bcce647f8aaeabaa19a6effb33491745e68a2b'); +INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','5c41e99b9ff857deb226dcfe70cc3732fa1e70bda148a1b1f2a1de941f75e6a2'); +INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','aa602df68142d50155550cf935dbe10ccf457b8274d21bd851528190e60dba20'); +INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'abdbe0fd3e33c1c00262558419e49268a15f6fdba231de0876538b433b49fa11'); +INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c3e82d5ac634dbf347d510f83a2d69b2311d4379a4eace2ff10ca0b8d8427db'); +INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":" 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 "}',0,'NEW_TRANSACTION',NULL,'3122107c262aabf1cb6d0a4d61b09c5990c6476c5d07a73d803edc361e8c06fa'); +INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','758ba4a37234aab4b4f33d12a88cdf0e2ad1fd5a8f313114614b51be06e32097'); +INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','3c84821a04ddf20a59edd91bc6249cd8a69c1147108b2fef8a7a4f21f3aa61b2'); +INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','03fb64d0a151b0aca4033d35282d69b8d13ed858dd8c5c2fc8cfc8e0a9a034b8'); +INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'57b00335aca2ec119aa6a1285939d53cc45d333b8cb4ea9f41a203c0d39293de'); +INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96c1db045a1a6273c37f6f674946e93aacab103e898ef30a97d42942fc9589c2'); +INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":" 01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0 2 "}',0,'NEW_TRANSACTION',NULL,'de020895665a0996d68164a7bfd1fc1a0e108b29c6c0154f0b854365e858585f'); +INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','3bfd91adbd560f7eeffad9841d4a20974ebe64b2aa8d7a6d86e1d0a768e8db4c'); +INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','22db722d5f3a72513ee3313aa70cd63de9c12c3f65dbe4665bb4bb93183e947f'); +INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','ccea68fc82a88e525a598bbc8b00ab9a3ccb90b69ff1ad6d4a6e841d26dd73de'); +INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','48a8457faedbe2f9023634700d0d682e307724c071f57ab757d19bfaa81f0e50'); +INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','55f1e1afe405af6e4fcaf6198777ae6cf4c9da4765a7940b2c19901c5ce59acb'); +INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'7eba095fd6da54c9094362b366029ba2b489c7332309c34b24d2566627b4f52e'); +INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f9a5c0cdb23d24b16193ec6970c7ca5f502e9d76c8cf37955379950e2d975df'); +INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":" 55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0 2 "}',0,'NEW_TRANSACTION',NULL,'14ed740e22a9559173f3b8aaf81d45cecd0fecb1074a6025739128d8adfbb3a5'); +INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','c85642ae7eb65e12f6e43383f75f5b359bcb63350b1434fffde70917936a1814'); +INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','82d74098ed8e451b7387836a6b06702fc5a44a5720f48017ed5907766e104d03'); +INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'a609e525f1c66276194a4641ee234ebd72bb14de935e5bcf3af36ab4d390a641'); +INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbcf68869fc2ba87ad07d7d794e1f1512c34d8d0bc3f17dfb6ae83622581f87d'); +INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":" 1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0 2 "}',0,'NEW_TRANSACTION',NULL,'fe05275c75576c45adddd8b8afdcf3461dec8479e5de5c5abf53fcb9e55a233d'); +INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','36179e6dc5166d45c31ef46311b4c1f12a5bc98370d48d0aeae3f34b45203d85'); +INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','59db1d8bcf9ab327206a71219bb116c6e814c88f8751645906866e4945895ffa'); +INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','5a5e613bf0d16316b1ecc4855ab8fca0d3b53b2b34c192e95d7ad0ae74ad8015'); +INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','0e4ae58d926c9eb0369baf938ee50c6e83388c350bdbe5abbe5b2fe4fcee1ddc'); +INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','4d3dbe2557b8a3eaf4c10f40e69e3af58b2f674b56cf0ab84e47d99638ad9343'); +INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'d8d565867c748e5082b5a6ca0504f73ab36c229d85027901a7de185e1bd3d8ca'); +INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'794ff12c719edff5c41ace5fea8eec5e9775804e9c54ca809b134a31d21f4707'); +INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":" 968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0 3 "}',0,'NEW_TRANSACTION',NULL,'31b7d312422846eac17507186713cf22e3dd3c75accf2855adefe2a230573207'); +INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','2a10808d3e727b05cb608901678523515fb3b2800f9f04f91293d5462daf92f9'); +INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','e9bc9f15bdc7ecba87a828c458bd9209c5979207b46fd0336d57729ec72c2cf0'); +INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','6900d67b26c0feb6812d60317906a1d02e745a4a75f27f04cb02868e3d239a58'); +INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','7a54dc0d869f7f7e8164ed3cdb2683e2810cffa7e8628fcb99c8be0c93f9ac62'); +INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'71fd9ae55c2fb51d7dc82812c42657cbb0b94d66fe6a1b225974d714b27acd6a'); +INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dadac105b2e405e0e3185972bf1ecc99085e7ce30981396435d0e9d0f7c311e'); +INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":" 2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0 3 "}',0,'NEW_TRANSACTION',NULL,'576c2c8bb3f7a930694e0e20c3039d3c9f0e986bc71f134c115a04332739de6b'); +INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','9ecc3f87d73fddcfdd4a9c5d06d73a32f55e5808cc12abf510524e30d480a1c3'); +INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','37213269b0b2a3e68e975d11443d10def948cc0316d76426f6f78019ab52f73c'); +INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','9414433cc7cc210baab97b0678b89f988ec5ac52dc376ab14763b045d143d09a'); +INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','166bbf4b499a9950153d11be93797177ddac803698ec0eacc0fa402bacddcf0b'); +INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'12abcfd356b609e4786c334d1a32b495373e662abf489fc20736a1f05c90ca85'); +INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d62df6cc581d8b0a4b0c8a103defd045a9a6f0c8652fe7a586ba185f4e839a7'); +INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":" fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1 2 "}',0,'NEW_TRANSACTION',NULL,'5578af2ec60273b5844a647ade151f0da16a31e2eaca768f99f553685036745b'); +INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','8e9ead41ac6e24c3989c2a73b256f3c60615b2733d990fe574291bae2c5c40d9'); +INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','88dd5840e0ba7a8c06f5e64be2ab8b07adfb4955d86fa6bb7cd8fa24e05bf082'); +INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','28378e4132f1fe2f8f56ae18071e3fabd60eb7a9eca904365ac5d98722c70c2c'); +INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','92a3fde1484a6a78286aaf084f84e76dfc43e7e28f34fb2681e992faa75c8913'); +INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','d61d9f06b9b70099eef750e6c1f020c2d04094236132b8f2180383fddd2dbb9d'); +INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'b9eea48de2c9e6d5b73b798f038226eba48dabd76f83e32ada7586c3d3b2111b'); +INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09d707f24d655c19fcb06d39f9438c3d4500200cd997da1b3e1d485b1fb9db8f'); +INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":" 0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1 2 "}',0,'NEW_TRANSACTION',NULL,'8b0357b8198864ffcc73877d341b97a7471380823e6c65d9b92255a4c203de6d'); +INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','397ad0216b0ad4f23be76799ef860c19b56dc7eb798c3331479d7404f291af1d'); +INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b9a5c8c25a69c3f2f3334114f2ef62649fb7787b58f6e5e712b7edee08cf8ed1'); +INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b186a6d7e42773279d12aaa9320077d774ea353d6bba4cc57d0e56b8a890c323'); +INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','934d674107372c7083141c7e0c450da09380cebdb03712e41efd5320fc88c624'); +INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','16e9ee9c392d8bcb55f2e7fcc279895623f3a192d2a989079f6d4b123816db54'); +INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'a936d16738ffb8d0e35705fcb272d06ee615a8dd1de9be13ba8ebe20aad4fc97'); +INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6384c7a6f9c270028823fb73f6b9f4c28b7b1525410cbdc6959b15fb0052d662'); +INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":" 3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1 2 "}',0,'NEW_TRANSACTION',NULL,'7177012a1dc51e792cc8c96687d94e6daf2094b75dd9875b819122712d16877e'); +INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','43d07e9522ba3b9c8d6668c0abdabb62eed6ed29f5c9d257a65d53212fe8f265'); +INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','99fc0b5722d6f7604ba6a8f8fc88562037eac3fa6ac5521b4f0a4996b4845815'); +INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','8e88a1803ccb5a6792c698604b3df77ef36cdb10ac9e085d32bf5009d3566352'); +INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','303627a9493af6cb3c1cf19d7b938ec2227c9498586bdb914513f937b3c85205'); +INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','c89f9c3150f3b42e0e63e6ab09e23dcf3bab803f604564a9ebb2ffd95a0b21ba'); +INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'5d3c401560abae4b6bca69837b3535b7a9988abdbc8471d74f9f37ead2a02fcc'); +INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a674d488220033c4d730c0c7beb44318d5bb24002f7eda3f82f50be210765f7'); +INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":" 63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1 2 "}',0,'NEW_TRANSACTION',NULL,'2e5583d5aa8006cddcfc77245795f34bc87bedbebd18c25f1b57b07527d1d72c'); +INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','622706691c317833eda73b7387c533dbe2bec81057bc2910165ba89dabeefc94'); +INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','4099642d9cbc789f1c48598a9e230569a90a8791478e2df6c9cd6426246f4652'); +INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','934a8263d9c958b79cfed4037d5bbeb24d7c58635b186592ca3f936ee0607bd1'); +INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','3fdd736358d6a482d0767d758948c33234f8d0f24c134efec3b819015ed6e5b2'); +INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','34d41a68762818d348250202b65a7d56f0def0b29bd7a02d3b4d717499e2ad39'); +INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'4a3d6502df24e4bc5a88c3c0ce63ef8ff3799e47d137e0603f522250eb505772'); +INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29f8df910e3086387a282e3533e93a74907d841157638d5aef0d53cefbb1462b'); +INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":" fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1 2 "}',0,'NEW_TRANSACTION',NULL,'05e6724abf43a41c4c578639bfe5c79c433610af43cff16e58a17486107addd2'); +INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','fdf30fbe93e53c77b4a34fb41104acf79d2691cc421a6f8e813993d876346c29'); +INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','352a7bd0e5d9365fdf3fbdd53311e801cb5815f95f3382a0dcf0184f8825d0c1'); +INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','1ae01b220a872851c7881ac7e5e6219c546a12b36b500d45197016bf3715c564'); +INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','25c695fb039a2908fa9748317d268da6229ed21df41073fc09f68646b0fcb3eb'); +INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'0d0af577c20bcc871ad11cbbc74d3c765647bd2397f4495886a253c85b78284b'); +INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f0180ae972f3444b7973ff027563cafe6b789d3843e7b2fd1a91bf2b491c276'); +INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":" c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1 2 "}',0,'NEW_TRANSACTION',NULL,'e43bd1b645d4f8b8b66bc64159f20be04036bf11246f0e88092e159c8b9e514d'); +INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fcc87c88d4aa396eda6f42bf2f1447b681621c5e6ab2cfafcb26f8de77f50c6c'); +INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','1420b78ff45e365674c584089452dbfec556bd3787b499a28fe8e04dad3e5274'); +INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fb45fdfc11bf227da3d4d2bd6d7bfbb6ac7778f303e35ec444c57f0e3381178a'); +INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','7cb85b761d8506c1823b77ee11fa3c010f7143727d82577779574fc5a776cfe0'); +INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','83f42c9efaf3a207b8d45f6ac417153f96a200c9506507295cfcd153f705dba9'); +INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','2aa0da4f1b99c4d9bc802ad4e36692e43297b20380bdc36f87e5bd22dcbec3ee'); +INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'72670379ea81f307676df0f5ea66203f1acafd1d72eebda891ed7fd79c33749e'); +INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed5ad22df0c135e98bfebd5a493ecdb55e2de7c15426fb6767e0ad1e51fedd1a'); +INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":" 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 "}',0,'NEW_TRANSACTION',NULL,'2bbd81ad504aa6bce899eb06146519cb0967467aad4acd7476c8657ce0516ad6'); +INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','b9b2feb0db362903fd965ffd16d528c2faafb4c1bd571dfdc9825c52a436985b'); +INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','54b9006aeb74f4e2849a781a93dc11ab905d7811eef97d3d721d5bf41a99c351'); +INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','73a5c92d0ecd4eae1e29144f29dc5727167f7fd53b3daefae8a122bbaddd9614'); +INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','365b70377e4592a1ead0a53f430f7913c282e91b6a5aeef98d3edc7c04fd4794'); +INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','d1cb7cdfac00643df319a854f594c5df02e8bba30a3ee8505740e6a331e0df42'); +INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','97cc9ccade74069d66e320f682e8e25a8f0d96b94fb6efc5b1ab71f2349e5f63'); +INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'ae09e9848734ec94c0978a817d56787345b963c91c6524b6c88e77651db1cf21'); +INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46c62e6d054c03f25ae8f820bc72fd7e01e6a9579a29a555ef0a7cec595b6a18'); +INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":" a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0 3 "}',0,'NEW_TRANSACTION',NULL,'c2ed2b0d5dcc19336bbbea19c20ed37d79c13e921f37bbb3fe25aa68dcc21c9f'); +INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','73e00ae9f07417229b2f5f53a0911b6a37f57b68e5fa5a22ed15b3ceed97fd9b'); +INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','fab345f24fd228ef66343e0b507ee55ce3eb66d55de013592f5a27c9926fa7e8'); +INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','443b146acda9a1cff5e90cc894d8586904aa6a717798b61d9a87648ce84aa7d8'); +INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','72bcc2472bba0be5f5e87035834a69980a73fa45c5b8d6bf6a92b3dd983dcd55'); +INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','af6eeb931fea3bb24fc93a0fa17a5f34b0a063ae3e27d608815310fd6465e4ba'); +INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'3a8fb4c6b805abfa91ffb395ae49b2bd6aa417cf817dcd6f766d5c999dfd7a3a'); +INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2caeed4ea6b00996a6bab8691ac63cdc396e69b91ba38b9d0f484abc9f186d1'); +INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":" f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1 2 "}',0,'NEW_TRANSACTION',NULL,'4a676b154ec1bd53d08734fc0d1e5098811f5e4db7fa4158100ae662c1fa80b7'); +INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','0b704498d335a67b80387308a6773ac10117bb6e88e5c42b208cb21ec1728db2'); +INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','5df1d14bc9d40de2ce91e9c040fb5fed37bf735e1cbc47deb3d9aeb9b9fa66f4'); +INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ef16481793784f3e812efaa8a9af65e32a4d314c9f4beb4edee2b1cd652edc4b'); +INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','0f0c78b359f6366a7ac226e3b3e8f10dde0b7f25356806162c516d1547f7c5e4'); +INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','af9d2eb05f430f069326177467afba4259669beebb93b58d71b46ca96de28ffe'); +INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','547f55ecb7c9ba06e5b32a703c9774184c2ca1b227a625dba39c994bb911aeef'); +INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'2d9416d9b831430620bf8da67010ce4153ff46b76b5bc2f75781ac607aab0b87'); +INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b8472f469523eeacfacfafd561a695d41101f0cb05bd3488455bc7c5cd2e92'); +INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":" 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 "}',0,'NEW_TRANSACTION',NULL,'1fc6b929c7bcdbbaff4c15ef99bcaa13a05ea568dbb534c76ca832ca4ff7d9ac'); +INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ee35f4d9dfb047308a9ec4c8a14f210ec1dd49daf834bcbefd8833921acb151c'); +INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','879a538850b63765067c9a669d9969e56948475b2ea22c9bf460f1a95686d657'); +INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a62af59f153a6916e824008d44294c34a5f291c8fb43677f44a57f08bcb26251'); +INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','c62f92725bd1efed025e0c602c42b7cffb1e71b7d6f1d506cf90c71bbccd255a'); +INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ff9d69ae83e1bc8385ce7537c22debd85cc78cba7e314400a4369880a49d8aaa'); +INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8f29ca8cbce3da477043fd0161ef4c7e7b63753df6f002767ffa213fb77afa7d'); +INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'1522a2da49e43ac25a10a3bb66f44a5196fac77ce3bd73dafe6e101a971cb016'); +INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eb94c1de6d6c8131c8c33b67733a4a0daacf07e675197efee5830ab514f85e6'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'8bbd1928d51e5c7f0e731c4966d9d10d53396ac913438d598765e0c44289b45a'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3ab7ac624901f0461d6867b48bccc4297f1bc0796420658aa5139e233fe60769'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6ea67f84716a577bec2bf65a5d55d1d56e63cd8d5fc07fb32227c5c0731f6a01'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','aa685b25d3374e6a748cdf2a9e11c5ca01b45e3f25c2093dc52a950a22f8b5a1'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','7ab750f5ee9efbd7be420d7def56619b6f57aede5989422c5796d2a58340b26a'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','89f0c2b7fb8054fcd974ddc4ebdb8c875387c53d38f7e8278c59179640e5bff5'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e84459467ab46c0b763b2ae64e4bf7d64a64cbf3027cc08b853c281340078a8e'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','878126f72f816784b56c45aac2521bf26566fd27b2dffd1d4da5db9e3f0cf2e5'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'9196aa1fe27fb5931fd856afc8cf9072af5a599f828986f29bb88ce041a37cfe'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c507cc77c8a612040eeb4d571c274c370d85e7c740922ed3e038b529ed56d3b'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'500f9839e7b6d853e42569d10438ad11ff87a8b16da069ecf452b3ecb15e0ead'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','16b01a9de86cb5b102e4de911656d8b9e9e8d820add2901a82ec8fd6633f1a04'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5c79d010bf9ca3b7477710252e40bd5f196ae263a7c33d80ccd24d012289575e'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','417d93d2963c6b642e604efc34fe57640de5182f1652174a0289507acd51da9e'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8d8bb15cb5e40a99425528b7a793bd500da1d43171df488e5a81f50d23c9ac75'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','a9987ee249fad8c82a3b7bc2a271258b06552735e5293adb689bebcefff5e848'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3b78b1529b28d03ec7c920e5521c7b391b402dc1384a689a45f9a72cce0f8338'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bf765d3c08a30f5eb84444c60f7e7d6c24e639cfef3b4d879e074df998ff7f0c'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'aac0896e0a5db2da6abf3da4fadb55fd021a5dafa6411af6afd221d3e1048a99'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f5d19dd9bddc1e7e12116f8ac48d4c200155b25acbf6240a03320dd5301d77c'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'201e30a24cc7c8a6d413c0b313e89577c585c55a39eb7a15a54e67f65384ed84'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2387e80b380773bca011dd41dbc960b8ec0cc499c4bc8eb7d9f422bf65c65232'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a6a3545e937d655c4f289612e79704348aaa7058e85476037fd63ce63b5217d2'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','09384d09bb418b8f30bcc4b20357e7914efc9196b50670ee3e6d29c3ee6ff052'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2c14c61711d194f3fa05d7958c5d455d66a06e28ff85c86d85ed75c8df8495cd'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eb6a3e28058eedb1a8626309a845b462dd9ee01249885df7ecc2a0ea59f04d75'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'9927c6eec7548df25426356efeb638e7a6c1c54c2c0c3b2b9ad64c40492eb584'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3216b42a6b7faf80925fd4745f5e94f8cfb2407ce2e3137c4266496740ba2270'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'6d164f30fdf7e0f5aa72eb2b20cc303011678b9c343433175e313a76114bb33a'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9b45a615f6a82addc660fa500d3c50232753028c036867575cfe06a55fa095e'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','d136d881c6d70de346237449f9fe7bca2c48319a986060892795fbf8b4b02dd6'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5fa48999b8a7cf87bd0b3a11c5ec0f53a7bc4807863b8c55015a923eb3cde826'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'8dcf8b59202460f52684fd287b47bace230a5918a022d75c6202a119e83d6b61'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15bc1bc9c6886af02aa235b54cfe80a696d0e210dac126de69bc63659fe9230'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'ca696f540531e3f817213aa12da115a3dba7f9f84fdb13aed2f8cecfd9e7e287'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056ea7b98cf937b7f1752ba9957cc6f8c74ad96e1cee955beb6b7110f58727eb'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'9a5a35e6ac5fe77da2981e3fef5c7a791488e4142be57110b988236a9191f424'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fecaecae0a4d28c4d518dcf9f10ff19782ecc393873824e39d83a86199b2fea3'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'de3ea9b2fd2fe856b785ece9ca32f40f1ebd6217948b58a87939d1cffb29b3bd'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3299c9a5578bd101ccc89a12f003f4f7bb185208b6f2ec8b95080577e2a103a7'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'fae2a3673839c2fb3f640d5988d219fa504a23c1fb635b7f95504584313e3fc1'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'c7472ecdff349e324d7d71a46adb4446a1c36ac17313079930af5b69c0d440b2'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a8e1032519828124e0cf214b9d7f76403cbfa549985f5ac2b9b2135a09111a1b'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ce207d80bcc35089e634f32c17c8ad39aaa3e4adcbe688dd23eecbe00f9ff9b'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'0b1de820dd9f12a42bceac67a2506dbc384fd73ad2fb0da95148824743e01630'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'973a4f6216d7a690800417deee34fd984e86fef7ef72245d93095b80965b0328'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'21666aafe3bdac4443a1ef03ffe76ddd71236d3811938306021956e58b44848b'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c5cb100ba865ef10e02f75dfbb2096f8d47d88dfcbc499401ef830f307563f'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'fc37b0a33f07a8865d4dac1d467c09306cc49ba2d05d76169665739d36fb57c1'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf07b719ccba31e71f5d15858ccb6eb848c698ec5521573ea68b10169d5a734'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'d380576a6b0ac0b96f76521e4a671c7a56d01af66c2d48407dd5bd67caf4e15a'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41bdcc00f3f64eaa3f3d1c90a4e47b737fdad4b308fd1fd0efe56f211f52a01'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'47389191d7b37288eb5cd09c65fe9a05966249162cc9e92b2d97774448f57735'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d2b06d4fdd9af5c14d1ee0fb136a0fa49d42f2a16ad8e6ac2dbef07ce6bf02b'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'f3332cf52d4d0b82289a720a3b3687395548b1143bb7c6ac13c34d901926a2c2'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99d71ae9e0a6d3c5ceb043d18d72017d17edbcc4c8ec86d55735a2877de7859'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'03ff62eff402d36070cba3cf58953b8f4df3642e4264420fdacefe3af2333d5a'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'22d1c9aea1731fe665ceb2439a210dae95d7f9379913dcd415a2dfb6a470712b'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f7f4077b9fa53863f0eb4eb0875ab530e199babbdfc21644baba907cd2c6a03a'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c04246c969bb0b3a60b6c11d1c742a3445166ea89c7ba62efca5fcdb27ecc2b4'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6857cc9218f8fa3fa2e114a9d6c0d4456888659a3d1fa89c50cfe18938b797f4'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'971b12170efbc7f439b65ad7fed47bb897f8391b8a35e06eef857cff67ab57e3'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ffe4967da0574bf9374153e9c1d58a0396188396758d757ae9b1a7eba8e29492'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c3d644eca8664738c388a9862185cbf61b99c17df51eb62eeac52031ec0e2d3f'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dd9853b9d889f56660c2c11b5a0f760d8232a5df7e3a6ee91bb0aadc3fa1bbd'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'d3647332aefb1d70247716d623cd4c2f0b8bbb0cbe00080f59444fc5ed151683'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4675d0eed46375d19ad0bfdfe94cc0bd5cfa89b865205813b20a7c58aa443be'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'faa4585a898c85b7f4a0080bb733f315a2ec920d3db054f319c099786053ba27'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b491f779ef37f66dd6ae7358072f18a76f87b0ccdfc0b8d8b5d43516a15fba73'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'da4e10297558e100beb5a1e77c3f8e432c582226ba7c2266f0bc9e4580cfc925'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d7a6a766579e8034ab0a134e2a23f720ab6e242e6cca763912a6ad6d33f62c0'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'351ddcdee918c4427725c808b90542b69dc4e22c8d902f14e41d6ba56cfb186d'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbefa4c96e7626226135e8c8d8f5f5b03308260638195ec4ca8a6ea8f70a8660'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'57fa7e8f62f2d64ec35a59844ce6785d7233e3e4731905205778965c76d66f18'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2bfc2b0a9ae6969e9211e0da3e6c0b72aa250d008d827bda494e898b219606d'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'bdab2f743faf27e668e7a6f222f91c49ec0ef44469996eb9ae4ec5e94bc2ef16'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a92357fb4131f87849ec0a83880f4adf5e2872b685ea2d13e9103aed57e9f441'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'5c1d69c6c96cb115ec56b930a7848748febb44970433366002fced362da895d6'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d8471a9ea2060e0e642631aa507655909a112e5c7adb108f099290fa47afe34'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'1e629bd226c9475480eface7353a8eac4b044325a22b816dde857f72691aff3c'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6524883199a013d4fd2f0657bc0e3a26666dea0e9e1d48a246c2923e6490da3e'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'2490154ffb2eb4d3e3b4374aa28d3fe19336ddc3c545bfed9b05ef45cc5fa29f'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cc6019b40fad64457115f65f800845222a05017f7ecf87cd17be9b003e67f5'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'0346d34b3923532d201762500f902006be244af1c4c230935d5033083d3bd1da'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e6f5c4a6bda993c08110b0b91de56fa6338c2d3b9df780fb3d4848004e3715'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'47b26c63139312d26ba7c9f18e159f8ac57e4c662572d55377827303ec4fcce6'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c627303ef36b0a084c9a865bc78b1137513e8d0f4f76cc26407edc3ec88b660'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'7db1b0060da32322c52d546d5fb480fd1528cb97c99477afb06e01bd921549e0'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04e2aaa8a98bcad2a4a5be756d5736db0caba7d83f25e2fcee29431e840d9346'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'e3cc92a3a2de4ace4af2b89576c5bddad3c608448cd2955c2a0d5845c908ab11'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a49489f1b42043e88796ddc281259bc76ffb537202bd17f14794e204c507342'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'1d514257f70dd4010c691c2b39590f14ba939d4b1fbaf367fd1a9edcf4f72edd'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0af113e110bffe9546833f5c8e648767c33e6ba1cc12833ebff659d92b222b1'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'8f280bbc14734dbb90efb433c9ecf27c743e9a397b4f1c02e8d62a768b3db812'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbfab615236a424701b109a1761f8eff4da7c9750b18771bb4222c381c2191a5'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'e15792a604245cf8bf9a56f3710ccb9dbd0ff80acf3fecbd8436d36a761e2a7d'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf2942d56a125ba4df21d2227453eb094dc64da545a07172acba05fe529ea543'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'e1b7dcb6567c1fe798b7d6b83e02717827a3091d557b7190cca71034396eca95'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'451ba7ace7769b9abc22148329cc18455e69110ccac397526fe56f500b5812d6'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'bf77ab31eb949ab131656ae485cfbee23c7625293f1b300d2390a689051f46b7'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16f61f491e9a198a104bd706615a5d1a57c5e49df33669d9bfa2e63209a84cfa'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'767d1fe0f370cd64150afff0794a28076c995298f9328afff3eb73a718ae1b6b'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'702083688cc6f9fab90a0c6f88fbd5ed7fc60d9186b1e0ad3a90a017b1047941'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'a056e346b370c1439966d636a07276b339b6a7a958d08d875ae1eb66214ce960'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66912c2e0d3f155ca741040b1d717ae9bfee962a1c5d3bbab51118454842c6'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'d0a18c4c8027fca8c6d0c8f75dca2c25b2507a765fcad47e0df87a224f3c9469'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b91a12f727ffb9d8a45f0f20770c48d0e7d3fb2455d5d4964257028f50ce2186'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'097dcc99658c6185c06a7d19df49e91713644dbf3c917e493938aaa68b558533'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11069822b87eea825b80b9f04780fd6711b403ee89ac39e44350f3f13893c311'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'e6875e165c6e297737fbed98eb1c3513e9f11a58363add80b01eb1114e4503ea'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f3f7a7192fa57c93b7d593212623d9698718178c0a4056fc73da0f95cff4dee'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'0f9b7e0fc21f69f06957559e1cc21286d835c5e498133ed78123d304e8400aa8'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95c9a9bd39e8506b47f72007d5c242c22f1e4425fa62cae177df16afa57c6d4e'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'450ef937e9459d06ffcb7c6c9efb72bb3c95bf98f80c754f7758bf31769f1d65'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d78fcb5c9e1c2cc50561a533f297cdfbb26ce809609ef248d0195bb346509a'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'4d0fb1a91638d85a945d83ec6f64b8685f512113c94096252287bf534a7484f4'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2526a9e10d238cb6a8e2cb7ab5a4daa9d6ec89982adf94795f3d7c99dbda95a4'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'29ef5ef9ea03bb161a003959005f8006c113ea1ae1b6bb522993fdcff9920d48'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec708650f967c7fb0188cc91c831cec1968019d82fbd5602206f24aea2c16a21'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bf05e32c28297112a352054c22cf3cf9d7764da65da5bdda4802af225f541000'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e6aedc80984ba96aa6fb48c43f0ed05f6d630b890db5b54faa98abd295fa016'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'2404f48df03504f9d81ec14473e70e2e102c63ae85d854f068be5c62b56441a5'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7633e13581630a6547b2d53f2f0b93c8e3e983442a99515f6c9a70112179bd01'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'7d3d484812e502a83d23798da488c05e47e6e7c119cb3dc007fe413c210b0003'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e530ce58be23a9bfae82a4e6f7bcf1d40078615d2cdf4e13a041d50ed16ffb4'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'4bbc52e9a29dbbdefe60f4a02ad6d13e053e5f55d4a1072fb208ee90253e7983'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7dc653f621df70effc13bf8aefd48d2a66b77edd5756e8687214259bce58339'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'2f7169298ce6d9cfb364707731bd19a8263fcd2ec9f9f49ba0b5ffd2816523f5'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78514817cea74e0a0d4d6dc9bc723b9109327f3c4f70d7981dcd29b56f858f8a'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'150578e1ebb12b6684364a2269021873b0977496b9053cdff8e9ff3b7c7faf0e'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af024cc5caaaffe8d4c2b659a6d3cb93841d59f3d7087dd643c03383bd23780'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'1faac7cad42651bf41c1dbfbd2cbfcaeddf9514c12ed256e5ec8e2ce9fbc058a'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e80de1c8dc78c243d4a229a146b31c1073961fe8df9978ab906f4267fa394da8'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'d942f4473aa2bc067b0e832ad86648ae2e8fe2e43a06b96406a7b77775abe640'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1991af8ab35a7ca48a26dbeeba3327573bbeecc283bc5abd9641f530f41e8f90'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'f82780241b8b51a0afe6f062ff43c3e1205f73577e280de2c58a902cf62ebb5d'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4f3569186da338cbd2c367b5f5e9e0231807a6d9e49114ec98ac2140f63a531'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'fc5fd87c6f335874ed0a3522396008363b31b6d68139145c08848cb32c263b29'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c449133b4f6901ed862f04a2ec2cf7e30ac37e7440087479ffc8174184868c3a'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'b1a1a446606fd22a2465f05cf55ed7cfebd324d5fefcf81ade8d574af698f6f5'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f0e745414f71cc843c7811608d751a71dcae1447a44117e1637da92fd73aeaf'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'ea35f7e3929ebe6cac740b16512935c44250cf067598a93e9f927aff9eea0cba'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27aa9fc166c7fe896b04a992f8aa1549a5db758fa8731f0f6f088a244ba9c793'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'68a83aa63beb6ae49e02672eb0237325311b464ca76c5a90fc051aac7d462260'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4773706101ef22c42a208cbc49b48b5c5df2353ff6dcf5dc17ad9d34067ae936'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'85807af03fe81bfa2ab0082faeb13b063f624abc9df0d6165a10cd14072821be'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc38aadc11c340a92b88ed824a7201226ba80fa3e28ea5bbddea8ffe58e55c92'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'cb230fb2ceff60fdd4e3b1d6c89ae7517f1ebab8395e1530b664bd4367f59db9'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c035a487172827e0339081f4d7a71f56414f10891e08febb9bfc4da2292fa8bc'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'53b74db7738fed611b21833ea80d88316e4e2c837c9343921d7ddc6c8b0cde11'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'878618b5f919524cf2f3dde678b5cded4797e0c6dfb4311ba1bbe27cc9e314cc'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'4072714b3597934c9cb3ae14ecad352ab9e6741ed25e4b8550dc933d3bf765e7'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9879e933275aa500c1925c64b7d78ff3b655e99efb1ed31397c0e8ad7285b680'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'ab21145384d4739080101d6af0097b391d79f7b9ee5ec0645f96394507acdb16'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e740cc40c2ffd0e69706457fd866b47963520be5b46f0230ad2103583b1b3437'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'6d5776ca4b76057171d38970bc81e4bb0573452a2c20e9c55a19ba320d7478f0'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d3e859b54c21697ab24dfc0a41efcd43663b32ab9268bc844934ccdebea0b7d'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'44278874b296527a10713a3552f3a81d8db9848ad3ef3aa6fd889ab953d2440f'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cb2cae1c526d2f2c2eb1fe991416cefa1daf34a669ee39fc0bdb81ea77fe679'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'af6773846ec130713c14eb237d860c6ad97c57a53c4151a5b64abbc779524072'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'876c2e0c191d24c685dee4e18a855286eaa437d047241e5e070bd077d1d6ad3b'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'cb90d65e7fcaff58faf3ddc125f784ff51b5fd86ff043a62c2b00ba686b86764'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c2b702bf3d7e2bd92a18e7ec8be3c5018087ecfb954272a375f27bdec322a82'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'33c3d6c8f569a90bb80cc8f2f1c2c99bff46628816bd2a933985ada182efb9de'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1104bb88b5bbe589b5a06de3fd4333d3839c71fa708eb4b266ad3457ea56ae52'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'08c286e871803185a4ad58de68ba29e4960da28948962b9c0dbf4ceb9d1e3be7'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a57f8b6974dd68ee98de58523f2eb3ee52a93a0e40971f2fa1e924417b942a7c'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'7af9bca8e46aa001f116e81322717460bb933228d93ebfc750e68a7c563008ad'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0329d57d0dee2b6b10d8d2ae2df03e89fe73a939ab594734ac94df579237035c'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'43b7d1133d045e44a366caa3ac4862d9e9818a92313659a7bd394baed0b9d210'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66022b54f42d93184548d20d36ad03b4b14b844421d562cac54ca8d1bc0de2af'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'376a2c1562d1ec5fcbb181b13961e5aea0ceee7cc7d747637234d81641770945'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11fc0c5b17eece44573879da59dad70f4f7fac15242ceea74dc3717e94b693e4'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'805a4fc6769d1746a374da4db46a8ade1c8971ffa97a1f5920e032053ef21a58'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a13a21a76e95ac472fff45b42062a2906e4b6c2e172e404eabbac2406addacd'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'5e724a720caa6a4b9e69c879dbacbce5e1681d1736de98696ac464d847e7c05a'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e45efa18d0568c202fe32eed9096e89352da2e72911dab7fd782abaae42b270'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'c86948c984f7a63ad411528e29cbba25cb7b47f7ec711e5d72532f8ec4063ff3'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eebc9a3d70d184ce5d14131fb691996925e2ce56b039f0e2c0bd2fa0e87f8404'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'7ae8e46c431271f222001e330c6fa816dfa06a33a7f80576da3ac69f41d392f7'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18e259b30f715988e1005ccbb99e0b44f6df988828e795a6d0565633a0b059b2'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2e9687f06daf05cfeab2348411cc1c967f2d2cf3f699f5b1fdffba6f6b4e4e0e'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7215d40b22efdee1852b6cd0dda68b3752d0ac774a7f1cd73cda806f57c517d4'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'18986f018991288b68a80aa2b7dca9147ecabd716c819991d20955fb7caaebdd'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6b1df36b1a3c2e976cab9978a322fae719dd69c688124675fe3b0a37f36120'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'6d6bf2f213bc24d474edd061f66fba7d7550c54607e1700faefbe469e9228c10'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7d80bd77991024c71baca3a9f0be5c64b95e6aec5d716c7b886fe864f156530'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'a4a745c2baa8f9fd1b1b2bac183f29c235e9a969331a4e6e86f191550e6261d2'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325f7e4e9855a1b391d9cc1e366d440743651395c2ee7fd5313c79989b3b099f'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'37b71bab9d361077fea2d8742a9b0394c8da9c6a4107838c382abb44d27ba31b'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b690de08f0664f6636cde2147626e5770124177b7caee8034eda225df1dd0f'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'b71f1430541b2fe773ce2c1ce41c326a95595a110aeccc886d00036e64ccdec7'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b743e4989657ac694652ce96d56a8bc70e8c35f38838d787b08f554a92f56c5'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'a505d5a0d1992c2728e53c77d643a77b6d907a6bc2912e080fea465efa4e99e8'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f74348b584794caed6fa607ebeb842905ca0afcdc2839b10cc64b7ddbc7d352e'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'de30764a058d4e16671a5a45f257d4d9976fbe281603f924df30ec8e16bbe35a'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2ac256e9c71a8fcde5ec72a100c21b0069cb442bce0ede17ab8a3fa9657baf9'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'ce6713111b7ed117ec8549c9d7c4f8103b6f37db4e042f306660e36c98b41e0c'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46c23876e14e09b830877304e6ac369b77b87f6cb7a0060386c2fa398ef40903'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'3722463479326f86aa6e2efe4df338176a44bf6641c0efa1b587ddafb3efee9f'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6edb4f84873b80bf2538f4c6759a7c62b539885d713ed8c8cbaf8ad21dc10b'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'a38b8466caf0150d422fad3e644152eb2f9d005543601fb23c8268330e9f5311'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f5dcd5b900e191f58304321e6cd009a8e844f627e258d0b4491aa86a66b76a89'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'b4011dedffabf47c59ffcfcdd53eed525910904b6d593444ea6d60c8a8da76a3'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'49972ed97962735b0436fa9ed6788b5b2dd411da974c43e7c1f4012ae1aa47bd'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'659ace90d7758a03459350a8639c7c577d2552ffa926b229fc41f7b48c7d8191'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'bf5ca13faf4fcc8c5ff04a44824358a3aace031402cb73830f15920205b7f2b6'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff94ff89beee24f9b3d2b366cc123e934fcd693eee93b13a1270b488fecfb6e1'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'736236cc34a0f25b09e22a561cf2f93ed31986ccf664a606863211be07507b35'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c49c02dfb3d3c610a93d1f50b68d26073a44b17f69cb01d7cfac94d6328c022e'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'1c04a253c9decf77cf5233bee6ae1d65680734124d1b34f292be3a9472811644'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dda4ad01755b011a570b8542969a79e8e8e66266d3ea8a0175619f618192c31'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'88d551aa68a7a1828893b8515a9b34c6af88676df65e69efafea87ff4e342fae'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff80682570a139c8a3f4f1aeac36080ef2477af3c911136c8cbef0498fec09e9'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'67c6971de9b63ce7f730b4c4b53fd0502535217945e307cc15438f1cd0b54cae'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4935c871292ba39b2c7f5f2f568a7ef90606098c8704cdedacde9dad122dc586'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'519b3a8830af55ff4473d0c0fa6cb54cf5ed2e8761db18ebec7851f6c8545b85'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2b2e7e6d9a564b3a1f45d77172aef430c1b936a7eb3388d6f74266007a87f76'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'17da04f2acdc5e436364158752ec870bd5e847c9871934392fac26fb393635af'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6cf249fb81197908908450b7fe1a456e97322b3dd37855cd5af47f33d923552'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'acb3a85abd0ab17dad654bacb834e49cad01815694665be40d73ae5930079a07'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6a87c0db767c2aec9965a8289d3966afd286f1621bd91150402f0a5bd8098b7'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'960840120deab73844e928f7e969ede652728cb2fb0bb8431d17f652e648c4fc'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6207c5f8dc5f10dc7d20949dc0b9447e5fe1a577fddadab5cfb17bcbfaf33a7'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'30601a6f69907ae98b4dcd16953114282bdfc17bc2d6119d51b2b4118fda62f7'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01db3dba4768c4ddd07af913fa043968ba5a3e93e9caeadd3540232b3de40a0d'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'5321e47d5c7bafb6936e523e2a2442668c4ac3800ed70be5bdfa150e40e904dc'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82b679b96ca4680a56bbc59c6d1a0f4f91aed7a34141a7db147aa8c8b9b3c329'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'5ce612fd0c40c63f2e8270bd682a2e1dea7e1913148520f8f400c40f94dbd13e'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89781f5e6f59406fb2ba0587f78a088cf39059a6489c0203dae13ccda8dce02f'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'83eca14e3fa6bee80adc84bd2b9541cd9df37d09ec37afac09ca4e7457081692'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a526ebe688ca20934c28e005cc99000522788c3fd2b0c884e05295583e9cf43'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'db5c4eb1344fd3ed2e360f0818cefe9d2c3d541fb8bfe6d6205ecb9e3cf27fce'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1719e818b057b67a5109158f0e8cda13a3e81b79bdcbd4b5bf28087562f801d7'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'42f8b730ee765a428356e126488b57d4e1fc230eb3c0b9bae93b637c0b146fdc'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b829da2b859bc657ccf52b81259b4dc003c3ef8a4c33f507555bcc2b9d12da31'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'96bfa4a4255e108839946f207bac4de09585cf69fa08611934044e632d40d7e0'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aebbdfcd6548f74ddab006f899a5e86b1bff3f72ddf7d2171247b43beca9ca3e'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'cac65adab357eeed5b039069ab22a27c2b15d112de392f7e79b69348af974db3'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f51ad4c2d2618cd85bbea7a7e32dd4836c59f27c71f1d1abe76dcaf0e9327ca'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'7cfb3b5e7a5644021c8ef2a1952332c21a266a112f136f8604b68e12deb834c6'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b58f101daed0b6af32be020845a564b5c7889916ac38fac9daefafb8714a29d0'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'4bdfb30e1943dcad12c73dec0ff8deec0f674608e7cb6ff44c163daa0b93a992'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e925a0c5bc3661c52d1bce3b442bea302b1dc427b06c3864bd0c1a7abedd1fe'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'cc3039e8cb1c22e46d7eb8615c50d51e325fddea20e295e505cf0256b62e2298'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea56f07f56f9f210e9dbf41a4c366a8d5aaa7d727d7107d9a8b39856a578ff39'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'bc42acd0f16c301927e3509d65492e509ed067dfa40b93b7281b4567a1250af0'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39f5512236e53449a08b22e5052b5b2419315917f2ed734b8d2f3a86086ddf3'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'b997c2e25af4c78598885b49405024684f53ce86592501dcb1d8b72c5abf389d'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8de2527f78cbf454fbbd40f46e5f6cb04e84c6b0ff82efdaf408558c42041f'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'be0a4d7234bbd1d439eb9460240298d984b2ddd4d24f84ea74a3fe9b3433dae5'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514669e08048f2e1b738ae3ddaa0cc325d6931a6107c7169bb989e81baac265f'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'dd3cac56fa8cad4b1084a5cde0c574792e39d58f89cdbc546662f174c1b50159'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'765af41a408aaeac6cb3ee4be39fa4295aca43483752bac286464f556925a7d2'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'fd6b86c0b0b20c8a732ceabeff4e843a214113182570164dcaee980f500cf413'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d54c0f4f3a5c814ace4ead9ff484d16826d0e9393e2dfaf91a776f49d51b1662'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'6281edc34f67fd429c751d1ca3f1b76ae407b4551469e8098c68857cf3d8379a'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1a1001a8c6597469d7dbd1fd5ee9f012d5f07123a30d7fcf92376eecb6c039a'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'57571e21ad9e1a5f82c1c6f627b4594947a6ef93e97474e514496b52ea0168a8'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d61f0c46773d5898f90bbe4bcbe1167f79d49c5a35f107573cb9c432f4312e5c'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'a726d88ca8575834e7edac45b5df472c9c2b8dcd6bf74745452f2b03938c6dad'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49e10d09aed2b54915fdded5153554513d6a1c0300c9afd1358d9824a90ea3a'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'088e828fc21b789fd920c17ecb0ee7d7c6d10ad4cfb2f135cb1ad544d59cc1f4'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e81b74c549479485d5e02f24815777f8c392734b0c119b8c0ea3257780f5fa09'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'0a870865b9d0aca4cc9c72a9d7daf33f81117d2eab637ace1817f2b8c8483de1'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f817b522158958b8b2882a26bb6f780f6e817477aff16f65994b77cb7399436'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'4f600a8e0fdcf059b1b5aee8cddf76ab96a7cb0b1b41dfbadc243b37a4fa0803'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3dbb2cdd0e306e221bc02c7efd611f46b848fcb35697fa789d0f2fa0a556eff'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'e9b0b97026763185a378cbf441c8d37177603c6057fb5b2f7f95b47ede59610f'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6af2b7396d205097dfe4869cc840343cddd153916d58a620d0aad9703afbfd70'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'9d541d93562989207fdac15fe68a7600fecf68e14237f8c2966a28b2cd44c91f'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96da8dced68f038886926019e884774c4970f7190450625527e61051c13b7846'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'608755cfc131a212d05db0208dff650dc17b78a75b474b1fd50b8d73d80d24ef'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cd00e620d8163a54d7c033b6b895367d7297dbe990ca21ca627709d2a6fdd0'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'d5da52bb790ebf6d3650c21efeb41db153f5dafbd1c0ffd546bde172aebf88f6'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e78694d41f5c51338cd4a743e6d14bf48d6ae6a49ef6b9dc3de7a532f7c7e13'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'bddb79df128c780a9ce39b5acefebb07d82c7ee61b6e54ffda8f7a0bbbf15caa'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0747d159009dd3d782ef5ab4dc37ca56690d19547b6c2e3d0adb660498ab83f4'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'d3433f3781a89ce6ed36786db40efb1edd6117133c3a3b9dcab8e27b50c33e04'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10878e3d8e1d671bb0399e84ff7381adafdfaf812957cefbfb0efced2e14ccc9'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0b2830990630426b0130fd8fc5b1b7110aec5cb047f325d86c575f82528fe594'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d713c43fe4fcfabac92823421994fbbd485a0625e09bd61f279f2e20b3d7e967'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'5a4bd2cc06718bd78b1d5c4769c3f1dcd91688802851150884855ab158ecd9fa'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede54986bcb63b7c25e15d0e463b50548e398f1f1160999116e9733fa4c52e8f'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'d2e9024356696d55acb9301aea3214ae343e23a563800cba92f80928b91724a2'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487e7efc1e302249a8b62de227705dd9b77046967fae3306c1c94f91bcf07bb5'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'8a4afbf9874c7573c8247e7e509b83d0caadd35ccff80488b2b33a39f7b91fea'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb9b3d1231aa3c930e0a7416c26b9fec007c2194eafa28d8766f0e4a5b1fdf1'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'1e0096feca4358129a0488e463ce61c52eef533f884d5c54bc460a99e844deac'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23baf0ecd2a5792db4821206b8d2aedcdde32aa321dd0d725c47b959006262f1'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'538e36ee4fe7fc4d55cb9c6e64707e59d3616b153c05049474e4ec1a63f3642b'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ca8fe95795b87a2c57f984f2b6e0f39aa8d353b73e6715d03836ffe0d895bcd'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'a8b08e891a9d20a6c66dae3f16d2807f7fed0c62d33187d96440efb46ec9d801'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44399c9f7239a03b37c3c34e80c716d343ea58d9474f2ef1a2cf7e0d2a24b0af'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'7eda1fec65c16fa90ff8e3d9458efc627a62f03962a0ce2ee030f2acb6c306d8'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc630b9e4dc2404c2acd3cf2a91454b1ae591e60346c17a3b8c91cb3865c88a'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'252484521fa259de410e90afb9b2f5d9f63bfae782e09f8bff2b64e32a12e94e'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30f91ca5b7d20978e2701b02647a886e1989a1ee134fc38cbd8145d16708ff1b'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'ea37db21934b5bdeced29475b9d264dfe752f34d43dd7e653ddb0fcf5aeb63a7'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ffe9216ab4f82aaee329502c52470ec7326b8067522341683d6a7b4f1dec8c8'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'2771491880141fe357911f0ebbcc1bddb77e40a0fd3caf507302ce81cf71f89c'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29fb680447298a0628363d456f508150781656ddfdffd6e20f99abc5443408e1'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'eebd5e6e2a9de10a30ff86a75702dd8b981cc4486933e501867db03fde1c1851'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'371712950d794ce4b6f0113b809250f15b197bbd096b11a8e4c7e389b2c0d8c1'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'a8ac07ae151f22735f4b368812ea6a8198c28fbb3c3d0caf3c349b00f25a5ad3'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'776ff4b442ab04dcf00c1bc315557a44c041c0d676cf5c5a7756052e42471112'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'14c5d61396ae4f3f7a3d944187e596415d8ca34b2aede89c1ca3be23a326db66'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'193c3103838e94383755419a04da4541666c8995641b09edd7e1da777a4544e7'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'0b842659292055725318f81768aa99dbe84f2f899b4f130bbb8f2d72fdbae982'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c47a7ef5aa162121b9508982e7eb3d3545a36c7865d64cffe4c6842aa627b0d'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'ce9bb2125fdc8dfe42e775e249063d6df0b2b83f6e99e025f9d897dc9c08a566'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc95746e83c0f62e1dac103c0c06c82f400a7fe77f051c73617dfe171498431'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'d9ffe56b2d7d31cce293f3c6c3b0504386c456727a161b840c8797909cfd6098'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7abb21209d8b91f7e6a34ef7f1d3f137e79cf9c07162d35fd3840791f2842175'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'33537815c2daef515d67340b9d878de14567db34f0475bc094ebd34ebf8c2ce3'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2e7eb1809a0ba7d9a2d9d12f62041fd8e5612608733ab2d771734e4bc41b658'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'756cc0468a84e850d68527c8de3430584f550f9168ebb34a56f3cb8a9ccb336c'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1814902ee0613bb55612511cc2198618437c8e6f19f26c7b5b838926eabaa080'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bd0bb09b23e069d5bd8082fea47acc5c94131e391409cf3bea2c5eb35fd0cbc3'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d8281f46b112d028960546b4139bb49a403acd4dbd887716127c20616c4d3a'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'07a27b1c30930b4088e1e08176927ac38fe8f06016e3b015cb4ed0350409737d'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5bd167a8d190beb217058ccdf0da72299e1c650c337edb80c8b870c50d540c5'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'5ffa442ecada154121dc8dd02973ca36b3d2374789f58970b5dd6ca3b4b3da7f'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58cce830e52994bb6c4436f4291817d940d2e75e6944715423ccbcdea745f424'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'3d728ad4aa117e4938fccfa525ff2f5352adfbb373cdeb1b55bb30985c534de4'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1afd76cb12e847f9b77c9670a2b31ce12dd49a513476c21db10b6eac62bc302d'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'5ebeeb2291ec2fac4fe607b1e7bd37b700ea250d5120d4c1af7685f696fb2ef3'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07474e439b2f10d3f93f95945e4ec8d2249682bf191f20955b0a2b2ac833259e'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'110ed58da608f0563c180db4457ce544aad565cde59bf36abc5b4cda3a59c9a5'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad1d667181b4b40de957177dfdb7d88b557c73bce7c5976a659afec8471c1ee8'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'857660746766bd53a6632442f573a2210ad44b59bd06d5fc42c5fe8454774cff'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6da6605f3fdee91eeeb1eedc939ec33c70e14d51693ee179901ae816a83b104'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'631301d580efe6ac7d6e6283203f5038ec17b5c1ec08e95751f3c852eb0fa996'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ad4abef6c2f4d177795c348f48bad3c9af1cd629d55895686dc47e30094bea1'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'47028243ae2c93e5239e484c3397d63ba67021fcde7b0012bd73536d7db823a5'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0184b4f9ba0198c3641b3f870f8bcbc4909918b934dd89730af1298c58c79920'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'4768fe1e0978654d64a9b1e1710a8602ca7b408dde9726fee1f866261656a668'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4954a6d13b60867ffc9bac48c6f6076d84809b0b1e860e18d32e84859dbe3a7'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'1a1a7c3c5d319360a0811688179fa129058993871ace480a5cd3f875c7de3fc9'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'590b552e5584422a3422ff2fe2188ae0635a23d23d50ffd23c4def65f5139c79'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'36d8bed6fd6d10c286b5d6609130f2fced5f33b6b547f5ab4f9421cd618f2b0d'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2c81486f37317aa03614cc3b2e6742f887f565c2108b7a2fc755103f0043ea'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'2b55c4fbeb83f212f3a1b18b9d59cb6b16786768d5786aebe78c7d2d9fd2b72b'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f48d54ac30e7e6268b4c8e23b93348da17ce7844b7b704adb98ddcf1d61cf33a'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'9875dbf062b67f2866951ae3f7aae3ef9d1c089af5c55614ca2a5ae0716046ce'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad7a43daed90a57f46b679e82abfdba3963f283210333e81ba7f4fbb310e457'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'141486061efe9448d8ee0c24d2c529a46e4274baab30aab0b5dcfae9323d390d'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c320f4631b607d88081d1e43bd918b52105393b0584d709490884a98f229761'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'d6459b6f12a1a8e895bdb6068620efde44f762f498d5c0996f13fd27531fe5c8'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d983f7a1736a96e145fa5a8221543131d33a11fc0bf6dcce294cdc75f674afe'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'2906b2c1d6c53bc24a1da55f5038adb67b54a69295a78319d1251a86d318e735'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d5c106edbfe6944862337fb546d96cfd9c254f0ffc8058ee2dc65f9630a36e8'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'87bfe147a51d98214147ac06af121a6d8941deffac7f28a8b7ec26c49c421245'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b81c30086685db259acc4e22b3d5113520f79e0bef3f536451bcb3cf9b06108'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'f2cb1ddf4768cac1bdfe1262cff3ed564afe9ebcc97fde82fef0a5bf66f1e822'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3652bb6ed7ad45e46a6cfefff4f21c98d031af0fe730ac5cab02cfeb376ed29a'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'beecb7d6958f271072388e722fb9f303a4973a2e725aa2fa0436ee80ce7146d9'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a55d4fe16a7df2d03a2c6653601a16a410f20987413700773219e77405a45b73'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'9b7af1117dba09ef09ebf4afc49340d19fc0f691650c334cb4778b0e56e4d634'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a06ace128595e86c16325b19d89991f28b86c8e4c0946464a37ab804a121c0e'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'64a98af86fb4aad4305c4d49ce5fd82a4fdc695e72c7780dadcd9cb1f54f0561'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d251464f83a6078114b84826cf9dbd37b8fc078efa826866210b4a0121d5a2'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'a8302ba4e5bdbbffb8547762c3040b295d59cf9039288bcb4deb8e27f174a188'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59a4bdc497567a15440349e868b96815857865a0377ecce0bc4a131ffa19afdb'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'5736baa88d7501f9b00c354b951dec6a5d095741060369af2693acf29e1841f0'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56fc5dbf396113c1ed234415b68911ab91a3990e55e24a19b67b81b86cb5f7ef'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'f2a1d912f2f6c6ad2856fe457cb3106335222fec1f936d9f3d76e49379bc57b4'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cec066396dc9d17c4d18ff18bd97f7fb1370e3dccff2aa9cd6fdd727534a7827'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'dcd2392b49b108c63afff749be9a27cbbaa1f092662932becd9d457782e9089e'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dd39c2527add7f5804c06727f7f064268889867300f3a7b7a61581c71b2a242'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'4a190f12a16f5639a1018a21358366c8d896a37056c93ee70f6d623b84e83a67'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ed1a6dd2e116c16f27b5dc3d1f027c851fbb1bdc252a5e450e0afcb1c4bd8b9'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'15af2ff0ec46b3c76d0536c6c0074eaa7090d4ce007c032b47e9b5203d127698'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe7cfe8d1f40ebe94ab61c6bf5cc8a45ca25f69012f84f3b52fbc28ebf7c2399'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'e816a482af34fa75060fe9c794e6fa2dcb055a8e7f7946b6b71cfa0eee9c281d'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'274b514f04613bb82f20dd3abd2ce40ec56d799da14aad18b1d1a0a0e1a2086c'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'890df9ef94eb21f83a117eb8d06c1b87864731c556aaf67854466f6327983e27'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bbfe7d32eef643fc015eba7e3181c2fc4e4ed353e3221e3cec2661f9a37217'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'df6d984d076b4fdb2ad7c25f54866277875a4c693887b69743f8106b70b16100'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60362fad69d473c060dd04122874c864ae9c68eabe4bb550a27560f6e11f6d35'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'28f909ff9fd21e4b35866a7c2dfa156e96e2839bf2c4f3af42483b78db8465cb'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056e6119ace40e9563994bcd0270e968e926e694f03d53f93d95761e0072f4f6'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'8842d49b3bbf562f62e81b438b4304906b6e96ebb2fb80f9dcfabb8e77ded09a'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3998991a7d8f16b9d3a0d300abc5f484626ccc454818b7b4e6ead0df990a1133'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'c106a9377b0f6bbf43470a0a56cfbc6996b9afdff081f94ee7008da467ee7ab9'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffbdd952417687bbe7403f98d6e38056c071c7dd65bcda3fbf731aee7aae10de'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'3fc3715d5a6b189be1f396816571cfb605eee2ed06339aeb4fcc0882102e866a'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ea15d0a4916cd1a8684f0eae396246bcd55ca672c151f8c718c213dac17ee2'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'382ff361d3e550a0ceb99ee376c39b5292ad100009d81e9795a080c775c5d6f4'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6397e81b66d138a12279361c1d1098c11e9067e1e72020adb16b8c4de788a6f'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'542403f81e86ad92c04c3a5eebf5cd49786b9e119782bc097c8a259cd6af1c69'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'279c104102b5680f51980394e7a99059ba7db0dc3b617fedbb4c6daabcdbb660'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'223bbd2a74474fed006fac5f83237c42b31a820536c062f63525b5eab917cfd3'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66344b7f7600b971dab42706d1c1cc5c3595282de995dc52690383e599f212b4'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'a047e09ed56e7b889c08553374b300482478849ac7b9d4a639f818553d752d98'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd23b1b5d6e008784409c48c86b4b5fd0883470cb1689d854afaa5d32b156929'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'5d6fdef1e00f2018f53da52d5ed4efe34fabdea07879b5288145f2c527c8a749'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33da6b078016b4946be3e1c34c7fd49099eacb292d3e7721fab568bdc1c3568f'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'fedfa2251a23c316d83bbd16b2ac28d5ed9e85d66b34eca9b9c1fd236569a199'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da1af6a39a4721506dd2f81d2eca52868da3bbabe26925691a8f5f372941dffc'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'6629f41a6c5051d75c64b58e502d35071c2f5d0aa977d64bfcc645ca3d47fe97'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'854b0276247cd25919d0e1fcecc8f72e4ae175c861b0b31013fb288c70e4efbf'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'37033dc811e6b6c5d47b72f9f9a4cea8b2209a04f2d1bc5f7187cfa8cd569046'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14c7b19cf6732c4b5583ae514384c43c1c0012b1fb7d97da1eda9071adf89387'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'869c38e9923d33df8849df6c3fd7c36bdadd2b5469043e312baee2da2cf6052a'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'694575c72048f2af8e2f41a2da3f78cea97c403cace38712b97fff6dfc9c7fc3'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'ba5f9014c770f77193319d764afb4070e76f59c1f9413e0b6fa957101fd1eb77'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad7d96286c7f77cc3f53bd3345fd415f78d670821902b7200d2d96da014ee80b'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'0f95a38595bc80d023f639ef1e1d9bea373b1cd18b32c1db72c353add1fd7dac'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325d88784b46ddc71becfeb3bd0533f4bf502b559c6e8710e657bb7ba4a22bfd'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'b8eeca0e506794b08218d6af3d0f2c40e57fcc5ab826474f4204b6891b85f9fc'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75dbabcd63b9851eb7b2d49b3a3e261473cc573181cc720198ef76fefb81340a'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'07ba25043e2875359fe1ac542cb3170a8966f9dd9db57a6e67e4a2046ceb6440'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12fec734b49a9fced85419c6d55a01d0d9f90cf4bbfb75aa1103ca6925239793'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'cb996c316c487cbbb4051687c8bacd10750e5a997b43fc2fc25bf15eef75fea8'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2314fcb4ec6263206532a3a831636bc77b87f57595b57a6b3648b82b44a5b5a'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'62e31e03d906f526d602bef81acae7ba758d45dc51b3067cbd810c5fc735efef'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb7bf4dab1e1e74cff1ec731ce8dec02e5667e2f944c4a5d56e4a54ff8c7ff2'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'f1233d6a917651cd52f4e898969e183e72d43dcb201d80464103b997831bbe80'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b74c0890f113bdc4b19fae642415d8a3ff020b90897c72175713b50d17b1dcb'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb64801eb836107b66f087a42a71811d6a4df49706bbb528628f5a0159a7658'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134b690ef450197b0f427175bd9ca80127b31a62298a9c117d2b2d142f71ff75'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'96654d3770f057ba5cc35f0d021e07a53e85eafdd5dbc03c0ff50d82e80a15e3'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f19b5d81b8f5cb268cc414ed3e5cb7d379c7ba2e59969487db77a6e85e778fe'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'d4cd8f6ca2cef2a6948568de1e29cce6e0e2e8ecd76d59ea567a98c86fa9fc5c'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a36d05f5ef50ac415d1f15d3506a37be350466764e1f624ad8eb8131484a98d6'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'0f4b0887dabfa67c81b5637224f2d0f827cca03f45f94f743787cc2f5320da8e'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6efb6fe30820cb6844afc3c3031a39004f0f5300618fa68aa047babcd17a4774'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'dd6ebab2b22b86f7e6503d55e4f433858119945558211cfb0a457b21c5e5eb37'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a928b1b1ddb50e534671e4e3491213e09f9a09971757197f799293902226762'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'e7dd99ae77ac7dd3550765e67040350f497b2e05e69a07abf7e6f04aeecf44e7'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ef46dc86fcc0049dcc7cf112c61e313ac518dc854f627a300f74d8b84e88f87'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'8f50c8e6977586472ee10d5ab541d7a7dd023714762e39758c452a81d3aca470'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe14db68ea75741cd31e987f7383830c1f53cb96e69039121960ae55057562b6'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d'); +INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00a6caa3aa991496c607f0babe7d83a0c070aac2df5f1a2dc6cae699ab24029d'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql index 94522b95a7..67ad083bae 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql @@ -152,30 +152,30 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0'); -INSERT INTO transactions VALUES(2,'3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000002FAF080',1,'e488ada780cce6fd20645960fa4c00f46bc2d3014eea403415df68df8c9a0161:0'); -INSERT INTO transactions VALUES(3,'6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'54900f21dc6f766adb88a9aba633262eca60b42b4e334f4a05fab3e6dff55c68:0'); -INSERT INTO transactions VALUES(4,'36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'b2a1fa8abf69e20f54911c80cc5a1db0cad9f7e6a248f318bc7e8f0b37052bb6:0'); -INSERT INTO transactions VALUES(5,'843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',50000000,9675,X'0000000B6BDB2EF465E9FC04060F58CED26C159DC983A616CB121C5E7954E66833444C5936D00F8C35A9C6ECC7DD0A64610B1C39A71110D1A95FACE6A2486A6A7A1FF83C',1,'fbffe88a06b9d791e11241eb5a642b58dad82933b6ea4af179b7cb43ed1e4d08:0'); -INSERT INTO transactions VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'24a606746ea4ce49c119d914356b48e0a15354842243414bb3a7b2cf9cc9a841:0'); -INSERT INTO transactions VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'010e082fb9c508804f1e65db734ba38b58acc8f7eb31cd02f07047a9bcd9a4c2:0'); -INSERT INTO transactions VALUES(8,'5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000000000476700000000003D0900',1,'ebb9e84621e761d7f57b4f3e6e4b90947e648e1e6c77726663882b000f144405:0'); -INSERT INTO transactions VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000000000000004768000000000000020E',1,'24daf4100f55b121a16483cfa7203ac95303400d45ddc19de0146d0e2dbf82d4:0'); -INSERT INTO transactions VALUES(10,'42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'2ec45c5f61fbad288a6fe8bd49d83823700f92512bf9513f06b0dca32fa57727:0'); -INSERT INTO transactions VALUES(11,'201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'1f3f78c84f24b97edfab9bf0fac70974cd543157cf65d9464378cf31e3b26d4e:0'); -INSERT INTO transactions VALUES(12,'1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'81c8797b226b263715b86600744076f2922a7f74212fa87403ff0857e60af530:0'); -INSERT INTO transactions VALUES(13,'7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'ca6f5f8dbb4762a0265e98f35666e86903031938b65dab59e63ba89242f60f62:0'); -INSERT INTO transactions VALUES(14,'e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'b055a68d3f2f53e7b4a413d48206a9a02f5ab56f7b948f36d0ef993cecf876b2:0'); -INSERT INTO transactions VALUES(15,'3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'5f55a6c0910642e7ba83dbcfa2d6990d31539f532a2ef427b099dbe2db75a236:0'); -INSERT INTO transactions VALUES(16,'a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'32229c87e88ed2c3796ca5bb209c31c36e2ed7bcb8ba20ea36ca395db23c47e1:0'); -INSERT INTO transactions VALUES(17,'194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'2f07b60bdd5d909b98f1a40d4677b4d89435e42e5e5f4116bc1d33c4179ffa91:0'); -INSERT INTO transactions VALUES(18,'72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'14059c8fae8c962dfd064d7f1820e95ee53256aaa2814914e1a1c3ae865ffa17:0'); -INSERT INTO transactions VALUES(19,'065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'b58a8553f112f012c14b3cfa19b489e6171f3ddd6664340edfde4395489ec7ba:0'); -INSERT INTO transactions VALUES(20,'7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'d34810e3caeb03c0ad4047d0cc5461583f3f2471e358037fe69bf6cb299cb3ed:0'); -INSERT INTO transactions VALUES(21,'0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'d8ff0c81bb265ca70b0c28293b6042b707f9d1d30fb0145c3618c72455d881cd:0'); -INSERT INTO transactions VALUES(22,'eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'7072487856a3c59ab919efb969b9c9701006d6bfcf65d9e3bf9ab34f50a5bf41:0'); -INSERT INTO transactions VALUES(23,'c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,10150,X'',1,'b5955ae6d9087334db96b8605fd785eead5c7abb4200b94b30c327c31dc23534:0'); -INSERT INTO transactions VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000047680000000000002710',1,'92a935a2d4d4072b79fe703a72bc9bcad6b6afb518af8ca11c92d4ca06ce465a:0'); +INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0 2 '); +INSERT INTO transactions VALUES(2,'3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000002FAF080',1,' e488ada780cce6fd20645960fa4c00f46bc2d3014eea403415df68df8c9a0161:0 3 '); +INSERT INTO transactions VALUES(3,'6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,' 54900f21dc6f766adb88a9aba633262eca60b42b4e334f4a05fab3e6dff55c68:0 2 '); +INSERT INTO transactions VALUES(4,'36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,' b2a1fa8abf69e20f54911c80cc5a1db0cad9f7e6a248f318bc7e8f0b37052bb6:0 2 '); +INSERT INTO transactions VALUES(5,'843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',50000000,9675,X'0000000B6BDB2EF465E9FC04060F58CED26C159DC983A616CB121C5E7954E66833444C5936D00F8C35A9C6ECC7DD0A64610B1C39A71110D1A95FACE6A2486A6A7A1FF83C',1,' fbffe88a06b9d791e11241eb5a642b58dad82933b6ea4af179b7cb43ed1e4d08:0 4 '); +INSERT INTO transactions VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,' 24a606746ea4ce49c119d914356b48e0a15354842243414bb3a7b2cf9cc9a841:0 2 '); +INSERT INTO transactions VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,' 010e082fb9c508804f1e65db734ba38b58acc8f7eb31cd02f07047a9bcd9a4c2:0 2 '); +INSERT INTO transactions VALUES(8,'5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000000000476700000000003D0900',1,' ebb9e84621e761d7f57b4f3e6e4b90947e648e1e6c77726663882b000f144405:0 3 '); +INSERT INTO transactions VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000000000000004768000000000000020E',1,' 24daf4100f55b121a16483cfa7203ac95303400d45ddc19de0146d0e2dbf82d4:0 3 '); +INSERT INTO transactions VALUES(10,'42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,' 2ec45c5f61fbad288a6fe8bd49d83823700f92512bf9513f06b0dca32fa57727:0 2 '); +INSERT INTO transactions VALUES(11,'201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,' 1f3f78c84f24b97edfab9bf0fac70974cd543157cf65d9464378cf31e3b26d4e:0 2 '); +INSERT INTO transactions VALUES(12,'1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,' 81c8797b226b263715b86600744076f2922a7f74212fa87403ff0857e60af530:0 2 '); +INSERT INTO transactions VALUES(13,'7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,' ca6f5f8dbb4762a0265e98f35666e86903031938b65dab59e63ba89242f60f62:0 3 '); +INSERT INTO transactions VALUES(14,'e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,' b055a68d3f2f53e7b4a413d48206a9a02f5ab56f7b948f36d0ef993cecf876b2:0 3 '); +INSERT INTO transactions VALUES(15,'3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,' 5f55a6c0910642e7ba83dbcfa2d6990d31539f532a2ef427b099dbe2db75a236:0 3 '); +INSERT INTO transactions VALUES(16,'a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,' 32229c87e88ed2c3796ca5bb209c31c36e2ed7bcb8ba20ea36ca395db23c47e1:0 3 '); +INSERT INTO transactions VALUES(17,'194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,' 2f07b60bdd5d909b98f1a40d4677b4d89435e42e5e5f4116bc1d33c4179ffa91:0 3 '); +INSERT INTO transactions VALUES(18,'72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,' 14059c8fae8c962dfd064d7f1820e95ee53256aaa2814914e1a1c3ae865ffa17:0 3 '); +INSERT INTO transactions VALUES(19,'065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,' b58a8553f112f012c14b3cfa19b489e6171f3ddd6664340edfde4395489ec7ba:0 2 '); +INSERT INTO transactions VALUES(20,'7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,' d34810e3caeb03c0ad4047d0cc5461583f3f2471e358037fe69bf6cb299cb3ed:0 2 '); +INSERT INTO transactions VALUES(21,'0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,' d8ff0c81bb265ca70b0c28293b6042b707f9d1d30fb0145c3618c72455d881cd:0 2 '); +INSERT INTO transactions VALUES(22,'eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,' 7072487856a3c59ab919efb969b9c9701006d6bfcf65d9e3bf9ab34f50a5bf41:0 2 '); +INSERT INTO transactions VALUES(23,'c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,10150,X'',1,' b5955ae6d9087334db96b8605fd785eead5c7abb4200b94b30c327c31dc23534:0 2 '); +INSERT INTO transactions VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000047680000000000002710',1,' 92a935a2d4d4072b79fe703a72bc9bcad6b6afb518af8ca11c92d4ca06ce465a:0 3 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -513,352 +513,352 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":"e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0"}',0,'NEW_TRANSACTION',NULL,'4a87cc49a20843c26b1df763f3ce6b52d59ed1c028ac6c36a1d96f52bae51b4f'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','885ebea2d49f4a749882f86e10e9b21fa6abc1a52e145cf510b39f1aec3bf6ed'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','60ed070dd6d08a8afcb118fca013550daf8919696f16a8830e8184536c5c92b0'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'d4cf8a624f76c044302f63aba8daf9799694941ea251bd7a39f88954bb411315'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c40adcd29bd386c6971d1826236154e7272070e3939aecaa73a5659eb39c1b5b'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":5430,"data":"0000000000000000000000010000000002faf080","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2,"utxos_info":"e488ada780cce6fd20645960fa4c00f46bc2d3014eea403415df68df8c9a0161:0"}',0,'NEW_TRANSACTION',NULL,'c2e729808ed9bd11d215e6ebc08faaf5259412f40a3885aed737887d4a64f892'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','4e0ba7b6b5b827b00fcaf2c69420ad647cbf1b22ce6d8b7794582c6d5b01ae3b'); -INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310001,"calling_function":"send","event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','8277a7c140cb7e7e524ca4da1796ed8995bfd4e1780c68aa8ae9f029ce4b5cd3'); -INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'SEND','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','148cf8df111f707694c31d739269e50cb3075a83fdbccdfac06bea9b4324cd97'); -INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'TRANSACTION_PARSED','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','2b58998ff485a4cc0a70dcb2e1c9e38bd0850c10b093b1a20bdd492a56333c19'); -INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"bdf1308701712d94da26f53fef4c440ea2fb7b0ef7361f424ba9263e747272bd","messages_hash":"3982f4f3a8dc501dd90db276a698a42a505c246daad5375df01cadd5dc1c0105","transaction_count":1,"txlist_hash":"fac614e6f77f1b954c12523e9d0eeb4252f92f3640f7d067790a510a9e893811"}',0,'BLOCK_PARSED',NULL,'f7d3fd8950f5fc4184e1a4598df08dde01fd4cb1075b71225fd960c118a70c16'); -INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'170cf86df98628f5f5a07dfddda8a35831d171db187d13ef1fcc6660fb1e7000'); -INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3,"utxos_info":"54900f21dc6f766adb88a9aba633262eca60b42b4e334f4a05fab3e6dff55c68:0"}',0,'NEW_TRANSACTION',NULL,'d92b9aed0438dfed2aee0d47bb6ff59912271089dc1dab330dc941f4968f363f'); -INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'OPEN_ORDER','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','6a564f502b21e2c73a83e8ce066c1b9f17ce01276a3ec898eface8b6b1f568af'); -INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'TRANSACTION_PARSED','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','de5d0c9dcbcac44596154aef2caf616353572236ef9c7e20179c15d432c34064'); -INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"cf830f949715ebeac09d4441878f60ac04d691c09d6c25c62a0d30fb5886cba9","messages_hash":"28b764d4c3761b4bcb1e2b3cbd62b372bbdb26ab4930950d44e240fe6eed016e","transaction_count":1,"txlist_hash":"0c743d61c27efab7c83c1845f6b0446b67c9b59173318709d51363e75e7a0601"}',0,'BLOCK_PARSED',NULL,'dbf794af006301bafd96a95ff38822d8852667a12f18305901f9bae33c19e945'); -INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dd6de4c063c0f2b7749b44e28f641d3f5e08c0fbf07291013edd643f6084618'); -INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4,"utxos_info":"b2a1fa8abf69e20f54911c80cc5a1db0cad9f7e6a248f318bc7e8f0b37052bb6:0"}',0,'NEW_TRANSACTION',NULL,'101ba09aa51d6f3548b0704324ceba2781c8681aea00049ee3b3a9bd81ce7e1f'); -INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','71642a782860f20936420cde9135004a0ca0adc3ce134901d5b11a8dc8fed756'); -INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'OPEN_ORDER','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','2b7475145b73dee92b81272959d228babeaf60b8b893da10b94e72f6e19803b8'); -INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','3ab175d2909bf139a2379e4e6c62c83981fe1780d424590f0ea782958d4654f5'); -INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','10c4e87fb445671ff075bf345149b9e4e29b896cf7fb05f9d778af38f50415b5'); -INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","match_expire_index":310023,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx0_index":3,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx1_index":4}',0,'ORDER_MATCH','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','0f3151a7e2306c80205f9bcae19de1678371180e3338755c0bf3e57bb1667421'); -INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'TRANSACTION_PARSED','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','9808d88228245fe446024bd44096744664dfb85226f04ce219da9672d2991246'); -INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e881a675a38c4649cd44e6406ddc494996c761671bc349dcdea1de430a84258d","messages_hash":"10d9d1d1d68bdcc6d8e2d58fcdc154884f436553a143f5cd520b0026363f0cdb","transaction_count":1,"txlist_hash":"9ae051d14f8d19db67a85c713eefc0a936f1bad818ae1138fcecb91506a46d88"}',0,'BLOCK_PARSED',NULL,'f2d421f6764ba4e6ab8015621db4b41ca9dc3044bdc4102f5f4cd8eddcac818b'); -INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24b345b2b67667e7e9ea7f1ad820b73a79624170050b38c422a88d2ab11010e1'); -INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c5936d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":9675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5,"utxos_info":"fbffe88a06b9d791e11241eb5a642b58dad82933b6ea4af179b7cb43ed1e4d08:0"}',0,'NEW_TRANSACTION',NULL,'3fb0e6f17750acf42811fe5ae478eec1aed99cb922ab9f72710bd5be8dd2fdee'); -INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','d622ba19ab8fa6b24beffc57d567ec13a75f2fe829b0ddc8e6738974db91a321'); -INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","status":"completed"}',0,'ORDER_MATCH_UPDATE','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','29104e6b2ee6ec6bf2d412b8a0014119b9ace8b25f3c38c33382b307cd4d4d6f'); -INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'BTC_PAY','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','626b6739d20361266a13b466c4fd95703718adc0c98672df2ac6f7732ac0692c'); -INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'TRANSACTION_PARSED','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','6595c3a83f28947c493accd84520a798972e370aec47f70c08bd34b3c6921c84'); -INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"13e0c6276f297ff1ca77705f1b18d807ca22f53735fba52f4f5c3766dc4b04e8","messages_hash":"aa968b67b3f01d9adb219bc43a6831cd92130511d0848352e5ce334356380510","transaction_count":1,"txlist_hash":"a865bc7b6e26b3c3868ae080ab927ce3f2dcdb7d3654ffbcd1b3a8111d0807b1"}',0,'BLOCK_PARSED',NULL,'f3bab2038a795686dc69dd517eb8b73d450b22ea9e1f7226b838ff65b94e234d'); -INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b978970e60cbd9929349476706c810b6ef605c5e6db7cfe04300d375cdd2690e'); -INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6,"utxos_info":"24a606746ea4ce49c119d914356b48e0a15354842243414bb3a7b2cf9cc9a841:0"}',0,'NEW_TRANSACTION',NULL,'bfbb0ce5cad12fd78d06659dd5992bb9b9d0cec26717be5d6f48ffae73a6e186'); -INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','c00ecf84d3abbb179c6137bc339dc09e53c5c7d9278ce8b6d0abefda07899146'); -INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','1b91de814aad2115c6752554ec7710fa2f360d6a16fc537564b0084ea77e01c4'); -INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'ASSET_ISSUANCE','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','ff8420bb782c02e63a9962e4fe0a4495f85b3ce4f7e0fb96aac3b729423de37b'); -INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','586e256937bec5c50a48539c7e758761cbe39acab276426d7a7cb83fa9dfe878'); -INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'TRANSACTION_PARSED','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','494410d3d23854fed00e639c9a30081e8f6f5168c9c8fba1167912c84d412fa9'); -INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"765896f532b411af9f889687a750d44414296c20002f3e2abed9551a6822937d","messages_hash":"1127342777064d3cdaded48200f307a39ed2daf430a0c23437ca8b1403e32a05","transaction_count":1,"txlist_hash":"59095fce5f573c2ff1b5eda5cd75c36227b0f9782601e7538215fea5317c505b"}',0,'BLOCK_PARSED',NULL,'8d593e7493b117fb83b6a78dcdc2095935736095a25002e583c047d6da00c890'); -INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ed166db0ef9c1976843af83c85a19a642cd219cc621f65cef741bca74557183'); -INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7,"utxos_info":"010e082fb9c508804f1e65db734ba38b58acc8f7eb31cd02f07047a9bcd9a4c2:0"}',0,'NEW_TRANSACTION',NULL,'1cfc9cf707411039000e6c4ab4888e4d56bddd59aad58fa01517092258620377'); -INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','a5c6623672481b5ea120af7e7af2c1e59d4736acd7b799da08256df242b91cd1'); -INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','24cd796dc58db6dcd8f097179d84e07e6498db2bcd1ef26891310aa9a31c6825'); -INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'ASSET_ISSUANCE','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','0099c4b6c9af6af7f96914cb728ffb230e494ba5bdb28b23da6b9eab74873180'); -INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','9310caa081a00a86684c3b98c26090bcb572921b1145be1f9a179b87e3ee2269'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'TRANSACTION_PARSED','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','b37c65f5f93b5b171af2f3af6779dc16d4c1cd0222f5438935b774a09ae11b43'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"853e3a8d39c4e8bdb36a0ec01a8d20f12335fcc00a00ac271e9d83be471d394f","messages_hash":"1986e851aa4d771bbcac1e6915796eeb9a862443ecb949b933a03fb3dbf0c105","transaction_count":1,"txlist_hash":"752821f935743579d04abcc94c104148b226cbc0777a6bb30bb7eceb29b85fca"}',0,'BLOCK_PARSED',NULL,'bfc06a1e96dd2a32807ff42bd86c32ff8420dd43e1e2519d25ae7c7bda7d318d'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767c19c3d79f380c6107bb5bfc403721b6cc5f73a5accba0d4b8436bc4cfe51c'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000000000476700000000003d0900","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8,"utxos_info":"ebb9e84621e761d7f57b4f3e6e4b90947e648e1e6c77726663882b000f144405:0"}',0,'NEW_TRANSACTION',NULL,'b4abc122b74bdeb7bbdeba496598199f1809ea4e45976679c0f372fb8699289c'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310007,"event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','4e973b95ea0675b3a2c4a82478057381af24dafc79f902f220d76e149a8acf06'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBB","block_index":310007,"calling_function":"send","event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','46a8df63fd4acdb2fb7e84a88046ad8735736a9643ff7ac7b39ef4c1283a5eae'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":4000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'SEND','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','bb8d6e2b0a46747092677dea37148b092479427ce62c7f3d0c21ddca707a151d'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'TRANSACTION_PARSED','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','e9a4bebcf4f224bc698489e266f1cd54fed8209a7e5ecfb6594b427269368835'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"f2b2d250a94afa158f9ed84434c3ac7a0bfc97b4387e5e3c099afc95b8a6ad9c","messages_hash":"6e1e255f41512505aa0d339849037191697a7fbad0e2adc21c1ae48eef8f8f2e","transaction_count":1,"txlist_hash":"405914410b5982b395f52f17ee4fc69dc0e4fb4c7a511009c700c0d1bdbfb563"}',0,'BLOCK_PARSED',NULL,'89b90e8260f69432b50cc7e144dd440154f0a8a1b2c0fa383eae7b038120fff0'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1d0dadbf319c1fdf58106a7a6c1512d2cace4f5b3eaae0ea92161325ebf0902'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"000000000000000000004768000000000000020e","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9,"utxos_info":"24daf4100f55b121a16483cfa7203ac95303400d45ddc19de0146d0e2dbf82d4:0"}',0,'NEW_TRANSACTION',NULL,'e91a4701a327c9b91f2d9b3f81b3cbd5dd70e7303089fca2f000bcc9ed72bef3'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310008,"event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','8fd4a539c628db7fe918f8371277124f52493a1d2886e6e5330177cd0194ab44'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310008,"calling_function":"send","event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','a787df8de31aa9579598a5e6bb74d68b9d0e694fa8a0815689e39db99600b083'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":526,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'SEND','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','aee6f76a541d42f7dc8c85839b261f62e9888343ca6c13dd25ef661000aa09df'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'TRANSACTION_PARSED','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','5d48e9ded4d95f0c17a6da33e9870b5616cb4d10fd7c8e6e1e4d08faae08e720'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"8c44f15f5606b6fe984a9fa7df8d7d5381fe87a6c8b634469804328885668569","messages_hash":"967f755bf80b80dcdb561e2f822d0c057824fd092b1d7536d1d52f96a4226df4","transaction_count":1,"txlist_hash":"81714583a99f97b5cefc10510f507567e02f380bdb5741e2b5ef037816e8be17"}',0,'BLOCK_PARSED',NULL,'bbedc0be7e583222179c29ccc9ea14510b174dcd0cea38581af551714acc5d13'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7278672e0238700f3b4e4cf557b60c75eb4c6ef39b5fd50b0bb96c30bc9aa5b2'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10,"utxos_info":"2ec45c5f61fbad288a6fe8bd49d83823700f92512bf9513f06b0dca32fa57727:0"}',0,'NEW_TRANSACTION',NULL,'18095d39f59db0c173b727a544e31d933c69daa8d0b0a19db34bc1b5e824da36'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','69440de8290f170377668871985bba17c12ddb5981c33f45feedf68deac3a533'); -INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','3933f4356ee2d5f57ca49de465da25a95368e8e776d44221f9d1c8c9934813a3'); -INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','e29bdf94c3ba8a94240490159874e6d5d1bdd8436ff268c3173622a1bd9db247'); -INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'ASSET_DIVIDEND','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','beeca9c796cd5175c9e070814ffc90f464e7e08eb1ab3943fd70708a9459def1'); -INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'TRANSACTION_PARSED','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','e84bf9b395b0b0574509c038145a95cd6a8e7b3bbe0c4fe9d16c257a48c7ef6d'); -INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ba378e9192f290d3f9d3dd1e46aeef3a185bd5aff1be809c8974fca8dc142987","messages_hash":"17af8703880540d50c20a49c96246184b225b94b10b2febc0b4a726bbe6430f0","transaction_count":1,"txlist_hash":"9395234af8a78eb91afe7dd45a6701032af9926cba3e126e01f06547ffcb2e08"}',0,'BLOCK_PARSED',NULL,'b13a68992ba6b6cf4be1173b8c4acc0806de82a869507ca696d202e526b7a3eb'); -INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a9b92d9055f36094602f39f69c9659303045afc9c85779011f5d4ab1e042ac'); -INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11,"utxos_info":"1f3f78c84f24b97edfab9bf0fac70974cd543157cf65d9464378cf31e3b26d4e:0"}',0,'NEW_TRANSACTION',NULL,'5166ff79906d4e709a08b94b5913cfb9ad634c9253a885303d3f0f4ce2735bea'); -INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','047a84229f353a588904a69a25cc8a02d45a0e1a5ea235e9a90d6f84307cdd0a'); -INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','7fff1d098b8420fbb620e2b6a89233f95b9b902da58ad27b97d3044671129807'); -INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','60f10a391d8c3b9f0c873b3287af0787c323a3b3c546bf0e3d042fc99d0328aa'); -INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'ASSET_DIVIDEND','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','47102e2e300390f2c1feb06a31c77c7e12c1aa99394b1d3d307d129cc83dfa5e'); -INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'TRANSACTION_PARSED','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','d8b33612b55000d4a13e05a6f5c0700ad51c92f20291042fd8b243405952fa17'); -INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"64f78f9eedce2931aedfe413b4f4bdeb728752e1c897e0bd44c7db665976a723","messages_hash":"d6bb529bfe31304266d7c1c11879fa5c46f2445bf5d743e829a9efd6f3692033","transaction_count":1,"txlist_hash":"09624bd24bdd3d945e0a75450915715fa9e9a077db33aa5bdb275b0c76e7f9e8"}',0,'BLOCK_PARSED',NULL,'05d3920b45fcd95a3e3b9888b53621d625100700dd66d037b1061f5a5ce76e43'); -INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e788308546dcac40439f623ac5c52799fc7cb527eab650c2026a545cdcebb8c3'); -INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"utxos_info":"81c8797b226b263715b86600744076f2922a7f74212fa87403ff0857e60af530:0"}',0,'NEW_TRANSACTION',NULL,'8e70e53440ef5a56facffa822d22a724960b8f02ecf3a48fd5a32b3e7804aae9'); -INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"value":100.0}',0,'BROADCAST','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','7d1b8983d634552e54e1630ae5637c9c936d2712573331b8b8cfc5048723ccb6'); -INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12}',0,'TRANSACTION_PARSED','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','b948de6f3546d89a2738229d52526297de6c555d2c0ce8b689d233ea58fdd0a2'); -INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"671a1b4e1edd1f96dcfcc96d521fb2125ae5b9d2d01a76fc66686b7ed20c5662","messages_hash":"ecf1aca37d71aa31b875ddb79d80eaa8594553337ed23ba2186c92bca429eba1","transaction_count":1,"txlist_hash":"aa59f74f7d3eeee95415b1bca4a090036cd9a2efb187880f7c72c69dc1bfc059"}',0,'BLOCK_PARSED',NULL,'d9ae70762b9fc7ddf7760173c74999cdea08e300086b97a008e41c1e687d7baf'); -INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96ac3fd3366b9a6ed22b7d8565ea38b31d082e712fac36d6cac33976a7a902f4'); -INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":5430,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"utxos_info":"ca6f5f8dbb4762a0265e98f35666e86903031938b65dab59e63ba89242f60f62:0"}',0,'NEW_TRANSACTION',NULL,'df804e8071d0410b7e5cc0ff595229c900dbc575f89d940b730e1cb3ac7866a5'); -INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','70f6f0b9fa49fb65bb982cede68ccd037f6cd29778177bb57467d48c84e47887'); -INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','66c253696a6e51c797308f8f4cde5a513df553fa8f7553e067484f9e8b47b728'); -INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13}',0,'TRANSACTION_PARSED','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','d46b6c40bed1c2ee7ff5fbe71e0687f25800173ae3f9242fc997ddbef49abd77'); -INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"1f5b502c341699b5a59b87566c0fc02b7db5c657919f014e41a00303aa53efc8","messages_hash":"20253d51becea71521f4d33525ecbd2dab9181ea15f310ced86852d6c887fe98","transaction_count":1,"txlist_hash":"ba55fd791587dad14742ad66d1515992a076eefbd54d1215806aa9db3811cf50"}',0,'BLOCK_PARSED',NULL,'0a7f2ef8d3695e50f5279b038ee8ec5d44d3ec9bc9f9376568ba645111f70be2'); -INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e42d80923989320383aa51066668e567bcbc85ed8e188264766d1353791d04b4'); -INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":5430,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"utxos_info":"b055a68d3f2f53e7b4a413d48206a9a02f5ab56f7b948f36d0ef993cecf876b2:0"}',0,'NEW_TRANSACTION',NULL,'a080ed6409ae81d48d1406e0403423676a4f90b8baff44a00caec54a46e1b71e'); -INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE',NULL,'af51d2f0c803d00647c88d12c5ac994a789d7fea5c79d78a05cfd13c9051387d'); -INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'5291c4dd9594c262f437f9bb4d809a12e418742405cc2908d230930f751e7c0f'); -INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','b8f1234ea4e5eaa893a3488c6f23341a583a7a929dde4cd9a1e68c242d326fe1'); -INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','785a2773df52243f176aae4587db5767bd3107076b7c077fda9a6c34aeba1e3e'); -INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","wager_remaining":8500000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','5ce0a52fb168b8734f3c361c4021cf85d545662e8d048700604f31b16d49d6c0'); -INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"calling_function":"filled","event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','e53091ead0df0e76e2c172adcf89d9cd5bf56d037915404bb44eb7b4e2b1138a'); -INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","wager_remaining":4250000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','7cfeb69f1a7dd062fb3183d5487ad2f20738fba26b1e8f2a4ea5e509752b956b'); -INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":41500000,"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx0_index":13,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx1_index":14}',0,'BET_MATCH','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','b86be276f33679560a63f27f5ed7e00852bc0e7a99ec39c4b4341948c1459e38'); -INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14}',0,'TRANSACTION_PARSED','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','492ece2a98a3de745f2044abe9bb76e92b6675eb2208aab06ed09136197c4623'); -INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"cd0cfff6de5dd4381301929c740015d5910339ba915a83eb4229ecb91ae84c17","messages_hash":"db3dc80b0d4d31ceec1d5810030b79d1ed55926d276c9c5ea7c8d30a376148aa","transaction_count":1,"txlist_hash":"6c03bbdc682356647ad229247ed9d4000c2ffd03696695e0277c43b4e4d8fed8"}',0,'BLOCK_PARSED',NULL,'cc795dafb459113dc4da368be50482d84085545ec2dc5622917aef92566cb3ac'); -INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3bf9f89256055da6380e1dd2d304c9939e83686f03668e9b6d713466860cf01'); -INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"utxos_info":"5f55a6c0910642e7ba83dbcfa2d6990d31539f532a2ef427b099dbe2db75a236:0"}',0,'NEW_TRANSACTION',NULL,'303b692700058047b33e7d350125ca457c4c3a2d5fe8ed9fb12c65913aa770db'); -INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE',NULL,'7836c73aaf3bd0cd893a3231584c2ef2e2b7c22fc9168377e04fbd26fbd6abc1'); -INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'add1a1025224f97de2217ab31eed0bf261c7fc647603c3fa0c6894004de18e20'); -INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'a1646fb795621dbe67dae48969125038e39f0ddd7c18afd0a83684264dd68b7d'); -INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"event":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','2ea9f1be474319a01a5b00093580164af9ce5364a20b6fe7652ae00d79740d0b'); -INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','e1896bd738fea5f346bcde783451b53e0e8bb3acbad5ef5382b776240f5de465'); -INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15}',0,'TRANSACTION_PARSED','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','371f3b6ee20bbf9f25c13bd47b95a3997b618f8fb0d3e2cd398d3a9b6d31a848'); -INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"5012d84065c7a39b5563f4fadeaf30670b47df3856f43d40fda74de663753e4e","messages_hash":"3ab1bce56bd47b2a842921f69e90b4815ab1de528680a24499831888efd83e71","transaction_count":1,"txlist_hash":"99b41cf441ebd1ad46c14b34a3da79586aee124ae643f196f23f0eadb9fbe50d"}',0,'BLOCK_PARSED',NULL,'7bf391c5b527d886c14fc090d628422cd32f505e1da84c9f52f0c290e6b9aee9'); -INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ea3fccb1e9b6198e6f5bb407c5e9c9176cf640bdefc2e400d67260dfa6bb59c'); -INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":5430,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"utxos_info":"32229c87e88ed2c3796ca5bb209c31c36e2ed7bcb8ba20ea36ca395db23c47e1:0"}',0,'NEW_TRANSACTION',NULL,'3261e4a305e2eb66c73d1b6b3be6e8384b36165cc217986ee4ab38521919aedf'); -INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','020ee8637b90e7faac7c56e4a1dfbba9d17fc3391efe5ad77ad230be00e9c8f2'); -INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','5c6644c050c6a275d7708db146d3949651134107b61f7d8e11015db9b03d099f'); -INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','d4cb80e1fd56a0a95cec5c1d8ed83e3cd7107a1883e1141c06f98dce82d418eb'); -INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','6051bf9b540f02e60d9684da4f1518a038047a024ce514dc6e8c8357edd21ebc'); -INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','8c06165af4badcd7dbacc58b68bdb5cff290f94739685637125b6ebefa05b0cb'); -INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','b174b8b28e1bf16c740b2e8db877478477f43219b503da747b27034941cd5fac'); -INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":150000000,"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx0_index":15,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx1_index":16}',0,'BET_MATCH','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','104745dd269e30e0ef7715c9f52126448e11b0505b7e9560cd27b9c98932bd55'); -INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16}',0,'TRANSACTION_PARSED','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','5f7535b551603a3503696bb6c2e7ef26c0bb5965caa59b8805b277635c0fa3af'); -INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"0356494d376b2b65b9f4b066b9d2baf2ae90d82369b87914bb58a67927ced5af","messages_hash":"d7dbf3e0d6c03945135e5df2c126ded1c04d554c4b535df4c8ff50bca1e58153","transaction_count":1,"txlist_hash":"c6fff3cf22683f773cf2941f0eb9b5ed84647569c76d40cba61ca444852fceb6"}',0,'BLOCK_PARSED',NULL,'7541d3437dcdf36b9a96e4add367fd9cad44de65b270b1b3eca5837716542895'); -INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25303960701cbb7bfeb6e07f6e4136fd07f6b25523a8d0c2eb9380265cd79aa'); -INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":5430,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"utxos_info":"2f07b60bdd5d909b98f1a40d4677b4d89435e42e5e5f4116bc1d33c4179ffa91:0"}',0,'NEW_TRANSACTION',NULL,'1aad0a023da090b501c3fe7844ddf4666c361b6aa11a83fac9987f388b2169ae'); -INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','45ef5286f10e17d24548694ca6bfa83f082d74b24754cf25673117c37aaa731b'); -INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','512be1a759b8396b4e01dc185d9198f00354630ab73ec4915bdca38f9d44245e'); -INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17}',0,'TRANSACTION_PARSED','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','84348764275ae1b9143323a32a41dd0e52780d34fe92bdda277cf330b64591a3'); -INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"c90ff439bd04970ed9e6e25cbfce32160450925a37ba3360f40df8854529b52d","messages_hash":"126f9ed605cd865b30c7078348f7f992de3ac4956de6a27d0a55d2b7ca62031e","transaction_count":1,"txlist_hash":"16e32aeb7155ac1b89e47925bb2367269d4fc81e9da0558266ad9722843202fd"}',0,'BLOCK_PARSED',NULL,'9ee090ca93ff9d42e0c33f1afeac02a99b07acd0d471a1ca7ed7c26930eda4ea'); -INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa592fc4dc8e84cad02dfb8090fac07eae773f0af5ecaaabcff8dc500614c5e2'); -INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":5430,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"utxos_info":"14059c8fae8c962dfd064d7f1820e95ee53256aaa2814914e1a1c3ae865ffa17:0"}',0,'NEW_TRANSACTION',NULL,'e2539481feb7d5ceea80453e814dbaf28be14495304f1e0228936ca8b12d4e81'); -INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','bc074c98f2f5a9f0c1d92663708b4f74b14ada1e851b0617b403e7f0a6e4a022'); -INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','d34357a0cb54bd4633d1a64d9671f7ab087e655a828552b97e9038bec60ed987'); -INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','60163aa5c7fc334a8ede8c1e19d94db219166cc95dfba5e46baca0e965110ba9'); -INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','3dce88bd0bef298158276d7066a52eef3e5877d06981031c24f8bbb8046f9562'); -INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','1f9495bc9a72320e2adeb52288af28e6e0b41170b04d54fd01bbe1ab64ebbe32'); -INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','57abc87b11d87e5a77bbaa6ea43da364907e8cbd81bdc57fdd2f05cea62c3fea'); -INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":750000000,"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx0_index":17,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx1_index":18}',0,'BET_MATCH','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','7b2ba52df0267e7df8f688cd57abe6aa0e27d0aa25643b5a53e740e7b3a3501b'); -INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18}',0,'TRANSACTION_PARSED','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','f85318973e66404b55c86de5da2a5ef8a6ce0f3fa890b4fd463ed2d6e0133aa5'); -INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"19cf18f708dab6a983a2642802deb38d25b6fc205ea663059a0569fa38bdaf8d","messages_hash":"1498e259a0f5b7ffa9ffdee077353a8917e8e9dc33ae39a0516b1b2082322e52","transaction_count":1,"txlist_hash":"94709d5f6bcb8df437947be80ac95e2e716a92645f3eec2d915cb7c088504f1c"}',0,'BLOCK_PARSED',NULL,'a161e603f6cc4ed0e30687f7ea9e0ea601fbdc44248ef28da04f876274923282'); -INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18706b3adf1516f37d61ae1fd6ee5fa2d5eb7b040c3fefca55dd5a8614fd9e92'); -INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"utxos_info":"b58a8553f112f012c14b3cfa19b489e6171f3ddd6664340edfde4395489ec7ba:0"}',0,'NEW_TRANSACTION',NULL,'abcb191d4396db99f0382e2a5bec088e2166ba0a2d3439e1b363b939535081d4'); -INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"value":99.86166}',0,'BROADCAST','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','bc51e59ee326c2663437ac5d4a3bbd71dc0453217ff9d77d3f6cabf1823a4c4f'); -INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','8ea730aec3168423f85ac82a61a2499b319e2047bc0c07b922478ed29edf126d'); -INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','c8606a9b2f4f363ba333c6b2b580521f7d473c000408445f0e05e61a8b295a43'); -INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','538a6be3c07eff8b8fb45186218a1dda75bb1eb321be26cb793eb7e1b37db325'); -INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','2aa8c8a2b7ccfdf1d844b0f6f1812036a5b9dd316a12fca8ea23798b9c007b1f'); -INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19}',0,'TRANSACTION_PARSED','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','be1bab15599e61de09faeffab0167b66c2bc6b60c3687ac34295d36f92678958'); -INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d9ac565fbe7bf18c1d899dab8e0c98e070880e36fa51710382017d46ddf837cf","messages_hash":"eb733b49a260457265085cac5cdc418645d4dc45a6cfe6af4fc455fc44c86e2f","transaction_count":1,"txlist_hash":"e3e2ebfcee41e92d855051b2c2e4344600646ac3ac5b335084d5f5a23e872f3b"}',0,'BLOCK_PARSED',NULL,'2d1c7282ca66a8f2a6e2333e7522c9075891b339b33dae15743610752af88d84'); -INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74126fff7bd0c84cfc88f2bca236ab4d3953d5bc3524a056938c7b3dab057a2c'); -INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"utxos_info":"d34810e3caeb03c0ad4047d0cc5461583f3f2471e358037fe69bf6cb299cb3ed:0"}',0,'NEW_TRANSACTION',NULL,'f5fcb5cd9492308bf42f5f55f76784df8e05060d82ebb5801b4bac9b81405c2f'); -INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"value":100.343}',0,'BROADCAST','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','a89bdd37df792d3765807cef90907cee59af4b4d5f06508ee7b5b3c63f04226d'); -INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','24eceac8d84bb0d3e1a43cb285a563430eb546215299f801e921c0843c4d6352'); -INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','99be69c1d2473f047e4f008a6bef38cde88f26ccc875dc96fd07209f09f67ec7'); -INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','e4e2fab79bea68eea05379238fc46ef3b80bbddbf394ffe4f948852a2c64fa22'); -INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','eb60a10264e0bea453b7f8d6550ab074a6d15e8d2e19f8271039e4268dcca97b'); -INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","status":"settled"}',0,'BET_MATCH_UPDATE','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','9d388bac483c35f82c6ac2271ba7b68b4406a4e35868e78f25bb0116ce7e46b8'); -INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20}',0,'TRANSACTION_PARSED','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','faccff7414d3bd9899ac295c3a8e7ba2461e6e1c9c9caf008d29abdc16da7891'); -INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"b66661deef419a50557d171cc1bcae04f5bc260ed1f5ff56cf08ef39158617a1","messages_hash":"d501dc8943d9fbfa1e6ae9585b430720d956e7fc1521869e2d62352ab765be62","transaction_count":1,"txlist_hash":"c89d7fa5df5eab9ac8a57f00c6cc2b9d75244ce412e12eb842c6a43297ee41a6"}',0,'BLOCK_PARSED',NULL,'f889b05032efb2f2195be2b8bf220ec9df2b4084a70543a275a247cff8b85651'); -INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0f376b0e76f9858163e961a07f5bc109c80e3945c7e87a728e75a319e9bd2b8'); -INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"utxos_info":"d8ff0c81bb265ca70b0c28293b6042b707f9d1d30fb0145c3618c72455d881cd:0"}',0,'NEW_TRANSACTION',NULL,'82a24a8b3a8bfcac041258e69e6574893674f19008feeba1c3ea99b3e9abb32d'); -INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"value":2.0}',0,'BROADCAST','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','f9f84c19bf5f0cfdbc51644fc4d7d4fbfb1c6793785eb9923ffc6f42f2796fca'); -INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','2caca1af62544174fe11e2a98532a0fc9ddd51257c804c301e69ed87168c3314'); -INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','0782d2996a1f34dcc3323ab2c131a6f7922e127eb0ad192db277c374695877cd'); -INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','3e394d251ec5b57eaaa651a9ca597e67beaa1c2ab44857f5fc9c33cb1a3a9799'); -INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','ba9f7ae36711bf51c02941dd34d0695272793aeeeeb2f02272cfde30f15f1836'); -INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21}',0,'TRANSACTION_PARSED','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','aa2f9ac46cabeaeda68486bc10a9cef5c9ed142c1441365593170d3ddc37ebea'); -INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"57a6c53e41338011cb06cd60118961dcec0e800f62a2c4b1e9381c666319680f","messages_hash":"6721c364682fa68f26ba3c3dfe6e7d572c9846469bb90dad12326c8d19dc5afa","transaction_count":1,"txlist_hash":"5d8f062b1b5c6740eed53d90f4cd10a23f273237bda588f42fa35653a9fe5feb"}',0,'BLOCK_PARSED',NULL,'bab4d6635aba3c2635a9e1a09f49d6df2a387ea7209ac43e80f3a3b45a7bc623'); -INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5fbe971ac0f9cf44ca3dc9c50ab1136629a8466f98d9e0d276593c9364f266a'); -INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22,"utxos_info":"7072487856a3c59ab919efb969b9c9701006d6bfcf65d9e3bf9ab34f50a5bf41:0"}',0,'NEW_TRANSACTION',NULL,'c70baf422aa1075069af93679782bc6e0977c7e0f29d36420430fa86d814c304'); -INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310021,"event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','47aee63dcf5104ca751e4304317c8f6fcd9a33073b0be45f985bd2983bc335ec'); -INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'OPEN_ORDER','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','924298205fb991b34639474e6df4257fa53d9407edfeae6c7166f615544b92a9'); -INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'TRANSACTION_PARSED','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','325982570c621daa1905abb30f050c82305b9ba3d495195270c6b3735ae0ce1a'); -INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"66c16af10125f298796da828f1a6c2b43123cda38e3dfc57ccc25b00f3da17f8","messages_hash":"670756f732d49f35c64b8731329dde392e8ca618ffe07cf895823d638bd175ca","transaction_count":1,"txlist_hash":"94b751bb8af2f91fb1933dfae1edaa636836fe1f9100edc5c6b8bc793fea4b47"}',0,'BLOCK_PARSED',NULL,'3011eb27d1cda4eebe2e02221489da98e196dccdfc30f38b1e5f85de9357ca59'); -INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40daca8f3ce1b3ea3f0d8ad4ee67d12700934bd31b1e2fc2ca3c98a2675eca05'); -INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":10150,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23,"utxos_info":"b5955ae6d9087334db96b8605fd785eead5c7abb4200b94b30c327c31dc23534:0"}',0,'NEW_TRANSACTION',NULL,'fe001d4a5d2af7480f1d96e5e89500626683ca9ff4fdb47d33642f47233db099'); -INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','068c0fd857c0d3bfeceab5c7b7a9b70e1ea173027983b387f4740abd1a750087'); -INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23}',0,'BURN','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','e6e1769c0cdeca5acad1a094d3ee6e012863b37e076244df9cff0d9649ba4bcc'); -INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"43b6213cad601a389aed2a4e912be118dfab6cca5358d86bac03f4bee6765493","messages_hash":"abb0f7fb1bd17273de7a43bdfd2b6786a9b8f2a1f3be6b4da3ef5189ad73566c","transaction_count":1,"txlist_hash":"fcb847408d5ee30ef86a94a0495f53670b1157d4f33d627b62ebd84fb1321cf5"}',0,'BLOCK_PARSED',NULL,'9d8e27bdd0a2dbbc1f4344304494cbaa1a110b4d6a28cb551cdbde44ae4cf5df'); -INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fd449208b5740f7e64b685e607140fc7f96d3e3ddccd623215c6c0e3fa07c08'); -INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":5430,"data":"0000000000000000000047680000000000002710","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24,"utxos_info":"92a935a2d4d4072b79fe703a72bc9bcad6b6afb518af8ca11c92d4ca06ce465a:0"}',0,'NEW_TRANSACTION',NULL,'05f8f7554291249ec2445f3f7fe0b4cb1b7afd183716cd828ee778a166988f5c'); -INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81"}',0,'BET_UPDATE',NULL,'e62b97e9af5692e32749c695ad9a0737b8a1beb95e9caea33e3cb0d82b86adb0'); -INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'70ba020017277a1b2ba341f98602088d7e293077bb700d6343cd787c35e64177'); -INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","bet_index":13,"block_index":310023,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'BET_EXPIRATION',NULL,'867e865aef8c9b33ad65ed40723317767d71376a8882eaafd5faf26ccee7c72d'); -INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310023,"event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','aa92f4a04134c5efa5642dbdf373a482c05eb7377af2edf9b14c34d893c4b431'); -INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310023,"calling_function":"send","event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','3209aec06414a7f465902b353b2bdfeadfc8f782db42f96f45b9ccd416c4401f'); -INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":10000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'SEND','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','01c7030f60fc607bf2797be5a2dd7158094218b18a225d5a6654accd0bdb06d0'); -INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'TRANSACTION_PARSED','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','2ae713187ea78c48dfad13ec2502286ab39801274b7eb323886a871d49940fc9'); -INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"8a9758963891bbfbdcb6515d8d3e49c941fedba7de82038776e9f8ed65e803c1","messages_hash":"c6a825980dbe6ff39f04b72548a2490b3c814da34a2744319a3b903448d4ba19","transaction_count":1,"txlist_hash":"d21109a870f8542e8ef40f6d72e36fb0bb5ac4ad1e7b3232ba1b2bdcc735810e"}',0,'BLOCK_PARSED',NULL,'7e11895e797087c67f605b77af31cdc3cd7733b115887c77bc9983ffcf5fcd3e'); -INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec55ed02e32f5568acead2ca05db86d9faa13c4fe7026792d58303297418f8ae'); -INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"cb034ab4a3e252fdfe9973a672e208295741a52634c9332b1501d612e0012e19","messages_hash":"aa67e27468ba6bfbd0f7e197b6d12b492757ed4fd97afb371862ba7747252e01","transaction_count":0,"txlist_hash":"52bcbfb439bfc9cf14e38d39a9d6c401a8798a20fe64238f070125e8e7905151"}',0,'BLOCK_PARSED',NULL,'3589889261205410e7cad45d1625e0751cb0529609aea7cd014661e918507d0e'); -INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34b30e92c557b080582d16b3496ea545162a9fc6c953a351e8c1a06cb5480411'); -INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"5addc8253469d5c729cdffc1c637b75d9e8886a633d4406dedf2b1c16ba5b92a","messages_hash":"c798b5e8a7cdcd8490670fe01e7adb3ec2394dc8e4efaeda1e90e0a8b75b8c8b","transaction_count":0,"txlist_hash":"e2d8891737534dde276dd1f7f51d42558b9ad60d88baada83f75951905e6f174"}',0,'BLOCK_PARSED',NULL,'814c587f0de6a4ecb135221a1decad7d78a236bcb4868257caea0553c146ccbb'); -INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'081c5196534dc299b3fa8d9cd1ccc3ebd6fd82f40326257ce70e8c42478b3be1'); -INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"8620bd0283c320330631185d1b2351718f174732bd099324a0880719cdfc18c7","messages_hash":"9cdd8b03f2f97aa4f68317d23a35d7019cb97204d904f0cd0a86a4e4410a8203","transaction_count":0,"txlist_hash":"e7b6699c8b2b5857b60004dec9aa8aeda30ef42483ca16bc79e4ecdc1c0b4ce7"}',0,'BLOCK_PARSED',NULL,'3b0ff83f69ddd1964a3ed53357c34ccb1fddb3b9872ebbbf5e8499d1b5aa0deb'); -INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aba6d9146f95667f293a1c506672286baf48c52e6c2f42a821a349a6faa3090'); -INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"96960e09478184f4f0ad38d1fc03f0c0240e58715a0a29745a6dc58c40003249","messages_hash":"a56a11bed2f5aa2f6deacfac41935e24a68599c875481376adcfd07e52262568","transaction_count":0,"txlist_hash":"a7e32b5f0b6568eff793a1d12d32ab594f3886b417a6491b6ec641d15e906e9e"}',0,'BLOCK_PARSED',NULL,'742413e718a89201d71c0a655dd0896b16c3e6864cf0a08994bca58f13e840ca'); -INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d29b7eca9cd621dd2573ac5dd6f043b4fd14ddc8b4694788cb2809f0a2287da'); -INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"2f556d2528abe1c4e9d31f6ed70d400d94633d4dfb54c9a4f250e1b054f9a384","messages_hash":"7c5a0f15673561d5bbea0c3b2bb3eb39bd48d51933b77e1878b44f706c872c25","transaction_count":0,"txlist_hash":"8b22bfc6153a2e742e843a5263194ffcf3ab985d934e212266ca400ed568e710"}',0,'BLOCK_PARSED',NULL,'7e4da26b28d28777678fa5e8a3470962f82d4f2b35c68d0f47f95f9e1ee8869b'); -INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b3c068029a3519c70d945af1fc72db080843482a68da8ddd9e0edea75e4033c'); -INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"be195b1f7b7b55dcefb83907d954736d4bf059a9e32055131efd16602d7761d6","messages_hash":"b149c15c7b0b3dd9478d4d597cebcd07f25f9184b1bd6e141c342b69b6e8a40a","transaction_count":0,"txlist_hash":"ad8654356f0a1ffb669528bf4c3625e9d43ce08d9dda7f1adc2e962b65d20b55"}',0,'BLOCK_PARSED',NULL,'8f3b0f1b04c201a7cc971c9e9d567ca586b9ac35c97719d0b029eef5f4f46a56'); -INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07a13d25bb96230e4d6cf892654591fa5fdf4fcd4b452e8e704d21f95b88ac21'); -INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d3a25656dbb63eecf1c89820581fcab193d750f3a09ca8ab34a5008c8d89051d","messages_hash":"fa4cc154359abb7e02ad1e08117acc4a0f44dfd338a41401879f2f58b81df711","transaction_count":0,"txlist_hash":"f9a6fb698ab5cf74c1d334f2bc3fc258738c330a5bf3614b8951c6f2d90263a1"}',0,'BLOCK_PARSED',NULL,'62a16be41ac16f194fdfa7ff7d935f66fce0789c28762e3b73587a817d30fac3'); -INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1442f415c79274fd8b8cfca86fb96de0c7972bb4ee37004540926c3f5a5af83'); -INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"0edb535f8c6a40062a86e4ea327cf7fb70310b6d55a6654d5a23e54498aa3159","messages_hash":"af787c59bd0eaeac32d81ada9454b886cf4f66b72adc9023c159f400a22eb5ff","transaction_count":0,"txlist_hash":"52c64812c82695720461525033471afc39749f788156239b06f72c7887206fa4"}',0,'BLOCK_PARSED',NULL,'0d6a9eaf9b18139627a1b8e456b271cf7d2a107e86c2cfe5bd3ad343f4cbfed5'); -INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84d00a29a6eb11628e99e268e0689bc6ea9c7d8d071d8ddb2d4138f7db43b7c8'); -INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a"}',0,'ORDER_UPDATE',NULL,'e6f3444fa5737ac7c39882b4144d7919a8e84a7580aaacc929673a1ab05f7197'); -INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'2a2b3ea82fbcfe488f067841ad0a3476d685782002d689b611b81e20827e1578'); -INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'2d27ed783ed85ff9c3d5bc8055c3a6da0b39bb4b3a2bd35a95100632352267ae'); -INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"a9208a1b7f782852d652e5089c6485744031176b4d285ea985bbc1df0ccf49c0","messages_hash":"3797c8af254fdf116c2ea57184f4fc7b7fbb231daaff896ed5f7fe469a626c12","transaction_count":0,"txlist_hash":"4089c5ee6e83c7fdb9d8f0df917268b807801e7f0fb477b6a7fb4b9f931601f0"}',0,'BLOCK_PARSED',NULL,'5e9674c6c54c44d989a9fad17a4a677a9ea1dfd87285484d6ae1a23e1a137e54'); -INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74a8a034962917489a656390ffe840b6dbc1b63fb801424e6cc43efbf45a704a'); -INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c8a973eb6bdd28dcab4f1b2a5e29e104944745e57a54e6d87b370aafb2e589f6","messages_hash":"4f37b6d565b42f4868341125ba4aeafe4968440f24f7a0d664de559f93026a7b","transaction_count":0,"txlist_hash":"28e9816084711e62a27a7d33af7a023d9c375d67c6d7dd4fbe840d511d114fbb"}',0,'BLOCK_PARSED',NULL,'d0ef5104a01c05a379c06b54eece2b1202137b85e86c6655ad04b82c320442f0'); -INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e33862c84b205ecc89217a4a5c59a6563854a1635e266b07cff2ff56ade180c0'); -INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0d7b5809b7a5aa5ff854cfe141490a78c9b33e16f8102a8e804dbf0a0a8c0842","messages_hash":"f52105f94398f097af677a8a226c0d9896ccc7724f455b0e7af802e73978dab5","transaction_count":0,"txlist_hash":"37532a1b8cba78b522775b2feabd9dc786b259b49ae54af0279fd84061fcaf90"}',0,'BLOCK_PARSED',NULL,'345e1791edf92cdbeb4092039709138051f741dd3d0ed4de7d8ee7b369bcac2e'); -INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09931401854e52718fe80b864e8e017a1af5cd519483600a5d065ccf3f8a6680'); -INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"6b4c99289086445a7bf575110172a661c1cd37c418b70afd8ef3be0982041f5e","messages_hash":"fb7cb709ab8d862382019c7ab164c561efaa2d43f59f27ecf48e285787e9b070","transaction_count":0,"txlist_hash":"6d74b1faad84274944078e3fa21083b3776e37da614acfc8d61987a1a48db51e"}',0,'BLOCK_PARSED',NULL,'5b17fe8bf0a9d07e3559daccc351abbd6dbc00604fbba8f80a6e064e4e743487'); -INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d080434b44d9c65f7a13258733713b2f5213d39103faf136dd0b2f0d644edaf1'); -INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"f20b81389b2f4c9c9be4442b3c68f87da881406f1490637c7d93d63539155a7e","messages_hash":"0ebabaa3928858badd8fc0b01d5dc56bc3bd3ff3ba991476f19cc292b1f78e4b","transaction_count":0,"txlist_hash":"246e6cb136a8e79ad87ccc6a2318361c689d4720a9000c1a404f3556dced1bfb"}',0,'BLOCK_PARSED',NULL,'58e309bdfa8568768bae18861050cfaa5eda0d978a6dbc550eb94a4aef5cf238'); -INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3be6dbdc48e53cb593fece36eddb05210bf28878a57b725367838e29a7d3527'); -INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"52d554e6b53b853066a3a8f931fc37779f3596c4388e277a9f66a95e001a09eb","messages_hash":"386df30f2469867e71c1188059e4d40a4b8c3987d613b054e2be27a4ddcd3b5f","transaction_count":0,"txlist_hash":"c4474243bf31bccb8aa11963c477e3d40bbdbf6c604edd86429c37b59d83b427"}',0,'BLOCK_PARSED',NULL,'6e448fdc84a03bab9ca7139c0c687b2c82888f3022fbe7a4eedca5b1373d9101'); -INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'375b874a960f91210fa5ee8daa2851008c185e47221de4e096124a8bbdb75a12'); -INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"08a949af614ff73a79313a5a949908b368efe1f8c131eeeb51ed610baf65ac46","messages_hash":"ed2a9ddc91c486da9f105da77c46deb90df12df89761074296a3e988620b7857","transaction_count":0,"txlist_hash":"791f23628ed99486b93754ee4e7a3717d2deee1ae60d4b80dd79c614e874c94a"}',0,'BLOCK_PARSED',NULL,'60f4a676cf6d1307b8a6cb5df2f09c98a932c160a4186023f7b85f00c50f1274'); -INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4473e762aa13973f1b0ad5751be9dc7a97c04a4a4fd2130e94f1a38af4ff7fa3'); -INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"7ff8b2408ee1124a5ee573d31023660aabcdb21599bdcfb4a3bc1895d7910094","messages_hash":"eb475bf5d9f009884f019dcd9cd0ae1164f984f44e440665a219bde18e7b7fe6","transaction_count":0,"txlist_hash":"019a41a08fe760b6ca07f10cdb763ebd41d76a7a458f81023dacd0bb000221d6"}',0,'BLOCK_PARSED',NULL,'178eecc92afb84410c9a818b5a1cf59d83734b19c051e61187fba0221a56c957'); -INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52052de2dfa56a6e2b6e3f091d563bdf7b90a227a8349eea9ade0a8a57976a65'); -INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"c687e753c01711e94cfcad1f16d2976a12ef5d6c3731c64db26f969c988fe7c3","messages_hash":"95151ef7b552df9b15c4670980ba7dbc3c99592a724f5c5bd0612c5add1e32cf","transaction_count":0,"txlist_hash":"81bf654cee844b048e68c07fdbb561865156f77769d686aba7666d51bfc529b0"}',0,'BLOCK_PARSED',NULL,'1cb5860ce1133554e35b47eab895ac68f906ada333e67d85aa2c645c0dfb2c5e'); -INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15d30526c30f84b6413077289edab84073211c790d67ee43b8f9eba4625a56c'); -INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"66f493ec8b5cf8140d1f627f008c50624d3069f56828df90286b53a2d6cbf47e","messages_hash":"007b08291410c7ee35adc28bf2f78a649beda27ab4b247d12312c5e6b696ca04","transaction_count":0,"txlist_hash":"87461d03ba2d32213a73f526b81f1decb96b112a012ada6f9fc089032720798c"}',0,'BLOCK_PARSED',NULL,'868d93d17ffb7a3790b43c0fe75efca3c0e5c9e17b87b047f0d882075ad5931d'); -INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d6d897e3829797701bd4acbe58899896f40af9f7b7d1f62246021b75fe54ec'); -INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"33acd319bde452aa81b589435a31ee3add742870a928ef2c15a7a447b4b4e0fa","messages_hash":"dd783e00eb2f3c2f39124237ceca891bf41a332e16573d04c6c61fd77827acad","transaction_count":0,"txlist_hash":"c1fd057575646ab25fc055b10cb7cc9cc4d4d05f0ddbacfaa462fc9ac32d975e"}',0,'BLOCK_PARSED',NULL,'1c9cdfd11c559407b3b8ef5b56a49bcd186f62649fc6cdf503aa09ede8d8712a'); -INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d69f8aaa9e8ee60c48728d209e4caa3e4b7c71eef8e002d6255b441bcd72008d'); -INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"83997825aa2597adb0292e265f01e937f621cc75d8cc18e23a4bd0c1fb0920c7","messages_hash":"12730e29e42b6fbf98bca1bf14a7be3a3c2ddd03e9f115c48fdba824c06f3ba3","transaction_count":0,"txlist_hash":"86e036eb2032af487a2c3ccd6a6d8b3073c155164cda4bead96f92da996fd4be"}',0,'BLOCK_PARSED',NULL,'b825bd71fa22d7f543c04b21f8fc67cf4378f580e78f86fee966b90c957ac5bb'); -INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9ac52b846b38afd85d1482d02ed9db434a4c19ee834bf584b529f0f968b908'); -INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"9890bca86442f329b2abf1b3bbf4d94e8ab54d10dfa7823a53f02fcfef030d88","messages_hash":"028d29281f54b11cda5f6f90a3354a85026409afff08e9edd46583dffb6706a1","transaction_count":0,"txlist_hash":"a839b90852909b1e21b4461debe100d578abe34e3a46837b444a92db3eab8d97"}',0,'BLOCK_PARSED',NULL,'39c6804ab0480bb1a22299a3e4607fad459b11b22b9d01c3c3e0ae5248f3e7b0'); -INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f80a6361a9fd48d039a40e3246af47abae2eee14e6dc144aed649c11b119137'); -INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"a909f658a8f405ef1f5cd8bbab03cbd865235544ae1c2f4dc20e2a4393181efc","messages_hash":"c2461bf3563184a7588dba4bdf59a119b638186a4c22863b03ac71a608de37fa","transaction_count":0,"txlist_hash":"a55dd67a02d97f49eb1ce9cbdf94b201a0320065e63aaccca1d14fc856a167b1"}',0,'BLOCK_PARSED',NULL,'913ee5b9286518ac42ab04f01c24c86d4ea5919b7dbe01c99c49ca6b155105ea'); -INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1467e44f3b678d01f8fc7ef56d1e44790a8adf7780d983d36dac7089dd48a533'); -INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"713d2ccc66a1aa7797ea9b6af18b04245478c7582a8aee76cf2c7f3f3060df3a","messages_hash":"791e1989169a138179403b69b116aac55e68e96bc1bef0471f457b797e59e691","transaction_count":0,"txlist_hash":"c7bdbef0fecf54c6d2f1dde171123487c95ccea2cb80743633a8bbdb3c3b9d35"}',0,'BLOCK_PARSED',NULL,'555d8d555507a3925085f5ab5d32db1d029feecfadccbfc45f45123345eb966c'); -INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'943036b3f1f4dfd5e670d20b69a4d5f910208ac89da2d3ad7cb3dd4298f30fb4'); -INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"534500ae61a04841771193d57384d27b54fa2bb92c0698beaa46509b3d39eb1c","messages_hash":"14f919dbb05e4e2fdd99e63dcf3484c4bf0df77c74ac9fa01022e803d15cb296","transaction_count":0,"txlist_hash":"8c7d8f1273c82696c80fa325a3dde05ee4ad5f719f6890b3d93907c91302cf7d"}',0,'BLOCK_PARSED',NULL,'81808e799496805abd8668958707cf1f51f62b02df55b7ed53f5d6a1003de0da'); -INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d25b6c1a7063584b796b0ffa0e294ce67f36ddaba8671de72f68d0ffe6f0ee9'); -INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"48c8e5d9ab1887f092731ba2881a330d22d4f03f601dccc096fa5147042a3d55","messages_hash":"afa4ff525af27660b5c5be439c0942dee4307524fde940d3ca5751ec702575da","transaction_count":0,"txlist_hash":"4c724447d400c30336cda4523a84f5cfe86849086f98367e5821a0bdddf68f7b"}',0,'BLOCK_PARSED',NULL,'2cbc7a9460a79a0c9ff9ebc2ba0349cea19f8e33e8ae24bb1b5b5de40824f400'); -INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a64b1ad61f1b16682a5459ecc11849c3d35d807896634ef0397457225722ea7b'); -INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"6c5ec3d2b7d8a724175559db977cb9ab78eecd39b9239688b30d6d3350cb01fe","messages_hash":"6184eb40ee97b8611e5ca2857a8f3881803cef8e510fa6d0fec5fa2d515ffedd","transaction_count":0,"txlist_hash":"8f0ee591c9f8165289f106091ac0cc19dbaf813bf1134c3ad2cf302bdba0e8c7"}',0,'BLOCK_PARSED',NULL,'1974b1270e0920c125caef64b8438121fd7845c9929dfa1e642bba02c493ce5c'); -INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab4655efcdd79738216db5b32ad638366e67bef508f0c158ad0385b362254737'); -INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"817dc86594b3820de76f1d2bc2400d702475d558d6ee5bef4313fc154bbdaca2","messages_hash":"64956fab371b4280aac1897543c9de76759512f51383278cb2cbacbcfed6341a","transaction_count":0,"txlist_hash":"9ff934d29741af663537dc45d552b6c01cc8ba577af1fc2ddbbcb7259477bab8"}',0,'BLOCK_PARSED',NULL,'7e71d68354cbf8f510cf8c63c6ddf4e7623464751ccfcde088e5038fc57b09d0'); -INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cc1528fdf0b3655bdd1406c46e14f75a8f5c0690f9f1541025d99b2c05af2f'); -INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"00916e6bac2f648f953c8d6dff21438a6ec53ad198b33f90667e8d4564e00e78","messages_hash":"c0b45ebf89dcd6dc5b571ce3a8ceb130ecf618c4e6c74f225f2fc5f5852657fb","transaction_count":0,"txlist_hash":"3074814e0ba9b6e99b6af70ecee2f1cd072d760d921d13f04a5064342636da4e"}',0,'BLOCK_PARSED',NULL,'a899bd3dd96092d4e0299bfc8f53e3b5fddc447d0d8fe29b534bda0d70f5d4ff'); -INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ded3409d067e0e875bda17bf7da17a3d3fe7c8a0d0b518d72ac2b251658599b'); -INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"959df962b9bc7ef215f1530b886613404adaf81552d6eeb4b1401ea265ad5f4f","messages_hash":"4a3f35fe4b51c33786edba383629ab1f878dd534bc59ca0261750bea101af62c","transaction_count":0,"txlist_hash":"c792d99e376babe180a99ebe9c20a7925a74fb919ccab28a600d200caad6c0e3"}',0,'BLOCK_PARSED',NULL,'f8ab2e887746df3365c1c7d02972b4a05785821a7ff678b9556833fbd8814b07'); -INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f432b952ff01b715f1a9bbdc3629dd3b9a511b7db5f688a5a019e85823e12f1'); -INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"d76b639ebddd434e5269de084de0b502e7f0eaff71b4e99de2d4ebdd1fc61380","messages_hash":"bb1a39717ef316bdf4dec41883c183cad1f9338d6a8665b0d2552ace633a332d","transaction_count":0,"txlist_hash":"ca53cd5d8d4e90481a6099af39825f25e7b5325fd586693362d9e7302e72fc3a"}',0,'BLOCK_PARSED',NULL,'2d85bbab16a7c0ed2c29a80668480c9f575fa30391b528b5cf3ea23ef41dbc20'); -INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1131442b536a23ba75f4621294ac75ea1180c1d58c11b1df6d71f5404c924e04'); -INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"525e8cabfc993080d128faf38a5e5c9e9afa61423a5f20a90d68cdcacc96b59b","messages_hash":"200d3ca6999c079dea8cecaa68e8d9b48c5948323ad290bd7f89ce364d18c1fd","transaction_count":0,"txlist_hash":"1bfbc68852f429756bdfb76508d3f044ecc24704e437259c23107470f1edec74"}',0,'BLOCK_PARSED',NULL,'740093b7de1d30bf8e1ddd184d536efc77367fc7b52248fe08d680c5155a6438'); -INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93c2e3bfe4532238c99b4cbd89ff41022df2a2f45b9b59298772c75980f7ac43'); -INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"155ffdc74a2077a3da7d5c068833468c7d0758dfb525a799f910cdb1543beadb","messages_hash":"cf6631cdcfc3420c4da63b7075a28d9565c5e72adc3c22f0080f0fc4d49c9fc9","transaction_count":0,"txlist_hash":"86186f38b173c755554117ee448b6935fd6ec6ca9f464438d659ad6be767d481"}',0,'BLOCK_PARSED',NULL,'8c5696366847d326bc5c1205ef69eb04439a9632ef24a5d993a92884fee43830'); -INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cee074c47d211a38ff95f743dfc1bcf5fa5d314dc7131f48b49c7df8c9a558b'); -INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"4f6fe786e34af90927bcd888b4b2a8fc69d3ccdfe4c4bb37edb2007901ce234a","messages_hash":"4d9220efd11b061df66519062855512842611bf9ead1ab64329867618c07b372","transaction_count":0,"txlist_hash":"822b518b20b4f136877f2dfb4f4a9299a4ef7c26441791e986677396405ee03f"}',0,'BLOCK_PARSED',NULL,'96adb1add5e1be4f64af1f2ff903a765c39191df43ba25b9f6482c7058869d2a'); -INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1a6c71582b43ebaf461246d4005ec178db7bb6964b3bf7df96240dba202efd0'); -INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"30978d87fd8e32d9d27c92a0d4ca19d179b515ed95410fa96bf496b4cd8aa5e2","messages_hash":"5bdd0005be4ff087a59a47b56524694bc090682f28a5f405284fd42d91f2e788","transaction_count":0,"txlist_hash":"79032221c81d77f7dd7e35d46a314b21b17df32357b606ecb7402e5976473b19"}',0,'BLOCK_PARSED',NULL,'a299f95a5bcbaa71a486ee68a97ea57178bc3385285cc09af58a40457170b317'); -INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c0df20789950ace6f1a04d35c402f60f196f63f2ff59b54721372cbb129d0d'); -INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"a0760bc5d2f04b381cc46aca84aa3788e8e3fbc833379a26ae812807d3a04fc5","messages_hash":"8c88f57aeea0645f5eaedd65c2a30f7b731738fa61651e2c97bb5fdc927eb9d0","transaction_count":0,"txlist_hash":"8f56034a75de70a679a8bd2515b5982dcebc5b2a6c468203ee8922f7e12aca4f"}',0,'BLOCK_PARSED',NULL,'202e42086ab68272e9bfa3a771803acb06cb3907dd6ae36fc2917816ec30ac56'); -INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a94c6e6d16ed9b3348e9d0975aba49c10daee9323f8cbe2e5a9251397cb1699'); -INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"26dcef9e54b1a34b6024f8402ddebb6e9449cd90c270e3db75354a001484b1a1","messages_hash":"2d788d58e6eceafbaa9ffda09c9f8a81b76961e6e294c4e06dfb295a12c27360","transaction_count":0,"txlist_hash":"d645719f82c5029a7fe5eba356e16c17eb676e0848ac2e03b4d98df0106ae95c"}',0,'BLOCK_PARSED',NULL,'f325025058eb931eb3a274f759553e6523612d47a5e6832a2539e92452ba1144'); -INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8127015c7ef1afcf04a74061c15ee8fab0e8b9448ef5aff94561448a9529118'); -INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"810ebcdb63a08af5a26d1fd4e7a3604afd03bd06ff620d6a86c665e1c81116d2","messages_hash":"dcb870601f79832d84e9c22b66eaf15e86b1ae25a8225d6bdfc75893cec5f76c","transaction_count":0,"txlist_hash":"de75a174069eec13deaa318cf1429ed15d775816b7ffe6f46c7db0e252584271"}',0,'BLOCK_PARSED',NULL,'f0b9a73654894b4ed4dcbf2c2a376e0f09ccc7c0b4a40b911b5165ed821462f1'); -INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dcb3604ae1087be44ec2a4d598e8a09c6abcfbb995951446bf72dbdc78974e3'); -INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1edfc24d186c7e7267b11c03b0a29e57926e9ab25f668231a18a499cbd08c702","messages_hash":"a4924b34bc071e885842f09a237e1806a27505fad63917169693d7e441e694e9","transaction_count":0,"txlist_hash":"4f5fb29442a7bfe7928dfd0a30bc730b2ee0a0bfee963e20f8da2eeb0bc3d6d6"}',0,'BLOCK_PARSED',NULL,'c2a2772c4b293e4e417c33fb552e329e67e94c30227ed6ccc4f35acde0648333'); -INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e716ab02bcdd69e68889589393591cf65b2acadd37056a9856503325f166c692'); -INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"b0de9503f019c9548a97bd198e6b1b58b57d6a7c231ace2d72adb0421b29e9b7","messages_hash":"61f97ba2755921992ed5f40ae346c021aa592f29b3a6f978616acb561fdd12d9","transaction_count":0,"txlist_hash":"99f2cacd3f24f7f8cf40d0c6a3c50413a243d886a381f432dc4398b06dd0003e"}',0,'BLOCK_PARSED',NULL,'19e60a45c4bb56eaf0359260d707a5c731a0237c8b583a5311cca2137545c373'); -INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70344eb0856d75b7a8ff92d627071eb7ebd61e40435e504041b6c65e2d0b715f'); -INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"62e41caff168eb4b15eb67ab2130510ba3f17ac186f8516cf5b5c6f168988345","messages_hash":"02cbcc05757a4cd3ea2dc3fd1637b721c26010816602e38dcad980330a95c884","transaction_count":0,"txlist_hash":"6436ea453d46084d34e4af17b844a1312a3a3f0d95234921dffa50c3bb86a8da"}',0,'BLOCK_PARSED',NULL,'b978c8b7a5451fcfcee7e602edf2c6ec904f88dde7d0337528d49eec90cd8cb6'); -INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eeae7c91734b624c86bddd2f83df1226e6e58a7fb5cc4b0a79d884a5534df3fc'); -INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a444b1535d27bb2917478019c4c59abf9474e87128f9ec1e44c20eea1f014f3c","messages_hash":"b2714f97a9e8d18abe73c1b94b86df860e69f43acbf814eac77eea1e42538214","transaction_count":0,"txlist_hash":"4a7b7ac0f91d282190236dd238b33f7b76b40c1f5151c25117d7fffe014a1995"}',0,'BLOCK_PARSED',NULL,'4e6e1b7d64f6b22db46d535bfcac76be7f7cd48f5def6f6cb6260a57b07f49c0'); -INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5228e3b14ede1a677542412934142a8559570f49e2bfbe6ef3b84fd51d8f1b0f'); -INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"0ad978671f587f99e5e1c1b6f68ac3d18bb03a3bd7ea9afb63590bcef25160c8","messages_hash":"8f8dccbc6b058cdc0dfc37d7952f57fdfc180a8e62f100fe258a0b81db789455","transaction_count":0,"txlist_hash":"a7373340d9f43d4256f8a9063b32c415ca44e5964abc500cb3daa631ab92a311"}',0,'BLOCK_PARSED',NULL,'b81c9c939ab6b1da1c96e3456016c2d27ce63be52af1f8ecdda82abba3cb6059'); -INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94fbd49d054160026b83c8f961b1421ab26d1e5181f902b9a56d7cd6cabecf9b'); -INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"a6bb36829770b24fa0b960b85566a0138360a60b52cec62d94d7df8cb0b8f8b4","messages_hash":"d710b3ed96f543abdd29c33a705cb3cc0f3148294253fa6d04c099f7294f3e3b","transaction_count":0,"txlist_hash":"3f137eaa77970ba242a8bd0709970f7045ae79ca9f3cc172882577ee3ed34e9d"}',0,'BLOCK_PARSED',NULL,'9cb933e98d920857da625be46cb9046622926960d33d806e837c180ba3579218'); -INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0be292ac9f622f1abd699b6d0b0c96ce4ee6fa08a2c259deb2f4fa7887093ed'); -INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"9b8ceda9b170429d8b9ed517f0db95487b3058397e20d7e786577c8e46b389b8","messages_hash":"0238bf1e7128dac676be198474c8beedd5e6027a401beb6dd0d13252ada4cdea","transaction_count":0,"txlist_hash":"a8c54e9c41e6d694d38a6cb9bb9cea881609c013ef9bf4909fbcb0090168e263"}',0,'BLOCK_PARSED',NULL,'e0b831e016e8f28872591d247c955eb5e625f964c3f1594f858f406cb1074a2d'); -INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2adaef57a0bc8d39b5db2838aef1dafaf2334f30fbeb2eb7d87c6714ce582ff4'); -INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"cee2e41baf86f1af24d555e9ab4a0c023b5f1ab2b054707d4434b4f60d31862a","messages_hash":"b2cd4fc907371c5b6152bf29dba1876bd5aebd9fcc82da18800b353889336c90","transaction_count":0,"txlist_hash":"bc2a5bfc7f1a8181b7b04970a8287b498f096bc08acf106f6a8e0a0ac5ca3723"}',0,'BLOCK_PARSED',NULL,'847ee29c427ef9057e9b77829ded1a39bcaaf3145eb37482f700f7deb2bc72b9'); -INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dcea4f8e8e2dab09713aab3e90ec7d7ae98d32cbec2f9a72263d0f04878e8f2'); -INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"cbfd7ff728f05ba3f1db5972f1449618a79d3fd0d76bf7fe990aed2eb2316a38","messages_hash":"2e148d243956f9e14d19ea77a9952523da903bf334c38c92f139ee754e9fd351","transaction_count":0,"txlist_hash":"73e3b8838f74134d3db985de53446f88c3bb86a8cec53bf773c10dd89fc2d709"}',0,'BLOCK_PARSED',NULL,'5a7e6dca33218ccdd963ad8a9cc56a47e4717d91b375f79ad2ea0d14fd56258d'); -INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e4175508c7039d742c9caf39e3c695ec59a2a43d45ed5cb542d8ca6c2aaab73'); -INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"9af85cd995c83b5a5f0cac66351cabdf9dc9faecfee080638fc76019663faaa6","messages_hash":"de343e3e689d5be0b3a6b79c0bea40ec8852d95bef06490292a6b9a02964a3b1","transaction_count":0,"txlist_hash":"5e951c9dc5201f32b7e8b9e72702984a2ff13c011cec35ef4ddbcf5b1e7e3111"}',0,'BLOCK_PARSED',NULL,'863ac119918e5191e1b723958fa45c70551e8b9a09b476961346bf106976eadf'); -INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12229fe3b94489a7d0456941acb3af1a5d6f7e7764884d70e4fa68482c8043f5'); -INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"a3c547e84db6b29630b87fa566e37796e0632ba616dd6d521d558632c3b55370","messages_hash":"72b9de8c4b8c6dd78cd723bfb097a01a24e9c777abbd556fd1c0b77bb2655d06","transaction_count":0,"txlist_hash":"c72261d02c311085af66e2c66b8bcef2833d05716f067de2327442b92d219adf"}',0,'BLOCK_PARSED',NULL,'440354fcb63dab1232935303c8ef05c99d97225cb25dba83305e17a124076eec'); -INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3139f72835e9639f4a33366b0194d0adcf5792dd68ff8ee77d4b13d5fcbc6527'); -INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"a0170d8a72a0f8642c0863899bf034e754596e3fd8ddffefa91e7e9a7addf944","messages_hash":"65caf1cd027b27bfab54fceaf2c9c5aea98692a53b869af4c4d704dd12ccc6e3","transaction_count":0,"txlist_hash":"df4f5afac7aa5bdd2e580979d13c750f4990c5f7e8dacaec6d751f4b1e3c690e"}',0,'BLOCK_PARSED',NULL,'6710cbc4aacfd3cef9ca8f557b34de23b0845f29855d9a848d67c4893d0a9920'); -INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12c3b8c39b6626ae8a8576bdc2fc83d95fb47b924377ac08dabb15d9696233c4'); -INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"e0179a21342fcf35fa169567f1ef35bd6b0b1b048a98e90c049fdf3ee58e9da4","messages_hash":"d0bd95b8f585933f1a8e281d6e8ddbad8151805174408d4a2aa721a84c8033cf","transaction_count":0,"txlist_hash":"c5cc010dd34b520a733ad2e109b4b2b8cc84b48e412c43ac688a57f99147c164"}',0,'BLOCK_PARSED',NULL,'ce4cb51355a4a7180279930ac8f97b976b4ab01306098f9fcea547d013617110'); -INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89bab59f7fe2c6a358f0c58b45c5dfa6b818eff7d8d9307b0b7c5ec4be45818b'); -INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"8855ace296b0b078d90aa24fcd30ca9f9cccf9d3961f3dba4985a3ff187a02ac","messages_hash":"6f737b21a2d96a41f2cf7e193562228fd7985b96c5c6bd3413055b34fe9f8fd2","transaction_count":0,"txlist_hash":"eac5c44840751fb1009274a20657bc544e855ff1a49533c9fc43c0b6e66b7402"}',0,'BLOCK_PARSED',NULL,'d2a10d53588fc3e8bef62f3539d36653f3597401b3c313e9b2647533264b8352'); -INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c400e19dfdba5bcd702962102e1dbf31989469e951dc9b5dca5d544247208b2'); -INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"bde3a6c6cc31b96d58f466d3ce0361cc6366c8c239778f21b696d4063cf6d89e","messages_hash":"a37c1c8316e7c539e0611de48e18c8d360e73d2de09f709f478768d3fa8e8222","transaction_count":0,"txlist_hash":"40cde00e42632bcc0477dc071b9acfa0745283dc2a9d2d28e230f939832abbac"}',0,'BLOCK_PARSED',NULL,'a922f70ab3a91014325111feb135725e23b919f7406f1392bfcf8eb3796f2377'); -INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5abeb6141c0c20e113dee7184fe7d66a983fa0027a0cd08979e01129549f6bf7'); -INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f562851b32a7005ee02b9e2491c0195dddce451e8fecb428209d087e69345303","messages_hash":"fb3aa04578b77c4c715666fbd453ec097443a9e30acb800f4b7b75a79967b99f","transaction_count":0,"txlist_hash":"dc3ab137a2d7430196ec3d25456e09e8e63d815c8e4b246e95e7e63d4e3a9c75"}',0,'BLOCK_PARSED',NULL,'2175df3ed29924a63b3e7b04787e344ae484d6c673c006eb6569290cc229e762'); -INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faad722f495f3d28c9144c575ceaa4270b5e089cf5e9296edb9c8d2688be32b8'); -INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"996cda7b65e623747deef936d61491cedd0159f44faa1e3536de1b6d6c474097","messages_hash":"4f075ae9061dfc1ff52f719017d590629eede42aa45957aacba54e5513e47be4","transaction_count":0,"txlist_hash":"a957a0c28f2a0beb967ef0ac9519e9207e37415af3018f1a5cb998169f3b6005"}',0,'BLOCK_PARSED',NULL,'a5ac5a7df43d37e6167d9728066aea6b67b889e73dda37527df36256b8d6daac'); -INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c976926cee50cdb37e8b1b999d8b3c7b08aec88de229c6ec57da9eddf005bf69'); -INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c8286f73cc3a070f4251b7c59bb485e611437a1916fd39ffac831dc78df54ecd","messages_hash":"8ad41558220717a679e7f6af9cbd1e9fb3646fb9566fa8fae8e340d199b4ffb1","transaction_count":0,"txlist_hash":"3cf1b57600853e04513ad74089e344f9e5af742e1d4aaad0c9e51c0ebc6e77d5"}',0,'BLOCK_PARSED',NULL,'479ddaf9ad96f51e7002f08a1b6c040445d5238898d6be8c283f1d85306a0e75'); -INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f845a9d046590ba70e86bc4eb829a877173e5c30a914f6a2bfe923d246b124e2'); -INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ef9dab42700918027fac849f2088d2248a6291dc7bc24be583b556f37739631b","messages_hash":"2d22ae58cc40767ffca461fee1a2317d6b5b0d8156f188b3f8589e688ac1c643","transaction_count":0,"txlist_hash":"6cf1d5147d5c6523c275384d404b4f7a750dab987def5846979bc5d14233a44b"}',0,'BLOCK_PARSED',NULL,'071ac6c40782a31cd07362714a7901680dfb603adbf239f1046fd4a3edcf0798'); -INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c87d8cae7abd6c31d0bd7dbc6a6cd9b9d77cd7fc5eeffc32609f41cafaf2df91'); -INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c6bbc52f1e8f907b2d66378f4352f41ae3d354985aaab5f16d737d75a7e6b1d8","messages_hash":"358e0f793128f8d5b52594bb96a8ca652983d4e7aa7c008982871a2c9a662a0d","transaction_count":0,"txlist_hash":"091641bdce3f527a8a3da393068fca3534e8209fba337b7b79bf22f2a6bc5dec"}',0,'BLOCK_PARSED',NULL,'51b04ae7c6308b3287e5616efbfbdc032258fe4c7a4ee5d0a34dcdbc41c19f66'); -INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90b8e820a490695c6847df91efd00b18c6687a1fe39b255d5fdb426ea4595a6d'); -INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"66f7b7ff8f0217ed62938a5931d4a6a232546e5d58e09dfd3ba5a792c35fa560","messages_hash":"9213e075e5567446951f60b81c68f9aa28103f4259089eb4d2d9b0697d52cea1","transaction_count":0,"txlist_hash":"8a955c5c1a5c9f8c82553803172cc961e61b2e2e19b9c87cad6dec24512ee351"}',0,'BLOCK_PARSED',NULL,'2253b16e3c043075c071265b00981bb1c7802a8fc4c3f0b51bf955f38ca576dd'); -INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12c6777214f544696c933f18a9a1bfd621fbba93baf1b9fa3cede127a2cf19af'); -INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"2b26c6d901ca9790987331432372046d9620d10ea163f4824208d6b23e8e7a35","messages_hash":"1c9ee3bf90abda5070a18d70ca3e1f99d3a2908bd839bee7d96b274752ba0ef7","transaction_count":0,"txlist_hash":"482bf498868976d12ae17fc38bc847d8c7398c96fad5df9f1d2719197fa038e6"}',0,'BLOCK_PARSED',NULL,'59cab7ac050a8f9d78c2fa09c42e8c164e89bc815bcfa830ad226f2ab1ab8d48'); -INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'201f6124fab90e9c37f7a93126a517d9a38a15f6af73a45ff8371229b72ac0de'); -INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0d6d774dce93e94e870835005b0e8b04f010fb25158aa69a0fa0321d1577e987","messages_hash":"4c3832a9b25722b0625440a92179d691b3ded6a2db686496bc5840c9fd5f6b53","transaction_count":0,"txlist_hash":"ed1021dde8c16263483f3a50091a2df2105977a7aab9217b78af58833433853c"}',0,'BLOCK_PARSED',NULL,'1490f8e8782872d7377220accf8901ffa6b8eac70379fa1f836f787a5f4f1de9'); -INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3696a4709b0f7f8f93d8648f22f873ffe528563fe924dee9c9df8a80ac4b7eb'); -INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"9dbd171e3606b1662f6b576339b1e9aaa3da8a9f8a246bab905af255add4a762","messages_hash":"f49dddebdd143ef18c4fc4158174b5958b765674ba36d4014942c65d49fd87cb","transaction_count":0,"txlist_hash":"e5ea123c86cd7147d8cd8d9866006e1da8528bb32c8005a998ca9f6ee917c2ba"}',0,'BLOCK_PARSED',NULL,'3eaac5cd5948b356147d67da2a2ec5635a3915c2727aebe886fbab594edd5847'); -INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5de81b650d4dee81956c1f07a2429fd73f6f05312ead5e296290b1f9f22db40'); -INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"db67b5dc6b0c0ddec22d0e716b72aa8cb6fa9702316f2a8e12659ee229094c16","messages_hash":"e2e65b074fa6f18191edff93fc1baf8c7f396ceedb7e588b177ec2918870c2e2","transaction_count":0,"txlist_hash":"a25387e650e60dbb003c5ef16c46a8d8464013d81bdb49508c2935368d4ae9c0"}',0,'BLOCK_PARSED',NULL,'abf1f5131aa0dbacf6efbb62bed516a8fe2494f13e442ecca07a1c5adb7785a1'); -INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'063ac28fadf125e5e1b95b7577e1668a5607ccbe3644fb46ce27ef2f2425ea7b'); -INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"7cf70b5298dbb36efbec2fb880b76e2514e3bad9d5200875fa3eb3ceb7719ee8","messages_hash":"0b06c5b690dfa0169e9ce1026445588675ef1bd81e2ca5962a1271a41000a8ae","transaction_count":0,"txlist_hash":"f5028a37d6395b533cf60e6ce9f0bf574a0a7beb2cebd2f545b5183e5362aaf3"}',0,'BLOCK_PARSED',NULL,'2f9782fd5e10ef6e38c359de99631b93284e11832c5bdf9c686802c11dc126a7'); -INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'783487637e0c3bcac56b5a5facac603af5c033d524cd8d3dd73a1bc8f91fcfc6'); -INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"27106f400fe1ee93bde42f3bf3cf39737fb856bbf0df3f90fe0838cf7d38798c","messages_hash":"31afbdc9419f4639cbadc95cff2d0760443f001ff10d83f972421e0ff3a5a5ee","transaction_count":0,"txlist_hash":"f336b56eb2aab91aaacef9df8159627bafc67b497482abcec9ad6786710da7ec"}',0,'BLOCK_PARSED',NULL,'8348b929dc2ebf99296b023700959a7cc3f015f2e05dc624fe38329e8b233bfe'); -INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b9241802ec5136cb6aa2dd99dd7f07ccf370e493600c7417c361da96d5c886'); -INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"28c9833eded6d68967f206e5884616f83bb9ad16b9d7a507031b96480aecc799","messages_hash":"2491241aa4f6bd7886487e70203c6b031961193ca19a01e93db40c881bbe5e42","transaction_count":0,"txlist_hash":"c51f9cf9cd60f836bf4ae7ee0cd982829f6f7cbb2503eafef3bb167a285cf9a9"}',0,'BLOCK_PARSED',NULL,'e6ea68830199fa4aaa2634628e1190c9b9b78f386e62750ae3ba7e3023285607'); -INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a50d07667682e14f4845792cf142e578133e5338bac5d11c7127627644b62e3b'); -INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"cdac6435934ea6e67a311495325c85237158ef30c009ea44c562c2127d79e696","messages_hash":"eeab3c5350fd25da1c2c3ba0458d98e078085ae5b0d09847b76fcec2eaee1ef1","transaction_count":0,"txlist_hash":"b6749729423101ee337b7fbf0362191ba34102f01db03b225ac0d6c52de2a6fb"}',0,'BLOCK_PARSED',NULL,'4695293317f994b92d4a611797a1e9d935b354a8c50e70899011d43a58262d2a'); -INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebbc8f03a17074a4d3790a007643856d4f0e85116a5c16cb953535c878241f48'); -INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"cb33e420348e7969a2310445a6c17c79e647d3c6f3106d4fd0c0a1249e11ed6f","messages_hash":"13d15e51975d5a0685af16eacc17328a1115ac2aa2cdc5bb35fba39968f599ee","transaction_count":0,"txlist_hash":"544bc0db1dbb1d22a05e5f81de7520ef990df5b897b9f9e60d98f102fef86568"}',0,'BLOCK_PARSED',NULL,'a08ba69dfdee0ca80059d064a70304b146379be025c653a50e072e71f4147268'); -INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b981b75a76214448a48b1b8da873826f9cb7ecfbfe1edc14898625a6015327c7'); -INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"dda2531cf7db78a3f27c1ce70189b3f6efb69ddd24b61639f9deff42566bba2a","messages_hash":"fb25447214c4607f8c4d660c5a3aebaa2f01b01f0b64a60ba8f0bd8ae92c0703","transaction_count":0,"txlist_hash":"217908d5688f0d9797f04ee9c3cd03ae93c20f4e5801fd809d3c37154e55b7b6"}',0,'BLOCK_PARSED',NULL,'39bc53e356b5a965ef3e64bd5f5a21057585c18dac0d0ed0d1083e3d4bd131ec'); -INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82ed5746c56648121ef603dd722e0533830a67d53e7bbceeb9e5c996481892d3'); -INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"9ca7d9e1da0c6e4465d9e1c76990b6c48e62ee3a0b3b83189dc7a0f2c03a3006","messages_hash":"c65d8cf66c9ce0c8302015f05b85bb05cf2e6aa76bd5088b1a62d02946bea13f","transaction_count":0,"txlist_hash":"6e31995ac19f2ff3fdfe5d2ba7a49f4b018b132d2aae92a4c664a97d6a6b3b6b"}',0,'BLOCK_PARSED',NULL,'a5a5da5a6f88b8e17facc411ed922c0349bf25648bfd7a926b088de9fe5e3395'); -INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2837cdb0aa9bd2db41c0180467b45c3056f3e7e98a2dcd63187c789f6d6572'); -INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"c6fc005e874909cf0393ac1bee7267f66cc5355c549d8657234a0ed6b429c869","messages_hash":"9b9c7f49cf432ccd8b987732e346d336a02567b1281757e04bd30be6810cd65d","transaction_count":0,"txlist_hash":"d7d3f23d0014f40f3ac6a00fbb59e95653d22e11360783fe4116be9ecf360149"}',0,'BLOCK_PARSED',NULL,'404c2b48f8c67a45cdf209e49c37bb15e6b117f8a8c574f00f3f7dad7fd09d3b'); -INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb42ccc2a8ba968ae8b0d806c6e5bc206f0cd6e408f239799da7142e570ca97'); -INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"14dacaec0b37ca20f271e500d0ec1837a63006eb464728c067107738ad3167c6","messages_hash":"300d1f4b6299d375ec9e649a12efb5bd019fe3e3f6ee5690bd0f4e5b02720862","transaction_count":0,"txlist_hash":"7a1a9bf5515019b99c1c35abaa4a2003c6291018e090c26ec03c5c951f853f82"}',0,'BLOCK_PARSED',NULL,'9699b9c3b7ef8ef36c7fa6fd10f487e140a8266a05e5074e19da402cb8ba7c18'); -INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c6aab754155bb84f49b09ec0b558e9c73c0881bbf56ab3dc7e2324bc9e93ce6'); -INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"05bd680c082185147e83785e7464d8890908d1550359b4fac79018b510475e01","messages_hash":"ef704a263dc83acc2baa115490d248093d829fe0a2791a0684fcfba67e271c5c","transaction_count":0,"txlist_hash":"40b9134941fbe6312e3a7dca4b1f5114c3b7ab73f6ab84ba96aa101097111168"}',0,'BLOCK_PARSED',NULL,'5d53bb6a281a03dc1c87813b100c4449f4021354a8b985565818211b8bc91892'); -INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0b9246dbd3670adc7e6f2ebbd23fc3b1264470b9be37f18371b63eea9d20188'); -INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b50805d750ebd26f8dbced919948118f1f97ce7d117aa1760e7a3c4895f51e13","messages_hash":"c5dee874fb1870dc8cbc2302bdd7b7441444ea1687894885cdd7520e9b153182","transaction_count":0,"txlist_hash":"4e1fd0382baffd66852d64c667941808ebeb08a17309ccfe91be8e16046ad266"}',0,'BLOCK_PARSED',NULL,'0a46c913288e24e94c973624cc90e401d3adbb535f6ab2a922c023aac4954723'); -INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5dfcb981fb118356a0811c18d980bdb9d361874abd9ba4758bb083e4c4b31aa'); -INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"dde96405c241e1d57334670e4eff7ed8db92056e6867cae10475a9bc30ba4619","messages_hash":"7bc6441d01d6fa7c220dea4137853f22a95c2f98f89a168f799c443417bbe99b","transaction_count":0,"txlist_hash":"8e635d69a6a40df5c3849e1811ee551c32a57a3496fe8e4b97846b9592a9ebde"}',0,'BLOCK_PARSED',NULL,'2fb7f301e6d11902343b5073325252ffac9846fb8bd1d0d26c1c18eefa6f52ec'); -INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d362690514b686a76ddbc66046416570e8fa17ed152437238a805aa4e7b6895f'); -INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"613d78fbabba246a4d1cd9d50317e732795a59812df8395472347e15cec1ee9b","messages_hash":"1d990ec79e709ede24d72552031326b1318f57b380ca441355770b4756250e04","transaction_count":0,"txlist_hash":"c96db41449a579ffc6b459375569230e88bdfd51c10578c60f8d252eff630fd3"}',0,'BLOCK_PARSED',NULL,'63b6557248db344c78539784c65378714eecb27010278fa2998b9598bdb6c7a2'); -INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b966778631fe081483d53faf252768d70e036a89f1a8ae34ccf7f53825127b5'); -INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e535ca5960d2ce7508bd2157dd0cac3ea1f9ab14532a40884d522b4bba0d4979","messages_hash":"8bfd686aaff55db29f667ad50f1c7dab1f5006f20f0c3fe5a8627909acd36850","transaction_count":0,"txlist_hash":"710369d2e677643b7ab8f2bbcebf0f13017052ff7fd9adfd6ffac4e6fff83f8c"}',0,'BLOCK_PARSED',NULL,'82b741e4ad5eeeada62952fc4ac06b6472d7701e31bf47359093ff8c6f2534de'); -INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccc557ac28ec041bd0a8d8d9a97728412f265baacef73ba0235d0c0aa98a32c7'); -INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"970865291b7a6d8173d6ad2ae97335cb2e89d80cbbb7a79bb2328cf6c67fa6cd","messages_hash":"c339c9ba0fcd3143316610a40c58c3beddc6e3538564eff6e3753363372d7f50","transaction_count":0,"txlist_hash":"9deae420c2b87043e6e18db077634a1d65ae60b38f604ce56f0899ed3a561347"}',0,'BLOCK_PARSED',NULL,'576307a3d327842e1e9bf679c8cfce3599787d65eb3ad1b293a8ec26844c7790'); -INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27a46693a329b178e3892cd0d489267d72035022e9c07e99abf15f99c08dcd28'); -INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d","messages_hash":"a2c1bad71d57d8cbf740a32e9d614704befad2c39be157e202d6d6c852eee51a","transaction_count":0,"txlist_hash":"4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c"}',0,'BLOCK_PARSED',NULL,'0d7f7136eaf6785c3e87b4cdd5ebde31e78c0740be3a53af8daa4e6fa0dfd8f0'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":" e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0 2 "}',0,'NEW_TRANSACTION',NULL,'76dfdf330f906f5cc08d5a85a01c41e7584f080a77e42abee33055c3c24dea53'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','bded1aad045cb3fff4b198d73bdab694ea912ceb07e0d69eaad1e3750b87ef64'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','e8fb4c77bc2943cf8e7e86f335657a1e5cc7823c646f810441a78b90de42fa97'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'80bc197cc9f8b6d19ee8bf98d5aafa27af8b3fea0ee76cc4cc38734f20ce2607'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d60d2de99a9528b5d2c33a8db6744aea4a1bb25bb3dbad49d292b225cd7ad271'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":5430,"data":"0000000000000000000000010000000002faf080","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2,"utxos_info":" e488ada780cce6fd20645960fa4c00f46bc2d3014eea403415df68df8c9a0161:0 3 "}',0,'NEW_TRANSACTION',NULL,'c8d3a1327d55f5ad2033d98fcc1c26da0aae24b172d8210344be5a717a2f7d12'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','0070a432c9192ce32e560a995439c9e3c6d7eb462ca7235d3ed775d274d02bb4'); +INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310001,"calling_function":"send","event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','4be0efc16972733a5381de04bf2acdc99e45569e72478428b5b2514c30d00db4'); +INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'SEND','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','32d07ebb72424cf123f247bc5b7b043ed0ac797899195b181957fc8c87e22a13'); +INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'TRANSACTION_PARSED','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','597215b5c69967e74f9d2ca77c97e2c2dcd79a07037cdbd9839dc4b443e5a698'); +INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"bdf1308701712d94da26f53fef4c440ea2fb7b0ef7361f424ba9263e747272bd","messages_hash":"3982f4f3a8dc501dd90db276a698a42a505c246daad5375df01cadd5dc1c0105","transaction_count":1,"txlist_hash":"fac614e6f77f1b954c12523e9d0eeb4252f92f3640f7d067790a510a9e893811"}',0,'BLOCK_PARSED',NULL,'4437fecbc6c7956a5c8cee26b95ea3d087fcbbc10c4b47b936170c11e2375872'); +INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6baa745640d4c533bc026abd3b66194cc2e4b478887747531674514975726390'); +INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3,"utxos_info":" 54900f21dc6f766adb88a9aba633262eca60b42b4e334f4a05fab3e6dff55c68:0 2 "}',0,'NEW_TRANSACTION',NULL,'4613af8dff67b62cbad67efa62b7531d9a9de178e8fb540de32235ca664b3c06'); +INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'OPEN_ORDER','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','4413c00e8d70d4d5703339b5dd30842ab30577da1d88b787212dbf60253dcdef'); +INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'TRANSACTION_PARSED','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','10d6569744d7061dbe919fe807f2183bcb7f0662b138481e0f80004b7762f75d'); +INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"cf830f949715ebeac09d4441878f60ac04d691c09d6c25c62a0d30fb5886cba9","messages_hash":"28b764d4c3761b4bcb1e2b3cbd62b372bbdb26ab4930950d44e240fe6eed016e","transaction_count":1,"txlist_hash":"0c743d61c27efab7c83c1845f6b0446b67c9b59173318709d51363e75e7a0601"}',0,'BLOCK_PARSED',NULL,'0c62b39af93814872f88b47a3cd0de586ca6db5590029176c02a09314b0a75af'); +INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af6e2545a195f8b0055f681cc099fe65b7e734561a81ce6fd9b3458c63119b5d'); +INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4,"utxos_info":" b2a1fa8abf69e20f54911c80cc5a1db0cad9f7e6a248f318bc7e8f0b37052bb6:0 2 "}',0,'NEW_TRANSACTION',NULL,'5e9c986736127739730d9c05c7825f5e17086d710b3f369a97f50028d6eae7a8'); +INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','d1f1eb3d0da2c4dc8bc9e09f76fe1f1448906beb2b1e609efea4af2a5e582291'); +INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'OPEN_ORDER','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','235b745b5fde3ad3d97d910cd13d50b74bf1e745ea063905770cf59de886c1e3'); +INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','1101ed549e12bc6828f710703c30949312b3bf865ef4ba9319badc5efb49d8df'); +INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','8fabeeda7c6ce486233d8919e5a6bb0a2cc97c9342176225866effd8c839d303'); +INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","match_expire_index":310023,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx0_index":3,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx1_index":4}',0,'ORDER_MATCH','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','cd140e575fe0c60270fa159fb2ec6ef9b9297b5218f30ded2025cdd89bf4f270'); +INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'TRANSACTION_PARSED','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','0edd6625b77fc5f4273fa05a549adda56766b6198b81c612557f996dabdf93ab'); +INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e881a675a38c4649cd44e6406ddc494996c761671bc349dcdea1de430a84258d","messages_hash":"10d9d1d1d68bdcc6d8e2d58fcdc154884f436553a143f5cd520b0026363f0cdb","transaction_count":1,"txlist_hash":"9ae051d14f8d19db67a85c713eefc0a936f1bad818ae1138fcecb91506a46d88"}',0,'BLOCK_PARSED',NULL,'e33fdd2432a96db6fc5c206f66432456743d23f8ce8c6d83e0aeec43206bc256'); +INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff5e3ec3b76e5ad3cad37d2d3dbfdafb9ce3c203a0afe3fce777e6a3b250c6f3'); +INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c5936d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":9675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5,"utxos_info":" fbffe88a06b9d791e11241eb5a642b58dad82933b6ea4af179b7cb43ed1e4d08:0 4 "}',0,'NEW_TRANSACTION',NULL,'cf19f71c82a99b6dc502b12751d79a570a2e0f4c20eef33bab46da96994ee91b'); +INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','2b169d69ab4ed957cb076425462dbdbc8ce41bca7894620f2c175744b5e7a4a0'); +INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","status":"completed"}',0,'ORDER_MATCH_UPDATE','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','2917cd7c5524181ea443f492ee33b9ec1df082c4b270bed3055903b459c50624'); +INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'BTC_PAY','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','3b8fcb0821b0fcf1e4e7c8f55e2278e553a22b0e17b6f5fb2c7b718ce970f90a'); +INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'TRANSACTION_PARSED','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','7c73974053eae8f264074e9ed6c9e4a603565542450e4c54b45f965643eee4cd'); +INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"13e0c6276f297ff1ca77705f1b18d807ca22f53735fba52f4f5c3766dc4b04e8","messages_hash":"aa968b67b3f01d9adb219bc43a6831cd92130511d0848352e5ce334356380510","transaction_count":1,"txlist_hash":"a865bc7b6e26b3c3868ae080ab927ce3f2dcdb7d3654ffbcd1b3a8111d0807b1"}',0,'BLOCK_PARSED',NULL,'cbd9a4efda261bde09f5b729a6651e076ce6c4f2dd4cd606e65354c69da3f152'); +INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82fe468f485b7b5cc38edfa18b8569c5c160b18db804d5f3353902efc315a559'); +INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6,"utxos_info":" 24a606746ea4ce49c119d914356b48e0a15354842243414bb3a7b2cf9cc9a841:0 2 "}',0,'NEW_TRANSACTION',NULL,'357073cfa5df40221928128c7adb0e13086db5abffb941bef62050409d19d4d2'); +INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','ea5f953d353741506033e955fb402589f5b48f4868dfec01b3e39ed67eaabbb9'); +INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','fc0085e5ecbbc7ddbec7074e3bd8944030e8414b3b0009c1cd8085da59dabf79'); +INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'ASSET_ISSUANCE','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','3f9c6d366b57d41d30351b534c7838d952134eb8672039077d5d199e1b4bc4e9'); +INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','865ad42408d1ba060915c0934371eeeb64e96841541a9553de80b74fe23babc4'); +INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'TRANSACTION_PARSED','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','fde9fd5f330613dcb23055666613ea6c981b459b77e094d4943d659bab86a8ca'); +INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"765896f532b411af9f889687a750d44414296c20002f3e2abed9551a6822937d","messages_hash":"1127342777064d3cdaded48200f307a39ed2daf430a0c23437ca8b1403e32a05","transaction_count":1,"txlist_hash":"59095fce5f573c2ff1b5eda5cd75c36227b0f9782601e7538215fea5317c505b"}',0,'BLOCK_PARSED',NULL,'10ee192741fc1d2eb21279a4fffc44c7e4026bf36aed0c766a710f0153ba17a8'); +INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5795e8561ec52895f6644d8596664e244c59d6bfc754592fc8e6575b5bf4dd6'); +INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7,"utxos_info":" 010e082fb9c508804f1e65db734ba38b58acc8f7eb31cd02f07047a9bcd9a4c2:0 2 "}',0,'NEW_TRANSACTION',NULL,'ff2101b5215e35c8646cfbbf719525f7daa52d3d4c98684b6413f2d0b75a0751'); +INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','2af314f2442447f83cedfcd506667f12960bd9d49396b7f812c5e1c4464632c1'); +INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','3f5576398448b61c8116cf6035432d65a201a1e4bec21cf9328b6855f2a1938b'); +INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'ASSET_ISSUANCE','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','aa6ec3de7d78981625a60835a5bfd38ad592a4db637df98628d10d5e6531cae1'); +INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','cf6286f8b355acdc234925c101cf093ce4f7c7606add84760d2260906fd88bed'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'TRANSACTION_PARSED','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','c58f679db3f90a3a1621394ed084bce96a02bee4dd3fba54e5e57a571ed296b3'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"853e3a8d39c4e8bdb36a0ec01a8d20f12335fcc00a00ac271e9d83be471d394f","messages_hash":"1986e851aa4d771bbcac1e6915796eeb9a862443ecb949b933a03fb3dbf0c105","transaction_count":1,"txlist_hash":"752821f935743579d04abcc94c104148b226cbc0777a6bb30bb7eceb29b85fca"}',0,'BLOCK_PARSED',NULL,'be78ceba3346a349daf25b4574d42c50df701647bc1f48fd496a5ca06b2ee4ef'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'311706bfe1a77d49947f12807684f4a6a3f1228abd28c1267831e06cde80b850'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000000000476700000000003d0900","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8,"utxos_info":" ebb9e84621e761d7f57b4f3e6e4b90947e648e1e6c77726663882b000f144405:0 3 "}',0,'NEW_TRANSACTION',NULL,'eacc2bb897e182758ab8ccd6a0e374b31d4ace7e6ded127be93d8ad4e818a55d'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310007,"event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','258839875269e3b3311bdd17206bda8c1f8aa81b5413bc3e091b2f09cbd1cd6a'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBB","block_index":310007,"calling_function":"send","event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','e651244589a509ad80cc168edb3628636f9be8d56bec3929032507c4ed197285'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":4000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'SEND','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','26f7efce3f046e47e1a7523d405801e1929fd6d53ec6d2e18c2a608be67ab1ea'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'TRANSACTION_PARSED','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','797daaecae3d483de9265d5c1452fb0bb1af7d719ad65c161f20fba47c9b33d0'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"f2b2d250a94afa158f9ed84434c3ac7a0bfc97b4387e5e3c099afc95b8a6ad9c","messages_hash":"6e1e255f41512505aa0d339849037191697a7fbad0e2adc21c1ae48eef8f8f2e","transaction_count":1,"txlist_hash":"405914410b5982b395f52f17ee4fc69dc0e4fb4c7a511009c700c0d1bdbfb563"}',0,'BLOCK_PARSED',NULL,'af7ff9cd98a42a8b9786a63a58b0839a694f4d132741ab25f6e1d5d640050b84'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'314b022a8fa0837fe94db97c0573da4d90d3bb7526c4e189d000c56d262e3db1'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"000000000000000000004768000000000000020e","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9,"utxos_info":" 24daf4100f55b121a16483cfa7203ac95303400d45ddc19de0146d0e2dbf82d4:0 3 "}',0,'NEW_TRANSACTION',NULL,'f5d0bf3f3509e44d26d3bdf8c0e525fafea2ba0ad88d1cc985755e0ba8d09d63'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310008,"event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','7db03259815a66e7c0c44e9486e7dd21a4482826844558054549daff4cc886ac'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310008,"calling_function":"send","event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','17c858108124842bb15417939bb3b19ea342996e8e6ecb566fca9de707f07a9f'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":526,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'SEND','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','2743fa73e2a9d9ff58a5bdc265b64577d31bfe15964aa6b7ee141de66c0700eb'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'TRANSACTION_PARSED','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','f567e729e1f43ba82c29b16a9cd9fbd4fb541fc32e5350029b5e628c6cc7eec0'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"8c44f15f5606b6fe984a9fa7df8d7d5381fe87a6c8b634469804328885668569","messages_hash":"967f755bf80b80dcdb561e2f822d0c057824fd092b1d7536d1d52f96a4226df4","transaction_count":1,"txlist_hash":"81714583a99f97b5cefc10510f507567e02f380bdb5741e2b5ef037816e8be17"}',0,'BLOCK_PARSED',NULL,'afddd3c413806f8c8af68156cee83d5cf16263f0a9d3e0eb013bda02cd20080d'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cac164d477fc57076bd28f9fce19c2da5e6e05b2d820dc6108a46e4e7bfabf1'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10,"utxos_info":" 2ec45c5f61fbad288a6fe8bd49d83823700f92512bf9513f06b0dca32fa57727:0 2 "}',0,'NEW_TRANSACTION',NULL,'6427c9b2b383f90923d4a2362e68ef96272242c6ffb5873cd87b60998e87b20d'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','4f2077dc640b42482c0adf22ddf3d57dbbe9ac383b1e0fbe08da960b796bfb00'); +INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','6be1d456e2517b754e72bc57458c97ac91cfe53c8277ba2a348fd080b772f109'); +INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','35ae12df87b5e17d96c6d58ed31fe384b3b85ff352437f826ed72d90890ee5ac'); +INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'ASSET_DIVIDEND','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','80a38777ddcc934b53baee9c4cf879f156974833c4773e8cc836ae57a742ccdd'); +INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'TRANSACTION_PARSED','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','560767a02739a0cae4bf90f41287339ad9bd0706c5c39e4967dc0e0525ec738d'); +INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ba378e9192f290d3f9d3dd1e46aeef3a185bd5aff1be809c8974fca8dc142987","messages_hash":"17af8703880540d50c20a49c96246184b225b94b10b2febc0b4a726bbe6430f0","transaction_count":1,"txlist_hash":"9395234af8a78eb91afe7dd45a6701032af9926cba3e126e01f06547ffcb2e08"}',0,'BLOCK_PARSED',NULL,'a1011c54851c070a3d0347f63c61115215e3baf2d6c463045fe3bfe5fdceee2f'); +INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8f7f08913e9b441ca9ed0d52ae86473cadd0bac6abae2d37887a56bc4bf0d2a'); +INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11,"utxos_info":" 1f3f78c84f24b97edfab9bf0fac70974cd543157cf65d9464378cf31e3b26d4e:0 2 "}',0,'NEW_TRANSACTION',NULL,'def2883fdad2df8f6cc2ee69fe0939daeb3685eb26ead539810159e129257bfe'); +INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','4668b55588bb40511f1777201eded2e944e6b16639055049cdeaf8df97377c7c'); +INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','731661ca59cab07947036a698a96120b0769a3a788b779afa0ecf1f909d8d920'); +INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','7eaf2c31faf1810976cbb09185c339738d368d379361bc69814ed91be6c82b87'); +INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'ASSET_DIVIDEND','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','ac7e53f50fcdf9cf223db7e60cd7f51999411cf8391c1e1a9e3ac02ebe2e565b'); +INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'TRANSACTION_PARSED','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','d26760baed1673b26768351fd1745d829ae5321909624ed2f3b028c7f0368bb8'); +INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"64f78f9eedce2931aedfe413b4f4bdeb728752e1c897e0bd44c7db665976a723","messages_hash":"d6bb529bfe31304266d7c1c11879fa5c46f2445bf5d743e829a9efd6f3692033","transaction_count":1,"txlist_hash":"09624bd24bdd3d945e0a75450915715fa9e9a077db33aa5bdb275b0c76e7f9e8"}',0,'BLOCK_PARSED',NULL,'cf51b7cd9ffecf6bc0487b9446bb4eae9d9bc621341c8bd72b44ab1577041df2'); +INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0bec2c7b6ae371c0d619fc17f0ac9ba422c4f2515b51aa574713fca8125f918'); +INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"utxos_info":" 81c8797b226b263715b86600744076f2922a7f74212fa87403ff0857e60af530:0 2 "}',0,'NEW_TRANSACTION',NULL,'d6c6737c0154134af3c4e8799bc99f164fda8fbf47765a5a0e527762b77d824e'); +INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"value":100.0}',0,'BROADCAST','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','39a22a1f2cd7b6f893c372366ee59c4a96c46359d5db9f4e1ed2d0d5750e3a22'); +INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12}',0,'TRANSACTION_PARSED','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','3c62f0e0e08aa566bcc39ba0ee594ef30736737a41db05dfa0084be23946024a'); +INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"671a1b4e1edd1f96dcfcc96d521fb2125ae5b9d2d01a76fc66686b7ed20c5662","messages_hash":"ecf1aca37d71aa31b875ddb79d80eaa8594553337ed23ba2186c92bca429eba1","transaction_count":1,"txlist_hash":"aa59f74f7d3eeee95415b1bca4a090036cd9a2efb187880f7c72c69dc1bfc059"}',0,'BLOCK_PARSED',NULL,'98474ad022a263ff6aa657055e7ba2861eedb309ab447a6b38ef0e47f70b390e'); +INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'486e0e84a419476e9321b1c1237094824e63be2d10ff289303828c9d04f1718e'); +INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":5430,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"utxos_info":" ca6f5f8dbb4762a0265e98f35666e86903031938b65dab59e63ba89242f60f62:0 3 "}',0,'NEW_TRANSACTION',NULL,'80f68cfecb6e8f7b6746941fd16cfccf7c49b0c7c015800c32c483aa2b464f5c'); +INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','9924b65d7b32c2df1b0226e37365527d03b247c18fb89d0770acdb66d3523918'); +INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','820fe615d35e458041af70387013e0bac1177ab90e291f54fa51c6a0152a5886'); +INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13}',0,'TRANSACTION_PARSED','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','8a7e7a58df65bb09bb909ff062a28ff599201e7aa4e9bbcc1d9f4e8afefec24e'); +INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"1f5b502c341699b5a59b87566c0fc02b7db5c657919f014e41a00303aa53efc8","messages_hash":"20253d51becea71521f4d33525ecbd2dab9181ea15f310ced86852d6c887fe98","transaction_count":1,"txlist_hash":"ba55fd791587dad14742ad66d1515992a076eefbd54d1215806aa9db3811cf50"}',0,'BLOCK_PARSED',NULL,'73d51257267210a40eef8cf25aa7f55bde69efa6447e4d273956c68f3acfec40'); +INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1098a49f0597e13d174c687e051fffbab4401759fdd060cd943ca544f9315823'); +INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":5430,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"utxos_info":" b055a68d3f2f53e7b4a413d48206a9a02f5ab56f7b948f36d0ef993cecf876b2:0 3 "}',0,'NEW_TRANSACTION',NULL,'8d74b688b82f82bc8d6f170141e2e71ba89f1fc81ae225fbba686c4da48df61c'); +INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE',NULL,'771f53b6b14cd1c405f1c19ff8593ace6b76963adb0982ff41113e56e5d22c08'); +INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'7d1fead92e053d555f868491424b9370490ae2f3bfb39dacaf4cfeaf16a8c725'); +INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','50728b741f19c750ce69c4a807b723d5b332a176a80eb44706ac191c35498b02'); +INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','66ca0d43d7caf2a04d97abd2f0e6671467d94235036881e9fc047c271b7dc575'); +INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","wager_remaining":8500000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','489aca4ca13bdd7ebdef9f76e1c673fce0eb93da24b01690cfaf2e7db005c312'); +INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"calling_function":"filled","event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','530c1fe8baf65e746663eca1017445f67b82a41e6ee8893620a540804b10dbda'); +INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","wager_remaining":4250000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','683e3d49a364497fc04001fa7e74d803b8508171bf56d4a0be2ac3aadb43f53f'); +INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":41500000,"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx0_index":13,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx1_index":14}',0,'BET_MATCH','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','10df0a38c534e75dd3862c538de785c6dd94b3365f278cd476f7d49b221dc009'); +INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14}',0,'TRANSACTION_PARSED','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','3362da9b41535b31b31e6e7c37edfdf6f323544ce0ec56fb2491ae729c82e981'); +INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"cd0cfff6de5dd4381301929c740015d5910339ba915a83eb4229ecb91ae84c17","messages_hash":"db3dc80b0d4d31ceec1d5810030b79d1ed55926d276c9c5ea7c8d30a376148aa","transaction_count":1,"txlist_hash":"6c03bbdc682356647ad229247ed9d4000c2ffd03696695e0277c43b4e4d8fed8"}',0,'BLOCK_PARSED',NULL,'dbef1ef29dca5182b80ac7c84af1b8b9261e91c70a18b601dcdb08fd5ece215c'); +INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6ecf9fa4ecedc5757ec024efac8f7cd9dd767273bf7574860f923d850542b78'); +INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"utxos_info":" 5f55a6c0910642e7ba83dbcfa2d6990d31539f532a2ef427b099dbe2db75a236:0 3 "}',0,'NEW_TRANSACTION',NULL,'dc0bd000da7c057936f284de267fe8582778cbad46552dc4d1e1f63ce9b0f8d2'); +INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE',NULL,'8deddb536af082b0ac1734f084635a4446261c76368762dbce409562758f536a'); +INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'cf2eb7a16ef53e3e73ad588b1ea1450c2b26b875aad9860b2f9d64a75f04191d'); +INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'623cd07aa10a2f883c0f89064cfc0a6a1014cdef3d89b78bae9d3a0a6b10d30d'); +INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"event":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','ee178111fa45c8c67a280a8436f72364bd772b88181a9d7fd9b4d355b87daa20'); +INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','71b461b78bfad3edcc9a2654539e46e9a4e92e3bf5e677181f27e6ac770ec4b6'); +INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15}',0,'TRANSACTION_PARSED','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','b6e6051f4efcc4e214e059b4c0c50dace4f6d7eea893e48e8d6c80a7ef44b98a'); +INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"5012d84065c7a39b5563f4fadeaf30670b47df3856f43d40fda74de663753e4e","messages_hash":"3ab1bce56bd47b2a842921f69e90b4815ab1de528680a24499831888efd83e71","transaction_count":1,"txlist_hash":"99b41cf441ebd1ad46c14b34a3da79586aee124ae643f196f23f0eadb9fbe50d"}',0,'BLOCK_PARSED',NULL,'26b7eaadc3af4dce944d33db3a97ef79dac0e52bcf6f1d603ef6d531c155a628'); +INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c7d701aac70aaa095e25049c21939b4d76ce930dba2da704212688494ea2035'); +INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":5430,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"utxos_info":" 32229c87e88ed2c3796ca5bb209c31c36e2ed7bcb8ba20ea36ca395db23c47e1:0 3 "}',0,'NEW_TRANSACTION',NULL,'f1c32b1e238fac970d2668b7de2ffd9df2fe182d56e09d50ed7ec6909a70f460'); +INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','acf82658676f7122d9f555e6fd94a1ea725300a665b4f15a71a31cb20b864ceb'); +INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','76a988dcaf00ec5bf509af5f20499f31b59b06e6f5a95ab8adb1222701602f45'); +INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','ff4da66a7383cfc3ea13937171779d9e4a09169ea2ccf417ba6370863a7069e4'); +INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','182d03ee9696cf4db93172a272926f43d32a599b1b61c8523ad70335e62da059'); +INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','c0c74b876a5d71696972549a5eca24e3d0d98ce829125c263739a41c9137d250'); +INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','6d525d6394a073c41095f7030056d5a4fa6ca2b3999feb2ae0144b4d6ef042a1'); +INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":150000000,"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx0_index":15,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx1_index":16}',0,'BET_MATCH','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','abbe7e8fb0b7b361921bc075c48fef5fc2a7a80d9cd89ff542da39f64269ff6c'); +INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16}',0,'TRANSACTION_PARSED','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','1e31232c13ddef8fbda4813f06f804eeee0261b6160d8dd539cfa46ca8e0cc4a'); +INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"0356494d376b2b65b9f4b066b9d2baf2ae90d82369b87914bb58a67927ced5af","messages_hash":"d7dbf3e0d6c03945135e5df2c126ded1c04d554c4b535df4c8ff50bca1e58153","transaction_count":1,"txlist_hash":"c6fff3cf22683f773cf2941f0eb9b5ed84647569c76d40cba61ca444852fceb6"}',0,'BLOCK_PARSED',NULL,'69765b9ee4869b9cc84b288d8a23c811d6041d5fd2826a02c539ec24f3c003c3'); +INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fd1ff098ba9bf531fd66bd82e9610a58cf8c387bf17727af6e73bacaeff180e'); +INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":5430,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"utxos_info":" 2f07b60bdd5d909b98f1a40d4677b4d89435e42e5e5f4116bc1d33c4179ffa91:0 3 "}',0,'NEW_TRANSACTION',NULL,'81230500da959b54ff50b21f7fdb15155690b69544f78c8e54793e55c6eba34e'); +INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','b2595dd9cc65f3debe606e38fe0cd9c53c50f102f9ec1f363e3358bb6722feb8'); +INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','c7141de1ba1efcb814c0376fe03aca4f61fb994162bbadad36fefb3a1160d704'); +INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17}',0,'TRANSACTION_PARSED','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','c355c66fb98b040e8bfd06c02fd85f5f7c899447d4481eab84ecbdf6e7046d24'); +INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"c90ff439bd04970ed9e6e25cbfce32160450925a37ba3360f40df8854529b52d","messages_hash":"126f9ed605cd865b30c7078348f7f992de3ac4956de6a27d0a55d2b7ca62031e","transaction_count":1,"txlist_hash":"16e32aeb7155ac1b89e47925bb2367269d4fc81e9da0558266ad9722843202fd"}',0,'BLOCK_PARSED',NULL,'cb81e738be3dc46815395a20765486c321f9dee2f93ff77daff87e856fcece70'); +INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88cfdb346d5615c5ec90c650efd9a801a91ee77a75d0f8c5a3f65bfe105e8c23'); +INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":5430,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"utxos_info":" 14059c8fae8c962dfd064d7f1820e95ee53256aaa2814914e1a1c3ae865ffa17:0 3 "}',0,'NEW_TRANSACTION',NULL,'c2b40d5cd41a2692a7d1e4f9b2b15f942daf83e68c66f38b5c1ca60093eec5f7'); +INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','bea71c125976e69f87c6884e9b840c9323f055ec24215df1638dc95ad5dff268'); +INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','784668b59e6d3bbe04d08e0004a195d730af27238aa1195c021e0a310147b218'); +INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','e76f4c29f18b8b40a8b52691be2e2604ac0c370e700b41180024b341cbd9fac2'); +INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','c58737f88041425502283b588c40f1927f5cea2ae4e186b654c942a29b5e1918'); +INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','355da82400a9e9a7c1f469e235c12b7c9c7ad35ab59b60848232fb3495d95b98'); +INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','d93e96067e65ce3739c57d6baaadd517f251e4c71291084648a41ae49337c86f'); +INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":750000000,"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx0_index":17,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx1_index":18}',0,'BET_MATCH','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','816f1b41ae1915eafc5d93c1ed950ee18df9e67a2ed977c655bc085af633c512'); +INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18}',0,'TRANSACTION_PARSED','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','0b79882eedac829b4332e8772794f432a233c43c25a638958cf142dfe5c2203e'); +INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"19cf18f708dab6a983a2642802deb38d25b6fc205ea663059a0569fa38bdaf8d","messages_hash":"1498e259a0f5b7ffa9ffdee077353a8917e8e9dc33ae39a0516b1b2082322e52","transaction_count":1,"txlist_hash":"94709d5f6bcb8df437947be80ac95e2e716a92645f3eec2d915cb7c088504f1c"}',0,'BLOCK_PARSED',NULL,'01552fbcb34292c9b3a6e3bbe0ebff86a81c3e0b89fa1c14a638dc690c7474e3'); +INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3364aab0423ddf00c384b1e0694479ca91a0412a1a1f4478a1f5f5fbfd600279'); +INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"utxos_info":" b58a8553f112f012c14b3cfa19b489e6171f3ddd6664340edfde4395489ec7ba:0 2 "}',0,'NEW_TRANSACTION',NULL,'7f25aec5764952d60750eaefe92dbbf5f3ef3a45e10272c3a65e935fec072b98'); +INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"value":99.86166}',0,'BROADCAST','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','0e871997944438e8ed5a38537e04ead03c01fa5cc5a403eca9b318a3dd845cf3'); +INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','e5e84d99830542bd50ed256cb6d4d855b094186701f4f141e17de330fb75d706'); +INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','b38515f44618989ec3ec09962297d274fc366568ed32587b3e5b59e37605dc8b'); +INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','bf074bab657d7d7fd9f38b3f0521a3bd20a272df169b5087eca00853e20d9c1a'); +INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','4724080a7b0b7aa00aa20aab5da8162b6e706637bf56b3c5ca8a605125a8ec9e'); +INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19}',0,'TRANSACTION_PARSED','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','091022b776a025896e7de94e0020cceedb4450004b99f4db2cf11ce197c680aa'); +INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d9ac565fbe7bf18c1d899dab8e0c98e070880e36fa51710382017d46ddf837cf","messages_hash":"eb733b49a260457265085cac5cdc418645d4dc45a6cfe6af4fc455fc44c86e2f","transaction_count":1,"txlist_hash":"e3e2ebfcee41e92d855051b2c2e4344600646ac3ac5b335084d5f5a23e872f3b"}',0,'BLOCK_PARSED',NULL,'8cb89c1541441267a6184d9c8f28d9cde143e640e847a6164caeaf265353fbae'); +INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70bf230fdf4ca38a3c260757ba309a0793d54b33f8e099d8c871c8fce73eddcb'); +INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"utxos_info":" d34810e3caeb03c0ad4047d0cc5461583f3f2471e358037fe69bf6cb299cb3ed:0 2 "}',0,'NEW_TRANSACTION',NULL,'b0857a901b797544ac04e4cb0938dfd2254e2bc2f61b1befae701b57015ac261'); +INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"value":100.343}',0,'BROADCAST','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','c392f4a156c7406fc5a3961a97e639c6a76504cd50a5ebe7fcdb54cd32a1c1ab'); +INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','461c1ecf1697862e0d54b09192abc3166a725c678a26bace48dd7bbbbfee9db3'); +INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','b8706437b6b4a5ed94b20d5dede4db5c99226168f024dabcd7b24637ddc75338'); +INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','fc458f5e92f7b64f680ad5439f9c9fe3a07a2e600fd18ef344336f2cf332adef'); +INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','19d1fe1b0e84b816d06df5e4d8758f289da3151ad41949826886931a2ac53522'); +INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","status":"settled"}',0,'BET_MATCH_UPDATE','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','f95552f00976b218f5b3e1d3c5a0f6e653f24b7773dc20e1adf265e565eb5ff4'); +INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20}',0,'TRANSACTION_PARSED','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','cf885518fe718595b7c6856ef004e4bf73958dc024ed4f424dea2505789c2b7b'); +INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"b66661deef419a50557d171cc1bcae04f5bc260ed1f5ff56cf08ef39158617a1","messages_hash":"d501dc8943d9fbfa1e6ae9585b430720d956e7fc1521869e2d62352ab765be62","transaction_count":1,"txlist_hash":"c89d7fa5df5eab9ac8a57f00c6cc2b9d75244ce412e12eb842c6a43297ee41a6"}',0,'BLOCK_PARSED',NULL,'a8820114e687b814b0f7119b5d89e08bb52803d17f18685e0911b3a248b53aa1'); +INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41b4d9a76f0f90ca52770a7f7f92711f69b662517cbe70a1af4dde5708559fc2'); +INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"utxos_info":" d8ff0c81bb265ca70b0c28293b6042b707f9d1d30fb0145c3618c72455d881cd:0 2 "}',0,'NEW_TRANSACTION',NULL,'8db85e358488d91e48ea174f9ebc8031ae7bd7001ae4b4def41890c13b5b761c'); +INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"value":2.0}',0,'BROADCAST','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','8d7e892e966b79565b90c5729e65c0bedb8fa6d73d4ace17b2b8b007edd4d086'); +INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','07ee07dcc676e1c26e825f882bdc6eda6e1dc922115bfed89291d906e67952e1'); +INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','41030e997e83c00910f144b11518475a69495e22b2feb75445bde2f4c9e2b43a'); +INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','b89bd9e204cfe40436fbdcfa374b125247388a856062cc7b1794851469a0d7a1'); +INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','3d6c6a1cd5a4f6a23be53fa9e6ab4326cf9704bbb4148ed00660288cd48ff134'); +INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21}',0,'TRANSACTION_PARSED','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','b891c6a158d6607195335cecc375d6995fc502adac40f60ff72d7eb3bb064dbc'); +INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"57a6c53e41338011cb06cd60118961dcec0e800f62a2c4b1e9381c666319680f","messages_hash":"6721c364682fa68f26ba3c3dfe6e7d572c9846469bb90dad12326c8d19dc5afa","transaction_count":1,"txlist_hash":"5d8f062b1b5c6740eed53d90f4cd10a23f273237bda588f42fa35653a9fe5feb"}',0,'BLOCK_PARSED',NULL,'974d019a9a7ffa78663e3905d37988255e6821494629f01ab0153a326d6f7161'); +INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e26ab363112daa2d04a50aee416233b82ab51458ddd0f8d3f77fdb1bb381939'); +INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22,"utxos_info":" 7072487856a3c59ab919efb969b9c9701006d6bfcf65d9e3bf9ab34f50a5bf41:0 2 "}',0,'NEW_TRANSACTION',NULL,'b8bbc90af0ea075e07ebf6f62d6e10a938e81f2e85d3b61d67863c157a8e68be'); +INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310021,"event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','599f5724d1fe7be506217f29cdc03d938e5f43368ebbf5b2a35ee2b1dcc0dd7c'); +INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'OPEN_ORDER','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','ca38aba95915d0d134450f68003dcb0ee5bc2fa50b5c7343c56112e618f5b3dc'); +INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'TRANSACTION_PARSED','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','a70cc0a0bcc3ec8ec88203be2e87640c8fe4ded5781b678adb1858213f0246e9'); +INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"66c16af10125f298796da828f1a6c2b43123cda38e3dfc57ccc25b00f3da17f8","messages_hash":"670756f732d49f35c64b8731329dde392e8ca618ffe07cf895823d638bd175ca","transaction_count":1,"txlist_hash":"94b751bb8af2f91fb1933dfae1edaa636836fe1f9100edc5c6b8bc793fea4b47"}',0,'BLOCK_PARSED',NULL,'e3b59f1cd9b8937b9444a7220d1daafb02d805582d10edf42bb3e7d1143f348c'); +INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8046e7cd6689dc1f6f0f1fbd7127744cb2bd04342bfadb8305c4b05f6246ab7'); +INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":10150,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23,"utxos_info":" b5955ae6d9087334db96b8605fd785eead5c7abb4200b94b30c327c31dc23534:0 2 "}',0,'NEW_TRANSACTION',NULL,'1206c38123033139ec632bd6904351bb17e665c64ce4eebd077bf17e09553b0a'); +INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','b1a78068a986adfdadfde3a790296c7a0f1a3c297d401fe9eec170bd6ff15610'); +INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23}',0,'BURN','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','d3f1b95def157b73523bf042bd8fb4fd26ba3f9c6d56ea1d999980f5049d6542'); +INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"43b6213cad601a389aed2a4e912be118dfab6cca5358d86bac03f4bee6765493","messages_hash":"abb0f7fb1bd17273de7a43bdfd2b6786a9b8f2a1f3be6b4da3ef5189ad73566c","transaction_count":1,"txlist_hash":"fcb847408d5ee30ef86a94a0495f53670b1157d4f33d627b62ebd84fb1321cf5"}',0,'BLOCK_PARSED',NULL,'27ec1ebab4cff9667f47f42dcf1cdf1d4f22445bc16f88f0cfa432782276c790'); +INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22942823ab27e67654575f10edb5ce5f1ed55d0b6916b229d3a7c09cbed54168'); +INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":5430,"data":"0000000000000000000047680000000000002710","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24,"utxos_info":" 92a935a2d4d4072b79fe703a72bc9bcad6b6afb518af8ca11c92d4ca06ce465a:0 3 "}',0,'NEW_TRANSACTION',NULL,'49b59a0d348ef44c75df88068ef357843a9f55b1e9ecce706b962d39974dcfbf'); +INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81"}',0,'BET_UPDATE',NULL,'ab4c21d72d15392f6dfe53a7e4251b013cf0539228eb6c0e7d1cebb60f11b36d'); +INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4bdb07811f9dfc9ccc20ff444e5d480d9687b08f8d752587add4000feaae4cde'); +INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","bet_index":13,"block_index":310023,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'BET_EXPIRATION',NULL,'346709ee7ae78616008a994c3f68272757b87f664a45a1afd7ce2e81f213dbcc'); +INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310023,"event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','f2e3a40a4c0674363e5b826e20209d7a9281efb977730ce5c4d2f07856aedc8b'); +INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310023,"calling_function":"send","event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','60407f26cf7f56330223e85087b7ccfa33e9b55539293eb4d9a34428d3cc9f0d'); +INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":10000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'SEND','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','81cb3346c85823b98621631707be37b74c0f94423c6abf77f8a9665cdb55212d'); +INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'TRANSACTION_PARSED','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','981dcb6aeb8bb0ad0e70b1d3d2c709bee20d387fa68a01513da586a0f4e89a88'); +INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"8a9758963891bbfbdcb6515d8d3e49c941fedba7de82038776e9f8ed65e803c1","messages_hash":"c6a825980dbe6ff39f04b72548a2490b3c814da34a2744319a3b903448d4ba19","transaction_count":1,"txlist_hash":"d21109a870f8542e8ef40f6d72e36fb0bb5ac4ad1e7b3232ba1b2bdcc735810e"}',0,'BLOCK_PARSED',NULL,'49b3fe8f1b3a884897dac36b1d4c056284453119d7548869fd700fca48aecc18'); +INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'110b4ed27461d119745974f297824173d4cd824841311fba667451b965b140b9'); +INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"cb034ab4a3e252fdfe9973a672e208295741a52634c9332b1501d612e0012e19","messages_hash":"aa67e27468ba6bfbd0f7e197b6d12b492757ed4fd97afb371862ba7747252e01","transaction_count":0,"txlist_hash":"52bcbfb439bfc9cf14e38d39a9d6c401a8798a20fe64238f070125e8e7905151"}',0,'BLOCK_PARSED',NULL,'c93097380228457e304ec6810058e42223074f5bdeea1999b79f6fca2165e4ca'); +INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e25342951b18e6369fdfcc3c1faad44c5eeeebe7102de7512cbd9772e0e88df3'); +INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"5addc8253469d5c729cdffc1c637b75d9e8886a633d4406dedf2b1c16ba5b92a","messages_hash":"c798b5e8a7cdcd8490670fe01e7adb3ec2394dc8e4efaeda1e90e0a8b75b8c8b","transaction_count":0,"txlist_hash":"e2d8891737534dde276dd1f7f51d42558b9ad60d88baada83f75951905e6f174"}',0,'BLOCK_PARSED',NULL,'5a87aa0b273a724cb7766e6222a45dcb030ce53a18f2027e3a8c16b9dceb12e4'); +INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'629c46fa30f249933301185b66bb6f8a21218266b186763e7c2420f78f1451a6'); +INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"8620bd0283c320330631185d1b2351718f174732bd099324a0880719cdfc18c7","messages_hash":"9cdd8b03f2f97aa4f68317d23a35d7019cb97204d904f0cd0a86a4e4410a8203","transaction_count":0,"txlist_hash":"e7b6699c8b2b5857b60004dec9aa8aeda30ef42483ca16bc79e4ecdc1c0b4ce7"}',0,'BLOCK_PARSED',NULL,'2aa3b33ff2ba15bcb49ec7772d1e4a9718d72cc185c2d15046b03b607b6ec154'); +INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7762ac51b5edb6684eb20e2ea9a4180699fcfa40996e320164a22471debbf20'); +INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"96960e09478184f4f0ad38d1fc03f0c0240e58715a0a29745a6dc58c40003249","messages_hash":"a56a11bed2f5aa2f6deacfac41935e24a68599c875481376adcfd07e52262568","transaction_count":0,"txlist_hash":"a7e32b5f0b6568eff793a1d12d32ab594f3886b417a6491b6ec641d15e906e9e"}',0,'BLOCK_PARSED',NULL,'76e4d14ef8d894167a023c5085076f52580685c6dd24a2ae882f94b0e9387a0f'); +INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3972d5bd94571ae2d24dfff60ba1b6a3c21cd2ab86e1bb73a8f016593f8164df'); +INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"2f556d2528abe1c4e9d31f6ed70d400d94633d4dfb54c9a4f250e1b054f9a384","messages_hash":"7c5a0f15673561d5bbea0c3b2bb3eb39bd48d51933b77e1878b44f706c872c25","transaction_count":0,"txlist_hash":"8b22bfc6153a2e742e843a5263194ffcf3ab985d934e212266ca400ed568e710"}',0,'BLOCK_PARSED',NULL,'cad68b0593d95fd6696c853f0437f167c913a4571d19e6a9c3c21c048dd895c6'); +INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16851f12682ea71c9d007e052e9ff9fa57057bdbc94f71dbe5e57df98a137db7'); +INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"be195b1f7b7b55dcefb83907d954736d4bf059a9e32055131efd16602d7761d6","messages_hash":"b149c15c7b0b3dd9478d4d597cebcd07f25f9184b1bd6e141c342b69b6e8a40a","transaction_count":0,"txlist_hash":"ad8654356f0a1ffb669528bf4c3625e9d43ce08d9dda7f1adc2e962b65d20b55"}',0,'BLOCK_PARSED',NULL,'ab5637888acb7dc61b08d256dd6e2c66232599e8267748cdf822cdba9af07e36'); +INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5582c2eec8389951652a0e5601cbe21f677ee130ef9ca4c3255556990c8ee10'); +INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d3a25656dbb63eecf1c89820581fcab193d750f3a09ca8ab34a5008c8d89051d","messages_hash":"fa4cc154359abb7e02ad1e08117acc4a0f44dfd338a41401879f2f58b81df711","transaction_count":0,"txlist_hash":"f9a6fb698ab5cf74c1d334f2bc3fc258738c330a5bf3614b8951c6f2d90263a1"}',0,'BLOCK_PARSED',NULL,'58513de44ad80bc3777ae9f55d05fd9494e1f4ea82a59511509dd417b6121329'); +INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57ca190b51e1f381cc0be23ffa13082561017fb2b0f85ab52dc33c79624a6f3a'); +INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"0edb535f8c6a40062a86e4ea327cf7fb70310b6d55a6654d5a23e54498aa3159","messages_hash":"af787c59bd0eaeac32d81ada9454b886cf4f66b72adc9023c159f400a22eb5ff","transaction_count":0,"txlist_hash":"52c64812c82695720461525033471afc39749f788156239b06f72c7887206fa4"}',0,'BLOCK_PARSED',NULL,'24fd33b9a9ada2e1412536d7a6305604ff6ff0942391db999f2d04e02b71f823'); +INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'748da7d236ea5654855e5a2d7fcca23a31313d8d72f90795caf2116dd8250762'); +INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a"}',0,'ORDER_UPDATE',NULL,'b1d17bd28c1420fe576e8dac4834d16ac16599a104f4d43d6c371faf93cdd4e4'); +INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8f3f998fc0d1208984d40efabac802e9854be1a5ce4320955b44e5857d5b80bb'); +INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'16116c000788433886cac3b54439a7107ef1b39c635e2c1963f065a3b73bbed7'); +INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"a9208a1b7f782852d652e5089c6485744031176b4d285ea985bbc1df0ccf49c0","messages_hash":"3797c8af254fdf116c2ea57184f4fc7b7fbb231daaff896ed5f7fe469a626c12","transaction_count":0,"txlist_hash":"4089c5ee6e83c7fdb9d8f0df917268b807801e7f0fb477b6a7fb4b9f931601f0"}',0,'BLOCK_PARSED',NULL,'28b86dc7d067fc5f8c6379e17bac573af409841626bd6ea9951286b94ba3a128'); +INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbc7ff9f9f05204805586eb1ec037422ec4a0ff66580e6a4bc03b8f380c8734'); +INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c8a973eb6bdd28dcab4f1b2a5e29e104944745e57a54e6d87b370aafb2e589f6","messages_hash":"4f37b6d565b42f4868341125ba4aeafe4968440f24f7a0d664de559f93026a7b","transaction_count":0,"txlist_hash":"28e9816084711e62a27a7d33af7a023d9c375d67c6d7dd4fbe840d511d114fbb"}',0,'BLOCK_PARSED',NULL,'10264fee86b70033fe2c4ed9ffb1d3445b915aff4ead4201e8f8f17312e43287'); +INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e730c1ff9b51f4785481e7e0c03141c41f978537d386cd3727ae9381cb50d9b'); +INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0d7b5809b7a5aa5ff854cfe141490a78c9b33e16f8102a8e804dbf0a0a8c0842","messages_hash":"f52105f94398f097af677a8a226c0d9896ccc7724f455b0e7af802e73978dab5","transaction_count":0,"txlist_hash":"37532a1b8cba78b522775b2feabd9dc786b259b49ae54af0279fd84061fcaf90"}',0,'BLOCK_PARSED',NULL,'d7ed4c9d8022dc0a3bbfc24215c03544f1d6da10c5bb375c484202a7eaff0bbb'); +INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88f7d9e36c542c0b5aebb5b2725c9815dea402309511ccb39a3218640925267a'); +INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"6b4c99289086445a7bf575110172a661c1cd37c418b70afd8ef3be0982041f5e","messages_hash":"fb7cb709ab8d862382019c7ab164c561efaa2d43f59f27ecf48e285787e9b070","transaction_count":0,"txlist_hash":"6d74b1faad84274944078e3fa21083b3776e37da614acfc8d61987a1a48db51e"}',0,'BLOCK_PARSED',NULL,'92d4f44330fd8273dfc76fe456ac2890b3d3b10b527a9fb6d0f653f434468cc6'); +INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cf579fe78613b2968a25d77625be9047ff9cb158720006df9a0adf2d2975f26'); +INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"f20b81389b2f4c9c9be4442b3c68f87da881406f1490637c7d93d63539155a7e","messages_hash":"0ebabaa3928858badd8fc0b01d5dc56bc3bd3ff3ba991476f19cc292b1f78e4b","transaction_count":0,"txlist_hash":"246e6cb136a8e79ad87ccc6a2318361c689d4720a9000c1a404f3556dced1bfb"}',0,'BLOCK_PARSED',NULL,'0b4fe9669d02e66e5f0c3e542fb21558aecc782255fbe5ff7f7e6ff5e097f019'); +INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b650eba6fc34195a8b18f669b25d6fe40689993d3f8c004a89687bbabd9c070'); +INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"52d554e6b53b853066a3a8f931fc37779f3596c4388e277a9f66a95e001a09eb","messages_hash":"386df30f2469867e71c1188059e4d40a4b8c3987d613b054e2be27a4ddcd3b5f","transaction_count":0,"txlist_hash":"c4474243bf31bccb8aa11963c477e3d40bbdbf6c604edd86429c37b59d83b427"}',0,'BLOCK_PARSED',NULL,'5375c238e0eeb146299e1c2073f7a8ce5752aa4f4a7b91b6277a84844c383d5e'); +INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a408007e6c13150966fcd0eb16cbae117cefd07e7d3d6e8dd15871485c7c7f'); +INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"08a949af614ff73a79313a5a949908b368efe1f8c131eeeb51ed610baf65ac46","messages_hash":"ed2a9ddc91c486da9f105da77c46deb90df12df89761074296a3e988620b7857","transaction_count":0,"txlist_hash":"791f23628ed99486b93754ee4e7a3717d2deee1ae60d4b80dd79c614e874c94a"}',0,'BLOCK_PARSED',NULL,'bba3783336b784e9c4b9d57fd579c45ed120f27875471fe520da66a45e2ad05d'); +INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a0d10613ff04ca04f8fcd218277e411cf987d6162128f52e72607d23bfe3c49'); +INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"7ff8b2408ee1124a5ee573d31023660aabcdb21599bdcfb4a3bc1895d7910094","messages_hash":"eb475bf5d9f009884f019dcd9cd0ae1164f984f44e440665a219bde18e7b7fe6","transaction_count":0,"txlist_hash":"019a41a08fe760b6ca07f10cdb763ebd41d76a7a458f81023dacd0bb000221d6"}',0,'BLOCK_PARSED',NULL,'06252bddc3ff8d01c6919d990ade483167c0594c2ab9ad73f7195e56f7475363'); +INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9d8a95ff5f19fdbe1ee95912e53c4de4fb40db4f7bb88a6b54c073dbba59241'); +INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"c687e753c01711e94cfcad1f16d2976a12ef5d6c3731c64db26f969c988fe7c3","messages_hash":"95151ef7b552df9b15c4670980ba7dbc3c99592a724f5c5bd0612c5add1e32cf","transaction_count":0,"txlist_hash":"81bf654cee844b048e68c07fdbb561865156f77769d686aba7666d51bfc529b0"}',0,'BLOCK_PARSED',NULL,'11d6b64ead3b0e1abfa36583da25fa9ad300bc0d18fd6462b4c4329f48c8e930'); +INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4b6e25555975c862dc00cbaaaa6cfcf508efa766563ed23b736f05e6e1503ce'); +INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"66f493ec8b5cf8140d1f627f008c50624d3069f56828df90286b53a2d6cbf47e","messages_hash":"007b08291410c7ee35adc28bf2f78a649beda27ab4b247d12312c5e6b696ca04","transaction_count":0,"txlist_hash":"87461d03ba2d32213a73f526b81f1decb96b112a012ada6f9fc089032720798c"}',0,'BLOCK_PARSED',NULL,'f2ecd97e0bce3a68071193c26d131f84a83ebbb3cc33750a267361788ba688db'); +INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'254ae478d0561d99e20d899c8dd87aa55411c497d3bd5efcf62f89d0b97b3ea1'); +INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"33acd319bde452aa81b589435a31ee3add742870a928ef2c15a7a447b4b4e0fa","messages_hash":"dd783e00eb2f3c2f39124237ceca891bf41a332e16573d04c6c61fd77827acad","transaction_count":0,"txlist_hash":"c1fd057575646ab25fc055b10cb7cc9cc4d4d05f0ddbacfaa462fc9ac32d975e"}',0,'BLOCK_PARSED',NULL,'650f4872f8cae630dadd9248a07c6a8ca5dce04092041183128ee395fc6711d1'); +INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e21b2408aebf91827682eabb6531dd54de01d345a970cb45f0b26e2767f673c0'); +INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"83997825aa2597adb0292e265f01e937f621cc75d8cc18e23a4bd0c1fb0920c7","messages_hash":"12730e29e42b6fbf98bca1bf14a7be3a3c2ddd03e9f115c48fdba824c06f3ba3","transaction_count":0,"txlist_hash":"86e036eb2032af487a2c3ccd6a6d8b3073c155164cda4bead96f92da996fd4be"}',0,'BLOCK_PARSED',NULL,'653e9adae96d5c430a99ddb9a249090cb1294236172af1e822eb3825ae7ab431'); +INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2497271d9831f7b0ac38ec324f0d10876358b59e240139bc79aba874a70f6c11'); +INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"9890bca86442f329b2abf1b3bbf4d94e8ab54d10dfa7823a53f02fcfef030d88","messages_hash":"028d29281f54b11cda5f6f90a3354a85026409afff08e9edd46583dffb6706a1","transaction_count":0,"txlist_hash":"a839b90852909b1e21b4461debe100d578abe34e3a46837b444a92db3eab8d97"}',0,'BLOCK_PARSED',NULL,'6235c2cf8fc147e7bae5f53846baeea6df58e4ee89476da0947d6b13bb31f13b'); +INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b7cf554f74afbca1fae4902e80a9fe8bc8fa61f509eb7439d0a2314f4506c1'); +INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"a909f658a8f405ef1f5cd8bbab03cbd865235544ae1c2f4dc20e2a4393181efc","messages_hash":"c2461bf3563184a7588dba4bdf59a119b638186a4c22863b03ac71a608de37fa","transaction_count":0,"txlist_hash":"a55dd67a02d97f49eb1ce9cbdf94b201a0320065e63aaccca1d14fc856a167b1"}',0,'BLOCK_PARSED',NULL,'87739c49214249c0c425aa2643000dfb2ba1e64cb60d8697ad00b44c951ad887'); +INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7985cbb8d85734587a6d9e5feac88084cd244c7e12a24b74388e68f878ac5fcb'); +INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"713d2ccc66a1aa7797ea9b6af18b04245478c7582a8aee76cf2c7f3f3060df3a","messages_hash":"791e1989169a138179403b69b116aac55e68e96bc1bef0471f457b797e59e691","transaction_count":0,"txlist_hash":"c7bdbef0fecf54c6d2f1dde171123487c95ccea2cb80743633a8bbdb3c3b9d35"}',0,'BLOCK_PARSED',NULL,'4bcf9a818dabd7f8979cf63a434d5176689634de4dbaa6357515b43ea9243bec'); +INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0abf73d9b3314714382272dd6126135975172031811b721b6538e08656d26187'); +INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"534500ae61a04841771193d57384d27b54fa2bb92c0698beaa46509b3d39eb1c","messages_hash":"14f919dbb05e4e2fdd99e63dcf3484c4bf0df77c74ac9fa01022e803d15cb296","transaction_count":0,"txlist_hash":"8c7d8f1273c82696c80fa325a3dde05ee4ad5f719f6890b3d93907c91302cf7d"}',0,'BLOCK_PARSED',NULL,'5d799cb1390e359abcded3b1142e25ff8f741788d4527369022079170a2a8cb7'); +INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12f1e7d2729cbae86340c5f8108ae0c357ea360530c08ecccb1a9e37f1647c5f'); +INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"48c8e5d9ab1887f092731ba2881a330d22d4f03f601dccc096fa5147042a3d55","messages_hash":"afa4ff525af27660b5c5be439c0942dee4307524fde940d3ca5751ec702575da","transaction_count":0,"txlist_hash":"4c724447d400c30336cda4523a84f5cfe86849086f98367e5821a0bdddf68f7b"}',0,'BLOCK_PARSED',NULL,'c690faf84899576ed5f4fe074687133bbd3839d30510d88b40761c25cee547ef'); +INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94b80a18e40971642160b0ee5e3cfeb1236503f4f318114d78dfbce4c259e0db'); +INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"6c5ec3d2b7d8a724175559db977cb9ab78eecd39b9239688b30d6d3350cb01fe","messages_hash":"6184eb40ee97b8611e5ca2857a8f3881803cef8e510fa6d0fec5fa2d515ffedd","transaction_count":0,"txlist_hash":"8f0ee591c9f8165289f106091ac0cc19dbaf813bf1134c3ad2cf302bdba0e8c7"}',0,'BLOCK_PARSED',NULL,'cc02253589339a3ba8d23c91423b681f628f0d7eaefbfd7354603204edf837f6'); +INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bd68db3945a695d06547b9fd1bccf0a2d27f13aa2f6c809caab0a33eec06858'); +INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"817dc86594b3820de76f1d2bc2400d702475d558d6ee5bef4313fc154bbdaca2","messages_hash":"64956fab371b4280aac1897543c9de76759512f51383278cb2cbacbcfed6341a","transaction_count":0,"txlist_hash":"9ff934d29741af663537dc45d552b6c01cc8ba577af1fc2ddbbcb7259477bab8"}',0,'BLOCK_PARSED',NULL,'78588850958c73e594a31b4f3368943c9fdfbbdf656bbaad50574b355fc2421d'); +INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18ae6080606fe67cf00121fa21e3f5b9daaf384212ce03991f218e27d7da8c62'); +INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"00916e6bac2f648f953c8d6dff21438a6ec53ad198b33f90667e8d4564e00e78","messages_hash":"c0b45ebf89dcd6dc5b571ce3a8ceb130ecf618c4e6c74f225f2fc5f5852657fb","transaction_count":0,"txlist_hash":"3074814e0ba9b6e99b6af70ecee2f1cd072d760d921d13f04a5064342636da4e"}',0,'BLOCK_PARSED',NULL,'6125d04dae8797478d22cdb6e42b99e7fa8ee3610ecfb18830e05af92183f560'); +INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e8daa861e8c734faba6d43e2d9367cbccfb87cfda83fd90bb16acabf1e8c657'); +INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"959df962b9bc7ef215f1530b886613404adaf81552d6eeb4b1401ea265ad5f4f","messages_hash":"4a3f35fe4b51c33786edba383629ab1f878dd534bc59ca0261750bea101af62c","transaction_count":0,"txlist_hash":"c792d99e376babe180a99ebe9c20a7925a74fb919ccab28a600d200caad6c0e3"}',0,'BLOCK_PARSED',NULL,'a574d3899889a6c97506f4a8b74780b05160640e21a00ca4e8329593463d111d'); +INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16ea172e2be10a6581ee6d9854ad04475b181c858bf983e57ea514407ff595d5'); +INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"d76b639ebddd434e5269de084de0b502e7f0eaff71b4e99de2d4ebdd1fc61380","messages_hash":"bb1a39717ef316bdf4dec41883c183cad1f9338d6a8665b0d2552ace633a332d","transaction_count":0,"txlist_hash":"ca53cd5d8d4e90481a6099af39825f25e7b5325fd586693362d9e7302e72fc3a"}',0,'BLOCK_PARSED',NULL,'2d2a0a1e84bf0ed48be353162bd575de898d7f58cd9f34cdb692753fd18d1ecf'); +INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af92c8784ed07a4c6c5f8d83f911e530bd4e13cf553079bd3318f17ddbc6a956'); +INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"525e8cabfc993080d128faf38a5e5c9e9afa61423a5f20a90d68cdcacc96b59b","messages_hash":"200d3ca6999c079dea8cecaa68e8d9b48c5948323ad290bd7f89ce364d18c1fd","transaction_count":0,"txlist_hash":"1bfbc68852f429756bdfb76508d3f044ecc24704e437259c23107470f1edec74"}',0,'BLOCK_PARSED',NULL,'29a49e8b0cf8c58b657392a81e31cd1d9847b514074190a5edb3ddc2957fc50c'); +INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0f3849a94114aab5e0ae9b305d090c9dd17222fa651387ba7d9a5719be7c33d'); +INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"155ffdc74a2077a3da7d5c068833468c7d0758dfb525a799f910cdb1543beadb","messages_hash":"cf6631cdcfc3420c4da63b7075a28d9565c5e72adc3c22f0080f0fc4d49c9fc9","transaction_count":0,"txlist_hash":"86186f38b173c755554117ee448b6935fd6ec6ca9f464438d659ad6be767d481"}',0,'BLOCK_PARSED',NULL,'1dfef0c2e1e2c2f63e6960c01db4ec6a7442f56b71f19dcc91be56d716e3a75a'); +INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7d5e547ceb79c318c518a1ebaf0fa2b2fed8c619563ca5820239d56d40f332f'); +INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"4f6fe786e34af90927bcd888b4b2a8fc69d3ccdfe4c4bb37edb2007901ce234a","messages_hash":"4d9220efd11b061df66519062855512842611bf9ead1ab64329867618c07b372","transaction_count":0,"txlist_hash":"822b518b20b4f136877f2dfb4f4a9299a4ef7c26441791e986677396405ee03f"}',0,'BLOCK_PARSED',NULL,'2acb7c102cbb6e42a6d8df8928e707a30af29da8c7ca68456c5a2ad8a3e4cac5'); +INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b1f1eb1ae481ad015118d1ee5135317eb7db647f83a80000c7dced3f0f465da'); +INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"30978d87fd8e32d9d27c92a0d4ca19d179b515ed95410fa96bf496b4cd8aa5e2","messages_hash":"5bdd0005be4ff087a59a47b56524694bc090682f28a5f405284fd42d91f2e788","transaction_count":0,"txlist_hash":"79032221c81d77f7dd7e35d46a314b21b17df32357b606ecb7402e5976473b19"}',0,'BLOCK_PARSED',NULL,'8b53d7f901400b1dc86fd248da24138c3bad99943d96a9bff6dd39a79fdb594b'); +INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c141ea5a36951597f4782444340137b5c396a44ffaf9ca11a45d946000330e46'); +INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"a0760bc5d2f04b381cc46aca84aa3788e8e3fbc833379a26ae812807d3a04fc5","messages_hash":"8c88f57aeea0645f5eaedd65c2a30f7b731738fa61651e2c97bb5fdc927eb9d0","transaction_count":0,"txlist_hash":"8f56034a75de70a679a8bd2515b5982dcebc5b2a6c468203ee8922f7e12aca4f"}',0,'BLOCK_PARSED',NULL,'98899c71d25f00af8aad71f8159b4226784f17b664dbf8f377bbe76be42401f4'); +INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25d7bdcbe37ff60bd8467b7057c43764a2b6fe7603c80f8f12f400153626a52e'); +INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"26dcef9e54b1a34b6024f8402ddebb6e9449cd90c270e3db75354a001484b1a1","messages_hash":"2d788d58e6eceafbaa9ffda09c9f8a81b76961e6e294c4e06dfb295a12c27360","transaction_count":0,"txlist_hash":"d645719f82c5029a7fe5eba356e16c17eb676e0848ac2e03b4d98df0106ae95c"}',0,'BLOCK_PARSED',NULL,'f9c3cd1e6eccc43f1fe57188a9af76a718d0354144f3d624df54d857a78a9a46'); +INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd12d12206bd11b4bb2f383945628e61d270107bd8a1b71da5104dd9b6a8dfeb'); +INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"810ebcdb63a08af5a26d1fd4e7a3604afd03bd06ff620d6a86c665e1c81116d2","messages_hash":"dcb870601f79832d84e9c22b66eaf15e86b1ae25a8225d6bdfc75893cec5f76c","transaction_count":0,"txlist_hash":"de75a174069eec13deaa318cf1429ed15d775816b7ffe6f46c7db0e252584271"}',0,'BLOCK_PARSED',NULL,'50984a14135da698d4034a2604846ef846b4a3e315ec426d7d7b82dc5161a5c6'); +INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0eb62389f4ee372faa68205e379000ed6f634c564667f12ce6af2464643ceba8'); +INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1edfc24d186c7e7267b11c03b0a29e57926e9ab25f668231a18a499cbd08c702","messages_hash":"a4924b34bc071e885842f09a237e1806a27505fad63917169693d7e441e694e9","transaction_count":0,"txlist_hash":"4f5fb29442a7bfe7928dfd0a30bc730b2ee0a0bfee963e20f8da2eeb0bc3d6d6"}',0,'BLOCK_PARSED',NULL,'20f03700aabbefc3d74d45dcb62444febfe25f7091dee5db2874e9ff015910e4'); +INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'660b20c97cb46b22a73b45abdc136164defa2a65ced5e2a2872fc86f80a22a8a'); +INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"b0de9503f019c9548a97bd198e6b1b58b57d6a7c231ace2d72adb0421b29e9b7","messages_hash":"61f97ba2755921992ed5f40ae346c021aa592f29b3a6f978616acb561fdd12d9","transaction_count":0,"txlist_hash":"99f2cacd3f24f7f8cf40d0c6a3c50413a243d886a381f432dc4398b06dd0003e"}',0,'BLOCK_PARSED',NULL,'081a449eba12cfc159ea44331210d91d66bd0cdd89d7df4c4e44fcbd2e6caa79'); +INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c7d71c7c202e61c708236fdb945d04dd699bca88d667158c6f89858b11c024a'); +INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"62e41caff168eb4b15eb67ab2130510ba3f17ac186f8516cf5b5c6f168988345","messages_hash":"02cbcc05757a4cd3ea2dc3fd1637b721c26010816602e38dcad980330a95c884","transaction_count":0,"txlist_hash":"6436ea453d46084d34e4af17b844a1312a3a3f0d95234921dffa50c3bb86a8da"}',0,'BLOCK_PARSED',NULL,'6ff185d2d02f155752681c416fe18b634acc01c6fe1294a51dcd3e1197609a77'); +INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5f8690652d66306159410dac8bcb5e0beac4cb7b12d3c0c31ca6b34f3682d67'); +INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a444b1535d27bb2917478019c4c59abf9474e87128f9ec1e44c20eea1f014f3c","messages_hash":"b2714f97a9e8d18abe73c1b94b86df860e69f43acbf814eac77eea1e42538214","transaction_count":0,"txlist_hash":"4a7b7ac0f91d282190236dd238b33f7b76b40c1f5151c25117d7fffe014a1995"}',0,'BLOCK_PARSED',NULL,'500b5ecd3407541990892324734a3c052792747a75156b01ce7706c0447c361b'); +INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf0df09fdf9f93b9339d82df8777703925c87dfecbacdee120da6f3c5b46f005'); +INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"0ad978671f587f99e5e1c1b6f68ac3d18bb03a3bd7ea9afb63590bcef25160c8","messages_hash":"8f8dccbc6b058cdc0dfc37d7952f57fdfc180a8e62f100fe258a0b81db789455","transaction_count":0,"txlist_hash":"a7373340d9f43d4256f8a9063b32c415ca44e5964abc500cb3daa631ab92a311"}',0,'BLOCK_PARSED',NULL,'8c6ca915f061099830aaf02dfcce09cfc8ea88be1ffb085ed21d8671ed72c76f'); +INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a209469cf68396548b42fe66677ef39821393d03bd302b33ea3d6faf24e8bfaf'); +INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"a6bb36829770b24fa0b960b85566a0138360a60b52cec62d94d7df8cb0b8f8b4","messages_hash":"d710b3ed96f543abdd29c33a705cb3cc0f3148294253fa6d04c099f7294f3e3b","transaction_count":0,"txlist_hash":"3f137eaa77970ba242a8bd0709970f7045ae79ca9f3cc172882577ee3ed34e9d"}',0,'BLOCK_PARSED',NULL,'f194dca0467b54af582d9a2f33aad7a02855d341b546af57a352d5d698632108'); +INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ddbd66a669e3fb8d99817ff95070a8afe641dbb009b2ba7fc8130570296c501'); +INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"9b8ceda9b170429d8b9ed517f0db95487b3058397e20d7e786577c8e46b389b8","messages_hash":"0238bf1e7128dac676be198474c8beedd5e6027a401beb6dd0d13252ada4cdea","transaction_count":0,"txlist_hash":"a8c54e9c41e6d694d38a6cb9bb9cea881609c013ef9bf4909fbcb0090168e263"}',0,'BLOCK_PARSED',NULL,'4dc081a1d7ef8772be13164fe92e321228587720c068f556a3cf0393c5a6bbd7'); +INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'136aeda3655dc85b92a8b694858cddc840de662810dd4087385cbdd50add319a'); +INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"cee2e41baf86f1af24d555e9ab4a0c023b5f1ab2b054707d4434b4f60d31862a","messages_hash":"b2cd4fc907371c5b6152bf29dba1876bd5aebd9fcc82da18800b353889336c90","transaction_count":0,"txlist_hash":"bc2a5bfc7f1a8181b7b04970a8287b498f096bc08acf106f6a8e0a0ac5ca3723"}',0,'BLOCK_PARSED',NULL,'b474471694789793f801a73596c74ba0bc881c2167200c1aaec3f12113b0ea22'); +INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec78f0ce9fffa0760c0c5cf7ce34d5684481cd57917794409d34856e3bb8d1c0'); +INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"cbfd7ff728f05ba3f1db5972f1449618a79d3fd0d76bf7fe990aed2eb2316a38","messages_hash":"2e148d243956f9e14d19ea77a9952523da903bf334c38c92f139ee754e9fd351","transaction_count":0,"txlist_hash":"73e3b8838f74134d3db985de53446f88c3bb86a8cec53bf773c10dd89fc2d709"}',0,'BLOCK_PARSED',NULL,'2cd51598d82a6368790649baf3a39e5bcb30ecb730c1752e052596033ea13799'); +INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0ec08050dea47cdb008a8c0e6b5d28909b6d51fe6727a8f393f8efdc671cc3b'); +INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"9af85cd995c83b5a5f0cac66351cabdf9dc9faecfee080638fc76019663faaa6","messages_hash":"de343e3e689d5be0b3a6b79c0bea40ec8852d95bef06490292a6b9a02964a3b1","transaction_count":0,"txlist_hash":"5e951c9dc5201f32b7e8b9e72702984a2ff13c011cec35ef4ddbcf5b1e7e3111"}',0,'BLOCK_PARSED',NULL,'064843152bad39d41e40e3525ec2f186411d1a63dc64eb9b56edc1f92130094d'); +INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e653409af15899f813e0dffc9c5db67c40678c4adee928d5635070bcce8d45e'); +INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"a3c547e84db6b29630b87fa566e37796e0632ba616dd6d521d558632c3b55370","messages_hash":"72b9de8c4b8c6dd78cd723bfb097a01a24e9c777abbd556fd1c0b77bb2655d06","transaction_count":0,"txlist_hash":"c72261d02c311085af66e2c66b8bcef2833d05716f067de2327442b92d219adf"}',0,'BLOCK_PARSED',NULL,'3f0f8e8c59b3d566059d17e9553d0c01391e2d2eb02ad2fecfcafdd605eb2f7e'); +INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'840ea806a9b6fa7122d9e78e6905fabf383ce67fa5526cea0aafe18596ca09a9'); +INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"a0170d8a72a0f8642c0863899bf034e754596e3fd8ddffefa91e7e9a7addf944","messages_hash":"65caf1cd027b27bfab54fceaf2c9c5aea98692a53b869af4c4d704dd12ccc6e3","transaction_count":0,"txlist_hash":"df4f5afac7aa5bdd2e580979d13c750f4990c5f7e8dacaec6d751f4b1e3c690e"}',0,'BLOCK_PARSED',NULL,'da3b5a8c4fbb98a2fe832eb65385622ce80959056571cabf3887f050812492fd'); +INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3645fcb712abe0fa5b12bfae32eb9b767feb5c8a931993dd6109863685488a44'); +INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"e0179a21342fcf35fa169567f1ef35bd6b0b1b048a98e90c049fdf3ee58e9da4","messages_hash":"d0bd95b8f585933f1a8e281d6e8ddbad8151805174408d4a2aa721a84c8033cf","transaction_count":0,"txlist_hash":"c5cc010dd34b520a733ad2e109b4b2b8cc84b48e412c43ac688a57f99147c164"}',0,'BLOCK_PARSED',NULL,'427d61039885e3a4e9fe8411d24b877254b36d6446efa22e627e52b9d87176d6'); +INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2294423549c6e1c3ebb2330a578f5f11fc9c6967154c882bbeb1ff8af698c98d'); +INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"8855ace296b0b078d90aa24fcd30ca9f9cccf9d3961f3dba4985a3ff187a02ac","messages_hash":"6f737b21a2d96a41f2cf7e193562228fd7985b96c5c6bd3413055b34fe9f8fd2","transaction_count":0,"txlist_hash":"eac5c44840751fb1009274a20657bc544e855ff1a49533c9fc43c0b6e66b7402"}',0,'BLOCK_PARSED',NULL,'19d7b105c01b9bb1f2391e8adbab51d3f18531cd82cd4ace2c62f14430543514'); +INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ad856506d2fda2ba54af5d4de571ac625e54cd611b04f4ef7600c93c1c51615'); +INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"bde3a6c6cc31b96d58f466d3ce0361cc6366c8c239778f21b696d4063cf6d89e","messages_hash":"a37c1c8316e7c539e0611de48e18c8d360e73d2de09f709f478768d3fa8e8222","transaction_count":0,"txlist_hash":"40cde00e42632bcc0477dc071b9acfa0745283dc2a9d2d28e230f939832abbac"}',0,'BLOCK_PARSED',NULL,'eea261ffa74128863fd79b1ece7166a41917d0671d916e88b877ffad4791c482'); +INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eab8b3036345d2f7cd9e88b7d9fc08ee157b7fa2b4911e3c8ba8b17e9cfcd97'); +INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f562851b32a7005ee02b9e2491c0195dddce451e8fecb428209d087e69345303","messages_hash":"fb3aa04578b77c4c715666fbd453ec097443a9e30acb800f4b7b75a79967b99f","transaction_count":0,"txlist_hash":"dc3ab137a2d7430196ec3d25456e09e8e63d815c8e4b246e95e7e63d4e3a9c75"}',0,'BLOCK_PARSED',NULL,'648fd1df1a4d3e52d1d80505f111a98c2a2e3d9fdcac55722696489cf20f93e5'); +INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5de0d132ef1e226595c02bd2482a2e4eda71a2910407a9f46f92c8495439cfe4'); +INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"996cda7b65e623747deef936d61491cedd0159f44faa1e3536de1b6d6c474097","messages_hash":"4f075ae9061dfc1ff52f719017d590629eede42aa45957aacba54e5513e47be4","transaction_count":0,"txlist_hash":"a957a0c28f2a0beb967ef0ac9519e9207e37415af3018f1a5cb998169f3b6005"}',0,'BLOCK_PARSED',NULL,'4a5a06090c2b167155e399bc5ed4fd4d8255c73651171320a74ad1cec972bb60'); +INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16d01c83edbb1d7a232a8ec980a7220cf8d600844cfe43b526237829adfb5c18'); +INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c8286f73cc3a070f4251b7c59bb485e611437a1916fd39ffac831dc78df54ecd","messages_hash":"8ad41558220717a679e7f6af9cbd1e9fb3646fb9566fa8fae8e340d199b4ffb1","transaction_count":0,"txlist_hash":"3cf1b57600853e04513ad74089e344f9e5af742e1d4aaad0c9e51c0ebc6e77d5"}',0,'BLOCK_PARSED',NULL,'3a20295b1db68866f21bf16b8f942a7c00320ebb05a55bbe5d8d9a59696e28ac'); +INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'279503ea3e2db104de737f1005174b2cf4524e720f130b2bed71ea6c4ab6cbea'); +INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ef9dab42700918027fac849f2088d2248a6291dc7bc24be583b556f37739631b","messages_hash":"2d22ae58cc40767ffca461fee1a2317d6b5b0d8156f188b3f8589e688ac1c643","transaction_count":0,"txlist_hash":"6cf1d5147d5c6523c275384d404b4f7a750dab987def5846979bc5d14233a44b"}',0,'BLOCK_PARSED',NULL,'fc0f1e7028880ec9ea7df68806b0c5c5da8b8f207fdc68f136a98c2dee40f935'); +INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c39605d6d88491897283563d7ea8c58cfcfca434e58dc53dc1a5e0033b9ede2'); +INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c6bbc52f1e8f907b2d66378f4352f41ae3d354985aaab5f16d737d75a7e6b1d8","messages_hash":"358e0f793128f8d5b52594bb96a8ca652983d4e7aa7c008982871a2c9a662a0d","transaction_count":0,"txlist_hash":"091641bdce3f527a8a3da393068fca3534e8209fba337b7b79bf22f2a6bc5dec"}',0,'BLOCK_PARSED',NULL,'d3e50baabedbcb490de618f09c409ab918a08562187e16f90151fe022f6b8bd3'); +INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47072145661758cb9489174ff6e691e30f2c1cc4406b4d94d7f3696ee15c294b'); +INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"66f7b7ff8f0217ed62938a5931d4a6a232546e5d58e09dfd3ba5a792c35fa560","messages_hash":"9213e075e5567446951f60b81c68f9aa28103f4259089eb4d2d9b0697d52cea1","transaction_count":0,"txlist_hash":"8a955c5c1a5c9f8c82553803172cc961e61b2e2e19b9c87cad6dec24512ee351"}',0,'BLOCK_PARSED',NULL,'5288157e7b02dbaea56afd9ed5f28c33c32db0449305de4b34d17499797b75cb'); +INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a57d9f400a9e8380e92fa8f05b1213d51ce6fe9e33c0452a40fab60ea1dfcf2'); +INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"2b26c6d901ca9790987331432372046d9620d10ea163f4824208d6b23e8e7a35","messages_hash":"1c9ee3bf90abda5070a18d70ca3e1f99d3a2908bd839bee7d96b274752ba0ef7","transaction_count":0,"txlist_hash":"482bf498868976d12ae17fc38bc847d8c7398c96fad5df9f1d2719197fa038e6"}',0,'BLOCK_PARSED',NULL,'c3cf684d8c64e34521722127e083738ba65098179a8d9e48185612e6f4ee166d'); +INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d52f34c92f5204cc38c2646c4ef4d32d0cff8c2e51a0cfb884a9713416607249'); +INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0d6d774dce93e94e870835005b0e8b04f010fb25158aa69a0fa0321d1577e987","messages_hash":"4c3832a9b25722b0625440a92179d691b3ded6a2db686496bc5840c9fd5f6b53","transaction_count":0,"txlist_hash":"ed1021dde8c16263483f3a50091a2df2105977a7aab9217b78af58833433853c"}',0,'BLOCK_PARSED',NULL,'4e85acb9ffe24042ff78809e6e47e2b8bf7cd9d16540a2c3484f09515fd50203'); +INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4925c22201e06847749f37e412368fc0d8b6c23ea107effde365bad7e708a10e'); +INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"9dbd171e3606b1662f6b576339b1e9aaa3da8a9f8a246bab905af255add4a762","messages_hash":"f49dddebdd143ef18c4fc4158174b5958b765674ba36d4014942c65d49fd87cb","transaction_count":0,"txlist_hash":"e5ea123c86cd7147d8cd8d9866006e1da8528bb32c8005a998ca9f6ee917c2ba"}',0,'BLOCK_PARSED',NULL,'ceb54f8cafcd7afaba021a87939bf62bb9421bc907143d3b2c1682e7da9b6005'); +INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e44e08b259f78cb3c2c4488a6bb82a7253484ac496d930528b58702775d3ef42'); +INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"db67b5dc6b0c0ddec22d0e716b72aa8cb6fa9702316f2a8e12659ee229094c16","messages_hash":"e2e65b074fa6f18191edff93fc1baf8c7f396ceedb7e588b177ec2918870c2e2","transaction_count":0,"txlist_hash":"a25387e650e60dbb003c5ef16c46a8d8464013d81bdb49508c2935368d4ae9c0"}',0,'BLOCK_PARSED',NULL,'2893f6405d2aeb4c1b6dac8708a19acc2d15128c7a299aaeba3c4df5dbfe1420'); +INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab8ff907a4698c45b9cdba9931ca0a27dc6fcb3e8da03c282551cd1ed56450b0'); +INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"7cf70b5298dbb36efbec2fb880b76e2514e3bad9d5200875fa3eb3ceb7719ee8","messages_hash":"0b06c5b690dfa0169e9ce1026445588675ef1bd81e2ca5962a1271a41000a8ae","transaction_count":0,"txlist_hash":"f5028a37d6395b533cf60e6ce9f0bf574a0a7beb2cebd2f545b5183e5362aaf3"}',0,'BLOCK_PARSED',NULL,'aab1a1db78fccc70da8a1e336586cfc2400613e49293e2c23c9852efe9ad9b96'); +INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb3403dbd0ac0725ce22c1c243c35e5e73cacd650a0c47c58011631c8a7a1d9a'); +INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"27106f400fe1ee93bde42f3bf3cf39737fb856bbf0df3f90fe0838cf7d38798c","messages_hash":"31afbdc9419f4639cbadc95cff2d0760443f001ff10d83f972421e0ff3a5a5ee","transaction_count":0,"txlist_hash":"f336b56eb2aab91aaacef9df8159627bafc67b497482abcec9ad6786710da7ec"}',0,'BLOCK_PARSED',NULL,'94f59be9a3c095d9cbad48ac3441df93da9bfbe50505c34609b8efa5c53ca4ca'); +INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b52b0f47a3f3e1652878a9c6fdb8bc4a94cff382e44aaf18c1e53ddd63ca486f'); +INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"28c9833eded6d68967f206e5884616f83bb9ad16b9d7a507031b96480aecc799","messages_hash":"2491241aa4f6bd7886487e70203c6b031961193ca19a01e93db40c881bbe5e42","transaction_count":0,"txlist_hash":"c51f9cf9cd60f836bf4ae7ee0cd982829f6f7cbb2503eafef3bb167a285cf9a9"}',0,'BLOCK_PARSED',NULL,'8a916ff76e635082e88314a80b194d56db1e677e14904df0ce03032512e6f45b'); +INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe52ed521179141cc362b3840ceb7ed833c44b49bc057aead63855182f4746b2'); +INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"cdac6435934ea6e67a311495325c85237158ef30c009ea44c562c2127d79e696","messages_hash":"eeab3c5350fd25da1c2c3ba0458d98e078085ae5b0d09847b76fcec2eaee1ef1","transaction_count":0,"txlist_hash":"b6749729423101ee337b7fbf0362191ba34102f01db03b225ac0d6c52de2a6fb"}',0,'BLOCK_PARSED',NULL,'2d76f980197b5a248ad51398447762bd7e961a07ed2404971ef7a141e2695660'); +INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dcd1b1a1a740abc9d1fc9e114751469342626226adcf55465eb4ae00a65ee369'); +INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"cb33e420348e7969a2310445a6c17c79e647d3c6f3106d4fd0c0a1249e11ed6f","messages_hash":"13d15e51975d5a0685af16eacc17328a1115ac2aa2cdc5bb35fba39968f599ee","transaction_count":0,"txlist_hash":"544bc0db1dbb1d22a05e5f81de7520ef990df5b897b9f9e60d98f102fef86568"}',0,'BLOCK_PARSED',NULL,'624d47820936084a44f79cadaf457e0db10c5bb28db23e18967c46ee1a3ba56c'); +INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2497d339ee6c5433cd3ffe72e02ccac97a163af68e7658d5731e5ad25ffb35a9'); +INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"dda2531cf7db78a3f27c1ce70189b3f6efb69ddd24b61639f9deff42566bba2a","messages_hash":"fb25447214c4607f8c4d660c5a3aebaa2f01b01f0b64a60ba8f0bd8ae92c0703","transaction_count":0,"txlist_hash":"217908d5688f0d9797f04ee9c3cd03ae93c20f4e5801fd809d3c37154e55b7b6"}',0,'BLOCK_PARSED',NULL,'9d9078a529270bf314eef24b64ff60b39cf020beb4c2fc902a4bbb739e5cce17'); +INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9020cbc338dd8508a552551af3f43ba9735fb98fdda9b5b0f45548e2d91eee4f'); +INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"9ca7d9e1da0c6e4465d9e1c76990b6c48e62ee3a0b3b83189dc7a0f2c03a3006","messages_hash":"c65d8cf66c9ce0c8302015f05b85bb05cf2e6aa76bd5088b1a62d02946bea13f","transaction_count":0,"txlist_hash":"6e31995ac19f2ff3fdfe5d2ba7a49f4b018b132d2aae92a4c664a97d6a6b3b6b"}',0,'BLOCK_PARSED',NULL,'68068ace77a3fcbe9e18a91cae83f694c40c794a44b3133d2cfe398a5423c078'); +INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efee5c2780775edeb4abe08d3c5f6b453575508e0cbb33ecc7cbc429610a1d9e'); +INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"c6fc005e874909cf0393ac1bee7267f66cc5355c549d8657234a0ed6b429c869","messages_hash":"9b9c7f49cf432ccd8b987732e346d336a02567b1281757e04bd30be6810cd65d","transaction_count":0,"txlist_hash":"d7d3f23d0014f40f3ac6a00fbb59e95653d22e11360783fe4116be9ecf360149"}',0,'BLOCK_PARSED',NULL,'85df9f717aec3e05302e57a26fc61ab34f745f7a0e7a922ec17ab2ce1d0e7119'); +INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4ab1d3335c46bf3d490c855cdcc2531d3c426d6cbba8a04427829bbf8c36dca'); +INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"14dacaec0b37ca20f271e500d0ec1837a63006eb464728c067107738ad3167c6","messages_hash":"300d1f4b6299d375ec9e649a12efb5bd019fe3e3f6ee5690bd0f4e5b02720862","transaction_count":0,"txlist_hash":"7a1a9bf5515019b99c1c35abaa4a2003c6291018e090c26ec03c5c951f853f82"}',0,'BLOCK_PARSED',NULL,'567272364233519b91363308feaa3e4c1c2fd702a61fc9b98ee35f194dd9696b'); +INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d44ab6fcc44912600a5a9158ff6cacb047685326a58dfbe905192b81225e7030'); +INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"05bd680c082185147e83785e7464d8890908d1550359b4fac79018b510475e01","messages_hash":"ef704a263dc83acc2baa115490d248093d829fe0a2791a0684fcfba67e271c5c","transaction_count":0,"txlist_hash":"40b9134941fbe6312e3a7dca4b1f5114c3b7ab73f6ab84ba96aa101097111168"}',0,'BLOCK_PARSED',NULL,'b3aec8d401c74eb18e54ba369a638e07cfcf244ca26fcbeeab2197688ed8f2f1'); +INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63c943adae6f24d5433a9e9107b185ca9f61f0e76bbb88afd536cf920d67fcba'); +INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b50805d750ebd26f8dbced919948118f1f97ce7d117aa1760e7a3c4895f51e13","messages_hash":"c5dee874fb1870dc8cbc2302bdd7b7441444ea1687894885cdd7520e9b153182","transaction_count":0,"txlist_hash":"4e1fd0382baffd66852d64c667941808ebeb08a17309ccfe91be8e16046ad266"}',0,'BLOCK_PARSED',NULL,'4f9954b6ace4a074a2ef4498aaa8a98ebfa0c070be9a2aac3f0e04e4491b6165'); +INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c545f1adc0b44513a8159a070354a5381b3fb92c1bf6ea45683043d81d46869'); +INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"dde96405c241e1d57334670e4eff7ed8db92056e6867cae10475a9bc30ba4619","messages_hash":"7bc6441d01d6fa7c220dea4137853f22a95c2f98f89a168f799c443417bbe99b","transaction_count":0,"txlist_hash":"8e635d69a6a40df5c3849e1811ee551c32a57a3496fe8e4b97846b9592a9ebde"}',0,'BLOCK_PARSED',NULL,'6a7b8a31ff16296b880c403800a77d3832e6ca0d0c51509d6bde123b78229d3c'); +INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad918ccab62ebc2ce7229b6622a3fb5689204d3117ebab2a4f9f84d33fa6fe89'); +INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"613d78fbabba246a4d1cd9d50317e732795a59812df8395472347e15cec1ee9b","messages_hash":"1d990ec79e709ede24d72552031326b1318f57b380ca441355770b4756250e04","transaction_count":0,"txlist_hash":"c96db41449a579ffc6b459375569230e88bdfd51c10578c60f8d252eff630fd3"}',0,'BLOCK_PARSED',NULL,'6e0febb957b8efa7ac1358fad29066a30407a50a19f0ad77cf236a01e8913abe'); +INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5e22c7c2173bffa847c789149d6e1fb75860b5dfc52e1f1636fe2ebfe716899'); +INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e535ca5960d2ce7508bd2157dd0cac3ea1f9ab14532a40884d522b4bba0d4979","messages_hash":"8bfd686aaff55db29f667ad50f1c7dab1f5006f20f0c3fe5a8627909acd36850","transaction_count":0,"txlist_hash":"710369d2e677643b7ab8f2bbcebf0f13017052ff7fd9adfd6ffac4e6fff83f8c"}',0,'BLOCK_PARSED',NULL,'dc63d9fb5d196b9b47e715a029300d162389ab6b9a7457ad4498bd7274cb856f'); +INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b8db23762bc50056e0739ffeba6e00becc6ea0d4dae633bf2e92fc8ccbd2a42'); +INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"970865291b7a6d8173d6ad2ae97335cb2e89d80cbbb7a79bb2328cf6c67fa6cd","messages_hash":"c339c9ba0fcd3143316610a40c58c3beddc6e3538564eff6e3753363372d7f50","transaction_count":0,"txlist_hash":"9deae420c2b87043e6e18db077634a1d65ae60b38f604ce56f0899ed3a561347"}',0,'BLOCK_PARSED',NULL,'1596848c8837dc99befcd3297c8744627fb83499dc87796cc0a5c69eb39bcbf4'); +INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a6e8e5c1e4d265a7787b384afe4ac657271aed997ffecc8c814ac50cb4e2590'); +INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d","messages_hash":"a2c1bad71d57d8cbf740a32e9d614704befad2c39be157e202d6d6c852eee51a","transaction_count":0,"txlist_hash":"4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c"}',0,'BLOCK_PARSED',NULL,'70f954d2262baeac91870775d2e8df45c10f930e6442692e86d935fb63cb47db'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index fdd1c8f3ee..ddf12ae30b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -754,70 +754,70 @@ CREATE TABLE transactions( utxos_info TEXT, FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash), PRIMARY KEY (tx_index, tx_hash, block_index)); -INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0'); -INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1,'ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0'); -INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1,'8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0'); -INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1,'197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0'); -INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0'); -INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,'2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0'); -INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0'); -INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0'); -INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,'4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0'); -INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0'); -INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,'8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0'); -INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1,'ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0'); -INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1,'07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0'); -INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1,'1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0'); -INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1,'a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0'); -INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1,'3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0'); -INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1,'698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0'); -INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0'); -INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1,'903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0'); -INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0'); -INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0'); -INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0'); -INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0'); -INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0'); -INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0'); -INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0'); -INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1,'fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0'); -INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1,'0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1'); -INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1,'698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0'); -INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1,'c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0'); -INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0'); -INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1'); -INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0'); -INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0'); -INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1,'a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0'); -INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1,'61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0'); -INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0'); -INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1,'bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1'); -INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1,'2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1'); -INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0'); -INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0'); -INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1,'66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0'); -INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1,'147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0'); -INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1,'dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0'); -INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1,'34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0'); -INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1,'01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0'); -INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0'); -INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1,'1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0'); -INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1,'968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0'); -INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1,'2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0'); -INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1,'fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1'); -INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1,'0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1'); -INSERT INTO transactions VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A46524545464149524D494E7C7C307C317C31307C307C307C307C307C307C307C307C307C307C307C317C',1,'3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1'); -INSERT INTO transactions VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A50414944464149524D494E7C7C31307C317C307C307C307C307C307C307C307C307C307C307C307C317C',1,'63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1'); -INSERT INTO transactions VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,5575,X'5B46524545464149524D494E7C30',1,'fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1'); -INSERT INTO transactions VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'5A52414944464149524D494E7C7C31307C317C31307C33307C32307C307C307C307C307C307C307C307C307C317C',1,'c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1'); -INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6675,X'5A51414944464149524D494E7C7C31307C317C307C35307C32307C307C307C32307C3430303030307C35303030303030307C307C307C307C317C',1,'3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1'); -INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0'); -INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1'); -INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1'); -INSERT INTO transactions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'655843507C3130307C',1,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0'); -INSERT INTO transactions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'65444956495349424C457C317C',1,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0'); -INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0'); -INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1'); +INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0 2 '); +INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1,' ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0 2 '); +INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1,' 8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0 2 '); +INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1,' 197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0 2 '); +INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,' 44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0 2 '); +INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,' 2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0 2 '); +INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,' 5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0 2 '); +INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,' e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0 3 '); +INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,' 4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0 3 '); +INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,' 70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0 2 '); +INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,' 8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0 2 '); +INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1,' ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0 2 '); +INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1,' 07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0 3 '); +INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1,' 1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0 3 '); +INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1,' a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0 3 '); +INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1,' 3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0 3 '); +INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1,' 698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0 2 '); +INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,' 1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0 2 '); +INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1,' 903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0 2 '); +INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,' f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0 3 '); +INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1,' aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0 3 '); +INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,' 9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0 3 '); +INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,' 4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0 2 '); +INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,' 821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0 2 '); +INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,' 9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0 2 '); +INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,' 3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0 2 '); +INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1,' fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0 2 '); +INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1,' 0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1 2 '); +INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1,' 698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0 2 '); +INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1,' c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0 2 '); +INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,' fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0 3 '); +INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,' 3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1 2 '); +INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,' 2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0 3 1'); +INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1,' 7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0 2 '); +INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1,' a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0 2 '); +INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1,' 61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0 2 '); +INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0 2 '); +INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1,' bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1 2 '); +INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1,' 2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1 2 '); +INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,' 6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0 2 '); +INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,' ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0 3 '); +INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1,' 66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0 2 '); +INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1,' 147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0 2 '); +INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1,' dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0 2 '); +INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1,' 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 '); +INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1,' 01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0 2 '); +INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,' 55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0 2 '); +INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1,' 1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0 2 '); +INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1,' 968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0 3 '); +INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1,' 2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0 3 '); +INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1,' fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1 2 '); +INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1,' 0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1 2 '); +INSERT INTO transactions VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A46524545464149524D494E7C7C307C317C31307C307C307C307C307C307C307C307C307C307C307C317C',1,' 3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1 2 '); +INSERT INTO transactions VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A50414944464149524D494E7C7C31307C317C307C307C307C307C307C307C307C307C307C307C307C317C',1,' 63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1 2 '); +INSERT INTO transactions VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,5575,X'5B46524545464149524D494E7C30',1,' fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1 2 '); +INSERT INTO transactions VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'5A52414944464149524D494E7C7C31307C317C31307C33307C32307C307C307C307C307C307C307C307C307C317C',1,' c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1 2 '); +INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6675,X'5A51414944464149524D494E7C7C31307C317C307C35307C32307C307C307C32307C3430303030307C35303030303030307C307C307C307C317C',1,' 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 '); +INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,' a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0 3 '); +INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,' f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1 2 '); +INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,' 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 '); +INSERT INTO transactions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'655843507C3130307C',1,' e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 '); +INSERT INTO transactions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'65444956495349424C457C317C',1,' 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 '); +INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,' 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 '); +INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,' b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 '); -- Triggers and indices on transactions CREATE INDEX transactions_block_index_idx ON transactions (block_index) ; @@ -1326,1742 +1326,1742 @@ CREATE TABLE messages( INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9'); INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0'); INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5'); -INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":"e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0"}',0,'NEW_TRANSACTION',NULL,'4a87cc49a20843c26b1df763f3ce6b52d59ed1c028ac6c36a1d96f52bae51b4f'); -INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','885ebea2d49f4a749882f86e10e9b21fa6abc1a52e145cf510b39f1aec3bf6ed'); -INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','60ed070dd6d08a8afcb118fca013550daf8919696f16a8830e8184536c5c92b0'); -INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'d4cf8a624f76c044302f63aba8daf9799694941ea251bd7a39f88954bb411315'); -INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c40adcd29bd386c6971d1826236154e7272070e3939aecaa73a5659eb39c1b5b'); -INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2,"utxos_info":"ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0"}',0,'NEW_TRANSACTION',NULL,'965afca74493b295ca82e11e875f58c913fea311185bf15fbdae93851d9651ca'); -INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','dfc0b17fa4a97e06afccc87c24fbb7b2ee9690de70b3739bd570cd4ced5149a8'); -INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','3601db0efd870070245923a53e4103d25bac7ea07aec0873967ce2af7c59e0d9'); -INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','69c133f7b7135486ac7ee00edcb20ced09224d33b74ce5dc6b1dfa6476b625b2'); -INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','81cd8e7e7c9a522bbb5edeb55fcb57f69777f03724c212b82fa372c1a4b7c7f0'); -INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','c59cd5348a0e48274981749db99d617a54187b29e054c0e4e5e71ecb75d54212'); -INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'d431ea5c36c8281924eea675245c1a57bf6e7627bac0bf7de1ae202e6ec18026'); -INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a732ea775c3074c37c07538237a921cfa12b99981c1fceb7ed63560f5503c8b'); -INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3,"utxos_info":"8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0"}',0,'NEW_TRANSACTION',NULL,'c623ecc76935dcb8986103a8c6590e0bbc401223ba99900fcf2b57e61bdf8e13'); -INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','773f817e9ea734cf7567d73494998fd051354c7153dcd01e19051fc9b50b31b3'); -INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','f1918d0943111ca12faa0a2d582b839f3c6f7b7f522fb2447eecf3ec21af0ac0'); -INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','75da65c1cb4fc710f930c8908b52ae371ff6e1674f75d5cfb831d21a653f5d56'); -INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e5277c57bded43ba153e9414b1fcc3739b812b81bf401ac5e4435c7c5d1eae3c'); -INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','48f7e87482b45a402cb6453ff16eb5f39eeadb4002dac42d149984644d4d86ec'); -INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'c4c4820a2ef1f9c4193770028ed8c44c2d9728703979f55e545ac817cf87f6f7'); -INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00df60911b15aa382ed254af3a3624487eabcfd421371ca936c9d9f1fc563e3a'); -INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4,"utxos_info":"197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0"}',0,'NEW_TRANSACTION',NULL,'bcdd799ff3074eed4c39841d84722bffa0987c1303effc3c1db69db9d7fbe186'); -INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','5cfbcdb9dd51a4074410a6b41a04892cf1d4bf12d2ff195fbfde0a0ec89df6ef'); -INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','8566b0c679622bb955c467781d9b57a112194af24888c3501e63ecbc38f51434'); -INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_events":"creation","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','3f925e130865a7c1435d9466b2e761e3b235e9f226f8201bdd0b2468ffcc68f0'); -INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','0da26f4a283dd456401e2af17ba06532136a36594551b92416a68b863da9a0af'); -INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','f760bc0ebe62320ec71d89b27aa4f452ce2a54088c87baa139dc922416c6be1a'); -INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'f6760ced99e0cfd61d2c96f82ac131e36e4e091c7d48999bf5b31d075dcf7a76'); -INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea9f278a9d09a5b3f943d01f9733993daaa92bb2d83549396ff05eceb4001806'); -INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5,"utxos_info":"44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0"}',0,'NEW_TRANSACTION',NULL,'fd60331ac14a6cf0b5a37da04efc294f561cc5e03d6daf1647b26a8af85436c7'); -INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','63eb85bc9e6ce79431a845d85c6c292975402064dda9ff8d8fabb514eb6ba952'); -INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','0e874f68e1ea54e92d714c0e388f9c3a8084ea59cfd8bd918b6568758fa9df2a'); -INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_events":"creation","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','aa6e01961cb1584d941d9f907034a568a687ce7a9e04ec7def596d284b550630'); -INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','a9332642805ce7ef970a9c1c7839c194692a274a60ca292ea984a80defe9f205'); -INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','dc531da38c647694df8f746528e5baea3214d33e1449985b29df2ff15890d0de'); -INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'85da0c8f33d4810f09384309fb01cb17d91a545532dde211b377360abfcccf85'); -INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b43a298d8c3571ba4b79f2e7af02ec84af43fb311f316510b98cd92618e38f'); -INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6,"utxos_info":"2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0"}',0,'NEW_TRANSACTION',NULL,'082641c57dfa01635f6e174bcfa502f8e015b58862895b3ebf870bf7869e8f25'); -INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','a9cda90cefd6e27f76a3d1c32656c031ece3ee6d1d2a48b54a5184c05319a14d'); -INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_events":"lock_quantity","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','b8f03583abe2116deb359be7332f265dd520bde48aeb4cb277bba9fd07d62e92'); -INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','02fcca9e65062cd7559e51ccd31db08aa9b3e65fe3a8c3b345df6234cf127e1d'); -INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"63a7957eda022b56b21c330252e25c00991d7559c0d1c4c0fd743be972baeed6","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'8c237237da030c6a34d865127e0db59c7ad3eb9da44862483f7ac0b2847664d0'); -INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'444e29fa3681eebbc16b504da1a57ffa1114467ee50381b8db75122dfbbe0507'); -INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7,"utxos_info":"5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0"}',0,'NEW_TRANSACTION',NULL,'06b0b177b3631212484bcfe991cafd09f71246f910920ad4ef4a9b2c40589593'); -INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','9bc5694cf09e0aae9f176e113d1368c84ed134f4d9865203a8699c2ed772a6b3'); -INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','637f827cbf7aab9d954de79a059e779f2e10a2ab5c8f5026a658271344118d6b'); -INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','2893ff829d6f87617eef6eaba696c79dab808a23d01c6de86b85d711f128db83'); -INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"f1ec09af67d51677f20a0462711cd5841b16d4aafbdd0a96d01acfb39260d0f5","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'47aeccb9132fc2c1f0dec942697758b066be5a378acc16e29f1d3e7a35abee50'); -INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34af993069c5d53cfd345556a8d11dfe6c55b1180b3f0f6aebb830bddc05e73b'); -INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'e568436d741dca9bb01f63b71ebee92561c328ecc792087f718ab1833d20f273'); -INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e346ab4fbeef4af6e0fb414b4b3cb6e725fe557786f0c76edc320e96bdfac91b'); -INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','0d61ead9f6f5037f035b3a12eb85ebc36668cf6e3d8aa475ac15f49253169fdf'); -INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e779a71198c4db10385f578eabb3268b1272b1ccb0f2e6561e68c215f10ec000'); -INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','8c336012367e08dcbaf4d2f30fe65d86b880352bc3e0d741b0a23a6451286b9d'); -INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'5c27371da8d8e128183af90c3b2b69f180a3943becfa19818dc1ece29175ec22'); -INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc30887d62b3e5c4bf3ad2b302c1b741d1ddbd6ebca817fb598939e7d7db4f6e'); -INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'bbcee5dbe0ba6f067acbd54a30b67ecce294e37c618031284896be5e54497b2f'); -INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','7498e3b9b57713023a48ce928bf6b15fdf572e75eb8647a5587c677fcbecf53b'); -INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','3ff860d717820224852fe2bd470f085062dd9a94a6d333eda8fbaf1c0502181e'); -INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','e21f8194fd6107fac5a633f878462f4ba8f705b6c5615d65232fde27dc9bd1ce'); -INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','c35521c94bc0168370e08adefaa497e883b104ddb952187f59ed7bc58e7b746a'); -INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'788b0ee4b7b9d2583337fed8a00f194799e4a74bf9c590951ca6135271fbbdfb'); -INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30b41bc6d7ca96ed586dd3928cf2e9d8bde83016391f5b9eafe8a5648e7ab62b'); -INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'84c90085c9d545b88f66ebfb3e58c256d722fc8271ac00620489311f0d140a2c'); -INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','aeab1ae877e14d7192421d2f0c4c2eef18cd7fb2539197776cd74d342db53329'); -INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0f31d291582232e230be79dbd0171d99e7141f4c810f303c9bd2f60066b79aa8'); -INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','0baf9dd2c3e8289d08fa38a034d2de588266957cc5772519adabc76dcfa8222b'); -INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'ca6f3d75b375e844895d85737d9f0285dd06736cd4761c2f47099ff0c6b923aa'); -INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab1ebff0b08db009fa7577720821c2817e0dd8b7693a309aea2ac9c4e39171f'); -INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'bbde1a346ce21fa2d5f3ca3a761c68b62ae938af0f8c9267aa267952dd471389'); -INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','ea662f1fad289dc920ff16261eaa7ab2c97334dc7782b46a1fa11e5230ae6bac'); -INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','fc8b3b08702f726889a32188982286643ead219a82ae851296660dcf9dc0f431'); -INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','2cfabd4ad7f38de43a7159d319df2c939fe5e51719410a1752ed5e666ba2d7bd'); -INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'794107603e582efa04f3bb7355bf23fd23808de48b436b95c19683f2f7a47e00'); -INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f6cbdb5ba126f33684fe397561300b0b58e03c6b334cf847b1066e422afedc'); -INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'39de1e16910d9ffc1d5dfd353f94b13436658f32dc894b69ee53d2f17494c4b8'); -INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','f55704cfc55133b23eeb721254bc4780eec3557f828dcdf082cc65006ee9c94b'); -INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','d3d5f9ba975cb392aafed578df2b458d2c4bb30b0a1fc12ceaa78cf5da9af557'); -INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'b1feae4c1bf7d56ef29731c9c708d30f8dfb45ad3769245a7eafca99a1cdb5e5'); -INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c8b8d3164663c23c9184fd566a11ece3783f126fd57b1a6909e29964338cbbd'); -INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'52929b833155c012ad3654694e2802a9bbf8ea744269006fd3de014dde5e752e'); -INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','13a736d355d427ae1ff311ffcbb7e1522cbb3d5b3f62fc45b77e82e5aca1304f'); -INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','77759c9ad4c731beb81ef9f54301407219c49c8b91c07d80fe11c23b453f9cab'); -INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','eeefc8dc97a031d62677810717974c12fd12a2b381efcb8d0a2c11f03fdc71ae'); -INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','e2105538776629201d9ea29d9c4704b9693a918df4ded276f722b49084be3a06'); -INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'d07370a170926072d6540065cfcc9541cd276b3a52bab747329cca67ba3223b2'); -INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23c2019f9fab23c19025889a50c34e68ea31dce366bcb08c6672cd993fb841dc'); -INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'b5b0c17991db53d142b0de1798f357f691146d8399fe708f1619fe77bc470bff'); -INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','21a4036efb63510cc77620ce57528cb9807509080d5605aac281b274842fdb1d'); -INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','f3742564a5e22a383a9ad4ea5f826b9deb446a54bba7f43f1c97ee0e894d86ac'); -INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','53a488de9f8a17c91c12c7bfc0ac019a6c2203a6ec6c27ad92f5667485e9393f'); -INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','2b0102e07ee2c35c2a69a48987e7c4c740af38013a67167ceaf862e47fad1f74'); -INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'ab0e7f4e1b60d73709cc709b6a65fdc5c2b4c97e5e7dc2d432b1c669b4c8a8fe'); -INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1415550ee0e00cb38f6afae73d0612f99830b209f5cfbb16a358f9691de7f0dd'); -INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'f36e8129f5999e3307dfeefbd46d40343435a2ea90c85ce620dd25b409970c68'); -INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','cf3770393644c8898da573bbbbd5c3ef33725a69d8fcc790b62660bc1c03b784'); -INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','19822c6c2c9efd20219336ada6b366524e7b6301d19b5aa9958de9661433d61d'); -INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','fc332d3d2d6b225b2843d4e65291800a1265abe6fff55f17816aff187b69c348'); -INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','10de4999556a31a7c115ce8d1416fb63dffed740920b2abb741f618081873c5f'); -INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'5e581ad87a6ed82653e9b62f44ceb318a3ecc36c26837d79fe73e5d26d30d890'); -INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39546673ceab955e8cb2444191e9acfec389c943559705f78c2e5a6ed9235b4'); -INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'25fb63b5b4d60a7874f2f3fcd2ca6481cb044d5f3ea547d6a9c7dbc2ee0b9ad0'); -INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','16f1880f51e0c78869c00e6cf521519626cbfc8126c8fba1f778319abe9412aa'); -INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','ad9be938c6fa3767f627f08f1ba15ab325ca10fc575cda7f577b59118821b268'); -INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','838d3682ec71b13129a424f5d72d601bd605a89880b96ac7bc601879be0e4322'); -INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','174ece8514fa69a0f4eb6a6815c97fe28e5d6067a0ffdca4eebd730b39504a0f'); -INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'bcae308dea2e4c5a95175b030665c14f71837e788550a8882108c3a465dc34b4'); -INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'903d485875ff95d6d1d3e2b345cffc055cd5da4fbba5710f88eda2e4f9f31fb8'); -INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'09327f73589be2c0a79e5e9f5fabe63e645902295669933a34bee8a8aa9f3eff'); -INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','35c653a08edd22ae96de1acce6f8b2e57d01854d3747259681bd3df7adec621d'); -INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','411d0df4bb704c60f5e086e3c9042941b559b766982f71ef8ddeac906caca26a'); -INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','2047ecf5dba08f541dbf5c01abf763646d35703a461f475431f05555391e4b5f'); -INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','14892209d114b93fe7c3c19ef2edc947b71fc109ac5001a2c0fcb6959eee8df3'); -INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','81b270ff43063922eb6c9f7b040cd1bd8c0337c6bf3d74f4db992477e1207e5b'); -INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'7f319e5b69ff85f258f69a6ecdcdabd01d805507fd2941794e47feaa926fb716'); -INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48270feee536c8028dd9bbeab8eed83c2ed9deb47a2973db1a19c0e097e308c2'); -INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'381d9f5a7e412850a58264eee4ddc7c450597c4087160da6e6c7d5c805d53fdc'); -INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','66f68ac5163eeea5c70647f45c57708728672b53850feffc934839316f71498e'); -INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','bf853aef472ce2ac079d2995ffdda733e9b93dc35c2c6f15d8e56728319380bc'); -INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'c62a71daaf7247e45a0017d2023250037551358ebb1b262e0e4c1e407db9a907'); -INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b6a3eb6f2044997c01649643cb0505166eb44fe0414917ed60d2b947eeb9c3'); -INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'fc520a70f9593e5598bd39d33f1f8e5a07593509d73b5691072cd0b7316164d1'); -INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','3b3eb5457f4c7708c1b6d4f1a662d948129bbcac6a008c4efffb242549ce075a'); -INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','e507784fa08c088a607afa05d8c634a951591c8bb4c3661565af2380245e51db'); -INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'df09864d7bc1603c14db2d0118d11b135b3ef57dbf00aece490f1a66b6f63a11'); -INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'085ae744048017ff5604f5df80b31492e40c2ea15120ebc37e8b9a19c03da1d7'); -INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'37404e473ad508d08f3ac0df32adeca07149455a676d8f6415d9c7b7e6082b23'); -INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','7bbd2e4a1be627b418209e1107163eeb04a9f567ad8885a881f8f8738324973a'); -INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','a677d8b47ae37ddaf66058ccfb038d9eca01ac3b291470a0d1463aae9a38cde3'); -INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','807048baea88ef11f693232bbcd8628166e1b02896a1714f22ba2d5ea5f4a8c7'); -INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'4c0c4967f7d4baa4e125fc010f444e2832f7f607dfb420f609fcb7debdfc3bbe'); -INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66cae2ad72897e37d7ed5ab7ae1aabb5b6efc0564af68b20282bfa42abb99e7f'); -INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'45d992c3142ba2d5180d63708db693e804149ed4f8b57aa43bfa4a29533ac294'); -INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0565c38c7a3c8d56b71e7e12f5615085c709c6b9f7df56926728f5ac22b7ec0e'); -INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','94a3f0e66b199ff0b516af7dbd8e58cff5b1970e07eb12e81043715e12a31ac8'); -INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4e9c313b0951fceecc6d2a1996ce9826b7b283e7e098f03de956a6bf8edfbbb8'); -INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4dbc8c9a4e1fa046ab5f52167d5f8da704394b4d67e0f51187707395889f3f9c'); -INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','2d5ab3fe0473bce1563ccc75e22cf858642598c12163d227bde8229bed605822'); -INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','d0f4b9237a4e8f4cf1c1bcfe43067caa868ea11902a0e9ceaa70d750e56b92bf'); -INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','e1a9f17ac6cdf73b5c199f81825e3cedf247f89cfd75dd865b00c0fe3f2b15ac'); -INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','fb75210f8e8b7366fbc90be3458063658691852e9b7d00242590ec700f28d1ea'); -INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'c27b4af41012ddde47dd6a0858d0ac4ef033525372e968ed99fd88c0e05c4b4c'); -INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1000c49830c56a4c9b5722153907c8f32dbe63db60cbce758367d299aacdee0'); -INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'36caea7893ba863d7993673cc602c2a1229b7ede35a192935924c8bdd800d84f'); -INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9eaf497111c52b9ee116f2aa09b27c08847c5940b1e4fde8c2c7a6c001eaabe'); -INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'849c7f0e62e87f17b73b4ec552854fe7f94b867a1359b7abfe1a4eceff4aae43'); -INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4841734cd02ff5ca765f2aef75436371929df9bae21837873ae595e58f3e5af3'); -INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'0e484a3676e1e2b9618fbd6e673183f7ccdebeec47d436bdc2bbc8242af16660'); -INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a9e27f2607338d2232b2a94b5804de9b9e57641fc3f83b77ff365a11dd5fd6e'); -INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'7206b36633ba205a2dcae010d5153b73b32ed9b9079b1f0cd51905acd88fb5c2'); -INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dc59f06fbc0b858f102661bdf80560b150f9d83ce64dba92519fcd659a1ce71'); -INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'a70b7e6ecbbfc3d4465532de5c2d45a232f9d1a6af7662fa898a4c96ae678bb9'); -INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a965e48b0ec09164c6f32ae8102bd87459308443bc91096ef21c92c9b3f1703b'); -INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'84dca6fd6e1885b5b0563d9ca0a86f26c44c14bc60e9a436f6aa231fe8c488e0'); -INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d85aff8a2f60a5ea0482be20b760cfcec9695cb7aab66f5d42a11b5fb87b74cc'); -INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'bbd7f3126c49f53ef8716ba16ef42d2b53412faf47543cdab441789a59152c37'); -INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1f8433f56668f8e997e1c89f4d97847ea8d0881b7500cf0a61930eff23ac88d'); -INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'cd13d66f5be846f79e83b9986751c832d5a2f153c9b93ad5324280592205c215'); -INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12fa4c0f3d5c7e631e2492dda31e2022b935acd15d835e7f02a3c1d2b9a8664'); -INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'d99b76f4e3ab727b19e5031a0a920a72d06c23cb6dd59d4a85553bf6dac39c46'); -INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e3fc64bcd798d0ece378a85c534ad26b00078c11c952819efcc5c72498efda4'); -INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'7137c1d6b79c82b57d2d5940025d25248a5fab44ac3f380687e0d35e46c2faee'); -INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fe99d2f6c9f780c656a169fdfff77972b1d7f2fbf87e4c5b6237fd2ce3023f7'); -INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'296b8c62c0f1707832fe0d10df75d10feae4c7a9726dc05ad944e756a761eb6a'); -INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bae69677402b686bb3c742caa6cfb6a1c17a49065edde8630f7be16cef11cf9'); -INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'3dd27a508c73b2a6a11e2b38d74f9da5928b6816ce622ae6c8dfd25ce654355b'); -INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5887016ca25b304216bcbc3cf885bb85c6be4f7ffe4675788eb91fbeb37b933'); -INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'c6bb67adfdd2374a7a72422a8bef60ed3291c9db6591217a54be704e86d7cdcf'); -INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d86b2bb6d620afb5cd2f972a0fd5eb58d2dce63ee75f7845a1adbcdcea4d0ee'); -INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'4ca7063a3981109476c1b8553724e376a8514fd84ab1f2ec3e9fe3cee90c0d39'); -INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40af5cf4479c3bb7304823ebeb4ecec3552e5e86fe4ddfcf41c39477c02bacdd'); -INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'7f90575af3cf09675853b84425653428f9f001535de467d9a446144fe01b3fe8'); -INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'981b6b3e5aa312535c687486d6d5b94e10d82d427a145c61d3e5bf784fc578b4'); -INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'49f50558df793ddb13bb3648d1c3343a1d92f1218f97775686f8fe544c312179'); -INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15ffbbe275fe1e72bbfa5212d874d4090f7f307146fecbd8161233e935cdba5'); -INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'359583eb964b07ea19ce4fcec7e2b4cb5c9b36736d12b07b2aeddc6fca8eed7b'); -INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2c001acbe50118ad0d412c4a01dca54690df860584dcc8aff2a0a19dad803a6'); -INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'0f479f616435a3a84558ae92fac0209feadac1ee5764154a786950dbd4ae26b9'); -INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d6681583df4b32f9eab33a6ca50e743be4027364b333d8af4b31f4419d0d4c'); -INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'5d6f1c795d453f450d290340f1b2c987d27c1e23366e4b8e9464bafe0217ec98'); -INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20474c93bdb9d471e15f5c67eef54df716f6213859b313720e765ed5758931c5'); -INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'4f1982c1ef9dbd6a5ee800f4bc544aa4c54fcfcc162ee8427621ce364b2a7b8f'); -INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e47266787ab75e2e7827451248d43c493e01b4ee541c2aaa06ae9a9fbb4f01'); -INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'65e45bdb60f7d914bbf86179d713a22bf9ef1c4996356234f653579f437a5539'); -INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52259f668e251b5e0bd33a5c5af04e2b4ee584d8e158655b9c4cf25eaac3d779'); -INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'0bd862eabe9b55c63e81aba1321b88246dcf4f85b35ce96faf437cbe6bf5c537'); -INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f60e63b1e915185790fcd0ac219902623d5f261162529950fdfe279f2e6f975'); -INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'81409fbeb48abd8081b7d54d66c440edd8cdf0724d96c6a78505731530497cd2'); -INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d98f8f2a8252ed0fd7a3ac19efdb9ffbd180afb16d28759a8c4d4ddccaf773'); -INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'09e1f178c6b57a78ab2c7b482a1393d3c95ae20eaae3d863cc9a582ef47f505e'); -INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b46ef2e4e5fa8be790470fef84602cab68528168218657575af71fb6dd88042b'); -INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'8e3e7f737fbba921d9107e2297c3370d9381d4f1a2d4cbe4a7d1e2bb1c04d54a'); -INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b380d8c3526f6423a05da82f691100422b50ee0236031bba9de380551dbb15b8'); -INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'48c504e25e2e54b092b1756cfdf955a723630352aaa3646946e51f706e77ed20'); -INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81410fc80e3a1aa2f9e10d7956869a0c918fb25c45bc2c65a7a800689529f774'); -INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'0d6a291794529fba6ae502d2ac95dddd9b700944beff971b4bc26a304eb5bcf3'); -INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae27194fceb3f4e7a9406a4507a5dca3fba6792782932814892cd84c8980682c'); -INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'d245b6a0f732edc22c4b146f52ac6aeda1ce1d7a81b71c2ba666395bccfc6867'); -INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8381c4b3bb472a763aa0adb44fc243ebfdb42808c62d870e380699a9a1608642'); -INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'71539d2f4aab4b2d1f05455b9b35de5d4b0d28e8aebf4f521ba4f0d72a9a336d'); -INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c57cd896284d0406ed37b0370ba9e2a93529b597a5f0dbf38f5a822ec3238d8'); -INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'8eb860043d3123b3803a935dfed78713c0adcdc0c1fb22c2d151bbcefef9d916'); -INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbfe04ade1d316e9e68520c02943699873ce4ae0a10d53ae838137c2dbc146e'); -INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'595100cbfc377fd31034201c2a5b8aee275c2bd25b51066b0702790e7beb346a'); -INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f910c8a8663d9f5acc39f18df4221f6b7a5c89f6b7b42a11b66cb49917d48d8f'); -INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'9dc557db6411ca43156d7eaf024f3ca26f7aa8f5c9f8891b4d0cc3de80b56c06'); -INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9379c2be6c3a85f49eed04d52c5ffb7683e53d6fbf2c82e14b92ce1480d4073'); -INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'7722385f3c6f9293789ad3644b457da51b581d578c9da9b6d8415a02610d6117'); -INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0904fae16291fd65f6cac082a1c0fdf39a7e054bb479ad388ea40ed2f7222f3'); -INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'09d4977466a8fde33cff7c71b08c0849a6f84356fc41cf983a8f57b56c31b3d4'); -INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66e3d408d9956be6e9af9068281bf70b77b7e96caa4d1a306d62cdcb4790b7b5'); -INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'62322fbfdd42166df9d24a615989c93b5ba5997da848e0d68853bb322941cf63'); -INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f130d08dadaac0373dfaf3519d73b73767260457c6c411b6f0522b324c5de23f'); -INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'e4f8d5c62b9611e8ae9439c2755185ed72d8caae4d0b8dbb351c971457fa115a'); -INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbdb2d78133f993c8c0dbdc7e6bae3d3b3914fb1cf929cbbaf74748510b87d6'); -INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'56b38c4d19ee44a84d657f706a63263be9f109d0950298c85adedf7e50671acb'); -INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb89657ef77add312ee7c61b725f9992dd900379e722659edc3b3e833981501'); -INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'2ad63ee548cbe138cfb0beee8ff0583ff1fc192597a30a7bf422cea7dddeb6b9'); -INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f2ed1e9de80531823e856d258a2f8239b7f556d3d1f9671540f421ee34b636a'); -INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'e64fa833c979be7c8f2bf2d610ea2ce43526b126c02d5d12e89a830a79563c41'); -INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aa2881516a432b0191650706f291cef2ba16dd5fabbd9098f8fda96390f1f32'); -INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'afe190cac7afbda4fe9f8b5aab7aa8a632920dc42cbcff763a876c0462b82a29'); -INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f90c3d869a58329efa7dceda5dba504bd32faffcbbec96d63bca63109fe705e'); -INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'ab67cb20be1b3e5f2410ce81613a87b722a6a4990a17965dbff4517e67acdf74'); -INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f397cc02462b6050af96bb03b1b69d2de30b2e42d46f35266579e9a9b44ca04e'); -INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'3b25d57df8a6f04fdd380fd45981a04c0d004723e1d438293a588a2b59cfcad5'); -INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05539c17ece6d3f692d93a3dee4f18ce2893e08916750c1ab9933a6bca5468ab'); -INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'72ae90d0e55fd96235e67a3167ed132198fde41ecb2aa5a5648fbe4031e135d4'); -INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ebe2916ab50075e3fc0df7ef42b65e4272d2d8e773118f708ed70369a1391f'); -INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'69a0cafbdc312952a622f45b097ad964e654b38b9460f0d6e15cb6bad3e3cd4b'); -INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a928b89ce4ae3429651d7bd5369ee5da765c5b8fef0edcf1bd4c19c36b01e3ce'); -INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'cec165e7024a5d9d2836d87c41b1df966c4cdf32d205998e28bdd05286eccc11'); -INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a23c3133179363242f29207442c6fd0bd98418358b9f5d855a8acc8ac41f0f8'); -INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'202c4c9ed85630b13a0060bcb4fd017d4ce82dad9177cafd61bf91aa7d7419cf'); -INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfc73daed01eb534ede8f27a9fa8b8a0b4e6b245f85cc2affc67ce43af0d8606'); -INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'529186a187c8f2aab6c1d284ddcdf6e294c1f440c1375088cbac73bf36c4e395'); -INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e92f80fdf5af68eb57e7b5d469a68ff417850c33d292debb5c92f2f0dec6697'); -INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'efcddaae124136b4a77d8bf69d4e9b693a9f4d4bf320b6bfaecbff34a99d50ae'); -INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77357ec2983f3eef3a28887fa76b96b93f91b5a3210ae0726cf3f5176736d007'); -INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'df0a0e7b3f2652269bf2f14aaebd226c9ab24598d52301f0df2702aa994a1426'); -INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7702baa50fbad13c99eaed5fe5354ea96a675d7a4c0529d2084e45a51a081d1c'); -INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'dacae719868f094c94024e225f9c862c12956417f7acb848df5f1a393d1cbb03'); -INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5ec25c9f8067d6f2816217fa2176c16f42d6e3ac0e6f7409e26e0d2e30500f4'); -INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'b6868bb65925a761fe79692c4e6af332322f38e67d53771c3f46ee934684a3a4'); -INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20575c41f3a99717a24ead4ac9370aec34fd1b089f7b1536a11d3d1beca8c730'); -INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'6c9f25611381b5f18978c0a4fc15a5a7cca102305e321620ad8931d280e1a3d0'); -INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b6b3df78e59df842273a5b338d88c3f1a55d05b9f433296c3c233dc23e38fb'); -INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'29791ae3366bae7fac2588ec5eabfbe98f70fad6d07e23707d2615f93adbeb37'); -INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d8e9f0bf9e6fcf2a4bd5389bf4418d3ecd281675a14cfbb14cf4130699c63fa'); -INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'d9c69489b8844d744e1ac05f29455d02ed99178c25384d6f818d95bc5297f9da'); -INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'359b698b13674cb2807cb4d6705194140489b7f48dee53a9a3a234070d8332d4'); -INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'58117c05d614e52dff65c9d5da2162c1e2ff4152d482421a4c72cc07474bfdf9'); -INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'660ae9a67c9fcfaf2a4a5afabfbf58c407bf473e7e6f3370d139ce3b1145780c'); -INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'2c3fc175388964be7fb6342f8534eb636444e4f22cc808bd2036066480492caa'); -INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'291e230500a12c0160da86471d6006ba432d478211300a6f6684007423991a50'); -INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'4148c7b69aa9705ade7cfad347e04512da111d2df9705b1b8eb1d9439dd7302f'); -INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8e6b31c30b5d49c72c0cd1a249436d79803aae399f2f38a395385bbf08e70d'); -INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'00070dde52423ccfb0a2b65f156e339cf5ba4de5621116438c0ea69fd9c3fa24'); -INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6197cad69c4b876e3d3496e86fdd3487a50ebc0199bb10fbc6f45dd93d61cfa'); -INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'dc5c5761523e66e33ff17e79fa228f5374969b9674f4d00c151934cdc0cd3a08'); -INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89028edb7f7dc8a3356afed6f15561699f0f373fa6a8feb66ff932fe7989e78a'); -INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'8a5c3547d434663efdeb3eaaa3ec5d7c863624425ff24f93fa4c3b8062340563'); -INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2215f5cde6fcbdb283beb6ddedb6f0689de1316de8eb4fa607305e5ec1a21242'); -INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'702727c6ba49d2053912cb98b4c860d3f844e5df9f77a422e26b3b28440ce983'); -INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07f870a3327a80809efa6278958c0073deb33f2a00b896aa8d4ad25df1dc015e'); -INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'f6b776798bf6a39a19dd7c642c1967a67c081ca832d91d7f3d13265963638e5f'); -INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7e368a23cb6236cc68714a7a94731bfb18a8e9877faf60082f0ec7da3437d6d'); -INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'ad45a35f3ca7cd77dc14f947b803bd6216340cabb2693887e28e727589dd4163'); -INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'364b20f124cad4db2b42698b1555961a95a0e13db750829da5a7461097d8eb94'); -INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'73477770792b773b73e11391e8b42cb6a9aba7476327889a2f0d96012f4f04b9'); -INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f8aa4195ef8a868c836c30d813f2619b19388406edfeaab0efcc9a1f4960f66'); -INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'65e89890a346f210de477c58092d18e5ce321d6f42b93234cdbef736ee1d20ab'); -INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0eeb158ba7a8012c787d9a84231799ad347e740de45c25a445110f0382dbb031'); -INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'f0eaa5bff3dba66243daf8e3f4760e5be2c1f5333622ad421a3b055e6b4feaba'); -INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1e241a3bafbf8f4b8e3762c95a3c89d6d4e4b366ddb4d01bdda69bfb4f6c697'); -INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'50b0b4f9dc9682f97b3fb1937c57d50cc9380e1473df99f991b76fd35eb4f6b5'); -INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a10dc3859ea15c23653d3c14364f3ca88d6127a2fac601d26ba11f553c2f21a'); -INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'ff6ab06d496200885ae621306331404d22292bca75b2d59a9832d3a154b711c8'); -INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7ee71f7537580b13d9178cf85e6b18b5ec767fde7c3314c5944e4c9e6bca2d2'); -INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'49666868904c174b8069ae8db42f47478ea7d61c6ba0c7dabc20fecdb9ae0033'); -INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dec89958bf298766ae474a9ba4f4c8e62354c22e94dd4bf23fa30ff25abf01d'); -INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'b9b45c033282817968d016f74671c3b018d04e2d24a5d3f77b1602b312bbcf9b'); -INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7a03fddb167b9e8ff0f5b66d4a84f197ae1b3e467940fd08169a8791ad94210'); -INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'10f9837dc304db44c0b67272b34d1ed7b62a44cb9d6835a87e868c2b8070069f'); -INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88e5afe9a0c779d1ac92d89bcd539ad62d47baf1f58515b43ca736fb4aad754b'); -INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'876ca8cc04d633add65fd0a09961e323b65c13931cd685e859baebc42ba148ac'); -INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8166c704f4e12092f3882e541e40c0b5986d1ebde72bcaba5144bbef4068e132'); -INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'6aea24f9c70d80acdbc54e8e7dca670489e8c3e6c10aa8d6bc1424bae18b8d95'); -INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dfc8bfc108e9a4e28272a38d1dd1966db19acab6b107e209894aaaf04129866'); -INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'74743fce296e373bdab3a853c818bb5dc8f88d12ca3acacbb1ce28e8c461a306'); -INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9fe6f20eb864a6bb75826b20341efb978b06d4aeebba20e8d7c3dbe0492af42'); -INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'a288ab21f901fb5532cf78210fbad9e2dbd68ff6f2170ee07e4c5a38ce751805'); -INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48da4516187d5153214d32d507ac814c634c4a4a750ddd45302707c5c5df734'); -INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'57e955fe62c97f03084b36cfba4e2768f893b961324733139484849d08f94400'); -INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9817a796616aa6a9a362b8a742cd18d4ccc9e94248aa33c70254e596269cb414'); -INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'b0d4f400bd71c25f26761dd27d58d5b7930658567e6e42e8a1c93bb1cf1e8afd'); -INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e4cd9164e92b8355725e690455d8703e239032c84084df6b71e1ef58991d58'); -INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'c70110eba2d2251decdd1c50461c75815dc751405622e27800501fdd770b82c0'); -INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'907842e4ccf6ab3df3ae4f2d213c4eeda42aa13911dd6de89e548bc1cc1fcdad'); -INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'996079984b3466e390d59593134abfe034b88001e8ccc9d2823c0ea27e9980cd'); -INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7490ca004542ac98e510ce44cb93ae3d3de42784608f9b136303a3f3da855a4'); -INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'4cd9d16ed067802f5cff819eddd667c29054084d79416471e5c06cd884028030'); -INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dcb2b1266a2e1fda63bf2315a2e1f5e50d2f51a6aea5de42b1839e2e3777833'); -INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'1797476f29279d131e738dd0443e98ab1befb06b55dfe520bdd9cb1b55757c5c'); -INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','7ef4293e04c229fcf8c15d3a65cdf0cbb7e9e1b5b0d6f4d9acf32783c5cbce90'); -INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','bd92db187866f48e800a2919ea98214d7e884eb48ab9edb79624c5dc9c956972'); -INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','faab4057d591da0fd3c4768a54d33f31db7461685738ac706dd78416c187841c'); -INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'755c08f8c073ee0bef05ba38377e77c06ebea116e5ecf37b47431bf9704386fd'); -INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'378b5cc739d915e8f9e5dea03870e3062d6414a0095e8cfa9a439719d0c163a5'); -INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'85b33acee03db333fe95611ddda44ccb3efb32d72fc1223fd19719b8e1f57077'); -INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8366d982fa2e95e6ec3d639a5f08ccb0e3b274a37bd337688c00d16155a91701'); -INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','70a938086b0932bf79d26f5fa689bf67fc1b95387f3e69495be382ff7b9520c0'); -INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','e0bcbba28bf3009ddf0fb5e4319546bf330eea7873be97329bdf85aff992cd1f'); -INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','f745266d88d1c462a96d9efe1a84c6cb9ef1ea19d360afd21f1ab0cc572ff208'); -INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8eaeb45415744a112e870976aa49c10efaff45b81874a1b9e00a5c3677b76c1f'); -INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','928667d286cd267cd1d7d1f20d50eed5dff2f9b2bb8dae2d38a9203712f802a0'); -INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','8b6180af59e1a5d67c2bf4995aa72598e6f35bf30477a159956931ebe11da85a'); -INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'f54f3b56a09a34b74055898b1e55bdc87fb23f67becdf3c8f3c6451f471f4944'); -INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b93aa38280fd68f6ac92768284a5818cc4258ef78623ea68622f4cd22b089b3f'); -INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'4209b94ff3279be5c409082354b91c30d3e16cda4d6d3a4b9f6911a63df76b12'); -INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','fc465bda3f5f7a55edbc8c76e81543abf7230e7ec0e558c8b57998766f310f59'); -INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','292703416469914579a59ce755ef4f017453a116d7100166f7be26529dd029c6'); -INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'ffb7898a1bb4dfabde83b8827b3c1b64eb50e580b6d94935c370670d892c81db'); -INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a2a05e2f9b8f36659e4487a644f69b069f226fa35c556554f75a95ba238929a'); -INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'9d9a20ae49061eb65d815ff080d56eba6c6cd02f66083212a41738f7a0bdffc5'); -INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','c99213dc7003935b5c5a1ad5a405f71574202c632ad8a3cab395600f76588786'); -INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','6d3a13571ece3daa9638a8183393bc0c51dafd5e9b6775814f53aa71966588d1'); -INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'6f46c9eb4aa28a5955f1ae194bfab2b17b264c642051395363e039fb9c4107ec'); -INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3aaca280c6f57e0607b0f9a0e658904b42a1c8b913ea6f5961c63f15cdb12acf'); -INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'1524d32918b43fc7a287c03bc164e4e1f08647e3e6b66e9debb6c484d8379bb9'); -INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','9a49ee4a72e99e8f557de52b140935694ca04ec65675752de3b001861f3b4dc6'); -INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','5fcdd2ce595da97edcf0c122a2ca10820b186adddd98bccde12e2a16142eb675'); -INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'3f8803338870d2d2472b3977fb32a2325e370435b247a84288becc09fef133d2'); -INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'debdcf0eaa10a5a828598146289413f6aa41e6f4a390520fc10e916fa0d7dace'); -INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'2135c16b8e25faf8d03014944f4a22a37245c4ef5570dbe1e2fbe1d8e92a86e2'); -INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','13bc9d8902c0d176680d5443aeb684b764694ded5efad2ec5094c8e3918178e3'); -INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','ec9372f9c1fe239136c0e8ac8c697e37a3cf398007543ef2067e26af8d47a391'); -INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'e83ecfa39dbce369c0d5669f27422531ba7883b0d7dc551e859d1bc9dcf15f9f'); -INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7db307cd3fb1acce1fa7deb7fec31c13facd7610577694f000d9c303ac83e23a'); -INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'15cbc5acb8478193ea293d893200ef1852038917f644269f0842d94c96907fdf'); -INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','901f1007e365665d46197b696f5914c57fc9f3ffb85ad72bde71539e7cd9efe6'); -INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','92fc5fa9466255b03e6ec3498efc2760d7c12461a9760fca9cec6408e03eca9e'); -INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','98e7ccc71427873d6483bcad9d4a19e826b0498040632f82596a96a55875a8ce'); -INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'86fb01e792d29a4299f4e56171d0e61991a189960bbc4f7adc0888d726d2bfac'); -INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b00625027ceef378a4920e894de40d5350cdc431feb31e9742866aac20eb500d'); -INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'68d10f0c9e0ed7192b1debc1eeb09fe8a42cff2a2b212ab199a7d56cb2b41dc3'); -INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3cb4871299bf6c401068b24f2ba51a64b562bf45a872f3b7c89ba6ddc9eb5903'); -INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3afd608d04818201da2c40add505aefa84d593f9bdd90bdfb1c65fa143d9f814'); -INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'3ce623ad399fe63886f091cd6aea29f051d43586d3c4340a0e2a68f0dbe6f353'); -INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a579bce2495c1587c0f43a4ca6c61997aaa34f3bb7a39260035420af7f30dc89'); -INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'8fc96291a6d666b09bc28384dfc6954910ef37e4101f0fdeb24e9dda8ffb4a30'); -INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','165d7691c7f3a6e5c3b556a367ae348b372e0186aafd536721c0fea2a0a65d25'); -INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','6f3a852067bcad12bf284b148d75a5da1f1e2bd4425a2a6e46b54b4b1b350e3c'); -INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','3767aaf5c1053af6c50909977e1a3056ad0428c3ea49dcaa8e24045ea39a3fdf'); -INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4905818a23aa3080f0c0055d0a422a742580865e4dd8c53ce2085c54c0a31ac0'); -INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4994524f7686072075a08239edc40c65305b602dc89c54d5c66b69dabd92689a'); -INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'c8983eeb48b9abf32aa2c52413fcb306966e98e3a39ae9dfc11c39b6bdd8dc6a'); -INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eea1544474e9cc0401ec357de123d9dd2ba8422819a9c0daefa4ed8ba5f987cf'); -INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'e25ccbaab8346c4787d384134dd0d19f4c69a890736b056e47c8396d928f59c3'); -INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','44ffb08d3e01384f316c88e67395c780adfd165cddac7ba855db970137a31fb3'); -INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','d6b755767564eb90e1eabb88471e51c744747624d3a1cf286de970556effda03'); -INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','fd4c5fa3359820ba69208178754789546aff07dd6b35aa61704ae06ef5804b69'); -INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','eb4f17f990ec32ba907fc95aa3043657f3381365d47ffc94c599a1d7bfbab844'); -INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'52369cd36f600d9a5299fc69b9c15746749a46f3394e8b7fcbb0c22b5936161b'); -INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77389ee6ebaeed790bd1aa40bd7a394c5141e8cf4de3556037ea2b76683d8ec'); -INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'71c8232391018b3911c82c739516466aca7a157dd3d23a2607b67f9eed6458a7'); -INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','c2882a4a6235a89a05b6cade2eea250b130bdb813381062b2b9ea4112b588fb8'); -INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','707660880324c28d35a43d805ad91dbfd7abcb70cd01f0a0743b639bab973f7f'); -INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'ae8925347c72ce2187508fad189adbd29fa98dadfd1ad9a7f5f50cc64e020dac'); -INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0824df62aeca851a1f0a98c8069ece41602d11891483dfe49592bf89938b6ed5'); -INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'f4f4102129ca9055eeb4eac616325c6f7f28e86c5a34e6ee57a5f9fb44635128'); -INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','f541d35806f2ef3002df9dd9d6bc02b5a1c669e9f1d7375266906b93e58a9270'); -INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','25fa47732ec33afb2b993b56fe4019f0b175efa91cf113b57bfec36f93e8d4cd'); -INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','81d69399eb3c6c4e515c7bbb12330eaee3798f7a9e7fce7a18ff0c19000b1102'); -INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'aec5bf6ebd0fbb7841b98fe202e492fe02c10e41b6945fcfdf45fdf567bf918c'); -INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9b386eb5fed9b4ebb2cfd8bdf5276bb92a9e233d68f6402e3ed98efcaa344f3'); -INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'375de8fa0b00fe22dcc473147d42fda87c8107fec0ec83e829bbc32f8a8af8bb'); -INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','d788d6d8d6fb6c0d4cec96c2b469fe690721069ca6122666c843683186ef0889'); -INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','f88828f544e93c774efc63e9ce1d612548192672d8293db8fed97c639726e01d'); -INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','65596607bf455061c65b0122c9f98b37ed832cd3f4164e9256c5f79fd3c462b4'); -INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9b2e7a969d5c28e9cce4af97cc877ce8671e71e9e9e55cebb9392115b3287a57'); -INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','6f0ef6f7eb1ea5a18f2a5ebe42c6583849ca97844e2ac04ea30a7656c4374a14'); -INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'5b359c5318cb8f14dcc4ab71981655f29c955cf11e101bcf10b515dfe4c4323b'); -INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91ed803de9dd01efd03ec238dfa63f2e8d53f2afc08a3f0af38ad2838607095'); -INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'277b23be2aa7eff1d4d30d700e5dc96fb8a99000a891919d63e2f5e907bceb1b'); -INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','03e618fcc039fad4d7a9214cfdad39924dac56ed620f65e334539e940f9ecc9e'); -INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','023da103e3b90731c942c37d01c20edd415b708a4dc36c53855af2b66a39107b'); -INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','ae6ecfc83d6e539ad370e913b138ee0185234cae8ad57eb3f2f33c5188ea6e35'); -INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'854c5467e8dbe45e3831b7db1060b48c9e2669ed7d41e7a9b9bf154ccc992d33'); -INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c67db4f5bded4fcd5e1d9ad8ac81c072540a81dcce35942f85af6553fed019b'); -INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'0c6eb16abb07cbd42a503a2410e1a2a2bfff8a5d62137f685cddfc05815a15f2'); -INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','d50d0c6813fcba1ee89d25eae262e404e6e1deefe4cb2134bd5bf3e0b2f2eff4'); -INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','a2535331cabddf376d73bd0d8697386fd129199116dd7b158d5ceac055d89a7c'); -INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','f651484a2023bfe23cb4081a94dc2825cc4c041d4daeebcde4539ab49eb19090'); -INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'3bb8c98103478cd047d0ca5c6ac53dbe53f7b629d08d543dbb6595a2f4a1b540'); -INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2982522422ff54deb1261277b7fc18d361ab9e6809eb380f87f03fa96e9ba9d'); -INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'a4d4828200287527da38cd8f22c803788c24bc167cdcdfc582c3d311d290f982'); -INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','8fa6894de2473c1c23acdcba9e2f672415a5444274eb154c2c3b3e9dbebb89f1'); -INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','f24a98e7f408b399f6c3117c685742cefad07fb19869b0b0959e6ed78381d352'); -INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'82818680a2a719f5ad2350eb5723b43a5e533e532ac705722fe943d1ae6d1ce2'); -INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f3f1baf881e37b1d365e3a80d54ab86af25e82fc9f29f217728c0e98b2432c9'); -INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'c728ebf82360fff2ce3550374495e67fc8e3427f340691c5a8b2b0daed505b91'); -INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe8165314fb996a70b238de73bec6f8e8569f1f867c1bc16f8e6cd9035927856'); -INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f53f8cf31ac2e0e41f80681339b4f2fb4c7b39c190b448cfa655da6e10818aae'); -INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea8ffb435df42363a495444eb533e9016e400a76b1aad8b40ed4a5dc52bb4984'); -INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'967b220e8d33272ec10a2c0adf2e57451a2488ccfaf455b33173163d29535107'); -INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12ad1fb6e31eea51f2263e5a973791aea1e45196153e2ddfb37ea032cb2986c7'); -INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'94d032b1876ea96c246ef2b1a9aa2c4fd6d5c565fcc75609ff605c5ed72fa1a9'); -INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573a663e98a5e5ea47cdb7e242d31c7044ba90e0fadee59c331680c1319c4be8'); -INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'a1127e8ce16d3a86b90b42d1604bc7a6dc71493a05ffa07ffd703c40b5dc909d'); -INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cba2f1d184d35badfcb353c34e9dd0398a4ab0b1eed9daf8710da842433091ac'); -INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'ff0adc6279322a0a10e634683882b470e479f21b23d312f0e9dd8551e93f37e1'); -INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cbd75cac3035eb8589cd793d8bb6e25c02364eb86059b5e2b06545ea3758c2d'); -INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'4a19e14e08d39a22aa296e77a7d0d0985c9996962ac3328aeb180968ab3c046c'); -INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c7af017119bb61fa04a66225625cc37ccd33984a4873664a821b960731fcdca'); -INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'7ab468172234e65fd20e02e27078deaedcec3bef72acca76fc0530618ebae9fc'); -INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3a65a5acd8030d9cf055d10358ccf7d73bfb4a617a88181ff9870920cef538f'); -INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'fbf6488266c08636da0a9d4685b9ca781bbad71bbed8ca88bf0f0a49a73d2046'); -INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05feb8e3e2fb33ed0556f47a2b30bb3705d473ad3a7c30df69748310326a39e4'); -INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'11e5d50f6c44a81feda24e71f739f43620826cd80e11938bab5141a3dce5c072'); -INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a086f57f6556d16e93f9042f6a8dc172975bdedff47e10cd7ba56cc5b8ee6733'); -INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'36ba2f74d2c318136364ea89e6573ec7723cae92ef11de90bbae6879056038dc'); -INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a91fbcd0a51dd13a5d9815f54c1dd0a05d042725a3312f4a475874dacc0436b0'); -INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'3b452379a67cb0b9d5272601c9d2f7298e02308e12151c8e91c5c2b2cd44b7ee'); -INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d49cc89b9e9c4cafdb9fc5f5382cefbecd86280d2286c6851fb3d3288d1b916'); -INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'eb41a39ac2ade8af0f5aded29cc2e3ae8bbcd8592b722f03fb5f3fa7e2019976'); -INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc3261c9a4e36d0fba139331ef6b65c785639270240a038df17fa5792017ef2'); -INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'b441b13aea73ceb3b7729d3fa35ee768262181fe3fbfda95871f3d99a7112301'); -INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e9cece7e4212509c652c59efef704a0a78fde345e310f44385fddc8ce93f7f'); -INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'ab137518ed227988515f5c42a8850f9e0c169abcd2d3cbcbdd63a824ed1075a7'); -INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37606fb761c4de8c6ebe56bfe2dd7136808dcc63839d38f25f4134574f5460a7'); -INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'d298e16c2c405889386ca1b973b9ca9a72952170c92c586b0ec722d2193519c2'); -INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1382d264290502dfc6601696b6ca21b64e6a69f295b7b77b32d90d4116e938a'); -INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'82e43c435526a17b145b2043a819e4a91dc8af0885e7ab7805d4f0beba61fb29'); -INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69f0f865c134f7a919fd802cbd24175b836324c71498a121385483faf00a5e13'); -INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'5ab10e7e1a3be743f66356f08c7e6ba227054e4e17cd2fa8c820ad829e8a4d14'); -INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a35d919f98e9a5f572dfa3e403f3cb6bd79e6d9e00a409ee85d644599a0461'); -INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'99ef7d389743b7bf9f899b6af1255117b07517ddcbd7133eb71fb0b08df74454'); -INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0e43c732de2ccbdfd74565295ee0c6d51c0a62424d1cee5e15bd81270e63b08'); -INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'75036f16c8f6f6f67168bc2589a8d7dcda22cb6ce1830571ea7fabbd4e73f280'); -INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86aa2836913d0a6c22a1ce4ee106d81f73c0729d907e054abb53b90e00794eb9'); -INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'3131a595eb85c20a3b4f448ddb53fdddac76f0b1ca8accaec21a731f8c971fda'); -INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a0f9d6794421f8801e77dae04c9ed6b4b5e77f5f6648f46c20ec4476c4bb5a'); -INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'e342e5a4f8f9664ea0fd8137960d1ca24257e1c70131a314f4fb1d58a8775feb'); -INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c9c5f96a1584c4110572124780ad936dd15ed690be5c3e6a491a8b6f4c2ec86'); -INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'b22c2d762cbfeba4dc4c3b890c15433706b6685c5af3d5fa02c960fa20c211ab'); -INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98f12bad5e44c9734c2478a9ad2eaaefbaf5235e126156cec82cb82412361626'); -INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'20393c51a2f1574d06266d88d91368f74f461d38ceeef86189e5bfb63086ed2f'); -INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f06542c088a23be38eac07d259a0edf387740f7adb4e33666249181e7310c6'); -INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1400654573ef1cdf3d0478dd8086c016662b04a0802469c37eb5a4b99a74e8e3'); -INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66b42e083a4eaa208cfe7e8718477146ab4ef857cfa98929ea2045e94bed54'); -INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'d359de69f32c2171c4f5270ddfe7d9dd6e4793ac0ec36e62ae18ca8a9d021519'); -INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28158649fd4ee92a98fd6e7568e955d1fe882612c3a410a4ba463152c7cf5bdc'); -INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'ee46782180d1b0655556cddf4862f5f46715c001778e767e66832082b9bd7fc9'); -INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72556d0087f178ec8f35e95c16f5c13439847c29e4fbab9d6453713ac5d7dec4'); -INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'a79e91257bf7375c69eeb7600bb0fa566adb5d275fa35acbc99b96e3f2fd2c10'); -INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4fe3ea3ce0c28937db14c22dbf37db9ab84733f4c19b4ab345c248b3589ab0b'); -INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'fae80b84d40c293f48ecd70a079124da4dff8823de86a816bdaa07d6f476da28'); -INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0636da226180f12fc793b2391c160637aacd1617c6b4b5141180f7120c2165b'); -INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'f9d57973ddd7c15af05188f33715333b6595d5d9b31cee9c1d81033b30f57e69'); -INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbb8f58abe20c7849a6384a9db97d50bf53cdb4eed6a27914af74313b2c4d48a'); -INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'90253b19a0e9abd44c6cf8778266159aa7e7e8dec2d6ef9ee65ab7fca59de655'); -INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7afeb97ac06a1e2be7e6f49104024998094061d397a35ce06e2aa33ccca9d5b1'); -INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'a02fec56e0063700fc49625efe22cc83e12e1d4510ac3167a16e1d0942551fca'); -INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c7832162901f3a22061e350545bc93a3e3d4297dc48f6e73c0156cebac65db6'); -INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'e0b01a0576325d4a99e481a4695af4cf2f5cd18c96c14938f49403cfeb3f2935'); -INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'650574583d0902a9aa8924f926b05d51734b7fc6348499719e8d4b97b0a293d5'); -INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'4376cacc6d17e7d2d70fd5997fd7c7f2217a5ed73561143d350b0581c2305907'); -INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487d1b683e55df5698c7fc8ba8fb91f9cc15abecec01a8883e24bdee022485a1'); -INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'9f1c95065c3971316d7addc5a3dfd3d316a0e66e3d04c16fc3ee01271d61d98c'); -INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ec7cf77e86a0c9c790ac7094cdb6a2d503e71d48618ee60b4adb3d969072fb0'); -INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'e9d3fd2253f3b17dee6231d026dcd67f01d6eb0a75ba23d84a98cf735cdb3c2c'); -INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8994dc295ebf7ff80406aa0811fcbb7662a2007398013b402b44e572b2553930'); -INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'180080c903e6ad9020a78795184ccf98a965e82067538e2d68560ba492fcbfe7'); -INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18009bbc736a99445304d2e9e5d112d5cf195c29f09320ea0cd612a451fedc0'); -INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'2bba4d4eaa5976bdc2d137852f6dac3dd86d623dcc766954572297ed9485e568'); -INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d19c589bdba8f6744b405a9f603bdea811dbfb677f49ca88ebdd1767982896c9'); -INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'ca46df8e5760443519f2d63bcef13ee8dac1b8ce6ed2116511b27e35b284d189'); -INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cad4a273446176c1457317364b02b4580607c5a413576b567507b897e11915c'); -INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'6e97526872ffafecdd95e0cd210586e014f0693975d0dd09ffbb21f8e8a43ca4'); -INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3ff3dbe77fcc4845dbf6b63ef7afd1b997ccd821d572d4d4c4cae56aba50f94'); -INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'a3c577d8e21a599382a251570f12847a57c3f5eccc5014238f11ed054efac25d'); -INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb34197d8a5562ea8af64d726039cb664efa1dfda08dca84c88530bbadaf4b67'); -INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'0491954756a4896fb8435326e224810fc784b0b3a29d41ffdecdf700158c7656'); -INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cc4592a0eda6c645d6b7e86cbe71b61a476d2a9996128409d8430aeca7018'); -INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'ad6216d005b12d158dd7134b06762cdbb9788a8c7003b5fe1c4616ed7f6c4fab'); -INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d62fad9025087092a2f049d133ce3432e8dede275842d20c9c0ae5153a84662f'); -INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'c215b125d23ea423152e85bd116c4684d89c77b14a09c7bf03d040c45b8c39a2'); -INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9106b0f2672a3e8142072f77b07cf8275d2812d44a195a0f9e8b0a4e20092963'); -INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'8cd92828b22a5922ef49894cc4ca65922b292e47ec4d4f07fcab23b00a3de771'); -INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20adf24ad75b708dfacc3ffb1ad5805f94750f2f4f2122d788c9c781ca6e0d18'); -INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'0c6b930c818909a2ba99263e36ef0a8d6960927c5b69c016e9faaac52b6eb5d5'); -INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47cbded5048b6f0ad625a57f525da2a323cb0dcb551f113ba7cd719a02e800c9'); -INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'7bbaa0b70f34ce6ae6a6a467e201f8e7df7e1fcd0dc295485e638e7e3c8c52e0'); -INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'083387f76a4e0e272a1e7646fa74376fdc409a1b263bcb8dffd917be0046bc3b'); -INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'772ecfccbe152c815393a5ad0329ec3a9760deea442cc41a5ab85f861e3b06ab'); -INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'403c148e181c6bc1c84ba45712c0845e6f77ddb5461ef7308651d9a51cfae994'); -INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'c7a50eb2f6783a5988681c33a26f3e0554b4218fdd0bb05d64076d2b224ed216'); -INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2335012db7033042044422c7ab4a697eef6258a3790fa530db27f795c5d4109d'); -INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'6c19cebbfa7202678a9cda97c53811668e7bfb4c251e143eb2be6606009e78d8'); -INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3d810e5bafa7ec782525812a89e231dfb8a457776005c561661d37924f2c6f3'); -INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'3340ea49b5cdc21957b491e2b36b8c9d7e5d0aed7333ac3e4a6051c74dd3adf8'); -INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa94a4ee2ef996d04ae85acd007880f3a97b83d07acd68b6170563ac5e4ac6b'); -INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'da5c6f9ff3a813045d08cc5915fbd041440577558bd7db001c8dea1c5f3e0146'); -INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3728e9af327365853f4ca6297ae69b72755d7978c5de2156f2b70d36181ede4f'); -INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'2a48f3c849a3d54159088ebe1d6b90d5474372c90af18df2cfb826e8223819be'); -INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a10e5e642f8eb035e420bef79a5fd3c8bd9f8a6f3dc9e64cd607d9a4ac47c350'); -INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'b880aa065219a962deaa77646882ecbf5137853ab6d2b5534bea1ac94a428fd9'); -INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4450c9bcf4322cd3882c2b6f295796d0ff9a597c2a99b0a04632b1e73cf08e1b'); -INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'1887c571d32ca88e4e062a8f3230362628ed3e58e37f8d195c539d57902de8a0'); -INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1835a12582e759b6f3f6c079d88cad41c6d28fad33235b3d8388dcf7286239c3'); -INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'68643dee09a94224018c39820c6bc78a2af43616fe3d26a5b26342273b935db0'); -INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e19c53441ed4157427bd33b16bc511e49a1bed79b67a8df4a1afa30c4ed612c'); -INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'1cb24dc971f7d7c6d384663421fcf4d0ed7b2b8aa1e5494526208b0435352f4b'); -INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23a457ef8eafb8a9c0863f560d682d8d5516382b927c10798bcdb8d1d0ae79e8'); -INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'18c5f97a82d17c41f34156e9cea407ab31af2792a1f435b3414f9b6db2f2ff09'); -INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3ace4b28b2d07559217a2f613313797c799476cf1c319f042e8ee89a725c141'); -INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'92b5030891960e1a494fdf9c09b4eec30312b5f416ce031c3fb453e6605160ee'); -INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5762cbb84fdfe7187afdcd979ca8bfd08280c71df343f2b0ca2906ac221cb374'); -INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'6a4dcad785432d4724bd705155044381fdbf87ad830ea6bc0209f1c5df0a3c12'); -INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b31c6144ee4bcbe91129b7dbb3f0a003cf89c120bf8f1e5ed6492c94d8928fd2'); -INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'10a471d85d8028dc701874bb0efcf4617754b7ca57caeed8109ee58736108f0a'); -INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7c530887658fb91662e645aa831168579ff496a3194e07617c449c9751aff0d'); -INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'1ac86d2f2a7c16a712be98866d861b9ff5b01a370ee4b171141cf79c9394cf8b'); -INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a07c3c131eacbb72bbe4ff9c19292758d42374312a3f12cf79ae81112db5b3ec'); -INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'b635d1e54a6d85890544053d01ba78c818764624d12a7d72a41c672fcc2aef20'); -INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70f8153bfc4e461b861e9cb048207f86658daa900c6f8da4ed4fe5142f2ca8ba'); -INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'59fdadb237d345524f2041079b127767f4399d8c09926b83d8935a6a2e7b5680'); -INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47eb2f2596b0c4eee716559562892e490b25dcf97ed66195874ab4093ef4b92'); -INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'a512c275391cbf2fd2c2f2b189b38da8d1ec6c4485a2025bbe794cffafe2b0f6'); -INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69d6ce1e8205b636532acfedef5c550a998d469d4f8999a86679d51835c8ad4c'); -INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'825819f4ae6267e6418882e7a77bda096d699e2ef0ea3dce3c2f89ce46b9432d'); -INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'402a3c3944f929608870b877fc18a2cf712c27794dcae3c13499237f39a5ebe8'); -INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'326dd0a8153333d05c96ab3f68145d25d53b24e6bcb78356d8753cb691c4049b'); -INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d77bbca99669707a2c5cbfb14249d44e0ce966f55881e059ff5e2d6729818c33'); -INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'75a7f9e2bd9fd2528516207b4d143e70b9e0b0968dcdb291f17d336181da97d0'); -INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31677d891f89919b46e372556d27ffb8b649abe8c10673b67a71159e35b5b436'); -INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'5190cbc9a186bb31733f2d6f15f6253195db05fcff85d3774e3bf970d6c29136'); -INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1634d7cdf391dd588fdfe40953e035580657c4202235ef564fb0068e930ee07b'); -INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'883e167b2ae58b9978759abe8861be6169ac7f893c379aa1162d5b9196b1809b'); -INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab1e2bde29f09bac71c95fc1e906e6faa4299e7bedb2c34746276be91edfcd15'); -INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'58cacba23006f3a361beab0435468b676523689b7991b66ae24c134e2b78c172'); -INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5589eaea13d7b3e6ca8e6f6c3d19154e01603c6c0003910eca8d0a9a810940c'); -INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'5f5cd2ec8519d7d0561d9634e6f56a1fd39d4070fdeac4ba907bd02fda62db3e'); -INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597c16d10234d83d4e6f328a4ae3bad3441a4555bd1f158a0ef305b3e2d58f5a'); -INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'5548be9935807dda0bc96be7dcbf3171a52c6d732a1cf0c45ae9cf8440e59e6a'); -INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9431c0899f3ae4308819f83e1a9ade0f18d451912257a54830a39d0b430aedc4'); -INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'8b7d49a16b73564a22065d89ee858bc775dcd7dd93c48caffb5a01083c74f3d6'); -INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f366c570bd6f32d93102981d706568b0633244d3200d2a0fe666e0ade79e6fa'); -INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'bf4196a163337baf0b900336f56e56a1da928adf69242a26f20a0dc38e674ae0'); -INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20e6d2c049e2f14859230c5e3fc1d6ec62c97d2e02a9212ba55c3b726f54ff4a'); -INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'87c0488feb49becef95b2b5f89adf1bd82880b7edbf545dbf3a583bf034a16d6'); -INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74659b8924ad2e4d4e048e73241851d387f93f17f31fd2c247b48309637db4da'); -INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'42d8fe5f14affb0eea08a1e084fc3feb0d8c87348d311ef6fc65e6a2ca487361'); -INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c24cdf16acc72ae6b33351a6d7ed3b1bc232f716d9124d76d7a22c98bc8152d'); -INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'9d4bf33fe7dac31b2304421294f84a9e9956861273676258a0233836dedfda71'); -INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc51c44eca228a4703343298c9d2fcea69dc759451e5179e1bfa23d71bd56404'); -INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'dfe31f68f0a5912fa8de96452f93edad0b986a69036dd39cd36f86c0c4016e76'); -INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86115f2a521f783dcb6c831db8e715328651feb1d5a2564bcf1c11c7fe3c608b'); -INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'57651b5123d23d367cdf51a0e9fdd5897517cf76f1895e4a7846286e46fce31f'); -INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee8ba445dd321ed3e4d2ff79a57fff1749f0e761b9565661ac86659cca380f8'); -INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'252ac32cf228720bfa021bd181b1f2f7ac306082c0316e840a54f7c6c01d88c7'); -INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac59353bda8e4c0e6743c796cc07eb3eef0a303aad6e0174936d8c48e93bf86e'); -INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'c78c71a5bf7a2320cb6f2c4a7d83395ee5a0c809999cf46f3d8e95d5f92bbd85'); -INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0647fad362a751d61efd195a2ae0d166b1e0ada7b8b3c731beded76919d2d04b'); -INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'757c641891f5400ca737c4d2c0b47f9012e572a3243b8a999e6dc27ed8250300'); -INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90a5384fa361df5c389d62b6d79824015e9ddfd90a24905ff976e77b8aeddd85'); -INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'a8cf98080ef17e80a3efb7f1fc0eca2710642d50e015be3721ca18f8d783eee1'); -INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'432cce1aae2256fc502f40bff93a7f6b0bc66e0b3d62830e3aa52ae43c8a11b4'); -INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'55df58a9117ee925faf6cf7bfe1046586dd022903298272202502b260aadbda6'); -INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'719a5b83898a146ee7f8a78989635d844d9b02ac4ffe4d129b4fb25f79ac8f80'); -INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'2314f7f91db14e636c3a2ef207b8ca52e9eec50e39e2e458c90ed0458b9c3c03'); -INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48a8f837d08858e0cbf6b7ba04155656f53dc56c04253fe99b5b2518358e767d'); -INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'ebe03a531d1a0fdb16480f9ddf81f64cfb3ba9e62fa83c74a7d3cc80a4481e0c'); -INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbfb939ca449ec0aa9c4ea77ab3b293fe8559bf106e5d10de6295861ef8c15c3'); -INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'0913412fef141a63a1b89cecbf3f8e83135a31b53015ecd8ccdae626d289c4ee'); -INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25e90bd886aeca1d89983ecd7e1edc67beacbd6475543f7e469590f27233d39'); -INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'e31d692b9a12c13d94530691fb88d09e12018a8fbf488b4369ec35093a734963'); -INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43548ede4f4f2bbd478161c4460550a1e799f343c691365a9d67b03df92774b2'); -INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'b92dc64cc7f104bd977a3b018e4f814b94bd4a4fd7a6c937b1c97d81977b1efd'); -INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8345684786af1c33b56e370ee79534aefc4abf8fb6c907f17f65b1767148248d'); -INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'7d87a90e14c3d3fd38f049584dfafb4d5d6ccd7dadfbbc273f17c435985ab1d4'); -INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ffc8f685c4013b0050e34e6728b2458cf99c18029a00f5071c5fb52f83be75d'); -INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'518eb67d9830cb3dfbbb3889d30fda989547134016c45601c915784d7b71728e'); -INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e9cfaddae6ad6a67191ccd3fba2fd470945f4aaf79d8f9e5aac686d75460f17'); -INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'6217679754dc7bef13b9c8817a639670f10079483c211332d0230538e875f6e8'); -INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bdd985d94ec0aa64d038931ea98a715d3eeeafa7e1994c8192550113f779c0'); -INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'d2cdc8a7558fe9f8c72fdafde66681d9e4c6228052c5c06aa6838ac28cc32fc4'); -INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4788829ad2b7e3af0905cb24a46d392be4a4b9d2c899b2fc84adc88897878a58'); -INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'110d1902c9fb5ed76e35b359d3555c70c8d090b3d8342988688a6564c1bcc555'); -INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b51fdc00338b75460ea50ce86e74ff1f697654da77af3459348cde8853eebeb'); -INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'96f4ccde65ab834c5f39d29e264066ced3a2f150906f7128528e53474a6b0a8e'); -INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79f712fea9ea973590e317e65e0358384373791863fe2c4ff414429494f6647f'); -INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'57deb2e1a8c994d2140e111f91c8bbc1bdd107c969a7e31b15d2e46ab79475c4'); -INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1eb2e9d871ebd8b28bd593435ab7f583b805aac94cb021203ef3f851e8984137'); -INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'8d635bdf6efd47a4e5bb365d33bcf6337eba6544a9e6651cdb2ce39094207b74'); -INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f845e14c87267e2272e017690ae27cdcb0ee6b5662b859eea4d0e66f84143dd1'); -INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'c8500557508604064de750d03ab6c057a1e364a2b561867fbddea4a543e4762d'); -INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8dcf834d2d0060c024ab767db7cbedda55797a6f2236de8b9f148b5d10369da'); -INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'c9ffbd8488663a571992d2e7e7838f2edac618dd7b60cb19f8c57fe5a222f6a1'); -INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60a4e6553f75459f8eb56f4a9b1a3acbd1a1a99c2e9e2eeac4a0c24351144295'); -INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'574d54d46aa5cfb9fa5c7e53cdd8eeb4858ed0de26fb8324754fad25fb59bc8d'); -INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aca96b16f1777ca6d70f391aaef5b909dd19c72ca5871a3a19a6b7a55c8be52a'); -INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'7ffec4dfc9c7e53888e8187b753c4240a93ee9f3ede6c387a8c112805dbc75cd'); -INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc3668f34897d274bbf174fea35b2ecf2f8ca90668ac2aee511e7a38340d8c4d'); -INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'e87b2613d4fc2c709d373f5b080e7a6c2658b1e58b55728f21695b278666a073'); -INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c28304f8c2a21b57f33781493d08664baa749dcfcc21697437e0d6f8ecd6aef'); -INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'401f82295bf3a2ea75280903628b0b3c44eeb8a99d3ac258b9855cfa0deb1864'); -INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ef32a5dcb79a4852cba3765e6eb17a953d873704f7f67238992953b6ce5663'); -INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'e4b0996886cf51d4f49be8a22f6a401ccded53eba0a8632a72946c48af93f77e'); -INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'857ac60692fef44b58b321f194ad42a638161dd5b1b993815715c39a6d358ffd'); -INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'88bac24b63533ba64b0f1a0b72fd511b05af88e937a37e1b979ea8c8be186cf7'); -INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13deda8cea8eb084a5fd1980d15d06e55f5ce5de1cd211d5cc8f571d434dee06'); -INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'385ea2f7c789c89220fd28bb8ddde69fe3958719c5c3ffe668ace1c30c41736d'); -INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a1db8f8c462aa6f681d1262f4c91982f4c6c83ff4671b386b730e74ecd5a8b6'); -INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'3688153cf2533aebf0f775fa8c0aee8053384acb6a77b86ca32cacae710d45ce'); -INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dabb07a0432bb42e9ad1823f0804e86f73bdad6ce37e67718fdb1e4b856cfeb9'); -INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'0f417a54d86c653edede5a0f277495946584b38cc651bcb3d2ad18884ff9ce50'); -INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03e1f6889dadbfae6eeeabb911168beedb23b6cccbff4ce0eda3b398f8c2a145'); -INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'790fed3e2e68e0fef03d64a6b7745a5ad79c3ed2db6c2e9c9fa5e667f276f854'); -INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce20722e1fccced65fc6a9fa4e20893ee10cc6aa7158681faeda27cf96ce1c5c'); -INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'54a20cd29fc3edade37ad35e91fbb902292791bffd828050d1cd11bceb334eac'); -INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41217c2fb56f2fc7ed5e8eba19ff478c384b490e1dba4fa8cacedbeadfc2b198'); -INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'8d29427a9da803bedca8de529da5b9b90a780ba0b8409ceb2687b3650c46b727'); -INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bdba14052cd37203825b7bac135f52ad7e150b89da2057a3a518902ded346065'); -INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'184c45faf02909eb584e9d1fc57bbdc4e70e9e31a04b576c1aafdeff87bed78a'); -INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50a2d785ee64ba33ceae8c9a884914b29f88a0d1eeb679ca7e42a9c3d9c0e854'); -INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'10838cf8ea482e1ab7e126a4c59f5d567f6010ce1f5d575afb73bcb8c092010b'); -INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9209565129820bad76a9cf64a4d8caec9c9cb40bbf60afee03b904ab4e65ce4'); -INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'e28a8740eca26cf7003e5de30f5a929e32ec5b712d1ec1bbf1fcfe9c0a010648'); -INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48038fccc0a81c64ae0293fd496638bb7f36d286a3834494c73eebd5f4e634c7'); -INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'4b6f93f581631cc98ca1087c406d68444e275e5c42dd3b91a096c79e6670426d'); -INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c60f2ecc1ef6e070a03d36f4d286090d819927f27c9bfc5ad69ad40d363db48'); -INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'8129b6dc8298547e563cbcf84f334436283dbba4ff83f91fb3980121f484d4f2'); -INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'375241f9a4725502fab7b3b0ffe48300198f1b049a97e3fd926376f92d76932d'); -INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'3454705e5a76d1f581d3c7ed471b7ef3e939b62b7968687606254f1e577039dd'); -INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea25fa4f752cc01b9dc2186a2b9255e6ad079e1d1f6234118c149ba4d5011b4'); -INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'a05b06fd5ae3e257fe30d96db4c491f56657a686a08e3130517b5feaa038bfce'); -INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08eeea6f729789425e312ca904743bb096423fe9c0b46700318b22e13592b438'); -INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'6f83399cbe27b8c3ff7c30830abbea6ed3efd2414110ecbb171b06d2f05c42f9'); -INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed5db6371e4a45d59a6d6825e3fe8b84edc9c2392d3927c33c17fa0e924ea1f6'); -INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'2246d41144325360527beb1780e34c567e374fd9ea38fed5381821e5b56c2acd'); -INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd287d7fc8b3150632870d94edb32e8125e1760b7798ca315ad4e4e8ddc8bb7e'); -INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'a44f1024e78e4eb2f689a0c31f452dee4166df1356be90c994f7e9566d487334'); -INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044eba7e3a319df0c2c87e5a70d8dbc349f5776dd101f5d337fa515a9162f38'); -INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'4ef2317b4174a254c9b285b20afc2b69e12a24753b79738c5ed16cf51f0536e8'); -INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f8ecb676d71da6396249498cc678e620c522f968d2e63fd10d7b7f68a191f6'); -INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'b0279073d2aafe426768fecd19c86b2c9be0312d3559972c5a6e68c6e0c52239'); -INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fa1fb6423919317d5f8af45ab7fa80076e61e25357fb7294023ecc764c57e8'); -INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'62108be4dbc01e835f1758345d304a5ebe93c03ae1bd66d23338917d0011f9e2'); -INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a885d48dfca76735008e1c1a75806aa99cfb3f82123a8b0a9458db2a52b61b7'); -INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'3577eb9ac451b2026c5210361a046264aa3865d69044d001b3968bc6d67b075f'); -INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f6dfdb8ae2d5489c8e8e6ba5f030c143e497c4fcb287e93f396f4b3ad09242d'); -INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'dbe81b4c2ba98a9b7ef0a9b86d184c7b81c3cc4a4c935313481ef2fefd02849d'); -INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9bfd0a84346aa799dce7a9353954d91a4c51fa619af28ddca2966ba38689d85'); -INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'d5e9985cd629894f5c7f714fe284a3cd1e014481148227f466797f7596fcbb2d'); -INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc9a939f5356d0cd2fd82c78fe4397b7c176c72a64f01d9bf85273bb92b0984'); -INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'2624cbb800b08b7588599118b867bfb390bfbe9b80309eb71c0c8333db57826f'); -INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c0587a6c4b1ab94e5da348d00dc54651dc46b9df9468dbc0d4f9e3b233ccb5e'); -INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'734c57ff239951864f1a2230e11a301ee1afbb9a2a4459788f45263be2f83e4a'); -INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03606220538fc36da3e7b471d1793ad7e6812b62690a05b4a26d051630d0a7e6'); -INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'ddfa2778c4f7092dc2ff0de610fd795199c9dbfbb7e87572b1423936ce0c8fe6'); -INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ccd4d5a86135e407149884f391738d5c465ffd433f5646a984cc03a7286ca5e'); -INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'f7f63b9e079232bdd2b6a6ad74a947d8666976702334e91410fdba387dbf663d'); -INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34c668dd5166017f051a324dadd67c68271eae5f3749b5347f78f5bc680d92ea'); -INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'fea626473879e0938ba3a5fb4ebc7c6a5c66c9a9d124d756070281eab6264250'); -INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94f8851cf6dbead80b11a00bd4c7cb58154f440ec19a3d86617ba27875c89bcc'); -INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'fe190da1c7c7d7659f8f235e20f5524c1a6f78330b4c41eeb8b3eae85afd967f'); -INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ce7e69c5ffb8b7b6c4b51201699d68273b6d085d611bada43d7572492fa3b75'); -INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'36b0bba5767a67e573e96bfb1a6c80833d252d2018e68f5e081e090806bbc16e'); -INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'801662ae0f533376965f648750b0c7ef42daeef78241cad02deaf13cba7fdad1'); -INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'f75a7c7121d4d2906644c8cdde99afe2e996a2cd764f4d4273ba4bf925f317ca'); -INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75e2a561b062c8cfda2947ddde58ea8f94553eb89c59e46f90eb749839fa6a5f'); -INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'cb0c4fd1d9642804acf161e5643809106b182f666a4f8ccc726796b91ca1c709'); -INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'654de8f6b0592da57bb61cb2d3bbc5e1832e69cd68fb4a64cb7a8f21fb60a969'); -INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'08290c7ffd74a10b9d85da1794729d5c0dc7de0e6dbef98223ffbbdc67ceb9e0'); -INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2fe311734c3c4e86927507324f142268eaab4789ec642e0a01b8cb50477d70f'); -INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'e22477faf984b23a0d6005e0b59f4be76e4e033a5c505bbcdb0bb2da505caf6d'); -INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3368e75cb35baa286643e140341e2f861e7f5485fc061ab1d98d07103ea06a2'); -INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'f857b5fa2b0ab0cc436af8bfd238b2a3a2628dcb0efbc04b7307178c905cbd3f'); -INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb23d0b6b7c8b3ddc663d99d851873b2cdc35a0c9a74132acd66ba26ef14cc67'); -INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'50e24365e4164d9e3b868516b2b23a7d869b096051f3cf735046465f88814721'); -INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93d703a155ac4402bfdc5e9720f788e41df1aaf181fa147ebe67465b1ad47944'); -INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'49db494484aa8aa705a1fccaeb16f5479dea3706234a5e4c824ed821a922f9a5'); -INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13cd048dd45541d14577817103059987e37ff07d94792f5cd4c7ae8c5228f3eb'); -INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'110915848e6fe9e4c821aa856ee5fcd24cd2a86b9a4d2aeeb08aaad766e8b656'); -INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'770e5e77bee3c25819ec590b02c61d2922acd4d54135b475add1336be8b5ef4d'); -INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'67d9bff31f3534f24aa9a073d8dbe4fe324ec917a0710da45208b037fdea4917'); -INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d0ef27bed71488200fee94620b69f6b5c24003c1ba11fc997c98d3b9d8e917'); -INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'267b938c5a7d943d8c32b8b3beeab835bf461f36c55cd96e74c515bb8eb2c409'); -INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af831bc45b6e6ee542c99da1ab0c1d2a1c5200a5a7e26a5cfe51657d42f0fc2'); -INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'ed857180b1648ef8e78f318305fb500948b0f0119b5670d978b17ab3f4c9c640'); -INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55907180336abc07e15e254398a6fb88ba1663aa8c5d118bfa89de6a1d24d377'); -INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'0730308bd43265c9cf66a959f2e5bec8b0c3e7376b86db469af4b2fdd9fbe43b'); -INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5651034304abadcc310efb1b477717dc2486ede278b4465ed4580d9c264a1272'); -INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'f7b3a603f32a4b14eee4a33f3ef884fac441701f1722668459b81633721efdfe'); -INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0110f1ca989be1b19716dac9bcd5fa2efebd53cb9e90567643c86534aae5c40'); -INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'8f8693d2df444c5a705746c89c84938fc9cb474327448fc81fb9bce511f1c16c'); -INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a8475adafd0288780b176574d8ca082f78d45c8fed2bd9a6adde132297bd3cb'); -INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'b6ffd06d8c87643f817e32c2314adf52d193dfa2f7a95cd9210bbe20920e60dc'); -INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'312c6efb9396b6a9a1c8ee140fb37aaae6e788e9f33f2d986d7a0255bb1c25be'); -INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'c0e951235fa4f58cff2e327a92a2468a55caff1e4af70aa985534bbe08331df1'); -INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9f4646ddf7805ec75c7976e1d380659c25de9b9bf06d1ee0bc7fc7f74830424'); -INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'0bd0ae8de0ad9d23b9ab4af9dbfab3822a4e69279343fb7692a30035310e017f'); -INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bde3bfbd6dd2e86b98194ec43617bb69a53af273049d531f002893ec8d308896'); -INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'53bea0bb37cbe9e802e573bc98efcb8f6e548fc7182302739e458bab315e53cd'); -INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d90e92cb46b0be9ccc3d13328b78b543db15a32f74b4b42d516bcb08917132'); -INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'d65f02ac05ae37954d39943e9cd350be29af259d3505253560d6d1c1dece5c2e'); -INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'572d28c545c589ea3df70655dd097e97ce1c0ae39615d398e978c114b07dc257'); -INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'7a42ae03143e0f700bd0f05b4a21b6bdff8d93905eb20fa1208f0c3ae1dd2002'); -INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b585fe4e5592ab4f7faca3700c629caf33f5fa3c52decae754c8cfd35b613b'); -INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fdf20c080068605d9225f9da1a6007a1239ddb1eaa2c70b41f9d0d7495476bb0'); -INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'813cfef9b7c6f1908c9f53303aaf10f058fe2499f119c27394fb32804a1f4bd8'); -INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'8a11abf7b13e6e1acaeb5ac1faf0adab14ee119ac69bea0eb87f8882a22b6d66'); -INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f87d4a29166735d39551a3f9370043dadacc920f01ec21cc2ac4c2313e295bc'); -INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'3663c52cedf66166e6b9c067c7a66f39f685a24c40d802763069fa3f704198b1'); -INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd564b65447928ae9ffd93d7daf13947fd6a4dc90e99afd3dc7cc2e57615ec9a'); -INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'77c3dd8918d083705b2f2aa1d7ee047c501f42f28179391587df22ee012ddb18'); -INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'333f75c30484462892642a33d5fe9c864b3d77f9531bccf3ccba6b029b753ddb'); -INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'5d702ed47db10e673c5e2e96feb2463c84192ba4b99622de7459211799ce76ee'); -INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cda7e4af30f7d49450d9405b2d02fa52b5dfebb536e9bf6c2cdb57d78175e89c'); -INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'a93efcc617d63275187523951f555c75aa1cc5033d710fd075070eaf345ee0a2'); -INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5b4b4b08a595ac8eac98f655b2150d6259c19cd4836368c5609e07ff52f5bcb'); -INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'fed330cfc1a305acf39a44f35812d44c676c6846903f59104c3dc0a72f44c018'); -INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d99ca7c9cc6bb2411eb8945f480ce3289d28fa0c95fa099c9103ec3702a33022'); -INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'38589a544c8e8bf210a167035ce50efd2a6ec16ea8bd079a735064296dfb57a1'); -INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c7fd8cac1e3b2375fb0935a5278a2a1f8657b0b1a8e7fd488f510081d7742a'); -INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'0f8e365daab0533cd2864321212570e145527461e6ecef689762e7d2625fa93b'); -INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e4bba471c6a6c90476738551eb8df9a23ca7f5620ab5ba1a4b6883e6dc43526'); -INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'0701119b894deb9e64cbfbbbd526f86c6c46a713e42a20fea8c6267a5dec6cb9'); -INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b32dd204942122e3ae87e1611ebd2400f6df86d4b31c1e51b627b8cac97dd2c'); -INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'88748bf27d7e579d67262b7f674ea6a45324c92ba23cdf7091b6ee0ce94bea7c'); -INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a0502cbdddc342f45be404fef8d46dde5459477e507172adcf4879795995ae0'); -INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'d192fe69ddf53d06f8bde96558f4434c4a992e0f7147739dd85f231655a0ddc2'); -INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbaa8ebe7365b203020cff0db0dcf7d03664e19b408e399c2c73b9468d92ba33'); -INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'252c8e182e2e8161e9b8a3a7d62b474708bfc79561f10fb8be95940f01a2f85e'); -INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14b54f1c26c3a77f43a753978a0031afbef8539ce73f25a6d5045e1d079be13f'); -INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'adbc8b8d591395ecf6e8c9ea9d7068e57dc3641cef31d2219e529176c78c93cf'); -INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19f5ef1456a819db37ebadaef27633b15c40a8b6d79f069db29003f160ab31ba'); -INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'701ef9ac3848fa2924e2a3b62ec0ee102c166209bc407b5d909202b094e8dea3'); -INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a23ebfad2058d4920e87b206b3c73425fcde72e247448ddce930dcba752b8387'); -INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'95e3aeccfb50f8cd1acc83deb47ba5120665a49aaa32e46e11c21c0afb9addbe'); -INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79640c7fa78e8c1e5980ac490b6743cbc8382896a8be15a6fa2b949b5bbac52d'); -INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'739a08c11e820b8638e694efc23f8e1faa8595c554b39f28e9c7cd4548802cc6'); -INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a615644bb3a0d6ad91cd43b0ad591e11eac4c7c6009a28129a2944e4789b2037'); -INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'e71f8d95bd9bc166401b359feee92d6a473b754a21e73cd407089959deb0b5ed'); -INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa72b55cbf48365303e7b40db265f1d2e1e52c295bbdada1b01b43ae41ca2165'); -INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'2d0bd48846478e8781cd96d0d29dbb906d73218825a6fbc3c2d0aed9fc7f14c4'); -INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eddb0b3fbb76518f09fd378eef6aeb0686ac59b6906a3132de17c46af55bc4'); -INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'0a8b890c079a7a72f8aa145c8ab1a8857741fcef14c9372f5dfa238b76865e2a'); -INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24623e76da2a67d672e2dd3e366fb65d2461facdedfa440e67a8caf96712a7a4'); -INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'48f999edf6d3c6b7cb9ec2f61180427fcceaec834555d9007405d028e5bff15a'); -INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3af6181af49f4488e7ff85d5277527f406505e2be054681d527f914a41d49da'); -INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'9765ae51d84c376e38ac2f5b9cb8b076c6c3f7a6dbdba23ed2e2df2d376d92e6'); -INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b8ac8dadcdb98e015e7a45af1b6e1e84066f7d64b265d38b50643945733ab5'); -INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'121e240c442e1d9a9cac1e334b45317d0b973499ad34a06f0033b4a97984fe42'); -INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd0d8338a03b933b4cca3c4b5147feec312513c72e05eebffae8f1edd826cff0'); -INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'384a210142fc7cd99f8a9679b85c6ec05b380af489e3f305b4ab0bff97dbbb79'); -INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'deca65b1aeaf3b549d219d8bb7a19e41e2906f85a8e3625328a1ebed7e4b89d5'); -INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'b3501d6691c11a2c256d692bad417d461ba7aaa60581f22a5df9151360f59e97'); -INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce66325cb1677b0d7bd8b8cd69ff4e992d60c160bad470ea5ffbb8919e0ab4e'); -INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'cf1ffd5a5d16e2fe393e37a9fe1b2312fe07076ef829d9f7a179e94f89a9c300'); -INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'410dc9b1d4a186afef39d24751e3d5ecdb43af3560b21c4e5a490521b8d89539'); -INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'3ac16cd4ba4ecb152788134c0d41eb7baf83539e9ce4eb56eb14a27571d19b6d'); -INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b941cb4ad5ae7f3ebd9d394b95123feea7e258ad143bdfe91c8b5ddd0dbd3974'); -INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'059e165056609196a5742cc6a5cfc67ba6b4fd08f5eb769f5d461848c16f35b1'); -INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a6c5578efa3d84810a12583e21f476df4b3403b13652007ccb089a598fcd695'); -INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'caa3ab2beed9f5b0ad47e3ea1914b99adc0ef56aea789944810a8b719b5e3f3b'); -INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0d17d589d71c6097850e37b4d37b78bd7a93a3013685f58fbd57510ccec6193'); -INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'b47e0b95af214f16c837ec5f242c6135deeca4b7bbd20873d1f27f873b96642c'); -INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29ad350f6d96e8391eeb7f5af998c300ec83de68d59dd420d41a8a79c3658188'); -INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'0c63e23ec7cf5874b119ce283c48d7c384a6d151de373dec4fac08a878042d23'); -INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f08e30fae779e3888a5644e3c1a09604613b74de893647f24b0877b14d214ab'); -INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'7eb594f44b42fdf3beb868efa1b9ef889522c59d6b1041d6090b293e838daa29'); -INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b1e09487682628be9c52725e359f5462118a8afff2c8a0bdaf1299b0d848a2'); -INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'ee56421d1c60fb1524691a4879a4e3673ff54db9d0c0f64bda0927b566dd140c'); -INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbbd5f87959bcd54fb3c376630bc7762665944caf815e18e62735ef0edefd198'); -INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'c6e0d5b076004344f97f7a9749fb5de13592c2655f49a845fc452485e94431d7'); -INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2555da0b640666368fb10dbffe9127e9bd562177a38a32874cd9d6b68b10dd2b'); -INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'a6ab125671edf06e3f2f731cb52740863f3c552ab5de99eb6f35902b92b2c888'); -INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a3b878ef16419b047aacada354c8b692ae4a2cf9cafb90b6c533b5279607359'); -INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'93c2101df2e30f15b98acaafd7e0146f3bba6046a5ee95867b072d53cfe833ce'); -INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'281ee6a842c96c8f6847162e9d3ee3b39bfc0625942c52e9f62e7e499b37c063'); -INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'00c38bedb1647e3f675469a03c614423d6d9225ceffa373b5f9771ab7dbed5d2'); -INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'941df8dad23f98c1a034e26db3b135821efbb80b272cdbecba141b193520a68a'); -INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'565a2da071b055b99fd7cb3101c63952c39fb26fa471329768ce4dd7ade37d08'); -INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6cfe43b368030e9cee8c07579dbeb2b2ab3049eab37473541a52468eea97304'); -INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'dd7bc672ae69ddad9af6f85f56b316b74588d82417f667b0d11933df74d59350'); -INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f88a531dd00d04cc0b7a343748bd73eb6bb8e83a5eadfbcf7282a9b3ec9c4d66'); -INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'68a4e1f42336d2092a69de230d10966d7034f94872e62532a9a6769c49964f3a'); -INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79364cb9020ab800b61e9e5a3a3ff61a9604aab5a9fde46e204265d18fb1794d'); -INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'b71dd3a31e24948c312b7b18946fa23e0dc1da01c08d829cfe3f56976a72caab'); -INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15321de8c4e76d1a569e5f1de5ebcbf37455fb02751b83f512f5e435876750c1'); -INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'f8b393e6784936a5a7706d11d4d8e67e9d8c002b41171dbbb68521bf9622012c'); -INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16ee452133acfe45ea32df7b48daa938338d1801790dd52c93d721695521b5c'); -INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'3c1e5730c6b870a10af5ee54321b4685040647d5c9cbffd7677b95621828d7bf'); -INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9127da66c9ae509aa9444272c273466b57f8f48fce9e436cf7cfbc9011a3274f'); -INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'d1ca3796a3ef49816742466bce93225dcd7d1fde02b0d0956fb3b2908ec6e8fd'); -INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a51826fc79b8ed55614643fdca253a67a2a3110e2a48e39d2f77c378ce871eb'); -INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'1051bdc481470bd28d1dc45b415fb473e4ba210f6f3b1cc44fe8ec5e63970346'); -INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c169e13b5e294a8e0252e9bd14d1f51c0dc4d791aead1d28dc8cdeac428fc85a'); -INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'b5605aeed6105dfd5d74c63b10c32d06896da667e71662fbfe5318c99a32be8e'); -INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b385ea93ce741b5b27ba46352a005a0b0441f67ae27359a728dc96b206216e2'); -INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'0bb71a3b2aabda320087fcd69dd34cab107b3c29482cdd928b96323976f6b989'); -INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cf422a0cc44c3a0720e91143df3735267dda998a83ba7b3e5b32907183106e5'); -INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'c129ff3dcd683badfc5cf205444ca921c475a82d6ae4a6f60402509428bcbe8d'); -INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ede8ab316b007fe0ae75ea437f3fc3e1a1cd30baec67decedb25085222cfaed'); -INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'c351fb90cd0d4fc1f9cb0c0756ebb2819f3edadec790c8017d7349a46ec47f56'); -INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84695b7be0a74d046b54be3b871d71d1b3adfb945c843959070d07d9fc9037be'); -INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'6a037d65ff147b07a0bae235c3c5d835997f0e94d0c1ea656ce36e7ec756d8de'); -INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bf444c3d042ddd4c093b7f3d890a476302ca50f3638677bd8c0df363b3df859'); -INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'b194e96e87240f2c383295ce5d8c491b4f99635ca07f0c68a07b671737a02f0d'); -INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebcfd6c7b0b0b3985e3f41e2bd432e6ddab00c33e0c97b76b7d9caab2af8de36'); -INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'48fee8fce667da74f9c52375bc66064df95f3db6624c973d061a8f9a59e64ff9'); -INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abdfa5597beb55cfb6407b6027ce318cabeaccab20cf021360022104b3d0030a'); -INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'eb02a629ab74dad6452d851a43a18d5b7a034c33406c7b8cebe5b04bfeddbb52'); -INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520f8468d214e1314f21e655799a12637ac26584dfc4d04ce24dcdfd6bd088fe'); -INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'b2b64ff45fd91338930c55ad78077b55709238e7c84f3c03d0bf2615c9aa0dec'); -INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1573d1aaac046317d1640e3629d44599b3c0db344a321950bde9f7ab5aa17faf'); -INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'f2b247d938213799e86bb0dbd55c5ce9b66b125ca97ae73179536430447e8354'); -INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ab7bd959196794f58c31dfcde0270f0fe3bfa72ee2e8864126d2050bdc78beb'); -INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'6a769929e9bdcb46d4088aacc0a9c495479751366f72a3b531942b199ab3f467'); -INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf282f0cc7eabc711267a683a487643039dd80718d25979cb645fa8f0d568bc3'); -INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'8acb9570201d6f6527dde3fccfde147854a38cb522a6bc415c733f822a6e6723'); -INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7b7d19a516c6832ebed8445790a0654e22f2aad7bf86069e5c2ceeacd51a59'); -INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'bcf298baa933ec181cdae4efc2bca3b461d41c40b40e0169b62f85032d8bd510'); -INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c5ee4ea2b42d7cc8a3dd7e6373fa02c55e38b0642e7511ce072b87338165e40'); -INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'d1ee71d80d563d577fc16d763b469be61d0e71b260a6c308316536bb10fe0c5b'); -INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d74fa939610bef85050dc71e739e15e4247cc346c4a38711e5988396201aed3'); -INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'9f8766a41a068c176b22900cba464cb80648e2417b40ed87ea70ad02622a6169'); -INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e77d59f1fcd429e5d2a2c0aec6805518254ea06509c332db703c056e625ad7f'); -INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'bd97b7f5daaa9eae781cff5f21fc5d88233f82792f8aac8f49aaa9e425b1e2a5'); -INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e2a372f4fbe14e2d37de767e5359c654cc150d7b5a65358c5658938e1ead47d'); -INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'228023bf140ecc80af850a1d0afde1816af7e4c5fe073d0cff0cd65abb2f3178'); -INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'465e116d3ffa9c62071e03d50d4a1e13996de3801e02380681eaa2a9cb59efdd'); -INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'e56eae7e6a14217c7296e1792bf9f5e7815ef4be48f0cf31c871554e5be3491c'); -INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf0d3bbe38dd9d16b57ec1e375ca2915eaffcd6e8350efc7668f4448943fe47'); -INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'e376f155244e3e47b2e38ef372428e20fd804bfb9c61a5568521ce2ab040aae2'); -INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afc0b7348068437eaf707453030b049112344bf02f25afa84017a7dd5696e389'); -INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'196e997e821340b8b2bdceafefc9ebe03421d31f95e86eed0483ac8bfb4ac0f7'); -INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7e5d93450507a4d28c3e4dc4ce5917c6d5a7fa1032e37c632e1e9d58f56463c'); -INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'6b7402bb99fa27874a4403285a2f02886b019700955a0616295b05cd7f1fb97e'); -INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac805a801c03da4b1ea3cf390d8854a75bce25967a845f788b6986a2369d435d'); -INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'95b1e949510b1277ed93497c8849ff1752c3b336d81a2e8bfb4519d0b9557c4e'); -INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46155efc0eba28bec8d32cb8226d73f37a23198cbc99c1bd445c380b1910b602'); -INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'3aa189adde4a77caeb52702728a1d1e674715a414f194914502a14999bb84532'); -INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a34655637f60532c5c7d97e941be105d6b2664ffa152403f48547c2661b68b'); -INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'0211bd21fe905adf32fe757f565a6edc34d92e6e0daac8d4e306f3ec16eb1e88'); -INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2709e4a0ff674606cb340f91a4c56d533468392b0331e2b0c1988f9dc9338487'); -INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e8d3a52dc566a7889c5c4a60f48ec1f991a1ce1871dd64ed0a4b685373aa41e7'); -INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8d3c84f4bc7724ebe7391052eaeb7949dff4fe61d15f06030e4b2747be4b9f'); -INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'38be8572bc2063c38cf037e745be3d3616aeb4ece9bba8bf9d5a76850396a5cd'); -INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942e836e870968b5d1006074519baab50f80dda93d44e5c35c614d01d119b93b'); -INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'a0aacd6a8d16d37c114c837135b197b7a47c067ad8f0c992f4f4b4e8fe920331'); -INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff560eecfa437607176a6a536cbb0a7371dbeaca920a6cb17c906146551b2c75'); -INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'f76d597291de43c14a07040c9b6f0fbd424e0e72ea56d7315a719ef8ebfad12d'); -INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e50d40e3365af2aedc0f8a0b048b4d7aeb5e6e58c2ca031316a1e0ded56eb2c4'); -INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'635fa6adc8ba3a1a5cd33902c90352ec4b0152bdc344e5a70942c2a01548be65'); -INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a044aae52525ef4f90095b5a181a72537d3de5d105d1a752973c2e73ff96b448'); -INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'1262b146c96420d4572a1ae74f34a11425bc7a6d7eabc311e62ba736d28e464d'); -INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4481c8ba6363c0f1ec9b0d2c214e938e15d0bdc7171a2e62816ef4a0096ac1bb'); -INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'15a6f1c702034a728ec69cb44dbb8bcee7b0abd292ab9a3886d122301350836f'); -INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e3d8fee3d92772e3ce8d24db13ddfe5d5b38d952b38409ff6aa281313443156'); -INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'851c88c4ca33c90d8b62dbdc3dd09c945361bae257823f737c6784f27a0f562e'); -INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10bf1e4bdc10aa4b7abd5b02a2085d1f3acc053676f548717a362d50417d608f'); -INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'6c81eb71f37e59b7e662db6021fecf5933575f30abba5e58a1fd3f0a04efa0b7'); -INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68680f3c451ffaa3dda20b240006d2d8749d8e6fc9de1c1838f0c93036aefe49'); -INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'3aeb66de0543ea3b63be5dd661766f413530023be4c9fff3d4824103a4f35962'); -INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45768d01bf6166719637b4642c513dd3f6f1ac7ee95fb7db7bd1aa6bb02de2b1'); -INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'51df58c15ac987605aef89e9e0fb2a142587eb41c4aac7fb512c7a42085c60bd'); -INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'744daa08c2727f528343df5907002d3e8f74cd246b80714f9b47a616a67761d0'); -INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'0df6d9ddda9cd88405e4645061dcf23d9d2d1722ae067926df073eb522cc6469'); -INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29145e3848592ff7c993e5cf568a576163ab0ff3a9e0575b7f85ea157d0d2bab'); -INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'e0b0c6b451315fdb54daca7f5f8f45c5e04600072783fb868c4968c655523abe'); -INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f0b9e81a521edb655ba542ddabff05ff95b18943b7762167608b85eda51155a'); -INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'f6283fabfc29c88ed373ebce196d11ad52ecf65befbf90b1311feb61052f9d2f'); -INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'864526d07dbd44776c797b5c017c1284ed25639bd564a5bca838aae094f65405'); -INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'44d8462a1fe2f9a92fbc84644b5e575beb766d9737b153931aa0abbf2f1ad074'); -INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9982851062dc8963db4c7c86347843c0a361ec2d49610aadfe4b24013d3d613'); -INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'f016f2f0b02dbbcc34826e71a41160457d759004c307824ab96a7a0fd083b0d0'); -INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2717f990a88d6806425f8823da0b541c89c43843f4ad30c2149515747c78dd56'); -INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'69a5a3bad82c047f5d48d48485a8a3693bffb6624980300f6e20ccb17f7b6ab1'); -INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74d27bc7976dfcb915e56fa3fdfd8f15fa166cd5b528d4f30627284144011097'); -INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'80a0c577b98cfeab23e9d8012aa69aae2bb9c3f26a465c1a0ee37ee0c8e3e8be'); -INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d6af6cab373181d6c7764fc165bf1db3221893a3c5e13cde310431577abb5b1'); -INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'e322409ca174c2988aaf8301a5d1b2e28ab6d8cacd25b072fe3c3e170301aa80'); -INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'064ce2555cc2be57097ff8de299dc6526261ff5c44591c716a3fa55cb8e9b4ed'); -INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'21f7b04a7414237c75926b29382bc38c80ca5e5a0f0bc40a522c6bd260301f07'); -INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af963b73017ba0002a5481da2a9175c6fd71335accaf771317868f290877500a'); -INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'bcff6cf3db5802b852855de8c2b1a7211c1d7e4f24783748a56ccf950ebfac1e'); -INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1917f48f39f711d35a80bfafc10003525d89730199e1c333a468abf0030a8e1'); -INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'94f72679b9e1dcedcfec27edd47b3532b489dc439fc3aa0b1e24ecb35ec91db4'); -INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede2ac3a98eda4f5b2514394981ad2da543fe49208d0c2b54608d9332dd66034'); -INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'c5c842af36183e2b34273ee4a01ccd3d78a7d8f2bec7b55d7a91c54385757cf8'); -INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21e4b0b797c6d65666938531e587ce399f8f61efad208331ebf8b71c0ea3588b'); -INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'537307138c080542d5c63f6759a90ba883c5795f53ef8855fde3f90d041e52a7'); -INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd3b3bd569c45d9a1d9324a1ca15e85c6ea6d88d7a3df8ff7695cf7b5a7e9ec1'); -INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'6d38878b2350ac01d9156d1db542345521ce4b48a611ef25a9e443e6c3c29b31'); -INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c0ffd6791ad3957f26128e1883830f7e97e1aa2ffe5b936325e179c45d6d70'); -INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'aa35e9aca0eba4c43fcfec2cc897aa0c1815b141a54351b90f3a1bc896accae7'); -INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5163c09c77ae0c6ad92ae298f7b53ae4d452e2ff5cb98adc50c9846804e5c218'); -INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'9d84b506bef5608019dc3663c6eed13628cf7d3ccc6df3bc023980b12866e697'); -INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82859ae6dedf1fe44de5ecf15a460a9f513e89fcc8856b32a5c5099007d71976'); -INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'3ec593244036782c1840c3400e925fe46c169228e0f176972be4d10896f4258d'); -INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b6aef63d1b84768311a5db68c7f6d2ce7f80815a21b820db64690cf6f7d5422'); -INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'e20fdcf3dd182261491a77f059b0c5c4267b08920a4a439d470c79df35472d1c'); -INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b547d119a8d12fa80d3dd3d62d493c52e9ed981301df832a3f720795774c50f'); -INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'b311fbd959b3b55e52b159ca070c4351569c688cb705b492f77b974c8a43b5e6'); -INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c0c8463dfee50b4a24924de567f1960fe4cd5252e13d7752578754bcdbfa775'); -INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'baab490dfb829500eb4da80048423533384f7434602461a19a28cf158a710ee4'); -INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8332906b32caa71af1756107abbf51a178e178096883bb6ae7ddf60c2ec569e4'); -INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'1d71b1330cdd16a46091aabf069c9166b359439eb7e7844d7cb4be55ad5d6969'); -INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5de08f826b05ac3736a8bc0f8d46eec682e42606d58c87263911c5cd8e9fa95b'); -INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'ad54408a484576d17d2b099c8ce668a58a15b03e8f97bff93a5bdd2c044afc11'); -INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947a168e3da5d2e1bee450ca962218c8faf78eece16d288b93b1bb145c5f768c'); -INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'e0c8e9450e811a40205fe7eb538d9d9aee497652c971bf3d194a03e0146ae976'); -INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76aef61c5b3203b470d57476486cccfd6462c4263ad0162f16a3aeb2099cf5f9'); -INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'288d9147d780d12e0dd4b3aa9d0387072f99906c2bc9cb4b110d01e01e8fd6c4'); -INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1a4babd5134df984bea588240d63e6a6f42af6d51d63cd597e73f172429b2a3'); -INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'16ad78081e519e3f6aa9ee2ed6d1f8741ffd588e8db0e0c5f90c789d8b433429'); -INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fbc3fdc5c80378cee9691f3abc1a1d2c5d39b05f80cf8ddf973c5c0e95aed4c'); -INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'d2abd872706377e0fc99c2c8eaee5942e40e825823235a958c992f6c82f39a96'); -INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'067aff1f440155282082dda7db16e5e840ee4b2f90fae9f117df579a142b8fae'); -INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'ec3a5f773a31f87fb5091a9f8a9945c429dda1763cbdab8b42c64f321280219f'); -INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba7ca0088ede2326098d0e810bc553008a25d2dc6ab5dec1bd60a7de740a3899'); -INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'c36916a511174c2da8fd8201fe018101401e8d13bdb7e51503ce2b4bf4fed395'); -INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4615aac517f010d16b6bbb0ec3600ac5aff2eb9c4e51b18a047287953955c0'); -INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'4c1ad7bdaf49f7a035ca8e370460d378f7794ad666c96cf62cd5c7dc2c610731'); -INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8241f611d83e002970970f2addd1f86ac8d3d65ef0ac346666deadc33d45262'); -INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'d5180578bfb3ef2a2cac1b8bf667517f11a7161bda0c2ce6d8d6aeb2a3955136'); -INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d102f408c688ea3c076be721e0606a2df1060b3eb091457861c2534bf793ef08'); -INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'f2797b3a3f3cdbd50d451c944cd4b42c07fe15d7f852f7f901e6f8ff74572ca1'); -INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6178d1818aa2abe4ff3dd8ac1e17823d15749a078db01b265285d812a6d99d9d'); -INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'08f72c66b1599e1b5c2ad561a6a7f55367d292fdf3c02b498b659319b4c7adf0'); -INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a0152e92bf54e38017bd0e3515457d901cd2bcb22486247cff91761b24ac6b1'); -INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'49415db02917d9263231ae7bc2da08a7b9f29ffc37532cdfa475d67e1c2c84b0'); -INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9393c16953ac9edcf0f1ad80bccc6ae62626a47fad39bcde0798f1eed2bd2b'); -INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'75f23a601b5220efc335d18a14724d8a697067e5675fc161f26042d82169bbd7'); -INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'718d538e8db524a533801fac8796ad4b021e43abd151dfd296f72fefc06c52e8'); -INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'80f8ad4737679f999d9ce9f67ce59c83e9cb66f9e736d80cb07799cca24e358c'); -INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3731116753956ecdfb561747b8a53f85033352f1927bde3f52274d6884c55aa'); -INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'474935a9cd3b34f711c9e1c893481dc4c4491f0201d7652cb050915913a2f97f'); -INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'763a9d22a3aff3c35cd1f1b5c9f1be7bddd3ba250d6c474af21e4f7d1fc6338e'); -INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'0f0e04a46efbb3e8f5b38cccc5c34bf7fb2c1de5d16033203bb50e689f79b98a'); -INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72dd27cfe564860a7ab108ec863529df83c779a4648991e8bf78b014a8bbeddf'); -INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'2a109e6004f63dfaccc23508a7ef573e21436ae31f1d904ab5cc43561868cb96'); -INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55bfda5a8be7cebdcdafa0306c462ee2854d564ce3204538f5a52b3fba5978c9'); -INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'12fb319a6a67049c6fe9ecd015ac484251eab6691dfecf4bdda691da424fe780'); -INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'601184f25ed0ad0790dce52f74f0aeb2a5e8e346eb564d53aff39b3ab38445d7'); -INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'36eddb9015fee56764175a50fc4729120be11928443431065e7026cd64c9d6e9'); -INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0356fc94e22ee5b5ca931bba0ef120409b95cde8241c6f6a02b26ec1dfd78ba9'); -INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'a6d686bf8398fca7caaeaf3f624ccfaec5d47e32c268882cc7829042422ee8c0'); -INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'518bdc99280cab3b0214d14fc06304b0fe4478e21cf18e973441a834313039f3'); -INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'dce80b74ec716594740fe19ac4d60a771fc77bfd3b04fa6528fc94ae8b4f6fdf'); -INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa912ac654c72b109738daffe4b074efce5fa89e5115ef761cbe4a6a4aff5a1'); -INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'275192336b5f10e2450fb1a95b80cabe08f0d8d82184d252ba63c4f064a51a9b'); -INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcc3a14328a7d481cd9421a91ef5fe91c18943eca3b3df0eac11194961e9608e'); -INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'99f1acb981a47cc5573616c11970252c47a6ec5f9c22741e8547df776438ca32'); -INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'369542bddcb46cfe146f4aa17e2dcb1570b3c9c030a662670164b3f3b9e0060b'); -INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'5a7a63e351d6b25ccbf8c82cc11e900d6fddfea51c1620d4964c527ba5b423f0'); -INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67dcd841d60878f4c141a78c2e79765b53cf02f6e079a46775d43a0bc034c797'); -INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'658c7cf29eedf2e85325dd9a01dc6b4e986aa48255749ae711c0ba779d8710c7'); -INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67695cb8559ee564ee11fe61f2db26cde91a720238828f28e481698a869501ee'); -INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'3cc16721b1fd9d72c618d62d66821a698258aa1d437841707b4529521a591575'); -INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7184dd79c19a5c393989120d109264e2ef4a8f11c95ae0aa190266faf85d90ea'); -INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'4147e8be9455eca400e7e5cd4f6d7d6d2a3b76ae074aaa106f3dae409b3abd37'); -INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23b20f686956df81b4e56c112c37c45c8ff9c340f828d5d1262b1e3dca1eb70b'); -INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'04672b25a6e7fbc647308029ba6e1a527fa35bcf1e949749b0541fabbaedf866'); -INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6804d7df859018a0d69fccc4078a62d03275f0d8d2648d1608c7e5ce8fae44ae'); -INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'e54d0e60270667d868e0ba17051df9c1f7640ef0200a9afb5a84d27847c7e6bb'); -INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee180efd54ba58277db3826bdab76a0ed0691e9647969884f173bd6ed99ab322'); -INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'5c43dffd8a2d615b43792efa30097c484e961caa4344650212d09e63431dd81b'); -INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3093ec75637cafc964640d6675d3265b6f07ba7de9ac7c5ccbb5536b72653685'); -INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'3c76597342cca10fd844f2d47d7aab49a76254b76d5ba5377c68e8a93b07d03b'); -INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca9f33d7bed7204ffc10713ea5184b35abb8d10f97e215d2717c57f1b5ad9816'); -INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'43478c4bb1c377f71d0ab7d52e9d617d3124863dfd985c22897dae66cbcd6b35'); -INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d093dc2b7337c237fd4cf1d106e3c142f246a2f8c0862724eb3120a516409df'); -INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'72ea1aad63efa63e15fb41726db2f65c2a63ab9137bd801fdc44fc2efa8a8879'); -INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57860f7f7f9766532b4e84a962fc786da1d09b74033ba8887c901b8375718f09'); -INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'bc9bcd78b36c85497887cd6a5232edd39259dc989f41064315ead5b7822a9389'); -INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fda26db1b6abcadc03992dd1b83170340ebe7b1a8301ea2118a73141b1ee3832'); -INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'7492d3f976193353b1283f81f82765ae84f3ac0266d3edc3335e37afb05b5c0d'); -INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad2111612c42af3313a71f8b596de9b8a02eaaff6a9f79c0524c7dddd1fada28'); -INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'d773d5ca112847109dd374b251d459538ebc80816193c4098244989d988f6835'); -INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e134b1f51ceb44a63429b7b12f8b9a2df29938d4110342115db26e8bc8a58db'); -INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'26d05762f004b3ca0b2d37d6041e489cfc46555170a9294f95d03e57207a7779'); -INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'741772c021987a8c24a1913d3e1b4b067ba1d3f4c8369c22ae825ccea542b55d'); -INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'c2aa54a6e05a2380b7f98c87f3867785ced7beeb6a508c0d48844954d060c678'); -INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f0b0a4ac6a31a511adeb23b19cfd508ecc2513bb7c806a6c20a8cc91276aa8f'); -INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'c0863bd3d6ed5f299e60f6c6569e96ce138507ebb9ea792b370d5cd2bb0924a5'); -INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'398782ec1ec652422beedc503467d0afbfb207f1453104c4fa36c3173a60d5b6'); -INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'39797813b40ecfb611cb8a9797687caff4c8b36644a96cee40641ccf7e67b5e7'); -INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2015eb28ad77750efcc10944b80c5f080347e103a18e40bac2226806c38941c'); -INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'989d8ca358b1294428e11a9a33d92b72622b6d978ef2a67f485349699dc4ff11'); -INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2dc1ea03ef71cef028e83a1c5656feb8af82ef2f77eff0dcd273d114bfd27a0'); -INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'8b70a8f16adaafecbe166943c0fa2714d69233737df1b982e175ebc49a699746'); -INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7793a3d0ae048d5c3f85c2349bf487521e853841037c26ceb8da0390ada9eb5a'); -INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'16743087770e29bfe8854b9cf6c63bf3c64d5039bf0a85eb10d93b8d4be5055d'); -INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee0274514931859bc774bea7f4e9412ef4c8d96bfef8f348765773f7d021fdad'); -INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'11160b92c60efd2785cc72c35418f7756410e913538e25658585c13ca1f3019d'); -INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd1b4664a78397bc71cbbedcb4104c474979accbc9993a6e6294d4fa01e5f491'); -INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'4455eb118131a48058b711a6c69ce59f9cc551f882da16d43d8f106ec265a137'); -INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52ba4ab49febadee0ab9de41a5c33dbc02080227d8a622cc7c85ab31beb98e1a'); -INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'083ecd9aa5e2be23021e5d516b792bf454c5fefc9f225d268bf168bf99ce88db'); -INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58a25c42584e1d16f93c8c189282036a99c55a5c3fd8866ef8e76bad1a2e3282'); -INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'bddee76f9bae09f9f53ddb10ac3d351e41e7428590372bd1a3e92f823ce1a01a'); -INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f5097bbb77f531e85c1d6d747f5242c12631b7c7916281823c4c72886fa8232'); -INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'25c786ecb89db4eeda9af2dc72228a307e11604b53be93d8acaf850ad635b6a1'); -INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e4661af5acca55f839fdb4c53abe668f45dea5aec6327f95346dfacbd8087a4'); -INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'936fcbf4146f153ba457b161c2c5ed3a9820d6d9ae43bf424c5490e544e5e1ab'); -INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fddc5ff2079512260a64506f0248d92714a8f76a9fe9492928bb5234daecb198'); -INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'fb72cb1ae0879921b36d9b30ac2f55ca47ee96651bcf5e362e50fb4304a6ae52'); -INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f040185c8241a9c98c50641a1a0f6cc1d434a923f0e6944e4afb944e8deb374'); -INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'c7dd8f85be2e65cb14b71a52cd70df39f17e29590c23867410f713d7fcd23697'); -INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10d6a644dc2b9fc48fc6c676b6fb7c999ff258045614527369794b40544150ba'); -INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'ae8aa8517c348469386bbc872c77b3d3499cf1ebd46a8522015f31d345972af2'); -INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'146171e0ee4f0c2e0d2c42c99b782399d9d116e482284f72ae885fce92f09507'); -INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'1efb178d24b3e538a81b5c4e302f758dc1b74354de2ae09bb203c1f333428b55'); -INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'520c8ed12f833da681175bfd57ed55eef497f7a20363b44c8175abfce43a93f1'); -INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'88647d550a16afe94bfdd0288ba5a2f7bf4e3405520d13e5ba83e3c2539af089'); -INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d65c59513ed1f21f3ec2bfd18737d10124aa9ff0fd7b671a6da37f88fe5a574'); -INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'6717c44d7fa8d8297dc42ca9cbd87b1e0b78b97affc761d852352a6a271bfdcc'); -INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb9178d898e05886f17b9d99b65354bafb6223cdc043689f56d43d9f72da62ca'); -INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'043116af2cc35f1bd606db2d86bd9caa93dec65e1cc083cd117896fab95229ec'); -INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12bf234653d2d88dc39da69a7c00b2c7661a658cd683f543d970eda9d38c003'); -INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'56eb76235162507726c18c4051ba7a1c685314c3c8d929ef4bdaadcf5beff0bd'); -INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6c51668aad361a3a49b6a4afdeb8a23d70be5a7f42ca87c9ccab3d61482f3ed'); -INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'1f19af47bfb8421ba1280d4d6fb5d27c443d002fca614647df1e7da0cdec6970'); -INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'091309149d83d047ee70e6dda4f3ea4ca74f2fa6cc206275cd81cf085e5aac10'); -INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'5a985c32a98d4bec6e0c70e5b648bc08a6af2d68b70c5764a5d6eda65988eee6'); -INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca4e7f2b4dc6a223dc1c22c5d33e705a4fec76c08b44bd03946a58a820bdb3f'); -INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'772e5c76667cc718786f68bbc7aaa3c9f3fcee52e2de8fba2695d83ab0d2f70c'); -INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea06a99dfb87892c3ca0b2fe39686731f842eb839c95a1259e09585a1f2e83e9'); -INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'27e192c661d79d786d99db931c5f6a08737eca652b47e7c7ef11a2ed36301e23'); -INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f46ea5e55f8ebe4a54b0f4ecfb2fa39fabaf3c2b1d8175238239fee75bbeef'); -INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'73462e1a73f5386b9bc171d41526fae242bee9306f71e37d2ed7b859d8ae2758'); -INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b38384c9be140e81fdb45e43503c4c313f69024cf55e280abf1b852201ddd9ed'); -INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'d3d2a58c7c41b37a99d7a45e5e20cf1b7f2c4d3d41a7425ae76bfa1aa8c29540'); -INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05dcdc8a6dca39b287b6001fdb4e620c079cf3ce4fad57d7aa1ccf39afd5e4dc'); -INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'822c2be95d5c878bcd43bf442c03f5a888d207ef660665b5db70010c93d643b8'); -INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2753c477d84e83636c7614854c0ba9c18bab66c535914b0b0be7b56564f86077'); -INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'f3f59d5ff5ce4653d3e728e44ff42fe1e11e25a6fb8dfbcf9d5b4899682f85d6'); -INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df64d9da8683ab3c6c59d892a85c109feffc9c8536a13b3fa15528bfbd0dbe77'); -INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'0607401a7355da382188eb2170280c29ae9433c3cbd5bcec871cc2152ed68265'); -INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'862a341a267c891d72754ec86560e37d9eb57b0b3cfc4e624217eb5df6acb0af'); -INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'e3469947afd58b47e739ca3d10a5e3db2887d0492a385970538e96fd88f19b14'); -INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'537edfa3e3d96935ed38c1b549d72c243659e58297f3a7bba3cb478448c3d714'); -INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'ef8f2d05c496884f04030cbd5153a6c2941aca1db9e143401407e1c50714ac4d'); -INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a141d0aa030223f2fa7d729abce7b83c89e1be8df30c7e32b1ceba13c5d20358'); -INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'7d134e7dfd7fc1672c0ee1e110962755d5caa9b2666664be37d22b72215a3e92'); -INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145dd029c336dd222e0bc355f614fff56fb98318288d9ff4df2106ead99a41da'); -INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'f04bd751ca0f172b58afcd0215af39672823d87b32d3e63c5ec1dcf2c0440e84'); -INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de605ca77591296554e622ee070cafad7386851320f0229c5035295306d80ff5'); -INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'a1c3a52984f1f6a8c329f3552f483411687f442463f6ff4832187076ebcc037d'); -INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01c179a127d798927d0f50820bf2746585aa79646f044eb0b9586489df920240'); -INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'131999f810c361417450d5843463628cd0e34a92c6d11d4a54aab60fc55222dc'); -INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'236d51f42a250e38d81e5e138282502701ea9f3e16f8cbecc81c3e268720723b'); -INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'716695b834e5d02e190a4b766a396a1c3cbbfaccf47a8f198bd469c9f41aac28'); -INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47695f4ce560cde58e3a9ae973ccd70a0870d4af1295f1b23b7d6f42e3da36e4'); -INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'f39fa01ca279e6ca02ccdc29f8fa833455dbbf96b8a3c2fa9b659a39b4c79dc1'); -INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed1aad9fb826ad94a93b3b917dd202ef0b6fe0783e678b684c1e797e52316f54'); -INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'74b5a91c41bb8ed792a98cef2d6ddebb302c8bd6631fec8dc2eac699837c2567'); -INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc717d003dbaca16920a70425575de0259598c9c487e17d57c6b137a0b3add59'); -INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'f54db505e4f07fdf6cb9fb63fc1f1e9d30dc5b5bc09cb2c504cd2e1c1d2276b7'); -INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65b30643585b8fa662f44c7c30342cf8a530ea9dcf7da0f032a6ee951bb2fccd'); -INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'6e0a3084ab89aa970722862f3f0d4153ca96037b7244393d74b83a6aee2a269d'); -INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9bb47c08d4785e10f22f91ed72db33b8183632bf799c41569fc911e8ec229ea'); -INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'a8e75192603fd8de597dc91f0d324c1c6ec4e3ad960c53389a3695bb3cfe431e'); -INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ef84a3d989dccbbbfb2e37d3a24b476772fa1941c1fd97c7c7edcf1b5b4a524'); -INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'d26be77346b2e3915744a9e9cf3fbce374400817c334b310227a8e771f027ba8'); -INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e4fe1c6c9d0de95da827c9671954190a9b05f39698ebd82671d5d7e0d4bea9'); -INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'4f16ea5c823015195f8e0714013328e82f7f283555c1a36b26e68f301750114a'); -INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad18063e012bac15bb9817169e98ea7a7b4abc25a7618166737ae4a7d29f90c'); -INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'f2447db529324818a1aec859c380ab263c88cd970761dece55b296e42e387a1f'); -INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b7a4b76923d4c894e3767b9b9df5469811078828882bc809108dbdacfc17e1'); -INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'786907378bb6b539d3890c522c2bdd296e01d2beb6256d0ad528e954f2879c85'); -INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a84dc2069003755ed6c0cfd441c2e626a7677e0f1c9224f6f450598e46bd662d'); -INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'e789136b0c862b56bc79b2b295cc61a42a59d718e7f617c2ca4d6d24df3769fb'); -INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17bbfc4d2007e679ad1062cea58deaaf071949f810e399d26a908f228496e6c6'); -INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'9df7f28775eeb70df42745eb3cbce824ebeb6499c36e0d7913965c82ecbfc4d2'); -INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1e6837900e8bf0ae572f8902ff1326f269db08c8377ba600b45c52ffe7b96df'); -INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'9b0272a36cba6a5267a0a00aadc460735f69674cfdfbe982d45b2416746217a7'); -INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145ec91d1c03a812611b1834a7ce23b6b801a6047d0d5fbbcf0a5800633993ab'); -INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'922d9f3dea24eb678312cfa604d055b0d830e5e03c0d377a642d0c8a7374d40e'); -INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d147875d527a59cbcfcddaee89cb9b66460654dd2cd17a5bfb195a08923efc1'); -INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'144655c3c3a6d64b66b197e7762f43616f0511889ab615a69c6ab415d1f35185'); -INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22865a546811743adfc4ed171ab3535c3e3ec06787217d8bd3edb0f38f22abd1'); -INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'8aa47903e47936734072fe6ab4e9ac15222a14214ef1d0540351607d60d2f304'); -INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a74d3b7df8ad4120788e316e692d95f6cb34c47483982b643c032536dc9980'); -INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'39faffa4ec48136bc482297452a4f553354ac51971ca84856eb19b528a7d29df'); -INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04cea19b67e8003545ee72d4f5082f8d553644b4e6698ece1cf9d85f036eeeb4'); -INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'5ec8f01099af8b2dfd94c6e7ebf86d696b234f3dfc7593734fa72a216eaace3c'); -INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21196aff3e5b161327d5fada1290d3b757b3b97d8c9b17c541770cf4c73a4e05'); -INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'a1ed12367ec8edbf61414da74987bdb3c1872c7a65f9153b5a5c9f4516d2d5c2'); -INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dae2dbbf447cd273140c65bd157bae379b30af7ae41c0b257c76ea47bf96b125'); -INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'504a0d7fcfb3cfc08ba3f9d324313476bf2cf7979830e70fd20bd6a7e5b9806b'); -INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b031b5652c751ccb718524b94426025e12518013bdd4ef9a92ad3f3098e3d210'); -INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'94eaccb65b21deeeb531ce4860d63f8e3c7526b477658917e851640420745871'); -INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67a21e2d353d16a2655bca7aebd78b371fbb5f8361daf42ed842f22666a0bb20'); -INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'6415332a53cd4ccee8714c5ed0ef39987bb5f78afb1a915fc1d6a50a14aeacb7'); -INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8d5481eb2eec69ad1638a78f1fc453c6f2503a1eb3988a1464081870671cbe1'); -INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'7d066c31f1ec46d1023982c1e3f45efbac26ea3929571393c5905aca35eb627c'); -INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6a297583fdf5f8f1eee43e11ca9bbad8d36f51529fafba3dd830e8eb6f674a8'); -INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'4e390569011f2173c1cd888a0498598f2936e1a666e531f1a5216ffe192cbef0'); -INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dea87a5372339db424f91e9b858684e91e25bb320e46a59968da5a448fb1cbb7'); -INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'1ccc43555278f647627e7450ba0674d603732e65d16e30c4b830ad45c04e35db'); -INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cca12dd04ee1373b563c88d3fb148f2f9d41542a6b3caea4b585f1bc26f2be7f'); -INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'cabf9dbe4c1eeedbbec59d0b80f131692b3f876587ab94d219f5611b0db318c5'); -INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78e65e247057ef2a8f344dd9755619b01d8caf524e50ba69a446104969191173'); -INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'312289a9fadb25b288cb69d6f96c60e150aede1300df7f6eda41393926c948a8'); -INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a2d79818b7e4b5beb0b931133d4d32525978b364863d7d71aa8c4c2de3b089b'); -INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'30ed99c48ec8722d071bd609c5905cf1098329493a6209f3fbfb2c473fb88535'); -INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e3b689138d4b9b649e100595d02d69b12b6fdc707b93bb2a6668606a2cb775e'); -INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'3bb67fa1dde5d47255d547589522d44ac150eee1fb31a1e9d3507a548f451609'); -INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'057a410678ac10a8a7f3f1fbb5730fd509cc358eb46c77985ee20621df58ebdf'); -INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'bb1fce646415292c55e4ed2cc5753b2311e571013ded8a39ea154066006f705d'); -INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5be8112029a2386c64778c15a3db61d8a5dd51a4a221f2497dc17adef50902f'); -INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'08a258b78f58a8df747708a757a0903691cce350d8a976779621bc4c26753e21'); -INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fca84eb1d50122698056b68515b1e5f745fb7a5e297fe58ebf854eccf31325d1'); -INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'ddf1e0e34f9111e3f7f8b06285872092931e51da5488aa5544963ef4396a2581'); -INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfe56aa04d359c1de7247e9248f50da3c39d13a1501131c9eaa268b04dcd0302'); -INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'740a8a0dc6ade66153575deef1796761608d2de441e577a86e354bd580920a41'); -INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'743e293c4cbcf5a41e72de54195d912eda8b117d3409c6248eaefcb96c5c2d2d'); -INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'325348a4f6d917b902c93eb11853f9c5081daad75fa4ca189ac0ab168b1465c1'); -INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bba14e60d2f6c47e80a83c4a653c6b2253ee0d8ab9c2ba906313cb4c85e4d7a'); -INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'28c9aff73772bf8d51509ea6f328f9c147873beaac8a031daea58b2b2b8dbe07'); -INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da3d1765159f5a1f1d18b145dd54c7fdc2ef4ef557a07bebbe5f72af0f80bf81'); -INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'4683f856105406f32530aa72934ae0e5fc80e11ab88d04ec823975ef8f9fb357'); -INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'792af9f34af0a0947378449af7c2941f13f7e7c37c34baaf094127894a2bdc7f'); -INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'10c2f5502efff9dcefe6a5f84964ec6135b323a9f7bf95b2c43f15d0a84805ff'); -INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','0739c4df82694a088ff5605ffef1250e3c832e46fd52021aa9929af8d7ea0cb1'); -INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','a2e94fc1e1e02f3380d1333dbaf836ed9e71efda883304e087f504386da01b48'); -INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','19e6737dbf959d0c4c34c379c710784ca56b3e8ff21b02432fd0a25c0c6de141'); -INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','e0e98b5d282051ce298a3e29cdab37b1ad2016999a0fa355cba335871dee0aad'); -INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'989c558155c8efd99369281cf3db69d9fdec94947224a628ae65f9e9ed366240'); -INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79f2bed15952af614701c745b20ca36e4d5914ad3c2121cc8b8e399db0879cb'); -INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'188076d88fc34736748d37cbf33aea994ae40867288ef17b7892dc0d8f3cde06'); -INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','174c693e54e8a7e3b14b3e6898e3acdc4faa39d6ef8f6fcd9f24c3be61a7b602'); -INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','9eaf133cf67c0f85959ea776d119a2eea5f62a14e22cb778f78caef26c7dc2b4'); -INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','48c2c4c34a8f852d5dffc7a1a44c0f560150b13acee747046bf98a0d948185d0'); -INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','7a21f74eb29ec41290152ba9e06de7d653ad1e3c0a7fec065e60e58c9d88c420'); -INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'aea27bbb55d21cbb91d700f71ed280398fa0c0902633658d0b42690262d9ae8a'); -INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'997c6d9de685d904bf7c3a031784571891ce436fd13773b603c3d1caf4aebdeb'); -INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'d1f6db9b4fac434d370be8126f888459f557876b72ab042b734a88c931d0ae37'); -INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9e063e0e54ae458a9c4e9d05dbaf4e328f0472c7be06ace4b688286e4763869'); -INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'4239b0e818eb157192fac27a4713e81e5d215409b9d375f998e63f499bd579dc'); -INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52420edbd9ea6e9c9dec49e0de5997c5592309822e1751cdd134c917fafdb57e'); -INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'87fba357c5e996226f7c5d50b7a40e8935e105a6e5ea41bf91efa8ce4bcff187'); -INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46e427fcd7a1a5d8e4c2f8f7eafe4619f7f975dd82c8f6211a60016a25d0355e'); -INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'9f3c1380ced45bd709a85870c99628ab28765283ba6bed51818ce8c73f7060d8'); -INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a5bffa603311b905f4ff5b0ee3116e1e3427f947a7ce9c5c07cae97dbffb2b0a'); -INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','51322de4241d1fc2b3f97a7ab2209b06255530f2f45982e6e6f4b80fd79b9b22'); -INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'4327db1052f4c8d0c2c70c58266298f04aea5af1627c9fae4055bbdd94e31122'); -INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc413ee91e6b38643f6758e251d3915b2e0b02e43bf9bdce2f142dd331d9d300'); -INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'654e42cad455913d8f00534427329c00088a448ca06d6ccf90fbcc17851fc05e'); -INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','a90246720371c9f5759ca13510c9da7673bcdbd1013e9092d93659fb42902b67'); -INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','5e23dbe1f13c627607d4a0aec19835fb5d5f378538b231637bf8c14eddfe4c95'); -INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','d88ca564ebcf4551253ffe835bf08e51213d59772f08a4b64e167ef5ce560660'); -INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'02a73b0af6ff144b34fd388cffab27010f006472d7eefec076d5337b4531e38f'); -INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bbb763c7b607de2f75d9312570d070984741e7c096f1112c934765dc0132c5b'); -INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'94b98044cec023ef4c04c2fa85fca827a67713019f16d4b49d81bf78e83618b5'); -INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','91b1ece2262a10c631d5fc8b8fb434be3a770093873772a620f84cc3c666a6d5'); -INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','2883411bac65a84fb059c2a0a62f7feb559c79c1785454eb12fe03651852c702'); -INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','bbf8dfa1f802a00a1fcefe9592b7dc3e75b334b9425fc1f1700bfd0a1ebbc91d'); -INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'c9d3bde8bc05436ba8c9a490f058bc006173f21ead57467aea6581ee4d2801b2'); -INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd16bbc09a08c9ad2b4f5bb999a96c0f1d5d60bab766262fafb424b71a9e58b5'); -INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'4afe016aed001f429e19e2e098cf6b0c2f01f2b642a3e1affb486db876b1e408'); -INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','2f8956e74b2e059909b8c0367dd6500edd5e59bd7df1270079fe37c0e33361e8'); -INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','25fcb041a198ca55be29e146928f49b502a03418c18102b858219463a12eb6f7'); -INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'d11b87b8b455ec37f96243e45a53eb13e44a865914d9275c8de3be80a79f46ce'); -INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60d11b26f4f3d614917511166f40cd275661b91aa9864806e07af9845888ab56'); -INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'e542df9be2e0cef6f05091a2211e51468f344254118acd035fad38df2ab60e36'); -INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8db70722ace56ee70c9e63f16db216cfe1125dac31ead5dc538797d1a4b77f74'); -INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','8263a6430182b6165d246726ae952979981332bc717fbd3453b77d01e0715bf8'); -INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','b0e6324579a40247f87dea9363d71137a37571eb7039a1a046a8451becf18bde'); -INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'8cc85d88963ea08974d322b29a833c065feb4eb8116508ced2fd0489182a9a53'); -INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89021e886bba03758d6b0bce278cdf9ea429b51d676cff1154fcdfe8c2241470'); -INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'9353f4676e0cb082d3079eb251a6b155d1536c9e82f932585ac488e6a2c94835'); -INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','03aa69bf3ca82119897ae3a5b9477a7c4ac72b4148af444850b37834c8d33c69'); -INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','49aa378af2a0de50b8552e0c7c3cba1fe15d604df7677d0ef063cef3c168f1ea'); -INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','a9447bdfb3fcf03aa64bf22148c68b2ae6bc709ad0a7dcfb2025d6bd6ea83e98'); -INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'c1d1f8131a18c13373ddc06ff9abfe95d8a182c85ecfbd28592423ae54962cbf'); -INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455ed495ecf3330ef327dc7742a5c0180f6d29b807e9bbf56ba10d84df88eac2'); -INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'b2ec7b13e35cf01e93e982d58e7a67c0349051bba748c92b720a74a55f478504'); -INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29b2c664d861b90d75821fb525d4b85779733d9bd3560555fcb8b74d09e3677e'); -INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','2c69413b213976a4095fa84431155767543593db31b274cdedb536e0d5834015'); -INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','29c0c7850bfddcca428b7ae898fe88be7bf53f570eac12c6925a697a7c4554e4'); -INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','74eef0b2dfd51995c7c6d74c9d85ae0c81835f0dbcf6878dbceac7587d3c3584'); -INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b3e30c737cdab07772d9151dfbfa1b5a62e54ff544e6265f0d9ffb0f01aff9fd'); -INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'2b2f3bff123997a08653fefbe305bf9de101307246e895c4566231514147ebd1'); -INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de5106f57a303f7a219d4880e3fe4fb9f1312b53af5dc46832dd4087e4c09665'); -INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'2ee15d64199399ecaa85990d4cb505dcbbea47a0f7fa5b546420d20927cadad7'); -INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d65da0514bd73ca2d76086ca2d152a5596eefc81d51ea781be8706aa853096d9'); -INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','b0bd1b5f1506aae7e1cba5c22cbe7b3ad79861aea66179dfa10786562fdc8d11'); -INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'c2ab5e3d2c55612d69dcdd3125d5aaf1831ad3000f8cb5d5d2559fe057754628'); -INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b7632227d93cfd5f1659c3c28688cb9b5a4187368cfc8c3eb5d32ccf598753f'); -INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'f9a88798697ef65e8778c190421261d33ed26577341656e76f9e865b8bbba62e'); -INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','8b81dc12a96622fd1e5ecdeb62f8cfbda266950e5a08c4212f39dfae9bd2ead4'); -INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','2e719a6b4be4c8df66d77f22cea3f2df51d62295a7b2d6dd64649e78352b80d9'); -INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','22a1bf9c206307a5735f4c6cf34a7262c10a44f3e02fe36a6f26bde8818dc7fd'); -INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e99abe801cd9ba296c1a5d02cb1bef31de305e1dcf40ec0e8c4fe04d00dfb10f'); -INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','6933d8bae483e2dbf7e48b35597bef62ab7488faf6a7da2cd483579ed2e513f8'); -INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'140b6697da862d76795d035301edc871aeea1b2144cae55e6dc21989452897f6'); -INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed9684834edbc52cd92115fd645202ed352cc689465f821c1d00931ba745884e'); -INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'375d5b75e9401201c3cfa649c6737051431c04d4844f6b5dfa6638f350115ccd'); -INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','55d0c3ff21648bc078ba0f988fd4ddee6ecaf3d69d91249c487ce15f8c1e93fe'); -INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','81dd60665ff456a7ad3926d74039941e977cfccc8336c6ebfefe3aef08ba4e33'); -INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','24b5edfea2b3f132c97b45a70d2e4ac627a45dcabe8fa61f34ce65052364ec1b'); -INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','278ffe6242fe844526f578dd32df5eb09d3733cf347f3d8fdf0257dc071ac454'); -INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'b3ce6c4059ff913703950e12bab024781878b50a8357e4f6689a1d3b9935814f'); -INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c2ce8ac901907aa556ee787464b755abcfa225e339579d400752fb08c1c2f9'); -INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'7805a262fca1b0cbfbf8890bed02645e2c74bfbd29f884cbc63296902bc72445'); -INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','d64880428fc4cb1892fcd94fd920c8713c1ca407ac9e96df29f1e1dc90938ac8'); -INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','b8aa933061666576279d5a261e9925986d6dc04c28d9b94268fafecb75dc4b1c'); -INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','38ad269b0bce08f4dc625ce48d37aa650e92d22dc9fbc7ebea5be7b75c530191'); -INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','5a3567caee5fc75ff196a68f42216c98799de6c25af93ad84770034120601a4a'); -INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'8b3d452311fdcd9ce202f23d99dd2e1546ff795f06c4fd71dfef3564e9802e19'); -INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9d8a4da65d816e5d1fbd566746f7c93bce7dcca614833cdbe64a538a8b20bb'); -INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'0e4553fbcaea28b4ff1d5d5afc76ff759a38618771c2d0bcf1b8ec46d87fdce7'); -INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','e124ed9a91ce13d69b6f7c0296753f15943126833db83f43345bcc61395e329a'); -INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','5c378d66994434498754d4474b56b199717e38198497e23a5a758d9f3100c41e'); -INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','9e1f3f5d8ad3232c2d96569904fa43751a0e91c37391afd4a1ea008e044eb8ad'); -INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4ef09cb8d447c7d5d89876870291bb6d3eddd1271912b76ed102c169122a106e'); -INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4797e729337f09fd2e50798448fb2f550d2ec3e17fd847345fb523afe575be61'); -INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'830b461648e54ac39aefc077e93f2f244e25a1459a1140fa1f5ab01320a2553a'); -INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5ad6dea0a8dfe8d71ee6726ab62d77c29c424178572fd36d6d9547b405e505d'); -INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'a7fbc58e4979753fc1a3d09910e51a96c804af2d5a5b2adfad77af72d25a6f48'); -INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','8c11643a14032fa25f203c04db02ae293ff4451522359f5db2ec8fa84af2c829'); -INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','e4eae522a194e874a3c28df059a3665fc157db778e3f6e0edf28c519a328260f'); -INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','4ea31f1e918c61ebee3879c306e20bcc12424912565bf6523a78abc5de8bee85'); -INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ac448abbe8cdf694b27020c25fd4e9726ab5e4f2a3a2f544fe422683cab80099'); -INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','ed811f5cdf70c06066b0393e8f5da43a7772398ea1ada8cfc7a9daebfba9a55c'); -INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'61e07ecf01fa9096c0e36a9f093a35538edbef348ddce8312355c2e8b0b106ef'); -INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07d7840ff2b17b72d39740abf7f995aabcf1b6976b29e8a6455a2cfa2babd3dc'); -INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'e81e86c05e38b5440448a37363f2bd65bc888418bee40a81504ff19336983863'); -INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b22c5137782dd205660cf3a350afa1a6d25f86b05a02e23e622ec7cc70c37799'); -INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','b6a36225ef6f14e0762544e25c96f87686bb0d5d56e3e166119df377b80034f7'); -INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','2f85790bd3b93ff0fcb88967c683445ac81a7c2f94eb3adb485680cb48373093'); -INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','5df267db63bc6bd6795671b9a06d4e244869a4edc9e984cf74c75ff6a9551f06'); -INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','6385d6652354d933814cd087b3f500fcd8d01de83d4844a26ad3746e7b97141d'); -INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'e4a8266ea5b9f8395a9a6d06acdeca74ce08af8edaff0bec7e5eb63517b5239f'); -INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32f103bbc4cba8e3d4ddba74e249d07bc0ccffe26e249b6e869a89b6edf6f725'); -INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'8cc059b18fcb061b8011d64363a9352b35f14e6c99a9c99a974305f69751b896'); -INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','dc4a12ce05a0109732fae42394af626545aee14fca0cd8cfd7380246ac0cc4c1'); -INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','93d99ee2945e66203aa7031be1f22f6221ee2dd4e7abf419cdc79429ef49e627'); -INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ad5b97831ad3447712847e1cc33c95f8d26f240f1aed729ee0d781f742ce6a63'); -INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','ead56d663cf0a731b0534a0d0a90f2b4102a911043d4d82fadd54c5b4eb0a0dd'); -INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','23523f9c0be3e7086e64e60dcacb0874262b85f5c20a64d9d9890adf77d43c93'); -INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'51b4a2fa820e516555dbf949fd1e7c08ba3c972bccbf98aa1d4769af9e4e0d4b'); -INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d483acc65a8afc1c8df9fe13c0ffc4c0aa961b13d34be2b205a5aeafb38ab0b'); -INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'038edc64dc9f33e3e3025707adfbeec7e69160f2d416af7b8985eb26814bf3b3'); -INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','681d69de170d6e916c2cbcb765d10ca301d1d37df2d808f7fdc141e23bc99a21'); -INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','af1c038513bbccb7f1534c4da478782b64bf1c9fc372c8e5c70e8a1a0f3b4593'); -INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','cec502417f98df44e8fcdbe6618109fc0f1aba2825c91ff9e357d0e17c088b79'); -INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','c0a601a9e14f5644b3f40434cf7f5c1ffb7f19da2c26ca7d7002aefb13e6485f'); -INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'3a3ace40af1364342228ef64500780e7d5624d3723bfb1083823cc21eaa9981e'); -INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40ce0a6ff3c55a6b57e623237baa42321d035172e942ac11684037c941171247'); -INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'09b826ccd29db294a46173a808735c28559d7d3332cd159c83df4f6f45363874'); -INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','dad4537919932e4b2e105f60646099439ce15c0fa16b3ef9d67f994997ccb787'); -INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','06de89ab597c41aaf8e29896a0524a45c69459d339cd11f43fc1d787497a2352'); -INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','2ee3794483f6e496f21cddfff7fa6313e6dd21c147f78f3dafec27b3902647d4'); -INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','51915774e48410827f5df365d0f7366e3989f895cac7b45565a77a95a79a3567'); -INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','f44ba9ac4612327a02c51ec97a750cb210ea4bae1925e74262d69e47d9fbf58c'); -INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','03c546607baade42816d44358a6ac15198778d57aa5a92d4e4f1724bf13a5728'); -INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'b7d44852927e24df4321dbb8b04b903e686c1f17b84683c6148fb604ffcd3c87'); -INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'474a77a500aa600e4bc9c67508a8b3de1a070434574b87a9d25a8309ec05867d'); -INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'548b46181af0c946fabd4dbee31b85f9cbc482fe518da8a03bd6cdff345cecc9'); -INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','d08401b431da4fd05f7141826e06b9b6edc2f2eac7a80aa14e2c75a92bf3b731'); -INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','92e7f9f18a34ef2523550b1c9e71b08d674719c0f3f19638dcb2a13190eb522a'); -INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','5da30e150c16827b6a48d657901f9c76b1b5e3c88f08000c56efa1b1c2e2346d'); -INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','e40b26ca73ad0c30921231342077eabf9ff18d7a0e99ca5b8be35f16d4ef4ae5'); -INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','69eb4885bda1ca9cf01db3cc4c89e5957da1641dd4a3c86cbb2a8142dee35803'); -INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3b0458356a2d03af89e8efece607ae0cf0a4031d4b9abb6629cd48d2e4fdf324'); -INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'089a79f8e189b0b30ab30fb32247d87fb75ae5f7be5e95afbfaa28236bd7a22e'); -INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fe72fb37d670513f545c9999f36f4d234a18a2fbafc1b6c812d571eb6157194'); -INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'b43588348ea210a11e377d3c70afa2cd56c584658eca5e4e7d3ed55fa9f2b976'); -INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','58cb9461bc0d889ebcbc3031245c3fd40468c9c7252506995d8adf4739d269f3'); -INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','2cdbbbbcdbdbba080a44dc45921170a7fd8e3b99d301a858f41abe866accdb25'); -INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','5c6503d88ee1450f6aa0aa13aa8a2215f3967bcbdada0e535d4eab79095be0ae'); -INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3f281826ad154629c47194ad75326a52b403e0fc0dc5618b2b5aec3f0cf4083a'); -INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','3577515ee92f2a5d1c15ef39a6a845e059f57690b88b04feba62c6dfaf33cbc0'); -INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'a9409d65f16728bdf19aad8e066f5fa1b54303ec6994196b4bbf8b2d6ab44f8c'); -INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3318a7245e093723ca11cf73652ea9a4f410ed5b37544108be6e97bee4b7f800'); -INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'0bd7ba3f90b37ab1cdedac6e0597f5d1422af7e1cb38dfd3669ae5a51ea657d7'); -INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','aef1ec7c14a6be4b4fd99e33acf023e4a52dec6a2c66e5f4f39ecc1d3afaeee3'); -INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','b0d0ab9754b61d9fb63eee90acb96f18e6c78a0a2c4f1f935048720194ffac7d'); -INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','fde181f74b5fd7da901f9463cf0a4f4b8d56fb2e93d37a2c552f58481a2758ca'); -INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c6dd3c2ced8fe87a761c54f7b2a5e4ef0f53062f4fe365af99536b912e23afff'); -INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ba3a7011f1de3fcb8cb951cd3c607a8e464884bad6b8d204e412b83e9726bbc3'); -INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','91bb753e5136c757b48d7b865426d8a2e11ab1fa0f84ced6695fb6cf6c1a6f1e'); -INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'7134047fd69370a504a667f83b09b68629fd2d9be748c95138a404e99b3e30e3'); -INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e665bdb61f7e89bd9bfa8d9b85308c84a89e846a5d6bd22f9cbd882fc77cda6'); -INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'aad52d1e230229d875080942ccf61b01ed73601d408d07a3ca51884a3c64ffa9'); -INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','26b9a011941780ee87a02f03b3faca5c657f6c83f15777d4dc4de6640d887e57'); -INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7f5d449b23d65bd3a9f04a5251fbab4485c60aa2c3dd82e85128667a42240942'); -INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e4b59bcc6416defbfa6cd7eb4088109fe29ef9e80606f17d5474823ee20a7657'); -INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','12db13644a58f885058aafead3ccd7aedb7e28c28c1b3c24119105c91a182924'); -INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ce4f3df23178cb3071b62b7e93238902c7efbfbf8522634bd6e10616946f55de'); -INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','23d2f1594063fd9de06cd1afb225527b5926e43c2a409ed16b54563c644d6825'); -INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'13d8d6def32619d8814c5b059aff533ac118873e7cc66a9247e7d35c56b4e40d'); -INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de258cd8ad734c4390cec947c6a29631009286cff8bd97c162ef69fcb3cf804'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0"}',0,'NEW_TRANSACTION',NULL,'b35ca60c77e5826adaa4c71992a3710a3ac33996e219ac8917aa20415260e40a'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a6e44bac18a1fe20ad7aa50bf9e610fa86b3a4abecdd8b3753f21259b942547b'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','34db6224c2cba72a51798ebf26fa138792fde67f9f4273951cd1ab07b69eb322'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e5a70b35b668dddcae624234d0987e874e223dea0b7116f8044c1d5c6da81d55'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','0a52660dbc4f3f4cdfba4d181c0c7754f649912a31a7853b59c69ff61f2451ff'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','c2c50863293ed4c1a6a11e889c71b07297d9a2652a04898f898cae6efb8d1103'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6e0ac3cbf51a4fffdaa8a7b387b3ab0dbe9a8a22f2874447898581750088254c'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3c20c13624a35c1e7bd738671001e7746d56a47df51bd672d802ad275e69c8fa'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'1ecb3f056ca3a6994fa85b473ce7a2fa7bf6269aa6789b8d766afebb846a10ac'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528099bad1d0185356e13f5748fdbee6416914ea4267b5a6ae5b8061d3ab582c'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0"}',0,'NEW_TRANSACTION',NULL,'a73ac93ec158b06fd501c3d281bbfe0694c25cf7e77e2d86de5e5e7eb4b36fa4'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','82c8e996dc8a3c904fec9efa5729310745197e91f4f54cc4b3f7aa7b0b7b5e06'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','01bb9250351250cbfbc3366313b968db45fae4f0a0c9c212c5bf1de6ea26b01b'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','877eec9a5ca40b248c28be34e8899ef7cd371ae17474366769d9ef307571f58d'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','6745152750bb36fb54cfbd44a90d4a50b0fe7a2748257e8ed1abfada1f6a7937'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','e067f1e65c2f6e43921b2580a6679994c611fc10f96456cb7a0fca533187e263'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bd98d8215b35fba16c6b971971c7a9595b58764ea53300538702ee5965fd87e8'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8bc77220f31770776a5ce2ff53484e5b30f742ce55f5b5d65e9fd2136cbe9c49'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'c6d4a624eb710947b6d04042f3cb12a9343afbce61b746c3bf77ceff4e63d697'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35512b3598ad3f96a0aa909f8ae3868712209f33c2ab76cb53d3aedac8081092'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'caedb504a8148c5488f3dcff5e4997cd597241f4d8f28b8a22f771b1f8a7b34b'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b3b469b1d5e8d30b517dd14f4dcd3a784879adea006d89b1d6e06b193df9a9b'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','7b941d0c9aedd4a26459eebf5c843cd86eb6ce5e43482c04559fae4a0d8f5004'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eaa8c1632f880b49b9124c1223d4b791ba5e3e218523a9fbd3ee07d15341f6a7'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','975db2606987eba41dd1a47b5053d590566d3c8ac020e80c9fb6df9b2ba430ee'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','64c8ce30f937287fc16fb4cbee0af0eea573ad1ecb4955f520c9e6a7f84dbefd'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'5a2a068c35a2b17017d73246ba800a5ec1b26882dfa552a2882317a7352d411e'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'639f60e9da19011db814866ae8e6ee859ea779fea3359acdebccddfffa46dafa'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a35053e6e0e5a85756914ecbcdd12d6a98d5130109b7fc3df25ca5eca3afa1c9'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1387ca5bb166056135847144896c17e0fa4286ead8e61b5792367e09e648ecea'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','a2f8391f95dc433e64988ae2189fa66fde81d9c8f3ec9156357baa2276dbb247'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','51208c169c96045cd0c0f378d1218dd8e60fbf0c0c3049ce982c0ccbd125fb7a'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'3adab6a2f81a37e64ea1f3307f5ec4d982a8f1221eff48af67f83f25bc065088'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'339e09650b0d4d08ab7cac49e346796cad270c1594f2c77a60aafacecb101408'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'172fc284f2e58d414d48cc1beae80a91b24993c164e2a5e195108d259b5d62a6'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0609f823125b92a2b33402a0f37d040fd4d6819c5a18031522bb16f07c010c04'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'e41514375d80c5ade7d86d5a81ba7e5022e8f73aeda79bf163a0ecce960157d0'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9e620183cfa0a485518a320ee1914527de521749ea64c8f751929e37e22d69'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'dbfb90d67c4e1d26fad2d731d6dad5bda42011da3d2c61e65ac29567a7166e19'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'14225fb022f3acb16145c071c108eccfcf7548ad690b45257bd2532ab3e49724'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'07062c0ceddd54f644f91ae768b2cd510780d992268c483c0e059014970647c9'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'f8e4214b6caebdafd025229797cd06db265b7cc787cd6dad15ecdc40315afa2f'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a04a13ee6491db965a4f255bb88714f2ea260286c5078211d718c33e0969767f'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3713a9a730487a68543aa4a207098d68c7228a46ff16b5ec511498afedbd89c'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'fdc755804dae601d6c3283f313fcd36f25a82fd5359f9dfa12568e1166249312'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d0b294525624557b1e26fbbb012018b961f082bd5c7ac6e216a6ea3f47f787e'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'c55f286783ba2ec3691ef47ddb919c709ad5dec96f79c2509a4873b81e12f946'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23911491e6a241d8446f339f82ebcd932fe8db3729e850e1e4d6c529c171fd52'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'a628fe0747549e41577a7adef00fb7f0578b40a6a25fdc196e831d79c5e8ab1d'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8f0f033b427280712b7c882679d5974306455ef58994f56a8188b4948c8ffe2'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'f9ae8ef5229a28d1f088f432ff0c23dd04c58bea75c82b063350da58e55e7337'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1943d66ac055c560c7a62be3dcb77399aad93e227ef1022f9e142d1337609d50'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'63f1e423c099697f9522f29b60d646ff417063e151fe4ddf07334d17f687da32'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'598454f3b2b7237e91ec487dd8908426d20d8ba844bd29270cf8deeea138254c'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'74aefe190729ccfbb1e97ce83f416a357a43e984784666e12249872f727b8613'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79cb34aa41850cbe98e1612731973fd0a051e69c7310ae4dbb449e0351113c05'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'297fabbc8d47c6cdb3a644c8787076eed82b9ed61ebd4318c7d4792b6610068e'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'9bd9fab844740f3ab48a25256db8e575339b7a5e193ae5306118ff8f0a9e7e8f'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'601e5c07b12e7ae0f2945a6d3a4b7f9ebeefdbbd3bf034fe2df41a73c5314950'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'fd9086ac4c0bdf6b9c3376754dda2994ce20553f15c6aa43d87008e5cadd4b0e'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c97cc2b86b51a8c6cfe4303d188fbcd7bc6fbad4edac4f92accb50aa5eb4dd33'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4caa9a30853ee7a7931186dd4c30cd6605de7f51813d577fb3f2b96d3ee24e36'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'7297162e53d9ea127a84af2ccf697534a0cfdee274c692655e5d5640ce972c75'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'83708bfa745be321be4d2670121feac375aa2fad63bed25ab0e858acd6b087ff'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6d69c838046d1decb063ef289dbc6b9cc01069b8ab341eb50018a5ecf9545ed5'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'1ff4bf426b7853f5110f885ac868df6d0625fe47bdca47638b92b7472a61722f'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2064a9837855c58a5d1173c5c882adc729cb5eeddf4e724ad35287f2ef3bfe16'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'20fbe45efa365bd82c2e911c58934990a875f44107c885c36b8e9eb5a0585460'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77d359257975f55a1ea87d213f7ee4109e296d4c077d0ac13fc909d3f3649639'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'24fc3b06a4d2e17347445ce329d77f2adafb2b36ebc87ed81aed8f1bca0cc0a5'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec1d64b28f3540a85267b12c3fcf1d7fcad36267df30c378971008cff76d1f23'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'6bb6d5fcdf7c1df521268d172caedf6f54c2a75372ab61f6590e610cf511f799'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b60af426be8ef47f5e82220969ab8746b3fb1d0a0c510bf2d82827f5ae7a0801'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'610a4c5ca7c4f92f63d91f2f4357f331a0adbac47e8869300a7c03d9eb7a41c6'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1656fa034588d179d581e9681e10d835c5cd7dd116b1d022d29a6128aaed28b'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'0e727a967824e1a1eeb4517385ceaa1155bca950e422464743d91755213f8fb5'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e99140c77faff04960944618ddedc6ef5877a8736d73a48a4c842be339885877'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'9f50a19b03aaf1c22447af5a63b92a24e8b1fd8cb0fb6861230d1775eebb4c59'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4f4d806ec3c652ee99a62c1a50b6e0b8319c7afee6ae4fcfdbb0fc3726e05d'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'b243856ec5e4961ce581a67c4d73eeaa8d5dd6bbaac74711198e84074070f8c1'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b221b989d7bf8a617c6a036f2f0957d987ebabcf1444fc3d48da66175c0902a8'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'6e15d15bba5c35c28a313f2a426ac309bed6865a23eb2631ecd56af3e6790cff'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e85105c6bdfd18d42b06d7b264774b545855ff705a5660284989d92008a9b2b8'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'7f144363227c60be1a1d9193ce60a98ed34e0cd558745d09d82e12467339a734'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'181f664e43500c2a0431940c5239bf62dd94945878efc473c86d16397c2cb657'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'fb45d345e12253e826be18d795ca7bc7a26e7fae2b7ef21a117dbeea66685dbf'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1adc808f936f75f6ab728c9d53aab5b7c648a551b04873ebb0cff82419eb7891'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'bf9f3cc63511bae077230a580de6f3db34a3698cd56ee518fbb7c691f2b489f9'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681e3d0de8424d0130025c0f22555a3d87dbdf03439b31410af6b565d7f690a0'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'f238dbfd92f30c5b11f5d2d12c97552a1eda5860b2450ada00c8d084f05d6fda'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45ed21e1363b85812fc945656a2c717cde533ab12e942f8600f8048b52142903'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'7958a828ef2fcea92d1fffd90ae892c4aa95996c49cab2ffeb8a4d1dd0a0fa9e'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc79fc76527476e94afb8905b59eb268b32693e71665d96bf0fb4fbfe2e95ad'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'1e692b97c3d51731e3f75374f9f385fc8cfbac182973541a4a5c0aa1176a9db8'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3188002ca88a498a3eabbe88eb57ecac8689cf2e8ef9c32dd3a62f40e74e74f8'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'192b3693fa7a83be9b3e3f129ff4dd104f09377006ced58d167d5d3d40b5c973'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d0a44c914c08bd347a65f1d67b5fdc9fd7a28573f863f43940f494fa91fa91'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'46a4bfa3300b8af2e1d356b065a3eac908babd48a83619b85c90c70aab9df085'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'531e7603ccc4054263ec0e8b37ce2bd111a8711ef972ab5f136791f225b56e0e'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'f72d93290364562221fa0789e0b968dc71a9f010568ee306f839983f57cb1df6'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4051c2f1bda2f4e4d54b046db8f5cd570d373dfad38629ca2095006649f6ba6'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'3bb07ba760d668fdf6039d7faee08b3a28097ba62a80b856fcf8dce6dd42fca2'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e03b7b5b1b9fcdae2d4f456b70a92557d638fd48b3b6aa1755df6ebad972424f'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'c8c8eb0d878206dfa128e19ff93f3899bdebdee56b2642dd2bc48e3cf79ecdfd'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daaea7507ff4c9ad85389dabf8153b7171b463b8dd574359f79e932b37b21a62'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'c73bff8fdcfc4bab2661f8ee004e2cb523b948b69e1f49b571a794bc2ef95dd2'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd80b18af7b9a2b002622969bb22ab871448277508143bde5d47020b7535def3'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'54418532dc39356216f464cd433cc02f6b42ea0acc293bf5d81c7502abbf1cec'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c34d705dd16da7e2ed29ba6b630ce5fe657e7ba9ac6962c4ff556bf868a886'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'acc069e02080c3f255d32de0457a7d3bb07fa12fa517179aa361e0be89c62c81'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30cb7de7be7b1f184153935ac3134826b7c30b81d1461dccfc83604fa04f0ba0'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'b270cdb32937d04493f4c18f31aa15f68c07bbfedab331988d7b2754bf563440'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d6549b76a9601d58148004750295fba1e68ff371a5344e4c95aa6b3a6c9df8f'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'a80169089a7ca50b0255cac3cabf0d97ebbd452fb4cff34444d53a1c3b4218a8'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e1bcb6e422ec33980ea1458ddb1adb6991d8c867dbfae97416f1777b5454c21'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'1cf0da5ca09e0a452f39df501aae6a727171d8bdb5af652c323d108f379d9087'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85396fc6218e61e7b1792820b07df7fe447da0f2d7924512a8bfc263f50d99f6'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'ec7df94ff98be7a1dbfe4cd8bc137a158a08a5379eae67afb5a876094e3e4cd9'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b991647530b659c3d4b7264f5282977b563adc2237ddd494ba053101cef189f3'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bc24a916e0b1aec90aab6f8848686423b9653faf43e0fd7795475682ab499f52'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ece75f98ca324b5252989d47d6d564208558684179d5e53fcd1dff264282480'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'a4755b8411931ec5f5b8c04564599e8af8d006bcfb450fcf8d7f1f25ace29744'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0ac43de4094c637cfd002c44331dd98aa620d3ba92ac6cb770e3f8a8075881'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'94e57bb7f6ab496ede1b25be3c4b2b2c427733d4bae1527a4872110d6d27a6c1'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01ecd6939d375d02d2014490b435ea693d62384c82b8fd2ecdff0b01ae05c316'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'93151de0adbd7f1bea046032b63e2b077a1844e745d6a5cdee49f958d7ecc3e4'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf042801af10445725f5b52ffeaf01df256d010ff00ddcd38c3d0dea056b6e98'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'c30622641f4e29f9b6c12433c2e64a29a2c339b856a0d13ca915513751d15065'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae56933006427c812e36fd69437f2cc68e1a3254c14d87843a9808a340ad95e4'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'114ac73448a6f1d0cbacb72afbb55ee46eaac5e39cca6097ddb509fdb543de18'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e118d56025ed984310e5c7efa12d09de71ad9cd3fa2e692584c7f541ed31c648'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'9336378df450bee66673dbf20e1e6b1665f872eb6e9e62b292090eaad6d382d0'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0526179e82e8df8450551c4067f1ae4a54a0ba48b4ef537a929a4f9dd8da2dc4'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'c88d4f7a193785f7e8ebfe9c040d5ed95dbcc839056779d264c54e446a32f8f5'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d47a8669860cacfdcfaace43ce9f297de53086a597da9d730aa7c06ab2638bc'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'330c1ce550ba202d41777db5100b56946ea3be787a6426c36a4451bfd3f2e43f'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c168bca18241eeb72db92aadbc91682be9266a5759c7d31b7aec8cc4ca54dc98'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'f2fe98a7f10d91fc9f72ed94e0f560558006cface5738c19177d77a4b5a27443'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09fc14cd9feea89f00751341ba7349e06dcf8d664e1b9e02b4f9f4ffccf79174'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'0100a18b64e8cd35f603f6a18e74f795149fd336ebe33554436951107ac45b7b'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b520a9ff53ccad57de4cf6af9d6d0d0d0b51ff94df26b698c46c86e4c72c4b8'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'5a699d71510d6694ebcb11c78ee0e3b22e447ecd1919e28a2c39bcab0e2d1256'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bde0146fbbb6ddf6b945d43efeda50ca210a172a907aa1a51c31e46a5c5ab23'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'6b1375aab1839d579cbe2d8ccaf864416c17c079394c8847bf0f5037980835ce'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e75eda0064c4991db7ba311f07170ff63afc11bcb14c27e5e041351b4bc66263'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'71c9ad1de3334fff8c0eed78bf096f68ce9b3c6787615e0d6ae12b77a5baab09'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c7e933157bc4d0ad2ca1c305e9012e89e107e593798d83b5d3dce2a07741986'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'52bbb88f0b97ad86e4c8d1ff4eb8b4b16dc2602e70d4eff16063b5aa1838a846'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2468391fe217cdc4f95c321cbf71115d8edbecf8316f44872d1c299dd36fb6'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'9d907104992ec183e10e1e878e6e56b5621267ad80a0238c73db6613f37b25dc'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97898323d7654f11367c0540d4093865954620c7525c5db3c6a66b2143dd606c'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'d3d762b7c291051089b9ff27270b4639f96e8335a406eec7d244d5757a7ea097'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a3a448d89ff4ce03f3c642d9c4c660f3f701f814be19e0cc964fe5487ea35b'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'a7f72d7475b3dabff21a96bec4ae01ae2ffed010120e077ac2325f3097530e9a'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b983ac36e4316361a8919e5aa657a40626e356103a0b8935f639a68d54f16eca'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'9f1bb72db7e1fbdd34f9112ce9b4916fb15c8340639d18f9187f1ebc3636556e'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'748d7c89983fca160b184bce63d8626c58738e2db250f644133a95b837cc26b7'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c713031f45363a2ff39dd951f7f2add373b143f0be24bf844fb1c03ac5e88701'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd88ec4b4479f1fd61c97b22062bac5ef31fe8c014c74bfb3566a47614fafc8a'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'e2f071713e6a61fedda8e084c812f2f6173f2c376f485ded800980e5a3eaf0e5'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f131ff38d1468514a721fa48739755a4b81b05b5aa8fd8bcf5bbdfa019e5ab9'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'e5d8fcb1247a33a746a4d3788da7e6c1f619249f423eead6dd5bf1ff7aff9485'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33672a9ddb29a82394a84653c306cad74232d8ee456e417fcc1a47cb3556db8'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'f249da94eba5648c70aef21a7054948238597f19edea85b291f41f8f3dd72c0d'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'824cf37c68956bf766613197e915d5581107fc05ee60cc4a36a3b8384ff2b56f'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'263b6f743fd1044fa59c071708d30d5f9740a1b62773d461eff0ee41627d2b69'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e616adf0ee6da393eb81ec6f747058a4fabdbc58ebbd275a243853be81515aab'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'71ca175e090010878353f8c1a1fbdba1334c37f1818cc39253e836832071b96e'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a330d3d60042ba7e7533a8c957bc1bd96684214f4002739e9ae5a22ba9d4113'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'54d887f9de5537122b2cedfe5127788eb26615487967a61c4956a5d0e54b9c97'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f77cdc2779c689d97e1ee112e019fc1efc79e079c16e4808664311762f562c15'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'d374e050214c05569077fd14f4b111adbbf16c4598bc1513e94c0967f3e71b20'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cce0dc0f47097b150e9c682fd021eb7695d6b3251e0536672ceddd8686daa5c'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'518d89dbcc26ce0a6a08a56b547a9084a4783a07b1951ba4d5fac5f983cf305e'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94e139383e64eb5bda514ac2f9f1bc07017e38761cd344b1e98581e07d4afc90'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'b167de1c3eacb4de5d76bdc18b06539e31e3ce7580f868fc453ad09e6e182dbb'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4da3f04378ab20c0ecc1f9fc72bffe1626f0405ed0019f49db99b12784692411'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'5dd61e68a7d1eac576e1c473c3cfb44ced787321d38a45084e1bc2016fc7a60d'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38706aad91eef7fc2468455e1f43e0b55693dc694212e360709e16c58dc6224f'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'c674c34e3da1740ddba7475f238f9fa47c8dd480beb9abbd1677c03f28672e5c'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6a76a52e1a1953d0d555025bc54e7013184baa63b823843d36b148704f29be'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'f2d546245621981e88036a6099433a515e8187421af82c21ee1d3591ae83f7c9'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adac8c69e0723369cbe9eb31b2e9e08492b1a4ec53a96c9a9b2914c78a27eba7'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'fb4a5295d1d516b6ea790fba304a24170fd288d738309ee2c8702819f10adc11'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44ed6f4a4f7649b98cddcdf1af25c71fc4f3aaa53788df3536093f5687e20050'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'13ea9e672f41da2f6f0ff158097ad1ba829af5517c9bc9f76ad2baa7b0660edd'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01607be5c6e45bf3aa1eae5c075eaf4c805ae25f9d5a950a1015786059afafe'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'07747c3ed359e79cb40ca544bd385eb6df5a5965380337a3530a6568471dd332'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'216d8e391633ef3733e692df45475fb5b27386ad5cb34cec1b356fbaa24911fc'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'aab759797326603a13741c1000e64600afe2de9fdb376478c9475e8cfcb7b662'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1968376948cd2eb0649e3134778a942a417660aa1ecd12610f9f0060c8803f6'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'4dada71c5f0ea8e5c1b500618669786139c1c347a29bcea215e2fe15c76493e4'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83b68c33080ac8180bad432d60d0ed3637bc68b22ddf508797dd64965a96c155'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'36be6deb89fba28dbf50708b50ab29fe0e01160cf7bdd4b74d72bd4da16f5468'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f7f159e7dc425a00214fbbdc0c3874c95614702ff6e47412046dc7c360cc6f2'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'90dce01ca614927c685ee8a6cf24ad078ca39bf1f5cda756aa6914fb436e0a49'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34f63150baca29f5ded753979c2791b70d789884b1bf3c4fb073a973ffdc6c48'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'76ade670908cb383d6ff80f9b47a4c2267f58a331ed4582967271cb824e60842'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e71117419b1681092f5f405b4b9fe1f9a24aaaa82a841e878f7057d4f446068'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'b7661cc2ded026bef4558fb178ebe55600684dcf5106dc7713d77a416694fed1'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb6ce7e3dcec83d1ec9e659296d8b781512bef496af7ba672f5c68e168133da'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'3552429b89c75117d6714c266c028ee66cfdd768eb9672419d665de92c4839ef'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8bf9be24a11ed59a3469b322b19c84cdb7e5fc1b1de641c253802e4f6d78928b'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'c248bda6c4ee39e2bafb2f4d8ae0fe58eeef6ddc31cebfc7166a778d862c223a'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'8fd6546e8bf24c405d0a92855c346b83f789f34344942b696438e35606532b66'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f1cbf733e8fcd6cb341433dc2aa5f5257f42f2ae23bfd47857f8e10eadb563a'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'fbf06cc8aacec9ab54a213caeb55a6e0d7016630fdcf9b6818e9dc2fc646d709'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02b89778d8fcf080d067d09847c0707f1bc53e1631cbbb5d6fcaa0d5aa86e77'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'fbb925da42f0d4f7c64e29442c99e9e51aa57031b6bd41422b05ec5dffd593de'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34d0ba5da3624267139babf928deb1f3ed7329bc373ba0c4bd0689f658d13f23'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'ea2282f02f634ece782504b5bb604a997f40077b4eee5b90f38e3d189b48a8ed'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d550656bffdbc24fbeaba8b153c278ae2f624d76ec1f33ec3f43432ba8f33181'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'3dc1775067b68aa5d6fc649ef1af7f9a35d7b3db051e40a01c88ce032574d4e6'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'305da3bfbc1abc58ee9079462269c165d327f9b6935ae86eec88365b9128685b'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'11b724ad6288957a442dd17df42f2eb00ac7eb4128bc046e1a2f0a388349522c'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'270bdf88cd111e36afd8ff30d4dabc023baf3665090bca74887f75671b4f2ffa'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'29ec6690e81e6bbc594237018cc4a72d4c5b6db6f9d0277019f1223a4b00574c'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e26d4bb4bc900b93dc0190df5828a4f035a3df50721e39bae521e02770ea4d'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'9bc671b3fbe3368e2b5e6645b22551492110aa22725e5b041c0ba1ca1d629ad8'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a88dcfe7e53ae6ccf01f93828129a2a37f0a05cc65be7b8ef711acebb032ea63'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'f37aa7c2e3926ad5b86a227eae09d92c1e6188d632bd852e1824937915d69d37'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd3504293046b412c1c0a53157a8542228cf7cbee6f33e8e45dc4356f888bbb6'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'517eac6e36b5a71fd3f3f128e18252751b639d40d8e96804f5e204a3d9cba88a'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'681748ffb4c68e1182c2472be54bccf5f0902cf72401fd5b228663b370dda23d'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'5e22a8149df345864b2428238c43af563d71fbf7b482873f47f808cd5fca44a9'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b45098f14089224f4b9ab2031a87802d276f8ab983e52f3a6878ed7bf74bcaba'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'3bb640315bbd7be97819e2d17d11acd06c66d8eaa7bd9850cc9b5de572c8ccee'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a38bb437449e8d0fd0456daa6ec647c69d7273bc8460e49a06a801b107f17ef6'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'d36f9c194ea5e391006ecb29856645a3fc5cfe5ffa8296bd08d18489e730f62d'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d9b674846ccd4f7a12266ff5d96ec6acac05e5456b13e4582210c8159614be'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'4ddf6f063adc90b43265acd2403a3570480b7eeb182331f6503d110e7f15f358'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6abdc388e279f73e6f9b7e6bd64158c2875d886bb6545365862627441cf0919d'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'bc809c03c7ef6cad2a617bce70004e4b509a8c07efc17e99553e342c872edab3'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74eeee7a3392333b95498f1fd1740e2ac579f107644bea53edd164e22fe3ddca'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'7f95a465688d08bb36f6ca61cffec5ea47298a5b5d958c931dbc10dee34ae6b4'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9481c1065522675ac2cbb4a12c29f63cffb5de735a8561d4c63ece99e6c0e744'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'16d1a9b4d7077ecbb1b23ab3d7e9441f15370890fe58ef6937de8983008b07b5'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cf82d2bcfedfedac9effe35c45fcb8d5210009641546f95a64e757202eb626d'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'213b6c42ca56a784f3acdb55cc50a8f3888976bf3cfcffdc56b6757266bde69c'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45a99e309cdd777bfd7b0dbcdcbb93013c8928cf10e3c8aac86244d696dfa7c1'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'ecd1a0cfa57676d9d58b7c3b2c04612456b0a39d6f0c8aa4ebfe5ab399520d68'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e97c71c39fbcd1319cb18280be6b74ba3e22a78b2a3f31b68956a6bffd6c163'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5294797a7851723febbc76243d2fc4ce9080c319966bef8f2ce937190f3ea823'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05df71745a1655303e0ff212cad64c28e76bd1433f0c4af9f867c6d05791d59c'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'b13975a3d267101079dd038875bcb3acacca87d4ac21b3b8e54f8b2e4adac40a'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9938ab64ecc4d162574f15e062676069e994e7784b9ec941f666a0e2632dd7d5'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'4c15486251b2be01f137eb2a34b6e0421f3e0b4f63dae72ce000b3946334291b'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2491a4739f6e967334f6e194c0290436f66446263008b3a90016edd42cf0830'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'15cc20e59f9d7f96c7774a9fa81961613b3a105a1e71fd41f193c94d829f7969'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'982b98aa63d421c5b3afdbd471e7076efd9166d81cb5449d9e69a0512b893f9d'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'bbe47db1421be84a6fe459023ee5e5aa467abc02ebca6a601b4154a127da1194'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0310145c65681353c682b203b117f8250905855b20a960abffb6a3f35365b496'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'5134f39c965743c52dd6652a013b077f382ca0288b36fd1dd3572c65bb0c3f99'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ad525eea308410cd8eaa67e80cb93ef1310b5507e1996d94d88be8ab67eec60'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'f96a87ae6e59f979401517f91f4a446bece4f6ad1930e87c1cb12262d8adf173'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6dd1e77a4be40c3f7ffe8dce191f04cbce5a9f36092a62520223cec0230ec26'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'c389b4188f809f7d35366d00ed99f91c212125ea3a207ae80c4114fb75ec6c78'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'139f80b6b823d65722178f739feb616f9adb27f5e2bc05da65268fe6d03b44a4'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'bf617581dff1968513109c6c0f9132ecd3b55fc4115141f3253d0b1580e13464'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a4a9ef8cef738380f18d366962f130158761ce4237c0bb02b208a601d8d7d38'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'0f0f8f7b51c190f29c37c238390b29e12a42712283d697a195a279614ab0ab50'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9334c2d24384ea206df7fc18ad204f14d6dc84ee796fcc23147bce2dc7627d64'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'4e45dbed85da346e512a1bae0f9d1c5a6d0aa7011d4470caa3a6e8cf609b475d'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'541a0f81a94821d03daddb9c0b65f982fbcfdbbe81e9be074b2f188f4a19b717'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'ea1f34fb4a7ec991d4a7d18e390a15a6151726e6d57dbc16b69db63f8a141438'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2bbae120ac1bfa99c32d3939d6cf10cb0035c7ffa8ca367acb1df6ad6ce30af'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'5761842b1418b13bfab3c58d7dadf368372f86bd4151b8b6aa30e62335d90dbb'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b61b23ab21085162858e61497922b881e69e910f6d8138b876b6c3fdf31babbd'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'b813b87305330b7e338f6d78419e94d6f645f5dffc2e4415671b9b87df8ca591'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfc8dbaab4ba0d0b14ca22da88dfe8ef3c28547462bb4b0ebd6c39778df4701c'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'19642c4665e260e3a6eb35bee9989f3f2a1d253f15090638d97f4513033f5f11'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8d5863932854d27c0629804b003642789cfd48b1606844a36bad5f926c228d4'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'8d95b8dcb42a55a87703f1eefaadf00ee4c0f767bd3222b85353ec36195a46ba'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b44b0885a79fd5027637f7bdbd37d3118774a6814463a59969960b75d138fe7'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'7ff15de7c051a5d249a563ad5569b478d677f2808e8492d62876f640048698c3'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7723c78e28fc8902e52b23991429554555050b90596d599b2d4bb4299fa9c9b'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'b897f9372a4da05fe3cc7817ea3994206755e74446d0836b1117f68057247109'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f39e3b50231f34299b9db8306a540d754eba33f373311900cf29020289d6c642'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'97c4831d277599cb05cb8bb76743e9d18786ae5ac31304bf8389bb9a084d8ba6'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'326d91c693532ea92e93c1647c6a1d28fb4cc7600ea9e035ddddb6393efacbc9'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'134ea049679482d2700ae2c762af99a75747edde8941464ae9f3acf047131bde'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'229c9b2ed3fe2e45dd017ca9dd4029d4711891f3d66620ef37bcc8e319290bfd'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'40c881faff08b45d9635c40c6846eed10862a9f35f1a9348ff95ed7d308b04b4'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37e17058835dd7c02733b540a162242ea204012fc4e4a9799fb573b4a1060746'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'1799e589fdf41597d83a724bf8c13954e07064138dc3c51702e84f25712e7bd7'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f16b67ffd7e42ea9a526a02820f28a16e8e15ad4b1d1134dd66167d2e96d78f1'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'ffe8c5328d1469081a123958b77fc1670c3fb0ba78b33894ea4bd062a12771d1'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a2569f6005b0d0825ff9ad34cff42a30b61033ad30702ed1e5ae7e33aee89a'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'0ac33c97930216c96c8a2b6434953d09f899ab798cb12fde560349187300ecd3'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4775b66404be90e962efb7e45a7a39740b6e7a081775b9e4d0cde5668bb9630f'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'52b82213fc6073cef5ff0ce68f907a86bb3361f649e5cafb865aedbfa2f9e764'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e373ceefcaf190ca98a1e356e8c52829d6f834e22db838c8602329aed1fc2b1'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'e7c5a2f81056ed59b7f514c1a6256cb2d78abc7c7961f04ab784bd9d59ea147a'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f20b4f9b1cade436502ef425bc5250aee9965840f5e1111f1ad74894149e3e0'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'d636aa4cbaa0a913ffa8c9b63a9063458d956d2e3f8d22ce85a65bbae99b0a52'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89adf92b0319a20d12b414cfb50fd34acb12258b7a9fa28d398db6b445ed3697'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'2c0475e90d958b160c4d69ed73402bcdfe53fba54d90a9eef10aeefdfa27c65f'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdecfb2442bcd6c7dada29f20af13cb5b4279cd24cfecfc841ad2cff8d877b9a'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'716a1c547218d205487f3228fe25cadaa41804781912b36ef864dab452c6b385'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d0fdabfe03e6d03116ef81834e26a697235a82021f128e96239d15dc2550b82'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'e89771096b466ca3d2557ff3fb7cb4997cce0fa7a3965e04b4b62169a16ed700'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3957d3fffba256e2b8fb18084ffcfa8b0d19a6fe3ae22f431041b4c6487a35e'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'543da5bfe50d579e2ed969d4215d772038e7f42eb75c58b919835c9184325718'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e03c6d6a4028f9fb44466c6bde17e3055ed4fbd23934eac31fa40322f00b7ef'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'58bcbd56ebb5b170a9b5f8500453bca766fe272b4ececd37c41678e61ccfc354'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccea7c078b656323e3335cae52518b15144fab92eed02d9080ac3542e9145874'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'1cd2faf548caecb3ed1d0a27cf99b841424513de629f343daaa772bc5d2062cf'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d98708e7dcdcb55607ab134f8190d89562679a18b09882db23f51630e8eb96ef'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'2a6313bb5deca6a35bdd8b8b256cc64257ff7783a26ac394887444735d2336d6'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff353a546c6c53b4cad0bf5bf220a0b62202958986f2c49f6ba670ad6260fbb1'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'4063fc4e68dd6d16513fceaafbf23d0793bb6066834556b12d664b7b8c1af708'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2876dae858af5a4982820190b06596a2255fc2c5ea2794537f095f3547e8f64'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'5fbf7cbedce8457392fe72ea514fca93f373dbc13c9702b1fed3821ed534f1c3'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43261421b432d2c3ae528cd6655877088599b8620519785b633bf5936995d8aa'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'b16880e10b54dd0f2f719981c2596ced58bf4063c9d2fe06ca8d3f5a3bbeb378'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87290390dcaf700664c8355519f173dbc9dafbc656336632e51c1ba67d6e3947'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'1d63d67c6aab4739310da33b2350e9e2f99f73f7744c37fa867895494a12a500'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e72aa1fe7088c82c936adfeb3b6ae18c2fa70091326c2520dae1f4a7d31ab444'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bb6c94ddacc9ddc305bd92fa9e86492f2baeeb7e338ee4b564213b4d6ad5cf5e'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d8ecfd2c5d2538df2bbbdac6125885b9155d2b4457e61f5be7b8313d8ceb017'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'8a65bfb7eec451e09722d5e3df78f393bd85fb7b8a5db70855d45d351e5c2b49'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4de089849053282aeeb9a397f0431cc8921663fff6086f16ef9696ce7ba962e'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'7da58ad679446bc7ca8ea01c02995f115501b38e5ac3a13aa78f676c0c83d1e9'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9ab4acf537731a8ae4fb021f04e898bc3a1602462a86ff76ba77642d19485f'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'e5f0d33930523b54ba4ffef5d88816e7833a9ef1082c806d97c4012a78f7cd57'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96fea2eb8f886a0db4c16c0163080f91702cc7279862f90997afc1d9adc48875'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'4736384b3d36d482a5a43477b06813d80a5ca91f013eaf6338464d1db1eb6031'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb6ae0755c7ebe2ced5d28f0064702945cc001e244bfdc321af99ebfbe9a5851'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'ea4d3d3d285db21642be8a46d000c0f9b68780d7be2c15a59934213c9a986299'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2907e5825ec2fce47370172a8893a7fbf5821baf62d50510ebfcf705fe61d50'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'a0d9c58d70e7d68aeea696d23933a108164db24e888c94b15a5878e9933bb316'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53973aa8e68dbdc5f3e8f80b0bf5e9fed61e7209ce8fc6a48f16b2d281cb180e'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'1fb5d4ee184f04da658efb21c8d257d94dcc62a91e9fc639fec7af31a5e0db7f'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6738fa455c4b1c2aa35223fde443a51ece71c7e361d403f836efc26ccffa9503'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'60f32977b417204dfe2915d0d0dc39e76a81a1e7d9f342e96812df4a9a92cf76'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c479b21695c099ec240df9c8db1a70a856f17147dd789b54096fd39f0b9dc83'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'1f1ad9abe7f595a7fd055bbc8cb56db305fee989b28cb168fb84478937309ec9'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445f61669d7947659ea24ea88ead2eed1a6ec4ab826d5762c03473e13c05f555'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'aa18da67112d88fd1b06a25ac614c7293a94d0236024f717058bf720593b6976'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0b35b8820c8f792f73eca9b14675291ef52d5f03de7904ffd947de3b8ade3ba'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e35d096172c2d5955d07ac900b67e755163905934f7ba93acef99ecd212b09d4'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8b5ae2b35bb3a8a09f5075e9801d19deb5bdb83de272adf4dcd4ef86af8ba8d'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'b9aa5b3ccf4f8475e9bfe9959bc721eb9f1947d46f205e684e26d8add0e5a10d'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c103d5311491544af16aa4c844598e94df7b9389223c690c4648fa6637cd5c5'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'cdee0aa0fbc06d8f60cfd688986111f9d3e3ea53e2cbf58d699d28085167e39a'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa28590c6c407fa3e5b43adcd65665cd1ec7f87948f0a518066d69aa03034c6'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'ccaa86816e131b91348594f57f26ffbc95b62c18b9ad6ca562fc7335f1afb16f'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2aef97441eba5408a36b945a529f9cbc3946264dad827b01f7da1d4351da24e'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b5da484f340f552dfb64cced02de3b50c5f3e7ddc141c673e2bff8a17939d0ba'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65e9847e048c84044b9167821e963ddfe25a29769262435a770953ff15df9031'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'3933beef3a84436eee5179bf55dfb7471fc4d46a85b5eff7969aa25a5727e4b4'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a44bb2b7008a931c031c19a1fc82a08a9539c0211802f8cc20ffb6053174ee'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'a59493c7d91dbd14145b3abac9243b4aa9845831e3f336f325f68faaaf7f3190'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33342472cd56729de1d1556aad34c7e872c6542fba8f52d59d355279f548d18f'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'b308a6260ca71fedd22768b1a47ae0eb4086610e0ec2a54dd3ab0073bedd60a2'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28b961dab86048b6af3638d10c06201fdcbcf6afd916daea6c60dbae9292ee9c'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'af7dbd5fbffc89aa05fbc0458e29b3d2a022bfd2163996c24097ff69e707cf81'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d671fbda645c6938cdcd9e5d56d000c8a046d8c7a43e576123ed07d453a8df10'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'ff31e694a49a4448c9d9c3f97583bb42b1d497e747eb258001e3d74dd6955276'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'200a1842089b98b40fd57a7d9128ba3ab68f1aa9b0d4f1438799ff66d5b6d8fb'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'d73d18d34ca610e663c38dc80b7d072e91048b9660d7db85e3d624f2459c2a3d'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'993eabb9257dd2d112c750c98eaa69425186bfe3c3efa842929be5f38e88f085'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d399788ba15e76a7e0e2ebf99ff8ce8e71d88fa6445518786b00dca046ae7618'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e62f2b6a6c1528a3ef02a5f6fa6d06c241033c56ca27f74d1aae9156983c1165'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'be0d7bc05a832eae16e6f41b8ac32ef52f09e94cbf372c17b4ada2f3d7b2446b'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eda5034aa623b9149f7c7ebd4122013e6a203f042ce496dd938aa59ee8ec6cab'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'370c20f3349c42120ee231b39039a71bf1820ce164cf8152ef36decc8a8a4617'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'863231fc148004607e1da7b303f280184e89c3d1b9ccc71cdd339959b3be2a4e'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'e943bc9af4a40264f1afbcf70fe6779ec7b6a0f2046449b2a847ddac835a6403'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91cceaae6c08ca86c98abf4d954bdd8f643f8b35f5428d9ab973b1e697c8a6a6'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'a07f1e9ba56ece555b3f29ef35c348d730737e5d96958e5d95999b9905831f6d'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d31a4d715857a35544f6fc3a352f555d3d0ea7daf1855b9b6708ef7f736ec794'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'ea5c3b40e7b5d93e5da5de367e0af56773056545aa60633c6e36800f0dcd96b9'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5d5717fd363f3451b82a9a7f7f643f8bdefad4e79ac67fa3df7053760fda7b6'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ea03ffefcf40e632608984fc2cef37fbcbaf89a2e614cac1ba1f17bf79ce6fec'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cf66eda11e23946f744f9b1a09af8cad2ceb299c46f7e2cc1afd6e1cb1f5a22'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'37ce89772f5808efc68143044d362015314813d3fc684e9625b03a7b87393dd7'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad53dc18cff962a730d7339c35871db071d914e26cf2fbb38db853861ca1c41a'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'2808db9efec5e8530fe031ac849afefc3e99db1419e02dddfe0c190481b05a8b'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14e2318e23eee89e361d1281e9501d360537d17784bcd692f7f0970dc6823ac7'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'5372efd90e6137bf201eb397dc1f11221e253b9e96ffe052a82b7a7284218ca1'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965c7dd11479bb1b496232ac0a1717c36fda46eebb0aa77ff451988bf0c11204'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'9342611f021c747cd2c6f68f1289167c1b51ce3c1678c41fbe51960a0813b0e8'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'353103ecd077c4a1e5f3022a2dd0efe37160af772553351ca3935917737fc06e'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'493109fa8e62034d445b416d39bf6077fb36ccecdd24d15a434df7a7ff909058'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb95ace14d3869214c4434251688283145c45cdeb82ceabdaf17963993f3e44c'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'2c621bd77f539913d38c9ffab5c05822b8cb8c52c9a510ddcddf23fa9c584fd1'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee9fd16e884d63116ffe7628e4ee22ef8e70cd338a6db20eea08d4453b350aa7'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'09c5cfb050ea97a0855a1c0c2c6e0f0f516ef037828fc0d66cef654bebbffd0f'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cea766c35d0f5e36261cb714db54b4527d7875b7b0e7a6287971160bed4d6a28'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'d4f3e4697f51f5747d3f73c33aca8fc43af15e8b449b1e2372ac933ea505d860'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'909747d8008563689cbc5c604387c5b683e9b0a4f3a64e190fcad9d6045fd969'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'24a5b25debee05cf6941e88b9ba7d50b9107dc3f71d132d4e2962f213a164b92'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2a96fae7a65fa85108d9750deb87c7a6b640a27d35bb82e86153c6acd31be5'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'0724f578e3a94c582700f65b09d2e857cfc36fb73306a0edb6e51cae340589df'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d6b43d16d755ee78bc94e1330aa57995d4a0b6eb6c12ba26434b483130157ec'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'653fa20b9e1699e7a451e5e1b8061c2a7d3b8262460adbf5b783e43c2a592c83'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09918c6ed105c0d4ad6990f977d976e885ec07e6df035589d865a9f21e4b81db'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'af47ce1241dc92aa231f52003b462125352327a6d56ac994f4c012d4d64b40d2'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f973608672ef63593eee449796c5fbb60d35da9df0d4d9b9c673b40838cdb65'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'013734315591dbe33f60ac8df22148b2371d6b50cc1dd2812ac7ad96fa208dcb'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'071953092251b19378ab4b5c3d8cc92a801083d752e5e91e5a727ce70c24703b'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'5fe024e66b205ef122519ab25abbc271809376555cb0479bd328fce79815eea6'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517c5ec8e4417c74727fbbe780d0ebe410ec3cb24122169c33e834570ae236b5'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'0d24adc409fd1518c4ecd02ed837509f9577d93838b3874d84e8491117d706b7'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5f9f2fc9ef460b1cb9a3879e84ee60f822b0c68db5308c8a9f84e1934bd3511'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'a832d8e01378035069341e07d6ab1ab5decfad3b8ac8d10499906e7f10072111'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a331a01f4df0399584414b72dab6f992b357cce8dcf0e688acd5e088a68a83c'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'4866ae40895021dfae3c073eb2cfed5f266c9782b8485163ae940ed10c39d230'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e775737f252c7932eaec9007a107d3194011bf546b3fb6753f60d918f3466db9'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'502eadea409e3ca0850e696d5b78bd2b88ccdfaca3a0ff18eed799536d337c27'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a37d3a819297967913953070a438581538a259699dfcfb3f22e1471bae892932'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'d83b16a3aa11b5f023f3b43dc1adf83fe1a22f401e57758be3c3d99db6213398'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b335d4ec59683dc42ce2c233524d6c9bdd69b7ec7ce6d981cf9d38ce6368ab22'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'1c80a5e36bb0c1dc9354ba9341a28a32422d2d212a9c6d1f917c60a553eaad9d'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0df766e753f82f5ef9aad93cd39be3c20970aa89e0a48374517e94b95283f6d'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'3df25fdb671877206e171394a2e310a1dd25849b9a3d82f8fd051085642ee5e8'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d1af40dfc9df88bee074bedc42951765560b51845f6a142bc9302304b50ff7'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'de4a780b3503157fb4c8d34bcf1fed856bac97969eefc64d0bddc8743b3b8f43'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f995518c636366fa35deb195b1ad2e5f0e29c722411c6caeb8051022c7d3753'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'1a707c0c15109a7c227038d74d62cc9e8a4461a35e645f3508eb2ba8aa08461d'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01e298947bae808453ec73aeb6c3eb345794351a73f7395828520d4c05a78d85'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'b8a283285cd7db83a6f3461dbf0cf7aa311290dd9132568e24fd50ac39e85ab9'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb7cef71febe3acfc5f2691fc167a63d2c250a6266e6fd8e43e11997540e946f'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'651d433ce5db1b054eb760ac4f57215a5b53109fe39c9771297ba865bf009555'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81261106ad2f7a2b7e89c949bcb1a36f04d4405872ac04f6905293b611a2405e'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'d525120cae059af7feaad95c11e9bb8731de6e4130c7ef49b74b3466cc4fea61'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627278a94eb95c50c32794c72e2965c423261e10af1a6a8efec5004085b63987'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'7c6bf4bc339109a86b66cfa827fca76675eed5f0e5881c1e5fc7b311f2c2cb2f'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e163d9382de1cff5f0f7142f992d1854b8496d63abb5873df9ebb529ff499bec'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'53eba09774ebf6e07459e83408598d0a24d903e8f3ed71cce68406cbda89984f'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c14329fc25d49473ffaeeded8c583cfe2709c6d11d8edc26c5946a3b60d5ffed'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'a647d27d8ccbb484542f309afbefeba198b6b3cc62ea44676ad2b002c961aacd'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92fe554f3f981e577e2ce4a7bd58d9653b0eca53f42018fe17f9306a65392f'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'3f67c00efc0236abf3f24c9011e6e85eadfcb901707f3a36d4d92c80e77e6d7e'); +INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":" e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0 2 "}',0,'NEW_TRANSACTION',NULL,'76dfdf330f906f5cc08d5a85a01c41e7584f080a77e42abee33055c3c24dea53'); +INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','bded1aad045cb3fff4b198d73bdab694ea912ceb07e0d69eaad1e3750b87ef64'); +INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','e8fb4c77bc2943cf8e7e86f335657a1e5cc7823c646f810441a78b90de42fa97'); +INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'80bc197cc9f8b6d19ee8bf98d5aafa27af8b3fea0ee76cc4cc38734f20ce2607'); +INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d60d2de99a9528b5d2c33a8db6744aea4a1bb25bb3dbad49d292b225cd7ad271'); +INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2,"utxos_info":" ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0 2 "}',0,'NEW_TRANSACTION',NULL,'b57c5846cd488a2e09090ce9b886a69db27965b9dfd295c9eecb838200f45e75'); +INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','e50454e88d472e8cb80d60ac3d8539392f638568067071f4222bcd9aa3d3e0f3'); +INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','0ab74b44dcd03786bb3edcfe075111045284366ff6b3862aa1c48ab4fc18255b'); +INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','6042afbdd3becdc6b33cc52c9524fd9c1a7df7a28f6d8c6918ed7b4d433a1d71'); +INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','2d015ef61c827fb9c779df6f70077ced290cbac42b5c4b70c833571daee7f8f3'); +INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','efb11bfcde923fc274c9aa642a439837111018e768c3bf64a875a31068f5f3d6'); +INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'ff6ae1a821eb27cbe1a32e38847a2a0d1142a75ffad86852fd4faebb8fb8de9f'); +INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67096ba415ae558b1e0f874d102e59857ec5f2b5961e41b8a3bf56b6b8bcd2d7'); +INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3,"utxos_info":" 8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0 2 "}',0,'NEW_TRANSACTION',NULL,'f2be5e6395fb55fc946914e0cdecf53966c654b8b350e13f6797a310044f3fd4'); +INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','b11ce8bd3c74182935409a45d5829f748e11a2cd1a4bffbc40465cc45ec8136e'); +INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','235fb355cade25d8c0fa6be12bfd6dd76fb394077d3dadee815136dcd36a6680'); +INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','76f4a448f27a3516c0f9e4908d8496ffa984908113a64e93fd49f57f0a81e0e6'); +INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e1fb93fa15f7f4631fc1a3d23d0bccee1a8b479f44cc9f6d6f31596cfb435968'); +INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','07237ee005ffa21011a46c14e08fe7b701a51a1c83dc8a1705be6955c9993766'); +INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'b8e9780d2fa251939cd570daca39aca6e152de5c5d0ccdfeb10cd132fc9a9c68'); +INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e804d3169038c014499c98c98b17c790e4d517ce51804d596445208adb10afd1'); +INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4,"utxos_info":" 197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0 2 "}',0,'NEW_TRANSACTION',NULL,'1abd8229c3cd2d7e6fd2a07cf847a8142265a07db6a6ceb7d29d6e3db7b23faf'); +INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','130569342dc1739c01d07fcdffb38bb5e94870f0bacf39954c110b785726c010'); +INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','cc5c95f24a3a059f3831b5fd0c0fd42a4269165aaa01d9a7e2fb487a2863caa7'); +INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_events":"creation","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','65e465d460aca5a2f45fc1312cbae63fb39b96613bd47c19c13bb49117989f07'); +INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','41f8c61d1335f3ce3d41251cbdec886ac2e20612210f7bdcf42eb1a88a89dbe1'); +INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','0d3b4ffba768f2049e965afc5ea17bfb209b8a44203a128eadbe96f7b68cf730'); +INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'f14ec5351505492551b724ad5a36af4657f366849e6296a683a2b5ad3a3e6383'); +INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09d954c8f663b3adb06985d2efc03bec77d90479583c14a5065c8d7476fc5ab2'); +INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5,"utxos_info":" 44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0 2 "}',0,'NEW_TRANSACTION',NULL,'6311c33b34364be9fd0be1d5987a9b23745b1ca3eb19cc12d7b6a2bb06fa9b64'); +INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','da807705dba783eb5e65c5ae9baa461f259ae459fdf5d4a3100a722d7f593359'); +INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','d8be45e91e3f5feb5686e4f88a53bf87bd846819f61f6cabd73553585923818a'); +INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_events":"creation","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','ac63d941cb70e31c8d20f82c30ee878c12b385e60e3fb7e9095a181111908ce4'); +INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','1935a414cdd969be0c83449f50ebb4559a401af08636b8929f613cc60fc942bc'); +INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','28bfd9c25126889b483f899873d267c2a0875e54b26f8935a1199e61195ccb58'); +INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'dd09dfb0b040d2a28fef17cb352ba6a30204afa10b31bcae4f71445fc0f800a4'); +INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3161b3729164d1adda1b2bbb232e9da1f8c73ea13bd48425428c26ea5f5742fd'); +INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6,"utxos_info":" 2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0 2 "}',0,'NEW_TRANSACTION',NULL,'2a58194b5ef81adb892d14f9782274e84dbef049891fac322c1f2f4a48065372'); +INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','698a2687da067480bc29ecec2cff0461669071c0e762cd874e28df634ea6d559'); +INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_events":"lock_quantity","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','4dd17ce399cf827622a167847e9f4873a8f8d4c323bde8425359c5a371a55d2e'); +INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','16aa5771fadd01be729ee82c30852bd16f7442ee8442e34e731c968d6b9cbb0a'); +INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"63a7957eda022b56b21c330252e25c00991d7559c0d1c4c0fd743be972baeed6","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'a2e57656bdcab128b200d20a15ea603096209118336cb9132f075117edcb1b2b'); +INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b13d3d31dcceef4eaa7df055df90ccea56ba4ae54f108063e397b1b43cee33'); +INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7,"utxos_info":" 5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0 2 "}',0,'NEW_TRANSACTION',NULL,'e0f0b9b01feaf118f956178fe3da0a2f3a1a2b991138ba9cd0cdcb20c0235d1a'); +INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','a3c283707eba9643d3096b0593d419f109a1ca135ca7a9f305a83572890c697c'); +INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','13e365c4c7ba694e18e8f6e246b739243c921af0735d25507688e4643574ce99'); +INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','82ef1d6f1c1ca17d7d1f203efe679c394a95f882c2ab15a958cea06c71c6521a'); +INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"f1ec09af67d51677f20a0462711cd5841b16d4aafbdd0a96d01acfb39260d0f5","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'22faea68ec26f521cead21b7d503bd79ce42a0790af9e6369b4e7646ba5ec191'); +INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b75e92364d3b42fad655a08e223283a36fa57dfca49b615aae1c63c9444a1ad1'); +INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":" e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0 3 "}',0,'NEW_TRANSACTION',NULL,'2e4c37e509d13d7806ae0f544cf54cedad58207c9d71220a49a3c11904f3b6a7'); +INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','4c314c8b6e19b454d78c61ee692343ea31d0c39d2190631a3edc4164c81e9e8a'); +INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','b5dc2a6f1a9d3fa9a6c44e99941520e04d95f0793712a25d3380f538976cdc7a'); +INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','52d9b64878b4e34ddef295f68878dc641e7217f789221580812672db83eb14ef'); +INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','078d627e980c667041dee82f1ae5fb09c7ff7d428acd66ce7cca21ca3d4fde35'); +INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"465dd7fc760fa85c75680902a693d55fce272ca9801155428d73b88878c49ff8","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'0a6f9eec170d170282bebcad42ae73a96cfa380008b5aa018a5450758d0e92ed'); +INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e989ee71e1d59830e4422f0d09b4966d35cabb77f7daf16851b2896443433245'); +INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":" 4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0 3 "}',0,'NEW_TRANSACTION',NULL,'40637483820e97055371d0e5b3ee16f9f35bf58ed0b35f6354b36c72716e2364'); +INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','2a6387e6cad8c5d1b0825c15387b62c50c756894c970f9db3c72b58f9132712d'); +INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','772b0c2628ba9b6648298057f3fa9a40a2b9f7333cf4acef7343f23f153fda23'); +INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','9bd15365b0773afc0016a31800bf31c897d75fa84e28f330c0ec60b5f99558fb'); +INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','2ee5506e00e1620806bc916f7ee499ec166199cd75131292207a1508e905ea8e'); +INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"72e0b499edf5c3451917079f78002bf90d9d7cae05286d237055ee5eae671b05","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'71c32f234ede5c3c5b65d91f4efbae69153d9dd7533e47b22f5f52d36a0925b1'); +INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'321aba22a9b4799f3a55918cca9784544076fcf2eb2827703198367034bbdf93'); +INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":" 70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0 2 "}',0,'NEW_TRANSACTION',NULL,'b5ea581f715827ac9fd845c253eb682f8f0e12073d2d28dd28623c3239393673'); +INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','f34e9dfb5013b06f33c6de2249414ff74d805d111341b02df11865392a1d0226'); +INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','4e3c2ef3d16b1527af6ce3ed8573fa9490b6f769d71e32b954dfd5a648ca94dc'); +INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','b67a905e32aab0d705a2d7fad0392d805dfb51a7ff835f87b6bd0399eb3ba61a'); +INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"2a43aef33737083af9b27b884e335a51cc302df481992a8f1d92caf9a7034ea2","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'8cdf4c8786386a394bc340db351fccbbb9515ec0666699e8eb9905c23f7fd01c'); +INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06de4ba96000ad55b9e92933e2eaa0ca0da408e1a5195e16937e9cb5fbe770d9'); +INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":" 8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0 2 "}',0,'NEW_TRANSACTION',NULL,'0ca84450b8e3466386338d4ec9c14bd5a9775d0a1c50755accebd29813614a19'); +INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','cb1f8047b4eb4ab2c9f0554efd342f6228cdbe8351376d156d5a5dac8ebcc4aa'); +INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','d44de6662b0c7714816b0cc5a8d442f1ed0acf9b33191a177650ad820e180107'); +INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','1bad7b09e966bbaf1f5eafc9ee9ba4cfab634daafcfe3bdf309d1e76b8af70b4'); +INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"5819dd2aa903d108e29c6d117f4d55b183bfcd91f0fa09460790b406914f7472","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'b78c806ca87c78f50deece1086839167150d0750481fcccb08c413e1dbb22d15'); +INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec88a35b861bc80a4ea804e840465d944cfaab6081160d5fb1107a8d69607728'); +INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":" ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0 2 "}',0,'NEW_TRANSACTION',NULL,'21cf518ddb4ee777c57659da3911a29398482219c520b6468a6ec2cdb4d37de6'); +INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','69b48ef0da158de9c1cd218fd1ca14c29a1c2a72bd166a25de73a6ba348d171c'); +INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','afb6df2ff5e8ee1253707e93764ac7cf33a5607a737aeeba7311678393fe24d4'); +INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9ed3f66eb0863d682e66f3d31464cc89f4d5f0b106ec1f7b12bf4a2393f7fc35","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'08649280b8e46a83eb987a8fd1792b8c2cc8a0adf03cf3c9dafa687f7e8a455c'); +INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'338b9b587973e1baab952543d2b1b51b9ace165954a735588eba3a9c1ff8b349'); +INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":" 07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0 3 "}',0,'NEW_TRANSACTION',NULL,'e5f4ce11a5dc2a7187641d611e2c384d522a62893681f5980151dddbd9d0e12e'); +INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','01a7fdb50bfbeaa943d2a32544c50d5b9a02ab3bf866318400ca18043edbd7e7'); +INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','075d160f4a89fe6466af13c5e9ec0d6d5f1c501335819e29d72a81ee810fa39e'); +INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','998cc2c6c62e709cb5585bb04ade5092bb3a27f3be8178ffc410a22700021e51'); +INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','d88364086a8fac47806865f6826a02d781542c7cabe24f5fda07af51dab7f479'); +INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"c7d8bd98d8228b85361c5bbb35b2117291a3a8676c0658074dad53e1663f6f11","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'41489221b3c439d654df25bc660c516f4f3204efd3f83c7359ea943d6f4db070'); +INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bc777d526cfd06524cc51a7304dc3d373b63fdb2d2b0aa2390e819efbdd32be'); +INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":" 1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0 3 "}',0,'NEW_TRANSACTION',NULL,'9adb5fa21951ec2c33d0245565f227851b30b7f4c2af25e5b58e3bce3bb8c335'); +INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','ce9f0c430bbdb369e8e514fcb1289d9c0e3f62cb0f211008ddb4800f6fe4013c'); +INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','b724bf677efd48ec2f1644f8f06f334c73ab48738f792c416b0eb78ff065ee2e'); +INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','60bfa881592de31e5ae5723e8c483d2ce2d9ee6290d8dea7027a6cbfd66a534a'); +INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','b0650b65dbe612113273dee8d35c130aedb0a0856a367ab5c4bfc09980625a24'); +INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"c7e2aac3c30b2edc6f18020438fa32b83fc51d1a3ddd281da3390a83e2dfb071","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'af563d1b719d6c59b39e85aec4f1be1903b9d34d4f4f33ee390b7dd1c61036a0'); +INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fd37ff735e8d3db92742feddc44f1b0b81e2feb7593be2e0bda2abe0e4a1634'); +INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":" a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0 3 "}',0,'NEW_TRANSACTION',NULL,'4cea9db64bf74a2cf4d24200e79cf6e277c748df9189355535df320bebeb6c05'); +INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','c3f54fa36a105acc536be07ccf726f0cb8c51ae3619fb430384d6c4e628fd5c4'); +INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','e0ed226fde8ddecf860435519885b6e0d22f2dfae9e12959e88b8a3fb85057e8'); +INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','27de35c8096e9c8ebec52e3cdbc6ca3e445666c2ac9e94453cb5823baa3ef576'); +INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','d2696b31bc7454c75638bfc473b5b1ea0c5c9d9d36cd4a3ee824e0c4387f4115'); +INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"8ce87083ee2f63e245d2f049159c6e8aff6a3f9c53ab29cb9334b7021dea6c2c","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'66c4f846294ee3aeb27ed5d96679a2a93782dde25bb5758de605d480a3c8c253'); +INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dd29c676a75ee2cdcdc4ed04da025a19486eb20581e6f6f40efe322bdc0b084'); +INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":" 3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0 3 "}',0,'NEW_TRANSACTION',NULL,'c909b2baf473507ade85756686c203fa5cf78816ab55aef68d01de97fbaec606'); +INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','937a707c58ac36f67f25f92aa49d1499fa80db271851e0f11fae0d871de70bd2'); +INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','f4fe8192f1924151739cfbf76a3b0ebe448eb07542676a99c517df2ecdecefb1'); +INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','8b0ea20903ffa28b3506719ff244cddba7844d02a87952a17eb0eb237339a8c4'); +INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','69a02f3ec3a16c5b52167b903f07e516eaf76685d4418ea8115044357a7cb767'); +INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"b366d837de40bd2dc95727ae3755ec5d5c0d8cd33f995c8c6c875a9717b758be","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'750e4e7c9c4593a71052f8f06882da65e701614aa571a65efedb321986183222'); +INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b91ffa8a07404696420d2b474eb8cc4097c2fc31dcf7d9bd1caa55c50324246f'); +INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":" 698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0 2 "}',0,'NEW_TRANSACTION',NULL,'3f5345fc155b073655a287c8ce8c6803b188eb43b6bbbb3733f8301dc2de2da8'); +INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','0147cc2ebf899defd7b49c6f527ad80a4fee64237cac05c5e168d69e2998f6a3'); +INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','690758fd1ca559a022f3f9114affad4e1f5850d6d7c90a3ca39c5769b9612dea'); +INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','4db72b73c8c6656f357c10b1ad937b6f4d5a8fe4f0f825906caa940273563b7d'); +INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','e8453c0bcf6d02d257f9ca97bacbbe25067fe2f62138abbab2c1d97517dec5ef'); +INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','eda169a1d8b8fb210143f7731448608cfc25e00e560cac08e559f9b46f9bf167'); +INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"3718ee19f1710b711f468f728bdff07077c459fba5d1a632e2591ddbba162fb4","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'d54634a2a191c36526f30e1ce6d336a7e26f7edcd9d0a1322baa4a56a663220c'); +INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81e9f9ddd5966274110335a69bf9317d79453071b2db260475f54b2c3e09d15e'); +INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":" 1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0 2 "}',0,'NEW_TRANSACTION',NULL,'5b9bb2d6c4f86e7f3fca30dc19e630232f9250cdf0e8ef7cbacf12e50f6d865e'); +INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','aa689d7eee7cabe51bcc039d14a09665c2b9670c773c9fc18b553463f1e30192'); +INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','adbfa2387333c0cce43583f43d7681516a4f9c5a5dfda2101eebc4fff2697b42'); +INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"bde5eef60c841b2b992ab42d020ec29ce86e554733b244fb3ebb7381e7477978","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'8f65a186918b79b9b4db4e20aab4acea5e422d1f944fa4e322478e54586404e3'); +INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fd2e9e718ded26d3a8a4ab2a410f7fd172f27e194d0be5380a78eaf86e9e03c'); +INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":" 903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0 2 "}',0,'NEW_TRANSACTION',NULL,'453ef08535e78fb41d67647e677dd9ee1bb7d21ad5fa661cd6cf12b8bc6d6c40'); +INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','c3d179a5fcbfdea52395bee17da3d3f1777b61c9621d94c9089a70f9cd05c36b'); +INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','ecf0d08e054f396218872c6dfaef710fd9eb49b1b192e4e6fccf3a735bc8400b'); +INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"0e37101c96059bf4f64ef685d5012339cce4a8951df4cad403ec7c2810d087a3","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'0725cddd0d82dbd217758930f7066dc6319ba2bba9f629b3830abbb270e229bf'); +INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45565d932fccfe78f9d17acf1a5a1e7699beaf0894fd0e8520cab88323ea1ea'); +INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":" f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0 3 "}',0,'NEW_TRANSACTION',NULL,'a2b01b358a7c6b094e442b0052799a1ad3e23e03b5a3cd8e7a79da52b4ea5738'); +INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','41142197c0591c97a724f3931254b65f25a666224af6fac35eb1dbc730df7c4e'); +INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','5eaa632549517205525eecc7c22b779bdf4bf10730c1b588443f9a33e72a735d'); +INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','846aa2688337e8579770a677f9f42acfe2bdd308a5702963f2375c729452866a'); +INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"3311978681f03e1e4097ce60a8e0c291914e9f307d8cc7901879e717e022b4cc","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'a773366142dce15956d0af123901beec23a63c1280946b6c3c66eded88c8e05d'); +INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24fea1e62c61dac2757d0b7a4e67326c1eb2702697fc130af0baced92cfefc30'); +INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":" aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0 3 "}',0,'NEW_TRANSACTION',NULL,'6b1394530824a4c1639840b44032955c6b7ba2e5ea67a20ca461f21350e8758a'); +INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','713223c5539394c8c60af7fb28913efa6404c2243d6352275d6d5736a9f540ad'); +INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a56c469e338c41b4f773ed31c02bafe07eed38eb6ad6bb77f065dc35a3666d97'); +INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','7ad6c3cb0314e4a7a1a6ed2f3eeb6cfbf24fc9641218bf2b996033a1bb1dcb24'); +INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','94fa621a2ccd13494cb7b26a0e830d523768ae0b423a0fdbd2d320efc99b495b'); +INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','f137fd10106da5a92a3bb873acebd7ac6cd78272601262471bd99119d0c9e801'); +INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','bb972f5414aa6fa0657394fa1e004f91c0ff0f97d4e591ae305f33943d1d4c5a'); +INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','92f154ea2c08506660c1013d686b7c23d2efe7f7324bc8e022bf5be292fb58ff'); +INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a5b4c2e78f239296119d61776e7196db660f95b592ae9fe0556c3294620abb86'); +INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd7d9e6081ce6cb8a21c3d6c9fd698c3e6108eaa672f21b58c0a7ed42c3012bb","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'4c010961181f632256da7e6f8287ef447c7096688167fe325d3e6b3462cafd44'); +INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b30e2486db1868c0e748d06956c243e57e698578748662be60f42a2f53044ef'); +INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"d0289a62fb6fd2a2baae6b9a0f6d32bc3342d2369090dec293df76be806c6c47","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'ca43f2f4e84d2b0ac5166a95473b8237018955ffc6ea94e25871337573167236'); +INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48fd0426b62aeec193dd6808f9787e5ef8aa252be94d72d7c7a73c0b0781880a'); +INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"84fc195dbd67e6b4be885715425e289bbd79dc954a97cf474c6e12978a0f494e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'1eafbcdebb73ec804727d1f2de88a7a379230f1545f589695a9d5d06640a39ac'); +INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff65b3309b56bf51caa54a48c0dee4bd73f47cfc228d6084cd3c9c81e9ecf53a'); +INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"8f94a325619821f9c9423cde9727b0533aff3f75b33b1d6a85bd2e652520a8ab","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'84e2db7ee3e50831154b9f526ff50bc2656ef3725009cb6a2d375ec7dfa132e1'); +INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a1576582f55dc34e4ce5c13669af5f20d1c3605222b4237534d03efc978aaab'); +INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"4a65a3d85381d78cd12984e0c654e4dfbfd3e593eb4d12cdf677def8043a7969","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'ec8c66dc88168c8f3bbe7674dbb8407b0d6419ad34f9586f0d314e1a24869355'); +INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'991258002766a03a163ce8e4560ff7956b6525ee146de29fdd87734084439c61'); +INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"9c31da98a0403a01bc9b631ea1478762a7b069edee380b439d0cf240506a6db2","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'3f736f0bdc9156a3495db0e0cf005d75c1c3c9332d4620426cf6c78ecd5aca14'); +INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'294a3eae58d695117e5003d132865e925213bf973b26e104322a61c123adcf47'); +INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"1cafaebaf8fe01c89b7412ad8d9a8df3a5cad6509d6e0fe3a0f3a0d34fa5aca9","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'22ed6a5fd487e3ad0fae38e80192216316fafe64cec2063a0bd6330f3d408d46'); +INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b618b5ffefc39e38ebb12fb303a94af97c846cf604d474daaee19736cdcb6307'); +INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"bc7c44c43b343f4789bdf3b004aca6370bc5296c3c1750a6115aed522f4592a5","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'605b80b807d90b65632b1570250d69b229869be43828050069eb4f72179db207'); +INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d5a7e65b03da5b8eca6395f445b576dc28623adf3370e7e194877caa13b71e4'); +INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"01b63edc6378819a2c4ffdac39f0aa39fb086641be47f363ff0eed70b933fd49","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'354c41620fdcc560cc1ff9a297b1b1b54bef941b972c5ebc55059b08e84b49b9'); +INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'595feef6db7fa5e431cd2473622df4fb5622f9d18677250de3808e2faebf7ea5'); +INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"474103ff22668dd68938419d7ee301895f403c72372227aab4039ff7f43b3d39","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'1132bb8d0adcd7859bdcd9d3f6e137627f947fa2b73c8fec50463719314ede6a'); +INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'410dd4141e519ca4009fe041e67c0d4eb0568b6813353e288e00cf8e9184eff0'); +INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"9dae81c052a6c703552a016fda43dd88d0dcfeae218ee068206323e5b4831b81","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'81b110864cad65e8f7ce6301262c91182a637d15efdf8b3c5413a11d43adc27e'); +INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'729fa406517948bea255ac48b67dd3c556d148d00acf15fef6d52a77f54a588f'); +INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"cccf25a85ac4f74a6e17c480c727d9f89ea5bb99085032d7dfe3c1c98bb239c2","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'76814dcadde97b2c210cc0e1c9ec424118b5e10bebf5fd32dbfccf4857f7b5c2'); +INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbe5f1ba9cb64f8f5d3edb0a89f182959d9dbe03a9b762c801869f19b3b82d02'); +INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b8badc1e308bb9a6ff7fa28081ba9f46b59545700b2896c208931a25dacb9e41","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'7a935d1990210ffb07e594d113d1d2bf92f788b3eb4ed5e777e453a43ddea51f'); +INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc16a6817df0256745ffe2024bd0d933c7f3bbafaaff48fcada5c048f14cf9e7'); +INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"d9760e8870cb885159abda769562faba786eece38fe3bf398ff22ed37130808f","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'5c8204ce81d904440548c48653a55a98eddfd90797904ca414ee4bb019ecccce'); +INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0bbff032febb91a0fb8a54176dc070c379f0a470e35c5ec101f66de911ddc0b'); +INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"f13600836f327924b5473e11221ade412fa4f72054d128ae22df0e0957070b5d","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'f19b1a3fbb399d331c0d657a9487e497b5ed0569f1dac390331ccca8155632ce'); +INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e4f67244cac30303aebc9f9c11d4ff3617b062fbc4a1b1d691387ccbdee8770'); +INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b90c2abdee5c5a676c1c039a0d2d8b87695ed78c95583f93bfb0d5f233cf165e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'56777d4248914e21a6b5596f07b54a81f1ccedb482480bfdb5c1745710d4c18c'); +INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'994e0250958616667f4b019c6076c714f2d5c68dd2e4dde4ff3bddbee527fd29'); +INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"cd08c8d0e8c3b951e229696314cf4dcefa4f3acf3c0bc5be8b4a54c50dbc413e","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'75df4a02fae5e8af6de288a05c9b48b99bb4c5911907de54a3a2279c8ad661de'); +INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05ece1d784aca61f481b4a7fa2443c6fb178f84f4e2e954b2ff63fcbe39fd534'); +INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"ee7dd116faf09a22f5804ca8d9dd3e3a029fa2444e87c968c6429994fa70514d","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'005ec26db8e60db103bf67b5f96fbd0c31901514eb5a03f5a1577c67b0053fa8'); +INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a35ed91ddbb93a8cd19baa2d5f93325fa47349b406a107a6cd78b116a07da3d8'); +INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"f0dcc55efe7355883d871044447849f882c2cf131e949c57ec8e1016e75ffab3","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'3f2296244e65ff4fbc647bb45f0012a29d417c3654a2e388cdda695b9e07183e'); +INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acac529ccb5290d85d283897d690823b67432fd93500fe4bf8611348515aa5a6'); +INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"bc9752f9338dc8c3b76956a57d10f7a159d71d35ec96179f48e1c1393467c402","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'c9df6e81ccd2de599f1acc5cb4770039633c18a2b3f090acb2bc2e13751f7a93'); +INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'339b591df463e51394d1a4973366c01d6c903eaa7a41c2e61c9e9e65887136ad'); +INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"26bb1deaa9533db91cfcebc483c33a53958f0d00ddc7a70abb3fb7cf9884b52e","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'e67c779a43670d0f69bc00eebbd643a2d351029c9520a6af3f88b5691987fdb8'); +INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69862cc3f1d1c9d551a5da59d721de9a9392598f6fa47a8791ab3e7ed35f632e'); +INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"b21f31fef68760d50754afaf0b258f6157066b50801c9a3b4a640a681963b07d","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'8135bbda61098c06c7159b9aeca1bc95d26244f0f256f47b16bafd20c71daca8'); +INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3d1ecd6b5727cf196ad43f6004d4c893fa0fdf1865dafb0d7985d70d3cf487c'); +INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"eaca20ff4266ef4edcb702c228916c0e229c09dbb899f27a2948ddccd9c10e92","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'5572389f01cfac29fdb0e25455670920642af98a783349c2631854c96507ed33'); +INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99fd3b4ca0d7f96ac1cd832046d781ad3fac6fffcb7b8f35717980ae6e68496'); +INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"0f77fc33c62a3144b2a93201369efc301575446cdcb0251f467707d434e47779","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'f8b00cdd8cc78ebd09910a1d7689adb9c579ffb596d108ef63b0db38766afe52'); +INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5720fc24bd8017b33d3409fb515319c9a73b1ea7efdb6fcbfa257ec18bc6c4bf'); +INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"74e6914f5ee0e118db94288a3b19f8749e9e8017501a3a3230d8181921514072","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'cef78b8c8aeb62cf6cd6b9444cac3c08f316f1794003c88dd8a45ecfc322b2cb'); +INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51f8f1a87d34d842e41f5559bc4bdd8dd9c3c65d6b50d0cd5f2884c42629d605'); +INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"41800a0462b06e94f3e56c52dcb0a9151a97eee494beb193881f81c87baaf0a8","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'ac585c4150adc1359fb933be771b83f42ab5d3531bad0dad2627efefadde24a6'); +INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ef0def9cf11a3100220a449ae35f945236df145ef5d98b3d912302ab5873a4'); +INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"b7c1cc63dcebd6d9c98a5d234d732d89862fee31e3a040fc9660cd17c462ac08","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'061d0d1d9d39ae0906ddb7e324348fd477bf12d7a08c6af3d93f19a12f42466f'); +INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e919fe336ce97388f9acd1a1ccb526930073ff484f6334d30d64c67c6a388545'); +INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"5f74b2d116d393031afd8f59cbc8e51b707217778968107aa2db52314d25f924","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'0cd62dcfbc16ef9811fbda98113c9a4018889cb9285bb41df08957038cbcdd4b'); +INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8253e3179b669d0e70b6180388353cb92ca63b934ec0ae4988d749a6a1dae0c1'); +INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"3c45a5ec9d96b7b28cd4e07d22e461270630fd4bf5accf7204e3ff9a900c00b2","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'55d9d13d152a76b1f79d14daf9616de14f9a004cc6038de07af1b6ce400e7087'); +INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01b92b9da6fe61ae27fc16fc37168dc8155090cdbbdad7652aac0da130a794cd'); +INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"363215f61a5870134cf57966202321c9b8b246fa69523a34d1905967d8d73a8b","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'ccfb675d4fa0dc75ed727820cf26349dd17711e3d05e6e12dc3373ebb7996a13'); +INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45308c77e6e393efa3d9942375c1e14f344c7a5aa2b4a893420afeab912c436'); +INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"f4c338dea66a188264abe6979fbfbb00938f7acefc469e87860e14668080936b","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'ac2da11efbc55d09d633b716c95bda493b6a80bc754ca7f58f25be969ac85672'); +INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d87b5ea94bbb2138eda9efb6f4395b893d71e994af9191c5424b3a60f0d9c69'); +INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"f2011dc8a4c59f8b9b5b61b5716a74a8469773915e5d3c1ea3472bf840b311bf","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'1490f47e5305a736beddc7306cdfbd6a14f631cd22ea3696d608799ab7a48cd2'); +INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72fdc9135ceeb24e0b14073e089c195c8d5e3968e4ac7d55662719a9ad7dd332'); +INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"37df0186abca13980ded4085c495b3834a072410a657c44a5c37e43f24a7a4f4","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'091aaba969d90908117ab9663ab4d111699b2db51f706c68b257886d37f8d1b4'); +INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7bed58dcc5e2817eb821866ed8b1fc56adbe2feadd93c7e0a54a54ca2c229bf'); +INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"7e79624041fe05cfaee8aa9e27ccbaaf6c8e1cefb37daef5f64cfa2192397386","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'77a3bb90ba45685ce3a2a12abfde17929c0e8e00709318a5368b105365fe944e'); +INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65b9268aebbf6a4aa622c626482db23d12de0419e06fa5708445302e192f99e1'); +INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"3098f288e18ba72c89c58351e5f446890d354d9edc38007d67923909cb49e211","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'e5d824ea9997a19908eafbaedc016a5d8b6eeb96f1061fceb17cd3f0da22980f'); +INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3a759bb9f4d3aa3d51d52a66849d240404e48b63c5dd3cfe90b2a3a67a2aab3'); +INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"ffd31690debf29575178d0f24ce2c3466c31e495aed16c342b663e3d1820f444","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'af0778ae193e83deba3904ab7ce7047f9a6127d9bf602f576f563347e8b74f47'); +INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'841a2953e5adb4dd655ae17e6176b8331c12e4c9c08cf973b14bac4c9c9dc8ec'); +INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"686065c6df1d3cb6a10ef47bb1be43a1b7315c494fd14cfb9e70c4eee2e1205e","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'b94800f50cf29023847b5811f0ae7e40466b3b3e275ca462886c65d8afadc693'); +INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3db3036de26db6b64230240295e1eb97567ff18767f4c09e2bf8ebf88e61e1eb'); +INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"2b4bffd24698af09bf21c785a104b9a315b17bb3bc347c13e603a0ff0330d49c","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'96268f6001788613440fc64b1a8ac9aebdd188e0ce3186e3fc0477fb8c06f69d'); +INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bfa78e52937818e0d1ab8c142c2dcbe851cfb5778f3c59a2656bcf5b9157cb0'); +INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"9d06d302d9d5b89fe5508ba92aead3e2882a9b573fc994f90173f97cafb288d5","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'6e4a396c6795862f47c223d7451c0803de405e1119b300f82180887ca15d3ce5'); +INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'505fed3f4b873a671c1f2d96d20dae7bdb85df229a6d1a5712ea973f410f2728'); +INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"ef15a5c7677c477ccd8ab1ecf9e1144a7d784bb55719f708dcf2f3eab4367494","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'9707ddc6c6aa71dce7c18e3173936cba08d0bc1b6c5502dd49a8f0245ad30620'); +INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8c7700d1ef30596bd328d41867bb3e35221a49116dd1fa9aadf3ef33e3822f'); +INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"0a3a5533048c374937f056672b2122845ce22221b37872c95b6b8c3f27ff8ef3","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'f8065f67ff81c425588dbed9b5191b049bf4a83aa53ed54fde56b43971928696'); +INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06ec4177d0281c54bb963db1320edd187da51a23ecfec678c91679914147b64c'); +INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"0c121544c2303dee8f1fe72d3e1f878d721f0c2cd2f18159fe39833e96ee5366","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'c093aca39c6bce7cb5ca1cec3f571fbbbbc6fd91fbef5d3d7ae15583f03a1f19'); +INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa5bda27070eefde89311edfe867b6af3867d6d6718619496b0d0803b6e9e9d8'); +INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"b3cefa7313849403e6b12c366ad9e800823c3ec474629eca4dbf0052f5caa3b6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'4d585525755e93a7b28a88ae9a5f6d6efcc6879351ebde64d5bf5f3b2a068038'); +INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a40eb8151e484db30e4e2ce32b0560c2d249fac403ae71eedbecb4a260fd75'); +INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"f7479fff528012931c34bd7cc81ea7c1dd9c71f17bf3f5be14fa421f5e987e9a","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'c1ec96b1656eca38852a9ac8357294359bc1dae1c18254efc0cfa02f7429b9a8'); +INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'180edf4666551f233f908889eac59e81d3fac199405a6f9cf86cf02ea386f9ee'); +INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"d5c0810c0fa95d90fb673ea13129ac5a8614f3441dfe82d66aa2aa70ecbf4d9a","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'adc6f8fd9900b26c876fb0b42fe3d6ceee4b5335a7308dea9359ee1bee3ddf4f'); +INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b500bf81d9c02ca795f60543120036859e6201cd9045324f49b864095bb4e7e'); +INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"22b3d994715e58b865307ffffa919c2ff0d766b1f2f0d209733e8c57deca55db","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'554106ce61dc444d39684633e94367317f2ef5917588e98a639eb691e2848e18'); +INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d6425a78475f5ec4f9e92a2204a86b5f3d07e10419cff41c66dc6f737788a17'); +INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"54313d75ec53b449374364adf5951794a460e97171cfb4eb9d8c5a52cbe4e7fc","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'c13ed18e01b1e08462289daadbf40a3cf96582c7b000512e305bf42469620b76'); +INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21fc641546f2106c1c1a518593ccf5658629e687c0a7cc315aa325b281bb23af'); +INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bfcdc35d2d31422bdd255d1b823e3b3cbe77f939fa12d27e784c409d6ecc6cf7","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'ca2dc04b47d24c7135d2a30cbcd1c616539a4b4ca42eee1bc49b904d7cfb0825'); +INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07ab1978bf482fd32c51f2112bce2e3a80c7e96a44dfba2f33716f18f3ca4beb'); +INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"5231a79c2bc9fcff8640c5764df1c2415a781404673530a76a1ab0fefcdc389a","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'f62cc4b3c39fa9c7edba8add56bd4c0a35422b7e3dfbe8d82eb6ea9c103db5ce'); +INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cfaff0f4ad796ca9d218177d871c192ab9da42f14600162be44b02d27569dec'); +INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"ad7db160d48914112e947463cc0cfb523c1cd4477aec4f8adcf46c1d8ace799c","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'b316a8415d45211f01e09dabd42a70c39d8bae6cdac979ff09d6ab9161a17cde'); +INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71b7e03b8a582a272e1aeedd3b7221967734c28bc10e2f545014a2dfe4b1450f'); +INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"d731cc1307af3bb1985446536df775f26015afd90f198a94977ff73634e03258","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'06f9b90459b23a02e2ad5e1b8bc007e877a31bef7d8336fac31570e110606919'); +INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'267f37a007939db8aac929e723cd2d301b80dd176d9c26634e7625417a47cd68'); +INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"59ae2b0e0fa802e2c3b3a8caae9977c456b36bf41473fe1466dd9a7e66be428b","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'306017c6e71eb7745b8d39786ef5d25781a4c2e24fe74e0cf907b517e863b54c'); +INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a66cb674016ec50c62a567311924b4a1768d0b51d0495e10e732eea7f8ae793'); +INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"9aa8e19eacdc8748464550c1ac15e86e74f7d5802c3ffe65193280314480cb4a","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'ddd6d1ea5e97c0419bb469e388d7caf895588635af3a5689aa1f76059c7ed18d'); +INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43abe60861672b9339a00be6c30a78ab1ef73772810b8be289457417461b8b0a'); +INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"e65dca2aa2b89b56d59e2bb7858a5ed0b20d8c0f4ca5b61d52b3b23d21895427","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'b884a43b17db2925e90a850e33ec605c457310fe458e448bad45a06fd5d0ff66'); +INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b542bdf8b73cb1aa292a3e48fd064be47c9f3bc7b5e29d2711e6af0ffb2bfcd9'); +INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"5e6b5a33b97b2d3fb9b2d0a232371ae5c4c2267e6725d0ed4f629233872ff447","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'5c1f70ccd5e68dd395fb90236453edd20e60c3fbffa15b34c84f295dc700d87a'); +INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a382bfa9d2e3350f302e7c93da1f2a0bb708b323360e61c9ac86d85a8b9863'); +INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"04ba82080f9c375ac5b423a84fd90afd26894e597e46fadcba4e387d5f722895","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'b81a8af38abee5b548f2ae390cbd6575ca1987dcfbf775e6737b7e3979b6a24c'); +INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2427eef2ec390a05ddfd4ac62f7b524d51f1dc3a104bed67fb62e12bc21fb9de'); +INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"aa7fa694deb2d5bfe29e48c2c11689b1b8fc5047b363e29ee043cfb36a955ed5","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'0fc7702f0ba6932d2af0d200762b98f8ba01750f5132509c907ce3ed49e01f4a'); +INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cae2597aec4e99551b3ae809031b54e5690ddc5e79de6d303bd77bf37bbfd96'); +INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"fb33780f359992a5c2eefd0d325a996df09cef4bfc0ffe1929cc412a3666be30","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'6b6f5fa6c1d504a7456dce828a0d893d3643e8d712ea28ffc243234280c05647'); +INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25ff664bfc4a0cf8813af05e045a139fdf4a8b2a07e98a45d4e379441f3346c3'); +INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"b3ae5a2a9a6808b9d92c05fb560cef99f1619ab7d2c9f9f51e28295c5d021da4","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'4f1b1f9ff3317fe8fc19c32bfe1f9414633948a2d63a299657b38c4db886be10'); +INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'869b94643054faf051936226b71e293bcb2990dd1a0f7f6f57773442c8154bb9'); +INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"1db46d67c2a5efad92f4449a61edfe49c177a7613ab39524170c4b342f2c1e2d","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'c76bf626f67f7fd1b37952fb0e4621b216528850dd68bdd53b42d175d1783bc2'); +INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03208e0c661aafb6c0b58734a38e609980d1b69908c86061ae9d025f7e275e7e'); +INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"31911cf5b640b623ba51d1df3a3a3150d84378ed2424bfa446286af68ab09391","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'c593681265c9d022a0deb97aa94eafd55e45b4d41ecadeaa534d974997b40eef'); +INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f95f69c11c9e06d58a7aafae2992824b936a0f82246f7776685ef9e89f73f0d8'); +INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"41169ced99498c00876e8c2b83c8713b4496a6953a3622bde18989c8bb75985f","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'8b8b00edc8039a625650b4ca4cd48970d624bdc31a79a3cbd104c952110d43f4'); +INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf8927d0233b0586ca03aacdcaf6954ade2a0fd5ddf83388e5e3bf228e09f275'); +INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"5925442a1c60659164d20e5389be95f1fa5a53182b720099976074f2a3a70f37","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'b8f91d4d7f5530f8587114526308d895c051a84b10e972926c805d9c7b5466c9'); +INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89414c731b2330dd197f4d982f37f0aeb786f1f907671803bd57946ffc22c776'); +INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"440c6aa1075bd45c498c586bffae26017be9a8b37fa48dd8fe1621137dfbf291","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'6194708358f6c0a0967fe1357bd63808482b082fb643175960ec8cd930a354ef'); +INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f039d46669e0a674037462c77fcaf77057ee5bb73d899ebe684c1f6b549617f3'); +INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"a24c51e9c1264c2c8d5786257acabf50e1f49597e67497269fcb601ac134f352","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'1b2f654b832d28fb4d052b9ee87f87985bf736e14b438b37b370a104115e16d3'); +INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dcdd768960e5d743ac2c36ad60dd8833cb04d862c2001313f2aa14d6d12f0f0'); +INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"2ca2f34e657d587be4b05f892319e737bd71fc775f27fb8c3860e343bc1f61d7","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'4f7098cbb7cb7f2a145599acf4a768d5a81ab15df86afc9eded2cccaa5856623'); +INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6d6b76ae3f3b2f324c1ddfa38930d97f80c8bdb140ab6885297497fbc552bc9'); +INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e20c95164edefc03d4fb30556553b1ff93f75696aea8282beec08ab0927e5554","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'6dcd989b6db6a449ae756994fcee0735beb155553400f35607b59c9dac67d776'); +INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0af9091af9a30708f0c87d27bc2973cbdb7fca476ee8f41010e76f50b60801a3'); +INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"9b635617f4be6795e21b8f1af423657a03deb04f170c67124e2c24ced55dab3c","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'25e1287f11aa4da2bd92921e9af9c72f2e69402785ebe5399817878dd1797760'); +INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7015e6dcef2b0e12e059f1c78488a75df7ee473d2f37655b9bcccf6a9aa6f9b'); +INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"3891bfcc259f0f6127362fd4dcd963e393132df827c1f721e097185c2d9b1c63","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'67d4027e8bfb6220ed0c19b79d9209206f84bcb50c0079fd7efb37da140b3bcf'); +INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ba1badf6c77216f3080ab817a34b65ddc90cd9235890aade4a440dba6434f35'); +INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"f1cb529b5654aaa6c835d2e9acd88efd360a6d82c609b722475479bd0e8cb550","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'22ad05dc1e092e1ec57d273b46463440e34a8425b91d902bfecb2663ee8bfbf8'); +INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f914576717393378e4717b9e65e6346c6540aad384074bd08c2b3f98c01db570'); +INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"7706f211649e02cb0aa7ea31020d0bd132071d8a9835db7a3d18c563d8da91e8","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'ad254208dd6eb906b953144cc22620d720b3f02fbdd90758419b6bc2f156c19e'); +INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b6be2312ddc0e8cc4de2b54f3cfaf4572c9597f7646501992660fcdb73f2f98'); +INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"b4a0090045f07492492fde8377502116780cfc26eb04eb6b4ad881a83f437af3","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'93f9b039b0f904765fc76369c8b663296330c612a35ad93d7ff084d5b883f742'); +INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1824ce6cdde5eff1a49bb5a7c7c9f82803ad10fac7daa98343bcc0744f156b5b'); +INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"af0c685178a45823c1d9eee763c1e9eb2becd22caa7cfc51696d38f1275ef498","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'419e5f003e2a4fce412f1a47fdad40bd49f631632ccd391f8f2ae404e6a12ab0'); +INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc01c4ce515a6a191b78ccfb2ef55602023e15fa672c044a6c831e051e663740'); +INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"395a637e6f959d1c4bd0e5873dc94ca1f7b87581d68a71c8115a063a8e4b3b85","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'e642f5caab168286930ec1a083212ef23abfacd784d810478eb9ee972a3eff0b'); +INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6587f04a3fdd2089e290544fe662776a813b38503a5b2603b3fd2dd26ae5d02c'); +INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"a02b0b7cf8da693987dad4830d6eab70dd71bdae9fe60e6e8a28a1b75ddb12a2","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'b771f931c2bd79556a9d9f3f1f72bda156fa1c343c03ca203d1920eeea74b8be'); +INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a36daccc624cb4713e4ba4756a42fc60c62547152c544f9ce228fdfe30f3e16f'); +INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"d7453217c4929a0dddeb3c3ec7d7564160cf60814c60378a6c93c44c684230d9","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'003e4800d59900bdb21145b15eec292d11bfdcdf7ed77b6213730d2221e06445'); +INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ccf0c216b3d408bd34ba7a2e63e4db4e9a364d4391454271c3ed7e289fd7d4c'); +INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"7554c12b366192437eac5b0aac27b34fceaf26eec235ddefe84ad0d90c3d715f","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'71e1d3663cc50c6c9844c03bcc0a2ae33effb7c10911fdc3631df127542d3118'); +INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08a75938e3bb24ec1f06ec07c2fd06c459abbcbc1f22239275cca579215951f8'); +INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"1b1b9057e54c26385f0ccf91555d5a7ae0e4caa3ffe180b23d5d39cf7180416b","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'630a5e9563cf2ad7c508d6375734392464251db7f6441dde2199ec8731d6b723'); +INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'358fe064ecc46bdfc1de8f818adec9e446901630b1277ede3392975e67fe8f36'); +INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"ff6547b856c1fe10624db9f10614ac0ce282d643da0b0bc75307eed3937b01b9","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'3812eda8f5af1a81d2b7935b91b163db244a029e3cfae62f8f929b4c0065947a'); +INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67a2897786a9e7ebeb9460d184f7ab530a5ddc2537e3fbf8cee594ffbad9b70c'); +INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"6a0938507bbf2f17ea553ab0b886ff1c08163a9d0e661bfe068c1997a48401bd","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'d6174db3814c10b2c233f32074d40cfa7ca46a296a8e776ba1b8d7582cd55abe'); +INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbe08a7e6de19fa3a55fef861bead3b02f5b7c3c7d3c67608848e50ea2721bea'); +INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"3a93f91334f69097b9822c25abacee46c9bdd469449e91ef14d8d5327607c1f6","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'4c4bc06c0396640ac429682c7a933705ee900f2c792c0c501aa4af6be64022a4'); +INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4bcfbf645f8f077367e03f3ab1b05a3db8c279f83f6a8b2883ad93d382d6118'); +INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":" 9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0 3 "}',0,'NEW_TRANSACTION',NULL,'843a982e25ce6e1c6e1640cb692e7f7e0fab53c612738fcb5f8962bda8df55f8'); +INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','3eb30127ab40a9cda761a1f21319244ed6bd0039f1e699e73536276b5736e6f3'); +INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','f1f1e376097752a51e15d995f72dce9bb1a2545525315c7eb80215e6af9eec93'); +INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','60c121ed4efdf5d40406cd09d45ecb3efb36703346d41464509fe5bb467dbe97'); +INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"9dbceb81e4370f97f700d3950010be9121215fe7db2dff399bbf17dfacff4cb4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'af15e3077962f4b46e05625db3e1aa30a75028bc96fa6e3368fa876952d3243d'); +INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23def5421d8d369dda5fa99cf567045028791b5941591c74ca30e83a3035c4f0'); +INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":" 4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0 2 "}',0,'NEW_TRANSACTION',NULL,'f14107af2f425ffc97894440c996cdab30728f43c792d63af01c2fba2750f656'); +INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','c88ffc0e65a8de6281bca192cadded5bdc42f4a7206be6a77f54677574a10708'); +INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','10db534b21419eb08412eb5ccb6ee159e34ddec023e4430e6c78bb7f7dc33a99'); +INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','d20a84a5f1958013192af12387341edede993afb589af8326fcdeb563c1c7231'); +INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','bb1b63c83e72d516c68ed038fd31e9e49a416b7fb6f1436c89cb63ff024e47ae'); +INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','07e0ced4701217cbaf9766b88a8526265dac36fa0c631b0566d14a34889c3c58'); +INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','1c783b224493b4764b8a3f7446ff4c4d25a617a3e059e07a28b23618992f8a5a'); +INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','ef21b0080b5718061ec74748c5e63ad2bc15bc791fa1a3c7b6a2d361d709c55b'); +INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"d72406194607ed8aba033d34a7cbe2094dc3597f4098556cbcaea70c817221a9","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'c9789889f17f8ff3426c06cdf6358be00cb44672bd8bee002d37f1acf874d719'); +INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'326733267424f0d7348644bbb5bb4fe1a9cbb6094d304f7066d9d7a6af201efb'); +INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":" 821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0 2 "}',0,'NEW_TRANSACTION',NULL,'e9df602c9d6bca250e681f9c0e6789559277118128356a5d0f0a58315d82e167'); +INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','027fa14eaef0e213420614b34ce0cd391f39918a8b59de32374f32c3596f53f9'); +INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','b9586655a0d19286d9ad90679a4bf7a48f7ae9e22d41327d080ccd9d87d57209'); +INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"a23fd639d9685760956cc5470d8dac1374697458ab9635b514463481afb0bfb2","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'b1317987bd16968d38773baef69314f5182f2532b10dd84e50618caf67a751c5'); +INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f182086a14b2d54420e1a40d74958b5cbe06434b29460a3f714ada08718806d'); +INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":" 9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0 2 "}',0,'NEW_TRANSACTION',NULL,'2dfcd10331c3168d520e477507e5195739a63ff72fc82c05835838c7f4559205'); +INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','1bfec1042327b7e61e66594c1b1d4b4cdbe7ea5ebb966fc86a119e7178f7026a'); +INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','01a0c03f976c0b1a3a058b763bc9a706d65ee6166eec066ac1ccdbc7d423df86'); +INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"f9892adf8744cac64e5ee9727c136cbb5c4abc7665720adc0ee0866ad8f08fab","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'41195e4ca4c3aac72c361d750d4c942bbdecd93a3243859a86e1ab3e49bbde6a'); +INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d4216f9afa45da34b4f1eae51c29f11e8a298317b5aa107071bdcddcaa64169'); +INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":" 3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0 2 "}',0,'NEW_TRANSACTION',NULL,'4259c2940edf2103fa36698f92e4c6ccb5e59e0327cee6d3a0b6b684c8917a5e'); +INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','f3dc2b865183e9bb846c619fd67677324c6b2e5a1b1a17dbc09d07c4b56e8857'); +INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','6a20880191ea518ded01cfedd9e239603e5b55701910331a470ef42df0f1b134'); +INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"9fdda6ac9fbb31f2d9761f18171c492a374fd0f58b5c8a894fd669bc8d3049b7","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'f0d19d2106223dd697fc2eee803cbaca88b9872be6cf6c2fa11a1e1cb8dc3e22'); +INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0b0d465656b13b44f44ac52576de25b6b60b0f0fe688cea0f0394389b50d4fa'); +INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":" fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0 2 "}',0,'NEW_TRANSACTION',NULL,'d063b4563465588eef1432f52d095a6de10f75a154c68f39efe6185e57ead7f7'); +INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','d466383395d1bb6dcb3be5a540110aab03f0561e217e78d5fbf245c505eedbbd'); +INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','245c5d0f69ec21fdec4344147cf97c117851584d1211fb1ac8de814f3906f3b6'); +INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"a85b1bcce2e33c495cec23861d206f45f396fb4797c4e1f8029372dd7da8ada2","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'8d0212f2b96026a56c368d35ce95914e15061b1d979717c9eb799fa529a00f06'); +INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2479c14631ddf8c68dc003251991eb19f742a92197d064340e53904c0d95fa8b'); +INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":" 0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1 2 "}',0,'NEW_TRANSACTION',NULL,'5a867f0c4e81c8469cd5711dca90f906bf98a3f70f300c150bc910108fa56633'); +INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','74f01d430dde4aacc2a20e1f486cf51ee8a6be3bcfb836dddb3afa6f963eb604'); +INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','54c985c488b2cb399b58c9e6af1d2967d5276ad8e92d8f2eee786dee3b815e7e'); +INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','2d96d5d9e7cdd64d2e180a735d6d26ca49d44f92c1980cd3e2de5f3c61da72c7'); +INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"1a098e1e115266e991f01f21b792a7fa3d769ec7b213a430f530846cac82c3af","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'191a4149ac42ff04bf44135db6d776cfe5ff17ff097834cde4d4df7886a5204a'); +INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54ce1974813c286bc27f2e6961f923d1befc97d99f36e076d7e724e7761539a3'); +INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":" 698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0 2 "}',0,'NEW_TRANSACTION',NULL,'ff8d282cbd768f26a8f7dc539f9da38ecf786297b2e48f1b7027a70912cb5182'); +INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','3c2c91eccbfdb6546d97c5465f2225b1321b2c74e70bcf2c4ba235a0ea7f4cb9'); +INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','c60854a960db15cb681597514fec1f9f2a34989bde30da9aef3243e4e14b6233'); +INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"6d9c395fd67f7ad834afd89d70885f9c126e1998f54e0a1f095b5d278c2b463b","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'6958756e992be7e8bfa43e38f238ccdfff3b0020c9f9c02602c6c68b2b8c7adf'); +INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce1992c43c081c05d75511f833262ea2e7584b3a21f5014e64f90e41a482925e'); +INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":" c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0 2 "}',0,'NEW_TRANSACTION',NULL,'87681cbad2284eef7b1351fd3490908f3bc687079c1f62b9f2383af3a6b2ecaf'); +INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ac1346d7c5aea143adfd1633defc1c4f3d32a316743742f8f6a77c15e5fb22e5'); +INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','7502794f1ad16fbedf802c4a6569dbfa9162f9db2f334ef17805a7edb4fcf372'); +INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','521e947ce150ff729d738ff99f4d01c2ac942376897f9457e8a1e8eb4ed083fc'); +INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','4a81208bc8e6549215a75fa51d97c2a668352a5752c2fc421b8aab57488bac16'); +INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ec27ce23f8b7297bd3fd45f71186dcd765208139058aab8fad334f7911d52f22'); +INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"67dc62e5e93c175822e5024c659ba89ac22dc938bf92bce9b40a8d04efa16553","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'8f0ba69dca4b0216f7a39c439bc965a38a942d804312a3308dc963b696e6bcfd'); +INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c7bc270ced2d438e1079c3b07500564a7aa74e3da1c84c719254abb56be506a'); +INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":" fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0 3 "}',0,'NEW_TRANSACTION',NULL,'c045d31f969329b3f781dba14b3b04eeb6b9920bd1762cf8b5ba9f6589bf87ea'); +INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','187452d628fca6c00a3cb4cfb93477c60be1c6a536de658487eb522066bdb9d9'); +INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','757e16aec34c7e19cb0cc6e9f27f39fc1672dadc8c495d6dcd19442bc566ed32'); +INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','751f5943f0837891f996aa22a7559509bd35351669e18b3aa213b9c87f915c8c'); +INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','20f69300c64066763826e77f317054a0d68fd491e3920aca683cf095cbfcd3bc'); +INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"897ef5508a0295327e06353f6207a94dbc01e420af82cfbc7d49cee5eeef1490","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'988859982c4703249604fcbf27c73863455c684e01562314a1958fb294404ec6'); +INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'587869a28910ac6884f1d5befe517eeea14cf5c9fc64d044dc02e22e245f4b53'); +INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":" 3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1 2 "}',0,'NEW_TRANSACTION',NULL,'bc7d01ebe994dd0c44b5a7448b2b125d560691396f856b12a647962459238aab'); +INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','c65f3ece162faf8bb37c8f8018e8d036ad00f066326f1ec8b461c6e52ba31555'); +INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','30f3b90486bc270ae22176d6d7851980fbfff348536881f071fd9edce3079a1c'); +INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"e5f3a4de242592b6a743f345e4876d523a9f7fa9891d96bb958ca62580f6a57a","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'78c4bded1f742ca84376249a9e9894062fc65d628c0e56e019c47ce9ebb36766'); +INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ee377e81c2d78c228603065f2b49584050969d7e4a491a49090fd770600843a'); +INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":" 2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0 3 1"}',0,'NEW_TRANSACTION',NULL,'cc4bfcb362b9de3f6292285d62799799296a37c5333e4e583dd96ee0e693cd4b'); +INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','033acf3e06946f40b2baefdb8aa640edf839442ccf861d3eb2e9835a89e13163'); +INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','2a77662920b2dfa1c9faed9f5c5619bf8ea7db00d8af88a3c9ceadadf81edb47'); +INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','9fe09a51c64519d328b2d2724ea4f0f57e99cda56fdfe838d2908a44d9998859'); +INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"d07683e334d6ab00a129fbca5d09d987772c748226968625b409109809b0f8a5","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'f4bd1b00522326d342649ccbd9fd66c6986be053cc228770d30e6edde7ec91a3'); +INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e53caaef9ddaba3da9881bb5bda8c67ca87a00029f419c0a6ddd25436612948'); +INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":" 7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0 2 "}',0,'NEW_TRANSACTION',NULL,'bb107f3c167ba9defba997d64303d97ce71727b650d2f1cfb8a5f3cc4f4d3f2b'); +INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','0ec27b9b947a7c0f39329c543a81eeb85e4e5532cf4204efb3b9312de643d472'); +INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','96c27e2088623ce4279ff83f6e0c1ba7a52bd39bfb4c07af1107a51b47eb60fe'); +INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','488f674b476cd1e6ff9dde7bc6d08150e481fd9f0e0df6be133bffd8b577f08e'); +INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','e54d415aa14f8b731b9fd6a48e0269e86d53a58d4f70a186e27ad3f54c99fe29'); +INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','a62b05bb2364bbdff980b61933c29be34629450ca8f3fa40055704a988860184'); +INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"43af8770033fbbda837d0e510fdc35090acd701db62d0ec82c7e00f6614592e2","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'ef639fca5ef4a3c4470e5ad69336fb24bb7a6bd00f069f52bbe9d7d08d6b7758'); +INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'421c348c7e53f12d4a4d6873ffdb25029b2d3d4368aa2433b6a762c34b5c1d93'); +INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":" a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0 2 "}',0,'NEW_TRANSACTION',NULL,'b3afde2b974d712a72debedcee1cfee35c2acfc121b00aa0c1b01818490d64dc'); +INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','2df3f74ac41f5a62708110b5cd35277d920e7d8f05791f5f006c3b87a624be2f'); +INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','558b2c3e4e46fd407e2aa1ad5b57a134e8846e54d85e1490da1768e7fe339a7c'); +INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','9ca1e84b8accbb70e39e129fed790d6ed1d7c0cd4115e81327b24e67b626bc17'); +INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"bf75492624677b32549535c29ed3e7bc234cab1806cd35b2a1f48944f55af1ef","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'4740662d45cd6b1a93a81f1af3022c27d7874ca4703635c5916024f071d2e092'); +INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1f865d9b09e83d026ae125dec0248100b17373b8ca4d40c0915fe624717daa8'); +INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":" 61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0 2 "}',0,'NEW_TRANSACTION',NULL,'ae99494e0ce2202cbb59e256041b58c9467df23654182d22e39f5bb3b338f23a'); +INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','0a73cea6b99f35912d9fa705d78c93a9f12c495bb9a8f52a72a4e9e415b685ad'); +INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"change_description","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','446fc6887a7ad6497c02ac1149b0a6ce963be3117ddebfb734301b09c235a0ac'); +INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','6415642e97d05b72a78846aa250522cdf83263956dcf1890dfc70f0f41ac1126'); +INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"71170983505bbcf99756a9ab1521245b145716823bd3c7fb24b4afbd7ca32114","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'487c72b9b13d7193f6a3e3d72fab3d3f2d94e3a2885f0a39f81c8a6c24bc74bf'); +INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'753eda5028b5b1a10e0d8f0b36c229dcbe455e8deced84ff74ed479b003a0e41'); +INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":" 44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0 2 "}',0,'NEW_TRANSACTION',NULL,'78eda6e114b86e96b6006d066249fab1afdc642ad4ee6d09bb4f7e745b58e2d4'); +INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','2dfd6bb0702f7c3e920e5c5dbf36a94d62585c583886c016dd4d85482a8e1c6c'); +INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','101d9726f9b4d324ec979f822b5ca29de093ed54f177bad19e7c76b241e07c83'); +INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"0afeda8d33e894f89eb14f3c66ea0eb455d02b03d8a4b0b589450174cda40467","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'116de95539ba54fbde9b9c286c9c596e912a55a8474deb33f206e14a022c5a9e'); +INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f126bd484d94fb0818cde1f88ca0fecea9ad52c7b3795a0dd516b2c26b5a70d'); +INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"f6d4148c0932ac2e360f93c0ea4f059276aca84680f8f003daa9ed0d193da4c4","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'1a600396be7c05df4ae5da94bb22f3ce3147d9ee4f1de62c642b09187e9ab43d'); +INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ace06d347593be838ff064d8fb6c205b4af98d9904abbe5d952fad08c799f68'); +INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"6e2444acdbc614fc982f22d2d375c683dc54eb5bb4a31ce23c031843bf2f0b3b","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'2f9603b016423eb83d155c4bf3625ef5931988c75011827d98f5c4b49b284ab0'); +INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f5930603aebf5794682e8b5c7432a71e9114160294e5594eeae2ea5f2a68e4d'); +INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"60a9889844417aab94443ec9a60a1dc83dd4826e3808021795f2c1f22f5cd61b","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'b6c621772f82860e716d9e96122ca5628b65e337eb1dab3d507667db49faea6b'); +INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af60a55e93aa9551ee3c55e8dceb4e7a11cbe586b6d372e57bf3e494b03747be'); +INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"ec03aa9b370c1d75f1230bd7fd151f2c0d2ff9651953725d533c9dba175a981f","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'3c1ae84a3af0a7deb9d7ed943db5b9e807874d5bc403b00f1f8bff123d3f8a5d'); +INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e9c2792b99e4c4cd7b22ede0fd446541a195886b58480bef2daf181b97756ee'); +INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"38bcc807ea2c1aa7c6e73634a08172b81204e38fc1b065d4838b9761cebaac3e","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'b2fb49b2bcbe1491b3214c3c6db03f348251377efd8beed770e9524bf676a8f0'); +INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cdc92e02771cbddc76002e4fba69fdd2c02dd9d9992114a4698992b67445974'); +INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"4d23629f04d67db1de775c1546d8281659914686a2ce705f20972b9cf735eb27","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'0538fd6df138899ce894b3ac55cce9063f181f39c5fc7a8ed9124b4d18329187'); +INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'846a2e4d71c27f259239c84d1445d1ec00e5ef109e5aa0d526c443be6fb5f727'); +INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"7b00046af1c2fe03ef765019cea7229da1efaefefceff076b62dc1f3c4a6bb80","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'e9af072522b7f76ddc83080fd1e70cf3ba789c259702ef2cd11be77abff482f8'); +INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6815684e26870900be32c2dae4eb7dd50d5f576176d8a2aacd425be57eb35d61'); +INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"307c2a925c29dc86db2ca40a27572daa17172bf2ef9659aa46fd59c2a41bbf1a","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'f14202675bf5495ad669c51510693ee5630c950f9084a9f55ca657f5739fd399'); +INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0f618ac5c7148ec16496d11eb57c3dc507eb7aa458bd755b3470da2df2ff484'); +INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"4aeaffd0c9c0d8aa080aed3f7938797f5c7117037ff6b4ff8c4ea4bc17d5d344","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'1008bf8e6f28be5a5fbe7e601fb441cccf30f0ff687f64cbf483b8a84587cd28'); +INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e7e643843e0c63df06369a6141b6ce6ed9e1c75994750769c0ef3b9c6513e8c'); +INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"afd00f2f4b0f062222286888710c93263541af9482367eee55eb5f8c1a490d50","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'df5f6a294b88f49c53c94016eebeac9f99fed2efe4c31eff491aa22cfdbf9dfa'); +INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15b137d4cfc5b24d3d6ba8b40d7cc2c29398c38efa047048adfbad5260e9ffcd'); +INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"ed37ced138fb94048c2bb56b720b4b0cd9f17b52aef6f4d056cfc3970b67909f","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'f0a9a323560738592f6d09dba02460531b9acfc98dc9ddfd7f04eca38912f25b'); +INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c52597513075dd3ca9016ea8c7275dad7bc7e7b50dcd8e652deaccf4906bf00c'); +INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"8c4836e8ea390c403db3848deec2e88f4aba1933ac1388e94ef124d6551d004f","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'6ad9ca507f970fb130c69b6befb93549635dc06df3f36c5a758322f085b2f6a3'); +INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de20b15ddd0cf2fba3ddee93dc931f4d954c97bc0f337418ee1469fa9cebf5b4'); +INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"6ec512206e4186fd8c27dc84763d24acdd194903e662bc227af43ce006601b32","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'5c69aea5b8ad4defd3ec37146cc5ad04098468b00057a87454984d80068d1b2a'); +INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a217f07b5f1f22fca3f206951be9e66eb0b82b7b029c59f43b098a07e84e711'); +INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"a4c8e0d0ec5154afcac40824f99df235f74ae11b57929d45659ef59a94a92071","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'47747ba01878599a137dad0efd2239e3eae3e243deebe913bd8f41a844a66cbe'); +INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a005ed88ff9156c3b484514db3d6a8dd324340db5b5fddc54bea6733a3b84bd'); +INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"72c51f7661a82ebf7314fbeab64b08dd0189b58b4ae45d0c39c0988667714745","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'f16974cd4469bc577724ecafc9d23ecff7fc01741b7a670fcb1b621e92cc5429'); +INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b80bef5282154aa8be392c238be3b6ab05c0fc7227ba03aa0661717f525f589c'); +INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"e781edd03a868bfd366255ff0a0d891b7102c04d56882697fbd960bd07c925d8","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'fcebe6a31ef33aed81b71007a5243b1838b731c4cb54057c85dc9e1eb3cf3d1f'); +INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29dd4f763a305bfb9ba95912d7988d305b7e9e51bae80f6af781bf3101995a29'); +INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"e4c7b59dcadf3eca07cd603e2655869254bacc8a9ce3b8c4920fc4c7eb28f237","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'f65ca953a9d45c8d028913b322cadee0d6183f8ebbb37b1f8d129cf6f8e41747'); +INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bf4db4006114788fe7aa761861783ea053479a1838a867182207e92cfb0fa79'); +INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"ed31bdc42607cb6158e9b9bbed50e93902e01f3b88b10d653729921d7a0d3bf0","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'60d140ca93a36d71ae3ef1abcff30dd99c1b485504143424570f40c6c895a48e'); +INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93790566acc8f0bd7b7ed32ea117342605be03d4d823d24eb881ae9addf794ca'); +INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"5d987e86756a865de9e71394f435d1027aefb1b18a938a31c7197c05337c45dd","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'7ab40178a1dd60251f12920c42dd172d36460af836b9e5f0b900340d0b96e5de'); +INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b15eb7be2107949b53e588209ada8e4d06c724023b6c28e08fdd5668ddefaac'); +INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"3f313ce21e57c80bfc2a864f70350a312720e05226a52c114b64930bcc374f49","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'fd29dfdb42de1e5c47f644a303de48d83d7a7c375d4d17c1963c53dfae94a236'); +INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'511d4f0c1dbb948b9a4d1090e8fe2586ac2bb40426705464be8fa73d559eba67'); +INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"25d6ec6af6d2d6a9ff69891f43b69a8260922fe52c59fc25e5528eb04cfac138","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'3b79f9f7ca38d1a72a83e61d8d076b8e45c7366d7532f54d055d23181a0ff8ad'); +INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5af0a9f9b1d6d5a1afb9ec04ec0950af4ee87f060d5098cfb8e58184e4f8c4fa'); +INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"e18ffa5b8cac77bb84e0d0ac6331b9aba14f87d0b2d8a588df919b50bf72e6a2","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'9e2a7edf6804eeda68ad73a2ae856c80fdb710e788325a0e46974e7869c1c399'); +INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbe37704876f31c8f7be2a040590980b94bac740c90027062c49cd5218dfbe6c'); +INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"02a52531d90012269b74b7339eaf1318b19a8a765fbc29bb4cfb17b6224c79fc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'fa05485ba9e2305d50843d3bafedccbcca60b23785d00ad3481c03eefc7df774'); +INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cbb5a6b08c27384d7ab30f24229468f0ccbfd2ab857b2c85b7f6938cc1fa56b'); +INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"1109bcaf7801add8de42b1a659f28730b517b2f80f12aafba7fb47e6ae5d3c72","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'2f60e902f297203de9f24bf975f65c8c3e95b9605872f5a64a904e9ac90eeed0'); +INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29514c93a15f78b0b1f18fecc1e74cfcc5678d770f15bf681a47cacd0ed38906'); +INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"1a86142d031bc54c5128313645f640c26600a4df63a424e67e0f5717fa1b3259","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'1cad41468e900d11b77a2dfb2b76d7207c1ec3a8665b7c1f84ddaf7f97abb9da'); +INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1e090272e47f37f1982c97c6231edd1c8feeb18c2e5ada3a0e5835530fefbd4'); +INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"f1f17e9c71aba32c259853de2681e77d313c52201496348a59a18603c88637c3","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'644ae1889b6a2883d80534eea484e6ba79ef8ec8f8e2f6d40d294c49e0b2cf78'); +INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33623adaca50bc24887f4ca4d787acef4c4edd3ade5e2e70927bc5f5e6c5dec5'); +INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"4052b977496eedd4afba529b5dcdb7aa8375e6cdd8221da831dc4468c1a3ecad","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'865f0f57002bbb725dfb6306257ce37b69dc2fc67f93f8bc44ff96e7b625881b'); +INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e25a38e594f20e8c524e6f76885bf5b0ecbcd6eb39839687719ed127170b3a3'); +INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"631e7408c5697507320b5a8e5fe54c00520eb507743b5018b9608486acad578e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'e23239ab5bed8a3890420d1d6844d93bc0185e529e634fcac9ecdfaa3f025e98'); +INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbf8c37c916334891eb58fcd0d817ea7d39e579e72b954adbf7550aa191f9da1'); +INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"1da34307e1776e37ac46e482cc5039f19b9ae050f482a44e72fa60d985270224","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'429c4a6c9d316e8c0cad6f4f4b912b515fdb37f3169ac6cdfb224a2cdf539908'); +INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a6acc37e1c418dcfd57fa5fea03230ed1a75b7cb75d1c7d2251cc52c1bf47f6'); +INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"d8ee68f5e6ec74eb9cebcf644569fb02cf727cc9dc99cf59d53b652815f0f3de","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'e9d7a02ebf972081bdd6516943807de273e1d105b151f56f38724b639dd5aa12'); +INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902aa031ae796530eedadca4514220ff697a1e7a6fe283b3e318c00dfa9323c4'); +INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"01931b773f0ee19e73294f2a48c4b2d3aef52b4c2589cf07d1800e6043ed454e","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'d4ef7f55f1d616b7d6c26baff5a683371a25928d01e018fabac293c758647ed6'); +INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa1e73ece7e5a3ed8c8331c1e478b5fff3f733f80fdcd3141f2c44393aee36c3'); +INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"834982f61ae7176ec274ca3f95454392133af17e960799aef9a62b402ac3c4fa","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'77a515f91210df0a6e4311aeae52024be3e9e595377bfdd208623d2d4e2bde14'); +INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cbf9e231f2610b2854d72078909a6c7fa6a9ad9e1ebfe2e4454ed39d97ac682'); +INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"76716d5bc33e5268b0427160129d7bf29b3ee6fb95ed4f67bf47bdf427cdef04","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'432ef929d283711a89305647e17b671615b358539bf3c5f9100cbd21e1e4166f'); +INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5b9006cfd7b93d7a0b4eb892fe0d7d5497cd446ce761d7169143125bafc0028'); +INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"cbc95b2fb288772d57579879bef58d0d920087d83ec338f6f4a246e9942d1124","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'9881a1f11b9ccb7267950ae43c65f470096c2fc69be00643818484aec09d3adc'); +INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fef48d6ae0287707ced05902bccc575d36f4a7155f6e591072b482368641d67f'); +INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"a603985ba99420fd6a752a27d99a06f726e3d7e0fbdcc402fad12e0a3a00bb78","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'20c1ceb4a3bc621bf8365a3812c36317bf9381ffbc0f4bf375e41fcf1a6cbb3b'); +INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b878f3a12e5b62c98b63a25a685d96cd7bb1bdfa3371a3c314c66a725787ed6'); +INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"d6cd2298699a0305a52727418d2fc3e6305e55201c86f15404ed92e3e35c0e1b","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'633d18d1cdaeb69a8db9eb4663b15441b67ed7faad4e78dff3dfac64afda700c'); +INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d58c2f33358ce4a97b1cca9cfa878670d762cc8d296a6c4c9ceb585b5cbe7411'); +INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"2ae36b0b9e0b3e10ce9556ef7d543cf9225e0dd23741053cd498c886371d8712","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'7d1270ebea2ddb21981d2748a71af4226797eef53606243044b090987d827189'); +INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4354ed3783f755bed2faa175f69bc62448299242493d2207fc5019940f5d16c5'); +INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"15ee688fe8046e143150e6d9609bbf0e96fc1e767e8275094c66d810bc24dfe0","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'d0227437516b4c732744ce2afed66910ecd9b423d2d9c97ced0e9a1ec4bedf2d'); +INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73f0215f91e8e910689af885af49845a6cb251f677cfc4b0768c0871bb71ea92'); +INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"c1a074b75794afd56d60b97ec8bdb3780b6b7542cf03b33842c615f0c819fe33","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'e3cd1ec4c017bb5ef2f1027cf95c0d043f04fe8a52a211aec61fc0153a7d7507'); +INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70055e22e0b0e3cfd070a79419aa0d967c123c18ce332209f795592746f5954e'); +INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"72a384952fb6c30d0a01c2086fb381ce2adf720f20c629b66ffaf0a452e49e7f","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'787c1c788efd0c8b8c0b1bf762bfdb2e462baf7e06b408ee5112246a5ba75acd'); +INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'027a3cf9aeb073aa3a579d1b9d987abb31b3eedafd1ff23efed917c2d68f765c'); +INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"ad1ffebb5a6d496f0e151e697db47e1858de730c0c12e18e661b12b6c0640a78","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'8185010c0d3093026ec39a4f3ffd2706d5fecf384cbd7500dab6d84ea89ef91c'); +INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c9f888d1c9bf7d9c176bc3ee0ea76d6661b4d521bd799a987eb58e6e602a077'); +INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"a58c99e54616238d7d98cb846e658f8650858201be773a031137f2a6e867d55b","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'862731de815f0fa716984491a9221ae5aec78d4aee4c2d9ac199823d4ddefc21'); +INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3176d790400744f0c02acc80ae5bef31ba6c65f86b43f5269779d6e87b87813'); +INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"7527383b063c7666efe55f3ab60d6a0cfcfb4034ed2e40f8ed5e315f91f854e0","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'f95f9253602144caac66b14c64d490445f64c50a0e18173c83ae8adc8ef2fbfc'); +INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eaee67fe1605533020458cf83ea4487974fbef5d4b9f90c9253b409de0841916'); +INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"2e2062ecd98ce76dbddbf9018780df176e224174a26c63efc3f00d800edfd3be","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'4d2cba0d5a05698c23ac5d7e7a8d82290814dca633a7a40d6ba902f03d11decd'); +INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24b43d3e383cd4cb1fa344c4b9696dbea737a64ba950234d680ed0e5a5ca3b04'); +INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"f64605e86bc4e887896afac8dd8a5ebce695b7c848edc2bc6f5226fe67305301","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'7cf06e2ca840659899e6b18fff00095a6005be88de3f717a8d3c8d26d19dfb75'); +INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df054c9e601e91e26ac74417e7457fda1ddee71bfab5f82e6a44dc114bf3fb9f'); +INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"a4b0e353f8d27b659f47c0234c51cd07acac3a6ee066ae930c713f4a2585489b","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'f38c6ef1fa58cba97cf53921c2e2b0cb6d6300e512b535a6bd44429e0c8a091e'); +INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc2157974033dfeeaf81d27327b73b3934671667d6c986d6e699a44e64ec68e1'); +INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"11e42f58b0cedce52f7b3ecdf38d2f7b7f6e0f0552f63109cb80cbcd2d9ab33c","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'e4583a0a8e06807e22e99e91a96873b75ec96d965da3920ecae3bc1bb1bc4db2'); +INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b4691cf648955d579c5cd471415d4b81471cf48dcc42f65dd5f4f42d56ee31'); +INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"b360eef9c2897d812857ab234505fe2e1d5cb8b0670620f4e197d92314c0378f","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'e16a833844789277c773ea6c8bba9ed5bc9487f079b03d423bbee8cc0ecb82b0'); +INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66d3d7891b786bcbc94704b822cd18996cf3d37e6296f7e1d832441c3471832c'); +INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"04aa377ee37fdf1fec1a0572fa1f2b2bb7ba0fe7fc8525a323511d49818b794b","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'e1eba128af1c989473645bde40db7f44e590b78ddc363ab794110f8968b6f43c'); +INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eda15f1752ef6b90274cafdfdbf15b46e83bcdefd24fc805f0d9dfee2ae6a9b0'); +INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"efbca9c5e8963ccc76a034082d16e8038785eba22abeacd80f90abfcefb929cb","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'e47072c8461f9bacd1791166bf675c49cfb93311863d511f5384f1beb72df798'); +INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59ecaa2b9058ec56d4d2ef6c75bab1acd2616139e521ae4efa779760b18faa1e'); +INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"9e457dea4491a9adaea6250cbff904fbbf149703bd7fd6c8e832fda397fa61f2","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'4c5164e2b8a6717d9d6b3eb2a1a24ab8ee5bad8664a0d56449a6040bd8926b87'); +INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c46e1c5d999c53b042db7cefc1178836c184833b690df0189662dc5abff46bf4'); +INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"835d17b4e7661cf2c1927cbaa158d54800a2791275d759ce94bd3b9766d2cc15","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'f7f0d054453a7b1decfb2e65337d55cc8d59875962b3ce1e92982981535015d6'); +INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'157a6cbfa9152c16332a1cccc437d3a60676299ae06f9f367a9e7b7597d87502'); +INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"68d126bd15f6a12b38a74a85fdbb05b913281b934adef8fec4e6356567d629d8","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'b0018c7eddd01344e395465a4e74efd54001a5d6ab349a76f9b14dfd1e2527b6'); +INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7501d8d555b9660ede47076cdbc9f7681be7b9ad2e31287a4eeffc971140d77'); +INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"70cf99979ccb954a1a054a7f50f47d44568116db1b9795bdf024ce7509354ce0","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'1d86da066cfd017e7507bd61a4115744249ef7e3a829728692694e2b1e3630fa'); +INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7b7c37a6208f975d80e4b75be27dd9402b4d35ae6eb40c06f89f34b1f1daa14'); +INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"feda08cdf16bd6f05443944fa2d1779542ab6ce694752bcea05fa4658566bb2e","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'75559f5b8b1cc9a5d96a7c3fef25b3d16cc514043f875bd23adbeb0575cdc48f'); +INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee258a9cbc5c5fdf579946fa25f4eb7069cbbc249fe1031b95b34b501421ec4'); +INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"d33e1c3b49f83d630eeddef526ec79c09602a6789cdc8f476ad916463c998bac","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'583372b0033668190a3d7a1b381eaef326a203748d3cde82c3637a5fa35fb435'); +INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d021d6a8a68208ce684ffb00efc863b0a7366db9a80af8de591567aac7c6d2b'); +INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"caed01828e57f0004b810536013525672f9f741ebe46142e8179fcd9fc9ebfea","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'742517eee87d6b5d9d17eb203a52b50fe4b51dcdbe04797d023aa6eff0f02b3e'); +INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b237238d53fcc46ba34bfa12ef33235c8496d85c9736e2bffa44a7deca10234e'); +INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"2b33acf307e59acab1de748eaeade0bc36046ba71aa8defe1cbedd5fd5d200c4","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'2f427b9bd5d5eb9f3f770a5b4b5626b950dc32e228e1598d582e32d302d3d14b'); +INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74cd05c9d9694e959afe2b208245453966bbe3540b256110c3808fe846a26b73'); +INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"1bdefaa64e6fa2ed85af5889feed01d4489b5c573b3a9424fb7a78ced4b3ee7f","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'2c870f4c8116627e57108cf40ebb26392f1227530bfeaa586a0c7db8da11e402'); +INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38111459c305dfec5830cb8b832442ddf37d9556cd22f2b57e94a401c495d9fd'); +INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"bde0012b9e9fccf7a7df795a2af8eb9c81f4bb4166c0729f9ce2dbc6a5f60e7c","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'4c6d7e23dabf3a2145a6cb92daf4ae1c283116a6a9d699b13448abbbb2480cde'); +INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3454bda27c119fb68af788f77bcd09877ebc93e9f03d399071e221a8668de9be'); +INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"c6d8a7295a896c5574366f6d518c0c9f9c576240d298d6d7490fa55e2f3abacc","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'131339a0830f2c29846d3ff99d22831cdc361c689f5775cd5a1616ad77058cc0'); +INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0646d5a2039e91953f4171b4eb43d6da803cd88565f8aff1ba87b6442bbd949'); +INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"f0746991ac86484e4043bdf67d08361b18a9b721f0a0a3f33aa5430ac66ef23e","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'bc1e852ff29c87112ab846962b7e952b4e4f993c6150bc0447a9310226358271'); +INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53d97aafafbb2c3428c0661da37636299d428235803fc08066c6bd7b43b7f4ff'); +INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"4f0b57febb2af83ab2cd0ec2dc86eadbdb65fe6d29f4cef95153cd812ea93cdf","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'ac864efbcffb6cd6962356d012c95c1e4da087a7d6a40ffc4a5c0122d73d0290'); +INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6975fbd4eb323b2303f2bee3cbf987942fb1ec8210625e12704976cbecdffcef'); +INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"ba26df935a0e1d9fae054009b836e4dd69e55248a39636653efbcb02c67855dc","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'4068ae19fe5906b7b015c28fc0000ccabc63efd9deb65983d28d86eac1ba95bd'); +INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffa12be01344d8d86533b3bdbfe2b938334228454a06480ac723d2611bc7f1a5'); +INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f45744da7da7b1f9059793986646c40c71ec96144858e115ee44da713a204a33","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'ebb181300869e984be9cc3a965fd620ec833d28136396ffbba59bd17257bafb7'); +INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c18bc0d2bf0edf63dbde83adadc01b58ac2b81527ac7e762abd117442d7d3162'); +INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"93409d7ee16b35d0ad564ce06c8cd6be996fd3da93b902808a4b775f6bdbbab6","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'7f682c2adc795ee625e40a20b6d425218b721036480fce5e3cf68c2e9d0cf18c'); +INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acd6a7e5cab513a79e7f2ab280ed1cb31fe2387a20318168fa784970bcebee55'); +INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"19f163b1720176070360e309107c123dcd03eaa092fd867870431660d14a23d1","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'954bee57b2248cb78fe104006acbc52a293b0c8be0abf8e63ff1301277d54f5a'); +INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3bdd61759a585d8ff0ae45ab026861aedc9e902869db7a3cd159e3a1a2f5f81'); +INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"fd0f6657a117042d1249a8b6c717fa33129d6f8c3157ab4eafd6816340a0428c","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'7f3a021b80b2e4e4e4b77552062ec9c583995cd4d30b53a3d421257868277e9a'); +INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d82f71371a23564f8472716e9e0e2e483486b0bcaf701990bfd6a8f9f74d311'); +INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"4e9169f19a837177793374ffc927eba37508f3126703bd29a267564bfbe575b5","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'ac2cdbd6845d69e89ae16dc61e6b921b9224298a3061e74454dc6600070760cc'); +INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed273875de536afd033fb08e336a22fd3e32190fed5d326ab7a736af820996d7'); +INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"fa847b8d53990c18d6d98ca53ce21e679cbb48958a1c9b619d1bbc4c3c0b9061","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'13c794e55d2cbcf2ccfc05de209e4fe3da9b1bc2c825e80ddba0f1bd3b96f560'); +INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d11bdebf6177cdf293fbf9be353ac6981c4a4a3c9f7c625f112f48a1c433b38a'); +INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"6470be85d332dc1af3c209b364370b63c9aa4a5c3cfd005006bbc9121e294742","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'26d3797f2f70878e825c4136d54ab954d5232736cc5219cf505857929c5af9bc'); +INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e39f875060900f78ab7d149af33b3ebc676100f404c2f2234dc5f73c1050f5'); +INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"80a2b6fc80b3c65cbe65df459dffceebc4426aa185e710f1793e5bee954f56f0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'3a214da6917637c2caf68d3562f43007f76579b4725554e280ecd6013be89278'); +INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44674db2cb4357fe65887402b8a8cb5ff9354e668cb184e0c4b6c1f5aa39dacc'); +INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"7d31fcbc4a5e806636c90b80ba1349516bc7dd34fd41213e99d679661caf8bb7","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'a8b59855156ce08a864bc63651799cb1fc10a412b9b01c1438d075b2b7cd6eca'); +INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff40603b2471c4cb953f6335d6a803d16069ecad6095d9245249b4e8e93deedf'); +INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"d8276f0d3e0ac927435bfc5f73c47ba44c98735c369fcca50da741c54897dddc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'927a6c8eb5040f4e726ab0ecb0084c5c102d8ce8ca008411f54ab101202865bf'); +INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0daa079800b4c884df0ac57046b285808ca2b754ca06764f9ee27c73e7eeb590'); +INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"5d103e5b640b3f6e3043e987585f682ce330f45ad9391720c0d142ccf85090c3","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'d66004245913220dada079fea5c7328ec928fbb2af8454a68e19ca2cb05fe08d'); +INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a7555775af2c601ea1897914f21fe25db3176b7fbe86daf56a7cdeca4591f17'); +INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"42c18d3c6018641796b837c9962b2a3d68cc79405217e5c07464a87490ec41ec","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'e33d4b9bc6b75a4302af973e735dbb05c002aae6bcb46182446178b3d5ce6bf8'); +INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dd1960bcf4239862258e3148855c7c7786647d003ffa889b9c67c9aceaed4c6'); +INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"bb13011bd46a7441df3dcea2bd86a4fa2892e173e704cb8ff741433e990ae48e","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'19673a9678396609250f339bb20eb1a0c2c154739e2f70e8fe545deddf3e8beb'); +INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd36befe3c3aa1f3bfde1153deee0187776b47cb231d61ca5e5dd00bda41d803'); +INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"e8ac414eb9fb4b5c679273d0b3c3de8e723fc88a1df7fdf573317504ff4c914a","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'8e053bd236ca79fa0b3cf001881b38d3d7e744c51c0efedfe4f6cee90b90572b'); +INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65ab559d72cb6690253915107fe1b3e6ac5cb9071df538b195bc9824f7f857c5'); +INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"858ab6cedeb9f0fa5acb44551b83115d15b1b7a032fc2f2985aeb82e2858b629","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'3ee21e13eb2444384f366ceb66eb882d49a3c51cd4e74e7b58d476a3c6bbf671'); +INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81c9b30f78b35b002cbac4f11969fc1f8447ebd19d55f4c1b24730bbf1631bd6'); +INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"9bec50e45a8c9989ab2470f03df01573befae3d96098e6bd327d18e5c2f28b83","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'96bc6d4f7b608b15783e479c74788f868e73ff062cba9da1ffa7be777ae9a943'); +INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1387e31a1a20ccc66bf09fedc262e45355538402c88cb5d9e67985f1bad0d34d'); +INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"ba346ac08d47ebbffb3b8fc31ad28d467b54c25523c586199b4455115e927e0c","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'31409ff85a00172c752618f01295c454eb37a3f25698a32d20a2807ee1e98705'); +INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'092f5d8aa55492d590b13f250f7407f3a040c65415f7247a627f21b6d5114df1'); +INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"db7ed24139c33dd46a23ed78d1665ded1ab14c7c5a16d8a35f1051bcad6b731b","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'71bc0e8eac74a2c354e2fe528c869fdc07cc08341f98abbfdd943c5c465e9e8a'); +INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d658d8dbbb8163be5194106c76afd742b664e1ce6d16be56f8733a3905726833'); +INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"7fca5d7bd84a0ae93c59c9ca274e54e096fdd481d99dd2287824b288ce622495","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'4f2fd461166913ef4cf053d75a96fe6e4625bef06e5125aea9aa34bafdc75b87'); +INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96b187969a1a4b479596915bb9a6edd9c7021bb6b07a4b801da46e744712de86'); +INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"bbd07b5c398531425c87f4a47eb89cb86b754e57f6ac2a8255ad903f5860ae9c","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'4afbc4bdef20660ca67708bea8ddc4c4f7c2233ea7204be18ea00e6a4f161c1a'); +INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e06ae3817e4624264e6ac317ec49feab926ddeb9ff3b241dfee8d317ef5658ee'); +INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"231a752430844f2078694f232ac27db8b1c4336bd4e7a5b6e48872502a9d407b","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'3c8fcbba676c3506c4295794f066623a40fe1837f198b598902be05ec6a350ee'); +INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d004c7c1395187aa0eff76f8f508810c80fab2c149a206a408413f1a15b0881c'); +INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"43da9cd479dfb69909bba40d7914f6fad0a199619b723e52f4f1f10e9f0c1c6a","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'88638f0f1ac6c7f277106e6c6b15e5504f21422e979f45228443d8d74d6f6e37'); +INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b5088b4261be9d3d523786cf209d1028a6149024c58345f5d3c7b0e484f892'); +INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"f395801c7769c23270b8ff1632c8bf540de855a651e5c99db50df9f9aa2e76d3","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'fbb9ed92fa8cdfc4773047f399b5b3466a070670726f9600a94e5de30653f8b9'); +INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc0877421ccacd7c145a67d960b8d05bb7bde872c9ea1c4453a7a75425661a75'); +INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"eb2ea3fb6f4eb606bc5a73b9a25b18dd9c0c4d5c3f6c4f00c77b7ff9ef62f49d","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'2ff3b2bb36e885d596b70c5312228dab16813e1263e9e513ef7168ed50bfdc93'); +INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c78562316f8010b5b69d559fdf7184cfaede1d64b6b2105eb3fd4d1570a75297'); +INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"95c91364582218fcb7ac2883e1b1d7d5dd85bc8f6176d9accaaf596f10b2dbdf","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'b3ee8631bd3944f50861fbcfda193239a709f52ce8675ed97f64e08156fa3d6f'); +INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73ad4fb2da5601dba335edfff74ed1f9846eaab92d266b7728696cd45bb78f45'); +INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"01fe9b79d58277696d5a1e3a9cfae0715441d8dc7be9a899219e9fdc9a23483b","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'416c08a9d6b2c2414e24eee9449abbaff1149fde0d2badd9c6ae3c83c96602b5'); +INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77fb23d075b2dc0eb5b9c96ffca5ef67e5873278edb47fafeb43e9b9828e1e85'); +INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"dc96de33a85f2bb9ab4c418a8633916cb1cf3504bf2a47794928fb48c88a80f7","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'ddc217f6d9fb8524959a9b90bc74ebe3b04a83348436ee31bca9b27d0ffd9969'); +INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a349984c84edecb6a23a05f742661e63277b6c60e99f3d233eb4bc03a98a330'); +INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"a9e14abbb4f9ae7ecda1a7a6f450177656fde5fe07ad66694ab46142b1ce3dd9","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'0706da57fb5b6be4c7d7550d649a0a81d1ab0bcfe9585d65d1d6e1adc58d08db'); +INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0598510bba78fa5123d7bed09ada4f5a00cac92572137ae819cae215b809534'); +INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"7180b3148f0ba26b79014674e35a370ca16c08ab2117220d2d373ea16957d7de","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'49aa89250a464de193b69733053180efdc8c7e982ee742278f9fdf1a758fdfaa'); +INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e8559eac4e5b18542fbfb4e790e4edc45c32d3514583e1eb49064b5a19c9fe4'); +INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"f5f6a473ebdc41d1d3fb8ceea7d04990b546e7fd12731a820d3c9e046d54bda3","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'85cc9df0b8bdde23896872d7c0e564e2382fadee36ff75fdb2c352dae90c66af'); +INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab084380523ce8dc2be0ee561bdd8e70d7ea13a5c4206eef4b151e564e664bdf'); +INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"f254192231f8d7741c70edce249c446bdaaf1b086115a47c1fe70926fab0ddd5","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'d9c42c21e21f028261d7c948d66aefbc59e62f7e5f92b29e228a43d9a9950cb7'); +INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a8d54499982def5e68aee26810c3de6fd51e2548bff25acf1d66c28bee30612'); +INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"845c47522180ada279c811bc92df7601913796ac9ef044bcc30dc3359f9d55ae","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'69885efa93d0786cfd2d2321c3758e6c78cab0930ceecf37b4f9193cc8624380'); +INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965459c4885be2035a1e78d6c308124819dae3dd201219894d20cb88c90b37a6'); +INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"4259f755f7b06651000d763a811e6ff9002335ac4c1fbd050433c3bab26607d2","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'cff150ce5722abd2dfb5c1787626976f21e7570594febd538d1de0b50ff80960'); +INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a95ba320e29030e421b986ffcd48e952c5fd57a28c1087dd98f964c6484fb6c'); +INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"448273897ddfc1cede0377e0f86a5e630c05c33bcd2925739a2ff24015540bde","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'b8505563f5ad4b8d2a5b11d397a4a2b41f031962f95cfd89a1a0c9a02719a744'); +INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e55a4c57b672e136837a2370be5c8d345e260c35da0c009c6c2b1a69f570e977'); +INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"bb9ab2effb2da30ba113e33e8da62e4fdedb732d6e03a745f91addaf2a501496","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'e3734ca6f4b476651067de5de5581cdb55d1c190600c5d1f425957e51911706b'); +INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e882a74f829cae548086329ac4d86f38ebf4882f444bc95ed7ea7e76fbe620'); +INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"c0bf80efdf0330e0593cf12e82d4e35b1d5f19c2106928182e6adcb041f60d87","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'93796f97303c93223ef89269b9865f732d0bcedeee86a6afbd7428d6c198bcc8'); +INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f07cdc43d65f50a3bed43a503c2866232f60f8b6d77c63bc21fc24645e1dcf0'); +INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"6fe1bc5aeb95182a2cfce6af86eded133e3de527f438a48c838ce29eaa233e5a","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'885ece8e292d89ad318c348c8a1710640344e518226964a0ab7fda15b3173561'); +INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d464caaaa202ce403359aa75b07771f0ee14384326156f6e745de8b1056072e1'); +INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"17561ec9251ce52f61101c3971e801ba0bf325f5c4d7fa44cd7cfe5e0eb2de83","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'a4462a06be8c8542fed02472befd132f446460e33f2ecb9f2dc70833f463ecc2'); +INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'043ab0fda39fdac35706b72ff6cd0bc92e184a35087c9b54aebc744de8718eff'); +INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"b21aa2b400bcbd61d6c4151c64813f38b9c5aa55254ca13b556c8639bb86ac57","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'169b43dd0f6724ac5aac7c1f9f0761f19ba65dac5488105b67c02c86ec38ef47'); +INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fa615d573168a431d400743f41d6f69143b1f35c2680a65bfb510a8faa125c8'); +INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"99e25a3301fc58c6dab0b4333969faa4c19f9be9d7c12b5836932d5d9267ab51","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'d14ed7c2d616b097b6c6893f9f422462a2a7d20178d1323efb89d926af73a309'); +INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce7b83bb36a0900a798262614c00d37640de5e857b43c250d7631a94f8764c61'); +INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"86786ebef6dc7d35502f21a6d77afb56047fac4486aa67fd98764f8971c00c2c","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'357a9bc297b353f70d7f5c2e3ba5e65ccc6b35464616acb0b9a9b8a58f8e4e36'); +INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef3981b816f81790f4a40617c15b0a4731921324951046d5a61edad85b02769e'); +INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"d99654ca4cac34ec7b1ca5ac99e6ae7f8f01dc1a159cc08cb66c8a1798c90f71","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'05be3e01b627ab6f561a8200dac0eae3dd6be278cf01fc503a08eab846e126e8'); +INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d28ea6e185d0e49515f36b1a014ef658f1d5294a79d9789b98ca0cdbe054f904'); +INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"09fcacb1f88da9e19274aa1ff358bf133495b91ec42fca2ab18092a37e1c91ec","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'e5c5c4a70594c3cedbfc30829fb2d4cff32c34c257bb127698e4115820b5b8c8'); +INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fa49ac747b8c98aff6ffd4b34932546e66ba0a05c0c7f776349f44df2dfbf9d'); +INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"8a6a8dc6fc4e92634a8df2e6f7360111711f4ae8db25208da4f3d43e11e943e5","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'4c4463dc79d1c06b482b3fa61dcbdd6b5921f7c5d8e9fc47af55cbe410a239e1'); +INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'581746347b48e6e99e40a8c9d1ef6991b1c9fb16b650cf0be386fcbcf1b26c48'); +INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"8b136eede3c970331c5fa21ae83b4291bb07f70a32d2a3df62470e60a8532bce","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'b076924d329e2f97878e84f65970ddb00696afaa293888c6f6b91fb8344bd313'); +INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c061600f29718ecc51ee7eb9c7edee225cb62f6ba821e26e3c09d97bc3bbb34'); +INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"a26d6531701ac3b6ec38a87ea5f2be2dd16d7467df683ddcafb42f0c078679b8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'2b887e1da05d3b23bc8a9223769f904f42169deeea7c3b56e692abf16cd373a9'); +INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa3ede4e56a307e600c3b7af4630aadcb9e0d3f5335c5497c68051663ee10ad'); +INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"da74ca429ddd9755ff46a55a8c3c65f202c5090e2ceadb24595f0d43cdc06fa8","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'02544c4b96cb48e2d8a70205ffa00d06ecb3f155fd456113208d56c0c8228016'); +INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'907c706ed33717a082a8b2e4943b245374015389e3cf831ff34caec87787f2af'); +INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"d51dcd189c91307798f8e2a0d2961dada7be448b9bb5a186b74b1a5516d02de4","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'ea47fe9a170999abcb7403de5e0cad54c8f1a2c9568766cb0a8d4c4d77fc1d09'); +INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'790a4f104f8b6591ba2df0860747ea7fcb2400716a3fddc692ed0a6f2bb7335f'); +INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"531508688d99424b6835e7315f39c290e76ce19cebce1fbd8ffb8e87db30dfd4","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'ab8bafd4aca1f47b2dd9a5e57718a7bb70ccffb140b2f04018f2400498e28d3b'); +INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efa7ca1c8a6166708b7ad67d0ee744d29be351f74a0d1f1bcee113a5af900273'); +INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"02e514a5d98e2347da62f4197b3cc4a20da1a5c94ee0b8660ee3724d272bca53","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'fa22df1bce85473d45fee500be0eff227bdf4a1e2036e877d5cbe9fa32cbf76a'); +INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5aeeb1c65448b5ed93edba881de4fdffab6d0cc2f5012305eb9c791d602baf0'); +INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"40f8e5f2d49f7fef1e89572e1e46f47e33509faa73409e1f3966adae30933f70","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'3cb01afb82c44a6e90b685c53288f482a425c956a67c4724ceb4a0dec07ae652'); +INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26748b8974e853268f27f12b4ea64de0f83a4df818b3a9673fdd98e269d4dbaa'); +INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"588dcdb61a25432139247d1c389dfc5df607d9b4891366d8c90ba8c012fa5fae","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'70a27c56718c6cfdaaed714e4087f83680e9c0d34692764d95e0bf24f4c56804'); +INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe1a876d39eaabbb75272079b0205d1bb10c33fd8fc4caea18d2a3f1828930e'); +INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"5e6c183b53ce2858c8603059539e0754b355f41e071d092189b54fcf5b4c65dc","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'84800a25cebb6be0f57a5818dba7f9cce6ce2fb33a21d301eabfd979e83da373'); +INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6fb42d8b37f3942188cbe011869027b88a7592fc66a997ad96dccdcb64bae77a'); +INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"72a91600e810adfbc4c99a5422d0d146123b041167a8d675ff2e2194e1415c16","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'28ed4ed8dc77bf4dc10a04691c3d59225c7f0a797853d6460db0c12fd882a427'); +INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5272f07f1155893db494ca5161812b33baf9ca6db7424199875c933ea7feeed3'); +INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"cdfe825d09671948f524380c156741f38ac8f1af578a02cbc4b70437f74343b6","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'a6247093df7d24770f60da6a20b356103f9d5422d251d6dc114da9ac4c39818b'); +INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb719fffc851a0f2e9d0e084a36684c202e0c2787209837a1f18fda089a936f8'); +INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"8bf4b448ab3b06f81a620880bee0cedba4f7d047325f2ed12063c48a7aed7424","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'d0da276347f47966d14b4a8e2433eaf69194f753aea144bcfc9bba27e4e5eda9'); +INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8698b46a003ff1e3b14496fb42e82a904c7e5bce1816775e10b3acad507f1bc7'); +INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"de6fac2e21865579cfe50e434da17a9c07ae47fde8d287092c49cb92a77ca5cd","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'f8fe947f769bd1a5a017e104138e199101cc5333525e81aa5246939d5ade3035'); +INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'557211f61592a7ce76fd8141afe6d20f1b4a7e95c3dd004bc3608d1a3aa3545c'); +INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"ea66166aca11cc22c2667df77f78ee1598b0452076ce0b81c3fdac4c4816a76c","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'c71199947d20bd3a80af757529b99272e2130fd6ecda2e423883a686b3e0273c'); +INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09ef5d70f14a32ac7ce3afe231de642c75cb5e80fd23856ca726fc612a276c18'); +INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"ddaa9539fdec7486cc0a6be7dd477b1604baffc2d93d9be0d6b5c7f01d94829b","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'a5cc6d704c958f0937985ceff0ac4c7bffae202c3eeb2d53df971b63a3aeb5b8'); +INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e72aaff4dade6dbd5ebe36a5b6d5e5ea1ba147c08db26c49f8652abee1c73a'); +INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"3edbf75eb17e0ec02165cbb3d2880575bfd09afeb047fb82960928d6fd22c30e","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'caad056f3ad8c7ff46ada70e53c2257d2128ff644a0d4d7a82d3d46222e2768f'); +INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8d585436677e9a224309a8b2f181e5e724e7348ed2f62efdf570918f825133f'); +INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"4c0f1a6797e5f7f2332e5be0af217ea820604cbc4a522b3c9b09e5e7010bde78","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'e25c3452542ac1e2cd00ae76aaca8cda43378f1f6e9569f72a61b77a2d5771df'); +INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fd16595fde502ea87e6d8b3dea4de4cee722000c6a45a458e30e89b664fee17'); +INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"2d4169e4d754c3c8c570a5c1d10572cc89d94a516c9aa841a289c8350c5e2938","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'6858286435a71d40b40b56f6f24759f78822f2ce7b79f2b6738a07dbdf46217e'); +INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c250be0a591c7ce7858b2896d327ee6bdc28fbb513db3f2cd8e2ddab14b27008'); +INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"43bca087cafffa64170b8429619992da70dc7ab790b01f80976cecaebbeb872e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'23202f86e7dec1639fdb064afdd0025435d7b72b3e27387529e7dcbadf964d96'); +INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee23dab9ecdff6757b04efb40b1befca6152a835e1a0c60a766f0a58ca9daa10'); +INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"e3dce00dc98a2b70a2d41aeb27dcd4a1ae704a71b205fc4af3f2f0e7776e6e3e","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'1b4f4551eb4bc78a688cc518647f0ec84e78b989a6c3204e6bf0d7617e2323c9'); +INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc6e7b3c0c791a368919c745654738d82b1f64ac1a9bd1b2f53cb53e7f04651'); +INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"b1b576620b2e417c2451242beb92be173668ceb10ce0f643e76ea31f36f08fd3","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'bbee85dad1a258ed1ac260bfcd99c5666b07d4c714055195f5284fb415e2be0c'); +INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a74d4351bd6f6d76a0427ce5dd3f2e6853de67385333392408c2cb3b7ee30bad'); +INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"461d8521b330f7aa8bdb1e0b7376f1c3f684cd79e15e6bab2ac80b4f05a51435","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'0d27e8b4ed0849aa3b29246a5ea7c483c4de17168e0680946d90dfcf0ae6d46b'); +INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4bad7e7fcd0d1e97b4c00399b37f5c9501e2795c665b521cc0ef5562738490a'); +INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"0a053a0a1417e32d27a398dbf797fa59985063eb87c90e65891747120d719d92","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'95e5718458ac68c2e90b8bb8d72d3f03fc49a296a4d00223dc31bf168c8df4bc'); +INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56f0ae20537103929cc68e61b425a53ad96a601625c1fa0314232ef060b4f224'); +INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"ed185a40b29375a5aea3187001ce3d9ecf7857d5aea740cc346a5e5774ae9590","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'d0cd1ff9d0ffb6c7564db9acc5e3ed9b52c301a4576962bec4845206f7a6a0db'); +INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a2512b463ee4ba5ffe9907837d7274989dbd237a336e1d7d50368122f2b73e3'); +INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"265af3d5dcd0f04a33ee2748f9f8f437d047df455728fddf96faa2e7bf5369d2","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'19b7e70e1b295415e6ac99c33fe43a4ffa4e899c6fa05ed28f50d352c1c95961'); +INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1b47b70d95cac38fd975e88e41696ef72433f0f7df73cd604001980b17ebca7'); +INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"a0a51ffa224e234c860c60414223044f617cea39c8f515a973b0720e463bbf71","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'13f5cd7f20fc90f39bb75d0394ca2011fec39507c4a43859d9b8ac05773d7212'); +INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c11646d9fbca926e2255c9c960815739d471d1e4540ef70985e23cfc38d0c769'); +INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"740534243e4bf4377220683d6be0407dbf55249680b09fdb2810d224db4e8c83","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'b40854bd06c6257f9fd363d4897d57e215fa4d29f14994ffe0ad65f9de88d1ee'); +INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c66d39c9855c0891598b0c0933650066891da078030725a346818c8799cdec63'); +INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"d791ca52f3d803ed1e5e91c6cbbd35cc8a4e37ed2920131c935787f12f345c4f","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'cbe6a6abbe9441914de4493ed071037ceeeceeb419f5fcfa073905db9000b811'); +INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4781ae9d0929e1dd9a9a1c33c4fe9adbd6e9448ac9c8bbfabca7e11573294920'); +INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"b6547c0a3bafd1c22e05f93c0b6c750872f5d1ba4304d08abe411f272bce70a6","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'6fece32a65c9ec7d738938ee6ae9cf64652ac4ddb9a2e6d7f1742dc9b309821d'); +INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68928172d6484573f33a381452e3700c4c771ff2b090abefdd42069d7e28aed6'); +INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"833c64122f983c511535669bbe2d8f3977046414327dc108977da3aa753e6cf6","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'08ebef9a16f021edd1040d84bb7b43bc6b2d792e31e459c90fe21046945e97a6'); +INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c31c2ff891a2db3c02b28ce5045b93745fb1b9f140d92e3378105653c219507a'); +INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e06bbdeff1058a9ceff436a44e528a8636047d8c77b5f130e999abaa57a53450","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'cafd1de4db32f7d1253e7175c555eabfd9f96ee0137378e7226dcc0378280639'); +INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa63a607ba6958d67da612fa8ed8d3edfb66fdfd86f01e77c15dac31ba2584f'); +INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"9456da217a9c06200f2349ed7da8212d7c759453bb52b2fda847fb8be1435e07","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'a58f9852b63a7c93b5cbbd323ed123c76690898f06fc31d106829589424238e9'); +INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298f813b5afa5374323e8f5d13e2f95637a497aeeedad1bfac18d0120312c6e8'); +INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"0a677e33a79e59638d2b40b0e3de1a08653349c72075db0f5f0aaeec5dc3279b","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'cdd55f3a531c6c3de831a681b244590b6efe14b7a0bc62da28e03d1557df6828'); +INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'669a13c5f3b25af37da5ba9419d6e5668d452f99fccc3b9a02f92e17e11c24f3'); +INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"8a795c328a16ef9a70f179a5e7dbedd45e2d2b2d81e56e8bae20147c14bf0452","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'a22bc4a29afb0787163bef101527e485a7e4dadeee968f6d1605cf661402f5c8'); +INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61f710f153e74afa73d07f04384e5d3806a35e56a6e292932726d4c888856825'); +INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"c68ff5057a71ada6149f24acc6aa41b2518f1b636b3c50923725ee2b7de435a5","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'299a2391fc96532ffc60f01711bd71350d9504431183b3557a4f2caa7d9d0b81'); +INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82a159e1c5d0b411cb9d406e50c7940f59f59e85a2b9444a6e15faa22056a267'); +INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"a8b55a0f59722be7c786d5dadb63f4ddc7b31896f8923ab11d02c05d4260327b","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'abc8c53fd37243ace3075d4c02069175e3fe689f090eadf7caea13b2b9c6b7e3'); +INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'534599197907ee2118e5552998d2052f533ea81f874c3e3c5c2611ead7536f96'); +INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5df9f5911829c3b5b90cb780bf666b4fd7f5810b83d19fa8b0011db47bf5f7ed","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'cab5c948a74e49f0cbf47697d47dabb4f903dc81eb4ac19da6e92d309e96d0d5'); +INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1d74527bd05a9d79b77cd4147b5b4e2771adf71389b90cf7b02ca6988057e13'); +INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"b9c5aae6fa34155855c91391439b6704a4bef4c2139e8fe5b9adc0631cd3e398","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'17ec0087b37398efb3b46ad09079e5f4767157a4ca274309b5ad4c0dd2127fd0'); +INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8e8f26925042200d1553b7131cca996b17b400e7d70a8b2e9a68ffb26c32598'); +INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"21c8da195c2b64a46363609532e08814d813969f76da074a7e0bd98083a02905","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'e4d652e9064a58ab0e01ec89fce333476ca7265e424aba95d2678489686b0210'); +INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bdbbeca6c159e3ff9aecaaccbb77c48a1d02b66b1da9407bb06ef37cfdbdd14'); +INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"c87e4830c67593a51b385676251b95ec61c177ec9447fa9710a870e5dafb5051","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'93884762b0463de59b0139eae62fcc911fffbe6db0cac18c88c2a8c4faf2f53d'); +INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0a6aa4c64fc588a1734c4d4ff67af74314f640e531ed4e84c2467a6c73ae2ce'); +INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"1360a588214ff63b332161a16a5f2d284bd639bfaed0fc6994833fc9744adf72","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'d57ef7f5f6e466869063d59d4a15a3086c905c575caf83b27ba90881afc60fa9'); +INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'863b9e69f4a217f9dcbbfc009226d31178817d36c97576c3561a746866d9960a'); +INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"3fa8c419334f2c45272c2d4f297c3ba54a56c79b6fb97de4dca714c4512f1584","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'012b976ae0b01035bc92991deb361a72c2b9e4ebace40a3335348cbd5e52c596'); +INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f40cde6d37b09261ded9a3836948e266a2c64b23de6df0b67c0881c5c4d2d8f0'); +INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"b2361cce16fd411ee3547d8a92c67d0a659cbe4de6855135998dfffb7cf4b3b8","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'e88cefb2b33e9b661b60880e3c9485cc9b14f100f50b881f549d6ef3dafb33a6'); +INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f49bbc656a996826b1f61c313256baa179afbcb790d90625ad6a2c4ebc6a89f'); +INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"0064021a9a2ded2401adcb5c837194107fcb8c59bb3c2e81e6806d30a3430c0b","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'9e76f8f943a280ed94318e6937005fb228f9b807208de3d9dcd118c0f742ab2f'); +INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecd898e96db44fe461915c3c838516347b137bb8e62fd79aba2cb09af3c16186'); +INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"6647821ba99b3890e47638e673cae52b275e9924588327da23273acd620b4376","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'428c05dfe3353c63e338bc642fab2160ced1da8e0f25931a5c542b432142899f'); +INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d00cd00c56ba03fb3fbec9decb487be3042e6c18d9c098771052684c90882ba2'); +INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"a5e63f496ff1a23e98af92000be80e99539a82c212da013997ce01835942bfe2","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'6c73a7fdfecb8750a259e7a97dc9007fbd9dd9b7e0d46ee203f75560791e2c68'); +INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4381e9c9ed9742983a3a408fa6173b5a7f1bb4d8670584e139b4116fd9c4328'); +INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"f6d201b2be9dac493b118d738849b625380d10e7b29c3247a14df5851f33364a","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'16e6d049172694a3cdc642852bb295e09836cd2858cb28b6b7558e45762ab28b'); +INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f074fd3203adaf347736cd3adae70b65d341ce1703aa07a8b867005d15bc7c6'); +INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"07ca29a1b8ee639ff744ea21c97791e33a4562218488a7f8c5f02728ca12e248","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'fd9720aa927c0ff5cbce32988fd002b9c6a44f17a38f76c82a68a1f89b9cf7d0'); +INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa6c5a0dfa3369a34defa4f7ec2c97fb66580f671cb519dfbfc2158c436f5f41'); +INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"023fd024159ddeaf1ab734cb66d261dbff5bdf4d8b0bc40a0025a239e138ff8f","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'7c255b2d72637ac2a7798645c2119ee30426cc10f586e21f3fb3b178927db8de'); +INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a6e74f37066f49bd55f99590e1c68a4e1cf3d6672d35a81b3c93f7adfcb1f81'); +INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"b76ef42c8b661feede3e1f713082b1450b42de06a547a75ddea2bc02a9625d26","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'94b3fb7e6b3e4bb1360b7b7298d5f8bad4f10429228ade2289ef7a5870fd30d8'); +INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2782c0fa42325ccff725746360109be32f5ffde5c0121d4cb87607b451e1e18'); +INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"21bd62fe76b7b38689bc8a20ff54029cf156ca06857344c8da88b9a89c64cbe8","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'0923bf654a64558eff49071d589a7d80173360d32d0db406afcd382d256cd332'); +INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6469fd6567705d726a29ad902772df19203924051e91f5c70034f14b11a43dd'); +INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"5a39d5def796234701246aead80f85ffb1515b2227e036d4b1cb24b4aada6bbd","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'d185c9e6cd6fe6024c80b80160c212c8762870da977a620289cbed626d410b3d'); +INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99f3efae8e1feb2c4cb6bc15a1f9246a79b78e7ed5d865c52477d2bbc47d7441'); +INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"842d29a2f25fe3377e1bfc88a4965038442587c9ee4d8abc297a03ecc9437564","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'8e5b431b43db6fa969645e6451072454ccc124a1615575b1ff78f4ab684c1341'); +INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c157f2848d051bcf4e549be24b387ed5472c78c6d02d9f7901cbf6ab124b2e2'); +INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"2c00b6721398a95be6b7b00299dbf0be919b1bfdbebe64a97466aba9e9e9e04a","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'527f9f019b46ff1f1a727796426d1ee472a2cdee5a45f0e4eda958fa1ed1ff46'); +INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4a4264ed1738c9a80b2bbf36bf7adaba2178f294cbe24cee1189d6d3f48477e'); +INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"d6e38a393c356b060a9a647e836c08b5fd3f5cf4997332904e31f9b26ed0067d","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'6fae66a1afb4c424f7988994467100d91952087c75c5af3aad367ee188e2fd9c'); +INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00830e9907c36ea22f5d510df92964344d5d3c9bb1ae3111799330dab57e55ac'); +INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"197bf44fbf9f81a45e5d6b49116e5a2f33e9c91586990611d3cab342d060bb34","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'aad282f6a4aa7ad11bd1fbd4faf81cc41c9df0b5bb1b656d3378ad09c41a88e4'); +INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94d4451121e8bbe46a2913a2f830b2a9a19d27456fc2f6690b666473aa58483d'); +INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"10e19582881cbcd5fafd7fd0e520a0c01f57a2700c638d5902d0e9079f976447","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'15f090c04723b3b35af3d87e819e59c9b86c60995665694e158f24d63767e754'); +INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38db818b927bf8598ca92c27541eff03f6591be7960b21e53c9d6b460fde50c6'); +INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"73b61f5972151cc9fe8a7ca55918ccb88e3d6b46fe10145e8b4e52bad8bb49ad","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'a288e1758d9dec9175dd29bd4797863ef91d29c29449fb0af07e51ca54974170'); +INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528420bc24a3b0787e3f45909f7b8ce11191f4b4f50bf269b7c9d3b25625116a'); +INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"688f204fa1f46701cbe96c820e3f139fdd24f4cf6b8a6a9483ec0705cfb03298","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'fbd85a0c1add957616f00eb6e677c34cffc121098fdcd2dd57656402970959d1'); +INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2115139321408032f8a6395b3b959b6f3a8a4f29fc7b335d478694102aa407f'); +INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"1d0f77c3d9ebef1fd6708f916498350005937398e9ecfa327f92a0c11830b403","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'70e8e442499f5fc948c0a95ac0d83cf8b6b58358e345111884109deed5f6d424'); +INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c494eb0a1a9c9cd3bc2cff340a969f7f87ff2722f85bd88c57b00c5361cb334'); +INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"4abdb5df37abb560e41899e186a413d98fe1f81fcbb35fbdba8af7ef5a7b3929","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'bc1559545b960811c523ed5cff84192e5061421fbfc21324062ec20908d8ff7d'); +INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42aee3337615aa75cbc5028133364bb753caf2d0b0f2532aa2a92ad4cd1bfaa5'); +INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"fd6818a5a6579a0c950704aeb52ff453c8e0ed7d84a371018b7a77120e44c13f","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'49a705dcab1289d78e3a65d5bab0edf4c0792a6e45735fe34d121284ba5b2173'); +INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a4d60b4bc88229dc155d2c16193375b8a68ce960666354d1231a7c030590c2b'); +INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"6432377b8be2860341e6b8ebd2e86d9af71936e8c2783b761828b51848c95956","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'849dad510bf5f3d3b485096bf1312dbc6bc734941350a2c519fd26dd0adb287b'); +INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'162a47955ecb28022670826bdb4a2c37d7feac1c8e7073a2c05cac8ca789a0c4'); +INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"932c282ca7f45847ac8f798d516508358106f9577824189d935528afa9040706","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'824e9c7fdef000afc2602b1ec4b684e3d4459fd7cdd8da0677245f2307c6ca49'); +INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7509c700fde8d78eb90cf007bb4555cf2069892794f7c3566308733f1138817d'); +INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"616da1d1437bb52806a90fa7f8e91a672520fd33d075f30928f0d7245ad90942","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'aad403d0d16c6226659ac62cf32341617f50fe68bcddfadc7246ae05e90f7411'); +INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c398f6034dc1c25abae3dc9fae3e0056991aaecd3269e935c387cae458fed09'); +INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"93c422cd4c99fff32652fbd87a7a8c8179cc5af8c4abb9e630781acf64074738","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'189ad95693c347bb9974cfa6a2daf2bdaf3459e2f3a929714885fd874a8a500e'); +INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0bdc4d936acdaa380d21a2acb5089b73d472c81863ef78d7a47c8a0a876d61f'); +INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"29d56bc414d58d6529f42a6612a3e1112a7c5230ff00dc5f133cdd5ca46d2c29","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'593dfecf0235765c271596a0e0b941a8427b32f380aea7243efce9babe232b69'); +INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5dff052f682b20ab3818e480fea6e806827725538b8536f746b962f767442216'); +INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"65b005c618fd7c978463df8c95b1641b32a8eeba990d172aedde523310ee89dc","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'6bfdfddd4f29bf6e431ecf167378b1650a28a1d353d16269909d2cd4d73820dd'); +INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c95d8af0c50d9b14364c21c2a38d28f8d2659223bbe427f1c6f6dea352bfb8ea'); +INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1d28692af16aed3869563577d1cc3ab499c0f884bc4f74bc9bf974775c58246b","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'2b251e4d3a7f3adc812408268dfaf1bac1ca3b0874fa4ed39571b52cd18e402b'); +INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d4359404bc0564798130bece8b36fa35e8e78be1f8c24e5170fbb661d520377'); +INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"f4a72f6bf169e3d5800511df1b87faaada61f917e9396254e2d9d4d9f64308d0","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'10ddbe73839910f5172c6fb8a63bad9c2ab22598cbcd520368b7e21edbb3de6a'); +INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96bb6a9ce8e13df08eb0d1066c381acb5af5b8cc94a226af7b248c07b5ed3dfa'); +INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"23d554dc74deeaea064e3e37ae6aeba12a901a372d85721a780136e6836521c0","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'37ce247c63ba4b5c6839c44d9890b4380df439ee83db30e3f219f89aa5ee2e2b'); +INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'caba6d09daaf745b65701048cb686e13aa8ff9e85aab4ba201708da1e42aae3b'); +INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"2c385e318183e948ebe3038a85320e63ea5ea9603a3b302217e0120574e39c7e","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'303a7da48b9c0087609a82455bdcc851f1eeb6c1fa9dca114f66c8a562c34025'); +INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'450cbcdac44984d3a79c3507f77f058c44ff3438c5d37c6644afc3d7a7a8e58f'); +INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"2dad0e9aee3fac1852ce5e7195b87603e8ff55cb545c6bcaebe0f416d0da9150","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'5d52071658c0dc31845e7271d465a4443e1718e380a8d81c956a5995cdd480cc'); +INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'624413c5d106fbfa45dccafc6e8c499650cf9735d7fb37ddf8727b213bee2b09'); +INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"d5edd7dd89b3050963ae8db1d894b8e248c3704cef7433a687017a63641e6849","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'3ed16a509a4e59a69b5df9f08862e829ec384fa5b6ba8e3e29265409acb84416'); +INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20675a51655ed48056ddf006f0cd7369167d46190bc094ad80f469bd1fbe628e'); +INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"df65ba4dd288d0bea8f108f8e7ba384f911da84d5c99a399e2cc151723329359","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'e2668e18b2db35d07c60ec0f26ec8a40071003eab4f6e30f59d802ff8e8f3ed3'); +INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c876c7e596f89595ac0a0a63bc02992d5abff86af94398b81f849c6bab6e16e7'); +INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"a9e373169e19f27ef62435a091d1771d34441c41c8cb616ac90358b669958c05","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'f791c3e04bc4aabc185bec57373c0e0bed74fab6a30dab31b766a6c43e9ae477'); +INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed02497742cf9452ba2f7f12851c1c288bccddeb592f5e1b71cba281a6219143'); +INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"077e8b91cf5dc13bd8aedeaaca0c6a5bb13b0e25892454be12c8670f304c166e","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'dc9d519b611332e40201ed5b014d9f54b5a73d0ebd1dbd60cdad71519b1b0050'); +INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d899fd49a9e794ab5bc652a2ceaa83571bf2a2c479b02a8b8268c920091774b'); +INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"8a37dd85ea1a28029da96ee1704cc65ad6fb58d54dc066201c524705bc2147ff","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'5298c342486ef9aefc64c08df99a11a2d188728dbfe10a4fbcddd06ae467cdb1'); +INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25d2b757e323348eab07a83490d4c7e882912ca77fe802ae5c40ca878ff981ca'); +INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"4d0c5a6b992832663c78e434a4c5e5c4d9192e7448e0b1706a69216f306ce24f","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'11322dcbe88061a801561ac3b832713ee53ea7f90218aba5b215eaba5f4e5137'); +INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9c3c826368469f82ab75696c5eecaf65891e771c3c98b7425a10207d3f05296'); +INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dbe544402de48a06ecd33a43cbb04de77285d45077af143afe80689831062ed2","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'106c05804cba4ce2290474a4887441df76abbc24f61823be8322868e7e0e46d3'); +INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3320dffd27f632e0a25d1edd2ca8e1e10c85b93a41faf94beedc1c0997aa786'); +INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"c3359006eee11f51527c81e798445d364645aeba0ed50cc4ab96ac84ec20d72e","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'3654d7e70254465734c3ff26dff4151a171d67965de9d485e08e289248601d11'); +INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6091ec65003b6f766cbb3de07a85e3962bd39487321c497be6ac7110ae95fad9'); +INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"1e26c66f0506bee4ca9cf7b2bd17030d64e6a898b91fd9edefcb1c07365cd50b","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'fa51533b20085be0dda8384508cf9050ae31023214420f84095f331f1ea7dfd5'); +INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4e3d1d98fc1611a7129d93e8bfad497c4a0657cb8cbd0f575323a2bfd72fb81'); +INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"f328ecd6fbd9fa9e831d30402a98f41b50ca23d0040745f22588a69b710359d5","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'dc0836fe27be750f38c8a042c849069d595d3c72237ae33b7f9018b06c7c7812'); +INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9ea1da8d6bed90f41069ae3468226dea0a1fc17fbcce8875e0272ae2ea2ac9'); +INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"96dc600d60f957ef65b0b348dad124c512ae145a1404a667802ae244b77944f2","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'6ee4e1ea7abf481f30d0cb0661efe127014d5624c1a47ae213c0371fde825ec3'); +INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8e731c95e7bc960f3608f5e198e0ea859e063c04ea71454bbbd355f58a2aa45'); +INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"35b859e3065e3a1261d775ef7cd0b793785dad45817290499ea24f7acd465b68","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'59c2b30e08f985433f53e1cce2b8dad9731d8600447c70c3eb39fd1f8bc1cb85'); +INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bcf1a6c28cf62b6690f9eda6e8d8942573bf38208f4cfb808b3945be1d07210'); +INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"f8652b8981cb4d74045cdb72902de617a8cd9c3f3e32e324ad58ec074674aa5e","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'cc4ecf5afbb67615effca9ba66e57150a2c1d2a2b406ffb53b3655419b05aeef'); +INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d0b3cfbff77d588eb552adf43c903caecd1bac9b2d434474f4570e7820e9450'); +INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"5c1b179511b142cfd1af1bd68fde39f2f345a729d5a5aac4fec596f96d7fa3d4","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'0b1f9e8fb1df754db4bb7c45d07622914a1e4f893885d19534c69b14acb0fa7b'); +INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d9f0d335f617656fa0ae21acce4bdad1d0b72bf6f11c09e1a178b7cc4f51916'); +INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"c6ad7c19d8a777640ce00804ad04dd93ae1d8d4e677bbeafe7d70788dfefa8d7","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'49a19c19235987ab6aef6c0c444221986b5a7cbcd040e517cbd68d61c90ed30b'); +INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'230177b8b6ecfdf820fd3478da94bdecdfe93aff11774e381576e44b587c45e9'); +INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"593924831f491f3bf40db77db4c8308437625869ae278bf732bcfb78c3a04d81","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'253df5213e91a88e6013243808312fe0fea2f76b1ed3633f5275437e08852617'); +INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd2f186879dcdd1b11221279231b58e9307e1e97d900abba9a0c92c8f2b460bb'); +INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"ac36bb0db978b9d236303314cfde6b83bdf63dec6ebd0da493f6fe7084ea5709","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'8402e93c6baa36b467cbfc63bad0e4570b36aa0bec511154316ae1f26c047f3b'); +INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad568e7937c844eaaae0f159e00fe1865f0b66a47e8f6854c1210f551a86b70d'); +INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"7bb4f8c7e18f341ec9cea0d2efacfb947628e0adb42b9f938aeb8cded0971e2a","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'61c70200afa2862001bc383953f05e93cd301eaac0d2a121670f0f1fbcac62fc'); +INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8e17b96b128d0a09d86e0b17621c10ad2998f83cadffc22d93e90ae1fa33264'); +INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"5d80bed7ae3e5f33a637feb90489ec5a7619744deba7d5e91e717ed3e925ffd5","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'139dd7e693a26f5bd3c5d5abfd8a8d82935107827141caebb3141f9d22e4c84b'); +INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d794d732f234fcc059478ce482fcdd16fc763101f0f0074fb59852066314129'); +INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"a3cc94a86bf9642072a857a04650f930a9f3ce681ece6687300bcbc987a4583e","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'28404239a6062b39607403ede2fce94256b8f6a5215c748e373ea159c3fcfefc'); +INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'806ffc4a5f72eb35a5c72296d2dd24e586fb2effc58151ee5150b3c5040525d6'); +INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"d459d6e7b567a0cbb9951490e4a0d7876e396d19a558464aa38849f0277afc7e","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'7dd012a757c3f3f58a15eb520c83f7be375ed8fb9df4583e61245b6fc4820ba7'); +INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be1a8bbd8e488e45953ba6275353f4af9f5b6107743177169f281c6f541d5952'); +INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"057be3bb9a4541994a2d7c3947463451f9667312b1a292042922d11a00dced9c","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'f5afccbf8f2625e4b4271c7ffa3a29f3421c388a8c8df1f0056e42b8663247c9'); +INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4938dd445d84d36c954b73f320bccf2133cacb45f8ac83a5333f239686416847'); +INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"458f8bfcc51ff96bbbf7b407be59343af34acadfa0abd05cf8f3dfaae7706723","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'904ae829e4786ae35f110b20c78cf988641330b3b060900571757a9616125b46'); +INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'802bede01b6cd579ec7b20e3890a513f4ce5de6cfb1a62013a3e1270a748f893'); +INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"b338aa03b86f8b5fd7afa1ab102fa7cfda44670d748cd3f995bf63659126d0a8","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'1a3e21707278ba7eec6ff501ddc878cf6606b6a5a5f27793d2f0f3aae6909cbc'); +INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79c6e4d682aec6660d7452f923895efe14ed20f4b69bce56a86882491d944e9a'); +INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"ff6454528fee1786b341132fbc4de153be4627b50ada07778f212148ac7dde05","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'41388fefa79b0178b5e85685814ba9a4c89db454d46f5fc8992e33c082b3a708'); +INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bf7a7eb38b2f8965b669b29cfcff0e5fbec16fbc69e0604653d1156ad979ad6'); +INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"61aaafcbbc21ffbe4ae05c490ff76328d29070a577af9f7704523aa922cd2a4c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'803e6ac6f1757084c717427f1bb6347b8b73652f6313c66f571017378bcd7b59'); +INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6810ea23f5aced87d7de033fef7062fbb60325461522392dd33440eede0a8235'); +INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"42b6fc8ccf24d1f30d975b83d8ff6af155f53cb820766b884c2482e66687bf30","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'ae4dee462529f5c9b9e3175180f255c04150669e2f8eb30403b7f71de039fb8d'); +INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bd5834a724edf3686109eb057fc7482fc93e41af0d122ad91379b10f910491f'); +INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"1d643c0535f7ba4fbba228210326d0fb77f7b466b10d4d5cc78a05174d390ceb","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'e04a7299a53327a6c3a14d0fbdb22d012e5fead961dcee642d89e2f785d8f3d9'); +INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc884e318a5717aada0892f60538be22f114dfec282fc2df8173984061e8071'); +INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"6c1c239f03229a359abe3c3d211331e1bf7824d9c4b2b8de02c298908114c834","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'9e38eb02181a679e63ede2b33c71b47f374a818469f21c8579e85107efa159e4'); +INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be37430f88815825a5ee52c0f97d7081f451848fdf3f92f23f666e315792ca88'); +INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"86a3c5f4938ed3a0bba02afc2b865698f1cb4bb43ef2a24896974696a4f04209","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'c98617714bf9630d64c61b1ac207ef9dc4f89f151806773dc28c3563d6109db0'); +INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98bd0ac9ee3433035c4279df2da8a8e2bb6952105d78faf05b488b71ea8e915d'); +INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"f90278cd56f599f2e807d38dde752e23d2939e30f6b4897ac93970ecc4cebad3","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'55c32827009833454c8c6cb23019b2c00bbf104739cf08645c0d5af4604ea4c3'); +INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a7e3040ffd4f1d8632cce13241184ec9f348e62d3554402c60c5ac977cece8'); +INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"e3bbd196148ba388b79f3b0fd24d7ae1f549a4057700f135cd4f3326a37c32d2","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'547f92062690ac559a92b2962c7c930d80c5b3bd06751397a2dde4b1e3db7f50'); +INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce296971d53f20cf72af15dc6e1a3e4511b949eeed4052cd6a7a9838b5aea67'); +INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"8ea6c2dea9e02aa25e990caf29bfa2ee98be5ec80b0b74c23692694d5083a8b5","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'6c8bcfc41bca51fbac916fc3608ec28bbaa8f684d0c3088a034f3e87c997a07b'); +INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04b1a700ef8a0d05cf244ca20edfc62a6b5424d08f5d8bcd8c563f0f43e0eb85'); +INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"5173a71c7aaffe82e7a30b4159105488806d7f2353344e12e6f6f7f170093779","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'93f151ed30fc51ae8d10d72d49197a47e5b5b947fa34619bf78d3c9231d2948e'); +INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91b983b8b50ef83cb0cb41eb4efae76c083e94310c4ccf748ed7d9e263218dd8'); +INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"77e55b8d93be42c3fc2c5136752bd25ef24f761bf4efec15104c58d1a6437104","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'9ea2ed8b090bf989efd43c71ba85c497fd1dca2db2d79e64689c6819deae7ff0'); +INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52ad22bb56902c2b8a2c4f10fcb4ebd47a6771977801267627486600f7daa786'); +INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"fdb511ab148d010715e1c78ec6e501acc13aeb0ee9e4de003ff37419ce3986ad","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'f4b40c55d7dec4494eb7ed51eb9d3d00d9ad3d9a240e972724199a6267f0f2de'); +INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5bd9d84fa41437e720f8a3b0aa4711c4ccc72401d2b633195823bfb1e22451a7'); +INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"46d16acab176adccc1b04887b8983e5645ad6cf34240eb3a7204a617d7acc8e6","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'4c05a2a421618151efb3c310279a1ebdeff95549eaad025e978722b6ff0840f2'); +INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'194feccad93faa655ea1d4c641bc9b6d959d7ca2396a96b75d97db9c63d5558a'); +INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"1a15f4e691456863f652d66c0a4c3568efddc4c8c6ad2010b401e039d2e98f92","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'845f587b8579befe0c1c504ed93dffa7c7eae6807b255e4ade4df92eb8e897d1'); +INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ada109cc5f3b0e57720fde628de92383bf681afb5d9810dd8ddd2319d2e6f529'); +INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"dcc181114b7adcde925dbd30c49d8b826c40e1f396d00773ac5f2a32e23028c8","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'b43e58dde0385e41e08cf61cbd2ad64f553fc170d9a4435591e028feb03094f3'); +INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65c8519a2f00357d1c58d09d0cecf61ed0c691e405080e0f22b16cdb7136e783'); +INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"1a26916d5eeae2b70122c04e54d78c192fe3b606a4c9492616e1e472429c4539","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'fd41ccce8ddd3a46c41d01ec5178376c0f8ab70c4c359ad62e853bee78f7c43f'); +INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20e1c27ad10c558588ec5b9c14a7dd573a475ce71d9874f268dacaddc41e19ab'); +INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"b43f3164740df4163a44a9d36570a5ffde5d7f69bdec30a15bd219d1f541ffde","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'b7df44f3415ce5d9dc97293809c2009e26c313119204b488cb953f64f0ead78a'); +INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b402286ae3d052fe921756ee297999cb250e82b609a36e38d6732a024cfc71f3'); +INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5b9c1a6e1cd2d1570f2eaf1c55b28d59ceeb19f4d59f029116262154bf8f07f2","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'6795c54b3490ab4c3a4ff54a7013fe3a5ccd3c8d3420a064ea42048b38ac1206'); +INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4565c6ab6a02f11d25c7238d436396ab3ff2cb3f37ad4c0e39c563f2d920ac0b'); +INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"b28d5d83ec34453ea8e16b0175ab535aca7829737245f7e24f85105e51cd74a0","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'a6b5a7de8504854dcf4236119abfad050bdac0567449b5db1bd70c7fe09f9a9e'); +INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce209022752e3225fd7111481dc946a9eac68d199c2dfa063a115c978737760e'); +INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"207121e322a8ea334b1c356368809a6893f282fef2f000823b8f8eb5dfd761e5","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'28f39a705f825e8ae9e6392e07a8a471de08939b7e6fc52e30c3e7e6eac91002'); +INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7395be841f7ef9a161ac15b60a5e14f6aad4c3d3beca5cf68b4ce126905cbebd'); +INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"62b39e6b4d8d70f1f797f2f2d14424c13d66b7415f2877c31969124dddbf4636","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'ebac5c4b9e6f19bff6524096ee3d86a5aabc87647c51ccde18528bb6aefa1774'); +INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02ba9c856c7062ebf1fe3084be1b6b48d29a260067e17c4eca74f0cfca0c9370'); +INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"bb3c2f6a52bf3d3872705adfd982cc2beebe3071e3d9a9d4a14c12f8671b1976","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'f45b6f699b75b9113a71f149a347be2c82e5d1acb277de804c945428b5c8fe9d'); +INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bbd6d9723202915481f6b46704d13e54489d94ea9a7ff4c5b2844a2337659d9'); +INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"1c1efa294154464d85e0703b68d98ca6a75396eacd3b1357c480b13285678619","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'e0366e706970cc43b588de1e759a9051993a06c66dfa419443c6f290a2a5a672'); +INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54eb7ee9d7c46a2e6f6b7c0930be745950efd90913309d3cc538854a15af54e6'); +INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"491b5f288df71e893abc25a59e7e63515e81e3367a9da814ded0732c0904d9e3","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'15b958b7fbf246128f47a4b8e90cf0f75bc5827c205f28145d34b4e673a3ab2b'); +INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e840dd277e63bbf6b5f0706ec43acf274b38960f8119d28023a0a8d187a2773'); +INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"b3e396e2ca147a127b4301582ca4400a2a2effa0162455a61f71d4418e645b5d","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'4c64399a659949ea9ef00c447132d00f9e36ebbfe42923c27fd305aba378d0c9'); +INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21cad96b5687386bf75151c68d3350968764f63652c60a7c0d27eb2361339a5d'); +INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"bb065b98413060d3439f25a60770648893479bbbbd1bc9085e516d982435a099","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'f1b4adb87d61794fe53f2e368fe08dae31276fee2fbb0abf492feca00ccd8fa7'); +INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1e28e43b4f5b56259916e4079446dd992486c72d7f0fdeffef1a9e30006e4da'); +INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"99c5df9c5e8e4d3f4aba310a6f212cbf118cd641124ba527bb5a2aadb07597e7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'f23ac124ed30516ea88d8722c364606787b1184e0168d7bfb46d93fe0264d08d'); +INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6d2cf1f2e0c1893128ed25c72bd31a75aa0e016ef3f2cc7097774a87088a0e3'); +INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"b8b041f9b2548977f15fa4d1f712fceae6c3ba3eaae772dc18b914b100db4449","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'ca07a0e666f381216566b74460d18f745c5084d83bbfd1aa2f90183ff187915b'); +INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37c984697346adc5e7857350aa7a7c405c85bef3b0c148e4c1ec1be2860e331d'); +INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"a2757e43c013dda37c93c3c0fab278b1dc03acdbcc31927acdaa751d3706fcac","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'35682790c82095002b8059b836f1db54d4c1fa0ada9219dd5eb1c0e93c9acba2'); +INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'511941455d1b9f3884bcaead062596ec7a925bb60e2198e6ba28bd0e9ccb8310'); +INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"7f24a19b7ec87e8b53905f23071e0d192ce017522953d45a39ff83e15842c3bc","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'e5b8730ba34375745ca7d8cc133c9aade4c62a9ca2874d38a66355444a77ca1e'); +INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97ec372cc5b9f1683a88ee38c9465613dfd1fc4359077bf4093d4b470ba844a5'); +INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"4503ba7fafe4a1a4d9e0240a68090135a23dfff0dff0c7419b515411864e68d2","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'a3e9c61a169926c2c0abde5567e171b5a182d4574843a553f404914bd479b3ea'); +INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05bc37b9b7db988dc33563532bd01617cb9d87da8a88d39af811666e8f1e1114'); +INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"0d3d8780681ebb3dc5297771c50d6fb82fac06b3582bef507f9f1de86c1a65f6","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'42f6820e6d9b09ef2788446211bbfc318c0866da289a86a0824e05488e8822f3'); +INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20580a11f57acd2a7f0d27312795141077cde393a6a565e45d09d5a4959f5a66'); +INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"be7ed7a8dc64ff5fb882b36263461f4bf7b5facf1a8c305621304536fa25da2f","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'117f75d51eff860729bd7e6731f5297aed566f30075c8d8dae83f4a544b0d630'); +INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f725e66e9a6d45176bb0f853e909768845321a382d655f6f43df9965910ea3e1'); +INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"0ff6ad0012379c9a1ce73c965a45b8b7f6e1a828648fb02a5c71595d93648a0f","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'2dbcce4539e58a201ba965fb4c24260e02c48f3a40e1495c680bf270da779d37'); +INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25a56665aa9750ad678e6290da37bac1c0d36466003c5b53f9a4d440024a393'); +INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"871b67094616001449c50dadf17e9d9bc0527f1b5f6ab214be258ce49b4de70f","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'6cca3e1cf9f74c607ab1da18be7f53d57dddc3ab5443a32327f016d3fc3f2bda'); +INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6e0add3467c62ca8bab6e4ac6291ab255c30dabf61f15528b168f836551f85e'); +INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"227a0fb5037ca46066a7a4a9f4238b876c3a7a7511b1da1bd21fc238579e734b","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'79b0817d52315a460fc64d1a117bf251184906f25498825d7899321fca5c32fd'); +INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c799145e531f7070bae5cdacb4b72607b5b876868c1c7e5408d63e34f569bcc'); +INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"63f5989c5d185b463f4779f22931ffdf7a550518c6d23794a2e9ff7d523260fb","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'4b1a793358c4b1bfb49b095250bc487597e6e2541f1b92e2ce4c8162fb78ec09'); +INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73dcdc82745293422e199ee218292b22220fd4d1dad19c901f2f7e23f152451b'); +INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"80b7cea928c71d4ecbb1d70de5972de14178507e724c71cee62976a3f5cf0758","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'587a93c5a49bfdceff1a92969da2a191374b4d19f550b06359c7cf1880dc1c07'); +INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc0c6e534f0183ddf92a62d46a3235a27c0bfdbc444d9764b16ee656f0029a2d'); +INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0ebe5560cc598711691337122098b07edbffef959e208189cc9753c19f655150","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'ce1fa28c6dae26692db645d9cb1a29440a4a41440d820029f1fc9cf7b45185f4'); +INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b485113b5900fe0596ec087d1a7c7ec6c12cb04c7f81b61d8cde689c2beaf73'); +INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"cd4bd78246b63966bca183c5495874e897800a438bad9d34da0b6576cd9dce50","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'090571912821aef2ca3c80ca2ac6ed29d2023bb050f891b8b1aab9b465a48865'); +INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f72ae757ad04bf45cb904eb8822bc61c878e76390025124a309f5048ba9f5c6'); +INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"1dbbf0d31d53999e0f2e6e2f3a9ccc5ec88f35ef7cae7c683594686fbca9f9b2","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'39566245db768a897a19f5b8b9c75f516678542ff1c56bcba79a9f844b86408d'); +INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfe3779b9616005f024decefb465f8bccf5e2602ae2fb2f0b36d7a52ba1b7ece'); +INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"6226584925003cc6023db5e8a890fa3e56c9b80c0ce21092166192cac4bef3d6","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'61dcea8cdc2b39a00a665f2c02a758a00ab785024c06047a84d0a8cb070eb496'); +INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70da718bd7b2f44f3ef71b970a091b2c9fc277582892e9750a4722ff9fe114d5'); +INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"e6bdfbf25021f7d517c5aa851eba26c2662fbf799fa79a561afc737b13a727f6","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'6a3ca9b7b0b592760b53902247a453ee0d18f2183c5d959e2712b3383e860b68'); +INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0af4bc7a59c758d65743fe223bb122e445713f9c8c3e4e4071ddba41bd16fdad'); +INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"1a91d87f739bf05b9b1627d5d4f093b831d14c8f3bc1327ec4c5789e62382467","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'081387e26f66bac828a984d213e52432ae7a2f1614b6bd63031531b0f7099737'); +INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b6e683d24eac23435fd93d514483bbd65ee9a92a070f6a1d4a76697d7640f7'); +INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b0f71fd369d8eeb9d8d484644d5b3f1d0f713611745d5d221c0d2f8a3030a6a4","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'8df5b1b06e983842cbf6adae9c0ee62c0580f4ee515df08d0466e59d60944cfe'); +INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a43be1c7867c18b9f0774aadb7222ccd531499c58ee666f93f83c39085b26e4'); +INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"4216e7a44d8313a71312e19f567aecacf50344fe0523cd6d1cdaab58880af6aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'23b145266d79241ba4604b130e4170829f18309e87ddb076a4bb2c380bcdd0e0'); +INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e732d2b0d135a0ae2681a63363472dd11f1cd1107b1be7de75ce680e533c10'); +INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"09cd2a28e52a6080a7f748e11787bbc436e962626a21788faad93c804d16f73d","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'d9f18adf9497ceea3b524a37175d9b5727c94b28b2d63bce4fc357afe8566a1a'); +INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'933bc0cdae4e52fdac839cb1d6fbc47b382f89c62118234a450b910c8a62d903'); +INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"1b1866d85c27b2a451731384df263055c239992e1f6703f69877140c24766ac4","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'7417101d1bf7613f6e562132a14bcb60b291e37c164296f06caae0998ec6bd6b'); +INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a18a6fc591c87365f476ee41076fab71e59512d9cd6342471e86256ec8a1012'); +INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"a59114e4633dbdd789f7bc476771a526c66f27dc93cd51434f738354317670f8","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'7564cf786dcad8da630dc300cf6a4c551603ef511d37f6119dd57038718d6976'); +INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91a629e982e46ef359ff782da98eb3a271df5d19373b9674fccfa7a8af2eb8b2'); +INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"14d222aa04b12a79895268a1f789ba87e0c873a63db6bd69cae63a3743e2c9bf","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'e2bc5120285c36a4642391d43f4276c8fd36477996a5ee0a7745a107991544ba'); +INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1753d8dd3f64c932a16379f8af1a6f8090e0b61375c9f0eb0febd327f3ec292d'); +INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"903fe6f9d8448cf15c35c74479da0fb0357c250464760e52db4c172df87745b8","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'8510e02cb1820ee0ec2bea7f652a3d6f044e94f985b8b7729c81a6d4c4ad10e4'); +INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0448ae8e37b142b705d7ef0ab7468383f9c37eb6cbe307f568e936d04d296086'); +INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"a1ca84b43361dc3b3798b80fec7362664ab3d667ca15c36e46060010bb4b2971","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'aa3bc8ea07f2dd2edce37e194acbf9fe81ff759c64152746ea629ef40dcdc8b8'); +INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebc364eb2bf3e265679dbf3a2c7d817377847ee82c43097ee0a8191ece5d244e'); +INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"70a2eaf114b82807bf3ddffa14642743c84a6c74903f717bd03b2de8644df079","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'fd292142b82f55dd7b03168f12c85c69bdae599ff77439c1a2cbeead9cc0a7ce'); +INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'052099698436f3904f3acc72e2b3e8266ed19951b910e6568fbe08e5cc1133ec'); +INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"17ca7bb4bb2192258612f7f5b67eedbd673c9723c0911d1f39c02724e5d5c9d1","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'64a7d18578e5024fe7a2a6477b3cf7a4654564c750f9852ed67b2f672380f378'); +INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98095e994c7310221b65b34563c382168a5a0c8a230021c7d26d43a95fbecb99'); +INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"05dc4d0720bc385ef76146b5e494b9beaaa5bd7eae0a3daff1291fddb49977e0","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'8051e37e8d9d20b5e3915668ce8aba618c7dd68025a9690ff97afb6b7ddbd9b2'); +INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81705b0032ca7a23697815ed3b01337e594ba1f57235106abb15e313c5b58987'); +INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"bf2dfbbe2f5df7adcbe330c47d06ce163c9c24b92fefab3b148efe468c19ee5e","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'6dca408667afeffbf5875da1488ec92de431854125a87b0d228d74e655640c6e'); +INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a592b676a46a3f176ee35f572c1a2aee831db9f3b9f8ad9535b9efe180aa4d'); +INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"704f613bb8d7aa58c596b7a0c47ad054fda0906f9b99710299a2edeae5a2cd57","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'c14a3b8eda1b10cdac0abed866546277dd10e59ce9f9a25ab4bbe545c3f2c1b8'); +INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8d49b04f6588217dbe62d64fc250d4b985d251d482cd6b3541abb7cf90f02c1'); +INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"ea4b67d00adfa6bb03a45d24a66d5f819a7b82d6a6130a4f460aaaa3fec14d38","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'fefeaa89de64f6a7797dacdbee1c691b1f136306a5c9bd90743d3e89bcfee6a2'); +INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6494cd52fe491366da72d4d19301f067c36827d1cc6a3c4e7ebb3e349950d35'); +INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"0a9f6c9778c648679f0ddb6b9298f4a4e2ff100c358f8cfe2bf39ef2eb85f992","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'e8acf415cd49f15a328afd565cc4125939361c037744bec1783dc25e3b34cf89'); +INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5a0334758e2ee1efd1373eb4ac9d9f7cee44818c16a8757b1854ee907101c84'); +INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"e3cd480a6fdad1ebba53e69d26eb135204399e43caf04f631ceb9ec3864ab5c6","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'fdaf6e893404e671a790fc00f0e7c56f01268ba9d050e6a644e6eea5de2f6857'); +INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c571f07b16ce870417b1ca17d34db0e1edec0ab36c43d62e0924b7373c1a4479'); +INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"8a1ae74398ee5f23d07779fab9b5bd4af1964154a5c9edcba7b0c8cb5761b567","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'3bade58352fe5a27256978e4c89bf1f5617a638a57508fdfec81bce65a5ee8d6'); +INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4822ad98136f966f2fdcbe9c80b94bf872ae45cb898d5f212adca228c2f33239'); +INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"2f1a0fd5eb1187808ab27d2200a34b41b3b2d4fff2a84504a8f1cfcd1b4f72c5","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'9831f08a66435b186c0483d23961d9a63d29be75503246c811631599eac2b745'); +INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34e2397a4e6e0140287d736cc08ce109408c9b2aa51bc71a4da836095e76c42f'); +INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"7fa46a212048f01c47c4c13e2d4110c51cb0eb4c29202d57e1c8b9851040d410","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'01238e72d30b4437063074b3a0bb0126a33f76b446857d849fa88d05f45119f2'); +INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9221f6d71e86b0756c24f6cb8650c7c3002aa6eff87e5173645bed7776f32ac'); +INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"602e2eec89a19debbe9855f6ac55f33e4ba546c408409a06d311735d692bd36c","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'00e06f8949ec94a441c897d99b6a3c11dcb0a3df6335dd25d718bb8cebc50a8e'); +INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dddabbf93ae42b73677f6fad54a3c4ac050aa3163abcca0b75ff402a374e0d75'); +INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"3f23eb3d79259cf824a07d59caf637e06b131f4e56150597af1b961df5819a21","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'bc4fdc372eab5d4ec6a41e2ae355d4cc4bc2b068f44ab94f1f6c7315bf58b2df'); +INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b233384613acda1dcd4d0a670105b8f94571aa19564a08c29f049f1208749b1'); +INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"8ea11f2c55ad5ba433291de90b827f0d53bef495ec54d103ef667e2bda5a3f1d","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'5a93ebd8471a09880e4178670e1b87f27d6c4cd12e379383604da6362ccbacf7'); +INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afd4ba135717b9f40d6ccd8a85bc64612c31003eeb0ba21fe4112257c7c797d7'); +INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"b3b45dfd975fa5837dc9122290d1f12d506a74679d100d2aba51b819e5f2ca51","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'ad6b8423d5401e57b6f4c772b98df1d2cdde9d3ee69a19ec95ea48bd452af030'); +INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fd67c144cb98b2653e8493efae070d28108023e03bb3e1694f604cfd6a32164'); +INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"3a2242b5e590bfe1c8c66fbd1a0f274c7c62280f49ea7bf71a99bc20ab3f4bae","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'a30e4cae4fe0ad8d929e6ebcdc93c6d8dc4a2244817fb0934f00daac215694e3'); +INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7af8d595587d10c5ff6d4aaa23680cee70b6dd695779708781b9c0a6866ec829'); +INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"ebd02c19ae1711cc465be2051dc400b7595f8b0919d1ead4feccc8681186c982","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'66cde998c8ed074500d12584f957be6d396201ee369ed45af509f647596ad8b2'); +INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c81f5140ea60e18a4d7b88e8de021abb81a864797c34ecb997e5aa664e0bbb58'); +INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"bd95449028dedb25d8a44d36f539ed4c14f97b6502071d895c988621eca22d37","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'ced3f7b80493e294fdef076386fa3fc21883127a3d9269c5e6a095f9f5fdca68'); +INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96ca92ea8582a8e0aac64f750204967903f6b19d8a1eafb85dbb5ceded735a6e'); +INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"acdd0759b0e8546e5a2fbafc68b56691391060a2a53309cfb9132d358bb08b34","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'eb08baaf207fe995c0a662cc6746cb6d9bf3fd700c8c17ef3020ffdab4297d71'); +INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a3a5e2d6352ef6afb274ea622b38416e073d12446282c10504aab616bbd99c5'); +INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"e4597ff8f8006af5e255ab9aa7cb6fb6aacbb90e74a7198513fbc86527892a74","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'5ad7e29efc4342381ed4e14cf87d805c321c5eba63fba5d556e6d906ee59bfcf'); +INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9a569091994fe3c1e30356948c70a0c86748f9bb3e13fc08fe9e871b9ee106b'); +INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"9bfa434075afcb937147efaad0f04d5addddc75ad73567a1aa6128bfbe63acf2","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'8ce1ba84eb0b3b12beae2e7422eabf828699f5fc274263808b4b415787809fbd'); +INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f00dbbf9e89851ca4ef6be00dffb98597bcae19ec13f5bb4f945bfd143285bd3'); +INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"2ef74ed5978b8f26e4d814aa11b0c32d4a3ab826894801a2205dfd00b2d3fab4","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'4e1021d543e414bc20ac80efbece5fc64743e4c5b962d04b7bacb18116ea40e2'); +INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c46f620a374238e29ac21749fe3160f9cd68115cb26fb050c601200f40da2567'); +INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"38a5abb4803282e3e9e294c952108478075b45473ab1e1af043c429b52c309bc","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'a09f58432640a49fc9b1ab1a20b27de4406fd08b3cd3d3880121ede7a9a9e6ef'); +INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67aad9066ada1ebd965e7459a4ce801c145947a0812a81d8d30234fd88cffaff'); +INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"972be42a2281ec824f9edafa2f0c665056144dc02ba176fd6817569881a4546f","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'25065085e332b8b2599d271c137cdfc9626ce5ffe7dd9b9ad5ef412cd9b8cb36'); +INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c56833a237d067f1ca31b95837740f80c2ad7730e807f44906326a04691da1a'); +INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"9de64cc9b55c4ebe1664a4d65206107080b5801b4054f3e8b9372e42d2799883","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'49499082d3a596c926b0a6ce96ed2dcacc31422a755193212f12e40284e89980'); +INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8a2951ab754a1bd8fbfccb033d09ae140c52dba58af4019b30d96d06a9e5882'); +INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"74941f67302f5d7fae43ce88a2c0c0f423f57231bbbcef2934046fba436e32ac","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'e9c9a9792a8ec9ae96aeebb739e06890819ec5ab6cd159e654144b84ed72f6ff'); +INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5578a5c81d495974ba123c4a10adde7c015283f01bc179739693509fa7dba288'); +INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"ca4ef14c5b4aee0c34d4be4f9aaefddc67525be79d886ce97c3be3d7fc753202","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'1a565fe894c74d0eb8aa68ec6bb9b16ad1b5ada5afbe7511b538522e95cd03f7'); +INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eb6a049b0cb4220c38f356781b293735965e292e17003031eac6869dc0fc2c4'); +INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"451e321a9ec4cafd72511fb2e81b4afaec526883f5d5462568feb00ee6b6f54a","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'d8980739a7e973575a9411fd06c4543a9a5a43322d1b23d766a6f87f188d2845'); +INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e12725d34ba4a73f7c03ae582339af480e28cf6499605d963db91e53517ca92'); +INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"f286cf3d2507431fa7f41cbe68bee9076b135ef6d3dde65957c8b491b619759f","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'68037f440c329fa58800f6a106936a5ef6ba7e9e873b2b7bdf3991dc3371ab3c'); +INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40188af66ec8be7dc94c0d7f71962c3552a30de0fc4bdd11d8ba4aba0bb8eb85'); +INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"a6825310b6033063eaa0e1bd23e934a78b8a048ced2e64da667f2f7f6cd1ef8d","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'a4c84ce92ff814b9ee59c595c6c4c1929c51292a3839e19564056aab8f152c84'); +INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e20f99e63a7940677a0b8231d0da4c73b92af214a805dae7e95748dd78965c7'); +INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"c2d7c5890fce32a1fe5a145a74d7a13599d0eaff3e4930a04e15accb7df5107e","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'04de0f1e3278e73a7f33eed5968286e633c545099ca0aa04fad3bbeca613ec73'); +INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1920c08215d01884f71241f2c3471bcbbff7cb5a9838e12711bd153101c667e'); +INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"d79bfdf35e2029db2912e55e196cd05d9f9e21b4cfc88bf19bfebd1ff1dcf258","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'7e063ce6cbb3af29eb4597d7617cc8365522ccc70b35c21e10b5bcd83a70d554'); +INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee666d625b4a291c2c10d8d8e74caf5dd5c4825ae1e50f06ae74db46514c5a79'); +INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"bcd50959f6aea7f38eb0d978759cbe446ad11ddbcf4dc9fa2cb9c0a61d0f04fd","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'5597296d8979dca77ba04973df70f87c5e547173ed8ff4adc6a4252a319dfdb0'); +INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65f46c37a1cd5cf8b7a1883d3e598f3a44e2f8a34e16e5dac8b22cd73c679c9a'); +INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"f5335d0eba37879f70149024af34ecd2ccd0774b8248ba76d4450c457bea4c65","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'d0a1a37b9d3cadaf1e5eb77cabbf73659b5c3798e0f8916546c38719c432657d'); +INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8862366c8f8489509d5be49821715197b378c3e774a43d6fd9a0fc14c850b9e5'); +INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"749e8e1ef89cc36192d47bd6e281de10c07262edec08a171c7b3ef25c85a4c0f","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'05edb5be4b62c93e52c7b36bb2639098a347c63c46f10e1c92fd9ed1be1d98e3'); +INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2175b4ba2b9b00bd935575b4800d5d0c1f388a74af412521be8837eca650d0c6'); +INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"61505aa75dd9f1d415d6a128a15490203ae8491019011ae89efc2a5e94fe4229","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'b96e03e5262f59cff5011a3775de1981d41e5f9bdfc966b5dd10fcefbc98fa8d'); +INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d0d6e5431aa9d603c490cc83281566681aca7ec80694ccba60ef0bd5a50705'); +INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"5acb6503fa04016ca136d14040e387c1f6e902b5d8ad2edb1669060557340450","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'2e0904eafc00b75f8a089a8389c54509964634ba9e63eecda8691b547ab9a6bb'); +INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2a047aeb41f4e3a7cdcefdec4604063c03757ddd67600bf7c92919ce0fd77c7'); +INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"ca465a86e50ddc088eb1175e62c1f04091486744c8881ec9d60da3a7ab5a0110","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'99d7ac3f9c516c0baff5e248b588501b5bf182152f995a534ab33d83340fdd74'); +INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13342c076220992f3ce3cb90d5fd81d396bc56c2d16b570b8d2034dd217faa4f'); +INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"6964960cce011255d5bfdcf7f0da25c15e4e8663bdb02a451dcfd5a61877b872","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'72c9f9027cbd091994046d74b25cbd93f7050744669aff6b358471c3c8d12e11'); +INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'774c95c5b7f84a80a0bbaca56ac6991b338a24260e074ccbfa98673016af6124'); +INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"fb852bc84c9b46e84fc2c87d586bf9635048133748cedc660f58e47c696277a2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'93bc96b74c1479fd2ba9eac2610dcc7e70f650c61904ed0880d02cf640b2cf80'); +INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca411d886c835df96f326f05de649f04e249fd73987380da4921d42f1df49ea8'); +INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"645155402a9c1d9db5072a7a80ef1cb49677b5fc2e01df140bb77558ab906b1f","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'58715fd16d6887084bfbe5b807d58459af541f5c581758a0b3d4368223444dd0'); +INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d5cdde1df06cdaaced217a9c4d316a8c7c3d53341d7ee749afa0d39b2cba946'); +INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"118bbf5fd22235284065ac080b83b62c52394fb00606561206078760ed177d01","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'7ee5725bb5bd2358928ca186e11c9d494d06939e8142a5b051ff510e02e242d5'); +INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1aff8f15c607dfcd49b8ae4c7bba4d096e5224e5bdefe1d214f187b00d4d1c37'); +INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"83ac6e20bf52b01b4a190941d32817f996cdec4ac1ca40fa618aa9e078308657","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'c9b941b82ad0303e6f7af1367393355cff61d68204198ab59b1f84038608f72e'); +INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79704cf6d2d31f6687a373114d19019b09269ebf63df2ec7b4291901a984a54d'); +INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"a7afb7efb1644f934079a47d6d251ad42f7b500fd8a45508823ed8c7ad327c75","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'3320d025578acf491080052d30d41ad8c8e5ce69f7371983e1a1d631959a2279'); +INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb77ea43064f376e8b964edcc3857eeecf9acc3b2192532f6b6213258d402524'); +INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"396c7083b5d564073a6169d9e2e2d639558840d6a50221c54f14d274d4e54b79","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'0ffc35b556c56b498bee8c586bfc835585eba3f51e7126995fb18fd007cb10c4'); +INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4df559e56f151da68328a4810136381cf1ddbd72e801d98b61b25c7a6dc4196d'); +INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"7e073c12478e8fefd23ba91cba596799a2c9eb0724026c4462ae2ec005fe26a7","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'7f0317a86d261e346911d63d8465fc42e73a7da0ff86495a6eac3cb8724891c1'); +INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d91509b341e674d47edbde60b1fc22991e1502611bb80facaca5628ac9426bb2'); +INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"201432540cebdf4801747daf796a88d0f71d9f49b316a408df816c57d231745b","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'0eef7ba10e0c1d9438d2e134e4f23caca26ccc6e771825d7ba7576b48524b129'); +INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afdf83aa677f57cbe12e61335f09c3fb7d5eea171d43fde20fe09083252e950d'); +INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"d56071edd16ca7435f84f67b48368d1edcb2b80c9dab11165396c758ede7b13d","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'47ad7282748978bd99c037b97827eb312f6948d5c2cb8ec4c58178d36b9af1b8'); +INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55a33f267492a5384cbc2796106d03245075b360d9352fec63935babdf49dd20'); +INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"0a84100f99e23003a51c60f5c3cfe4769720ec02a07226e34d915853c77959b3","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'f06958d4dc70938e664f71bbaa9fa5f65542847d3bc130a8f2b42e16f90e38c7'); +INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bf1dbccc84b63275341419f00e6e05d931278391183cc05bf51cd9f656d1a95'); +INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"345ba2d0ca4141303aa411f71d2293d696360b52bb08a5eea41ecc1cfa383d9a","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'e06fecc3e2a4ec04f43d38020224022a179e75f98ac936a4d63972846151fc97'); +INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da95e4ea1fc6edb977b9de0139b2dc543c4e58dcb9b536ff6c0eaa552f22e677'); +INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"ac6b6a32d36613e493c5dd5d7ce4ddec3b7f49f775fbad9d2c17f9d985aeb695","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'aa184548997f00d82f3dd3122e5818828c29c3cc9c65f7b43b9df48e3bedfc6a'); +INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeaa60319f9ba666197eb7b62f95b8da4850f86907bc129eff58639216e68e1e'); +INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"11becd16c2eaf0d19477993740e4596a0c819f47c1805782bbd762785df8ead0","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'76f946a7d0e5dd775d5b5b2e46849b94a0fb8b4a5f4a2ade53dba71785dab8c7'); +INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c48e2545ff01b08653266e25ba77ed3cd362b0a01ccaa490d0f0e97c68ec262c'); +INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"63cc4939225620019be852d1ee9ed0229d540afc95d372f4b1c8f439ab326ac6","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'aff33d97c98d41213e43f4e29a660d2115b7383b2513c09874e0cc8026eeefdf'); +INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'221c54e3d28ec973edbfa7f5c8b5cc359177a5f52af4161d252d9fa7f878cc0e'); +INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"f1353d2bfb55bd7e7c000dc99e000f9dd45386275056abca975d1dfda8184e9c","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'665daf00679568f1627099ba62a5b5767ba6ace8f9d6eb067ffb7be9266d4e3d'); +INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fcb89f7f6f7dfc703ae329edec4eaab4d66e25f4b1fcc9d6ae5b3986437ef1d'); +INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"0b368d89a1f5f590a966664fda7045ea64b5b9696764ef96559c347a4ad31366","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'6a1f094dae876f2f6076fc27b57c113ccea894a52e1438021824f54c4b3cf9b9'); +INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'222f18e83fde760ebe00936fd26a2f5c3aa2adc0f2a4380fd1b07861840b50fb'); +INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"a55fb3349874edf6d6226f37686b67352269830f341f7072658be8db77c444dc","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'600be87bc4df3737a707f57a52de870954d645a81a594a3eb4d5a8a7eaf17090'); +INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45c1b0963b8a9b18d51b05f59b9606dbab4f8494071cbae56036a60e3931200'); +INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"ed148d7f54cfd41e18b4e98fa7961fe4134e6ef0ee2f28f7086fbf9d622ba38c","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'8115118305403cb82a5f1a50942b1c4e5f443907c3957e6fa878f01331f96028'); +INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'249c8bc909469c6e47bdd69f656e66970012a6de51e87f2106318181b2d02eda'); +INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"2ccc9b9fda13062e1a95ace3d497631de65c4a4dbb411514ca978ebdada87a44","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'1498976a55a3fcdf603eaaad1cfd07a2cc0b7974a9844715ee1bfcd141f9b039'); +INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4219b2234c5d019b9bbd88f7d98016baafa56bc04630b54370b843e7b4f236c'); +INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"e19ebe3489ddfe232fb894ea071de5807ad168041b12c8b9524157e183b93bee","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'385cc6eee0f36444ce7ba7c88c69b8ae2ee4a4d06d08466f593ee61ee8aafc55'); +INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb0679e7af48c48995bdbaec54c26a3408049ca2b2c60f253d557472793352ac'); +INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"84943d04f57bce339e4e0a8895c1abd85c3c7693415b4234fcc51cb53292a2c4","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'6118b695316a09aa485e3a7a732318c62716e8122977cd69c38594c3f9a80db6'); +INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9e6c72bb35ec275cff0fc3e233a11b6ec45f50dfce241d896f9f0a0acd541c9'); +INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"b54c5d92678ced83cc77a692bbdf87b6b1520b2e7d2292e6d506de26d6762a8d","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'6f8e53ba63ea2cfbde174b7b4aab43511abfc41084cd7d46c0a519a2f1562976'); +INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0c6d12bfb615086351526ab3d0759e8c1bb069c341a2bf9e3419c701f06f3ed'); +INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"f18aa1825f300370eddc560022b562eed9e2f2fa67261d4eb39c0e6ad39f7e98","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'ad25e9a2a14703af758fd083254bb2cd1f5a6686c05feb924a46a81c1bba7a6a'); +INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a0f9d7e264b2e5a27af285af8f4c8974ea1aef6332d3aab68948976239b965d'); +INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"0e7a9cc07d63602980e08be67b7c268ffcdc0bf8758e4d621c2eb9eed02f3ee4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'c581dda07f0e935adc46975e703e99dee3ac05cdfd6bc25960d17c962faa22f7'); +INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07cf930038abe05df1b8469d5eec98a1679682da3d3cb7755043cd3910d49cc8'); +INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"c3edbd9bc44ce600ed5cf87d21eca48b969a056a47513f83622afff100684227","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'2a7a375b1a4bb9f866a3fd0fc2a051bf748281a4b78e7cdf59657980a4171027'); +INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'739a1b5d9fadf4a6be75bc8f7624bf698be8f4d046bd0adc8f21e6b8dcbf9a18'); +INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"e1095b1d5c9db02bfc8e82742b97d57f09e1be6179398b93c0cd6234200a8f97","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'6990bca05dd0935ebb81dd1a220114ab32d66051c85f8f3ae360c87f47a039da'); +INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a0038a9bcb3b1c20a0bd52e37e32956594450bedc82efb6c525776ea32407ff'); +INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"0f8534dc0e8ea36fffe4b0ee27959e1c8b992b72c3d31754b30070657caf560d","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'d176cca98a39a7a04b8a9937a448cb50be4078a661145e888d19c454801c4fff'); +INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3430b5afbb60ce4655b816d167c222dc9a4d2001ed115929763bc8e7062216b'); +INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"a65a9f1aa16906294b9507fe9e59819972e5b06e525090a47327d0bb4051dddf","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'35a8cc5a7e28946966d3f490697d8885a9b5988d7ec29c9ca72ac2f081f830b9'); +INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd8ff5daab1b5457fa08fb8e3933620bea7bd9596f079d6dba560b0f0cb9fc87'); +INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"dbd9fc7e93de1fba334322a6cbc9561e6f5beac7f820163ee7b2e4f6ddd2ed0f","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'420843921666bbdee55605804e658717c8462c85607af507dabd54d33fcef727'); +INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24277bdc6a856208fbba4f319fe3fe58fed5cd0b1e567b89c924b078b441e0ef'); +INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"5017e9668d4943900f0621cf4baa5debf6a0d0475a28264f318874c840b92ec5","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'f1eb15ef84670581aa49c9898e0c8b148b169a72952dfd6d7250e73c048261f3'); +INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43007698ed546fb805833524589a4929486ffcebc2b23a5151b59d9192ebbb18'); +INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"daaff37ce0afe5b219d2aa5c602dcb566495296cee4ff92dd2e6cb14862c3f77","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'def5dc740e9c5d75d46bd115700731229182315466bcf0cb9ccf0a9c80ce5d4b'); +INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b87eba54863022d1a33cea974467d7cd4cd7642c2de5787deb1676a973778ba'); +INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"7b0a102af30e50d88209e489135fbc31bfafc0912a7f6f1f473d942a128b26f5","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'c442cd2203f99bef4a5bf09f4ab0d167f116ebcb5ff4dc2f82d205cb8030a6b9'); +INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ea697c74b4615ad97aa86a736ed5540cf7cb03252e15517f1471555a9f1d60'); +INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"7a5a936f50cb5256dd0534c1e77df3db05a8e7faae555eb63175028b04900c53","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'936daedcd6c8f822542de3843ec7d9c70ea89163ed92fa4926cb854ae590341e'); +INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'695c7241887597488910b7627ec986eb4074f449566df0bc8365b70c7461194b'); +INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"594a9da9719395f3047bb674291be1fba33387255fd786a78b8b5f3d4812cadd","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'15173d48adf15a6cb0742c4f8f754fb45c8312c7aaafdf8dd8eb9c45a338a1b1'); +INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae9871ce96aab6be5719ca38c2660c5e0a05b80196f9c8f41e6b75d8e102efc8'); +INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"3f2f94fce6f599a938a2f6836325792e966a9231f068b02b3f9f86ec39ae8f78","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'cfe06901d3cfb1476dc73800033716adc662e9e2c6a5b38241a14d0a77bf73e8'); +INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2179e256ee179815d43d0253c90efad60ba68b3a29979b58d3aadbe8f93404e8'); +INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"9fec124cf1874829d665c52b7908172931db930b9f1107b22e7dc207e4fe4f75","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'b87b7bce9a7f4908acfe01a4580becc1853761e1597548d371a4819eb6a173ab'); +INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66801dfb120569918a0af2e7810136753f17c407d278b7c48e7b6f1c0c8defba'); +INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"89fc38309558e95e329cd0c37be365c2ddfb220ec4e9752c796a59b29eb1fe16","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'588758edb85aac19db5d0ac904c07e43e7fb50d8ac88576325e32c7a8590a938'); +INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2c99acec0c746fb33558ed01522d765578fe7d07692684d8a67372b9212e20b'); +INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"5a965a909144f69034ae601a953233ea50c96ba3bc9893d80a035aaabf8fb073","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'c0862d5156a8817c70d0be8e0e2210a09e89a0ad1175f632121c48c7d0593f73'); +INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07aa1c5358a2446555adfebea6bb1a9aecf2205bfa62077aca193cbdf5b6a33a'); +INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"304da7fb06c7f457c1279d9fbc79f6ecaeb3d0c360b3219ed91f19a297fa6b1d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'b28b158faadc54c835f173c91c5db050d77e1ff22260209700cad614986149a1'); +INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'101b8e5fd147af0a3830cf3865a9e7f7a1263ea3746921bd7b7dc08eff29ee27'); +INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"617f923929b67113bb2d1b8ca3905e9a90786270168dcf1c00d8e0ada7639f85","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'3543121f5256889222e02ce5125e952c9f244d5a331b374b6a07833659bc3684'); +INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'caae02a310f293913d55c06f468aca138cfb0bac151298952ac1f3610ef4321f'); +INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8764bfb0a28a63e3a96005cd97a4b26c208a36c2d2130aa112f519abfdb74611","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'294f6cc9ca50f8f78f7cb6ad46abf2c3ca81e709f64df6fb2f09dd4d888439b2'); +INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84e673a01c1d41d5dda1bc01b36bb7fc7e4c3bf0a713dd85227cd57b5c76e7a8'); +INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"1555425483379c0a0c4a62e8a5aefc503f17ac963a1cc2e0a5cf1317b896edf2","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'c6f77b7a17c050780da9ffdf6b500581966d03f23e2195822f9b2a4d96cbd729'); +INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3aa7b5cd88ebf2dea8c5e61768fb5e70a9601eaa3a5b3192860005e540a451e'); +INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"f7629407efc886c4d936a6d1f183bdda9bd482139796a6af3ab04039a964bd34","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'d2fa60d97f0473c64d4412e091f19056ba27e109dad7f9c7abbf3733281a2ec0'); +INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62aff0aff679fad6cd4057e371b4baa77fa3e15e0aa1a409e779aeb3876014c3'); +INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"2f16cbe92aa4c25128349852f58a5bb28e801e4ddb111feaef9929a806cf9b19","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'a6fca78c68d34aaedeaea980b730f9eeff7d887a3e9863e33d2c7e7175cfc75a'); +INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51cc36a7aad40df71e35657ca7662543f93f1dbab6678847c748436b6c5cbb7b'); +INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"0b793d5c93ed36b125fdd7aa4356d7c2aa8aba3f44dc616fd63ec51facce458d","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'37ded11e6d064db65828161f3cc7c028f84740275205d25a22aae24fb3597901'); +INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'428b2f69ac8bbde2cd4b7a51c5c7fcff6997ceb45e3ff6b317d44e66641084f1'); +INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"754529abae572ead9f74543fea1e808d3f630de9e99bf15d7d78b95501b0d3f0","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'83c8ac49b8de6b31513c24356df2037382608bbafff10c7f3571742a4c1cb8d9'); +INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2bf2724327de5b9123d1ff44e9f7cdda1d1977a42702af258750d1ea42c06e2'); +INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"a0d0aa47f11e1432b40b8b3e3ef793481fa24efa97a483929e1f809f0e52fbc5","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'f05c33879ef466c4a5f3c4fc193c25b7485ac30e3350aff37fa9c73c981900db'); +INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ddada529ba270e6219c2af79f87b178b8f5917b93ba6ce05745d7f39676d7aa'); +INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"5791624225d7aa4622a80742dc314327fc075d1445dcba1060f2cfd5b2b03d54","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'e9ca6c12875f9404b948cf53d29c59a6cd40f9431f74d3356fa489a9e180ba4e'); +INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43ac985ac53d84f6bddfaf1461fd804ac89d9bddef2323a54e7b4448c956d136'); +INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"94a53c9eced370c60ce4f09fe5545615df94127edfb50b0a966337d92d9e0217","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'9704151285f08947f446085479c2176d545611ad95e068292b9ff11e5b663a15'); +INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f8b19e0fd8bc4b32949950df9eb53246a5042a0b12dd3a6863e72cf0c0037ae'); +INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f7cc347cafe818354df7eb1fd266c5c10129bda260964befb0940668968bb71f","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'e37e4862b3d89b9824b35caaf82323c3362f22b96bb7995af05d476487d2a27f'); +INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa1c4d13f72854ac929e60955e503bf151782bc4deb575b92069fd9e0c7ec9a3'); +INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"fc3125694d01377c7be75449f6534803649c1df7a73562bc0f7844800bccd4c2","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'14b2227897db62660e3bd64ee8c9986342098f00c77880c52cc1fac159ee45ad'); +INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8fc9d750301b8e5fe9b415a03cca6a70c3584af0edfbe50a116ce68f4d7209e'); +INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"11f0d93c68a55dfc34142a5bfe77e6a2b58bc431c5e64144d666f40c6091eb66","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'b68cf07e38a5c04e8501f9003fdd42d15847ff81dc01b2265a29a0044570b401'); +INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86fb10b3b75a1f80f41f12c11c2a73fb915c4a9022e70e957617df89cd350591'); +INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"7eecf7d46596d509703208dabbf2f9b845c0c911cbfda01ddb6c6487489ae6e9","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'c3817de4a47c6f02340d9e233561bc0921a317824a58d719d295d59839422118'); +INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1d006d145ec7d5ce3f083ed2498a46b559a59dca3d7fd4f3a9c1153ab5f649e'); +INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"fca4e928b9e31edc79e6204dd97143a1222cebb52a8302c2af0b760eb07262a0","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'90de81d4d8fd3839582dfccca7b7ce14e0bf34282896098565c07a23454e7ae9'); +INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16ecf7ba9e23c1b4aea99e6a22b838695bc067fbb1c7ff11bc6e94017fe45c8'); +INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"1ebf589126d7c3650ef96d7920e02c91e5c1639f5644f6e929cb5b913438b961","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'4a86f36ac1cd9bda1dc1bf344504cfe963c26e1fdc8e326e22292a539aa74215'); +INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a40a849ca3ece5bf5d9f098136b173eff9a61742e7363879f416e3cf1849767'); +INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"6413b67db70fbda01d6da0e8c0ed6b1246990022908360d595d9e10d568abb75","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'d08cc98b6ed42e788821fceb7d4fc9f6783b3e880e565b4107fcdfd634b2f567'); +INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e5e084fc4e6667586cdddd30aa7eab8327125d33c6d480f3a78e4266bd38323'); +INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"6e3e3f2f2520d0a422cc1de726b000f3c275896e92d8e393336e7157131da13f","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'701721f0be1b0bfd07313fc401e8d00087d0343bfd45bdd67edad2e78fd9fbde'); +INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1de7c7635bc3fdb6081bede5511a69f0970cb856e3ae8e7f332bda72aed3e0c'); +INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"96240c5e7d5ea4720465241516edc160cffda1e4b03642efe91a956523d6e7f3","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'d7d58f24a9d736357846d9453122afcbf1d0f2fc46875c59b740fe8ffd13ac04'); +INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ee791617fb885ccac306474b26e94eab19333fedd00cbbb66a8b2ddf5b218b6'); +INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"e8d77f96b84a5ff418169c89bfc8ae06e26adfd3b308d30d2a59b7780f83a914","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'be18c1468442730cd8bc44819dd4e7b590380551d241b4c4f9d72de0b28b13bb'); +INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'323e82c78dc71f58ab8c9f6668209f760095f007afeb45c4ad8f380800b2d1dc'); +INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"04cc569846f1eb8b2caaeeaf7fcafe41a7b982f38cf62cc613d0e8456e65ddca","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'a9693ccbbe1be02719f93576cd16288a8d9e274c686dbe94a7b87d193d6b31d6'); +INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17a91ef33c3e1d1c60fd10a3b2b10f636e578e127adcef05146b689fbd508a22'); +INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"08e40796937428c37e6964f11c5d7682269fa1630fd62dcf007b9e6ae22c8e31","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'cdd374e424151bb9eecc53eca5ae94b4888826ba598e206b1c8fc9e2c089957f'); +INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'361c6b3e511bb8edeb1a81f737b5a163fe09585b5aaf5eb0efa3d1f0758ca8f3'); +INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"4f82d801e43a8e43fdd770187836fcebb1e7d6d14cd65c08f2ab8bb1c3ef34f5","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'ea1e86d96df393f969daf94c2ed25f957129b61dd7646751a8c1be38a532847e'); +INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3be69ea84b6c0c7eb052908faeed36eea53771ac85c4825fc4567e2bc7ceb919'); +INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"1270f076a030e88c07c580a8f223f0c786bb6f78fd9ab2db65c1fbee2296d890","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'d81472a5791c17b36758388086f0115d3a21b44a8930079d407163dc8e11c01b'); +INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9917ae6e558a49db60d30e01696624b3403a7d5d4262b2db59bb78dbbfb01855'); +INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"4bf8b4e84a652cfb2c826eba6f7eacc48c6b940d86da6c29073a8f8e7ef2c012","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'86d969d1dc22f8176aafd82bf2c9602d3f3fc1553facd875294bc2e3ac50b897'); +INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8322196ed305a9633d4571027aaec1b4f96860394f21c0f7f878811cb4f0953d'); +INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"0b20a3acdcd428d96b478bf4f9daa5119f500de8730c43ef3c919deb184e1fb4","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'b8f49bf05b3d535d5680bd648223ef6d597155fa23bc0ebefdb687c6cb415fe7'); +INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a52c84f240dd0357b5d3df316756b1d89767288aeb9ed6a93eb55b591dec47d'); +INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"f93ca9a322ff2f50a2adce822d884159ae357a22a071b704d6b9a4b8478008e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'e895b5ca6e469fe573f49372b2ecaea869bd63dd045e21df5b3c0978360e6809'); +INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35a71f4083e895f0bf954d23a32346bafce64c1cdff06deffcf9c43b73cb05a0'); +INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"119a456461fa185c66be06641ac1b47d8a7801a5bcd81c27415477b5a934b175","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'2ec533766ef842dd263024d28cc1b98fc4b834093b419e70b0167633125f9b75'); +INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d02a5a82c995459d2d5bedb396902ed3d76f99e4d629a5606e7b4f5543c9b89'); +INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"d4046fd8ce42da285dcad4e93aac3675f65a3900994daae901ef7e4595b33460","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'a8b75639c643a821d659f13e3cb48bcc59c003819bb3c055f06ef131de2521b9'); +INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'538444ba29018fddb96bdbe393f6a08c8d21b38f06a7f6f299a3e58c13ff9114'); +INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":" bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1 2 "}',0,'NEW_TRANSACTION',NULL,'ab12876e044c8e49080eb32948ac149ab6fbfb6d288e2e0fab4847114b7c5561'); +INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','01d5057be7016081607a6d4f47fef01378b81433216e432704219bae854fceef'); +INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','e069fdbf249bfb7a5d121977d68935c103ff00f29ea922bf7b2c31bfad8faef1'); +INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','c7420bb74993320122216f02cd0aa8360d700304ee93ec9fd7da708598fdaaff'); +INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','144c4f73d383b063c5c030534df35862a3222af47719fcd730f031294c60407a'); +INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"dafa975ea960b5ff8993bf94a2b5cd2380707553069cb1f2bd39929b7eac52b2","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'a67c819aad054e9214a1b6d8e7f65f95aa70a5151d85b4335102fac83fcaf36a'); +INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'133be32317ab82782b6c8f541336238cc13d3904937d972a5f6ad349a75e18e7'); +INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":" 2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1 2 "}',0,'NEW_TRANSACTION',NULL,'5343f6497d3d39a1000c6e26677c6d8100500c3747388943eece38e0cdba96d0'); +INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','6b02bd8d81763190556eb30370ab618abf3fd33f9f818f4597d4d490479c5926'); +INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','20698a8f0b16905cf258a7905e327be77c02ab2f441cab9f46c38f243ec63227'); +INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','83eb2b519582ae5b522b3b924b45ca00842d9e735a2b77e3a72b41ebabf42a45'); +INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','7c9c4fed44e6abdeee02e65573d44ff20f52bffe0561a6f73f6b7aadc4526bc7'); +INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"776dae0044c258361742e0f1a7162b2e9b9f402f8fe6b32be4da456097f4f786","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'272511a05aa897c2d9bf85d5ab6e9c3185f96986c62335f8997fc21473d56802'); +INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61cb6d9d67e3ae9a274cc18a5cb7aee918302076b09cc71a72ca471111e431ef'); +INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"0731f2f207f1b5ae8d0fdf65d57aa1dce9a8942637f1346a6ec262d537de0b51","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'f041120710b11b2d1eae1af21011e02508d6b060c2a47b300c2ade60059d9e3f'); +INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b446db0bad426682fae906a552a142710270980ebd237c51a34ffde94d6378e'); +INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"03827b51eae1f0278c778630cacf8761bce9037324c4b31afb41afd7fbcbba72","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'10a92416bb8ef6cc9f40e9fa26745221d4e17a505ee3871d951bc7169dbde3e9'); +INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90940b48ce2dc1ef67dcaac49feb82dece47aabd68b54de6229e5ad2a099879c'); +INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"48d1b05ef30de8f106bfe57157be7997877ff3e23ec6b17c3a4f18e04f2f2325","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'a7d26b7d890477c6d29d024d30f7b11983da00ca99d1ffe5c06fca2eb800db3e'); +INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46abd42d5111a743c4a841987590c68ad080ffb28e4322449ba74860b6141a3f'); +INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":" 6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0 2 "}',0,'NEW_TRANSACTION',NULL,'e227724ad5c81b8938c5649eab47db47e27815432377c96d9e70e39b03636953'); +INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','3ecb22bbdb77728ac5b7d0008d8af4542c5636ec2ac608c904a15b2a110d9e41'); +INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','a50a06261666786dad0b0e5e624a33eda5b92359e1aa500159be20f7b7be649a'); +INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"da314c21f9abb34dba798384b3e1b2ffa3818a20d9916ae55f14151dedb8812b","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'a1ce16d15a43ba00116d80c7e28f177b0af54e83a652395f4938bcc40cacdb13'); +INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3615ae2b8029e503fd6dd5131bcfa8f5b0b4f1444d2c3a1c98f5c1170ea304a1'); +INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":" ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0 3 "}',0,'NEW_TRANSACTION',NULL,'549167402d453e7fc6c2df78f5354fb60a57eb42c93b3732904d5ee5b7181a9c'); +INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','4211ca16f351b20e53e65d6248850584989251f0e0a406626e9bb42bcdb9c1d4'); +INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','6c08e1469de2b460ee21a1a5cd9d73e69dcf909affe8eb38876437bec372b0d6'); +INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','e32b2564efe1332cf4aaf455ed143ee44604d5107e025ebf33ae8ea1dd01f4ac'); +INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"ea27454e0f6fb4eb1fd2e1e1bcca9d5b1a4b49ca49bcdfdfbf1bc782bda22bf8","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'175f73c546720fff6289ab7f5e4f88df28d32dbc80cd0de012419a0c3322d474'); +INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dd96659be47d871fec58ccefeca2d9e9aca1a0662373a11b51afc7a6245dfdf'); +INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":" 66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0 2 "}',0,'NEW_TRANSACTION',NULL,'e348171fa9e27121ff957c6f64dc1c46de5d75010b9d7b981382da8fcd593970'); +INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','3ebb107c9e1a3636590f1bc5a26a2f3c2de631ac478701db09d647e01db1b530'); +INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','d4b8ca55d492b231004f1d9635f03aced9caa44f5cd2a39b65f0eb31c86de8b4'); +INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','603a173e992f0c349dbc22c76f0353cfd77f2657bc72ed47923ccfb888709ec6'); +INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"9cc0a3a6699f736e935628c569ccb09eab059a739706408a39af961abf50d44b","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'dc01e0e006761d3a9392045d1590057b6d021c1c2612cf71913d70eb3e5f21f9'); +INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ff3e4b823835639c9bfab9ea8a0fb407145ca39edbdb585576c8ee076fda678'); +INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":" 147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0 2 "}',0,'NEW_TRANSACTION',NULL,'404af779bdb3b6be8bb41690488a584b3b95272386c080259be98355320969f0'); +INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','7aa7e489e22c5e84b5f52294422acdef9f6e7c5413f07710de3b0a108d5081e0'); +INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','286974cc7ce3a783617b5c49e360fae67c668a9603c57985482484aa4411b198'); +INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"90528bf30bd72754c28cad48995f388bf175f844ab0fd85382eb44bb59c9ea45","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'c3bfcbeef4b3b464909e0fe0c106e5c1291b51621e7f56bf0d8b6a951a2f6102'); +INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c2aae289d53720e167c098843db3cdca9b0b7b97c8161e1a5548edda1f3511e'); +INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":" dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0 2 "}',0,'NEW_TRANSACTION',NULL,'3673fed952bb9e68924616129469c2f927f7469f19c1f1aa5e1d864d60b450d6'); +INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','71dc19a4ee367e03b39b293a93bcce647f8aaeabaa19a6effb33491745e68a2b'); +INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','5c41e99b9ff857deb226dcfe70cc3732fa1e70bda148a1b1f2a1de941f75e6a2'); +INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','aa602df68142d50155550cf935dbe10ccf457b8274d21bd851528190e60dba20'); +INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"206425431dfd9a8d436fb98b2777ecbf498c57f34ee4374b5a9c83573202a98e","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'abdbe0fd3e33c1c00262558419e49268a15f6fdba231de0876538b433b49fa11'); +INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c3e82d5ac634dbf347d510f83a2d69b2311d4379a4eace2ff10ca0b8d8427db'); +INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":" 34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0 2 "}',0,'NEW_TRANSACTION',NULL,'3122107c262aabf1cb6d0a4d61b09c5990c6476c5d07a73d803edc361e8c06fa'); +INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','758ba4a37234aab4b4f33d12a88cdf0e2ad1fd5a8f313114614b51be06e32097'); +INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','3c84821a04ddf20a59edd91bc6249cd8a69c1147108b2fef8a7a4f21f3aa61b2'); +INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','03fb64d0a151b0aca4033d35282d69b8d13ed858dd8c5c2fc8cfc8e0a9a034b8'); +INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"b36a13ee6d0e5c14dc24a84358530a52e6ea450824a194612b6eb65d9320188c","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'57b00335aca2ec119aa6a1285939d53cc45d333b8cb4ea9f41a203c0d39293de'); +INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96c1db045a1a6273c37f6f674946e93aacab103e898ef30a97d42942fc9589c2'); +INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":" 01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0 2 "}',0,'NEW_TRANSACTION',NULL,'de020895665a0996d68164a7bfd1fc1a0e108b29c6c0154f0b854365e858585f'); +INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','3bfd91adbd560f7eeffad9841d4a20974ebe64b2aa8d7a6d86e1d0a768e8db4c'); +INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','22db722d5f3a72513ee3313aa70cd63de9c12c3f65dbe4665bb4bb93183e947f'); +INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','ccea68fc82a88e525a598bbc8b00ab9a3ccb90b69ff1ad6d4a6e841d26dd73de'); +INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','48a8457faedbe2f9023634700d0d682e307724c071f57ab757d19bfaa81f0e50'); +INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','55f1e1afe405af6e4fcaf6198777ae6cf4c9da4765a7940b2c19901c5ce59acb'); +INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"cc14cef8e6ba50bf7a257f5a82654c1bc39ab60afc6398566ab32c3070352af7","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'7eba095fd6da54c9094362b366029ba2b489c7332309c34b24d2566627b4f52e'); +INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f9a5c0cdb23d24b16193ec6970c7ca5f502e9d76c8cf37955379950e2d975df'); +INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":" 55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0 2 "}',0,'NEW_TRANSACTION',NULL,'14ed740e22a9559173f3b8aaf81d45cecd0fecb1074a6025739128d8adfbb3a5'); +INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','c85642ae7eb65e12f6e43383f75f5b359bcb63350b1434fffde70917936a1814'); +INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','82d74098ed8e451b7387836a6b06702fc5a44a5720f48017ed5907766e104d03'); +INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"262ed49314633a8b8c1f9e31431f012084825420040be3405e5027481c8ee47e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'a609e525f1c66276194a4641ee234ebd72bb14de935e5bcf3af36ab4d390a641'); +INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbcf68869fc2ba87ad07d7d794e1f1512c34d8d0bc3f17dfb6ae83622581f87d'); +INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":" 1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0 2 "}',0,'NEW_TRANSACTION',NULL,'fe05275c75576c45adddd8b8afdcf3461dec8479e5de5c5abf53fcb9e55a233d'); +INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','36179e6dc5166d45c31ef46311b4c1f12a5bc98370d48d0aeae3f34b45203d85'); +INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','59db1d8bcf9ab327206a71219bb116c6e814c88f8751645906866e4945895ffa'); +INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','5a5e613bf0d16316b1ecc4855ab8fca0d3b53b2b34c192e95d7ad0ae74ad8015'); +INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','0e4ae58d926c9eb0369baf938ee50c6e83388c350bdbe5abbe5b2fe4fcee1ddc'); +INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','4d3dbe2557b8a3eaf4c10f40e69e3af58b2f674b56cf0ab84e47d99638ad9343'); +INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"2195704cc3b4a9d51c83c907b246816ace709d6571c0677cf93a987bef05a32d","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'d8d565867c748e5082b5a6ca0504f73ab36c229d85027901a7de185e1bd3d8ca'); +INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'794ff12c719edff5c41ace5fea8eec5e9775804e9c54ca809b134a31d21f4707'); +INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":" 968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0 3 "}',0,'NEW_TRANSACTION',NULL,'31b7d312422846eac17507186713cf22e3dd3c75accf2855adefe2a230573207'); +INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','2a10808d3e727b05cb608901678523515fb3b2800f9f04f91293d5462daf92f9'); +INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','e9bc9f15bdc7ecba87a828c458bd9209c5979207b46fd0336d57729ec72c2cf0'); +INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','6900d67b26c0feb6812d60317906a1d02e745a4a75f27f04cb02868e3d239a58'); +INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','7a54dc0d869f7f7e8164ed3cdb2683e2810cffa7e8628fcb99c8be0c93f9ac62'); +INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"acc4ec319f14c28bb6b10826bc6c9427a4f3f00f668b3d4c755ee0ef9d9dcc63","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'71fd9ae55c2fb51d7dc82812c42657cbb0b94d66fe6a1b225974d714b27acd6a'); +INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dadac105b2e405e0e3185972bf1ecc99085e7ce30981396435d0e9d0f7c311e'); +INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":" 2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0 3 "}',0,'NEW_TRANSACTION',NULL,'576c2c8bb3f7a930694e0e20c3039d3c9f0e986bc71f134c115a04332739de6b'); +INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','9ecc3f87d73fddcfdd4a9c5d06d73a32f55e5808cc12abf510524e30d480a1c3'); +INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','37213269b0b2a3e68e975d11443d10def948cc0316d76426f6f78019ab52f73c'); +INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','9414433cc7cc210baab97b0678b89f988ec5ac52dc376ab14763b045d143d09a'); +INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','166bbf4b499a9950153d11be93797177ddac803698ec0eacc0fa402bacddcf0b'); +INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"6696adece01259cd214542d03dd326a0efb3df806db3064792853c51c96e550a","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'12abcfd356b609e4786c334d1a32b495373e662abf489fc20736a1f05c90ca85'); +INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d62df6cc581d8b0a4b0c8a103defd045a9a6f0c8652fe7a586ba185f4e839a7'); +INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":" fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1 2 "}',0,'NEW_TRANSACTION',NULL,'5578af2ec60273b5844a647ade151f0da16a31e2eaca768f99f553685036745b'); +INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','8e9ead41ac6e24c3989c2a73b256f3c60615b2733d990fe574291bae2c5c40d9'); +INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','88dd5840e0ba7a8c06f5e64be2ab8b07adfb4955d86fa6bb7cd8fa24e05bf082'); +INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','28378e4132f1fe2f8f56ae18071e3fabd60eb7a9eca904365ac5d98722c70c2c'); +INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','92a3fde1484a6a78286aaf084f84e76dfc43e7e28f34fb2681e992faa75c8913'); +INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','d61d9f06b9b70099eef750e6c1f020c2d04094236132b8f2180383fddd2dbb9d'); +INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"212f514114d40e57a3f3429c05f25f0e9b8f4a8d5cb9073d4e2161feb4761a64","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'b9eea48de2c9e6d5b73b798f038226eba48dabd76f83e32ada7586c3d3b2111b'); +INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09d707f24d655c19fcb06d39f9438c3d4500200cd997da1b3e1d485b1fb9db8f'); +INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":" 0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1 2 "}',0,'NEW_TRANSACTION',NULL,'8b0357b8198864ffcc73877d341b97a7471380823e6c65d9b92255a4c203de6d'); +INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','397ad0216b0ad4f23be76799ef860c19b56dc7eb798c3331479d7404f291af1d'); +INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b9a5c8c25a69c3f2f3334114f2ef62649fb7787b58f6e5e712b7edee08cf8ed1'); +INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b186a6d7e42773279d12aaa9320077d774ea353d6bba4cc57d0e56b8a890c323'); +INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','934d674107372c7083141c7e0c450da09380cebdb03712e41efd5320fc88c624'); +INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','16e9ee9c392d8bcb55f2e7fcc279895623f3a192d2a989079f6d4b123816db54'); +INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"82de7d5d7aa26eb7aa6614aca203954e99cd3e2dc48bf71861461db735df83c3","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'a936d16738ffb8d0e35705fcb272d06ee615a8dd1de9be13ba8ebe20aad4fc97'); +INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6384c7a6f9c270028823fb73f6b9f4c28b7b1525410cbdc6959b15fb0052d662'); +INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":" 3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1 2 "}',0,'NEW_TRANSACTION',NULL,'7177012a1dc51e792cc8c96687d94e6daf2094b75dd9875b819122712d16877e'); +INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','43d07e9522ba3b9c8d6668c0abdabb62eed6ed29f5c9d257a65d53212fe8f265'); +INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','99fc0b5722d6f7604ba6a8f8fc88562037eac3fa6ac5521b4f0a4996b4845815'); +INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','8e88a1803ccb5a6792c698604b3df77ef36cdb10ac9e085d32bf5009d3566352'); +INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','303627a9493af6cb3c1cf19d7b938ec2227c9498586bdb914513f937b3c85205'); +INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','c89f9c3150f3b42e0e63e6ab09e23dcf3bab803f604564a9ebb2ffd95a0b21ba'); +INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"a92af377392db4f61e9ad9813fb6f92934ed1d5f037c103a768985a0add67408","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'5d3c401560abae4b6bca69837b3535b7a9988abdbc8471d74f9f37ead2a02fcc'); +INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a674d488220033c4d730c0c7beb44318d5bb24002f7eda3f82f50be210765f7'); +INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":" 63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1 2 "}',0,'NEW_TRANSACTION',NULL,'2e5583d5aa8006cddcfc77245795f34bc87bedbebd18c25f1b57b07527d1d72c'); +INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','622706691c317833eda73b7387c533dbe2bec81057bc2910165ba89dabeefc94'); +INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','4099642d9cbc789f1c48598a9e230569a90a8791478e2df6c9cd6426246f4652'); +INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','934a8263d9c958b79cfed4037d5bbeb24d7c58635b186592ca3f936ee0607bd1'); +INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','3fdd736358d6a482d0767d758948c33234f8d0f24c134efec3b819015ed6e5b2'); +INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','34d41a68762818d348250202b65a7d56f0def0b29bd7a02d3b4d717499e2ad39'); +INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"3ffd1160eaebd802f207462d3c2fb3124fbc3beefed8fbe9b6473bd906140074","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'4a3d6502df24e4bc5a88c3c0ce63ef8ff3799e47d137e0603f522250eb505772'); +INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29f8df910e3086387a282e3533e93a74907d841157638d5aef0d53cefbb1462b'); +INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":" fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1 2 "}',0,'NEW_TRANSACTION',NULL,'05e6724abf43a41c4c578639bfe5c79c433610af43cff16e58a17486107addd2'); +INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','fdf30fbe93e53c77b4a34fb41104acf79d2691cc421a6f8e813993d876346c29'); +INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','352a7bd0e5d9365fdf3fbdd53311e801cb5815f95f3382a0dcf0184f8825d0c1'); +INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','1ae01b220a872851c7881ac7e5e6219c546a12b36b500d45197016bf3715c564'); +INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','25c695fb039a2908fa9748317d268da6229ed21df41073fc09f68646b0fcb3eb'); +INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"8e63eddfddc7095cd99eb9d9765c099ac779fc6f42162b704ae0914133199fb6","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'0d0af577c20bcc871ad11cbbc74d3c765647bd2397f4495886a253c85b78284b'); +INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f0180ae972f3444b7973ff027563cafe6b789d3843e7b2fd1a91bf2b491c276'); +INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":" c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1 2 "}',0,'NEW_TRANSACTION',NULL,'e43bd1b645d4f8b8b66bc64159f20be04036bf11246f0e88092e159c8b9e514d'); +INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fcc87c88d4aa396eda6f42bf2f1447b681621c5e6ab2cfafcb26f8de77f50c6c'); +INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','1420b78ff45e365674c584089452dbfec556bd3787b499a28fe8e04dad3e5274'); +INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fb45fdfc11bf227da3d4d2bd6d7bfbb6ac7778f303e35ec444c57f0e3381178a'); +INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','7cb85b761d8506c1823b77ee11fa3c010f7143727d82577779574fc5a776cfe0'); +INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','83f42c9efaf3a207b8d45f6ac417153f96a200c9506507295cfcd153f705dba9'); +INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','2aa0da4f1b99c4d9bc802ad4e36692e43297b20380bdc36f87e5bd22dcbec3ee'); +INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"dbae56c540a775774704619bcccb9500d736ba395ff17a36d805df02508c0af1","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'72670379ea81f307676df0f5ea66203f1acafd1d72eebda891ed7fd79c33749e'); +INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed5ad22df0c135e98bfebd5a493ecdb55e2de7c15426fb6767e0ad1e51fedd1a'); +INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":" 3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1 2 "}',0,'NEW_TRANSACTION',NULL,'2bbd81ad504aa6bce899eb06146519cb0967467aad4acd7476c8657ce0516ad6'); +INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','b9b2feb0db362903fd965ffd16d528c2faafb4c1bd571dfdc9825c52a436985b'); +INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','54b9006aeb74f4e2849a781a93dc11ab905d7811eef97d3d721d5bf41a99c351'); +INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','73a5c92d0ecd4eae1e29144f29dc5727167f7fd53b3daefae8a122bbaddd9614'); +INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','365b70377e4592a1ead0a53f430f7913c282e91b6a5aeef98d3edc7c04fd4794'); +INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','d1cb7cdfac00643df319a854f594c5df02e8bba30a3ee8505740e6a331e0df42'); +INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','97cc9ccade74069d66e320f682e8e25a8f0d96b94fb6efc5b1ab71f2349e5f63'); +INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'ae09e9848734ec94c0978a817d56787345b963c91c6524b6c88e77651db1cf21'); +INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46c62e6d054c03f25ae8f820bc72fd7e01e6a9579a29a555ef0a7cec595b6a18'); +INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":" a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0 3 "}',0,'NEW_TRANSACTION',NULL,'c2ed2b0d5dcc19336bbbea19c20ed37d79c13e921f37bbb3fe25aa68dcc21c9f'); +INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','73e00ae9f07417229b2f5f53a0911b6a37f57b68e5fa5a22ed15b3ceed97fd9b'); +INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','fab345f24fd228ef66343e0b507ee55ce3eb66d55de013592f5a27c9926fa7e8'); +INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','443b146acda9a1cff5e90cc894d8586904aa6a717798b61d9a87648ce84aa7d8'); +INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','72bcc2472bba0be5f5e87035834a69980a73fa45c5b8d6bf6a92b3dd983dcd55'); +INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','af6eeb931fea3bb24fc93a0fa17a5f34b0a063ae3e27d608815310fd6465e4ba'); +INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'3a8fb4c6b805abfa91ffb395ae49b2bd6aa417cf817dcd6f766d5c999dfd7a3a'); +INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2caeed4ea6b00996a6bab8691ac63cdc396e69b91ba38b9d0f484abc9f186d1'); +INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":" f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1 2 "}',0,'NEW_TRANSACTION',NULL,'4a676b154ec1bd53d08734fc0d1e5098811f5e4db7fa4158100ae662c1fa80b7'); +INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','0b704498d335a67b80387308a6773ac10117bb6e88e5c42b208cb21ec1728db2'); +INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','5df1d14bc9d40de2ce91e9c040fb5fed37bf735e1cbc47deb3d9aeb9b9fa66f4'); +INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ef16481793784f3e812efaa8a9af65e32a4d314c9f4beb4edee2b1cd652edc4b'); +INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','0f0c78b359f6366a7ac226e3b3e8f10dde0b7f25356806162c516d1547f7c5e4'); +INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','af9d2eb05f430f069326177467afba4259669beebb93b58d71b46ca96de28ffe'); +INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','547f55ecb7c9ba06e5b32a703c9774184c2ca1b227a625dba39c994bb911aeef'); +INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'2d9416d9b831430620bf8da67010ce4153ff46b76b5bc2f75781ac607aab0b87'); +INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b8472f469523eeacfacfafd561a695d41101f0cb05bd3488455bc7c5cd2e92'); +INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":" 33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1 2 "}',0,'NEW_TRANSACTION',NULL,'1fc6b929c7bcdbbaff4c15ef99bcaa13a05ea568dbb534c76ca832ca4ff7d9ac'); +INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ee35f4d9dfb047308a9ec4c8a14f210ec1dd49daf834bcbefd8833921acb151c'); +INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','879a538850b63765067c9a669d9969e56948475b2ea22c9bf460f1a95686d657'); +INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a62af59f153a6916e824008d44294c34a5f291c8fb43677f44a57f08bcb26251'); +INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','c62f92725bd1efed025e0c602c42b7cffb1e71b7d6f1d506cf90c71bbccd255a'); +INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ff9d69ae83e1bc8385ce7537c22debd85cc78cba7e314400a4369880a49d8aaa'); +INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8f29ca8cbce3da477043fd0161ef4c7e7b63753df6f002767ffa213fb77afa7d'); +INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'1522a2da49e43ac25a10a3bb66f44a5196fac77ce3bd73dafe6e101a971cb016'); +INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eb94c1de6d6c8131c8c33b67733a4a0daacf07e675197efee5830ab514f85e6'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'8bbd1928d51e5c7f0e731c4966d9d10d53396ac913438d598765e0c44289b45a'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3ab7ac624901f0461d6867b48bccc4297f1bc0796420658aa5139e233fe60769'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6ea67f84716a577bec2bf65a5d55d1d56e63cd8d5fc07fb32227c5c0731f6a01'); +INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','aa685b25d3374e6a748cdf2a9e11c5ca01b45e3f25c2093dc52a950a22f8b5a1'); +INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','7ab750f5ee9efbd7be420d7def56619b6f57aede5989422c5796d2a58340b26a'); +INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','89f0c2b7fb8054fcd974ddc4ebdb8c875387c53d38f7e8278c59179640e5bff5'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e84459467ab46c0b763b2ae64e4bf7d64a64cbf3027cc08b853c281340078a8e'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','878126f72f816784b56c45aac2521bf26566fd27b2dffd1d4da5db9e3f0cf2e5'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'9196aa1fe27fb5931fd856afc8cf9072af5a599f828986f29bb88ce041a37cfe'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c507cc77c8a612040eeb4d571c274c370d85e7c740922ed3e038b529ed56d3b'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'500f9839e7b6d853e42569d10438ad11ff87a8b16da069ecf452b3ecb15e0ead'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','16b01a9de86cb5b102e4de911656d8b9e9e8d820add2901a82ec8fd6633f1a04'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5c79d010bf9ca3b7477710252e40bd5f196ae263a7c33d80ccd24d012289575e'); +INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','417d93d2963c6b642e604efc34fe57640de5182f1652174a0289507acd51da9e'); +INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8d8bb15cb5e40a99425528b7a793bd500da1d43171df488e5a81f50d23c9ac75'); +INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','a9987ee249fad8c82a3b7bc2a271258b06552735e5293adb689bebcefff5e848'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3b78b1529b28d03ec7c920e5521c7b391b402dc1384a689a45f9a72cce0f8338'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bf765d3c08a30f5eb84444c60f7e7d6c24e639cfef3b4d879e074df998ff7f0c'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'aac0896e0a5db2da6abf3da4fadb55fd021a5dafa6411af6afd221d3e1048a99'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f5d19dd9bddc1e7e12116f8ac48d4c200155b25acbf6240a03320dd5301d77c'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'201e30a24cc7c8a6d413c0b313e89577c585c55a39eb7a15a54e67f65384ed84'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2387e80b380773bca011dd41dbc960b8ec0cc499c4bc8eb7d9f422bf65c65232'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a6a3545e937d655c4f289612e79704348aaa7058e85476037fd63ce63b5217d2'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','09384d09bb418b8f30bcc4b20357e7914efc9196b50670ee3e6d29c3ee6ff052'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2c14c61711d194f3fa05d7958c5d455d66a06e28ff85c86d85ed75c8df8495cd'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eb6a3e28058eedb1a8626309a845b462dd9ee01249885df7ecc2a0ea59f04d75'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'9927c6eec7548df25426356efeb638e7a6c1c54c2c0c3b2b9ad64c40492eb584'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3216b42a6b7faf80925fd4745f5e94f8cfb2407ce2e3137c4266496740ba2270'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'6d164f30fdf7e0f5aa72eb2b20cc303011678b9c343433175e313a76114bb33a'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9b45a615f6a82addc660fa500d3c50232753028c036867575cfe06a55fa095e'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','d136d881c6d70de346237449f9fe7bca2c48319a986060892795fbf8b4b02dd6'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5fa48999b8a7cf87bd0b3a11c5ec0f53a7bc4807863b8c55015a923eb3cde826'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'8dcf8b59202460f52684fd287b47bace230a5918a022d75c6202a119e83d6b61'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15bc1bc9c6886af02aa235b54cfe80a696d0e210dac126de69bc63659fe9230'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'ca696f540531e3f817213aa12da115a3dba7f9f84fdb13aed2f8cecfd9e7e287'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056ea7b98cf937b7f1752ba9957cc6f8c74ad96e1cee955beb6b7110f58727eb'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'9a5a35e6ac5fe77da2981e3fef5c7a791488e4142be57110b988236a9191f424'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fecaecae0a4d28c4d518dcf9f10ff19782ecc393873824e39d83a86199b2fea3'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'de3ea9b2fd2fe856b785ece9ca32f40f1ebd6217948b58a87939d1cffb29b3bd'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3299c9a5578bd101ccc89a12f003f4f7bb185208b6f2ec8b95080577e2a103a7'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'fae2a3673839c2fb3f640d5988d219fa504a23c1fb635b7f95504584313e3fc1'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'c7472ecdff349e324d7d71a46adb4446a1c36ac17313079930af5b69c0d440b2'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a8e1032519828124e0cf214b9d7f76403cbfa549985f5ac2b9b2135a09111a1b'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ce207d80bcc35089e634f32c17c8ad39aaa3e4adcbe688dd23eecbe00f9ff9b'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'0b1de820dd9f12a42bceac67a2506dbc384fd73ad2fb0da95148824743e01630'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'973a4f6216d7a690800417deee34fd984e86fef7ef72245d93095b80965b0328'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'21666aafe3bdac4443a1ef03ffe76ddd71236d3811938306021956e58b44848b'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c5cb100ba865ef10e02f75dfbb2096f8d47d88dfcbc499401ef830f307563f'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'fc37b0a33f07a8865d4dac1d467c09306cc49ba2d05d76169665739d36fb57c1'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf07b719ccba31e71f5d15858ccb6eb848c698ec5521573ea68b10169d5a734'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'d380576a6b0ac0b96f76521e4a671c7a56d01af66c2d48407dd5bd67caf4e15a'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41bdcc00f3f64eaa3f3d1c90a4e47b737fdad4b308fd1fd0efe56f211f52a01'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'47389191d7b37288eb5cd09c65fe9a05966249162cc9e92b2d97774448f57735'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d2b06d4fdd9af5c14d1ee0fb136a0fa49d42f2a16ad8e6ac2dbef07ce6bf02b'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'f3332cf52d4d0b82289a720a3b3687395548b1143bb7c6ac13c34d901926a2c2'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99d71ae9e0a6d3c5ceb043d18d72017d17edbcc4c8ec86d55735a2877de7859'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'03ff62eff402d36070cba3cf58953b8f4df3642e4264420fdacefe3af2333d5a'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'22d1c9aea1731fe665ceb2439a210dae95d7f9379913dcd415a2dfb6a470712b'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f7f4077b9fa53863f0eb4eb0875ab530e199babbdfc21644baba907cd2c6a03a'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c04246c969bb0b3a60b6c11d1c742a3445166ea89c7ba62efca5fcdb27ecc2b4'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6857cc9218f8fa3fa2e114a9d6c0d4456888659a3d1fa89c50cfe18938b797f4'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'971b12170efbc7f439b65ad7fed47bb897f8391b8a35e06eef857cff67ab57e3'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ffe4967da0574bf9374153e9c1d58a0396188396758d757ae9b1a7eba8e29492'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c3d644eca8664738c388a9862185cbf61b99c17df51eb62eeac52031ec0e2d3f'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dd9853b9d889f56660c2c11b5a0f760d8232a5df7e3a6ee91bb0aadc3fa1bbd'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'d3647332aefb1d70247716d623cd4c2f0b8bbb0cbe00080f59444fc5ed151683'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4675d0eed46375d19ad0bfdfe94cc0bd5cfa89b865205813b20a7c58aa443be'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'faa4585a898c85b7f4a0080bb733f315a2ec920d3db054f319c099786053ba27'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b491f779ef37f66dd6ae7358072f18a76f87b0ccdfc0b8d8b5d43516a15fba73'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'da4e10297558e100beb5a1e77c3f8e432c582226ba7c2266f0bc9e4580cfc925'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d7a6a766579e8034ab0a134e2a23f720ab6e242e6cca763912a6ad6d33f62c0'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'351ddcdee918c4427725c808b90542b69dc4e22c8d902f14e41d6ba56cfb186d'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbefa4c96e7626226135e8c8d8f5f5b03308260638195ec4ca8a6ea8f70a8660'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'57fa7e8f62f2d64ec35a59844ce6785d7233e3e4731905205778965c76d66f18'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2bfc2b0a9ae6969e9211e0da3e6c0b72aa250d008d827bda494e898b219606d'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'bdab2f743faf27e668e7a6f222f91c49ec0ef44469996eb9ae4ec5e94bc2ef16'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a92357fb4131f87849ec0a83880f4adf5e2872b685ea2d13e9103aed57e9f441'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'5c1d69c6c96cb115ec56b930a7848748febb44970433366002fced362da895d6'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d8471a9ea2060e0e642631aa507655909a112e5c7adb108f099290fa47afe34'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'1e629bd226c9475480eface7353a8eac4b044325a22b816dde857f72691aff3c'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6524883199a013d4fd2f0657bc0e3a26666dea0e9e1d48a246c2923e6490da3e'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'2490154ffb2eb4d3e3b4374aa28d3fe19336ddc3c545bfed9b05ef45cc5fa29f'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cc6019b40fad64457115f65f800845222a05017f7ecf87cd17be9b003e67f5'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'0346d34b3923532d201762500f902006be244af1c4c230935d5033083d3bd1da'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e6f5c4a6bda993c08110b0b91de56fa6338c2d3b9df780fb3d4848004e3715'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'47b26c63139312d26ba7c9f18e159f8ac57e4c662572d55377827303ec4fcce6'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c627303ef36b0a084c9a865bc78b1137513e8d0f4f76cc26407edc3ec88b660'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'7db1b0060da32322c52d546d5fb480fd1528cb97c99477afb06e01bd921549e0'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04e2aaa8a98bcad2a4a5be756d5736db0caba7d83f25e2fcee29431e840d9346'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'e3cc92a3a2de4ace4af2b89576c5bddad3c608448cd2955c2a0d5845c908ab11'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a49489f1b42043e88796ddc281259bc76ffb537202bd17f14794e204c507342'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'1d514257f70dd4010c691c2b39590f14ba939d4b1fbaf367fd1a9edcf4f72edd'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0af113e110bffe9546833f5c8e648767c33e6ba1cc12833ebff659d92b222b1'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'8f280bbc14734dbb90efb433c9ecf27c743e9a397b4f1c02e8d62a768b3db812'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbfab615236a424701b109a1761f8eff4da7c9750b18771bb4222c381c2191a5'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'e15792a604245cf8bf9a56f3710ccb9dbd0ff80acf3fecbd8436d36a761e2a7d'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf2942d56a125ba4df21d2227453eb094dc64da545a07172acba05fe529ea543'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'e1b7dcb6567c1fe798b7d6b83e02717827a3091d557b7190cca71034396eca95'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'451ba7ace7769b9abc22148329cc18455e69110ccac397526fe56f500b5812d6'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'bf77ab31eb949ab131656ae485cfbee23c7625293f1b300d2390a689051f46b7'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16f61f491e9a198a104bd706615a5d1a57c5e49df33669d9bfa2e63209a84cfa'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'767d1fe0f370cd64150afff0794a28076c995298f9328afff3eb73a718ae1b6b'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'702083688cc6f9fab90a0c6f88fbd5ed7fc60d9186b1e0ad3a90a017b1047941'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'a056e346b370c1439966d636a07276b339b6a7a958d08d875ae1eb66214ce960'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66912c2e0d3f155ca741040b1d717ae9bfee962a1c5d3bbab51118454842c6'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'d0a18c4c8027fca8c6d0c8f75dca2c25b2507a765fcad47e0df87a224f3c9469'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b91a12f727ffb9d8a45f0f20770c48d0e7d3fb2455d5d4964257028f50ce2186'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'097dcc99658c6185c06a7d19df49e91713644dbf3c917e493938aaa68b558533'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11069822b87eea825b80b9f04780fd6711b403ee89ac39e44350f3f13893c311'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'e6875e165c6e297737fbed98eb1c3513e9f11a58363add80b01eb1114e4503ea'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f3f7a7192fa57c93b7d593212623d9698718178c0a4056fc73da0f95cff4dee'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'0f9b7e0fc21f69f06957559e1cc21286d835c5e498133ed78123d304e8400aa8'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95c9a9bd39e8506b47f72007d5c242c22f1e4425fa62cae177df16afa57c6d4e'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'450ef937e9459d06ffcb7c6c9efb72bb3c95bf98f80c754f7758bf31769f1d65'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d78fcb5c9e1c2cc50561a533f297cdfbb26ce809609ef248d0195bb346509a'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'4d0fb1a91638d85a945d83ec6f64b8685f512113c94096252287bf534a7484f4'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2526a9e10d238cb6a8e2cb7ab5a4daa9d6ec89982adf94795f3d7c99dbda95a4'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'29ef5ef9ea03bb161a003959005f8006c113ea1ae1b6bb522993fdcff9920d48'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec708650f967c7fb0188cc91c831cec1968019d82fbd5602206f24aea2c16a21'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bf05e32c28297112a352054c22cf3cf9d7764da65da5bdda4802af225f541000'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e6aedc80984ba96aa6fb48c43f0ed05f6d630b890db5b54faa98abd295fa016'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'2404f48df03504f9d81ec14473e70e2e102c63ae85d854f068be5c62b56441a5'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7633e13581630a6547b2d53f2f0b93c8e3e983442a99515f6c9a70112179bd01'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'7d3d484812e502a83d23798da488c05e47e6e7c119cb3dc007fe413c210b0003'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e530ce58be23a9bfae82a4e6f7bcf1d40078615d2cdf4e13a041d50ed16ffb4'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'4bbc52e9a29dbbdefe60f4a02ad6d13e053e5f55d4a1072fb208ee90253e7983'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7dc653f621df70effc13bf8aefd48d2a66b77edd5756e8687214259bce58339'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'2f7169298ce6d9cfb364707731bd19a8263fcd2ec9f9f49ba0b5ffd2816523f5'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78514817cea74e0a0d4d6dc9bc723b9109327f3c4f70d7981dcd29b56f858f8a'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'150578e1ebb12b6684364a2269021873b0977496b9053cdff8e9ff3b7c7faf0e'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af024cc5caaaffe8d4c2b659a6d3cb93841d59f3d7087dd643c03383bd23780'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'1faac7cad42651bf41c1dbfbd2cbfcaeddf9514c12ed256e5ec8e2ce9fbc058a'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e80de1c8dc78c243d4a229a146b31c1073961fe8df9978ab906f4267fa394da8'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'d942f4473aa2bc067b0e832ad86648ae2e8fe2e43a06b96406a7b77775abe640'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1991af8ab35a7ca48a26dbeeba3327573bbeecc283bc5abd9641f530f41e8f90'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'f82780241b8b51a0afe6f062ff43c3e1205f73577e280de2c58a902cf62ebb5d'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4f3569186da338cbd2c367b5f5e9e0231807a6d9e49114ec98ac2140f63a531'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'fc5fd87c6f335874ed0a3522396008363b31b6d68139145c08848cb32c263b29'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c449133b4f6901ed862f04a2ec2cf7e30ac37e7440087479ffc8174184868c3a'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'b1a1a446606fd22a2465f05cf55ed7cfebd324d5fefcf81ade8d574af698f6f5'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f0e745414f71cc843c7811608d751a71dcae1447a44117e1637da92fd73aeaf'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'ea35f7e3929ebe6cac740b16512935c44250cf067598a93e9f927aff9eea0cba'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27aa9fc166c7fe896b04a992f8aa1549a5db758fa8731f0f6f088a244ba9c793'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'68a83aa63beb6ae49e02672eb0237325311b464ca76c5a90fc051aac7d462260'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4773706101ef22c42a208cbc49b48b5c5df2353ff6dcf5dc17ad9d34067ae936'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'85807af03fe81bfa2ab0082faeb13b063f624abc9df0d6165a10cd14072821be'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc38aadc11c340a92b88ed824a7201226ba80fa3e28ea5bbddea8ffe58e55c92'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'cb230fb2ceff60fdd4e3b1d6c89ae7517f1ebab8395e1530b664bd4367f59db9'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c035a487172827e0339081f4d7a71f56414f10891e08febb9bfc4da2292fa8bc'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'53b74db7738fed611b21833ea80d88316e4e2c837c9343921d7ddc6c8b0cde11'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'878618b5f919524cf2f3dde678b5cded4797e0c6dfb4311ba1bbe27cc9e314cc'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'4072714b3597934c9cb3ae14ecad352ab9e6741ed25e4b8550dc933d3bf765e7'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9879e933275aa500c1925c64b7d78ff3b655e99efb1ed31397c0e8ad7285b680'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'ab21145384d4739080101d6af0097b391d79f7b9ee5ec0645f96394507acdb16'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e740cc40c2ffd0e69706457fd866b47963520be5b46f0230ad2103583b1b3437'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'6d5776ca4b76057171d38970bc81e4bb0573452a2c20e9c55a19ba320d7478f0'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d3e859b54c21697ab24dfc0a41efcd43663b32ab9268bc844934ccdebea0b7d'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'44278874b296527a10713a3552f3a81d8db9848ad3ef3aa6fd889ab953d2440f'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cb2cae1c526d2f2c2eb1fe991416cefa1daf34a669ee39fc0bdb81ea77fe679'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'af6773846ec130713c14eb237d860c6ad97c57a53c4151a5b64abbc779524072'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'876c2e0c191d24c685dee4e18a855286eaa437d047241e5e070bd077d1d6ad3b'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'cb90d65e7fcaff58faf3ddc125f784ff51b5fd86ff043a62c2b00ba686b86764'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c2b702bf3d7e2bd92a18e7ec8be3c5018087ecfb954272a375f27bdec322a82'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'33c3d6c8f569a90bb80cc8f2f1c2c99bff46628816bd2a933985ada182efb9de'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1104bb88b5bbe589b5a06de3fd4333d3839c71fa708eb4b266ad3457ea56ae52'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'08c286e871803185a4ad58de68ba29e4960da28948962b9c0dbf4ceb9d1e3be7'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a57f8b6974dd68ee98de58523f2eb3ee52a93a0e40971f2fa1e924417b942a7c'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'7af9bca8e46aa001f116e81322717460bb933228d93ebfc750e68a7c563008ad'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0329d57d0dee2b6b10d8d2ae2df03e89fe73a939ab594734ac94df579237035c'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'43b7d1133d045e44a366caa3ac4862d9e9818a92313659a7bd394baed0b9d210'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66022b54f42d93184548d20d36ad03b4b14b844421d562cac54ca8d1bc0de2af'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'376a2c1562d1ec5fcbb181b13961e5aea0ceee7cc7d747637234d81641770945'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11fc0c5b17eece44573879da59dad70f4f7fac15242ceea74dc3717e94b693e4'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'805a4fc6769d1746a374da4db46a8ade1c8971ffa97a1f5920e032053ef21a58'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a13a21a76e95ac472fff45b42062a2906e4b6c2e172e404eabbac2406addacd'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'5e724a720caa6a4b9e69c879dbacbce5e1681d1736de98696ac464d847e7c05a'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e45efa18d0568c202fe32eed9096e89352da2e72911dab7fd782abaae42b270'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'c86948c984f7a63ad411528e29cbba25cb7b47f7ec711e5d72532f8ec4063ff3'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eebc9a3d70d184ce5d14131fb691996925e2ce56b039f0e2c0bd2fa0e87f8404'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'7ae8e46c431271f222001e330c6fa816dfa06a33a7f80576da3ac69f41d392f7'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18e259b30f715988e1005ccbb99e0b44f6df988828e795a6d0565633a0b059b2'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2e9687f06daf05cfeab2348411cc1c967f2d2cf3f699f5b1fdffba6f6b4e4e0e'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7215d40b22efdee1852b6cd0dda68b3752d0ac774a7f1cd73cda806f57c517d4'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'18986f018991288b68a80aa2b7dca9147ecabd716c819991d20955fb7caaebdd'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6b1df36b1a3c2e976cab9978a322fae719dd69c688124675fe3b0a37f36120'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'6d6bf2f213bc24d474edd061f66fba7d7550c54607e1700faefbe469e9228c10'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7d80bd77991024c71baca3a9f0be5c64b95e6aec5d716c7b886fe864f156530'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'a4a745c2baa8f9fd1b1b2bac183f29c235e9a969331a4e6e86f191550e6261d2'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325f7e4e9855a1b391d9cc1e366d440743651395c2ee7fd5313c79989b3b099f'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'37b71bab9d361077fea2d8742a9b0394c8da9c6a4107838c382abb44d27ba31b'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b690de08f0664f6636cde2147626e5770124177b7caee8034eda225df1dd0f'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'b71f1430541b2fe773ce2c1ce41c326a95595a110aeccc886d00036e64ccdec7'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b743e4989657ac694652ce96d56a8bc70e8c35f38838d787b08f554a92f56c5'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'a505d5a0d1992c2728e53c77d643a77b6d907a6bc2912e080fea465efa4e99e8'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f74348b584794caed6fa607ebeb842905ca0afcdc2839b10cc64b7ddbc7d352e'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'de30764a058d4e16671a5a45f257d4d9976fbe281603f924df30ec8e16bbe35a'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2ac256e9c71a8fcde5ec72a100c21b0069cb442bce0ede17ab8a3fa9657baf9'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'ce6713111b7ed117ec8549c9d7c4f8103b6f37db4e042f306660e36c98b41e0c'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46c23876e14e09b830877304e6ac369b77b87f6cb7a0060386c2fa398ef40903'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'3722463479326f86aa6e2efe4df338176a44bf6641c0efa1b587ddafb3efee9f'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6edb4f84873b80bf2538f4c6759a7c62b539885d713ed8c8cbaf8ad21dc10b'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'a38b8466caf0150d422fad3e644152eb2f9d005543601fb23c8268330e9f5311'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f5dcd5b900e191f58304321e6cd009a8e844f627e258d0b4491aa86a66b76a89'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'b4011dedffabf47c59ffcfcdd53eed525910904b6d593444ea6d60c8a8da76a3'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'49972ed97962735b0436fa9ed6788b5b2dd411da974c43e7c1f4012ae1aa47bd'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'659ace90d7758a03459350a8639c7c577d2552ffa926b229fc41f7b48c7d8191'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'bf5ca13faf4fcc8c5ff04a44824358a3aace031402cb73830f15920205b7f2b6'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff94ff89beee24f9b3d2b366cc123e934fcd693eee93b13a1270b488fecfb6e1'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'736236cc34a0f25b09e22a561cf2f93ed31986ccf664a606863211be07507b35'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c49c02dfb3d3c610a93d1f50b68d26073a44b17f69cb01d7cfac94d6328c022e'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'1c04a253c9decf77cf5233bee6ae1d65680734124d1b34f292be3a9472811644'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dda4ad01755b011a570b8542969a79e8e8e66266d3ea8a0175619f618192c31'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'88d551aa68a7a1828893b8515a9b34c6af88676df65e69efafea87ff4e342fae'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff80682570a139c8a3f4f1aeac36080ef2477af3c911136c8cbef0498fec09e9'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'67c6971de9b63ce7f730b4c4b53fd0502535217945e307cc15438f1cd0b54cae'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4935c871292ba39b2c7f5f2f568a7ef90606098c8704cdedacde9dad122dc586'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'519b3a8830af55ff4473d0c0fa6cb54cf5ed2e8761db18ebec7851f6c8545b85'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2b2e7e6d9a564b3a1f45d77172aef430c1b936a7eb3388d6f74266007a87f76'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'17da04f2acdc5e436364158752ec870bd5e847c9871934392fac26fb393635af'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6cf249fb81197908908450b7fe1a456e97322b3dd37855cd5af47f33d923552'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'acb3a85abd0ab17dad654bacb834e49cad01815694665be40d73ae5930079a07'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6a87c0db767c2aec9965a8289d3966afd286f1621bd91150402f0a5bd8098b7'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'960840120deab73844e928f7e969ede652728cb2fb0bb8431d17f652e648c4fc'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6207c5f8dc5f10dc7d20949dc0b9447e5fe1a577fddadab5cfb17bcbfaf33a7'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'30601a6f69907ae98b4dcd16953114282bdfc17bc2d6119d51b2b4118fda62f7'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01db3dba4768c4ddd07af913fa043968ba5a3e93e9caeadd3540232b3de40a0d'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'5321e47d5c7bafb6936e523e2a2442668c4ac3800ed70be5bdfa150e40e904dc'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82b679b96ca4680a56bbc59c6d1a0f4f91aed7a34141a7db147aa8c8b9b3c329'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'5ce612fd0c40c63f2e8270bd682a2e1dea7e1913148520f8f400c40f94dbd13e'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89781f5e6f59406fb2ba0587f78a088cf39059a6489c0203dae13ccda8dce02f'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'83eca14e3fa6bee80adc84bd2b9541cd9df37d09ec37afac09ca4e7457081692'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a526ebe688ca20934c28e005cc99000522788c3fd2b0c884e05295583e9cf43'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'db5c4eb1344fd3ed2e360f0818cefe9d2c3d541fb8bfe6d6205ecb9e3cf27fce'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1719e818b057b67a5109158f0e8cda13a3e81b79bdcbd4b5bf28087562f801d7'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'42f8b730ee765a428356e126488b57d4e1fc230eb3c0b9bae93b637c0b146fdc'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b829da2b859bc657ccf52b81259b4dc003c3ef8a4c33f507555bcc2b9d12da31'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'96bfa4a4255e108839946f207bac4de09585cf69fa08611934044e632d40d7e0'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aebbdfcd6548f74ddab006f899a5e86b1bff3f72ddf7d2171247b43beca9ca3e'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'cac65adab357eeed5b039069ab22a27c2b15d112de392f7e79b69348af974db3'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f51ad4c2d2618cd85bbea7a7e32dd4836c59f27c71f1d1abe76dcaf0e9327ca'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'7cfb3b5e7a5644021c8ef2a1952332c21a266a112f136f8604b68e12deb834c6'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b58f101daed0b6af32be020845a564b5c7889916ac38fac9daefafb8714a29d0'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'4bdfb30e1943dcad12c73dec0ff8deec0f674608e7cb6ff44c163daa0b93a992'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e925a0c5bc3661c52d1bce3b442bea302b1dc427b06c3864bd0c1a7abedd1fe'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'cc3039e8cb1c22e46d7eb8615c50d51e325fddea20e295e505cf0256b62e2298'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea56f07f56f9f210e9dbf41a4c366a8d5aaa7d727d7107d9a8b39856a578ff39'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'bc42acd0f16c301927e3509d65492e509ed067dfa40b93b7281b4567a1250af0'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39f5512236e53449a08b22e5052b5b2419315917f2ed734b8d2f3a86086ddf3'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'b997c2e25af4c78598885b49405024684f53ce86592501dcb1d8b72c5abf389d'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8de2527f78cbf454fbbd40f46e5f6cb04e84c6b0ff82efdaf408558c42041f'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'be0a4d7234bbd1d439eb9460240298d984b2ddd4d24f84ea74a3fe9b3433dae5'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514669e08048f2e1b738ae3ddaa0cc325d6931a6107c7169bb989e81baac265f'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'dd3cac56fa8cad4b1084a5cde0c574792e39d58f89cdbc546662f174c1b50159'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'765af41a408aaeac6cb3ee4be39fa4295aca43483752bac286464f556925a7d2'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'fd6b86c0b0b20c8a732ceabeff4e843a214113182570164dcaee980f500cf413'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d54c0f4f3a5c814ace4ead9ff484d16826d0e9393e2dfaf91a776f49d51b1662'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'6281edc34f67fd429c751d1ca3f1b76ae407b4551469e8098c68857cf3d8379a'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1a1001a8c6597469d7dbd1fd5ee9f012d5f07123a30d7fcf92376eecb6c039a'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'57571e21ad9e1a5f82c1c6f627b4594947a6ef93e97474e514496b52ea0168a8'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d61f0c46773d5898f90bbe4bcbe1167f79d49c5a35f107573cb9c432f4312e5c'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'a726d88ca8575834e7edac45b5df472c9c2b8dcd6bf74745452f2b03938c6dad'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49e10d09aed2b54915fdded5153554513d6a1c0300c9afd1358d9824a90ea3a'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'088e828fc21b789fd920c17ecb0ee7d7c6d10ad4cfb2f135cb1ad544d59cc1f4'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e81b74c549479485d5e02f24815777f8c392734b0c119b8c0ea3257780f5fa09'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'0a870865b9d0aca4cc9c72a9d7daf33f81117d2eab637ace1817f2b8c8483de1'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f817b522158958b8b2882a26bb6f780f6e817477aff16f65994b77cb7399436'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'4f600a8e0fdcf059b1b5aee8cddf76ab96a7cb0b1b41dfbadc243b37a4fa0803'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3dbb2cdd0e306e221bc02c7efd611f46b848fcb35697fa789d0f2fa0a556eff'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'e9b0b97026763185a378cbf441c8d37177603c6057fb5b2f7f95b47ede59610f'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6af2b7396d205097dfe4869cc840343cddd153916d58a620d0aad9703afbfd70'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'9d541d93562989207fdac15fe68a7600fecf68e14237f8c2966a28b2cd44c91f'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96da8dced68f038886926019e884774c4970f7190450625527e61051c13b7846'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'608755cfc131a212d05db0208dff650dc17b78a75b474b1fd50b8d73d80d24ef'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cd00e620d8163a54d7c033b6b895367d7297dbe990ca21ca627709d2a6fdd0'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'d5da52bb790ebf6d3650c21efeb41db153f5dafbd1c0ffd546bde172aebf88f6'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e78694d41f5c51338cd4a743e6d14bf48d6ae6a49ef6b9dc3de7a532f7c7e13'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'bddb79df128c780a9ce39b5acefebb07d82c7ee61b6e54ffda8f7a0bbbf15caa'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0747d159009dd3d782ef5ab4dc37ca56690d19547b6c2e3d0adb660498ab83f4'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'d3433f3781a89ce6ed36786db40efb1edd6117133c3a3b9dcab8e27b50c33e04'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10878e3d8e1d671bb0399e84ff7381adafdfaf812957cefbfb0efced2e14ccc9'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0b2830990630426b0130fd8fc5b1b7110aec5cb047f325d86c575f82528fe594'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d713c43fe4fcfabac92823421994fbbd485a0625e09bd61f279f2e20b3d7e967'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'5a4bd2cc06718bd78b1d5c4769c3f1dcd91688802851150884855ab158ecd9fa'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede54986bcb63b7c25e15d0e463b50548e398f1f1160999116e9733fa4c52e8f'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'d2e9024356696d55acb9301aea3214ae343e23a563800cba92f80928b91724a2'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487e7efc1e302249a8b62de227705dd9b77046967fae3306c1c94f91bcf07bb5'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'8a4afbf9874c7573c8247e7e509b83d0caadd35ccff80488b2b33a39f7b91fea'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb9b3d1231aa3c930e0a7416c26b9fec007c2194eafa28d8766f0e4a5b1fdf1'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'1e0096feca4358129a0488e463ce61c52eef533f884d5c54bc460a99e844deac'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23baf0ecd2a5792db4821206b8d2aedcdde32aa321dd0d725c47b959006262f1'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'538e36ee4fe7fc4d55cb9c6e64707e59d3616b153c05049474e4ec1a63f3642b'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ca8fe95795b87a2c57f984f2b6e0f39aa8d353b73e6715d03836ffe0d895bcd'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'a8b08e891a9d20a6c66dae3f16d2807f7fed0c62d33187d96440efb46ec9d801'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44399c9f7239a03b37c3c34e80c716d343ea58d9474f2ef1a2cf7e0d2a24b0af'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'7eda1fec65c16fa90ff8e3d9458efc627a62f03962a0ce2ee030f2acb6c306d8'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc630b9e4dc2404c2acd3cf2a91454b1ae591e60346c17a3b8c91cb3865c88a'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'252484521fa259de410e90afb9b2f5d9f63bfae782e09f8bff2b64e32a12e94e'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30f91ca5b7d20978e2701b02647a886e1989a1ee134fc38cbd8145d16708ff1b'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'ea37db21934b5bdeced29475b9d264dfe752f34d43dd7e653ddb0fcf5aeb63a7'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ffe9216ab4f82aaee329502c52470ec7326b8067522341683d6a7b4f1dec8c8'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'2771491880141fe357911f0ebbcc1bddb77e40a0fd3caf507302ce81cf71f89c'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29fb680447298a0628363d456f508150781656ddfdffd6e20f99abc5443408e1'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'eebd5e6e2a9de10a30ff86a75702dd8b981cc4486933e501867db03fde1c1851'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'371712950d794ce4b6f0113b809250f15b197bbd096b11a8e4c7e389b2c0d8c1'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'a8ac07ae151f22735f4b368812ea6a8198c28fbb3c3d0caf3c349b00f25a5ad3'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'776ff4b442ab04dcf00c1bc315557a44c041c0d676cf5c5a7756052e42471112'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'14c5d61396ae4f3f7a3d944187e596415d8ca34b2aede89c1ca3be23a326db66'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'193c3103838e94383755419a04da4541666c8995641b09edd7e1da777a4544e7'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'0b842659292055725318f81768aa99dbe84f2f899b4f130bbb8f2d72fdbae982'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c47a7ef5aa162121b9508982e7eb3d3545a36c7865d64cffe4c6842aa627b0d'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'ce9bb2125fdc8dfe42e775e249063d6df0b2b83f6e99e025f9d897dc9c08a566'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc95746e83c0f62e1dac103c0c06c82f400a7fe77f051c73617dfe171498431'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'d9ffe56b2d7d31cce293f3c6c3b0504386c456727a161b840c8797909cfd6098'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7abb21209d8b91f7e6a34ef7f1d3f137e79cf9c07162d35fd3840791f2842175'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'33537815c2daef515d67340b9d878de14567db34f0475bc094ebd34ebf8c2ce3'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2e7eb1809a0ba7d9a2d9d12f62041fd8e5612608733ab2d771734e4bc41b658'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'756cc0468a84e850d68527c8de3430584f550f9168ebb34a56f3cb8a9ccb336c'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1814902ee0613bb55612511cc2198618437c8e6f19f26c7b5b838926eabaa080'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bd0bb09b23e069d5bd8082fea47acc5c94131e391409cf3bea2c5eb35fd0cbc3'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d8281f46b112d028960546b4139bb49a403acd4dbd887716127c20616c4d3a'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'07a27b1c30930b4088e1e08176927ac38fe8f06016e3b015cb4ed0350409737d'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5bd167a8d190beb217058ccdf0da72299e1c650c337edb80c8b870c50d540c5'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'5ffa442ecada154121dc8dd02973ca36b3d2374789f58970b5dd6ca3b4b3da7f'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58cce830e52994bb6c4436f4291817d940d2e75e6944715423ccbcdea745f424'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'3d728ad4aa117e4938fccfa525ff2f5352adfbb373cdeb1b55bb30985c534de4'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1afd76cb12e847f9b77c9670a2b31ce12dd49a513476c21db10b6eac62bc302d'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'5ebeeb2291ec2fac4fe607b1e7bd37b700ea250d5120d4c1af7685f696fb2ef3'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07474e439b2f10d3f93f95945e4ec8d2249682bf191f20955b0a2b2ac833259e'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'110ed58da608f0563c180db4457ce544aad565cde59bf36abc5b4cda3a59c9a5'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad1d667181b4b40de957177dfdb7d88b557c73bce7c5976a659afec8471c1ee8'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'857660746766bd53a6632442f573a2210ad44b59bd06d5fc42c5fe8454774cff'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6da6605f3fdee91eeeb1eedc939ec33c70e14d51693ee179901ae816a83b104'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'631301d580efe6ac7d6e6283203f5038ec17b5c1ec08e95751f3c852eb0fa996'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ad4abef6c2f4d177795c348f48bad3c9af1cd629d55895686dc47e30094bea1'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'47028243ae2c93e5239e484c3397d63ba67021fcde7b0012bd73536d7db823a5'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0184b4f9ba0198c3641b3f870f8bcbc4909918b934dd89730af1298c58c79920'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'4768fe1e0978654d64a9b1e1710a8602ca7b408dde9726fee1f866261656a668'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4954a6d13b60867ffc9bac48c6f6076d84809b0b1e860e18d32e84859dbe3a7'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'1a1a7c3c5d319360a0811688179fa129058993871ace480a5cd3f875c7de3fc9'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'590b552e5584422a3422ff2fe2188ae0635a23d23d50ffd23c4def65f5139c79'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'36d8bed6fd6d10c286b5d6609130f2fced5f33b6b547f5ab4f9421cd618f2b0d'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2c81486f37317aa03614cc3b2e6742f887f565c2108b7a2fc755103f0043ea'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'2b55c4fbeb83f212f3a1b18b9d59cb6b16786768d5786aebe78c7d2d9fd2b72b'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f48d54ac30e7e6268b4c8e23b93348da17ce7844b7b704adb98ddcf1d61cf33a'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'9875dbf062b67f2866951ae3f7aae3ef9d1c089af5c55614ca2a5ae0716046ce'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad7a43daed90a57f46b679e82abfdba3963f283210333e81ba7f4fbb310e457'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'141486061efe9448d8ee0c24d2c529a46e4274baab30aab0b5dcfae9323d390d'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c320f4631b607d88081d1e43bd918b52105393b0584d709490884a98f229761'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'d6459b6f12a1a8e895bdb6068620efde44f762f498d5c0996f13fd27531fe5c8'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d983f7a1736a96e145fa5a8221543131d33a11fc0bf6dcce294cdc75f674afe'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'2906b2c1d6c53bc24a1da55f5038adb67b54a69295a78319d1251a86d318e735'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d5c106edbfe6944862337fb546d96cfd9c254f0ffc8058ee2dc65f9630a36e8'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'87bfe147a51d98214147ac06af121a6d8941deffac7f28a8b7ec26c49c421245'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b81c30086685db259acc4e22b3d5113520f79e0bef3f536451bcb3cf9b06108'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'f2cb1ddf4768cac1bdfe1262cff3ed564afe9ebcc97fde82fef0a5bf66f1e822'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3652bb6ed7ad45e46a6cfefff4f21c98d031af0fe730ac5cab02cfeb376ed29a'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'beecb7d6958f271072388e722fb9f303a4973a2e725aa2fa0436ee80ce7146d9'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a55d4fe16a7df2d03a2c6653601a16a410f20987413700773219e77405a45b73'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'9b7af1117dba09ef09ebf4afc49340d19fc0f691650c334cb4778b0e56e4d634'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a06ace128595e86c16325b19d89991f28b86c8e4c0946464a37ab804a121c0e'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'64a98af86fb4aad4305c4d49ce5fd82a4fdc695e72c7780dadcd9cb1f54f0561'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d251464f83a6078114b84826cf9dbd37b8fc078efa826866210b4a0121d5a2'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'a8302ba4e5bdbbffb8547762c3040b295d59cf9039288bcb4deb8e27f174a188'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59a4bdc497567a15440349e868b96815857865a0377ecce0bc4a131ffa19afdb'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'5736baa88d7501f9b00c354b951dec6a5d095741060369af2693acf29e1841f0'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56fc5dbf396113c1ed234415b68911ab91a3990e55e24a19b67b81b86cb5f7ef'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'f2a1d912f2f6c6ad2856fe457cb3106335222fec1f936d9f3d76e49379bc57b4'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cec066396dc9d17c4d18ff18bd97f7fb1370e3dccff2aa9cd6fdd727534a7827'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'dcd2392b49b108c63afff749be9a27cbbaa1f092662932becd9d457782e9089e'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dd39c2527add7f5804c06727f7f064268889867300f3a7b7a61581c71b2a242'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'4a190f12a16f5639a1018a21358366c8d896a37056c93ee70f6d623b84e83a67'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ed1a6dd2e116c16f27b5dc3d1f027c851fbb1bdc252a5e450e0afcb1c4bd8b9'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'15af2ff0ec46b3c76d0536c6c0074eaa7090d4ce007c032b47e9b5203d127698'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe7cfe8d1f40ebe94ab61c6bf5cc8a45ca25f69012f84f3b52fbc28ebf7c2399'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'e816a482af34fa75060fe9c794e6fa2dcb055a8e7f7946b6b71cfa0eee9c281d'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'274b514f04613bb82f20dd3abd2ce40ec56d799da14aad18b1d1a0a0e1a2086c'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'890df9ef94eb21f83a117eb8d06c1b87864731c556aaf67854466f6327983e27'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bbfe7d32eef643fc015eba7e3181c2fc4e4ed353e3221e3cec2661f9a37217'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'df6d984d076b4fdb2ad7c25f54866277875a4c693887b69743f8106b70b16100'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60362fad69d473c060dd04122874c864ae9c68eabe4bb550a27560f6e11f6d35'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'28f909ff9fd21e4b35866a7c2dfa156e96e2839bf2c4f3af42483b78db8465cb'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056e6119ace40e9563994bcd0270e968e926e694f03d53f93d95761e0072f4f6'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'8842d49b3bbf562f62e81b438b4304906b6e96ebb2fb80f9dcfabb8e77ded09a'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3998991a7d8f16b9d3a0d300abc5f484626ccc454818b7b4e6ead0df990a1133'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'c106a9377b0f6bbf43470a0a56cfbc6996b9afdff081f94ee7008da467ee7ab9'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffbdd952417687bbe7403f98d6e38056c071c7dd65bcda3fbf731aee7aae10de'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'3fc3715d5a6b189be1f396816571cfb605eee2ed06339aeb4fcc0882102e866a'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ea15d0a4916cd1a8684f0eae396246bcd55ca672c151f8c718c213dac17ee2'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'382ff361d3e550a0ceb99ee376c39b5292ad100009d81e9795a080c775c5d6f4'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6397e81b66d138a12279361c1d1098c11e9067e1e72020adb16b8c4de788a6f'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'542403f81e86ad92c04c3a5eebf5cd49786b9e119782bc097c8a259cd6af1c69'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'279c104102b5680f51980394e7a99059ba7db0dc3b617fedbb4c6daabcdbb660'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'223bbd2a74474fed006fac5f83237c42b31a820536c062f63525b5eab917cfd3'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66344b7f7600b971dab42706d1c1cc5c3595282de995dc52690383e599f212b4'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'a047e09ed56e7b889c08553374b300482478849ac7b9d4a639f818553d752d98'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd23b1b5d6e008784409c48c86b4b5fd0883470cb1689d854afaa5d32b156929'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'5d6fdef1e00f2018f53da52d5ed4efe34fabdea07879b5288145f2c527c8a749'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33da6b078016b4946be3e1c34c7fd49099eacb292d3e7721fab568bdc1c3568f'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'fedfa2251a23c316d83bbd16b2ac28d5ed9e85d66b34eca9b9c1fd236569a199'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da1af6a39a4721506dd2f81d2eca52868da3bbabe26925691a8f5f372941dffc'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'6629f41a6c5051d75c64b58e502d35071c2f5d0aa977d64bfcc645ca3d47fe97'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'854b0276247cd25919d0e1fcecc8f72e4ae175c861b0b31013fb288c70e4efbf'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'37033dc811e6b6c5d47b72f9f9a4cea8b2209a04f2d1bc5f7187cfa8cd569046'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14c7b19cf6732c4b5583ae514384c43c1c0012b1fb7d97da1eda9071adf89387'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'869c38e9923d33df8849df6c3fd7c36bdadd2b5469043e312baee2da2cf6052a'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'694575c72048f2af8e2f41a2da3f78cea97c403cace38712b97fff6dfc9c7fc3'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'ba5f9014c770f77193319d764afb4070e76f59c1f9413e0b6fa957101fd1eb77'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad7d96286c7f77cc3f53bd3345fd415f78d670821902b7200d2d96da014ee80b'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'0f95a38595bc80d023f639ef1e1d9bea373b1cd18b32c1db72c353add1fd7dac'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325d88784b46ddc71becfeb3bd0533f4bf502b559c6e8710e657bb7ba4a22bfd'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'b8eeca0e506794b08218d6af3d0f2c40e57fcc5ab826474f4204b6891b85f9fc'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75dbabcd63b9851eb7b2d49b3a3e261473cc573181cc720198ef76fefb81340a'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'07ba25043e2875359fe1ac542cb3170a8966f9dd9db57a6e67e4a2046ceb6440'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12fec734b49a9fced85419c6d55a01d0d9f90cf4bbfb75aa1103ca6925239793'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'cb996c316c487cbbb4051687c8bacd10750e5a997b43fc2fc25bf15eef75fea8'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2314fcb4ec6263206532a3a831636bc77b87f57595b57a6b3648b82b44a5b5a'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'62e31e03d906f526d602bef81acae7ba758d45dc51b3067cbd810c5fc735efef'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb7bf4dab1e1e74cff1ec731ce8dec02e5667e2f944c4a5d56e4a54ff8c7ff2'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'f1233d6a917651cd52f4e898969e183e72d43dcb201d80464103b997831bbe80'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b74c0890f113bdc4b19fae642415d8a3ff020b90897c72175713b50d17b1dcb'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb64801eb836107b66f087a42a71811d6a4df49706bbb528628f5a0159a7658'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134b690ef450197b0f427175bd9ca80127b31a62298a9c117d2b2d142f71ff75'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'96654d3770f057ba5cc35f0d021e07a53e85eafdd5dbc03c0ff50d82e80a15e3'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f19b5d81b8f5cb268cc414ed3e5cb7d379c7ba2e59969487db77a6e85e778fe'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'d4cd8f6ca2cef2a6948568de1e29cce6e0e2e8ecd76d59ea567a98c86fa9fc5c'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a36d05f5ef50ac415d1f15d3506a37be350466764e1f624ad8eb8131484a98d6'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'0f4b0887dabfa67c81b5637224f2d0f827cca03f45f94f743787cc2f5320da8e'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6efb6fe30820cb6844afc3c3031a39004f0f5300618fa68aa047babcd17a4774'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'dd6ebab2b22b86f7e6503d55e4f433858119945558211cfb0a457b21c5e5eb37'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a928b1b1ddb50e534671e4e3491213e09f9a09971757197f799293902226762'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'e7dd99ae77ac7dd3550765e67040350f497b2e05e69a07abf7e6f04aeecf44e7'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ef46dc86fcc0049dcc7cf112c61e313ac518dc854f627a300f74d8b84e88f87'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'8f50c8e6977586472ee10d5ab541d7a7dd023714762e39758c452a81d3aca470'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe14db68ea75741cd31e987f7383830c1f53cb96e69039121960ae55057562b6'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN From 3f54146edf5192cf79ab3cee30a8518bc16868d0 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 15:37:16 +0000 Subject: [PATCH 023/138] fixes; fix regtest --- apiary.apib | 3902 +++++++++-------- .../counterpartycore/lib/api/api_server.py | 5 +- .../counterpartycore/lib/api/compose.py | 12 + .../counterpartycore/lib/messages/attach.py | 2 - .../counterpartycore/lib/messages/move.py | 2 +- .../counterpartycore/lib/util.py | 2 +- .../test/regtest/apidoc/apicache.json | 3490 +++++++-------- .../test/regtest/genapidoc.py | 4 + .../test/regtest/regtestnode.py | 15 +- .../scenarios/scenario_1_fairminter.py | 4 +- .../scenarios/scenario_2_fairminter.py | 2 +- .../regtest/scenarios/scenario_5_dispenser.py | 4 +- .../test/regtest/scenarios/scenario_7_utxo.py | 4 +- 13 files changed, 3832 insertions(+), 3616 deletions(-) diff --git a/apiary.apib b/apiary.apib index a9c5da9ad0..786fadf160 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-31 11:09:38.765657. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-31 15:34:00.555943. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", "block_index": 209, - "block_time": 1730372962, + "block_time": 1730388823, "difficulty": 545259519, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff" + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245" }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 660, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", "block_index": 209, - "block_time": 1730372962, + "block_time": 1730388823, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "fee": 0, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 661, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "out_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 668, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 667, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 209, - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "block_time": 1730372962, + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 672, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 676, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "quantity": 1000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "tx_index": 70, - "block_time": 1730372921, + "block_time": 1730388787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "block_time": 1730372921 + "block_time": 1730388787 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "status": "valid", - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "tx_index": 74, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_time": 1730372948 + "block_time": 1730388812 } ], "next_cursor": 656, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "status": "valid", - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "tx_index": 61, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "block_time": 1730372878 + "block_time": 1730388754 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "tx_index": 42, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "block_time": 1730372719 + "block_time": 1730388599 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730372917 + "block_time": 1730388783 }, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_time": 1730372917 + "block_time": 1730388783 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", "transfer": false, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "tx_index": 69, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_time": 1730372917 + "block_time": 1730388783 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", "tag": "64657374726f79", - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "tx_index": 62, - "block_time": 1730372882, + "block_time": 1730388757, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "block_index": 196, - "block_time": 1730372882 + "block_time": 1730388757 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "open", - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 536, @@ -759,20 +759,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": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "tx0_index": 52, - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx1_index": 55, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,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": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "block_index": 189, - "block_time": 1730372844 + "block_time": 1730388732 } ], "next_cursor": 482, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73" + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 528, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10" + "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987" }, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_time": 1730372841 + "block_time": 1730388728 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "status": "completed" }, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_time": 1730372841 + "block_time": 1730388728 } ], "next_cursor": 461, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "status": "valid", - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "tx_index": 54, - "block_time": 1730372841, + "block_time": 1730388728, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_time": 1730372841 + "block_time": 1730388728 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "tx_index": 59, - "block_time": 1730372869 + "block_time": 1730388746 }, - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "block_index": 193, - "block_time": 1730372869 + "block_time": 1730388746 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "block_time": 1730372952 + "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_time": 1730388815 }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 469, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "block_time": 1730372761 + "order_match_id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "block_time": 1730388640 }, "tx_hash": null, "block_index": 185, - "block_time": 1730372761 + "block_time": 1730388640 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "satoshirate": 1, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": 0, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "tx_index": 63, - "block_time": 1730372886, + "block_time": 1730388761, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 197, - "block_time": 1730372886 + "block_time": 1730388761 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", + "destination": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", "dispense_quantity": 10, - "dispenser_tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", + "dispenser_tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", "tx_index": 31, - "block_time": 1730372679, + "block_time": 1730388556, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", + "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", "block_index": 144, - "block_time": 1730372679 + "block_time": 1730388556 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "tx_index": 25, "value": 66600.0, - "block_time": 1730372656, + "block_time": 1730388533, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "block_time": 1730372656 + "block_time": 1730388533 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "start_block": 0, "status": "open", - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "block_index": 156, - "block_time": 1730372724 + "block_time": 1730388602 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da" + "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1" }, "tx_hash": null, "block_index": 130, - "block_time": 1730372626 + "block_time": 1730388502 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "paid_quantity": 34, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "status": "valid", - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "block_index": 136, - "block_time": 1730372648 + "block_time": 1730388527 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3:0", + "destination": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "status": "valid", - "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", + "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", "tx_index": 66, - "block_time": 1730372898, + "block_time": 1730388772, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", + "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", "block_index": 200, - "block_time": 1730372898 + "block_time": 1730388772 } ], "next_cursor": 327, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", + "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", + "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", "status": "valid", - "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", "tx_index": 38, - "block_time": 1730372705, + "block_time": 1730388584, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", "block_index": 151, - "block_time": 1730372705 + "block_time": 1730388584 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "msg_index": 1, "quantity": 2000000000, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", "status": "valid", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 674, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", + "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", "status": "valid", - "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", + "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", "tx_index": 9, - "block_time": 1730372591, + "block_time": 1730388470, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", + "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", "block_index": 121, - "block_time": 1730372591 + "block_time": 1730388470 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "difficulty": 545259519, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "previous_block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "previous_block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", "difficulty": 545259519, - "ledger_hash": "e694b5ceaa98f46299804339ddd76de31b97097ef54118663d814c8c464a2c79", - "txlist_hash": "a544557c0850267a3ee1b712edca6c545c844fd3c6715dbf0682571494680bce", - "messages_hash": "78d117fd91cd0d4aa766e422576dc3d4e74441a3a2ca91c66d66cf300324a4e9", + "ledger_hash": "f0d33bc2271d95355bd480bfe20164a2ed76a3ce58f123a1d03de724e9aa6850", + "txlist_hash": "fe1a0af2449089a25fc8424a067bc21e49de2c274451f9739e2c7e2cd157d35f", + "messages_hash": "c3f77ccc2026502244ae222f879679b7bfc11cbfd99c86e7079d7bf193c6325b", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", - "block_time": 1730372948, - "previous_block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", + "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", + "block_time": 1730388812, + "previous_block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", "difficulty": 545259519, - "ledger_hash": "9eabdbdb8d08c170d24534f12804db35e8117e5ca3b030fdccfda54259afdce0", - "txlist_hash": "1856356643bbd2e31914fa137298f435690b595300ca3aae84adb85f43d62ea1", - "messages_hash": "4bb0a637432598268ad2ec8428819374864523260e3783677b78a4d06769e5e6", + "ledger_hash": "3be0751f33d5c16cbe28eee322ab13fb0ecab3bda5ac8bb62fcca6d77208abf5", + "txlist_hash": "0daf351fa19d157cfb1020e7c95cb9040a9d9ede7973ad7073cd450d67e3ae3b", + "messages_hash": "3c61e7bbc1aef836626108220cb934fab903961bdb5be5df5dfb7d88e66f1be8", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", - "block_time": 1730372944, - "previous_block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", + "block_time": 1730388809, + "previous_block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", "difficulty": 545259519, - "ledger_hash": "aaf4fbcf7a3b0486c50a58e65905057dc7811595ef9b23bf02ec111c6e676d0d", - "txlist_hash": "5667df8fbdca65263e8abd987a6b2b1bce10a2a49cf83c79f160a3f2367e10df", - "messages_hash": "2e95505b327ea4d26d95f139f964ee13bb9c1d58c8f1e27137de176fb6fc2329", + "ledger_hash": "4690b8085523af8cc624aa63a31655736e8178d31cb65decb1ec6202a3921efb", + "txlist_hash": "ff8db2fba663d4306c95542a418b4ae778f78559d38ef16ac2e94fa6974f6efe", + "messages_hash": "3e0832c951fa8443a2b61a16d2f4b4a669d8db06debf2d8a3d97b06882e1e187", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", - "block_time": 1730372940, - "previous_block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", + "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_time": 1730388804, + "previous_block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", "difficulty": 545259519, - "ledger_hash": "447c3573d199e146c7d37c7ee956ff56ff99486380b24877785bbcf155213ea1", - "txlist_hash": "13a802c86f1815eaf079e6645e15af77a619f3c7b6db436259c38db2c235f5d9", - "messages_hash": "35ecdfeac1a13aa451964516b3e0eb6c91a84c4132a2254a88506e70cf9597c5", + "ledger_hash": "83103dcef879c17a4e3bbb4313e1c1a744ae93d0a4d6d1808f0a20cba81d5a89", + "txlist_hash": "0b5b8c45c1f9d6339d4e895c6b1320bb3b86cf0fce980627162ae1c518a2a296", + "messages_hash": "4a83dd1634e7fe06beb491cff8061ff3b902b22fee98d5c0b253e70e52dbbb81", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "difficulty": 545259519, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6` (str, required) - The index of the block to return + + block_hash: `44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "difficulty": 545259519, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 680, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 679, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" } ], "next_cursor": 677, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 676, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 673, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 209, - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "object_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, "confirmed": true, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "status": "valid", "confirmed": true, - "block_time": 1730372869 + "block_time": 1730388746 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "block_index": 196, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730372882, + "block_time": 1730388757, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2669,7 +2669,7 @@ Returns the fairmints by its block index ## Group Transactions -There are 12 types of transactions: +There are 14 types of transactions: - `broadcast` - `btcpay` @@ -2683,6 +2683,8 @@ There are 12 types of transactions: - `enhanced_send` - `mpma_send` - `sweep` +- `attach` +- `detach` Here is sample API output for each of these transactions: @@ -2692,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "block_hash": "2970ed9529eb26c10200b04f47fb1e08a90962969e898d60419c877a274fb501", - "block_time": 1730372656, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "3508c7c5359a2a0acbec809744ff2e71c45a0b0e7c2bdb96d5073be50d55b022", + "block_time": 1730388533, + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e:1", + "utxos_info": " 46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_hash": "227ab2f1c6ee17f17263219d71e4bd67fd4e3cf3f456f9c711a9b0f08485c7c9", - "block_time": 1730372841, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "1d9655e1316e7135df1eaacb97bf7077f0ceaab7d3e16a77e5b5983f09008788", + "block_time": 1730388728, + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "btc_amount": 2000, "fee": 10000, - "data": "0b25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "data": "0b024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "supported": true, - "utxos_info": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec:0", + "utxos_info": " 0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "status": "valid" } }, @@ -2760,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "block_index": 193, - "block_hash": "273d17317d3a9502ff4b46b48b7d00750a40da989961d16179c27d6a2bfc7c6f", - "block_time": 1730372869, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "414a1b58d4bd644e59a40a934a4a33c28274c77165a7221e7fac3ee04a475cf1", + "block_time": 1730388746, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "data": "46f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "supported": true, - "utxos_info": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6:1", + "utxos_info": " 664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "status": "valid" } }, @@ -2791,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "block_index": 196, - "block_hash": "2255afa91f7c68293f7b302cd25f743d33facb129769309520bdc8faf5fb2f8a", - "block_time": 1730372882, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "block_hash": "2551e8539f36e32ca42ea9c4f4eab98383fd7852f898adba9b4c76f36426f6eb", + "block_time": 1730388757, + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185:1 bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1", + "utxos_info": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16:1 e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 197, - "block_hash": "0968e9382fc1a1c33d39fae9af996d7b1496dd48f635c10ae30d12a0647357c6", - "block_time": 1730372886, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "78792fcf4fd0f6c59e5faa285f1eabc047310ad7a0503c6a2e673732a029f3fe", + "block_time": 1730388761, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d:1", + "utxos_info": " 6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2877,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "block_hash": "2cc6e30704759af33c98027d779b8b752bb0925596ba29127986aa22d9e1793c", - "block_time": 1730372719, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "551fe5e43f0be41ee2d0a4405c2c56eb60ac4f92f7732c1a23e34bd7dde9bc30", + "block_time": 1730388599, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1:1", + "utxos_info": " 03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2955,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_hash": "11362c16bbd4cb118506fb1fa276c2141ed61179209e54ce4633d3f908b129c8", - "block_time": 1730372917, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "420b927a976b8e2e3db3cc4c24e106987232a8181a8d46be1d2efb652a7c90ad", + "block_time": 1730388783, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de:1", + "utxos_info": " 02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "block_hash": "5cbcac4cbc9e6b404291f80527301107900264cd12787a841c2583eabf4b0369", - "block_time": 1730372921, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "3d23f456ba64fa5d2eff4d25356e02df5365eef3fc3a690338a0d9526f538ef6", + "block_time": 1730388787, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", + "data": "02000000178d82231300000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", "supported": true, - "utxos_info": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634:1", + "utxos_info": " a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -3091,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", - "block_time": 1730372948, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", + "block_time": 1730388812, + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564:0", + "utxos_info": " e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -3124,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "block_hash": "573f69d4683632b5a9591e231467ea077fa17e9b6c191629a37fb38a97dacef3", - "block_time": 1730372878, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "block_hash": "6d461ef2c2bcfa5858d8824f32608af19d0ce6b7ae305b08d2d09ead69cd1a69", + "block_time": 1730388754, + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04806a557c3c133028848409f895fd1f2bfaf130049c017377656570206d7920617373657473", + "data": "048089327ba83f6181de1d81727d7278dcd5a82d8e96017377656570206d7920617373657473", "supported": true, - "utxos_info": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb:1", + "utxos_info": " ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "memo": "sweep my assets" } @@ -3176,6 +3178,76 @@ Here is sample API output for each of these transactions: } ``` +**Attach** + +``` +{ + "result": { + "tx_index": 66, + "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", + "block_index": 200, + "block_hash": "3dfe5afe8c6b226791bb26391ba07aed1605bf05789f3bb2dfd972718f4c805f", + "block_time": 1730388772, + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "btc_amount": 546, + "fee": 10000, + "data": "655554584f41535345547c313030303030303030307c", + "supported": true, + "utxos_info": " cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "attach", + "message_type_id": 101, + "message_data": { + "asset": "UTXOASSET", + "quantity": 1000000000, + "destination_vout": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000" + } + }, + "btc_amount_normalized": "0.00000546" + } +} +``` + +**Detach** + +``` +{ + "result": { + "tx_index": 38, + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", + "block_index": 151, + "block_hash": "54c626cf9a3403680d580f9c9a8c4a3ebbd71edc15e8f7186d940ef9762d27ae", + "block_time": 1730388584, + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "66626372743171636874706d67783663633464383836757372786e666e7476616c6a6b6871387173757a346d38", + "supported": true, + "utxos_info": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0 a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "detach", + "message_type_id": 102, + "message_data": { + "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8" + } + }, + "btc_amount_normalized": "0.00000000" + } +} +``` + ### Get Transactions [GET /v2/transactions{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the list of the last ten transactions @@ -3199,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010121e70ff051b5f7f0b6ab2d453ec3c6a643b7cfceece48d361425a05ab80276b40000000000ffffffff020000000000000000356a339ff15f771b17da5432370c2fe147160379b815595219618e435eb4be6b7ebe2ab0bb389832e3eb4212fa80ff2121ea438de313f0ca052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820247304402207812410e7118de06de7e1245b57557eb08a9136c12fea958134cd5ed567dae2f02207e626cef7dbbd37efcdd61f441085ccb80d37113086768fc7b8443b9922d82f801210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001066b89040320553dc277ad7cb519383254e60086ce36ee617020af8eba2e55fcf10000000000ffffffff4c8aee87908b6b34a3dd885c25ab8a05e9b869281b25dd7e54cc86c20f7d74ae0000000000ffffffffac8fde2041b41f6fe8aba11bdf3c3dfda68f36cd4a788c14e2d734bb7ce613540000000000ffffffff5a68b5fd5e2de81a0d0b2b2e6e3f72a629d2096d19c4df863b75e02b7f9c87250000000000ffffffff5233472df64b6a0f74ed8ea3fa99c3e069b02145cf6bf4024221a8774e7ac38b0000000000ffffffff96ac83ffc648fcaabb221490474ff575d03bff9cbbdcecd8196927de013cde150000000000ffffffff04e80300000000000069512103d164c6d286f929d0e56f9e4089c03adb55f18596061f1d0817b9fbd9ab5b5e9f2102069f8eb3212b2b5584b3893c32c2b80a45a5315954c5bbe35ea9376c4854c47f2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512103d164c6d286f929d0e5b283c27bef911be791ca2a3a4c145a0d3be3c69b91a5282102953b0e385ec8f11b8280d4a628e6447fb94ae919a4da1b0eb2f623f7f73545d82102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512102f064c6d286f929d0e56c9e43099263633b446207b4da007166156bdf9b55710f2103953b0e385ec8f13197354113942c447fb94ae919a4d09e63d79b4cc4773545652102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae387923fc0600000016001478682e5b8327b7725f504f257781372d3f4df0590247304402206359adb985fd6368ad13aa0001e648d7ecd2e1323f80d36d41bb7a96bb3315be02201a6f17d85cb52c2d478b31fbc735110e65d01c8d455f461d6b20951bf27daf1f012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f02473044022058da2b8a4717a42e53f37e0c07d30c634d428ce74c7030c4f21321af250abbf202205d95de4f24f6b3312abfdb1def46ccb8f58068456813a2c77446a2c2616ed6f0012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f024730440220394dab9061809fc86c2b0d9a6cf4ef012d06113562fef4de987fcd68ee9e858f02201b58eeb12693a95a081ba7de22c6ed42fbffe7c8e18b70576c1198360d218c8c012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f0247304402201ba3397763d08bf79bcf17ee6e7fb24e8892a57ae5c9ea01676de059003e141202206e574a387362745a5de847e284e2b8edce1111266586d5f0113dea4a859c0f96012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f0247304402203376f631a65e6a2e0e465e3061e291d75aac2e4592918ce772d61b35c10ff2e9022072f7fbbac9af2944656b92309c697db5c7235f49104745bb5cfc6f4745c40e65012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f0247304402207ef4076a621b57dbc3195bfbd0d274a12cf441ec957b3f19bfb566a47dbd56cf02206d4bfe5d4b643fa36baea6221ea1c53a2501189166ae7bc291b1c7feb2c34dd3012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,18 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "21e70ff051b5f7f0b6ab2d453ec3c6a643b7cfceece48d361425a05ab80276b4", + "hash": "6b89040320553dc277ad7cb519383254e60086ce36ee617020af8eba2e55fcf1", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "4c8aee87908b6b34a3dd885c25ab8a05e9b869281b25dd7e54cc86c20f7d74ae", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "ac8fde2041b41f6fe8aba11bdf3c3dfda68f36cd4a788c14e2d734bb7ce61354", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "5a68b5fd5e2de81a0d0b2b2e6e3f72a629d2096d19c4df863b75e02b7f9c8725", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "5233472df64b6a0f74ed8ea3fa99c3e069b02145cf6bf4024221a8774e7ac38b", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "96ac83ffc648fcaabb221490474ff575d03bff9cbbdcecd8196927de013cde15", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3310,51 +3417,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a339ff15f771b17da5432370c2fe147160379b815595219618e435eb4be6b7ebe2ab0bb389832e3eb4212fa80ff2121ea438de313" + "value": 1000, + "script_pub_key": "512103d164c6d286f929d0e56f9e4089c03adb55f18596061f1d0817b9fbd9ab5b5e9f2102069f8eb3212b2b5584b3893c32c2b80a45a5315954c5bbe35ea9376c4854c47f2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" }, { - "value": 4999990000, - "script_pub_key": "0014a320dcd943e34b574eafb9cec3aff4f713c7e282" + "value": 1000, + "script_pub_key": "512103d164c6d286f929d0e5b283c27bef911be791ca2a3a4c145a0d3be3c69b91a5282102953b0e385ec8f11b8280d4a628e6447fb94ae919a4da1b0eb2f623f7f73545d82102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + }, + { + "value": 1000, + "script_pub_key": "512102f064c6d286f929d0e56c9e43099263633b446207b4da007166156bdf9b55710f2103953b0e385ec8f13197354113942c447fb94ae919a4d09e63d79b4cc4773545652102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + }, + { + "value": 29999987000, + "script_pub_key": "001478682e5b8327b7725f504f257781372d3f4df059" } ], "vtxinwit": [ - "304402207812410e7118de06de7e1245b57557eb08a9136c12fea958134cd5ed567dae2f02207e626cef7dbbd37efcdd61f441085ccb80d37113086768fc7b8443b9922d82f801", - "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" + "304402206359adb985fd6368ad13aa0001e648d7ecd2e1323f80d36d41bb7a96bb3315be02201a6f17d85cb52c2d478b31fbc735110e65d01c8d455f461d6b20951bf27daf1f01", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "3044022058da2b8a4717a42e53f37e0c07d30c634d428ce74c7030c4f21321af250abbf202205d95de4f24f6b3312abfdb1def46ccb8f58068456813a2c77446a2c2616ed6f001", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "30440220394dab9061809fc86c2b0d9a6cf4ef012d06113562fef4de987fcd68ee9e858f02201b58eeb12693a95a081ba7de22c6ed42fbffe7c8e18b70576c1198360d218c8c01", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "304402201ba3397763d08bf79bcf17ee6e7fb24e8892a57ae5c9ea01676de059003e141202206e574a387362745a5de847e284e2b8edce1111266586d5f0113dea4a859c0f9601", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "304402203376f631a65e6a2e0e465e3061e291d75aac2e4592918ce772d61b35c10ff2e9022072f7fbbac9af2944656b92309c697db5c7235f49104745bb5cfc6f4745c40e6501", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "304402207ef4076a621b57dbc3195bfbd0d274a12cf441ec957b3f19bfb566a47dbd56cf02206d4bfe5d4b643fa36baea6221ea1c53a2501189166ae7bc291b1c7feb2c34dd301", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" ], "lock_time": 0, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", - "tx_id": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_id": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858" }, "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": "MPMASSET", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "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": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "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" } @@ -3366,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102` (str, required) - Transaction hash + + tx_hash: `7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0` (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. @@ -3377,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "645362566fc33533f7dd49169002450be536eccf3a8fc6ff1bc996eac31671bc", + "hash": "8f166f92b5df50e7e820673e08370fe58ac87b8fc8bc40b58f99ce02676c65e4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e65f1cdc7328a3156da757980e8625a4b1a7502b4de6c976fbe2215348a209d4825040fa39656fc1324636cb8378c" + "script_pub_key": "6a2eb85dbb459ea84908a33a13b56a4c0f9d61b3428c9f62a3afae3421595e1808312e9fece859975255303af003e180" }, { "value": 4949930546, - "script_pub_key": "00146a557c3c133028848409f895fd1f2bfaf130049c" + "script_pub_key": "001489327ba83f6181de1d81727d7278dcd5a82d8e96" } ], "vtxinwit": [ - "30440220667d6950f6813d1716a12e33ec4ef58bb0e1b861bbf9ebc61ccd01d59bf0dc1202201aa80348cbe74604c53bbc145967caa7c1f8354b2a527397582ce01f62cdd82d01", - "02688503f0c14a3aa32e67d330e2abff1caded26f0edabb8345e8f2df6f01c16b6" + "3044022040a81983cc671957eb31f3f5fa15172b390e4657b653a5367afb5adb44985b9f02201ad999e70949b602a0904dd25475d183f4bc801fee903cb294b6b55c7adde8ed01", + "022e81e49c06e82646fb1b2bd54c354500668ccaca97156448c0c855f3c3f33e4a" ], "lock_time": 0, - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", - "tx_id": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102" + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_id": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction + + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (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. @@ -3521,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 680, @@ -3588,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 679, @@ -3617,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 677, @@ -3666,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "msg_index": 1, "quantity": 2000000000, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", "status": "valid", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 676, @@ -3698,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction to return + + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -3722,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 680, @@ -3736,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 679, @@ -3765,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 677, @@ -3814,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "msg_index": 1, "quantity": 2000000000, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", "status": "valid", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 676, @@ -3846,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction to return + + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (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 @@ -3865,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3876,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3900,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -3922,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction to return + + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (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 @@ -3942,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4152,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 676, @@ -4052,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 673, @@ -4079,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": null, @@ -4109,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The hash of the transaction to return + + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `682` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4262,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 676, @@ -4162,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 673, @@ -4189,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": null, @@ -4221,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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 @@ -4245,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4266,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4287,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4308,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4329,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4350,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4377,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - Comma separated list of addresses to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4573,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", - "block_time": 1730372948, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", + "block_time": 1730388812, + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564:0", + "utxos_info": " e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4591,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4475,7 +4606,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4625,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "block_index": 206, - "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", - "block_time": 1730372944, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", + "block_time": 1730388809, + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e96c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3:0", + "utxos_info": " f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4643,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4527,7 +4658,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4677,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", - "block_time": 1730372940, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_time": 1730388804, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", + "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4695,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4579,7 +4710,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4729,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", - "block_time": 1730372935, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", + "block_time": 1730388790, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", + "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4747,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4631,7 +4762,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4790,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -4695,11 +4826,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "open", - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4723,24 +4854,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 208, - "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,37 +4881,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "block_time": 1730372952 + "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_time": 1730388815 }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -4790,25 +4921,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "block_index": 208, - "block_time": 1730372952, + "block_time": 1730388815, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4840,9 +4971,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 657, @@ -4855,7 +4986,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7,bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99,bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn` (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 @@ -4871,17 +5002,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "quantity": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, "asset_info": { "divisible": true, @@ -4892,22 +5023,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +5048,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "block_index": 209, - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +5073,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730372966.5065725, + "block_time": 1730388828.1054614, "btc_amount": 0, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "destination": "", "fee": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, - "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", + "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +5110,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -4992,7 +5123,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -5012,7 +5143,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5151,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5166,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,14 +5181,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5072,7 +5203,7 @@ Returns the balances of an address "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5211,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5097,7 +5228,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -5110,7 +5241,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5135,7 +5266,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5185,16 +5316,16 @@ Returns the credits of an address "result": [ { "block_index": 208, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,16 +5337,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -5227,16 +5358,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372944, + "block_time": 1730388809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5248,20 +5379,20 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "event": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5269,16 +5400,16 @@ Returns the credits of an address }, { "block_index": 193, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "event": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "asset_info": { "divisible": true, "asset_longname": null, @@ -5299,7 +5430,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5338,16 +5469,16 @@ Returns the debits of an address "result": [ { "block_index": 208, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5490,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,20 +5511,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5401,16 +5532,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "divisible": true, "asset_longname": null, @@ -5422,20 +5553,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5452,7 +5583,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address of the feed + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5618,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -5506,9 +5637,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", + "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", "block_index": 137, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5647,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372652, + "block_time": 1730388530, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5661,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -5549,14 +5680,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "4dbaefc8d36d8532ac5a1251625cfbab0083d71528cea66301ec68ce3fbbc9ef", + "tx_hash": "692df354dadcb4b6e85230b8e927455d55443441923eb63c69e09f3d33aacfd6", "block_index": 112, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730372559, + "block_time": 1730388438, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5702,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -5590,10 +5721,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5732,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -5614,10 +5745,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5756,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5638,10 +5769,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5780,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5662,10 +5793,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5804,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "divisible": true, "asset_longname": null, @@ -5686,10 +5817,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5828,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5719,7 +5850,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa` (str, required) - The address to return + + address: `bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8` (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 @@ -5738,10 +5869,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", "block_index": 151, - "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", - "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", + "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", + "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5749,11 +5880,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372705, + "block_time": 1730388584, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5771,7 +5902,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5791,10 +5922,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5933,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5815,10 +5946,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5957,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5839,10 +5970,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5981,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5863,10 +5994,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +6005,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5887,10 +6018,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +6029,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372921, + "block_time": 1730388787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5920,7 +6051,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa` (str, required) - The address to return + + address: `bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +6079,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +6108,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +6119,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +6129,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6014,9 +6145,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6156,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6166,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6060,7 +6191,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -6073,9 +6204,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6215,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6225,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6247,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -6136,19 +6267,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", + "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6287,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6302,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6185,19 +6316,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6336,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6351,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6365,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6385,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6400,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6422,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address to return + + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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 @@ -6311,19 +6442,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", + "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6462,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6477,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6360,19 +6491,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6511,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6526,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6540,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6560,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6575,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6597,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -6487,19 +6618,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6638,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6653,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6667,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6687,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6702,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6724,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address to return + + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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` @@ -6614,19 +6745,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6765,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6780,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6794,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6814,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6829,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6851,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7` (str, required) - The address to return + + address: `bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99` (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 @@ -6739,16 +6870,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6893,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6794,14 +6925,14 @@ Returns the issuances of an address "result": [ { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6947,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", + "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6975,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372747, + "block_time": 1730388626, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", + "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +7003,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730372743, + "block_time": 1730388621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", + "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +7031,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372739, + "block_time": 1730388617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6b521808131797a5b8c2267019a8eb6c51a0cbd3b3527b42ba78b02a7ea03ba7", + "tx_hash": "dadccac15a0cd2343816a234c9eb7d525d8473782a746c1032e8046f29847c30", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +7059,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372735, + "block_time": 1730388614, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +7074,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The issuer or owner to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,8 +7097,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -6975,16 +7106,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -6992,16 +7123,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7140,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7157,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730372645, - "last_issuance_block_time": 1730372648, + "first_issuance_block_time": 1730388523, + "last_issuance_block_time": 1730388527, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7174,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730372630, - "last_issuance_block_time": 1730372641, + "first_issuance_block_time": 1730388506, + "last_issuance_block_time": 1730388519, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7189,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The issuer to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -7081,8 +7212,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -7090,16 +7221,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -7107,16 +7238,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7255,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7272,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730372645, - "last_issuance_block_time": 1730372648, + "first_issuance_block_time": 1730388523, + "last_issuance_block_time": 1730388527, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7289,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730372630, - "last_issuance_block_time": 1730372641, + "first_issuance_block_time": 1730388506, + "last_issuance_block_time": 1730388519, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7304,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The owner to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,8 +7327,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -7205,16 +7336,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -7222,16 +7353,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7370,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7387,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730372645, - "last_issuance_block_time": 1730372648, + "first_issuance_block_time": 1730388523, + "last_issuance_block_time": 1730388527, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7404,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730372630, - "last_issuance_block_time": 1730372641, + "first_issuance_block_time": 1730388506, + "last_issuance_block_time": 1730388519, "supply_normalized": "0.00000019" } ], @@ -7288,7 +7419,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7307,17 +7438,17 @@ Returns the transactions of an address "result": [ { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7353,17 +7484,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", - "block_time": 1730372940, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_time": 1730388804, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", + "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7502,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7386,7 +7517,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7405,17 +7536,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", - "block_time": 1730372935, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", + "block_time": 1730388790, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", + "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7554,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7438,7 +7569,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7457,17 +7588,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "block_hash": "5cbcac4cbc9e6b404291f80527301107900264cd12787a841c2583eabf4b0369", - "block_time": 1730372921, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "3d23f456ba64fa5d2eff4d25356e02df5365eef3fc3a690338a0d9526f538ef6", + "block_time": 1730388787, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", + "data": "02000000178d82231300000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", "supported": true, - "utxos_info": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634:1", + "utxos_info": " a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7606,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7491,17 +7622,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_hash": "11362c16bbd4cb118506fb1fa276c2141ed61179209e54ce4633d3f908b129c8", - "block_time": 1730372917, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "420b927a976b8e2e3db3cc4c24e106987232a8181a8d46be1d2efb652a7c90ad", + "block_time": 1730388783, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de:1", + "utxos_info": " 02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7535,7 +7666,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -7554,20 +7685,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7592,7 +7723,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7621,9 +7752,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7638,7 +7769,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7664,9 +7795,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7681,7 +7812,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7707,9 +7838,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7724,7 +7855,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7750,9 +7881,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", + "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", "block_index": 194, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7898,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372873, + "block_time": 1730388749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7924,9 @@ Returns the orders of an address }, { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7810,7 +7941,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,7 +7976,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The source of the fairminter to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +8001,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +8029,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +8038,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +8066,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730372645, + "block_time": 1730388523, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +8078,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +8106,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730372630, + "block_time": 1730388506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +8118,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8146,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730372626, + "block_time": 1730388502, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8158,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8186,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8208,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address of the mints to return + + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8226,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8119,22 +8250,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", + "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372641, + "block_time": 1730388519, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8143,22 +8274,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", + "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372638, + "block_time": 1730388515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8167,22 +8298,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", + "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372633, + "block_time": 1730388510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8191,22 +8322,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0635df74567bc519be99ceb9cfed5d778dcecf6c0a631757d81fb54657ffcc40", + "tx_hash": "ad7ded8aea74e95132cd8c881f2459fba118fcdd32483b685e18a99ce87ce6f7", "tx_index": 15, "block_index": 127, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372615, + "block_time": 1730388491, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8215,22 +8346,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8249,7 +8380,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address of the mints to return + + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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` @@ -8268,22 +8399,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8304,7 +8435,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0` (str, required) - The utxo to return + + utxo: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8324,8 +8455,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset_info": { "divisible": true, "asset_longname": null, @@ -8338,12 +8469,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8383,8 +8514,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will make the bet - + feed_address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will make the bet + + feed_address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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) @@ -8456,7 +8587,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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) @@ -8516,7 +8647,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8528,7 +8659,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001018e9790a27a7e684e35c3fca2b87b7d16260d5c4d26eceba390387226f91e5b8200000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29fcb643b1567ba5773f400a234b5ef3f353504fca72348178a4e147bfe95e8bfc0141304dbcd5d0d70b83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101f30ff68f32191b4982340f8b1087e9cb3254689e95417f5498cc0666baaa6a490000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29e9a8a04368bcc2c13e3168c3664f67092b0e5086e14b4c83ad6ec26fa4281f8249f77e25879a93b1fe83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8550,8 +8681,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending the payment - + order_match_id: `25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending the payment + + order_match_id: `024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0` (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) @@ -8607,23 +8738,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" }, "name": "btcpay", - "data": "434e5452505254590b25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb736f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "data": "434e5452505254590b024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1fc1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101773cba658e516ae2ff2312d8994161fed0e8740fc7a9859c26148bc2c73d1f0400000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03b80b000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28200000000000000004b6a4969c9b8197a1ed0cd0fcb98f46a47abe54637aa9c392f14f022ae9820e738a5978297b1d754c7a52105e585e9ef0d498d8f102db91618f89839b112f88584173c822688e5e2fffb4bdaa99f052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101237cdd6abab4cdccd2941a0001fe3fc209d29136feee89600aac9187f6fb365e0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03b80b00000000000016001478682e5b8327b7725f504f257781372d3f4df05900000000000000004b6a49513fa0e770a4ed234a1da083cf514bca57a1d89e5d05ff24184d2ed56d42c5e27b49d7df1feacdaaf096f2b5cbaf6d93228e44ef43ddbef5a260e251de99deef3996cba19746428e97a99f052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "status": "valid" } } @@ -8636,7 +8767,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address with the BTC to burn + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -8695,7 +8826,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 1000, "overburn": false }, @@ -8705,7 +8836,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101915ce649ddf1b7a01cd8198db15f5867b06519002a45973e22447a4a3d25deb100000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000" + "rawtransaction": "02000000000101a353a25c14771493f0d512ea7cf0162c2035ad2cd141222319a578f5d78e63af0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000" } } ``` @@ -8715,8 +8846,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33` (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) @@ -8772,21 +8903,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33" }, "name": "cancel", - "data": "434e54525052545946a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "data": "434e5452505254594643fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101cf4c5a249a38857b26264ff85abb41f4eff0f8ec74df93d2e40ffa09b4291b7b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29c223e72b281411c64229e9a0558ab8d9b34d968662d71291de2894a918ddbda2a20611d5929ee5fdfa83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101fc26d1b96a718f0c2dc40ca4b41f3ef3bd55e5112a705fd54e4bd17f31ec1b190000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29f704f8edc0ebbc3800dde406bbcc7331c0eb8027d01001b9851edf2007064bc1d345837f7050b22c6c83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "status": "valid" } } @@ -8799,7 +8930,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -8858,7 +8989,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8877,7 +9008,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "0200000000010103aabe6ec756fb965472f05d0df2ae8c20fc3a7178d43d8383fef9ca898d6be300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000226a20afa7373e359ae8795c5a9dafd138efde689643f12c523bee0cb5d5262daf6a4c93bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101c8f3626b0417be142ca95715c8745b7bd5e239b91b2924d6ea8d55213fcf7c1c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000226a20ec86901c7f3c5a7150f444b6231f9390821a5d09c0ae30a775f4c4ef1e3c312a93bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8897,7 +9028,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: `bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654` (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) @@ -8962,7 +9093,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8986,7 +9117,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949925236, "btc_fee": 14264, - "rawtransaction": "020000000001015a1aa69aef41d782848d368fe9a68b9c911fb351c6b3afc0048330f1a7836f8601000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94affffffff0200000000000000002c6a2a537db7fa02a7337dfb635792921eb0ea1932cfa0076f5989554a2d7e89809ee758f7559b08c98624f67c74dd092701000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94a02000000000000", + "rawtransaction": "02000000000101675ca0059fa99c5c9cad64f274539dfaea653241fe200d83702d663dbe155993010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a35ffffffff0200000000000000002c6a2aec477f5a10edd262cbe088d269a3d69709160796d417fcc2495a78d064d3c1ff857a2e7e4abfd29285b274dd0927010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a3502000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9012,7 +9143,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -9071,14 +9202,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9097,7 +9228,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101bed7fba8145554f603f138f8da64c6e19ce6d7e7237889fb0669aaac53c0e81600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a216afb30c03290e5f133b0a0d3d04747d6870e13c811ad372ace5152515b52dbd5ef58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101570134c00b64742e02bdfaddc041e8760285c1d35b10cc350c98529d7415c7830000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a21124ec109d96b25e39b77d04e311b78ce9875d67366580ce5416ffe7e5e670e3da458bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9118,10 +9249,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -9186,10 +9317,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "transfer_destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "lock": false, "reset": false, @@ -9202,7 +9333,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101a473b31d0f51327a56330b424a425ce5a2b4563e23dbdf5d312cb881e5a06c3b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000236a21b9679dd5ae799cd12838cac996fd1369f5465c1341f07766bf5909fb4f7bfeb5df6bb2052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101b9ef7fad3663f913ca8b893e4484ef5496bc469a8a5c770fbe79625d52e8d83a0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000236a21dde41ded3a51f6da18fa27361ae0737776c1ccd9943ea2b8a228abb4069a4460546bb2052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9231,9 +9362,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er,bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9298,16 +9429,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", 1 ], [ "MPMASSET", - "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", 2 ] ], @@ -9315,26 +9446,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a320dcd943e34b574eafb9cec3aff4f713c7e28280f0d974e7adf3a5786359af35f6ec6d133c16f70440000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028078682e5b8327b7725f504f257781372d3f4df0598052d9b86eb5e791b2c549521a87fb7fb80e2f93a440000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104d7609f59f3ccb9f7eaf078efac78d7bf99b690b2ee8c1376e8946a075d6688c300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282fffffffffa170a9e1af4c688d156474cef273454d2e7f8c02b7392a3720a083ba679fa6d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff88639e06782b5da695bd0b5be0c20178214b9137cdca29d3daf90b918fc66d1d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffffe4e7f72a1f1d366ed1c64a9d4caf013808a086dc38c40abaa12721edbf3913f900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03e80300000000000069512103d56b6fa441a6ee2845ade2d6934442699f35935cee110e119018bbbaad1693252102f86957bc094a921bef5bed705c6853143ed13eb7a767bec99a6e36b52725718b210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aee80300000000000069512102ca6b6fa441a6ee28457ee2d413e762b546527017b95fa1a85edf144e5a05546721021aebd64cd03e75b61cfe951305c766e2d2bc2d8bb190ba899a6e335647adb51f210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aebcf216a804000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000002000002000002000000000000", + "rawtransaction": "02000000000104e75d6e5af50269c0705c4375adca7950253959b6977dbf2f68e36639e47371ad0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff54bce38d43312df81ec276feb49454fc5f1cf31f71e3db38d3df6b7ed45b61470000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff93747391fc199fa1db06cec0538ab05ff58c502ad445ade1d7cfd59a175a2ba00000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0aa29dfafc0d3daac0c01ed4183aa590bf5d83657cb05104402a8dc6dd1a46380000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03e80300000000000069512103bbf2c66f0fcfe593481b043d964d6178e3b7fc6fff10aaa9b571cffb540e8f5821031d5d2c07263bb605b92e78fe8ad283134e034e08fb1ff975253081c42187e4ed2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512102a4f2c66f0fcfe59348c8043f16350956b810dbd88d4ffae690024ecc7931c2db2102ed04ad55ff83d8b05ebfca3bc3809994b57cf606d48c5d3525308427410f20b92102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aebcf216a80400000016001478682e5b8327b7725f504f257781372d3f4df05902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9350,7 +9481,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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 @@ -9412,7 +9543,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9429,7 +9560,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9443,7 +9574,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "02000000000101c64b8963129bab406253885233b40590572d41f329daa740f88a688a5a217f3600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000356a33811ad50f213b536de3415e153fff3bd3ed3979ea6de79da25407d2b58c98fc6f884fa563328340b8dffc23f78f45eec9c16d8c38b8052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "0200000000010113dcdfdfe4a368f432f9c88948eb1ed6f6117bd3a4fd4cb0ec2434617701c80c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000356a338625f4ae8e3c7c77ee3d8bdf55c83f2e35baa7fac469f3ee9ac58a7c6a6d9211043749f29c2203f011641b56f4e3be88f1b87538b8052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9469,8 +9600,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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 @@ -9534,8 +9665,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9551,19 +9682,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", + "data": "434e54525052545902000000000000000100000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001015aa3dc4cc3e7ce5c1cad49cdae44d027ffe67fc68bdedf8937d037599a51638d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000306a2e2ca784cf66c5f0762b5b7e444f8f77b4cf916dc6972a47a9cb342f530ffc7774df88f0c1087536bb403ebd7f6e155db9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "0200000000010170a9290fea37d6f2881678c2d0247e8e868066c72145c7f51d6210df01c043c90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000306a2ec9620cb57b34e7ada6e0b8921918a6268bc5fa3a495b71bf6e1f96b2d12b067641bda940de034fcf39f964f206845db9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "quantity_normalized": "0.00001000" } @@ -9577,8 +9708,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be sending - + destination: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending + + destination: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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 @@ -9636,23 +9767,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f0d974e7adf3a5786359af35f6ec6d133c16f70407ffff", + "data": "434e545250525459048052d9b86eb5e791b2c549521a87fb7fb80e2f93a407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "020000000001017804b97c0f2299265f27beaed5207388d7b2c37b7be613667ac53bc3b990cc7500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a2123244a2654ad527c0b5f8a521994790e145e9e38ebdf51e8312ad55bf47816956f58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101ea793cbdb536e63a7bef18cedea7452b2da60b6c340094b1b963fb15c5fc53970000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a216b202a2f0a00f54b6bacc462f1ae1a9a16bd938f7d31aaeaa42c7cc6549c6e9f6158bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "flags": 7, "memo": "ffff" } @@ -9666,8 +9797,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: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn` (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` @@ -9724,8 +9855,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "quantity": 1000 }, "name": "dispense", @@ -9734,7 +9865,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "0200000000010164759932e0264d9a10273ab79ec83e848f2109b70d0ea62cb9808436fc7f1eed03000000160014f0d974e7adf3a5786359af35f6ec6d133c16f704ffffffff03e8030000000000001600146a557c3c133028848409f895fd1f2bfaf130049c00000000000000000c6a0acab8eaa7a099ce85410d8b25082701000000160014f0d974e7adf3a5786359af35f6ec6d133c16f70402000000000000", + "rawtransaction": "02000000000101339ec669fc5a667a1b06471ff2d757d189d3c4fc30bd6a394e8f903e0711bae00300000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a4ffffffff03e80300000000000016001489327ba83f6181de1d81727d7278dcd5a82d8e9600000000000000000c6a0af034aa6ee337efd8a9268b2508270100000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9751,7 +9882,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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: `` @@ -9840,7 +9971,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9871,7 +10002,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "0200000000010110ccffb8915a9f9f0970833698fffb59ccf3256654a09bda4ea881795665ec5300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000316a2f4e0a0294accf89c8a2643f09f5a8eed524334020bd754280009e9f27c31dfe73efff0fa26a974ee3b2ea381675167e23b9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101e8b915947078ac5678f54820668c3bf8f54269bd28c2b8e1c1073c6a397ddc840000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000316a2f4980614c992885063b6066529d728cf584e0a9e0d0acefa5edbabdc54ecb1077268f01249b7f515146f31aee000f4d23b9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9910,7 +10041,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: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address that will be minting the asset + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -9969,13 +10100,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9987,7 +10118,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101b46f732d0968b584ac1ff925ed0dad312f1a11ed163e783e9777f0d96a13fbc900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000166a1403bfb24ac36a548b7a4b4ca032c7c47d3eb61acc54bf052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "020000000001011e59b75282f59425869d34561899a60f045426200ff1e4fb264c4d1ecda43a210000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000166a14c32c50b16b8722bfd0e7da239f2b37e4a863389054bf052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10006,7 +10137,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address from which the assets are attached + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10066,7 +10197,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10085,12 +10216,15 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984603, "btc_fee": 14851, - "rawtransaction": "02000000000101354aa6b83637f6354b41b371ba10e30b82de4cb320a93e8f515b62cff6ddb6c500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000146a12560b2f20b098a16437c96f5ee8d95b6b4dfedbb5052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101a1bd68edbccbcfa11bb50fd68decac3b3b5cc1e1d35b99dfd0a3257c8f1120b90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000146a12903319976c0accf3b36423d30bd09abd6e1edbb5052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { - "message_type": "unknown", + "message_type": "attach", "message_type_id": 101, "message_data": { - "error": "Unknown message type" + "asset": "XCP", + "quantity": 1000, + "destination_vout": null, + "quantity_normalized": "0.00001000" } } } @@ -10102,8 +10236,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: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to detach the assets to + + utxo: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to detach the assets to + 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) @@ -10159,21 +10293,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er" + "source": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" }, "name": "detach", - "data": "434e5452505254596662637274317135767364656b327275643934776e34306838387638746c35377566753063357a383534356572", + "data": "434e545250525459666263727431713070357a756b757279376d687968367366756a683071666839356c356d757a65616863617765", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945466, "btc_fee": 25534, - "rawtransaction": "02000000000102afa9cb0e032aed5f2e61d024f4ba3d214f17fa57a5ee6931cb31abaa7f4f506100000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff4d44d51dae304ab666a719be18d2638f558db08ada59b94b10f43a523c85690001000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff020000000000000000376a3587cf0966c89f9d22ab06aee4eb9ed26801fe64dc903e2b084ef608d61bf82631cc50ac26d4eca739ca814f6e6f9db7d03fe53bd04e7a2c0a2701000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a302000002000000000000", + "rawtransaction": "020000000001023e815ab87d99f0a777059cb72613bb1a800357936e0d6887276bcf56e6e52d4900000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff784ad753c01f68dbbd3c690100364d5e70c634b4e22e8bb35bab72b21cdf8ac501000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff020000000000000000376a353ced140a7366c13450ebce50ba0f7763bf468c43eb61be5973ebcc177143d7f8752299c2f62b54a0fd584e679dbfa573b26755cd2c7a2c0a2701000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17302000002000000000000", "unpacked_data": { - "message_type": "unknown", + "message_type": "detach", "message_type_id": 102, "message_data": { - "error": "Unknown message type" + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" } } } @@ -10237,8 +10371,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -10246,16 +10380,16 @@ Returns the valid assets "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", - "owner": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "owner": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "divisible": true, "locked": false, "supply": 100000000000, @@ -10263,16 +10397,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730372894, - "last_issuance_block_time": 1730372894, + "first_issuance_block_time": 1730388768, + "last_issuance_block_time": 1730388768, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -10280,16 +10414,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "owner": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "issuer": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "owner": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "divisible": true, "locked": false, "supply": 100000000000, @@ -10297,16 +10431,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730372730, - "last_issuance_block_time": 1730372730, + "first_issuance_block_time": 1730388610, + "last_issuance_block_time": 1730388610, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -10314,8 +10448,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" } ], @@ -10343,8 +10477,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -10352,8 +10486,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730372595, - "last_issuance_block_time": 1730372608, + "first_issuance_block_time": 1730388474, + "last_issuance_block_time": 1730388484, "supply_normalized": "100.00000000" } } @@ -10384,7 +10518,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10392,14 +10526,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10407,7 +10541,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -10425,7 +10559,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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. @@ -10437,7 +10571,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -10491,9 +10625,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10508,7 +10642,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10534,9 +10668,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10551,7 +10685,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10577,9 +10711,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10594,7 +10728,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10620,9 +10754,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", + "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", "block_index": 194, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10637,7 +10771,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372873, + "block_time": 1730388749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10663,9 +10797,9 @@ Returns the orders of an asset }, { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10680,7 +10814,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10742,13 +10876,13 @@ Returns the orders of an asset { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10762,7 +10896,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10782,13 +10916,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10802,7 +10936,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10822,13 +10956,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", "tx0_index": 50, - "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 51, - "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10842,7 +10976,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10922,20 +11056,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "event": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -10943,20 +11077,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", + "event": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -10964,20 +11098,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -10985,20 +11119,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "event": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11010,16 +11144,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11079,12 +11213,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -11096,16 +11230,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -11117,16 +11251,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -11138,16 +11272,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372944, + "block_time": 1730388809, "asset_info": { "divisible": true, "asset_longname": null, @@ -11159,16 +11293,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -11248,14 +11382,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", + "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -11270,20 +11404,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -11298,20 +11432,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -11326,20 +11460,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -11354,7 +11488,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730372595, + "block_time": 1730388474, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11388,10 +11522,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11399,7 +11533,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -11412,10 +11546,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11423,7 +11557,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -11436,10 +11570,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "block_index": 206, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11447,7 +11581,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730372944, + "block_time": 1730388809, "asset_info": { "divisible": true, "asset_longname": null, @@ -11460,10 +11594,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11471,7 +11605,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -11484,10 +11618,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11495,7 +11629,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "divisible": true, "asset_longname": null, @@ -11546,9 +11680,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11557,7 +11691,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11567,7 +11701,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -11583,9 +11717,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", + "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", "block_index": 142, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11594,7 +11728,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11604,7 +11738,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372670, + "block_time": 1730388548, "asset_info": { "divisible": true, "asset_longname": null, @@ -11620,9 +11754,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", + "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", "block_index": 150, - "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", + "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11630,10 +11764,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11641,7 +11775,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372701, + "block_time": 1730388580, "asset_info": { "divisible": true, "asset_longname": null, @@ -11657,18 +11791,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11678,7 +11812,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -11703,7 +11837,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - The address to return + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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` @@ -11716,9 +11850,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11727,7 +11861,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11737,7 +11871,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -11787,7 +11921,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11795,7 +11929,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11804,7 +11938,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11812,7 +11946,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11821,7 +11955,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11829,7 +11963,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11838,7 +11972,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11875,27 +12009,27 @@ Returns the dispenses of an asset { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11910,7 +12044,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -11924,27 +12058,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", + "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", "block_index": 147, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11959,7 +12093,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372690, + "block_time": 1730388568, "asset_info": { "divisible": true, "asset_longname": null, @@ -11973,19 +12107,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11993,7 +12127,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12008,7 +12142,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -12022,19 +12156,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12042,7 +12176,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12057,7 +12191,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -12131,10 +12265,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12159,7 +12293,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12199,22 +12333,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", + "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", "tx_index": 13, "block_index": 125, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -12223,22 +12357,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "tx_index": 12, "block_index": 124, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -12247,22 +12381,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -12281,7 +12415,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y` (str, required) - The address of the mints to return + + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (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` @@ -12300,22 +12434,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -12368,9 +12502,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12385,7 +12519,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12411,9 +12545,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "block_index": 188, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12428,7 +12562,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12454,9 +12588,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "block_index": 189, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12471,7 +12605,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12497,9 +12631,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12514,7 +12648,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12540,9 +12674,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", + "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", "block_index": 194, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12557,7 +12691,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372873, + "block_time": 1730388749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12592,7 +12726,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d` (str, required) - The hash of the transaction that created the order + + order_hash: `43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33` (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. @@ -12604,9 +12738,9 @@ Returns the information of an order { "result": { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12621,7 +12755,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12653,7 +12787,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73` (str, required) - The hash of the transaction that created the order + + order_hash: `024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f` (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 @@ -12680,13 +12814,13 @@ Returns the order matches of an order { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12700,7 +12834,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12720,13 +12854,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12740,7 +12874,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12770,7 +12904,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73` (str, required) - The hash of the transaction that created the order + + order_hash: `024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f` (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 @@ -12789,15 +12923,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "btc_amount": 2000, - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "status": "valid", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "btc_amount_normalized": "0.00002000" } ], @@ -12841,9 +12975,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "block_index": 188, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12861,7 +12995,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730372841, + "block_time": 1730388728, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12887,9 +13021,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "block_index": 189, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12907,7 +13041,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730372844, + "block_time": 1730388732, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12933,9 +13067,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12953,7 +13087,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12979,9 +13113,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12999,7 +13133,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13025,9 +13159,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13045,7 +13179,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13108,13 +13242,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13131,7 +13265,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13151,13 +13285,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13174,7 +13308,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13194,13 +13328,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", "tx0_index": 50, - "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 51, - "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13217,7 +13351,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372761, + "block_time": 1730388640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13275,13 +13409,13 @@ Returns all the order matches { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13295,7 +13429,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13315,13 +13449,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13335,7 +13469,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13355,13 +13489,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", "tx0_index": 50, - "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 51, - "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13375,7 +13509,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13543,66 +13677,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", + "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", "block_index": 121, - "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", + "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730372591, + "block_time": 1730388470, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "15221ed10402f0f12be3d3b41e0a88760bcd0ae85b41049ee37e3478d82693a1", + "tx_hash": "2f05366f588f21dccb295ef9cb5d8c7a397a69adac4446167ba10bbcd863af23", "block_index": 120, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730372587, + "block_time": 1730388467, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "325fb0893833128dc0bc8bec0620ecdb5ca8a76a964df89ac40ffa7a278508b9", + "tx_hash": "7a7fc5e8c6dc1952c0910c265c052ac6f377936332feaf8d3ab47084f50bfb50", "block_index": 119, - "source": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f", + "source": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730372584, + "block_time": 1730388464, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "9661048b13de4e4fbc9dbcbcc8a0184ed47a06f7ba07d1c2706b306f35740ded", + "tx_hash": "531c7e5e0671ad61656e5865ee9777b48044c10668123810976c6958c64d6b83", "block_index": 118, - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730372580, + "block_time": 1730388460, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "1b05634e27708285272060b0e392e3612346bcf97218058076dac820a9c62440", + "tx_hash": "ef542ed4add95f4bc7bbc4ee4219c14bd54be80b1161a3167e3bd95d8c3ccef7", "block_index": 117, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730372577, + "block_time": 1730388456, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13647,9 +13781,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13658,7 +13792,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13668,7 +13802,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -13684,9 +13818,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", + "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", "block_index": 142, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13695,7 +13829,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13705,7 +13839,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372670, + "block_time": 1730388548, "asset_info": { "divisible": true, "asset_longname": null, @@ -13721,9 +13855,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", + "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", "block_index": 150, - "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", + "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13731,10 +13865,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13742,7 +13876,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372701, + "block_time": 1730388580, "asset_info": { "divisible": true, "asset_longname": null, @@ -13758,9 +13892,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13769,7 +13903,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13779,11 +13913,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -13795,18 +13929,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13816,7 +13950,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -13841,7 +13975,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b` (str, required) - The hash of the dispenser to return + + dispenser_hash: `35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5` (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. @@ -13853,9 +13987,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13864,7 +13998,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13874,7 +14008,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -13896,7 +14030,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b` (str, required) - The hash of the dispenser to return + + dispenser_hash: `35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5` (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 @@ -13916,19 +14050,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13936,7 +14070,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13951,7 +14085,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -13965,19 +14099,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13985,7 +14119,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14000,7 +14134,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -14042,20 +14176,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -14080,7 +14214,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1` (str, required) - The hash of the dividend to return + + dividend_hash: `03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37` (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. @@ -14092,20 +14226,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -14127,7 +14261,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37` (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 @@ -14150,12 +14284,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "event": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "tx_index": 42, - "utxo": "651d7b2645372a69bf0e3ad1179b970f52a00eb5a9676270c2c5c275a6887b89:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "25bf60486a393bdf4e868b26f17f46225523e4eac3198ff314e13a994a79f448:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "divisible": true, "asset_longname": null, @@ -14201,27 +14335,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 680, @@ -14230,14 +14364,14 @@ Returns all events "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -14248,9 +14382,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 679, @@ -14259,9 +14393,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -14271,24 +14405,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -14298,9 +14432,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 677, @@ -14328,15 +14462,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } } ``` @@ -14414,16 +14548,16 @@ Returns the events filtered by event name "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -14433,9 +14567,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 676, @@ -14445,12 +14579,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -14460,9 +14594,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 673, @@ -14472,39 +14606,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -14514,24 +14648,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -14541,9 +14675,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_time": 1730372948 + "block_time": 1730388812 } ], "next_cursor": 651, @@ -14599,27 +14733,27 @@ Returns all the dispenses { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14634,7 +14768,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,19 +14782,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", + "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14668,7 +14802,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14683,11 +14817,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -14697,27 +14831,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", + "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", "block_index": 147, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14732,7 +14866,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372690, + "block_time": 1730388568, "asset_info": { "divisible": true, "asset_longname": null, @@ -14746,19 +14880,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14766,7 +14900,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14781,7 +14915,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -14795,19 +14929,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14815,7 +14949,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14830,7 +14964,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -14872,10 +15006,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14883,7 +15017,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -14896,10 +15030,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14907,11 +15041,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -14920,10 +15054,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14931,7 +15065,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -14944,10 +15078,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14955,11 +15089,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -14968,10 +15102,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14979,11 +15113,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15034,14 +15168,14 @@ Returns all the issuances "result": [ { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -15056,20 +15190,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "815d52022fa19c605b511180d4e62f3cebbc844e9ff537616664aa90b0f6a1d2", + "tx_hash": "fc0df4fe281cbc92383846eaedd05efb40184273d92655b7442d71aa1495f057", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", - "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "transfer": false, "callable": false, "call_date": 0, @@ -15084,20 +15218,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372894, + "block_time": 1730388768, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", + "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -15112,20 +15246,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372747, + "block_time": 1730388626, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", + "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -15140,20 +15274,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730372743, + "block_time": 1730388621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", + "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -15168,7 +15302,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372739, + "block_time": 1730388617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15183,7 +15317,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de` (str, required) - The hash of the transaction to return + + tx_hash: `02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4` (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. @@ -15195,14 +15329,14 @@ Returns the issuances of a block { "result": { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -15217,7 +15351,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15249,16 +15383,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -15272,7 +15406,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb` (str, required) - The hash of the transaction to return + + tx_hash: `ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860` (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. @@ -15285,16 +15419,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -15328,9 +15462,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15338,14 +15472,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372656, + "block_time": 1730388533, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", + "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", "block_index": 137, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15353,7 +15487,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372652, + "block_time": 1730388530, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15367,7 +15501,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e` (str, required) - The hash of the transaction to return + + tx_hash: `46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae` (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. @@ -15379,9 +15513,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15389,7 +15523,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372656, + "block_time": 1730388533, "fee_fraction_int_normalized": "0.00000000" } } @@ -15426,10 +15560,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15454,7 +15588,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15463,10 +15597,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15491,7 +15625,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730372645, + "block_time": 1730388523, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15503,10 +15637,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15531,7 +15665,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730372630, + "block_time": 1730388506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15543,10 +15677,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15571,7 +15705,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730372626, + "block_time": 1730388502, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15583,10 +15717,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15611,7 +15745,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15680,22 +15814,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15704,22 +15838,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", + "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372641, + "block_time": 1730388519, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15728,22 +15862,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", + "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372638, + "block_time": 1730388515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15752,22 +15886,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", + "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372633, + "block_time": 1730388510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15776,22 +15910,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "98b81b67902ec22793feff63f17f03a1ecc5ff5f01fa793d3e1197e17f3d0ca4", + "tx_hash": "c52637de105c8fabf7ce0477b20977b4b12f1a91b67ea0c6e1a8c389468baa8d", "tx_index": 17, "block_index": 129, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372623, + "block_time": 1730388499, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15810,7 +15944,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733` (str, required) - The hash of the fairmint to return + + tx_hash: `d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15821,22 +15955,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -15854,7 +15988,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd,bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f` (str, required) - The addresses to search for + + addresses: `bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654,bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0` (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. @@ -15868,22 +16002,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 546, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-06, - "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62", - "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" + "amount": 49.499395, + "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67", + "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949939500, + "value": 546, "confirmations": 9, - "amount": 49.499395, - "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a", - "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" + "amount": 5.46e-06, + "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126", + "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" }, { "vout": 2, @@ -15891,8 +16025,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3", - "address": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f" + "txid": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811", + "address": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0" } ], "next_cursor": null, @@ -15905,7 +16039,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7` (str, required) - The address to search for + + address: `bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99` (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 @@ -15921,25 +16055,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1a430881b77813eed0b70a9a2b16c819199eec82b069f29a083c447343e1e709" + "tx_hash": "3574fee854efa23d216bf5d7951fa27f083e3cba676333480c408de8b131614a" }, { - "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e" + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860" }, { - "tx_hash": "ec8b60a30997a92d5cb544d6a01ac9f102bfbd90e6a5f56beaf1f4ce3f1ef14e" + "tx_hash": "b45736e63a7c69e39c202e6d69842eff67b5371fdb10fddecbf0fb91c04a7764" }, { - "tx_hash": "82d01d209e938a5870d5cdc36b1f16e06b01c07c63bdea0a35b005192d08c258" + "tx_hash": "d180e3c789f7afa1bf2c80c42cc765e47c7b4389ea05112ac8854a851ceb8564" }, { - "tx_hash": "953b89f32453823d6eba7104ccf8d08952395389017b96d72c832a47937b939e" + "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68" }, { - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" }, { - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb" + "tx_hash": "f7201490d88f113ec36ca10576adf0981a397bd17dee4957d3fae6ebbcc6ffb0" } ], "next_cursor": null, @@ -15952,7 +16086,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d` (str, required) - The address to search for. + + address: `bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs` (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. @@ -15965,8 +16099,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 8, - "tx_hash": "616aee910a3c335b90c7614b27ff1ab94bf9fe4402a7fb1e90d5b9017265e795" + "block_index": 2, + "tx_hash": "8501b17a588fa45b2e9f050340883fca514ce5b69c583e95fd14b406eab82dd3" } } ``` @@ -15976,7 +16110,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd` (str, required) - The address to search for + + address: `bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654` (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 @@ -15997,7 +16131,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62" + "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126" }, { "vout": 1, @@ -16005,7 +16139,7 @@ Returns a list of unspent outputs for a specific address "value": 4949939500, "confirmations": 9, "amount": 49.499395, - "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a" + "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67" } ], "next_cursor": null, @@ -16018,7 +16152,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er` (str, required) - Address to get pubkey for. + + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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. @@ -16030,7 +16164,7 @@ Get pubkey for an address. ``` { - "result": "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" + "result": "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" } ``` @@ -16039,7 +16173,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af` (str, required) - The transaction hash + + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (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. @@ -16051,7 +16185,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101c399130ec13cd6c2060f384a2ab92c6148fb0eefa4a4f3ffa0a318439b9cadc10100000000ffffffff03e803000000000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a300000000000000000c6a0a39898743a58f2537b621eb1409270100000016001476701feb6d44cfb52c69c0277a7040289bbccb850247304402207af0f255c61e8dcf5bd7388fc9e0168ea1268fd1efa06ccb151f838d9d0b6be802201b2479032f8ce8f34f6d65eec1577352fbfaf3e80572a9998c9f371238aa620b012103354728ec0c9b84cbc2c4ebc877ae9be2833498a3a28821d03b97893ab3f4efc500000000" + "result": "0200000000010111f887b8683bc4054efc8bfa6061778d6eb868868f47c5603264399d39abdf140100000000ffffffff03e803000000000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17300000000000000000c6a0a8e74c0503d7ed91aabe5eb140927010000001600148438dff1939dbbf2323fc0765732298c162d678c02473044022020e6d95b1e6c95d2efb9805c2c0cab68ae8db334bd627e59322aa08c62eaa23b0220736569640c08cb17cef4ad9abfdd33db21b44cce519cb78d26b07a7919f19cab01210307c380fb682c6be41e362b8eb8de3db81b094b1889ea57382edab49518f9d8ff00000000" } ``` @@ -16146,27 +16280,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77 }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "quantity": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, "asset_info": { "divisible": true, @@ -16177,22 +16311,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -16202,22 +16336,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "block_index": 209, - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -16227,30 +16361,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730372966.5065725, + "block_time": 1730388828.1054614, "btc_amount": 0, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "destination": "", "fee": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, - "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", + "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -16264,7 +16398,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -16295,19 +16429,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -16317,7 +16451,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -16330,7 +16464,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102` (str, required) - The hash of the transaction to return + + tx_hash: `7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0` (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 @@ -16350,27 +16484,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77 }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "quantity": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, "asset_info": { "divisible": true, @@ -16381,22 +16515,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -16406,22 +16540,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "block_index": 209, - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -16431,30 +16565,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730372966.5065725, + "block_time": 1730388828.1054614, "btc_amount": 0, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "destination": "", "fee": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, - "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", + "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -16468,7 +16602,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index d2eddc8f1a..3fe82003a9 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/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index e0e8e33693..184c5856be 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -905,6 +905,18 @@ def unpack(db, datahex: str, block_index: int = None): elif message_type_id == messages.fairmint.ID: message_type_name = "fairmint" message_data = messages.fairmint.unpack(message, return_dict=True) + # utxo + elif message_type_id == messages.utxo.ID: + message_type_name = "utxo" + message_data = messages.utxo.unpack(message, return_dict=True) + # Attach + elif message_type_id == messages.attach.ID: + message_type_name = "attach" + message_data = messages.attach.unpack(message, return_dict=True) + # Detach + elif message_type_id == messages.detach.ID: + message_type_name = "detach" + message_data = messages.detach.unpack(message, return_dict=True) except (exceptions.UnpackError, UnicodeDecodeError) as e: message_data = {"error": str(e)} diff --git a/counterparty-core/counterpartycore/lib/messages/attach.py b/counterparty-core/counterpartycore/lib/messages/attach.py index 8fd7f05135..72817a96c3 100644 --- a/counterparty-core/counterpartycore/lib/messages/attach.py +++ b/counterparty-core/counterpartycore/lib/messages/attach.py @@ -163,9 +163,7 @@ def parse(db, tx, message): # determine destination if destination_vout is None: # if no destination_vout is provided, we use the first non-OPT_RETURN output - print("UTXO INFO", tx["utxos_info"]) destination = util.get_destination_from_utxos_info(tx["utxos_info"]) - print("DESTINATION", destination) if not destination: problems.append("no UTXO to attach to") else: diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index 9389524bbd..c4ebb340a8 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -15,7 +15,7 @@ def move_assets(db, tx): ) # do nothing if no source or destination - if not len(sources) or not destination: + if len(sources) == 0 or not destination: return # we move all assets from the sources to the destination diff --git a/counterparty-core/counterpartycore/lib/util.py b/counterparty-core/counterpartycore/lib/util.py index 84be76cf6b..c672dd8774 100644 --- a/counterparty-core/counterpartycore/lib/util.py +++ b/counterparty-core/counterpartycore/lib/util.py @@ -685,7 +685,7 @@ def parse_utxos_info(utxos_info): # new format if len(info) == 4 and not is_utxo_format(info[-1]): - sources = info[0].split(" ") + sources = [source for source in info[0].split(",") if source] destination = info[1] or None outputs_count = int(info[2]) op_return_output = int(info[3]) if info[3] else None diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 4a0897f38c..c4b6b231fd 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": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "difficulty": 545259519, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "previous_block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "previous_block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", "difficulty": 545259519, - "ledger_hash": "e694b5ceaa98f46299804339ddd76de31b97097ef54118663d814c8c464a2c79", - "txlist_hash": "a544557c0850267a3ee1b712edca6c545c844fd3c6715dbf0682571494680bce", - "messages_hash": "78d117fd91cd0d4aa766e422576dc3d4e74441a3a2ca91c66d66cf300324a4e9", + "ledger_hash": "f0d33bc2271d95355bd480bfe20164a2ed76a3ce58f123a1d03de724e9aa6850", + "txlist_hash": "fe1a0af2449089a25fc8424a067bc21e49de2c274451f9739e2c7e2cd157d35f", + "messages_hash": "c3f77ccc2026502244ae222f879679b7bfc11cbfd99c86e7079d7bf193c6325b", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", - "block_time": 1730372948, - "previous_block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", + "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", + "block_time": 1730388812, + "previous_block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", "difficulty": 545259519, - "ledger_hash": "9eabdbdb8d08c170d24534f12804db35e8117e5ca3b030fdccfda54259afdce0", - "txlist_hash": "1856356643bbd2e31914fa137298f435690b595300ca3aae84adb85f43d62ea1", - "messages_hash": "4bb0a637432598268ad2ec8428819374864523260e3783677b78a4d06769e5e6", + "ledger_hash": "3be0751f33d5c16cbe28eee322ab13fb0ecab3bda5ac8bb62fcca6d77208abf5", + "txlist_hash": "0daf351fa19d157cfb1020e7c95cb9040a9d9ede7973ad7073cd450d67e3ae3b", + "messages_hash": "3c61e7bbc1aef836626108220cb934fab903961bdb5be5df5dfb7d88e66f1be8", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", - "block_time": 1730372944, - "previous_block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", + "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", + "block_time": 1730388809, + "previous_block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", "difficulty": 545259519, - "ledger_hash": "aaf4fbcf7a3b0486c50a58e65905057dc7811595ef9b23bf02ec111c6e676d0d", - "txlist_hash": "5667df8fbdca65263e8abd987a6b2b1bce10a2a49cf83c79f160a3f2367e10df", - "messages_hash": "2e95505b327ea4d26d95f139f964ee13bb9c1d58c8f1e27137de176fb6fc2329", + "ledger_hash": "4690b8085523af8cc624aa63a31655736e8178d31cb65decb1ec6202a3921efb", + "txlist_hash": "ff8db2fba663d4306c95542a418b4ae778f78559d38ef16ac2e94fa6974f6efe", + "messages_hash": "3e0832c951fa8443a2b61a16d2f4b4a669d8db06debf2d8a3d97b06882e1e187", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", - "block_time": 1730372940, - "previous_block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", + "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_time": 1730388804, + "previous_block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", "difficulty": 545259519, - "ledger_hash": "447c3573d199e146c7d37c7ee956ff56ff99486380b24877785bbcf155213ea1", - "txlist_hash": "13a802c86f1815eaf079e6645e15af77a619f3c7b6db436259c38db2c235f5d9", - "messages_hash": "35ecdfeac1a13aa451964516b3e0eb6c91a84c4132a2254a88506e70cf9597c5", + "ledger_hash": "83103dcef879c17a4e3bbb4313e1c1a744ae93d0a4d6d1808f0a20cba81d5a89", + "txlist_hash": "0b5b8c45c1f9d6339d4e895c6b1320bb3b86cf0fce980627162ae1c518a2a296", + "messages_hash": "4a83dd1634e7fe06beb491cff8061ff3b902b22fee98d5c0b253e70e52dbbb81", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "difficulty": 545259519, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "difficulty": 545259519, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 680, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 679, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" } ], "next_cursor": 677, @@ -256,16 +256,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 676, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" }, { "event_index": 673, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af" + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "object_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, "confirmed": true, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "status": "valid", "confirmed": true, - "block_time": 1730372869 + "block_time": 1730388746 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "block_index": 196, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730372882, + "block_time": 1730388757, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,18 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "21e70ff051b5f7f0b6ab2d453ec3c6a643b7cfceece48d361425a05ab80276b4", + "hash": "6b89040320553dc277ad7cb519383254e60086ce36ee617020af8eba2e55fcf1", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "4c8aee87908b6b34a3dd885c25ab8a05e9b869281b25dd7e54cc86c20f7d74ae", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "ac8fde2041b41f6fe8aba11bdf3c3dfda68f36cd4a788c14e2d734bb7ce61354", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "5a68b5fd5e2de81a0d0b2b2e6e3f72a629d2096d19c4df863b75e02b7f9c8725", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "5233472df64b6a0f74ed8ea3fa99c3e069b02145cf6bf4024221a8774e7ac38b", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "96ac83ffc648fcaabb221490474ff575d03bff9cbbdcecd8196927de013cde15", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,69 +871,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a339ff15f771b17da5432370c2fe147160379b815595219618e435eb4be6b7ebe2ab0bb389832e3eb4212fa80ff2121ea438de313" + "value": 1000, + "script_pub_key": "512103d164c6d286f929d0e56f9e4089c03adb55f18596061f1d0817b9fbd9ab5b5e9f2102069f8eb3212b2b5584b3893c32c2b80a45a5315954c5bbe35ea9376c4854c47f2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" }, { - "value": 4999990000, - "script_pub_key": "0014a320dcd943e34b574eafb9cec3aff4f713c7e282" + "value": 1000, + "script_pub_key": "512103d164c6d286f929d0e5b283c27bef911be791ca2a3a4c145a0d3be3c69b91a5282102953b0e385ec8f11b8280d4a628e6447fb94ae919a4da1b0eb2f623f7f73545d82102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + }, + { + "value": 1000, + "script_pub_key": "512102f064c6d286f929d0e56c9e43099263633b446207b4da007166156bdf9b55710f2103953b0e385ec8f13197354113942c447fb94ae919a4d09e63d79b4cc4773545652102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + }, + { + "value": 29999987000, + "script_pub_key": "001478682e5b8327b7725f504f257781372d3f4df059" } ], "vtxinwit": [ - "304402207812410e7118de06de7e1245b57557eb08a9136c12fea958134cd5ed567dae2f02207e626cef7dbbd37efcdd61f441085ccb80d37113086768fc7b8443b9922d82f801", - "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" + "304402206359adb985fd6368ad13aa0001e648d7ecd2e1323f80d36d41bb7a96bb3315be02201a6f17d85cb52c2d478b31fbc735110e65d01c8d455f461d6b20951bf27daf1f01", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "3044022058da2b8a4717a42e53f37e0c07d30c634d428ce74c7030c4f21321af250abbf202205d95de4f24f6b3312abfdb1def46ccb8f58068456813a2c77446a2c2616ed6f001", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "30440220394dab9061809fc86c2b0d9a6cf4ef012d06113562fef4de987fcd68ee9e858f02201b58eeb12693a95a081ba7de22c6ed42fbffe7c8e18b70576c1198360d218c8c01", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "304402201ba3397763d08bf79bcf17ee6e7fb24e8892a57ae5c9ea01676de059003e141202206e574a387362745a5de847e284e2b8edce1111266586d5f0113dea4a859c0f9601", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "304402203376f631a65e6a2e0e465e3061e291d75aac2e4592918ce772d61b35c10ff2e9022072f7fbbac9af2944656b92309c697db5c7235f49104745bb5cfc6f4745c40e6501", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", + "304402207ef4076a621b57dbc3195bfbd0d274a12cf441ec957b3f19bfb566a47dbd56cf02206d4bfe5d4b643fa36baea6221ea1c53a2501189166ae7bc291b1c7feb2c34dd301", + "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" ], "lock_time": 0, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", - "tx_id": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_id": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858" }, "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": "MPMASSET", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "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": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "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": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "645362566fc33533f7dd49169002450be536eccf3a8fc6ff1bc996eac31671bc", + "hash": "8f166f92b5df50e7e820673e08370fe58ac87b8fc8bc40b58f99ce02676c65e4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e65f1cdc7328a3156da757980e8625a4b1a7502b4de6c976fbe2215348a209d4825040fa39656fc1324636cb8378c" + "script_pub_key": "6a2eb85dbb459ea84908a33a13b56a4c0f9d61b3428c9f62a3afae3421595e1808312e9fece859975255303af003e180" }, { "value": 4949930546, - "script_pub_key": "00146a557c3c133028848409f895fd1f2bfaf130049c" + "script_pub_key": "001489327ba83f6181de1d81727d7278dcd5a82d8e96" } ], "vtxinwit": [ - "30440220667d6950f6813d1716a12e33ec4ef58bb0e1b861bbf9ebc61ccd01d59bf0dc1202201aa80348cbe74604c53bbc145967caa7c1f8354b2a527397582ce01f62cdd82d01", - "02688503f0c14a3aa32e67d330e2abff1caded26f0edabb8345e8f2df6f01c16b6" + "3044022040a81983cc671957eb31f3f5fa15172b390e4657b653a5367afb5adb44985b9f02201ad999e70949b602a0904dd25475d183f4bc801fee903cb294b6b55c7adde8ed01", + "022e81e49c06e82646fb1b2bd54c354500668ccaca97156448c0c855f3c3f33e4a" ], "lock_time": 0, - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", - "tx_id": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102" + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_id": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", - "block_time": 1730372962, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_time": 1730388823, + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 680, @@ -1024,14 +1083,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 679, @@ -1053,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 677, @@ -1102,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "msg_index": 1, "quantity": 2000000000, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", "status": "valid", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 676, @@ -1134,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 680, @@ -1148,14 +1207,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 679, @@ -1177,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 677, @@ -1226,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "msg_index": 1, "quantity": 2000000000, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", "status": "valid", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 676, @@ -1255,10 +1314,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1266,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1338,10 @@ }, { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1290,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1310,27 +1369,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1425,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 676, @@ -1397,12 +1456,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 673, @@ -1424,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": null, @@ -1453,16 +1512,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 676, @@ -1484,12 +1543,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 673, @@ -1511,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": null, @@ -1541,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1562,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1583,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1604,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1625,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1646,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1670,17 +1729,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1775,17 @@ }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_hash": "2280120a72f9bee2757313fe865f72e46640da26e0dda7cbc3cf7cd4c0b93b2e", - "block_time": 1730372948, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", + "block_time": 1730388812, + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564:0", + "utxos_info": " e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1793,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1749,7 +1808,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1827,17 @@ }, { "tx_index": 73, - "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "block_index": 206, - "block_hash": "41573c201ca3a58c081e82c0b432ad88360d5909e7061aa738a77d29dedd9710", - "block_time": 1730372944, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", + "block_time": 1730388809, + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a320dcd943e34b574eafb9cec3aff4f713c7e28280efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e96c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3:0", + "utxos_info": " f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1845,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1801,7 +1860,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1879,17 @@ }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", - "block_time": 1730372940, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_time": 1730388804, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", + "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1897,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1853,7 +1912,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1931,17 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", - "block_time": 1730372935, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", + "block_time": 1730388790, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", + "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1949,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -1905,7 +1964,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +2004,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "open", - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +2032,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 208, - "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2059,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "block_time": 1730372952 + "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_time": 1730388815 }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2099,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", "block_index": 208, - "block_time": 1730372952, + "block_time": 1730388815, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,9 +2149,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 657, @@ -2101,17 +2160,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "quantity": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, "asset_info": { "divisible": true, @@ -2122,22 +2181,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2206,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "block_index": 209, - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2231,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730372966.5065725, + "block_time": 1730388828.1054614, "btc_amount": 0, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "destination": "", "fee": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, - "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", + "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2268,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -2218,7 +2277,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2285,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2300,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2315,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2278,7 +2337,7 @@ "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2345,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2299,7 +2358,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -2321,16 +2380,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2401,16 @@ }, { "block_index": 207, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2422,16 @@ }, { "block_index": 206, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372944, + "block_time": 1730388809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2443,20 @@ }, { "block_index": 202, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "event": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2405,16 +2464,16 @@ }, { "block_index": 193, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "event": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2491,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2512,16 @@ }, { "block_index": 205, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2533,20 @@ }, { "block_index": 205, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2495,16 +2554,16 @@ }, { "block_index": 204, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2575,20 @@ }, { "block_index": 204, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2548,9 +2607,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", + "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", "block_index": 137, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2617,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372652, + "block_time": 1730388530, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2628,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "4dbaefc8d36d8532ac5a1251625cfbab0083d71528cea66301ec68ce3fbbc9ef", + "tx_hash": "692df354dadcb4b6e85230b8e927455d55443441923eb63c69e09f3d33aacfd6", "block_index": 112, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730372559, + "block_time": 1730388438, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2647,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2658,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2671,10 @@ }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2682,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2636,10 +2695,10 @@ }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2706,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2660,10 +2719,10 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2730,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2743,10 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2754,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2714,10 +2773,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", "block_index": 151, - "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", - "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", + "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", + "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2725,11 +2784,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372705, + "block_time": 1730388584, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2744,10 +2803,10 @@ "result": [ { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2814,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2768,10 +2827,10 @@ }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2838,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2792,10 +2851,10 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2862,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2816,10 +2875,10 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2886,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2840,10 +2899,10 @@ }, { "tx_index": 70, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2910,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372921, + "block_time": 1730388787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2875,9 +2934,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2945,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2955,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2971,9 @@ }, { "tx_index": 63, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2982,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2992,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -2954,9 +3013,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +3024,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +3034,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +3054,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", + "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3074,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3089,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -3044,19 +3103,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3123,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3138,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3152,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3172,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3187,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3207,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", + "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3227,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3242,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -3197,19 +3256,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3276,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3291,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3305,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3325,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3340,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3360,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3380,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3395,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3409,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3429,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3444,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3464,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3484,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3499,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3513,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3533,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3548,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3567,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3587,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3609,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", + "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3637,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372747, + "block_time": 1730388626, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", + "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3665,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730372743, + "block_time": 1730388621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", + "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3693,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372739, + "block_time": 1730388617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6b521808131797a5b8c2267019a8eb6c51a0cbd3b3527b42ba78b02a7ea03ba7", + "tx_hash": "dadccac15a0cd2343816a234c9eb7d525d8473782a746c1032e8046f29847c30", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3721,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372735, + "block_time": 1730388614, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3735,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3744,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3761,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3778,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3795,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730372645, - "last_issuance_block_time": 1730372648, + "first_issuance_block_time": 1730388523, + "last_issuance_block_time": 1730388527, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3812,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730372630, - "last_issuance_block_time": 1730372641, + "first_issuance_block_time": 1730388506, + "last_issuance_block_time": 1730388519, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3826,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3835,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3852,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3869,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3886,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730372645, - "last_issuance_block_time": 1730372648, + "first_issuance_block_time": 1730388523, + "last_issuance_block_time": 1730388527, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3903,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730372630, - "last_issuance_block_time": 1730372641, + "first_issuance_block_time": 1730388506, + "last_issuance_block_time": 1730388519, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3917,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3926,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3943,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3960,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3977,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730372645, - "last_issuance_block_time": 1730372648, + "first_issuance_block_time": 1730388523, + "last_issuance_block_time": 1730388527, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3994,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730372630, - "last_issuance_block_time": 1730372641, + "first_issuance_block_time": 1730388506, + "last_issuance_block_time": 1730388519, "supply_normalized": "0.00000019" } ], @@ -3947,17 +4006,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff", - "block_time": 1730372952, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_time": 1730388815, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d:1", + "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +4052,17 @@ }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "block_hash": "08c780bcc31cefebe556d2c61161cd389d4591f192d6104dc9c3123b4aca030c", - "block_time": 1730372940, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_time": 1730388804, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9:0", + "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4070,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4026,7 +4085,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4104,17 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "block_hash": "2e4baea77caebb6e0429c1e616610ac4bd34d1fff4d1f50f8635e623a2f5b940", - "block_time": 1730372935, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", + "block_time": 1730388790, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f0d974e7adf3a5786359af35f6ec6d133c16f70480efc39e2120ccdd20b37dd46babc156439594b9f9806a557c3c133028848409f895fd1f2bfaf130049c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada:0", + "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4122,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4078,7 +4137,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4156,17 @@ }, { "tx_index": 70, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "block_hash": "5cbcac4cbc9e6b404291f80527301107900264cd12787a841c2583eabf4b0369", - "block_time": 1730372921, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "3d23f456ba64fa5d2eff4d25356e02df5365eef3fc3a690338a0d9526f538ef6", + "block_time": 1730388787, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", + "data": "02000000178d82231300000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", "supported": true, - "utxos_info": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634:1", + "utxos_info": " a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4174,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4131,17 +4190,17 @@ }, { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_hash": "11362c16bbd4cb118506fb1fa276c2141ed61179209e54ce4633d3f908b129c8", - "block_time": 1730372917, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "block_hash": "420b927a976b8e2e3db3cc4c24e106987232a8181a8d46be1d2efb652a7c90ad", + "block_time": 1730388783, + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de:1", + "utxos_info": " 02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4231,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4207,9 +4266,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4283,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4309,9 @@ }, { "tx_index": 52, - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4326,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4352,9 @@ }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4369,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4395,9 @@ }, { "tx_index": 60, - "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", + "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", "block_index": 194, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4412,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372873, + "block_time": 1730388749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4438,9 @@ }, { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4455,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4486,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4514,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4523,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4551,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730372645, + "block_time": 1730388523, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4563,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4591,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730372630, + "block_time": 1730388506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4603,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4631,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730372626, + "block_time": 1730388502, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4643,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4671,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4689,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4654,22 +4713,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", + "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372641, + "block_time": 1730388519, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4678,22 +4737,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", + "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372638, + "block_time": 1730388515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4702,22 +4761,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", + "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372633, + "block_time": 1730388510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4726,22 +4785,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0635df74567bc519be99ceb9cfed5d778dcecf6c0a631757d81fb54657ffcc40", + "tx_hash": "ad7ded8aea74e95132cd8c881f2459fba118fcdd32483b685e18a99ce87ce6f7", "tx_index": 15, "block_index": 127, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372615, + "block_time": 1730388491, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4750,22 +4809,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4780,22 +4839,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4812,8 +4871,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4885,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -4847,7 +4906,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4859,7 +4918,7 @@ "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "020000000001018e9790a27a7e684e35c3fca2b87b7d16260d5c4d26eceba390387226f91e5b8200000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29fcb643b1567ba5773f400a234b5ef3f353504fca72348178a4e147bfe95e8bfc0141304dbcd5d0d70b83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101f30ff68f32191b4982340f8b1087e9cb3254689e95417f5498cc0666baaa6a490000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29e9a8a04368bcc2c13e3168c3664f67092b0e5086e14b4c83ad6ec26fa4281f8249f77e25879a93b1fe83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4936,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" }, "name": "btcpay", - "data": "434e5452505254590b25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb736f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "data": "434e5452505254590b024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1fc1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101773cba658e516ae2ff2312d8994161fed0e8740fc7a9859c26148bc2c73d1f0400000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03b80b000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28200000000000000004b6a4969c9b8197a1ed0cd0fcb98f46a47abe54637aa9c392f14f022ae9820e738a5978297b1d754c7a52105e585e9ef0d498d8f102db91618f89839b112f88584173c822688e5e2fffb4bdaa99f052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101237cdd6abab4cdccd2941a0001fe3fc209d29136feee89600aac9187f6fb365e0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03b80b00000000000016001478682e5b8327b7725f504f257781372d3f4df05900000000000000004b6a49513fa0e770a4ed234a1da083cf514bca57a1d89e5d05ff24184d2ed56d42c5e27b49d7df1feacdaaf096f2b5cbaf6d93228e44ef43ddbef5a260e251de99deef3996cba19746428e97a99f052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "status": "valid" } } @@ -4902,7 +4961,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 1000, "overburn": false }, @@ -4912,27 +4971,27 @@ "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101915ce649ddf1b7a01cd8198db15f5867b06519002a45973e22447a4a3d25deb100000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000" + "rawtransaction": "02000000000101a353a25c14771493f0d512ea7cf0162c2035ad2cd141222319a578f5d78e63af0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d" + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33" }, "name": "cancel", - "data": "434e54525052545946a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "data": "434e5452505254594643fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101cf4c5a249a38857b26264ff85abb41f4eff0f8ec74df93d2e40ffa09b4291b7b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff0200000000000000002b6a29c223e72b281411c64229e9a0558ab8d9b34d968662d71291de2894a918ddbda2a20611d5929ee5fdfa83ba052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101fc26d1b96a718f0c2dc40ca4b41f3ef3bd55e5112a705fd54e4bd17f31ec1b190000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29f704f8edc0ebbc3800dde406bbcc7331c0eb8027d01001b9851edf2007064bc1d345837f7050b22c6c83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "status": "valid" } } @@ -4941,7 +5000,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4960,7 +5019,7 @@ "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "0200000000010103aabe6ec756fb965472f05d0df2ae8c20fc3a7178d43d8383fef9ca898d6be300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000226a20afa7373e359ae8795c5a9dafd138efde689643f12c523bee0cb5d5262daf6a4c93bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101c8f3626b0417be142ca95715c8745b7bd5e239b91b2924d6ea8d55213fcf7c1c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000226a20ec86901c7f3c5a7150f444b6231f9390821a5d09c0ae30a775f4c4ef1e3c312a93bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +5035,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5000,7 +5059,7 @@ "btc_out": 0, "btc_change": 4949925236, "btc_fee": 14264, - "rawtransaction": "020000000001015a1aa69aef41d782848d368fe9a68b9c911fb351c6b3afc0048330f1a7836f8601000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94affffffff0200000000000000002c6a2a537db7fa02a7337dfb635792921eb0ea1932cfa0076f5989554a2d7e89809ee758f7559b08c98624f67c74dd092701000000160014fb6a7f302ed7f0dd196dc7ecf868ce1a96d3c94a02000000000000", + "rawtransaction": "02000000000101675ca0059fa99c5c9cad64f274539dfaea653241fe200d83702d663dbe155993010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a35ffffffff0200000000000000002c6a2aec477f5a10edd262cbe088d269a3d69709160796d417fcc2495a78d064d3c1ff857a2e7e4abfd29285b274dd0927010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a3502000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5022,14 +5081,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5048,7 +5107,7 @@ "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101bed7fba8145554f603f138f8da64c6e19ce6d7e7237889fb0669aaac53c0e81600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a216afb30c03290e5f133b0a0d3d04747d6870e13c811ad372ace5152515b52dbd5ef58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101570134c00b64742e02bdfaddc041e8760285c1d35b10cc350c98529d7415c7830000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a21124ec109d96b25e39b77d04e311b78ce9875d67366580ce5416ffe7e5e670e3da458bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,10 +5124,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "transfer_destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "lock": false, "reset": false, @@ -5081,7 +5140,7 @@ "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101a473b31d0f51327a56330b424a425ce5a2b4563e23dbdf5d312cb881e5a06c3b00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000236a21b9679dd5ae799cd12838cac996fd1369f5465c1341f07766bf5909fb4f7bfeb5df6bb2052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101b9ef7fad3663f913ca8b893e4484ef5496bc469a8a5c770fbe79625d52e8d83a0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000236a21dde41ded3a51f6da18fa27361ae0737776c1ccd9943ea2b8a228abb4069a4460546bb2052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,16 +5165,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", 1 ], [ "MPMASSET", - "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", 2 ] ], @@ -5123,26 +5182,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a320dcd943e34b574eafb9cec3aff4f713c7e28280f0d974e7adf3a5786359af35f6ec6d133c16f70440000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028078682e5b8327b7725f504f257781372d3f4df0598052d9b86eb5e791b2c549521a87fb7fb80e2f93a440000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104d7609f59f3ccb9f7eaf078efac78d7bf99b690b2ee8c1376e8946a075d6688c300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282fffffffffa170a9e1af4c688d156474cef273454d2e7f8c02b7392a3720a083ba679fa6d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff88639e06782b5da695bd0b5be0c20178214b9137cdca29d3daf90b918fc66d1d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffffe4e7f72a1f1d366ed1c64a9d4caf013808a086dc38c40abaa12721edbf3913f900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff03e80300000000000069512103d56b6fa441a6ee2845ade2d6934442699f35935cee110e119018bbbaad1693252102f86957bc094a921bef5bed705c6853143ed13eb7a767bec99a6e36b52725718b210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aee80300000000000069512102ca6b6fa441a6ee28457ee2d413e762b546527017b95fa1a85edf144e5a05546721021aebd64cd03e75b61cfe951305c766e2d2bc2d8bb190ba899a6e335647adb51f210258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f53aebcf216a804000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000002000002000002000000000000", + "rawtransaction": "02000000000104e75d6e5af50269c0705c4375adca7950253959b6977dbf2f68e36639e47371ad0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff54bce38d43312df81ec276feb49454fc5f1cf31f71e3db38d3df6b7ed45b61470000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff93747391fc199fa1db06cec0538ab05ff58c502ad445ade1d7cfd59a175a2ba00000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0aa29dfafc0d3daac0c01ed4183aa590bf5d83657cb05104402a8dc6dd1a46380000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03e80300000000000069512103bbf2c66f0fcfe593481b043d964d6178e3b7fc6fff10aaa9b571cffb540e8f5821031d5d2c07263bb605b92e78fe8ad283134e034e08fb1ff975253081c42187e4ed2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512102a4f2c66f0fcfe59348c8043f16350956b810dbd88d4ffae690024ecc7931c2db2102ed04ad55ff83d8b05ebfca3bc3809994b57cf606d48c5d3525308427410f20b92102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aebcf216a80400000016001478682e5b8327b7725f504f257781372d3f4df05902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,7 +5213,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5171,7 +5230,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5185,7 +5244,7 @@ "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "02000000000101c64b8963129bab406253885233b40590572d41f329daa740f88a688a5a217f3600000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000356a33811ad50f213b536de3415e153fff3bd3ed3979ea6de79da25407d2b58c98fc6f884fa563328340b8dffc23f78f45eec9c16d8c38b8052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "0200000000010113dcdfdfe4a368f432f9c88948eb1ed6f6117bd3a4fd4cb0ec2434617701c80c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000356a338625f4ae8e3c7c77ee3d8bdf55c83f2e35baa7fac469f3ee9ac58a7c6a6d9211043749f29c2203f011641b56f4e3be88f1b87538b8052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,8 +5266,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5224,19 +5283,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f0d974e7adf3a5786359af35f6ec6d133c16f704", + "data": "434e54525052545902000000000000000100000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001015aa3dc4cc3e7ce5c1cad49cdae44d027ffe67fc68bdedf8937d037599a51638d00000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000306a2e2ca784cf66c5f0762b5b7e444f8f77b4cf916dc6972a47a9cb342f530ffc7774df88f0c1087536bb403ebd7f6e155db9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "0200000000010170a9290fea37d6f2881678c2d0247e8e868066c72145c7f51d6210df01c043c90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000306a2ec9620cb57b34e7ada6e0b8921918a6268bc5fa3a495b71bf6e1f96b2d12b067641bda940de034fcf39f964f206845db9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5305,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f0d974e7adf3a5786359af35f6ec6d133c16f70407ffff", + "data": "434e545250525459048052d9b86eb5e791b2c549521a87fb7fb80e2f93a407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "020000000001017804b97c0f2299265f27beaed5207388d7b2c37b7be613667ac53bc3b990cc7500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000236a2123244a2654ad527c0b5f8a521994790e145e9e38ebdf51e8312ad55bf47816956f58bc052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101ea793cbdb536e63a7bef18cedea7452b2da60b6c340094b1b963fb15c5fc53970000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a216b202a2f0a00f54b6bacc462f1ae1a9a16bd938f7d31aaeaa42c7cc6549c6e9f6158bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "flags": 7, "memo": "ffff" } @@ -5272,8 +5331,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "quantity": 1000 }, "name": "dispense", @@ -5282,7 +5341,7 @@ "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "0200000000010164759932e0264d9a10273ab79ec83e848f2109b70d0ea62cb9808436fc7f1eed03000000160014f0d974e7adf3a5786359af35f6ec6d133c16f704ffffffff03e8030000000000001600146a557c3c133028848409f895fd1f2bfaf130049c00000000000000000c6a0acab8eaa7a099ce85410d8b25082701000000160014f0d974e7adf3a5786359af35f6ec6d133c16f70402000000000000", + "rawtransaction": "02000000000101339ec669fc5a667a1b06471ff2d757d189d3c4fc30bd6a394e8f903e0711bae00300000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a4ffffffff03e80300000000000016001489327ba83f6181de1d81727d7278dcd5a82d8e9600000000000000000c6a0af034aa6ee337efd8a9268b2508270100000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5354,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5326,7 +5385,7 @@ "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "0200000000010110ccffb8915a9f9f0970833698fffb59ccf3256654a09bda4ea881795665ec5300000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000316a2f4e0a0294accf89c8a2643f09f5a8eed524334020bd754280009e9f27c31dfe73efff0fa26a974ee3b2ea381675167e23b9052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101e8b915947078ac5678f54820668c3bf8f54269bd28c2b8e1c1073c6a397ddc840000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000316a2f4980614c992885063b6066529d728cf584e0a9e0d0acefa5edbabdc54ecb1077268f01249b7f515146f31aee000f4d23b9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5420,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5379,7 +5438,7 @@ "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "02000000000101b46f732d0968b584ac1ff925ed0dad312f1a11ed163e783e9777f0d96a13fbc900000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff020000000000000000166a1403bfb24ac36a548b7a4b4ca032c7c47d3eb61acc54bf052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "020000000001011e59b75282f59425869d34561899a60f045426200ff1e4fb264c4d1ecda43a210000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000166a14c32c50b16b8722bfd0e7da239f2b37e4a863389054bf052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,7 +5453,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5413,12 +5472,15 @@ "btc_out": 546, "btc_change": 4999984603, "btc_fee": 14851, - "rawtransaction": "02000000000101354aa6b83637f6354b41b371ba10e30b82de4cb320a93e8f515b62cff6ddb6c500000000160014a320dcd943e34b574eafb9cec3aff4f713c7e282ffffffff032202000000000000160014a320dcd943e34b574eafb9cec3aff4f713c7e2820000000000000000146a12560b2f20b098a16437c96f5ee8d95b6b4dfedbb5052a01000000160014a320dcd943e34b574eafb9cec3aff4f713c7e28202000000000000", + "rawtransaction": "02000000000101a1bd68edbccbcfa11bb50fd68decac3b3b5cc1e1d35b99dfd0a3257c8f1120b90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000146a12903319976c0accf3b36423d30bd09abd6e1edbb5052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", "unpacked_data": { - "message_type": "unknown", + "message_type": "attach", "message_type_id": 101, "message_data": { - "error": "Unknown message type" + "asset": "XCP", + "quantity": 1000, + "destination_vout": null, + "quantity_normalized": "0.00001000" } } } @@ -5426,21 +5488,21 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er" + "source": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" }, "name": "detach", - "data": "434e5452505254596662637274317135767364656b327275643934776e34306838387638746c35377566753063357a383534356572", + "data": "434e545250525459666263727431713070357a756b757279376d687968367366756a683071666839356c356d757a65616863617765", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945466, "btc_fee": 25534, - "rawtransaction": "02000000000102afa9cb0e032aed5f2e61d024f4ba3d214f17fa57a5ee6931cb31abaa7f4f506100000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff4d44d51dae304ab666a719be18d2638f558db08ada59b94b10f43a523c85690001000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a3ffffffff020000000000000000376a3587cf0966c89f9d22ab06aee4eb9ed26801fe64dc903e2b084ef608d61bf82631cc50ac26d4eca739ca814f6e6f9db7d03fe53bd04e7a2c0a2701000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a302000002000000000000", + "rawtransaction": "020000000001023e815ab87d99f0a777059cb72613bb1a800357936e0d6887276bcf56e6e52d4900000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff784ad753c01f68dbbd3c690100364d5e70c634b4e22e8bb35bab72b21cdf8ac501000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff020000000000000000376a353ced140a7366c13450ebce50ba0f7763bf468c43eb61be5973ebcc177143d7f8752299c2f62b54a0fd584e679dbfa573b26755cd2c7a2c0a2701000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17302000002000000000000", "unpacked_data": { - "message_type": "unknown", + "message_type": "detach", "message_type_id": 102, "message_data": { - "error": "Unknown message type" + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" } } } @@ -5451,8 +5513,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -5460,16 +5522,16 @@ "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730372917, - "last_issuance_block_time": 1730372917, + "first_issuance_block_time": 1730388783, + "last_issuance_block_time": 1730388783, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", - "owner": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "owner": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "divisible": true, "locked": false, "supply": 100000000000, @@ -5477,16 +5539,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730372894, - "last_issuance_block_time": 1730372894, + "first_issuance_block_time": 1730388768, + "last_issuance_block_time": 1730388768, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -5494,16 +5556,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730372735, - "last_issuance_block_time": 1730372743, + "first_issuance_block_time": 1730388614, + "last_issuance_block_time": 1730388621, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "owner": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "issuer": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "owner": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "divisible": true, "locked": false, "supply": 100000000000, @@ -5511,16 +5573,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730372730, - "last_issuance_block_time": 1730372730, + "first_issuance_block_time": 1730388610, + "last_issuance_block_time": 1730388610, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 100000000000, @@ -5528,8 +5590,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730372694, - "last_issuance_block_time": 1730372694, + "first_issuance_block_time": 1730388573, + "last_issuance_block_time": 1730388573, "supply_normalized": "1000.00000000" } ], @@ -5541,8 +5603,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "owner": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false, "supply": 10000000000, @@ -5550,15 +5612,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730372595, - "last_issuance_block_time": 1730372608, + "first_issuance_block_time": 1730388474, + "last_issuance_block_time": 1730388484, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5566,14 +5628,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5581,7 +5643,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5594,7 +5656,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5616,9 +5678,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5633,7 +5695,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5659,9 +5721,9 @@ }, { "tx_index": 52, - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5676,7 +5738,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5702,9 +5764,9 @@ }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5719,7 +5781,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5745,9 +5807,9 @@ }, { "tx_index": 60, - "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", + "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", "block_index": 194, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5762,7 +5824,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372873, + "block_time": 1730388749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5788,9 +5850,9 @@ }, { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5805,7 +5867,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5836,13 +5898,13 @@ "/v2/assets//matches": { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5856,7 +5918,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5876,13 +5938,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5896,7 +5958,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5916,13 +5978,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", "tx0_index": 50, - "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 51, - "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5936,7 +5998,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5963,20 +6025,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "event": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -5984,20 +6046,20 @@ }, { "block_index": 125, - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", + "event": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6005,20 +6067,20 @@ }, { "block_index": 124, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6026,20 +6088,20 @@ }, { "block_index": 124, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "event": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6051,16 +6113,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6078,12 +6140,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -6095,16 +6157,16 @@ }, { "block_index": 208, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,16 +6178,16 @@ }, { "block_index": 207, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6137,16 +6199,16 @@ }, { "block_index": 206, - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372944, + "block_time": 1730388809, "asset_info": { "divisible": true, "asset_longname": null, @@ -6158,16 +6220,16 @@ }, { "block_index": 205, - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -6190,14 +6252,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", + "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6212,20 +6274,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6240,20 +6302,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6268,20 +6330,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -6296,7 +6358,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730372595, + "block_time": 1730388474, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6308,10 +6370,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6319,7 +6381,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -6332,10 +6394,10 @@ }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6343,7 +6405,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -6356,10 +6418,10 @@ }, { "tx_index": 73, - "tx_hash": "5d96b48ba71a836dd7aeef464098fd049871d6a6de03d5e3d4ac14cb130d48a3", + "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", "block_index": 206, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6367,7 +6429,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730372944, + "block_time": 1730388809, "asset_info": { "divisible": true, "asset_longname": null, @@ -6380,10 +6442,10 @@ }, { "tx_index": 72, - "tx_hash": "658a8a92592a6c828aa6782b55c0c43f59e058ca8ca70d8631978287b3dd53c9", + "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", "block_index": 205, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6391,7 +6453,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372940, + "block_time": 1730388804, "asset_info": { "divisible": true, "asset_longname": null, @@ -6404,10 +6466,10 @@ }, { "tx_index": 71, - "tx_hash": "8996efe3d5691da6ae18d853500c39598ef11164ff24551103a6168f1b4ceada", + "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", "block_index": 204, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6415,7 +6477,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372935, + "block_time": 1730388790, "asset_info": { "divisible": true, "asset_longname": null, @@ -6434,9 +6496,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6445,7 +6507,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6455,7 +6517,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6471,9 +6533,9 @@ }, { "tx_index": 29, - "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", + "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", "block_index": 142, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6482,7 +6544,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6492,7 +6554,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372670, + "block_time": 1730388548, "asset_info": { "divisible": true, "asset_longname": null, @@ -6508,9 +6570,9 @@ }, { "tx_index": 30, - "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", + "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", "block_index": 150, - "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", + "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6518,10 +6580,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6529,7 +6591,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372701, + "block_time": 1730388580, "asset_info": { "divisible": true, "asset_longname": null, @@ -6545,18 +6607,18 @@ }, { "tx_index": 33, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6566,7 +6628,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -6587,9 +6649,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6598,7 +6660,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6608,7 +6670,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6636,7 +6698,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6644,7 +6706,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6653,7 +6715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6661,7 +6723,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6670,7 +6732,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6678,7 +6740,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6687,7 +6749,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6702,27 +6764,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6737,7 +6799,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -6751,27 +6813,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", + "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", "block_index": 147, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6786,7 +6848,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372690, + "block_time": 1730388568, "asset_info": { "divisible": true, "asset_longname": null, @@ -6800,19 +6862,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6820,7 +6882,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6835,7 +6897,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -6849,19 +6911,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6869,7 +6931,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6884,7 +6946,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -6907,10 +6969,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6935,7 +6997,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6953,22 +7015,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "6f06f305ca7e28eb104753393ddbb20d1c76eb96490c6d9fdf41e2e5bdd1f5b5", + "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", "tx_index": 13, "block_index": 125, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -6977,22 +7039,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e", + "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", "tx_index": 12, "block_index": 124, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372604, + "block_time": 1730388481, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7001,22 +7063,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7031,22 +7093,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "e123d7b07d4876a8c9e847d2b73bd7a1382f8e0beeeb1c23d5c6c3dec685fdcd", + "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372599, + "block_time": 1730388477, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -7062,9 +7124,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7079,7 +7141,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7105,9 +7167,9 @@ }, { "tx_index": 53, - "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "block_index": 188, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7122,7 +7184,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7148,9 +7210,9 @@ }, { "tx_index": 55, - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "block_index": 189, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7165,7 +7227,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7191,9 +7253,9 @@ }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7208,7 +7270,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7234,9 +7296,9 @@ }, { "tx_index": 60, - "tx_hash": "a0a2a538dc0f56a8e837d4d4f5616e284eba30acfce08264529ff8f03dfc6e93", + "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", "block_index": 194, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7251,7 +7313,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372873, + "block_time": 1730388749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7282,9 +7344,9 @@ "/v2/orders/": { "result": { "tx_index": 75, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7299,7 +7361,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7327,13 +7389,13 @@ "/v2/orders//matches": { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7347,7 +7409,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7367,13 +7429,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7387,7 +7449,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7414,15 +7476,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "btc_amount": 2000, - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "status": "valid", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "btc_amount_normalized": "0.00002000" } ], @@ -7433,9 +7495,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "block_index": 188, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7453,7 +7515,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730372841, + "block_time": 1730388728, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7479,9 +7541,9 @@ }, { "tx_index": 55, - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "block_index": 189, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7499,7 +7561,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730372844, + "block_time": 1730388732, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7525,9 +7587,9 @@ }, { "tx_index": 50, - "tx_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", + "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", "block_index": 185, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7545,7 +7607,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372761, + "block_time": 1730388640, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7571,9 +7633,9 @@ }, { "tx_index": 52, - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "block_index": 208, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7591,7 +7653,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7617,9 +7679,9 @@ }, { "tx_index": 58, - "tx_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", + "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", "block_index": 193, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7637,7 +7699,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372869, + "block_time": 1730388746, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7668,13 +7730,13 @@ "/v2/orders///matches": { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7691,7 +7753,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7711,13 +7773,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7734,7 +7796,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7754,13 +7816,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", "tx0_index": 50, - "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 51, - "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7777,7 +7839,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730372761, + "block_time": 1730388640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7803,13 +7865,13 @@ "/v2/order_matches": { "result": [ { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 55, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7823,7 +7885,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7843,13 +7905,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "tx0_index": 52, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 53, - "tx1_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7863,7 +7925,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730372841, + "block_time": 1730388728, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7883,13 +7945,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", + "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", "tx0_index": 50, - "tx0_hash": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx1_index": 51, - "tx1_hash": "e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7903,7 +7965,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730372761, + "block_time": 1730388640, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7948,66 +8010,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", + "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", "block_index": 121, - "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", + "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730372591, + "block_time": 1730388470, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "15221ed10402f0f12be3d3b41e0a88760bcd0ae85b41049ee37e3478d82693a1", + "tx_hash": "2f05366f588f21dccb295ef9cb5d8c7a397a69adac4446167ba10bbcd863af23", "block_index": 120, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730372587, + "block_time": 1730388467, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "325fb0893833128dc0bc8bec0620ecdb5ca8a76a964df89ac40ffa7a278508b9", + "tx_hash": "7a7fc5e8c6dc1952c0910c265c052ac6f377936332feaf8d3ab47084f50bfb50", "block_index": 119, - "source": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f", + "source": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730372584, + "block_time": 1730388464, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "9661048b13de4e4fbc9dbcbcc8a0184ed47a06f7ba07d1c2706b306f35740ded", + "tx_hash": "531c7e5e0671ad61656e5865ee9777b48044c10668123810976c6958c64d6b83", "block_index": 118, - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730372580, + "block_time": 1730388460, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "1b05634e27708285272060b0e392e3612346bcf97218058076dac820a9c62440", + "tx_hash": "ef542ed4add95f4bc7bbc4ee4219c14bd54be80b1161a3167e3bd95d8c3ccef7", "block_index": 117, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730372577, + "block_time": 1730388456, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8019,9 +8081,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8030,7 +8092,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8040,7 +8102,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -8056,9 +8118,9 @@ }, { "tx_index": 29, - "tx_hash": "25ac9492034eb0a9e86f17c3a79dad1bd98f58c2b6cca67fa4fe30ada9ea6bbe", + "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", "block_index": 142, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8067,7 +8129,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8077,7 +8139,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372670, + "block_time": 1730388548, "asset_info": { "divisible": true, "asset_longname": null, @@ -8093,9 +8155,9 @@ }, { "tx_index": 30, - "tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", + "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", "block_index": 150, - "source": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", + "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8103,10 +8165,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b55c59707a3111f4fdbaf93b6fc97983d8acf1a9aee0cb24d322efef659bf13f", - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8114,7 +8176,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372701, + "block_time": 1730388580, "asset_info": { "divisible": true, "asset_longname": null, @@ -8130,9 +8192,9 @@ }, { "tx_index": 63, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8141,7 +8203,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8151,11 +8213,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8167,18 +8229,18 @@ }, { "tx_index": 33, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8188,7 +8250,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8209,9 +8271,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8220,7 +8282,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8230,7 +8292,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -8250,19 +8312,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8270,7 +8332,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8285,7 +8347,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -8299,19 +8361,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8319,7 +8381,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8334,7 +8396,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -8353,20 +8415,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8387,20 +8449,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8423,12 +8485,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "event": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "tx_index": 42, - "utxo": "651d7b2645372a69bf0e3ad1179b970f52a00eb5a9676270c2c5c275a6887b89:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "utxo": "25bf60486a393bdf4e868b26f17f46225523e4eac3198ff314e13a994a79f448:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "confirmed": true, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "divisible": true, "asset_longname": null, @@ -8449,27 +8511,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 680, @@ -8478,14 +8540,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8496,9 +8558,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 679, @@ -8507,9 +8569,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -8519,24 +8581,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8546,9 +8608,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 677, @@ -8560,15 +8622,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } }, "/v2/events/counts": { @@ -8603,16 +8665,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8622,9 +8684,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 676, @@ -8634,12 +8696,12 @@ "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8649,9 +8711,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 673, @@ -8661,39 +8723,39 @@ "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", - "utxo_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "block_time": 1730372962, + "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730372952, + "block_time": 1730388815, "asset_info": { "divisible": true, "asset_longname": null, @@ -8703,24 +8765,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -8730,9 +8792,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_time": 1730372948 + "block_time": 1730388812 } ], "next_cursor": 651, @@ -8749,27 +8811,27 @@ { "tx_index": 76, "dispense_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8784,7 +8846,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -8798,19 +8860,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "83670c4bcca34d0b69c9c1f112b664728246feb40b5c00f5d6de99fb9dc6d4b5", + "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8818,7 +8880,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8833,11 +8895,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372890, + "block_time": 1730388764, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -8847,27 +8909,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f8b6abeb3cc1518ee2bf8cbb4bbc2ef4a355259d9df0a756512247249ad36450", + "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", "block_index": 147, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "destination": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "last_status_tx_hash": null, - "origin": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8882,7 +8944,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730372690, + "block_time": 1730388568, "asset_info": { "divisible": true, "asset_longname": null, @@ -8896,19 +8958,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "bd39787f07fd23668a82bbbb2749fc6751ac44f9c44f18424bcdbc831e325e9e", + "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8916,7 +8978,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8931,7 +8993,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372667, + "block_time": 1730388544, "asset_info": { "divisible": true, "asset_longname": null, @@ -8945,19 +9007,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b91bba255bef89373dffd213cc70063fd154966377244cfbde6eec032f21a87a", + "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", "block_index": 140, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd69dbedd5bc0d20fe01c495f08d58c4ec5a84cbd232d36fdf848dabae020b2b", + "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8965,7 +9027,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8980,7 +9042,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730372663, + "block_time": 1730388540, "asset_info": { "divisible": true, "asset_longname": null, @@ -8999,10 +9061,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9010,7 +9072,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -9023,10 +9085,10 @@ }, { "tx_index": 76, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9034,11 +9096,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9047,10 +9109,10 @@ }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9058,7 +9120,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -9071,10 +9133,10 @@ }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9082,11 +9144,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9095,10 +9157,10 @@ }, { "tx_index": 74, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9106,11 +9168,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9125,14 +9187,14 @@ "result": [ { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -9147,20 +9209,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "815d52022fa19c605b511180d4e62f3cebbc844e9ff537616664aa90b0f6a1d2", + "tx_hash": "fc0df4fe281cbc92383846eaedd05efb40184273d92655b7442d71aa1495f057", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", - "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "transfer": false, "callable": false, "call_date": 0, @@ -9175,20 +9237,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372894, + "block_time": 1730388768, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "04d4b143a82c0000e433dd0bf21c83030dcc48c8acfa761be0f572347fe2f907", + "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -9203,20 +9265,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372747, + "block_time": 1730388626, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "517262874eecde6af630d5bb943d1e3e7897e88c18382e309ee55829e7de25e0", + "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -9231,20 +9293,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730372743, + "block_time": 1730388621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "9671f1523a7a14b4224d83ddf30da39ce09afc4e928497049336be095ad66d1a", + "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -9259,7 +9321,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372739, + "block_time": 1730388617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9270,14 +9332,14 @@ "/v2/issuances/": { "result": { "tx_index": 69, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "transfer": false, "callable": false, "call_date": 0, @@ -9292,7 +9354,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9301,16 +9363,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -9321,16 +9383,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" } ], @@ -9341,9 +9403,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9351,14 +9413,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372656, + "block_time": 1730388533, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "4f44bfab06bf94a84700b067bb4f6b7a16b080f1ae2b5411b739963bdf2da9b9", + "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", "block_index": 137, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9366,7 +9428,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372652, + "block_time": 1730388530, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9376,9 +9438,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9386,17 +9448,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730372656, + "block_time": 1730388533, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9421,7 +9483,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9430,10 +9492,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9458,7 +9520,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730372645, + "block_time": 1730388523, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9470,10 +9532,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9498,7 +9560,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730372630, + "block_time": 1730388506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9510,10 +9572,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9538,7 +9600,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730372626, + "block_time": 1730388502, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9550,10 +9612,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3dee99049425b16728061f65d0837719657b6a31bc067078d7036b94b1172b4b", + "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9578,7 +9640,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730372608, + "block_time": 1730388484, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9596,22 +9658,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9620,22 +9682,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cc073b40db0c5e55d1452bf2bcfb68defa7b41e49910918b1fde793f27ca8b5f", + "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372641, + "block_time": 1730388519, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9644,22 +9706,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "669bcba456975a3fda36f559c0167abf8b6e9635733758d72a74f207af645615", + "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372638, + "block_time": 1730388515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9668,22 +9730,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2457bf917d8fa176e62660113dc9286ed54315be82773b27472288d0850b2bce", + "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "3523c58d885a5030a0a8000a8c06bb1a92b81c5bd8244a5b2264453b88c1afba", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372633, + "block_time": 1730388510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9692,22 +9754,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "98b81b67902ec22793feff63f17f03a1ecc5ff5f01fa793d3e1197e17f3d0ca4", + "tx_hash": "c52637de105c8fabf7ce0477b20977b4b12f1a91b67ea0c6e1a8c389468baa8d", "tx_index": 17, "block_index": 129, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "fairminter_tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372623, + "block_time": 1730388499, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9721,22 +9783,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -9748,22 +9810,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 546, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-06, - "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62", - "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" + "amount": 49.499395, + "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67", + "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949939500, + "value": 546, "confirmations": 9, - "amount": 49.499395, - "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a", - "address": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd" + "amount": 5.46e-06, + "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126", + "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" }, { "vout": 2, @@ -9771,8 +9833,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3", - "address": "bcrt1qshaw05df5h2s4gwv424kglhk88k6c8l8felj7f" + "txid": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811", + "address": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0" } ], "next_cursor": null, @@ -9781,25 +9843,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "1a430881b77813eed0b70a9a2b16c819199eec82b069f29a083c447343e1e709" + "tx_hash": "3574fee854efa23d216bf5d7951fa27f083e3cba676333480c408de8b131614a" }, { - "tx_hash": "b4fa4f131d7ea0ea850e2e1d44c0ff445504cb787a46e24ccbbeab50aa5d270e" + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860" }, { - "tx_hash": "ec8b60a30997a92d5cb544d6a01ac9f102bfbd90e6a5f56beaf1f4ce3f1ef14e" + "tx_hash": "b45736e63a7c69e39c202e6d69842eff67b5371fdb10fddecbf0fb91c04a7764" }, { - "tx_hash": "82d01d209e938a5870d5cdc36b1f16e06b01c07c63bdea0a35b005192d08c258" + "tx_hash": "d180e3c789f7afa1bf2c80c42cc765e47c7b4389ea05112ac8854a851ceb8564" }, { - "tx_hash": "953b89f32453823d6eba7104ccf8d08952395389017b96d72c832a47937b939e" + "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68" }, { - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf" + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" }, { - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb" + "tx_hash": "f7201490d88f113ec36ca10576adf0981a397bd17dee4957d3fae6ebbcc6ffb0" } ], "next_cursor": null, @@ -9807,8 +9869,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 8, - "tx_hash": "616aee910a3c335b90c7614b27ff1ab94bf9fe4402a7fb1e90d5b9017265e795" + "block_index": 2, + "tx_hash": "8501b17a588fa45b2e9f050340883fca514ce5b69c583e95fd14b406eab82dd3" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9819,7 +9881,7 @@ "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "798748e8de1fe8dc6b0e51fa7162252930830c5c067435c032fc4bef8ca44d62" + "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126" }, { "vout": 1, @@ -9827,17 +9889,17 @@ "value": 4949939500, "confirmations": 9, "amount": 49.499395, - "txid": "866f83a7f1308304c0afb3c651b31f919c8ba6e98f368d8482d741ef9aa61a5a" + "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0258af8fdebb0a37eb6fd98782d640c89c35018929c87a0f7822edba40f741f53f" + "result": "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101c399130ec13cd6c2060f384a2ab92c6148fb0eefa4a4f3ffa0a318439b9cadc10100000000ffffffff03e803000000000000160014b621065c5535d14b8d3b260ee2ccbf3796fe53a300000000000000000c6a0a39898743a58f2537b621eb1409270100000016001476701feb6d44cfb52c69c0277a7040289bbccb850247304402207af0f255c61e8dcf5bd7388fc9e0168ea1268fd1efa06ccb151f838d9d0b6be802201b2479032f8ce8f34f6d65eec1577352fbfaf3e80572a9998c9f371238aa620b012103354728ec0c9b84cbc2c4ebc877ae9be2833498a3a28821d03b97893ab3f4efc500000000" + "result": "0200000000010111f887b8683bc4054efc8bfa6061778d6eb868868f47c5603264399d39abdf140100000000ffffffff03e803000000000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17300000000000000000c6a0a8e74c0503d7ed91aabe5eb140927010000001600148438dff1939dbbf2323fc0765732298c162d678c02473044022020e6d95b1e6c95d2efb9805c2c0cab68ae8db334bd627e59322aa08c62eaa23b0220736569640c08cb17cef4ad9abfdd33db21b44cce519cb78d26b07a7919f19cab01210307c380fb682c6be41e362b8eb8de3db81b094b1889ea57382edab49518f9d8ff00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58701 @@ -9860,27 +9922,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77 }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "quantity": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, "asset_info": { "divisible": true, @@ -9891,22 +9953,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -9916,22 +9978,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "block_index": 209, - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -9941,30 +10003,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730372966.5065725, + "block_time": 1730388828.1054614, "btc_amount": 0, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "destination": "", "fee": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, - "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", + "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -9978,7 +10040,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -9987,19 +10049,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -10009,7 +10071,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -10018,27 +10080,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77 }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "quantity": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, "asset_info": { "divisible": true, @@ -10049,22 +10111,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "CREDIT", "params": { - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -10074,22 +10136,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "asset": "XCP", "block_index": 209, - "event": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -10099,30 +10161,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 }, { - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730372966.5065725, + "block_time": 1730388828.1054614, "btc_amount": 0, - "data": "020000000000000001000000000000271080efc39e2120ccdd20b37dd46babc156439594b9f9", + "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", "destination": "", "fee": 10000, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", - "tx_hash": "4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", "tx_index": 77, - "utxos_info": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364:1 4f174075ce6012e5422bd9ee8daa98327f4b10ee7b9de61be6c4373129419102:1", + "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "memo": null, "asset_info": { "divisible": true, @@ -10136,7 +10198,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730372966.5065725 + "timestamp": 1730388828.1054614 } ], "next_cursor": null, @@ -10158,15 +10220,15 @@ "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", "block_index": 209, - "block_time": 1730372962, + "block_time": 1730388823, "difficulty": 545259519, - "previous_block_hash": "7dd815ff1b70fb5e1378e73e1a6b726e1861b7517233ab8403845033742c8cff" + "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245" }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 660, @@ -10178,17 +10240,17 @@ "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3f3fad3fbf1a254e877aa09d06926a5f1a716aade28badeafbc87f22d8e7fea6", + "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", "block_index": 209, - "block_time": 1730372962, + "block_time": 1730388823, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "fee": 0, - "source": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "utxos_info": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1 61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10198,9 +10260,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 661, @@ -10214,16 +10276,16 @@ "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "out_index": 0, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 565, @@ -10236,15 +10298,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "55c3876de2024a28ec8f0276142ee82d671ce5801e406a45a4b4ad4bb38bc141", - "messages_hash": "23e3dea3ba8a57b4aa6a3cfb98320e879999463b249f8eb7c32af76b9abcbbac", + "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", + "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", "transaction_count": 1, - "txlist_hash": "98baa22203dc922bba2b7b1a3f18a27cb4bd222b5e603daa66c448e9506ba52c", - "block_time": 1730372962 + "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", + "block_time": 1730388823 }, "tx_hash": null, "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 668, @@ -10257,12 +10319,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76 }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 667, @@ -10278,12 +10340,12 @@ "address": null, "asset": "XCP", "block_index": 209, - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 2000000000, "tx_index": 76, - "utxo": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", - "utxo_address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", - "block_time": 1730372962, + "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -10293,9 +10355,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 672, @@ -10307,16 +10369,16 @@ "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -10326,9 +10388,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 676, @@ -10342,26 +10404,26 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "memo": null, "quantity": 1000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "tx_index": 70, - "block_time": 1730372921, + "block_time": 1730388787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "648debfd4aa3c6024de8bb9fefe6e2b4dc29afa997d754ad9a441354635a9634", + "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", "block_index": 203, - "block_time": 1730372921 + "block_time": 1730388787 } ], "next_cursor": 505, @@ -10375,15 +10437,15 @@ "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "status": "valid", - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "tx_index": 74, - "block_time": 1730372948, + "block_time": 1730388812, "asset_info": { "divisible": true, "asset_longname": null, @@ -10393,9 +10455,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "ed1e7ffc368480b92ca60e0db709218f843ec89eb73a27109a4d26e032997564", + "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", "block_index": 207, - "block_time": 1730372948 + "block_time": 1730388812 } ], "next_cursor": 656, @@ -10418,20 +10480,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "status": "valid", - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "tx_index": 61, - "block_time": 1730372878, + "block_time": 1730388754, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "c4dcf3d7a2fe5b29c5700da6d4d8ebdd2b5ed26c082c7a72f22a8d1c0e221ddb", + "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", "block_index": 195, - "block_time": 1730372878 + "block_time": 1730388754 } ], "next_cursor": null, @@ -10448,15 +10510,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "tx_index": 42, - "block_time": 1730372719, + "block_time": 1730388599, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -10470,9 +10532,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "0d4a31a81ba00a08eaf75c32b764cbd2b708ab52babb7f298acf22a26528dcd1", + "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", "block_index": 155, - "block_time": 1730372719 + "block_time": 1730388599 } ], "next_cursor": null, @@ -10493,11 +10555,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730372917 + "block_time": 1730388783 }, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_time": 1730372917 + "block_time": 1730388783 } ], "next_cursor": 574, @@ -10520,22 +10582,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", "transfer": false, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "tx_index": 69, - "block_time": 1730372917, + "block_time": 1730388783, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "de94dd1519aa4239e80dfd357835bdfe310638df0c21b15005747ffcb11426de", + "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", "block_index": 202, - "block_time": 1730372917 + "block_time": 1730388783 } ], "next_cursor": 575, @@ -10550,12 +10612,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qdf2hc0qnxq5gfpqflz2l68etltcnqpyulfj2uk", + "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", "status": "valid", "tag": "64657374726f79", - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "tx_index": 62, - "block_time": 1730372882, + "block_time": 1730388757, "asset_info": { "divisible": true, "asset_longname": null, @@ -10565,9 +10627,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "bc7116c3ea96c91bffc68f3acfec36e50b4502901649ddf73335c36f56625364", + "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", "block_index": 196, - "block_time": 1730372882 + "block_time": 1730388757 } ], "next_cursor": 157, @@ -10592,11 +10654,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "open", - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "tx_index": 75, - "block_time": 1730372952, + "block_time": 1730388815, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10620,9 +10682,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 536, @@ -10640,20 +10702,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", + "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", "tx0_index": 52, - "tx1_address": "bcrt1qalpeugfqenwjpvma6346hs2kgw2efw0e42v8a7", + "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "tx1_index": 55, - "block_time": 1730372844, + "block_time": 1730388732, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10672,9 +10734,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6f5ecf664f53f02117a0a6dbe90a0953cb9393531e68cdadcd9656b09c317dcf", + "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", "block_index": 189, - "block_time": 1730372844 + "block_time": 1730388732 } ], "next_cursor": 482, @@ -10687,11 +10749,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73" + "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f" }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 528, @@ -10704,11 +10766,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10" + "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987" }, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_time": 1730372841 + "block_time": 1730388728 } ], "next_cursor": null, @@ -10720,13 +10782,13 @@ "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", + "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", "status": "completed" }, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_time": 1730372841 + "block_time": 1730388728 } ], "next_cursor": 461, @@ -10740,18 +10802,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "order_match_id": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73_df77a3d4bd062933bb8ebd64b1e70a1f03185e0896030e722e9c1e24fbff2a10", - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "status": "valid", - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "tx_index": 54, - "block_time": 1730372841, + "block_time": 1730388728, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "9e804c6637b3fe9b5e118dddfffe09e677e8fd116e7428607984411e4cb377ec", + "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", "block_index": 188, - "block_time": 1730372841 + "block_time": 1730388728 } ], "next_cursor": null, @@ -10764,16 +10826,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "f141683fc997b71f67e0ab733a57e1f6f2093c877a986b1ed3e2acb32552a1d7", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": "valid", - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "tx_index": 59, - "block_time": 1730372869 + "block_time": 1730388746 }, - "tx_hash": "b055ecbb786874a6806bc9f4d090491a56df975372b722de2b3a26f77bffcdc6", + "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", "block_index": 193, - "block_time": 1730372869 + "block_time": 1730388746 } ], "next_cursor": null, @@ -10786,13 +10848,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "25a8ca3d206253921e8dae61e9ad7c30a3d987714c4e7bb5ceb09e004e03fb73", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "block_time": 1730372952 + "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_time": 1730388815 }, - "tx_hash": "a7795777a1949d964f0b3c598ea0bb1bb973278bd9030ed8432c72e0cbf3164d", + "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", "block_index": 208, - "block_time": 1730372952 + "block_time": 1730388815 } ], "next_cursor": 469, @@ -10805,14 +10867,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "31d44ed4eab152829a08c7088f67b4e1c22e4bb2dd2b14b6fa60f4fba52e47fe_e2780a6b42208c91e3afeba74fea6eb3a19c34862d86eabaa7f1d777f9d2fd6d", - "tx0_address": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "tx1_address": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", - "block_time": 1730372761 + "order_match_id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "block_time": 1730388640 }, "tx_hash": null, "block_index": 185, - "block_time": 1730372761 + "block_time": 1730388640 } ], "next_cursor": null, @@ -10831,17 +10893,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "satoshirate": 1, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "status": 0, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "tx_index": 63, - "block_time": 1730372886, + "block_time": 1730388761, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -10850,9 +10912,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d55a161114aa493a01eeb3e9ff38cf9d361191ba34ff145c7e6f2c4893bb443d", + "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", "block_index": 197, - "block_time": 1730372886 + "block_time": 1730388761 } ], "next_cursor": 272, @@ -10867,9 +10929,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": 0, - "tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", + "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", "asset_info": { "divisible": true, "asset_longname": null, @@ -10879,9 +10941,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 567, @@ -10895,13 +10957,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n4bneeTMghP93zguHvpy1RkDN3LvDHXnKF", + "destination": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", "dispense_quantity": 10, - "dispenser_tx_hash": "90abbb5413375b3cb2c1de079972db0b0a863b4b0a5b4f01b77fcd25fa28d431", - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", - "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", + "dispenser_tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", "tx_index": 31, - "block_time": 1730372679, + "block_time": 1730388556, "asset_info": { "divisible": true, "asset_longname": null, @@ -10911,9 +10973,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9d8ff8027769b381165c5592a245cb1c3f3249f197213fdc1dac935fefe38a51", + "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", "block_index": 144, - "block_time": 1730372679 + "block_time": 1730388556 } ], "next_cursor": null, @@ -10928,14 +10990,14 @@ "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qwecpl6mdgn8m2trfcqnh5uzq9zdmeju9hqct9d", + "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0069853c523af4104bb959da8ab08d558f63d218be19a766b64a30ae1dd5444d", - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -10946,9 +11008,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 568, @@ -10963,19 +11025,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qkcssvhz4xhg5hrfmyc8w9n9lx7t0u5arkyxum7", + "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "tx_index": 25, "value": 66600.0, - "block_time": 1730372656, + "block_time": 1730388533, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5b1018f730f191c47d75fb131f83782e26f3a7ccc7ef50aabf88c7cf34a12a7e", + "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", "block_index": 138, - "block_time": 1730372656 + "block_time": 1730388533 } ], "next_cursor": 213, @@ -11006,12 +11068,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "start_block": 0, "status": "open", - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "tx_index": 43, - "block_time": 1730372724, + "block_time": 1730388602, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11019,9 +11081,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b8bd7657109949159d18b2a75d265542537ed1a4c8df47b640698863762f5bc1", + "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", "block_index": 156, - "block_time": 1730372724 + "block_time": 1730388602 } ], "next_cursor": 196, @@ -11034,11 +11096,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "07206273fc271311072b30711ace63588f386c3260715e2dca6a95562e1891da" + "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1" }, "tx_hash": null, "block_index": 130, - "block_time": 1730372626 + "block_time": 1730388502 } ], "next_cursor": 110, @@ -11054,17 +11116,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "efa784c2fda8b81c4391aedd396b1874295c3e47036d23d125d607edb2ed960b", + "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", "paid_quantity": 34, - "source": "bcrt1q7rvhfead7wjhsc6e4u6ldmrdzv7pdacyn3kj3y", + "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", "status": "valid", - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "tx_index": 23, - "block_time": 1730372648, + "block_time": 1730388527, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, @@ -11072,9 +11134,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "00d2bec2547db0fc317a5de5a6f4ba65e5bc4df5baeb6b3817545d3855dca733", + "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", "block_index": 136, - "block_time": 1730372648 + "block_time": 1730388527 } ], "next_cursor": 190, @@ -11088,28 +11150,28 @@ "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3:0", + "destination": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "status": "valid", - "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", + "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", "tx_index": 66, - "block_time": 1730372898, + "block_time": 1730388772, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qld487vpw6lcd6xtdclk0s6xwr2td8j22hdqtxd", + "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f57dc46354776212a8ff2d4c97a1332e135d7d5604e9209a4c43a8358abbade3", + "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", "block_index": 200, - "block_time": 1730372898 + "block_time": 1730388772 } ], "next_cursor": 327, @@ -11123,28 +11185,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qjfhg2r8pvc6xrt74mfd30yfyqlkuhljs0x0esa", + "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "799cb287ad0e25f6f1022311944dea7d4aa9c50880afe4ecf21fb04e8588abdd:0", + "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", "status": "valid", - "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", "tx_index": 38, - "block_time": 1730372705, + "block_time": 1730388584, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vsdek2rud94wn40h88v8tl57ufu0c5z8545er", + "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "48da655ecc0a30f57d5ef190652179cb6ca164e90d1b8dea913c643b526bd185", + "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", "block_index": 151, - "block_time": 1730372705 + "block_time": 1730388584 } ], "next_cursor": null, @@ -11158,14 +11220,14 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af:0", + "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", "msg_index": 1, "quantity": 2000000000, - "source": "c1ad9c9b4318a3a0fff3a4a4ef0efb48612cb92a4a380f06c2d63cc10e1399c3:1", + "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", "status": "valid", - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "tx_index": 76, - "block_time": 1730372962, + "block_time": 1730388823, "asset_info": { "divisible": true, "asset_longname": null, @@ -11175,9 +11237,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61504f7faaab31cb3169eea557fa174f213dbaf424d0612e5fed2a030ecba9af", + "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", "block_index": 209, - "block_time": 1730372962 + "block_time": 1730388823 } ], "next_cursor": 674, @@ -11192,17 +11254,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz687ymyyf9qxq8jht039wv780h0eusmfyv8c6j", + "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", "status": "valid", - "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", + "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", "tx_index": 9, - "block_time": 1730372591, + "block_time": 1730388470, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "1965445427553cd43ba9d58d14500f7bd4e3d13a6d20d7c815d6f4ab57c9410e", + "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", "block_index": 121, - "block_time": 1730372591 + "block_time": 1730388470 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 1c5e16b34c..72b59de344 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -342,6 +342,8 @@ def gen_unpack_doc(db): "enhanced_send", "mpma_send", "sweep", + "attach", + "detach", # "send", # "bet", ] @@ -358,6 +360,8 @@ def gen_unpack_doc(db): "dividend": get_event_tx_hash(db, "ASSET_DIVIDEND"), "sweep": get_event_tx_hash(db, "SWEEP"), "btcpay": get_event_tx_hash(db, "BTC_PAY"), + "attach": get_event_tx_hash(db, "ATTACH_TO_UTXO"), + "detach": get_event_tx_hash(db, "DETACH_FROM_UTXO"), # "send": , # "bet": , } diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 98f63cf3a1..c844cc1ccb 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -498,14 +498,16 @@ def test_invalid_detach(self): print("Test invalid detach...") balances = self.api_call("assets/UTXOASSET/balances")["result"] + utxoasset_balances = [] print(balances) utxo = None test_address = None for balance in balances: if balance["utxo"] and balance["quantity"] > 0: - utxo = balance["utxo"] - test_address = balance["utxo_address"] - break + if not utxo: + utxo = balance["utxo"] + test_address = balance["utxo_address"] + utxoasset_balances.append(balance["utxo"]) assert utxo txid, vout = utxo.split(":") @@ -516,11 +518,16 @@ def test_invalid_detach(self): return_only_data=True, ) + # select an input without balance list_unspent = json.loads( self.bitcoin_cli("listunspent", 0, 9999999, json.dumps([test_address])).strip() ) for utxo in list_unspent: - if utxo["txid"] != txid or utxo["vout"] != int(vout): + if ( + utxo["txid"] != txid + or utxo["vout"] != int(vout) + and f"{txid}:{vout}" not in utxoasset_balances + ): selected_utxo = utxo break diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py index 6e4102f451..8a1e6d2376 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py @@ -167,7 +167,7 @@ "source": "$ADDRESS_1", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$TX_HASH:1", + "utxos_info": " $TX_HASH:1 2 ", }, "tx_hash": "$TX_HASH", "block_index": "$BLOCK_INDEX", @@ -317,7 +317,7 @@ "source": "$ADDRESS_2", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$TX_HASH:1", + "utxos_info": " $TX_HASH:1 2 ", }, "tx_hash": "$TX_HASH", }, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py index d1841cc258..94458bf358 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py @@ -291,7 +291,7 @@ "source": "$ADDRESS_3", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$TX_HASH:1", + "utxos_info": " $TX_HASH:1 2 ", }, "tx_hash": "$TX_HASH", }, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py index b7840214ed..09384191bd 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py @@ -144,7 +144,7 @@ "source": "$ADDRESS_2", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$TX_HASH:0", + "utxos_info": " $TX_HASH:0 3 1", }, "tx_hash": "$TX_HASH", }, @@ -260,7 +260,7 @@ "source": "$ADDRESS_2", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$TX_HASH:0", + "utxos_info": " $TX_HASH:0 3 1", }, "tx_hash": "$TX_HASH", }, 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 6c2eaa301c..e2ef02ec01 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -270,7 +270,7 @@ "source": "", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$UTXO_ATTACH_1_TX_HASH:0 $TX_HASH:0", + "utxos_info": "$UTXO_ATTACH_1_TX_HASH:0 $TX_HASH:0 1 ", }, "tx_hash": "$TX_HASH", }, @@ -626,7 +626,7 @@ "source": "", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$UTXO_ATTACH_3_TX_HASH:0 $UTXO_ATTACH_2_TX_HASH:0 $TX_HASH:0", + "utxos_info": "$UTXO_ATTACH_3_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:0 $TX_HASH:0 2 ", }, "tx_hash": "$TX_HASH", }, From d58103b65d6f0760c0755297f61c2f235e374d01 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 16:51:54 +0000 Subject: [PATCH 024/138] Make destination optional to detach --- apiary.apib | 3771 +++--- .../counterpartycore/lib/api/compose.py | 4 +- .../counterpartycore/lib/ledger.py | 2 +- .../counterpartycore/lib/messages/detach.py | 28 +- .../counterpartycore/test/fixtures/vectors.py | 5 + .../test/regtest/apidoc/apicache.json | 11273 ---------------- .../regtest/scenarios/scenario_18_utxo.py | 68 + .../test/regtest/testscenarios.py | 4 +- 8 files changed, 1984 insertions(+), 13171 deletions(-) delete mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/apiary.apib b/apiary.apib index 786fadf160..2f64d927fd 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-31 15:34:00.555943. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-31 16:19:30.876398. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 669, "event": "NEW_BLOCK", "params": { - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", "block_index": 209, - "block_time": 1730388823, + "block_time": 1730391553, "difficulty": 545259519, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245" + "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6" }, "tx_hash": null, "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 660, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 670, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", "block_index": 209, - "block_time": 1730388823, + "block_time": 1730391553, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "fee": 0, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", + "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 661, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "out_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "block_time": 1730391553 }, "tx_hash": null, "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 668, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76 }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 667, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 209, - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "block_time": 1730388823, + "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 672, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 676, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "memo": null, "quantity": 1000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": "valid", - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", + "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", "tx_index": 70, - "block_time": 1730388787, + "block_time": 1730391520, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", + "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", "block_index": 203, - "block_time": 1730388787 + "block_time": 1730391520 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 207, - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "status": "valid", - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "tx_index": 74, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "block_time": 1730388812 + "block_time": 1730391536 } ], "next_cursor": 656, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "status": "valid", - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "tx_index": 61, - "block_time": 1730388754, + "block_time": 1730391475, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "block_index": 195, - "block_time": 1730388754 + "block_time": 1730391475 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": "valid", - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "tx_index": 42, - "block_time": 1730388599, + "block_time": 1730391331, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "block_index": 155, - "block_time": 1730388599 + "block_time": 1730391331 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 202, - "block_time": 1730388783 + "block_time": 1730391505 }, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "block_index": 202, - "block_time": 1730388783 + "block_time": 1730391505 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": "valid", "transfer": false, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "tx_index": 69, - "block_time": 1730388783, + "block_time": 1730391505, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "block_index": 202, - "block_time": 1730388783 + "block_time": 1730391505 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "status": "valid", "tag": "64657374726f79", - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", + "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", "tx_index": 62, - "block_time": 1730388757, + "block_time": 1730391478, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", + "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", "block_index": 196, - "block_time": 1730388757 + "block_time": 1730391478 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": "open", - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "tx_index": 75, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 } ], "next_cursor": 536, @@ -759,20 +759,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": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "match_expire_index": 209, "status": "pending", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx0_block_index": 187, "tx0_expiration": 21, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "tx0_index": 52, - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "tx1_block_index": 189, "tx1_expiration": 21, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "tx1_index": 55, - "block_time": 1730388732, + "block_time": 1730391452, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,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": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "block_index": 189, - "block_time": 1730388732 + "block_time": 1730391452 } ], "next_cursor": 482, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f" + "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1" }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 } ], "next_cursor": 528, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987" + "tx_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1" }, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", + "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", "block_index": 188, - "block_time": 1730388728 + "block_time": 1730391448 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 488, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "status": "completed" }, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", + "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", "block_index": 188, - "block_time": 1730388728 + "block_time": 1730391448 } ], "next_cursor": 461, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "status": "valid", - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", + "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", "tx_index": 54, - "block_time": 1730388728, + "block_time": 1730391448, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", + "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", "block_index": 188, - "block_time": 1730388728 + "block_time": 1730391448 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "offer_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": "valid", - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", + "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", "tx_index": 59, - "block_time": 1730388746 + "block_time": 1730391467 }, - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", + "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", "block_index": 193, - "block_time": 1730388746 + "block_time": 1730391467 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "block_time": 1730388815 + "order_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_time": 1730391539 }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 } ], "next_cursor": 469, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 185, - "order_match_id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "block_time": 1730388640 + "order_match_id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "block_time": 1730391375 }, "tx_hash": null, "block_index": 185, - "block_time": 1730388640 + "block_time": 1730391375 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "satoshirate": 1, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": 0, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "tx_index": 63, - "block_time": 1730388761, + "block_time": 1730391482, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "block_index": 197, - "block_time": 1730388761 + "block_time": 1730391482 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", + "destination": "mgDwm8uDCgPNYmp8gda7tyVPQuWsrCSnig", "dispense_quantity": 10, - "dispenser_tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", + "dispenser_tx_hash": "142ebf3042c7b75794312ad55b53388abd934e062593fd469636d3803fc6eda5", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_hash": "22aa32ca39ad3df47f7412544c0721aa100a74141f2f031c703afedfb2a7d72b", "tx_index": 31, - "block_time": 1730388556, + "block_time": 1730391287, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", + "tx_hash": "22aa32ca39ad3df47f7412544c0721aa100a74141f2f031c703afedfb2a7d72b", "block_index": 144, - "block_time": 1730388556 + "block_time": 1730391287 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", + "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", "tx_index": 25, "value": 66600.0, - "block_time": 1730388533, + "block_time": 1730391265, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", + "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", "block_index": 138, - "block_time": 1730388533 + "block_time": 1730391265 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "start_block": 0, "status": "open", - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", + "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", "tx_index": 43, - "block_time": 1730388602, + "block_time": 1730391335, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", + "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", "block_index": 156, - "block_time": 1730388602 + "block_time": 1730391335 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1" + "tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce" }, "tx_hash": null, "block_index": 130, - "block_time": 1730388502 + "block_time": 1730391226 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "paid_quantity": 34, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "status": "valid", - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", + "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", "tx_index": 23, - "block_time": 1730388527, + "block_time": 1730391258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", + "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", "block_index": 136, - "block_time": 1730388527 + "block_time": 1730391258 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 200, - "destination": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb:0", + "destination": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "status": "valid", - "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", + "tx_hash": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684", "tx_index": 66, - "block_time": 1730388772, + "block_time": 1730391492, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", + "tx_hash": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684", "block_index": 200, - "block_time": 1730388772 + "block_time": 1730391492 } ], "next_cursor": 327, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", + "destination": "bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", + "source": "503ccbe40e6ffdc3b7bf8efe91f92c8423ba5b4880c318ed1cc5cfac84cacebe:0", "status": "valid", - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", + "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", "tx_index": 38, - "block_time": 1730388584, + "block_time": 1730391315, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", + "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", "block_index": 151, - "block_time": 1730388584 + "block_time": 1730391315 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "msg_index": 1, "quantity": 2000000000, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", "status": "valid", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 674, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", + "source": "bcrt1qv5cahzs0qe3kul3m483c0ezcacta303vfp9357", "status": "valid", - "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", + "tx_hash": "785ab3d26b0d9d77fb64d31af37c68976e144fdcd5343848c853a2337b3a2118", "tx_index": 9, - "block_time": 1730388470, + "block_time": 1730391192, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", + "tx_hash": "785ab3d26b0d9d77fb64d31af37c68976e144fdcd5343848c853a2337b3a2118", "block_index": 121, - "block_time": 1730388470 + "block_time": 1730391192 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", "difficulty": 545259519, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "previous_block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", + "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_time": 1730391539, + "previous_block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", "difficulty": 545259519, - "ledger_hash": "f0d33bc2271d95355bd480bfe20164a2ed76a3ce58f123a1d03de724e9aa6850", - "txlist_hash": "fe1a0af2449089a25fc8424a067bc21e49de2c274451f9739e2c7e2cd157d35f", - "messages_hash": "c3f77ccc2026502244ae222f879679b7bfc11cbfd99c86e7079d7bf193c6325b", + "ledger_hash": "e9cd88ef2f9a13d3d3158cb7b925a2900b44f9d2b2444038a9a40fda9e5e4774", + "txlist_hash": "6ad6ce001fa457dad2c651a5ae43f6dcd453a5f20311c50c39a0a0fcfd4510da", + "messages_hash": "974d3f5e9adca0fe4b5d98042a4a2d0458221738d86dd3afd5d648bb861aadf1", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", - "block_time": 1730388812, - "previous_block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", + "block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", + "block_time": 1730391536, + "previous_block_hash": "1a7d7fca34f5331b1c7dd9fadf6a2a44d3c60cc02e1d02932df19a458db5017d", "difficulty": 545259519, - "ledger_hash": "3be0751f33d5c16cbe28eee322ab13fb0ecab3bda5ac8bb62fcca6d77208abf5", - "txlist_hash": "0daf351fa19d157cfb1020e7c95cb9040a9d9ede7973ad7073cd450d67e3ae3b", - "messages_hash": "3c61e7bbc1aef836626108220cb934fab903961bdb5be5df5dfb7d88e66f1be8", + "ledger_hash": "44840cfc554c500119a0216dc262e773213182413cfb410ea150a453f0f33b99", + "txlist_hash": "16852378b922df5fee38207388ac1b2a3061303556a292b3396f1854b2b744ed", + "messages_hash": "55b6ace504fcc39549d9ba46d8ff4681849b03412d483aebc78831cfce2e0281", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", - "block_time": 1730388809, - "previous_block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", + "block_hash": "1a7d7fca34f5331b1c7dd9fadf6a2a44d3c60cc02e1d02932df19a458db5017d", + "block_time": 1730391531, + "previous_block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", "difficulty": 545259519, - "ledger_hash": "4690b8085523af8cc624aa63a31655736e8178d31cb65decb1ec6202a3921efb", - "txlist_hash": "ff8db2fba663d4306c95542a418b4ae778f78559d38ef16ac2e94fa6974f6efe", - "messages_hash": "3e0832c951fa8443a2b61a16d2f4b4a669d8db06debf2d8a3d97b06882e1e187", + "ledger_hash": "1a50e52e5033f763669f6bb69d44021bb273a1b516ad847aa5e0e062effd3c6e", + "txlist_hash": "e61b7499ab5cce3cf988e66038243e10a640d05fe8f234ae3f88866c607eb217", + "messages_hash": "dd853577df434056046bcfaef09cb1adc56cc83a33b5a5f565ab4fa82ea025fb", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "block_time": 1730388804, - "previous_block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", + "block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", + "block_time": 1730391527, + "previous_block_hash": "18a3c5fbc84f4452b8993ba726383a69835e0abb1080c99c64d0a0bcd137a3ef", "difficulty": 545259519, - "ledger_hash": "83103dcef879c17a4e3bbb4313e1c1a744ae93d0a4d6d1808f0a20cba81d5a89", - "txlist_hash": "0b5b8c45c1f9d6339d4e895c6b1320bb3b86cf0fce980627162ae1c518a2a296", - "messages_hash": "4a83dd1634e7fe06beb491cff8061ff3b902b22fee98d5c0b253e70e52dbbb81", + "ledger_hash": "04fd73ea2f32b9f30103c2e1aeeef6d0629a1f83220d148ccbe08e72eef7cadf", + "txlist_hash": "f554bfed0b81f5d552506c24da3e350f8391f6dba377f9795404cbd641dd9d86", + "messages_hash": "d1676b60eee6bffe44c0be0678d5402bbc7f3161a637a2bf1886aa321ea35a5b", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", "difficulty": 545259519, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719` (str, required) - The index of the block to return + + block_hash: `0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", "difficulty": 545259519, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", + "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "block_time": 1730391553 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76 }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" }, { "event_index": 680, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" }, { "event_index": 679, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" } ], "next_cursor": 677, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" }, { "event_index": 676, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" }, { "event_index": 673, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 209, - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "object_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "block_index": 208, "confirmed": true, - "block_time": 1730388815 + "block_time": 1730391539 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", + "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "offer_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "status": "valid", "confirmed": true, - "block_time": 1730388746 + "block_time": 1730391467 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", + "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", "block_index": 196, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730388757, + "block_time": 1730391478, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388783, + "block_time": 1730391505, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730388754, + "block_time": 1730391475, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", + "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730388602, + "block_time": 1730391335, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", + "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388527, + "block_time": 1730391258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", + "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", "block_index": 138, - "block_hash": "3508c7c5359a2a0acbec809744ff2e71c45a0b0e7c2bdb96d5073be50d55b022", - "block_time": 1730388533, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_hash": "6fe7a344694fccb231cabb3fe3a05f47876f329a3e9013451387687b6ce73c6e", + "block_time": 1730391265, + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae:1 2 ", + "utxos_info": " ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", + "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", "block_index": 188, - "block_hash": "1d9655e1316e7135df1eaacb97bf7077f0ceaab7d3e16a77e5b5983f09008788", - "block_time": 1730388728, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "7d7c2cd93272f8dbb9443de8eeff4c93b5da0e4d1bf4be2504dad74696b04a96", + "block_time": 1730391448, + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "btc_amount": 2000, "fee": 10000, - "data": "0b024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "data": "0bd47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f12023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "supported": true, - "utxos_info": " 0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346:0 3 1", + "utxos_info": " 5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", + "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", "block_index": 193, - "block_hash": "414a1b58d4bd644e59a40a934a4a33c28274c77165a7221e7fac3ee04a475cf1", - "block_time": 1730388746, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "24695e933b5e4a5073357ef202209967dbcfcba51acfc3a0962ffe02e8a2fe73", + "block_time": 1730391467, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "data": "463d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "supported": true, - "utxos_info": " 664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535:1 2 ", + "utxos_info": " 754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "offer_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", + "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", "block_index": 196, - "block_hash": "2551e8539f36e32ca42ea9c4f4eab98383fd7852f898adba9b4c76f36426f6eb", - "block_time": 1730388757, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "block_hash": "31a5ea5250fa9a71ab56683df224aeb6591c5c22dbd9cb7f73467b62cba34caa", + "block_time": 1730391478, + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16:1 e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 2 ", + "utxos_info": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b:1 1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "block_index": 197, - "block_hash": "78792fcf4fd0f6c59e5faa285f1eabc047310ad7a0503c6a2e673732a029f3fe", - "block_time": 1730388761, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "00ea14af34cb2a4a301074190d6a39170c5c8e4b412048533d799b2d631a532a", + "block_time": 1730391482, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90:1 2 ", + "utxos_info": " b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", + "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "block_index": 155, - "block_hash": "551fe5e43f0be41ee2d0a4405c2c56eb60ac4f92f7732c1a23e34bd7dde9bc30", - "block_time": 1730388599, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "58ea090d9b9d58dbc71610e053eedc711c14f75e9e5f5cfe9fdad74532692839", + "block_time": 1730391331, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37:1 2 ", + "utxos_info": " ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "block_index": 202, - "block_hash": "420b927a976b8e2e3db3cc4c24e106987232a8181a8d46be1d2efb652a7c90ad", - "block_time": 1730388783, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "59acb9c1866e5aa5cddb20d91149904fb1b97ebe738fcf5082a488be753415fe", + "block_time": 1730391505, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4:1 2 ", + "utxos_info": " e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_time": 1730391539, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", + "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", + "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", "block_index": 203, - "block_hash": "3d23f456ba64fa5d2eff4d25356e02df5365eef3fc3a690338a0d9526f538ef6", - "block_time": 1730388787, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "127cfdd07646ee016e64531a98eb110445f1e7c1e0c9117454746a2dadefc5db", + "block_time": 1730391520, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", + "data": "02000000178d82231300000000000003e880881cbdd8a0c6681f017f43cb7b5fc8eb555e3515", "supported": true, - "utxos_info": " a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824:1 2 ", + "utxos_info": " 4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", - "block_time": 1730388812, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", + "block_time": 1730391536, + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038089ffb1fe29ad158c416ad8184a8eb38ed630a46180ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33:0 4 ", + "utxos_info": " 57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "block_index": 195, - "block_hash": "6d461ef2c2bcfa5858d8824f32608af19d0ce6b7ae305b08d2d09ead69cd1a69", - "block_time": 1730388754, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "block_hash": "0df289dee612179acfe25d8a8a2eb11d69cd7c305d2a96846aff0abb4905e860", + "block_time": 1730391475, + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048089327ba83f6181de1d81727d7278dcd5a82d8e96017377656570206d7920617373657473", + "data": "04803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c1017377656570206d7920617373657473", "supported": true, - "utxos_info": " ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860:1 2 ", + "utxos_info": " 802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 66, - "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", + "tx_hash": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684", "block_index": 200, - "block_hash": "3dfe5afe8c6b226791bb26391ba07aed1605bf05789f3bb2dfd972718f4c805f", - "block_time": 1730388772, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "block_hash": "201942aa9c8842bedd396623e990bcbc3b82c0191baef8502a4b0d7439225270", + "block_time": 1730391492, + "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "destination": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb:0 3 1", + "utxos_info": " 44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "divisible": true, "locked": false }, @@ -3224,23 +3224,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 38, - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", + "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", "block_index": 151, - "block_hash": "54c626cf9a3403680d580f9c9a8c4a3ebbd71edc15e8f7186d940ef9762d27ae", - "block_time": 1730388584, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "block_hash": "1653dcd05d7be60ab07409ff9fcd6ccd330cc277d0ef8f6f8b09e1d50925245b", + "block_time": 1730391315, + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "66626372743171636874706d67783663633464383836757372786e666e7476616c6a6b6871387173757a346d38", + "data": "666263727431713865377378757863726e7a367a773468736863617130336e7676713479646d377a7865383976", "supported": true, - "utxos_info": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0 a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16:1 2 ", + "utxos_info": "503ccbe40e6ffdc3b7bf8efe91f92c8423ba5b4880c318ed1cc5cfac84cacebe:0 1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8" + "destination": "bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v" } }, "btc_amount_normalized": "0.00000000" @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", + "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_time": 1730391539, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", + "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001066b89040320553dc277ad7cb519383254e60086ce36ee617020af8eba2e55fcf10000000000ffffffff4c8aee87908b6b34a3dd885c25ab8a05e9b869281b25dd7e54cc86c20f7d74ae0000000000ffffffffac8fde2041b41f6fe8aba11bdf3c3dfda68f36cd4a788c14e2d734bb7ce613540000000000ffffffff5a68b5fd5e2de81a0d0b2b2e6e3f72a629d2096d19c4df863b75e02b7f9c87250000000000ffffffff5233472df64b6a0f74ed8ea3fa99c3e069b02145cf6bf4024221a8774e7ac38b0000000000ffffffff96ac83ffc648fcaabb221490474ff575d03bff9cbbdcecd8196927de013cde150000000000ffffffff04e80300000000000069512103d164c6d286f929d0e56f9e4089c03adb55f18596061f1d0817b9fbd9ab5b5e9f2102069f8eb3212b2b5584b3893c32c2b80a45a5315954c5bbe35ea9376c4854c47f2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512103d164c6d286f929d0e5b283c27bef911be791ca2a3a4c145a0d3be3c69b91a5282102953b0e385ec8f11b8280d4a628e6447fb94ae919a4da1b0eb2f623f7f73545d82102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512102f064c6d286f929d0e56c9e43099263633b446207b4da007166156bdf9b55710f2103953b0e385ec8f13197354113942c447fb94ae919a4d09e63d79b4cc4773545652102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae387923fc0600000016001478682e5b8327b7725f504f257781372d3f4df0590247304402206359adb985fd6368ad13aa0001e648d7ecd2e1323f80d36d41bb7a96bb3315be02201a6f17d85cb52c2d478b31fbc735110e65d01c8d455f461d6b20951bf27daf1f012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f02473044022058da2b8a4717a42e53f37e0c07d30c634d428ce74c7030c4f21321af250abbf202205d95de4f24f6b3312abfdb1def46ccb8f58068456813a2c77446a2c2616ed6f0012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f024730440220394dab9061809fc86c2b0d9a6cf4ef012d06113562fef4de987fcd68ee9e858f02201b58eeb12693a95a081ba7de22c6ed42fbffe7c8e18b70576c1198360d218c8c012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f0247304402201ba3397763d08bf79bcf17ee6e7fb24e8892a57ae5c9ea01676de059003e141202206e574a387362745a5de847e284e2b8edce1111266586d5f0113dea4a859c0f96012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f0247304402203376f631a65e6a2e0e465e3061e291d75aac2e4592918ce772d61b35c10ff2e9022072f7fbbac9af2944656b92309c697db5c7235f49104745bb5cfc6f4745c40e65012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f0247304402207ef4076a621b57dbc3195bfbd0d274a12cf441ec957b3f19bfb566a47dbd56cf02206d4bfe5d4b643fa36baea6221ea1c53a2501189166ae7bc291b1c7feb2c34dd3012102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010694e3ab5db2f7a27c74021db147c592b51ae6d0995c329597d51695639288905e0000000000ffffffff0fcced3c2872aa1469df17d6aaca8f83f6f51c0bc182ba643a8d9c8b49f744de0000000000ffffffffdd9482c1bef5a8c46792b31decb55449d367b4f7b52edf8d9d9c2cb7158be78d0000000000ffffffff6f869da66e8c39e7c036d0e8622102cfdafe8e49cb795d7eeef378667ebfc6220000000000ffffffff724d93add14acff139aa282ac059af0b85811c1aa95ea6b5273072246acf4b4c0000000000ffffffff101b963af724f3b0a1e702a79d5694a9e62a8255b3ae6253078444ee3adc68580000000000ffffffff04e80300000000000069512102d848f432c7905a6bd03a1f6d25a67c1ac0a2c4e96d1f54c4fa17f9e75981cf7021027adc04bb7b54e94b49694f4510620a8e223db124c4f7c4a082cecec8827303d42102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aee80300000000000069512102d848f432c7905a6bd0b3ac3f877bf26fc51f7473cadf6b873169454f3a1045db21034fc984103598da311a0397b292195941f631104f9397474dd93faf8aaac5bc452102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aee80300000000000069512102f948f432c7905a6bd0391f6ea52ee0a718020281721e7fac5a47cd563ad4912e21024fc984103598da1b0fb602072ed35941f631104f939dc220bc52c0b92ac5bc002102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae387923fc0600000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102473044022066fdce362e742d39cbf1a7617820b696d27654915e22ca0598b5ec6c81e1be27022031a266fad5ef73389eeaa386323048ec8935ca13ee7e0699927b36068c183279012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c4790247304402202b9ef1d4465b4db4d37d3689a122aa9242b94e93f5d7571c63cedff1cc9a5eab0220127a94d9cc254e178fe1a8de8381b794723cbe25ccc2b9fc7a13c64beaf6b0cd012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479024630430220450a52070df34660a05f3f537c3a83e5d218efe534ff146bc21e8c478c5d5b5b021f40b08190dee4f8690c0563e12c5604789b6ce8795c33913a94cb49e4ff3ec2012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c4790247304402204fb4bf43cdc2b0b65a6df70637054a6d8981895b1c86e1e7a35bd8b0f8d5c177022071d1a57bf570f0b357638a71b5b37497347192162b5c10ee331b001b9697b75c012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479024730440220293fdd9ccfe4dde1af247914b94bf1d32f736ecf646c231ec0971c8167352164022040feab311340f130eabdb6bd52afa208008b17a74eb29ac2c2b43a36bc973f0d012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c4790247304402203673a9eb0e318b3f06abd23e7d3390eee9c7880381416a127cfc62f8a349f9cc02201871ae77fad6bc0454dc4f523dd0172c7a50b5593bb46f9ab85125da62da3281012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47900000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6b89040320553dc277ad7cb519383254e60086ce36ee617020af8eba2e55fcf1", + "hash": "94e3ab5db2f7a27c74021db147c592b51ae6d0995c329597d51695639288905e", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "4c8aee87908b6b34a3dd885c25ab8a05e9b869281b25dd7e54cc86c20f7d74ae", + "hash": "0fcced3c2872aa1469df17d6aaca8f83f6f51c0bc182ba643a8d9c8b49f744de", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "ac8fde2041b41f6fe8aba11bdf3c3dfda68f36cd4a788c14e2d734bb7ce61354", + "hash": "dd9482c1bef5a8c46792b31decb55449d367b4f7b52edf8d9d9c2cb7158be78d", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5a68b5fd5e2de81a0d0b2b2e6e3f72a629d2096d19c4df863b75e02b7f9c8725", + "hash": "6f869da66e8c39e7c036d0e8622102cfdafe8e49cb795d7eeef378667ebfc622", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5233472df64b6a0f74ed8ea3fa99c3e069b02145cf6bf4024221a8774e7ac38b", + "hash": "724d93add14acff139aa282ac059af0b85811c1aa95ea6b5273072246acf4b4c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "96ac83ffc648fcaabb221490474ff575d03bff9cbbdcecd8196927de013cde15", + "hash": "101b963af724f3b0a1e702a79d5694a9e62a8255b3ae6253078444ee3adc6858", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512103d164c6d286f929d0e56f9e4089c03adb55f18596061f1d0817b9fbd9ab5b5e9f2102069f8eb3212b2b5584b3893c32c2b80a45a5315954c5bbe35ea9376c4854c47f2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + "script_pub_key": "512102d848f432c7905a6bd03a1f6d25a67c1ac0a2c4e96d1f54c4fa17f9e75981cf7021027adc04bb7b54e94b49694f4510620a8e223db124c4f7c4a082cecec8827303d42102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae" }, { "value": 1000, - "script_pub_key": "512103d164c6d286f929d0e5b283c27bef911be791ca2a3a4c145a0d3be3c69b91a5282102953b0e385ec8f11b8280d4a628e6447fb94ae919a4da1b0eb2f623f7f73545d82102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + "script_pub_key": "512102d848f432c7905a6bd0b3ac3f877bf26fc51f7473cadf6b873169454f3a1045db21034fc984103598da311a0397b292195941f631104f9397474dd93faf8aaac5bc452102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae" }, { "value": 1000, - "script_pub_key": "512102f064c6d286f929d0e56c9e43099263633b446207b4da007166156bdf9b55710f2103953b0e385ec8f13197354113942c447fb94ae919a4d09e63d79b4cc4773545652102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" + "script_pub_key": "512102f948f432c7905a6bd0391f6ea52ee0a718020281721e7fac5a47cd563ad4912e21024fc984103598da1b0fb602072ed35941f631104f939dc220bc52c0b92ac5bc002102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae" }, { "value": 29999987000, - "script_pub_key": "001478682e5b8327b7725f504f257781372d3f4df059" + "script_pub_key": "001489ffb1fe29ad158c416ad8184a8eb38ed630a461" } ], "vtxinwit": [ - "304402206359adb985fd6368ad13aa0001e648d7ecd2e1323f80d36d41bb7a96bb3315be02201a6f17d85cb52c2d478b31fbc735110e65d01c8d455f461d6b20951bf27daf1f01", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "3044022058da2b8a4717a42e53f37e0c07d30c634d428ce74c7030c4f21321af250abbf202205d95de4f24f6b3312abfdb1def46ccb8f58068456813a2c77446a2c2616ed6f001", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "30440220394dab9061809fc86c2b0d9a6cf4ef012d06113562fef4de987fcd68ee9e858f02201b58eeb12693a95a081ba7de22c6ed42fbffe7c8e18b70576c1198360d218c8c01", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "304402201ba3397763d08bf79bcf17ee6e7fb24e8892a57ae5c9ea01676de059003e141202206e574a387362745a5de847e284e2b8edce1111266586d5f0113dea4a859c0f9601", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "304402203376f631a65e6a2e0e465e3061e291d75aac2e4592918ce772d61b35c10ff2e9022072f7fbbac9af2944656b92309c697db5c7235f49104745bb5cfc6f4745c40e6501", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "304402207ef4076a621b57dbc3195bfbd0d274a12cf441ec957b3f19bfb566a47dbd56cf02206d4bfe5d4b643fa36baea6221ea1c53a2501189166ae7bc291b1c7feb2c34dd301", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" + "3044022066fdce362e742d39cbf1a7617820b696d27654915e22ca0598b5ec6c81e1be27022031a266fad5ef73389eeaa386323048ec8935ca13ee7e0699927b36068c18327901", + "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", + "304402202b9ef1d4465b4db4d37d3689a122aa9242b94e93f5d7571c63cedff1cc9a5eab0220127a94d9cc254e178fe1a8de8381b794723cbe25ccc2b9fc7a13c64beaf6b0cd01", + "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", + "30430220450a52070df34660a05f3f537c3a83e5d218efe534ff146bc21e8c478c5d5b5b021f40b08190dee4f8690c0563e12c5604789b6ce8795c33913a94cb49e4ff3ec201", + "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", + "304402204fb4bf43cdc2b0b65a6df70637054a6d8981895b1c86e1e7a35bd8b0f8d5c177022071d1a57bf570f0b357638a71b5b37497347192162b5c10ee331b001b9697b75c01", + "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", + "30440220293fdd9ccfe4dde1af247914b94bf1d32f736ecf646c231ec0971c8167352164022040feab311340f130eabdb6bd52afa208008b17a74eb29ac2c2b43a36bc973f0d01", + "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", + "304402203673a9eb0e318b3f06abd23e7d3390eee9c7880381416a127cfc62f8a349f9cc02201871ae77fad6bc0454dc4f523dd0172c7a50b5593bb46f9ab85125da62da328101", + "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479" ], "lock_time": 0, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "tx_id": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858" + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", + "tx_id": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -3472,7 +3472,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0` (str, required) - Transaction hash + + tx_hash: `d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", + "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8f166f92b5df50e7e820673e08370fe58ac87b8fc8bc40b58f99ce02676c65e4", + "hash": "8f37a78c72fd9f963a871b4c8b33491fc74178a3d722b89fac11536fca77341f", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eb85dbb459ea84908a33a13b56a4c0f9d61b3428c9f62a3afae3421595e1808312e9fece859975255303af003e180" + "script_pub_key": "6a2ef108023c163492e751a618873bd01959983d2c7d8db7cb58f9e66ec57f8511218f5432199a4e56aaedbdcc71bd76" }, { "value": 4949930546, - "script_pub_key": "001489327ba83f6181de1d81727d7278dcd5a82d8e96" + "script_pub_key": "00143e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c1" } ], "vtxinwit": [ - "3044022040a81983cc671957eb31f3f5fa15172b390e4657b653a5367afb5adb44985b9f02201ad999e70949b602a0904dd25475d183f4bc801fee903cb294b6b55c7adde8ed01", - "022e81e49c06e82646fb1b2bd54c354500668ccaca97156448c0c855f3c3f33e4a" + "304402202c26e10f94739a0744284af8841ef6b44acb42c519d6afe3fc1cfb3b6b73256d022057fcc534a60a5ac84d271450892aaa560b96e985d131cde9663faa18debf699601", + "02e5e25946a827b1c608ee8b16645dd4ea353a0395f2ba641d35c960b146f55530" ], "lock_time": 0, - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_id": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0" + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_id": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "asset_info": { "divisible": true, @@ -3611,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", + "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction + + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (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. @@ -3652,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", + "block_time": 1730391553, + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", + "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76 }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 680, @@ -3719,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 679, @@ -3748,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "asset_info": { "divisible": true, "asset_longname": null, @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -3787,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 677, @@ -3797,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "msg_index": 1, "quantity": 2000000000, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", "status": "valid", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 676, @@ -3829,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction to return + + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -3853,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76 }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 680, @@ -3867,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -3885,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 679, @@ -3896,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "asset_info": { "divisible": true, "asset_longname": null, @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -3935,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 677, @@ -3945,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 209, - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "msg_index": 1, "quantity": 2000000000, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", "status": "valid", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -3962,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 676, @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction to return + + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (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 @@ -3996,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction to return + + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (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 @@ -4073,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 76, "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,16 +4152,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -4171,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 676, @@ -4183,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -4198,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 673, @@ -4210,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": null, @@ -4240,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The hash of the transaction to return + + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `682` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4262,16 @@ Returns the events of a transaction "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -4281,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 676, @@ -4293,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -4308,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 673, @@ -4320,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4508,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - Comma separated list of addresses to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_time": 1730391539, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", + "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4573,17 +4573,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", - "block_time": 1730388812, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", + "block_time": 1730391536, + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038089ffb1fe29ad158c416ad8184a8eb38ed630a46180ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33:0 4 ", + "utxos_info": " 57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4591,14 +4591,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4606,7 +4606,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4625,17 +4625,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", + "tx_hash": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", "block_index": 206, - "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", - "block_time": 1730388809, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "block_hash": "1a7d7fca34f5331b1c7dd9fadf6a2a44d3c60cc02e1d02932df19a458db5017d", + "block_time": 1730391531, + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e96c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038089ffb1fe29ad158c416ad8184a8eb38ed630a46180ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c1c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000:0 4 ", + "utxos_info": " 7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4643,14 +4643,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4658,7 +4658,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4677,17 +4677,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "block_time": 1730388804, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", + "block_time": 1730391527, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", + "utxos_info": " 854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4695,14 +4695,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4710,7 +4710,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4729,17 +4729,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", - "block_time": 1730388790, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "18a3c5fbc84f4452b8993ba726383a69835e0abb1080c99c64d0a0bcd137a3ef", + "block_time": 1730391523, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", + "utxos_info": " 434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4747,14 +4747,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -4762,7 +4762,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4790,7 +4790,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `682` (str, optional) - The last event index to return @@ -4826,11 +4826,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "status": "open", - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "tx_index": 75, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4854,24 +4854,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 }, { "event_index": 665, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "block_index": 208, - "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "event": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "quantity": 1000, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730388815, + "block_time": 1730391539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4881,37 +4881,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 }, { "event_index": 664, "event": "ORDER_EXPIRATION", "params": { "block_index": 208, - "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "block_time": 1730388815 + "order_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_time": 1730391539 }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "event": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730388815, + "block_time": 1730391539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4921,25 +4921,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 }, { "event_index": 661, "event": "NEW_TRANSACTION", "params": { - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", + "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", "block_index": 208, - "block_time": 1730388815, + "block_time": 1730391539, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "tx_index": 75, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", + "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4971,9 +4971,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 } ], "next_cursor": 657, @@ -4986,7 +4986,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99,bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule,bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a` (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 @@ -5002,17 +5002,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "quantity": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "status": "valid", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77, "asset_info": { "divisible": true, @@ -5023,22 +5023,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "CREDIT", "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -5048,22 +5048,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "XCP", "block_index": 209, - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -5073,30 +5073,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730388828.1054614, + "block_time": 1730391558.1007109, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", + "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", "destination": "", "fee": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77, - "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", + "utxos_info": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "asset_info": { "divisible": true, @@ -5110,7 +5110,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 } ], "next_cursor": null, @@ -5123,7 +5123,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -5143,7 +5143,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5151,14 +5151,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5166,14 +5166,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5181,14 +5181,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5203,7 +5203,7 @@ Returns the balances of an address "quantity_normalized": "826.49961000" }, { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5211,7 +5211,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5228,7 +5228,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -5241,7 +5241,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -5266,7 +5266,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5316,16 +5316,16 @@ Returns the credits of an address "result": [ { "block_index": 208, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "event": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "asset_info": { "divisible": true, "asset_longname": null, @@ -5337,16 +5337,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "event": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "divisible": true, "asset_longname": null, @@ -5358,16 +5358,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", + "event": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388809, + "block_time": 1730391531, "asset_info": { "divisible": true, "asset_longname": null, @@ -5379,20 +5379,20 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "event": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "tx_index": 69, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388783, + "block_time": 1730391505, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5400,16 +5400,16 @@ Returns the credits of an address }, { "block_index": 193, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "event": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388746, + "block_time": 1730391467, "asset_info": { "divisible": true, "asset_longname": null, @@ -5430,7 +5430,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5469,16 +5469,16 @@ Returns the debits of an address "result": [ { "block_index": 208, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "event": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "asset_info": { "divisible": true, "asset_longname": null, @@ -5490,16 +5490,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "event": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "divisible": true, "asset_longname": null, @@ -5511,20 +5511,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "event": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5532,16 +5532,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "event": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "divisible": true, "asset_longname": null, @@ -5553,20 +5553,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "event": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5583,7 +5583,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address of the feed + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5618,7 +5618,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -5637,9 +5637,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", + "tx_hash": "34715074bfe898e4ec5e19ad65577230a7dfd5c8895d7558a61fef5464d16093", "block_index": 137, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5647,7 +5647,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730388530, + "block_time": 1730391262, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5661,7 +5661,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -5680,14 +5680,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "692df354dadcb4b6e85230b8e927455d55443441923eb63c69e09f3d33aacfd6", + "tx_hash": "ee230eec27f35823550ac514ec512b9e518e76e83c42468162e8305c30de6de2", "block_index": 112, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730388438, + "block_time": 1730391158, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5702,7 +5702,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -5721,10 +5721,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5732,7 +5732,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "divisible": true, "asset_longname": null, @@ -5745,10 +5745,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5756,11 +5756,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5769,10 +5769,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5780,11 +5780,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5793,10 +5793,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5804,7 +5804,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "divisible": true, "asset_longname": null, @@ -5817,10 +5817,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5828,11 +5828,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5850,7 +5850,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8` (str, required) - The address to return + + address: `bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v` (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 @@ -5869,10 +5869,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", + "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", "block_index": 151, - "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", - "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", + "source": "503ccbe40e6ffdc3b7bf8efe91f92c8423ba5b4880c318ed1cc5cfac84cacebe:0", + "destination": "bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5880,11 +5880,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388584, + "block_time": 1730391315, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5902,7 +5902,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5922,10 +5922,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5933,11 +5933,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5946,10 +5946,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5957,11 +5957,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5970,10 +5970,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5981,11 +5981,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -5994,10 +5994,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -6005,11 +6005,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -6018,10 +6018,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", + "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", "block_index": 203, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -6029,11 +6029,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388787, + "block_time": 1730391520, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -6051,7 +6051,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8` (str, required) - The address to return + + address: `bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6079,7 +6079,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6108,9 +6108,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6119,7 +6119,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6129,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -6145,9 +6145,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6156,7 +6156,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6166,11 +6166,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388764, + "block_time": 1730391485, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -6191,7 +6191,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -6204,9 +6204,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6215,7 +6215,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6225,7 +6225,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -6247,7 +6247,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -6267,19 +6267,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", + "tx_hash": "0ebb7274208390d884b54acabf4287bccda60409daba20ad2d212352771dfa48", "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "dispenser_tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6287,7 +6287,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6302,11 +6302,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388764, + "block_time": 1730391485, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -6316,19 +6316,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6336,7 +6336,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6351,7 +6351,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -6365,19 +6365,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6385,7 +6385,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6400,7 +6400,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -6422,7 +6422,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address to return + + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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 @@ -6442,19 +6442,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", + "tx_hash": "0ebb7274208390d884b54acabf4287bccda60409daba20ad2d212352771dfa48", "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "dispenser_tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6462,7 +6462,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6477,11 +6477,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388764, + "block_time": 1730391485, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -6491,19 +6491,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6511,7 +6511,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6526,7 +6526,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -6540,19 +6540,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6560,7 +6560,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6575,7 +6575,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -6597,7 +6597,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -6618,19 +6618,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6638,7 +6638,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6653,7 +6653,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -6667,19 +6667,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6687,7 +6687,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6702,7 +6702,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -6724,7 +6724,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address to return + + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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` @@ -6745,19 +6745,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6765,7 +6765,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6780,7 +6780,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -6794,19 +6794,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6814,7 +6814,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6829,7 +6829,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -6851,7 +6851,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99` (str, required) - The address to return + + address: `bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule` (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 @@ -6870,16 +6870,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730388754, + "block_time": 1730391475, "fee_paid_normalized": "0.00600000" } ], @@ -6893,7 +6893,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6925,14 +6925,14 @@ Returns the issuances of an address "result": [ { "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -6947,20 +6947,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388783, + "block_time": 1730391505, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", + "tx_hash": "bd1f2774a6788f448f4abecd7d83056877fa7ebb13f5d201a7a03d9c12b85932", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -6975,20 +6975,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388626, + "block_time": 1730391360, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", + "tx_hash": "5a66398585f30cf7dfa34570ed4e390ef54f44e7bbb3492f1b9dfdf12a3f78df", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -7003,20 +7003,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730388621, + "block_time": 1730391357, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", + "tx_hash": "6d78d6c77201292b7a4fbf00a29cfb85c5ebeac2397c86d2eb62ec3755d82b1c", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -7031,20 +7031,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388617, + "block_time": 1730391353, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "dadccac15a0cd2343816a234c9eb7d525d8473782a746c1032e8046f29847c30", + "tx_hash": "48f07ccbdfb0a37c40f2a271ea166b0202e3899929865c050745f746aa2c8881", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -7059,7 +7059,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388614, + "block_time": 1730391348, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7074,7 +7074,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The issuer or owner to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7097,8 +7097,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7106,16 +7106,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, + "first_issuance_block_time": 1730391505, + "last_issuance_block_time": 1730391505, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 10000000000, @@ -7123,16 +7123,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, + "first_issuance_block_time": 1730391348, + "last_issuance_block_time": 1730391357, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7140,16 +7140,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, + "first_issuance_block_time": 1730391302, + "last_issuance_block_time": 1730391302, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 40, @@ -7157,16 +7157,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730388523, - "last_issuance_block_time": 1730388527, + "first_issuance_block_time": 1730391255, + "last_issuance_block_time": 1730391258, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 19, @@ -7174,8 +7174,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730388506, - "last_issuance_block_time": 1730388519, + "first_issuance_block_time": 1730391230, + "last_issuance_block_time": 1730391251, "supply_normalized": "0.00000019" } ], @@ -7189,7 +7189,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The issuer to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -7212,8 +7212,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7221,16 +7221,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, + "first_issuance_block_time": 1730391505, + "last_issuance_block_time": 1730391505, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 10000000000, @@ -7238,16 +7238,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, + "first_issuance_block_time": 1730391348, + "last_issuance_block_time": 1730391357, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7255,16 +7255,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, + "first_issuance_block_time": 1730391302, + "last_issuance_block_time": 1730391302, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 40, @@ -7272,16 +7272,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730388523, - "last_issuance_block_time": 1730388527, + "first_issuance_block_time": 1730391255, + "last_issuance_block_time": 1730391258, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 19, @@ -7289,8 +7289,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730388506, - "last_issuance_block_time": 1730388519, + "first_issuance_block_time": 1730391230, + "last_issuance_block_time": 1730391251, "supply_normalized": "0.00000019" } ], @@ -7304,7 +7304,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The owner to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7327,8 +7327,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7336,16 +7336,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, + "first_issuance_block_time": 1730391505, + "last_issuance_block_time": 1730391505, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 10000000000, @@ -7353,16 +7353,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, + "first_issuance_block_time": 1730391348, + "last_issuance_block_time": 1730391357, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7370,16 +7370,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, + "first_issuance_block_time": 1730391302, + "last_issuance_block_time": 1730391302, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 40, @@ -7387,16 +7387,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730388523, - "last_issuance_block_time": 1730388527, + "first_issuance_block_time": 1730391255, + "last_issuance_block_time": 1730391258, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 19, @@ -7404,8 +7404,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730388506, - "last_issuance_block_time": 1730388519, + "first_issuance_block_time": 1730391230, + "last_issuance_block_time": 1730391251, "supply_normalized": "0.00000019" } ], @@ -7419,7 +7419,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + cursor: `76` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7438,17 +7438,17 @@ Returns the transactions of an address "result": [ { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_time": 1730391539, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", + "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7484,17 +7484,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "block_time": 1730388804, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", + "block_time": 1730391527, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", + "utxos_info": " 854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7502,14 +7502,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -7517,7 +7517,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7536,17 +7536,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", - "block_time": 1730388790, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "18a3c5fbc84f4452b8993ba726383a69835e0abb1080c99c64d0a0bcd137a3ef", + "block_time": 1730391523, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", + "utxos_info": " 434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7554,14 +7554,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -7569,7 +7569,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7588,17 +7588,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", + "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", "block_index": 203, - "block_hash": "3d23f456ba64fa5d2eff4d25356e02df5365eef3fc3a690338a0d9526f538ef6", - "block_time": 1730388787, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "127cfdd07646ee016e64531a98eb110445f1e7c1e0c9117454746a2dadefc5db", + "block_time": 1730391520, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", + "data": "02000000178d82231300000000000003e880881cbdd8a0c6681f017f43cb7b5fc8eb555e3515", "supported": true, - "utxos_info": " a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824:1 2 ", + "utxos_info": " 4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7606,12 +7606,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -7622,17 +7622,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "block_index": 202, - "block_hash": "420b927a976b8e2e3db3cc4c24e106987232a8181a8d46be1d2efb652a7c90ad", - "block_time": 1730388783, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "block_hash": "59acb9c1866e5aa5cddb20d91149904fb1b97ebe738fcf5082a488be753415fe", + "block_time": 1730391505, + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4:1 2 ", + "utxos_info": " e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7666,7 +7666,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -7685,20 +7685,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "block_index": 155, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730388599, + "block_time": 1730391331, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -7723,7 +7723,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7752,9 +7752,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7769,7 +7769,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730388640, + "block_time": 1730391375, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7795,9 +7795,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7812,7 +7812,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7838,9 +7838,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7855,7 +7855,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730388746, + "block_time": 1730391467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7881,9 +7881,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", + "tx_hash": "3c26f8ed0b73bccbc53f504a7e87454972c934e9c2110b78a574d129f36b659a", "block_index": 194, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7898,7 +7898,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388749, + "block_time": 1730391471, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7924,9 +7924,9 @@ Returns the orders of an address }, { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7941,7 +7941,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7976,7 +7976,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The source of the fairminter to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -8001,10 +8001,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", + "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -8029,7 +8029,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730388602, + "block_time": 1730391335, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8038,10 +8038,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8066,7 +8066,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730388523, + "block_time": 1730391255, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8078,10 +8078,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8106,7 +8106,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730388506, + "block_time": 1730391230, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8118,10 +8118,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", + "tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8146,7 +8146,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730388502, + "block_time": 1730391226, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8158,10 +8158,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8186,7 +8186,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730388484, + "block_time": 1730391207, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8208,7 +8208,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address of the mints to return + + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8226,22 +8226,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", + "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388527, + "block_time": 1730391258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8250,22 +8250,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", + "tx_hash": "aba9ad832290adaf7efacfc081b98cec79db2eef52d63270bfab871da7954df0", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388519, + "block_time": 1730391251, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8274,22 +8274,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", + "tx_hash": "17dfb66f10d0d3704fb4e1c695e9f017fca1e6c842334d74dec54027e6bbc8cd", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388515, + "block_time": 1730391247, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8298,22 +8298,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", + "tx_hash": "d2908a41e6c1519ecf0149991998d643084ebf5d13c6b6728a2e7bfb0c5512d8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388510, + "block_time": 1730391234, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8322,22 +8322,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ad7ded8aea74e95132cd8c881f2459fba118fcdd32483b685e18a99ce87ce6f7", + "tx_hash": "4efce27e3d10ace32445739a3bd0635b7051eb8df818eaac72b4c4207fa29969", "tx_index": 15, "block_index": 127, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388491, + "block_time": 1730391215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8346,22 +8346,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", + "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388477, + "block_time": 1730391200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8380,7 +8380,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address of the mints to return + + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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` @@ -8399,22 +8399,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", + "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388477, + "block_time": 1730391200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8435,7 +8435,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0` (str, required) - The utxo to return + + utxo: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8455,8 +8455,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "asset_info": { "divisible": true, "asset_longname": null, @@ -8469,12 +8469,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -8514,8 +8514,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will make the bet - + feed_address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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) @@ -8587,7 +8587,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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) @@ -8647,7 +8647,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8659,7 +8659,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101f30ff68f32191b4982340f8b1087e9cb3254689e95417f5498cc0666baaa6a490000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29e9a8a04368bcc2c13e3168c3664f67092b0e5086e14b4c83ad6ec26fa4281f8249f77e25879a93b1fe83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "020000000001019d2ec2e52fa46fc9f0c1b9535b1051324ffc570642ec30d625fb22b82d90162e0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff0200000000000000002b6a2947a437a0f85cdfcce781ab9f2d040a9c72c4ac3c8faa71da4c3fb7d06812734b5c7875c8017198790383ba052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8681,8 +8681,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending the payment - + order_match_id: `024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0` (str, required) - The ID of the order match to pay for + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending the payment + + order_match_id: `d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1` (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) @@ -8738,23 +8738,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1" }, "name": "btcpay", - "data": "434e5452505254590b024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1fc1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "data": "434e5452505254590bd47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101237cdd6abab4cdccd2941a0001fe3fc209d29136feee89600aac9187f6fb365e0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03b80b00000000000016001478682e5b8327b7725f504f257781372d3f4df05900000000000000004b6a49513fa0e770a4ed234a1da083cf514bca57a1d89e5d05ff24184d2ed56d42c5e27b49d7df1feacdaaf096f2b5cbaf6d93228e44ef43ddbef5a260e251de99deef3996cba19746428e97a99f052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101181ac3e1eba9f8a9a3891016bb85342103db33e1176a265bb981238b528e58810000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03b80b00000000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46100000000000000004b6a49894a09979442983bd24ec5681f767d916cfd7d358fcd06459fe94210ec3e115e005359f6282668fda4c15a659fcb89785b358b85ddcc7f2296e45290bf860228cdf9465fdad1142e1ea99f052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "status": "valid" } } @@ -8767,7 +8767,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address with the BTC to burn + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -8826,7 +8826,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "quantity": 1000, "overburn": false }, @@ -8836,7 +8836,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "02000000000101a353a25c14771493f0d512ea7cf0162c2035ad2cd141222319a578f5d78e63af0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000" + "rawtransaction": "02000000000101a697eea0d758837a0126c529e8670492681c9c7b7c46f9251b6488377be6576a0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000" } } ``` @@ -8846,8 +8846,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37` (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) @@ -8903,21 +8903,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33" + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "offer_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37" }, "name": "cancel", - "data": "434e5452505254594643fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "data": "434e54525052545946777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101fc26d1b96a718f0c2dc40ca4b41f3ef3bd55e5112a705fd54e4bd17f31ec1b190000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29f704f8edc0ebbc3800dde406bbcc7331c0eb8027d01001b9851edf2007064bc1d345837f7050b22c6c83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "020000000001012d1a4dfd2c136abf275d5f9c1c6e8d0071a014a87e86c1ce09c305c7aa412ec70000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff0200000000000000002b6a294090bb861c937232b8ea305921683571d7e9b80f0bbd2044f79ec984cc38bab166ca96f1182b90658e83ba052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "offer_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "status": "valid" } } @@ -8930,7 +8930,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -8989,7 +8989,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -9008,7 +9008,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "02000000000101c8f3626b0417be142ca95715c8745b7bd5e239b91b2924d6ea8d55213fcf7c1c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000226a20ec86901c7f3c5a7150f444b6231f9390821a5d09c0ae30a775f4c4ef1e3c312a93bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "0200000000010177c5f366625f7e31f7567eab347771b7d3bfdda32529c67f315f89e5ce030ec00000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000226a2005bb8f5462e2c5392924be77fa3375e9f279aed2af2dc2037e52e333dbcfbbd493bc052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9028,7 +9028,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: `bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c` (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) @@ -9093,7 +9093,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9117,7 +9117,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949925236, "btc_fee": 14264, - "rawtransaction": "02000000000101675ca0059fa99c5c9cad64f274539dfaea653241fe200d83702d663dbe155993010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a35ffffffff0200000000000000002c6a2aec477f5a10edd262cbe088d269a3d69709160796d417fcc2495a78d064d3c1ff857a2e7e4abfd29285b274dd0927010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a3502000000000000", + "rawtransaction": "02000000000101346dfad6f9965718aeeb4267eada082d54edbf9b5fb8b18b2990e5351496098401000000160014b4a8bde20d2e9f88e6733dc7b6090d48568f9ee5ffffffff0200000000000000002c6a2acdd4a315199cc49777a159be19e2631113c35e4c0fb96686c54c8334076d7da6448f80c02dd6ef85306774dd092701000000160014b4a8bde20d2e9f88e6733dc7b6090d48568f9ee502000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9143,7 +9143,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -9202,14 +9202,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -9228,7 +9228,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101570134c00b64742e02bdfaddc041e8760285c1d35b10cc350c98529d7415c7830000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a21124ec109d96b25e39b77d04e311b78ce9875d67366580ce5416ffe7e5e670e3da458bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101ce192c1bb780514867de80a7df7fc4f3a530f3a2cd1f44ded964678119783e4f0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000236a214ffe5b578b9ee342e61fe448124cc8794600e32567954e15be6310b11a9f1d348858bc052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9249,10 +9249,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -9317,10 +9317,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "transfer_destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "lock": false, "reset": false, @@ -9333,7 +9333,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101b9ef7fad3663f913ca8b893e4484ef5496bc469a8a5c770fbe79625d52e8d83a0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000236a21dde41ded3a51f6da18fa27361ae0737776c1ccd9943ea2b8a228abb4069a4460546bb2052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101498e4cec704c3bffc4a9d65b6124020cc173ad1a46fb08efc0b3fa546408189f0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03220200000000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a4610000000000000000236a21ea36d4f5b7e27c81f79767fe61d550b3f8add6db69e736e0006b5259b2bbbc33c96bb2052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9362,9 +9362,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe,bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9429,16 +9429,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", 1 ], [ "MPMASSET", - "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", 2 ] ], @@ -9446,26 +9446,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028078682e5b8327b7725f504f257781372d3f4df0598052d9b86eb5e791b2c549521a87fb7fb80e2f93a440000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028089ffb1fe29ad158c416ad8184a8eb38ed630a46180881cbdd8a0c6681f017f43cb7b5fc8eb555e351540000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104e75d6e5af50269c0705c4375adca7950253959b6977dbf2f68e36639e47371ad0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff54bce38d43312df81ec276feb49454fc5f1cf31f71e3db38d3df6b7ed45b61470000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff93747391fc199fa1db06cec0538ab05ff58c502ad445ade1d7cfd59a175a2ba00000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0aa29dfafc0d3daac0c01ed4183aa590bf5d83657cb05104402a8dc6dd1a46380000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03e80300000000000069512103bbf2c66f0fcfe593481b043d964d6178e3b7fc6fff10aaa9b571cffb540e8f5821031d5d2c07263bb605b92e78fe8ad283134e034e08fb1ff975253081c42187e4ed2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512102a4f2c66f0fcfe59348c8043f16350956b810dbd88d4ffae690024ecc7931c2db2102ed04ad55ff83d8b05ebfca3bc3809994b57cf606d48c5d3525308427410f20b92102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aebcf216a80400000016001478682e5b8327b7725f504f257781372d3f4df05902000002000002000002000000000000", + "rawtransaction": "0200000000010453bf1c341b39dc1639dcc9ad5931c3449c7156af28aa124facf04ddc3fb920230000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff727e2ef7895ccb48796ad57003ff04d2e264010ac39cb4c72ff958a7f1c2f5720000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff8971c0108e2fa92dcaddaaa365e53dcc6af8956ffb657872948f0d0c427e77f20000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff2f944d8bc00c3d3eb9d6c2aab2b3caddf11f3fffff5d80e5bbcb28f84b0a31900000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03e80300000000000069512102bbf4f9f64c7ac6cecf011fd1af37c0ccb5b9a91031fffaf87cbd1298e085f3e32103147a9435e041952f19841ecb3a39622837173882fb936f880c4fab1dfbbcfdae2102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aee80300000000000069512102a4f4f9f64c7ac6cecfd21fd32fbe3f7d4bb40405bdbe902064f39c2b6e53c34a2103b01b15bdfcfc4d8fdfec01ca457aa95368dfd3d7a5a67ac80c4faefe9b3439432102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aebcf216a80400000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9481,7 +9481,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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 @@ -9543,7 +9543,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9560,7 +9560,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -9574,7 +9574,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "0200000000010113dcdfdfe4a368f432f9c88948eb1ed6f6117bd3a4fd4cb0ec2434617701c80c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000356a338625f4ae8e3c7c77ee3d8bdf55c83f2e35baa7fac469f3ee9ac58a7c6a6d9211043749f29c2203f011641b56f4e3be88f1b87538b8052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101ecf9ff81ebb90ca28d920ea0514a5c72403a3604ab7f2ef15c05ffb41d2833600000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000356a33aee4d5c2c429f7c1af0bdd1e02926dca5e6241caa2be97ae9aff5d4997c58f9348c9f5ce1086896eb0397cd2c5bb5060e4724f38b8052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9600,8 +9600,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address that will be receiving the asset + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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 @@ -9665,8 +9665,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9682,19 +9682,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", + "data": "434e54525052545902000000000000000100000000000003e880881cbdd8a0c6681f017f43cb7b5fc8eb555e3515", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "0200000000010170a9290fea37d6f2881678c2d0247e8e868066c72145c7f51d6210df01c043c90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000306a2ec9620cb57b34e7ada6e0b8921918a6268bc5fa3a495b71bf6e1f96b2d12b067641bda940de034fcf39f964f206845db9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101231db37d81dadef0b86f1022c91b152102fa3af3d139c2fcf136488cee6f879c0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000306a2ee44406e1d80443776051170a7ceec5f57071b36f2dd1f25a1e76d9306fcf8231e18b45d3bc064e75934562b045f65db9052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "memo": null, "quantity_normalized": "0.00001000" } @@ -9708,8 +9708,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be sending - + destination: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending + + destination: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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 @@ -9767,23 +9767,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e545250525459048052d9b86eb5e791b2c549521a87fb7fb80e2f93a407ffff", + "data": "434e5452505254590480881cbdd8a0c6681f017f43cb7b5fc8eb555e351507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101ea793cbdb536e63a7bef18cedea7452b2da60b6c340094b1b963fb15c5fc53970000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a216b202a2f0a00f54b6bacc462f1ae1a9a16bd938f7d31aaeaa42c7cc6549c6e9f6158bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101c42da3802a3e2e01e9a5bda352934cdab8d611efac86c7adcf3583f6e2e5f87e0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000236a214508ef27af4a121b66cd24983c937db0637728ce21554d820615c372497555533c58bc052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "flags": 7, "memo": "ffff" } @@ -9797,8 +9797,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: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a` (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` @@ -9855,8 +9855,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "quantity": 1000 }, "name": "dispense", @@ -9865,7 +9865,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101339ec669fc5a667a1b06471ff2d757d189d3c4fc30bd6a394e8f903e0711bae00300000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a4ffffffff03e80300000000000016001489327ba83f6181de1d81727d7278dcd5a82d8e9600000000000000000c6a0af034aa6ee337efd8a9268b2508270100000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a402000000000000", + "rawtransaction": "02000000000101061e367a1964e6301863b72d65fb27133b3d182cba544949763603975f17ef5703000000160014881cbdd8a0c6681f017f43cb7b5fc8eb555e3515ffffffff03e8030000000000001600143e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c100000000000000000c6a0afea926c9669a613b05f38b25082701000000160014881cbdd8a0c6681f017f43cb7b5fc8eb555e351502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9882,7 +9882,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be issuing the asset + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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: `` @@ -9971,7 +9971,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -10002,7 +10002,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101e8b915947078ac5678f54820668c3bf8f54269bd28c2b8e1c1073c6a397ddc840000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000316a2f4980614c992885063b6066529d728cf584e0a9e0d0acefa5edbabdc54ecb1077268f01249b7f515146f31aee000f4d23b9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "020000000001014efbde8b5f062bd99fef480e269124dd0f34860a94ef5f6bc313a496657b1e350000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000316a2f8202f6acd86e04ed42650b532fd0ac2ea370114fcec4516d7c2a752f73fe7e0efa8afa4fb636de4d8d5f0acdc5cbbe23b9052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -10041,7 +10041,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: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address that will be minting the asset + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -10100,13 +10100,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -10118,7 +10118,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "020000000001011e59b75282f59425869d34561899a60f045426200ff1e4fb264c4d1ecda43a210000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000166a14c32c50b16b8722bfd0e7da239f2b37e4a863389054bf052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "02000000000101ca7bade21a68b7c89c932bb0a8e4d92621f3f495a75ed9ee26520d4ec80d9be80000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000166a141dacd621d469062148e859f43f53ec7a091f38a254bf052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10137,7 +10137,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address from which the assets are attached + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10197,7 +10197,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10216,7 +10216,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984603, "btc_fee": 14851, - "rawtransaction": "02000000000101a1bd68edbccbcfa11bb50fd68decac3b3b5cc1e1d35b99dfd0a3257c8f1120b90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000146a12903319976c0accf3b36423d30bd09abd6e1edbb5052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", + "rawtransaction": "020000000001013cf7f89c96151d5b31c41370eed76dc88e661105e407a1f16a76345e3522c7d10000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03220200000000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a4610000000000000000146a12dbc96f28db4b6f0f9854875b329b5a65589bdbb5052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10236,8 +10236,9 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to detach the assets to + + utxo: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` + 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) @@ -10293,21 +10294,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" + "source": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7" }, "name": "detach", - "data": "434e545250525459666263727431713070357a756b757279376d687968367366756a683071666839356c356d757a65616863617765", + "data": "434e5452505254596662637274317133386c6d726c336634353263637374326d7176793472346e336d74727066727078766d357737", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945466, "btc_fee": 25534, - "rawtransaction": "020000000001023e815ab87d99f0a777059cb72613bb1a800357936e0d6887276bcf56e6e52d4900000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff784ad753c01f68dbbd3c690100364d5e70c634b4e22e8bb35bab72b21cdf8ac501000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff020000000000000000376a353ced140a7366c13450ebce50ba0f7763bf468c43eb61be5973ebcc177143d7f8752299c2f62b54a0fd584e679dbfa573b26755cd2c7a2c0a2701000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17302000002000000000000", + "rawtransaction": "02000000000102579094a6ce7b3261404679349ee3356b2862696ebd69b6ae6ab7b1ad196d3961000000001600146b7fca7efaf257527cb4d49868af8b57fe0642eaffffffff0fe876125490da2ab76297c12a2784389ca923793d8d98af1dab0746c3fddf8e010000001600146b7fca7efaf257527cb4d49868af8b57fe0642eaffffffff020000000000000000376a358de3eab5d88facd76664f3b794d2a3d505fa6330d7eeb5517aeec84086685aa28796420c1dc0912beaab98c297557bcb14a72a304e7a2c0a27010000001600146b7fca7efaf257527cb4d49868af8b57fe0642ea02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7" } } } @@ -10371,8 +10372,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -10380,16 +10381,16 @@ Returns the valid assets "first_issuance_block_index": 202, "last_issuance_block_index": 202, "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, + "first_issuance_block_time": 1730391505, + "last_issuance_block_time": 1730391505, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "owner": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "owner": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "divisible": true, "locked": false, "supply": 100000000000, @@ -10397,16 +10398,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730388768, - "last_issuance_block_time": 1730388768, + "first_issuance_block_time": 1730391488, + "last_issuance_block_time": 1730391488, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 10000000000, @@ -10414,16 +10415,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, + "first_issuance_block_time": 1730391348, + "last_issuance_block_time": 1730391357, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "owner": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "issuer": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "owner": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "divisible": true, "locked": false, "supply": 100000000000, @@ -10431,16 +10432,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730388610, - "last_issuance_block_time": 1730388610, + "first_issuance_block_time": 1730391344, + "last_issuance_block_time": 1730391344, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 100000000000, @@ -10448,8 +10449,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, + "first_issuance_block_time": 1730391302, + "last_issuance_block_time": 1730391302, "supply_normalized": "1000.00000000" } ], @@ -10477,8 +10478,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false, "supply": 10000000000, @@ -10486,8 +10487,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730388474, - "last_issuance_block_time": 1730388484, + "first_issuance_block_time": 1730391196, + "last_issuance_block_time": 1730391207, "supply_normalized": "100.00000000" } } @@ -10518,7 +10519,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10526,14 +10527,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10541,7 +10542,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -10559,7 +10560,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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. @@ -10571,7 +10572,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 82649961196, "utxo": null, @@ -10625,9 +10626,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10642,7 +10643,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730388640, + "block_time": 1730391375, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10668,9 +10669,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10685,7 +10686,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10711,9 +10712,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10728,7 +10729,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730388746, + "block_time": 1730391467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10754,9 +10755,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", + "tx_hash": "3c26f8ed0b73bccbc53f504a7e87454972c934e9c2110b78a574d129f36b659a", "block_index": 194, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10771,7 +10772,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388749, + "block_time": 1730391471, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10797,9 +10798,9 @@ Returns the orders of an asset }, { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10814,7 +10815,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10876,13 +10877,13 @@ Returns the orders of an asset { "result": [ { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10896,7 +10897,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730388732, + "block_time": 1730391452, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10916,13 +10917,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10936,7 +10937,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730388728, + "block_time": 1730391448, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10956,13 +10957,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", "tx0_index": 50, - "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 51, - "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10976,7 +10977,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730388640, + "block_time": 1730391375, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11056,20 +11057,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "event": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388754, + "block_time": 1730391475, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11077,20 +11078,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", + "event": "0f8f1c722bfc32cc6b5168a6793031c81003adf0215f613743ea677b8f0c2eac", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388484, + "block_time": 1730391207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11098,20 +11099,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", + "event": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388481, + "block_time": 1730391204, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11119,20 +11120,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", + "event": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388481, + "block_time": 1730391204, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11144,16 +11145,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", + "event": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388481, + "block_time": 1730391204, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11213,12 +11214,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -11230,16 +11231,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "event": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11251,16 +11252,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "event": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "divisible": true, "asset_longname": null, @@ -11272,16 +11273,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", + "event": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388809, + "block_time": 1730391531, "asset_info": { "divisible": true, "asset_longname": null, @@ -11293,16 +11294,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "event": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "divisible": true, "asset_longname": null, @@ -11382,14 +11383,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", + "tx_hash": "0f8f1c722bfc32cc6b5168a6793031c81003adf0215f613743ea677b8f0c2eac", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -11404,20 +11405,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730388484, + "block_time": 1730391207, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", + "tx_hash": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -11432,20 +11433,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730388481, + "block_time": 1730391204, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", + "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -11460,20 +11461,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730388477, + "block_time": 1730391200, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -11488,7 +11489,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730388474, + "block_time": 1730391196, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11522,10 +11523,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11533,7 +11534,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -11546,10 +11547,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11557,7 +11558,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "divisible": true, "asset_longname": null, @@ -11570,10 +11571,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", + "tx_hash": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", "block_index": 206, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11581,7 +11582,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730388809, + "block_time": 1730391531, "asset_info": { "divisible": true, "asset_longname": null, @@ -11594,10 +11595,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", + "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11605,7 +11606,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730388804, + "block_time": 1730391527, "asset_info": { "divisible": true, "asset_longname": null, @@ -11618,10 +11619,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", + "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11629,7 +11630,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730388790, + "block_time": 1730391523, "asset_info": { "divisible": true, "asset_longname": null, @@ -11680,9 +11681,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11691,7 +11692,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11701,7 +11702,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -11717,9 +11718,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", + "tx_hash": "1c70cd71fb36375b8c939fc746e69095ca9eabd4196c89b954efbb26c645c63b", "block_index": 142, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11728,7 +11729,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "origin": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11738,7 +11739,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388548, + "block_time": 1730391281, "asset_info": { "divisible": true, "asset_longname": null, @@ -11754,9 +11755,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", + "tx_hash": "142ebf3042c7b75794312ad55b53388abd934e062593fd469636d3803fc6eda5", "block_index": 150, - "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", + "source": "mgDwm8uDCgPNYmp8gda7tyVPQuWsrCSnig", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11764,10 +11765,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "last_status_tx_hash": "e3d75553e449728cd2bbbe60bd771353d0aceab1e0ef00174ae987d7eb6fa874", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "last_status_tx_source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11775,7 +11776,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388580, + "block_time": 1730391311, "asset_info": { "divisible": true, "asset_longname": null, @@ -11791,18 +11792,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11812,7 +11813,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -11837,7 +11838,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - The address to return + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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` @@ -11850,9 +11851,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11861,7 +11862,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11871,7 +11872,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -11921,7 +11922,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11929,7 +11930,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11938,7 +11939,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11946,7 +11947,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11955,7 +11956,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -11963,7 +11964,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11972,7 +11973,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -12009,27 +12010,27 @@ Returns the dispenses of an asset { "tx_index": 76, "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12044,7 +12045,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -12058,27 +12059,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", + "tx_hash": "3c9de07093a4fe6564cdc859db8a33297442751270bbd151cda7d15692ce1766", "block_index": 147, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12093,7 +12094,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730388568, + "block_time": 1730391299, "asset_info": { "divisible": true, "asset_longname": null, @@ -12107,19 +12108,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12127,7 +12128,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12142,7 +12143,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -12156,19 +12157,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12176,7 +12177,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12191,7 +12192,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -12265,10 +12266,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12293,7 +12294,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730388484, + "block_time": 1730391207, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12333,22 +12334,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", + "tx_hash": "0f8f1c722bfc32cc6b5168a6793031c81003adf0215f613743ea677b8f0c2eac", "tx_index": 13, "block_index": 125, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388484, + "block_time": 1730391207, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -12357,22 +12358,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", + "tx_hash": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388481, + "block_time": 1730391204, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -12381,22 +12382,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", + "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388477, + "block_time": 1730391200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -12415,7 +12416,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d` (str, required) - The address of the mints to return + + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (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` @@ -12434,22 +12435,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", + "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388477, + "block_time": 1730391200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -12502,9 +12503,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12519,7 +12520,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730388640, + "block_time": 1730391375, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12545,9 +12546,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "block_index": 188, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12562,7 +12563,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730388728, + "block_time": 1730391448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12588,9 +12589,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "block_index": 189, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12605,7 +12606,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388732, + "block_time": 1730391452, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12631,9 +12632,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12648,7 +12649,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730388746, + "block_time": 1730391467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12674,9 +12675,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", + "tx_hash": "3c26f8ed0b73bccbc53f504a7e87454972c934e9c2110b78a574d129f36b659a", "block_index": 194, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12691,7 +12692,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388749, + "block_time": 1730391471, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12726,7 +12727,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33` (str, required) - The hash of the transaction that created the order + + order_hash: `777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37` (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. @@ -12738,9 +12739,9 @@ Returns the information of an order { "result": { "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12755,7 +12756,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12787,7 +12788,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f` (str, required) - The hash of the transaction that created the order + + order_hash: `d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1` (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 @@ -12814,13 +12815,13 @@ Returns the order matches of an order { "result": [ { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12834,7 +12835,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730388732, + "block_time": 1730391452, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12854,13 +12855,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12874,7 +12875,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730388728, + "block_time": 1730391448, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12904,7 +12905,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f` (str, required) - The hash of the transaction that created the order + + order_hash: `d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1` (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 @@ -12923,15 +12924,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", + "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", "block_index": 188, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "btc_amount": 2000, - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "status": "valid", "confirmed": true, - "block_time": 1730388728, + "block_time": 1730391448, "btc_amount_normalized": "0.00002000" } ], @@ -12975,9 +12976,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "tx_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "block_index": 188, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12995,7 +12996,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730388728, + "block_time": 1730391448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13021,9 +13022,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "block_index": 189, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -13041,7 +13042,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730388732, + "block_time": 1730391452, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13067,9 +13068,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", + "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13087,7 +13088,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730388640, + "block_time": 1730391375, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13113,9 +13114,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13133,7 +13134,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730388815, + "block_time": 1730391539, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13159,9 +13160,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", + "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13179,7 +13180,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730388746, + "block_time": 1730391467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13242,13 +13243,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13265,7 +13266,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730388732, + "block_time": 1730391452, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13285,13 +13286,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13308,7 +13309,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730388728, + "block_time": 1730391448, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13328,13 +13329,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", "tx0_index": 50, - "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 51, - "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13351,7 +13352,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730388640, + "block_time": 1730391375, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13409,13 +13410,13 @@ Returns all the order matches { "result": [ { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13429,7 +13430,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730388732, + "block_time": 1730391452, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13449,13 +13450,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", + "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13469,7 +13470,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730388728, + "block_time": 1730391448, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13489,13 +13490,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", + "id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", "tx0_index": 50, - "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "tx0_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "tx1_index": 51, - "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "tx1_hash": "eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13509,7 +13510,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730388640, + "block_time": 1730391375, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13677,66 +13678,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", + "tx_hash": "785ab3d26b0d9d77fb64d31af37c68976e144fdcd5343848c853a2337b3a2118", "block_index": 121, - "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", + "source": "bcrt1qv5cahzs0qe3kul3m483c0ezcacta303vfp9357", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730388470, + "block_time": 1730391192, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2f05366f588f21dccb295ef9cb5d8c7a397a69adac4446167ba10bbcd863af23", + "tx_hash": "2c39f801b23f64bd5e7a0313abfa87e1ee1069fdf1cd0453f7eca5cca62311e3", "block_index": 120, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730388467, + "block_time": 1730391189, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "7a7fc5e8c6dc1952c0910c265c052ac6f377936332feaf8d3ab47084f50bfb50", + "tx_hash": "4f90834ad28446239de930c3e066f15c36703754e1ef83027517abb9ed95eef0", "block_index": 119, - "source": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0", + "source": "bcrt1qnm4yzypl3cy6pdatfztptulgtyr4v604cv9k2a", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730388464, + "block_time": 1730391184, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "531c7e5e0671ad61656e5865ee9777b48044c10668123810976c6958c64d6b83", + "tx_hash": "25028fc473b257e50b01a64e916f9cac883332bfbcc9aff180508b015adb1fd4", "block_index": 118, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730388460, + "block_time": 1730391180, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ef542ed4add95f4bc7bbc4ee4219c14bd54be80b1161a3167e3bd95d8c3ccef7", + "tx_hash": "c3ee0076c3f2a903eb2724debce71dfed48d96ceded7e78a734dec4939072553", "block_index": 117, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730388456, + "block_time": 1730391177, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13781,9 +13782,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13792,7 +13793,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13802,7 +13803,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -13818,9 +13819,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", + "tx_hash": "1c70cd71fb36375b8c939fc746e69095ca9eabd4196c89b954efbb26c645c63b", "block_index": 142, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13829,7 +13830,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "origin": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13839,7 +13840,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388548, + "block_time": 1730391281, "asset_info": { "divisible": true, "asset_longname": null, @@ -13855,9 +13856,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", + "tx_hash": "142ebf3042c7b75794312ad55b53388abd934e062593fd469636d3803fc6eda5", "block_index": 150, - "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", + "source": "mgDwm8uDCgPNYmp8gda7tyVPQuWsrCSnig", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13865,10 +13866,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "last_status_tx_hash": "e3d75553e449728cd2bbbe60bd771353d0aceab1e0ef00174ae987d7eb6fa874", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "last_status_tx_source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13876,7 +13877,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388580, + "block_time": 1730391311, "asset_info": { "divisible": true, "asset_longname": null, @@ -13892,9 +13893,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13903,7 +13904,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13913,11 +13914,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388764, + "block_time": 1730391485, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -13929,18 +13930,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13950,7 +13951,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -13975,7 +13976,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec` (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. @@ -13987,9 +13988,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13998,7 +13999,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14008,7 +14009,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -14030,7 +14031,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec` (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 @@ -14050,19 +14051,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14070,7 +14071,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14085,7 +14086,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -14099,19 +14100,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14119,7 +14120,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14134,7 +14135,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -14176,20 +14177,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "block_index": 155, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730388599, + "block_time": 1730391331, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -14214,7 +14215,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37` (str, required) - The hash of the dividend to return + + dividend_hash: `ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099` (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. @@ -14226,20 +14227,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "block_index": 155, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730388599, + "block_time": 1730391331, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -14261,7 +14262,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099` (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 @@ -14284,12 +14285,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", + "event": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", "tx_index": 42, - "utxo": "25bf60486a393bdf4e868b26f17f46225523e4eac3198ff314e13a994a79f448:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "utxo": "8581db10ad7656376bf06b56f3815166870db05abc9b9d1df92ae5601f361a61:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "confirmed": true, - "block_time": 1730388599, + "block_time": 1730391331, "asset_info": { "divisible": true, "asset_longname": null, @@ -14335,27 +14336,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "block_time": 1730391553 }, "tx_hash": null, "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 681, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76 }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 680, @@ -14364,14 +14365,14 @@ Returns all events "asset": "XCP", "block_index": 209, "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "tx_index": 76, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -14382,9 +14383,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 679, @@ -14393,9 +14394,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "asset_info": { "divisible": true, "asset_longname": null, @@ -14405,24 +14406,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -14432,9 +14433,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } ], "next_cursor": 677, @@ -14462,15 +14463,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", + "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", + "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 + "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", + "block_time": 1730391553 }, "tx_hash": null, "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 } } ``` @@ -14548,16 +14549,16 @@ Returns the events filtered by event name "event_index": 678, "event": "CREDIT", "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "block_index": 209, "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 66, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -14567,9 +14568,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 676, @@ -14579,12 +14580,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -14594,9 +14595,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 673, @@ -14606,39 +14607,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 209, "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "quantity": 2000000000, "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, + "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "block_time": 1730388823 + "block_time": 1730391553 }, { "event_index": 663, "event": "CREDIT", "params": { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "block_index": 208, "calling_function": "cancel order", - "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", + "event": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730388815, + "block_time": 1730391539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,24 +14649,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", + "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", "block_index": 208, - "block_time": 1730388815 + "block_time": 1730391539 }, { "event_index": 652, "event": "CREDIT", "params": { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "block_index": 207, "calling_function": "mpma send", - "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "event": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "quantity": 10, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "divisible": true, "asset_longname": null, @@ -14675,9 +14676,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "block_time": 1730388812 + "block_time": 1730391536 } ], "next_cursor": 651, @@ -14733,27 +14734,27 @@ Returns all the dispenses { "tx_index": 76, "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14768,7 +14769,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -14782,19 +14783,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", + "tx_hash": "0ebb7274208390d884b54acabf4287bccda60409daba20ad2d212352771dfa48", "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", + "dispenser_tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14802,7 +14803,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14817,11 +14818,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388764, + "block_time": 1730391485, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -14831,27 +14832,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", + "tx_hash": "3c9de07093a4fe6564cdc859db8a33297442751270bbd151cda7d15692ce1766", "block_index": 147, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", + "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14866,7 +14867,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730388568, + "block_time": 1730391299, "asset_info": { "divisible": true, "asset_longname": null, @@ -14880,19 +14881,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", + "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14900,7 +14901,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14915,7 +14916,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388544, + "block_time": 1730391276, "asset_info": { "divisible": true, "asset_longname": null, @@ -14929,19 +14930,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", + "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", + "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14949,7 +14950,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14964,7 +14965,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730388540, + "block_time": 1730391272, "asset_info": { "divisible": true, "asset_longname": null, @@ -15006,10 +15007,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15017,7 +15018,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -15030,10 +15031,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", + "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", + "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15041,11 +15042,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15054,10 +15055,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15065,7 +15066,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "divisible": true, "asset_longname": null, @@ -15078,10 +15079,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15089,11 +15090,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15102,10 +15103,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", + "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15113,11 +15114,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730388812, + "block_time": 1730391536, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15168,14 +15169,14 @@ Returns all the issuances "result": [ { "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -15190,20 +15191,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388783, + "block_time": 1730391505, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "fc0df4fe281cbc92383846eaedd05efb40184273d92655b7442d71aa1495f057", + "tx_hash": "a3835d73d7264ff0faddde5b954bd3b38b044160e1097b0155b09098fb7a0ebd", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", + "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", "transfer": false, "callable": false, "call_date": 0, @@ -15218,20 +15219,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388768, + "block_time": 1730391488, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", + "tx_hash": "bd1f2774a6788f448f4abecd7d83056877fa7ebb13f5d201a7a03d9c12b85932", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -15246,20 +15247,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388626, + "block_time": 1730391360, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", + "tx_hash": "5a66398585f30cf7dfa34570ed4e390ef54f44e7bbb3492f1b9dfdf12a3f78df", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -15274,20 +15275,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730388621, + "block_time": 1730391357, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", + "tx_hash": "6d78d6c77201292b7a4fbf00a29cfb85c5ebeac2397c86d2eb62ec3755d82b1c", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -15302,7 +15303,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388617, + "block_time": 1730391353, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15317,7 +15318,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4` (str, required) - The hash of the transaction to return + + tx_hash: `e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e` (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. @@ -15329,14 +15330,14 @@ Returns the issuances of a block { "result": { "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", + "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", "msg_index": 0, "block_index": 202, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "transfer": false, "callable": false, "call_date": 0, @@ -15351,7 +15352,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730388783, + "block_time": 1730391505, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15383,16 +15384,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730388754, + "block_time": 1730391475, "fee_paid_normalized": "0.00600000" } ], @@ -15406,7 +15407,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860` (str, required) - The hash of the transaction to return + + tx_hash: `802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21` (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. @@ -15419,16 +15420,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730388754, + "block_time": 1730391475, "fee_paid_normalized": "0.00600000" } ], @@ -15462,9 +15463,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", + "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", "block_index": 138, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15472,14 +15473,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730388533, + "block_time": 1730391265, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", + "tx_hash": "34715074bfe898e4ec5e19ad65577230a7dfd5c8895d7558a61fef5464d16093", "block_index": 137, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15487,7 +15488,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730388530, + "block_time": 1730391262, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15501,7 +15502,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae` (str, required) - The hash of the transaction to return + + tx_hash: `ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b` (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. @@ -15513,9 +15514,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", + "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", "block_index": 138, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", + "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15523,7 +15524,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730388533, + "block_time": 1730391265, "fee_fraction_int_normalized": "0.00000000" } } @@ -15560,10 +15561,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", + "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15588,7 +15589,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730388602, + "block_time": 1730391335, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15597,10 +15598,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15625,7 +15626,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730388523, + "block_time": 1730391255, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15637,10 +15638,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15665,7 +15666,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730388506, + "block_time": 1730391230, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15677,10 +15678,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", + "tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15705,7 +15706,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730388502, + "block_time": 1730391226, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15717,10 +15718,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", + "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15745,7 +15746,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730388484, + "block_time": 1730391207, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15814,22 +15815,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", + "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388527, + "block_time": 1730391258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15838,22 +15839,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", + "tx_hash": "aba9ad832290adaf7efacfc081b98cec79db2eef52d63270bfab871da7954df0", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388519, + "block_time": 1730391251, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15862,22 +15863,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", + "tx_hash": "17dfb66f10d0d3704fb4e1c695e9f017fca1e6c842334d74dec54027e6bbc8cd", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388515, + "block_time": 1730391247, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15886,22 +15887,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", + "tx_hash": "d2908a41e6c1519ecf0149991998d643084ebf5d13c6b6728a2e7bfb0c5512d8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388510, + "block_time": 1730391234, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15910,22 +15911,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c52637de105c8fabf7ce0477b20977b4b12f1a91b67ea0c6e1a8c389468baa8d", + "tx_hash": "3c73d1603a18ecf4cceb2adda78c251b0bcabaac87189feb7bdc444c70a264b1", "tx_index": 17, "block_index": 129, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "fairminter_tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388499, + "block_time": 1730391222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15944,7 +15945,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382` (str, required) - The hash of the fairmint to return + + tx_hash: `42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15955,22 +15956,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", + "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", + "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730388527, + "block_time": 1730391258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", + "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, "locked": false }, @@ -15988,7 +15989,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654,bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0` (str, required) - The addresses to search for + + addresses: `bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c,bcrt1qnm4yzypl3cy6pdatfztptulgtyr4v604cv9k2a` (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. @@ -16007,8 +16008,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949939500, "confirmations": 9, "amount": 49.499395, - "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67", - "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" + "txid": "8409961435e590298bb1b85f9bbfed542d08daea6742ebae185796f9d6fa6d34", + "address": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c" }, { "vout": 0, @@ -16016,8 +16017,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126", - "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" + "txid": "677793108309ae83f412025a81089ef3e6b6611021f130a909cec2f2609cc993", + "address": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c" }, { "vout": 2, @@ -16025,8 +16026,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811", - "address": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0" + "txid": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646", + "address": "bcrt1qnm4yzypl3cy6pdatfztptulgtyr4v604cv9k2a" } ], "next_cursor": null, @@ -16039,7 +16040,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99` (str, required) - The address to search for + + address: `bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule` (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 @@ -16055,25 +16056,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "3574fee854efa23d216bf5d7951fa27f083e3cba676333480c408de8b131614a" + "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21" }, { - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860" + "tx_hash": "2adc2dc6de896b45f3e19790969f1f64f023396d582ec502b01ad5f55abe9680" }, { - "tx_hash": "b45736e63a7c69e39c202e6d69842eff67b5371fdb10fddecbf0fb91c04a7764" + "tx_hash": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb" }, { - "tx_hash": "d180e3c789f7afa1bf2c80c42cc765e47c7b4389ea05112ac8854a851ceb8564" + "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1" }, { - "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68" + "tx_hash": "45b63e05d37ca03f45d38e9a9f6fd808a82e6617b5bf736d8b822ccac869b1dd" }, { - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" + "tx_hash": "30fcd120602408ba24550073fee5a3d8a63698f83f3a87a324194e836e0156e5" }, { - "tx_hash": "f7201490d88f113ec36ca10576adf0981a397bd17dee4957d3fae6ebbcc6ffb0" + "tx_hash": "26882ca8be1e5961d4c953e0cb2f4c7c8b2894c79ef58a398d501f51aa2c23fc" } ], "next_cursor": null, @@ -16086,7 +16087,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs` (str, required) - The address to search for. + + address: `bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx` (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. @@ -16099,8 +16100,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 2, - "tx_hash": "8501b17a588fa45b2e9f050340883fca514ce5b69c583e95fd14b406eab82dd3" + "block_index": 1, + "tx_hash": "1d78d4d65ee95c471eda90809060ca40d629a7020355b6c55509ff5d9378c4d6" } } ``` @@ -16110,7 +16111,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654` (str, required) - The address to search for + + address: `bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c` (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 @@ -16126,20 +16127,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 0, + "vout": 1, "height": 201, - "value": 546, + "value": 4949939500, "confirmations": 9, - "amount": 5.46e-06, - "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126" + "amount": 49.499395, + "txid": "8409961435e590298bb1b85f9bbfed542d08daea6742ebae185796f9d6fa6d34" }, { - "vout": 1, + "vout": 0, "height": 201, - "value": 4949939500, + "value": 546, "confirmations": 9, - "amount": 49.499395, - "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67" + "amount": 5.46e-06, + "txid": "677793108309ae83f412025a81089ef3e6b6611021f130a909cec2f2609cc993" } ], "next_cursor": null, @@ -16152,7 +16153,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe` (str, required) - Address to get pubkey for. + + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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. @@ -16164,7 +16165,7 @@ Get pubkey for an address. ``` { - "result": "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" + "result": "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479" } ``` @@ -16173,7 +16174,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e` (str, required) - The transaction hash + + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (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. @@ -16185,7 +16186,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010111f887b8683bc4054efc8bfa6061778d6eb868868f47c5603264399d39abdf140100000000ffffffff03e803000000000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17300000000000000000c6a0a8e74c0503d7ed91aabe5eb140927010000001600148438dff1939dbbf2323fc0765732298c162d678c02473044022020e6d95b1e6c95d2efb9805c2c0cab68ae8db334bd627e59322aa08c62eaa23b0220736569640c08cb17cef4ad9abfdd33db21b44cce519cb78d26b07a7919f19cab01210307c380fb682c6be41e362b8eb8de3db81b094b1889ea57382edab49518f9d8ff00000000" + "result": "020000000001014626052342c1b45f51d13d8c82aa6e2c2f77e9f3f14d39494627c314bc4a98db0100000000ffffffff03e8030000000000001600146b7fca7efaf257527cb4d49868af8b57fe0642ea00000000000000000c6a0ad9ba314e5eb60fdc2330eb140927010000001600141e50e2dc377bb0eee2ad8330d65547458b46b2f90247304402201882cb28add3b7e1dd43ebe82c271edd32475f805479fae80c61337610e72b2a02203388d0f63d5b2137a069fb42bb50e95e51d61ad3ef7b4b1b550d17a4520041ea012102a69f2ead85180a890d0cdbb54bb30f21374c3caa91c1ca7237e5e94f4cdd45e900000000" } ``` @@ -16280,27 +16281,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77 }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "quantity": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "status": "valid", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77, "asset_info": { "divisible": true, @@ -16311,22 +16312,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "CREDIT", "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -16336,22 +16337,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "XCP", "block_index": 209, - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -16361,30 +16362,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730388828.1054614, + "block_time": 1730391558.1007109, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", + "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", "destination": "", "fee": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77, - "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", + "utxos_info": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "asset_info": { "divisible": true, @@ -16398,7 +16399,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 } ], "next_cursor": null, @@ -16429,19 +16430,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "CREDIT", "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -16451,7 +16452,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 } ], "next_cursor": null, @@ -16464,7 +16465,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0` (str, required) - The hash of the transaction to return + + tx_hash: `d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c` (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 @@ -16484,27 +16485,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77 }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "quantity": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "status": "valid", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77, "asset_info": { "divisible": true, @@ -16515,22 +16516,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "CREDIT", "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "asset": "XCP", "block_index": 209, "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -16540,22 +16541,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", + "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", "asset": "XCP", "block_index": 209, - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "quantity": 10000, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730388823, + "block_time": 1730391553, "asset_info": { "divisible": true, "asset_longname": null, @@ -16565,30 +16566,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 }, { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730388828.1054614, + "block_time": 1730391558.1007109, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", + "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", "destination": "", "fee": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", + "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", "tx_index": 77, - "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", + "utxos_info": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", + "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", "memo": null, "asset_info": { "divisible": true, @@ -16602,7 +16603,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730388828.1054614 + "timestamp": 1730391558.1007109 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 184c5856be..ff27b18587 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -662,13 +662,13 @@ def get_attach_estimate_xcp_fee(db): def compose_detach( db, utxo: str, - destination: str, + destination: str = None, **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 destination: The address to detach the assets to, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1) """ params = { "source": utxo, diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index 80c85908bf..1f6a9de710 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -493,7 +493,7 @@ def get_address_balances(db, address: str): field_name = "utxo" query = f""" - SELECT {field_name}, asset, quantity, MAX(rowid) + SELECT {field_name}, asset, quantity, utxo_address, MAX(rowid) FROM balances WHERE {field_name} = ? GROUP BY {field_name}, asset diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index 37a82a4a13..d8cc42724e 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -8,7 +8,7 @@ ID = 102 -def validate(source, destination): +def validate(source, destination=None): problems = [] # check if source is a UTXO @@ -16,15 +16,16 @@ def validate(source, destination): problems.append("source must be a UTXO") # check if destination is an address - try: - script.validate(destination) - except script.AddressError: - problems.append("destination must be an address") + if destination is not None: + try: + script.validate(destination) + except script.AddressError: + problems.append("destination must be an address") return problems -def compose(db, source, destination): +def compose(db, source, destination=None): problems = validate(source, destination) if problems: raise exceptions.ComposeError(problems) @@ -32,7 +33,10 @@ def compose(db, source, destination): # create message data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) # only the destination is needed - data_content = destination.encode("utf-8") + if destination is not None: + data_content = destination.encode("utf-8") + else: + data_content = b"0" # not empty to avoid a protocol change in `message_type.unpack()` data += struct.pack(f">{len(data_content)}s", data_content) return (source, [], data) @@ -40,7 +44,10 @@ def compose(db, source, destination): def unpack(message, return_dict=False): try: - destination = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8") + if message == b"0": # no destination + destination = None + else: + destination = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8") if return_dict: return { @@ -76,6 +83,11 @@ def detach_assets(db, tx, source, destination): continue # debit asset from source and credit to recipient action = "detach from utxo" + + # if no destination is provided, we credit the asset to utxo_address + if destination is None: + destination = balance["utxo_address"] + ledger.debit( db, source, diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index ba397b5a9c..84caf85f2e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -7724,6 +7724,11 @@ "out": (None, None), "mock_protocol_changes": {"short_tx_type_id": True}, }, + { + "in": (b"f0", 310502), + "out": (102, b"0"), + "mock_protocol_changes": {"short_tx_type_id": True}, + }, ], "pack": [ {"in": (0, 300000), "out": binascii.unhexlify("00000000")}, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json deleted file mode 100644 index c4b6b231fd..0000000000 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ /dev/null @@ -1,11273 +0,0 @@ -{ - "/v2/blocks": { - "result": [ - { - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "difficulty": 545259519, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "previous_block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", - "difficulty": 545259519, - "ledger_hash": "f0d33bc2271d95355bd480bfe20164a2ed76a3ce58f123a1d03de724e9aa6850", - "txlist_hash": "fe1a0af2449089a25fc8424a067bc21e49de2c274451f9739e2c7e2cd157d35f", - "messages_hash": "c3f77ccc2026502244ae222f879679b7bfc11cbfd99c86e7079d7bf193c6325b", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 207, - "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", - "block_time": 1730388812, - "previous_block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", - "difficulty": 545259519, - "ledger_hash": "3be0751f33d5c16cbe28eee322ab13fb0ecab3bda5ac8bb62fcca6d77208abf5", - "txlist_hash": "0daf351fa19d157cfb1020e7c95cb9040a9d9ede7973ad7073cd450d67e3ae3b", - "messages_hash": "3c61e7bbc1aef836626108220cb934fab903961bdb5be5df5dfb7d88e66f1be8", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 206, - "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", - "block_time": 1730388809, - "previous_block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "difficulty": 545259519, - "ledger_hash": "4690b8085523af8cc624aa63a31655736e8178d31cb65decb1ec6202a3921efb", - "txlist_hash": "ff8db2fba663d4306c95542a418b4ae778f78559d38ef16ac2e94fa6974f6efe", - "messages_hash": "3e0832c951fa8443a2b61a16d2f4b4a669d8db06debf2d8a3d97b06882e1e187", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 205, - "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "block_time": 1730388804, - "previous_block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", - "difficulty": 545259519, - "ledger_hash": "83103dcef879c17a4e3bbb4313e1c1a744ae93d0a4d6d1808f0a20cba81d5a89", - "txlist_hash": "0b5b8c45c1f9d6339d4e895c6b1320bb3b86cf0fce980627162ae1c518a2a296", - "messages_hash": "4a83dd1634e7fe06beb491cff8061ff3b902b22fee98d5c0b253e70e52dbbb81", - "transaction_count": 1, - "confirmed": true - } - ], - "next_cursor": 204, - "result_count": 109 - }, - "/v2/blocks/": { - "result": { - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "difficulty": 545259519, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks/": { - "result": { - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "difficulty": 545259519, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks//transactions": { - "result": [ - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//events": { - "result": [ - { - "event_index": 682, - "event": "BLOCK_PARSED", - "params": { - "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 - }, - "tx_hash": null - }, - { - "event_index": 681, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76 - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - }, - { - "event_index": 680, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 209, - "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - }, - { - "event_index": 679, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - }, - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - } - ], - "next_cursor": 677, - "result_count": 14 - }, - "/v2/blocks//events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 2 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION_OUTPUT", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION", - "event_count": 1 - }, - { - "event": "NEW_BLOCK", - "event_count": 1 - } - ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 - }, - "/v2/blocks//events/": { - "result": [ - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - }, - { - "event_index": 676, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - }, - { - "event_index": 673, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//credits": { - "result": [ - { - "block_index": 209, - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "quantity": 66, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - { - "block_index": 209, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 209, - "address": null, - "asset": "MYASSETA", - "quantity": 2000000000, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//debits": { - "result": [ - { - "block_index": 209, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "action": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 209, - "address": null, - "asset": "MYASSETA", - "quantity": 2000000000, - "action": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//expirations": { - "result": [ - { - "type": "order", - "object_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "block_index": 208, - "confirmed": true, - "block_time": 1730388815 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//cancels": { - "result": [ - { - "tx_index": 59, - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", - "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "status": "valid", - "confirmed": true, - "block_time": 1730388746 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//destructions": { - "result": [ - { - "tx_index": 62, - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", - "block_index": 196, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "status": "valid", - "confirmed": true, - "block_time": 1730388757, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//issuances": { - "result": [ - { - "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "msg_index": 0, - "block_index": 202, - "asset": "MPMASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388783, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sends": { - "result": [ - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//dispenses": { - "result": [ - { - "tx_index": 76, - "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sweeps": { - "result": [ - { - "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730388754, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairminters": { - "result": [ - { - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730388602, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairmints": { - "result": [ - { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388527, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions": { - "result": [ - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 74, - "result_count": 77 - }, - "/v2/transactions/info": { - "result": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "6b89040320553dc277ad7cb519383254e60086ce36ee617020af8eba2e55fcf1", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "4c8aee87908b6b34a3dd885c25ab8a05e9b869281b25dd7e54cc86c20f7d74ae", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "ac8fde2041b41f6fe8aba11bdf3c3dfda68f36cd4a788c14e2d734bb7ce61354", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5a68b5fd5e2de81a0d0b2b2e6e3f72a629d2096d19c4df863b75e02b7f9c8725", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5233472df64b6a0f74ed8ea3fa99c3e069b02145cf6bf4024221a8774e7ac38b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "96ac83ffc648fcaabb221490474ff575d03bff9cbbdcecd8196927de013cde15", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 1000, - "script_pub_key": "512103d164c6d286f929d0e56f9e4089c03adb55f18596061f1d0817b9fbd9ab5b5e9f2102069f8eb3212b2b5584b3893c32c2b80a45a5315954c5bbe35ea9376c4854c47f2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" - }, - { - "value": 1000, - "script_pub_key": "512103d164c6d286f929d0e5b283c27bef911be791ca2a3a4c145a0d3be3c69b91a5282102953b0e385ec8f11b8280d4a628e6447fb94ae919a4da1b0eb2f623f7f73545d82102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" - }, - { - "value": 1000, - "script_pub_key": "512102f064c6d286f929d0e56c9e43099263633b446207b4da007166156bdf9b55710f2103953b0e385ec8f13197354113942c447fb94ae919a4d09e63d79b4cc4773545652102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53ae" - }, - { - "value": 29999987000, - "script_pub_key": "001478682e5b8327b7725f504f257781372d3f4df059" - } - ], - "vtxinwit": [ - "304402206359adb985fd6368ad13aa0001e648d7ecd2e1323f80d36d41bb7a96bb3315be02201a6f17d85cb52c2d478b31fbc735110e65d01c8d455f461d6b20951bf27daf1f01", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "3044022058da2b8a4717a42e53f37e0c07d30c634d428ce74c7030c4f21321af250abbf202205d95de4f24f6b3312abfdb1def46ccb8f58068456813a2c77446a2c2616ed6f001", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "30440220394dab9061809fc86c2b0d9a6cf4ef012d06113562fef4de987fcd68ee9e858f02201b58eeb12693a95a081ba7de22c6ed42fbffe7c8e18b70576c1198360d218c8c01", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "304402201ba3397763d08bf79bcf17ee6e7fb24e8892a57ae5c9ea01676de059003e141202206e574a387362745a5de847e284e2b8edce1111266586d5f0113dea4a859c0f9601", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "304402203376f631a65e6a2e0e465e3061e291d75aac2e4592918ce772d61b35c10ff2e9022072f7fbbac9af2944656b92309c697db5c7235f49104745bb5cfc6f4745c40e6501", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f", - "304402207ef4076a621b57dbc3195bfbd0d274a12cf441ec957b3f19bfb566a47dbd56cf02206d4bfe5d4b643fa36baea6221ea1c53a2501189166ae7bc291b1c7feb2c34dd301", - "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" - ], - "lock_time": 0, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "tx_id": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858" - }, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "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": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "8f166f92b5df50e7e820673e08370fe58ac87b8fc8bc40b58f99ce02676c65e4", - "n": 1, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2eb85dbb459ea84908a33a13b56a4c0f9d61b3428c9f62a3afae3421595e1808312e9fece859975255303af003e180" - }, - { - "value": 4949930546, - "script_pub_key": "001489327ba83f6181de1d81727d7278dcd5a82d8e96" - } - ], - "vtxinwit": [ - "3044022040a81983cc671957eb31f3f5fa15172b390e4657b653a5367afb5adb44985b9f02201ad999e70949b602a0904dd25475d183f4bc801fee903cb294b6b55c7adde8ed01", - "022e81e49c06e82646fb1b2bd54c354500668ccaca97156448c0c855f3c3f33e4a" - ], - "lock_time": 0, - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_id": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0" - }, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions/unpack": { - "result": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "error": "memo too long" - } - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_time": 1730388823, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 681, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76 - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 680, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 209, - "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 679, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 677, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 209, - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "status": "valid", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 676, - "result_count": 12 - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 681, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76 - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 680, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 209, - "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 679, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 677, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 209, - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "status": "valid", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 676, - "result_count": 12 - }, - "/v2/transactions//sends": { - "result": [ - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/transactions//dispenses": { - "result": [ - { - "tx_index": 76, - "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 676, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 673, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 676, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 673, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/balances": { - "result": [ - { - "asset": "A95428956980101314", - "total": 100000000000, - "addresses": [ - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "utxo": null, - "utxo_address": null, - "quantity": 100000000000, - "quantity_normalized": "1000.00000000" - } - ], - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "total_normalized": "1000.00000000" - }, - { - "asset": "MPMASSET", - "total": 99999998960, - "addresses": [ - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "utxo": null, - "utxo_address": null, - "quantity": 99999998960, - "quantity_normalized": "999.99999000" - } - ], - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "total_normalized": "999.99999000" - }, - { - "asset": "FAIRMINTA", - "total": 500000000, - "addresses": [ - { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "utxo": null, - "utxo_address": null, - "quantity": 500000000, - "quantity_normalized": "5.00000000" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "total_normalized": "5.00000000" - }, - { - "asset": "MPMASSET", - "total": 960, - "addresses": [ - { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "utxo": null, - "utxo_address": null, - "quantity": 960, - "quantity_normalized": "0.00000960" - } - ], - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000960" - }, - { - "asset": "FAIRMINTD", - "total": 40, - "addresses": [ - { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "utxo": null, - "utxo_address": null, - "quantity": 40, - "quantity_normalized": "0.00000040" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "total": 19, - "addresses": [ - { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "utxo": null, - "utxo_address": null, - "quantity": 19, - "quantity_normalized": "0.00000019" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000019" - } - ], - "next_cursor": "MYASSETA", - "result_count": 8 - }, - "/v2/addresses/transactions": { - "result": [ - { - "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "block_hash": "488c22b7723970f5e72c932a11d504866a4fa77dce58fefbc5d1da1f25a3a740", - "block_time": 1730388812, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 73, - "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", - "block_index": 206, - "block_hash": "6b7cc7a737f869f2f416d9b2284c79b6f9fda8e7b2250364f66d9ac63ef38f2e", - "block_time": 1730388809, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038078682e5b8327b7725f504f257781372d3f4df059808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e96c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "746865206d656d6f", - "memo_is_hex": true, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "quantity": 10, - "memo": "746865206d656d6f", - "memo_is_hex": true, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "block_time": 1730388804, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", - "block_time": 1730388790, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 70, - "result_count": 46 - }, - "/v2/addresses/events": { - "result": [ - { - "event_index": 666, - "event": "OPEN_ORDER", - "params": { - "block_index": 208, - "expiration": 21, - "expire_index": 229, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": "open", - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "tx_index": 75, - "block_time": 1730388815, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - }, - { - "event_index": 665, - "event": "DEBIT", - "params": { - "action": "open order", - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "block_index": 208, - "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "quantity": 1000, - "tx_index": 75, - "utxo": null, - "utxo_address": null, - "block_time": 1730388815, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - }, - { - "event_index": 664, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 208, - "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "block_time": 1730388815 - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - }, - { - "event_index": 663, - "event": "CREDIT", - "params": { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "block_index": 208, - "calling_function": "cancel order", - "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "quantity": 5000, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1730388815, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00005000" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - }, - { - "event_index": 661, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_index": 208, - "block_time": 1730388815, - "btc_amount": 0, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "destination": "", - "fee": 10000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "tx_index": 75, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - } - ], - "next_cursor": 657, - "result_count": 238 - }, - "/v2/addresses/mempool": { - "result": [ - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "quantity": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "status": "valid", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "CREDIT", - "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "XCP", - "block_index": 209, - "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "XCP", - "block_index": 209, - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1730388828.1054614, - "btc_amount": 0, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", - "destination": "", - "fee": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77, - "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1730388828.1054614 - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances": { - "result": [ - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "A95428956980101314", - "quantity": 100000000000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MPMASSET", - "quantity": 99999998960, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "999.99999000" - }, - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MYASSETA", - "quantity": 97999999980, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "980.00000000" - }, - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 82649961196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.49961000" - }, - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "TESTLOCKDESC", - "quantity": 9999990000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "99.99990000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/balances/": { - "result": [ - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 82649961196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.49961000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/credits": { - "result": [ - { - "block_index": 208, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 5000, - "calling_function": "cancel order", - "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388815, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00005000" - }, - { - "block_index": 207, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "calling_function": "mpma send", - "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "tx_index": 74, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388812, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 206, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "calling_function": "mpma send", - "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", - "tx_index": 73, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388809, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 202, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388783, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "block_index": 193, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "tx_index": 59, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388746, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - } - ], - "next_cursor": 59, - "result_count": 20 - }, - "/v2/addresses/
/debits": { - "result": [ - { - "block_index": 208, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "tx_index": 75, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388815, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 205, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "tx_index": 72, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 205, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MPMASSET", - "quantity": 20, - "action": "mpma send", - "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "tx_index": 72, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - }, - { - "block_index": 204, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "tx_index": 71, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 204, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MPMASSET", - "quantity": 20, - "action": "mpma send", - "event": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "tx_index": 71, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - } - ], - "next_cursor": 62, - "result_count": 29 - }, - "/v2/addresses/
/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/broadcasts": { - "result": [ - { - "tx_index": 24, - "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", - "block_index": 137, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730388530, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/burns": { - "result": [ - { - "tx_index": 0, - "tx_hash": "692df354dadcb4b6e85230b8e927455d55443441923eb63c69e09f3d33aacfd6", - "block_index": 112, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "burned": 50000000, - "earned": 74999998167, - "status": "valid", - "confirmed": true, - "block_time": 1730388438, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99998000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends": { - "result": [ - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "memo2", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 20, - "result_count": 12 - }, - "/v2/addresses/
/receives": { - "result": [ - { - "tx_index": 38, - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", - "block_index": 151, - "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", - "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388584, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends/": { - "result": [ - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "memo2", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 70, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", - "block_index": 203, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "MPMASSET", - "quantity": 1000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388787, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/receives/": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 63, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "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": 1730388764, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/addresses/
/dispenses/sends": { - "result": [ - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 63, - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388764, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/receives": { - "result": [ - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 63, - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388764, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/sends/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispenses/receives/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/sweeps": { - "result": [ - { - "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730388754, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/issuances": { - "result": [ - { - "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "msg_index": 0, - "block_index": 202, - "asset": "MPMASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388783, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 49, - "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", - "msg_index": 0, - "block_index": 162, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388626, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 48, - "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", - "msg_index": 0, - "block_index": 161, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1730388621, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 47, - "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", - "msg_index": 0, - "block_index": 160, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388617, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 46, - "tx_hash": "dadccac15a0cd2343816a234c9eb7d525d8473782a746c1032e8046f29847c30", - "msg_index": 0, - "block_index": 159, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388614, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": 17, - "result_count": 22 - }, - "/v2/addresses/
/assets": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, - "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, - "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1730388523, - "last_issuance_block_time": 1730388527, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730388506, - "last_issuance_block_time": 1730388519, - "supply_normalized": "0.00000019" - } - ], - "next_cursor": 3, - "result_count": 7 - }, - "/v2/addresses/
/assets/issued": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, - "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, - "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1730388523, - "last_issuance_block_time": 1730388527, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730388506, - "last_issuance_block_time": 1730388519, - "supply_normalized": "0.00000019" - } - ], - "next_cursor": 3, - "result_count": 7 - }, - "/v2/addresses/
/assets/owned": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, - "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, - "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1730388523, - "last_issuance_block_time": 1730388527, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730388506, - "last_issuance_block_time": 1730388519, - "supply_normalized": "0.00000019" - } - ], - "next_cursor": 3, - "result_count": 7 - }, - "/v2/addresses/
/transactions": { - "result": [ - { - "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245", - "block_time": 1730388815, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": " 43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "block_hash": "043d107f6e1545cc595242c9dd4182ad6245662ad8b8bb8375d1edb29774bb72", - "block_time": 1730388804, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "block_hash": "4ccabe21c75949d0afcc258854d35b3de4a4dd50f8a79613ada4ae8dfb1698a6", - "block_time": 1730388790, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038052d9b86eb5e791b2c549521a87fb7fb80e2f93a4808b7fe3da641386c82fa6eefc75fcefd840f015258089327ba83f6181de1d81727d7278dcd5a82d8e9688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " 9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 70, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", - "block_index": 203, - "block_hash": "3d23f456ba64fa5d2eff4d25356e02df5365eef3fc3a690338a0d9526f538ef6", - "block_time": 1730388787, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000178d82231300000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", - "supported": true, - "utxos_info": " a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "block_index": 202, - "block_hash": "420b927a976b8e2e3db3cc4c24e106987232a8181a8d46be1d2efb652a7c90ad", - "block_time": 1730388783, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", - "supported": true, - "utxos_info": " 02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 63, - "result_count": 31 - }, - "/v2/addresses/
/dividends": { - "result": [ - { - "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", - "block_index": 155, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1730388599, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/orders": { - "result": [ - { - "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 184, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1730388640, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1730388815, - "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": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1730388746, - "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": 60, - "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", - "block_index": 194, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 215, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388749, - "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": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 229, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388815, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/fairminters": { - "result": [ - { - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730388602, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1730388523, - "price_normalized": "0.00000050", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1730388506, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1730388502, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730388484, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/fairmints": { - "result": [ - { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388527, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388519, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388515, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388510, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "ad7ded8aea74e95132cd8c881f2459fba118fcdd32483b685e18a99ce87ce6f7", - "tx_index": 15, - "block_index": 127, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388491, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - }, - { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388477, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 6 - }, - "/v2/addresses/
/fairmints/": { - "result": [ - { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388477, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/utxos//balances": { - "result": [ - { - "asset": "XCP", - "quantity": 2000000000, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - { - "asset": "MYASSETA", - "quantity": 2000000000, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/compose/bet": { - "error": "['feed doesn\u2019t exist']" - }, - "/v2/addresses/
/compose/broadcast": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction": 0.05, - "text": "\"Hello, world!\"" - }, - "name": "broadcast", - "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "02000000000101f30ff68f32191b4982340f8b1087e9cb3254689e95417f5498cc0666baaa6a490000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29e9a8a04368bcc2c13e3168c3664f67092b0e5086e14b4c83ad6ec26fa4281f8249f77e25879a93b1fe83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "broadcast", - "message_type_id": 30, - "message_data": { - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction_int": 5000000, - "text": "\"Hello, world!\"", - "status": "valid", - "fee_fraction_int_normalized": "0.05000000" - } - } - } - }, - "/v2/addresses/
/compose/btcpay": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" - }, - "name": "btcpay", - "data": "434e5452505254590b024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1fc1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "btc_in": 5000000000, - "btc_out": 3000, - "btc_change": 4999978921, - "btc_fee": 18079, - "rawtransaction": "02000000000101237cdd6abab4cdccd2941a0001fe3fc209d29136feee89600aac9187f6fb365e0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03b80b00000000000016001478682e5b8327b7725f504f257781372d3f4df05900000000000000004b6a49513fa0e770a4ed234a1da083cf514bca57a1d89e5d05ff24184d2ed56d42c5e27b49d7df1feacdaaf096f2b5cbaf6d93228e44ef43ddbef5a260e251de99deef3996cba19746428e97a99f052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/burn": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "quantity": 1000, - "overburn": false - }, - "name": "burn", - "data": null, - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999985793, - "btc_fee": 13207, - "rawtransaction": "02000000000101a353a25c14771493f0d512ea7cf0162c2035ad2cd141222319a578f5d78e63af0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000" - } - }, - "/v2/addresses/
/compose/cancel": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33" - }, - "name": "cancel", - "data": "434e5452505254594643fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "02000000000101fc26d1b96a718f0c2dc40ca4b41f3ef3bd55e5112a705fd54e4bd17f31ec1b190000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0200000000000000002b6a29f704f8edc0ebbc3800dde406bbcc7331c0eb8027d01001b9851edf2007064bc1d345837f7050b22c6c83ba052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/destroy": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 1000, - "tag": "\"bugs!\"", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "destroy", - "data": "434e5452505254596e000000000000000100000000000003e822627567732122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986323, - "btc_fee": 13677, - "rawtransaction": "02000000000101c8f3626b0417be142ca95715c8745b7bd5e239b91b2924d6ea8d55213fcf7c1c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000226a20ec86901c7f3c5a7150f444b6231f9390821a5d09c0ae30a775f4c4ef1e3c312a93bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "tag": "22627567732122", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dispenser": { - "result": { - "params": { - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949939500, - "btc_out": 0, - "btc_change": 4949925236, - "btc_fee": 14264, - "rawtransaction": "02000000000101675ca0059fa99c5c9cad64f274539dfaea653241fe200d83702d663dbe155993010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a35ffffffff0200000000000000002c6a2aec477f5a10edd262cbe088d269a3d69709160796d417fcc2495a78d064d3c1ff857a2e7e4abfd29285b274dd0927010000001600140bf1462fbcb9abb1ee442b2adf5b89cd76263a3502000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dividend": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "quantity_per_unit": 1, - "asset": "FAIRMINTA", - "dividend_asset": "XCP", - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "0.00000001" - }, - "name": "dividend", - "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101570134c00b64742e02bdfaddc041e8760285c1d35b10cc350c98529d7415c7830000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a21124ec109d96b25e39b77d04e311b78ce9875d67366580ce5416ffe7e5e670e3da458bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, - "message_data": { - "asset": "FAIRMINTA", - "quantity_per_unit": 1, - "dividend_asset": "XCP", - "status": "valid", - "quantity_per_unit_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/issuance": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCPTEST", - "quantity": 1000, - "transfer_destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "lock": false, - "reset": false, - "description": null, - "quantity_normalized": "0.00001000" - }, - "name": "issuance", - "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999983723, - "btc_fee": 15731, - "rawtransaction": "02000000000101b9ef7fad3663f913ca8b893e4484ef5496bc469a8a5c770fbe79625d52e8d83a0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000236a21dde41ded3a51f6da18fa27361ae0737776c1ccd9943ea2b8a228abb4069a4460546bb2052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 7136017375, - "asset": "XCPTEST", - "subasset_longname": null, - "quantity": 1000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "status": "valid", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/mpma": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset_dest_quant_list": [ - [ - "XCP", - "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - 1 - ], - [ - "MPMASSET", - "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - 2 - ] - ], - "memo": null, - "memo_is_hex": false - }, - "name": "mpma", - "data": "434e5452505254590300028078682e5b8327b7725f504f257781372d3f4df0598052d9b86eb5e791b2c549521a87fb7fb80e2f93a440000005e36088c4d000000000000000240000000000000004000000000000000100", - "btc_in": 20000000000, - "btc_out": 2000, - "btc_change": 19999945404, - "btc_fee": 52596, - "rawtransaction": "02000000000104e75d6e5af50269c0705c4375adca7950253959b6977dbf2f68e36639e47371ad0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff54bce38d43312df81ec276feb49454fc5f1cf31f71e3db38d3df6b7ed45b61470000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff93747391fc199fa1db06cec0538ab05ff58c502ad445ade1d7cfd59a175a2ba00000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff0aa29dfafc0d3daac0c01ed4183aa590bf5d83657cb05104402a8dc6dd1a46380000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03e80300000000000069512103bbf2c66f0fcfe593481b043d964d6178e3b7fc6fff10aaa9b571cffb540e8f5821031d5d2c07263bb605b92e78fe8ad283134e034e08fb1ff975253081c42187e4ed2102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aee80300000000000069512102a4f2c66f0fcfe59348c8043f16350956b810dbd88d4ffae690024ecc7931c2db2102ed04ad55ff83d8b05ebfca3bc3809994b57cf606d48c5d3525308427410f20b92102a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f53aebcf216a80400000016001478682e5b8327b7725f504f257781372d3f4df05902000002000002000002000000000000", - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 2, - "memo": null, - "memo_is_hex": null - }, - { - "asset": "XCP", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "quantity": 1, - "memo": null, - "memo_is_hex": null - } - ] - } - } - }, - "/v2/addresses/
/compose/order": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - }, - "name": "order", - "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985208, - "btc_fee": 14792, - "rawtransaction": "0200000000010113dcdfdfe4a368f432f9c88948eb1ed6f6117bd3a4fd4cb0ec2434617701c80c0000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000356a338625f4ae8e3c7c77ee3d8bdf55c83f2e35baa7fac469f3ee9ac58a7c6a6d9211043749f29c2203f011641b56f4e3be88f1b87538b8052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "status": "open", - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - } - } - } - }, - "/v2/addresses/
/compose/send": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 1000, - "memo": null, - "memo_is_hex": false, - "use_enhanced_send": true, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88052d9b86eb5e791b2c549521a87fb7fb80e2f93a4", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985501, - "btc_fee": 14499, - "rawtransaction": "0200000000010170a9290fea37d6f2881678c2d0247e8e868066c72145c7f51d6210df01c043c90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000306a2ec9620cb57b34e7ada6e0b8921918a6268bc5fa3a495b71bf6e1f96b2d12b067641bda940de034fcf39f964f206845db9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "memo": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/sweep": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "flags": 7, - "memo": "FFFF" - }, - "name": "sweep", - "data": "434e545250525459048052d9b86eb5e791b2c549521a87fb7fb80e2f93a407ffff", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101ea793cbdb536e63a7bef18cedea7452b2da60b6c340094b1b963fb15c5fc53970000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000236a216b202a2f0a00f54b6bacc462f1ae1a9a16bd938f7d31aaeaa42c7cc6549c6e9f6158bc052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "sweep", - "message_type_id": 4, - "message_data": { - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "flags": 7, - "memo": "ffff" - } - } - } - }, - "/v2/addresses/
/compose/dispense": { - "result": { - "params": { - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "quantity": 1000 - }, - "name": "dispense", - "data": "434e5452505254590d00", - "btc_in": 4949828000, - "btc_out": 1000, - "btc_change": 4949812619, - "btc_fee": 14381, - "rawtransaction": "02000000000101339ec669fc5a667a1b06471ff2d757d189d3c4fc30bd6a394e8f903e0711bae00300000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a4ffffffff03e80300000000000016001489327ba83f6181de1d81727d7278dcd5a82d8e9600000000000000000c6a0af034aa6ee337efd8a9268b2508270100000016001452d9b86eb5e791b2c549521a87fb7fb80e2f93a402000000000000", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - } - } - }, - "/v2/addresses/
/compose/fairminter": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": 0.0, - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.00000010", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "name": "fairminter", - "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985443, - "btc_fee": 14557, - "rawtransaction": "02000000000101e8b915947078ac5678f54820668c3bf8f54269bd28c2b8e1c1073c6a397ddc840000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000316a2f4980614c992885063b6066529d728cf584e0a9e0d0acefa5edbabdc54ecb1077268f01249b7f515146f31aee000f4d23b9052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "fairminter", - "message_type_id": 90, - "message_data": { - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": "0.00000000", - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.00000010", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - } - } - }, - "/v2/addresses/
/compose/fairmint": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTC", - "quantity": 1, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000001" - }, - "name": "fairmint", - "data": "434e5452505254595b464149524d494e54437c31", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999987028, - "btc_fee": 12972, - "rawtransaction": "020000000001011e59b75282f59425869d34561899a60f045426200ff1e4fb264c4d1ecda43a210000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff020000000000000000166a14c32c50b16b8722bfd0e7da239f2b37e4a863389054bf052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "fairmint", - "message_type_id": 91, - "message_data": { - "asset": "FAIRMINTC", - "quantity": 1, - "quantity_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/attach": { - "result": { - "params": { - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 1000, - "destination_vout": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "attach", - "data": "434e545250525459655843507c313030307c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999984603, - "btc_fee": 14851, - "rawtransaction": "02000000000101a1bd68edbccbcfa11bb50fd68decac3b3b5cc1e1d35b99dfd0a3257c8f1120b90000000016001478682e5b8327b7725f504f257781372d3f4df059ffffffff03220200000000000016001478682e5b8327b7725f504f257781372d3f4df0590000000000000000146a12903319976c0accf3b36423d30bd09abd6e1edbb5052a0100000016001478682e5b8327b7725f504f257781372d3f4df05902000000000000", - "unpacked_data": { - "message_type": "attach", - "message_type_id": 101, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "destination_vout": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/utxos//compose/detach": { - "result": { - "params": { - "source": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" - }, - "name": "detach", - "data": "434e545250525459666263727431713070357a756b757279376d687968367366756a683071666839356c356d757a65616863617765", - "btc_in": 4949971000, - "btc_out": 0, - "btc_change": 4949945466, - "btc_fee": 25534, - "rawtransaction": "020000000001023e815ab87d99f0a777059cb72613bb1a800357936e0d6887276bcf56e6e52d4900000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff784ad753c01f68dbbd3c690100364d5e70c634b4e22e8bb35bab72b21cdf8ac501000000160014c40af6812235d1bd41cb48b4b588f4af5a09f173ffffffff020000000000000000376a353ced140a7366c13450ebce50ba0f7763bf468c43eb61be5973ebcc177143d7f8752299c2f62b54a0fd584e679dbfa573b26755cd2c7a2c0a2701000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17302000002000000000000", - "unpacked_data": { - "message_type": "detach", - "message_type_id": 102, - "message_data": { - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe" - } - } - } - }, - "/v2/assets": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, - "confirmed": true, - "first_issuance_block_time": 1730388783, - "last_issuance_block_time": 1730388783, - "supply_normalized": "1000.00000000" - }, - { - "asset": "UTXOASSET", - "asset_id": "4336417415635", - "asset_longname": null, - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "owner": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset", - "first_issuance_block_index": 199, - "last_issuance_block_index": 199, - "confirmed": true, - "first_issuance_block_time": 1730388768, - "last_issuance_block_time": 1730388768, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, - "confirmed": true, - "first_issuance_block_time": 1730388614, - "last_issuance_block_time": 1730388621, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETB", - "asset_id": "103804245871", - "asset_longname": null, - "issuer": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "owner": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 158, - "last_issuance_block_index": 158, - "confirmed": true, - "first_issuance_block_time": 1730388610, - "last_issuance_block_time": 1730388610, - "supply_normalized": "1000.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730388573, - "last_issuance_block_time": 1730388573, - "supply_normalized": "1000.00000000" - } - ], - "next_cursor": 5, - "result_count": 10 - }, - "/v2/assets/": { - "result": { - "asset": "FAIRMINTA", - "asset_id": "1046814266082", - "asset_longname": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "owner": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "", - "first_issuance_block_index": 122, - "last_issuance_block_index": 125, - "confirmed": true, - "first_issuance_block_time": 1730388474, - "last_issuance_block_time": 1730388484, - "supply_normalized": "100.00000000" - } - }, - "/v2/assets//balances": { - "result": [ - { - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 9500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - }, - { - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/assets//balances/
": { - "result": [ - { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 82649961196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.49961000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//orders": { - "result": [ - { - "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 184, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1730388640, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1730388815, - "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": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1730388746, - "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": 60, - "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", - "block_index": 194, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 215, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388749, - "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": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 229, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388815, - "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": 53, - "result_count": 8 - }, - "/v2/assets//matches": { - "result": [ - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 189, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 209, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1730388732, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 207, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1730388728, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx0_index": 50, - "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 51, - "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 184, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1730388640, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//credits": { - "result": [ - { - "block_index": 195, - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "sweep", - "event": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "tx_index": 61, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388754, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 125, - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "FAIRMINTA", - "quantity": 9000000000, - "calling_function": "fairmint", - "event": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", - "tx_index": 13, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388484, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "90.00000000" - }, - { - "block_index": 124, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388481, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", - "tx_index": 11, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388481, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "escrowed fairmint", - "event": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388481, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": 12, - "result_count": 6 - }, - "/v2/assets//debits": { - "result": [ - { - "block_index": 209, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "action": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 208, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "tx_index": 75, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388815, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 207, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "tx_index": 74, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388812, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 206, - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", - "tx_index": 73, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388809, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 205, - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "tx_index": 72, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ], - "next_cursor": 64, - "result_count": 46 - }, - "/v2/assets//dividends": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/assets//issuances": { - "result": [ - { - "tx_index": 13, - "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", - "msg_index": 0, - "block_index": 125, - "asset": "FAIRMINTA", - "quantity": 9000000000, - "divisible": true, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1730388484, - "quantity_normalized": "90.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 12, - "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", - "msg_index": 0, - "block_index": 124, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1730388481, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 11, - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", - "msg_index": 0, - "block_index": 123, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1730388477, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 10, - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "msg_index": 0, - "block_index": 122, - "asset": "FAIRMINTA", - "quantity": 0, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730388474, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//sends": { - "result": [ - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388812, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 73, - "tx_hash": "f682fc3c1d6f6738ff4c9cc839fb590d58f0b793aad32b298652d232d79dc000", - "block_index": 206, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "746865206d656d6f", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388809, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 72, - "tx_hash": "f3fe1e08c7ff232dd432bea16f4cbb5736bbf3a256eab2c4af436ced999cf858", - "block_index": 205, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388804, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 71, - "tx_hash": "9d1c9ae2134ea9ad6a08b90c2ba8ea5cb43b57ed1607cd569a4319eeff9bf568", - "block_index": 204, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388790, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 15, - "result_count": 9 - }, - "/v2/assets//dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 29, - "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", - "block_index": 142, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "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": 1730388548, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", - "block_index": 150, - "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "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": 1730388580, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 33, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "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": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispensers/
": { - "result": { - "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/assets//holders": { - "result": [ - { - "asset": "FAIRMINTA", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_12", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "quantity": 500000000, - "escrow": null, - "cursor_id": "balances_13", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_14", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "quantity": 9500000000, - "escrow": null, - "cursor_id": "balances_15", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispenses": { - "result": [ - { - "tx_index": 76, - "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", - "block_index": 147, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730388568, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//subassets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/assets//fairminters": { - "result": [ - { - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730388484, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairmints": { - "result": [ - { - "tx_hash": "af55c9e100aa1077dc07db58171344b183349e268794c0b483dfc60fa201f317", - "tx_index": 13, - "block_index": 125, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "asset": "FAIRMINTA", - "earn_quantity": 9000000000, - "paid_quantity": 9000000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388484, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "90.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "90.00000000" - }, - { - "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68", - "tx_index": 12, - "block_index": 124, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388481, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - }, - { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388477, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//fairmints/
": { - "result": [ - { - "tx_hash": "87236f492ac6cc466ab5c7307fa3d29e089013cd0ec11b628000c1249103b419", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388477, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders": { - "result": [ - { - "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 184, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1730388640, - "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": 53, - "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "block_index": 188, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 208, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "block_time": 1730388728, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 55, - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "block_index": 189, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388732, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1730388746, - "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": 60, - "tx_hash": "feb8ec668e2a567ae6a721875148af25a77f904ff753f7a80e7a04be0321526a", - "block_index": 194, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 215, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388749, - "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": 52, - "result_count": 8 - }, - "/v2/orders/": { - "result": { - "tx_index": 75, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 229, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730388815, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - }, - "/v2/orders//matches": { - "result": [ - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 189, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 209, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1730388732, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 207, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1730388728, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/orders//btcpays": { - "result": [ - { - "tx_index": 54, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", - "block_index": 188, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "btc_amount": 2000, - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "status": "valid", - "confirmed": true, - "block_time": 1730388728, - "btc_amount_normalized": "0.00002000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//": { - "result": [ - { - "tx_index": 53, - "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "block_index": 188, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 208, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1730388728, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 55, - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "block_index": 189, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1730388732, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 50, - "tx_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "block_index": 185, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 184, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730388640, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "block_index": 208, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730388815, - "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": 58, - "tx_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "block_index": 193, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 213, - "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": 1730388746, - "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": 60, - "result_count": 8 - }, - "/v2/orders///matches": { - "result": [ - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 189, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 209, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730388732, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 207, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730388728, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx0_index": 50, - "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 51, - "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 184, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730388640, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/order_matches": { - "result": [ - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 55, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 189, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 209, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1730388732, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx0_index": 52, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 53, - "tx1_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 207, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1730388728, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx0_index": 50, - "tx0_hash": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_index": 51, - "tx1_hash": "0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 184, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1730388640, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets/": { - "error": "Not found" - }, - "/v2/bets//matches": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets//resolutions": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/burns": { - "result": [ - { - "tx_index": 9, - "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", - "block_index": 121, - "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", - "burned": 50000000, - "earned": 74999996667, - "status": "valid", - "confirmed": true, - "block_time": 1730388470, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 8, - "tx_hash": "2f05366f588f21dccb295ef9cb5d8c7a397a69adac4446167ba10bbcd863af23", - "block_index": 120, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "burned": 50000000, - "earned": 74999996833, - "status": "valid", - "confirmed": true, - "block_time": 1730388467, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 7, - "tx_hash": "7a7fc5e8c6dc1952c0910c265c052ac6f377936332feaf8d3ab47084f50bfb50", - "block_index": 119, - "source": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0", - "burned": 50000000, - "earned": 74999997000, - "status": "valid", - "confirmed": true, - "block_time": 1730388464, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 6, - "tx_hash": "531c7e5e0671ad61656e5865ee9777b48044c10668123810976c6958c64d6b83", - "block_index": 118, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "burned": 50000000, - "earned": 74999997167, - "status": "valid", - "confirmed": true, - "block_time": 1730388460, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 5, - "tx_hash": "ef542ed4add95f4bc7bbc4ee4219c14bd54be80b1161a3167e3bd95d8c3ccef7", - "block_index": 117, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "burned": 50000000, - "earned": 74999997333, - "status": "valid", - "confirmed": true, - "block_time": 1730388456, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - } - ], - "next_cursor": 4, - "result_count": 10 - }, - "/v2/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 29, - "tx_hash": "24a22b5faa883978cc7caba0477a9defd741852efe7c337b9054805bb234b0ab", - "block_index": 142, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "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": 1730388548, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", - "block_index": 150, - "source": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "a2740875cb8201794f2a750101984ebbb382d432dd9ec06ff6ef418a87a8e528", - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "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": 1730388580, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 63, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "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": 1730388764, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 33, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "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": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/dispensers//dispenses": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/dividends": { - "result": [ - { - "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", - "block_index": 155, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1730388599, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/dividends/": { - "result": { - "tx_index": 42, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", - "block_index": 155, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1730388599, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - }, - "/v2/dividends//credits": { - "result": [ - { - "block_index": 155, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "calling_function": "dividend", - "event": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", - "tx_index": 42, - "utxo": "25bf60486a393bdf4e868b26f17f46225523e4eac3198ff314e13a994a79f448:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "confirmed": true, - "block_time": 1730388599, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events": { - "result": [ - { - "event_index": 682, - "event": "BLOCK_PARSED", - "params": { - "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 - }, - "tx_hash": null, - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 681, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76 - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 680, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 209, - "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 679, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 677, - "result_count": 683 - }, - "/v2/events/": { - "result": { - "event_index": 682, - "event": "BLOCK_PARSED", - "params": { - "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 - }, - "tx_hash": null, - "block_index": 209, - "block_time": 1730388823 - } - }, - "/v2/events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 11 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 62 - }, - { - "event": "SWEEP", - "event_count": 1 - }, - { - "event": "REFILL_DISPENSER", - "event_count": 1 - }, - { - "event": "ORDER_UPDATE", - "event_count": 12 - } - ], - "next_cursor": "ORDER_MATCH_UPDATE", - "result_count": 36 - }, - "/v2/events/": { - "result": [ - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 676, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 673, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 209, - "calling_function": "utxo move", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "utxo_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - }, - { - "event_index": 663, - "event": "CREDIT", - "params": { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "block_index": 208, - "calling_function": "cancel order", - "event": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "quantity": 5000, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1730388815, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00005000" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - }, - { - "event_index": 652, - "event": "CREDIT", - "params": { - "address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "block_index": 207, - "calling_function": "mpma send", - "event": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "quantity": 10, - "tx_index": 74, - "utxo": null, - "utxo_address": null, - "block_time": 1730388812, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "block_time": 1730388812 - } - ], - "next_cursor": 651, - "result_count": 91 - }, - "/v2/events//count": { - "result": { - "event": "CREDIT", - "event_count": 91 - } - }, - "/v2/dispenses": { - "result": [ - { - "tx_index": 76, - "dispense_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "65ed8a4fd3ee8e424f808f5341acf51603dfb606245f139bb68ee690a4be90b9", - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 63, - "block_index": 198, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388764, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "5adf829a2731d52aab74c0cbd9a11cb00c1d5ca90efcaab0f2cb35dbb4caa218", - "block_index": 147, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "destination": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 209, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "last_status_tx_hash": null, - "origin": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730388568, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "712d5b88f09c5a3cf56b98d43698db0a36a916a6b676660a27f86c8719ef35c0", - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388544, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "bd55d572b6ab9db851ccdf8cc860c300739c5a9dd42411d464f49ff9937de11c", - "block_index": 140, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "35f3b374507ec508b509123679ff80e7a18f05ccda2e5a373e804a81acdf53d5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730388540, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/sends": { - "result": [ - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388823, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388812, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388812, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730388812, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 28, - "result_count": 33 - }, - "/v2/issuances": { - "result": [ - { - "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "msg_index": 0, - "block_index": 202, - "asset": "MPMASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388783, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 65, - "tx_hash": "fc0df4fe281cbc92383846eaedd05efb40184273d92655b7442d71aa1495f057", - "msg_index": 0, - "block_index": 199, - "asset": "UTXOASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388768, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 49, - "tx_hash": "4897da57135308c2efb0d494cc6763742eea97d616df144ac8d76a46e9ebff10", - "msg_index": 0, - "block_index": 162, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388626, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 48, - "tx_hash": "3c11b7aa7133ad1e505e30bdc7de87fa10c70d39a680ee8f2ad1f28724eb10e9", - "msg_index": 0, - "block_index": 161, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1730388621, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 47, - "tx_hash": "1135b91aa5526340d685dfe1ad362ea4a6883ce15402b0ba4a0c1c3d6944f0b1", - "msg_index": 0, - "block_index": 160, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388617, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 19, - "result_count": 24 - }, - "/v2/issuances/": { - "result": { - "tx_index": 69, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "msg_index": 0, - "block_index": 202, - "asset": "MPMASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730388783, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - } - }, - "/v2/sweeps": { - "result": [ - { - "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730388754, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/sweeps/": { - "result": [ - { - "tx_index": 61, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "block_index": 195, - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730388754, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/broadcasts": { - "result": [ - { - "tx_index": 25, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", - "block_index": 138, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730388533, - "fee_fraction_int_normalized": "0.00000000" - }, - { - "tx_index": 24, - "tx_hash": "8e21591aca69db96b0d68d12411f777ed3f9598ff9cbd27a423e756b61be57a9", - "block_index": 137, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730388530, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/broadcasts/": { - "result": { - "tx_index": 25, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", - "block_index": 138, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730388533, - "fee_fraction_int_normalized": "0.00000000" - } - }, - "/v2/fairminters": { - "result": [ - { - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730388602, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1730388523, - "price_normalized": "0.00000050", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1730388506, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1730388502, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "c0f4037372017191315c5217602cff6c39b64e84d544e4b534afab476364ff76", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730388484, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/fairmints": { - "result": [ - { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388527, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "82b9268ea4877c3c015e7ee325141fb64081d708eb69d0a4143b2c2fefe857fb", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388519, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "51379b0d70148ebde5ec7d1788946e2f3488b3090a8232bf25e726635f6b1617", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388515, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "661b065d60b92e305451e23703c2855df59b103e59382feec1f120d48cec32b3", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "2f8226dc2f93b5ccd9b71891e87e5a6eb53027462e5dc192068ac3820f769d2d", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388510, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "c52637de105c8fabf7ce0477b20977b4b12f1a91b67ea0c6e1a8c389468baa8d", - "tx_index": 17, - "block_index": 129, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "fairminter_tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388499, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - } - ], - "next_cursor": 5, - "result_count": 10 - }, - "/v2/fairmints/": { - "result": { - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730388527, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - } - }, - "/v2/bitcoin/addresses/utxos": { - "result": [ - { - "vout": 1, - "height": 201, - "value": 4949939500, - "confirmations": 9, - "amount": 49.499395, - "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67", - "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" - }, - { - "vout": 0, - "height": 201, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126", - "address": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654" - }, - { - "vout": 2, - "height": 158, - "value": 100000, - "confirmations": 52, - "amount": 0.001, - "txid": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811", - "address": "bcrt1qs6wv0v683adx00w8dwlty30m7089meevdkcyz0" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions": { - "result": [ - { - "tx_hash": "3574fee854efa23d216bf5d7951fa27f083e3cba676333480c408de8b131614a" - }, - { - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860" - }, - { - "tx_hash": "b45736e63a7c69e39c202e6d69842eff67b5371fdb10fddecbf0fb91c04a7764" - }, - { - "tx_hash": "d180e3c789f7afa1bf2c80c42cc765e47c7b4389ea05112ac8854a851ceb8564" - }, - { - "tx_hash": "00de1334123fa16497163eb0109019940a0de9f3dc2ef983f0c576f19dd80c68" - }, - { - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0" - }, - { - "tx_hash": "f7201490d88f113ec36ca10576adf0981a397bd17dee4957d3fae6ebbcc6ffb0" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions/oldest": { - "result": { - "block_index": 2, - "tx_hash": "8501b17a588fa45b2e9f050340883fca514ce5b69c583e95fd14b406eab82dd3" - } - }, - "/v2/bitcoin/addresses/
/utxos": { - "result": [ - { - "vout": 0, - "height": 201, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "969ad60aafdac25c55dd4cd85458b9a5a07e7f4ce9c781b230512cb01ea8a126" - }, - { - "vout": 1, - "height": 201, - "value": 4949939500, - "confirmations": 9, - "amount": 49.499395, - "txid": "935915be3d662d70830d20fe413265eafa9d5374f264ad9c5c9ca99f05a05c67" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/pubkey": { - "result": "02a3f27dcf15b3b0f218b90e4fb5301b2aa4c7bcf746b5b5a55b6bb9a56f96d66f" - }, - "/v2/bitcoin/transactions/": { - "result": "0200000000010111f887b8683bc4054efc8bfa6061778d6eb868868f47c5603264399d39abdf140100000000ffffffff03e803000000000000160014c40af6812235d1bd41cb48b4b588f4af5a09f17300000000000000000c6a0a8e74c0503d7ed91aabe5eb140927010000001600148438dff1939dbbf2323fc0765732298c162d678c02473044022020e6d95b1e6c95d2efb9805c2c0cab68ae8db334bd627e59322aa08c62eaa23b0220736569640c08cb17cef4ad9abfdd33db21b44cce519cb78d26b07a7919f19cab01210307c380fb682c6be41e362b8eb8de3db81b094b1889ea57382edab49518f9d8ff00000000" - }, - "/v2/bitcoin/estimatesmartfee": { - "result": 58701 - }, - "/v2/bitcoin/getmempoolinfo": { - "result": { - "loaded": true, - "size": 1, - "bytes": 167, - "usage": 1232, - "total_fee": 0.0001, - "maxmempool": 300000000, - "mempoolminfee": 0.0, - "minrelaytxfee": 0.0, - "incrementalrelayfee": 1e-05, - "unbroadcastcount": 1, - "fullrbf": false - } - }, - "/v2/mempool/events": { - "result": [ - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77 - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "quantity": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "status": "valid", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "CREDIT", - "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "XCP", - "block_index": 209, - "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "XCP", - "block_index": 209, - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1730388828.1054614, - "btc_amount": 0, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", - "destination": "", - "fee": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77, - "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1730388828.1054614 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/mempool/events/": { - "result": [ - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "CREDIT", - "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "XCP", - "block_index": 209, - "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/mempool/transactions//events": { - "result": [ - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77 - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "quantity": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "status": "valid", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "CREDIT", - "params": { - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "asset": "XCP", - "block_index": 209, - "calling_function": "send", - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "asset": "XCP", - "block_index": 209, - "event": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "quantity": 10000, - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730388828.1054614 - }, - { - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1730388828.1054614, - "btc_amount": 0, - "data": "0200000000000000010000000000002710808b7fe3da641386c82fa6eefc75fcefd840f01525", - "destination": "", - "fee": 10000, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "tx_hash": "7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0", - "tx_index": 77, - "utxos_info": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f:1 7842c805baf9cd1f3ffc63c32c60ae9f6c16a995fe5a2922788eedd89cebf7c0:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1730388828.1054614 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/healthz": { - "result": { - "status": "Healthy" - } - }, - "/healthz": { - "result": { - "status": "Healthy" - } - }, - "/v2/events/NEW_BLOCK": { - "result": [ - { - "event_index": 669, - "event": "NEW_BLOCK", - "params": { - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_index": 209, - "block_time": 1730388823, - "difficulty": 545259519, - "previous_block_hash": "04a171e5ab41b730d4e8b85d8ea7351c73d16079993dddbece70f4761ec9e245" - }, - "tx_hash": null, - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 660, - "result_count": 109 - }, - "/v2/events/NEW_TRANSACTION": { - "result": [ - { - "event_index": 670, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "44116f12b5fd194dbec6af9330025ce8560ad12c7008ee91dc8a0d14a43d9719", - "block_index": 209, - "block_time": 1730388823, - "btc_amount": 1000, - "data": "0d00", - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "fee": 0, - "source": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "utxos_info": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1 492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0 3 1", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 661, - "result_count": 77 - }, - "/v2/events/NEW_TRANSACTION_OUTPUT": { - "result": [ - { - "event_index": 671, - "event": "NEW_TRANSACTION_OUTPUT", - "params": { - "block_index": 209, - "btc_amount": 1000, - "destination": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "out_index": 0, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 565, - "result_count": 5 - }, - "/v2/events/BLOCK_PARSED": { - "result": [ - { - "event_index": 682, - "event": "BLOCK_PARSED", - "params": { - "block_index": 209, - "ledger_hash": "0280910163e1670cdc071947c8a4d21cdb6b52af490cda9944a58383c51e1676", - "messages_hash": "02bc14f3c200cea420889f936bba860646dad0e598dde8ba350ba43bdc13c593", - "transaction_count": 1, - "txlist_hash": "a01ca4e829a0d01a4ca7842c306064be2d12327c7f1395648955335a651ccb75", - "block_time": 1730388823 - }, - "tx_hash": null, - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 668, - "result_count": 109 - }, - "/v2/events/TRANSACTION_PARSED": { - "result": [ - { - "event_index": 681, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76 - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 667, - "result_count": 62 - }, - "/v2/events/DEBIT": { - "result": [ - { - "event_index": 675, - "event": "DEBIT", - "params": { - "action": "utxo move", - "address": null, - "asset": "XCP", - "block_index": 209, - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 2000000000, - "tx_index": 76, - "utxo": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "utxo_address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 672, - "result_count": 73 - }, - "/v2/events/CREDIT": { - "result": [ - { - "event_index": 678, - "event": "CREDIT", - "params": { - "address": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "asset": "XCP", - "block_index": 209, - "calling_function": "dispense", - "event": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "quantity": 66, - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 676, - "result_count": 91 - }, - "/v2/events/ENHANCED_SEND": { - "result": [ - { - "event_index": 609, - "event": "ENHANCED_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 203, - "destination": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "memo": null, - "quantity": 1000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": "valid", - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", - "tx_index": 70, - "block_time": 1730388787, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - }, - "tx_hash": "a9f2f5164b818304a7590e8ea3c6ca7533716b20d34cd27fdff17597747df824", - "block_index": 203, - "block_time": 1730388787 - } - ], - "next_cursor": 505, - "result_count": 2 - }, - "/v2/events/MPMA_SEND": { - "result": [ - { - "event_index": 657, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 207, - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "status": "valid", - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "tx_index": 74, - "block_time": 1730388812, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "e0ba11073e908f4e396abd30fcc4d389d157d7f21f47061b7a665afc69c69e33", - "block_index": 207, - "block_time": 1730388812 - } - ], - "next_cursor": 656, - "result_count": 15 - }, - "/v2/events/SEND": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_TRANSFER": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/SWEEP": { - "result": [ - { - "event_index": 548, - "event": "SWEEP", - "params": { - "block_index": 195, - "destination": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "fee_paid": 600000, - "flags": 1, - "memo": "sweep my assets", - "source": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "status": "valid", - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "tx_index": 61, - "block_time": 1730388754, - "fee_paid_normalized": "0.00600000" - }, - "tx_hash": "ebeae7f8f466daed32d4b2164c7c5c503701dae45d8423847ba763f8f8ade860", - "block_index": 195, - "block_time": 1730388754 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ASSET_DIVIDEND": { - "result": [ - { - "event_index": 344, - "event": "ASSET_DIVIDEND", - "params": { - "asset": "MYASSETA", - "block_index": 155, - "dividend_asset": "XCP", - "fee_paid": 20000, - "quantity_per_unit": 100000000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": "valid", - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", - "tx_index": 42, - "block_time": 1730388599, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - }, - "tx_hash": "03140c2e3d5176823c9e4613ac4042ec2b449d56cb887b897c1408359c2e0f37", - "block_index": 155, - "block_time": 1730388599 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/RESET_ISSUANCE": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_CREATION": { - "result": [ - { - "event_index": 600, - "event": "ASSET_CREATION", - "params": { - "asset_id": "101158363923", - "asset_longname": null, - "asset_name": "MPMASSET", - "block_index": 202, - "block_time": 1730388783 - }, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "block_index": 202, - "block_time": 1730388783 - } - ], - "next_cursor": 574, - "result_count": 12 - }, - "/v2/events/ASSET_ISSUANCE": { - "result": [ - { - "event_index": 601, - "event": "ASSET_ISSUANCE", - "params": { - "asset": "MPMASSET", - "asset_events": "creation", - "asset_longname": null, - "block_index": 202, - "call_date": 0, - "call_price": 0.0, - "callable": false, - "description": "My super asset B", - "description_locked": false, - "divisible": true, - "fee_paid": 50000000, - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "locked": false, - "quantity": 100000000000, - "reset": false, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": "valid", - "transfer": false, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "tx_index": 69, - "block_time": 1730388783, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - "tx_hash": "02bf433916e51cdba5c84b3240d73730c42a3098566fd30f76da5c37563b3dd4", - "block_index": 202, - "block_time": 1730388783 - } - ], - "next_cursor": 575, - "result_count": 24 - }, - "/v2/events/ASSET_DESTRUCTION": { - "result": [ - { - "event_index": 554, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "XCP", - "block_index": 196, - "quantity": 1, - "source": "bcrt1q3ye8h2plvxqau8vpwf7hy7xu6k5zmr5kkklurn", - "status": "valid", - "tag": "64657374726f79", - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", - "tx_index": 62, - "block_time": 1730388757, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - }, - "tx_hash": "e4656c6702ce998fb540bcc88f7bc88ae50f37083e6720e8e750dfb5926f168f", - "block_index": 196, - "block_time": 1730388757 - } - ], - "next_cursor": 157, - "result_count": 2 - }, - "/v2/events/OPEN_ORDER": { - "result": [ - { - "event_index": 666, - "event": "OPEN_ORDER", - "params": { - "block_index": 208, - "expiration": 21, - "expire_index": 229, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": "open", - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "tx_index": 75, - "block_time": 1730388815, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - } - ], - "next_cursor": 536, - "result_count": 8 - }, - "/v2/events/ORDER_MATCH": { - "result": [ - { - "event_index": 498, - "event": "ORDER_MATCH", - "params": { - "backward_asset": "BTC", - "backward_quantity": 3000, - "block_index": 189, - "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 3000, - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "match_expire_index": 209, - "status": "pending", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx0_block_index": 187, - "tx0_expiration": 21, - "tx0_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "tx0_index": 52, - "tx1_address": "bcrt1q3dl78knyzwrvstaxam78tl80mpq0q9f9c95z99", - "tx1_block_index": 189, - "tx1_expiration": 21, - "tx1_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "tx1_index": 55, - "block_time": 1730388732, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "c1fa3e6d8122888d454925920e4090836ce68a4dcf11e9ba53bf7d1e7d3899b0", - "block_index": 189, - "block_time": 1730388732 - } - ], - "next_cursor": 482, - "result_count": 3 - }, - "/v2/events/ORDER_UPDATE": { - "result": [ - { - "event_index": 662, - "event": "ORDER_UPDATE", - "params": { - "status": "expired", - "tx_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f" - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - } - ], - "next_cursor": 528, - "result_count": 12 - }, - "/v2/events/ORDER_FILLED": { - "result": [ - { - "event_index": 489, - "event": "ORDER_FILLED", - "params": { - "status": "filled", - "tx_hash": "3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987" - }, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", - "block_index": 188, - "block_time": 1730388728 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_MATCH_UPDATE": { - "result": [ - { - "event_index": 488, - "event": "ORDER_MATCH_UPDATE", - "params": { - "id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "status": "completed" - }, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", - "block_index": 188, - "block_time": 1730388728 - } - ], - "next_cursor": 461, - "result_count": 2 - }, - "/v2/events/BTC_PAY": { - "result": [ - { - "event_index": 490, - "event": "BTC_PAY", - "params": { - "block_index": 188, - "btc_amount": 2000, - "destination": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "order_match_id": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f_3ea1a61d91084862b67dc93ce83d5e649ea160b732b06f71183b19bb9ffc4987", - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "status": "valid", - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", - "tx_index": 54, - "block_time": 1730388728, - "btc_amount_normalized": "0.00002000" - }, - "tx_hash": "0728ca562b5df827e1137f3c23e9b7a4ccb0cc439d5d20c63f287647ee302346", - "block_index": 188, - "block_time": 1730388728 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/CANCEL_ORDER": { - "result": [ - { - "event_index": 530, - "event": "CANCEL_ORDER", - "params": { - "block_index": 193, - "offer_hash": "f9aa664dbc99558fa4f7d7b323e0edee8178c37b9d6bff0ff166a0a39df748fe", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": "valid", - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", - "tx_index": 59, - "block_time": 1730388746 - }, - "tx_hash": "664d0f5805489900c2ca9e30e893f677208f403e2c7bcd4d3426d2ff7f6db535", - "block_index": 193, - "block_time": 1730388746 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_EXPIRATION": { - "result": [ - { - "event_index": 664, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 208, - "order_hash": "024bbec92d442b399fd96327ed17ccbf01392e63b8adec7abf7ce491aa184e1f", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "block_time": 1730388815 - }, - "tx_hash": "43fe7843b04f787f7a600bc762dbef6dba2829402547143b6eab0b7f473a7f33", - "block_index": 208, - "block_time": 1730388815 - } - ], - "next_cursor": 469, - "result_count": 3 - }, - "/v2/events/ORDER_MATCH_EXPIRATION": { - "result": [ - { - "event_index": 464, - "event": "ORDER_MATCH_EXPIRATION", - "params": { - "block_index": 185, - "order_match_id": "65ef02f0d4e168febeab01c465ba8765cf183f7a45a1849adc7c509903cd11be_0a2ed6365064c5299d91d4c0fa082f1605f190af497644c04b26768b91c4c6cc", - "tx0_address": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx1_address": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "block_time": 1730388640 - }, - "tx_hash": null, - "block_index": 185, - "block_time": 1730388640 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/OPEN_DISPENSER": { - "result": [ - { - "event_index": 560, - "event": "OPEN_DISPENSER", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 197, - "dispense_count": 0, - "escrow_quantity": 10000, - "give_quantity": 1, - "give_remaining": 10000, - "oracle_address": null, - "origin": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "satoshirate": 1, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "status": 0, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "tx_index": 63, - "block_time": 1730388761, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001" - }, - "tx_hash": "6a0fc171eafab7f3dc384c0584bb07639efcc35131b0911345d5494f210c3b90", - "block_index": 197, - "block_time": 1730388761 - } - ], - "next_cursor": 272, - "result_count": 5 - }, - "/v2/events/DISPENSER_UPDATE": { - "result": [ - { - "event_index": 679, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "status": 0, - "tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 567, - "result_count": 8 - }, - "/v2/events/REFILL_DISPENSER": { - "result": [ - { - "event_index": 261, - "event": "REFILL_DISPENSER", - "params": { - "asset": "XCP", - "block_index": 144, - "destination": "my4hs1JPSWfGNx4gubAURgQSCdsmcN67BW", - "dispense_quantity": 10, - "dispenser_tx_hash": "590ca927addc1e8b527880c73ccc09663c8d47517bf7e730422503c0a9bc8299", - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", - "tx_index": 31, - "block_time": 1730388556, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000010" - }, - "tx_hash": "70900025871c4cd9168404e47623c0852e70bba56619ed5e9e1d62fb659ac324", - "block_index": 144, - "block_time": 1730388556 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/DISPENSE": { - "result": [ - { - "event_index": 680, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 209, - "btc_amount": 1000, - "destination": "bcrt1qssudluvnnkalyv3lcpm9wv3f3stz6euv3tt0zs", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "c58adf1cb272ab5bb38b2ee2b434c6705e4d360001693cbddb681fc053d74a78", - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 568, - "result_count": 5 - }, - "/v2/events/BROADCAST": { - "result": [ - { - "event_index": 218, - "event": "BROADCAST", - "params": { - "block_index": 138, - "fee_fraction_int": 0, - "locked": false, - "source": "bcrt1qcs90dqfzxhgm6swtfz6ttz854adqnutnyqzs5x", - "status": "valid", - "text": "price-USD", - "timestamp": 4003903983, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", - "tx_index": 25, - "value": 66600.0, - "block_time": 1730388533, - "fee_fraction_int_normalized": "0.00000000" - }, - "tx_hash": "46d0920b40c96f93cebcee31b868abe89d41f4f8920fa0affd1a95bae7ae5eae", - "block_index": 138, - "block_time": 1730388533 - } - ], - "next_cursor": 213, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINTER": { - "result": [ - { - "event_index": 349, - "event": "NEW_FAIRMINTER", - "params": { - "asset": "A95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "asset_parent": "MYASSETA", - "block_index": 156, - "burn_payment": false, - "description": "", - "divisible": true, - "end_block": 0, - "hard_cap": 0, - "lock_description": false, - "lock_quantity": false, - "max_mint_per_tx": 0, - "minted_asset_commission_int": 0, - "pre_minted": false, - "premint_quantity": 0, - "price": 1, - "quantity_by_price": 5, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "start_block": 0, - "status": "open", - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", - "tx_index": 43, - "block_time": 1730388602, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "tx_hash": "16e943a96014473b66505ea4449f6130bc5311adcf3370d73c800cacd53fc0a6", - "block_index": 156, - "block_time": 1730388602 - } - ], - "next_cursor": 196, - "result_count": 5 - }, - "/v2/events/FAIRMINTER_UPDATE": { - "result": [ - { - "event_index": 155, - "event": "FAIRMINTER_UPDATE", - "params": { - "status": "closed", - "tx_hash": "41065da2cbaa3151ad1887c390e48d0e24cd864ac0154d4292aae70d8fbdf4c1" - }, - "tx_hash": null, - "block_index": 130, - "block_time": 1730388502 - } - ], - "next_cursor": 110, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINT": { - "result": [ - { - "event_index": 207, - "event": "NEW_FAIRMINT", - "params": { - "asset": "FAIRMINTD", - "block_index": 136, - "commission": 0, - "earn_quantity": 40, - "fairminter_tx_hash": "895bbe001a4f87345d887e9428d2f2a5512538991d7f221a39067151903caaf2", - "paid_quantity": 34, - "source": "bcrt1q2tvmsm44u7gm932f2gdg07mlhq8zlyay93qa2d", - "status": "valid", - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", - "tx_index": 23, - "block_time": 1730388527, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - "tx_hash": "d3a377bc82e98fea58aacdf117e69076826c270c39d8c6fbe13a9427c8a4f382", - "block_index": 136, - "block_time": 1730388527 - } - ], - "next_cursor": 190, - "result_count": 10 - }, - "/v2/events/ATTACH_TO_UTXO": { - "result": [ - { - "event_index": 584, - "event": "ATTACH_TO_UTXO", - "params": { - "asset": "UTXOASSET", - "block_index": 200, - "destination": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb:0", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "status": "valid", - "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", - "tx_index": 66, - "block_time": 1730388772, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qp0c5vtauhx4mrmjy9v4d7kufe4mzvw34nm4654", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "cc156e9b659e8181bb9da187d1a5e4853f060c912f1cd151211c0b9280d510cb", - "block_index": 200, - "block_time": 1730388772 - } - ], - "next_cursor": 327, - "result_count": 4 - }, - "/v2/events/DETACH_FROM_UTXO": { - "result": [ - { - "event_index": 311, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "MYASSETA", - "block_index": 151, - "destination": "bcrt1qchtpmgx6cc4d886usrxnfntvaljkhq8qsuz4m8", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "407e31d66272b694119b59848b70a66f5a4289d9ae41efeaf0fb74089a4e6343:0", - "status": "valid", - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", - "tx_index": 38, - "block_time": 1730388584, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0p5zukury7mhyh6sfujh0qfh95l5muzeahcawe", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "a52ae141c553fe66559ad044ede2b1d73c63ae34135908ac51ba2c47d4993d16", - "block_index": 151, - "block_time": 1730388584 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/UTXO_MOVE": { - "result": [ - { - "event_index": 677, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 209, - "destination": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "14dfab399d39643260c5478f8668b86e8d776160fa8bfc4e05c43b68b887f811:1", - "status": "valid", - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "tx_index": 76, - "block_time": 1730388823, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "492de5e656cf6b2787680d6e935703801abb1326b79c0577a7f0997db85a813e", - "block_index": 209, - "block_time": 1730388823 - } - ], - "next_cursor": 674, - "result_count": 11 - }, - "/v2/events/BURN": { - "result": [ - { - "event_index": 70, - "event": "BURN", - "params": { - "block_index": 121, - "burned": 50000000, - "earned": 74999996667, - "source": "bcrt1qxq8v2qttjjycrpyz00nmw5xn5jr80ew02rv7mh", - "status": "valid", - "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", - "tx_index": 9, - "block_time": 1730388470, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - "tx_hash": "79d6f772289d3f3502b33f4cacc7e05c4adc96fd23058eeefc5c06a978186392", - "block_index": 121, - "block_time": 1730388470 - } - ], - "next_cursor": 65, - "result_count": 10 - } -} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 8b9f4bafe2..65bf6e2780 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -239,6 +239,10 @@ "destination": "$ADDRESS_7", "exact_fee": 0, }, + "set_variables": { + "UTXOASSET_UTXO_3_TX_HASH": "$TX_HASH", + "UTXOASSET_UTXO_3_TX_INDEX": "$TX_INDEX", + }, "controls": [ { "url": "blocks/$BLOCK_INDEX/events?event_name=UTXO_MOVE,CREDIT,DEBIT", @@ -343,4 +347,68 @@ }, ], }, + { + "title": "Detach asset from UTXO without destination", + "transaction": "detach", + "source": "$UTXOASSET_UTXO_3_TX_HASH:0", + "params": { + "exact_fee": 0, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=DETACH_FROM_UTXO,CREDIT,DEBIT", + "result": [ + { + "event": "DETACH_FROM_UTXO", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_7", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "$UTXOASSET_UTXO_3_TX_HASH:0", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_7", + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "detach from utxo", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "action": "detach from utxo", + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$UTXOASSET_UTXO_3_TX_HASH:0", + "utxo_address": "$ADDRESS_7", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 07e60645f4..93882bb397 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -59,7 +59,7 @@ CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = scenario_19_mpma.SCENARIO +# SCENARIOS = scenario_18_utxo.SCENARIO def compare_strings(string1, string2): @@ -357,7 +357,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From c1aeeb78208c4c34393449d4b71ea9bc84b8832e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 19:38:53 +0000 Subject: [PATCH 025/138] fix tests; update blueprint --- apiary.apib | 5744 ++++---- .../counterpartycore/lib/api/compose.py | 6 +- .../test/fixtures/api_v2_fixtures.json | 5 +- .../test/regtest/apidoc/apicache.json | 11243 ++++++++++++++++ .../test/regtest/genapidoc.py | 8 + .../regtest/scenarios/scenario_18_utxo.py | 9 + .../regtest/scenarios/scenario_19_mpma.py | 170 +- .../scenarios/scenario_last_mempool.py | 6 +- 8 files changed, 14131 insertions(+), 3060 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/apiary.apib b/apiary.apib index 2f64d927fd..ec0cc2645a 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-31 16:19:30.876398. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-31 19:36:03.060871. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 669, + "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_index": 209, - "block_time": 1730391553, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_index": 211, + "block_time": 1730403346, "difficulty": 545259519, - "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6" + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3" }, "tx_hash": null, - "block_index": 209, - "block_time": 1730391553 + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 660, - "result_count": 109 + "next_cursor": 678, + "result_count": 111 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 670, + "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_index": 209, - "block_time": 1730391553, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_index": 211, + "block_time": 1730403346, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "fee": 0, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 661, - "result_count": 77 + "next_cursor": 679, + "result_count": 79 } ``` @@ -242,21 +242,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 671, + "event_index": 693, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 209, + "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "out_index": 0, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], "next_cursor": 565, @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 682, + "event_index": 706, "event": "BLOCK_PARSED", "params": { - "block_index": 209, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "block_time": 1730391553 + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 }, "tx_hash": null, - "block_index": 209, - "block_time": 1730391553 + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 668, - "result_count": 109 + "next_cursor": 690, + "result_count": 111 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 681, + "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 667, - "result_count": 62 + "next_cursor": 689, + "result_count": 64 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 675, + "event_index": 699, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 209, - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "block_index": 211, + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,13 +343,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 672, - "result_count": 73 + "next_cursor": 696, + "result_count": 75 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,13 +381,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 676, - "result_count": 91 + "next_cursor": 700, + "result_count": 94 } ``` @@ -397,31 +397,31 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 609, + "event_index": 624, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 203, - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "block_index": 205, + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "memo": null, "quantity": 1000, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "status": "valid", - "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", - "tx_index": 70, - "block_time": 1730391520, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_index": 72, + "block_time": 1730403290, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", - "block_index": 203, - "block_time": 1730391520 + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_time": 1730403290 } ], "next_cursor": 505, @@ -435,20 +435,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 657, + "event_index": 675, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 207, - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 209, + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "status": "valid", - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "tx_index": 74, - "block_time": 1730391536, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, + "block_time": 1730403327, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,12 +458,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "block_time": 1730391536 + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_time": 1730403327 } ], - "next_cursor": 656, + "next_cursor": 674, "result_count": 15 } ``` @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "status": "valid", - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "tx_index": 61, - "block_time": 1730391475, + "block_time": 1730403247, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "block_index": 195, - "block_time": 1730391475 + "block_time": 1730403247 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "status": "valid", - "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "tx_index": 42, - "block_time": 1730391331, + "block_time": 1730403081, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "block_index": 155, - "block_time": 1730391331 + "block_time": 1730403081 } ], "next_cursor": null, @@ -583,18 +583,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 600, + "event_index": 615, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 202, - "block_time": 1730391505 + "block_index": 204, + "block_time": 1730403287 }, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", - "block_index": 202, - "block_time": 1730391505 + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_time": 1730403287 } ], "next_cursor": 574, @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 601, + "event_index": 616, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 202, + "block_index": 204, "call_date": 0, "call_price": 0.0, "callable": false, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "status": "valid", "transfer": false, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", - "tx_index": 69, - "block_time": 1730391505, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_index": 71, + "block_time": 1730403287, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", - "block_index": 202, - "block_time": 1730391505 + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_time": 1730403287 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "status": "valid", "tag": "64657374726f79", - "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", "tx_index": 62, - "block_time": 1730391478, + "block_time": 1730403251, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", "block_index": 196, - "block_time": 1730391478 + "block_time": 1730403251 } ], "next_cursor": 157, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 666, + "event_index": 688, "event": "OPEN_ORDER", "params": { - "block_index": 208, + "block_index": 210, "expiration": 21, - "expire_index": 229, + "expire_index": 231, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -703,20 +703,20 @@ Here is a list of events classified by theme and for each an example response: "get_asset": "BTC", "get_quantity": 1000, "get_remaining": 1000, - "give_asset": "XCP", + "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "status": "open", - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "tx_index": 75, - "block_time": 1730391539, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_index": 77, + "block_time": 1730403332, "give_asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false }, "get_asset_info": { "divisible": true, @@ -734,9 +734,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": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 } ], "next_cursor": 536, @@ -750,29 +750,29 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 498, + "event_index": 686, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", - "backward_quantity": 3000, - "block_index": 189, + "backward_quantity": 1000, + "block_index": 210, "fee_paid": 0, "forward_asset": "XCP", - "forward_quantity": 3000, - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "match_expire_index": 209, + "forward_quantity": 1000, + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "tx0_block_index": 187, + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_index": 52, - "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "tx1_block_index": 189, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_index": 60, + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "tx1_index": 55, - "block_time": 1730391452, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -787,17 +787,17 @@ Here is a list of events classified by theme and for each an example response: "locked": false, "issuer": null }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "block_index": 189, - "block_time": 1730391452 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 } ], - "next_cursor": 482, - "result_count": 3 + "next_cursor": 498, + "result_count": 4 } ``` @@ -807,19 +807,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 662, + "event_index": 694, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1" + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 528, - "result_count": 12 + "next_cursor": 685, + "result_count": 16 } ``` @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1" + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21" }, - "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", "block_index": 188, - "block_time": 1730391448 + "block_time": 1730403201 } ], "next_cursor": null, @@ -851,20 +851,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 488, + "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "status": "completed" + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "status": "expired" }, - "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", - "block_index": 188, - "block_time": 1730391448 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 } ], - "next_cursor": 461, - "result_count": 2 + "next_cursor": 488, + "result_count": 3 } ``` @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "status": "valid", - "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", "tx_index": 54, - "block_time": 1730391448, + "block_time": 1730403201, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", "block_index": 188, - "block_time": 1730391448 + "block_time": 1730403201 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "status": "valid", - "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", "tx_index": 59, - "block_time": 1730391467 + "block_time": 1730403230 }, - "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", "block_index": 193, - "block_time": 1730391467 + "block_time": 1730403230 } ], "next_cursor": null, @@ -931,21 +931,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 664, + "event_index": 695, "event": "ORDER_EXPIRATION", "params": { - "block_index": 208, - "order_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "block_time": 1730391539 + "block_index": 211, + "order_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_time": 1730403346 }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 469, - "result_count": 3 + "next_cursor": 655, + "result_count": 4 } ``` @@ -955,22 +955,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 464, + "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 185, - "order_match_id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "block_time": 1730391375 + "block_index": 210, + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_time": 1730403332 }, - "tx_hash": null, - "block_index": 185, - "block_time": 1730391375 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 } ], - "next_cursor": null, - "result_count": 1 + "next_cursor": 464, + "result_count": 2 } ``` @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "satoshirate": 1, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "status": 0, - "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "tx_index": 63, - "block_time": 1730391482, + "block_time": 1730403255, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "block_index": 197, - "block_time": 1730391482 + "block_time": 1730403255 } ], "next_cursor": 272, @@ -1027,15 +1027,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 679, + "event_index": 703, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "status": 0, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mgDwm8uDCgPNYmp8gda7tyVPQuWsrCSnig", + "destination": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", "dispense_quantity": 10, - "dispenser_tx_hash": "142ebf3042c7b75794312ad55b53388abd934e062593fd469636d3803fc6eda5", - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "tx_hash": "22aa32ca39ad3df47f7412544c0721aa100a74141f2f031c703afedfb2a7d72b", + "dispenser_tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", "tx_index": 31, - "block_time": 1730391287, + "block_time": 1730403041, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "22aa32ca39ad3df47f7412544c0721aa100a74141f2f031c703afedfb2a7d72b", + "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", "block_index": 144, - "block_time": 1730391287 + "block_time": 1730403041 } ], "next_cursor": null, @@ -1098,20 +1098,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 680, + "event_index": 704, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 209, + "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", "tx_index": 25, "value": 66600.0, - "block_time": 1730391265, + "block_time": 1730403019, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", "block_index": 138, - "block_time": 1730391265 + "block_time": 1730403019 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "start_block": 0, "status": "open", - "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", "tx_index": 43, - "block_time": 1730391335, + "block_time": 1730403085, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", "block_index": 156, - "block_time": 1730391335 + "block_time": 1730403085 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce" + "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb" }, "tx_hash": null, "block_index": 130, - "block_time": 1730391226 + "block_time": 1730402989 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "paid_quantity": 34, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "status": "valid", - "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", "tx_index": 23, - "block_time": 1730391258, + "block_time": 1730403011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", "block_index": 136, - "block_time": 1730391258 + "block_time": 1730403011 } ], "next_cursor": 190, @@ -1290,37 +1290,37 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 584, + "event_index": 609, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 200, - "destination": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684:0", + "block_index": 203, + "destination": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "status": "valid", - "tx_hash": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684", - "tx_index": 66, - "block_time": 1730391492, + "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_index": 70, + "block_time": 1730403282, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684", - "block_index": 200, - "block_time": 1730391492 + "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "block_index": 203, + "block_time": 1730403282 } ], - "next_cursor": 327, - "result_count": 4 + "next_cursor": 584, + "result_count": 5 } ``` @@ -1330,37 +1330,37 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 311, + "event_index": 601, "event": "DETACH_FROM_UTXO", "params": { - "asset": "MYASSETA", - "block_index": 151, - "destination": "bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v", + "asset": "UTXOASSET", + "block_index": 202, + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "503ccbe40e6ffdc3b7bf8efe91f92c8423ba5b4880c318ed1cc5cfac84cacebe:0", + "source": "9afb07a101a977781dfcfb57615cbeabce39e3b22d61304081f3cf6177013f33:0", "status": "valid", - "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", - "tx_index": 38, - "block_time": 1730391315, + "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_index": 69, + "block_time": 1730403279, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", - "block_index": 151, - "block_time": 1730391315 + "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "block_index": 202, + "block_time": 1730403279 } ], - "next_cursor": null, - "result_count": 1 + "next_cursor": 311, + "result_count": 2 } ``` @@ -1370,19 +1370,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 677, + "event_index": 701, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 209, - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "block_index": 211, + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "msg_index": 1, "quantity": 2000000000, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", "status": "valid", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,12 +1392,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 674, + "next_cursor": 698, "result_count": 11 } ``` @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qv5cahzs0qe3kul3m483c0ezcacta303vfp9357", + "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", "status": "valid", - "tx_hash": "785ab3d26b0d9d77fb64d31af37c68976e144fdcd5343848c853a2337b3a2118", + "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", "tx_index": 9, - "block_time": 1730391192, + "block_time": 1730402953, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "785ab3d26b0d9d77fb64d31af37c68976e144fdcd5343848c853a2337b3a2118", + "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", "block_index": 121, - "block_time": 1730391192 + "block_time": 1730402953 } ], "next_cursor": 65, @@ -1465,7 +1465,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `209` (str, optional) - The index of the most recent block to return + + cursor: `211` (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` @@ -1482,68 +1482,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", "difficulty": 545259519, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, "confirmed": true }, { - "block_index": 208, - "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", - "block_time": 1730391539, - "previous_block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", + "block_index": 210, + "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_time": 1730403332, + "previous_block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", "difficulty": 545259519, - "ledger_hash": "e9cd88ef2f9a13d3d3158cb7b925a2900b44f9d2b2444038a9a40fda9e5e4774", - "txlist_hash": "6ad6ce001fa457dad2c651a5ae43f6dcd453a5f20311c50c39a0a0fcfd4510da", - "messages_hash": "974d3f5e9adca0fe4b5d98042a4a2d0458221738d86dd3afd5d648bb861aadf1", + "ledger_hash": "860400663c2e932d0e9952400f9aa01415cf279d35a7f5e81f6dabc0c5c16716", + "txlist_hash": "e740759710f6964c4037eeaee13c0f59a883c9a48fdf2798da25ce8438070ff2", + "messages_hash": "a3c888da6448660b1bbea3fd26281d325c71c1d2e731d66a9c0342223aa2b810", "transaction_count": 1, "confirmed": true }, { - "block_index": 207, - "block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", - "block_time": 1730391536, - "previous_block_hash": "1a7d7fca34f5331b1c7dd9fadf6a2a44d3c60cc02e1d02932df19a458db5017d", + "block_index": 209, + "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_time": 1730403327, + "previous_block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", "difficulty": 545259519, - "ledger_hash": "44840cfc554c500119a0216dc262e773213182413cfb410ea150a453f0f33b99", - "txlist_hash": "16852378b922df5fee38207388ac1b2a3061303556a292b3396f1854b2b744ed", - "messages_hash": "55b6ace504fcc39549d9ba46d8ff4681849b03412d483aebc78831cfce2e0281", + "ledger_hash": "b7115ca664a3927bdf9fa8e78e931529e0a589d4a58c41cb8bd04d4c2748dc67", + "txlist_hash": "b257b31a58aa81531003e0ebc2df8f92e3456d8056f1a6b98fc100fd8f032e17", + "messages_hash": "49c4f6db87eed4383892669e056c16350c8b5224c2d3df3d509a1ecbdd2d24f4", "transaction_count": 1, "confirmed": true }, { - "block_index": 206, - "block_hash": "1a7d7fca34f5331b1c7dd9fadf6a2a44d3c60cc02e1d02932df19a458db5017d", - "block_time": 1730391531, - "previous_block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", + "block_index": 208, + "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "block_time": 1730403323, + "previous_block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", "difficulty": 545259519, - "ledger_hash": "1a50e52e5033f763669f6bb69d44021bb273a1b516ad847aa5e0e062effd3c6e", - "txlist_hash": "e61b7499ab5cce3cf988e66038243e10a640d05fe8f234ae3f88866c607eb217", - "messages_hash": "dd853577df434056046bcfaef09cb1adc56cc83a33b5a5f565ab4fa82ea025fb", + "ledger_hash": "a479d83f0ce588b3e69e8d3dceaee54a27eae58a356c5345c578e0142070cb92", + "txlist_hash": "8606128c6920f5c8b9b69bf46e92fb0f7d5718957bfa6601d65f85fdf47445bf", + "messages_hash": "a442f4dceb5c16cae6708af4ed8e950b41582e2eb726d47ac929c05c5b9add4f", "transaction_count": 1, "confirmed": true }, { - "block_index": 205, - "block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", - "block_time": 1730391527, - "previous_block_hash": "18a3c5fbc84f4452b8993ba726383a69835e0abb1080c99c64d0a0bcd137a3ef", + "block_index": 207, + "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_time": 1730403319, + "previous_block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", "difficulty": 545259519, - "ledger_hash": "04fd73ea2f32b9f30103c2e1aeeef6d0629a1f83220d148ccbe08e72eef7cadf", - "txlist_hash": "f554bfed0b81f5d552506c24da3e350f8391f6dba377f9795404cbd641dd9d86", - "messages_hash": "d1676b60eee6bffe44c0be0678d5402bbc7f3161a637a2bf1886aa321ea35a5b", + "ledger_hash": "95ee8738aa0716c11715fcdf2940c0badd4cc638cd6778abadaae54b5642a138", + "txlist_hash": "44520822dd23dc5829c97c92ee5790f1d696765d127fcf6f6f6336df022ad5aa", + "messages_hash": "42424d8034056766f6d9001fa6d2884ac46f2fd5aff54a9bd31b7a47241e5aeb", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 204, - "result_count": 109 + "next_cursor": 206, + "result_count": 111 } ``` @@ -1562,7 +1562,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (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. @@ -1573,14 +1573,14 @@ Return the information of a block ``` { "result": { - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", "difficulty": 545259519, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610` (str, required) - The index of the block to return + + block_hash: `799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814` (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,14 +1603,14 @@ Return the information of a block ``` { "result": { - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "previous_block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", "difficulty": 545259519, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, "confirmed": true } @@ -1622,8 +1622,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return - + cursor: `76` (str, optional) - The last transaction index to return + + block_index: `211` (int, required) - The index of the block to return + + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1640,18 +1640,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1673,10 +1673,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1693,43 +1693,43 @@ Returns the events of a block { "result": [ { - "event_index": 682, + "event_index": 706, "event": "BLOCK_PARSED", "params": { - "block_index": 209, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "block_time": 1730391553 + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 }, "tx_hash": null }, { - "event_index": 681, + "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" }, { - "event_index": 680, + "event_index": 704, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 209, + "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,18 +1740,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" }, { - "event_index": 679, + "event_index": 703, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "status": 0, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" }, { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,11 +1786,11 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" } ], - "next_cursor": 677, - "result_count": 14 + "next_cursor": 701, + "result_count": 16 } ``` @@ -1799,7 +1799,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (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 @@ -1825,20 +1825,20 @@ Returns the event counts of a block "event_count": 1 }, { - "event": "NEW_TRANSACTION_OUTPUT", + "event": "ORDER_UPDATE", "event_count": 1 }, { - "event": "NEW_TRANSACTION", + "event": "ORDER_EXPIRATION", "event_count": 1 }, { - "event": "NEW_BLOCK", + "event": "NEW_TRANSACTION_OUTPUT", "event_count": 1 } ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 + "next_cursor": "NEW_TRANSACTION", + "result_count": 12 } ``` @@ -1847,7 +1847,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (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` @@ -1866,19 +1866,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,22 +1888,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" }, { - "event_index": 676, + "event_index": 700, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,32 +1913,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" }, { - "event_index": 673, + "event_index": 697, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057" + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" } ], "next_cursor": null, @@ -1951,7 +1951,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2000,17 +2000,17 @@ Returns the credits of a block { "result": [ { - "block_index": 209, - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "block_index": 211, + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -2021,17 +2021,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 209, + "block_index": 211, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,21 +2042,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 209, + "block_index": 211, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -2073,7 +2073,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2111,17 +2111,17 @@ Returns the debits of a block { "result": [ { - "block_index": 209, + "block_index": 211, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -2132,21 +2132,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 209, + "block_index": 211, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -2163,7 +2163,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `211` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the expirations to return + Default: `None` + limit: `5` (int, optional) - The maximum number of expirations to return @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "block_index": 208, + "object_id": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "block_index": 211, "confirmed": true, - "block_time": 1730391539 + "block_time": 1730403346 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", "block_index": 193, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "offer_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", "status": "valid", "confirmed": true, - "block_time": 1730391467 + "block_time": 1730403230 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", "block_index": 196, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730391478, + "block_time": 1730403251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2284,7 +2284,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `202` (int, required) - The index of the block to return + + block_index: `204` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2315,15 +2315,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 69, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", "msg_index": 0, - "block_index": 202, + "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391505, + "block_time": 1730403287, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2353,7 +2353,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (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 @@ -2371,11 +2371,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -2395,11 +2395,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -2429,7 +2429,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `211` (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 @@ -2447,29 +2447,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 76, + "tx_index": 78, "dispense_index": 0, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "block_index": 195, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730391475, + "block_time": 1730403247, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730391335, + "block_time": 1730403085, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391258, + "block_time": 1730403011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", "block_index": 138, - "block_hash": "6fe7a344694fccb231cabb3fe3a05f47876f329a3e9013451387687b6ce73c6e", - "block_time": 1730391265, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_hash": "290e193664c1ebc43cd1175ca88f02b983466875dc7451976e6b80e4f0a22323", + "block_time": 1730403019, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b:1 2 ", + "utxos_info": " cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", "block_index": 188, - "block_hash": "7d7c2cd93272f8dbb9443de8eeff4c93b5da0e4d1bf4be2504dad74696b04a96", - "block_time": 1730391448, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_hash": "56bbd14427fa9195be5d86c2bfd5ce01d55ae2c677ba2a0d7b58c4c71c1d0ff3", + "block_time": 1730403201, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "btc_amount": 2000, "fee": 10000, - "data": "0bd47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f12023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "data": "0b6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "supported": true, - "utxos_info": " 5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126:0 3 1", + "utxos_info": " 44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598", + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", "block_index": 193, - "block_hash": "24695e933b5e4a5073357ef202209967dbcfcba51acfc3a0962ffe02e8a2fe73", - "block_time": 1730391467, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_hash": "2966359000b1eb12895e13b66c529ae5236fddada069937dfa058dbfe2f6af7e", + "block_time": 1730403230, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "463d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "data": "46457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", "supported": true, - "utxos_info": " 754044fcee838c4e83fd54263d9e46fb25bb2c89c7e3c7026f836742f8599598:1 2 ", + "utxos_info": " 396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f", + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", "block_index": 196, - "block_hash": "31a5ea5250fa9a71ab56683df224aeb6591c5c22dbd9cb7f73467b62cba34caa", - "block_time": 1730391478, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "block_hash": "1d82d9c109b12070c07426d979cd8ce17f3ab1d1f518862c4e7ecb08c9d489e9", + "block_time": 1730403251, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b:1 1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 2 ", + "utxos_info": "fe796ee0c6d7bcaa11a4ad0b53b8961e064e75e2b635ccca7056c031649ce9e3:1 8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "block_index": 197, - "block_hash": "00ea14af34cb2a4a301074190d6a39170c5c8e4b412048533d799b2d631a532a", - "block_time": 1730391482, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_hash": "5196ca6ff53b4797b4c12445477159f94e838c8feca6b47c7fb7757b19185e88", + "block_time": 1730403255, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89:1 2 ", + "utxos_info": " 5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -2878,18 +2878,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "block_index": 155, - "block_hash": "58ea090d9b9d58dbc71610e053eedc711c14f75e9e5f5cfe9fdad74532692839", - "block_time": 1730391331, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_hash": "6066131245eae26512e8a45ad23a94553a1c7625699d4d222879aaa0b1d9a10a", + "block_time": 1730403081, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099:1 2 ", + "utxos_info": " bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -2956,18 +2956,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 69, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", - "block_index": 202, - "block_hash": "59acb9c1866e5aa5cddb20d91149904fb1b97ebe738fcf5082a488be753415fe", - "block_time": 1730391505, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_hash": "20e7d5dbb7165402d4822e58299647fa3cec122b63e4d401d4bfcfa477908fd3", + "block_time": 1730403287, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e:1 2 ", + "utxos_info": " 901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2998,24 +2998,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", - "block_time": 1730391539, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 77, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_time": 1730403332, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", + "utxos_info": " 5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", "message_type_id": 10, "message_data": { - "give_asset": "XCP", + "give_asset": "UTXOASSET", "give_quantity": 1000, "get_asset": "BTC", "get_quantity": 1000, @@ -3023,11 +3023,11 @@ Here is sample API output for each of these transactions: "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false }, "get_asset_info": { "divisible": true, @@ -3051,18 +3051,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 70, - "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", - "block_index": 203, - "block_hash": "127cfdd07646ee016e64531a98eb110445f1e7c1e0c9117454746a2dadefc5db", - "block_time": 1730391520, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", + "block_time": 1730403290, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880881cbdd8a0c6681f017f43cb7b5fc8eb555e3515", + "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", "supported": true, - "utxos_info": " 4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31:1 2 ", + "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -3092,18 +3092,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 74, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", - "block_time": 1730391536, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_time": 1730403327, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089ffb1fe29ad158c416ad8184a8eb38ed630a46180ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06:0 4 ", + "utxos_info": " 4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "block_index": 195, - "block_hash": "0df289dee612179acfe25d8a8a2eb11d69cd7c305d2a96846aff0abb4905e860", - "block_time": 1730391475, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "block_hash": "6324d7e298b139025fcc8706fd3a1fb370a9215332b0aa8c2ac32044d1463c2f", + "block_time": 1730403247, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c1017377656570206d7920617373657473", + "data": "0480281ea9b25a079b4de6a2f74ae46373dbd79215aa017377656570206d7920617373657473", "supported": true, - "utxos_info": " 802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21:1 2 ", + "utxos_info": " 375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "flags": 1, "memo": "sweep my assets" } @@ -3183,18 +3183,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 66, - "tx_hash": "44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684", - "block_index": 200, - "block_hash": "201942aa9c8842bedd396623e990bcbc3b82c0191baef8502a4b0d7439225270", - "block_time": 1730391492, - "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", - "destination": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "tx_index": 70, + "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "block_index": 203, + "block_hash": "21c7e4713ee0e91d9f6913676f286e62afbc5d4d18c3806c6bf09c9a7df57e1d", + "block_time": 1730403282, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 44511cb9138ff79c12c3b21856b2c1fce0181b0aad4cf220c75dfb8b8dd1b684:0 3 1", + "utxos_info": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04:1 96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "divisible": true, "locked": false }, @@ -3223,24 +3223,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 38, - "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", - "block_index": 151, - "block_hash": "1653dcd05d7be60ab07409ff9fcd6ccd330cc277d0ef8f6f8b09e1d50925245b", - "block_time": 1730391315, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_index": 69, + "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "block_index": 202, + "block_hash": "7375d9f50c0a0a4a6c3568967edbc99be92cef1fade0f532f26322420ec92469", + "block_time": 1730403279, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "destination": null, "btc_amount": 0, - "fee": 10000, - "data": "666263727431713865377378757863726e7a367a773468736863617130336e7676713479646d377a7865383976", + "fee": 22972, + "data": "6630", "supported": true, - "utxos_info": "503ccbe40e6ffdc3b7bf8efe91f92c8423ba5b4880c318ed1cc5cfac84cacebe:0 1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b:1 2 ", + "utxos_info": "9afb07a101a977781dfcfb57615cbeabce39e3b22d61304081f3cf6177013f33:0 e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v" + "destination": null } }, "btc_amount_normalized": "0.00000000" @@ -3253,7 +3253,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `76` (str, optional) - The index of the most recent transactions to return + + cursor: `78` (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` @@ -3270,18 +3270,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3293,24 +3293,24 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", - "block_time": 1730391539, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 77, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_time": 1730403332, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", + "utxos_info": " 5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", "message_type_id": 10, "message_data": { - "give_asset": "XCP", + "give_asset": "UTXOASSET", "give_quantity": 1000, "get_asset": "BTC", "get_quantity": 1000, @@ -3318,11 +3318,11 @@ Returns the list of the last ten transactions "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false }, "get_asset_info": { "divisible": true, @@ -3339,8 +3339,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 74, - "result_count": 77 + "next_cursor": 76, + "result_count": 79 } ``` @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010694e3ab5db2f7a27c74021db147c592b51ae6d0995c329597d51695639288905e0000000000ffffffff0fcced3c2872aa1469df17d6aaca8f83f6f51c0bc182ba643a8d9c8b49f744de0000000000ffffffffdd9482c1bef5a8c46792b31decb55449d367b4f7b52edf8d9d9c2cb7158be78d0000000000ffffffff6f869da66e8c39e7c036d0e8622102cfdafe8e49cb795d7eeef378667ebfc6220000000000ffffffff724d93add14acff139aa282ac059af0b85811c1aa95ea6b5273072246acf4b4c0000000000ffffffff101b963af724f3b0a1e702a79d5694a9e62a8255b3ae6253078444ee3adc68580000000000ffffffff04e80300000000000069512102d848f432c7905a6bd03a1f6d25a67c1ac0a2c4e96d1f54c4fa17f9e75981cf7021027adc04bb7b54e94b49694f4510620a8e223db124c4f7c4a082cecec8827303d42102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aee80300000000000069512102d848f432c7905a6bd0b3ac3f877bf26fc51f7473cadf6b873169454f3a1045db21034fc984103598da311a0397b292195941f631104f9397474dd93faf8aaac5bc452102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aee80300000000000069512102f948f432c7905a6bd0391f6ea52ee0a718020281721e7fac5a47cd563ad4912e21024fc984103598da1b0fb602072ed35941f631104f939dc220bc52c0b92ac5bc002102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae387923fc0600000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102473044022066fdce362e742d39cbf1a7617820b696d27654915e22ca0598b5ec6c81e1be27022031a266fad5ef73389eeaa386323048ec8935ca13ee7e0699927b36068c183279012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c4790247304402202b9ef1d4465b4db4d37d3689a122aa9242b94e93f5d7571c63cedff1cc9a5eab0220127a94d9cc254e178fe1a8de8381b794723cbe25ccc2b9fc7a13c64beaf6b0cd012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479024630430220450a52070df34660a05f3f537c3a83e5d218efe534ff146bc21e8c478c5d5b5b021f40b08190dee4f8690c0563e12c5604789b6ce8795c33913a94cb49e4ff3ec2012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c4790247304402204fb4bf43cdc2b0b65a6df70637054a6d8981895b1c86e1e7a35bd8b0f8d5c177022071d1a57bf570f0b357638a71b5b37497347192162b5c10ee331b001b9697b75c012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479024730440220293fdd9ccfe4dde1af247914b94bf1d32f736ecf646c231ec0971c8167352164022040feab311340f130eabdb6bd52afa208008b17a74eb29ac2c2b43a36bc973f0d012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c4790247304402203673a9eb0e318b3f06abd23e7d3390eee9c7880381416a127cfc62f8a349f9cc02201871ae77fad6bc0454dc4f523dd0172c7a50b5593bb46f9ab85125da62da3281012102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47900000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106ce1f7edf3b840218ad649054df5a093a48678e8b9840e8e41c101bc30fe7cf210000000000ffffffff0137aea6314c69f2981a5f316dcc8bf930e450c0c91c9595f6bab0fb5b2b150f0000000000ffffffff6bcebed9656cfcb53f2a4361f637002a7ee81204e4f340ad557f18ecc7c220380000000000ffffffffd17cd665bd97550c354f5062c3a4ac4b2bc0c6ed7d539cb7b23f18d4a295c4930000000000ffffffff31ae8dd8f3fb99e6d704ae8070356162db31c843899b88f168fb6ce90d5b21f60000000000ffffffffc62fbdb6ce1a82b38222cf01e13ca8be6882ab6064e00fc21fec7c985c2aba560000000000ffffffff04e803000000000000695121023b0050954ab0e1b4a1eb6462aa8d49ea28812d2b594c2777851d7d236c56021e21038af9bc320976909c46ca607c0db9dd7b5daa9d7bbd8f24cf9b484296b3bfa149210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee803000000000000695121033b0050954ab0e1b4a1a582c3dd112511dbd5ae6ad49d69c4217a2e1b8a2647222102a0233ceebb60558ac39a0e1885e1594e1b545b0a1ee9394fb916eb24e9b83a55210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee80300000000000069512103150050954ab0e1b4a1e864212a5bc172a80e79d0c137e1b0491f0e76ef4b28fb210220233ce57da144036b9a0e1885e1594e49545b0a1ee9394fb356eb24e9b83a3a210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae387923fc06000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0247304402204d6affe02d57e3fae0777aea5cc9b04cc59846ae9c00a1efee6901cac82cbe3b022014c92878e948ba87c64ea8bebbacecf9dc9840c46e2f0e2caca94c276c8f55a101210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022048da182195b00fac5f995e11efa6d8712eac6a3c81a708fe9042c23cbf2664e20220784a38465df96de32726ea26c19a0b7e10f2fd3a33260e56df0de38ef9a25d9401210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022059b2f7cd8750890234e74cbf5d3ef800c1d05cb9baac40f0096a6cf52858e554022041557a6f0d08439076738bb69107c2375d9e7b37e70a832072e2ad6a565ce1c201210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f0247304402200ca5b69fdc32a63860f5c2a06d8fb142d0435a1e479d848cbebba9ebb333500c022058599835f6db5bb661e1c6253649956dbe480493e6bebcc517e7a180a468ccd301210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022037a7210deb7b4f41a6fa3019e2fc498986592d7a781e1c6ced1a30594839525602205ae1193aaa05c007095c95c05ea23436a08f751761552d08a7adbc465fbef5ee01210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022066273dcbcca8b145ed48fbe79dbb98e38b295e0a2efe5759a04dcd82a6afa7f3022041609ea67c325a2333adf3ee4805edf2d6b5aa8c1e0f522e578002ad2de7b28d01210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f00000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "94e3ab5db2f7a27c74021db147c592b51ae6d0995c329597d51695639288905e", + "hash": "ce1f7edf3b840218ad649054df5a093a48678e8b9840e8e41c101bc30fe7cf21", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "0fcced3c2872aa1469df17d6aaca8f83f6f51c0bc182ba643a8d9c8b49f744de", + "hash": "0137aea6314c69f2981a5f316dcc8bf930e450c0c91c9595f6bab0fb5b2b150f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "dd9482c1bef5a8c46792b31decb55449d367b4f7b52edf8d9d9c2cb7158be78d", + "hash": "6bcebed9656cfcb53f2a4361f637002a7ee81204e4f340ad557f18ecc7c22038", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6f869da66e8c39e7c036d0e8622102cfdafe8e49cb795d7eeef378667ebfc622", + "hash": "d17cd665bd97550c354f5062c3a4ac4b2bc0c6ed7d539cb7b23f18d4a295c493", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "724d93add14acff139aa282ac059af0b85811c1aa95ea6b5273072246acf4b4c", + "hash": "31ae8dd8f3fb99e6d704ae8070356162db31c843899b88f168fb6ce90d5b21f6", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "101b963af724f3b0a1e702a79d5694a9e62a8255b3ae6253078444ee3adc6858", + "hash": "c62fbdb6ce1a82b38222cf01e13ca8be6882ab6064e00fc21fec7c985c2aba56", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512102d848f432c7905a6bd03a1f6d25a67c1ac0a2c4e96d1f54c4fa17f9e75981cf7021027adc04bb7b54e94b49694f4510620a8e223db124c4f7c4a082cecec8827303d42102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae" + "script_pub_key": "5121023b0050954ab0e1b4a1eb6462aa8d49ea28812d2b594c2777851d7d236c56021e21038af9bc320976909c46ca607c0db9dd7b5daa9d7bbd8f24cf9b484296b3bfa149210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" }, { "value": 1000, - "script_pub_key": "512102d848f432c7905a6bd0b3ac3f877bf26fc51f7473cadf6b873169454f3a1045db21034fc984103598da311a0397b292195941f631104f9397474dd93faf8aaac5bc452102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae" + "script_pub_key": "5121033b0050954ab0e1b4a1a582c3dd112511dbd5ae6ad49d69c4217a2e1b8a2647222102a0233ceebb60558ac39a0e1885e1594e1b545b0a1ee9394fb916eb24e9b83a55210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" }, { "value": 1000, - "script_pub_key": "512102f948f432c7905a6bd0391f6ea52ee0a718020281721e7fac5a47cd563ad4912e21024fc984103598da1b0fb602072ed35941f631104f939dc220bc52c0b92ac5bc002102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953ae" + "script_pub_key": "512103150050954ab0e1b4a1e864212a5bc172a80e79d0c137e1b0491f0e76ef4b28fb210220233ce57da144036b9a0e1885e1594e49545b0a1ee9394fb356eb24e9b83a3a210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" }, { "value": 29999987000, - "script_pub_key": "001489ffb1fe29ad158c416ad8184a8eb38ed630a461" + "script_pub_key": "0014a6bea9faf02900a347a8f071e7a51d640ec3e33a" } ], "vtxinwit": [ - "3044022066fdce362e742d39cbf1a7617820b696d27654915e22ca0598b5ec6c81e1be27022031a266fad5ef73389eeaa386323048ec8935ca13ee7e0699927b36068c18327901", - "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", - "304402202b9ef1d4465b4db4d37d3689a122aa9242b94e93f5d7571c63cedff1cc9a5eab0220127a94d9cc254e178fe1a8de8381b794723cbe25ccc2b9fc7a13c64beaf6b0cd01", - "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", - "30430220450a52070df34660a05f3f537c3a83e5d218efe534ff146bc21e8c478c5d5b5b021f40b08190dee4f8690c0563e12c5604789b6ce8795c33913a94cb49e4ff3ec201", - "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", - "304402204fb4bf43cdc2b0b65a6df70637054a6d8981895b1c86e1e7a35bd8b0f8d5c177022071d1a57bf570f0b357638a71b5b37497347192162b5c10ee331b001b9697b75c01", - "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", - "30440220293fdd9ccfe4dde1af247914b94bf1d32f736ecf646c231ec0971c8167352164022040feab311340f130eabdb6bd52afa208008b17a74eb29ac2c2b43a36bc973f0d01", - "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479", - "304402203673a9eb0e318b3f06abd23e7d3390eee9c7880381416a127cfc62f8a349f9cc02201871ae77fad6bc0454dc4f523dd0172c7a50b5593bb46f9ab85125da62da328101", - "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479" + "304402204d6affe02d57e3fae0777aea5cc9b04cc59846ae9c00a1efee6901cac82cbe3b022014c92878e948ba87c64ea8bebbacecf9dc9840c46e2f0e2caca94c276c8f55a101", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022048da182195b00fac5f995e11efa6d8712eac6a3c81a708fe9042c23cbf2664e20220784a38465df96de32726ea26c19a0b7e10f2fd3a33260e56df0de38ef9a25d9401", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022059b2f7cd8750890234e74cbf5d3ef800c1d05cb9baac40f0096a6cf52858e554022041557a6f0d08439076738bb69107c2375d9e7b37e70a832072e2ad6a565ce1c201", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "304402200ca5b69fdc32a63860f5c2a06d8fb142d0435a1e479d848cbebba9ebb333500c022058599835f6db5bb661e1c6253649956dbe480493e6bebcc517e7a180a468ccd301", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022037a7210deb7b4f41a6fa3019e2fc498986592d7a781e1c6ced1a30594839525602205ae1193aaa05c007095c95c05ea23436a08f751761552d08a7adbc465fbef5ee01", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022066273dcbcca8b145ed48fbe79dbb98e38b295e0a2efe5759a04dcd82a6afa7f3022041609ea67c325a2333adf3ee4805edf2d6b5aa8c1e0f522e578002ad2de7b28d01", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" ], "lock_time": 0, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "tx_id": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52" + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_id": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -3472,9 +3472,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "divisible": true, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c` (str, required) - Transaction hash + + tx_hash: `007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8f37a78c72fd9f963a871b4c8b33491fc74178a3d722b89fac11536fca77341f", + "hash": "63647d2d8358b4b23c6ed32a8584835a738f80a8381e55cdf25a8a69170d0a8f", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ef108023c163492e751a618873bd01959983d2c7d8db7cb58f9e66ec57f8511218f5432199a4e56aaedbdcc71bd76" + "script_pub_key": "6a2e213862dbd82f87e7f2ca18ee919a25e0f98635878575ed7725ab3057b0208d47a055ea3925773492becfb7bcde35" }, { "value": 4949930546, - "script_pub_key": "00143e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c1" + "script_pub_key": "0014281ea9b25a079b4de6a2f74ae46373dbd79215aa" } ], "vtxinwit": [ - "304402202c26e10f94739a0744284af8841ef6b44acb42c519d6afe3fc1cfb3b6b73256d022057fcc534a60a5ac84d271450892aaa560b96e985d131cde9663faa18debf699601", - "02e5e25946a827b1c608ee8b16645dd4ea353a0395f2ba641d35c960b146f55530" + "3044022001b317ef990256b38691adf0ce08e927cc23738fe93659ca24b711d3f4b3ea0f02205e87a031e873d4c4cfbf46f3ec10c0e2bfb254b1c8427052426ca5915329347601", + "03c6847a7e336970cc972babd5ac34ffcf508a5001fad5814dd83c6b1a5cb1be71" ], "lock_time": 0, - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_id": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c" + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_id": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "asset_info": { "divisible": true, @@ -3599,7 +3599,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `76` (int, required) - The index of the transaction + + tx_index: `78` (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. @@ -3610,18 +3610,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction + + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (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. @@ -3651,18 +3651,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_hash": "0a861278f271109e4e7ff48fc510b99112279b079331c4adcae4d0547405c610", - "block_time": 1730391553, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "destination": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1 61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0 3 1", + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3681,7 +3681,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `76` (int, required) - The index of the transaction to return + + tx_index: `78` (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 @@ -3701,32 +3701,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 681, + "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 680, + "event_index": 704, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 209, + "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,20 +3737,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 679, + "event_index": 703, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "status": 0, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "asset_info": { "divisible": true, "asset_longname": null, @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -3787,24 +3787,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 677, + "event_index": 701, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 209, - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "block_index": 211, + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "msg_index": 1, "quantity": 2000000000, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", "status": "valid", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,13 +3814,13 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 676, - "result_count": 12 + "next_cursor": 700, + "result_count": 14 } ``` @@ -3829,10 +3829,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction to return + + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3849,32 +3849,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 681, + "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 680, + "event_index": 704, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 209, + "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -3885,20 +3885,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 679, + "event_index": 703, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "status": 0, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "asset_info": { "divisible": true, "asset_longname": null, @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -3935,24 +3935,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 677, + "event_index": 701, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 209, - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "block_index": 211, + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "msg_index": 1, "quantity": 2000000000, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", "status": "valid", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -3962,13 +3962,13 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 676, - "result_count": 12 + "next_cursor": 700, + "result_count": 14 } ``` @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction to return + + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (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 @@ -3995,11 +3995,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -4019,11 +4019,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction to return + + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (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 @@ -4071,29 +4071,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 76, + "tx_index": 78, "dispense_index": 0, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -4130,9 +4130,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `76` (int, required) - The index of the transaction to return + + tx_index: `78` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4149,19 +4149,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -4171,24 +4171,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 676, + "event_index": 700, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -4198,36 +4198,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 673, + "event_index": 697, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], "next_cursor": null, @@ -4240,9 +4240,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The hash of the transaction to return + + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4259,19 +4259,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -4281,24 +4281,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 676, + "event_index": 700, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -4308,36 +4308,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 673, + "event_index": 697, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4508,8 +4508,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - Comma separated list of addresses to return - + cursor: `76` (str, optional) - The last transaction index to return + + addresses: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - Comma separated list of addresses to return + + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4526,87 +4526,41 @@ Returns the transactions of a list of addresses { "result": [ { - "tx_index": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", - "block_time": 1730391539, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_time": 1730403327, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", + "utxos_info": " 4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2:0 4 ", "confirmed": true, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "block_hash": "50e563d0738ac628679cfd3c229b99a4f3f27d14020b5c3225d2db9a3d0fecf2", - "block_time": 1730391536, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0300038089ffb1fe29ad158c416ad8184a8eb38ed630a46180ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4624,18 +4578,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", - "block_index": 206, - "block_hash": "1a7d7fca34f5331b1c7dd9fadf6a2a44d3c60cc02e1d02932df19a458db5017d", - "block_time": 1730391531, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 75, + "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "block_index": 208, + "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "block_time": 1730403323, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089ffb1fe29ad158c416ad8184a8eb38ed630a46180ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c1c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aac8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0:0 4 ", + "utxos_info": " 2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4643,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4658,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4676,18 +4630,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", - "block_time": 1730391527, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_time": 1730403319, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52:0 4 ", + "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4695,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4710,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4728,18 +4682,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "block_hash": "18a3c5fbc84f4452b8993ba726383a69835e0abb1080c99c64d0a0bcd137a3ef", - "block_time": 1730391523, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "block_time": 1730403304, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888:0 4 ", + "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4747,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -4762,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4778,10 +4732,44 @@ Returns the transactions of a list of addresses ] }, "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", + "block_time": 1730403290, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "supported": true, + "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 70, - "result_count": 46 + "next_cursor": 71, + "result_count": 45 } ``` @@ -4790,10 +4778,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4810,108 +4798,79 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 666, - "event": "OPEN_ORDER", + "event_index": 686, + "event": "ORDER_MATCH", "params": { - "block_index": 208, - "expiration": 21, - "expire_index": 229, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "status": "open", - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "tx_index": 75, - "block_time": 1730391539, - "give_asset_info": { + "backward_asset": "BTC", + "backward_quantity": 1000, + "block_index": 210, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 1000, + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "match_expire_index": 230, + "status": "pending", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_block_index": 194, + "tx0_expiration": 21, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_index": 60, + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_block_index": 210, + "tx1_expiration": 21, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_index": 55, + "block_time": 1730403332, + "forward_asset_info": { "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", "locked": true, "issuer": null }, - "get_asset_info": { + "backward_asset_info": { "divisible": true, "asset_longname": null, "description": "The Bitcoin cryptocurrency", "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 - }, - { - "event_index": 665, - "event": "DEBIT", - "params": { - "action": "open order", - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "asset": "XCP", - "block_index": 208, - "event": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "quantity": 1000, - "tx_index": 75, - "utxo": null, - "utxo_address": null, - "block_time": 1730391539, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 }, { - "event_index": 664, - "event": "ORDER_EXPIRATION", + "event_index": 683, + "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 208, - "order_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "block_time": 1730391539 + "block_index": 210, + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_time": 1730403332 }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 }, { - "event_index": 663, + "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "block_index": 208, - "calling_function": "cancel order", - "event": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "quantity": 5000, + "block_index": 210, + "calling_function": "order expired", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730391539, + "block_time": 1730403332, "asset_info": { "divisible": true, "asset_longname": null, @@ -4919,64 +4878,42 @@ Returns the events of a list of addresses "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 }, { - "event_index": 661, - "event": "NEW_TRANSACTION", + "event_index": 675, + "event": "MPMA_SEND", "params": { - "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", - "block_index": 208, - "block_time": 1730391539, - "btc_amount": 0, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "destination": "", - "fee": 10000, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "tx_index": 75, - "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000" - } + "asset": "XCP", + "block_index": 209, + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "status": "valid", + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "btc_amount_normalized": "0.00000000" + "quantity_normalized": "0.00000010" }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_time": 1730403327 } ], - "next_cursor": 657, + "next_cursor": 674, "result_count": 238 } ``` @@ -4986,7 +4923,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule,bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p,bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p` (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 @@ -5002,18 +4939,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "quantity": 10000, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "status": "valid", - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77, + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, "asset_info": { "divisible": true, "asset_longname": null, @@ -5023,22 +4960,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "CREDIT", "params": { - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "send", - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -5048,22 +4985,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "XCP", - "block_index": 209, - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "block_index": 211, + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -5073,30 +5010,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730391558.1007109, + "block_time": 1730403350.6183352, "btc_amount": 0, - "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", "destination": "", "fee": 10000, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77, - "utxos_info": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c:1 2 ", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "asset_info": { "divisible": true, @@ -5110,7 +5047,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 } ], "next_cursor": null, @@ -5123,7 +5060,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -5143,7 +5080,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5151,14 +5088,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5166,14 +5103,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5181,16 +5118,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "quantity": 82649961196, + "quantity": 82649965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5200,10 +5137,10 @@ Returns the balances of an address "locked": true, "issuer": null }, - "quantity_normalized": "826.49961000" + "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5211,7 +5148,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5228,7 +5165,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -5241,9 +5178,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "quantity": 82649961196, + "quantity": 82649965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5253,7 +5190,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.49961000" + "quantity_normalized": "826.49965000" } ], "next_cursor": null, @@ -5266,7 +5203,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5315,17 +5252,17 @@ Returns the credits of an address { "result": [ { - "block_index": 208, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 210, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "quantity": 5000, - "calling_function": "cancel order", - "event": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "quantity": 3000, + "calling_function": "order expired", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403332, "asset_info": { "divisible": true, "asset_longname": null, @@ -5333,20 +5270,20 @@ Returns the credits of an address "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, { - "block_index": 207, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 209, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "tx_index": 74, + "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391536, + "block_time": 1730403327, "asset_info": { "divisible": true, "asset_longname": null, @@ -5357,17 +5294,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 206, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 208, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", - "tx_index": 73, + "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391531, + "block_time": 1730403323, "asset_info": { "divisible": true, "asset_longname": null, @@ -5378,50 +5315,50 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 202, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", - "tx_index": 69, + "block_index": 208, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 5000, + "calling_function": "cancel order", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391505, + "block_time": 1730403323, "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "1000.00000000" + "quantity_normalized": "0.00005000" }, { - "block_index": 193, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", - "tx_index": 59, + "block_index": 204, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 100000000000, + "calling_function": "issuance", + "event": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391467, + "block_time": 1730403287, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "1000.00000000" } ], - "next_cursor": 59, - "result_count": 20 + "next_cursor": 65, + "result_count": 21 } ``` @@ -5430,7 +5367,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5468,38 +5405,17 @@ Returns the debits of an address { "result": [ { - "block_index": 208, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "tx_index": 75, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730391539, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 205, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 207, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "tx_index": 72, + "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "divisible": true, "asset_longname": null, @@ -5510,38 +5426,38 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 207, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "tx_index": 72, + "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 204, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 206, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "tx_index": 71, + "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "divisible": true, "asset_longname": null, @@ -5552,29 +5468,50 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 206, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "tx_index": 71, + "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" + }, + { + "block_index": 205, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 1000, + "action": "send", + "event": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_index": 72, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403290, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" } ], - "next_cursor": 62, - "result_count": 29 + "next_cursor": 63, + "result_count": 28 } ``` @@ -5583,7 +5520,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address of the feed + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5618,7 +5555,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -5637,9 +5574,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "34715074bfe898e4ec5e19ad65577230a7dfd5c8895d7558a61fef5464d16093", + "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", "block_index": 137, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5647,7 +5584,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730391262, + "block_time": 1730403015, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5661,7 +5598,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -5680,14 +5617,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "ee230eec27f35823550ac514ec512b9e518e76e83c42468162e8305c30de6de2", + "tx_hash": "44f034107057167342bd95bbc7b5362bce805e3db0a6ac30a4dfb6943df4d4c7", "block_index": 112, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730391158, + "block_time": 1730402922, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5702,7 +5639,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -5720,11 +5657,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address { "result": [ { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5732,7 +5669,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "divisible": true, "asset_longname": null, @@ -5744,11 +5681,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5756,11 +5693,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5768,11 +5705,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5780,11 +5717,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5792,11 +5729,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5804,7 +5741,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "divisible": true, "asset_longname": null, @@ -5816,11 +5753,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5828,11 +5765,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5840,7 +5777,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 20, + "next_cursor": 22, "result_count": 12 } ``` @@ -5850,7 +5787,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v` (str, required) - The address to return + + address: `bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s` (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 @@ -5869,10 +5806,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "1bd5dee79f6bdc24e348b5cc05cfc9b270a274004c1e8f34a519de272758736b", + "tx_hash": "fe796ee0c6d7bcaa11a4ad0b53b8961e064e75e2b635ccca7056c031649ce9e3", "block_index": 151, - "source": "503ccbe40e6ffdc3b7bf8efe91f92c8423ba5b4880c318ed1cc5cfac84cacebe:0", - "destination": "bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v", + "source": "cd51daff023c3b5a395313890e1d0941472c83a8391fdaa0db86bff2d29aca3c:0", + "destination": "bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5880,11 +5817,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391315, + "block_time": 1730403067, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5902,7 +5839,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5921,11 +5858,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset { "result": [ { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5933,11 +5870,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5945,11 +5882,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5957,11 +5894,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5969,11 +5906,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5981,11 +5918,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -5993,11 +5930,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -6005,11 +5942,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -6017,11 +5954,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", - "block_index": 203, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -6029,11 +5966,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391520, + "block_time": 1730403290, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -6051,7 +5988,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1q8e7sxuxcrnz6zw4hshcaq03nvvq4ydm7zxe89v` (str, required) - The address to return + + address: `bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6079,7 +6016,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6108,9 +6045,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6119,7 +6056,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6066,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6145,9 +6082,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6156,7 +6093,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6166,11 +6103,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391485, + "block_time": 1730403258, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -6191,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -6204,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6215,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6225,7 +6162,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6247,7 +6184,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -6267,19 +6204,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0ebb7274208390d884b54acabf4287bccda60409daba20ad2d212352771dfa48", + "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6287,7 +6224,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6302,11 +6239,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391485, + "block_time": 1730403258, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -6316,19 +6253,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6336,7 +6273,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6351,7 +6288,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6365,19 +6302,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6385,7 +6322,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6400,7 +6337,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -6422,7 +6359,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address to return + + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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 @@ -6442,19 +6379,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0ebb7274208390d884b54acabf4287bccda60409daba20ad2d212352771dfa48", + "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6462,7 +6399,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6477,11 +6414,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391485, + "block_time": 1730403258, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -6491,19 +6428,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6511,7 +6448,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6526,7 +6463,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6540,19 +6477,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6560,7 +6497,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6575,7 +6512,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -6597,7 +6534,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -6618,19 +6555,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6638,7 +6575,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6653,7 +6590,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6667,19 +6604,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6687,7 +6624,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6702,7 +6639,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -6724,7 +6661,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address to return + + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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` @@ -6745,19 +6682,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6765,7 +6702,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6780,7 +6717,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6794,19 +6731,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6814,7 +6751,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6829,7 +6766,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -6851,7 +6788,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule` (str, required) - The address to return + + address: `bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p` (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 @@ -6870,16 +6807,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "block_index": 195, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730391475, + "block_time": 1730403247, "fee_paid_normalized": "0.00600000" } ], @@ -6893,7 +6830,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6924,15 +6861,15 @@ Returns the issuances of an address { "result": [ { - "tx_index": 69, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", "msg_index": 0, - "block_index": 202, + "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -6947,20 +6884,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391505, + "block_time": 1730403287, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "bd1f2774a6788f448f4abecd7d83056877fa7ebb13f5d201a7a03d9c12b85932", + "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -6975,20 +6912,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391360, + "block_time": 1730403118, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "5a66398585f30cf7dfa34570ed4e390ef54f44e7bbb3492f1b9dfdf12a3f78df", + "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -7003,20 +6940,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730391357, + "block_time": 1730403104, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "6d78d6c77201292b7a4fbf00a29cfb85c5ebeac2397c86d2eb62ec3755d82b1c", + "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -7031,20 +6968,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391353, + "block_time": 1730403101, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "48f07ccbdfb0a37c40f2a271ea166b0202e3899929865c050745f746aa2c8881", + "tx_hash": "a292c148469b6dbd41ddcbf00dfeb536d0724efe8f1e1243e3f3c0ab3ac8dd54", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -7059,7 +6996,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391348, + "block_time": 1730403097, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7074,7 +7011,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The issuer or owner to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7097,25 +7034,25 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730391505, - "last_issuance_block_time": 1730391505, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 10000000000, @@ -7123,16 +7060,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730391348, - "last_issuance_block_time": 1730391357, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, @@ -7140,16 +7077,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730391302, - "last_issuance_block_time": 1730391302, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 40, @@ -7157,16 +7094,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730391255, - "last_issuance_block_time": 1730391258, + "first_issuance_block_time": 1730403007, + "last_issuance_block_time": 1730403011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 19, @@ -7174,8 +7111,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730391230, - "last_issuance_block_time": 1730391251, + "first_issuance_block_time": 1730402992, + "last_issuance_block_time": 1730403004, "supply_normalized": "0.00000019" } ], @@ -7189,7 +7126,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The issuer to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -7212,25 +7149,25 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730391505, - "last_issuance_block_time": 1730391505, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 10000000000, @@ -7238,16 +7175,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730391348, - "last_issuance_block_time": 1730391357, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, @@ -7255,16 +7192,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730391302, - "last_issuance_block_time": 1730391302, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 40, @@ -7272,16 +7209,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730391255, - "last_issuance_block_time": 1730391258, + "first_issuance_block_time": 1730403007, + "last_issuance_block_time": 1730403011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 19, @@ -7289,8 +7226,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730391230, - "last_issuance_block_time": 1730391251, + "first_issuance_block_time": 1730402992, + "last_issuance_block_time": 1730403004, "supply_normalized": "0.00000019" } ], @@ -7304,7 +7241,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The owner to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7327,25 +7264,25 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730391505, - "last_issuance_block_time": 1730391505, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 10000000000, @@ -7353,16 +7290,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730391348, - "last_issuance_block_time": 1730391357, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, @@ -7370,16 +7307,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730391302, - "last_issuance_block_time": 1730391302, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 40, @@ -7387,16 +7324,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730391255, - "last_issuance_block_time": 1730391258, + "first_issuance_block_time": 1730403007, + "last_issuance_block_time": 1730403011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 19, @@ -7404,97 +7341,51 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730391230, - "last_issuance_block_time": 1730391251, + "first_issuance_block_time": 1730402992, + "last_issuance_block_time": 1730403004, "supply_normalized": "0.00000019" } - ], - "next_cursor": 3, - "result_count": 7 - } - ``` - -### Get Transactions By Address [GET /v2/addresses/{address}/transactions{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] - -Returns the transactions of an address - -+ Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return - + cursor: `76` (str, optional) - The last transaction index to return - + Default: `None` - + limit: `5` (int, optional) - The maximum number of transactions to return - + Default: `10` - + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` - + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. - + Default: `false` - + show_unconfirmed (bool, optional) - Include results from Mempool. - + Default: `false` - -+ Response 200 (application/json) - - ``` - { - "result": [ - { - "tx_index": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_hash": "3ed52cff6652f6b503bb833b94712d4910637bdbe890948bddcf831b4ceef9e6", - "block_time": 1730391539, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": " 777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, + ], + "next_cursor": 3, + "result_count": 7 + } + ``` + +### Get Transactions By Address [GET /v2/addresses/{address}/transactions{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] + +Returns the transactions of an address + ++ Parameters + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + cursor: `78` (str, optional) - The last transaction index to return + + Default: `None` + + limit: `5` (int, optional) - The maximum number of transactions to return + + Default: `10` + + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + + Default: `None` + + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + + Default: `false` + + show_unconfirmed (bool, optional) - Include results from Mempool. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": [ { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "block_hash": "4ff1fea986b4e25576655ba287c05fd4eff310ec4cecf4df412dec299ac16bd2", - "block_time": 1730391527, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_time": 1730403319, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52:0 4 ", + "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7502,14 +7393,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -7517,7 +7408,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7535,18 +7426,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "block_hash": "18a3c5fbc84f4452b8993ba726383a69835e0abb1080c99c64d0a0bcd137a3ef", - "block_time": 1730391523, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "block_time": 1730403304, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380881cbdd8a0c6681f017f43cb7b5fc8eb555e351580ab4ecc335046df4d423eb153cfd40ca16b576a06803e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888:0 4 ", + "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7554,14 +7445,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -7569,7 +7460,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7587,18 +7478,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31", - "block_index": 203, - "block_hash": "127cfdd07646ee016e64531a98eb110445f1e7c1e0c9117454746a2dadefc5db", - "block_time": 1730391520, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", + "block_time": 1730403290, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880881cbdd8a0c6681f017f43cb7b5fc8eb555e3515", + "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", "supported": true, - "utxos_info": " 4310ee5592248ab3a1db713b307f3b0ff3936751321cbea6837c215025624e31:1 2 ", + "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7606,12 +7497,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -7621,18 +7512,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", - "block_index": 202, - "block_hash": "59acb9c1866e5aa5cddb20d91149904fb1b97ebe738fcf5082a488be753415fe", - "block_time": 1730391505, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_hash": "20e7d5dbb7165402d4822e58299647fa3cec122b63e4d401d4bfcfa477908fd3", + "block_time": 1730403287, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e:1 2 ", + "utxos_info": " 901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7654,10 +7545,49 @@ Returns the transactions of an address } }, "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 63, + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "block_index": 197, + "block_hash": "5196ca6ff53b4797b4c12445477159f94e838c8feca6b47c7fb7757b19185e88", + "block_time": 1730403255, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": " 5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 63, - "result_count": 31 + "next_cursor": 60, + "result_count": 30 } ``` @@ -7666,7 +7596,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -7685,20 +7615,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "block_index": 155, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730391331, + "block_time": 1730403081, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -7723,7 +7653,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7752,9 +7682,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", "block_index": 185, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7769,7 +7699,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730391375, + "block_time": 1730403133, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7795,9 +7725,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", "block_index": 208, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7812,7 +7742,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403323, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7838,9 +7768,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", "block_index": 193, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7855,7 +7785,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730391467, + "block_time": 1730403230, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7881,15 +7811,15 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "3c26f8ed0b73bccbc53f504a7e87454972c934e9c2110b78a574d129f36b659a", - "block_index": 194, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "block_index": 210, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, "expire_index": 215, "fee_required": 0, @@ -7898,50 +7828,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730391471, - "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": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 229, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403332, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7958,8 +7845,8 @@ Returns the orders of an address }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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", @@ -7967,7 +7854,7 @@ Returns the orders of an address } ], "next_cursor": null, - "result_count": 5 + "result_count": 4 } ``` @@ -7976,7 +7863,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The source of the fairminter to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -8001,10 +7888,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -8029,7 +7916,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730391335, + "block_time": 1730403085, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8038,10 +7925,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "tx_index": 22, "block_index": 135, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8066,7 +7953,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730391255, + "block_time": 1730403007, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8078,10 +7965,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "tx_index": 18, "block_index": 131, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8106,7 +7993,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730391230, + "block_time": 1730402992, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8118,10 +8005,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", + "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", "tx_index": 14, "block_index": 130, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8146,7 +8033,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730391226, + "block_time": 1730402989, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8158,10 +8045,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8186,7 +8073,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730391207, + "block_time": 1730402970, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8208,7 +8095,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address of the mints to return + + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8226,22 +8113,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391258, + "block_time": 1730403011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8250,22 +8137,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "aba9ad832290adaf7efacfc081b98cec79db2eef52d63270bfab871da7954df0", + "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391251, + "block_time": 1730403004, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8274,22 +8161,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "17dfb66f10d0d3704fb4e1c695e9f017fca1e6c842334d74dec54027e6bbc8cd", + "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391247, + "block_time": 1730403000, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8298,22 +8185,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d2908a41e6c1519ecf0149991998d643084ebf5d13c6b6728a2e7bfb0c5512d8", + "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391234, + "block_time": 1730402996, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8322,22 +8209,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4efce27e3d10ace32445739a3bd0635b7051eb8df818eaac72b4c4207fa29969", + "tx_hash": "490e4645b0e811425dd7324731267eaf5aa77a9db80268d252e1ab8639fe0d0d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391215, + "block_time": 1730402977, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8346,22 +8233,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391200, + "block_time": 1730402961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8380,7 +8267,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address of the mints to return + + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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` @@ -8399,22 +8286,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391200, + "block_time": 1730402961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8435,7 +8322,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0` (str, required) - The utxo to return + + utxo: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8455,8 +8342,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "asset_info": { "divisible": true, "asset_longname": null, @@ -8469,12 +8356,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -8514,8 +8401,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will make the bet + + feed_address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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) @@ -8587,7 +8474,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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) @@ -8647,7 +8534,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8657,9 +8544,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "020000000001019d2ec2e52fa46fc9f0c1b9535b1051324ffc570642ec30d625fb22b82d90162e0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff0200000000000000002b6a2947a437a0f85cdfcce781ab9f2d040a9c72c4ac3c8faa71da4c3fb7d06812734b5c7875c8017198790383ba052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999985794, + "btc_fee": 14206, + "rawtransaction": "02000000000101198ef80491b7f0afbeb07c44ef1ccc204b67da43a19d57c85c381da638a3206d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff0200000000000000002b6a29f53254444ea639fcf641b377869cb893e9bc3291cc6cfc274663cfa8d13a524f13ce021929dc4400ec82ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8681,8 +8568,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending the payment - + order_match_id: `d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1` (str, required) - The ID of the order match to pay for + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending the payment + + order_match_id: `0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4` (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) @@ -8738,23 +8625,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1" + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" }, "name": "btcpay", - "data": "434e5452505254590bd47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "data": "434e5452505254590b0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b278097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "btc_in": 5000000000, - "btc_out": 3000, - "btc_change": 4999978921, - "btc_fee": 18079, - "rawtransaction": "02000000000101181ac3e1eba9f8a9a3891016bb85342103db33e1176a265bb981238b528e58810000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03b80b00000000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46100000000000000004b6a49894a09979442983bd24ec5681f767d916cfd7d358fcd06459fe94210ec3e115e005359f6282668fda4c15a659fcb89785b358b85ddcc7f2296e45290bf860228cdf9465fdad1142e1ea99f052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_out": 1000, + "btc_change": 4999980919, + "btc_fee": 18081, + "rawtransaction": "0200000000010159c6c0bf9369242af24f424c4c2446a2a398faaed9de6969a6ab08bbb1eecc1d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e803000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a00000000000000004b6a49df135ffaecbb57d487c7b6b973b54db0b10215aac8c937d8fa37539ede76f2c295030de69ca3c074ddac3938f34316c2db83b13718d87904b741f717dc3b9ada3f80b67be04ef860a277a7052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "status": "valid" } } @@ -8767,7 +8654,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address with the BTC to burn + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -8826,7 +8713,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "quantity": 1000, "overburn": false }, @@ -8834,9 +8721,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": 4999985793, - "btc_fee": 13207, - "rawtransaction": "02000000000101a697eea0d758837a0126c529e8670492681c9c7b7c46f9251b6488377be6576a0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000" + "btc_change": 4999985792, + "btc_fee": 13208, + "rawtransaction": "020000000001016b49b545791d69461b05fe4d1ba812c61d1105211d2066cb79e6321af3e5888c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000" } } ``` @@ -8846,8 +8733,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b` (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) @@ -8903,21 +8790,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "offer_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37" + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" }, "name": "cancel", - "data": "434e54525052545946777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "btc_in": 5000000000, + "data": "434e545250525459465e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "btc_in": 4949896528, "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "020000000001012d1a4dfd2c136abf275d5f9c1c6e8d0071a014a87e86c1ce09c305c7aa412ec70000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff0200000000000000002b6a294090bb861c937232b8ea305921683571d7e9b80f0bbd2044f79ec984cc38bab166ca96f1182b90658e83ba052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4949882322, + "btc_fee": 14206, + "rawtransaction": "020000000001012b3e48c5270b66083a7cb70d50d0ef127b88ffb3d8d7e20eb050884d735e665e01000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d170ffffffff0200000000000000002b6a297041c053d10622c2c203e8b65d7466bed22f8bce5a00b5ddcad80440b7f8db9bb8fdc00811521f7bbbd235092701000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d17002000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", + "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", "status": "valid" } } @@ -8930,7 +8817,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -8989,7 +8876,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -9006,9 +8893,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986323, - "btc_fee": 13677, - "rawtransaction": "0200000000010177c5f366625f7e31f7567eab347771b7d3bfdda32529c67f315f89e5ce030ec00000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000226a2005bb8f5462e2c5392924be77fa3375e9f279aed2af2dc2037e52e333dbcfbbd493bc052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999986322, + "btc_fee": 13678, + "rawtransaction": "02000000000101017eccc91f843f89f84a9080fb7e56380f0fef6a0a3678b3f9fd07d6f026766200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000226a203eadad155f577aec68f81edcf063751eee680d461fdfc8b3a50a213f0e786d8192bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -9028,7 +8915,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: `bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee` (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) @@ -9093,7 +8980,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9113,11 +9000,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949939500, + "btc_in": 4949873899, "btc_out": 0, - "btc_change": 4949925236, - "btc_fee": 14264, - "rawtransaction": "02000000000101346dfad6f9965718aeeb4267eada082d54edbf9b5fb8b18b2990e5351496098401000000160014b4a8bde20d2e9f88e6733dc7b6090d48568f9ee5ffffffff0200000000000000002c6a2acdd4a315199cc49777a159be19e2631113c35e4c0fb96686c54c8334076d7da6448f80c02dd6ef85306774dd092701000000160014b4a8bde20d2e9f88e6733dc7b6090d48568f9ee502000000000000", + "btc_change": 4949859634, + "btc_fee": 14265, + "rawtransaction": "02000000000101c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a9020000001600148611652400789612e660514167a77909605413abffffffff0200000000000000002c6a2a8bc356b3ed1b329950c42d290c26cb9028aad3fac814fc50c4cea2236a68ec46745455477a09cc118d8332dd0827010000001600148611652400789612e660514167a77909605413ab02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9143,7 +9030,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -9202,14 +9089,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -9226,9 +9113,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101ce192c1bb780514867de80a7df7fc4f3a530f3a2cd1f44ded964678119783e4f0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000236a214ffe5b578b9ee342e61fe448124cc8794600e32567954e15be6310b11a9f1d348858bc052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999986263, + "btc_fee": 13737, + "rawtransaction": "0200000000010137bf707f5df1f14af0fb4c8df0be9ac5bc1cdd962fec288bd1fdb3dbe80e00e600000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a213d8b9963b510a57f2173926c1f21767e398b19e231557bd4a493b4d1b8d2ea21c957bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9249,10 +9136,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -9317,10 +9204,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "transfer_destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "lock": false, "reset": false, @@ -9331,9 +9218,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": 4999983723, - "btc_fee": 15731, - "rawtransaction": "02000000000101498e4cec704c3bffc4a9d65b6124020cc173ad1a46fb08efc0b3fa546408189f0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03220200000000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a4610000000000000000236a21ea36d4f5b7e27c81f79767fe61d550b3f8add6db69e736e0006b5259b2bbbc33c96bb2052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999983721, + "btc_fee": 15733, + "rawtransaction": "02000000000101de64d703e4d9afb6435305e99b5b5877ef4dc86728a80be5eb489e8805b4753c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000236a2113e8e3691c06c3ce535832ac2a9971ffa85d39d717115db0ac0f884837b406ed3569b2052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9362,9 +9249,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7,bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9429,16 +9316,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", 1 ], [ "MPMASSET", - "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", 2 ] ], @@ -9446,26 +9333,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028089ffb1fe29ad158c416ad8184a8eb38ed630a46180881cbdd8a0c6681f017f43cb7b5fc8eb555e351540000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a6bea9faf02900a347a8f071e7a51d640ec3e33a80d68898808f54d3987bc6c7cc027355831d2aaada40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945404, - "btc_fee": 52596, - "rawtransaction": "0200000000010453bf1c341b39dc1639dcc9ad5931c3449c7156af28aa124facf04ddc3fb920230000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff727e2ef7895ccb48796ad57003ff04d2e264010ac39cb4c72ff958a7f1c2f5720000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff8971c0108e2fa92dcaddaaa365e53dcc6af8956ffb657872948f0d0c427e77f20000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff2f944d8bc00c3d3eb9d6c2aab2b3caddf11f3fffff5d80e5bbcb28f84b0a31900000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03e80300000000000069512102bbf4f9f64c7ac6cecf011fd1af37c0ccb5b9a91031fffaf87cbd1298e085f3e32103147a9435e041952f19841ecb3a39622837173882fb936f880c4fab1dfbbcfdae2102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aee80300000000000069512102a4f4f9f64c7ac6cecfd21fd32fbe3f7d4bb40405bdbe902064f39c2b6e53c34a2103b01b15bdfcfc4d8fdfec01ca457aa95368dfd3d7a5a67ac80c4faefe9b3439432102e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c47953aebcf216a80400000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000002000002000002000000000000", + "btc_change": 19999945400, + "btc_fee": 52600, + "rawtransaction": "02000000000104a52dba153ade1cd8569b494843811d5bf3aa25c8aaee76a0f688142f72f2460e00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff77a91c304dddf305f08d41f07b89ff7c6a1f6294deae2a4d613db88bdef4d70700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33afffffffff9cfb6a43839e6105dd18408d504b4521081dc130d9d3660ab9d6bccd5b7b56200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff342a6e4d339aacb56e82c89a93f016b89fa3b119b078239a0fc50d3032ac8d0400000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e80300000000000069512103e031860a9176906d94a0ed33d0308f37b33cc220fd336cb97326e20d2b8c8f3d2102f9c9a0c72021cbab7c3aebec4ca299ce938d330895ba7166f184a31539847f12210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee80300000000000069512102ff31860a9176906d9473ed315096319e49e8eb205e74c44902c547104f824cfe21031af32111a8b94b2428e973978a6555cce0d8b015bf10ab26f184a6f6590cbbef210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aeb8f216a804000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9481,7 +9368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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 @@ -9543,7 +9430,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9560,7 +9447,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -9572,9 +9459,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985208, - "btc_fee": 14792, - "rawtransaction": "02000000000101ecf9ff81ebb90ca28d920ea0514a5c72403a3604ab7f2ef15c05ffb41d2833600000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000356a33aee4d5c2c429f7c1af0bdd1e02926dca5e6241caa2be97ae9aff5d4997c58f9348c9f5ce1086896eb0397cd2c5bb5060e4724f38b8052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999985207, + "btc_fee": 14793, + "rawtransaction": "020000000001014278e72c345fd1ba53fda7de344e89191294bd8ad7d782a06a18b668ae4d56c700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000356a33818d85ebd35434b0d7949c344254a640f54b2c06f1d97760b2c6d65f8ba52dfb5811f7fc1330d0178cd7d287bbfa71cc1c010737b8052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9600,8 +9487,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address that will be receiving the asset + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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 @@ -9665,8 +9552,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9682,19 +9569,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880881cbdd8a0c6681f017f43cb7b5fc8eb555e3515", + "data": "434e54525052545902000000000000000100000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985501, - "btc_fee": 14499, - "rawtransaction": "02000000000101231db37d81dadef0b86f1022c91b152102fa3af3d139c2fcf136488cee6f879c0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000306a2ee44406e1d80443776051170a7ceec5f57071b36f2dd1f25a1e76d9306fcf8231e18b45d3bc064e75934562b045f65db9052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999985500, + "btc_fee": 14500, + "rawtransaction": "0200000000010119499ff6f2b1f68abd5d1eae03212b26e3867297976d327b65665983bb51a73c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000306a2eaba32ec97c38fff6d24c2487fcb1bdd6f61f271e77ce19607af26231601d318ec3ac947667db1c56908f9b2765015cb9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "memo": null, "quantity_normalized": "0.00001000" } @@ -9708,8 +9595,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be sending - + destination: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending + + destination: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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 @@ -9767,23 +9654,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480881cbdd8a0c6681f017f43cb7b5fc8eb555e351507ffff", + "data": "434e5452505254590480d68898808f54d3987bc6c7cc027355831d2aaada07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101c42da3802a3e2e01e9a5bda352934cdab8d611efac86c7adcf3583f6e2e5f87e0000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000236a214508ef27af4a121b66cd24983c937db0637728ce21554d820615c372497555533c58bc052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999986263, + "btc_fee": 13737, + "rawtransaction": "02000000000101421b342347308137eaaebec91f633fc3e02f57b3acb74c658c8b35eb9ae2298500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a214a05c72b8857605588e98c7f7159b3e39447d16f206e0cbf3e94ae387cca891f3857bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "flags": 7, "memo": "ffff" } @@ -9797,8 +9684,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: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p` (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` @@ -9855,17 +9742,17 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812619, - "btc_fee": 14381, - "rawtransaction": "02000000000101061e367a1964e6301863b72d65fb27133b3d182cba544949763603975f17ef5703000000160014881cbdd8a0c6681f017f43cb7b5fc8eb555e3515ffffffff03e8030000000000001600143e9c0e71a8b6bf8ab351225592c8dd1d76f2b8c100000000000000000c6a0afea926c9669a613b05f38b25082701000000160014881cbdd8a0c6681f017f43cb7b5fc8eb555e351502000000000000", + "btc_change": 4949812618, + "btc_fee": 14382, + "rawtransaction": "02000000000101e23d2bb80ab21b65bc7481a04c4186ad90b1a147a9f8615793421096bbb1614e03000000160014d68898808f54d3987bc6c7cc027355831d2aaadaffffffff03e803000000000000160014281ea9b25a079b4de6a2f74ae46373dbd79215aa00000000000000000c6a0a4c6fc4b899825aff3c1e8a25082701000000160014d68898808f54d3987bc6c7cc027355831d2aaada02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9882,7 +9769,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be issuing the asset + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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: `` @@ -9971,7 +9858,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -10000,9 +9887,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985443, - "btc_fee": 14557, - "rawtransaction": "020000000001014efbde8b5f062bd99fef480e269124dd0f34860a94ef5f6bc313a496657b1e350000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000316a2f8202f6acd86e04ed42650b532fd0ac2ea370114fcec4516d7c2a752f73fe7e0efa8afa4fb636de4d8d5f0acdc5cbbe23b9052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999985441, + "btc_fee": 14559, + "rawtransaction": "020000000001018f5c0cdb95201f2d95425763fbcefc83e10631bb6d33cfa9ef3379e00cc0429d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000316a2f96ced9e9aaa631a7832f3d5d8288e6e5ca459b2bee44f3ab9b59bffa9ebde5b3c01fba036d518369046cde73f7c0cf21b9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -10041,7 +9928,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: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address that will be minting the asset + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -10100,13 +9987,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -10116,9 +10003,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": 4999987028, - "btc_fee": 12972, - "rawtransaction": "02000000000101ca7bade21a68b7c89c932bb0a8e4d92621f3f495a75ed9ee26520d4ec80d9be80000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff020000000000000000166a141dacd621d469062148e859f43f53ec7a091f38a254bf052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999987026, + "btc_fee": 12974, + "rawtransaction": "02000000000101644babc6f12f61cc3aaf550215ac505508529345cf6a5b7f7bdc2f267ee89f7500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000166a1496ecbe63dfd2db9976eb258914c9489c35cd21f852bf052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10137,7 +10024,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address from which the assets are attached + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10197,7 +10084,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10214,9 +10101,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984603, - "btc_fee": 14851, - "rawtransaction": "020000000001013cf7f89c96151d5b31c41370eed76dc88e661105e407a1f16a76345e3522c7d10000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a461ffffffff03220200000000000016001489ffb1fe29ad158c416ad8184a8eb38ed630a4610000000000000000146a12dbc96f28db4b6f0f9854875b329b5a65589bdbb5052a0100000016001489ffb1fe29ad158c416ad8184a8eb38ed630a46102000000000000", + "btc_change": 4999984602, + "btc_fee": 14852, + "rawtransaction": "02000000000101603a6dc731ec62b9f162b278b1a901b7853b84e776a763dd055576fb8ac44ee000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000146a129783a3b26b834513f781b25d31c266d5fcfadab5052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10236,8 +10123,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: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10294,21 +10181,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7" + "source": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" }, "name": "detach", - "data": "434e5452505254596662637274317133386c6d726c336634353263637374326d7176793472346e336d74727066727078766d357737", + "data": "434e5452505254596662637274317135366c326e376873397971327833616737706337306667617673387638636536657139723739", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945466, - "btc_fee": 25534, - "rawtransaction": "02000000000102579094a6ce7b3261404679349ee3356b2862696ebd69b6ae6ab7b1ad196d3961000000001600146b7fca7efaf257527cb4d49868af8b57fe0642eaffffffff0fe876125490da2ab76297c12a2784389ca923793d8d98af1dab0746c3fddf8e010000001600146b7fca7efaf257527cb4d49868af8b57fe0642eaffffffff020000000000000000376a358de3eab5d88facd76664f3b794d2a3d505fa6330d7eeb5517aeec84086685aa28796420c1dc0912beaab98c297557bcb14a72a304e7a2c0a27010000001600146b7fca7efaf257527cb4d49868af8b57fe0642ea02000002000000000000", + "btc_change": 4949945463, + "btc_fee": 25537, + "rawtransaction": "02000000000102c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a90000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff13de6aae814eb82445cb49b084edd6ce86376c1d1c404fa5173689c5704203180100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff020000000000000000376a358bc356b3ed1b32993aa64e5b7817baa51fc6e194ff7c8f6a55bf905b59098b72ec3762771c6ead679abbaac732b25792b3db5d51df772c0a270100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b502000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7" + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" } } } @@ -10372,25 +10259,25 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 202, - "last_issuance_block_index": 202, + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730391505, - "last_issuance_block_time": 1730391505, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", - "owner": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "owner": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "divisible": true, "locked": false, "supply": 100000000000, @@ -10398,16 +10285,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730391488, - "last_issuance_block_time": 1730391488, + "first_issuance_block_time": 1730403262, + "last_issuance_block_time": 1730403262, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 10000000000, @@ -10415,16 +10302,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730391348, - "last_issuance_block_time": 1730391357, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", - "owner": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "issuer": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "owner": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "divisible": true, "locked": false, "supply": 100000000000, @@ -10432,16 +10319,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730391344, - "last_issuance_block_time": 1730391344, + "first_issuance_block_time": 1730403094, + "last_issuance_block_time": 1730403094, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 100000000000, @@ -10449,8 +10336,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730391302, - "last_issuance_block_time": 1730391302, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, "supply_normalized": "1000.00000000" } ], @@ -10478,8 +10365,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "owner": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false, "supply": 10000000000, @@ -10487,8 +10374,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730391196, - "last_issuance_block_time": 1730391207, + "first_issuance_block_time": 1730402957, + "last_issuance_block_time": 1730402970, "supply_normalized": "100.00000000" } } @@ -10519,7 +10406,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10527,14 +10414,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10542,7 +10429,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -10560,7 +10447,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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. @@ -10572,9 +10459,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "quantity": 82649961196, + "quantity": 82649965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -10584,7 +10471,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.49961000" + "quantity_normalized": "826.49965000" } ], "next_cursor": null, @@ -10626,9 +10513,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", "block_index": 185, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10643,7 +10530,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730391375, + "block_time": 1730403133, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10669,9 +10556,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", "block_index": 208, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10686,7 +10573,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403323, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10712,9 +10599,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", "block_index": 193, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10729,7 +10616,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730391467, + "block_time": 1730403230, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10755,15 +10642,15 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "3c26f8ed0b73bccbc53f504a7e87454972c934e9c2110b78a574d129f36b659a", - "block_index": 194, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "block_index": 210, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, "expire_index": 215, "fee_required": 0, @@ -10772,7 +10659,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730391471, + "block_time": 1730403332, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10789,59 +10676,59 @@ Returns the orders of an asset }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "tx_index": 53, + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "block_index": 188, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, "expiration": 21, - "expire_index": 229, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "filled", "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403201, "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" } ], - "next_cursor": 53, - "result_count": 8 + "next_cursor": 55, + "result_count": 7 } ``` @@ -10877,27 +10764,27 @@ Returns the orders of an asset { "result": [ { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 55, - "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 187, "tx1_block_index": 189, - "block_index": 189, + "block_index": 210, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 209, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730391452, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10917,13 +10804,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 53, - "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10937,7 +10824,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730391448, + "block_time": 1730403201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10957,13 +10844,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", "tx0_index": 50, - "tx0_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 51, - "tx1_hash": "eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10977,7 +10864,47 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730391375, + "block_time": 1730403133, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10998,7 +10925,7 @@ Returns the orders of an asset } ], "next_cursor": null, - "result_count": 3 + "result_count": 4 } ``` @@ -11057,20 +10984,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "event": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391475, + "block_time": 1730403247, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11078,20 +11005,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0f8f1c722bfc32cc6b5168a6793031c81003adf0215f613743ea677b8f0c2eac", + "event": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391207, + "block_time": 1730402970, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11099,20 +11026,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", + "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391204, + "block_time": 1730402965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11120,20 +11047,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", + "event": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391204, + "block_time": 1730402965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11145,16 +11072,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", + "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391204, + "block_time": 1730402965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11209,17 +11136,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 209, + "block_index": 211, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "utxo": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "utxo_address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -11230,17 +11157,17 @@ Returns the debits of an asset "quantity_normalized": "20.00000000" }, { - "block_index": 208, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 209, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "tx_index": 75, + "quantity": 10, + "action": "mpma send", + "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403327, "asset_info": { "divisible": true, "asset_longname": null, @@ -11248,20 +11175,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00000010" }, { - "block_index": 207, - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "block_index": 208, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "tx_index": 74, + "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391536, + "block_time": 1730403323, "asset_info": { "divisible": true, "asset_longname": null, @@ -11272,17 +11199,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 206, - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "block_index": 207, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", - "tx_index": 73, + "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391531, + "block_time": 1730403319, "asset_info": { "divisible": true, "asset_longname": null, @@ -11293,17 +11220,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "block_index": 206, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "tx_index": 72, + "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403304, "asset_info": { "divisible": true, "asset_longname": null, @@ -11314,8 +11241,8 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" } ], - "next_cursor": 64, - "result_count": 46 + "next_cursor": 63, + "result_count": 45 } ``` @@ -11383,14 +11310,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "0f8f1c722bfc32cc6b5168a6793031c81003adf0215f613743ea677b8f0c2eac", + "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -11405,20 +11332,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730391207, + "block_time": 1730402970, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", + "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -11433,20 +11360,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730391204, + "block_time": 1730402965, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -11461,20 +11388,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730391200, + "block_time": 1730402961, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -11489,7 +11416,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730391196, + "block_time": 1730402957, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11522,11 +11449,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11534,7 +11461,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -11546,11 +11473,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11558,7 +11485,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730391536, + "block_time": 1730403327, "asset_info": { "divisible": true, "asset_longname": null, @@ -11570,11 +11497,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "7ed62c860afcac679cb4c2e840b44a0a56b58d8b7e3c1e40c5a32c0e581c79a0", - "block_index": 206, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 75, + "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "block_index": 208, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11582,7 +11509,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730391531, + "block_time": 1730403323, "asset_info": { "divisible": true, "asset_longname": null, @@ -11594,11 +11521,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "854df19732d7ea38ea5164e419cfb868cc3b72376ae4e10043e3e310c6483e52", - "block_index": 205, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11606,7 +11533,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730391527, + "block_time": 1730403319, "asset_info": { "divisible": true, "asset_longname": null, @@ -11618,11 +11545,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "434acfe0947e461fde5081c3664bc57f0eafea243bd60eb70bbd501d6dd6d888", - "block_index": 204, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11630,7 +11557,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730391523, + "block_time": 1730403304, "asset_info": { "divisible": true, "asset_longname": null, @@ -11681,9 +11608,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11692,7 +11619,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11702,7 +11629,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -11718,9 +11645,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "1c70cd71fb36375b8c939fc746e69095ca9eabd4196c89b954efbb26c645c63b", + "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", "block_index": 142, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11729,7 +11656,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11739,7 +11666,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391281, + "block_time": 1730403033, "asset_info": { "divisible": true, "asset_longname": null, @@ -11755,9 +11682,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "142ebf3042c7b75794312ad55b53388abd934e062593fd469636d3803fc6eda5", + "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", "block_index": 150, - "source": "mgDwm8uDCgPNYmp8gda7tyVPQuWsrCSnig", + "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11765,10 +11692,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e3d75553e449728cd2bbbe60bd771353d0aceab1e0ef00174ae987d7eb6fa874", - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 0, - "last_status_tx_source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11776,7 +11703,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391311, + "block_time": 1730403063, "asset_info": { "divisible": true, "asset_longname": null, @@ -11792,18 +11719,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11813,7 +11740,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -11838,7 +11765,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - The address to return + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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` @@ -11851,9 +11778,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11862,7 +11789,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11872,7 +11799,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -11922,7 +11849,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11930,7 +11857,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11939,7 +11866,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11947,7 +11874,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11956,7 +11883,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -11964,7 +11891,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11973,7 +11900,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -12008,29 +11935,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 76, + "tx_index": 78, "dispense_index": 0, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12045,7 +11972,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -12059,27 +11986,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "3c9de07093a4fe6564cdc859db8a33297442751270bbd151cda7d15692ce1766", + "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", "block_index": 147, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "destination": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12094,7 +12021,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730391299, + "block_time": 1730403051, "asset_info": { "divisible": true, "asset_longname": null, @@ -12108,19 +12035,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12128,7 +12055,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12143,7 +12070,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -12157,19 +12084,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12177,7 +12104,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12192,7 +12119,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -12266,10 +12193,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12294,7 +12221,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730391207, + "block_time": 1730402970, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12334,22 +12261,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "0f8f1c722bfc32cc6b5168a6793031c81003adf0215f613743ea677b8f0c2eac", + "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", "tx_index": 13, "block_index": 125, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", - "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391207, + "block_time": 1730402970, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -12358,22 +12285,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb", + "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", "tx_index": 12, "block_index": 124, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391204, + "block_time": 1730402965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -12382,22 +12309,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391200, + "block_time": 1730402961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -12416,7 +12343,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx` (str, required) - The address of the mints to return + + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (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` @@ -12435,22 +12362,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "69040b9977997724241f6f4548f2814b91ccf0a7c7b7a54f5d34ebec59b838e7", + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391200, + "block_time": 1730402961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -12503,9 +12430,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", "block_index": 185, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12520,7 +12447,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730391375, + "block_time": 1730403133, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12546,9 +12473,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "block_index": 188, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12563,7 +12490,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730391448, + "block_time": 1730403201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12588,68 +12515,68 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "block_index": 189, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "tx_index": 58, + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "block_index": 193, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 210, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1730391452, + "block_time": 1730403230, "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", "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 58, - "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", - "block_index": 193, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 52, + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "block_index": 208, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "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": 213, + "expire_index": 207, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "expired", "confirmed": true, - "block_time": 1730391467, + "block_time": 1730403323, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12664,10 +12591,10 @@ Returns all the orders "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", @@ -12675,15 +12602,15 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "3c26f8ed0b73bccbc53f504a7e87454972c934e9c2110b78a574d129f36b659a", - "block_index": 194, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "block_index": 210, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, "expire_index": 215, "fee_required": 0, @@ -12692,7 +12619,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730391471, + "block_time": 1730403332, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12709,15 +12636,15 @@ Returns all the orders }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 52, + "next_cursor": 77, "result_count": 8 } ``` @@ -12727,7 +12654,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37` (str, required) - The hash of the transaction that created the order + + order_hash: `8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4` (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. @@ -12738,43 +12665,43 @@ Returns the information of an order ``` { "result": { - "tx_index": 75, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, + "tx_index": 55, + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "block_index": 211, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, "expiration": 21, - "expire_index": 229, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1730391539, + "block_time": 1730403346, "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.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -12788,7 +12715,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1` (str, required) - The hash of the transaction that created the order + + order_hash: `0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27` (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 @@ -12815,67 +12742,27 @@ Returns the order matches of an order { "result": [ { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 55, - "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "forward_asset": "XCP", - "forward_quantity": 3000, + "forward_quantity": 1000, "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 189, + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 230, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730391452, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "tx1_index": 53, - "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 207, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1730391448, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12890,13 +12777,13 @@ Returns the order matches of an order "locked": false, "issuer": null }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 2 + "result_count": 1 } ``` @@ -12905,7 +12792,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1` (str, required) - The hash of the transaction that created the order + + order_hash: `6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4` (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 @@ -12924,15 +12811,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "5081132f1f06258608cd1ac43d0dd380b007f8835d63ba1cf990a7a4011e3126", + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", "block_index": 188, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "btc_amount": 2000, - "order_match_id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "status": "valid", "confirmed": true, - "block_time": 1730391448, + "block_time": 1730403201, "btc_amount_normalized": "0.00002000" } ], @@ -12976,9 +12863,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "block_index": 188, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12996,7 +12883,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730391448, + "block_time": 1730403201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13022,27 +12909,27 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "block_index": 189, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "block_index": 211, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "give_asset": "BTC", "give_quantity": 3000, - "give_remaining": 0, + "give_remaining": 2000, "get_asset": "XCP", "get_quantity": 3000, - "get_remaining": 0, + "get_remaining": 2000, "expiration": 21, "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730391452, + "block_time": 1730403346, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13059,8 +12946,8 @@ Returns the orders to exchange two assets }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -13068,9 +12955,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", "block_index": 185, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13088,7 +12975,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730391375, + "block_time": 1730403133, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13114,9 +13001,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", "block_index": 208, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13134,7 +13021,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730391539, + "block_time": 1730403323, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13160,9 +13047,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "3d97e499e9bfc8297cc970c1412ff380b69eb6f2ed16b6c7980202c6aae7aa35", + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", "block_index": 193, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13180,7 +13067,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730391467, + "block_time": 1730403230, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13206,7 +13093,7 @@ Returns the orders to exchange two assets } ], "next_cursor": 60, - "result_count": 8 + "result_count": 7 } ``` @@ -13243,30 +13130,30 @@ Returns the orders to exchange two assets { "result": [ { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 55, - "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 187, "tx1_block_index": 189, - "block_index": 189, + "block_index": 210, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 209, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730391452, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13286,13 +13173,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 53, - "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13309,7 +13196,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730391448, + "block_time": 1730403201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13329,13 +13216,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", "tx0_index": 50, - "tx0_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 51, - "tx1_hash": "eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13352,7 +13239,50 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730391375, + "block_time": 1730403133, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13373,7 +13303,7 @@ Returns the orders to exchange two assets } ], "next_cursor": null, - "result_count": 3 + "result_count": 4 } ``` @@ -13410,27 +13340,27 @@ Returns all the order matches { "result": [ { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 55, - "tx1_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1", - "tx1_address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 187, "tx1_block_index": 189, - "block_index": 189, + "block_index": 210, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 209, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730391452, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13450,13 +13380,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1_2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", "tx0_index": 52, - "tx0_hash": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 53, - "tx1_hash": "2023cbdb3f0df67086b891b86abca137ff4e79b4ad51da4a08cc51557836aea1", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13470,7 +13400,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730391448, + "block_time": 1730403201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13490,13 +13420,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1_eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", + "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", "tx0_index": 50, - "tx0_hash": "7846ff845174dd7d36ff53444041b7581487bfc5fa3b696b7b3761b19d5989b1", - "tx0_address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "tx1_index": 51, - "tx1_hash": "eb1bcc2accd36851aea7b93f8e6bef8abd712f19f8afaf043f786c95a555f428", - "tx1_address": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13510,7 +13440,47 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730391375, + "block_time": 1730403133, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730403332, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13531,7 +13501,7 @@ Returns all the order matches } ], "next_cursor": null, - "result_count": 3 + "result_count": 4 } ``` @@ -13678,66 +13648,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "785ab3d26b0d9d77fb64d31af37c68976e144fdcd5343848c853a2337b3a2118", + "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", "block_index": 121, - "source": "bcrt1qv5cahzs0qe3kul3m483c0ezcacta303vfp9357", + "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730391192, + "block_time": 1730402953, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2c39f801b23f64bd5e7a0313abfa87e1ee1069fdf1cd0453f7eca5cca62311e3", + "tx_hash": "d7fa70649ea7b362563a38e10be7bb459b26276c1950e86d5ec3aa76fc3bc32a", "block_index": 120, - "source": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730391189, + "block_time": 1730402949, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "4f90834ad28446239de930c3e066f15c36703754e1ef83027517abb9ed95eef0", + "tx_hash": "abaa0b2b49bcc429f1201f0bdc67e04dbbbb89ad7afea7f70f596fe76347a645", "block_index": 119, - "source": "bcrt1qnm4yzypl3cy6pdatfztptulgtyr4v604cv9k2a", + "source": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730391184, + "block_time": 1730402945, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "25028fc473b257e50b01a64e916f9cac883332bfbcc9aff180508b015adb1fd4", + "tx_hash": "39121377e6d73b9b1aa803b5ff43fad8d6344631c3e94760d544053976ded12d", "block_index": 118, - "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730391180, + "block_time": 1730402941, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c3ee0076c3f2a903eb2724debce71dfed48d96ceded7e78a734dec4939072553", + "tx_hash": "0353df7b0665acf84123ac3e6bedb5fd38ae021d8e9a8e5988ed27f3afdb8822", "block_index": 117, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730391177, + "block_time": 1730402938, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13782,9 +13752,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13793,7 +13763,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13803,7 +13773,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -13819,9 +13789,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "1c70cd71fb36375b8c939fc746e69095ca9eabd4196c89b954efbb26c645c63b", + "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", "block_index": 142, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13830,7 +13800,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13840,7 +13810,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391281, + "block_time": 1730403033, "asset_info": { "divisible": true, "asset_longname": null, @@ -13856,9 +13826,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "142ebf3042c7b75794312ad55b53388abd934e062593fd469636d3803fc6eda5", + "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", "block_index": 150, - "source": "mgDwm8uDCgPNYmp8gda7tyVPQuWsrCSnig", + "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13866,10 +13836,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e3d75553e449728cd2bbbe60bd771353d0aceab1e0ef00174ae987d7eb6fa874", - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 0, - "last_status_tx_source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13877,7 +13847,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391311, + "block_time": 1730403063, "asset_info": { "divisible": true, "asset_longname": null, @@ -13893,9 +13863,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13904,7 +13874,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13914,11 +13884,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391485, + "block_time": 1730403258, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -13930,18 +13900,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13951,7 +13921,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -13976,7 +13946,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec` (str, required) - The hash of the dispenser to return + + dispenser_hash: `40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca` (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. @@ -13988,9 +13958,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13999,7 +13969,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14009,7 +13979,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -14031,7 +14001,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec` (str, required) - The hash of the dispenser to return + + dispenser_hash: `40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca` (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 @@ -14051,19 +14021,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14071,7 +14041,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14086,7 +14056,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -14100,19 +14070,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14120,7 +14090,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14135,7 +14105,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -14177,20 +14147,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "block_index": 155, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730391331, + "block_time": 1730403081, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -14215,7 +14185,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099` (str, required) - The hash of the dividend to return + + dividend_hash: `bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e` (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. @@ -14227,20 +14197,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "block_index": 155, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730391331, + "block_time": 1730403081, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -14262,7 +14232,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e` (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 @@ -14285,12 +14255,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "ee0e3cb9fcb2dc77f40f45b342e936ac9848f1b5de121f6f7116d4aaa8939099", + "event": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", "tx_index": 42, - "utxo": "8581db10ad7656376bf06b56f3815166870db05abc9b9d1df92ae5601f361a61:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "utxo": "1140eef6b190b6b6f0f2925a8876d5001445510bc8a2838968047df3dd8aa2bb:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "confirmed": true, - "block_time": 1730391331, + "block_time": 1730403081, "asset_info": { "divisible": true, "asset_longname": null, @@ -14315,7 +14285,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14332,47 +14302,47 @@ Returns all events { "result": [ { - "event_index": 682, + "event_index": 706, "event": "BLOCK_PARSED", "params": { - "block_index": 209, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "block_time": 1730391553 + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 }, "tx_hash": null, - "block_index": 209, - "block_time": 1730391553 + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 681, + "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 680, + "event_index": 704, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 209, + "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "tx_index": 76, - "block_time": 1730391553, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -14383,20 +14353,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 679, + "event_index": 703, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "status": 0, - "tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "asset_info": { "divisible": true, "asset_longname": null, @@ -14406,24 +14376,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -14433,13 +14403,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 } ], - "next_cursor": 677, - "result_count": 683 + "next_cursor": 701, + "result_count": 707 } ``` @@ -14448,7 +14418,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `682` (int, required) - The index of the event to return + + event_index: `706` (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. @@ -14459,19 +14429,19 @@ Returns the event of an index ``` { "result": { - "event_index": 682, + "event_index": 706, "event": "BLOCK_PARSED", "params": { - "block_index": 209, - "ledger_hash": "e57a4be917b122f3916d514dcef1972bfe6280e317440484ef020f6343a15ca0", - "messages_hash": "93a42beb9dae9452ba4c5c0032f29db9655587547a42414e336eab634dc23032", + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", "transaction_count": 1, - "txlist_hash": "3b1e56b9f6c8ca2096de41a521ef9e719ec3b1c41ec76da13614db8de14b0d62", - "block_time": 1730391553 + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 }, "tx_hash": null, - "block_index": 209, - "block_time": 1730391553 + "block_index": 211, + "block_time": 1730403346 } } ``` @@ -14503,7 +14473,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 62 + "event_count": 64 }, { "event": "SWEEP", @@ -14515,7 +14485,7 @@ Returns the event counts of all blocks }, { "event": "ORDER_UPDATE", - "event_count": 12 + "event_count": 16 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -14529,7 +14499,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `682` (str, optional) - The last event index to return + + cursor: `706` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14546,19 +14516,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 678, + "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "dispense", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 66, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -14568,24 +14538,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 676, + "event_index": 700, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -14595,51 +14565,51 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 673, + "event_index": 697, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 209, + "block_index": 211, "calling_function": "utxo move", - "event": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", "quantity": 2000000000, - "tx_index": 76, - "utxo": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", - "utxo_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "block_time": 1730391553, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "block_time": 1730391553 + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 }, { - "event_index": 663, + "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "block_index": 208, - "calling_function": "cancel order", - "event": "d47ebbc2cbe020c8c52a9ab68ea85621bbf5a9b0f4876ba4458250b7f155f8f1", - "quantity": 5000, + "block_index": 210, + "calling_function": "order expired", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730391539, + "block_time": 1730403332, "asset_info": { "divisible": true, "asset_longname": null, @@ -14647,26 +14617,26 @@ Returns the events filtered by event name "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, - "tx_hash": "777609ab8fadcb78afc23329b008f628d5d74e8236432f3ed1d5104b94a50e37", - "block_index": 208, - "block_time": 1730391539 + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 }, { - "event_index": 652, + "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", - "block_index": 207, + "block_index": 209, "calling_function": "mpma send", - "event": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", + "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", "quantity": 10, - "tx_index": 74, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730391536, + "block_time": 1730403327, "asset_info": { "divisible": true, "asset_longname": null, @@ -14676,13 +14646,13 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "block_time": 1730391536 + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_time": 1730403327 } ], - "next_cursor": 651, - "result_count": 91 + "next_cursor": 669, + "result_count": 94 } ``` @@ -14703,7 +14673,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 91 + "event_count": 94 } } ``` @@ -14732,29 +14702,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 76, + "tx_index": 78, "dispense_index": 0, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "destination": "bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14769,7 +14739,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -14783,19 +14753,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0ebb7274208390d884b54acabf4287bccda60409daba20ad2d212352771dfa48", + "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b2567a502305c01daa59ec6d835758ae5fc6bae9786f2e7783a4f10924af5b89", + "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14803,7 +14773,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14818,11 +14788,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391485, + "block_time": 1730403258, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -14832,27 +14802,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "3c9de07093a4fe6564cdc859db8a33297442751270bbd151cda7d15692ce1766", + "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", "block_index": 147, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", - "destination": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "8edffdc34607ab1daf988d3d7923a99c3884272ac19762b72ada90541276e80f", + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 209, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "last_status_tx_hash": null, - "origin": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14867,7 +14837,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730391299, + "block_time": 1730403051, "asset_info": { "divisible": true, "asset_longname": null, @@ -14881,19 +14851,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e7d36c3fb2819419e2315e6cb763aae68e5f47a9db432324fedc1bd3a76e72a2", + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14901,7 +14871,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14916,7 +14886,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391276, + "block_time": 1730403029, "asset_info": { "divisible": true, "asset_longname": null, @@ -14930,19 +14900,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "dc58bab13ab5b6ea9d733c6e2483732be7b578947809d8e732fabb0cc70c5f38", + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", "block_index": 140, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "destination": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2ecf394b24e5c31f4bcda5e8a30ab6882f23df45e1723782c3b23d6cc8fa53ec", + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14950,7 +14920,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14965,7 +14935,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730391272, + "block_time": 1730403025, "asset_info": { "divisible": true, "asset_longname": null, @@ -15006,11 +14976,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15018,7 +14988,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -15030,11 +15000,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057", - "block_index": 209, - "source": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646:1", - "destination": "61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057:0", + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15042,11 +15012,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15054,11 +15024,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15066,7 +15036,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730391536, + "block_time": 1730403327, "asset_info": { "divisible": true, "asset_longname": null, @@ -15078,11 +15048,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15090,11 +15060,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730391536, + "block_time": 1730403327, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15102,11 +15072,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "57ef175f97033676494954ba2c183d3b1327fb652db7631830e664197a361e06", - "block_index": 207, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15114,11 +15084,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730391536, + "block_time": 1730403327, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15126,8 +15096,8 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 28, - "result_count": 33 + "next_cursor": 30, + "result_count": 35 } ``` @@ -15168,15 +15138,15 @@ Returns all the issuances { "result": [ { - "tx_index": 69, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", "msg_index": 0, - "block_index": 202, + "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -15191,20 +15161,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391505, + "block_time": 1730403287, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "a3835d73d7264ff0faddde5b954bd3b38b044160e1097b0155b09098fb7a0ebd", + "tx_hash": "f9fdd20a34c02388a82be3b5edf1da64f24bff88c129b705bc66bca926cb92a0", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", - "issuer": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c", + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", "transfer": false, "callable": false, "call_date": 0, @@ -15219,20 +15189,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391488, + "block_time": 1730403262, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "bd1f2774a6788f448f4abecd7d83056877fa7ebb13f5d201a7a03d9c12b85932", + "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -15247,20 +15217,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391360, + "block_time": 1730403118, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "5a66398585f30cf7dfa34570ed4e390ef54f44e7bbb3492f1b9dfdf12a3f78df", + "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -15275,20 +15245,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730391357, + "block_time": 1730403104, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "6d78d6c77201292b7a4fbf00a29cfb85c5ebeac2397c86d2eb62ec3755d82b1c", + "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -15303,7 +15273,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391353, + "block_time": 1730403101, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15318,7 +15288,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e` (str, required) - The hash of the transaction to return + + tx_hash: `901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4` (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. @@ -15329,15 +15299,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 69, - "tx_hash": "e7e19b6b112abbfe832be2f9382f39e43092c094b0e6ec6116680b024fe5ff4e", + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", "msg_index": 0, - "block_index": 202, + "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "transfer": false, "callable": false, "call_date": 0, @@ -15352,7 +15322,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730391505, + "block_time": 1730403287, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15384,16 +15354,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "block_index": 195, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730391475, + "block_time": 1730403247, "fee_paid_normalized": "0.00600000" } ], @@ -15407,7 +15377,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21` (str, required) - The hash of the transaction to return + + tx_hash: `375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788` (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. @@ -15420,16 +15390,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", "block_index": 195, - "source": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", - "destination": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730391475, + "block_time": 1730403247, "fee_paid_normalized": "0.00600000" } ], @@ -15463,9 +15433,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", "block_index": 138, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15473,14 +15443,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730391265, + "block_time": 1730403019, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "34715074bfe898e4ec5e19ad65577230a7dfd5c8895d7558a61fef5464d16093", + "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", "block_index": 137, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15488,7 +15458,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730391262, + "block_time": 1730403015, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15502,7 +15472,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b` (str, required) - The hash of the transaction to return + + tx_hash: `cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac` (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. @@ -15514,9 +15484,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "ec40c4fd4677b545a4dc185700320e24e17316cd716cbcb99583a626e84b368b", + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", "block_index": 138, - "source": "bcrt1qddlu5lh67ft4yl956jvx3tut2llqvsh2n0cmdu", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15524,7 +15494,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730391265, + "block_time": 1730403019, "fee_fraction_int_normalized": "0.00000000" } } @@ -15561,10 +15531,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "a1a0414e91216b4299ee8628a9c40ef6df07ae69a277392e9545003868086191", + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15589,7 +15559,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730391335, + "block_time": 1730403085, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15598,10 +15568,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "tx_index": 22, "block_index": 135, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15626,7 +15596,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730391255, + "block_time": 1730403007, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15638,10 +15608,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "tx_index": 18, "block_index": 131, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15666,7 +15636,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730391230, + "block_time": 1730402992, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15678,10 +15648,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", + "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", "tx_index": 14, "block_index": 130, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15706,7 +15676,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730391226, + "block_time": 1730402989, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15718,10 +15688,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "d2124501b64fd8c8d89296293901aaf6317f25117d1a63b281fdc7d3837d2165", + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15746,7 +15716,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730391207, + "block_time": 1730402970, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15815,22 +15785,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391258, + "block_time": 1730403011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15839,22 +15809,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "aba9ad832290adaf7efacfc081b98cec79db2eef52d63270bfab871da7954df0", + "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391251, + "block_time": 1730403004, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15863,22 +15833,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "17dfb66f10d0d3704fb4e1c695e9f017fca1e6c842334d74dec54027e6bbc8cd", + "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391247, + "block_time": 1730403000, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15887,22 +15857,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d2908a41e6c1519ecf0149991998d643084ebf5d13c6b6728a2e7bfb0c5512d8", + "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "1430808b46eff080fdf6ea214cef294e6a679418f3c86cafab7d1bbce2c5ff5f", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391234, + "block_time": 1730402996, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15911,22 +15881,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "3c73d1603a18ecf4cceb2adda78c251b0bcabaac87189feb7bdc444c70a264b1", + "tx_hash": "bdd5eb1e485bf37c64ccd4861e921799fad0f82b6d9debdf6cdead42a4f049e3", "tx_index": 17, "block_index": 129, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", - "fairminter_tx_hash": "ceb03dbd9f6ac825c0babec8c65e9e0f2829adcea166277ed9a43328126818ce", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391222, + "block_time": 1730402986, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15945,7 +15915,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb` (str, required) - The hash of the fairmint to return + + tx_hash: `ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15956,22 +15926,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "42a7e2ab8fd22b69b8277870dbe5cf2d2cfab0ddc79830d90502256b03c0deeb", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3qwtmk9qce5p7qtlg09hkh7gad24udg49zemsx", - "fairminter_tx_hash": "cf4aeba98b9d339a98cd038e131b74a96357d7b2545e5f1fa95537915e7c404e", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730391258, + "block_time": 1730403011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", "divisible": true, "locked": false }, @@ -15989,7 +15959,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c,bcrt1qnm4yzypl3cy6pdatfztptulgtyr4v604cv9k2a` (str, required) - The addresses to search for + + addresses: `bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk,bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h` (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. @@ -16002,32 +15972,32 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ - { - "vout": 1, - "height": 201, - "value": 4949939500, - "confirmations": 9, - "amount": 49.499395, - "txid": "8409961435e590298bb1b85f9bbfed542d08daea6742ebae185796f9d6fa6d34", - "address": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c" - }, { "vout": 0, - "height": 201, + "height": 203, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "677793108309ae83f412025a81089ef3e6b6611021f130a909cec2f2609cc993", - "address": "bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c" + "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" + }, + { + "vout": 1, + "height": 210, + "value": 4949896528, + "confirmations": 2, + "amount": 49.49896528, + "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" }, { "vout": 2, "height": 158, "value": 100000, - "confirmations": 52, + "confirmations": 54, "amount": 0.001, - "txid": "db984abc14c3274649394df1f3e9772f2c6eaa828c3dd1515fb4c14223052646", - "address": "bcrt1qnm4yzypl3cy6pdatfztptulgtyr4v604cv9k2a" + "txid": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32", + "address": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h" } ], "next_cursor": null, @@ -16040,7 +16010,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule` (str, required) - The address to search for + + address: `bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p` (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 @@ -16056,25 +16026,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "802f0f295a2e9e532409689dc37fffac05a28c846798f8265aff99002f886b21" + "tx_hash": "917d2d5ae0219497b7e65a7cf5f7912ee3b2ca5266e2be249cabad51ec227e04" }, { - "tx_hash": "2adc2dc6de896b45f3e19790969f1f64f023396d582ec502b01ad5f55abe9680" + "tx_hash": "d69560da41093afa22870cfabf1a00e92fe368dfce31d43ceb86e3dabaa80031" }, { - "tx_hash": "46344533866a50dac593d8f6a54dd973324436a50b0d2cdf6c81f08f315cb3cb" + "tx_hash": "7dbd6aac5dd5a0c2a4042a1edb46acc0833d817212b23a58df59a1e1f6eed860" }, { - "tx_hash": "918f321b2ce0c299b0b472d75021035a0c5ae0dc5f065183bd5cfd853e334fd1" + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788" }, { - "tx_hash": "45b63e05d37ca03f45d38e9a9f6fd808a82e6617b5bf736d8b822ccac869b1dd" + "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b" }, { - "tx_hash": "30fcd120602408ba24550073fee5a3d8a63698f83f3a87a324194e836e0156e5" + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" }, { - "tx_hash": "26882ca8be1e5961d4c953e0cb2f4c7c8b2894c79ef58a398d501f51aa2c23fc" + "tx_hash": "cdd1e312727b6ca9e108ebe17268b648a1b6a08f8504e2a70b60cc5543dffbcb" } ], "next_cursor": null, @@ -16087,7 +16057,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qregw9hph0wcwac4dsvcdv428gk95dvhet2namx` (str, required) - The address to search for. + + address: `bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee` (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. @@ -16100,8 +16070,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "1d78d4d65ee95c471eda90809060ca40d629a7020355b6c55509ff5d9378c4d6" + "block_index": 3, + "tx_hash": "210c869407569853cfda617387ef799a309015dea140ce4eb21e338f9e106fcb" } } ``` @@ -16111,7 +16081,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qkj5tmcsd960c3enn8hrmvzgdfptgl8h99ed77c` (str, required) - The address to search for + + address: `bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk` (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 @@ -16128,19 +16098,19 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 1, - "height": 201, - "value": 4949939500, - "confirmations": 9, - "amount": 49.499395, - "txid": "8409961435e590298bb1b85f9bbfed542d08daea6742ebae185796f9d6fa6d34" + "height": 210, + "value": 4949896528, + "confirmations": 2, + "amount": 49.49896528, + "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" }, { "vout": 0, - "height": 201, + "height": 203, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "677793108309ae83f412025a81089ef3e6b6611021f130a909cec2f2609cc993" + "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4" } ], "next_cursor": null, @@ -16153,7 +16123,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q38lmrl3f452ccst2mqvy4r4n3mtrpfrpxvm5w7` (str, required) - Address to get pubkey for. + + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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. @@ -16165,7 +16135,7 @@ Get pubkey for an address. ``` { - "result": "02e5b2dda377edf88a562ac00faab09da6b023e774cf1a0dac59ff3fd8c5d3c479" + "result": "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" } ``` @@ -16174,7 +16144,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `61396d19adb1b76aaeb669bd6e6962286b35e39e3479464061327bcea6949057` (str, required) - The transaction hash + + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (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. @@ -16186,7 +16156,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001014626052342c1b45f51d13d8c82aa6e2c2f77e9f3f14d39494627c314bc4a98db0100000000ffffffff03e8030000000000001600146b7fca7efaf257527cb4d49868af8b57fe0642ea00000000000000000c6a0ad9ba314e5eb60fdc2330eb140927010000001600141e50e2dc377bb0eee2ad8330d65547458b46b2f90247304402201882cb28add3b7e1dd43ebe82c271edd32475f805479fae80c61337610e72b2a02203388d0f63d5b2137a069fb42bb50e95e51d61ad3ef7b4b1b550d17a4520041ea012102a69f2ead85180a890d0cdbb54bb30f21374c3caa91c1ca7237e5e94f4cdd45e900000000" + "result": "0200000000010132dbb0d3e8eef8f41d294cef9f9197c56bff1dd0172d99bafd7aaf93a65a5a590100000000ffffffff03e80300000000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b500000000000000000c6a0a10d63a99d1c73db618cceb140927010000001600148611652400789612e660514167a77909605413ab0247304402205e6f7f871cd7512b9b60c82270e2ed06f13866c428aeb4902a8bba359adcf0bb022065cd247db11e751639a44542bf79a5cbe7a12c4949c48f3b7c7cf8508517dc91012102aaa71ed188f33f8ae081da50540893a4dc64fa72a7cc1552366e232739f2096900000000" } ``` @@ -16208,7 +16178,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58701 + "result": 58706 } ``` @@ -16281,28 +16251,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77 + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79 }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "quantity": 10000, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "status": "valid", - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77, + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, "asset_info": { "divisible": true, "asset_longname": null, @@ -16312,22 +16282,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "CREDIT", "params": { - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "send", - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -16337,22 +16307,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "XCP", - "block_index": 209, - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "block_index": 211, + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -16362,30 +16332,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730391558.1007109, + "block_time": 1730403350.6183352, "btc_amount": 0, - "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", "destination": "", "fee": 10000, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77, - "utxos_info": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c:1 2 ", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "asset_info": { "divisible": true, @@ -16399,7 +16369,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 } ], "next_cursor": null, @@ -16430,19 +16400,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "CREDIT", "params": { - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "send", - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -16452,7 +16422,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 } ], "next_cursor": null, @@ -16465,7 +16435,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c` (str, required) - The hash of the transaction to return + + tx_hash: `007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77` (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 @@ -16485,28 +16455,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77 + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79 }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "quantity": 10000, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "status": "valid", - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77, + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, "asset_info": { "divisible": true, "asset_longname": null, @@ -16516,22 +16486,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "CREDIT", "params": { - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "asset": "XCP", - "block_index": 209, + "block_index": 211, "calling_function": "send", - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -16541,22 +16511,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", "asset": "XCP", - "block_index": 209, - "event": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "block_index": 211, + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "quantity": 10000, - "tx_index": 77, + "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730391553, + "block_time": 1730403346, "asset_info": { "divisible": true, "asset_longname": null, @@ -16566,30 +16536,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 }, { - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730391558.1007109, + "block_time": 1730403350.6183352, "btc_amount": 0, - "data": "020000000000000001000000000000271080ab4ecc335046df4d423eb153cfd40ca16b576a06", + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", "destination": "", "fee": 10000, - "source": "bcrt1q86wquudgk6lc4v63yf2e9jxar4m09wxpsgwn2a", - "tx_hash": "d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c", - "tx_index": 77, - "utxos_info": "1f3477ca6f5311ac9fb822d7a37841c71f49338b4c1b873a969ffd728ca7378f:1 d560d228f1ad3689be1428d7deb6b0099d6c9bd3eda0a31cfff6307655bedf4c:1 2 ", + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4d8vcv6sgm056s37k9ful4qv5944w6sxhxtule", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", "memo": null, "asset_info": { "divisible": true, @@ -16603,7 +16573,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730391558.1007109 + "timestamp": 1730403350.6183352 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index ff27b18587..3fd4d2ed6e 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -277,8 +277,8 @@ def compose_burn(db, address: str, quantity: int, overburn: bool = False, **cons 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) + :param address: The address that placed the order/bet to be cancelled (e.g. $ADDRESS_7) + :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_UTXOASSET_ORDER_TX_HASH) """ params = {"source": address, "offer_hash": offer_hash} return compose(db, "cancel", params, **construct_args) @@ -310,7 +310,7 @@ def compose_dispenser( ): """ 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 address: The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_9) :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) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 09c4e9f3e4..a470141775 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14471,9 +14471,10 @@ }, { "name": "destination", - "required": true, + "default": null, + "required": false, "type": "str", - "description": "The address to detach the assets to (e.g. $ADDRESS_1)" + "description": "The address to detach the assets to, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1)" }, { "name": "encoding", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json new file mode 100644 index 0000000000..8edbaa13b7 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -0,0 +1,11243 @@ +{ + "/v2/blocks": { + "result": [ + { + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "difficulty": 545259519, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 210, + "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_time": 1730403332, + "previous_block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "difficulty": 545259519, + "ledger_hash": "860400663c2e932d0e9952400f9aa01415cf279d35a7f5e81f6dabc0c5c16716", + "txlist_hash": "e740759710f6964c4037eeaee13c0f59a883c9a48fdf2798da25ce8438070ff2", + "messages_hash": "a3c888da6448660b1bbea3fd26281d325c71c1d2e731d66a9c0342223aa2b810", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 209, + "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_time": 1730403327, + "previous_block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "difficulty": 545259519, + "ledger_hash": "b7115ca664a3927bdf9fa8e78e931529e0a589d4a58c41cb8bd04d4c2748dc67", + "txlist_hash": "b257b31a58aa81531003e0ebc2df8f92e3456d8056f1a6b98fc100fd8f032e17", + "messages_hash": "49c4f6db87eed4383892669e056c16350c8b5224c2d3df3d509a1ecbdd2d24f4", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 208, + "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "block_time": 1730403323, + "previous_block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "difficulty": 545259519, + "ledger_hash": "a479d83f0ce588b3e69e8d3dceaee54a27eae58a356c5345c578e0142070cb92", + "txlist_hash": "8606128c6920f5c8b9b69bf46e92fb0f7d5718957bfa6601d65f85fdf47445bf", + "messages_hash": "a442f4dceb5c16cae6708af4ed8e950b41582e2eb726d47ac929c05c5b9add4f", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 207, + "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_time": 1730403319, + "previous_block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "difficulty": 545259519, + "ledger_hash": "95ee8738aa0716c11715fcdf2940c0badd4cc638cd6778abadaae54b5642a138", + "txlist_hash": "44520822dd23dc5829c97c92ee5790f1d696765d127fcf6f6f6336df022ad5aa", + "messages_hash": "42424d8034056766f6d9001fa6d2884ac46f2fd5aff54a9bd31b7a47241e5aeb", + "transaction_count": 1, + "confirmed": true + } + ], + "next_cursor": 206, + "result_count": 111 + }, + "/v2/blocks/": { + "result": { + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "difficulty": 545259519, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks/": { + "result": { + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "difficulty": 545259519, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks//transactions": { + "result": [ + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//events": { + "result": [ + { + "event_index": 706, + "event": "BLOCK_PARSED", + "params": { + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 + }, + "tx_hash": null + }, + { + "event_index": 705, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + }, + { + "event_index": 704, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 211, + "btc_amount": 1000, + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + }, + { + "event_index": 703, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "status": 0, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + }, + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + } + ], + "next_cursor": 701, + "result_count": 16 + }, + "/v2/blocks//events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 2 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 1 + }, + { + "event": "ORDER_UPDATE", + "event_count": 1 + }, + { + "event": "ORDER_EXPIRATION", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION_OUTPUT", + "event_count": 1 + } + ], + "next_cursor": "NEW_TRANSACTION", + "result_count": 12 + }, + "/v2/blocks//events/": { + "result": [ + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + }, + { + "event_index": 700, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + }, + { + "event_index": 697, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//credits": { + "result": [ + { + "block_index": 211, + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "quantity": 66, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + { + "block_index": 211, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + { + "block_index": 211, + "address": null, + "asset": "MYASSETA", + "quantity": 2000000000, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//debits": { + "result": [ + { + "block_index": 211, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "action": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + { + "block_index": 211, + "address": null, + "asset": "MYASSETA", + "quantity": 2000000000, + "action": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//expirations": { + "result": [ + { + "type": "order", + "object_id": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "block_index": 211, + "confirmed": true, + "block_time": 1730403346 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//cancels": { + "result": [ + { + "tx_index": 59, + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "block_index": 193, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "status": "valid", + "confirmed": true, + "block_time": 1730403230 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//destructions": { + "result": [ + { + "tx_index": 62, + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "block_index": 196, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "XCP", + "quantity": 1, + "tag": "64657374726f79", + "status": "valid", + "confirmed": true, + "block_time": 1730403251, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//issuances": { + "result": [ + { + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "msg_index": 0, + "block_index": 204, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403287, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sends": { + "result": [ + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "MYASSETA", + "quantity": 2000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//dispenses": { + "result": [ + { + "tx_index": 78, + "dispense_index": 0, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sweeps": { + "result": [ + { + "tx_index": 61, + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "block_index": 195, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730403247, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairminters": { + "result": [ + { + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1730403085, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairmints": { + "result": [ + { + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403011, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions": { + "result": [ + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 77, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_time": 1730403332, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": " 5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "UTXOASSET", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 76, + "result_count": 79 + }, + "/v2/transactions/info": { + "result": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "ce1f7edf3b840218ad649054df5a093a48678e8b9840e8e41c101bc30fe7cf21", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "0137aea6314c69f2981a5f316dcc8bf930e450c0c91c9595f6bab0fb5b2b150f", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "6bcebed9656cfcb53f2a4361f637002a7ee81204e4f340ad557f18ecc7c22038", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "d17cd665bd97550c354f5062c3a4ac4b2bc0c6ed7d539cb7b23f18d4a295c493", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "31ae8dd8f3fb99e6d704ae8070356162db31c843899b88f168fb6ce90d5b21f6", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c62fbdb6ce1a82b38222cf01e13ca8be6882ab6064e00fc21fec7c985c2aba56", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 1000, + "script_pub_key": "5121023b0050954ab0e1b4a1eb6462aa8d49ea28812d2b594c2777851d7d236c56021e21038af9bc320976909c46ca607c0db9dd7b5daa9d7bbd8f24cf9b484296b3bfa149210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + }, + { + "value": 1000, + "script_pub_key": "5121033b0050954ab0e1b4a1a582c3dd112511dbd5ae6ad49d69c4217a2e1b8a2647222102a0233ceebb60558ac39a0e1885e1594e1b545b0a1ee9394fb916eb24e9b83a55210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + }, + { + "value": 1000, + "script_pub_key": "512103150050954ab0e1b4a1e864212a5bc172a80e79d0c137e1b0491f0e76ef4b28fb210220233ce57da144036b9a0e1885e1594e49545b0a1ee9394fb356eb24e9b83a3a210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014a6bea9faf02900a347a8f071e7a51d640ec3e33a" + } + ], + "vtxinwit": [ + "304402204d6affe02d57e3fae0777aea5cc9b04cc59846ae9c00a1efee6901cac82cbe3b022014c92878e948ba87c64ea8bebbacecf9dc9840c46e2f0e2caca94c276c8f55a101", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022048da182195b00fac5f995e11efa6d8712eac6a3c81a708fe9042c23cbf2664e20220784a38465df96de32726ea26c19a0b7e10f2fd3a33260e56df0de38ef9a25d9401", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022059b2f7cd8750890234e74cbf5d3ef800c1d05cb9baac40f0096a6cf52858e554022041557a6f0d08439076738bb69107c2375d9e7b37e70a832072e2ad6a565ce1c201", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "304402200ca5b69fdc32a63860f5c2a06d8fb142d0435a1e479d848cbebba9ebb333500c022058599835f6db5bb661e1c6253649956dbe480493e6bebcc517e7a180a468ccd301", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022037a7210deb7b4f41a6fa3019e2fc498986592d7a781e1c6ced1a30594839525602205ae1193aaa05c007095c95c05ea23436a08f751761552d08a7adbc465fbef5ee01", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", + "3044022066273dcbcca8b145ed48fbe79dbb98e38b295e0a2efe5759a04dcd82a6afa7f3022041609ea67c325a2333adf3ee4805edf2d6b5aa8c1e0f522e578002ad2de7b28d01", + "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" + ], + "lock_time": 0, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_id": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d" + }, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "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": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "63647d2d8358b4b23c6ed32a8584835a738f80a8381e55cdf25a8a69170d0a8f", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2e213862dbd82f87e7f2ca18ee919a25e0f98635878575ed7725ab3057b0208d47a055ea3925773492becfb7bcde35" + }, + { + "value": 4949930546, + "script_pub_key": "0014281ea9b25a079b4de6a2f74ae46373dbd79215aa" + } + ], + "vtxinwit": [ + "3044022001b317ef990256b38691adf0ce08e927cc23738fe93659ca24b711d3f4b3ea0f02205e87a031e873d4c4cfbf46f3ec10c0e2bfb254b1c8427052426ca5915329347601", + "03c6847a7e336970cc972babd5ac34ffcf508a5001fad5814dd83c6b1a5cb1be71" + ], + "lock_time": 0, + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_id": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77" + }, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions/unpack": { + "result": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "error": "memo too long" + } + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_time": 1730403346, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 705, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 704, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 211, + "btc_amount": 1000, + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 703, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "status": 0, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 701, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 211, + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "msg_index": 1, + "quantity": 2000000000, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "status": "valid", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 700, + "result_count": 14 + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 705, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 704, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 211, + "btc_amount": 1000, + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 703, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "status": 0, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 701, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 211, + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "msg_index": 1, + "quantity": 2000000000, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "status": "valid", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 700, + "result_count": 14 + }, + "/v2/transactions//sends": { + "result": [ + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "MYASSETA", + "quantity": 2000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/transactions//dispenses": { + "result": [ + { + "tx_index": 78, + "dispense_index": 0, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 700, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 697, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 700, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 697, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/balances": { + "result": [ + { + "asset": "A95428956980101314", + "total": 100000000000, + "addresses": [ + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "utxo": null, + "utxo_address": null, + "quantity": 100000000000, + "quantity_normalized": "1000.00000000" + } + ], + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "total_normalized": "1000.00000000" + }, + { + "asset": "MPMASSET", + "total": 99999998960, + "addresses": [ + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "utxo": null, + "utxo_address": null, + "quantity": 99999998960, + "quantity_normalized": "999.99999000" + } + ], + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "total_normalized": "999.99999000" + }, + { + "asset": "FAIRMINTA", + "total": 500000000, + "addresses": [ + { + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "utxo": null, + "utxo_address": null, + "quantity": 500000000, + "quantity_normalized": "5.00000000" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "total_normalized": "5.00000000" + }, + { + "asset": "MPMASSET", + "total": 960, + "addresses": [ + { + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "utxo": null, + "utxo_address": null, + "quantity": 960, + "quantity_normalized": "0.00000960" + } + ], + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000960" + }, + { + "asset": "FAIRMINTD", + "total": 40, + "addresses": [ + { + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "utxo": null, + "utxo_address": null, + "quantity": 40, + "quantity_normalized": "0.00000040" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "total": 19, + "addresses": [ + { + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "utxo": null, + "utxo_address": null, + "quantity": 19, + "quantity_normalized": "0.00000019" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000019" + } + ], + "next_cursor": "MYASSETA", + "result_count": 8 + }, + "/v2/addresses/transactions": { + "result": [ + { + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_time": 1730403327, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": " 4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 75, + "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "block_index": 208, + "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "block_time": 1730403323, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aac8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": " 2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_time": 1730403319, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "block_time": 1730403304, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", + "block_time": 1730403290, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "supported": true, + "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 71, + "result_count": 45 + }, + "/v2/addresses/events": { + "result": [ + { + "event_index": 686, + "event": "ORDER_MATCH", + "params": { + "backward_asset": "BTC", + "backward_quantity": 1000, + "block_index": 210, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 1000, + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "match_expire_index": 230, + "status": "pending", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_block_index": 194, + "tx0_expiration": 21, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_index": 60, + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_block_index": 210, + "tx1_expiration": 21, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_index": 55, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + }, + { + "event_index": 683, + "event": "ORDER_MATCH_EXPIRATION", + "params": { + "block_index": 210, + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_time": 1730403332 + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + }, + { + "event_index": 681, + "event": "CREDIT", + "params": { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "block_index": 210, + "calling_function": "order expired", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "quantity": 3000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730403332, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00003000" + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + }, + { + "event_index": 675, + "event": "MPMA_SEND", + "params": { + "asset": "XCP", + "block_index": 209, + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "status": "valid", + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_time": 1730403327 + } + ], + "next_cursor": 674, + "result_count": 238 + }, + "/v2/addresses/mempool": { + "result": [ + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "quantity": 10000, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "status": "valid", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "CREDIT", + "params": { + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "XCP", + "block_index": 211, + "calling_function": "send", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "XCP", + "block_index": 211, + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1730403350.6183352, + "btc_amount": 0, + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "destination": "", + "fee": 10000, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1730403350.6183352 + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/balances": { + "result": [ + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "A95428956980101314", + "quantity": 100000000000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 99999998960, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "999.99999000" + }, + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MYASSETA", + "quantity": 97999999980, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "980.00000000" + }, + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 82649965196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.49965000" + }, + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "TESTLOCKDESC", + "quantity": 9999990000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "99.99990000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/balances/": { + "result": [ + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 82649965196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.49965000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/credits": { + "result": [ + { + "block_index": 210, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 3000, + "calling_function": "order expired", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403332, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00003000" + }, + { + "block_index": 209, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 208, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403323, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 208, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 5000, + "calling_function": "cancel order", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403323, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00005000" + }, + { + "block_index": 204, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 100000000000, + "calling_function": "issuance", + "event": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_index": 71, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403287, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + } + ], + "next_cursor": 65, + "result_count": 21 + }, + "/v2/addresses/
/debits": { + "result": [ + { + "block_index": 207, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 207, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + }, + { + "block_index": 206, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 206, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + }, + { + "block_index": 205, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MPMASSET", + "quantity": 1000, + "action": "send", + "event": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_index": 72, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403290, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + ], + "next_cursor": 63, + "result_count": 28 + }, + "/v2/addresses/
/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/broadcasts": { + "result": [ + { + "tx_index": 24, + "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", + "block_index": 137, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730403015, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/burns": { + "result": [ + { + "tx_index": 0, + "tx_hash": "44f034107057167342bd95bbc7b5362bce805e3db0a6ac30a4dfb6943df4d4c7", + "block_index": 112, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1730402922, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends": { + "result": [ + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "memo2", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 22, + "result_count": 12 + }, + "/v2/addresses/
/receives": { + "result": [ + { + "tx_index": 38, + "tx_hash": "fe796ee0c6d7bcaa11a4ad0b53b8961e064e75e2b635ccca7056c031649ce9e3", + "block_index": 151, + "source": "cd51daff023c3b5a395313890e1d0941472c83a8391fdaa0db86bff2d29aca3c:0", + "destination": "bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s", + "asset": "MYASSETA", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403067, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends/": { + "result": [ + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "memo2", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "MPMASSET", + "quantity": 1000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403290, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/receives/": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 63, + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "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": 1730403258, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/addresses/
/dispenses/sends": { + "result": [ + { + "tx_index": 64, + "dispense_index": 0, + "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403258, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/receives": { + "result": [ + { + "tx_index": 64, + "dispense_index": 0, + "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403258, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/sends/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispenses/receives/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/sweeps": { + "result": [ + { + "tx_index": 61, + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "block_index": 195, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730403247, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/issuances": { + "result": [ + { + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "msg_index": 0, + "block_index": 204, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403287, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 49, + "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", + "msg_index": 0, + "block_index": 162, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403118, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 48, + "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", + "msg_index": 0, + "block_index": 161, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1730403104, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 47, + "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", + "msg_index": 0, + "block_index": 160, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403101, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 46, + "tx_hash": "a292c148469b6dbd41ddcbf00dfeb536d0724efe8f1e1243e3f3c0ab3ac8dd54", + "msg_index": 0, + "block_index": 159, + "asset": "TESTLOCKDESC", + "quantity": 10000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403097, + "quantity_normalized": "100.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": 17, + "result_count": 22 + }, + "/v2/addresses/
/assets": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, + "confirmed": true, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, + "confirmed": true, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1730403007, + "last_issuance_block_time": 1730403011, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1730402992, + "last_issuance_block_time": 1730403004, + "supply_normalized": "0.00000019" + } + ], + "next_cursor": 3, + "result_count": 7 + }, + "/v2/addresses/
/assets/issued": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, + "confirmed": true, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, + "confirmed": true, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1730403007, + "last_issuance_block_time": 1730403011, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1730402992, + "last_issuance_block_time": 1730403004, + "supply_normalized": "0.00000019" + } + ], + "next_cursor": 3, + "result_count": 7 + }, + "/v2/addresses/
/assets/owned": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, + "confirmed": true, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, + "confirmed": true, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1730403007, + "last_issuance_block_time": 1730403011, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1730402992, + "last_issuance_block_time": 1730403004, + "supply_normalized": "0.00000019" + } + ], + "next_cursor": 3, + "result_count": 7 + }, + "/v2/addresses/
/transactions": { + "result": [ + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_time": 1730403319, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "block_time": 1730403304, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 72, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", + "block_time": 1730403290, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "supported": true, + "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_hash": "20e7d5dbb7165402d4822e58299647fa3cec122b63e4d401d4bfcfa477908fd3", + "block_time": 1730403287, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "supported": true, + "utxos_info": " 901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 63, + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "block_index": 197, + "block_hash": "5196ca6ff53b4797b4c12445477159f94e838c8feca6b47c7fb7757b19185e88", + "block_time": 1730403255, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": " 5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 60, + "result_count": 30 + }, + "/v2/addresses/
/dividends": { + "result": [ + { + "tx_index": 42, + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "block_index": 155, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 20000, + "status": "valid", + "confirmed": true, + "block_time": 1730403081, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/orders": { + "result": [ + { + "tx_index": 50, + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "block_index": 185, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 184, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403133, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "block_index": 208, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403323, + "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": 58, + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "block_index": 193, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 213, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1730403230, + "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": 60, + "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "block_index": 210, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 215, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730403332, + "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.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/fairminters": { + "result": [ + { + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1730403085, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "tx_index": 22, + "block_index": 135, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1730403007, + "price_normalized": "0.00000050", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "tx_index": 18, + "block_index": 131, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1730402992, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "tx_index": 14, + "block_index": 130, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 130, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1730402989, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1730402970, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/fairmints": { + "result": [ + { + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403011, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403004, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402996, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "490e4645b0e811425dd7324731267eaf5aa77a9db80268d252e1ab8639fe0d0d", + "tx_index": 15, + "block_index": 127, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402977, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + }, + { + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402961, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 6 + }, + "/v2/addresses/
/fairmints/": { + "result": [ + { + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402961, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/utxos//balances": { + "result": [ + { + "asset": "XCP", + "quantity": 2000000000, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + { + "asset": "MYASSETA", + "quantity": 2000000000, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/compose/bet": { + "error": "['feed doesn\u2019t exist']" + }, + "/v2/addresses/
/compose/broadcast": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction": 0.05, + "text": "\"Hello, world!\"" + }, + "name": "broadcast", + "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985794, + "btc_fee": 14206, + "rawtransaction": "02000000000101198ef80491b7f0afbeb07c44ef1ccc204b67da43a19d57c85c381da638a3206d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff0200000000000000002b6a29f53254444ea639fcf641b377869cb893e9bc3291cc6cfc274663cfa8d13a524f13ce021929dc4400ec82ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "broadcast", + "message_type_id": 30, + "message_data": { + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction_int": 5000000, + "text": "\"Hello, world!\"", + "status": "valid", + "fee_fraction_int_normalized": "0.05000000" + } + } + } + }, + "/v2/addresses/
/compose/btcpay": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + }, + "name": "btcpay", + "data": "434e5452505254590b0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b278097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999980919, + "btc_fee": 18081, + "rawtransaction": "0200000000010159c6c0bf9369242af24f424c4c2446a2a398faaed9de6969a6ab08bbb1eecc1d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e803000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a00000000000000004b6a49df135ffaecbb57d487c7b6b973b54db0b10215aac8c937d8fa37539ede76f2c295030de69ca3c074ddac3938f34316c2db83b13718d87904b741f717dc3b9ada3f80b67be04ef860a277a7052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "btcpay", + "message_type_id": 11, + "message_data": { + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/burn": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "quantity": 1000, + "overburn": false + }, + "name": "burn", + "data": null, + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999985792, + "btc_fee": 13208, + "rawtransaction": "020000000001016b49b545791d69461b05fe4d1ba812c61d1105211d2066cb79e6321af3e5888c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000" + } + }, + "/v2/addresses/
/compose/cancel": { + "result": { + "params": { + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" + }, + "name": "cancel", + "data": "434e545250525459465e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "btc_in": 4949896528, + "btc_out": 0, + "btc_change": 4949882322, + "btc_fee": 14206, + "rawtransaction": "020000000001012b3e48c5270b66083a7cb70d50d0ef127b88ffb3d8d7e20eb050884d735e665e01000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d170ffffffff0200000000000000002b6a297041c053d10622c2c203e8b65d7466bed22f8bce5a00b5ddcad80440b7f8db9bb8fdc00811521f7bbbd235092701000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d17002000000000000", + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/destroy": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 1000, + "tag": "\"bugs!\"", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "destroy", + "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986322, + "btc_fee": 13678, + "rawtransaction": "02000000000101017eccc91f843f89f84a9080fb7e56380f0fef6a0a3678b3f9fd07d6f026766200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000226a203eadad155f577aec68f81edcf063751eee680d461fdfc8b3a50a213f0e786d8192bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "destroy", + "message_type_id": 110, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "tag": "22627567732122", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dispenser": { + "result": { + "params": { + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "status": 0, + "open_address": null, + "oracle_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + }, + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949873899, + "btc_out": 0, + "btc_change": 4949859634, + "btc_fee": 14265, + "rawtransaction": "02000000000101c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a9020000001600148611652400789612e660514167a77909605413abffffffff0200000000000000002c6a2a8bc356b3ed1b329950c42d290c26cb9028aad3fac814fc50c4cea2236a68ec46745455477a09cc118d8332dd0827010000001600148611652400789612e660514167a77909605413ab02000000000000", + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dividend": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "quantity_per_unit": 1, + "asset": "FAIRMINTA", + "dividend_asset": "XCP", + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "0.00000001" + }, + "name": "dividend", + "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986263, + "btc_fee": 13737, + "rawtransaction": "0200000000010137bf707f5df1f14af0fb4c8df0be9ac5bc1cdd962fec288bd1fdb3dbe80e00e600000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a213d8b9963b510a57f2173926c1f21767e398b19e231557bd4a493b4d1b8d2ea21c957bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "dividend", + "message_type_id": 50, + "message_data": { + "asset": "FAIRMINTA", + "quantity_per_unit": 1, + "dividend_asset": "XCP", + "status": "valid", + "quantity_per_unit_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/issuance": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCPTEST", + "quantity": 1000, + "transfer_destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "lock": false, + "reset": false, + "description": null, + "quantity_normalized": "0.00001000" + }, + "name": "issuance", + "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999983721, + "btc_fee": 15733, + "rawtransaction": "02000000000101de64d703e4d9afb6435305e99b5b5877ef4dc86728a80be5eb489e8805b4753c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000236a2113e8e3691c06c3ce535832ac2a9971ffa85d39d717115db0ac0f884837b406ed3569b2052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 7136017375, + "asset": "XCPTEST", + "subasset_longname": null, + "quantity": 1000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "status": "valid", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/mpma": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset_dest_quant_list": [ + [ + "XCP", + "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + 1 + ], + [ + "MPMASSET", + "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + 2 + ] + ], + "memo": null, + "memo_is_hex": false + }, + "name": "mpma", + "data": "434e54525052545903000280a6bea9faf02900a347a8f071e7a51d640ec3e33a80d68898808f54d3987bc6c7cc027355831d2aaada40000005e36088c4d000000000000000240000000000000004000000000000000100", + "btc_in": 20000000000, + "btc_out": 2000, + "btc_change": 19999945400, + "btc_fee": 52600, + "rawtransaction": "02000000000104a52dba153ade1cd8569b494843811d5bf3aa25c8aaee76a0f688142f72f2460e00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff77a91c304dddf305f08d41f07b89ff7c6a1f6294deae2a4d613db88bdef4d70700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33afffffffff9cfb6a43839e6105dd18408d504b4521081dc130d9d3660ab9d6bccd5b7b56200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff342a6e4d339aacb56e82c89a93f016b89fa3b119b078239a0fc50d3032ac8d0400000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e80300000000000069512103e031860a9176906d94a0ed33d0308f37b33cc220fd336cb97326e20d2b8c8f3d2102f9c9a0c72021cbab7c3aebec4ca299ce938d330895ba7166f184a31539847f12210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee80300000000000069512102ff31860a9176906d9473ed315096319e49e8eb205e74c44902c547104f824cfe21031af32111a8b94b2428e973978a6555cce0d8b015bf10ab26f184a6f6590cbbef210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aeb8f216a804000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000002000002000002000000000000", + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 2, + "memo": null, + "memo_is_hex": null + }, + { + "asset": "XCP", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "quantity": 1, + "memo": null, + "memo_is_hex": null + } + ] + } + } + }, + "/v2/addresses/
/compose/order": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "FAIRMINTA", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + }, + "name": "order", + "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985207, + "btc_fee": 14793, + "rawtransaction": "020000000001014278e72c345fd1ba53fda7de344e89191294bd8ad7d782a06a18b668ae4d56c700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000356a33818d85ebd35434b0d7949c344254a640f54b2c06f1d97760b2c6d65f8ba52dfb5811f7fc1330d0178cd7d287bbfa71cc1c010737b8052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "FAIRMINTA", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "status": "open", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + } + } + } + }, + "/v2/addresses/
/compose/send": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 1000, + "memo": null, + "memo_is_hex": false, + "use_enhanced_send": true, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "send", + "data": "434e54525052545902000000000000000100000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985500, + "btc_fee": 14500, + "rawtransaction": "0200000000010119499ff6f2b1f68abd5d1eae03212b26e3867297976d327b65665983bb51a73c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000306a2eaba32ec97c38fff6d24c2487fcb1bdd6f61f271e77ce19607af26231601d318ec3ac947667db1c56908f9b2765015cb9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "memo": null, + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/sweep": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "flags": 7, + "memo": "FFFF" + }, + "name": "sweep", + "data": "434e5452505254590480d68898808f54d3987bc6c7cc027355831d2aaada07ffff", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986263, + "btc_fee": 13737, + "rawtransaction": "02000000000101421b342347308137eaaebec91f633fc3e02f57b3acb74c658c8b35eb9ae2298500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a214a05c72b8857605588e98c7f7159b3e39447d16f206e0cbf3e94ae387cca891f3857bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "sweep", + "message_type_id": 4, + "message_data": { + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "flags": 7, + "memo": "ffff" + } + } + } + }, + "/v2/addresses/
/compose/dispense": { + "result": { + "params": { + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "quantity": 1000 + }, + "name": "dispense", + "data": "434e5452505254590d00", + "btc_in": 4949828000, + "btc_out": 1000, + "btc_change": 4949812618, + "btc_fee": 14382, + "rawtransaction": "02000000000101e23d2bb80ab21b65bc7481a04c4186ad90b1a147a9f8615793421096bbb1614e03000000160014d68898808f54d3987bc6c7cc027355831d2aaadaffffffff03e803000000000000160014281ea9b25a079b4de6a2f74ae46373dbd79215aa00000000000000000c6a0a4c6fc4b899825aff3c1e8a25082701000000160014d68898808f54d3987bc6c7cc027355831d2aaada02000000000000", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + } + } + }, + "/v2/addresses/
/compose/fairminter": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": 0.0, + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "name": "fairminter", + "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985441, + "btc_fee": 14559, + "rawtransaction": "020000000001018f5c0cdb95201f2d95425763fbcefc83e10631bb6d33cfa9ef3379e00cc0429d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000316a2f96ced9e9aaa631a7832f3d5d8288e6e5ca459b2bee44f3ab9b59bffa9ebde5b3c01fba036d518369046cde73f7c0cf21b9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "fairminter", + "message_type_id": 90, + "message_data": { + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + } + } + }, + "/v2/addresses/
/compose/fairmint": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTC", + "quantity": 1, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000001" + }, + "name": "fairmint", + "data": "434e5452505254595b464149524d494e54437c31", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999987026, + "btc_fee": 12974, + "rawtransaction": "02000000000101644babc6f12f61cc3aaf550215ac505508529345cf6a5b7f7bdc2f267ee89f7500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000166a1496ecbe63dfd2db9976eb258914c9489c35cd21f852bf052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "fairmint", + "message_type_id": 91, + "message_data": { + "asset": "FAIRMINTC", + "quantity": 1, + "quantity_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/attach": { + "result": { + "params": { + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 1000, + "destination_vout": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "attach", + "data": "434e545250525459655843507c313030307c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999984602, + "btc_fee": 14852, + "rawtransaction": "02000000000101603a6dc731ec62b9f162b278b1a901b7853b84e776a763dd055576fb8ac44ee000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000146a129783a3b26b834513f781b25d31c266d5fcfadab5052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "unpacked_data": { + "message_type": "attach", + "message_type_id": 101, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "destination_vout": null, + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/utxos//compose/detach": { + "result": { + "params": { + "source": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" + }, + "name": "detach", + "data": "434e5452505254596662637274317135366c326e376873397971327833616737706337306667617673387638636536657139723739", + "btc_in": 4949971000, + "btc_out": 0, + "btc_change": 4949945463, + "btc_fee": 25537, + "rawtransaction": "02000000000102c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a90000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff13de6aae814eb82445cb49b084edd6ce86376c1d1c404fa5173689c5704203180100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff020000000000000000376a358bc356b3ed1b32993aa64e5b7817baa51fc6e194ff7c8f6a55bf905b59098b72ec3762771c6ead679abbaac732b25792b3db5d51df772c0a270100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b502000002000000000000", + "unpacked_data": { + "message_type": "detach", + "message_type_id": 102, + "message_data": { + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" + } + } + } + }, + "/v2/assets": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, + "confirmed": true, + "first_issuance_block_time": 1730403287, + "last_issuance_block_time": 1730403287, + "supply_normalized": "1000.00000000" + }, + { + "asset": "UTXOASSET", + "asset_id": "4336417415635", + "asset_longname": null, + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "owner": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset", + "first_issuance_block_index": 199, + "last_issuance_block_index": 199, + "confirmed": true, + "first_issuance_block_time": 1730403262, + "last_issuance_block_time": 1730403262, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 159, + "last_issuance_block_index": 161, + "confirmed": true, + "first_issuance_block_time": 1730403097, + "last_issuance_block_time": 1730403104, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETB", + "asset_id": "103804245871", + "asset_longname": null, + "issuer": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "owner": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 158, + "last_issuance_block_index": 158, + "confirmed": true, + "first_issuance_block_time": 1730403094, + "last_issuance_block_time": 1730403094, + "supply_normalized": "1000.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730403055, + "last_issuance_block_time": 1730403055, + "supply_normalized": "1000.00000000" + } + ], + "next_cursor": 5, + "result_count": 10 + }, + "/v2/assets/": { + "result": { + "asset": "FAIRMINTA", + "asset_id": "1046814266082", + "asset_longname": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "", + "first_issuance_block_index": 122, + "last_issuance_block_index": 125, + "confirmed": true, + "first_issuance_block_time": 1730402957, + "last_issuance_block_time": 1730402970, + "supply_normalized": "100.00000000" + } + }, + "/v2/assets//balances": { + "result": [ + { + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "utxo": null, + "utxo_address": null, + "asset": "FAIRMINTA", + "quantity": 9500000000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "95.00000000" + }, + { + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "utxo": null, + "utxo_address": null, + "asset": "FAIRMINTA", + "quantity": 500000000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//balances/
": { + "result": [ + { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 82649965196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.49965000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//orders": { + "result": [ + { + "tx_index": 50, + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "block_index": 185, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 184, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403133, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "block_index": 208, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403323, + "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": 58, + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "block_index": 193, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 213, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1730403230, + "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": 60, + "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "block_index": 210, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 215, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730403332, + "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.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": 53, + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "block_index": 188, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 208, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "block_time": 1730403201, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 55, + "result_count": 7 + }, + "/v2/assets//matches": { + "result": [ + { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 52, + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 209, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx0_index": 52, + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 53, + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 207, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1730403201, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx0_index": 50, + "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 51, + "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 184, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1730403133, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//credits": { + "result": [ + { + "block_index": 195, + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "sweep", + "event": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_index": 61, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403247, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 125, + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "FAIRMINTA", + "quantity": 9000000000, + "calling_function": "fairmint", + "event": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "tx_index": 13, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730402970, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "90.00000000" + }, + { + "block_index": 124, + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "unescrowed fairmint", + "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_index": 12, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730402965, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 124, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "unescrowed fairmint", + "event": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_index": 11, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730402965, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 124, + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "escrowed fairmint", + "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_index": 12, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730402965, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": 12, + "result_count": 6 + }, + "/v2/assets//debits": { + "result": [ + { + "block_index": 211, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "action": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + { + "block_index": 209, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 208, + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403323, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 207, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 206, + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ], + "next_cursor": 63, + "result_count": 45 + }, + "/v2/assets//dividends": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/assets//issuances": { + "result": [ + { + "tx_index": 13, + "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "msg_index": 0, + "block_index": 125, + "asset": "FAIRMINTA", + "quantity": 9000000000, + "divisible": true, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1730402970, + "quantity_normalized": "90.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 12, + "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "msg_index": 0, + "block_index": 124, + "asset": "FAIRMINTA", + "quantity": 500000000, + "divisible": true, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1730402965, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 11, + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "msg_index": 0, + "block_index": 123, + "asset": "FAIRMINTA", + "quantity": 500000000, + "divisible": true, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1730402961, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 10, + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "msg_index": 0, + "block_index": 122, + "asset": "FAIRMINTA", + "quantity": 0, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1730402957, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//sends": { + "result": [ + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 75, + "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "block_index": 208, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "746865206d656d6f", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403323, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 74, + "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "block_index": 207, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403319, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "block_index": 206, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403304, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 15, + "result_count": 9 + }, + "/v2/assets//dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 29, + "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", + "block_index": 142, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "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": 1730403033, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 30, + "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "block_index": 150, + "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "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": 1730403063, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 33, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "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": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispensers/
": { + "result": { + "tx_index": 26, + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/assets//holders": { + "result": [ + { + "asset": "FAIRMINTA", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "quantity": 0, + "escrow": null, + "cursor_id": "balances_12", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "quantity": 500000000, + "escrow": null, + "cursor_id": "balances_13", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "quantity": 0, + "escrow": null, + "cursor_id": "balances_14", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "quantity": 9500000000, + "escrow": null, + "cursor_id": "balances_15", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "95.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispenses": { + "result": [ + { + "tx_index": 78, + "dispense_index": 0, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", + "block_index": 147, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730403051, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//subassets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/assets//fairminters": { + "result": [ + { + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1730402970, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//fairmints": { + "result": [ + { + "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "tx_index": 13, + "block_index": 125, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "asset": "FAIRMINTA", + "earn_quantity": 9000000000, + "paid_quantity": 9000000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402970, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "90.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "90.00000000" + }, + { + "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_index": 12, + "block_index": 124, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402965, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + }, + { + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402961, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/assets//fairmints/
": { + "result": [ + { + "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402961, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders": { + "result": [ + { + "tx_index": 50, + "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "block_index": 185, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 184, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403133, + "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": 53, + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "block_index": 188, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 208, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "block_time": 1730403201, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 58, + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "block_index": 193, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 213, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1730403230, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "block_index": 208, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403323, + "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": 60, + "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "block_index": 210, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 215, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730403332, + "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.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 77, + "result_count": 8 + }, + "/v2/orders/": { + "result": { + "tx_index": 55, + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "block_index": 211, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, + "expiration": 21, + "expire_index": 210, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730403346, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + }, + "/v2/orders//matches": { + "result": [ + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders//btcpays": { + "result": [ + { + "tx_index": 54, + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "block_index": 188, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "btc_amount": 2000, + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "status": "valid", + "confirmed": true, + "block_time": 1730403201, + "btc_amount_normalized": "0.00002000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders//": { + "result": [ + { + "tx_index": 53, + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "block_index": 188, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 208, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1730403201, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 55, + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "block_index": 211, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, + "expiration": 21, + "expire_index": 210, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1730403346, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", + "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": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "block_index": 185, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 184, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403133, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "block_index": 208, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403323, + "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": 58, + "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "block_index": 193, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 213, + "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": 1730403230, + "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": 60, + "result_count": 7 + }, + "/v2/orders///matches": { + "result": [ + { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 52, + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 209, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx0_index": 52, + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 53, + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 207, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403201, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx0_index": 50, + "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 51, + "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 184, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403133, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/order_matches": { + "result": [ + { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 52, + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 187, + "tx1_block_index": 189, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 209, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx0_index": 52, + "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 53, + "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 186, + "tx1_block_index": 187, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 207, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1730403201, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx0_index": 50, + "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 51, + "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 163, + "tx1_block_index": 164, + "block_index": 185, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 184, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1730403133, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_index": 60, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_index": 55, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 210, + "block_index": 210, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 230, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets/": { + "error": "Not found" + }, + "/v2/bets//matches": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets//resolutions": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/burns": { + "result": [ + { + "tx_index": 9, + "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "block_index": 121, + "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", + "burned": 50000000, + "earned": 74999996667, + "status": "valid", + "confirmed": true, + "block_time": 1730402953, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 8, + "tx_hash": "d7fa70649ea7b362563a38e10be7bb459b26276c1950e86d5ec3aa76fc3bc32a", + "block_index": 120, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "burned": 50000000, + "earned": 74999996833, + "status": "valid", + "confirmed": true, + "block_time": 1730402949, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 7, + "tx_hash": "abaa0b2b49bcc429f1201f0bdc67e04dbbbb89ad7afea7f70f596fe76347a645", + "block_index": 119, + "source": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h", + "burned": 50000000, + "earned": 74999997000, + "status": "valid", + "confirmed": true, + "block_time": 1730402945, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 6, + "tx_hash": "39121377e6d73b9b1aa803b5ff43fad8d6344631c3e94760d544053976ded12d", + "block_index": 118, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "burned": 50000000, + "earned": 74999997167, + "status": "valid", + "confirmed": true, + "block_time": 1730402941, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 5, + "tx_hash": "0353df7b0665acf84123ac3e6bedb5fd38ae021d8e9a8e5988ed27f3afdb8822", + "block_index": 117, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "burned": 50000000, + "earned": 74999997333, + "status": "valid", + "confirmed": true, + "block_time": 1730402938, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + } + ], + "next_cursor": 4, + "result_count": 10 + }, + "/v2/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 29, + "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", + "block_index": 142, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "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": 1730403033, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 30, + "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "block_index": 150, + "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "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": 1730403063, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 63, + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "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": 1730403258, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 33, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "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": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/dispensers//dispenses": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/dividends": { + "result": [ + { + "tx_index": 42, + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "block_index": 155, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 20000, + "status": "valid", + "confirmed": true, + "block_time": 1730403081, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/dividends/": { + "result": { + "tx_index": 42, + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "block_index": 155, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 20000, + "status": "valid", + "confirmed": true, + "block_time": 1730403081, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + }, + "/v2/dividends//credits": { + "result": [ + { + "block_index": 155, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "calling_function": "dividend", + "event": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_index": 42, + "utxo": "1140eef6b190b6b6f0f2925a8876d5001445510bc8a2838968047df3dd8aa2bb:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "confirmed": true, + "block_time": 1730403081, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events": { + "result": [ + { + "event_index": 706, + "event": "BLOCK_PARSED", + "params": { + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 + }, + "tx_hash": null, + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 705, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 704, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 211, + "btc_amount": 1000, + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 703, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "status": 0, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 701, + "result_count": 707 + }, + "/v2/events/": { + "result": { + "event_index": 706, + "event": "BLOCK_PARSED", + "params": { + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 + }, + "tx_hash": null, + "block_index": 211, + "block_time": 1730403346 + } + }, + "/v2/events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 11 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 64 + }, + { + "event": "SWEEP", + "event_count": 1 + }, + { + "event": "REFILL_DISPENSER", + "event_count": 1 + }, + { + "event": "ORDER_UPDATE", + "event_count": 16 + } + ], + "next_cursor": "ORDER_MATCH_UPDATE", + "result_count": 36 + }, + "/v2/events/": { + "result": [ + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 700, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 697, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 211, + "calling_function": "utxo move", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + }, + { + "event_index": 681, + "event": "CREDIT", + "params": { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "block_index": 210, + "calling_function": "order expired", + "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "quantity": 3000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730403332, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00003000" + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + }, + { + "event_index": 670, + "event": "CREDIT", + "params": { + "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "block_index": 209, + "calling_function": "mpma send", + "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "quantity": 10, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_time": 1730403327 + } + ], + "next_cursor": 669, + "result_count": 94 + }, + "/v2/events//count": { + "result": { + "event": "CREDIT", + "event_count": 94 + } + }, + "/v2/dispenses": { + "result": [ + { + "tx_index": 78, + "dispense_index": 0, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 64, + "dispense_index": 0, + "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 63, + "block_index": 198, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403258, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", + "block_index": 147, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 211, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "last_status_tx_hash": null, + "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730403051, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403029, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "block_index": 140, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730403025, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/sends": { + "result": [ + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "asset": "MYASSETA", + "quantity": 2000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403346, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403327, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 76, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730403327, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 30, + "result_count": 35 + }, + "/v2/issuances": { + "result": [ + { + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "msg_index": 0, + "block_index": 204, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403287, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 65, + "tx_hash": "f9fdd20a34c02388a82be3b5edf1da64f24bff88c129b705bc66bca926cb92a0", + "msg_index": 0, + "block_index": 199, + "asset": "UTXOASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403262, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 49, + "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", + "msg_index": 0, + "block_index": 162, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403118, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 48, + "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", + "msg_index": 0, + "block_index": 161, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1730403104, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 47, + "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", + "msg_index": 0, + "block_index": 160, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403101, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 19, + "result_count": 24 + }, + "/v2/issuances/": { + "result": { + "tx_index": 71, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "msg_index": 0, + "block_index": 204, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730403287, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + } + }, + "/v2/sweeps": { + "result": [ + { + "tx_index": 61, + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "block_index": 195, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730403247, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/sweeps/": { + "result": [ + { + "tx_index": 61, + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "block_index": 195, + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730403247, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/broadcasts": { + "result": [ + { + "tx_index": 25, + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "block_index": 138, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730403019, + "fee_fraction_int_normalized": "0.00000000" + }, + { + "tx_index": 24, + "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", + "block_index": 137, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730403015, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/broadcasts/": { + "result": { + "tx_index": 25, + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "block_index": 138, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730403019, + "fee_fraction_int_normalized": "0.00000000" + } + }, + "/v2/fairminters": { + "result": [ + { + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1730403085, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "tx_index": 22, + "block_index": 135, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1730403007, + "price_normalized": "0.00000050", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "tx_index": 18, + "block_index": 131, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1730402992, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "tx_index": 14, + "block_index": 130, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 130, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1730402989, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1730402970, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/fairmints": { + "result": [ + { + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403011, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403004, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402996, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "bdd5eb1e485bf37c64ccd4861e921799fad0f82b6d9debdf6cdead42a4f049e3", + "tx_index": 17, + "block_index": 129, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730402986, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": 5, + "result_count": 10 + }, + "/v2/fairmints/": { + "result": { + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730403011, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + }, + "/v2/bitcoin/addresses/utxos": { + "result": [ + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" + }, + { + "vout": 1, + "height": 210, + "value": 4949896528, + "confirmations": 2, + "amount": 49.49896528, + "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" + }, + { + "vout": 2, + "height": 158, + "value": 100000, + "confirmations": 54, + "amount": 0.001, + "txid": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32", + "address": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions": { + "result": [ + { + "tx_hash": "917d2d5ae0219497b7e65a7cf5f7912ee3b2ca5266e2be249cabad51ec227e04" + }, + { + "tx_hash": "d69560da41093afa22870cfabf1a00e92fe368dfce31d43ceb86e3dabaa80031" + }, + { + "tx_hash": "7dbd6aac5dd5a0c2a4042a1edb46acc0833d817212b23a58df59a1e1f6eed860" + }, + { + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788" + }, + { + "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b" + }, + { + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + }, + { + "tx_hash": "cdd1e312727b6ca9e108ebe17268b648a1b6a08f8504e2a70b60cc5543dffbcb" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions/oldest": { + "result": { + "block_index": 3, + "tx_hash": "210c869407569853cfda617387ef799a309015dea140ce4eb21e338f9e106fcb" + } + }, + "/v2/bitcoin/addresses/
/utxos": { + "result": [ + { + "vout": 1, + "height": 210, + "value": 4949896528, + "confirmations": 2, + "amount": 49.49896528, + "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" + }, + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/pubkey": { + "result": "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" + }, + "/v2/bitcoin/transactions/": { + "result": "0200000000010132dbb0d3e8eef8f41d294cef9f9197c56bff1dd0172d99bafd7aaf93a65a5a590100000000ffffffff03e80300000000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b500000000000000000c6a0a10d63a99d1c73db618cceb140927010000001600148611652400789612e660514167a77909605413ab0247304402205e6f7f871cd7512b9b60c82270e2ed06f13866c428aeb4902a8bba359adcf0bb022065cd247db11e751639a44542bf79a5cbe7a12c4949c48f3b7c7cf8508517dc91012102aaa71ed188f33f8ae081da50540893a4dc64fa72a7cc1552366e232739f2096900000000" + }, + "/v2/bitcoin/estimatesmartfee": { + "result": 58706 + }, + "/v2/bitcoin/getmempoolinfo": { + "result": { + "loaded": true, + "size": 1, + "bytes": 167, + "usage": 1232, + "total_fee": 0.0001, + "maxmempool": 300000000, + "mempoolminfee": 0.0, + "minrelaytxfee": 0.0, + "incrementalrelayfee": 1e-05, + "unbroadcastcount": 1, + "fullrbf": false + } + }, + "/v2/mempool/events": { + "result": [ + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79 + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "quantity": 10000, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "status": "valid", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "CREDIT", + "params": { + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "XCP", + "block_index": 211, + "calling_function": "send", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "XCP", + "block_index": 211, + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1730403350.6183352, + "btc_amount": 0, + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "destination": "", + "fee": 10000, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1730403350.6183352 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/mempool/events/": { + "result": [ + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "CREDIT", + "params": { + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "XCP", + "block_index": 211, + "calling_function": "send", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/mempool/transactions//events": { + "result": [ + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79 + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "quantity": 10000, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "status": "valid", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "CREDIT", + "params": { + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "asset": "XCP", + "block_index": 211, + "calling_function": "send", + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "asset": "XCP", + "block_index": 211, + "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "quantity": 10000, + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730403350.6183352 + }, + { + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1730403350.6183352, + "btc_amount": 0, + "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "destination": "", + "fee": 10000, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_index": 79, + "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1730403350.6183352 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/healthz": { + "result": { + "status": "Healthy" + } + }, + "/healthz": { + "result": { + "status": "Healthy" + } + }, + "/v2/events/NEW_BLOCK": { + "result": [ + { + "event_index": 691, + "event": "NEW_BLOCK", + "params": { + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_index": 211, + "block_time": 1730403346, + "difficulty": 545259519, + "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3" + }, + "tx_hash": null, + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 678, + "result_count": 111 + }, + "/v2/events/NEW_TRANSACTION": { + "result": [ + { + "event_index": 692, + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_index": 211, + "block_time": 1730403346, + "btc_amount": 1000, + "data": "0d00", + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "fee": 0, + "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 679, + "result_count": 79 + }, + "/v2/events/NEW_TRANSACTION_OUTPUT": { + "result": [ + { + "event_index": 693, + "event": "NEW_TRANSACTION_OUTPUT", + "params": { + "block_index": 211, + "btc_amount": 1000, + "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "out_index": 0, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 565, + "result_count": 5 + }, + "/v2/events/BLOCK_PARSED": { + "result": [ + { + "event_index": 706, + "event": "BLOCK_PARSED", + "params": { + "block_index": 211, + "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", + "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "transaction_count": 1, + "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", + "block_time": 1730403346 + }, + "tx_hash": null, + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 690, + "result_count": 111 + }, + "/v2/events/TRANSACTION_PARSED": { + "result": [ + { + "event_index": 705, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78 + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 689, + "result_count": 64 + }, + "/v2/events/DEBIT": { + "result": [ + { + "event_index": 699, + "event": "DEBIT", + "params": { + "action": "utxo move", + "address": null, + "asset": "XCP", + "block_index": 211, + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 2000000000, + "tx_index": 78, + "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 696, + "result_count": 75 + }, + "/v2/events/CREDIT": { + "result": [ + { + "event_index": 702, + "event": "CREDIT", + "params": { + "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "asset": "XCP", + "block_index": 211, + "calling_function": "dispense", + "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "quantity": 66, + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 700, + "result_count": 94 + }, + "/v2/events/ENHANCED_SEND": { + "result": [ + { + "event_index": 624, + "event": "ENHANCED_SEND", + "params": { + "asset": "MPMASSET", + "block_index": 205, + "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "memo": null, + "quantity": 1000, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "status": "valid", + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_index": 72, + "block_time": 1730403290, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + }, + "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "block_index": 205, + "block_time": 1730403290 + } + ], + "next_cursor": 505, + "result_count": 2 + }, + "/v2/events/MPMA_SEND": { + "result": [ + { + "event_index": 675, + "event": "MPMA_SEND", + "params": { + "asset": "XCP", + "block_index": 209, + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "status": "valid", + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_index": 76, + "block_time": 1730403327, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "block_index": 209, + "block_time": 1730403327 + } + ], + "next_cursor": 674, + "result_count": 15 + }, + "/v2/events/SEND": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_TRANSFER": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/SWEEP": { + "result": [ + { + "event_index": 548, + "event": "SWEEP", + "params": { + "block_index": 195, + "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "fee_paid": 600000, + "flags": 1, + "memo": "sweep my assets", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "status": "valid", + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_index": 61, + "block_time": 1730403247, + "fee_paid_normalized": "0.00600000" + }, + "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "block_index": 195, + "block_time": 1730403247 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ASSET_DIVIDEND": { + "result": [ + { + "event_index": 344, + "event": "ASSET_DIVIDEND", + "params": { + "asset": "MYASSETA", + "block_index": 155, + "dividend_asset": "XCP", + "fee_paid": 20000, + "quantity_per_unit": 100000000, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "status": "valid", + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_index": 42, + "block_time": 1730403081, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + }, + "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "block_index": 155, + "block_time": 1730403081 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/RESET_ISSUANCE": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_CREATION": { + "result": [ + { + "event_index": 615, + "event": "ASSET_CREATION", + "params": { + "asset_id": "101158363923", + "asset_longname": null, + "asset_name": "MPMASSET", + "block_index": 204, + "block_time": 1730403287 + }, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_time": 1730403287 + } + ], + "next_cursor": 574, + "result_count": 12 + }, + "/v2/events/ASSET_ISSUANCE": { + "result": [ + { + "event_index": 616, + "event": "ASSET_ISSUANCE", + "params": { + "asset": "MPMASSET", + "asset_events": "creation", + "asset_longname": null, + "block_index": 204, + "call_date": 0, + "call_price": 0.0, + "callable": false, + "description": "My super asset B", + "description_locked": false, + "divisible": true, + "fee_paid": 50000000, + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "locked": false, + "quantity": 100000000000, + "reset": false, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "status": "valid", + "transfer": false, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_index": 71, + "block_time": 1730403287, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "block_index": 204, + "block_time": 1730403287 + } + ], + "next_cursor": 575, + "result_count": 24 + }, + "/v2/events/ASSET_DESTRUCTION": { + "result": [ + { + "event_index": 554, + "event": "ASSET_DESTRUCTION", + "params": { + "asset": "XCP", + "block_index": 196, + "quantity": 1, + "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "status": "valid", + "tag": "64657374726f79", + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_index": 62, + "block_time": 1730403251, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + }, + "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "block_index": 196, + "block_time": 1730403251 + } + ], + "next_cursor": 157, + "result_count": 2 + }, + "/v2/events/OPEN_ORDER": { + "result": [ + { + "event_index": 688, + "event": "OPEN_ORDER", + "params": { + "block_index": 210, + "expiration": 21, + "expire_index": 231, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "UTXOASSET", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "status": "open", + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_index": 77, + "block_time": 1730403332, + "give_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + } + ], + "next_cursor": 536, + "result_count": 8 + }, + "/v2/events/ORDER_MATCH": { + "result": [ + { + "event_index": 686, + "event": "ORDER_MATCH", + "params": { + "backward_asset": "BTC", + "backward_quantity": 1000, + "block_index": 210, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 1000, + "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "match_expire_index": 230, + "status": "pending", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_block_index": 194, + "tx0_expiration": 21, + "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_index": 60, + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_block_index": 210, + "tx1_expiration": 21, + "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_index": 55, + "block_time": 1730403332, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + } + ], + "next_cursor": 498, + "result_count": 4 + }, + "/v2/events/ORDER_UPDATE": { + "result": [ + { + "event_index": 694, + "event": "ORDER_UPDATE", + "params": { + "status": "expired", + "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 685, + "result_count": 16 + }, + "/v2/events/ORDER_FILLED": { + "result": [ + { + "event_index": 489, + "event": "ORDER_FILLED", + "params": { + "status": "filled", + "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21" + }, + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "block_index": 188, + "block_time": 1730403201 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_MATCH_UPDATE": { + "result": [ + { + "event_index": 680, + "event": "ORDER_MATCH_UPDATE", + "params": { + "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "status": "expired" + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + } + ], + "next_cursor": 488, + "result_count": 3 + }, + "/v2/events/BTC_PAY": { + "result": [ + { + "event_index": 490, + "event": "BTC_PAY", + "params": { + "block_index": 188, + "btc_amount": 2000, + "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "status": "valid", + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_index": 54, + "block_time": 1730403201, + "btc_amount_normalized": "0.00002000" + }, + "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "block_index": 188, + "block_time": 1730403201 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/CANCEL_ORDER": { + "result": [ + { + "event_index": 530, + "event": "CANCEL_ORDER", + "params": { + "block_index": 193, + "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "status": "valid", + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_index": 59, + "block_time": 1730403230 + }, + "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "block_index": 193, + "block_time": 1730403230 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_EXPIRATION": { + "result": [ + { + "event_index": 695, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 211, + "order_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_time": 1730403346 + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 655, + "result_count": 4 + }, + "/v2/events/ORDER_MATCH_EXPIRATION": { + "result": [ + { + "event_index": 683, + "event": "ORDER_MATCH_EXPIRATION", + "params": { + "block_index": 210, + "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_time": 1730403332 + }, + "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "block_index": 210, + "block_time": 1730403332 + } + ], + "next_cursor": 464, + "result_count": 2 + }, + "/v2/events/OPEN_DISPENSER": { + "result": [ + { + "event_index": 560, + "event": "OPEN_DISPENSER", + "params": { + "asset": "TESTLOCKDESC", + "block_index": 197, + "dispense_count": 0, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 10000, + "oracle_address": null, + "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "satoshirate": 1, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "status": 0, + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_index": 63, + "block_time": 1730403255, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001" + }, + "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "block_index": 197, + "block_time": 1730403255 + } + ], + "next_cursor": 272, + "result_count": 5 + }, + "/v2/events/DISPENSER_UPDATE": { + "result": [ + { + "event_index": 703, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "status": 0, + "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 567, + "result_count": 8 + }, + "/v2/events/REFILL_DISPENSER": { + "result": [ + { + "event_index": 261, + "event": "REFILL_DISPENSER", + "params": { + "asset": "XCP", + "block_index": 144, + "destination": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "dispense_quantity": 10, + "dispenser_tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", + "tx_index": 31, + "block_time": 1730403041, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000010" + }, + "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", + "block_index": 144, + "block_time": 1730403041 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/DISPENSE": { + "result": [ + { + "event_index": 704, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 211, + "btc_amount": 1000, + "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 568, + "result_count": 5 + }, + "/v2/events/BROADCAST": { + "result": [ + { + "event_index": 218, + "event": "BROADCAST", + "params": { + "block_index": 138, + "fee_fraction_int": 0, + "locked": false, + "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "status": "valid", + "text": "price-USD", + "timestamp": 4003903983, + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_index": 25, + "value": 66600.0, + "block_time": 1730403019, + "fee_fraction_int_normalized": "0.00000000" + }, + "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "block_index": 138, + "block_time": 1730403019 + } + ], + "next_cursor": 213, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINTER": { + "result": [ + { + "event_index": 349, + "event": "NEW_FAIRMINTER", + "params": { + "asset": "A95428958968845068", + "asset_longname": "MYASSETA.SUBMYASSETA", + "asset_parent": "MYASSETA", + "block_index": 156, + "burn_payment": false, + "description": "", + "divisible": true, + "end_block": 0, + "hard_cap": 0, + "lock_description": false, + "lock_quantity": false, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 0, + "pre_minted": false, + "premint_quantity": 0, + "price": 1, + "quantity_by_price": 5, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "start_block": 0, + "status": "open", + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_index": 43, + "block_time": 1730403085, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "block_index": 156, + "block_time": 1730403085 + } + ], + "next_cursor": 196, + "result_count": 5 + }, + "/v2/events/FAIRMINTER_UPDATE": { + "result": [ + { + "event_index": 155, + "event": "FAIRMINTER_UPDATE", + "params": { + "status": "closed", + "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb" + }, + "tx_hash": null, + "block_index": 130, + "block_time": 1730402989 + } + ], + "next_cursor": 110, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINT": { + "result": [ + { + "event_index": 207, + "event": "NEW_FAIRMINT", + "params": { + "asset": "FAIRMINTD", + "block_index": 136, + "commission": 0, + "earn_quantity": 40, + "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "paid_quantity": 34, + "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "status": "valid", + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_index": 23, + "block_time": 1730403011, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "block_index": 136, + "block_time": 1730403011 + } + ], + "next_cursor": 190, + "result_count": 10 + }, + "/v2/events/ATTACH_TO_UTXO": { + "result": [ + { + "event_index": 609, + "event": "ATTACH_TO_UTXO", + "params": { + "asset": "UTXOASSET", + "block_index": 203, + "destination": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4:0", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "status": "valid", + "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_index": 70, + "block_time": 1730403282, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "block_index": 203, + "block_time": 1730403282 + } + ], + "next_cursor": 584, + "result_count": 5 + }, + "/v2/events/DETACH_FROM_UTXO": { + "result": [ + { + "event_index": 601, + "event": "DETACH_FROM_UTXO", + "params": { + "asset": "UTXOASSET", + "block_index": 202, + "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "9afb07a101a977781dfcfb57615cbeabce39e3b22d61304081f3cf6177013f33:0", + "status": "valid", + "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_index": 69, + "block_time": 1730403279, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "block_index": 202, + "block_time": 1730403279 + } + ], + "next_cursor": 311, + "result_count": 2 + }, + "/v2/events/UTXO_MOVE": { + "result": [ + { + "event_index": 701, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 211, + "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "msg_index": 1, + "quantity": 2000000000, + "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "status": "valid", + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_index": 78, + "block_time": 1730403346, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "block_index": 211, + "block_time": 1730403346 + } + ], + "next_cursor": 698, + "result_count": 11 + }, + "/v2/events/BURN": { + "result": [ + { + "event_index": 70, + "event": "BURN", + "params": { + "block_index": 121, + "burned": 50000000, + "earned": 74999996667, + "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", + "status": "valid", + "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_index": 9, + "block_time": 1730402953, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "block_index": 121, + "block_time": 1730402953 + } + ], + "next_cursor": 65, + "result_count": 10 + } +} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 72b59de344..0202b25337 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -481,6 +481,14 @@ def generate_regtest_fixtures(db): regtest_fixtures["$LAST_ORDER_BLOCK"] = row["block_index"] regtest_fixtures["$LAST_ORDER_TX_HASH"] = row["tx_hash"] + # block and tx with UTXOASSET orders + cursor.execute( + "SELECT block_index, tx_hash FROM orders WHERE give_asset='UTXOASSET' ORDER BY rowid DESC LIMIT 1" + ) + row = cursor.fetchone() + regtest_fixtures["$LAST_UTXOASSET_ORDER_BLOCK"] = row["block_index"] + regtest_fixtures["$LAST_UTXOASSET_ORDER_TX_HASH"] = row["tx_hash"] + # block and tx with fairminter cursor.execute("SELECT block_index, tx_hash FROM fairminters ORDER BY rowid DESC LIMIT 1") row = cursor.fetchone() diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 65bf6e2780..88128eb835 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -411,4 +411,13 @@ } ], }, + { + "title": "Re-Attach asset to UTXO", + "transaction": "attach", + "source": "$ADDRESS_7", + "params": { + "asset": "UTXOASSET", + "quantity": 10 * 10**8, + }, + }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py index 11240201b0..92320ce817 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py @@ -338,11 +338,11 @@ def to_hex(x): }, "controls": [ { - "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND", "result": [ { "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_10", + "event_index": "$EVENT_INDEX_13", "params": { "asset": "XCP", "block_index": "$BLOCK_INDEX", @@ -359,7 +359,7 @@ def to_hex(x): }, { "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_9", + "event_index": "$EVENT_INDEX_12", "params": { "asset": "MPMASSET", "block_index": "$BLOCK_INDEX", @@ -376,7 +376,7 @@ def to_hex(x): }, { "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_8", + "event_index": "$EVENT_INDEX_11", "params": { "asset": "MPMASSET", "block_index": "$BLOCK_INDEX", @@ -391,86 +391,6 @@ def to_hex(x): }, "tx_hash": "$TX_HASH", }, - { - "event": "DEBIT", - "event_index": "$EVENT_INDEX_7", - "params": { - "action": "mpma send", - "address": "$ADDRESS_2", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "DEBIT", - "event_index": "$EVENT_INDEX_6", - "params": { - "action": "mpma send", - "address": "$ADDRESS_2", - "asset": "MPMASSET", - "block_index": "$BLOCK_INDEX", - "event": "$TX_HASH", - "quantity": 20, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_5", - "params": { - "address": "$ADDRESS_1", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", - "params": { - "address": "$ADDRESS_4", - "asset": "MPMASSET", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_3", - "params": { - "address": "$ADDRESS_3", - "asset": "MPMASSET", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, ], }, ], @@ -488,7 +408,7 @@ def to_hex(x): }, "controls": [ { - "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND", "result": [ { "event": "MPMA_SEND", @@ -541,86 +461,6 @@ def to_hex(x): }, "tx_hash": "$TX_HASH", }, - { - "event": "DEBIT", - "event_index": "$EVENT_INDEX_7", - "params": { - "action": "mpma send", - "address": "$ADDRESS_2", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "DEBIT", - "event_index": "$EVENT_INDEX_6", - "params": { - "action": "mpma send", - "address": "$ADDRESS_2", - "asset": "MPMASSET", - "block_index": "$BLOCK_INDEX", - "event": "$TX_HASH", - "quantity": 20, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_5", - "params": { - "address": "$ADDRESS_1", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", - "params": { - "address": "$ADDRESS_4", - "asset": "MPMASSET", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_3", - "params": { - "address": "$ADDRESS_3", - "asset": "MPMASSET", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, ], }, ], 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 a5b93eda05..249b0a8676 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -1,11 +1,11 @@ SCENARIO = [ # open order for dredd Cancel test { - "title": "Open Sell XCP for BTC order", + "title": "Open Sell UTXOASSET for BTC order", "transaction": "order", - "source": "$ADDRESS_1", + "source": "$ADDRESS_7", "params": { - "give_asset": "XCP", + "give_asset": "UTXOASSET", "give_quantity": 1000, "get_asset": "BTC", "get_quantity": 1000, From 45e425f31f3309e86e95766677fce37552e42813 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 20:25:44 +0000 Subject: [PATCH 026/138] Restore utxo.py; fix tests --- apiary.apib | 3886 +++++++++-------- .../counterpartycore/lib/api/compose.py | 45 +- .../counterpartycore/lib/api/routes.py | 1 + .../counterpartycore/lib/messages/utxo.py | 206 +- .../test/fixtures/api_v2_fixtures.json | 204 +- .../test/regtest/apidoc/apicache.json | 3457 +++++++-------- .../test/regtest/genapidoc.py | 2 + 7 files changed, 4094 insertions(+), 3707 deletions(-) diff --git a/apiary.apib b/apiary.apib index ec0cc2645a..37346310cd 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-31 19:36:03.060871. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-31 20:24:46.032466. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", "block_index": 211, - "block_time": 1730403346, + "block_time": 1730406268, "difficulty": 545259519, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3" + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4" }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 678, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", "block_index": 211, - "block_time": 1730403346, + "block_time": 1730406268, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "fee": 0, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 679, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "out_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 690, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 689, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 211, - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "block_time": 1730403346, + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 696, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 700, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "quantity": 1000, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "tx_index": 72, - "block_time": 1730403290, + "block_time": 1730406226, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_time": 1730403290 + "block_time": 1730406226 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_time": 1730403327 + "block_time": 1730406251 } ], "next_cursor": 674, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "status": "valid", - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "tx_index": 61, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "block_time": 1730403247 + "block_time": 1730406182 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "tx_index": 42, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "block_time": 1730403081 + "block_time": 1730406015 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730403287 + "block_time": 1730406221 }, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_time": 1730403287 + "block_time": 1730406221 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", "transfer": false, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "tx_index": 71, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_time": 1730403287 + "block_time": 1730406221 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", "tag": "64657374726f79", - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "tx_index": 62, - "block_time": 1730403251, + "block_time": 1730406186, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "block_index": 196, - "block_time": 1730403251 + "block_time": 1730406186 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "status": "open", - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "tx_index": 77, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, @@ -734,9 +734,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": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 536, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "tx0_index": 60, - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx1_index": 55, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 685, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21" + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e" }, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "block_time": 1730403201 + "block_time": 1730406148 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "status": "expired" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "tx_index": 54, - "block_time": 1730403201, + "block_time": 1730406148, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "block_time": 1730403201 + "block_time": 1730406148 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "tx_index": 59, - "block_time": 1730403230 + "block_time": 1730406175 }, - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "block_index": 193, - "block_time": 1730403230 + "block_time": 1730406175 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "block_time": 1730403346 + "order_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_time": 1730406268 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 655, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "block_time": 1730403332 + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_time": 1730406255 }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "satoshirate": 1, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": 0, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "tx_index": 63, - "block_time": 1730403255, + "block_time": 1730406190, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 197, - "block_time": 1730403255 + "block_time": 1730406190 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "destination": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", "dispense_quantity": 10, - "dispenser_tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", + "dispenser_tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", "tx_index": 31, - "block_time": 1730403041, + "block_time": 1730405973, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", + "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", "block_index": 144, - "block_time": 1730403041 + "block_time": 1730405973 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "tx_index": 25, "value": 66600.0, - "block_time": 1730403019, + "block_time": 1730405941, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "block_time": 1730403019 + "block_time": 1730405941 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "start_block": 0, "status": "open", - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "block_index": 156, - "block_time": 1730403085 + "block_time": 1730406020 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb" + "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6" }, "tx_hash": null, "block_index": 130, - "block_time": 1730402989 + "block_time": 1730405912 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "paid_quantity": 34, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "block_index": 136, - "block_time": 1730403011 + "block_time": 1730405934 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4:0", + "destination": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "status": "valid", - "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", "tx_index": 70, - "block_time": 1730403282, + "block_time": 1730406218, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", "block_index": 203, - "block_time": 1730403282 + "block_time": 1730406218 } ], "next_cursor": 584, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "9afb07a101a977781dfcfb57615cbeabce39e3b22d61304081f3cf6177013f33:0", + "source": "3385d762842ee7143f6360ba792c541e54eec1c2b12d02524242cc6e80bc83b8:0", "status": "valid", - "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", "tx_index": 69, - "block_time": 1730403279, + "block_time": 1730406214, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", "block_index": 202, - "block_time": 1730403279 + "block_time": 1730406214 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "msg_index": 1, "quantity": 2000000000, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", "status": "valid", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 698, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", + "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", "status": "valid", - "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", "tx_index": 9, - "block_time": 1730402953, + "block_time": 1730405878, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", "block_index": 121, - "block_time": 1730402953 + "block_time": 1730405878 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", "difficulty": 545259519, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", - "block_time": 1730403332, - "previous_block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_time": 1730406255, + "previous_block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", "difficulty": 545259519, - "ledger_hash": "860400663c2e932d0e9952400f9aa01415cf279d35a7f5e81f6dabc0c5c16716", - "txlist_hash": "e740759710f6964c4037eeaee13c0f59a883c9a48fdf2798da25ce8438070ff2", - "messages_hash": "a3c888da6448660b1bbea3fd26281d325c71c1d2e731d66a9c0342223aa2b810", + "ledger_hash": "d4ce0b9663ffc7961b889b2212e125f1916a9a3308be5ce3612b795aae79b7ef", + "txlist_hash": "cd8ef9a5b728358bc1e49c13423fab5fb1a804fe1840a8a1ff460724a8988914", + "messages_hash": "2af09ce52de0341d6f5c0d7123b65a3e6d4d8c63b8e1df8de88d12c8b8500d8f", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", - "block_time": 1730403327, - "previous_block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_time": 1730406251, + "previous_block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", "difficulty": 545259519, - "ledger_hash": "b7115ca664a3927bdf9fa8e78e931529e0a589d4a58c41cb8bd04d4c2748dc67", - "txlist_hash": "b257b31a58aa81531003e0ebc2df8f92e3456d8056f1a6b98fc100fd8f032e17", - "messages_hash": "49c4f6db87eed4383892669e056c16350c8b5224c2d3df3d509a1ecbdd2d24f4", + "ledger_hash": "7c2efb0199e521f8f8afb2d8bd297b5537a2f65f2998d13311c9c8ec4cccdd3a", + "txlist_hash": "72ab85e444eabc4bd6e7c2cb0d2df438ec16ac03dd4a3374abcc67170e7cb83e", + "messages_hash": "6661decf322d55e2f41d5b12d85d7384520e75ec1a1c539137a0af99f6877717", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", - "block_time": 1730403323, - "previous_block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", + "block_time": 1730406238, + "previous_block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", "difficulty": 545259519, - "ledger_hash": "a479d83f0ce588b3e69e8d3dceaee54a27eae58a356c5345c578e0142070cb92", - "txlist_hash": "8606128c6920f5c8b9b69bf46e92fb0f7d5718957bfa6601d65f85fdf47445bf", - "messages_hash": "a442f4dceb5c16cae6708af4ed8e950b41582e2eb726d47ac929c05c5b9add4f", + "ledger_hash": "a2b0ad8247a5e0ac9b7a77f62e53636fbd291b52b6abb3a365411be191b628bd", + "txlist_hash": "0029ad27750de58fd2ac1ea9aeb2e10a7b1ab66af05e6614df5f7057f064ce50", + "messages_hash": "cc5c2fd236b9f3d4670de7ea68a077f22424799fd8fdd528d2b5ba0ab18f0fb8", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", - "block_time": 1730403319, - "previous_block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_time": 1730406233, + "previous_block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", "difficulty": 545259519, - "ledger_hash": "95ee8738aa0716c11715fcdf2940c0badd4cc638cd6778abadaae54b5642a138", - "txlist_hash": "44520822dd23dc5829c97c92ee5790f1d696765d127fcf6f6f6336df022ad5aa", - "messages_hash": "42424d8034056766f6d9001fa6d2884ac46f2fd5aff54a9bd31b7a47241e5aeb", + "ledger_hash": "896005f69ce0542be870a9bc8dd5c2f61235184519e872912387a5bdae84ede7", + "txlist_hash": "834ec0b0c35273eaf22b38a9811739cb6d7a36d6dcd872056cd0f68164c414e3", + "messages_hash": "743eb12d7456b0288b57286aa5afc73e3f8b8cb9f386dd3237ce95cc23ef9273", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", "difficulty": 545259519, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814` (str, required) - The index of the block to return + + block_hash: `7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", "difficulty": 545259519, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 704, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 703, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" } ], "next_cursor": 701, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 700, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 697, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 211, - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "object_id": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "block_index": 211, "confirmed": true, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "status": "valid", "confirmed": true, - "block_time": 1730403230 + "block_time": 1730406175 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "block_index": 196, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730403251, + "block_time": 1730406186, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, "block_index": 156, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "block_hash": "290e193664c1ebc43cd1175ca88f02b983466875dc7451976e6b80e4f0a22323", - "block_time": 1730403019, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "1103d76d3eeade89f6e435fd71e35d46b7d15321773d4a1a39805e81e7229619", + "block_time": 1730405941, + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac:1 2 ", + "utxos_info": " 265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "block_hash": "56bbd14427fa9195be5d86c2bfd5ce01d55ae2c677ba2a0d7b58c4c71c1d0ff3", - "block_time": 1730403201, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "2cad70b442ed8b87044cd2038bb62cda92c3545e9760deccee0617da3ddc19a1", + "block_time": 1730406148, + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "btc_amount": 2000, "fee": 10000, - "data": "0b6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "data": "0b514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "supported": true, - "utxos_info": " 44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4:0 3 1", + "utxos_info": " b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "block_index": 193, - "block_hash": "2966359000b1eb12895e13b66c529ae5236fddada069937dfa058dbfe2f6af7e", - "block_time": 1730403230, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "5ee8f2ad46acdc8b47468a7b1139545732d0d239a4d8392e33174d03667817df", + "block_time": 1730406175, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "data": "4611c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "supported": true, - "utxos_info": " 396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4:1 2 ", + "utxos_info": " 0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "block_index": 196, - "block_hash": "1d82d9c109b12070c07426d979cd8ce17f3ab1d1f518862c4e7ecb08c9d489e9", - "block_time": 1730403251, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "block_hash": "4fef5221bd4d6d9597e7eef1318e69f666524c27144127bbb7a6b7426b48bfe4", + "block_time": 1730406186, + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "fe796ee0c6d7bcaa11a4ad0b53b8961e064e75e2b635ccca7056c031649ce9e3:1 8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 2 ", + "utxos_info": "96c1daa333b0ad90a1465c6d9f2a17e8a37478832ebf5370a833a88a551d5758:1 6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 197, - "block_hash": "5196ca6ff53b4797b4c12445477159f94e838c8feca6b47c7fb7757b19185e88", - "block_time": 1730403255, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "45c183e961a25d45c59f8042057a2e8746cb030855a118f9568e4dc31d644764", + "block_time": 1730406190, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc:1 2 ", + "utxos_info": " 97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "block_hash": "6066131245eae26512e8a45ad23a94553a1c7625699d4d222879aaa0b1d9a10a", - "block_time": 1730403081, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "565253b5dba3c95df9c6fc48fde08a831c64a61f13abb355ccd493053d94c21a", + "block_time": 1730406015, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e:1 2 ", + "utxos_info": " 5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_hash": "20e7d5dbb7165402d4822e58299647fa3cec122b63e4d401d4bfcfa477908fd3", - "block_time": 1730403287, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0ad9c63277873202959baabc06121e31a5c13f9689a04b505e1b9115622c0e19", + "block_time": 1730406221, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4:1 2 ", + "utxos_info": " 624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", - "block_time": 1730403332, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_time": 1730406255, + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b:1 2 ", + "utxos_info": " 25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", - "block_time": 1730403290, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", + "block_time": 1730406226, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "supported": true, - "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", - "block_time": 1730403327, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_time": 1730406251, + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2:0 4 ", + "utxos_info": " f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "block_hash": "6324d7e298b139025fcc8706fd3a1fb370a9215332b0aa8c2ac32044d1463c2f", - "block_time": 1730403247, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "block_hash": "4914a116461e96eec956179279d2e7009defd43b06ba4f899078cdcb741aabfa", + "block_time": 1730406182, + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480281ea9b25a079b4de6a2f74ae46373dbd79215aa017377656570206d7920617373657473", + "data": "04803e7d7661faa6389041324526ba09299c650ab598017377656570206d7920617373657473", "supported": true, - "utxos_info": " 375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788:1 2 ", + "utxos_info": " 8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", "block_index": 203, - "block_hash": "21c7e4713ee0e91d9f6913676f286e62afbc5d4d18c3806c6bf09c9a7df57e1d", - "block_time": 1730403282, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "block_hash": "74c066d08da34292468935a3fd1f88f966dd4816a0d95e3cd5537ff416c54145", + "block_time": 1730406218, + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04:1 96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4:0 3 1", + "utxos_info": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53:1 6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", "block_index": 202, - "block_hash": "7375d9f50c0a0a4a6c3568967edbc99be92cef1fade0f532f26322420ec92469", - "block_time": 1730403279, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "block_hash": "591003c6706587ce7081af8782d2af24d440eb75a2be1671e0234bd2bf8e40b1", + "block_time": 1730406214, + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "destination": null, "btc_amount": 0, "fee": 22972, "data": "6630", "supported": true, - "utxos_info": "9afb07a101a977781dfcfb57615cbeabce39e3b22d61304081f3cf6177013f33:0 e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04:1 2 ", + "utxos_info": "3385d762842ee7143f6360ba792c541e54eec1c2b12d02524242cc6e80bc83b8:0 82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 77, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", - "block_time": 1730403332, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_time": 1730406255, + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b:1 2 ", + "utxos_info": " 25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106ce1f7edf3b840218ad649054df5a093a48678e8b9840e8e41c101bc30fe7cf210000000000ffffffff0137aea6314c69f2981a5f316dcc8bf930e450c0c91c9595f6bab0fb5b2b150f0000000000ffffffff6bcebed9656cfcb53f2a4361f637002a7ee81204e4f340ad557f18ecc7c220380000000000ffffffffd17cd665bd97550c354f5062c3a4ac4b2bc0c6ed7d539cb7b23f18d4a295c4930000000000ffffffff31ae8dd8f3fb99e6d704ae8070356162db31c843899b88f168fb6ce90d5b21f60000000000ffffffffc62fbdb6ce1a82b38222cf01e13ca8be6882ab6064e00fc21fec7c985c2aba560000000000ffffffff04e803000000000000695121023b0050954ab0e1b4a1eb6462aa8d49ea28812d2b594c2777851d7d236c56021e21038af9bc320976909c46ca607c0db9dd7b5daa9d7bbd8f24cf9b484296b3bfa149210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee803000000000000695121033b0050954ab0e1b4a1a582c3dd112511dbd5ae6ad49d69c4217a2e1b8a2647222102a0233ceebb60558ac39a0e1885e1594e1b545b0a1ee9394fb916eb24e9b83a55210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee80300000000000069512103150050954ab0e1b4a1e864212a5bc172a80e79d0c137e1b0491f0e76ef4b28fb210220233ce57da144036b9a0e1885e1594e49545b0a1ee9394fb356eb24e9b83a3a210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae387923fc06000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0247304402204d6affe02d57e3fae0777aea5cc9b04cc59846ae9c00a1efee6901cac82cbe3b022014c92878e948ba87c64ea8bebbacecf9dc9840c46e2f0e2caca94c276c8f55a101210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022048da182195b00fac5f995e11efa6d8712eac6a3c81a708fe9042c23cbf2664e20220784a38465df96de32726ea26c19a0b7e10f2fd3a33260e56df0de38ef9a25d9401210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022059b2f7cd8750890234e74cbf5d3ef800c1d05cb9baac40f0096a6cf52858e554022041557a6f0d08439076738bb69107c2375d9e7b37e70a832072e2ad6a565ce1c201210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f0247304402200ca5b69fdc32a63860f5c2a06d8fb142d0435a1e479d848cbebba9ebb333500c022058599835f6db5bb661e1c6253649956dbe480493e6bebcc517e7a180a468ccd301210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022037a7210deb7b4f41a6fa3019e2fc498986592d7a781e1c6ced1a30594839525602205ae1193aaa05c007095c95c05ea23436a08f751761552d08a7adbc465fbef5ee01210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f02473044022066273dcbcca8b145ed48fbe79dbb98e38b295e0a2efe5759a04dcd82a6afa7f3022041609ea67c325a2333adf3ee4805edf2d6b5aa8c1e0f522e578002ad2de7b28d01210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106d3a5d8d776e316f54297e96a578b0e38c6a7ef5039c2be4c4c30b6c839bbb0d00000000000ffffffffd29dd6da0578bafa05e58cc85383cff4de4619a767b08ab90119914aa3643ebe0000000000ffffffff551850045ca30b728f972a89208731682ad499a34d6a93d2af82d64c0f3e19ae0000000000ffffffff5413f5d36a74d5fbddbc56dd947373a10e2b66270db8a0f5fccb10609347c9420000000000ffffffffc61a45a32b82ccd62ee69afe65cd9156ba4d136b4ae6757e9b48392478111ec00000000000ffffffff40875ad563852d749770517cec8b8650082cc6261440e21dacc3eb5e416691fa0000000000ffffffff04e803000000000000695121020f2a3e01593e8c1560433c0e89fefbcbc5659f312532a00541343cbd81adf89b210234396e80d3a834cd9f513c0db1a6c8a69e9f1680d559e43b65a76df15e0d534a2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee803000000000000695121020f2a3e01593e8c1560d07d3f4c5006e766f522879a9750e49a15960d140af62321021d85ee548fe326a832d4b110643aa09a3c84e00539f7b3d63eb774a324ab6b8c2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee803000000000000695121032e2a3e01593e8c1560403c0d09763cee4f69478d2f0f44cff13b1e1414ce228221031d85ee548fe32682276124a5d8f0a09a3c84e00539fd36bb5bda1b90a4ab6bdf2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae387923fc0600000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e024730440220310f4c6dfc17b2e1a557200578a74e38deaea2bc9a20b8fd3094a81c88683d4902205d986a6b70503dcb055ce8e758b0aaa39f9b839bbb8b035bac4af6be93c18b47012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac980247304402204112cff32842a7136316bc88f184b9d5e0c456f8a1f5a813d698011eef3328a702204cc4f653207db7196acbea2163c4eadfe78d6c6de212e665128156d76575b123012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac980247304402203fba96da04ee2225340c5bfe59fd914c775b8712b7a9fceb282022626d2cef40022017e707dec6d08a1e4a9681755dfed622714afa60c73eb755cd73524c71328f36012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac980247304402203b094b12e2847292b2772ced709f988625cb1fb481cb6e5fc8ac1eb0d482476f0220197720fb83a9da39867ba32c6c1f261416441fdc6032b07d8c4e895106af24f5012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98024730440220355395316c2aec05b55ed3f5a8dbc481d70514776bb71440f67c0c9185954d13022049dbb52a4e10802f21dc040fb6bca693d03414422a50e6ab0ef6fb05f498d64c012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98024730440220584b58ca464d6773d95aea04d85ffcd23b7b0463fda9bfa4c42c521d5efdc20f02205ef2912f1dd27fca67c5ad2bdba2fda83f2600b9d9412b69de643ac60f94b892012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9800000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ce1f7edf3b840218ad649054df5a093a48678e8b9840e8e41c101bc30fe7cf21", + "hash": "d3a5d8d776e316f54297e96a578b0e38c6a7ef5039c2be4c4c30b6c839bbb0d0", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "0137aea6314c69f2981a5f316dcc8bf930e450c0c91c9595f6bab0fb5b2b150f", + "hash": "d29dd6da0578bafa05e58cc85383cff4de4619a767b08ab90119914aa3643ebe", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6bcebed9656cfcb53f2a4361f637002a7ee81204e4f340ad557f18ecc7c22038", + "hash": "551850045ca30b728f972a89208731682ad499a34d6a93d2af82d64c0f3e19ae", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d17cd665bd97550c354f5062c3a4ac4b2bc0c6ed7d539cb7b23f18d4a295c493", + "hash": "5413f5d36a74d5fbddbc56dd947373a10e2b66270db8a0f5fccb10609347c942", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "31ae8dd8f3fb99e6d704ae8070356162db31c843899b88f168fb6ce90d5b21f6", + "hash": "c61a45a32b82ccd62ee69afe65cd9156ba4d136b4ae6757e9b48392478111ec0", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c62fbdb6ce1a82b38222cf01e13ca8be6882ab6064e00fc21fec7c985c2aba56", + "hash": "40875ad563852d749770517cec8b8650082cc6261440e21dacc3eb5e416691fa", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "5121023b0050954ab0e1b4a1eb6462aa8d49ea28812d2b594c2777851d7d236c56021e21038af9bc320976909c46ca607c0db9dd7b5daa9d7bbd8f24cf9b484296b3bfa149210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + "script_pub_key": "5121020f2a3e01593e8c1560433c0e89fefbcbc5659f312532a00541343cbd81adf89b210234396e80d3a834cd9f513c0db1a6c8a69e9f1680d559e43b65a76df15e0d534a2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" }, { "value": 1000, - "script_pub_key": "5121033b0050954ab0e1b4a1a582c3dd112511dbd5ae6ad49d69c4217a2e1b8a2647222102a0233ceebb60558ac39a0e1885e1594e1b545b0a1ee9394fb916eb24e9b83a55210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + "script_pub_key": "5121020f2a3e01593e8c1560d07d3f4c5006e766f522879a9750e49a15960d140af62321021d85ee548fe326a832d4b110643aa09a3c84e00539f7b3d63eb774a324ab6b8c2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" }, { "value": 1000, - "script_pub_key": "512103150050954ab0e1b4a1e864212a5bc172a80e79d0c137e1b0491f0e76ef4b28fb210220233ce57da144036b9a0e1885e1594e49545b0a1ee9394fb356eb24e9b83a3a210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + "script_pub_key": "5121032e2a3e01593e8c1560403c0d09763cee4f69478d2f0f44cff13b1e1414ce228221031d85ee548fe32682276124a5d8f0a09a3c84e00539fd36bb5bda1b90a4ab6bdf2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" }, { "value": 29999987000, - "script_pub_key": "0014a6bea9faf02900a347a8f071e7a51d640ec3e33a" + "script_pub_key": "001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e" } ], "vtxinwit": [ - "304402204d6affe02d57e3fae0777aea5cc9b04cc59846ae9c00a1efee6901cac82cbe3b022014c92878e948ba87c64ea8bebbacecf9dc9840c46e2f0e2caca94c276c8f55a101", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022048da182195b00fac5f995e11efa6d8712eac6a3c81a708fe9042c23cbf2664e20220784a38465df96de32726ea26c19a0b7e10f2fd3a33260e56df0de38ef9a25d9401", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022059b2f7cd8750890234e74cbf5d3ef800c1d05cb9baac40f0096a6cf52858e554022041557a6f0d08439076738bb69107c2375d9e7b37e70a832072e2ad6a565ce1c201", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "304402200ca5b69fdc32a63860f5c2a06d8fb142d0435a1e479d848cbebba9ebb333500c022058599835f6db5bb661e1c6253649956dbe480493e6bebcc517e7a180a468ccd301", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022037a7210deb7b4f41a6fa3019e2fc498986592d7a781e1c6ced1a30594839525602205ae1193aaa05c007095c95c05ea23436a08f751761552d08a7adbc465fbef5ee01", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022066273dcbcca8b145ed48fbe79dbb98e38b295e0a2efe5759a04dcd82a6afa7f3022041609ea67c325a2333adf3ee4805edf2d6b5aa8c1e0f522e578002ad2de7b28d01", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" + "30440220310f4c6dfc17b2e1a557200578a74e38deaea2bc9a20b8fd3094a81c88683d4902205d986a6b70503dcb055ce8e758b0aaa39f9b839bbb8b035bac4af6be93c18b4701", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "304402204112cff32842a7136316bc88f184b9d5e0c456f8a1f5a813d698011eef3328a702204cc4f653207db7196acbea2163c4eadfe78d6c6de212e665128156d76575b12301", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "304402203fba96da04ee2225340c5bfe59fd914c775b8712b7a9fceb282022626d2cef40022017e707dec6d08a1e4a9681755dfed622714afa60c73eb755cd73524c71328f3601", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "304402203b094b12e2847292b2772ced709f988625cb1fb481cb6e5fc8ac1eb0d482476f0220197720fb83a9da39867ba32c6c1f261416441fdc6032b07d8c4e895106af24f501", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "30440220355395316c2aec05b55ed3f5a8dbc481d70514776bb71440f67c0c9185954d13022049dbb52a4e10802f21dc040fb6bca693d03414422a50e6ab0ef6fb05f498d64c01", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "30440220584b58ca464d6773d95aea04d85ffcd23b7b0463fda9bfa4c42c521d5efdc20f02205ef2912f1dd27fca67c5ad2bdba2fda83f2600b9d9412b69de643ac60f94b89201", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" ], "lock_time": 0, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", - "tx_id": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d" + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_id": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, - "memo": "the memo", + "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -3472,9 +3472,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, - "memo": "the memo", + "memo": "memo1", "memo_is_hex": false, "asset_info": { "divisible": true, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77` (str, required) - Transaction hash + + tx_hash: `d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "63647d2d8358b4b23c6ed32a8584835a738f80a8381e55cdf25a8a69170d0a8f", + "hash": "8c3fcb17520b40581c82d705b078448daf5c16a1a33a1e0f8e25347233acaa6a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e213862dbd82f87e7f2ca18ee919a25e0f98635878575ed7725ab3057b0208d47a055ea3925773492becfb7bcde35" + "script_pub_key": "6a2ef86b108e3fa4bb79fc812afb3931efb148608ac5f6318d312038c9790f1a80d5f4c21a34a2673745e7b44b3e67f4" }, { "value": 4949930546, - "script_pub_key": "0014281ea9b25a079b4de6a2f74ae46373dbd79215aa" + "script_pub_key": "00143e7d7661faa6389041324526ba09299c650ab598" } ], "vtxinwit": [ - "3044022001b317ef990256b38691adf0ce08e927cc23738fe93659ca24b711d3f4b3ea0f02205e87a031e873d4c4cfbf46f3ec10c0e2bfb254b1c8427052426ca5915329347601", - "03c6847a7e336970cc972babd5ac34ffcf508a5001fad5814dd83c6b1a5cb1be71" + "30440220160d1cd8a598a22c9fbc53a9a7ce01416562b5e8e5b32e618dfcc45b0e18705b0220246d2a42ece58201c2fdb9b10d693646bb6395631d1b12f32f37275e947aa75101", + "0337f1ce2032d6c7f3f1689f7ebf8a604b3dab011052a558e91b4b675031599c38" ], "lock_time": 0, - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", - "tx_id": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77" + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_id": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -3611,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction + + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (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. @@ -3652,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 704, @@ -3719,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 703, @@ -3748,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -3787,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 701, @@ -3797,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "msg_index": 1, "quantity": 2000000000, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", "status": "valid", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 700, @@ -3829,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction to return + + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -3853,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 704, @@ -3867,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -3885,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 703, @@ -3896,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -3935,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 701, @@ -3945,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "msg_index": 1, "quantity": 2000000000, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", "status": "valid", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -3962,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 700, @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction to return + + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (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 @@ -3996,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction to return + + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (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 @@ -4073,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,16 +4152,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4171,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 700, @@ -4183,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4198,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 697, @@ -4210,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": null, @@ -4240,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The hash of the transaction to return + + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `706` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4262,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4281,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 700, @@ -4293,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4308,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 697, @@ -4320,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4508,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - Comma separated list of addresses to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", - "block_time": 1730403327, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_time": 1730406251, + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2:0 4 ", + "utxos_info": " f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4545,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4560,7 +4560,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4579,17 +4579,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "block_index": 208, - "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", - "block_time": 1730403323, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", + "block_time": 1730406238, + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aac8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab598c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3:0 4 ", + "utxos_info": " cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4612,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4631,17 +4631,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", - "block_time": 1730403319, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_time": 1730406233, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", + "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4664,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4683,17 +4683,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", - "block_time": 1730403304, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", + "block_time": 1730406229, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", + "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4716,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4735,17 +4735,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", - "block_time": 1730403290, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", + "block_time": 1730406226, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "supported": true, - "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4753,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4778,7 +4778,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -4807,20 +4807,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "tx0_index": 60, - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx1_index": 55, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4839,38 +4839,38 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "block_time": 1730403332 + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_time": 1730406255 }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730403332, + "block_time": 1730406255, "asset_info": { "divisible": true, "asset_longname": null, @@ -4880,9 +4880,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 675, @@ -4890,15 +4890,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -4908,9 +4908,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_time": 1730403327 + "block_time": 1730406251 } ], "next_cursor": 674, @@ -4923,7 +4923,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p,bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl,bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42` (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 @@ -4939,17 +4939,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "quantity": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, "asset_info": { "divisible": true, @@ -4960,22 +4960,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -4985,22 +4985,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "block_index": 211, - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -5010,30 +5010,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730403350.6183352, + "block_time": 1730406273.1801424, "btc_amount": 0, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "destination": "", "fee": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, - "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -5047,7 +5047,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -5060,7 +5060,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -5080,7 +5080,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5088,14 +5088,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5103,14 +5103,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5118,14 +5118,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5140,7 +5140,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5148,7 +5148,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5165,7 +5165,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -5178,7 +5178,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5203,7 +5203,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5253,16 +5253,16 @@ Returns the credits of an address "result": [ { "block_index": 210, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "asset_info": { "divisible": true, "asset_longname": null, @@ -5274,16 +5274,16 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -5295,16 +5295,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -5316,16 +5316,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -5337,20 +5337,20 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "event": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5367,7 +5367,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5406,16 +5406,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -5427,20 +5427,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5448,16 +5448,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -5469,20 +5469,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5490,20 +5490,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "event": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403290, + "block_time": 1730406226, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5520,7 +5520,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address of the feed + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5555,7 +5555,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -5574,9 +5574,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", + "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", "block_index": 137, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5584,7 +5584,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403015, + "block_time": 1730405937, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5598,7 +5598,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -5617,14 +5617,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "44f034107057167342bd95bbc7b5362bce805e3db0a6ac30a4dfb6943df4d4c7", + "tx_hash": "94575e0c1ffcf9180229ea6828eb6a719c203f0d760e7bdff30509b1f2f281ee", "block_index": 112, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730402922, + "block_time": 1730405845, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5639,7 +5639,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -5658,10 +5658,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5669,7 +5669,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -5682,10 +5682,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5693,11 +5693,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5706,10 +5706,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5717,11 +5717,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5730,10 +5730,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5741,7 +5741,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -5754,10 +5754,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5765,11 +5765,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5787,7 +5787,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s` (str, required) - The address to return + + address: `bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8` (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 @@ -5806,10 +5806,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "fe796ee0c6d7bcaa11a4ad0b53b8961e064e75e2b635ccca7056c031649ce9e3", + "tx_hash": "96c1daa333b0ad90a1465c6d9f2a17e8a37478832ebf5370a833a88a551d5758", "block_index": 151, - "source": "cd51daff023c3b5a395313890e1d0941472c83a8391fdaa0db86bff2d29aca3c:0", - "destination": "bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s", + "source": "9295e8eded321451d746577f581fdc93a3aaa6dd62e6d1af4fb807c42337baed:0", + "destination": "bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5817,11 +5817,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403067, + "block_time": 1730405999, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5839,7 +5839,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5859,10 +5859,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5870,11 +5870,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5883,10 +5883,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5894,11 +5894,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5907,10 +5907,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5918,11 +5918,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5931,10 +5931,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5942,11 +5942,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5955,10 +5955,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5966,11 +5966,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403290, + "block_time": 1730406226, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5988,7 +5988,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s` (str, required) - The address to return + + address: `bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6016,7 +6016,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6045,9 +6045,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6056,7 +6056,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6066,7 +6066,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6082,9 +6082,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6093,7 +6093,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6103,11 +6103,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6128,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -6141,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6162,7 +6162,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6184,7 +6184,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -6204,19 +6204,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6224,7 +6224,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6239,11 +6239,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6253,19 +6253,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6273,7 +6273,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6288,7 +6288,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,19 +6302,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6322,7 +6322,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6337,7 +6337,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6359,7 +6359,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address to return + + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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 @@ -6379,19 +6379,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6399,7 +6399,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6414,11 +6414,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6428,19 +6428,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6448,7 +6448,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6463,7 +6463,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6477,19 +6477,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6497,7 +6497,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6512,7 +6512,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6534,7 +6534,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -6555,19 +6555,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6575,7 +6575,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6590,7 +6590,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6604,19 +6604,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6624,7 +6624,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6639,7 +6639,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6661,7 +6661,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address to return + + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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` @@ -6682,19 +6682,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6702,7 +6702,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6717,7 +6717,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6731,19 +6731,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6751,7 +6751,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6766,7 +6766,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6788,7 +6788,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p` (str, required) - The address to return + + address: `bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl` (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 @@ -6807,16 +6807,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -6830,7 +6830,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6862,14 +6862,14 @@ Returns the issuances of an address "result": [ { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6884,20 +6884,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", + "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6912,20 +6912,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403118, + "block_time": 1730406054, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", + "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6940,20 +6940,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730403104, + "block_time": 1730406049, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", + "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6968,20 +6968,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403101, + "block_time": 1730406046, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a292c148469b6dbd41ddcbf00dfeb536d0724efe8f1e1243e3f3c0ab3ac8dd54", + "tx_hash": "fd736247a4657306233a79e8401189106070d296996d407012c76dea85b77d37", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6996,7 +6996,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403097, + "block_time": 1730406032, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7011,7 +7011,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The issuer or owner to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7034,8 +7034,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -7043,16 +7043,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -7060,16 +7060,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -7077,16 +7077,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 40, @@ -7094,16 +7094,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730403007, - "last_issuance_block_time": 1730403011, + "first_issuance_block_time": 1730405930, + "last_issuance_block_time": 1730405934, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 19, @@ -7111,8 +7111,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730402992, - "last_issuance_block_time": 1730403004, + "first_issuance_block_time": 1730405916, + "last_issuance_block_time": 1730405926, "supply_normalized": "0.00000019" } ], @@ -7126,7 +7126,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The issuer to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -7149,8 +7149,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -7158,16 +7158,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -7175,16 +7175,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -7192,16 +7192,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 40, @@ -7209,16 +7209,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730403007, - "last_issuance_block_time": 1730403011, + "first_issuance_block_time": 1730405930, + "last_issuance_block_time": 1730405934, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 19, @@ -7226,8 +7226,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730402992, - "last_issuance_block_time": 1730403004, + "first_issuance_block_time": 1730405916, + "last_issuance_block_time": 1730405926, "supply_normalized": "0.00000019" } ], @@ -7241,7 +7241,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The owner to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7264,8 +7264,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -7273,16 +7273,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -7290,16 +7290,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -7307,16 +7307,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 40, @@ -7324,16 +7324,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730403007, - "last_issuance_block_time": 1730403011, + "first_issuance_block_time": 1730405930, + "last_issuance_block_time": 1730405934, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 19, @@ -7341,8 +7341,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730402992, - "last_issuance_block_time": 1730403004, + "first_issuance_block_time": 1730405916, + "last_issuance_block_time": 1730405926, "supply_normalized": "0.00000019" } ], @@ -7356,7 +7356,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7375,17 +7375,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", - "block_time": 1730403319, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_time": 1730406233, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", + "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7393,14 +7393,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7408,7 +7408,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7427,17 +7427,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", - "block_time": 1730403304, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", + "block_time": 1730406229, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", + "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7445,14 +7445,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7460,7 +7460,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7479,17 +7479,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", - "block_time": 1730403290, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", + "block_time": 1730406226, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "supported": true, - "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7497,12 +7497,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7513,17 +7513,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_hash": "20e7d5dbb7165402d4822e58299647fa3cec122b63e4d401d4bfcfa477908fd3", - "block_time": 1730403287, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0ad9c63277873202959baabc06121e31a5c13f9689a04b505e1b9115622c0e19", + "block_time": 1730406221, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4:1 2 ", + "utxos_info": " 624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7548,17 +7548,17 @@ Returns the transactions of an address }, { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 197, - "block_hash": "5196ca6ff53b4797b4c12445477159f94e838c8feca6b47c7fb7757b19185e88", - "block_time": 1730403255, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "45c183e961a25d45c59f8042057a2e8746cb030855a118f9568e4dc31d644764", + "block_time": 1730406190, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc:1 2 ", + "utxos_info": " 97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7575,7 +7575,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7596,7 +7596,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -7615,20 +7615,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7653,7 +7653,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7682,9 +7682,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7699,7 +7699,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7725,9 +7725,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7742,7 +7742,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7768,9 +7768,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7785,7 +7785,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7811,9 +7811,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "block_index": 210, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7828,7 +7828,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7863,7 +7863,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The source of the fairminter to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7888,10 +7888,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, "block_index": 156, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7916,7 +7916,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7925,10 +7925,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7953,7 +7953,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730403007, + "block_time": 1730405930, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7965,10 +7965,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7993,7 +7993,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730402992, + "block_time": 1730405916, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8005,10 +8005,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8033,7 +8033,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730402989, + "block_time": 1730405912, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8045,10 +8045,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8073,7 +8073,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8095,7 +8095,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address of the mints to return + + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8113,22 +8113,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8137,22 +8137,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", + "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", "tx_index": 21, "block_index": 134, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403004, + "block_time": 1730405926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8161,22 +8161,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", + "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", "tx_index": 20, "block_index": 133, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403000, + "block_time": 1730405923, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8185,22 +8185,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", + "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402996, + "block_time": 1730405919, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8209,22 +8209,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "490e4645b0e811425dd7324731267eaf5aa77a9db80268d252e1ab8639fe0d0d", + "tx_hash": "2b7563fabb8ea9da7663f9ced59d2ac6c2db11e3a18555ac78b84322ef7c2461", "tx_index": 15, "block_index": 127, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402977, + "block_time": 1730405900, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8233,22 +8233,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8267,7 +8267,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address of the mints to return + + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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` @@ -8286,22 +8286,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8322,7 +8322,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0` (str, required) - The utxo to return + + utxo: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8342,8 +8342,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset_info": { "divisible": true, "asset_longname": null, @@ -8356,12 +8356,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8401,8 +8401,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will make the bet - + feed_address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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) @@ -8474,7 +8474,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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) @@ -8534,7 +8534,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8546,7 +8546,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "02000000000101198ef80491b7f0afbeb07c44ef1ccc204b67da43a19d57c85c381da638a3206d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff0200000000000000002b6a29f53254444ea639fcf641b377869cb893e9bc3291cc6cfc274663cfa8d13a524f13ce021929dc4400ec82ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "020000000001015e8dadefd772a42f70ae7475543f39d868484351995d278a0dfed11ad53111bd0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0200000000000000002b6a291ed47a6584c26b53ee707e2eede672b68e04374afe6fdfe7af80978b906a6796f19b3f9c0af9dbd2da82ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8568,8 +8568,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending the payment - + order_match_id: `0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4` (str, required) - The ID of the order match to pay for + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending the payment + + order_match_id: `6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582` (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) @@ -8625,23 +8625,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" }, "name": "btcpay", - "data": "434e5452505254590b0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b278097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "data": "434e5452505254590b6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd84224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "0200000000010159c6c0bf9369242af24f424c4c2446a2a398faaed9de6969a6ab08bbb1eecc1d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e803000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a00000000000000004b6a49df135ffaecbb57d487c7b6b973b54db0b10215aac8c937d8fa37539ede76f2c295030de69ca3c074ddac3938f34316c2db83b13718d87904b741f717dc3b9ada3f80b67be04ef860a277a7052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "020000000001016de2496a8d83c38bc4b95489d327ab1a4fbdbbc13a0c78f15f83ff226dfc8fab0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e00000000000000004b6a4976141b0fbe7328898718ca76b4a0756a3174c416e7aae171d2f6a2339004fd57306769044e2df1193147bdefeb3b5f8ae3f0dc49dd5cf6c1c55697a51147e150c65f3eaf505a3cac4d77a7052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "status": "valid" } } @@ -8654,7 +8654,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address with the BTC to burn + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -8713,7 +8713,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 1000, "overburn": false }, @@ -8723,7 +8723,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "020000000001016b49b545791d69461b05fe4d1ba812c61d1105211d2066cb79e6321af3e5888c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000" + "rawtransaction": "020000000001010e9b4090a40531098c198d89ea92aa3546a5b57aeed32e58809cd0e532391ea70000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000" } } ``` @@ -8733,8 +8733,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: `bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe` (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) @@ -8790,21 +8790,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" }, "name": "cancel", - "data": "434e545250525459465e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "data": "434e5452505254594625da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "btc_in": 4949896528, "btc_out": 0, "btc_change": 4949882322, "btc_fee": 14206, - "rawtransaction": "020000000001012b3e48c5270b66083a7cb70d50d0ef127b88ffb3d8d7e20eb050884d735e665e01000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d170ffffffff0200000000000000002b6a297041c053d10622c2c203e8b65d7466bed22f8bce5a00b5ddcad80440b7f8db9bb8fdc00811521f7bbbd235092701000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d17002000000000000", + "rawtransaction": "02000000000101fe505a7eb491a7183aca2450a64372d4268de4b3fb596eeec20b9ed7ea9bda2501000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a8ffffffff0200000000000000002b6a29ffc64cedeb35544d6e96ef3a2ee718afee555ab19ab9739c77f2592740b2ac14042a4e62ae4b72b948d235092701000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "status": "valid" } } @@ -8817,7 +8817,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -8876,7 +8876,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8895,7 +8895,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101017eccc91f843f89f84a9080fb7e56380f0fef6a0a3678b3f9fd07d6f026766200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000226a203eadad155f577aec68f81edcf063751eee680d461fdfc8b3a50a213f0e786d8192bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101b8d7f271a59dff34bdb09b438bcece6246a7a58789371a52d0cc9bbd2de0433b0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000226a20cb959a0ab9047972db5c9479f1a7c138d5b7d83daaf250a9b249a0f7e5ff11c892bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8915,7 +8915,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: `bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m` (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) @@ -8980,7 +8980,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9004,7 +9004,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "02000000000101c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a9020000001600148611652400789612e660514167a77909605413abffffffff0200000000000000002c6a2a8bc356b3ed1b329950c42d290c26cb9028aad3fac814fc50c4cea2236a68ec46745455477a09cc118d8332dd0827010000001600148611652400789612e660514167a77909605413ab02000000000000", + "rawtransaction": "0200000000010144c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9020000001600145e5262049de2f0df536d6112a3107d5ef284384bffffffff0200000000000000002c6a2ad506e5d390aba83f230e5384acc629dd9980d3d0f67cccb049acc599e7e61988c1c478e674ece915bb3832dd0827010000001600145e5262049de2f0df536d6112a3107d5ef284384b02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9030,7 +9030,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -9089,14 +9089,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9115,7 +9115,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "0200000000010137bf707f5df1f14af0fb4c8df0be9ac5bc1cdd962fec288bd1fdb3dbe80e00e600000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a213d8b9963b510a57f2173926c1f21767e398b19e231557bd4a493b4d1b8d2ea21c957bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101851e8c9d07ac05388df23a3194a5bef4cbefb9e69874cd1fc4011d7023471d940000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21395b1f6a91b676fad6dbe408a5c9b8236d7f8a77346ec92d198ff1c7367f6bd39657bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9136,10 +9136,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -9204,10 +9204,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer_destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "lock": false, "reset": false, @@ -9220,7 +9220,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101de64d703e4d9afb6435305e99b5b5877ef4dc86728a80be5eb489e8805b4753c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000236a2113e8e3691c06c3ce535832ac2a9971ffa85d39d717115db0ac0f884837b406ed3569b2052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101ea6e2cfa2896c07bdba67c07f9ee0e8a62336050de30bfb0a37684f0a238b3bb0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000236a2118c32d6b011d6cb7494cea4b914abf59d55c38a8b6ce8d0d945ac21ceac11eed1f69b2052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9249,9 +9249,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79,bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9316,16 +9316,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", 1 ], [ "MPMASSET", - "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", 2 ] ], @@ -9333,26 +9333,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a6bea9faf02900a347a8f071e7a51d640ec3e33a80d68898808f54d3987bc6c7cc027355831d2aaada40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e808847258a0cd8bc0a3db0e1db2449d01d63da29bc40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "02000000000104a52dba153ade1cd8569b494843811d5bf3aa25c8aaee76a0f688142f72f2460e00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff77a91c304dddf305f08d41f07b89ff7c6a1f6294deae2a4d613db88bdef4d70700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33afffffffff9cfb6a43839e6105dd18408d504b4521081dc130d9d3660ab9d6bccd5b7b56200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff342a6e4d339aacb56e82c89a93f016b89fa3b119b078239a0fc50d3032ac8d0400000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e80300000000000069512103e031860a9176906d94a0ed33d0308f37b33cc220fd336cb97326e20d2b8c8f3d2102f9c9a0c72021cbab7c3aebec4ca299ce938d330895ba7166f184a31539847f12210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee80300000000000069512102ff31860a9176906d9473ed315096319e49e8eb205e74c44902c547104f824cfe21031af32111a8b94b2428e973978a6555cce0d8b015bf10ab26f184a6f6590cbbef210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aeb8f216a804000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000002000002000002000000000000", + "rawtransaction": "02000000000104a483aa729168b569950b80d77888ce81f2d17952a60b4695c87d6304c50f3e640000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff1cfb7ca28b20bbef6d741ef6effcd4afde9bd1964cac9cb8679d666a23858f0e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0ef812af81b091211c39e6a3238e1850ba3d734afb131c6bd7fc714a44ea6f3e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff29757e6db0f187c4ecd3357bdc91ee7a03ff47cd38b6855faa9b9c5aaed138e80000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000069512103a0a348530d1605a1e5c212d0c41b57dcc8af119295002a371d295d947b17d0442102c24dde1a6521b8af103bbd053ac5cfb02a42c5184faca4d2699b9b03f51e98b62103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee80300000000000069512102bfa348530d1605a1e51112d244929f927123373029f1ce88e45eab4da4a312fa21026cd35f92220432a3c887b7388a2414946392d87b95851892699b9ee095965c002103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aeb8f216a80400000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9368,7 +9368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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 @@ -9430,7 +9430,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9447,7 +9447,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9461,7 +9461,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "020000000001014278e72c345fd1ba53fda7de344e89191294bd8ad7d782a06a18b668ae4d56c700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000356a33818d85ebd35434b0d7949c344254a640f54b2c06f1d97760b2c6d65f8ba52dfb5811f7fc1330d0178cd7d287bbfa71cc1c010737b8052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101d75f48deb96882cdce86578209818cdb3c2e8ca23fc1c7291dbea3c7609569550000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000356a3324f409bade926749f4bebfb43f97ef030e3b28f839eeb435ca88f848be84b7d5b3fac006ea0927d1c4a6b1d2d680a3fe516ecd37b8052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9487,8 +9487,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address that will be receiving the asset + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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 @@ -9552,8 +9552,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9569,19 +9569,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "434e54525052545902000000000000000100000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "0200000000010119499ff6f2b1f68abd5d1eae03212b26e3867297976d327b65665983bb51a73c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000306a2eaba32ec97c38fff6d24c2487fcb1bdd6f61f271e77ce19607af26231601d318ec3ac947667db1c56908f9b2765015cb9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101f65d910f19d7f8a53edcc2cf5fa708d8efc5b2480460ff18988d5b45793a9e830000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000306a2eef0aa01f8a6c172ee628e06babf8eea832f2cb402c5edaa9a4d81855808f252cc7f7d91cc14e4c6b83e10959ca435cb9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "quantity_normalized": "0.00001000" } @@ -9595,8 +9595,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be sending - + destination: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending + + destination: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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 @@ -9654,23 +9654,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d68898808f54d3987bc6c7cc027355831d2aaada07ffff", + "data": "434e54525052545904808847258a0cd8bc0a3db0e1db2449d01d63da29bc07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101421b342347308137eaaebec91f633fc3e02f57b3acb74c658c8b35eb9ae2298500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a214a05c72b8857605588e98c7f7159b3e39447d16f206e0cbf3e94ae387cca891f3857bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101945b7a46652dff712689fd6fe1ccbe51ceabbff6dd73f36e3ef2fd17735756960000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21bb5b1632856e2c38b48b0aaf7e94274bf4d0477e40412d3191d6feae90070a313f57bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "flags": 7, "memo": "ffff" } @@ -9684,8 +9684,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: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42` (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` @@ -9742,8 +9742,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "quantity": 1000 }, "name": "dispense", @@ -9752,7 +9752,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "02000000000101e23d2bb80ab21b65bc7481a04c4186ad90b1a147a9f8615793421096bbb1614e03000000160014d68898808f54d3987bc6c7cc027355831d2aaadaffffffff03e803000000000000160014281ea9b25a079b4de6a2f74ae46373dbd79215aa00000000000000000c6a0a4c6fc4b899825aff3c1e8a25082701000000160014d68898808f54d3987bc6c7cc027355831d2aaada02000000000000", + "rawtransaction": "02000000000101adb758936db4f7ed50786161464d4082a86dd5ffc87e92031012b44ed57ebef7030000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bcffffffff03e8030000000000001600143e7d7661faa6389041324526ba09299c650ab59800000000000000000c6a0a9787813ebb991a086da18a250827010000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bc02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9769,7 +9769,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be issuing the asset + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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: `` @@ -9858,7 +9858,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9889,7 +9889,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "020000000001018f5c0cdb95201f2d95425763fbcefc83e10631bb6d33cfa9ef3379e00cc0429d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000316a2f96ced9e9aaa631a7832f3d5d8288e6e5ca459b2bee44f3ab9b59bffa9ebde5b3c01fba036d518369046cde73f7c0cf21b9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101193a2c693348736ffa2753b9e4d38478166341c63d9bd1841245547b2e95fd050000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000316a2fed8000fbedd5138d6e2624e330346fffeb71c735bff59d058dc38e6dbfb6e29124342e1147f60ba628f711eb180bb321b9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9928,7 +9928,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: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address that will be minting the asset + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -9987,13 +9987,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -10005,7 +10005,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101644babc6f12f61cc3aaf550215ac505508529345cf6a5b7f7bdc2f267ee89f7500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000166a1496ecbe63dfd2db9976eb258914c9489c35cd21f852bf052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "0200000000010184b1483d8197971cb9b69408599da8871d99fb5e7d71110708cb868ebe062fec0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000166a14c984402cc7424ad7db1331b2d9e0cb83f1341ec352bf052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10019,12 +10019,80 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` +### Compose Utxo [GET /v2/addresses/{address}/compose/utxo{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] + +Composes a transaction to attach or detach an assets from an address to UTXO. +Disabled after block 870000. + ++ Parameters + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address or the utxo from which the assets are attached or detached + + asset: `XCP` (str, required) - The asset or subasset to attach or detach + + quantity: `1000` (int, required) - The quantity of the asset to attach or detach (in satoshis, hence integer) + + destination: `36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:3` (str, optional) - The address or the utxo from which the assets are attached or detached + + Default: `None` + + 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) + + Default: `None` + + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output. + + 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` + + 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` + + 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` + + 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` + + 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` + + 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` + + 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` + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + Default: `None` + + 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` + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + 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. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "error": "Disbaled. Please use `attach` or `detach` instead." + } + ``` + ### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination_vout}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address from which the assets are attached + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10084,7 +10152,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10103,7 +10171,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "02000000000101603a6dc731ec62b9f162b278b1a901b7853b84e776a763dd055576fb8ac44ee000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000146a129783a3b26b834513f781b25d31c266d5fcfadab5052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "0200000000010184384aeb3e8356ccfd9f558a2a9e85f61d825d148ab5837c92e977d4a4ad13f00000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000146a12446e9de73946781ac4e3a09fb3ca5e0c5000dab5052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10123,8 +10191,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: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10181,21 +10249,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" + "source": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" }, "name": "detach", - "data": "434e5452505254596662637274317135366c326e376873397971327833616737706337306667617673387638636536657139723739", + "data": "434e5452505254596662637274317133387979617764677936337465753079686c756838616b656d3736763974353774677475356a", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "02000000000102c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a90000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff13de6aae814eb82445cb49b084edd6ce86376c1d1c404fa5173689c5704203180100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff020000000000000000376a358bc356b3ed1b32993aa64e5b7817baa51fc6e194ff7c8f6a55bf905b59098b72ec3762771c6ead679abbaac732b25792b3db5d51df772c0a270100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b502000002000000000000", + "rawtransaction": "0200000000010244c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dfffffffffcb7b36b2a6f61fd13996cc7c49f0ee2b92261b6422f18aa8d3dcbf6f2189ad2010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dffffffff020000000000000000376a35d506e5d390aba83f496c30f6d8f758eea0f9aab18118abca979fb1fc92d660e345b110de15878c78e80e1cd4f9c9be0a253ede4908772c0a27010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" } } } @@ -10259,8 +10327,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -10268,16 +10336,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "owner": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "owner": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false, "supply": 100000000000, @@ -10285,16 +10353,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730403262, - "last_issuance_block_time": 1730403262, + "first_issuance_block_time": 1730406198, + "last_issuance_block_time": 1730406198, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -10302,16 +10370,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "owner": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "issuer": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "owner": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "divisible": true, "locked": false, "supply": 100000000000, @@ -10319,16 +10387,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730403094, - "last_issuance_block_time": 1730403094, + "first_issuance_block_time": 1730406027, + "last_issuance_block_time": 1730406027, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -10336,8 +10404,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" } ], @@ -10365,8 +10433,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -10374,8 +10442,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730402957, - "last_issuance_block_time": 1730402970, + "first_issuance_block_time": 1730405882, + "last_issuance_block_time": 1730405893, "supply_normalized": "100.00000000" } } @@ -10406,7 +10474,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10414,14 +10482,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10429,7 +10497,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -10447,7 +10515,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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. @@ -10459,7 +10527,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10513,9 +10581,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10530,7 +10598,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10556,9 +10624,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10573,7 +10641,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10599,9 +10667,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10616,7 +10684,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10642,9 +10710,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "block_index": 210, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10659,7 +10727,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10685,9 +10753,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10702,7 +10770,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10764,13 +10832,13 @@ Returns the orders of an asset { "result": [ { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10784,7 +10852,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10804,13 +10872,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 53, - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10824,7 +10892,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10844,13 +10912,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", "tx0_index": 50, - "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 51, - "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10864,7 +10932,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10884,13 +10952,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10904,7 +10972,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10984,20 +11052,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "event": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11005,20 +11073,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "event": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11026,20 +11094,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11047,20 +11115,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "event": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11072,16 +11140,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11141,12 +11209,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -11158,16 +11226,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -11179,16 +11247,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -11200,16 +11268,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -11221,16 +11289,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -11310,14 +11378,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -11332,20 +11400,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -11360,20 +11428,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -11388,20 +11456,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -11416,7 +11484,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730402957, + "block_time": 1730405882, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11450,10 +11518,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11461,7 +11529,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -11474,10 +11542,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11485,7 +11553,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -11498,10 +11566,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "block_index": 208, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11509,7 +11577,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -11522,10 +11590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11533,7 +11601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -11546,10 +11614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11557,7 +11625,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -11608,9 +11676,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11619,7 +11687,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11629,7 +11697,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -11645,9 +11713,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", + "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", "block_index": 142, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11656,7 +11724,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11666,7 +11734,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403033, + "block_time": 1730405966, "asset_info": { "divisible": true, "asset_longname": null, @@ -11682,9 +11750,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", "block_index": 150, - "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11692,10 +11760,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 0, - "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11703,7 +11771,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403063, + "block_time": 1730405996, "asset_info": { "divisible": true, "asset_longname": null, @@ -11719,18 +11787,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11740,7 +11808,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -11765,7 +11833,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - The address to return + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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` @@ -11778,9 +11846,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11789,7 +11857,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11799,7 +11867,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -11849,7 +11917,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11857,7 +11925,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11866,7 +11934,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11874,7 +11942,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11883,7 +11951,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11891,7 +11959,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11900,7 +11968,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11937,27 +12005,27 @@ Returns the dispenses of an asset { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11972,7 +12040,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -11986,27 +12054,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", + "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", "block_index": 147, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12021,7 +12089,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403051, + "block_time": 1730405985, "asset_info": { "divisible": true, "asset_longname": null, @@ -12035,19 +12103,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12055,7 +12123,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12070,7 +12138,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -12084,19 +12152,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12104,7 +12172,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12119,7 +12187,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -12193,10 +12261,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12221,7 +12289,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12261,22 +12329,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -12285,22 +12353,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -12309,22 +12377,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -12343,7 +12411,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v` (str, required) - The address of the mints to return + + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (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` @@ -12362,22 +12430,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -12430,9 +12498,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12447,7 +12515,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12473,9 +12541,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12490,7 +12558,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12516,9 +12584,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12533,7 +12601,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12559,9 +12627,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12576,7 +12644,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12602,9 +12670,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "block_index": 210, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12619,7 +12687,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12654,7 +12722,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4` (str, required) - The hash of the transaction that created the order + + order_hash: `4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582` (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. @@ -12666,9 +12734,9 @@ Returns the information of an order { "result": { "tx_index": 55, - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "block_index": 211, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12683,7 +12751,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12715,7 +12783,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27` (str, required) - The hash of the transaction that created the order + + order_hash: `6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8` (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 @@ -12742,13 +12810,13 @@ Returns the order matches of an order { "result": [ { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12762,7 +12830,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12792,7 +12860,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4` (str, required) - The hash of the transaction that created the order + + order_hash: `514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82` (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 @@ -12811,15 +12879,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "btc_amount": 2000, - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "status": "valid", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "btc_amount_normalized": "0.00002000" } ], @@ -12863,9 +12931,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12883,7 +12951,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730403201, + "block_time": 1730406148, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12909,9 +12977,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "block_index": 211, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12929,7 +12997,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730403346, + "block_time": 1730406268, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12955,9 +13023,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12975,7 +13043,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13001,9 +13069,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13021,7 +13089,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13047,9 +13115,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13067,7 +13135,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13130,13 +13198,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13153,7 +13221,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13173,13 +13241,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 53, - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13196,7 +13264,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403201, + "block_time": 1730406148, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13216,13 +13284,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", "tx0_index": 50, - "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 51, - "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13239,7 +13307,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403133, + "block_time": 1730406068, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13259,13 +13327,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13282,7 +13350,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13340,13 +13408,13 @@ Returns all the order matches { "result": [ { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13360,7 +13428,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13380,13 +13448,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 53, - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13400,7 +13468,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13420,13 +13488,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", "tx0_index": 50, - "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 51, - "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13440,7 +13508,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13460,13 +13528,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13480,7 +13548,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13648,66 +13716,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", "block_index": 121, - "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", + "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730402953, + "block_time": 1730405878, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "d7fa70649ea7b362563a38e10be7bb459b26276c1950e86d5ec3aa76fc3bc32a", + "tx_hash": "c0e441c6404c2d3fda3d08373f8563dca76c7a8fbeadef531d02d4b3f4cf31c6", "block_index": 120, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730402949, + "block_time": 1730405874, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "abaa0b2b49bcc429f1201f0bdc67e04dbbbb89ad7afea7f70f596fe76347a645", + "tx_hash": "0811c1104f3911e3ad4092bff677862f1831e186b035da0443cc3c17527a5c15", "block_index": 119, - "source": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h", + "source": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730402945, + "block_time": 1730405870, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "39121377e6d73b9b1aa803b5ff43fad8d6344631c3e94760d544053976ded12d", + "tx_hash": "7a0fd8240482f95bd7445964937272bbbab4ca98481a17340bd2a183c290d391", "block_index": 118, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730402941, + "block_time": 1730405866, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0353df7b0665acf84123ac3e6bedb5fd38ae021d8e9a8e5988ed27f3afdb8822", + "tx_hash": "c835412e2a2077d8840895f89edb16b3bc08343d81e4c94c7c12286204e8e50f", "block_index": 117, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730402938, + "block_time": 1730405863, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13752,9 +13820,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13763,7 +13831,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13773,7 +13841,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -13789,9 +13857,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", + "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", "block_index": 142, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13800,7 +13868,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13810,7 +13878,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403033, + "block_time": 1730405966, "asset_info": { "divisible": true, "asset_longname": null, @@ -13826,9 +13894,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", "block_index": 150, - "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13836,10 +13904,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 0, - "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13847,7 +13915,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403063, + "block_time": 1730405996, "asset_info": { "divisible": true, "asset_longname": null, @@ -13863,9 +13931,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13874,7 +13942,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13884,11 +13952,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -13900,18 +13968,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13921,7 +13989,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -13946,7 +14014,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca` (str, required) - The hash of the dispenser to return + + dispenser_hash: `8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc` (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. @@ -13958,9 +14026,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13969,7 +14037,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13979,7 +14047,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -14001,7 +14069,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca` (str, required) - The hash of the dispenser to return + + dispenser_hash: `8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc` (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 @@ -14021,19 +14089,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14041,7 +14109,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14056,7 +14124,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -14070,19 +14138,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14090,7 +14158,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14105,7 +14173,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -14147,20 +14215,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -14185,7 +14253,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e` (str, required) - The hash of the dividend to return + + dividend_hash: `5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28` (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. @@ -14197,20 +14265,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -14232,7 +14300,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28` (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 @@ -14255,12 +14323,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "event": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "tx_index": 42, - "utxo": "1140eef6b190b6b6f0f2925a8876d5001445510bc8a2838968047df3dd8aa2bb:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "97b40fb2d3fcec879da9268d14d082e04230015d3e338320a5245e8a0174be55:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "divisible": true, "asset_longname": null, @@ -14306,27 +14374,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 704, @@ -14335,14 +14403,14 @@ Returns all events "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -14353,9 +14421,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 703, @@ -14364,9 +14432,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -14376,24 +14444,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -14403,9 +14471,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 701, @@ -14433,15 +14501,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } } ``` @@ -14519,16 +14587,16 @@ Returns the events filtered by event name "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -14538,9 +14606,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 700, @@ -14550,12 +14618,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -14565,9 +14633,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 697, @@ -14577,39 +14645,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730403332, + "block_time": 1730406255, "asset_info": { "divisible": true, "asset_longname": null, @@ -14619,24 +14687,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -14646,9 +14714,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_time": 1730403327 + "block_time": 1730406251 } ], "next_cursor": 669, @@ -14704,27 +14772,27 @@ Returns all the dispenses { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14739,7 +14807,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -14753,19 +14821,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14773,7 +14841,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14788,11 +14856,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -14802,27 +14870,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", + "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", "block_index": 147, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14837,7 +14905,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403051, + "block_time": 1730405985, "asset_info": { "divisible": true, "asset_longname": null, @@ -14851,19 +14919,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14871,7 +14939,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14886,7 +14954,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -14900,19 +14968,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14920,7 +14988,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14935,7 +15003,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -14977,10 +15045,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14988,7 +15056,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -15001,10 +15069,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15012,11 +15080,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15025,10 +15093,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15036,7 +15104,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -15049,10 +15117,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15060,11 +15128,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15073,10 +15141,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15084,11 +15152,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15139,14 +15207,14 @@ Returns all the issuances "result": [ { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -15161,20 +15229,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "f9fdd20a34c02388a82be3b5edf1da64f24bff88c129b705bc66bca926cb92a0", + "tx_hash": "c29d7a9278990abb929a4b5c564f4b26d342a2c3dfc4ae3c6e6e98dcf8ec2aed", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "transfer": false, "callable": false, "call_date": 0, @@ -15189,20 +15257,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403262, + "block_time": 1730406198, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", + "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -15217,20 +15285,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403118, + "block_time": 1730406054, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", + "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -15245,20 +15313,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730403104, + "block_time": 1730406049, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", + "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -15273,7 +15341,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403101, + "block_time": 1730406046, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15288,7 +15356,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4` (str, required) - The hash of the transaction to return + + tx_hash: `624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070` (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. @@ -15300,14 +15368,14 @@ Returns the issuances of a block { "result": { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -15322,7 +15390,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15354,16 +15422,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -15377,7 +15445,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788` (str, required) - The hash of the transaction to return + + tx_hash: `8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156` (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. @@ -15390,16 +15458,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -15433,9 +15501,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15443,14 +15511,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403019, + "block_time": 1730405941, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", + "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", "block_index": 137, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15458,7 +15526,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403015, + "block_time": 1730405937, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15472,7 +15540,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac` (str, required) - The hash of the transaction to return + + tx_hash: `265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369` (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. @@ -15484,9 +15552,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15494,7 +15562,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403019, + "block_time": 1730405941, "fee_fraction_int_normalized": "0.00000000" } } @@ -15531,10 +15599,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, "block_index": 156, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15559,7 +15627,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15568,10 +15636,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15596,7 +15664,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730403007, + "block_time": 1730405930, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15608,10 +15676,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15636,7 +15704,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730402992, + "block_time": 1730405916, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15648,10 +15716,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15676,7 +15744,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730402989, + "block_time": 1730405912, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15688,10 +15756,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15716,7 +15784,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15785,22 +15853,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15809,22 +15877,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", + "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", "tx_index": 21, "block_index": 134, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403004, + "block_time": 1730405926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15833,22 +15901,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", + "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", "tx_index": 20, "block_index": 133, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403000, + "block_time": 1730405923, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15857,22 +15925,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", + "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402996, + "block_time": 1730405919, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15881,22 +15949,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "bdd5eb1e485bf37c64ccd4861e921799fad0f82b6d9debdf6cdead42a4f049e3", + "tx_hash": "79d19e0a40bca002f152c5b29d457ee19081e65cc5c1d8db52bfb659756ec8a9", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402986, + "block_time": 1730405908, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15915,7 +15983,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47` (str, required) - The hash of the fairmint to return + + tx_hash: `5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15926,22 +15994,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -15959,7 +16027,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk,bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h` (str, required) - The addresses to search for + + addresses: `bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp,bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj` (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. @@ -15972,23 +16040,23 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ - { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", - "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" - }, { "vout": 1, "height": 210, "value": 4949896528, "confirmations": 2, "amount": 49.49896528, - "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", - "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" + "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" + }, + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" }, { "vout": 2, @@ -15996,8 +16064,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32", - "address": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h" + "txid": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a", + "address": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj" } ], "next_cursor": null, @@ -16010,7 +16078,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p` (str, required) - The address to search for + + address: `bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl` (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 @@ -16026,25 +16094,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "917d2d5ae0219497b7e65a7cf5f7912ee3b2ca5266e2be249cabad51ec227e04" + "tx_hash": "c3a8068df814366cf5a33f32a345e9020848f8e449eada40071edb6fab0f350c" }, { - "tx_hash": "d69560da41093afa22870cfabf1a00e92fe368dfce31d43ceb86e3dabaa80031" + "tx_hash": "0c41d68a310a5cde52ad46df9407819f38179f4056738621a40820ade614151b" }, { - "tx_hash": "7dbd6aac5dd5a0c2a4042a1edb46acc0833d817212b23a58df59a1e1f6eed860" + "tx_hash": "1287ff9109c4deba30c2ef14e7fa0ce3d0577e19856549d45903ed8fc421f347" }, { - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788" + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156" }, { - "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b" + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" }, { - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1" }, { - "tx_hash": "cdd1e312727b6ca9e108ebe17268b648a1b6a08f8504e2a70b60cc5543dffbcb" + "tx_hash": "657b360ca3f7b365aa76df8755ff71b0e9ea2deb0ac41859a042c65c7429fede" } ], "next_cursor": null, @@ -16057,7 +16125,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee` (str, required) - The address to search for. + + address: `bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m` (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. @@ -16070,8 +16138,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "210c869407569853cfda617387ef799a309015dea140ce4eb21e338f9e106fcb" + "block_index": 7, + "tx_hash": "0426ca0b6ab06d9145755ae7980fdc28028d4870252d9510713e2ef15d7b475d" } } ``` @@ -16081,7 +16149,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk` (str, required) - The address to search for + + address: `bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp` (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 @@ -16096,21 +16164,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 1, - "height": 210, - "value": 4949896528, - "confirmations": 2, - "amount": 49.49896528, - "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" - }, { "vout": 0, "height": 203, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4" + "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4" + }, + { + "vout": 1, + "height": 210, + "value": 4949896528, + "confirmations": 2, + "amount": 49.49896528, + "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" } ], "next_cursor": null, @@ -16123,7 +16191,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79` (str, required) - Address to get pubkey for. + + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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. @@ -16135,7 +16203,7 @@ Get pubkey for an address. ``` { - "result": "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" + "result": "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" } ``` @@ -16144,7 +16212,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4` (str, required) - The transaction hash + + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (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. @@ -16156,7 +16224,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010132dbb0d3e8eef8f41d294cef9f9197c56bff1dd0172d99bafd7aaf93a65a5a590100000000ffffffff03e80300000000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b500000000000000000c6a0a10d63a99d1c73db618cceb140927010000001600148611652400789612e660514167a77909605413ab0247304402205e6f7f871cd7512b9b60c82270e2ed06f13866c428aeb4902a8bba359adcf0bb022065cd247db11e751639a44542bf79a5cbe7a12c4949c48f3b7c7cf8508517dc91012102aaa71ed188f33f8ae081da50540893a4dc64fa72a7cc1552366e232739f2096900000000" + "result": "020000000001019afef15844ab2436b6dd8a5120c844a93a6df0adf9263f8bf95e3b04e7e655790100000000ffffffff03e8030000000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d00000000000000000c6a0a58647fa68b6e9b0364c7eb140927010000001600145e5262049de2f0df536d6112a3107d5ef284384b0247304402203ee9fe928633499235c32bbc9fabc4abe15ba5fc87e81457fc26120ca1bdd01702200410265a244e15ba8b6537287195ebb0d4a5b15101e9397ae574d3447c33422a0121032843656ba832e0549a869a91d4662871f4cee56ddb6206a6e59e74a6f0758fd200000000" } ``` @@ -16251,27 +16319,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79 }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "quantity": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, "asset_info": { "divisible": true, @@ -16282,22 +16350,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -16307,22 +16375,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "block_index": 211, - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -16332,30 +16400,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730403350.6183352, + "block_time": 1730406273.1801424, "btc_amount": 0, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "destination": "", "fee": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, - "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -16369,7 +16437,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -16400,19 +16468,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -16422,7 +16490,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -16435,7 +16503,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77` (str, required) - The hash of the transaction to return + + tx_hash: `d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9` (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 @@ -16455,27 +16523,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79 }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "quantity": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, "asset_info": { "divisible": true, @@ -16486,22 +16554,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -16511,22 +16579,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "block_index": 211, - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -16536,30 +16604,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730403350.6183352, + "block_time": 1730406273.1801424, "btc_amount": 0, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "destination": "", "fee": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, - "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -16573,7 +16641,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 3fd4d2ed6e..4290334113 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -628,6 +628,33 @@ def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construc return compose(db, "fairmint", params, **construct_args) +def compose_utxo( + db, + address: str, + asset: str, + quantity: int, + destination: str = None, + **construct_args, +): + """ + Composes a transaction to attach or detach an assets from an address to UTXO. + Disabled after block 870000. + :param address: The address or the utxo from which the assets are attached or detached (e.g. $ADDRESS_1) + :param asset: The asset or subasset to attach or detach (e.g. XCP) + :param quantity: The quantity of the asset to attach or detach (in satoshis, hence integer) (e.g. 1000) + :param destination: The address or the utxo from which the assets are attached or detached (e.g. $UTXO_1_ADDRESS_1) + """ + if util.enabled("spend_utxo_to_detach"): + raise exceptions.ComposeError("Disbaled. Please use `attach` or `detach` instead.") + params = { + "source": address, + "destination": destination, + "asset": asset, + "quantity": quantity, + } + return compose(db, "utxo", params, **construct_args) + + def compose_attach( db, address: str, @@ -643,6 +670,8 @@ def compose_attach( :param quantity: The quantity of the asset to attach (in satoshis, hence integer) (e.g. 1000) :param destination_vout: The vout of the destination output """ + if not util.enabled("spend_utxo_to_detach"): + raise exceptions.ComposeError("Not enabled yet. Please use `utxo` instead.") params = { "source": address, "asset": asset, @@ -652,13 +681,6 @@ def compose_attach( return compose(db, "attach", params, **construct_args) -def get_attach_estimate_xcp_fee(db): - """ - Returns the estimated fee for attaching assets to a UTXO. - """ - return gas.get_transaction_fee(db, UTXO_ID, util.CURRENT_BLOCK_INDEX) - - def compose_detach( db, utxo: str, @@ -670,6 +692,8 @@ def compose_detach( :param utxo: The utxo from which the assets are detached (e.g. $UTXO_WITH_BALANCE) :param destination: The address to detach the assets to, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1) """ + if not util.enabled("spend_utxo_to_detach"): + raise exceptions.ComposeError("Not enabled yet. Please use `utxo` instead.") params = { "source": utxo, "destination": destination, @@ -677,6 +701,13 @@ def compose_detach( return compose(db, "detach", params, **construct_args) +def get_attach_estimate_xcp_fee(db): + """ + Returns the estimated fee for attaching assets to a UTXO. + """ + return gas.get_transaction_fee(db, UTXO_ID, util.CURRENT_BLOCK_INDEX) + + def compose_movetoutxo( db, utxo: str, diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index 963190ac32..3af16a4479 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -94,6 +94,7 @@ def get_routes(): "/v2/addresses/
/compose/dispense": compose.compose_dispense, "/v2/addresses/
/compose/fairminter": compose.compose_fairminter, "/v2/addresses/
/compose/fairmint": compose.compose_fairmint, + "/v2/addresses/
/compose/utxo": compose.compose_utxo, "/v2/addresses/
/compose/attach": compose.compose_attach, "/v2/utxos//compose/detach": compose.compose_detach, "/v2/utxos//compose/movetoutxo": compose.compose_movetoutxo, diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index ecaf823a23..39c86929b5 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -1,23 +1,32 @@ +# TODO: after "spend_utxo_to_detach" activation refactor like rps.py + import logging import struct from counterpartycore.lib import backend, config, exceptions, gas, ledger, script, util -from counterpartycore.lib.messages import attach logger = logging.getLogger(config.LOGGER_NAME) ID = 100 -# TODO: after "spend_utxo_to_detach" activation refactor like rps.py - -def validate(db, source, destination, asset=None, quantity=None, block_index=None): +def validate(db, source, destination, asset, quantity, block_index=None): problems = [] - problems += attach.validate_asset_and_quantity(asset, quantity) - if "quantity must be in satoshis" in problems: + if asset == config.BTC: + problems.append("cannot send bitcoins") # Only for parsing. + + if not isinstance(quantity, int): + problems.append("quantity must be in satoshis") return problems + if quantity <= 0: + problems.append("quantity must be greater than zero") + + # For SQLite3 + if quantity > config.MAX_INT: + problems.append("integer overflow") + source_is_address = True destination_is_address = True # check if source is an address @@ -53,21 +62,84 @@ def validate(db, source, destination, asset=None, quantity=None, block_index=Non else: fee = 0 - problems += attach.validate_balance(db, source, asset, quantity, fee) + # check if source has enough funds + asset_balance = ledger.get_balance(db, source, asset) + if asset == config.XCP: + # fee is always paid in XCP + if asset_balance < quantity + fee: + problems.append("insufficient funds for transfer and fee") + else: + if asset_balance < quantity: + problems.append("insufficient funds for transfer") + if source_is_address: + xcp_balance = ledger.get_balance(db, source, config.XCP) + if xcp_balance < fee: + problems.append("insufficient funds for fee") return problems +def compose(db, source, destination, asset, quantity): + """ + Compose a UTXO message. + source: the source address or UTXO + destination: the destination address or UTXO + asset: the asset to transfer + quantity: the quantity to transfer + """ + problems = validate(db, source, destination, asset, quantity) + if problems: + raise exceptions.ComposeError(problems) + + # we make an RPC call only at the time of composition + if ( + destination + and util.is_utxo_format(destination) + and not backend.bitcoind.is_valid_utxo(destination) + ): + raise exceptions.ComposeError(["destination is not a UTXO"]) + if util.is_utxo_format(source) and not backend.bitcoind.is_valid_utxo(source): + raise exceptions.ComposeError(["source is not a UTXO"]) + + # create message + data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) + # to optimize the data size (avoiding fixed sizes per parameter) we use a simple + # string of characters separated by `|`. + data_content = "|".join( + [ + str(value) + for value in [ + source, + destination or "", + asset, + quantity, + ] + ] + ).encode("utf-8") + data += struct.pack(f">{len(data_content)}s", data_content) + + source_address = source + destinations = [] + # if source is a UTXO, we get the corresponding address + if util.is_utxo_format(source): # detach from utxo + source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) + elif not destination: # attach to utxo + # if no destination, we use the source address as the destination + destinations.append((source_address, None)) + + return (source_address, destinations, data) + + def unpack(message, return_dict=False): try: data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|") - - (source, destination, asset, quantity) = data_content + (source, destination_str, asset, quantity) = data_content + destination = None if destination_str == "" else destination_str if return_dict: return { "source": source, - "destination": destination or None, + "destination": destination, "asset": asset, "quantity": int(quantity), } @@ -77,33 +149,6 @@ def unpack(message, return_dict=False): raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e -def move_asset(db, tx, action, source, recipient, asset, quantity, event, fee_paid): - # debit asset from source and credit to recipient - ledger.debit(db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"]) - ledger.credit( - db, - recipient, - asset, - quantity, - tx["tx_index"], - action=action, - event=tx["tx_hash"], - ) - bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), - "block_index": tx["block_index"], - "status": "valid", - "source": source, - "destination": recipient, - "asset": asset, - "quantity": quantity, - "fee_paid": fee_paid, - } - ledger.insert_record(db, "sends", bindings, event) - - def parse(db, tx, message): (source, destination, asset, quantity) = unpack(message) @@ -113,7 +158,7 @@ def parse(db, tx, message): # if no destination, we assume the destination is the first non-OP_RETURN output # that's mean the last element of the UTXOs info in `transactions` table if not recipient: - recipient = util.get_destination_from_utxos_info(tx["utxos_info"]) + recipient = tx["utxos_info"].split(" ")[-1] # detach if source is a UTXO if util.is_utxo_format(source): @@ -133,46 +178,85 @@ def parse(db, tx, message): if problems: status = "invalid: " + "; ".join(problems) + # prepare bindings + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), + "block_index": tx["block_index"], + "status": status, + } + if status == "valid": + # fee payment only for attach to utxo if action == "attach to utxo": fee = gas.get_transaction_fee(db, ID, tx["block_index"]) else: fee = 0 if fee > 0: - attach.pay_fee(db, tx, source, fee) - + # fee is always paid by the address + if action == "attach to utxo": + fee_payer = source + else: + fee_payer = recipient + # debit fee from the fee payer + ledger.debit( + db, + fee_payer, + config.XCP, + fee, + tx["tx_index"], + action=f"{action} fee", + event=tx["tx_hash"], + ) + # destroy fee + destroy_bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "block_index": tx["block_index"], + "source": tx["source"], + "asset": config.XCP, + "quantity": fee, + "tag": f"{action} fee", + "status": "valid", + } + ledger.insert_record(db, "destructions", destroy_bindings, "ASSET_DESTRUCTION") + # debit asset from source and credit to recipient + ledger.debit( + db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"] + ) + ledger.credit( + db, + recipient, + asset, + quantity, + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + # we store parameters only if the transaction is valid + bindings = bindings | { + "source": source, + "destination": recipient, + "asset": asset, + "quantity": quantity, + "fee_paid": fee, + } # update counter if action == "attach to utxo": gas.increment_counter(db, ID, tx["block_index"]) - move_asset(db, tx, action, source, recipient, asset, quantity, event, fee) - else: - # store the invalid transaction without potentially invalid parameters - bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]), - "block_index": tx["block_index"], - "status": status, - } - ledger.insert_record(db, "sends", bindings, event) + ledger.insert_record(db, "sends", bindings, event) # log valid transactions if status == "valid": - log_bindings = { - "tx_hash": tx["tx_hash"], - "source": source, - "destination": recipient, - "asset": asset, - "status": status, - } if util.is_utxo_format(source): logger.info( - "Detach assets from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", - log_bindings, + "Detach %(asset)s from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", + bindings, ) else: logger.info( "Attach %(asset)s from %(source)s to utxo: %(destination)s (%(tx_hash)s) [%(status)s]", - log_bindings, + bindings, ) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index a470141775..d29c6f713d 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11693,13 +11693,13 @@ "name": "address", "required": true, "type": "str", - "description": "The address that placed the order/bet to be cancelled (e.g. $ADDRESS_1)" + "description": "The address that placed the order/bet to be cancelled (e.g. $ADDRESS_7)" }, { "name": "offer_hash", "required": true, "type": "str", - "description": "The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH)" + "description": "The hash of the order/bet to be cancelled (e.g. $LAST_UTXOASSET_ORDER_TX_HASH)" }, { "name": "encoding", @@ -12077,7 +12077,7 @@ "name": "address", "required": true, "type": "str", - "description": "The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_7)" + "description": "The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_9)" }, { "name": "asset", @@ -14260,6 +14260,204 @@ } ] }, + "/v2/addresses/
/compose/utxo": { + "function": "compose_utxo", + "description": "Composes a transaction to attach or detach an assets from an address to UTXO.\nDisabled after block 870000.", + "args": [ + { + "name": "source", + "required": true, + "type": "str" + }, + { + "name": "asset", + "required": true, + "type": "str", + "description": "The asset or subasset to attach or detach (e.g. XCP)" + }, + { + "name": "quantity", + "required": true, + "type": "int", + "description": "The quantity of the asset to attach or detach (in satoshis, hence integer) (e.g. 1000)" + }, + { + "name": "destination", + "default": null, + "required": false, + "type": "str", + "description": "The address or the utxo from which the assets are attached or detached (e.g. $UTXO_1_ADDRESS_1)" + }, + { + "name": "encoding", + "type": "str", + "default": "auto", + "description": "The encoding method to use", + "required": false + }, + { + "name": "fee_per_kb", + "type": "int", + "default": null, + "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)", + "required": false + }, + { + "name": "regular_dust_size", + "type": "int", + "default": 546, + "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.", + "required": false + }, + { + "name": "multisig_dust_size", + "type": "int", + "default": 1000, + "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output", + "required": false + }, + { + "name": "pubkeys", + "type": "str", + "default": null, + "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 + }, + { + "name": "allow_unconfirmed_inputs", + "type": "bool", + "default": false, + "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs", + "required": false + }, + { + "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", + "required": false + }, + { + "name": "fee_provided", + "type": "int", + "default": 0, + "description": "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", + "required": false + }, + { + "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 inputs_set", + "required": false + }, + { + "name": "dust_return_pubkey", + "type": "str", + "default": null, + "description": "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", + "required": false + }, + { + "name": "disable_utxo_locks", + "type": "bool", + "default": false, + "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": "p2sh_pretx_txid", + "type": "str", + "default": null, + "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction", + "required": false + }, + { + "name": "segwit", + "type": "bool", + "default": false, + "description": "Use segwit", + "required": false + }, + { + "name": "confirmation_target", + "type": "int", + "default": 3, + "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": "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": "(API v2 only) Return only the data part of the transaction", + "required": false + }, + { + "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 + }, + { + "name": "use_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, + { + "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/addresses/
/compose/attach": { "function": "compose_attach", "description": "Composes a transaction to attach assets from an address to UTXO.", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 8edbaa13b7..796e30db28 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": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", "difficulty": 545259519, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", - "block_time": 1730403332, - "previous_block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", + "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_time": 1730406255, + "previous_block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", "difficulty": 545259519, - "ledger_hash": "860400663c2e932d0e9952400f9aa01415cf279d35a7f5e81f6dabc0c5c16716", - "txlist_hash": "e740759710f6964c4037eeaee13c0f59a883c9a48fdf2798da25ce8438070ff2", - "messages_hash": "a3c888da6448660b1bbea3fd26281d325c71c1d2e731d66a9c0342223aa2b810", + "ledger_hash": "d4ce0b9663ffc7961b889b2212e125f1916a9a3308be5ce3612b795aae79b7ef", + "txlist_hash": "cd8ef9a5b728358bc1e49c13423fab5fb1a804fe1840a8a1ff460724a8988914", + "messages_hash": "2af09ce52de0341d6f5c0d7123b65a3e6d4d8c63b8e1df8de88d12c8b8500d8f", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", - "block_time": 1730403327, - "previous_block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", + "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_time": 1730406251, + "previous_block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", "difficulty": 545259519, - "ledger_hash": "b7115ca664a3927bdf9fa8e78e931529e0a589d4a58c41cb8bd04d4c2748dc67", - "txlist_hash": "b257b31a58aa81531003e0ebc2df8f92e3456d8056f1a6b98fc100fd8f032e17", - "messages_hash": "49c4f6db87eed4383892669e056c16350c8b5224c2d3df3d509a1ecbdd2d24f4", + "ledger_hash": "7c2efb0199e521f8f8afb2d8bd297b5537a2f65f2998d13311c9c8ec4cccdd3a", + "txlist_hash": "72ab85e444eabc4bd6e7c2cb0d2df438ec16ac03dd4a3374abcc67170e7cb83e", + "messages_hash": "6661decf322d55e2f41d5b12d85d7384520e75ec1a1c539137a0af99f6877717", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", - "block_time": 1730403323, - "previous_block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", + "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", + "block_time": 1730406238, + "previous_block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", "difficulty": 545259519, - "ledger_hash": "a479d83f0ce588b3e69e8d3dceaee54a27eae58a356c5345c578e0142070cb92", - "txlist_hash": "8606128c6920f5c8b9b69bf46e92fb0f7d5718957bfa6601d65f85fdf47445bf", - "messages_hash": "a442f4dceb5c16cae6708af4ed8e950b41582e2eb726d47ac929c05c5b9add4f", + "ledger_hash": "a2b0ad8247a5e0ac9b7a77f62e53636fbd291b52b6abb3a365411be191b628bd", + "txlist_hash": "0029ad27750de58fd2ac1ea9aeb2e10a7b1ab66af05e6614df5f7057f064ce50", + "messages_hash": "cc5c2fd236b9f3d4670de7ea68a077f22424799fd8fdd528d2b5ba0ab18f0fb8", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", - "block_time": 1730403319, - "previous_block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", + "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_time": 1730406233, + "previous_block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", "difficulty": 545259519, - "ledger_hash": "95ee8738aa0716c11715fcdf2940c0badd4cc638cd6778abadaae54b5642a138", - "txlist_hash": "44520822dd23dc5829c97c92ee5790f1d696765d127fcf6f6f6336df022ad5aa", - "messages_hash": "42424d8034056766f6d9001fa6d2884ac46f2fd5aff54a9bd31b7a47241e5aeb", + "ledger_hash": "896005f69ce0542be870a9bc8dd5c2f61235184519e872912387a5bdae84ede7", + "txlist_hash": "834ec0b0c35273eaf22b38a9811739cb6d7a36d6dcd872056cd0f68164c414e3", + "messages_hash": "743eb12d7456b0288b57286aa5afc73e3f8b8cb9f386dd3237ce95cc23ef9273", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", "difficulty": 545259519, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", "difficulty": 545259519, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 704, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 703, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" } ], "next_cursor": 701, @@ -256,16 +256,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 700, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" }, { "event_index": 697, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4" + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "object_id": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "block_index": 211, "confirmed": true, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "status": "valid", "confirmed": true, - "block_time": 1730403230 + "block_time": 1730406175 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "block_index": 196, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730403251, + "block_time": 1730406186, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, "block_index": 156, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 77, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3", - "block_time": 1730403332, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_time": 1730406255, + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b:1 2 ", + "utxos_info": " 25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, @@ -816,53 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ce1f7edf3b840218ad649054df5a093a48678e8b9840e8e41c101bc30fe7cf21", + "hash": "d3a5d8d776e316f54297e96a578b0e38c6a7ef5039c2be4c4c30b6c839bbb0d0", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "0137aea6314c69f2981a5f316dcc8bf930e450c0c91c9595f6bab0fb5b2b150f", + "hash": "d29dd6da0578bafa05e58cc85383cff4de4619a767b08ab90119914aa3643ebe", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6bcebed9656cfcb53f2a4361f637002a7ee81204e4f340ad557f18ecc7c22038", + "hash": "551850045ca30b728f972a89208731682ad499a34d6a93d2af82d64c0f3e19ae", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d17cd665bd97550c354f5062c3a4ac4b2bc0c6ed7d539cb7b23f18d4a295c493", + "hash": "5413f5d36a74d5fbddbc56dd947373a10e2b66270db8a0f5fccb10609347c942", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "31ae8dd8f3fb99e6d704ae8070356162db31c843899b88f168fb6ce90d5b21f6", + "hash": "c61a45a32b82ccd62ee69afe65cd9156ba4d136b4ae6757e9b48392478111ec0", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c62fbdb6ce1a82b38222cf01e13ca8be6882ab6064e00fc21fec7c985c2aba56", + "hash": "40875ad563852d749770517cec8b8650082cc6261440e21dacc3eb5e416691fa", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "5121023b0050954ab0e1b4a1eb6462aa8d49ea28812d2b594c2777851d7d236c56021e21038af9bc320976909c46ca607c0db9dd7b5daa9d7bbd8f24cf9b484296b3bfa149210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + "script_pub_key": "5121020f2a3e01593e8c1560433c0e89fefbcbc5659f312532a00541343cbd81adf89b210234396e80d3a834cd9f513c0db1a6c8a69e9f1680d559e43b65a76df15e0d534a2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" }, { "value": 1000, - "script_pub_key": "5121033b0050954ab0e1b4a1a582c3dd112511dbd5ae6ad49d69c4217a2e1b8a2647222102a0233ceebb60558ac39a0e1885e1594e1b545b0a1ee9394fb916eb24e9b83a55210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + "script_pub_key": "5121020f2a3e01593e8c1560d07d3f4c5006e766f522879a9750e49a15960d140af62321021d85ee548fe326a832d4b110643aa09a3c84e00539f7b3d63eb774a324ab6b8c2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" }, { "value": 1000, - "script_pub_key": "512103150050954ab0e1b4a1e864212a5bc172a80e79d0c137e1b0491f0e76ef4b28fb210220233ce57da144036b9a0e1885e1594e49545b0a1ee9394fb356eb24e9b83a3a210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53ae" + "script_pub_key": "5121032e2a3e01593e8c1560403c0d09763cee4f69478d2f0f44cff13b1e1414ce228221031d85ee548fe32682276124a5d8f0a09a3c84e00539fd36bb5bda1b90a4ab6bdf2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" }, { "value": 29999987000, - "script_pub_key": "0014a6bea9faf02900a347a8f071e7a51d640ec3e33a" + "script_pub_key": "001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e" } ], "vtxinwit": [ - "304402204d6affe02d57e3fae0777aea5cc9b04cc59846ae9c00a1efee6901cac82cbe3b022014c92878e948ba87c64ea8bebbacecf9dc9840c46e2f0e2caca94c276c8f55a101", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022048da182195b00fac5f995e11efa6d8712eac6a3c81a708fe9042c23cbf2664e20220784a38465df96de32726ea26c19a0b7e10f2fd3a33260e56df0de38ef9a25d9401", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022059b2f7cd8750890234e74cbf5d3ef800c1d05cb9baac40f0096a6cf52858e554022041557a6f0d08439076738bb69107c2375d9e7b37e70a832072e2ad6a565ce1c201", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "304402200ca5b69fdc32a63860f5c2a06d8fb142d0435a1e479d848cbebba9ebb333500c022058599835f6db5bb661e1c6253649956dbe480493e6bebcc517e7a180a468ccd301", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022037a7210deb7b4f41a6fa3019e2fc498986592d7a781e1c6ced1a30594839525602205ae1193aaa05c007095c95c05ea23436a08f751761552d08a7adbc465fbef5ee01", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f", - "3044022066273dcbcca8b145ed48fbe79dbb98e38b295e0a2efe5759a04dcd82a6afa7f3022041609ea67c325a2333adf3ee4805edf2d6b5aa8c1e0f522e578002ad2de7b28d01", - "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" + "30440220310f4c6dfc17b2e1a557200578a74e38deaea2bc9a20b8fd3094a81c88683d4902205d986a6b70503dcb055ce8e758b0aaa39f9b839bbb8b035bac4af6be93c18b4701", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "304402204112cff32842a7136316bc88f184b9d5e0c456f8a1f5a813d698011eef3328a702204cc4f653207db7196acbea2163c4eadfe78d6c6de212e665128156d76575b12301", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "304402203fba96da04ee2225340c5bfe59fd914c775b8712b7a9fceb282022626d2cef40022017e707dec6d08a1e4a9681755dfed622714afa60c73eb755cd73524c71328f3601", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "304402203b094b12e2847292b2772ced709f988625cb1fb481cb6e5fc8ac1eb0d482476f0220197720fb83a9da39867ba32c6c1f261416441fdc6032b07d8c4e895106af24f501", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "30440220355395316c2aec05b55ed3f5a8dbc481d70514776bb71440f67c0c9185954d13022049dbb52a4e10802f21dc040fb6bca693d03414422a50e6ab0ef6fb05f498d64c01", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", + "30440220584b58ca464d6773d95aea04d85ffcd23b7b0463fda9bfa4c42c521d5efdc20f02205ef2912f1dd27fca67c5ad2bdba2fda83f2600b9d9412b69de643ac60f94b89201", + "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" ], "lock_time": 0, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", - "tx_id": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d" + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_id": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, - "memo": "the memo", + "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -926,9 +926,9 @@ }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, - "memo": "the memo", + "memo": "memo1", "memo_is_hex": false, "asset_info": { "divisible": true, @@ -946,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "63647d2d8358b4b23c6ed32a8584835a738f80a8381e55cdf25a8a69170d0a8f", + "hash": "8c3fcb17520b40581c82d705b078448daf5c16a1a33a1e0f8e25347233acaa6a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e213862dbd82f87e7f2ca18ee919a25e0f98635878575ed7725ab3057b0208d47a055ea3925773492becfb7bcde35" + "script_pub_key": "6a2ef86b108e3fa4bb79fc812afb3931efb148608ac5f6318d312038c9790f1a80d5f4c21a34a2673745e7b44b3e67f4" }, { "value": 4949930546, - "script_pub_key": "0014281ea9b25a079b4de6a2f74ae46373dbd79215aa" + "script_pub_key": "00143e7d7661faa6389041324526ba09299c650ab598" } ], "vtxinwit": [ - "3044022001b317ef990256b38691adf0ce08e927cc23738fe93659ca24b711d3f4b3ea0f02205e87a031e873d4c4cfbf46f3ec10c0e2bfb254b1c8427052426ca5915329347601", - "03c6847a7e336970cc972babd5ac34ffcf508a5001fad5814dd83c6b1a5cb1be71" + "30440220160d1cd8a598a22c9fbc53a9a7ce01416562b5e8e5b32e618dfcc45b0e18705b0220246d2a42ece58201c2fdb9b10d693646bb6395631d1b12f32f37275e947aa75101", + "0337f1ce2032d6c7f3f1689f7ebf8a604b3dab011052a558e91b4b675031599c38" ], "lock_time": 0, - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", - "tx_id": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77" + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_id": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", - "block_time": 1730403346, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_time": 1730406268, + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 704, @@ -1083,14 +1083,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 703, @@ -1112,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 701, @@ -1161,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "msg_index": 1, "quantity": 2000000000, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", "status": "valid", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 700, @@ -1193,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 704, @@ -1207,14 +1207,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 703, @@ -1236,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 701, @@ -1285,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "msg_index": 1, "quantity": 2000000000, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", "status": "valid", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 700, @@ -1314,10 +1314,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1338,10 @@ }, { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1369,27 +1369,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1425,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 700, @@ -1456,12 +1456,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 697, @@ -1483,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": null, @@ -1512,16 +1512,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 700, @@ -1543,12 +1543,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 697, @@ -1570,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": null, @@ -1600,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1621,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1642,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1663,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1684,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1705,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1729,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_hash": "2481ece9a31f5bd057b31c85b17c405a21b1e42cb782a1c6444f7e42af3c394e", - "block_time": 1730403327, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_time": 1730406251, + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2:0 4 ", + "utxos_info": " f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1762,7 +1762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1781,17 +1781,17 @@ }, { "tx_index": 75, - "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "block_index": 208, - "block_hash": "00df9bdb53f50e638acfbfe2ac34ff70f3c396409574516f094f672bf0d4382a", - "block_time": 1730403323, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", + "block_time": 1730406238, + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a6bea9faf02900a347a8f071e7a51d640ec3e33a80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aac8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab598c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3:0 4 ", + "utxos_info": " cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1814,7 +1814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1833,17 +1833,17 @@ }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", - "block_time": 1730403319, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_time": 1730406233, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", + "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1851,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1866,7 +1866,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1885,17 +1885,17 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", - "block_time": 1730403304, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", + "block_time": 1730406229, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", + "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1903,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1918,7 +1918,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1937,17 +1937,17 @@ }, { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", - "block_time": 1730403290, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", + "block_time": 1730406226, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "supported": true, - "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1955,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -1985,20 +1985,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "tx0_index": 60, - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx1_index": 55, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2017,38 +2017,38 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "block_time": 1730403332 + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_time": 1730406255 }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730403332, + "block_time": 1730406255, "asset_info": { "divisible": true, "asset_longname": null, @@ -2058,9 +2058,9 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 675, @@ -2068,15 +2068,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2086,9 +2086,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_time": 1730403327 + "block_time": 1730406251 } ], "next_cursor": 674, @@ -2097,17 +2097,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "quantity": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, "asset_info": { "divisible": true, @@ -2118,22 +2118,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2143,22 +2143,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "block_index": 211, - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,30 +2168,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730403350.6183352, + "block_time": 1730406273.1801424, "btc_amount": 0, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "destination": "", "fee": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, - "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -2205,7 +2205,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -2214,7 +2214,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2222,14 +2222,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2237,14 +2237,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2252,14 +2252,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2274,7 +2274,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2282,7 +2282,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2295,7 +2295,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2317,16 +2317,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "asset_info": { "divisible": true, "asset_longname": null, @@ -2338,16 +2338,16 @@ }, { "block_index": 209, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2359,16 +2359,16 @@ }, { "block_index": 208, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,16 +2380,16 @@ }, { "block_index": 208, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -2401,20 +2401,20 @@ }, { "block_index": 204, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "event": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2428,16 +2428,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2449,20 +2449,20 @@ }, { "block_index": 207, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2470,16 +2470,16 @@ }, { "block_index": 206, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -2491,20 +2491,20 @@ }, { "block_index": 206, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2512,20 +2512,20 @@ }, { "block_index": 205, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "event": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403290, + "block_time": 1730406226, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2544,9 +2544,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", + "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", "block_index": 137, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2554,7 +2554,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403015, + "block_time": 1730405937, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2565,14 +2565,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "44f034107057167342bd95bbc7b5362bce805e3db0a6ac30a4dfb6943df4d4c7", + "tx_hash": "94575e0c1ffcf9180229ea6828eb6a719c203f0d760e7bdff30509b1f2f281ee", "block_index": 112, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730402922, + "block_time": 1730405845, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2584,10 +2584,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2595,7 +2595,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2608,10 +2608,10 @@ }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2619,11 +2619,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2632,10 +2632,10 @@ }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2643,11 +2643,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2656,10 +2656,10 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2667,7 +2667,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -2680,10 +2680,10 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2691,11 +2691,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2710,10 +2710,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "fe796ee0c6d7bcaa11a4ad0b53b8961e064e75e2b635ccca7056c031649ce9e3", + "tx_hash": "96c1daa333b0ad90a1465c6d9f2a17e8a37478832ebf5370a833a88a551d5758", "block_index": 151, - "source": "cd51daff023c3b5a395313890e1d0941472c83a8391fdaa0db86bff2d29aca3c:0", - "destination": "bcrt1qcfscu84lmgg0zf04f08xlkwef2mxdvzt28mu4s", + "source": "9295e8eded321451d746577f581fdc93a3aaa6dd62e6d1af4fb807c42337baed:0", + "destination": "bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2721,11 +2721,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403067, + "block_time": 1730405999, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2740,10 +2740,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2751,11 +2751,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2764,10 +2764,10 @@ }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2775,11 +2775,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2788,10 +2788,10 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2799,11 +2799,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2812,10 +2812,10 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2823,11 +2823,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2836,10 +2836,10 @@ }, { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2847,11 +2847,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403290, + "block_time": 1730406226, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2871,9 +2871,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2882,7 +2882,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2892,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -2908,9 +2908,9 @@ }, { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2919,7 +2919,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2929,11 +2929,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -2950,9 +2950,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2971,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -2991,19 +2991,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3011,7 +3011,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3026,11 +3026,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -3040,19 +3040,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3060,7 +3060,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3075,7 +3075,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -3089,19 +3089,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3109,7 +3109,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3124,7 +3124,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -3144,19 +3144,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3164,7 +3164,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3179,11 +3179,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -3193,19 +3193,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3213,7 +3213,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3228,7 +3228,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -3242,19 +3242,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3262,7 +3262,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3277,7 +3277,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -3297,19 +3297,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3317,7 +3317,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3332,7 +3332,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -3346,19 +3346,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3366,7 +3366,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3381,7 +3381,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -3401,19 +3401,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3421,7 +3421,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3436,7 +3436,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -3450,19 +3450,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3470,7 +3470,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3485,7 +3485,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -3504,16 +3504,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -3524,14 +3524,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -3546,20 +3546,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", + "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -3574,20 +3574,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403118, + "block_time": 1730406054, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", + "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -3602,20 +3602,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730403104, + "block_time": 1730406049, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", + "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -3630,20 +3630,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403101, + "block_time": 1730406046, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a292c148469b6dbd41ddcbf00dfeb536d0724efe8f1e1243e3f3c0ab3ac8dd54", + "tx_hash": "fd736247a4657306233a79e8401189106070d296996d407012c76dea85b77d37", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -3658,7 +3658,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403097, + "block_time": 1730406032, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3672,8 +3672,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -3681,16 +3681,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -3698,16 +3698,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -3715,16 +3715,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 40, @@ -3732,16 +3732,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730403007, - "last_issuance_block_time": 1730403011, + "first_issuance_block_time": 1730405930, + "last_issuance_block_time": 1730405934, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 19, @@ -3749,8 +3749,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730402992, - "last_issuance_block_time": 1730403004, + "first_issuance_block_time": 1730405916, + "last_issuance_block_time": 1730405926, "supply_normalized": "0.00000019" } ], @@ -3763,8 +3763,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -3772,16 +3772,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -3789,16 +3789,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -3806,16 +3806,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 40, @@ -3823,16 +3823,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730403007, - "last_issuance_block_time": 1730403011, + "first_issuance_block_time": 1730405930, + "last_issuance_block_time": 1730405934, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 19, @@ -3840,8 +3840,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730402992, - "last_issuance_block_time": 1730403004, + "first_issuance_block_time": 1730405916, + "last_issuance_block_time": 1730405926, "supply_normalized": "0.00000019" } ], @@ -3854,8 +3854,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -3863,16 +3863,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -3880,16 +3880,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -3897,16 +3897,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 40, @@ -3914,16 +3914,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730403007, - "last_issuance_block_time": 1730403011, + "first_issuance_block_time": 1730405930, + "last_issuance_block_time": 1730405934, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 19, @@ -3931,8 +3931,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730402992, - "last_issuance_block_time": 1730403004, + "first_issuance_block_time": 1730405916, + "last_issuance_block_time": 1730405926, "supply_normalized": "0.00000019" } ], @@ -3943,17 +3943,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "block_hash": "3987d9843da16b7b6a7fc7d312abf35ab56d01353b9e9f4a61f9a7ca8f7aa994", - "block_time": 1730403319, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_time": 1730406233, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238:0 4 ", + "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3961,14 +3961,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -3976,7 +3976,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3995,17 +3995,17 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "block_hash": "7f8f33a13fc3fabca70100eec041a6ed2a1ced92c4cf761bf282e6e1c20cee82", - "block_time": 1730403304, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", + "block_time": 1730406229, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68898808f54d3987bc6c7cc027355831d2aaada80d774d7d49f2d506e648858843514fec671a3661d80281ea9b25a079b4de6a2f74ae46373dbd79215aa88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d:0 4 ", + "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4013,14 +4013,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4028,7 +4028,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4047,17 +4047,17 @@ }, { "tx_index": 72, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_hash": "07767cf0f99f80e72c14db15fc90514107bd838510b2e3c2ce16dd7278229066", - "block_time": 1730403290, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", + "block_time": 1730406226, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "supported": true, - "utxos_info": " 018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020:1 2 ", + "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4065,12 +4065,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4081,17 +4081,17 @@ }, { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_hash": "20e7d5dbb7165402d4822e58299647fa3cec122b63e4d401d4bfcfa477908fd3", - "block_time": 1730403287, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "0ad9c63277873202959baabc06121e31a5c13f9689a04b505e1b9115622c0e19", + "block_time": 1730406221, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4:1 2 ", + "utxos_info": " 624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4116,17 +4116,17 @@ }, { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 197, - "block_hash": "5196ca6ff53b4797b4c12445477159f94e838c8feca6b47c7fb7757b19185e88", - "block_time": 1730403255, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "block_hash": "45c183e961a25d45c59f8042057a2e8746cb030855a118f9568e4dc31d644764", + "block_time": 1730406190, + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc:1 2 ", + "utxos_info": " 97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4143,7 +4143,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4161,20 +4161,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4196,9 +4196,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4213,7 +4213,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4239,9 +4239,9 @@ }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4256,7 +4256,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4282,9 +4282,9 @@ }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4299,7 +4299,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4325,9 +4325,9 @@ }, { "tx_index": 60, - "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "block_index": 210, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4342,7 +4342,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4373,10 +4373,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, "block_index": 156, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4401,7 +4401,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4410,10 +4410,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4438,7 +4438,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730403007, + "block_time": 1730405930, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4450,10 +4450,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4478,7 +4478,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730402992, + "block_time": 1730405916, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4490,10 +4490,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4518,7 +4518,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730402989, + "block_time": 1730405912, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4530,10 +4530,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4558,7 +4558,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4576,22 +4576,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4600,22 +4600,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", + "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", "tx_index": 21, "block_index": 134, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403004, + "block_time": 1730405926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4624,22 +4624,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", + "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", "tx_index": 20, "block_index": 133, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403000, + "block_time": 1730405923, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4648,22 +4648,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", + "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402996, + "block_time": 1730405919, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4672,22 +4672,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "490e4645b0e811425dd7324731267eaf5aa77a9db80268d252e1ab8639fe0d0d", + "tx_hash": "2b7563fabb8ea9da7663f9ced59d2ac6c2db11e3a18555ac78b84322ef7c2461", "tx_index": 15, "block_index": 127, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402977, + "block_time": 1730405900, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4696,22 +4696,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4758,8 +4758,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset_info": { "divisible": true, "asset_longname": null, @@ -4772,12 +4772,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4793,7 +4793,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4805,7 +4805,7 @@ "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "02000000000101198ef80491b7f0afbeb07c44ef1ccc204b67da43a19d57c85c381da638a3206d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff0200000000000000002b6a29f53254444ea639fcf641b377869cb893e9bc3291cc6cfc274663cfa8d13a524f13ce021929dc4400ec82ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "020000000001015e8dadefd772a42f70ae7475543f39d868484351995d278a0dfed11ad53111bd0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0200000000000000002b6a291ed47a6584c26b53ee707e2eede672b68e04374afe6fdfe7af80978b906a6796f19b3f9c0af9dbd2da82ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4823,23 +4823,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" }, "name": "btcpay", - "data": "434e5452505254590b0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b278097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "data": "434e5452505254590b6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd84224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "0200000000010159c6c0bf9369242af24f424c4c2446a2a398faaed9de6969a6ab08bbb1eecc1d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e803000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a00000000000000004b6a49df135ffaecbb57d487c7b6b973b54db0b10215aac8c937d8fa37539ede76f2c295030de69ca3c074ddac3938f34316c2db83b13718d87904b741f717dc3b9ada3f80b67be04ef860a277a7052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "020000000001016de2496a8d83c38bc4b95489d327ab1a4fbdbbc13a0c78f15f83ff226dfc8fab0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e00000000000000004b6a4976141b0fbe7328898718ca76b4a0756a3174c416e7aae171d2f6a2339004fd57306769044e2df1193147bdefeb3b5f8ae3f0dc49dd5cf6c1c55697a51147e150c65f3eaf505a3cac4d77a7052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "order_match_id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "status": "valid" } } @@ -4848,7 +4848,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 1000, "overburn": false }, @@ -4858,27 +4858,27 @@ "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "020000000001016b49b545791d69461b05fe4d1ba812c61d1105211d2066cb79e6321af3e5888c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000" + "rawtransaction": "020000000001010e9b4090a40531098c198d89ea92aa3546a5b57aeed32e58809cd0e532391ea70000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" }, "name": "cancel", - "data": "434e545250525459465e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "data": "434e5452505254594625da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "btc_in": 4949896528, "btc_out": 0, "btc_change": 4949882322, "btc_fee": 14206, - "rawtransaction": "020000000001012b3e48c5270b66083a7cb70d50d0ef127b88ffb3d8d7e20eb050884d735e665e01000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d170ffffffff0200000000000000002b6a297041c053d10622c2c203e8b65d7466bed22f8bce5a00b5ddcad80440b7f8db9bb8fdc00811521f7bbbd235092701000000160014bbc9ae718d4ff35e294aba307f11cb9e6a70d17002000000000000", + "rawtransaction": "02000000000101fe505a7eb491a7183aca2450a64372d4268de4b3fb596eeec20b9ed7ea9bda2501000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a8ffffffff0200000000000000002b6a29ffc64cedeb35544d6e96ef3a2ee718afee555ab19ab9739c77f2592740b2ac14042a4e62ae4b72b948d235092701000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "status": "valid" } } @@ -4887,7 +4887,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4906,7 +4906,7 @@ "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101017eccc91f843f89f84a9080fb7e56380f0fef6a0a3678b3f9fd07d6f026766200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000226a203eadad155f577aec68f81edcf063751eee680d461fdfc8b3a50a213f0e786d8192bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101b8d7f271a59dff34bdb09b438bcece6246a7a58789371a52d0cc9bbd2de0433b0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000226a20cb959a0ab9047972db5c9479f1a7c138d5b7d83daaf250a9b249a0f7e5ff11c892bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4922,7 +4922,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4946,7 +4946,7 @@ "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "02000000000101c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a9020000001600148611652400789612e660514167a77909605413abffffffff0200000000000000002c6a2a8bc356b3ed1b329950c42d290c26cb9028aad3fac814fc50c4cea2236a68ec46745455477a09cc118d8332dd0827010000001600148611652400789612e660514167a77909605413ab02000000000000", + "rawtransaction": "0200000000010144c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9020000001600145e5262049de2f0df536d6112a3107d5ef284384bffffffff0200000000000000002c6a2ad506e5d390aba83f230e5384acc629dd9980d3d0f67cccb049acc599e7e61988c1c478e674ece915bb3832dd0827010000001600145e5262049de2f0df536d6112a3107d5ef284384b02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4968,14 +4968,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -4994,7 +4994,7 @@ "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "0200000000010137bf707f5df1f14af0fb4c8df0be9ac5bc1cdd962fec288bd1fdb3dbe80e00e600000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a213d8b9963b510a57f2173926c1f21767e398b19e231557bd4a493b4d1b8d2ea21c957bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101851e8c9d07ac05388df23a3194a5bef4cbefb9e69874cd1fc4011d7023471d940000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21395b1f6a91b676fad6dbe408a5c9b8236d7f8a77346ec92d198ff1c7367f6bd39657bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5011,10 +5011,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "transfer_destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "lock": false, "reset": false, @@ -5027,7 +5027,7 @@ "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101de64d703e4d9afb6435305e99b5b5877ef4dc86728a80be5eb489e8805b4753c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000236a2113e8e3691c06c3ce535832ac2a9971ffa85d39d717115db0ac0f884837b406ed3569b2052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101ea6e2cfa2896c07bdba67c07f9ee0e8a62336050de30bfb0a37684f0a238b3bb0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000236a2118c32d6b011d6cb7494cea4b914abf59d55c38a8b6ce8d0d945ac21ceac11eed1f69b2052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5052,16 +5052,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", 1 ], [ "MPMASSET", - "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", 2 ] ], @@ -5069,26 +5069,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a6bea9faf02900a347a8f071e7a51d640ec3e33a80d68898808f54d3987bc6c7cc027355831d2aaada40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e808847258a0cd8bc0a3db0e1db2449d01d63da29bc40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "02000000000104a52dba153ade1cd8569b494843811d5bf3aa25c8aaee76a0f688142f72f2460e00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff77a91c304dddf305f08d41f07b89ff7c6a1f6294deae2a4d613db88bdef4d70700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33afffffffff9cfb6a43839e6105dd18408d504b4521081dc130d9d3660ab9d6bccd5b7b56200000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff342a6e4d339aacb56e82c89a93f016b89fa3b119b078239a0fc50d3032ac8d0400000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff03e80300000000000069512103e031860a9176906d94a0ed33d0308f37b33cc220fd336cb97326e20d2b8c8f3d2102f9c9a0c72021cbab7c3aebec4ca299ce938d330895ba7166f184a31539847f12210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aee80300000000000069512102ff31860a9176906d9473ed315096319e49e8eb205e74c44902c547104f824cfe21031af32111a8b94b2428e973978a6555cce0d8b015bf10ab26f184a6f6590cbbef210357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f53aeb8f216a804000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000002000002000002000000000000", + "rawtransaction": "02000000000104a483aa729168b569950b80d77888ce81f2d17952a60b4695c87d6304c50f3e640000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff1cfb7ca28b20bbef6d741ef6effcd4afde9bd1964cac9cb8679d666a23858f0e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0ef812af81b091211c39e6a3238e1850ba3d734afb131c6bd7fc714a44ea6f3e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff29757e6db0f187c4ecd3357bdc91ee7a03ff47cd38b6855faa9b9c5aaed138e80000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000069512103a0a348530d1605a1e5c212d0c41b57dcc8af119295002a371d295d947b17d0442102c24dde1a6521b8af103bbd053ac5cfb02a42c5184faca4d2699b9b03f51e98b62103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee80300000000000069512102bfa348530d1605a1e51112d244929f927123373029f1ce88e45eab4da4a312fa21026cd35f92220432a3c887b7388a2414946392d87b95851892699b9ee095965c002103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aeb8f216a80400000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5100,7 +5100,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5117,7 +5117,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5131,7 +5131,7 @@ "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "020000000001014278e72c345fd1ba53fda7de344e89191294bd8ad7d782a06a18b668ae4d56c700000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000356a33818d85ebd35434b0d7949c344254a640f54b2c06f1d97760b2c6d65f8ba52dfb5811f7fc1330d0178cd7d287bbfa71cc1c010737b8052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101d75f48deb96882cdce86578209818cdb3c2e8ca23fc1c7291dbea3c7609569550000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000356a3324f409bade926749f4bebfb43f97ef030e3b28f839eeb435ca88f848be84b7d5b3fac006ea0927d1c4a6b1d2d680a3fe516ecd37b8052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5153,8 +5153,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5170,19 +5170,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d68898808f54d3987bc6c7cc027355831d2aaada", + "data": "434e54525052545902000000000000000100000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "0200000000010119499ff6f2b1f68abd5d1eae03212b26e3867297976d327b65665983bb51a73c00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000306a2eaba32ec97c38fff6d24c2487fcb1bdd6f61f271e77ce19607af26231601d318ec3ac947667db1c56908f9b2765015cb9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101f65d910f19d7f8a53edcc2cf5fa708d8efc5b2480460ff18988d5b45793a9e830000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000306a2eef0aa01f8a6c172ee628e06babf8eea832f2cb402c5edaa9a4d81855808f252cc7f7d91cc14e4c6b83e10959ca435cb9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "quantity_normalized": "0.00001000" } @@ -5192,23 +5192,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d68898808f54d3987bc6c7cc027355831d2aaada07ffff", + "data": "434e54525052545904808847258a0cd8bc0a3db0e1db2449d01d63da29bc07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101421b342347308137eaaebec91f633fc3e02f57b3acb74c658c8b35eb9ae2298500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000236a214a05c72b8857605588e98c7f7159b3e39447d16f206e0cbf3e94ae387cca891f3857bc052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101945b7a46652dff712689fd6fe1ccbe51ceabbff6dd73f36e3ef2fd17735756960000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21bb5b1632856e2c38b48b0aaf7e94274bf4d0477e40412d3191d6feae90070a313f57bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "flags": 7, "memo": "ffff" } @@ -5218,8 +5218,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "quantity": 1000 }, "name": "dispense", @@ -5228,7 +5228,7 @@ "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "02000000000101e23d2bb80ab21b65bc7481a04c4186ad90b1a147a9f8615793421096bbb1614e03000000160014d68898808f54d3987bc6c7cc027355831d2aaadaffffffff03e803000000000000160014281ea9b25a079b4de6a2f74ae46373dbd79215aa00000000000000000c6a0a4c6fc4b899825aff3c1e8a25082701000000160014d68898808f54d3987bc6c7cc027355831d2aaada02000000000000", + "rawtransaction": "02000000000101adb758936db4f7ed50786161464d4082a86dd5ffc87e92031012b44ed57ebef7030000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bcffffffff03e8030000000000001600143e7d7661faa6389041324526ba09299c650ab59800000000000000000c6a0a9787813ebb991a086da18a250827010000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bc02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5241,7 +5241,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5272,7 +5272,7 @@ "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "020000000001018f5c0cdb95201f2d95425763fbcefc83e10631bb6d33cfa9ef3379e00cc0429d00000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000316a2f96ced9e9aaa631a7832f3d5d8288e6e5ca459b2bee44f3ab9b59bffa9ebde5b3c01fba036d518369046cde73f7c0cf21b9052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "02000000000101193a2c693348736ffa2753b9e4d38478166341c63d9bd1841245547b2e95fd050000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000316a2fed8000fbedd5138d6e2624e330346fffeb71c735bff59d058dc38e6dbfb6e29124342e1147f60ba628f711eb180bb321b9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5307,13 +5307,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5325,7 +5325,7 @@ "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101644babc6f12f61cc3aaf550215ac505508529345cf6a5b7f7bdc2f267ee89f7500000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff020000000000000000166a1496ecbe63dfd2db9976eb258914c9489c35cd21f852bf052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "0200000000010184b1483d8197971cb9b69408599da8871d99fb5e7d71110708cb868ebe062fec0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000166a14c984402cc7424ad7db1331b2d9e0cb83f1341ec352bf052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5337,10 +5337,13 @@ } } }, + "/v2/addresses/
/compose/utxo": { + "error": "Disbaled. Please use `attach` or `detach` instead." + }, "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5359,7 +5362,7 @@ "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "02000000000101603a6dc731ec62b9f162b278b1a901b7853b84e776a763dd055576fb8ac44ee000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33affffffff032202000000000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a0000000000000000146a129783a3b26b834513f781b25d31c266d5fcfadab5052a01000000160014a6bea9faf02900a347a8f071e7a51d640ec3e33a02000000000000", + "rawtransaction": "0200000000010184384aeb3e8356ccfd9f558a2a9e85f61d825d148ab5837c92e977d4a4ad13f00000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000146a12446e9de73946781ac4e3a09fb3ca5e0c5000dab5052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5375,21 +5378,21 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" + "source": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" }, "name": "detach", - "data": "434e5452505254596662637274317135366c326e376873397971327833616737706337306667617673387638636536657139723739", + "data": "434e5452505254596662637274317133387979617764677936337465753079686c756838616b656d3736763974353774677475356a", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "02000000000102c4c38e926b8a992f51930b70bed59d3a4c8f8b113d16295337d51fe78546f4a90000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff13de6aae814eb82445cb49b084edd6ce86376c1d1c404fa5173689c5704203180100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b5ffffffff020000000000000000376a358bc356b3ed1b32993aa64e5b7817baa51fc6e194ff7c8f6a55bf905b59098b72ec3762771c6ead679abbaac732b25792b3db5d51df772c0a270100000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b502000002000000000000", + "rawtransaction": "0200000000010244c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dfffffffffcb7b36b2a6f61fd13996cc7c49f0ee2b92261b6422f18aa8d3dcbf6f2189ad2010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dffffffff020000000000000000376a35d506e5d390aba83f496c30f6d8f758eea0f9aab18118abca979fb1fc92d660e345b110de15878c78e80e1cd4f9c9be0a253ede4908772c0a27010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79" + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" } } } @@ -5400,8 +5403,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -5409,16 +5412,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730403287, - "last_issuance_block_time": 1730403287, + "first_issuance_block_time": 1730406221, + "last_issuance_block_time": 1730406221, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "owner": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "owner": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false, "supply": 100000000000, @@ -5426,16 +5429,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730403262, - "last_issuance_block_time": 1730403262, + "first_issuance_block_time": 1730406198, + "last_issuance_block_time": 1730406198, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -5443,16 +5446,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730403097, - "last_issuance_block_time": 1730403104, + "first_issuance_block_time": 1730406032, + "last_issuance_block_time": 1730406049, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "owner": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "issuer": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "owner": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "divisible": true, "locked": false, "supply": 100000000000, @@ -5460,16 +5463,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730403094, - "last_issuance_block_time": 1730403094, + "first_issuance_block_time": 1730406027, + "last_issuance_block_time": 1730406027, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 100000000000, @@ -5477,8 +5480,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730403055, - "last_issuance_block_time": 1730403055, + "first_issuance_block_time": 1730405989, + "last_issuance_block_time": 1730405989, "supply_normalized": "1000.00000000" } ], @@ -5490,8 +5493,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "owner": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false, "supply": 10000000000, @@ -5499,15 +5502,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730402957, - "last_issuance_block_time": 1730402970, + "first_issuance_block_time": 1730405882, + "last_issuance_block_time": 1730405893, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5515,14 +5518,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5530,7 +5533,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5543,7 +5546,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5565,9 +5568,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5582,7 +5585,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5608,9 +5611,9 @@ }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5625,7 +5628,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5651,9 +5654,9 @@ }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5668,7 +5671,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5694,9 +5697,9 @@ }, { "tx_index": 60, - "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "block_index": 210, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5711,7 +5714,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5737,9 +5740,9 @@ }, { "tx_index": 53, - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5754,7 +5757,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5785,13 +5788,13 @@ "/v2/assets//matches": { "result": [ { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5805,7 +5808,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5825,13 +5828,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 53, - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5845,7 +5848,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5865,13 +5868,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", "tx0_index": 50, - "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 51, - "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5885,7 +5888,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5905,13 +5908,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5925,7 +5928,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5952,20 +5955,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "event": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5973,20 +5976,20 @@ }, { "block_index": 125, - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "event": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -5994,20 +5997,20 @@ }, { "block_index": 124, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6015,20 +6018,20 @@ }, { "block_index": 124, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "event": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6040,16 +6043,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6067,12 +6070,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -6084,16 +6087,16 @@ }, { "block_index": 209, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -6105,16 +6108,16 @@ }, { "block_index": 208, - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -6126,16 +6129,16 @@ }, { "block_index": 207, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -6147,16 +6150,16 @@ }, { "block_index": 206, - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -6179,14 +6182,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6201,20 +6204,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6229,20 +6232,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6257,20 +6260,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -6285,7 +6288,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730402957, + "block_time": 1730405882, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6297,10 +6300,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6308,7 +6311,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -6321,10 +6324,10 @@ }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6332,7 +6335,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -6345,10 +6348,10 @@ }, { "tx_index": 75, - "tx_hash": "2261181d26d456ad19e3f92273c63d5e45f7ba7fff3ca40ab13c7103c006f6d3", + "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", "block_index": 208, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6356,7 +6359,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "asset_info": { "divisible": true, "asset_longname": null, @@ -6369,10 +6372,10 @@ }, { "tx_index": 74, - "tx_hash": "b740a649bd71c8266b284406717840bc0fd52b4fa205794c7820c0da2b0bd238", + "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", "block_index": 207, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6380,7 +6383,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403319, + "block_time": 1730406233, "asset_info": { "divisible": true, "asset_longname": null, @@ -6393,10 +6396,10 @@ }, { "tx_index": 73, - "tx_hash": "4a0d00f21ff869b2308d464b80aa95d5f332b59cb71b7b55ca01799b9624cd1d", + "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", "block_index": 206, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6404,7 +6407,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403304, + "block_time": 1730406229, "asset_info": { "divisible": true, "asset_longname": null, @@ -6423,9 +6426,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6434,7 +6437,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6447,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6460,9 +6463,9 @@ }, { "tx_index": 29, - "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", + "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", "block_index": 142, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6471,7 +6474,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6481,7 +6484,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403033, + "block_time": 1730405966, "asset_info": { "divisible": true, "asset_longname": null, @@ -6497,9 +6500,9 @@ }, { "tx_index": 30, - "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", "block_index": 150, - "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6507,10 +6510,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 0, - "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6518,7 +6521,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403063, + "block_time": 1730405996, "asset_info": { "divisible": true, "asset_longname": null, @@ -6534,18 +6537,18 @@ }, { "tx_index": 33, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6555,7 +6558,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -6576,9 +6579,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6587,7 +6590,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6597,7 +6600,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6625,7 +6628,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6633,7 +6636,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6642,7 +6645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6650,7 +6653,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6659,7 +6662,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6667,7 +6670,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6676,7 +6679,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6691,27 +6694,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6726,7 +6729,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -6740,27 +6743,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", + "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", "block_index": 147, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6775,7 +6778,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403051, + "block_time": 1730405985, "asset_info": { "divisible": true, "asset_longname": null, @@ -6789,19 +6792,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6809,7 +6812,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6824,7 +6827,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6838,19 +6841,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6858,7 +6861,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6873,7 +6876,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -6896,10 +6899,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6924,7 +6927,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6942,22 +6945,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "c3b55d4aad986c6710aaebc91510e5a61428d6069a211761960b4b7089637c06", + "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6966,22 +6969,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b", + "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402965, + "block_time": 1730405889, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -6990,22 +6993,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7020,22 +7023,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "d621c645bdb726e1b3f0bf491acd38e0a186f282b714f11aeca83bba82b70144", + "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", "tx_index": 11, "block_index": 123, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402961, + "block_time": 1730405885, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -7051,9 +7054,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7068,7 +7071,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7094,9 +7097,9 @@ }, { "tx_index": 53, - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7111,7 +7114,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7137,9 +7140,9 @@ }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7154,7 +7157,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7180,9 +7183,9 @@ }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7197,7 +7200,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7223,9 +7226,9 @@ }, { "tx_index": 60, - "tx_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "block_index": 210, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7240,7 +7243,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7271,9 +7274,9 @@ "/v2/orders/": { "result": { "tx_index": 55, - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "block_index": 211, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7288,7 +7291,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7316,13 +7319,13 @@ "/v2/orders//matches": { "result": [ { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7336,7 +7339,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7363,15 +7366,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "btc_amount": 2000, - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "status": "valid", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "btc_amount_normalized": "0.00002000" } ], @@ -7382,9 +7385,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "block_index": 188, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7402,7 +7405,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730403201, + "block_time": 1730406148, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7428,9 +7431,9 @@ }, { "tx_index": 55, - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "block_index": 211, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7448,7 +7451,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730403346, + "block_time": 1730406268, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7474,9 +7477,9 @@ }, { "tx_index": 50, - "tx_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", + "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", "block_index": 185, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7494,7 +7497,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403133, + "block_time": 1730406068, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7520,9 +7523,9 @@ }, { "tx_index": 52, - "tx_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", + "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", "block_index": 208, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7540,7 +7543,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403323, + "block_time": 1730406238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7566,9 +7569,9 @@ }, { "tx_index": 58, - "tx_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", + "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", "block_index": 193, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7586,7 +7589,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403230, + "block_time": 1730406175, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7617,13 +7620,13 @@ "/v2/orders///matches": { "result": [ { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7640,7 +7643,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7660,13 +7663,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 53, - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7683,7 +7686,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403201, + "block_time": 1730406148, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7703,13 +7706,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", "tx0_index": 50, - "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 51, - "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7726,7 +7729,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403133, + "block_time": 1730406068, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7746,13 +7749,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7769,7 +7772,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7795,13 +7798,13 @@ "/v2/order_matches": { "result": [ { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7815,7 +7818,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7835,13 +7838,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", "tx0_index": 52, - "tx0_hash": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 53, - "tx1_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7855,7 +7858,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730403201, + "block_time": 1730406148, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7875,13 +7878,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3_b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", + "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", "tx0_index": 50, - "tx0_hash": "482af6c87125f469624963791ef94e471b475a16c2f2c3567c5b1cba6ae746c3", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 51, - "tx1_hash": "b521cafa820140d1c8e59b7e2deb4af4c61d2e5cb958235a4a19ae91a476f891", - "tx1_address": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7895,7 +7898,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730403133, + "block_time": 1730406068, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7915,13 +7918,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx0_index": 60, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx1_index": 55, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7935,7 +7938,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7980,66 +7983,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", "block_index": 121, - "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", + "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730402953, + "block_time": 1730405878, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "d7fa70649ea7b362563a38e10be7bb459b26276c1950e86d5ec3aa76fc3bc32a", + "tx_hash": "c0e441c6404c2d3fda3d08373f8563dca76c7a8fbeadef531d02d4b3f4cf31c6", "block_index": 120, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730402949, + "block_time": 1730405874, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "abaa0b2b49bcc429f1201f0bdc67e04dbbbb89ad7afea7f70f596fe76347a645", + "tx_hash": "0811c1104f3911e3ad4092bff677862f1831e186b035da0443cc3c17527a5c15", "block_index": 119, - "source": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h", + "source": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730402945, + "block_time": 1730405870, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "39121377e6d73b9b1aa803b5ff43fad8d6344631c3e94760d544053976ded12d", + "tx_hash": "7a0fd8240482f95bd7445964937272bbbab4ca98481a17340bd2a183c290d391", "block_index": 118, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730402941, + "block_time": 1730405866, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0353df7b0665acf84123ac3e6bedb5fd38ae021d8e9a8e5988ed27f3afdb8822", + "tx_hash": "c835412e2a2077d8840895f89edb16b3bc08343d81e4c94c7c12286204e8e50f", "block_index": 117, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730402938, + "block_time": 1730405863, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8051,9 +8054,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8062,7 +8065,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8072,7 +8075,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -8088,9 +8091,9 @@ }, { "tx_index": 29, - "tx_hash": "0e01a9a95b805c7a5c5c053419ec1fdf568438dae7546b9ee32bbce166e0d40f", + "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", "block_index": 142, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8099,7 +8102,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8109,7 +8112,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403033, + "block_time": 1730405966, "asset_info": { "divisible": true, "asset_longname": null, @@ -8125,9 +8128,9 @@ }, { "tx_index": 30, - "tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", + "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", "block_index": 150, - "source": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8135,10 +8138,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3e85482b4ec05e985e349a954f6adc574effdf6469abfee36e1193b2ec3a6791", - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 0, - "last_status_tx_source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8146,7 +8149,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403063, + "block_time": 1730405996, "asset_info": { "divisible": true, "asset_longname": null, @@ -8162,9 +8165,9 @@ }, { "tx_index": 63, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8173,7 +8176,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8183,11 +8186,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8199,18 +8202,18 @@ }, { "tx_index": 33, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8220,7 +8223,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8241,9 +8244,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8252,7 +8255,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8262,7 +8265,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -8282,19 +8285,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8302,7 +8305,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8317,7 +8320,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -8331,19 +8334,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8351,7 +8354,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8366,7 +8369,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -8385,20 +8388,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8419,20 +8422,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8455,12 +8458,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "event": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "tx_index": 42, - "utxo": "1140eef6b190b6b6f0f2925a8876d5001445510bc8a2838968047df3dd8aa2bb:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "utxo": "97b40fb2d3fcec879da9268d14d082e04230015d3e338320a5245e8a0174be55:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "confirmed": true, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "divisible": true, "asset_longname": null, @@ -8481,27 +8484,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 704, @@ -8510,14 +8513,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8528,9 +8531,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 703, @@ -8539,9 +8542,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -8551,24 +8554,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8578,9 +8581,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 701, @@ -8592,15 +8595,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } }, "/v2/events/counts": { @@ -8635,16 +8638,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8654,9 +8657,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 700, @@ -8666,12 +8669,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8681,9 +8684,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 697, @@ -8693,39 +8696,39 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", - "utxo_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "block_time": 1730403346, + "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730403332, + "block_time": 1730406255, "asset_info": { "divisible": true, "asset_longname": null, @@ -8735,24 +8738,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8762,9 +8765,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_time": 1730403327 + "block_time": 1730406251 } ], "next_cursor": 669, @@ -8781,27 +8784,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8816,7 +8819,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8830,19 +8833,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8d58a9d5ca0205bc402efc602f86683a8d7a6a8de19c5b177f183d03b8c720fc", + "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8850,7 +8853,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8865,11 +8868,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403258, + "block_time": 1730406194, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -8879,27 +8882,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "519873fd272ee7bc9ef10aeaa68e571cd9655ae64f610a2dd601e35b6522600b", + "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", "block_index": 147, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "last_status_tx_hash": null, - "origin": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8914,7 +8917,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730403051, + "block_time": 1730405985, "asset_info": { "divisible": true, "asset_longname": null, @@ -8928,19 +8931,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1d64c9ce7c7c1635954a05e29832b07a22bc20cec5e57966083073e46331ca21", + "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8948,7 +8951,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8963,7 +8966,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403029, + "block_time": 1730405961, "asset_info": { "divisible": true, "asset_longname": null, @@ -8977,19 +8980,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0c8dd12c830698a024eb310fc47364becc38d19d4596920a6b0094f9ca7519d4", + "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", "block_index": 140, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40f6323ad606120a9b5c732ae9fb2a919379bad245ada12f4afe12fef13b23ca", + "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8997,7 +9000,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9012,7 +9015,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730403025, + "block_time": 1730405948, "asset_info": { "divisible": true, "asset_longname": null, @@ -9031,10 +9034,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9042,7 +9045,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -9055,10 +9058,10 @@ }, { "tx_index": 78, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9066,11 +9069,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9079,10 +9082,10 @@ }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9090,7 +9093,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9103,10 +9106,10 @@ }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9114,11 +9117,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9127,10 +9130,10 @@ }, { "tx_index": 76, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9138,11 +9141,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9157,14 +9160,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -9179,20 +9182,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "f9fdd20a34c02388a82be3b5edf1da64f24bff88c129b705bc66bca926cb92a0", + "tx_hash": "c29d7a9278990abb929a4b5c564f4b26d342a2c3dfc4ae3c6e6e98dcf8ec2aed", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "transfer": false, "callable": false, "call_date": 0, @@ -9207,20 +9210,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403262, + "block_time": 1730406198, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "7d49ceb2c1efaab0bec033589f4b1a5acf5fddc6c576f89c5773d3c9feec2f4d", + "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -9235,20 +9238,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403118, + "block_time": 1730406054, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4e7622a4daf8f1bfd0281d024502a455ac7852e93dfa05b6861a3cd534c116fe", + "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -9263,20 +9266,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730403104, + "block_time": 1730406049, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "6493dd7f48b90dfe79ffd4089dc6edbb871f5c380f747c08299a3ed2d8612c75", + "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -9291,7 +9294,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403101, + "block_time": 1730406046, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9302,14 +9305,14 @@ "/v2/issuances/": { "result": { "tx_index": 71, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "transfer": false, "callable": false, "call_date": 0, @@ -9324,7 +9327,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9333,16 +9336,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -9353,16 +9356,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" } ], @@ -9373,9 +9376,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9383,14 +9386,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403019, + "block_time": 1730405941, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "ded0a60f36d2eb6a6646cce4abc5aa87e1935e8597a67acee1e7dfeb200393cf", + "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", "block_index": 137, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9398,7 +9401,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403015, + "block_time": 1730405937, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9408,9 +9411,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9418,17 +9421,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730403019, + "block_time": 1730405941, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, "block_index": 156, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9453,7 +9456,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9462,10 +9465,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9490,7 +9493,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730403007, + "block_time": 1730405930, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9502,10 +9505,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9530,7 +9533,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730402992, + "block_time": 1730405916, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9542,10 +9545,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9570,7 +9573,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730402989, + "block_time": 1730405912, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9582,10 +9585,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b93c2055dfc02c1768f8771938027d5825037655729956bd35f30cc0d9504704", + "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", "tx_index": 10, "block_index": 125, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9610,7 +9613,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730402970, + "block_time": 1730405893, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9628,22 +9631,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9652,22 +9655,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "c4c153739a4a877a84b6c920bc1d94c7811fd91214791be6d203a9f4b01d171c", + "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", "tx_index": 21, "block_index": 134, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403004, + "block_time": 1730405926, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9676,22 +9679,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0377ef6aa94ae2cad5ff2cb6b8397d2d6b60c78d2cd245d52b96270fd4152040", + "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", "tx_index": 20, "block_index": 133, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403000, + "block_time": 1730405923, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9700,22 +9703,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "083057e50919a04bedaef0ce9f29b29f0e032f9662550f4d662d9be0a7c9a8e7", + "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "cf97eedb3424d24cf2c6ea582835ff50639f805308770543e6548ace12758c28", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402996, + "block_time": 1730405919, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9724,22 +9727,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "bdd5eb1e485bf37c64ccd4861e921799fad0f82b6d9debdf6cdead42a4f049e3", + "tx_hash": "79d19e0a40bca002f152c5b29d457ee19081e65cc5c1d8db52bfb659756ec8a9", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "fairminter_tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730402986, + "block_time": 1730405908, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9753,22 +9756,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, "block_index": 136, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -9779,23 +9782,23 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ - { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", - "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" - }, { "vout": 1, "height": 210, "value": 4949896528, "confirmations": 2, "amount": 49.49896528, - "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", - "address": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk" + "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" + }, + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" }, { "vout": 2, @@ -9803,8 +9806,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32", - "address": "bcrt1qhfgy4at52c2w5g58rve32u6j3japn54u3h0y0h" + "txid": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a", + "address": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj" } ], "next_cursor": null, @@ -9813,25 +9816,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "917d2d5ae0219497b7e65a7cf5f7912ee3b2ca5266e2be249cabad51ec227e04" + "tx_hash": "c3a8068df814366cf5a33f32a345e9020848f8e449eada40071edb6fab0f350c" }, { - "tx_hash": "d69560da41093afa22870cfabf1a00e92fe368dfce31d43ceb86e3dabaa80031" + "tx_hash": "0c41d68a310a5cde52ad46df9407819f38179f4056738621a40820ade614151b" }, { - "tx_hash": "7dbd6aac5dd5a0c2a4042a1edb46acc0833d817212b23a58df59a1e1f6eed860" + "tx_hash": "1287ff9109c4deba30c2ef14e7fa0ce3d0577e19856549d45903ed8fc421f347" }, { - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788" + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156" }, { - "tx_hash": "2e4c144769e71645b69bcfa1bd93cbeb1ceb446c33027a0e932d52661a45d19b" + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" }, { - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1" }, { - "tx_hash": "cdd1e312727b6ca9e108ebe17268b648a1b6a08f8504e2a70b60cc5543dffbcb" + "tx_hash": "657b360ca3f7b365aa76df8755ff71b0e9ea2deb0ac41859a042c65c7429fede" } ], "next_cursor": null, @@ -9839,37 +9842,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "210c869407569853cfda617387ef799a309015dea140ce4eb21e338f9e106fcb" + "block_index": 7, + "tx_hash": "0426ca0b6ab06d9145755ae7980fdc28028d4870252d9510713e2ef15d7b475d" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 1, - "height": 210, - "value": 4949896528, - "confirmations": 2, - "amount": 49.49896528, - "txid": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b" - }, { "vout": 0, "height": 203, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4" + "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4" + }, + { + "vout": 1, + "height": 210, + "value": 4949896528, + "confirmations": 2, + "amount": 49.49896528, + "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0357e6ac6e192a02f7fa81edd6d4a69a08a79d7c1b09aedba30718fd518bd6807f" + "result": "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010132dbb0d3e8eef8f41d294cef9f9197c56bff1dd0172d99bafd7aaf93a65a5a590100000000ffffffff03e80300000000000016001447e794c0636243d6d2ad2e90d30bb10f91b3b9b500000000000000000c6a0a10d63a99d1c73db618cceb140927010000001600148611652400789612e660514167a77909605413ab0247304402205e6f7f871cd7512b9b60c82270e2ed06f13866c428aeb4902a8bba359adcf0bb022065cd247db11e751639a44542bf79a5cbe7a12c4949c48f3b7c7cf8508517dc91012102aaa71ed188f33f8ae081da50540893a4dc64fa72a7cc1552366e232739f2096900000000" + "result": "020000000001019afef15844ab2436b6dd8a5120c844a93a6df0adf9263f8bf95e3b04e7e655790100000000ffffffff03e8030000000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d00000000000000000c6a0a58647fa68b6e9b0364c7eb140927010000001600145e5262049de2f0df536d6112a3107d5ef284384b0247304402203ee9fe928633499235c32bbc9fabc4abe15ba5fc87e81457fc26120ca1bdd01702200410265a244e15ba8b6537287195ebb0d4a5b15101e9397ae574d3447c33422a0121032843656ba832e0549a869a91d4662871f4cee56ddb6206a6e59e74a6f0758fd200000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58706 @@ -9892,27 +9895,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79 }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "quantity": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, "asset_info": { "divisible": true, @@ -9923,22 +9926,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -9948,22 +9951,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "block_index": 211, - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -9973,30 +9976,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730403350.6183352, + "block_time": 1730406273.1801424, "btc_amount": 0, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "destination": "", "fee": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, - "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -10010,7 +10013,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -10019,19 +10022,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -10041,7 +10044,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -10050,27 +10053,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79 }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "quantity": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, "asset_info": { "divisible": true, @@ -10081,22 +10084,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "CREDIT", "params": { - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -10106,22 +10109,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "asset": "XCP", "block_index": 211, - "event": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -10131,30 +10134,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 }, { - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730403350.6183352, + "block_time": 1730406273.1801424, "btc_amount": 0, - "data": "020000000000000001000000000000271080d774d7d49f2d506e648858843514fec671a3661d", + "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", "destination": "", "fee": 10000, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", - "tx_hash": "007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", "tx_index": 79, - "utxos_info": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463:1 007cc0f2e91401101209b09808c895dd7967c943feb4dcd853db213ab7365d77:1 2 ", + "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "memo": null, "asset_info": { "divisible": true, @@ -10168,7 +10171,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730403350.6183352 + "timestamp": 1730406273.1801424 } ], "next_cursor": null, @@ -10190,15 +10193,15 @@ "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", "block_index": 211, - "block_time": 1730403346, + "block_time": 1730406268, "difficulty": 545259519, - "previous_block_hash": "5445824b26822ffd976bebee5f07a84339249a2073a03a37b0d30919452a7ac3" + "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4" }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 678, @@ -10210,17 +10213,17 @@ "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "799ade07d661d3382001ac220fb6ac1bb8f122a761e309356769c11c52dfc814", + "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", "block_index": 211, - "block_time": 1730403346, + "block_time": 1730406268, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "fee": 0, - "source": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "utxos_info": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1 a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0 3 1", + "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10230,9 +10233,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 679, @@ -10246,16 +10249,16 @@ "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "out_index": 0, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 565, @@ -10268,15 +10271,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "0418ff722186a805f791cfc4a29173207e1ac5d6f47d8ae485d35c5bda0dcf24", - "messages_hash": "6076f73101e79b05a4117a3b99ac7fbfe5c6ff0cbd0e0c8e723f8fb8269a218d", + "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", + "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", "transaction_count": 1, - "txlist_hash": "1dc142a00c1e8dc6bc2c1988cb564096a014cb3acb07e1ef6f86c151b93eea83", - "block_time": 1730403346 + "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", + "block_time": 1730406268 }, "tx_hash": null, "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 690, @@ -10289,12 +10292,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 689, @@ -10310,12 +10313,12 @@ "address": null, "asset": "XCP", "block_index": 211, - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 2000000000, "tx_index": 78, - "utxo": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", - "utxo_address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", - "block_time": 1730403346, + "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -10325,9 +10328,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 696, @@ -10339,16 +10342,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -10358,9 +10361,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 700, @@ -10374,26 +10377,26 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "memo": null, "quantity": 1000, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "tx_index": 72, - "block_time": 1730403290, + "block_time": 1730406226, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "018054a2fa2a579979637a9e1c8a8bcf531e85153f494f8be1046b37eed56020", + "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", "block_index": 205, - "block_time": 1730403290 + "block_time": 1730406226 } ], "next_cursor": 505, @@ -10407,15 +10410,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "tx_index": 76, - "block_time": 1730403327, + "block_time": 1730406251, "asset_info": { "divisible": true, "asset_longname": null, @@ -10425,9 +10428,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "4e61b1bb961042935761f8a947a1b190ad86414ca08174bc651bb20ab82b3de2", + "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", "block_index": 209, - "block_time": 1730403327 + "block_time": 1730406251 } ], "next_cursor": 674, @@ -10450,20 +10453,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "status": "valid", - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "tx_index": 61, - "block_time": 1730403247, + "block_time": 1730406182, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "375e5441cd03ee62f9fff150eba7dba56351cafe8b647af5052906a5bd7e3788", + "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", "block_index": 195, - "block_time": 1730403247 + "block_time": 1730406182 } ], "next_cursor": null, @@ -10480,15 +10483,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "tx_index": 42, - "block_time": 1730403081, + "block_time": 1730406015, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -10502,9 +10505,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "bbf51912ace7e8f0f21f70f93e98b07f0c80d49166f9781b31e79cf5eefda83e", + "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", "block_index": 155, - "block_time": 1730403081 + "block_time": 1730406015 } ], "next_cursor": null, @@ -10525,11 +10528,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730403287 + "block_time": 1730406221 }, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_time": 1730403287 + "block_time": 1730406221 } ], "next_cursor": 574, @@ -10552,22 +10555,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", "transfer": false, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "tx_index": 71, - "block_time": 1730403287, + "block_time": 1730406221, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "901a6ca9d1a10b1bd462a1bff944d6b51b5aa1f569b113f4c21c6e76268d4ea4", + "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", "block_index": 204, - "block_time": 1730403287 + "block_time": 1730406221 } ], "next_cursor": 575, @@ -10582,12 +10585,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q9q02nvj6q7d5me4z7a9wgcmnm0tey9d25wn39p", + "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", "status": "valid", "tag": "64657374726f79", - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "tx_index": 62, - "block_time": 1730403251, + "block_time": 1730406186, "asset_info": { "divisible": true, "asset_longname": null, @@ -10597,9 +10600,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "8f0a0d17698a5af2cd551e38a8808f735a8384852ad36e3cb2b458832d7d6463", + "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", "block_index": 196, - "block_time": 1730403251 + "block_time": 1730406186 } ], "next_cursor": 157, @@ -10624,15 +10627,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "status": "open", - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "tx_index": 77, - "block_time": 1730403332, + "block_time": 1730406255, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, @@ -10652,9 +10655,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 536, @@ -10672,20 +10675,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "0908330f6a5f6e375e301dbcdf00274fb460bdcecdf819fbdcfdeec1f58b7b27", + "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", "tx0_index": 60, - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "tx1_index": 55, - "block_time": 1730403332, + "block_time": 1730406255, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10704,9 +10707,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 498, @@ -10719,11 +10722,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4" + "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 685, @@ -10736,11 +10739,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21" + "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e" }, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "block_time": 1730403201 + "block_time": 1730406148 } ], "next_cursor": null, @@ -10752,13 +10755,13 @@ "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", + "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", "status": "expired" }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 488, @@ -10772,18 +10775,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_fc1f203d08cae475668eaa3b74122a903500c6a61da28a838c475163a60b5c21", - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "tx_index": 54, - "block_time": 1730403201, + "block_time": 1730406148, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "44ec2a5fc410958b9bcf4859908b53654cc2af7c93aa3c089e24f2144f23b5a4", + "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", "block_index": 188, - "block_time": 1730403201 + "block_time": 1730406148 } ], "next_cursor": null, @@ -10796,16 +10799,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "457977033abe2c1955b71d50b362a1092f4e2b8b2bc140703e85459bdac85a45", - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": "valid", - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "tx_index": 59, - "block_time": 1730403230 + "block_time": 1730406175 }, - "tx_hash": "396bc74d44d30c0c2589a37beff129232f688aa443105e3829fe57ddbd24cec4", + "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", "block_index": 193, - "block_time": 1730403230 + "block_time": 1730406175 } ], "next_cursor": null, @@ -10818,13 +10821,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "source": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "block_time": 1730403346 + "order_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_time": 1730406268 }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 655, @@ -10837,14 +10840,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "6abc0074b03daa527596c6f5737dc20f33af0a23baad261b53983c4efedea8e4_8097f6f38a16ce9abe63d2324d9cc724191c30289651768d92e57ce983a3e6a4", - "tx0_address": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "tx1_address": "bcrt1q6a6d04yl94gxueygtzzr2987cec6xesayesr9p", - "block_time": 1730403332 + "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_time": 1730406255 }, - "tx_hash": "5e665e734d8850b00ee2d7d8b3ff887b12efd0500db77c3a08660b27c5483e2b", + "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", "block_index": 210, - "block_time": 1730403332 + "block_time": 1730406255 } ], "next_cursor": 464, @@ -10863,17 +10866,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "satoshirate": 1, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "status": 0, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "tx_index": 63, - "block_time": 1730403255, + "block_time": 1730406190, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -10882,9 +10885,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5287d10a6912f8f15cf1ca9a41684f4eafd8027272d64ba00b69e2452f793ddc", + "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", "block_index": 197, - "block_time": 1730403255 + "block_time": 1730406190 } ], "next_cursor": 272, @@ -10899,9 +10902,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": 0, - "tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", + "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", "asset_info": { "divisible": true, "asset_longname": null, @@ -10911,9 +10914,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 567, @@ -10927,13 +10930,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n2wfq7q4QeUewqnH5fYLyJvY8Kkk8UgxCZ", + "destination": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", "dispense_quantity": 10, - "dispenser_tx_hash": "77c2f57455693362fca6eb183897b5ff9e995846b8f687a150978736bd8d1ce7", - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", - "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", + "dispenser_tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", "tx_index": 31, - "block_time": 1730403041, + "block_time": 1730405973, "asset_info": { "divisible": true, "asset_longname": null, @@ -10943,9 +10946,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "416d1d05e4f56427859bb04f8e7debaec7d842d0fd303b6b5ab947d2e3faf507", + "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", "block_index": 144, - "block_time": 1730403041 + "block_time": 1730405973 } ], "next_cursor": null, @@ -10960,14 +10963,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qscgk2fqq0ztp9enq29qk0fmep9s9gyatk8ecee", + "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "18034270c5893617a54f401c1d6c3786ced6ed84b049cb4524b84e81ae6ade13", - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -10978,9 +10981,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 568, @@ -10995,19 +10998,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qglnefsrrvfpad54d96gdxza3p7gm8wd4x2wx8j", + "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "tx_index": 25, "value": 66600.0, - "block_time": 1730403019, + "block_time": 1730405941, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "cdc6c49dd4892db635a786c0f3786faf29aecdf575d365899513e3177ff782ac", + "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", "block_index": 138, - "block_time": 1730403019 + "block_time": 1730405941 } ], "next_cursor": 213, @@ -11038,12 +11041,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "start_block": 0, "status": "open", - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "tx_index": 43, - "block_time": 1730403085, + "block_time": 1730406020, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11051,9 +11054,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "9f5144b299f69f621e71173c99687f23fe7a43c463f20af9134bd48963e158e6", + "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", "block_index": 156, - "block_time": 1730403085 + "block_time": 1730406020 } ], "next_cursor": 196, @@ -11066,11 +11069,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ae61ffc21e3885d36d69253d03886c22d6e36131aa9a023eb46e783f5a1ed9fb" + "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6" }, "tx_hash": null, "block_index": 130, - "block_time": 1730402989 + "block_time": 1730405912 } ], "next_cursor": 110, @@ -11086,17 +11089,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "459596d3ca8e87fbd35f849e215561ace0814b43e7d20de30040f1dc97635116", + "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", "paid_quantity": 34, - "source": "bcrt1q66yf3qy02nfes77xclxqyu64svwj42k6tvdd5v", + "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", "status": "valid", - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "tx_index": 23, - "block_time": 1730403011, + "block_time": 1730405934, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q56l2n7hs9yq2x3ag7pc70fgavs8v8ce6eq9r79", + "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", "divisible": true, "locked": false }, @@ -11104,9 +11107,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ade78fe799ab4a29a6b366701d4175de285c68ad34a008bf0391a083144c0b47", + "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", "block_index": 136, - "block_time": 1730403011 + "block_time": 1730405934 } ], "next_cursor": 190, @@ -11120,28 +11123,28 @@ "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4:0", + "destination": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "status": "valid", - "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", "tx_index": 70, - "block_time": 1730403282, + "block_time": 1730406218, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "96b48fcc7ddadab6aa736362c785743de5e88f4ff7f47e725a97a3f74b65ced4", + "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", "block_index": 203, - "block_time": 1730403282 + "block_time": 1730406218 } ], "next_cursor": 584, @@ -11155,28 +11158,28 @@ "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "9afb07a101a977781dfcfb57615cbeabce39e3b22d61304081f3cf6177013f33:0", + "source": "3385d762842ee7143f6360ba792c541e54eec1c2b12d02524242cc6e80bc83b8:0", "status": "valid", - "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", "tx_index": 69, - "block_time": 1730403279, + "block_time": 1730406214, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qh0y6uuvdfle4u222hgc87ywtne48p5tsvac3mk", + "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e7195f851ccc2c0103402d4509113cf53aad729117af82653f862d06fd8d3b04", + "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", "block_index": 202, - "block_time": 1730403279 + "block_time": 1730406214 } ], "next_cursor": 311, @@ -11190,14 +11193,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4:0", + "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", "msg_index": 1, "quantity": 2000000000, - "source": "595a5aa693af7afdba992d17d01dff6bc597919fef4c291df4f8eee8d3b0db32:1", + "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", "status": "valid", - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "tx_index": 78, - "block_time": 1730403346, + "block_time": 1730406268, "asset_info": { "divisible": true, "asset_longname": null, @@ -11207,9 +11210,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "a9f44685e71fd5375329163d118b8f4c3a9dd5be700b93512f998a6b928ec3c4", + "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", "block_index": 211, - "block_time": 1730403346 + "block_time": 1730406268 } ], "next_cursor": 698, @@ -11224,17 +11227,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwfyy6lclay0a3swgtz07k3w0p8ck70xzcepmfz", + "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", "status": "valid", - "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", "tx_index": 9, - "block_time": 1730402953, + "block_time": 1730405878, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "a77a671d90e4f7394169220ba0cf12b83eab3dea6548bda6041e00379213d5d4", + "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", "block_index": 121, - "block_time": 1730402953 + "block_time": 1730405878 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 0202b25337..2c024439ea 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -153,6 +153,8 @@ def get_example_output(path, args): def include_in_dredd(group, path): if "/bet" in path: return False + if "/compose/utxo" in path: + return False return True From 1e7a724315b51da100cdac0cfe1db8a1a1f83b6a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 31 Oct 2024 20:43:25 +0000 Subject: [PATCH 027/138] fix pytest --- .../counterpartycore/test/fixtures/api_v2_fixtures.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index d29c6f713d..ffe1660e63 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14265,9 +14265,10 @@ "description": "Composes a transaction to attach or detach an assets from an address to UTXO.\nDisabled after block 870000.", "args": [ { - "name": "source", + "name": "address", "required": true, - "type": "str" + "type": "str", + "description": "The address or the utxo from which the assets are attached or detached (e.g. $ADDRESS_1)" }, { "name": "asset", From 9acfbed6f2e9affa6810591590cf04fa6ead51d2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 09:13:54 +0000 Subject: [PATCH 028/138] refactor compose_movetouxto --- .../counterpartycore/lib/api/compose.py | 73 ++----------------- .../counterpartycore/lib/messages/move.py | 18 ++++- .../regtest/scenarios/scenario_18_utxo.py | 2 +- .../test/regtest/scenarios/scenario_7_utxo.py | 2 +- 4 files changed, 25 insertions(+), 70 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 4290334113..1c2ee2db2c 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -10,7 +10,6 @@ gettxinfo, message_type, messages, - script, transaction, util, ) @@ -38,6 +37,7 @@ "fairmint", "attach", "detach", + "move", ] COMPOSE_COMMONS_ARGS = { @@ -708,78 +708,17 @@ def get_attach_estimate_xcp_fee(db): return gas.get_transaction_fee(db, UTXO_ID, util.CURRENT_BLOCK_INDEX) -def compose_movetoutxo( - db, - utxo: str, - destination: str, - more_utxos: str = "", - exact_fee: int = None, - change_address: str = None, -): +def compose_movetoutxo(db, utxo: str, destination: str, **construct_args): """ 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(":") - - if exact_fee is not None: - fee = D(exact_fee) / config.UNIT if exact_fee else 0 - else: - fee_per_kb = backend.bitcoind.fee_per_kb() - # Transaction Size (in bytes) = (Number of Inputs x 148) + (Number of Outputs x 34) + 10 - tx_size = (input_count * 148) + (2 * 34) + 10 - fee = (D(fee_per_kb) / config.UNIT) * (D(tx_size) / 1024) - - dust = D("0.00000546") - 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)}] - if change > 0: - change_output_address = change_address or source_address - outputs += [{change_output_address: str(change)}] - rawtransaction = backend.bitcoind.createrawtransaction(inputs, outputs) - - return { - "rawtransaction": rawtransaction, - "params": { - "source": utxo, - "destination": destination, - }, - "name": "movetoutxo", - "data": None, + params = { + "source": utxo, + "destination": destination, } + return compose(db, "move", params, **construct_args) def info_by_tx_hash(db, tx_hash: str): diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index c4ebb340a8..695be7bf47 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -1,10 +1,26 @@ import logging -from counterpartycore.lib import config, ledger, util +from counterpartycore.lib import config, exceptions, ledger, script, util logger = logging.getLogger(config.LOGGER_NAME) +def compose(db, source, destination): + if not util.is_utxo_format(source): + raise exceptions.ComposeError("Invalid source utxo format") + + try: + script.validate(destination) + except script.AddressError as e: + raise exceptions.ComposeError("destination must be an address") from e + + balances = ledger.get_utxo_balances(db, source) + if not balances: + raise exceptions.ComposeError("No balances found for source utxo") + + return (source, [(destination, None)], None) + + # call on each transaction def move_assets(db, tx): if "utxos_info" not in tx or not tx["utxos_info"]: diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 88128eb835..ad8e317f05 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -172,7 +172,7 @@ "no_confirmation": True, "params": { "destination": "$ADDRESS_8", - "more_utxos": "$UTXOASSET_UTXO_1_TX_HASH:2", # third output is change of attach transaction + "inputs_set": "$UTXOASSET_UTXO_1_TX_HASH:2", # third output is change of attach transaction }, "set_variables": { "UTXOASSET_UTXO_2_TX_HASH": "$TX_HASH", 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 e2ef02ec01..579060bea6 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -507,7 +507,7 @@ "source": "$UTXO_ATTACH_3_TX_HASH:0", "params": { "destination": "$ADDRESS_6", - "more_utxos": "$UTXO_ATTACH_2_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:2", + "inputs_set": "$UTXO_ATTACH_2_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:2", }, "set_variables": { "UTXO_MOVE_2_TX_HASH": "$TX_HASH", From 9423117303e359e68845607f5803a25d8e1b2d4d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 10:42:33 +0000 Subject: [PATCH 029/138] fixes; fix tests; more tests --- apiary.apib | 3869 +++++++++-------- .../counterpartycore/lib/messages/attach.py | 2 +- .../counterpartycore/lib/messages/move.py | 7 +- .../transaction_helper/transaction_inputs.py | 2 +- .../test/fixtures/api_v2_fixtures.json | 153 +- .../test/fixtures/contract_vectors/attach.py | 143 + .../test/fixtures/contract_vectors/detach.py | 68 + .../test/fixtures/contract_vectors/move.py | 118 + .../test/fixtures/contract_vectors/utxo.py | 203 +- .../counterpartycore/test/fixtures/vectors.py | 8 +- .../test/regtest/apidoc/apicache.json | 3451 +++++++-------- .../test/regtest/scenarios/scenario_7_utxo.py | 1 + 12 files changed, 4183 insertions(+), 3842 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py create mode 100644 counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py create mode 100644 counterparty-core/counterpartycore/test/fixtures/contract_vectors/move.py diff --git a/apiary.apib b/apiary.apib index 37346310cd..9bb2ebeba8 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-31 20:24:46.032466. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-01 10:38:03.215218. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", "block_index": 211, - "block_time": 1730406268, + "block_time": 1730457461, "difficulty": 545259519, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4" + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0" }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 678, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", "block_index": 211, - "block_time": 1730406268, + "block_time": 1730457461, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "fee": 0, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 679, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "out_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 690, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 689, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 211, - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "block_time": 1730406268, + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 696, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 700, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "quantity": 1000, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "tx_index": 72, - "block_time": 1730406226, + "block_time": 1730457408, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_time": 1730406226 + "block_time": 1730457408 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_time": 1730406251 + "block_time": 1730457443 } ], "next_cursor": 674, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "status": "valid", - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "tx_index": 61, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "block_time": 1730406182 + "block_time": 1730457362 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "tx_index": 42, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "block_time": 1730406015 + "block_time": 1730457209 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730406221 + "block_time": 1730457404 }, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_time": 1730406221 + "block_time": 1730457404 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", "transfer": false, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "tx_index": 71, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_time": 1730406221 + "block_time": 1730457404 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "tx_index": 62, - "block_time": 1730406186, + "block_time": 1730457366, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "block_index": 196, - "block_time": 1730406186 + "block_time": 1730457366 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "status": "open", - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "tx_index": 77, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, @@ -734,9 +734,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": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 536, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "tx0_index": 60, - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx1_index": 55, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 685, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e" + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed" }, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "block_time": 1730406148 + "block_time": 1730457326 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "status": "expired" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "tx_index": 54, - "block_time": 1730406148, + "block_time": 1730457326, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "block_time": 1730406148 + "block_time": 1730457326 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "tx_index": 59, - "block_time": 1730406175 + "block_time": 1730457355 }, - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "block_index": 193, - "block_time": 1730406175 + "block_time": 1730457355 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "block_time": 1730406268 + "order_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_time": 1730457461 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 655, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "block_time": 1730406255 + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_time": 1730457447 }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "satoshirate": 1, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": 0, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "tx_index": 63, - "block_time": 1730406190, + "block_time": 1730457370, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 197, - "block_time": 1730406190 + "block_time": 1730457370 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", + "destination": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", "dispense_quantity": 10, - "dispenser_tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", + "dispenser_tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", "tx_index": 31, - "block_time": 1730405973, + "block_time": 1730457168, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", + "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", "block_index": 144, - "block_time": 1730405973 + "block_time": 1730457168 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "tx_index": 25, "value": 66600.0, - "block_time": 1730405941, + "block_time": 1730457145, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "block_time": 1730405941 + "block_time": 1730457145 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "start_block": 0, "status": "open", - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "block_index": 156, - "block_time": 1730406020 + "block_time": 1730457212 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6" + "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038" }, "tx_hash": null, "block_index": 130, - "block_time": 1730405912 + "block_time": 1730457105 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "paid_quantity": 34, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "block_index": 136, - "block_time": 1730405934 + "block_time": 1730457137 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4:0", + "destination": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "status": "valid", - "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", "tx_index": 70, - "block_time": 1730406218, + "block_time": 1730457400, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", "block_index": 203, - "block_time": 1730406218 + "block_time": 1730457400 } ], "next_cursor": 584, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "3385d762842ee7143f6360ba792c541e54eec1c2b12d02524242cc6e80bc83b8:0", + "source": "bc6b3439245bf677cfc259486f338be14e9f766fab8bd8de83a51fe37aa71a62:0", "status": "valid", - "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", + "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", "tx_index": 69, - "block_time": 1730406214, + "block_time": 1730457397, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", + "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", "block_index": 202, - "block_time": 1730406214 + "block_time": 1730457397 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "msg_index": 1, "quantity": 2000000000, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", "status": "valid", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 698, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", + "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", "status": "valid", - "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", + "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", "tx_index": 9, - "block_time": 1730405878, + "block_time": 1730457070, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", + "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", "block_index": 121, - "block_time": 1730405878 + "block_time": 1730457070 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", "difficulty": 545259519, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", - "block_time": 1730406255, - "previous_block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_time": 1730457447, + "previous_block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", "difficulty": 545259519, - "ledger_hash": "d4ce0b9663ffc7961b889b2212e125f1916a9a3308be5ce3612b795aae79b7ef", - "txlist_hash": "cd8ef9a5b728358bc1e49c13423fab5fb1a804fe1840a8a1ff460724a8988914", - "messages_hash": "2af09ce52de0341d6f5c0d7123b65a3e6d4d8c63b8e1df8de88d12c8b8500d8f", + "ledger_hash": "2fff20569219a81a59899e170650366c96247ec12c3b5121f4b8d20ddb7c4706", + "txlist_hash": "05716db12029c00cb901b46870658444bf5900442142998fc170041a5fb830b7", + "messages_hash": "95eec276fe6404ec172045d3c281e710b1474ce5b13e98de274eee9d30204d62", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", - "block_time": 1730406251, - "previous_block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", + "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_time": 1730457443, + "previous_block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", "difficulty": 545259519, - "ledger_hash": "7c2efb0199e521f8f8afb2d8bd297b5537a2f65f2998d13311c9c8ec4cccdd3a", - "txlist_hash": "72ab85e444eabc4bd6e7c2cb0d2df438ec16ac03dd4a3374abcc67170e7cb83e", - "messages_hash": "6661decf322d55e2f41d5b12d85d7384520e75ec1a1c539137a0af99f6877717", + "ledger_hash": "2a6fd2bc1f5d63c18e3866f1dd8f3abebef51ef1afbae985c8ca7cb087d2ff49", + "txlist_hash": "44d86cb88dd54394494418814bee2c2c66440474371601e178c87d65de7f91db", + "messages_hash": "3673ff2b8e2fc66e9255712bf3d23fd318c06fc17ad11f3f5850959a282bc7d2", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", - "block_time": 1730406238, - "previous_block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", + "block_time": 1730457439, + "previous_block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", "difficulty": 545259519, - "ledger_hash": "a2b0ad8247a5e0ac9b7a77f62e53636fbd291b52b6abb3a365411be191b628bd", - "txlist_hash": "0029ad27750de58fd2ac1ea9aeb2e10a7b1ab66af05e6614df5f7057f064ce50", - "messages_hash": "cc5c2fd236b9f3d4670de7ea68a077f22424799fd8fdd528d2b5ba0ab18f0fb8", + "ledger_hash": "14c1eb0bd8a0572bfa8bbe96f352902e414888d9fdef3576afee22ad8d1a70b5", + "txlist_hash": "21cc8c792273fa4947dba77a4ae285630379b12e1f16f933214ecdf360f07269", + "messages_hash": "042c05931e78d1f941c75d5ab50e1b4680c0545ccd6b16280d28185c02ece61a", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", - "block_time": 1730406233, - "previous_block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", + "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_time": 1730457436, + "previous_block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", "difficulty": 545259519, - "ledger_hash": "896005f69ce0542be870a9bc8dd5c2f61235184519e872912387a5bdae84ede7", - "txlist_hash": "834ec0b0c35273eaf22b38a9811739cb6d7a36d6dcd872056cd0f68164c414e3", - "messages_hash": "743eb12d7456b0288b57286aa5afc73e3f8b8cb9f386dd3237ce95cc23ef9273", + "ledger_hash": "7b0c04257b525c411e8c6d80975408acedc07d4e4f9af55cb7cdccd8b073b547", + "txlist_hash": "cfcf6455730258aada3387a3f997c5ad679cde65d8fdb916106f5a58b83a7f2d", + "messages_hash": "47e5f28331dc194b45b3af0ea7fe5e43744ff2509a860af7fd043d6c1ee080f0", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", "difficulty": 545259519, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db` (str, required) - The index of the block to return + + block_hash: `246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", "difficulty": 545259519, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 704, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 703, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" } ], "next_cursor": 701, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 700, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 697, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 211, - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "object_id": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "block_index": 211, "confirmed": true, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "status": "valid", "confirmed": true, - "block_time": 1730406175 + "block_time": 1730457355 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "block_index": 196, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730406186, + "block_time": 1730457366, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "block_hash": "1103d76d3eeade89f6e435fd71e35d46b7d15321773d4a1a39805e81e7229619", - "block_time": 1730405941, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "25bb54546499c15373444c7febc1d97405c36f85ab912519647af6e930e9ccf9", + "block_time": 1730457145, + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369:1 2 ", + "utxos_info": " babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "block_hash": "2cad70b442ed8b87044cd2038bb62cda92c3545e9760deccee0617da3ddc19a1", - "block_time": 1730406148, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "1f94130a46c71fb8e45d582d435cf77ebcb3645eecc2bc575558aee249458fdc", + "block_time": 1730457326, + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "btc_amount": 2000, "fee": 10000, - "data": "0b514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "data": "0bdd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "supported": true, - "utxos_info": " b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258:0 3 1", + "utxos_info": " 0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "block_index": 193, - "block_hash": "5ee8f2ad46acdc8b47468a7b1139545732d0d239a4d8392e33174d03667817df", - "block_time": 1730406175, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "2737a4c975af70d549afeef5901b39c5099353c7821c1efb1a3f6cada7d51b05", + "block_time": 1730457355, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4611c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "data": "46350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "supported": true, - "utxos_info": " 0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94:1 2 ", + "utxos_info": " 77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "block_index": 196, - "block_hash": "4fef5221bd4d6d9597e7eef1318e69f666524c27144127bbb7a6b7426b48bfe4", - "block_time": 1730406186, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "block_hash": "6dedbe8dae290369e85f836a79c1fe90df6d47d4a578b62a840342bb7725a2b0", + "block_time": 1730457366, + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "96c1daa333b0ad90a1465c6d9f2a17e8a37478832ebf5370a833a88a551d5758:1 6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 2 ", + "utxos_info": "2727090cac725438d1aa522506a76c181a4c331822e1f7f156a4b05dd31197c3:1 9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 197, - "block_hash": "45c183e961a25d45c59f8042057a2e8746cb030855a118f9568e4dc31d644764", - "block_time": 1730406190, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "2b1db078f20aa241fc807343f3d11191e0eff2bbc4bfb94f91018c739609190a", + "block_time": 1730457370, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f:1 2 ", + "utxos_info": " 5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "block_hash": "565253b5dba3c95df9c6fc48fde08a831c64a61f13abb355ccd493053d94c21a", - "block_time": 1730406015, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "6baae333d38c3efe9fd84ac2a780a3c9951e5557798fa87db3c05493b1c7fac2", + "block_time": 1730457209, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28:1 2 ", + "utxos_info": " f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_hash": "0ad9c63277873202959baabc06121e31a5c13f9689a04b505e1b9115622c0e19", - "block_time": 1730406221, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "7d7912291607a8552a6a8592e2db47c4dc41b216211421ca5bbd965f00b472d5", + "block_time": 1730457404, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070:1 2 ", + "utxos_info": " d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", - "block_time": 1730406255, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_time": 1730457447, + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe:1 2 ", + "utxos_info": " d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", - "block_time": 1730406226, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", + "block_time": 1730457408, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "supported": true, - "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", + "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", - "block_time": 1730406251, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_time": 1730457443, + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad:0 4 ", + "utxos_info": " 8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "block_hash": "4914a116461e96eec956179279d2e7009defd43b06ba4f899078cdcb741aabfa", - "block_time": 1730406182, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "block_hash": "5d6612951b3d37e7184a2b5d0ff1a60de3f84e847e43b3f06f26b5f0a1f31ce2", + "block_time": 1730457362, + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803e7d7661faa6389041324526ba09299c650ab598017377656570206d7920617373657473", + "data": "0480cc1251040fa17ccd55028e8520b943c0b4e443de017377656570206d7920617373657473", "supported": true, - "utxos_info": " 8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156:1 2 ", + "utxos_info": " 827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", "block_index": 203, - "block_hash": "74c066d08da34292468935a3fd1f88f966dd4816a0d95e3cd5537ff416c54145", - "block_time": 1730406218, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "block_hash": "3aa72b9a47dece9f7c3731b3d7e6999edb8a4f1dab669c5b987d67003f0e0314", + "block_time": 1730457400, + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53:1 6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4:0 3 1", + "utxos_info": " c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", + "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", "block_index": 202, - "block_hash": "591003c6706587ce7081af8782d2af24d440eb75a2be1671e0234bd2bf8e40b1", - "block_time": 1730406214, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "block_hash": "52682b2acd5cfd62324171dcd7601f3b7a129176ccc99cc834d0a7e17c38de39", + "block_time": 1730457397, + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "destination": null, "btc_amount": 0, - "fee": 22972, + "fee": 0, "data": "6630", "supported": true, - "utxos_info": "3385d762842ee7143f6360ba792c541e54eec1c2b12d02524242cc6e80bc83b8:0 82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53:1 2 ", + "utxos_info": "bc6b3439245bf677cfc259486f338be14e9f766fab8bd8de83a51fe37aa71a62:0 d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 77, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", - "block_time": 1730406255, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_time": 1730457447, + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe:1 2 ", + "utxos_info": " d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106d3a5d8d776e316f54297e96a578b0e38c6a7ef5039c2be4c4c30b6c839bbb0d00000000000ffffffffd29dd6da0578bafa05e58cc85383cff4de4619a767b08ab90119914aa3643ebe0000000000ffffffff551850045ca30b728f972a89208731682ad499a34d6a93d2af82d64c0f3e19ae0000000000ffffffff5413f5d36a74d5fbddbc56dd947373a10e2b66270db8a0f5fccb10609347c9420000000000ffffffffc61a45a32b82ccd62ee69afe65cd9156ba4d136b4ae6757e9b48392478111ec00000000000ffffffff40875ad563852d749770517cec8b8650082cc6261440e21dacc3eb5e416691fa0000000000ffffffff04e803000000000000695121020f2a3e01593e8c1560433c0e89fefbcbc5659f312532a00541343cbd81adf89b210234396e80d3a834cd9f513c0db1a6c8a69e9f1680d559e43b65a76df15e0d534a2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee803000000000000695121020f2a3e01593e8c1560d07d3f4c5006e766f522879a9750e49a15960d140af62321021d85ee548fe326a832d4b110643aa09a3c84e00539f7b3d63eb774a324ab6b8c2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee803000000000000695121032e2a3e01593e8c1560403c0d09763cee4f69478d2f0f44cff13b1e1414ce228221031d85ee548fe32682276124a5d8f0a09a3c84e00539fd36bb5bda1b90a4ab6bdf2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae387923fc0600000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e024730440220310f4c6dfc17b2e1a557200578a74e38deaea2bc9a20b8fd3094a81c88683d4902205d986a6b70503dcb055ce8e758b0aaa39f9b839bbb8b035bac4af6be93c18b47012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac980247304402204112cff32842a7136316bc88f184b9d5e0c456f8a1f5a813d698011eef3328a702204cc4f653207db7196acbea2163c4eadfe78d6c6de212e665128156d76575b123012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac980247304402203fba96da04ee2225340c5bfe59fd914c775b8712b7a9fceb282022626d2cef40022017e707dec6d08a1e4a9681755dfed622714afa60c73eb755cd73524c71328f36012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac980247304402203b094b12e2847292b2772ced709f988625cb1fb481cb6e5fc8ac1eb0d482476f0220197720fb83a9da39867ba32c6c1f261416441fdc6032b07d8c4e895106af24f5012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98024730440220355395316c2aec05b55ed3f5a8dbc481d70514776bb71440f67c0c9185954d13022049dbb52a4e10802f21dc040fb6bca693d03414422a50e6ab0ef6fb05f498d64c012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98024730440220584b58ca464d6773d95aea04d85ffcd23b7b0463fda9bfa4c42c521d5efdc20f02205ef2912f1dd27fca67c5ad2bdba2fda83f2600b9d9412b69de643ac60f94b892012103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9800000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010606bbccb4d066b5df3e0119f773372a9eb1918cdc30f9c697a69942741e41f7850000000000fffffffffd875c233d0e6f69d694d9c9cff91437fb4ad4c1215f79c8b9d21544a410de5f0000000000ffffffffc61103f6f4174230e88d498f47cb81701c0a8ad806503f4a56eec0ac870db2ba0000000000ffffffffdc8921e705508e0c751083891f4f366e82c5f11500870bea15437a46a06c6a430000000000ffffffffedfa189fca641c8b80cde3cae7f51847b333729217d33721a85c627c0b7940230000000000ffffffff85b524b6bb548fd880b46bc572167c87b236dd75e172184c0464172c46f7d9840000000000ffffffff04e80300000000000069512103514123c151eac86d9e5f99cf8bf3498611409b874da64363c298a31ad6ba8ede2102102c15e48b44826c3369848ac630089ab26f8c9512425d7f8b6cea4c382f48e52103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103514123c151eac86d9e91ccce8581f3ba618de232a1705dc43281cfa02e3f9c2421036d9295c9ee36e31cc0549875179b2809fcf85f7e60683c922213d47bb78e34a82103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103704123c151eac86d9e5c99cc0b045303224d56d6e2ae49ef59af47b92efb486021026d9295c9ee36e336d5e10dc0ab512809fcf85f7e6062b9ff477ebb48378e34d92103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae387923fc06000000160014d60c806085c49fc50e0ad53c52888227322c5b49024730440220310ad7418e7f580961e1b61f632bfac834f6fd926485da63aa16daac334e542f02205f5684d1a27d04880d94de6b68081c32dec9daeda40df0ffa2001184f9daf0f8012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa0247304402207ba9023435f437248127d85a40f65f3540190ba74f6086136091d1fd493ce25c02205ea22e12094fd55187248d6c4f21a27d7aa27286db584bc250f59f6dead40085012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa02473044022029591fe9fbe78412eae31260adc34a1ba0781fa435d991929c24879b6d2acaa902203311fc4618f75fd61f11c80ba1fee768127411262c0d9a0ded3bb93598b5c093012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa0247304402206118dde409f12028101065f084e37e48185ac7031d9f0d40eedf29561418af0c0220696ce5be912bd981b8dcae440318badb91acb059b4993c3c6d14aec3d9b016b5012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa02473044022060b6ac7d55777dcd0c589c2f6ec9cc8c3501bbc59f3f6443d552f13301b4c70702201b60eb557a808cd4a2fe661ec63ac22135c44c3aa7c8481f3ac93a9811d957b5012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa02473044022058944b1bceaf9f682b7ac1dbf9e6d558cbd5fd44398511e022003be90947d0b302205fa199a16a5b1d09776820a88139b3b7d157029ec277766011f4dc829c2b75f8012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa00000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d3a5d8d776e316f54297e96a578b0e38c6a7ef5039c2be4c4c30b6c839bbb0d0", + "hash": "06bbccb4d066b5df3e0119f773372a9eb1918cdc30f9c697a69942741e41f785", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d29dd6da0578bafa05e58cc85383cff4de4619a767b08ab90119914aa3643ebe", + "hash": "fd875c233d0e6f69d694d9c9cff91437fb4ad4c1215f79c8b9d21544a410de5f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "551850045ca30b728f972a89208731682ad499a34d6a93d2af82d64c0f3e19ae", + "hash": "c61103f6f4174230e88d498f47cb81701c0a8ad806503f4a56eec0ac870db2ba", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5413f5d36a74d5fbddbc56dd947373a10e2b66270db8a0f5fccb10609347c942", + "hash": "dc8921e705508e0c751083891f4f366e82c5f11500870bea15437a46a06c6a43", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c61a45a32b82ccd62ee69afe65cd9156ba4d136b4ae6757e9b48392478111ec0", + "hash": "edfa189fca641c8b80cde3cae7f51847b333729217d33721a85c627c0b794023", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "40875ad563852d749770517cec8b8650082cc6261440e21dacc3eb5e416691fa", + "hash": "85b524b6bb548fd880b46bc572167c87b236dd75e172184c0464172c46f7d984", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "5121020f2a3e01593e8c1560433c0e89fefbcbc5659f312532a00541343cbd81adf89b210234396e80d3a834cd9f513c0db1a6c8a69e9f1680d559e43b65a76df15e0d534a2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" + "script_pub_key": "512103514123c151eac86d9e5f99cf8bf3498611409b874da64363c298a31ad6ba8ede2102102c15e48b44826c3369848ac630089ab26f8c9512425d7f8b6cea4c382f48e52103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" }, { "value": 1000, - "script_pub_key": "5121020f2a3e01593e8c1560d07d3f4c5006e766f522879a9750e49a15960d140af62321021d85ee548fe326a832d4b110643aa09a3c84e00539f7b3d63eb774a324ab6b8c2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" + "script_pub_key": "512103514123c151eac86d9e91ccce8581f3ba618de232a1705dc43281cfa02e3f9c2421036d9295c9ee36e31cc0549875179b2809fcf85f7e60683c922213d47bb78e34a82103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" }, { "value": 1000, - "script_pub_key": "5121032e2a3e01593e8c1560403c0d09763cee4f69478d2f0f44cff13b1e1414ce228221031d85ee548fe32682276124a5d8f0a09a3c84e00539fd36bb5bda1b90a4ab6bdf2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" + "script_pub_key": "512103704123c151eac86d9e5c99cc0b045303224d56d6e2ae49ef59af47b92efb486021026d9295c9ee36e336d5e10dc0ab512809fcf85f7e6062b9ff477ebb48378e34d92103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" }, { "value": 29999987000, - "script_pub_key": "001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e" + "script_pub_key": "0014d60c806085c49fc50e0ad53c52888227322c5b49" } ], "vtxinwit": [ - "30440220310f4c6dfc17b2e1a557200578a74e38deaea2bc9a20b8fd3094a81c88683d4902205d986a6b70503dcb055ce8e758b0aaa39f9b839bbb8b035bac4af6be93c18b4701", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "304402204112cff32842a7136316bc88f184b9d5e0c456f8a1f5a813d698011eef3328a702204cc4f653207db7196acbea2163c4eadfe78d6c6de212e665128156d76575b12301", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "304402203fba96da04ee2225340c5bfe59fd914c775b8712b7a9fceb282022626d2cef40022017e707dec6d08a1e4a9681755dfed622714afa60c73eb755cd73524c71328f3601", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "304402203b094b12e2847292b2772ced709f988625cb1fb481cb6e5fc8ac1eb0d482476f0220197720fb83a9da39867ba32c6c1f261416441fdc6032b07d8c4e895106af24f501", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "30440220355395316c2aec05b55ed3f5a8dbc481d70514776bb71440f67c0c9185954d13022049dbb52a4e10802f21dc040fb6bca693d03414422a50e6ab0ef6fb05f498d64c01", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "30440220584b58ca464d6773d95aea04d85ffcd23b7b0463fda9bfa4c42c521d5efdc20f02205ef2912f1dd27fca67c5ad2bdba2fda83f2600b9d9412b69de643ac60f94b89201", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" + "30440220310ad7418e7f580961e1b61f632bfac834f6fd926485da63aa16daac334e542f02205f5684d1a27d04880d94de6b68081c32dec9daeda40df0ffa2001184f9daf0f801", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "304402207ba9023435f437248127d85a40f65f3540190ba74f6086136091d1fd493ce25c02205ea22e12094fd55187248d6c4f21a27d7aa27286db584bc250f59f6dead4008501", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "3044022029591fe9fbe78412eae31260adc34a1ba0781fa435d991929c24879b6d2acaa902203311fc4618f75fd61f11c80ba1fee768127411262c0d9a0ded3bb93598b5c09301", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "304402206118dde409f12028101065f084e37e48185ac7031d9f0d40eedf29561418af0c0220696ce5be912bd981b8dcae440318badb91acb059b4993c3c6d14aec3d9b016b501", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "3044022060b6ac7d55777dcd0c589c2f6ec9cc8c3501bbc59f3f6443d552f13301b4c70702201b60eb557a808cd4a2fe661ec63ac22135c44c3aa7c8481f3ac93a9811d957b501", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "3044022058944b1bceaf9f682b7ac1dbf9e6d558cbd5fd44398511e022003be90947d0b302205fa199a16a5b1d09776820a88139b3b7d157029ec277766011f4dc829c2b75f801", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" ], "lock_time": 0, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", - "tx_id": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b" + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_id": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -3472,7 +3472,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9` (str, required) - Transaction hash + + tx_hash: `57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8c3fcb17520b40581c82d705b078448daf5c16a1a33a1e0f8e25347233acaa6a", + "hash": "158e21e1614657b8446a4c55624256171696a9b9b4d2bee26e91c4127d48ef9e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ef86b108e3fa4bb79fc812afb3931efb148608ac5f6318d312038c9790f1a80d5f4c21a34a2673745e7b44b3e67f4" + "script_pub_key": "6a2e3625f8f87e0b73dfd398fe4134da300541a4af074649d3a8dade81065c418398a18bcafb2994dc5c7e293734fd34" }, { "value": 4949930546, - "script_pub_key": "00143e7d7661faa6389041324526ba09299c650ab598" + "script_pub_key": "0014cc1251040fa17ccd55028e8520b943c0b4e443de" } ], "vtxinwit": [ - "30440220160d1cd8a598a22c9fbc53a9a7ce01416562b5e8e5b32e618dfcc45b0e18705b0220246d2a42ece58201c2fdb9b10d693646bb6395631d1b12f32f37275e947aa75101", - "0337f1ce2032d6c7f3f1689f7ebf8a604b3dab011052a558e91b4b675031599c38" + "30440220517fc5d95f27327b4c3ed23d596e4473258bb7a333047908ee2776ea7c277f56022011bffdad88ff6f252b104472998acf65dbc4195ba0523bd36359776398d1f6af01", + "02acf53d1a6edc80f820009903765c0e3a9441ca7559c694c1df2b913418fcbeb3" ], "lock_time": 0, - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", - "tx_id": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9" + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_id": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -3611,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction + + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (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. @@ -3652,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 704, @@ -3719,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 703, @@ -3748,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -3787,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 701, @@ -3797,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "msg_index": 1, "quantity": 2000000000, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", "status": "valid", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 700, @@ -3829,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction to return + + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -3853,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 704, @@ -3867,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -3885,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 703, @@ -3896,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -3935,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 701, @@ -3945,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "msg_index": 1, "quantity": 2000000000, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", "status": "valid", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -3962,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 700, @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction to return + + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (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 @@ -3996,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction to return + + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (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 @@ -4073,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,16 +4152,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4171,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 700, @@ -4183,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4198,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 697, @@ -4210,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": null, @@ -4240,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The hash of the transaction to return + + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `706` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4262,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4281,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 700, @@ -4293,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4308,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 697, @@ -4320,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4508,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - Comma separated list of addresses to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", - "block_time": 1730406251, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_time": 1730457443, + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad:0 4 ", + "utxos_info": " 8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4545,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4560,7 +4560,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4579,17 +4579,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "block_index": 208, - "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", - "block_time": 1730406238, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", + "block_time": 1730457439, + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab598c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443dec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d:0 4 ", + "utxos_info": " 534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4612,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4631,17 +4631,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", - "block_time": 1730406233, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_time": 1730457436, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", + "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4664,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4683,17 +4683,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", - "block_time": 1730406229, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", + "block_time": 1730457421, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", + "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4716,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4735,17 +4735,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", - "block_time": 1730406226, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", + "block_time": 1730457408, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "supported": true, - "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", + "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4753,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4778,7 +4778,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -4807,20 +4807,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "tx0_index": 60, - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx1_index": 55, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4839,38 +4839,38 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "block_time": 1730406255 + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_time": 1730457447 }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730406255, + "block_time": 1730457447, "asset_info": { "divisible": true, "asset_longname": null, @@ -4880,9 +4880,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 675, @@ -4890,15 +4890,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -4908,9 +4908,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_time": 1730406251 + "block_time": 1730457443 } ], "next_cursor": 674, @@ -4923,7 +4923,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl,bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f,bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c` (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 @@ -4939,17 +4939,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "quantity": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, "asset_info": { "divisible": true, @@ -4960,22 +4960,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -4985,22 +4985,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "block_index": 211, - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -5010,30 +5010,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730406273.1801424, + "block_time": 1730457465.690188, "btc_amount": 0, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "destination": "", "fee": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, - "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", + "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -5047,7 +5047,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -5060,7 +5060,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -5080,7 +5080,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5088,14 +5088,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5103,14 +5103,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5118,14 +5118,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5140,7 +5140,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5148,7 +5148,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5165,7 +5165,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -5178,7 +5178,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5203,7 +5203,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5253,16 +5253,16 @@ Returns the credits of an address "result": [ { "block_index": 210, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "asset_info": { "divisible": true, "asset_longname": null, @@ -5274,16 +5274,16 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -5295,16 +5295,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -5316,16 +5316,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -5337,20 +5337,20 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "event": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5367,7 +5367,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5406,16 +5406,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -5427,20 +5427,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5448,16 +5448,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -5469,20 +5469,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5490,20 +5490,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "event": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406226, + "block_time": 1730457408, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5520,7 +5520,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address of the feed + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5555,7 +5555,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -5574,9 +5574,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", + "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", "block_index": 137, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5584,7 +5584,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405937, + "block_time": 1730457142, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5598,7 +5598,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -5617,14 +5617,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "94575e0c1ffcf9180229ea6828eb6a719c203f0d760e7bdff30509b1f2f281ee", + "tx_hash": "dda9d0d032938ede56efc9592fd09e515da5e6436115895713f9ba45164c9ee7", "block_index": 112, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730405845, + "block_time": 1730457039, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5639,7 +5639,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -5658,10 +5658,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5669,7 +5669,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -5682,10 +5682,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5693,11 +5693,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5706,10 +5706,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5717,11 +5717,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5730,10 +5730,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5741,7 +5741,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -5754,10 +5754,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5765,11 +5765,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5787,7 +5787,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8` (str, required) - The address to return + + address: `bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt` (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 @@ -5806,10 +5806,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "96c1daa333b0ad90a1465c6d9f2a17e8a37478832ebf5370a833a88a551d5758", + "tx_hash": "2727090cac725438d1aa522506a76c181a4c331822e1f7f156a4b05dd31197c3", "block_index": 151, - "source": "9295e8eded321451d746577f581fdc93a3aaa6dd62e6d1af4fb807c42337baed:0", - "destination": "bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8", + "source": "458c7871c0ec7a75bb2c666bcb56e1e88c5b50b362ffbd946f9e369642d6149a:0", + "destination": "bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5817,11 +5817,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730405999, + "block_time": 1730457194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5839,7 +5839,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5859,10 +5859,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5870,11 +5870,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5883,10 +5883,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5894,11 +5894,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5907,10 +5907,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5918,11 +5918,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5931,10 +5931,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5942,11 +5942,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5955,10 +5955,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5966,11 +5966,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406226, + "block_time": 1730457408, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5988,7 +5988,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8` (str, required) - The address to return + + address: `bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6016,7 +6016,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6045,9 +6045,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6056,7 +6056,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6066,7 +6066,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6082,9 +6082,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6093,7 +6093,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6103,11 +6103,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6128,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -6141,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6162,7 +6162,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6184,7 +6184,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -6204,19 +6204,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", + "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6224,7 +6224,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6239,11 +6239,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6253,19 +6253,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6273,7 +6273,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6288,7 +6288,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,19 +6302,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6322,7 +6322,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6337,7 +6337,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6359,7 +6359,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address to return + + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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 @@ -6379,19 +6379,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", + "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6399,7 +6399,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6414,11 +6414,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6428,19 +6428,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6448,7 +6448,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6463,7 +6463,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6477,19 +6477,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6497,7 +6497,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6512,7 +6512,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6534,7 +6534,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -6555,19 +6555,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6575,7 +6575,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6590,7 +6590,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6604,19 +6604,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6624,7 +6624,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6639,7 +6639,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6661,7 +6661,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address to return + + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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` @@ -6682,19 +6682,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6702,7 +6702,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6717,7 +6717,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6731,19 +6731,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6751,7 +6751,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6766,7 +6766,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6788,7 +6788,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl` (str, required) - The address to return + + address: `bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f` (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 @@ -6807,16 +6807,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -6830,7 +6830,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6862,14 +6862,14 @@ Returns the issuances of an address "result": [ { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6884,20 +6884,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", + "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6912,20 +6912,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406054, + "block_time": 1730457245, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", + "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6940,20 +6940,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730406049, + "block_time": 1730457241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", + "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6968,20 +6968,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406046, + "block_time": 1730457227, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "fd736247a4657306233a79e8401189106070d296996d407012c76dea85b77d37", + "tx_hash": "14a56e3ad6eaff3a17ff25aab4c9475640a5802be030a6fb1579d2a069db9b2b", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6996,7 +6996,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406032, + "block_time": 1730457223, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7011,7 +7011,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The issuer or owner to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7034,8 +7034,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -7043,16 +7043,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -7060,16 +7060,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -7077,16 +7077,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 40, @@ -7094,16 +7094,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730405930, - "last_issuance_block_time": 1730405934, + "first_issuance_block_time": 1730457133, + "last_issuance_block_time": 1730457137, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 19, @@ -7111,8 +7111,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730405916, - "last_issuance_block_time": 1730405926, + "first_issuance_block_time": 1730457108, + "last_issuance_block_time": 1730457129, "supply_normalized": "0.00000019" } ], @@ -7126,7 +7126,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The issuer to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -7149,8 +7149,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -7158,16 +7158,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -7175,16 +7175,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -7192,16 +7192,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 40, @@ -7209,16 +7209,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730405930, - "last_issuance_block_time": 1730405934, + "first_issuance_block_time": 1730457133, + "last_issuance_block_time": 1730457137, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 19, @@ -7226,8 +7226,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730405916, - "last_issuance_block_time": 1730405926, + "first_issuance_block_time": 1730457108, + "last_issuance_block_time": 1730457129, "supply_normalized": "0.00000019" } ], @@ -7241,7 +7241,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The owner to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7264,8 +7264,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -7273,16 +7273,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -7290,16 +7290,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -7307,16 +7307,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 40, @@ -7324,16 +7324,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730405930, - "last_issuance_block_time": 1730405934, + "first_issuance_block_time": 1730457133, + "last_issuance_block_time": 1730457137, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 19, @@ -7341,8 +7341,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730405916, - "last_issuance_block_time": 1730405926, + "first_issuance_block_time": 1730457108, + "last_issuance_block_time": 1730457129, "supply_normalized": "0.00000019" } ], @@ -7356,7 +7356,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7375,17 +7375,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", - "block_time": 1730406233, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_time": 1730457436, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", + "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7393,14 +7393,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7408,7 +7408,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7427,17 +7427,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", - "block_time": 1730406229, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", + "block_time": 1730457421, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", + "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7445,14 +7445,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7460,7 +7460,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7479,17 +7479,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", - "block_time": 1730406226, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", + "block_time": 1730457408, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "supported": true, - "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", + "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7497,12 +7497,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7513,17 +7513,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_hash": "0ad9c63277873202959baabc06121e31a5c13f9689a04b505e1b9115622c0e19", - "block_time": 1730406221, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "7d7912291607a8552a6a8592e2db47c4dc41b216211421ca5bbd965f00b472d5", + "block_time": 1730457404, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070:1 2 ", + "utxos_info": " d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7548,17 +7548,17 @@ Returns the transactions of an address }, { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 197, - "block_hash": "45c183e961a25d45c59f8042057a2e8746cb030855a118f9568e4dc31d644764", - "block_time": 1730406190, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "2b1db078f20aa241fc807343f3d11191e0eff2bbc4bfb94f91018c739609190a", + "block_time": 1730457370, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f:1 2 ", + "utxos_info": " 5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7575,7 +7575,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7596,7 +7596,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -7615,20 +7615,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7653,7 +7653,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7682,9 +7682,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7699,7 +7699,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7725,9 +7725,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7742,7 +7742,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7768,9 +7768,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7785,7 +7785,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7811,9 +7811,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "block_index": 210, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7828,7 +7828,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7863,7 +7863,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The source of the fairminter to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7888,10 +7888,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7916,7 +7916,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7925,10 +7925,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7953,7 +7953,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730405930, + "block_time": 1730457133, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7965,10 +7965,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7993,7 +7993,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730405916, + "block_time": 1730457108, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8005,10 +8005,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "tx_index": 14, "block_index": 130, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8033,7 +8033,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730405912, + "block_time": 1730457105, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8045,10 +8045,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8073,7 +8073,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8095,7 +8095,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address of the mints to return + + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8113,22 +8113,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8137,22 +8137,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", + "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405926, + "block_time": 1730457129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8161,22 +8161,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", + "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405923, + "block_time": 1730457116, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8185,22 +8185,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", + "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405919, + "block_time": 1730457112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8209,22 +8209,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2b7563fabb8ea9da7663f9ced59d2ac6c2db11e3a18555ac78b84322ef7c2461", + "tx_hash": "d267eba5af018854aecc34f00562ca5f2e69fa701407af15efd240f836a314e8", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405900, + "block_time": 1730457093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8233,22 +8233,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8267,7 +8267,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address of the mints to return + + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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` @@ -8286,22 +8286,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8322,7 +8322,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0` (str, required) - The utxo to return + + utxo: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8342,8 +8342,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset_info": { "divisible": true, "asset_longname": null, @@ -8356,12 +8356,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8401,8 +8401,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will make the bet + + feed_address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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) @@ -8474,7 +8474,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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) @@ -8534,7 +8534,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8546,7 +8546,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "020000000001015e8dadefd772a42f70ae7475543f39d868484351995d278a0dfed11ad53111bd0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0200000000000000002b6a291ed47a6584c26b53ee707e2eede672b68e04374afe6fdfe7af80978b906a6796f19b3f9c0af9dbd2da82ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "0200000000010153a965d409550a2acc8b6011e47dbf1074d3ce029b48457f4ea14db7cb2762d300000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff0200000000000000002b6a29bbb9b1716dfd9a5ad70ad3416cab5e0653b2cfca8807f765680605fb4a8cd0fc102f8334ad5dc60d5482ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8568,8 +8568,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending the payment - + order_match_id: `6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582` (str, required) - The ID of the order match to pay for + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending the payment + + order_match_id: `9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49` (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) @@ -8625,23 +8625,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" }, "name": "btcpay", - "data": "434e5452505254590b6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd84224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "data": "434e5452505254590b9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f258f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "020000000001016de2496a8d83c38bc4b95489d327ab1a4fbdbbc13a0c78f15f83ff226dfc8fab0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e00000000000000004b6a4976141b0fbe7328898718ca76b4a0756a3174c416e7aae171d2f6a2339004fd57306769044e2df1193147bdefeb3b5f8ae3f0dc49dd5cf6c1c55697a51147e150c65f3eaf505a3cac4d77a7052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101a656b40a65a92a88821a7cc1d0b27f754af89ea58ad35456cbc894f38859d9c100000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e803000000000000160014d60c806085c49fc50e0ad53c52888227322c5b4900000000000000004b6a492e08186aebe98a97ce2b7ae14ccf514405c01b52c30b16152225067c3bc4e46134d23ebe803b88d9a83c9928e2170b71190f06df459892bae25646b263705bc37b8d029db091c6d1c577a7052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "status": "valid" } } @@ -8654,7 +8654,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address with the BTC to burn + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -8713,7 +8713,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 1000, "overburn": false }, @@ -8723,7 +8723,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "020000000001010e9b4090a40531098c198d89ea92aa3546a5b57aeed32e58809cd0e532391ea70000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000" + "rawtransaction": "020000000001019306e5967e51ac38e520c7c531b47a1db2353cd50a53aca2574318b860dc648b00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000" } } ``` @@ -8733,8 +8733,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: `bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b` (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) @@ -8790,21 +8790,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" }, "name": "cancel", - "data": "434e5452505254594625da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", - "btc_in": 4949896528, + "data": "434e54525052545946d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "btc_in": 4949918908, "btc_out": 0, - "btc_change": 4949882322, + "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "02000000000101fe505a7eb491a7183aca2450a64372d4268de4b3fb596eeec20b9ed7ea9bda2501000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a8ffffffff0200000000000000002b6a29ffc64cedeb35544d6e96ef3a2ee718afee555ab19ab9739c77f2592740b2ac14042a4e62ae4b72b948d235092701000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a802000000000000", + "rawtransaction": "020000000001010ba33dc0951d6f04abb181fe92946f8c1d946591cb61406fd110078b6626bdd00100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06cffffffff0200000000000000002b6a29f291a220df835c5406a98ea6cb5eeca4578ab882f52606c945246fccfeea07a3392b39ba6bc6a13beb3e8d09270100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06c02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "status": "valid" } } @@ -8817,7 +8817,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -8876,7 +8876,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8895,7 +8895,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101b8d7f271a59dff34bdb09b438bcece6246a7a58789371a52d0cc9bbd2de0433b0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000226a20cb959a0ab9047972db5c9479f1a7c138d5b7d83daaf250a9b249a0f7e5ff11c892bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101ac7da7095f378af7e99845959451e10196dc3e0a9163b60d23e7bd8fd383d77e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000226a20de2f052628860baeb8a229fcceb70b7727e5d15d49fc433ce3a7370bbeef156892bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8915,7 +8915,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: `bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e` (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) @@ -8980,7 +8980,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9004,7 +9004,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "0200000000010144c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9020000001600145e5262049de2f0df536d6112a3107d5ef284384bffffffff0200000000000000002c6a2ad506e5d390aba83f230e5384acc629dd9980d3d0f67cccb049acc599e7e61988c1c478e674ece915bb3832dd0827010000001600145e5262049de2f0df536d6112a3107d5ef284384b02000000000000", + "rawtransaction": "02000000000101779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d96550200000016001420c62b4494792dcc3a836352dd61cdabfef8e9d8ffffffff0200000000000000002c6a2a6ee41bc054780a03880d02d242130c712c585ba0a2d1c6cbef1e3aadf672e8815382e3be1d1456d1d8c432dd08270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9030,7 +9030,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -9089,14 +9089,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9115,7 +9115,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101851e8c9d07ac05388df23a3194a5bef4cbefb9e69874cd1fc4011d7023471d940000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21395b1f6a91b676fad6dbe408a5c9b8236d7f8a77346ec92d198ff1c7367f6bd39657bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101e078c3779400ed6a6a959a1a79d9c6997efc7c57a25aa248c57a7e48300f9ac800000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a216d61776c2666e4387d737b5b9181d4abb99b8990b82704bb8f19befe2d891e591757bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9136,10 +9136,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -9204,10 +9204,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "transfer_destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "lock": false, "reset": false, @@ -9220,7 +9220,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101ea6e2cfa2896c07bdba67c07f9ee0e8a62336050de30bfb0a37684f0a238b3bb0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000236a2118c32d6b011d6cb7494cea4b914abf59d55c38a8b6ce8d0d945ac21ceac11eed1f69b2052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101df5ccaac5aec03ef74c577999dfba6f1e18b23abb98002de2ddede842523deda00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000236a21f68460d38bcb91b083672a5cfc6c501839b942c905be88fbcce7f62b5ecabd67d569b2052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9249,9 +9249,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j,bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9316,16 +9316,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", 1 ], [ "MPMASSET", - "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", 2 ] ], @@ -9333,26 +9333,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e808847258a0cd8bc0a3db0e1db2449d01d63da29bc40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d60c806085c49fc50e0ad53c52888227322c5b4980f79a85330dcd51af085ea7f01c8fda7041c67dbe40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "02000000000104a483aa729168b569950b80d77888ce81f2d17952a60b4695c87d6304c50f3e640000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff1cfb7ca28b20bbef6d741ef6effcd4afde9bd1964cac9cb8679d666a23858f0e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0ef812af81b091211c39e6a3238e1850ba3d734afb131c6bd7fc714a44ea6f3e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff29757e6db0f187c4ecd3357bdc91ee7a03ff47cd38b6855faa9b9c5aaed138e80000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000069512103a0a348530d1605a1e5c212d0c41b57dcc8af119295002a371d295d947b17d0442102c24dde1a6521b8af103bbd053ac5cfb02a42c5184faca4d2699b9b03f51e98b62103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee80300000000000069512102bfa348530d1605a1e51112d244929f927123373029f1ce88e45eab4da4a312fa21026cd35f92220432a3c887b7388a2414946392d87b95851892699b9ee095965c002103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aeb8f216a80400000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000002000002000002000000000000", + "rawtransaction": "020000000001040a733e9124ac5e8603c19f7325a225d26d2b0990fb23bfd624c1f87c4f40e87f00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7266fca9e5f6baa9453c234454406f6629786a3dd4ad79e064b762e73d973a2000000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7df073294a46a2250cfd46e9c09c4eb47d61f6d7947cdbf461103eae1826fb7c00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffffcbbad1fde15099ba395dcb23178bc8c75978c50859437709174349a607f7e52e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e80300000000000069512102db4fcc1f6839e6777bba8106bef0d29ae2cbac45af16fc4d80326e073f62006f210284004c23cd46599f13c3bed27e709d9ce86596fc6de0c29b9b4b4401f5ddb4d12103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103c44fcc1f6839e6777b6981043e26de1a826a68da6a18f698bc64e68518502c1e2102df49cdd457c36a92de9211da20d76d8067bfe6bdab9d7cdb9b4b41e2955570a42103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aeb8f216a804000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9368,7 +9368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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 @@ -9430,7 +9430,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9447,7 +9447,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9461,7 +9461,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101d75f48deb96882cdce86578209818cdb3c2e8ca23fc1c7291dbea3c7609569550000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000356a3324f409bade926749f4bebfb43f97ef030e3b28f839eeb435ca88f848be84b7d5b3fac006ea0927d1c4a6b1d2d680a3fe516ecd37b8052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101d1b8b18532596a0e5b6ecd464bc6acebba323ba5197b223c8ab7e5607785ef8600000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000356a33901f75d51d4fe62503d92bac7343d27ae664de8c7ac14ec2249a9748b8a151749610e289ced462c7d7ca584c1633c4d790c4e237b8052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9487,8 +9487,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address that will be receiving the asset + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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 @@ -9552,8 +9552,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9569,19 +9569,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "434e54525052545902000000000000000100000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "02000000000101f65d910f19d7f8a53edcc2cf5fa708d8efc5b2480460ff18988d5b45793a9e830000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000306a2eef0aa01f8a6c172ee628e06babf8eea832f2cb402c5edaa9a4d81855808f252cc7f7d91cc14e4c6b83e10959ca435cb9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001014c51627eef5104002dcc1fd1e8677d60350ee7f48182880da49c9a9fdcbfdb6e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000306a2e22f5e2f27fd4e63c9aaa0ac8b58cbee6e81726be1ed6d14c04eed50a7aabff8719d6ff22a383f14d15346aea85ed5cb9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "quantity_normalized": "0.00001000" } @@ -9595,8 +9595,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be sending - + destination: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending + + destination: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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 @@ -9654,23 +9654,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808847258a0cd8bc0a3db0e1db2449d01d63da29bc07ffff", + "data": "434e5452505254590480f79a85330dcd51af085ea7f01c8fda7041c67dbe07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101945b7a46652dff712689fd6fe1ccbe51ceabbff6dd73f36e3ef2fd17735756960000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21bb5b1632856e2c38b48b0aaf7e94274bf4d0477e40412d3191d6feae90070a313f57bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001014a4e16c95f136179216ad70a3bca2c703f3abbdc185339e124f760b0e710162700000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a21361a816cbd2b097162e660245175148a745c149b5e148e9e73a7c6b9abae34e3fb57bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "flags": 7, "memo": "ffff" } @@ -9684,8 +9684,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: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c` (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` @@ -9742,8 +9742,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "quantity": 1000 }, "name": "dispense", @@ -9752,7 +9752,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "02000000000101adb758936db4f7ed50786161464d4082a86dd5ffc87e92031012b44ed57ebef7030000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bcffffffff03e8030000000000001600143e7d7661faa6389041324526ba09299c650ab59800000000000000000c6a0a9787813ebb991a086da18a250827010000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bc02000000000000", + "rawtransaction": "020000000001010535e7b336799fb1a0dc190a91668122df1509912cb99d362de9c9648fea1d8d03000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbeffffffff03e803000000000000160014cc1251040fa17ccd55028e8520b943c0b4e443de00000000000000000c6a0a3a29e0bf0b39bde6e3bd8a25082701000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbe02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9769,7 +9769,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be issuing the asset + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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: `` @@ -9858,7 +9858,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9889,7 +9889,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "02000000000101193a2c693348736ffa2753b9e4d38478166341c63d9bd1841245547b2e95fd050000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000316a2fed8000fbedd5138d6e2624e330346fffeb71c735bff59d058dc38e6dbfb6e29124342e1147f60ba628f711eb180bb321b9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001015da08d1dac44d3621c5eb212a51003f8a252990cc407f6ff2077a3ec08b221d200000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000316a2f356977210af8a1039611bcbe16d8b3de56128f9397f2b4a73d1940559203a8db236ae6863339bd8c685e9a7c710fd221b9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9928,7 +9928,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: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address that will be minting the asset + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -9987,13 +9987,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -10005,7 +10005,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "0200000000010184b1483d8197971cb9b69408599da8871d99fb5e7d71110708cb868ebe062fec0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000166a14c984402cc7424ad7db1331b2d9e0cb83f1341ec352bf052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101a65bf655e86e2b404c216632cd4878ffd434b2ed80a264589551314f422e667400000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000166a14c1e2aa8f0b3ed5aba33ac66798d2136fed07eacf52bf052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10025,10 +10025,10 @@ Composes a transaction to attach or detach an assets from an address to UTXO. Disabled after block 870000. + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address or the utxo from which the assets are attached or detached + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address or the utxo from which the assets are attached or detached + asset: `XCP` (str, required) - The asset or subasset to attach or detach + quantity: `1000` (int, required) - The quantity of the asset to attach or detach (in satoshis, hence integer) - + destination: `36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:3` (str, optional) - The address or the utxo from which the assets are attached or detached + + destination: `733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:3` (str, optional) - The address or the utxo from which the assets are attached or detached + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10092,7 +10092,7 @@ Disabled after block 870000. Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address from which the assets are attached + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10152,7 +10152,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10171,7 +10171,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "0200000000010184384aeb3e8356ccfd9f558a2a9e85f61d825d148ab5837c92e977d4a4ad13f00000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000146a12446e9de73946781ac4e3a09fb3ca5e0c5000dab5052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001011dbc604ce7e37a1acc31f6e3c06de97a71c06c4f8013409f6a4332e478ee333500000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000146a12bb0cafd2f03b1778540315a0ee0efd4196f6dab5052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10191,8 +10191,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: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10249,40 +10249,78 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" + "source": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" }, "name": "detach", - "data": "434e5452505254596662637274317133387979617764677936337465753079686c756838616b656d3736763974353774677475356a", + "data": "434e545250525459666263727431713663786771637939636a30753272733236353739397a797a7975657a636b3666733630366d6c", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "0200000000010244c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dfffffffffcb7b36b2a6f61fd13996cc7c49f0ee2b92261b6422f18aa8d3dcbf6f2189ad2010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dffffffff020000000000000000376a35d506e5d390aba83f496c30f6d8f758eea0f9aab18118abca979fb1fc92d660e345b110de15878c78e80e1cd4f9c9be0a253ede4908772c0a27010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d02000002000000000000", + "rawtransaction": "02000000000102779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d965500000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff689ebd6d6f85a36b3b710a59ab65505a5e63804b5f13640cdf1aa7b2af77110401000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff020000000000000000376a356ee41bc054780a03e26f61a036227d474e203cd1c1a8ffab6d2e4f9f8401dab48eb5da87676d2ca8c9a1a3ed75657df5bf22df0044772c0a2701000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86702000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" } } } } ``` -### Compose Movetoutxo [GET /v2/utxos/{utxo}/compose/movetoutxo{?destination}{&more_utxos}{&exact_fee}{&change_address}{&verbose}{&show_unconfirmed}] +### Compose Movetoutxo [GET /v2/utxos/{utxo}/compose/movetoutxo{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to move assets from UTXO to another UTXO. + Parameters + utxo (str, required) - The utxo from which the assets are moved + destination (str, required) - The address to move the assets to - + more_utxos (str, optional) - The additional utxos to fund the transaction - + Default: `` - + exact_fee (int, optional) - + + 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) + + Default: `None` + + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output. + + 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` + + 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` + + 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` + + 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` + + 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` + + 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` + + 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` - + change_address (str, optional) - + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + Default: `None` + + 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` + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + 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. @@ -10327,8 +10365,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -10336,16 +10374,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "owner": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "owner": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false, "supply": 100000000000, @@ -10353,16 +10391,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730406198, - "last_issuance_block_time": 1730406198, + "first_issuance_block_time": 1730457376, + "last_issuance_block_time": 1730457376, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -10370,16 +10408,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "owner": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "issuer": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "owner": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "divisible": true, "locked": false, "supply": 100000000000, @@ -10387,16 +10425,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730406027, - "last_issuance_block_time": 1730406027, + "first_issuance_block_time": 1730457219, + "last_issuance_block_time": 1730457219, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -10404,8 +10442,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" } ], @@ -10433,8 +10471,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -10442,8 +10480,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730405882, - "last_issuance_block_time": 1730405893, + "first_issuance_block_time": 1730457074, + "last_issuance_block_time": 1730457086, "supply_normalized": "100.00000000" } } @@ -10474,7 +10512,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10482,14 +10520,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10497,7 +10535,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -10515,7 +10553,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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. @@ -10527,7 +10565,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10581,9 +10619,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10598,7 +10636,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10624,9 +10662,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10641,7 +10679,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10667,9 +10705,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10684,7 +10722,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10710,9 +10748,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "block_index": 210, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10727,7 +10765,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10753,9 +10791,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10770,7 +10808,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10832,13 +10870,13 @@ Returns the orders of an asset { "result": [ { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10852,7 +10890,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10872,13 +10910,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 53, - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10892,7 +10930,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10912,13 +10950,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", "tx0_index": 50, - "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 51, - "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10932,7 +10970,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10952,13 +10990,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10972,7 +11010,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11052,20 +11090,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "event": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11073,20 +11111,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", + "event": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11094,20 +11132,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11115,20 +11153,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "event": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11140,16 +11178,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11209,12 +11247,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -11226,16 +11264,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -11247,16 +11285,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -11268,16 +11306,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -11289,16 +11327,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -11378,14 +11416,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", + "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -11400,20 +11438,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -11428,20 +11466,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -11456,20 +11494,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -11484,7 +11522,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730405882, + "block_time": 1730457074, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11518,10 +11556,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11529,7 +11567,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -11542,10 +11580,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11553,7 +11591,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -11566,10 +11604,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "block_index": 208, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11577,7 +11615,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -11590,10 +11628,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11601,7 +11639,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -11614,10 +11652,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11625,7 +11663,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -11676,9 +11714,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11687,7 +11725,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11697,7 +11735,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -11713,9 +11751,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", + "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", "block_index": 142, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11724,7 +11762,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11734,7 +11772,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405966, + "block_time": 1730457161, "asset_info": { "divisible": true, "asset_longname": null, @@ -11750,9 +11788,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", + "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", "block_index": 150, - "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", + "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11760,10 +11798,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 0, - "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11771,7 +11809,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405996, + "block_time": 1730457189, "asset_info": { "divisible": true, "asset_longname": null, @@ -11787,18 +11825,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11808,7 +11846,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -11833,7 +11871,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - The address to return + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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` @@ -11846,9 +11884,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11857,7 +11895,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11867,7 +11905,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -11917,7 +11955,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11925,7 +11963,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11934,7 +11972,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11942,7 +11980,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11951,7 +11989,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11959,7 +11997,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11968,7 +12006,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -12005,27 +12043,27 @@ Returns the dispenses of an asset { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12040,7 +12078,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -12054,27 +12092,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", + "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", "block_index": 147, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12089,7 +12127,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730405985, + "block_time": 1730457178, "asset_info": { "divisible": true, "asset_longname": null, @@ -12103,19 +12141,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12123,7 +12161,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12138,7 +12176,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -12152,19 +12190,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12172,7 +12210,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12187,7 +12225,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -12261,10 +12299,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12289,7 +12327,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12329,22 +12367,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", + "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -12353,22 +12391,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "tx_index": 12, "block_index": 124, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -12377,22 +12415,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -12411,7 +12449,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u` (str, required) - The address of the mints to return + + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (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` @@ -12430,22 +12468,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -12498,9 +12536,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12515,7 +12553,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12541,9 +12579,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12558,7 +12596,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12584,9 +12622,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12601,7 +12639,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12627,9 +12665,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12644,7 +12682,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12670,9 +12708,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "block_index": 210, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12687,7 +12725,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12722,7 +12760,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582` (str, required) - The hash of the transaction that created the order + + order_hash: `58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49` (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. @@ -12734,9 +12772,9 @@ Returns the information of an order { "result": { "tx_index": 55, - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "block_index": 211, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12751,7 +12789,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12783,7 +12821,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8` (str, required) - The hash of the transaction that created the order + + order_hash: `9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2` (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 @@ -12810,13 +12848,13 @@ Returns the order matches of an order { "result": [ { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12830,7 +12868,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12860,7 +12898,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82` (str, required) - The hash of the transaction that created the order + + order_hash: `dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58` (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 @@ -12879,15 +12917,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "btc_amount": 2000, - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "status": "valid", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "btc_amount_normalized": "0.00002000" } ], @@ -12931,9 +12969,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12951,7 +12989,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730406148, + "block_time": 1730457326, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12977,9 +13015,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "block_index": 211, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12997,7 +13035,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730406268, + "block_time": 1730457461, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13023,9 +13061,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13043,7 +13081,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13069,9 +13107,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13089,7 +13127,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13115,9 +13153,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13135,7 +13173,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13198,13 +13236,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13221,7 +13259,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13241,13 +13279,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 53, - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13264,7 +13302,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406148, + "block_time": 1730457326, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13284,13 +13322,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", "tx0_index": 50, - "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 51, - "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13307,7 +13345,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406068, + "block_time": 1730457258, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13327,13 +13365,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13350,7 +13388,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13408,13 +13446,13 @@ Returns all the order matches { "result": [ { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13428,7 +13466,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13448,13 +13486,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 53, - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13468,7 +13506,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13488,13 +13526,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", "tx0_index": 50, - "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 51, - "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13508,7 +13546,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13528,13 +13566,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13548,7 +13586,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13716,66 +13754,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", + "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", "block_index": 121, - "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", + "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730405878, + "block_time": 1730457070, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "c0e441c6404c2d3fda3d08373f8563dca76c7a8fbeadef531d02d4b3f4cf31c6", + "tx_hash": "4ed0d8ac42583a4dd760135e1920ed1f67700c40113bb32072538558e539846a", "block_index": 120, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730405874, + "block_time": 1730457067, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "0811c1104f3911e3ad4092bff677862f1831e186b035da0443cc3c17527a5c15", + "tx_hash": "a9636d72a99630b9a931b4dc6aea179040f5b9323e9df4eb38a9335b03519da9", "block_index": 119, - "source": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj", + "source": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730405870, + "block_time": 1730457064, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "7a0fd8240482f95bd7445964937272bbbab4ca98481a17340bd2a183c290d391", + "tx_hash": "be136b6b3c2318510c906d4d3ce08fce012e799cb97af6bd10d444147de65f94", "block_index": 118, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730405866, + "block_time": 1730457060, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c835412e2a2077d8840895f89edb16b3bc08343d81e4c94c7c12286204e8e50f", + "tx_hash": "bb2802e09f27213fe8014bb97c8590ab63bc9ebd8b168a81a133f6d2088a2171", "block_index": 117, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730405863, + "block_time": 1730457057, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13820,9 +13858,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13831,7 +13869,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13841,7 +13879,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -13857,9 +13895,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", + "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", "block_index": 142, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13868,7 +13906,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13878,7 +13916,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405966, + "block_time": 1730457161, "asset_info": { "divisible": true, "asset_longname": null, @@ -13894,9 +13932,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", + "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", "block_index": 150, - "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", + "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13904,10 +13942,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 0, - "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13915,7 +13953,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405996, + "block_time": 1730457189, "asset_info": { "divisible": true, "asset_longname": null, @@ -13931,9 +13969,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13942,7 +13980,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13952,11 +13990,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -13968,18 +14006,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13989,7 +14027,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -14014,7 +14052,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc` (str, required) - The hash of the dispenser to return + + dispenser_hash: `f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a` (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. @@ -14026,9 +14064,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14037,7 +14075,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14047,7 +14085,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -14069,7 +14107,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc` (str, required) - The hash of the dispenser to return + + dispenser_hash: `f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a` (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 @@ -14089,19 +14127,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14109,7 +14147,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14124,7 +14162,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -14138,19 +14176,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14158,7 +14196,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14173,7 +14211,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -14215,20 +14253,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -14253,7 +14291,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28` (str, required) - The hash of the dividend to return + + dividend_hash: `f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70` (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. @@ -14265,20 +14303,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -14300,7 +14338,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70` (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 @@ -14323,12 +14361,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "event": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "tx_index": 42, - "utxo": "97b40fb2d3fcec879da9268d14d082e04230015d3e338320a5245e8a0174be55:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "4273329b0ed940a3418d01e39140ca0b8ba8c039bbbcaaba284dceed73da338a:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "divisible": true, "asset_longname": null, @@ -14374,27 +14412,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 704, @@ -14403,14 +14441,14 @@ Returns all events "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -14421,9 +14459,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 703, @@ -14432,9 +14470,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -14444,24 +14482,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -14471,9 +14509,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 701, @@ -14501,15 +14539,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } } ``` @@ -14587,16 +14625,16 @@ Returns the events filtered by event name "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -14606,9 +14644,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 700, @@ -14618,12 +14656,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -14633,9 +14671,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 697, @@ -14645,39 +14683,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730406255, + "block_time": 1730457447, "asset_info": { "divisible": true, "asset_longname": null, @@ -14687,24 +14725,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -14714,9 +14752,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_time": 1730406251 + "block_time": 1730457443 } ], "next_cursor": 669, @@ -14772,27 +14810,27 @@ Returns all the dispenses { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14807,7 +14845,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -14821,19 +14859,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", + "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14841,7 +14879,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14856,11 +14894,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -14870,27 +14908,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", + "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", "block_index": 147, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14905,7 +14943,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730405985, + "block_time": 1730457178, "asset_info": { "divisible": true, "asset_longname": null, @@ -14919,19 +14957,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14939,7 +14977,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14954,7 +14992,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -14968,19 +15006,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14988,7 +15026,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15003,7 +15041,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -15045,10 +15083,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15056,7 +15094,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -15069,10 +15107,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15080,11 +15118,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15093,10 +15131,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15104,7 +15142,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -15117,10 +15155,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15128,11 +15166,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15141,10 +15179,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15152,11 +15190,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15207,14 +15245,14 @@ Returns all the issuances "result": [ { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -15229,20 +15267,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "c29d7a9278990abb929a4b5c564f4b26d342a2c3dfc4ae3c6e6e98dcf8ec2aed", + "tx_hash": "a42d1d8f4f2aa464d070bbad898115de8c501af0ca596b0e18f70dfeed5f3a91", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "transfer": false, "callable": false, "call_date": 0, @@ -15257,20 +15295,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406198, + "block_time": 1730457376, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", + "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -15285,20 +15323,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406054, + "block_time": 1730457245, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", + "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -15313,20 +15351,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730406049, + "block_time": 1730457241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", + "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -15341,7 +15379,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406046, + "block_time": 1730457227, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15356,7 +15394,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070` (str, required) - The hash of the transaction to return + + tx_hash: `d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5` (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. @@ -15368,14 +15406,14 @@ Returns the issuances of a block { "result": { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -15390,7 +15428,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15422,16 +15460,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -15445,7 +15483,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156` (str, required) - The hash of the transaction to return + + tx_hash: `827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d` (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. @@ -15458,16 +15496,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -15501,9 +15539,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15511,14 +15549,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405941, + "block_time": 1730457145, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", + "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", "block_index": 137, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15526,7 +15564,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405937, + "block_time": 1730457142, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15540,7 +15578,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369` (str, required) - The hash of the transaction to return + + tx_hash: `babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7` (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. @@ -15552,9 +15590,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15562,7 +15600,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405941, + "block_time": 1730457145, "fee_fraction_int_normalized": "0.00000000" } } @@ -15599,10 +15637,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15627,7 +15665,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15636,10 +15674,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15664,7 +15702,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730405930, + "block_time": 1730457133, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15676,10 +15714,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15704,7 +15742,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730405916, + "block_time": 1730457108, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15716,10 +15754,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "tx_index": 14, "block_index": 130, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15744,7 +15782,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730405912, + "block_time": 1730457105, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15756,10 +15794,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15784,7 +15822,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15853,22 +15891,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15877,22 +15915,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", + "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405926, + "block_time": 1730457129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15901,22 +15939,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", + "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405923, + "block_time": 1730457116, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15925,22 +15963,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", + "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405919, + "block_time": 1730457112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15949,22 +15987,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "79d19e0a40bca002f152c5b29d457ee19081e65cc5c1d8db52bfb659756ec8a9", + "tx_hash": "e6b7351251a0177d771a4480fe83ea9f4106301b80cc2fe3d2c09039da01387d", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405908, + "block_time": 1730457101, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -15983,7 +16021,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30` (str, required) - The hash of the fairmint to return + + tx_hash: `a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15994,22 +16032,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -16027,7 +16065,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp,bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj` (str, required) - The addresses to search for + + addresses: `bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5,bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx` (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. @@ -16043,11 +16081,20 @@ Returns a list of unspent outputs for a list of addresses { "vout": 1, "height": 210, - "value": 4949896528, + "value": 4949918908, "confirmations": 2, - "amount": 49.49896528, - "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", - "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" + "amount": 49.49918908, + "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + }, + { + "vout": 1, + "height": 202, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" }, { "vout": 0, @@ -16055,8 +16102,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", - "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" + "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" }, { "vout": 2, @@ -16064,8 +16111,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a", - "address": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj" + "txid": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df", + "address": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx" } ], "next_cursor": null, @@ -16078,7 +16125,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl` (str, required) - The address to search for + + address: `bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f` (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 @@ -16094,25 +16141,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "c3a8068df814366cf5a33f32a345e9020848f8e449eada40071edb6fab0f350c" + "tx_hash": "d2e042faaa6ba6293a8b0b819a0ccfbf3c9a12be6dfdda64d53752126fc80940" }, { - "tx_hash": "0c41d68a310a5cde52ad46df9407819f38179f4056738621a40820ade614151b" + "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42" }, { - "tx_hash": "1287ff9109c4deba30c2ef14e7fa0ce3d0577e19856549d45903ed8fc421f347" + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" }, { - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156" + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d" }, { - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" + "tx_hash": "885180138abe846d2edd32fd9d2c85863068c0a9c69e9a66fc7e430077339ab5" }, { - "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1" + "tx_hash": "37a112f7c59400955e4ba5d026dd7dc3c90c55f93559a68adaf2cd9b1b23d1ca" }, { - "tx_hash": "657b360ca3f7b365aa76df8755ff71b0e9ea2deb0ac41859a042c65c7429fede" + "tx_hash": "1bcfb5a88b505cec97f883f2b95a14bca632d7a2b66e30a40bba7584335d51d1" } ], "next_cursor": null, @@ -16125,7 +16172,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m` (str, required) - The address to search for. + + address: `bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e` (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. @@ -16138,8 +16185,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 7, - "tx_hash": "0426ca0b6ab06d9145755ae7980fdc28028d4870252d9510713e2ef15d7b475d" + "block_index": 10, + "tx_hash": "610fd764366a4234557860e36b878bafffc8db6375b0926aaf1d007b5a040b9e" } } ``` @@ -16149,7 +16196,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp` (str, required) - The address to search for + + address: `bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5` (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 @@ -16170,15 +16217,23 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4" + "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb" }, { "vout": 1, "height": 210, - "value": 4949896528, + "value": 4949918908, "confirmations": 2, - "amount": 49.49896528, - "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" + "amount": 49.49918908, + "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" + }, + { + "vout": 1, + "height": 202, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f" } ], "next_cursor": null, @@ -16191,7 +16246,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j` (str, required) - Address to get pubkey for. + + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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. @@ -16203,7 +16258,7 @@ Get pubkey for an address. ``` { - "result": "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" + "result": "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" } ``` @@ -16212,7 +16267,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544` (str, required) - The transaction hash + + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (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. @@ -16224,7 +16279,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001019afef15844ab2436b6dd8a5120c844a93a6df0adf9263f8bf95e3b04e7e655790100000000ffffffff03e8030000000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d00000000000000000c6a0a58647fa68b6e9b0364c7eb140927010000001600145e5262049de2f0df536d6112a3107d5ef284384b0247304402203ee9fe928633499235c32bbc9fabc4abe15ba5fc87e81457fc26120ca1bdd01702200410265a244e15ba8b6537287195ebb0d4a5b15101e9397ae574d3447c33422a0121032843656ba832e0549a869a91d4662871f4cee56ddb6206a6e59e74a6f0758fd200000000" + "result": "02000000000101df410f0963d8995e86d62621d5713b59929e6177f3f0cfea7e8753ad23f3d76e0100000000ffffffff03e803000000000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86700000000000000000c6a0a84523c205929ea206dc5eb1409270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d80247304402205fbab6bbd9e3f9aea22d03ca6f29bfabc63d227d54ccbe81727ef2ef555be28e022016378b2351bb6e0ea7160e0d698a3dcc709a1ea6405c4fefb786ad21a7c4eac1012102afa25c58d2ed1a855691557311338a22c5d0b7a78b199fc03e8f0aef941cda3100000000" } ``` @@ -16319,27 +16374,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79 }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "quantity": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, "asset_info": { "divisible": true, @@ -16350,22 +16405,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -16375,22 +16430,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "block_index": 211, - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -16400,30 +16455,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730406273.1801424, + "block_time": 1730457465.690188, "btc_amount": 0, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "destination": "", "fee": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, - "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", + "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -16437,7 +16492,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -16468,19 +16523,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -16490,7 +16545,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -16503,7 +16558,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9` (str, required) - The hash of the transaction to return + + tx_hash: `57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8` (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 @@ -16523,27 +16578,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79 }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "quantity": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, "asset_info": { "divisible": true, @@ -16554,22 +16609,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -16579,22 +16634,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "block_index": 211, - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -16604,30 +16659,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730406273.1801424, + "block_time": 1730457465.690188, "btc_amount": 0, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "destination": "", "fee": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, - "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", + "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -16641,7 +16696,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/messages/attach.py b/counterparty-core/counterpartycore/lib/messages/attach.py index 72817a96c3..057cc58521 100644 --- a/counterparty-core/counterpartycore/lib/messages/attach.py +++ b/counterparty-core/counterpartycore/lib/messages/attach.py @@ -56,7 +56,7 @@ def validate(db, source, asset, quantity, destination_vout=None, block_index=Non problems.append("invalid source address") # validate asset and quantity - validate_asset_and_quantity(asset, quantity) + problems += validate_asset_and_quantity(asset, quantity) if len(problems) > 0: # if asset or quantity are invalid, let's avoid some potential # errors in the next checks by returning here diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index 695be7bf47..c3eb3f1e5c 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -6,6 +6,9 @@ def compose(db, source, destination): + # We don't check if the source has attached assets + # to allow transaction chaining in the same block + if not util.is_utxo_format(source): raise exceptions.ComposeError("Invalid source utxo format") @@ -14,10 +17,6 @@ def compose(db, source, destination): except script.AddressError as e: raise exceptions.ComposeError("destination must be an address") from e - balances = ledger.get_utxo_balances(db, source) - if not balances: - raise exceptions.ComposeError("No balances found for source utxo") - return (source, [(destination, None)], None) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 5a64797b1e..e6ec4d8a68 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -330,7 +330,7 @@ def construct_coin_selection( # 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: + if exact_fee is not None: final_fee = exact_fee else: necessary_fee = int(size / 1000 * fee_per_kb) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index ffe1660e63..138b3ca5db 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14862,23 +14862,158 @@ "description": "The address to move the assets to" }, { - "name": "more_utxos", - "default": "", - "required": false, + "name": "encoding", + "type": "str", + "default": "auto", + "description": "The encoding method to use", + "required": false + }, + { + "name": "fee_per_kb", + "type": "int", + "default": null, + "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)", + "required": false + }, + { + "name": "regular_dust_size", + "type": "int", + "default": 546, + "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.", + "required": false + }, + { + "name": "multisig_dust_size", + "type": "int", + "default": 1000, + "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output", + "required": false + }, + { + "name": "pubkeys", "type": "str", - "description": "The additional utxos to fund the transaction" + "default": null, + "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 + }, + { + "name": "allow_unconfirmed_inputs", + "type": "bool", + "default": false, + "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs", + "required": false }, { "name": "exact_fee", + "type": "int", "default": null, - "required": false, - "type": "int" + "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", + "required": false }, { - "name": "change_address", + "name": "fee_provided", + "type": "int", + "default": 0, + "description": "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", + "required": false + }, + { + "name": "unspent_tx_hash", + "type": "str", "default": null, - "required": false, - "type": "str" + "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 + }, + { + "name": "dust_return_pubkey", + "type": "str", + "default": null, + "description": "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", + "required": false + }, + { + "name": "disable_utxo_locks", + "type": "bool", + "default": false, + "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": "p2sh_pretx_txid", + "type": "str", + "default": null, + "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction", + "required": false + }, + { + "name": "segwit", + "type": "bool", + "default": false, + "description": "Use segwit", + "required": false + }, + { + "name": "confirmation_target", + "type": "int", + "default": 3, + "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": "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": "(API v2 only) Return only the data part of the transaction", + "required": false + }, + { + "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 + }, + { + "name": "use_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false }, { "name": "verbose", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py new file mode 100644 index 0000000000..4c3d3b10a9 --- /dev/null +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py @@ -0,0 +1,143 @@ +from counterpartycore.lib import config, exceptions + +from ..params import ( + ADDR, +) + +UTXO_1 = "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1" +UTXO_2 = "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0" +UTXO_3 = "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0" + +ATTACH_VECTOR = { + "attach": { + "validate": [ + { + "in": ( + ADDR[0], + "XCP", + 100, + ), + "out": [], + }, + { + "in": ( + ADDR[0], + "XCP", + 100, + 1, + ), + "out": [], + }, + { + "in": ( + UTXO_1, + "XCP", + 100, + ), + "out": ["invalid source address"], + }, + { + "in": (ADDR[0], "XCP", 0), + "out": ["quantity must be greater than zero"], + }, + { + "in": (ADDR[0], "XCP", 99999999999999), + "out": ["insufficient funds for transfer and fee"], + }, + { + "in": (ADDR[0], "DIVISIBLE", 99999999999999), + "out": ["insufficient funds for transfer"], + }, + { + "in": ( + ADDR[0], + "BTC", + 100, + ), + "out": ["cannot send bitcoins"], + }, + { + "in": ( + ADDR[0], + "XCP", + config.MAX_INT + 1, + ), + "out": ["integer overflow"], + }, + { + "in": ( + ADDR[0], + "XCP", + "100", + ), + "out": ["quantity must be in satoshis"], + }, + { + "in": ( + ADDR[0], + "XCP", + 100, + -1, + ), + "out": ["destination vout must be greater than or equal to zero"], + }, + { + "in": ( + ADDR[0], + "XCP", + 100, + "1", + ), + "out": ["if provided destination must be an integer"], + }, + ], + "compose": [ + { + "in": ( + ADDR[0], + "XCP", + 100, + 1, + ), + "out": ( + ADDR[0], + [], + b"eXCP|100|1", + ), + }, + { + "in": (UTXO_1, "XCP", 100), + "error": ( + exceptions.ComposeError, + ["invalid source address"], + ), + }, + { + "in": ( + ADDR[0], + "XCP", + 100, + ), + "out": ( + ADDR[0], + [(ADDR[0], None)], + b"eXCP|100|", + ), + }, + ], + "unpack": [ + { + "in": (b"XCP|100|1",), + "out": ("XCP", 100, 1), + }, + { + "in": (b"XCP|100|1", True), + "out": {"asset": "XCP", "quantity": 100, "destination_vout": 1}, + }, + { + "in": (b"XCP|100|",), + "out": ("XCP", 100, None), + }, + ], + }, +} diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py new file mode 100644 index 0000000000..bfd282e274 --- /dev/null +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py @@ -0,0 +1,68 @@ +from ..params import ( + ADDR, + DP, +) + +UTXO_1 = "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1" +UTXO_2 = "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0" +UTXO_3 = "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0" + +DETACH_VECTOR = { + "detach": { + "compose": [ + { + "in": ( + UTXO_2, + ADDR[1], + ), + "out": ( + UTXO_2, + [], + b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + ), + }, + ], + "unpack": [ + { + "in": (b"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",), + "out": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + } + ], + "parse": [ + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2", + }, + ), + "records": [ + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + ], + }, + ], + }, +} diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/move.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/move.py new file mode 100644 index 0000000000..bb6655f72e --- /dev/null +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/move.py @@ -0,0 +1,118 @@ +from ..params import ( + DP, +) + +UTXO_1 = "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1" +UTXO_2 = "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0" +UTXO_3 = "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0" + +MOVE_VECTOR = { + "move": { + "move_assets": [ + { + "in": ( + { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "utxos_info": f"{UTXO_2} {UTXO_3}", + }, + ), + "records": [ + { + "table": "debits", + "values": { + "utxo": UTXO_2, + "address": None, + "asset": "XCP", + "quantity": 100, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "action": "utxo move", + }, + }, + { + "table": "credits", + "values": { + "utxo": UTXO_3, + "address": None, + "asset": "XCP", + "quantity": 100, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "calling_function": "utxo move", + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": UTXO_2, + "destination": UTXO_3, + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + ], + }, + { + "in": ( + { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "utxos_info": f"{UTXO_3} {UTXO_1}", + }, + ), + "records": [ + { + "table": "debits", + "values": { + "utxo": UTXO_3, + "address": None, + "asset": "DIVISIBLE", + "quantity": 1, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "action": "utxo move", + }, + }, + { + "table": "credits", + "values": { + "utxo": UTXO_1, + "address": None, + "asset": "DIVISIBLE", + "quantity": 1, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"] - 1, + "tx_index": DP["default_tx_index"], + "calling_function": "utxo move", + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": UTXO_3, + "destination": UTXO_1, + "asset": "DIVISIBLE", + "quantity": 1, + "fee_paid": 0, + }, + }, + ], + }, + ], + }, +} diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py index 1cf04fde62..e59f62d73b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py @@ -1,4 +1,4 @@ -from counterpartycore.lib import config, exceptions +from counterpartycore.lib import config from ..params import ( ADDR, @@ -10,207 +10,6 @@ UTXO_3 = "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0" UTXO_VECTOR = { - "attach": { - "compose": [ - { - "in": ( - ADDR[0], - "XCP", - 100, - 1, - ), - "out": ( - ADDR[0], - [], - b"eXCP|100|1", - ), - }, - { - "in": (UTXO_1, "XCP", 100), - "error": ( - exceptions.ComposeError, - ["invalid source address"], - ), - }, - { - "in": ( - ADDR[0], - "XCP", - 100, - ), - "out": ( - ADDR[0], - [(ADDR[0], None)], - b"eXCP|100|", - ), - }, - ], - }, - "detach": { - "compose": [ - { - "in": ( - UTXO_2, - ADDR[1], - ), - "out": ( - UTXO_2, - [], - b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - ), - }, - ], - "unpack": [ - { - "in": (b"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",), - "out": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - } - ], - "parse": [ - { - "in": ( - { - "fee": 10000, - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "data": b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "source": ADDR[0], - "block_index": DP["default_block_index"], - "btc_amount": 5430, - "tx_index": DP["default_tx_index"], - "supported": 1, - "destination": ADDR[0], - "block_time": 310501000, - "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", - "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2", - }, - ), - "records": [ - { - "table": "sends", - "values": { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "status": "valid", - "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", - "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "XCP", - "quantity": 100, - "fee_paid": 0, - }, - }, - ], - }, - ], - }, - "move": { - "move_assets": [ - { - "in": ( - { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "utxos_info": f"{UTXO_2} {UTXO_3}", - }, - ), - "records": [ - { - "table": "debits", - "values": { - "utxo": UTXO_2, - "address": None, - "asset": "XCP", - "quantity": 100, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "action": "utxo move", - }, - }, - { - "table": "credits", - "values": { - "utxo": UTXO_3, - "address": None, - "asset": "XCP", - "quantity": 100, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "calling_function": "utxo move", - }, - }, - { - "table": "sends", - "values": { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "status": "valid", - "source": UTXO_2, - "destination": UTXO_3, - "asset": "XCP", - "quantity": 100, - "fee_paid": 0, - }, - }, - ], - }, - { - "in": ( - { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "utxos_info": f"{UTXO_3} {UTXO_1}", - }, - ), - "records": [ - { - "table": "debits", - "values": { - "utxo": UTXO_3, - "address": None, - "asset": "DIVISIBLE", - "quantity": 1, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "action": "utxo move", - }, - }, - { - "table": "credits", - "values": { - "utxo": UTXO_1, - "address": None, - "asset": "DIVISIBLE", - "quantity": 1, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"] - 1, - "tx_index": DP["default_tx_index"], - "calling_function": "utxo move", - }, - }, - { - "table": "sends", - "values": { - "tx_index": DP["default_tx_index"], - "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "status": "valid", - "source": UTXO_3, - "destination": UTXO_1, - "asset": "DIVISIBLE", - "quantity": 1, - "fee_paid": 0, - }, - }, - ], - }, - ], - }, "utxo": { # source, destination, asset=None, quantity=None, block_index=None "validate": [ diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index 84caf85f2e..5f8275a6c1 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -17,12 +17,15 @@ from counterpartycore.lib.messages import issuance from counterpartycore.lib.util import RPCError +from .contract_vectors.attach import ATTACH_VECTOR +from .contract_vectors.detach import DETACH_VECTOR from .contract_vectors.dispenser import DISPENSER_VECTOR from .contract_vectors.fairmint import FAIRMINT_VECTOR from .contract_vectors.fairminter import FAIRMINTER_VECTOR from .contract_vectors.gas import GAS_VECTOR from .contract_vectors.gettxinfo import GETTXINFO_VECTOR from .contract_vectors.ledger import LEDGER_VECTOR +from .contract_vectors.move import MOVE_VECTOR from .contract_vectors.send import SEND_VECTOR from .contract_vectors.transaction import TRANSACTION_VECTOR from .contract_vectors.utxo import UTXO_VECTOR @@ -37,7 +40,7 @@ DEFAULT_PARAMS as DP, ) -UNITTEST_VECTOR_ = GETTXINFO_VECTOR +# UNITTEST_VECTOR = ATTACH_VECTOR UNITTEST_VECTOR = ( FAIRMINTER_VECTOR @@ -49,6 +52,9 @@ | GAS_VECTOR | TRANSACTION_VECTOR | GETTXINFO_VECTOR + | MOVE_VECTOR + | ATTACH_VECTOR + | DETACH_VECTOR | { "bet": { "validate": [ diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 796e30db28..d78eda756b 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": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", "difficulty": 545259519, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", - "block_time": 1730406255, - "previous_block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", + "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_time": 1730457447, + "previous_block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", "difficulty": 545259519, - "ledger_hash": "d4ce0b9663ffc7961b889b2212e125f1916a9a3308be5ce3612b795aae79b7ef", - "txlist_hash": "cd8ef9a5b728358bc1e49c13423fab5fb1a804fe1840a8a1ff460724a8988914", - "messages_hash": "2af09ce52de0341d6f5c0d7123b65a3e6d4d8c63b8e1df8de88d12c8b8500d8f", + "ledger_hash": "2fff20569219a81a59899e170650366c96247ec12c3b5121f4b8d20ddb7c4706", + "txlist_hash": "05716db12029c00cb901b46870658444bf5900442142998fc170041a5fb830b7", + "messages_hash": "95eec276fe6404ec172045d3c281e710b1474ce5b13e98de274eee9d30204d62", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", - "block_time": 1730406251, - "previous_block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", + "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_time": 1730457443, + "previous_block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", "difficulty": 545259519, - "ledger_hash": "7c2efb0199e521f8f8afb2d8bd297b5537a2f65f2998d13311c9c8ec4cccdd3a", - "txlist_hash": "72ab85e444eabc4bd6e7c2cb0d2df438ec16ac03dd4a3374abcc67170e7cb83e", - "messages_hash": "6661decf322d55e2f41d5b12d85d7384520e75ec1a1c539137a0af99f6877717", + "ledger_hash": "2a6fd2bc1f5d63c18e3866f1dd8f3abebef51ef1afbae985c8ca7cb087d2ff49", + "txlist_hash": "44d86cb88dd54394494418814bee2c2c66440474371601e178c87d65de7f91db", + "messages_hash": "3673ff2b8e2fc66e9255712bf3d23fd318c06fc17ad11f3f5850959a282bc7d2", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", - "block_time": 1730406238, - "previous_block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", + "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", + "block_time": 1730457439, + "previous_block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", "difficulty": 545259519, - "ledger_hash": "a2b0ad8247a5e0ac9b7a77f62e53636fbd291b52b6abb3a365411be191b628bd", - "txlist_hash": "0029ad27750de58fd2ac1ea9aeb2e10a7b1ab66af05e6614df5f7057f064ce50", - "messages_hash": "cc5c2fd236b9f3d4670de7ea68a077f22424799fd8fdd528d2b5ba0ab18f0fb8", + "ledger_hash": "14c1eb0bd8a0572bfa8bbe96f352902e414888d9fdef3576afee22ad8d1a70b5", + "txlist_hash": "21cc8c792273fa4947dba77a4ae285630379b12e1f16f933214ecdf360f07269", + "messages_hash": "042c05931e78d1f941c75d5ab50e1b4680c0545ccd6b16280d28185c02ece61a", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", - "block_time": 1730406233, - "previous_block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", + "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_time": 1730457436, + "previous_block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", "difficulty": 545259519, - "ledger_hash": "896005f69ce0542be870a9bc8dd5c2f61235184519e872912387a5bdae84ede7", - "txlist_hash": "834ec0b0c35273eaf22b38a9811739cb6d7a36d6dcd872056cd0f68164c414e3", - "messages_hash": "743eb12d7456b0288b57286aa5afc73e3f8b8cb9f386dd3237ce95cc23ef9273", + "ledger_hash": "7b0c04257b525c411e8c6d80975408acedc07d4e4f9af55cb7cdccd8b073b547", + "txlist_hash": "cfcf6455730258aada3387a3f997c5ad679cde65d8fdb916106f5a58b83a7f2d", + "messages_hash": "47e5f28331dc194b45b3af0ea7fe5e43744ff2509a860af7fd043d6c1ee080f0", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", "difficulty": 545259519, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", "difficulty": 545259519, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 704, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 703, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" } ], "next_cursor": 701, @@ -256,16 +256,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 700, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" }, { "event_index": 697, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544" + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "object_id": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "block_index": 211, "confirmed": true, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "status": "valid", "confirmed": true, - "block_time": 1730406175 + "block_time": 1730457355 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "block_index": 196, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730406186, + "block_time": 1730457366, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 77, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4", - "block_time": 1730406255, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_time": 1730457447, + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe:1 2 ", + "utxos_info": " d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, @@ -816,53 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d3a5d8d776e316f54297e96a578b0e38c6a7ef5039c2be4c4c30b6c839bbb0d0", + "hash": "06bbccb4d066b5df3e0119f773372a9eb1918cdc30f9c697a69942741e41f785", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d29dd6da0578bafa05e58cc85383cff4de4619a767b08ab90119914aa3643ebe", + "hash": "fd875c233d0e6f69d694d9c9cff91437fb4ad4c1215f79c8b9d21544a410de5f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "551850045ca30b728f972a89208731682ad499a34d6a93d2af82d64c0f3e19ae", + "hash": "c61103f6f4174230e88d498f47cb81701c0a8ad806503f4a56eec0ac870db2ba", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5413f5d36a74d5fbddbc56dd947373a10e2b66270db8a0f5fccb10609347c942", + "hash": "dc8921e705508e0c751083891f4f366e82c5f11500870bea15437a46a06c6a43", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c61a45a32b82ccd62ee69afe65cd9156ba4d136b4ae6757e9b48392478111ec0", + "hash": "edfa189fca641c8b80cde3cae7f51847b333729217d33721a85c627c0b794023", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "40875ad563852d749770517cec8b8650082cc6261440e21dacc3eb5e416691fa", + "hash": "85b524b6bb548fd880b46bc572167c87b236dd75e172184c0464172c46f7d984", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "5121020f2a3e01593e8c1560433c0e89fefbcbc5659f312532a00541343cbd81adf89b210234396e80d3a834cd9f513c0db1a6c8a69e9f1680d559e43b65a76df15e0d534a2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" + "script_pub_key": "512103514123c151eac86d9e5f99cf8bf3498611409b874da64363c298a31ad6ba8ede2102102c15e48b44826c3369848ac630089ab26f8c9512425d7f8b6cea4c382f48e52103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" }, { "value": 1000, - "script_pub_key": "5121020f2a3e01593e8c1560d07d3f4c5006e766f522879a9750e49a15960d140af62321021d85ee548fe326a832d4b110643aa09a3c84e00539f7b3d63eb774a324ab6b8c2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" + "script_pub_key": "512103514123c151eac86d9e91ccce8581f3ba618de232a1705dc43281cfa02e3f9c2421036d9295c9ee36e31cc0549875179b2809fcf85f7e60683c922213d47bb78e34a82103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" }, { "value": 1000, - "script_pub_key": "5121032e2a3e01593e8c1560403c0d09763cee4f69478d2f0f44cff13b1e1414ce228221031d85ee548fe32682276124a5d8f0a09a3c84e00539fd36bb5bda1b90a4ab6bdf2103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853ae" + "script_pub_key": "512103704123c151eac86d9e5c99cc0b045303224d56d6e2ae49ef59af47b92efb486021026d9295c9ee36e336d5e10dc0ab512809fcf85f7e6062b9ff477ebb48378e34d92103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" }, { "value": 29999987000, - "script_pub_key": "001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e" + "script_pub_key": "0014d60c806085c49fc50e0ad53c52888227322c5b49" } ], "vtxinwit": [ - "30440220310f4c6dfc17b2e1a557200578a74e38deaea2bc9a20b8fd3094a81c88683d4902205d986a6b70503dcb055ce8e758b0aaa39f9b839bbb8b035bac4af6be93c18b4701", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "304402204112cff32842a7136316bc88f184b9d5e0c456f8a1f5a813d698011eef3328a702204cc4f653207db7196acbea2163c4eadfe78d6c6de212e665128156d76575b12301", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "304402203fba96da04ee2225340c5bfe59fd914c775b8712b7a9fceb282022626d2cef40022017e707dec6d08a1e4a9681755dfed622714afa60c73eb755cd73524c71328f3601", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "304402203b094b12e2847292b2772ced709f988625cb1fb481cb6e5fc8ac1eb0d482476f0220197720fb83a9da39867ba32c6c1f261416441fdc6032b07d8c4e895106af24f501", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "30440220355395316c2aec05b55ed3f5a8dbc481d70514776bb71440f67c0c9185954d13022049dbb52a4e10802f21dc040fb6bca693d03414422a50e6ab0ef6fb05f498d64c01", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98", - "30440220584b58ca464d6773d95aea04d85ffcd23b7b0463fda9bfa4c42c521d5efdc20f02205ef2912f1dd27fca67c5ad2bdba2fda83f2600b9d9412b69de643ac60f94b89201", - "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" + "30440220310ad7418e7f580961e1b61f632bfac834f6fd926485da63aa16daac334e542f02205f5684d1a27d04880d94de6b68081c32dec9daeda40df0ffa2001184f9daf0f801", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "304402207ba9023435f437248127d85a40f65f3540190ba74f6086136091d1fd493ce25c02205ea22e12094fd55187248d6c4f21a27d7aa27286db584bc250f59f6dead4008501", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "3044022029591fe9fbe78412eae31260adc34a1ba0781fa435d991929c24879b6d2acaa902203311fc4618f75fd61f11c80ba1fee768127411262c0d9a0ded3bb93598b5c09301", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "304402206118dde409f12028101065f084e37e48185ac7031d9f0d40eedf29561418af0c0220696ce5be912bd981b8dcae440318badb91acb059b4993c3c6d14aec3d9b016b501", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "3044022060b6ac7d55777dcd0c589c2f6ec9cc8c3501bbc59f3f6443d552f13301b4c70702201b60eb557a808cd4a2fe661ec63ac22135c44c3aa7c8481f3ac93a9811d957b501", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", + "3044022058944b1bceaf9f682b7ac1dbf9e6d558cbd5fd44398511e022003be90947d0b302205fa199a16a5b1d09776820a88139b3b7d157029ec277766011f4dc829c2b75f801", + "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" ], "lock_time": 0, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", - "tx_id": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b" + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_id": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -926,7 +926,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -946,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8c3fcb17520b40581c82d705b078448daf5c16a1a33a1e0f8e25347233acaa6a", + "hash": "158e21e1614657b8446a4c55624256171696a9b9b4d2bee26e91c4127d48ef9e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ef86b108e3fa4bb79fc812afb3931efb148608ac5f6318d312038c9790f1a80d5f4c21a34a2673745e7b44b3e67f4" + "script_pub_key": "6a2e3625f8f87e0b73dfd398fe4134da300541a4af074649d3a8dade81065c418398a18bcafb2994dc5c7e293734fd34" }, { "value": 4949930546, - "script_pub_key": "00143e7d7661faa6389041324526ba09299c650ab598" + "script_pub_key": "0014cc1251040fa17ccd55028e8520b943c0b4e443de" } ], "vtxinwit": [ - "30440220160d1cd8a598a22c9fbc53a9a7ce01416562b5e8e5b32e618dfcc45b0e18705b0220246d2a42ece58201c2fdb9b10d693646bb6395631d1b12f32f37275e947aa75101", - "0337f1ce2032d6c7f3f1689f7ebf8a604b3dab011052a558e91b4b675031599c38" + "30440220517fc5d95f27327b4c3ed23d596e4473258bb7a333047908ee2776ea7c277f56022011bffdad88ff6f252b104472998acf65dbc4195ba0523bd36359776398d1f6af01", + "02acf53d1a6edc80f820009903765c0e3a9441ca7559c694c1df2b913418fcbeb3" ], "lock_time": 0, - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", - "tx_id": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9" + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_id": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", - "block_time": 1730406268, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_time": 1730457461, + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 704, @@ -1083,14 +1083,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 703, @@ -1112,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 701, @@ -1161,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "msg_index": 1, "quantity": 2000000000, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", "status": "valid", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 700, @@ -1193,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 704, @@ -1207,14 +1207,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 703, @@ -1236,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 701, @@ -1285,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "msg_index": 1, "quantity": 2000000000, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", "status": "valid", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 700, @@ -1314,10 +1314,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1338,10 @@ }, { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1369,27 +1369,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1425,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 700, @@ -1456,12 +1456,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 697, @@ -1483,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": null, @@ -1512,16 +1512,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 700, @@ -1543,12 +1543,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 697, @@ -1570,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": null, @@ -1600,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1621,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1642,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1663,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1684,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1705,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1729,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_hash": "576dc1f4fbfded5b60ae411d3776b4a8d2bd65864193c4dc58ea56e353b62821", - "block_time": 1730406251, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_time": 1730457443, + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad:0 4 ", + "utxos_info": " 8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1762,7 +1762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1781,17 +1781,17 @@ }, { "tx_index": 75, - "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "block_index": 208, - "block_hash": "59a9cfb0e0d9e66ce63edb0b4c1a69d0571add4846995e23ee6ec1c394a57244", - "block_time": 1730406238, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", + "block_time": 1730457439, + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab598c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443dec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d:0 4 ", + "utxos_info": " 534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1814,7 +1814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1833,17 +1833,17 @@ }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", - "block_time": 1730406233, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_time": 1730457436, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", + "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1851,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1866,7 +1866,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1885,17 +1885,17 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", - "block_time": 1730406229, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", + "block_time": 1730457421, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", + "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1903,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1918,7 +1918,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1937,17 +1937,17 @@ }, { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", - "block_time": 1730406226, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", + "block_time": 1730457408, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "supported": true, - "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", + "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1955,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -1985,20 +1985,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "tx0_index": 60, - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx1_index": 55, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2017,38 +2017,38 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "block_time": 1730406255 + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_time": 1730457447 }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730406255, + "block_time": 1730457447, "asset_info": { "divisible": true, "asset_longname": null, @@ -2058,9 +2058,9 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 675, @@ -2068,15 +2068,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -2086,9 +2086,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_time": 1730406251 + "block_time": 1730457443 } ], "next_cursor": 674, @@ -2097,17 +2097,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "quantity": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, "asset_info": { "divisible": true, @@ -2118,22 +2118,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2143,22 +2143,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "block_index": 211, - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,30 +2168,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730406273.1801424, + "block_time": 1730457465.690188, "btc_amount": 0, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "destination": "", "fee": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, - "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", + "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -2205,7 +2205,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -2214,7 +2214,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2222,14 +2222,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2237,14 +2237,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2252,14 +2252,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2274,7 +2274,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2282,7 +2282,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2295,7 +2295,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2317,16 +2317,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "asset_info": { "divisible": true, "asset_longname": null, @@ -2338,16 +2338,16 @@ }, { "block_index": 209, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -2359,16 +2359,16 @@ }, { "block_index": 208, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,16 +2380,16 @@ }, { "block_index": 208, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -2401,20 +2401,20 @@ }, { "block_index": 204, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "event": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2428,16 +2428,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -2449,20 +2449,20 @@ }, { "block_index": 207, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2470,16 +2470,16 @@ }, { "block_index": 206, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -2491,20 +2491,20 @@ }, { "block_index": 206, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2512,20 +2512,20 @@ }, { "block_index": 205, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "event": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406226, + "block_time": 1730457408, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2544,9 +2544,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", + "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", "block_index": 137, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2554,7 +2554,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405937, + "block_time": 1730457142, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2565,14 +2565,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "94575e0c1ffcf9180229ea6828eb6a719c203f0d760e7bdff30509b1f2f281ee", + "tx_hash": "dda9d0d032938ede56efc9592fd09e515da5e6436115895713f9ba45164c9ee7", "block_index": 112, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730405845, + "block_time": 1730457039, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2584,10 +2584,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2595,7 +2595,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -2608,10 +2608,10 @@ }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2619,11 +2619,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2632,10 +2632,10 @@ }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2643,11 +2643,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2656,10 +2656,10 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2667,7 +2667,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -2680,10 +2680,10 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2691,11 +2691,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2710,10 +2710,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "96c1daa333b0ad90a1465c6d9f2a17e8a37478832ebf5370a833a88a551d5758", + "tx_hash": "2727090cac725438d1aa522506a76c181a4c331822e1f7f156a4b05dd31197c3", "block_index": 151, - "source": "9295e8eded321451d746577f581fdc93a3aaa6dd62e6d1af4fb807c42337baed:0", - "destination": "bcrt1qf5s9au0eekchakfcy53529spkyazslau03c7e8", + "source": "458c7871c0ec7a75bb2c666bcb56e1e88c5b50b362ffbd946f9e369642d6149a:0", + "destination": "bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2721,11 +2721,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730405999, + "block_time": 1730457194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2740,10 +2740,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2751,11 +2751,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2764,10 +2764,10 @@ }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2775,11 +2775,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2788,10 +2788,10 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2799,11 +2799,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2812,10 +2812,10 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2823,11 +2823,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2836,10 +2836,10 @@ }, { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2847,11 +2847,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406226, + "block_time": 1730457408, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2871,9 +2871,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2882,7 +2882,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2892,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -2908,9 +2908,9 @@ }, { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2919,7 +2919,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2929,11 +2929,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -2950,9 +2950,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2971,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -2991,19 +2991,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", + "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3011,7 +3011,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3026,11 +3026,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -3040,19 +3040,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3060,7 +3060,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3075,7 +3075,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -3089,19 +3089,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3109,7 +3109,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3124,7 +3124,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -3144,19 +3144,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", + "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3164,7 +3164,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3179,11 +3179,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -3193,19 +3193,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3213,7 +3213,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3228,7 +3228,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -3242,19 +3242,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3262,7 +3262,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3277,7 +3277,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -3297,19 +3297,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3317,7 +3317,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3332,7 +3332,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -3346,19 +3346,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3366,7 +3366,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3381,7 +3381,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -3401,19 +3401,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3421,7 +3421,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3436,7 +3436,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -3450,19 +3450,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3470,7 +3470,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3485,7 +3485,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -3504,16 +3504,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -3524,14 +3524,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -3546,20 +3546,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", + "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -3574,20 +3574,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406054, + "block_time": 1730457245, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", + "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -3602,20 +3602,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730406049, + "block_time": 1730457241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", + "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -3630,20 +3630,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406046, + "block_time": 1730457227, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "fd736247a4657306233a79e8401189106070d296996d407012c76dea85b77d37", + "tx_hash": "14a56e3ad6eaff3a17ff25aab4c9475640a5802be030a6fb1579d2a069db9b2b", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -3658,7 +3658,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406032, + "block_time": 1730457223, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3672,8 +3672,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -3681,16 +3681,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -3698,16 +3698,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -3715,16 +3715,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 40, @@ -3732,16 +3732,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730405930, - "last_issuance_block_time": 1730405934, + "first_issuance_block_time": 1730457133, + "last_issuance_block_time": 1730457137, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 19, @@ -3749,8 +3749,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730405916, - "last_issuance_block_time": 1730405926, + "first_issuance_block_time": 1730457108, + "last_issuance_block_time": 1730457129, "supply_normalized": "0.00000019" } ], @@ -3763,8 +3763,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -3772,16 +3772,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -3789,16 +3789,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -3806,16 +3806,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 40, @@ -3823,16 +3823,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730405930, - "last_issuance_block_time": 1730405934, + "first_issuance_block_time": 1730457133, + "last_issuance_block_time": 1730457137, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 19, @@ -3840,8 +3840,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730405916, - "last_issuance_block_time": 1730405926, + "first_issuance_block_time": 1730457108, + "last_issuance_block_time": 1730457129, "supply_normalized": "0.00000019" } ], @@ -3854,8 +3854,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -3863,16 +3863,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -3880,16 +3880,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -3897,16 +3897,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 40, @@ -3914,16 +3914,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730405930, - "last_issuance_block_time": 1730405934, + "first_issuance_block_time": 1730457133, + "last_issuance_block_time": 1730457137, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 19, @@ -3931,8 +3931,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730405916, - "last_issuance_block_time": 1730405926, + "first_issuance_block_time": 1730457108, + "last_issuance_block_time": 1730457129, "supply_normalized": "0.00000019" } ], @@ -3943,17 +3943,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "block_hash": "2b00e759a7ac2ad10b3dd6313237519531ab91d1d7c4611acbeba42d6dd6460e", - "block_time": 1730406233, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_time": 1730457436, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b:0 4 ", + "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3961,14 +3961,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -3976,7 +3976,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3995,17 +3995,17 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "block_hash": "65a29e1d63a9f9056f711d81015d9ab0cd2868f321356fd47ef36667b740ecc3", - "block_time": 1730406229, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", + "block_time": 1730457421, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808847258a0cd8bc0a3db0e1db2449d01d63da29bc80d45c4b124fb83018a86956683ca21bf685eca4d2803e7d7661faa6389041324526ba09299c650ab59888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800:0 4 ", + "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4013,14 +4013,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4028,7 +4028,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4047,17 +4047,17 @@ }, { "tx_index": 72, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_hash": "0cc859a7650aae94ee32bf93dc8a158dc4c07ee19bc8d9ea86e750dfa94d7701", - "block_time": 1730406226, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", + "block_time": 1730457408, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "supported": true, - "utxos_info": " b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00:1 2 ", + "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4065,12 +4065,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4081,17 +4081,17 @@ }, { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_hash": "0ad9c63277873202959baabc06121e31a5c13f9689a04b505e1b9115622c0e19", - "block_time": 1730406221, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "7d7912291607a8552a6a8592e2db47c4dc41b216211421ca5bbd965f00b472d5", + "block_time": 1730457404, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070:1 2 ", + "utxos_info": " d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4116,17 +4116,17 @@ }, { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 197, - "block_hash": "45c183e961a25d45c59f8042057a2e8746cb030855a118f9568e4dc31d644764", - "block_time": 1730406190, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "block_hash": "2b1db078f20aa241fc807343f3d11191e0eff2bbc4bfb94f91018c739609190a", + "block_time": 1730457370, + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f:1 2 ", + "utxos_info": " 5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4143,7 +4143,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4161,20 +4161,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4196,9 +4196,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4213,7 +4213,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4239,9 +4239,9 @@ }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4256,7 +4256,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4282,9 +4282,9 @@ }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4299,7 +4299,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4325,9 +4325,9 @@ }, { "tx_index": 60, - "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "block_index": 210, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4342,7 +4342,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4373,10 +4373,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4401,7 +4401,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4410,10 +4410,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4438,7 +4438,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730405930, + "block_time": 1730457133, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4450,10 +4450,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4478,7 +4478,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730405916, + "block_time": 1730457108, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4490,10 +4490,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "tx_index": 14, "block_index": 130, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4518,7 +4518,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730405912, + "block_time": 1730457105, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4530,10 +4530,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4558,7 +4558,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4576,22 +4576,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4600,22 +4600,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", + "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405926, + "block_time": 1730457129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4624,22 +4624,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", + "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405923, + "block_time": 1730457116, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4648,22 +4648,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", + "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405919, + "block_time": 1730457112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4672,22 +4672,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2b7563fabb8ea9da7663f9ced59d2ac6c2db11e3a18555ac78b84322ef7c2461", + "tx_hash": "d267eba5af018854aecc34f00562ca5f2e69fa701407af15efd240f836a314e8", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405900, + "block_time": 1730457093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4696,22 +4696,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4758,8 +4758,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset_info": { "divisible": true, "asset_longname": null, @@ -4772,12 +4772,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4793,7 +4793,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4805,7 +4805,7 @@ "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "020000000001015e8dadefd772a42f70ae7475543f39d868484351995d278a0dfed11ad53111bd0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0200000000000000002b6a291ed47a6584c26b53ee707e2eede672b68e04374afe6fdfe7af80978b906a6796f19b3f9c0af9dbd2da82ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "0200000000010153a965d409550a2acc8b6011e47dbf1074d3ce029b48457f4ea14db7cb2762d300000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff0200000000000000002b6a29bbb9b1716dfd9a5ad70ad3416cab5e0653b2cfca8807f765680605fb4a8cd0fc102f8334ad5dc60d5482ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4823,23 +4823,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" }, "name": "btcpay", - "data": "434e5452505254590b6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd84224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "data": "434e5452505254590b9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f258f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "020000000001016de2496a8d83c38bc4b95489d327ab1a4fbdbbc13a0c78f15f83ff226dfc8fab0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e00000000000000004b6a4976141b0fbe7328898718ca76b4a0756a3174c416e7aae171d2f6a2339004fd57306769044e2df1193147bdefeb3b5f8ae3f0dc49dd5cf6c1c55697a51147e150c65f3eaf505a3cac4d77a7052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101a656b40a65a92a88821a7cc1d0b27f754af89ea58ad35456cbc894f38859d9c100000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e803000000000000160014d60c806085c49fc50e0ad53c52888227322c5b4900000000000000004b6a492e08186aebe98a97ce2b7ae14ccf514405c01b52c30b16152225067c3bc4e46134d23ebe803b88d9a83c9928e2170b71190f06df459892bae25646b263705bc37b8d029db091c6d1c577a7052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "order_match_id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "status": "valid" } } @@ -4848,7 +4848,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 1000, "overburn": false }, @@ -4858,27 +4858,27 @@ "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "020000000001010e9b4090a40531098c198d89ea92aa3546a5b57aeed32e58809cd0e532391ea70000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000" + "rawtransaction": "020000000001019306e5967e51ac38e520c7c531b47a1db2353cd50a53aca2574318b860dc648b00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" }, "name": "cancel", - "data": "434e5452505254594625da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", - "btc_in": 4949896528, + "data": "434e54525052545946d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "btc_in": 4949918908, "btc_out": 0, - "btc_change": 4949882322, + "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "02000000000101fe505a7eb491a7183aca2450a64372d4268de4b3fb596eeec20b9ed7ea9bda2501000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a8ffffffff0200000000000000002b6a29ffc64cedeb35544d6e96ef3a2ee718afee555ab19ab9739c77f2592740b2ac14042a4e62ae4b72b948d235092701000000160014077c85b19f23165a3dde64065a9a8bb5ef0a33a802000000000000", + "rawtransaction": "020000000001010ba33dc0951d6f04abb181fe92946f8c1d946591cb61406fd110078b6626bdd00100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06cffffffff0200000000000000002b6a29f291a220df835c5406a98ea6cb5eeca4578ab882f52606c945246fccfeea07a3392b39ba6bc6a13beb3e8d09270100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06c02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "status": "valid" } } @@ -4887,7 +4887,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4906,7 +4906,7 @@ "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101b8d7f271a59dff34bdb09b438bcece6246a7a58789371a52d0cc9bbd2de0433b0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000226a20cb959a0ab9047972db5c9479f1a7c138d5b7d83daaf250a9b249a0f7e5ff11c892bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101ac7da7095f378af7e99845959451e10196dc3e0a9163b60d23e7bd8fd383d77e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000226a20de2f052628860baeb8a229fcceb70b7727e5d15d49fc433ce3a7370bbeef156892bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4922,7 +4922,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4946,7 +4946,7 @@ "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "0200000000010144c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9020000001600145e5262049de2f0df536d6112a3107d5ef284384bffffffff0200000000000000002c6a2ad506e5d390aba83f230e5384acc629dd9980d3d0f67cccb049acc599e7e61988c1c478e674ece915bb3832dd0827010000001600145e5262049de2f0df536d6112a3107d5ef284384b02000000000000", + "rawtransaction": "02000000000101779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d96550200000016001420c62b4494792dcc3a836352dd61cdabfef8e9d8ffffffff0200000000000000002c6a2a6ee41bc054780a03880d02d242130c712c585ba0a2d1c6cbef1e3aadf672e8815382e3be1d1456d1d8c432dd08270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4968,14 +4968,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -4994,7 +4994,7 @@ "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101851e8c9d07ac05388df23a3194a5bef4cbefb9e69874cd1fc4011d7023471d940000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21395b1f6a91b676fad6dbe408a5c9b8236d7f8a77346ec92d198ff1c7367f6bd39657bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101e078c3779400ed6a6a959a1a79d9c6997efc7c57a25aa248c57a7e48300f9ac800000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a216d61776c2666e4387d737b5b9181d4abb99b8990b82704bb8f19befe2d891e591757bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5011,10 +5011,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "transfer_destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "lock": false, "reset": false, @@ -5027,7 +5027,7 @@ "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101ea6e2cfa2896c07bdba67c07f9ee0e8a62336050de30bfb0a37684f0a238b3bb0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000236a2118c32d6b011d6cb7494cea4b914abf59d55c38a8b6ce8d0d945ac21ceac11eed1f69b2052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101df5ccaac5aec03ef74c577999dfba6f1e18b23abb98002de2ddede842523deda00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000236a21f68460d38bcb91b083672a5cfc6c501839b942c905be88fbcce7f62b5ecabd67d569b2052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5052,16 +5052,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", 1 ], [ "MPMASSET", - "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", 2 ] ], @@ -5069,26 +5069,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028089c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e808847258a0cd8bc0a3db0e1db2449d01d63da29bc40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d60c806085c49fc50e0ad53c52888227322c5b4980f79a85330dcd51af085ea7f01c8fda7041c67dbe40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "02000000000104a483aa729168b569950b80d77888ce81f2d17952a60b4695c87d6304c50f3e640000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff1cfb7ca28b20bbef6d741ef6effcd4afde9bd1964cac9cb8679d666a23858f0e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff0ef812af81b091211c39e6a3238e1850ba3d734afb131c6bd7fc714a44ea6f3e0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff29757e6db0f187c4ecd3357bdc91ee7a03ff47cd38b6855faa9b9c5aaed138e80000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03e80300000000000069512103a0a348530d1605a1e5c212d0c41b57dcc8af119295002a371d295d947b17d0442102c24dde1a6521b8af103bbd053ac5cfb02a42c5184faca4d2699b9b03f51e98b62103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aee80300000000000069512102bfa348530d1605a1e51112d244929f927123373029f1ce88e45eab4da4a312fa21026cd35f92220432a3c887b7388a2414946392d87b95851892699b9ee095965c002103f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac9853aeb8f216a80400000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000002000002000002000000000000", + "rawtransaction": "020000000001040a733e9124ac5e8603c19f7325a225d26d2b0990fb23bfd624c1f87c4f40e87f00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7266fca9e5f6baa9453c234454406f6629786a3dd4ad79e064b762e73d973a2000000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7df073294a46a2250cfd46e9c09c4eb47d61f6d7947cdbf461103eae1826fb7c00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffffcbbad1fde15099ba395dcb23178bc8c75978c50859437709174349a607f7e52e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e80300000000000069512102db4fcc1f6839e6777bba8106bef0d29ae2cbac45af16fc4d80326e073f62006f210284004c23cd46599f13c3bed27e709d9ce86596fc6de0c29b9b4b4401f5ddb4d12103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103c44fcc1f6839e6777b6981043e26de1a826a68da6a18f698bc64e68518502c1e2102df49cdd457c36a92de9211da20d76d8067bfe6bdab9d7cdb9b4b41e2955570a42103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aeb8f216a804000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5100,7 +5100,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5117,7 +5117,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5131,7 +5131,7 @@ "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101d75f48deb96882cdce86578209818cdb3c2e8ca23fc1c7291dbea3c7609569550000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000356a3324f409bade926749f4bebfb43f97ef030e3b28f839eeb435ca88f848be84b7d5b3fac006ea0927d1c4a6b1d2d680a3fe516ecd37b8052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101d1b8b18532596a0e5b6ecd464bc6acebba323ba5197b223c8ab7e5607785ef8600000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000356a33901f75d51d4fe62503d92bac7343d27ae664de8c7ac14ec2249a9748b8a151749610e289ced462c7d7ca584c1633c4d790c4e237b8052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5153,8 +5153,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5170,19 +5170,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808847258a0cd8bc0a3db0e1db2449d01d63da29bc", + "data": "434e54525052545902000000000000000100000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "02000000000101f65d910f19d7f8a53edcc2cf5fa708d8efc5b2480460ff18988d5b45793a9e830000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000306a2eef0aa01f8a6c172ee628e06babf8eea832f2cb402c5edaa9a4d81855808f252cc7f7d91cc14e4c6b83e10959ca435cb9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001014c51627eef5104002dcc1fd1e8677d60350ee7f48182880da49c9a9fdcbfdb6e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000306a2e22f5e2f27fd4e63c9aaa0ac8b58cbee6e81726be1ed6d14c04eed50a7aabff8719d6ff22a383f14d15346aea85ed5cb9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "quantity_normalized": "0.00001000" } @@ -5192,23 +5192,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808847258a0cd8bc0a3db0e1db2449d01d63da29bc07ffff", + "data": "434e5452505254590480f79a85330dcd51af085ea7f01c8fda7041c67dbe07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101945b7a46652dff712689fd6fe1ccbe51ceabbff6dd73f36e3ef2fd17735756960000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000236a21bb5b1632856e2c38b48b0aaf7e94274bf4d0477e40412d3191d6feae90070a313f57bc052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001014a4e16c95f136179216ad70a3bca2c703f3abbdc185339e124f760b0e710162700000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a21361a816cbd2b097162e660245175148a745c149b5e148e9e73a7c6b9abae34e3fb57bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "flags": 7, "memo": "ffff" } @@ -5218,8 +5218,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "quantity": 1000 }, "name": "dispense", @@ -5228,7 +5228,7 @@ "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "02000000000101adb758936db4f7ed50786161464d4082a86dd5ffc87e92031012b44ed57ebef7030000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bcffffffff03e8030000000000001600143e7d7661faa6389041324526ba09299c650ab59800000000000000000c6a0a9787813ebb991a086da18a250827010000001600148847258a0cd8bc0a3db0e1db2449d01d63da29bc02000000000000", + "rawtransaction": "020000000001010535e7b336799fb1a0dc190a91668122df1509912cb99d362de9c9648fea1d8d03000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbeffffffff03e803000000000000160014cc1251040fa17ccd55028e8520b943c0b4e443de00000000000000000c6a0a3a29e0bf0b39bde6e3bd8a25082701000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbe02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5241,7 +5241,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5272,7 +5272,7 @@ "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "02000000000101193a2c693348736ffa2753b9e4d38478166341c63d9bd1841245547b2e95fd050000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000316a2fed8000fbedd5138d6e2624e330346fffeb71c735bff59d058dc38e6dbfb6e29124342e1147f60ba628f711eb180bb321b9052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001015da08d1dac44d3621c5eb212a51003f8a252990cc407f6ff2077a3ec08b221d200000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000316a2f356977210af8a1039611bcbe16d8b3de56128f9397f2b4a73d1940559203a8db236ae6863339bd8c685e9a7c710fd221b9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5307,13 +5307,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5325,7 +5325,7 @@ "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "0200000000010184b1483d8197971cb9b69408599da8871d99fb5e7d71110708cb868ebe062fec0000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff020000000000000000166a14c984402cc7424ad7db1331b2d9e0cb83f1341ec352bf052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "02000000000101a65bf655e86e2b404c216632cd4878ffd434b2ed80a264589551314f422e667400000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000166a14c1e2aa8f0b3ed5aba33ac66798d2136fed07eacf52bf052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5343,7 +5343,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5362,7 +5362,7 @@ "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "0200000000010184384aeb3e8356ccfd9f558a2a9e85f61d825d148ab5837c92e977d4a4ad13f00000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9effffffff03220200000000000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e0000000000000000146a12446e9de73946781ac4e3a09fb3ca5e0c5000dab5052a0100000016001489c84eb9a826a2bcf1e4bff973f6d9dfb4c2ae9e02000000000000", + "rawtransaction": "020000000001011dbc604ce7e37a1acc31f6e3c06de97a71c06c4f8013409f6a4332e478ee333500000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000146a12bb0cafd2f03b1778540315a0ee0efd4196f6dab5052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5378,21 +5378,21 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" + "source": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" }, "name": "detach", - "data": "434e5452505254596662637274317133387979617764677936337465753079686c756838616b656d3736763974353774677475356a", + "data": "434e545250525459666263727431713663786771637939636a30753272733236353739397a797a7975657a636b3666733630366d6c", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "0200000000010244c5b6bba700c80f8156332362917213e1af60ec6d7b230eff5fef0821d2b6d9000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dfffffffffcb7b36b2a6f61fd13996cc7c49f0ee2b92261b6422f18aa8d3dcbf6f2189ad2010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16dffffffff020000000000000000376a35d506e5d390aba83f496c30f6d8f758eea0f9aab18118abca979fb1fc92d660e345b110de15878c78e80e1cd4f9c9be0a253ede4908772c0a27010000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d02000002000000000000", + "rawtransaction": "02000000000102779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d965500000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff689ebd6d6f85a36b3b710a59ab65505a5e63804b5f13640cdf1aa7b2af77110401000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff020000000000000000376a356ee41bc054780a03e26f61a036227d474e203cd1c1a8ffab6d2e4f9f8401dab48eb5da87676d2ca8c9a1a3ed75657df5bf22df0044772c0a2701000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86702000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j" + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" } } } @@ -5403,8 +5403,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -5412,16 +5412,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730406221, - "last_issuance_block_time": 1730406221, + "first_issuance_block_time": 1730457404, + "last_issuance_block_time": 1730457404, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "owner": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "owner": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false, "supply": 100000000000, @@ -5429,16 +5429,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730406198, - "last_issuance_block_time": 1730406198, + "first_issuance_block_time": 1730457376, + "last_issuance_block_time": 1730457376, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -5446,16 +5446,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730406032, - "last_issuance_block_time": 1730406049, + "first_issuance_block_time": 1730457223, + "last_issuance_block_time": 1730457241, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "owner": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "issuer": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "owner": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "divisible": true, "locked": false, "supply": 100000000000, @@ -5463,16 +5463,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730406027, - "last_issuance_block_time": 1730406027, + "first_issuance_block_time": 1730457219, + "last_issuance_block_time": 1730457219, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 100000000000, @@ -5480,8 +5480,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730405989, - "last_issuance_block_time": 1730405989, + "first_issuance_block_time": 1730457182, + "last_issuance_block_time": 1730457182, "supply_normalized": "1000.00000000" } ], @@ -5493,8 +5493,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "owner": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false, "supply": 10000000000, @@ -5502,15 +5502,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730405882, - "last_issuance_block_time": 1730405893, + "first_issuance_block_time": 1730457074, + "last_issuance_block_time": 1730457086, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5518,14 +5518,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5533,7 +5533,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5546,7 +5546,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5568,9 +5568,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5585,7 +5585,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5611,9 +5611,9 @@ }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5628,7 +5628,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5654,9 +5654,9 @@ }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5671,7 +5671,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5697,9 +5697,9 @@ }, { "tx_index": 60, - "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "block_index": 210, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5714,7 +5714,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5740,9 +5740,9 @@ }, { "tx_index": 53, - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5757,7 +5757,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5788,13 +5788,13 @@ "/v2/assets//matches": { "result": [ { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5808,7 +5808,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5828,13 +5828,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 53, - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5848,7 +5848,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5868,13 +5868,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", "tx0_index": 50, - "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 51, - "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5888,7 +5888,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5908,13 +5908,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5928,7 +5928,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5955,20 +5955,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "event": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5976,20 +5976,20 @@ }, { "block_index": 125, - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", + "event": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -5997,20 +5997,20 @@ }, { "block_index": 124, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6018,20 +6018,20 @@ }, { "block_index": 124, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "event": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6043,16 +6043,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6070,12 +6070,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -6087,16 +6087,16 @@ }, { "block_index": 209, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -6108,16 +6108,16 @@ }, { "block_index": 208, - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -6129,16 +6129,16 @@ }, { "block_index": 207, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -6150,16 +6150,16 @@ }, { "block_index": 206, - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -6182,14 +6182,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", + "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6204,20 +6204,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6232,20 +6232,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6260,20 +6260,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -6288,7 +6288,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730405882, + "block_time": 1730457074, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6300,10 +6300,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6311,7 +6311,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -6324,10 +6324,10 @@ }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6335,7 +6335,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -6348,10 +6348,10 @@ }, { "tx_index": 75, - "tx_hash": "cd60eaf44e907c93524ddf82d7c18d10a8afe45011bb6aab978edf6e45be3b1d", + "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", "block_index": 208, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6359,7 +6359,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "asset_info": { "divisible": true, "asset_longname": null, @@ -6372,10 +6372,10 @@ }, { "tx_index": 74, - "tx_hash": "36f37043be0a3cace35716447176c02207b057760973d593741315af8f5e2a5b", + "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", "block_index": 207, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6383,7 +6383,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406233, + "block_time": 1730457436, "asset_info": { "divisible": true, "asset_longname": null, @@ -6396,10 +6396,10 @@ }, { "tx_index": 73, - "tx_hash": "1b12f2615890ffbef91a5d06ee7d12f4009ab809967fdb0adfc1a6f7ddf39800", + "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", "block_index": 206, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6407,7 +6407,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406229, + "block_time": 1730457421, "asset_info": { "divisible": true, "asset_longname": null, @@ -6426,9 +6426,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6437,7 +6437,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6447,7 +6447,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6463,9 +6463,9 @@ }, { "tx_index": 29, - "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", + "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", "block_index": 142, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6474,7 +6474,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6484,7 +6484,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405966, + "block_time": 1730457161, "asset_info": { "divisible": true, "asset_longname": null, @@ -6500,9 +6500,9 @@ }, { "tx_index": 30, - "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", + "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", "block_index": 150, - "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", + "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6510,10 +6510,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 0, - "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6521,7 +6521,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405996, + "block_time": 1730457189, "asset_info": { "divisible": true, "asset_longname": null, @@ -6537,18 +6537,18 @@ }, { "tx_index": 33, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6558,7 +6558,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -6579,9 +6579,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6590,7 +6590,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6600,7 +6600,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6628,7 +6628,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6636,7 +6636,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6645,7 +6645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6653,7 +6653,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6662,7 +6662,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6670,7 +6670,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6679,7 +6679,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6694,27 +6694,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6729,7 +6729,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -6743,27 +6743,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", + "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", "block_index": 147, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6778,7 +6778,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730405985, + "block_time": 1730457178, "asset_info": { "divisible": true, "asset_longname": null, @@ -6792,19 +6792,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6812,7 +6812,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6827,7 +6827,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6841,19 +6841,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6861,7 +6861,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6876,7 +6876,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6899,10 +6899,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6927,7 +6927,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6945,22 +6945,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "344f4fde6050ec7d32c2d607850cd562781a08d6d46f8ba0ca2ef0c3392b8fb0", + "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6969,22 +6969,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1", + "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", "tx_index": 12, "block_index": 124, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405889, + "block_time": 1730457081, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -6993,22 +6993,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7023,22 +7023,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "c76b098fd74f61fccea383d54ad43b39e90471bdbc41ed9182027751be6590db", + "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405885, + "block_time": 1730457077, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -7054,9 +7054,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7071,7 +7071,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7097,9 +7097,9 @@ }, { "tx_index": 53, - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7114,7 +7114,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7140,9 +7140,9 @@ }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7157,7 +7157,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7183,9 +7183,9 @@ }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7200,7 +7200,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7226,9 +7226,9 @@ }, { "tx_index": 60, - "tx_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "block_index": 210, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7243,7 +7243,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7274,9 +7274,9 @@ "/v2/orders/": { "result": { "tx_index": 55, - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "block_index": 211, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7291,7 +7291,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7319,13 +7319,13 @@ "/v2/orders//matches": { "result": [ { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7339,7 +7339,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7366,15 +7366,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "btc_amount": 2000, - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "status": "valid", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "btc_amount_normalized": "0.00002000" } ], @@ -7385,9 +7385,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "block_index": 188, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7405,7 +7405,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730406148, + "block_time": 1730457326, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7431,9 +7431,9 @@ }, { "tx_index": 55, - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "block_index": 211, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7451,7 +7451,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730406268, + "block_time": 1730457461, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7477,9 +7477,9 @@ }, { "tx_index": 50, - "tx_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", + "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", "block_index": 185, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7497,7 +7497,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406068, + "block_time": 1730457258, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7523,9 +7523,9 @@ }, { "tx_index": 52, - "tx_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", + "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", "block_index": 208, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7543,7 +7543,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406238, + "block_time": 1730457439, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7569,9 +7569,9 @@ }, { "tx_index": 58, - "tx_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", + "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", "block_index": 193, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7589,7 +7589,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406175, + "block_time": 1730457355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7620,13 +7620,13 @@ "/v2/orders///matches": { "result": [ { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7643,7 +7643,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7663,13 +7663,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 53, - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7686,7 +7686,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406148, + "block_time": 1730457326, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,13 +7706,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", "tx0_index": 50, - "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 51, - "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7729,7 +7729,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406068, + "block_time": 1730457258, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7749,13 +7749,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7772,7 +7772,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7798,13 +7798,13 @@ "/v2/order_matches": { "result": [ { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7818,7 +7818,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7838,13 +7838,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", "tx0_index": 52, - "tx0_hash": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 53, - "tx1_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7858,7 +7858,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730406148, + "block_time": 1730457326, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7878,13 +7878,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a_bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", + "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", "tx0_index": 50, - "tx0_hash": "38a26a06233a2faff84ebadd3fdae941ab1eb07201734cdb58f03a376419db2a", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 51, - "tx1_hash": "bfa1b97ee1466d658b7a59c3988a9cdf78655a5adcbb8c1574e2ae234d7fb18e", - "tx1_address": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7898,7 +7898,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730406068, + "block_time": 1730457258, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7918,13 +7918,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx0_index": 60, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx1_index": 55, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7938,7 +7938,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7983,66 +7983,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", + "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", "block_index": 121, - "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", + "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730405878, + "block_time": 1730457070, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "c0e441c6404c2d3fda3d08373f8563dca76c7a8fbeadef531d02d4b3f4cf31c6", + "tx_hash": "4ed0d8ac42583a4dd760135e1920ed1f67700c40113bb32072538558e539846a", "block_index": 120, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730405874, + "block_time": 1730457067, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "0811c1104f3911e3ad4092bff677862f1831e186b035da0443cc3c17527a5c15", + "tx_hash": "a9636d72a99630b9a931b4dc6aea179040f5b9323e9df4eb38a9335b03519da9", "block_index": 119, - "source": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj", + "source": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730405870, + "block_time": 1730457064, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "7a0fd8240482f95bd7445964937272bbbab4ca98481a17340bd2a183c290d391", + "tx_hash": "be136b6b3c2318510c906d4d3ce08fce012e799cb97af6bd10d444147de65f94", "block_index": 118, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730405866, + "block_time": 1730457060, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c835412e2a2077d8840895f89edb16b3bc08343d81e4c94c7c12286204e8e50f", + "tx_hash": "bb2802e09f27213fe8014bb97c8590ab63bc9ebd8b168a81a133f6d2088a2171", "block_index": 117, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730405863, + "block_time": 1730457057, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8054,9 +8054,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8065,7 +8065,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8075,7 +8075,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -8091,9 +8091,9 @@ }, { "tx_index": 29, - "tx_hash": "89e0d7f163a7e9824c671736a1c81bb54928881cd72d6e98798484af655a4b3a", + "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", "block_index": 142, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8102,7 +8102,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8112,7 +8112,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405966, + "block_time": 1730457161, "asset_info": { "divisible": true, "asset_longname": null, @@ -8128,9 +8128,9 @@ }, { "tx_index": 30, - "tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", + "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", "block_index": 150, - "source": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", + "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8138,10 +8138,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0068defc957dcb4640f5698ed63cd04ce01da153c51869e4dc9628085f70ad52", - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 0, - "last_status_tx_source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8149,7 +8149,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405996, + "block_time": 1730457189, "asset_info": { "divisible": true, "asset_longname": null, @@ -8165,9 +8165,9 @@ }, { "tx_index": 63, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8176,7 +8176,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8186,11 +8186,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8202,18 +8202,18 @@ }, { "tx_index": 33, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8223,7 +8223,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -8244,9 +8244,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8255,7 +8255,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8265,7 +8265,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -8285,19 +8285,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8305,7 +8305,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8320,7 +8320,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -8334,19 +8334,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8354,7 +8354,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8369,7 +8369,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -8388,20 +8388,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8422,20 +8422,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8458,12 +8458,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "event": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "tx_index": 42, - "utxo": "97b40fb2d3fcec879da9268d14d082e04230015d3e338320a5245e8a0174be55:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "utxo": "4273329b0ed940a3418d01e39140ca0b8ba8c039bbbcaaba284dceed73da338a:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "confirmed": true, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "divisible": true, "asset_longname": null, @@ -8484,27 +8484,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 704, @@ -8513,14 +8513,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -8531,9 +8531,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 703, @@ -8542,9 +8542,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -8554,24 +8554,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -8581,9 +8581,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 701, @@ -8595,15 +8595,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } }, "/v2/events/counts": { @@ -8638,16 +8638,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -8657,9 +8657,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 700, @@ -8669,12 +8669,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -8684,9 +8684,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 697, @@ -8696,39 +8696,39 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", - "utxo_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "block_time": 1730406268, + "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730406255, + "block_time": 1730457447, "asset_info": { "divisible": true, "asset_longname": null, @@ -8738,24 +8738,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -8765,9 +8765,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_time": 1730406251 + "block_time": 1730457443 } ], "next_cursor": 669, @@ -8784,27 +8784,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8819,7 +8819,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -8833,19 +8833,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "f4a6ada4b9649740cac13b0c4640f24d6df3905a64843b896580aa7d047db708", + "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8853,7 +8853,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8868,11 +8868,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730406194, + "block_time": 1730457373, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -8882,27 +8882,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "29ec2e9624a70c08f0c031cbe1aefc6d26aff24293e6200ae9789783c75eab13", + "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", "block_index": 147, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "last_status_tx_hash": null, - "origin": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8917,7 +8917,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730405985, + "block_time": 1730457178, "asset_info": { "divisible": true, "asset_longname": null, @@ -8931,19 +8931,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c3f7d2db14f7c505e648527f540c4f586c006e584de26520093f4564dd9f3758", + "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8951,7 +8951,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8966,7 +8966,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405961, + "block_time": 1730457158, "asset_info": { "divisible": true, "asset_longname": null, @@ -8980,19 +8980,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2baffd1d44a2cd8700574121a86bd56c081a8e34084dc4d2d8fefddd9ce88504", + "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", "block_index": 140, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "8cb5b242a2b365cac08fdf579b004d9bd42d220d175095a4a90cef5114d147dc", + "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9000,7 +9000,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9015,7 +9015,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730405948, + "block_time": 1730457154, "asset_info": { "divisible": true, "asset_longname": null, @@ -9034,10 +9034,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9045,7 +9045,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -9058,10 +9058,10 @@ }, { "tx_index": 78, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9069,11 +9069,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9082,10 +9082,10 @@ }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9093,7 +9093,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -9106,10 +9106,10 @@ }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9117,11 +9117,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9130,10 +9130,10 @@ }, { "tx_index": 76, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9141,11 +9141,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9160,14 +9160,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -9182,20 +9182,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "c29d7a9278990abb929a4b5c564f4b26d342a2c3dfc4ae3c6e6e98dcf8ec2aed", + "tx_hash": "a42d1d8f4f2aa464d070bbad898115de8c501af0ca596b0e18f70dfeed5f3a91", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "transfer": false, "callable": false, "call_date": 0, @@ -9210,20 +9210,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406198, + "block_time": 1730457376, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "168221a7fd471574445625d4106e01ee28f424a7b4f97708592daa6f155455ca", + "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -9238,20 +9238,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406054, + "block_time": 1730457245, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "4d230c683c62637c3149a88e415783cb45707127e355a8f94b5c9be58d66a72b", + "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -9266,20 +9266,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730406049, + "block_time": 1730457241, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "703491fd89e73760a9c8de263327c0fefeea02561a95130eb55f473aae3f1d17", + "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -9294,7 +9294,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406046, + "block_time": 1730457227, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9305,14 +9305,14 @@ "/v2/issuances/": { "result": { "tx_index": 71, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "transfer": false, "callable": false, "call_date": 0, @@ -9327,7 +9327,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9336,16 +9336,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -9356,16 +9356,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" } ], @@ -9376,9 +9376,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9386,14 +9386,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405941, + "block_time": 1730457145, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "07c0941d9c61bd0a3e50bd944e4af9806bab3390e413262e7731bed735c00e57", + "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", "block_index": 137, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9401,7 +9401,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405937, + "block_time": 1730457142, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9411,9 +9411,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9421,17 +9421,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730405941, + "block_time": 1730457145, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, "block_index": 156, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9456,7 +9456,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9465,10 +9465,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9493,7 +9493,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730405930, + "block_time": 1730457133, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9505,10 +9505,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9533,7 +9533,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730405916, + "block_time": 1730457108, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9545,10 +9545,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "tx_index": 14, "block_index": 130, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9573,7 +9573,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730405912, + "block_time": 1730457105, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9585,10 +9585,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "69ebd68c5c8119b9ecf00aefb0130078eeb9b8c195ea66ee38f773cfed57e03e", + "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", "tx_index": 10, "block_index": 125, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9613,7 +9613,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730405893, + "block_time": 1730457086, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9631,22 +9631,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9655,22 +9655,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d6e6f905e32b7b56d577d0a0e9ea49315bba997a19d683c1c2aa35a655598af6", + "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405926, + "block_time": 1730457129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9679,22 +9679,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6adb021d0fffb2ee267a46425e35c3abbb44d005d8ea879fe8b9ccafb06be794", + "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405923, + "block_time": 1730457116, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9703,22 +9703,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "66015f96271d3cf7f6f3d006aa0e87272cf0ee21cab85cb2c16b1d1e69fa20a2", + "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "d0fac8f41b53b4078a8bb2c21f05247d49f063d178c3244a4ffbe1ce4898ce1e", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405919, + "block_time": 1730457112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9727,22 +9727,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "79d19e0a40bca002f152c5b29d457ee19081e65cc5c1d8db52bfb659756ec8a9", + "tx_hash": "e6b7351251a0177d771a4480fe83ea9f4106301b80cc2fe3d2c09039da01387d", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "fairminter_tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405908, + "block_time": 1730457101, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9756,22 +9756,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -9785,11 +9785,20 @@ { "vout": 1, "height": 210, - "value": 4949896528, + "value": 4949918908, "confirmations": 2, - "amount": 49.49896528, - "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", - "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" + "amount": 49.49918908, + "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + }, + { + "vout": 1, + "height": 202, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" }, { "vout": 0, @@ -9797,8 +9806,8 @@ "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", - "address": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp" + "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" }, { "vout": 2, @@ -9806,8 +9815,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a", - "address": "bcrt1qru9mm0ssx58keklr8nt6sc703ryess0d7lmkgj" + "txid": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df", + "address": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx" } ], "next_cursor": null, @@ -9816,25 +9825,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "c3a8068df814366cf5a33f32a345e9020848f8e449eada40071edb6fab0f350c" + "tx_hash": "d2e042faaa6ba6293a8b0b819a0ccfbf3c9a12be6dfdda64d53752126fc80940" }, { - "tx_hash": "0c41d68a310a5cde52ad46df9407819f38179f4056738621a40820ade614151b" + "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42" }, { - "tx_hash": "1287ff9109c4deba30c2ef14e7fa0ce3d0577e19856549d45903ed8fc421f347" + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" }, { - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156" + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d" }, { - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" + "tx_hash": "885180138abe846d2edd32fd9d2c85863068c0a9c69e9a66fc7e430077339ab5" }, { - "tx_hash": "1e9cc0a37f2ba910f06bdf47fbdd0a59ca4a49dc77e7d599ea9acdc8732b32c1" + "tx_hash": "37a112f7c59400955e4ba5d026dd7dc3c90c55f93559a68adaf2cd9b1b23d1ca" }, { - "tx_hash": "657b360ca3f7b365aa76df8755ff71b0e9ea2deb0ac41859a042c65c7429fede" + "tx_hash": "1bcfb5a88b505cec97f883f2b95a14bca632d7a2b66e30a40bba7584335d51d1" } ], "next_cursor": null, @@ -9842,8 +9851,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 7, - "tx_hash": "0426ca0b6ab06d9145755ae7980fdc28028d4870252d9510713e2ef15d7b475d" + "block_index": 10, + "tx_hash": "610fd764366a4234557860e36b878bafffc8db6375b0926aaf1d007b5a040b9e" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9854,25 +9863,33 @@ "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4" + "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb" }, { "vout": 1, "height": 210, - "value": 4949896528, + "value": 4949918908, "confirmations": 2, - "amount": 49.49896528, - "txid": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe" + "amount": 49.49918908, + "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" + }, + { + "vout": 1, + "height": 202, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03f0d4b3bc5da3567dda37b25b05497f0c266888efbcd5282aaa5f09d168faac98" + "result": "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" }, "/v2/bitcoin/transactions/": { - "result": "020000000001019afef15844ab2436b6dd8a5120c844a93a6df0adf9263f8bf95e3b04e7e655790100000000ffffffff03e8030000000000001600149c791a5c0c4b9d4e0f299cc72f3398cb3db2c16d00000000000000000c6a0a58647fa68b6e9b0364c7eb140927010000001600145e5262049de2f0df536d6112a3107d5ef284384b0247304402203ee9fe928633499235c32bbc9fabc4abe15ba5fc87e81457fc26120ca1bdd01702200410265a244e15ba8b6537287195ebb0d4a5b15101e9397ae574d3447c33422a0121032843656ba832e0549a869a91d4662871f4cee56ddb6206a6e59e74a6f0758fd200000000" + "result": "02000000000101df410f0963d8995e86d62621d5713b59929e6177f3f0cfea7e8753ad23f3d76e0100000000ffffffff03e803000000000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86700000000000000000c6a0a84523c205929ea206dc5eb1409270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d80247304402205fbab6bbd9e3f9aea22d03ca6f29bfabc63d227d54ccbe81727ef2ef555be28e022016378b2351bb6e0ea7160e0d698a3dcc709a1ea6405c4fefb786ad21a7c4eac1012102afa25c58d2ed1a855691557311338a22c5d0b7a78b199fc03e8f0aef941cda3100000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58706 @@ -9895,27 +9912,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79 }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "quantity": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, "asset_info": { "divisible": true, @@ -9926,22 +9943,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -9951,22 +9968,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "block_index": 211, - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -9976,30 +9993,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730406273.1801424, + "block_time": 1730457465.690188, "btc_amount": 0, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "destination": "", "fee": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, - "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", + "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -10013,7 +10030,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -10022,19 +10039,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -10044,7 +10061,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -10053,27 +10070,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79 }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "quantity": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, "asset_info": { "divisible": true, @@ -10084,22 +10101,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "CREDIT", "params": { - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -10109,22 +10126,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "asset": "XCP", "block_index": 211, - "event": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -10134,30 +10151,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 }, { - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730406273.1801424, + "block_time": 1730457465.690188, "btc_amount": 0, - "data": "020000000000000001000000000000271080d45c4b124fb83018a86956683ca21bf685eca4d2", + "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", "destination": "", "fee": 10000, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", - "tx_hash": "d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", "tx_index": 79, - "utxos_info": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c:1 d50914aab4fe1cc0fd01049fb9785bf6f4604e893e4f4604bc105caf6541adf9:1 2 ", + "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "memo": null, "asset_info": { "divisible": true, @@ -10171,7 +10188,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730406273.1801424 + "timestamp": 1730457465.690188 } ], "next_cursor": null, @@ -10193,15 +10210,15 @@ "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", "block_index": 211, - "block_time": 1730406268, + "block_time": 1730457461, "difficulty": 545259519, - "previous_block_hash": "77cf0cf2b2b492016e555a352109329ed85838b2a8c7494c2a478f4584271df4" + "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0" }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 678, @@ -10213,17 +10230,17 @@ "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7dbdf3dd0276426294d0899f503e23a40ca82666694617be6cfb4d8cfb9972db", + "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", "block_index": 211, - "block_time": 1730406268, + "block_time": 1730457461, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "fee": 0, - "source": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "utxos_info": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1 d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0 3 1", + "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10233,9 +10250,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 679, @@ -10249,16 +10266,16 @@ "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "out_index": 0, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 565, @@ -10271,15 +10288,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7d744e57bd34e546fce6f7a70368535f73d4a59efde6b8445f59bb4961b29f79", - "messages_hash": "ba7770d1dfdcc22c800c6cf3ae7f3d4118237e6b0a3ce2b317fe68837ac8252d", + "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", + "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", "transaction_count": 1, - "txlist_hash": "18b49e86ec41c65c2d59e67b4a5ff4cbb5e477de115f3c98a50f44a3f729093d", - "block_time": 1730406268 + "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", + "block_time": 1730457461 }, "tx_hash": null, "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 690, @@ -10292,12 +10309,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 689, @@ -10313,12 +10330,12 @@ "address": null, "asset": "XCP", "block_index": 211, - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 2000000000, "tx_index": 78, - "utxo": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", - "utxo_address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", - "block_time": 1730406268, + "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -10328,9 +10345,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 696, @@ -10342,16 +10359,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -10361,9 +10378,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 700, @@ -10377,26 +10394,26 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "memo": null, "quantity": 1000, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "tx_index": 72, - "block_time": 1730406226, + "block_time": 1730457408, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b9b7e02c072797c1953bf1a22fd92747e36b7532a88fb31b626763c11bcf3d00", + "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", "block_index": 205, - "block_time": 1730406226 + "block_time": 1730457408 } ], "next_cursor": 505, @@ -10410,15 +10427,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "tx_index": 76, - "block_time": 1730406251, + "block_time": 1730457443, "asset_info": { "divisible": true, "asset_longname": null, @@ -10428,9 +10445,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f7be7ed54eb4121003927ec8ffd56da882404d4661617850edf7b46d9358b7ad", + "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", "block_index": 209, - "block_time": 1730406251 + "block_time": 1730457443 } ], "next_cursor": 674, @@ -10453,20 +10470,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "status": "valid", - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "tx_index": 61, - "block_time": 1730406182, + "block_time": 1730457362, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8a410ad2f6e78517e52f7c8d08e34d8286c5a65b5b2d088fc36b2e67d0973156", + "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", "block_index": 195, - "block_time": 1730406182 + "block_time": 1730457362 } ], "next_cursor": null, @@ -10483,15 +10500,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "tx_index": 42, - "block_time": 1730406015, + "block_time": 1730457209, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -10505,9 +10522,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "5eaebfaab7620e56aa61753b0b123479d578d472661697295f5301a81345ea28", + "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", "block_index": 155, - "block_time": 1730406015 + "block_time": 1730457209 } ], "next_cursor": null, @@ -10528,11 +10545,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730406221 + "block_time": 1730457404 }, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_time": 1730406221 + "block_time": 1730457404 } ], "next_cursor": 574, @@ -10555,22 +10572,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", "transfer": false, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "tx_index": 71, - "block_time": 1730406221, + "block_time": 1730457404, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "624b7e56bff363f5ac0c2fca649aeda1fb7b2acfe1822477fb41e8b6109d0070", + "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", "block_index": 204, - "block_time": 1730406221 + "block_time": 1730457404 } ], "next_cursor": 575, @@ -10585,12 +10602,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q8e7hvc065cufqsfjg5nt5zffn3js4dvc4uhm42", + "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", "status": "valid", "tag": "64657374726f79", - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "tx_index": 62, - "block_time": 1730406186, + "block_time": 1730457366, "asset_info": { "divisible": true, "asset_longname": null, @@ -10600,9 +10617,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "6aaaac337234258e0f1e3aa3a1165caf8d4478b005d7821c58400b5217cb3f8c", + "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", "block_index": 196, - "block_time": 1730406186 + "block_time": 1730457366 } ], "next_cursor": 157, @@ -10627,15 +10644,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "status": "open", - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "tx_index": 77, - "block_time": 1730406255, + "block_time": 1730457447, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, @@ -10655,9 +10672,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 536, @@ -10675,20 +10692,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "6d7b2bdb0b07e4c1c153c6964963140202b82060615dcf02d71c77825c3f5dd8", + "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", "tx0_index": 60, - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "tx1_index": 55, - "block_time": 1730406255, + "block_time": 1730457447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10707,9 +10724,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 498, @@ -10722,11 +10739,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582" + "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 685, @@ -10739,11 +10756,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e" + "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed" }, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "block_time": 1730406148 + "block_time": 1730457326 } ], "next_cursor": null, @@ -10755,13 +10772,13 @@ "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", + "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", "status": "expired" }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 488, @@ -10775,18 +10792,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_c5a566b7f394b22e62579f44edef9311fdfc678bd14125f6651702be4cec3f2e", - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "tx_index": 54, - "block_time": 1730406148, + "block_time": 1730457326, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "b9778a971c99448788a0553f3f5a8377aea4371fc72f3b348e1c14c9646ad258", + "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", "block_index": 188, - "block_time": 1730406148 + "block_time": 1730457326 } ], "next_cursor": null, @@ -10799,16 +10816,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "11c756adbd103c08d0ca7bc9f3506fe79abfdde3df92b3fbba4af22d79fa9d3d", - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": "valid", - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "tx_index": 59, - "block_time": 1730406175 + "block_time": 1730457355 }, - "tx_hash": "0d30a352bf0c873e2f7d69094476ca011da0ef367b63516f27ef92640d93cd94", + "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", "block_index": 193, - "block_time": 1730406175 + "block_time": 1730457355 } ], "next_cursor": null, @@ -10821,13 +10838,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "source": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "block_time": 1730406268 + "order_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_time": 1730457461 }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 655, @@ -10840,14 +10857,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "514f46ddda95e8ee216866355cd5dd035b964b768ae72f2228aa0fe32fb4af82_4224ebd8b9749cd7b8ddefd79cb6de5305283a3f8f14674caa4973721d506582", - "tx0_address": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "tx1_address": "bcrt1q63wykyj0hqcp32rf2e5regsm76z7efxjfwj5xl", - "block_time": 1730406255 + "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_time": 1730457447 }, - "tx_hash": "25da9bead79e0bc2ee6e59fbb3e48d26d47243a65024ca3a18a791b47e5a50fe", + "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", "block_index": 210, - "block_time": 1730406255 + "block_time": 1730457447 } ], "next_cursor": 464, @@ -10866,17 +10883,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "satoshirate": 1, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "status": 0, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "tx_index": 63, - "block_time": 1730406190, + "block_time": 1730457370, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -10885,9 +10902,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "97dcc5d2b78a25c59e484e68f65cf146269cd04346988b3c93bf5d7449e9ac0f", + "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", "block_index": 197, - "block_time": 1730406190 + "block_time": 1730457370 } ], "next_cursor": 272, @@ -10902,9 +10919,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": 0, - "tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", + "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", "asset_info": { "divisible": true, "asset_longname": null, @@ -10914,9 +10931,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 567, @@ -10930,13 +10947,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mhwEzKDzZvX6A7GYU18cTHoBuKMxAV8Mt1", + "destination": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", "dispense_quantity": 10, - "dispenser_tx_hash": "65f6c6a704d78ce07cfb10da565d3314da252b58d2bb641aa28f97cd55892e66", - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", - "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", + "dispenser_tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", "tx_index": 31, - "block_time": 1730405973, + "block_time": 1730457168, "asset_info": { "divisible": true, "asset_longname": null, @@ -10946,9 +10963,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "776e5c6fa7c84b2613b4f78e8c6e0e4ea6f9d28926f1c1a3557f8e9e45c5c048", + "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", "block_index": 144, - "block_time": 1730405973 + "block_time": 1730457168 } ], "next_cursor": null, @@ -10963,14 +10980,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qtefxypyautcd75mdvyf2xyratmeggwztf0pk0m", + "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d29a18f2f6cb3d8daa182f42b66122b9e20e9fc4c76c9913fd616f2a6bb3b7fc", - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -10981,9 +10998,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 568, @@ -10998,19 +11015,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qn3u35hqvfww5urefnnrj7vucev7m9stdlwpjvk", + "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "tx_index": 25, "value": 66600.0, - "block_time": 1730405941, + "block_time": 1730457145, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "265fc26c1da589a1b1f9c098ac14fff54b071175fa23aa28e5c38d94394c3369", + "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", "block_index": 138, - "block_time": 1730405941 + "block_time": 1730457145 } ], "next_cursor": 213, @@ -11041,12 +11058,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "start_block": 0, "status": "open", - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "tx_index": 43, - "block_time": 1730406020, + "block_time": 1730457212, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11054,9 +11071,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "4e6b78478fb34576e678dac8b2d602a74466cb22d00ba2e0f8021573071e274c", + "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", "block_index": 156, - "block_time": 1730406020 + "block_time": 1730457212 } ], "next_cursor": 196, @@ -11069,11 +11086,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "cdf1b4d176e7322bc6ba37b5ed1f176eba6ecd1d18dbc11a436be1a6cd9cd1e6" + "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038" }, "tx_hash": null, "block_index": 130, - "block_time": 1730405912 + "block_time": 1730457105 } ], "next_cursor": 110, @@ -11089,17 +11106,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "5c8785eea1687614b87dcfcd59c4e14d6c840d022b7a845d3788531b9b07393c", + "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", "paid_quantity": 34, - "source": "bcrt1q3prjtzsvmz7q50dsu8djgjwsr43a52duv0tk7u", + "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", "status": "valid", - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "tx_index": 23, - "block_time": 1730405934, + "block_time": 1730457137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q38yyawdgy63teu0yhluh8akem76v9t57tgtu5j", + "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", "divisible": true, "locked": false }, @@ -11107,9 +11124,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "5718353837d770a07d81c26a2d65718f66bff54953190d635e32a8547f1bfa30", + "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", "block_index": 136, - "block_time": 1730405934 + "block_time": 1730457137 } ], "next_cursor": 190, @@ -11123,28 +11140,28 @@ "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4:0", + "destination": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "status": "valid", - "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", "tx_index": 70, - "block_time": 1730406218, + "block_time": 1730457400, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6ae70d786f7c7c55a9f8e419f25a2a9a3e38c0116ba687ad6a2ae1e47caaf7e4", + "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", "block_index": 203, - "block_time": 1730406218 + "block_time": 1730457400 } ], "next_cursor": 584, @@ -11158,28 +11175,28 @@ "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "3385d762842ee7143f6360ba792c541e54eec1c2b12d02524242cc6e80bc83b8:0", + "source": "bc6b3439245bf677cfc259486f338be14e9f766fab8bd8de83a51fe37aa71a62:0", "status": "valid", - "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", + "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", "tx_index": 69, - "block_time": 1730406214, + "block_time": 1730457397, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqa7gtvvlyvt950w7vsr94x5tkhhs5vagcr4gkp", + "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "82afa22f45fd705c3bec04204f76dc23a2e4c8c0b86699d76ade1160a3ed0b53", + "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", "block_index": 202, - "block_time": 1730406214 + "block_time": 1730457397 } ], "next_cursor": 311, @@ -11193,14 +11210,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544:0", + "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", "msg_index": 1, "quantity": 2000000000, - "source": "7955e6e7043b5ef98b3f26f9adf06d3aa944c820518addb63624ab4458f1fe9a:1", + "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", "status": "valid", - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "tx_index": 78, - "block_time": 1730406268, + "block_time": 1730457461, "asset_info": { "divisible": true, "asset_longname": null, @@ -11210,9 +11227,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d9b6d22108ef5fff0e237b6dec60afe113729162233356810fc800a7bbb6c544", + "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", "block_index": 211, - "block_time": 1730406268 + "block_time": 1730457461 } ], "next_cursor": 698, @@ -11227,17 +11244,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qufaw42sk4m7rxreezvch7hy4s3d0sx6uu9z5ka", + "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", "status": "valid", - "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", + "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", "tx_index": 9, - "block_time": 1730405878, + "block_time": 1730457070, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9ce1ab870fbf89591dd2b7e4f7f3cc96c19956b4b3f2d81bea3dc1ce1ca3014a", + "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", "block_index": 121, - "block_time": 1730405878 + "block_time": 1730457070 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py index 579060bea6..d9e38cb28d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -508,6 +508,7 @@ "params": { "destination": "$ADDRESS_6", "inputs_set": "$UTXO_ATTACH_2_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:2", + "use_utxos_with_balances": True, }, "set_variables": { "UTXO_MOVE_2_TX_HASH": "$TX_HASH", From ecb6f26f17ef3253e072887198ee9632ffea44d7 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 12:00:25 +0000 Subject: [PATCH 030/138] More tests --- .../test/fixtures/contract_vectors/attach.py | 207 +++++++++++++++++- .../test/fixtures/contract_vectors/detach.py | 142 +++++++++++- .../counterpartycore/test/fixtures/vectors.py | 2 +- .../counterpartycore/test/util_test.py | 1 + 4 files changed, 344 insertions(+), 8 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py index 4c3d3b10a9..fe7abfa061 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py @@ -1,8 +1,6 @@ from counterpartycore.lib import config, exceptions -from ..params import ( - ADDR, -) +from ..params import ADDR, DP UTXO_1 = "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1" UTXO_2 = "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0" @@ -139,5 +137,208 @@ "out": ("XCP", 100, None), }, ], + "parse": [ + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"eXCP|100|", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": " 72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0 2 1", + }, + ), + "records": [ + { + "table": "debits", + "values": { + "address": ADDR[0], + "asset": "XCP", + "quantity": 100, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "tx_index": DP["default_tx_index"], + "action": "attach to utxo", + }, + }, + { + "table": "debits", + "values": { + "address": ADDR[0], + "asset": "XCP", + "quantity": 10, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "tx_index": DP["default_tx_index"], + "action": "attach to utxo fee", + }, + }, + { + "table": "credits", + "values": { + "utxo": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0", + "address": None, + "asset": "XCP", + "quantity": 100, + "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "tx_index": DP["default_tx_index"], + "calling_function": "attach to utxo", + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": ADDR[0], + "destination": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0", + "asset": "XCP", + "quantity": 100, + "fee_paid": 10, + }, + }, + { + "table": "messages", + "values": { + "block_index": DP["default_block_index"], + "command": "insert", + "category": "sends", + "bindings": '{"asset":"XCP","block_index":310704,"destination":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "event": "ATTACH_TO_UTXO", + }, + }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"eXCP|100|1", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": " 72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0 2 0", + }, + ), + "records": [ + { + "table": "messages", + "values": { + "block_index": DP["default_block_index"], + "command": "insert", + "category": "sends", + "bindings": '{"asset":"XCP","block_index":310704,"destination":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "event": "ATTACH_TO_UTXO", + }, + }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"eXCP|100|1", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": " 72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0 2 1", + }, + ), + "records": [ + { + "table": "messages", + "values": { + "block_index": DP["default_block_index"], + "command": "insert", + "category": "sends", + "bindings": '{"block_index":310704,"msg_index":0,"status":"invalid: destination vout is an OP_RETURN output","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "event": "ATTACH_TO_UTXO", + }, + }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"eXCP|100|3", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": " 72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0 2 1", + }, + ), + "records": [ + { + "table": "messages", + "values": { + "block_index": DP["default_block_index"], + "command": "insert", + "category": "sends", + "bindings": '{"block_index":310704,"msg_index":0,"status":"invalid: destination vout is greater than the number of outputs","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "event": "ATTACH_TO_UTXO", + }, + }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"eXCP|100|", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": " 1 0", # only one OP_RETURN output + }, + ), + "records": [ + { + "table": "messages", + "values": { + "block_index": DP["default_block_index"], + "command": "insert", + "category": "sends", + "bindings": '{"block_index":310704,"msg_index":0,"status":"invalid: no UTXO to attach to","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "event": "ATTACH_TO_UTXO", + }, + }, + ], + }, + ], }, } diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py index bfd282e274..1452b7862c 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py @@ -9,6 +9,28 @@ DETACH_VECTOR = { "detach": { + "validate": [ + { + "in": (UTXO_1, ADDR[0]), + "out": [], + }, + { + "in": (UTXO_1,), + "out": [], + }, + { + "in": (ADDR[0],), + "out": ["source must be a UTXO"], + }, + { + "in": (UTXO_1, UTXO_1), + "out": ["destination must be an address"], + }, + { + "in": (ADDR[0], UTXO_1), + "out": ["source must be a UTXO", "destination must be an address"], + }, + ], "compose": [ { "in": ( @@ -21,12 +43,28 @@ b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", ), }, + { + "in": (UTXO_2,), + "out": ( + UTXO_2, + [], + b"f0", + ), + }, ], "unpack": [ { "in": (b"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",), "out": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - } + }, + { + "in": (b"0",), + "out": None, + }, + { + "in": (b"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", True), + "out": {"destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}, + }, ], "parse": [ { @@ -34,7 +72,89 @@ { "fee": 10000, "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "data": b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "data": b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", # ADDR[1] + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2 2 ", + }, + ), + "records": [ + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "destination": ADDR[1], + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"f0", + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0,74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2 2 ", + }, + ), + "records": [ + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "destination": ADDR[0], + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "destination": ADDR[0], + "asset": "DIVISIBLE", + "quantity": 1, + "fee_paid": 0, + }, + }, + ], + }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"fmtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", # ADDR[1] "source": ADDR[0], "block_index": DP["default_block_index"], "btc_amount": 5430, @@ -43,7 +163,7 @@ "destination": ADDR[0], "block_time": 310501000, "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", - "utxos_info": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2", + "utxos_info": "nobalance:0,e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0,74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2 2 ", }, ), "records": [ @@ -55,12 +175,26 @@ "block_index": DP["default_block_index"], "status": "valid", "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", - "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "destination": ADDR[1], "asset": "XCP", "quantity": 100, "fee_paid": 0, }, }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "destination": ADDR[1], + "asset": "DIVISIBLE", + "quantity": 1, + "fee_paid": 0, + }, + }, ], }, ], diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index 5f8275a6c1..361a18a01b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -40,7 +40,7 @@ DEFAULT_PARAMS as DP, ) -# UNITTEST_VECTOR = ATTACH_VECTOR +# UNITTEST_VECTOR = DETACH_VECTOR UNITTEST_VECTOR = ( FAIRMINTER_VECTOR diff --git a/counterparty-core/counterpartycore/test/util_test.py b/counterparty-core/counterpartycore/test/util_test.py index 4ec3a6cd4b..fe27642e45 100644 --- a/counterparty-core/counterpartycore/test/util_test.py +++ b/counterparty-core/counterpartycore/test/util_test.py @@ -837,6 +837,7 @@ def exec_tested_method(tx_name, method, tested_method, inputs, server_db): ] and method == "unpack" ) + or (tx_name in ["detach"] and method == "validate") ): return tested_method(*inputs) else: From ff64404da7e5a81932c5f3ba017d341b8308d456 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 12:29:03 +0000 Subject: [PATCH 031/138] suffix old endpoints --- apiary.apib | 3899 +++++++++-------- .../counterpartycore/lib/api/compose.py | 70 +- .../counterpartycore/lib/api/routes.py | 3 +- .../test/regtest/apidoc/apicache.json | 3461 +++++++-------- .../test/regtest/genapidoc.py | 2 +- 5 files changed, 3775 insertions(+), 3660 deletions(-) diff --git a/apiary.apib b/apiary.apib index 9bb2ebeba8..0a528e9de0 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-01 10:38:03.215218. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-01 12:23:58.191885. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", "block_index": 211, - "block_time": 1730457461, + "block_time": 1730463822, "difficulty": 545259519, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0" + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d" }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 678, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", "block_index": 211, - "block_time": 1730457461, + "block_time": 1730463822, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "fee": 0, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 679, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "out_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 690, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 689, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 211, - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "block_time": 1730457461, + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 696, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 700, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "quantity": 1000, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "tx_index": 72, - "block_time": 1730457408, + "block_time": 1730463779, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_time": 1730457408 + "block_time": 1730463779 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_time": 1730457443 + "block_time": 1730463804 } ], "next_cursor": 674, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "status": "valid", - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "tx_index": 61, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "block_time": 1730457362 + "block_time": 1730463725 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "tx_index": 42, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "block_time": 1730457209 + "block_time": 1730463553 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730457404 + "block_time": 1730463766 }, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_time": 1730457404 + "block_time": 1730463766 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", "transfer": false, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "tx_index": 71, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_time": 1730457404 + "block_time": 1730463766 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", "tag": "64657374726f79", - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "tx_index": 62, - "block_time": 1730457366, + "block_time": 1730463730, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "block_index": 196, - "block_time": 1730457366 + "block_time": 1730463730 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "status": "open", - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "tx_index": 77, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, @@ -734,9 +734,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": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 536, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "tx0_index": 60, - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx1_index": 55, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 685, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed" + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361" }, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "block_time": 1730457326 + "block_time": 1730463690 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "status": "expired" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "tx_index": 54, - "block_time": 1730457326, + "block_time": 1730463690, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "block_time": 1730457326 + "block_time": 1730463690 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "tx_index": 59, - "block_time": 1730457355 + "block_time": 1730463719 }, - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "block_index": 193, - "block_time": 1730457355 + "block_time": 1730463719 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "block_time": 1730457461 + "order_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_time": 1730463822 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 655, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "block_time": 1730457447 + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_time": 1730463809 }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "satoshirate": 1, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": 0, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "tx_index": 63, - "block_time": 1730457370, + "block_time": 1730463733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 197, - "block_time": 1730457370 + "block_time": 1730463733 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", + "destination": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", "dispense_quantity": 10, - "dispenser_tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", + "dispenser_tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", "tx_index": 31, - "block_time": 1730457168, + "block_time": 1730463512, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", + "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", "block_index": 144, - "block_time": 1730457168 + "block_time": 1730463512 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "tx_index": 25, "value": 66600.0, - "block_time": 1730457145, + "block_time": 1730463489, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "block_time": 1730457145 + "block_time": 1730463489 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "start_block": 0, "status": "open", - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "block_index": 156, - "block_time": 1730457212 + "block_time": 1730463558 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038" + "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25" }, "tx_hash": null, "block_index": 130, - "block_time": 1730457105 + "block_time": 1730463449 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "paid_quantity": 34, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "block_index": 136, - "block_time": 1730457137 + "block_time": 1730463480 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb:0", + "destination": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "status": "valid", - "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", "tx_index": 70, - "block_time": 1730457400, + "block_time": 1730463762, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", "block_index": 203, - "block_time": 1730457400 + "block_time": 1730463762 } ], "next_cursor": 584, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bc6b3439245bf677cfc259486f338be14e9f766fab8bd8de83a51fe37aa71a62:0", + "source": "5758def2e4d90509b23e384c34015252fb7aceacb765bbb2d13fb0e32edf7268:0", "status": "valid", - "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", "tx_index": 69, - "block_time": 1730457397, + "block_time": 1730463757, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", "block_index": 202, - "block_time": 1730457397 + "block_time": 1730463757 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "msg_index": 1, "quantity": 2000000000, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", "status": "valid", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 698, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", + "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", "status": "valid", - "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", + "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", "tx_index": 9, - "block_time": 1730457070, + "block_time": 1730463412, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", + "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", "block_index": 121, - "block_time": 1730457070 + "block_time": 1730463412 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", "difficulty": 545259519, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", - "block_time": 1730457447, - "previous_block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_time": 1730463809, + "previous_block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", "difficulty": 545259519, - "ledger_hash": "2fff20569219a81a59899e170650366c96247ec12c3b5121f4b8d20ddb7c4706", - "txlist_hash": "05716db12029c00cb901b46870658444bf5900442142998fc170041a5fb830b7", - "messages_hash": "95eec276fe6404ec172045d3c281e710b1474ce5b13e98de274eee9d30204d62", + "ledger_hash": "35f053e2f1c637213081a0bcfea1ddd2be9aec3cab416f0ebb269782079f78dc", + "txlist_hash": "461a8b263de15651baa99404a13975c16254a53b64f2e90d9498febe8815ad7a", + "messages_hash": "8bb241937064ea12b64845cd3d555de3b4e93eb11e668f783b82c4ec30460b81", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", - "block_time": 1730457443, - "previous_block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", + "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_time": 1730463804, + "previous_block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", "difficulty": 545259519, - "ledger_hash": "2a6fd2bc1f5d63c18e3866f1dd8f3abebef51ef1afbae985c8ca7cb087d2ff49", - "txlist_hash": "44d86cb88dd54394494418814bee2c2c66440474371601e178c87d65de7f91db", - "messages_hash": "3673ff2b8e2fc66e9255712bf3d23fd318c06fc17ad11f3f5850959a282bc7d2", + "ledger_hash": "cd46a366583657374d99eda91fc353966dcf272540778a0ea374bf7dc5a1a710", + "txlist_hash": "50cab122e553f1190a8d77f457f563a22a7a8dcbd6effa52ab9d9ca440cd1947", + "messages_hash": "8c099f3d99de2839c6bb0cd4513aa4df4c26286690e167cb7d6f5dbd8ca236de", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", - "block_time": 1730457439, - "previous_block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", + "block_time": 1730463791, + "previous_block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", "difficulty": 545259519, - "ledger_hash": "14c1eb0bd8a0572bfa8bbe96f352902e414888d9fdef3576afee22ad8d1a70b5", - "txlist_hash": "21cc8c792273fa4947dba77a4ae285630379b12e1f16f933214ecdf360f07269", - "messages_hash": "042c05931e78d1f941c75d5ab50e1b4680c0545ccd6b16280d28185c02ece61a", + "ledger_hash": "b61eb453e6d3bbcd9824005e832a1c50f51afba15c4a844ebd6858b812d2ab8a", + "txlist_hash": "6a3d97cfa2d269b9253d57cc4c3495c64e2a3c8874134617d59fdf62f3240c9c", + "messages_hash": "280d91cbb992e1ae1d032ab5a5bc1220852bdeb8b423f4a45e573d428817c4eb", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", - "block_time": 1730457436, - "previous_block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", + "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_time": 1730463787, + "previous_block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", "difficulty": 545259519, - "ledger_hash": "7b0c04257b525c411e8c6d80975408acedc07d4e4f9af55cb7cdccd8b073b547", - "txlist_hash": "cfcf6455730258aada3387a3f997c5ad679cde65d8fdb916106f5a58b83a7f2d", - "messages_hash": "47e5f28331dc194b45b3af0ea7fe5e43744ff2509a860af7fd043d6c1ee080f0", + "ledger_hash": "44d477e87dda01c92afc33c5a8237b8f5d34422aa77de318583bb2519c8a3668", + "txlist_hash": "bfb5e954df75c892255c287f2919ef33ec6223300d732b89f01afbd9c87699c8", + "messages_hash": "1d973d615c19d1821ff6830c4035020adb5707ea519bcf50a99bc1cf422ca727", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", "difficulty": 545259519, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee` (str, required) - The index of the block to return + + block_hash: `5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", "difficulty": 545259519, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 704, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 703, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" } ], "next_cursor": 701, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 700, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 697, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 211, - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "object_id": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "block_index": 211, "confirmed": true, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "status": "valid", "confirmed": true, - "block_time": 1730457355 + "block_time": 1730463719 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "block_index": 196, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730457366, + "block_time": 1730463730, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "block_hash": "25bb54546499c15373444c7febc1d97405c36f85ab912519647af6e930e9ccf9", - "block_time": 1730457145, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "348f7b74a36f94e5a869c980bbc675ef1372c5badfec25415cde697336ab4136", + "block_time": 1730463489, + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7:1 2 ", + "utxos_info": " 8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "block_hash": "1f94130a46c71fb8e45d582d435cf77ebcb3645eecc2bc575558aee249458fdc", - "block_time": 1730457326, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "3b11fc3d13d20b861b438750aa4927334edc96123ddef38536f80e9c41239d5a", + "block_time": 1730463690, + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "btc_amount": 2000, "fee": 10000, - "data": "0bdd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "data": "0ba642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "supported": true, - "utxos_info": " 0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873:0 3 1", + "utxos_info": " 6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "block_index": 193, - "block_hash": "2737a4c975af70d549afeef5901b39c5099353c7821c1efb1a3f6cada7d51b05", - "block_time": 1730457355, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "550f2db4e76fb64b4f5587898d0947a454c6da3f1df88b2ec167c3025522dbd0", + "block_time": 1730463719, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "data": "46e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "supported": true, - "utxos_info": " 77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda:1 2 ", + "utxos_info": " 593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "block_index": 196, - "block_hash": "6dedbe8dae290369e85f836a79c1fe90df6d47d4a578b62a840342bb7725a2b0", - "block_time": 1730457366, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "block_hash": "28d69b5421b4caa42ddf6ab59f389e92fec258ca5365c2875abfd6d2fb669f6e", + "block_time": 1730463730, + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2727090cac725438d1aa522506a76c181a4c331822e1f7f156a4b05dd31197c3:1 9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 2 ", + "utxos_info": "f372e72a42c6ba55a6e783fefe920de6e32304ea42544e6dafddefb1db3ab01e:1 d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 197, - "block_hash": "2b1db078f20aa241fc807343f3d11191e0eff2bbc4bfb94f91018c739609190a", - "block_time": 1730457370, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "26392b4b781b115a241ad509959804ae74b8e21c8748f1318b2d2e3fc228be9d", + "block_time": 1730463733, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191:1 2 ", + "utxos_info": " 45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "block_hash": "6baae333d38c3efe9fd84ac2a780a3c9951e5557798fa87db3c05493b1c7fac2", - "block_time": 1730457209, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "7c839d6ab90a3aac6a8c86b5be8f4dd5177e24cd55f04abfb32251d8203db15d", + "block_time": 1730463553, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70:1 2 ", + "utxos_info": " 6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_hash": "7d7912291607a8552a6a8592e2db47c4dc41b216211421ca5bbd965f00b472d5", - "block_time": 1730457404, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "08dab000338cb97d55543bcaf23a9bb696794c5cf02644f978bccb78120db9ef", + "block_time": 1730463766, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5:1 2 ", + "utxos_info": " d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", - "block_time": 1730457447, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_time": 1730463809, + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b:1 2 ", + "utxos_info": " c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", - "block_time": 1730457408, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", + "block_time": 1730463779, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "supported": true, - "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", + "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", - "block_time": 1730457443, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_time": 1730463804, + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505:0 4 ", + "utxos_info": " 2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "block_hash": "5d6612951b3d37e7184a2b5d0ff1a60de3f84e847e43b3f06f26b5f0a1f31ce2", - "block_time": 1730457362, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "block_hash": "07f0e4d59acc8ea71f831d9cd2f779fbde66da86296b06cf1233525c8bff9b8c", + "block_time": 1730463725, + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480cc1251040fa17ccd55028e8520b943c0b4e443de017377656570206d7920617373657473", + "data": "0480c58eed43bc91be9d740cba73bd1624dd1511f025017377656570206d7920617373657473", "supported": true, - "utxos_info": " 827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d:1 2 ", + "utxos_info": " ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", "block_index": 203, - "block_hash": "3aa72b9a47dece9f7c3731b3d7e6999edb8a4f1dab669c5b987d67003f0e0314", - "block_time": 1730457400, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "block_hash": "35dac085144c440890da352310b4112dcca66c8cc71874be66b415aa8bd23a19", + "block_time": 1730463762, + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb:0 3 1", + "utxos_info": " 851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", "block_index": 202, - "block_hash": "52682b2acd5cfd62324171dcd7601f3b7a129176ccc99cc834d0a7e17c38de39", - "block_time": 1730457397, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "block_hash": "286aa9d58074299f78e3b718aa30e1b5c72f3348b242853c1c0f1b7c0d7f9a77", + "block_time": 1730463757, + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "bc6b3439245bf677cfc259486f338be14e9f766fab8bd8de83a51fe37aa71a62:0 d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f:1 2 ", + "utxos_info": "5758def2e4d90509b23e384c34015252fb7aceacb765bbb2d13fb0e32edf7268:0 790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 77, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", - "block_time": 1730457447, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_time": 1730463809, + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b:1 2 ", + "utxos_info": " c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010606bbccb4d066b5df3e0119f773372a9eb1918cdc30f9c697a69942741e41f7850000000000fffffffffd875c233d0e6f69d694d9c9cff91437fb4ad4c1215f79c8b9d21544a410de5f0000000000ffffffffc61103f6f4174230e88d498f47cb81701c0a8ad806503f4a56eec0ac870db2ba0000000000ffffffffdc8921e705508e0c751083891f4f366e82c5f11500870bea15437a46a06c6a430000000000ffffffffedfa189fca641c8b80cde3cae7f51847b333729217d33721a85c627c0b7940230000000000ffffffff85b524b6bb548fd880b46bc572167c87b236dd75e172184c0464172c46f7d9840000000000ffffffff04e80300000000000069512103514123c151eac86d9e5f99cf8bf3498611409b874da64363c298a31ad6ba8ede2102102c15e48b44826c3369848ac630089ab26f8c9512425d7f8b6cea4c382f48e52103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103514123c151eac86d9e91ccce8581f3ba618de232a1705dc43281cfa02e3f9c2421036d9295c9ee36e31cc0549875179b2809fcf85f7e60683c922213d47bb78e34a82103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103704123c151eac86d9e5c99cc0b045303224d56d6e2ae49ef59af47b92efb486021026d9295c9ee36e336d5e10dc0ab512809fcf85f7e6062b9ff477ebb48378e34d92103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae387923fc06000000160014d60c806085c49fc50e0ad53c52888227322c5b49024730440220310ad7418e7f580961e1b61f632bfac834f6fd926485da63aa16daac334e542f02205f5684d1a27d04880d94de6b68081c32dec9daeda40df0ffa2001184f9daf0f8012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa0247304402207ba9023435f437248127d85a40f65f3540190ba74f6086136091d1fd493ce25c02205ea22e12094fd55187248d6c4f21a27d7aa27286db584bc250f59f6dead40085012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa02473044022029591fe9fbe78412eae31260adc34a1ba0781fa435d991929c24879b6d2acaa902203311fc4618f75fd61f11c80ba1fee768127411262c0d9a0ded3bb93598b5c093012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa0247304402206118dde409f12028101065f084e37e48185ac7031d9f0d40eedf29561418af0c0220696ce5be912bd981b8dcae440318badb91acb059b4993c3c6d14aec3d9b016b5012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa02473044022060b6ac7d55777dcd0c589c2f6ec9cc8c3501bbc59f3f6443d552f13301b4c70702201b60eb557a808cd4a2fe661ec63ac22135c44c3aa7c8481f3ac93a9811d957b5012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa02473044022058944b1bceaf9f682b7ac1dbf9e6d558cbd5fd44398511e022003be90947d0b302205fa199a16a5b1d09776820a88139b3b7d157029ec277766011f4dc829c2b75f8012103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001063921b25f145d9f932176517a25dd933de55537748dd435ac345222b775a2eeae0000000000ffffffff9af0d75695dcc597eefeb1ac3a8b8d65f58c2d3835d891c14748656fed0a79460000000000ffffffff6fd034f7422f55f6beb97f4d8a623602d5f6594baba94fb23ef4d80e73b713760000000000ffffffff7f0b930e88b441e5dd5369ecc9c8e09e5c9670666b92c066c7b80e07d6fc8c0f0000000000ffffffff44281d947b09c085477cdae6c1cf395c3a025656cc2128e0b98b91a6307fd73a0000000000ffffffff5b7e8513b4c55e158cedf7d26b2dbee1e7d306ffc2eec6d07870be680de79de80000000000ffffffff04e80300000000000069512102282dfb286f24a9877d74721325d6f716550b53a7258cdbb0326db1cc324911c92103c2c68abf0d95c0d4f4c0d29abf5a4fb135c57d12f38e01800a32b6ff6fbc2a7c21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee80300000000000069512102282dfb286f24a9877dea061c1f4c24367240e14442ec8a41f9c89d419395b3c3210330360a53cb1a7f68d872e3577004ae6a41b7ba1e763f026daad1348f532d94e921023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee80300000000000069512102092dfb286f24a9877d777210a53f1920569df455b2c99e6a92e6155893516796210230360a53cb1a7f42cdc776e2ccceae6a41b7ba1e76358700cfbc5bbcd32d943621023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae387923fc06000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0247304402204a888da0023cb14a7dff787d7439be25ff33acc2bdde79dcb5c69c2aaba3ed5102202d09f9f18c68303ad8634c4fe23d8174ddc691924e3d06db34abec295e10dc5d0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402205313cc000f6b10b7809d381566149be8c3598f899664225570f7caf262097f3e0220343d815d41ca619663bbf70f2870433261ffc3c2d1128cab25a899aa66d55e810121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402202e82b40211eef3a251088393b873a629766f5d55cdbceaffc64f95dd50ce1f2d0220518db77804d1a44dc691b135d90a1992ba89f6717f283dd628a899efd651df520121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402203acf41e01b9f2c6a6470745210b8cef9bd15819bbe8c1b8979156e47269e46990220331e6195ed8993e35dd35e7858fff2acc99e638e29df4454ba3fa631e92ddf5e0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402203bd43e6a30056cd6285228e1b9a0d023088efc8598baecdc2f3b418a671cf41a022057ad92ec6025db3ffdf53261b5de697ef05488e3c57d3a10c6916c556e0bae1e0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402204e8295e6654355f8d8b56ee264d07f9fefd956d9a7d282da253f469e9238afe9022011fc04815d4378e51e22432c4f81d517085ba35758f4e8d95d9851904eea04bc0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5500000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "06bbccb4d066b5df3e0119f773372a9eb1918cdc30f9c697a69942741e41f785", + "hash": "3921b25f145d9f932176517a25dd933de55537748dd435ac345222b775a2eeae", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "fd875c233d0e6f69d694d9c9cff91437fb4ad4c1215f79c8b9d21544a410de5f", + "hash": "9af0d75695dcc597eefeb1ac3a8b8d65f58c2d3835d891c14748656fed0a7946", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c61103f6f4174230e88d498f47cb81701c0a8ad806503f4a56eec0ac870db2ba", + "hash": "6fd034f7422f55f6beb97f4d8a623602d5f6594baba94fb23ef4d80e73b71376", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "dc8921e705508e0c751083891f4f366e82c5f11500870bea15437a46a06c6a43", + "hash": "7f0b930e88b441e5dd5369ecc9c8e09e5c9670666b92c066c7b80e07d6fc8c0f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "edfa189fca641c8b80cde3cae7f51847b333729217d33721a85c627c0b794023", + "hash": "44281d947b09c085477cdae6c1cf395c3a025656cc2128e0b98b91a6307fd73a", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "85b524b6bb548fd880b46bc572167c87b236dd75e172184c0464172c46f7d984", + "hash": "5b7e8513b4c55e158cedf7d26b2dbee1e7d306ffc2eec6d07870be680de79de8", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512103514123c151eac86d9e5f99cf8bf3498611409b874da64363c298a31ad6ba8ede2102102c15e48b44826c3369848ac630089ab26f8c9512425d7f8b6cea4c382f48e52103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" + "script_pub_key": "512102282dfb286f24a9877d74721325d6f716550b53a7258cdbb0326db1cc324911c92103c2c68abf0d95c0d4f4c0d29abf5a4fb135c57d12f38e01800a32b6ff6fbc2a7c21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" }, { "value": 1000, - "script_pub_key": "512103514123c151eac86d9e91ccce8581f3ba618de232a1705dc43281cfa02e3f9c2421036d9295c9ee36e31cc0549875179b2809fcf85f7e60683c922213d47bb78e34a82103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" + "script_pub_key": "512102282dfb286f24a9877dea061c1f4c24367240e14442ec8a41f9c89d419395b3c3210330360a53cb1a7f68d872e3577004ae6a41b7ba1e763f026daad1348f532d94e921023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" }, { "value": 1000, - "script_pub_key": "512103704123c151eac86d9e5c99cc0b045303224d56d6e2ae49ef59af47b92efb486021026d9295c9ee36e336d5e10dc0ab512809fcf85f7e6062b9ff477ebb48378e34d92103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" + "script_pub_key": "512102092dfb286f24a9877d777210a53f1920569df455b2c99e6a92e6155893516796210230360a53cb1a7f42cdc776e2ccceae6a41b7ba1e76358700cfbc5bbcd32d943621023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" }, { "value": 29999987000, - "script_pub_key": "0014d60c806085c49fc50e0ad53c52888227322c5b49" + "script_pub_key": "0014d7293bb4314c352ddf34764e4643061d9bea91fe" } ], "vtxinwit": [ - "30440220310ad7418e7f580961e1b61f632bfac834f6fd926485da63aa16daac334e542f02205f5684d1a27d04880d94de6b68081c32dec9daeda40df0ffa2001184f9daf0f801", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "304402207ba9023435f437248127d85a40f65f3540190ba74f6086136091d1fd493ce25c02205ea22e12094fd55187248d6c4f21a27d7aa27286db584bc250f59f6dead4008501", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "3044022029591fe9fbe78412eae31260adc34a1ba0781fa435d991929c24879b6d2acaa902203311fc4618f75fd61f11c80ba1fee768127411262c0d9a0ded3bb93598b5c09301", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "304402206118dde409f12028101065f084e37e48185ac7031d9f0d40eedf29561418af0c0220696ce5be912bd981b8dcae440318badb91acb059b4993c3c6d14aec3d9b016b501", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "3044022060b6ac7d55777dcd0c589c2f6ec9cc8c3501bbc59f3f6443d552f13301b4c70702201b60eb557a808cd4a2fe661ec63ac22135c44c3aa7c8481f3ac93a9811d957b501", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "3044022058944b1bceaf9f682b7ac1dbf9e6d558cbd5fd44398511e022003be90947d0b302205fa199a16a5b1d09776820a88139b3b7d157029ec277766011f4dc829c2b75f801", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" + "304402204a888da0023cb14a7dff787d7439be25ff33acc2bdde79dcb5c69c2aaba3ed5102202d09f9f18c68303ad8634c4fe23d8174ddc691924e3d06db34abec295e10dc5d01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402205313cc000f6b10b7809d381566149be8c3598f899664225570f7caf262097f3e0220343d815d41ca619663bbf70f2870433261ffc3c2d1128cab25a899aa66d55e8101", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402202e82b40211eef3a251088393b873a629766f5d55cdbceaffc64f95dd50ce1f2d0220518db77804d1a44dc691b135d90a1992ba89f6717f283dd628a899efd651df5201", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402203acf41e01b9f2c6a6470745210b8cef9bd15819bbe8c1b8979156e47269e46990220331e6195ed8993e35dd35e7858fff2acc99e638e29df4454ba3fa631e92ddf5e01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402203bd43e6a30056cd6285228e1b9a0d023088efc8598baecdc2f3b418a671cf41a022057ad92ec6025db3ffdf53261b5de697ef05488e3c57d3a10c6916c556e0bae1e01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402204e8295e6654355f8d8b56ee264d07f9fefd956d9a7d282da253f469e9238afe9022011fc04815d4378e51e22432c4f81d517085ba35758f4e8d95d9851904eea04bc01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" ], "lock_time": 0, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", - "tx_id": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42" + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_id": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -3472,7 +3472,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8` (str, required) - Transaction hash + + tx_hash: `bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "158e21e1614657b8446a4c55624256171696a9b9b4d2bee26e91c4127d48ef9e", + "hash": "3b3ae07746cb931f0f59d17e63cc3e067103e3b5fbac0bff4e1f3ea2603b42d4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e3625f8f87e0b73dfd398fe4134da300541a4af074649d3a8dade81065c418398a18bcafb2994dc5c7e293734fd34" + "script_pub_key": "6a2eeaeada83a7675cb0506d0a303b652ccee851c1df4ba391cebd8967540c0b0572a9b71a27fe9cbac5c549e409a2a2" }, { "value": 4949930546, - "script_pub_key": "0014cc1251040fa17ccd55028e8520b943c0b4e443de" + "script_pub_key": "0014c58eed43bc91be9d740cba73bd1624dd1511f025" } ], "vtxinwit": [ - "30440220517fc5d95f27327b4c3ed23d596e4473258bb7a333047908ee2776ea7c277f56022011bffdad88ff6f252b104472998acf65dbc4195ba0523bd36359776398d1f6af01", - "02acf53d1a6edc80f820009903765c0e3a9441ca7559c694c1df2b913418fcbeb3" + "304402201b11e9e0fe457fb27d2d2edcdce0cfb1f8c663bc549db1bd2a3701b6b6e64761022026be2f6d4f4e162b010580750de684862c0064d58c7e6fdf454ef9f301c7062301", + "038bda439e3d8ee120962ada9e3cb14ff6e063b01ae628bf114388279e17a6eaf9" ], "lock_time": 0, - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", - "tx_id": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8" + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_id": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -3611,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction + + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (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. @@ -3652,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 704, @@ -3719,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 703, @@ -3748,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -3787,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 701, @@ -3797,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "msg_index": 1, "quantity": 2000000000, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", "status": "valid", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 700, @@ -3829,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction to return + + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -3853,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 704, @@ -3867,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -3885,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 703, @@ -3896,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -3935,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 701, @@ -3945,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "msg_index": 1, "quantity": 2000000000, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", "status": "valid", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -3962,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 700, @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction to return + + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (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 @@ -3996,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction to return + + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (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 @@ -4073,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,16 +4152,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4171,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 700, @@ -4183,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4198,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 697, @@ -4210,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": null, @@ -4240,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The hash of the transaction to return + + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `706` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4262,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4281,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 700, @@ -4293,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4308,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 697, @@ -4320,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4508,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - Comma separated list of addresses to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", - "block_time": 1730457443, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_time": 1730463804, + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505:0 4 ", + "utxos_info": " 2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4545,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4560,7 +4560,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4579,17 +4579,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "block_index": 208, - "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", - "block_time": 1730457439, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", + "block_time": 1730463791, + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443dec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f025c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7:0 4 ", + "utxos_info": " 9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4612,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4631,17 +4631,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", - "block_time": 1730457436, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_time": 1730463787, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", + "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4664,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4683,17 +4683,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", - "block_time": 1730457421, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", + "block_time": 1730463783, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", + "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4716,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4735,17 +4735,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", - "block_time": 1730457408, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", + "block_time": 1730463779, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "supported": true, - "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", + "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4753,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4778,7 +4778,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -4807,20 +4807,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "tx0_index": 60, - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx1_index": 55, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4839,38 +4839,38 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "block_time": 1730457447 + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_time": 1730463809 }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730457447, + "block_time": 1730463809, "asset_info": { "divisible": true, "asset_longname": null, @@ -4880,9 +4880,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 675, @@ -4890,15 +4890,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -4908,9 +4908,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_time": 1730457443 + "block_time": 1730463804 } ], "next_cursor": 674, @@ -4923,7 +4923,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f,bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e,bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm` (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 @@ -4939,17 +4939,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "quantity": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, "asset_info": { "divisible": true, @@ -4960,22 +4960,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4985,22 +4985,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "block_index": 211, - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -5010,30 +5010,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730457465.690188, + "block_time": 1730463825.660409, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "destination": "", "fee": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, - "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", + "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -5047,7 +5047,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -5060,7 +5060,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -5080,7 +5080,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5088,14 +5088,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5103,14 +5103,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5118,14 +5118,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5140,7 +5140,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5148,7 +5148,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5165,7 +5165,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -5178,7 +5178,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5203,7 +5203,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5253,16 +5253,16 @@ Returns the credits of an address "result": [ { "block_index": 210, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "asset_info": { "divisible": true, "asset_longname": null, @@ -5274,16 +5274,16 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -5295,16 +5295,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -5316,16 +5316,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -5337,20 +5337,20 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "event": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5367,7 +5367,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5406,16 +5406,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -5427,20 +5427,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5448,16 +5448,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -5469,20 +5469,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5490,20 +5490,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "event": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457408, + "block_time": 1730463779, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5520,7 +5520,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address of the feed + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5555,7 +5555,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -5574,9 +5574,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", + "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", "block_index": 137, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5584,7 +5584,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457142, + "block_time": 1730463485, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5598,7 +5598,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -5617,14 +5617,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "dda9d0d032938ede56efc9592fd09e515da5e6436115895713f9ba45164c9ee7", + "tx_hash": "9712fb20f20d513856feb4408e8e6cd9e97cb486df17a2913cfbc77969c6544f", "block_index": 112, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730457039, + "block_time": 1730463378, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5639,7 +5639,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -5658,10 +5658,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5669,7 +5669,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -5682,10 +5682,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5693,11 +5693,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5706,10 +5706,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5717,11 +5717,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5730,10 +5730,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5741,7 +5741,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -5754,10 +5754,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5765,11 +5765,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5787,7 +5787,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt` (str, required) - The address to return + + address: `bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav` (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 @@ -5806,10 +5806,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "2727090cac725438d1aa522506a76c181a4c331822e1f7f156a4b05dd31197c3", + "tx_hash": "f372e72a42c6ba55a6e783fefe920de6e32304ea42544e6dafddefb1db3ab01e", "block_index": 151, - "source": "458c7871c0ec7a75bb2c666bcb56e1e88c5b50b362ffbd946f9e369642d6149a:0", - "destination": "bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt", + "source": "eef6fd2b6944b278d61022959515944d6c242c2b8b095c1e6b544a2598278735:0", + "destination": "bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5817,11 +5817,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457194, + "block_time": 1730463537, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5839,7 +5839,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5859,10 +5859,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5870,11 +5870,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5883,10 +5883,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5894,11 +5894,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5907,10 +5907,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5918,11 +5918,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5931,10 +5931,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5942,11 +5942,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5955,10 +5955,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5966,11 +5966,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457408, + "block_time": 1730463779, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5988,7 +5988,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt` (str, required) - The address to return + + address: `bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6016,7 +6016,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6045,9 +6045,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6056,7 +6056,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6066,7 +6066,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6082,9 +6082,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6093,7 +6093,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6103,11 +6103,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6128,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -6141,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6162,7 +6162,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6184,7 +6184,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -6204,19 +6204,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", + "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6224,7 +6224,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6239,11 +6239,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6253,19 +6253,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6273,7 +6273,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6288,7 +6288,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,19 +6302,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6322,7 +6322,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6337,7 +6337,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -6359,7 +6359,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address to return + + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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 @@ -6379,19 +6379,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", + "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6399,7 +6399,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6414,11 +6414,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6428,19 +6428,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6448,7 +6448,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6463,7 +6463,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6477,19 +6477,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6497,7 +6497,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6512,7 +6512,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -6534,7 +6534,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -6555,19 +6555,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6575,7 +6575,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6590,7 +6590,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6604,19 +6604,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6624,7 +6624,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6639,7 +6639,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -6661,7 +6661,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address to return + + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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` @@ -6682,19 +6682,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6702,7 +6702,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6717,7 +6717,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6731,19 +6731,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6751,7 +6751,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6766,7 +6766,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -6788,7 +6788,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f` (str, required) - The address to return + + address: `bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e` (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 @@ -6807,16 +6807,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -6830,7 +6830,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6862,14 +6862,14 @@ Returns the issuances of an address "result": [ { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6884,20 +6884,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", + "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6912,20 +6912,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457245, + "block_time": 1730463592, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", + "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6940,20 +6940,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730457241, + "block_time": 1730463589, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", + "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6968,20 +6968,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457227, + "block_time": 1730463576, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "14a56e3ad6eaff3a17ff25aab4c9475640a5802be030a6fb1579d2a069db9b2b", + "tx_hash": "f10d1dac9f8b370d00f9762bcf6b1db10d07be4ae301753896f397e99eb8a478", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6996,7 +6996,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457223, + "block_time": 1730463571, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7011,7 +7011,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The issuer or owner to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7034,8 +7034,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -7043,16 +7043,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -7060,16 +7060,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -7077,16 +7077,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 40, @@ -7094,16 +7094,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730457133, - "last_issuance_block_time": 1730457137, + "first_issuance_block_time": 1730463476, + "last_issuance_block_time": 1730463480, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 19, @@ -7111,8 +7111,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730457108, - "last_issuance_block_time": 1730457129, + "first_issuance_block_time": 1730463452, + "last_issuance_block_time": 1730463473, "supply_normalized": "0.00000019" } ], @@ -7126,7 +7126,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The issuer to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -7149,8 +7149,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -7158,16 +7158,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -7175,16 +7175,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -7192,16 +7192,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 40, @@ -7209,16 +7209,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730457133, - "last_issuance_block_time": 1730457137, + "first_issuance_block_time": 1730463476, + "last_issuance_block_time": 1730463480, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 19, @@ -7226,8 +7226,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730457108, - "last_issuance_block_time": 1730457129, + "first_issuance_block_time": 1730463452, + "last_issuance_block_time": 1730463473, "supply_normalized": "0.00000019" } ], @@ -7241,7 +7241,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The owner to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7264,8 +7264,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -7273,16 +7273,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -7290,16 +7290,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -7307,16 +7307,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 40, @@ -7324,16 +7324,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730457133, - "last_issuance_block_time": 1730457137, + "first_issuance_block_time": 1730463476, + "last_issuance_block_time": 1730463480, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 19, @@ -7341,8 +7341,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730457108, - "last_issuance_block_time": 1730457129, + "first_issuance_block_time": 1730463452, + "last_issuance_block_time": 1730463473, "supply_normalized": "0.00000019" } ], @@ -7356,7 +7356,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7375,17 +7375,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", - "block_time": 1730457436, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_time": 1730463787, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", + "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7393,14 +7393,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7408,7 +7408,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7427,17 +7427,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", - "block_time": 1730457421, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", + "block_time": 1730463783, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", + "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7445,14 +7445,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7460,7 +7460,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7479,17 +7479,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", - "block_time": 1730457408, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", + "block_time": 1730463779, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "supported": true, - "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", + "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7497,12 +7497,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7513,17 +7513,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_hash": "7d7912291607a8552a6a8592e2db47c4dc41b216211421ca5bbd965f00b472d5", - "block_time": 1730457404, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "08dab000338cb97d55543bcaf23a9bb696794c5cf02644f978bccb78120db9ef", + "block_time": 1730463766, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5:1 2 ", + "utxos_info": " d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7548,17 +7548,17 @@ Returns the transactions of an address }, { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 197, - "block_hash": "2b1db078f20aa241fc807343f3d11191e0eff2bbc4bfb94f91018c739609190a", - "block_time": 1730457370, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "26392b4b781b115a241ad509959804ae74b8e21c8748f1318b2d2e3fc228be9d", + "block_time": 1730463733, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191:1 2 ", + "utxos_info": " 45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7575,7 +7575,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7596,7 +7596,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -7615,20 +7615,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7653,7 +7653,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7682,9 +7682,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7699,7 +7699,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7725,9 +7725,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7742,7 +7742,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7768,9 +7768,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7785,7 +7785,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7811,9 +7811,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "block_index": 210, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7828,7 +7828,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7863,7 +7863,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The source of the fairminter to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7888,10 +7888,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7916,7 +7916,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7925,10 +7925,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7953,7 +7953,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730457133, + "block_time": 1730463476, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7965,10 +7965,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7993,7 +7993,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730457108, + "block_time": 1730463452, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8005,10 +8005,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8033,7 +8033,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730457105, + "block_time": 1730463449, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8045,10 +8045,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8073,7 +8073,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8095,7 +8095,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address of the mints to return + + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8113,22 +8113,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8137,22 +8137,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", + "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457129, + "block_time": 1730463473, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8161,22 +8161,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", + "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", "tx_index": 20, "block_index": 133, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457116, + "block_time": 1730463468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8185,22 +8185,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", + "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", "tx_index": 19, "block_index": 132, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457112, + "block_time": 1730463455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8209,22 +8209,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d267eba5af018854aecc34f00562ca5f2e69fa701407af15efd240f836a314e8", + "tx_hash": "6f281df07c7856c3b2903c76d6d0983c2d86b7ede329004247a7a6da09d83834", "tx_index": 15, "block_index": 127, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457093, + "block_time": 1730463436, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8233,22 +8233,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8267,7 +8267,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address of the mints to return + + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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` @@ -8286,22 +8286,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8322,7 +8322,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0` (str, required) - The utxo to return + + utxo: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8342,8 +8342,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset_info": { "divisible": true, "asset_longname": null, @@ -8356,12 +8356,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8401,8 +8401,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will make the bet - + feed_address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will make the bet + + feed_address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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) @@ -8474,7 +8474,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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) @@ -8534,7 +8534,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8546,7 +8546,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "0200000000010153a965d409550a2acc8b6011e47dbf1074d3ce029b48457f4ea14db7cb2762d300000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff0200000000000000002b6a29bbb9b1716dfd9a5ad70ad3416cab5e0653b2cfca8807f765680605fb4a8cd0fc102f8334ad5dc60d5482ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101495942bb5732d6e17b15e2f0ccc7d09a287eb0713dd3d52d075cc92710a376e100000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff0200000000000000002b6a298cbd3881c3b760272da829ed7537e954a8fe50204333ca07c9866eed392fb944b1ec4803b182bc9af282ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8568,8 +8568,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending the payment - + order_match_id: `9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49` (str, required) - The ID of the order match to pay for + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending the payment + + order_match_id: `3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41` (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) @@ -8625,23 +8625,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" }, "name": "btcpay", - "data": "434e5452505254590b9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f258f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "data": "434e5452505254590b3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "02000000000101a656b40a65a92a88821a7cc1d0b27f754af89ea58ad35456cbc894f38859d9c100000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e803000000000000160014d60c806085c49fc50e0ad53c52888227322c5b4900000000000000004b6a492e08186aebe98a97ce2b7ae14ccf514405c01b52c30b16152225067c3bc4e46134d23ebe803b88d9a83c9928e2170b71190f06df459892bae25646b263705bc37b8d029db091c6d1c577a7052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101bae42086a22ccbb8c9f94b165cd21d7b1c94b343f4602f6dfa9324937e8cd97a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe00000000000000004b6a49bf0094f4d36c4bf1350ea10415cfc59db691d764b7760a84717aab8bfbbf21ebbdcf716956adef97570e1b7163f9cb6de7f89dafc515119252a48421477b220bf08f611c36c2e7058c77a7052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "status": "valid" } } @@ -8654,7 +8654,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address with the BTC to burn + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -8713,7 +8713,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 1000, "overburn": false }, @@ -8723,7 +8723,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "020000000001019306e5967e51ac38e520c7c531b47a1db2353cd50a53aca2574318b860dc648b00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000" + "rawtransaction": "0200000000010145a65626e6c2e99b4022e6b7bfae443ecc1f0e0fb0804e229cf7d002410fa47600000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000" } } ``` @@ -8733,8 +8733,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: `bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a` (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) @@ -8790,21 +8790,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" }, "name": "cancel", - "data": "434e54525052545946d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "data": "434e54525052545946c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "020000000001010ba33dc0951d6f04abb181fe92946f8c1d946591cb61406fd110078b6626bdd00100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06cffffffff0200000000000000002b6a29f291a220df835c5406a98ea6cb5eeca4578ab882f52606c945246fccfeea07a3392b39ba6bc6a13beb3e8d09270100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06c02000000000000", + "rawtransaction": "020000000001015ab6a3fadb46a9df14b29f6ece550b0b11a976ca90cc0fd37b12869b753b68c501000000160014fcec67ae32d58c150f61c00bcd5a3e0317724649ffffffff0200000000000000002b6a29afaee2167a032b3f1d202007a340124c3f976ff1d725bf0f70ce36080b7be7461e17ae44a96eddb87b3e8d092701000000160014fcec67ae32d58c150f61c00bcd5a3e031772464902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "status": "valid" } } @@ -8817,7 +8817,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -8876,7 +8876,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8895,7 +8895,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101ac7da7095f378af7e99845959451e10196dc3e0a9163b60d23e7bd8fd383d77e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000226a20de2f052628860baeb8a229fcceb70b7727e5d15d49fc433ce3a7370bbeef156892bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101f679378d80c481e74fb46b05259b392f369693a9faaf8ef8acddec6e8fc9f12300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000226a20f52c4b8cc50ead8e74615ba2b4af5c2912b2ab1d619c759ada5de441132ac8cb92bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8915,7 +8915,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: `bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9` (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) @@ -8980,7 +8980,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9004,7 +9004,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "02000000000101779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d96550200000016001420c62b4494792dcc3a836352dd61cdabfef8e9d8ffffffff0200000000000000002c6a2a6ee41bc054780a03880d02d242130c712c585ba0a2d1c6cbef1e3aadf672e8815382e3be1d1456d1d8c432dd08270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d802000000000000", + "rawtransaction": "020000000001017edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da0200000016001400667124a1ada318ec2c1b8b39e49dc755a2906effffffff0200000000000000002c6a2ada5ac2b160bed5c5504b900741a70f82edd041e06ace5f4942b4860184104fab79a725a0f10de23f51c332dd08270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9030,7 +9030,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -9089,14 +9089,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9115,7 +9115,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101e078c3779400ed6a6a959a1a79d9c6997efc7c57a25aa248c57a7e48300f9ac800000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a216d61776c2666e4387d737b5b9181d4abb99b8990b82704bb8f19befe2d891e591757bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "0200000000010127484090be58476197f874d79be9e83f926f1bd9a006fad9285d25c0db4671c900000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2142c7cfc079dc8517eea9e3b14461a0d70298660bd8817f8ccb8ec9ae992ec60c2257bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9136,10 +9136,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -9204,10 +9204,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "transfer_destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "lock": false, "reset": false, @@ -9220,7 +9220,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101df5ccaac5aec03ef74c577999dfba6f1e18b23abb98002de2ddede842523deda00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000236a21f68460d38bcb91b083672a5cfc6c501839b942c905be88fbcce7f62b5ecabd67d569b2052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101da061478832a875eca2ad789f3be3f52d923b95b0dc921abc924408e9f1612a500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000236a21b98d2966a69ba68e8a8b61dc51f402237b45abc4e7427138f675c1827d27fa45bd69b2052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9249,9 +9249,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml,bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9316,16 +9316,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", 1 ], [ "MPMASSET", - "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", 2 ] ], @@ -9333,26 +9333,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d60c806085c49fc50e0ad53c52888227322c5b4980f79a85330dcd51af085ea7f01c8fda7041c67dbe40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d7293bb4314c352ddf34764e4643061d9bea91fe80e96e360396a7f2974511f1cba0cfed291876f2f040000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "020000000001040a733e9124ac5e8603c19f7325a225d26d2b0990fb23bfd624c1f87c4f40e87f00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7266fca9e5f6baa9453c234454406f6629786a3dd4ad79e064b762e73d973a2000000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7df073294a46a2250cfd46e9c09c4eb47d61f6d7947cdbf461103eae1826fb7c00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffffcbbad1fde15099ba395dcb23178bc8c75978c50859437709174349a607f7e52e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e80300000000000069512102db4fcc1f6839e6777bba8106bef0d29ae2cbac45af16fc4d80326e073f62006f210284004c23cd46599f13c3bed27e709d9ce86596fc6de0c29b9b4b4401f5ddb4d12103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103c44fcc1f6839e6777b6981043e26de1a826a68da6a18f698bc64e68518502c1e2102df49cdd457c36a92de9211da20d76d8067bfe6bdab9d7cdb9b4b41e2955570a42103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aeb8f216a804000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000002000002000002000000000000", + "rawtransaction": "020000000001042dafd140772e0bf47690544cd83719c687092f3b3e7544e00838b278fd4d9a7d00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff897698c45f498e492c742e7d1a55e023d2fd78cf9e875a9627513a3dfc51ef3800000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffe98095e79d8da4da9ed4b40cf87a29e05cac525f4fa1ac36b202613a9e2db9c300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffcae093ed649f416658e00db2ff3d538b100bf1a059d588c55fb1a2e295ecac4f00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000695121023cf57dde790755c5ff58d9173149e9811c54e9c485aa132df9cfc1d1db14adbe210246c05baa39732734250966b84aad8af39af3dbd4ba78d8f2f1efb998feb37cfe21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee8030000000000006951210223f57dde790755c5ff8bd915b19ec0baa841a5f1a875275bb78d82d7c68f47152102d73eda43574524a282fbf1fd5b5c4153551ef2cccc8a28b2f1efbc7b9e3bb8ff21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aeb8f216a804000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9368,7 +9368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 @@ -9430,7 +9430,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9447,7 +9447,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9461,7 +9461,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101d1b8b18532596a0e5b6ecd464bc6acebba323ba5197b223c8ab7e5607785ef8600000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000356a33901f75d51d4fe62503d92bac7343d27ae664de8c7ac14ec2249a9748b8a151749610e289ced462c7d7ca584c1633c4d790c4e237b8052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101d912ed19e99eb07b99aecb51bc60a4ccc44c944e66cb4b73366f65847e62054a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000356a33e495e847659fcfe4893f72de8a02527233c46af5dc6603da031fbb9f65860401a1e113dfcdcc952e40757c939623814510f3cc37b8052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9487,8 +9487,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address that will be receiving the asset + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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 @@ -9552,8 +9552,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9569,19 +9569,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "434e54525052545902000000000000000100000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "020000000001014c51627eef5104002dcc1fd1e8677d60350ee7f48182880da49c9a9fdcbfdb6e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000306a2e22f5e2f27fd4e63c9aaa0ac8b58cbee6e81726be1ed6d14c04eed50a7aabff8719d6ff22a383f14d15346aea85ed5cb9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101dd1254839ca7a3fa1072304cb33451da3da060e1baa5b53cc849c38d449993eb00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000306a2eb5a9802f8c68c5add309fd3cd593f93fc02f601000dbfe99c9fa80af913d0ceac89066884e339f45b192811070895cb9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "quantity_normalized": "0.00001000" } @@ -9595,8 +9595,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be sending - + destination: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending + + destination: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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 @@ -9654,23 +9654,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f79a85330dcd51af085ea7f01c8fda7041c67dbe07ffff", + "data": "434e5452505254590480e96e360396a7f2974511f1cba0cfed291876f2f007ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001014a4e16c95f136179216ad70a3bca2c703f3abbdc185339e124f760b0e710162700000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a21361a816cbd2b097162e660245175148a745c149b5e148e9e73a7c6b9abae34e3fb57bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "020000000001017737ef6341dbf734dd761edfbf90b6be63c1958ca0d4a6c40f619ab54c2a0d4500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2151b299581a5434248cbd6aed0242139077d384e9f60f10be3c96c9432c72e5d03e57bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "flags": 7, "memo": "ffff" } @@ -9684,8 +9684,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: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm` (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` @@ -9742,8 +9742,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "quantity": 1000 }, "name": "dispense", @@ -9752,7 +9752,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "020000000001010535e7b336799fb1a0dc190a91668122df1509912cb99d362de9c9648fea1d8d03000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbeffffffff03e803000000000000160014cc1251040fa17ccd55028e8520b943c0b4e443de00000000000000000c6a0a3a29e0bf0b39bde6e3bd8a25082701000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbe02000000000000", + "rawtransaction": "020000000001015b3e036c8d39cc17b35af8706aceb23d49118ac30bafa35cacc54e81cf44e82b03000000160014e96e360396a7f2974511f1cba0cfed291876f2f0ffffffff03e803000000000000160014c58eed43bc91be9d740cba73bd1624dd1511f02500000000000000000c6a0ac4f094f43110f276ecc08a25082701000000160014e96e360396a7f2974511f1cba0cfed291876f2f002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9769,7 +9769,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be issuing the asset + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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: `` @@ -9858,7 +9858,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9889,7 +9889,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "020000000001015da08d1dac44d3621c5eb212a51003f8a252990cc407f6ff2077a3ec08b221d200000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000316a2f356977210af8a1039611bcbe16d8b3de56128f9397f2b4a73d1940559203a8db236ae6863339bd8c685e9a7c710fd221b9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101cd456e236d2bfadbe1dcaa1b453e6e3bc2c746f5155bdc822b3495b4b532421c00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000316a2fdc33cb33f7341f6e4a30f17d7b409a3610726e6240cf4d9111b03d6efa42990020db28fd571d66d428bc5613e7540021b9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9928,7 +9928,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: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address that will be minting the asset + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -9987,13 +9987,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -10005,7 +10005,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101a65bf655e86e2b404c216632cd4878ffd434b2ed80a264589551314f422e667400000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000166a14c1e2aa8f0b3ed5aba33ac66798d2136fed07eacf52bf052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101caf35c27c90d91d43e170ac5f26d6bfe176161ee25302dc0ecc052475259530500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000166a142feb40016ce2506117457ce6bc754b27fc20436d52bf052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10019,16 +10019,16 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Utxo [GET /v2/addresses/{address}/compose/utxo{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Attach Old [GET /v2/addresses/{address}/compose/attach_old{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] -Composes a transaction to attach or detach an assets from an address to UTXO. +Composes a transaction to attach assets from an address to UTXO. Disabled after block 870000. + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address or the utxo from which the assets are attached or detached - + asset: `XCP` (str, required) - The asset or subasset to attach or detach - + quantity: `1000` (int, required) - The quantity of the asset to attach or detach (in satoshis, hence integer) - + destination: `733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:3` (str, optional) - The address or the utxo from which the assets are attached or detached + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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: `71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10083,7 +10083,7 @@ Disabled after block 870000. ``` { - "error": "Disbaled. Please use `attach` or `detach` instead." + "error": "Disbaled. Please the new `attach` or `detach` instead." } ``` @@ -10092,7 +10092,7 @@ Disabled after block 870000. Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address from which the assets are attached + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10152,7 +10152,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10171,7 +10171,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "020000000001011dbc604ce7e37a1acc31f6e3c06de97a71c06c4f8013409f6a4332e478ee333500000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000146a12bb0cafd2f03b1778540315a0ee0efd4196f6dab5052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101ec9bff73a8a0ebb0d55455a2c391d5badf69caa6ea2967f8e83694f6f11e5f4000000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000146a1266cc3480f38f6b11f1bae2bbe607793334afdab5052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10186,13 +10186,80 @@ Composes a transaction to attach assets from an address to UTXO. } ``` +### Compose Detach Old [GET /v2/utxos/{utxo}/compose/detach_old{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] + +Composes a transaction to detach assets from UTXO to an address. +Disabled after block 870000. + ++ Parameters + + utxo: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 + + 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) + + Default: `None` + + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output. + + 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` + + 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` + + 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` + + 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` + + 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` + + 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` + + 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` + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created + + Default: `None` + + 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` + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + 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. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "error": "Disbaled. Please the new `attach` or `detach` instead." + } + ``` + ### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10249,21 +10316,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" + "source": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" }, "name": "detach", - "data": "434e545250525459666263727431713663786771637939636a30753272733236353739397a797a7975657a636b3666733630366d6c", + "data": "434e545250525459666263727431713675356e686470336673366a6d6865357765387976736378726b6437347930376a686e6a3376", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "02000000000102779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d965500000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff689ebd6d6f85a36b3b710a59ab65505a5e63804b5f13640cdf1aa7b2af77110401000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff020000000000000000376a356ee41bc054780a03e26f61a036227d474e203cd1c1a8ffab6d2e4f9f8401dab48eb5da87676d2ca8c9a1a3ed75657df5bf22df0044772c0a2701000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86702000002000000000000", + "rawtransaction": "020000000001027edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff55ce15846566fb8ada653250e7348d199054b4312a6b20bbf616567b15e82131010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff020000000000000000376a35da5ac2b160bed5c53a29f37535967eb499e52f880ebe6c2cd982ec6cec757adff49f5cd6826e9a4d5ea7dbbec0b563f418a3817b5f772c0a27010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b902000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" } } } @@ -10365,8 +10432,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -10374,16 +10441,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "owner": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "owner": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false, "supply": 100000000000, @@ -10391,16 +10458,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730457376, - "last_issuance_block_time": 1730457376, + "first_issuance_block_time": 1730463740, + "last_issuance_block_time": 1730463740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -10408,16 +10475,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "owner": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "issuer": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "owner": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "divisible": true, "locked": false, "supply": 100000000000, @@ -10425,16 +10492,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730457219, - "last_issuance_block_time": 1730457219, + "first_issuance_block_time": 1730463567, + "last_issuance_block_time": 1730463567, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -10442,8 +10509,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" } ], @@ -10471,8 +10538,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -10480,8 +10547,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730457074, - "last_issuance_block_time": 1730457086, + "first_issuance_block_time": 1730463416, + "last_issuance_block_time": 1730463428, "supply_normalized": "100.00000000" } } @@ -10512,7 +10579,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10520,14 +10587,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10535,7 +10602,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -10553,7 +10620,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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. @@ -10565,7 +10632,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10619,9 +10686,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10636,7 +10703,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10662,9 +10729,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10679,7 +10746,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10705,9 +10772,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10722,7 +10789,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10748,9 +10815,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "block_index": 210, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10765,7 +10832,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10791,9 +10858,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10808,7 +10875,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10870,13 +10937,13 @@ Returns the orders of an asset { "result": [ { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10890,7 +10957,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10910,13 +10977,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 53, - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10930,7 +10997,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10950,13 +11017,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", "tx0_index": 50, - "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 51, - "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10970,7 +11037,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10990,13 +11057,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11010,7 +11077,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11090,20 +11157,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "event": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11111,20 +11178,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", + "event": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11132,20 +11199,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11153,20 +11220,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "event": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11178,16 +11245,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11247,12 +11314,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -11264,16 +11331,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -11285,16 +11352,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -11306,16 +11373,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -11327,16 +11394,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -11416,14 +11483,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", + "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -11438,20 +11505,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -11466,20 +11533,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -11494,20 +11561,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -11522,7 +11589,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730457074, + "block_time": 1730463416, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11556,10 +11623,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11567,7 +11634,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -11580,10 +11647,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11591,7 +11658,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -11604,10 +11671,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "block_index": 208, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11615,7 +11682,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -11628,10 +11695,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11639,7 +11706,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -11652,10 +11719,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11663,7 +11730,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -11714,9 +11781,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11725,7 +11792,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11735,7 +11802,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -11751,9 +11818,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", + "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", "block_index": 142, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11762,7 +11829,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11772,7 +11839,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457161, + "block_time": 1730463504, "asset_info": { "divisible": true, "asset_longname": null, @@ -11788,9 +11855,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", + "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", "block_index": 150, - "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", + "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11798,10 +11865,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11809,7 +11876,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457189, + "block_time": 1730463534, "asset_info": { "divisible": true, "asset_longname": null, @@ -11825,18 +11892,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11846,7 +11913,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -11871,7 +11938,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - The address to return + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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` @@ -11884,9 +11951,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11895,7 +11962,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11905,7 +11972,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -11955,7 +12022,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11963,7 +12030,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11972,7 +12039,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11980,7 +12047,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11989,7 +12056,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11997,7 +12064,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12006,7 +12073,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -12043,27 +12110,27 @@ Returns the dispenses of an asset { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12078,7 +12145,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -12092,27 +12159,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", + "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", "block_index": 147, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12127,7 +12194,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457178, + "block_time": 1730463523, "asset_info": { "divisible": true, "asset_longname": null, @@ -12141,19 +12208,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12161,7 +12228,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12176,7 +12243,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -12190,19 +12257,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12210,7 +12277,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12225,7 +12292,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -12299,10 +12366,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12327,7 +12394,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12367,22 +12434,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", + "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", "tx_index": 13, "block_index": 125, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -12391,22 +12458,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "tx_index": 12, "block_index": 124, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -12415,22 +12482,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -12449,7 +12516,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj` (str, required) - The address of the mints to return + + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (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` @@ -12468,22 +12535,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -12536,9 +12603,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12553,7 +12620,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12579,9 +12646,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12596,7 +12663,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12622,9 +12689,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12639,7 +12706,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12665,9 +12732,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12682,7 +12749,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12708,9 +12775,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "block_index": 210, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12725,7 +12792,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12760,7 +12827,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49` (str, required) - The hash of the transaction that created the order + + order_hash: `73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41` (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. @@ -12772,9 +12839,9 @@ Returns the information of an order { "result": { "tx_index": 55, - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "block_index": 211, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12789,7 +12856,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12821,7 +12888,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2` (str, required) - The hash of the transaction that created the order + + order_hash: `3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa` (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 @@ -12848,13 +12915,13 @@ Returns the order matches of an order { "result": [ { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12868,7 +12935,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12898,7 +12965,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58` (str, required) - The hash of the transaction that created the order + + order_hash: `a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe` (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 @@ -12917,15 +12984,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "btc_amount": 2000, - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "status": "valid", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "btc_amount_normalized": "0.00002000" } ], @@ -12969,9 +13036,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12989,7 +13056,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730457326, + "block_time": 1730463690, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13015,9 +13082,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "block_index": 211, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13035,7 +13102,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730457461, + "block_time": 1730463822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13061,9 +13128,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13081,7 +13148,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13107,9 +13174,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13127,7 +13194,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13153,9 +13220,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13173,7 +13240,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13236,13 +13303,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13259,7 +13326,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13279,13 +13346,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 53, - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13302,7 +13369,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457326, + "block_time": 1730463690, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13322,13 +13389,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", "tx0_index": 50, - "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 51, - "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13345,7 +13412,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457258, + "block_time": 1730463606, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13365,13 +13432,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13388,7 +13455,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13446,13 +13513,13 @@ Returns all the order matches { "result": [ { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13466,7 +13533,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13486,13 +13553,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 53, - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13506,7 +13573,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13526,13 +13593,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", "tx0_index": 50, - "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 51, - "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13546,7 +13613,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13566,13 +13633,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13586,7 +13653,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13754,66 +13821,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", + "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", "block_index": 121, - "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", + "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730457070, + "block_time": 1730463412, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "4ed0d8ac42583a4dd760135e1920ed1f67700c40113bb32072538558e539846a", + "tx_hash": "2fa2f6c16e5a850f7309eda42a0d73357dbc3d3e215e19659d3512c88087b3d9", "block_index": 120, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730457067, + "block_time": 1730463408, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "a9636d72a99630b9a931b4dc6aea179040f5b9323e9df4eb38a9335b03519da9", + "tx_hash": "cd462b8e18ccadeed2abce5b0069fbcf504c66116c9e5a6aa0560ee8d4197a04", "block_index": 119, - "source": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx", + "source": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730457064, + "block_time": 1730463403, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "be136b6b3c2318510c906d4d3ce08fce012e799cb97af6bd10d444147de65f94", + "tx_hash": "c0287b7539b3c2d2bfbdb2186d66d8d7c6c8974533018cc78a5cc56fd51f6d9e", "block_index": 118, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730457060, + "block_time": 1730463399, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "bb2802e09f27213fe8014bb97c8590ab63bc9ebd8b168a81a133f6d2088a2171", + "tx_hash": "c5537fcd875e0cac68401eadb3009889f858bd22e07207f365101c273aaec5ad", "block_index": 117, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730457057, + "block_time": 1730463396, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13858,9 +13925,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13869,7 +13936,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13879,7 +13946,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -13895,9 +13962,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", + "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", "block_index": 142, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13906,7 +13973,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13916,7 +13983,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457161, + "block_time": 1730463504, "asset_info": { "divisible": true, "asset_longname": null, @@ -13932,9 +13999,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", + "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", "block_index": 150, - "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", + "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13942,10 +14009,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13953,7 +14020,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457189, + "block_time": 1730463534, "asset_info": { "divisible": true, "asset_longname": null, @@ -13969,9 +14036,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13980,7 +14047,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13990,11 +14057,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -14006,18 +14073,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14027,7 +14094,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -14052,7 +14119,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a` (str, required) - The hash of the dispenser to return + + dispenser_hash: `26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224` (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. @@ -14064,9 +14131,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14075,7 +14142,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14085,7 +14152,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -14107,7 +14174,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a` (str, required) - The hash of the dispenser to return + + dispenser_hash: `26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224` (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 @@ -14127,19 +14194,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14147,7 +14214,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14162,7 +14229,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -14176,19 +14243,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14196,7 +14263,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14211,7 +14278,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -14253,20 +14320,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -14291,7 +14358,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70` (str, required) - The hash of the dividend to return + + dividend_hash: `6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183` (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. @@ -14303,20 +14370,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -14338,7 +14405,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183` (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 @@ -14361,12 +14428,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "event": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "tx_index": 42, - "utxo": "4273329b0ed940a3418d01e39140ca0b8ba8c039bbbcaaba284dceed73da338a:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "ddc33af9e516e76d76656655d33c03f82db0508bbe26d0502b1641b3595bbeca:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "divisible": true, "asset_longname": null, @@ -14412,27 +14479,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 704, @@ -14441,14 +14508,14 @@ Returns all events "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -14459,9 +14526,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 703, @@ -14470,9 +14537,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -14482,24 +14549,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -14509,9 +14576,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 701, @@ -14539,15 +14606,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } } ``` @@ -14625,16 +14692,16 @@ Returns the events filtered by event name "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -14644,9 +14711,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 700, @@ -14656,12 +14723,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -14671,9 +14738,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 697, @@ -14683,39 +14750,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730457447, + "block_time": 1730463809, "asset_info": { "divisible": true, "asset_longname": null, @@ -14725,24 +14792,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -14752,9 +14819,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_time": 1730457443 + "block_time": 1730463804 } ], "next_cursor": 669, @@ -14810,27 +14877,27 @@ Returns all the dispenses { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14845,7 +14912,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -14859,19 +14926,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", + "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14879,7 +14946,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14894,11 +14961,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -14908,27 +14975,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", + "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", "block_index": 147, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14943,7 +15010,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457178, + "block_time": 1730463523, "asset_info": { "divisible": true, "asset_longname": null, @@ -14957,19 +15024,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14977,7 +15044,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14992,7 +15059,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -15006,19 +15073,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15026,7 +15093,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15041,7 +15108,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -15083,10 +15150,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15094,7 +15161,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -15107,10 +15174,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15118,11 +15185,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15131,10 +15198,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15142,7 +15209,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -15155,10 +15222,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15166,11 +15233,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15179,10 +15246,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15190,11 +15257,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15245,14 +15312,14 @@ Returns all the issuances "result": [ { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -15267,20 +15334,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "a42d1d8f4f2aa464d070bbad898115de8c501af0ca596b0e18f70dfeed5f3a91", + "tx_hash": "9cbd87c824c325c9e3b3929e4b808ed0116b78788bdfd287d9850b03c9484a23", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "transfer": false, "callable": false, "call_date": 0, @@ -15295,20 +15362,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457376, + "block_time": 1730463740, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", + "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -15323,20 +15390,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457245, + "block_time": 1730463592, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", + "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -15351,20 +15418,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730457241, + "block_time": 1730463589, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", + "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -15379,7 +15446,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457227, + "block_time": 1730463576, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15394,7 +15461,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5` (str, required) - The hash of the transaction to return + + tx_hash: `d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b` (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. @@ -15406,14 +15473,14 @@ Returns the issuances of a block { "result": { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -15428,7 +15495,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15460,16 +15527,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -15483,7 +15550,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d` (str, required) - The hash of the transaction to return + + tx_hash: `ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50` (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. @@ -15496,16 +15563,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -15539,9 +15606,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15549,14 +15616,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457145, + "block_time": 1730463489, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", + "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", "block_index": 137, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15564,7 +15631,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457142, + "block_time": 1730463485, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15578,7 +15645,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7` (str, required) - The hash of the transaction to return + + tx_hash: `8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5` (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. @@ -15590,9 +15657,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15600,7 +15667,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457145, + "block_time": 1730463489, "fee_fraction_int_normalized": "0.00000000" } } @@ -15637,10 +15704,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15665,7 +15732,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15674,10 +15741,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15702,7 +15769,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730457133, + "block_time": 1730463476, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15714,10 +15781,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15742,7 +15809,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730457108, + "block_time": 1730463452, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15754,10 +15821,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15782,7 +15849,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730457105, + "block_time": 1730463449, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15794,10 +15861,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15822,7 +15889,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15891,22 +15958,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15915,22 +15982,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", + "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457129, + "block_time": 1730463473, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15939,22 +16006,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", + "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", "tx_index": 20, "block_index": 133, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457116, + "block_time": 1730463468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15963,22 +16030,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", + "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", "tx_index": 19, "block_index": 132, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457112, + "block_time": 1730463455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -15987,22 +16054,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e6b7351251a0177d771a4480fe83ea9f4106301b80cc2fe3d2c09039da01387d", + "tx_hash": "561ea3f3b54e722693cac52fd446e9f03cc41aa6a33ef2d7edec8ee44c871be8", "tx_index": 17, "block_index": 129, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457101, + "block_time": 1730463445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -16021,7 +16088,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427` (str, required) - The hash of the fairmint to return + + tx_hash: `3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16032,22 +16099,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -16065,7 +16132,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5,bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx` (str, required) - The addresses to search for + + addresses: `bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd,bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq` (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. @@ -16084,26 +16151,26 @@ Returns a list of unspent outputs for a list of addresses "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", - "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" }, { - "vout": 1, - "height": 202, + "vout": 0, + "height": 203, "value": 546, - "confirmations": 10, + "confirmations": 9, "amount": 5.46e-06, - "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", - "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" }, { - "vout": 0, - "height": 203, + "vout": 1, + "height": 202, "value": 546, - "confirmations": 9, + "confirmations": 10, "amount": 5.46e-06, - "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", - "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" }, { "vout": 2, @@ -16111,8 +16178,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df", - "address": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx" + "txid": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41", + "address": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq" } ], "next_cursor": null, @@ -16125,7 +16192,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f` (str, required) - The address to search for + + address: `bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e` (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 @@ -16141,25 +16208,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "d2e042faaa6ba6293a8b0b819a0ccfbf3c9a12be6dfdda64d53752126fc80940" + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" }, { - "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42" + "tx_hash": "e4cbd84c212c0d85e0bc0ff0973493d51fb6943ce10eef36e319c57c93abf44b" }, { - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50" }, { - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d" + "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c" }, { - "tx_hash": "885180138abe846d2edd32fd9d2c85863068c0a9c69e9a66fc7e430077339ab5" + "tx_hash": "9b9193cd55f4b64910cdb1b18f4eafe8a72e8c6373631fba1f83c26d5c8751d7" }, { - "tx_hash": "37a112f7c59400955e4ba5d026dd7dc3c90c55f93559a68adaf2cd9b1b23d1ca" + "tx_hash": "fa12a032e01d27adbdca71be9acc1f1ca76aeca8031a6e1d4f5a6168383a1ef7" }, { - "tx_hash": "1bcfb5a88b505cec97f883f2b95a14bca632d7a2b66e30a40bba7584335d51d1" + "tx_hash": "62a86c538277f9812ed919d12ec84ae82ec04b0ed39374e81ece7ce3e46772ff" } ], "next_cursor": null, @@ -16172,7 +16239,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e` (str, required) - The address to search for. + + address: `bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9` (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. @@ -16185,8 +16252,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "610fd764366a4234557860e36b878bafffc8db6375b0926aaf1d007b5a040b9e" + "block_index": 7, + "tx_hash": "4919bd36f63f4582744c1bb90c38305a665de2724c9c2274077637bc852ec538" } } ``` @@ -16196,7 +16263,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5` (str, required) - The address to search for + + address: `bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd` (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 @@ -16211,21 +16278,13 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb" - }, { "vout": 1, "height": 210, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" + "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" }, { "vout": 1, @@ -16233,7 +16292,15 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f" + "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a" + }, + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362" } ], "next_cursor": null, @@ -16246,7 +16313,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml` (str, required) - Address to get pubkey for. + + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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. @@ -16258,7 +16325,7 @@ Get pubkey for an address. ``` { - "result": "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" + "result": "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" } ``` @@ -16267,7 +16334,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77` (str, required) - The transaction hash + + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (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. @@ -16279,7 +16346,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101df410f0963d8995e86d62621d5713b59929e6177f3f0cfea7e8753ad23f3d76e0100000000ffffffff03e803000000000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86700000000000000000c6a0a84523c205929ea206dc5eb1409270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d80247304402205fbab6bbd9e3f9aea22d03ca6f29bfabc63d227d54ccbe81727ef2ef555be28e022016378b2351bb6e0ea7160e0d698a3dcc709a1ea6405c4fefb786ad21a7c4eac1012102afa25c58d2ed1a855691557311338a22c5d0b7a78b199fc03e8f0aef941cda3100000000" + "result": "02000000000101413aa22da9b929934ee408dc970b36077cb7c87b70b069e0b8a1d7bb9f8e43bf0100000000ffffffff03e8030000000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b900000000000000000c6a0ab0d6c528b8839b96be74eb1409270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e024730440220630afa3b3683f914d74fe679507cfae30bd56d77af98e6c9eee69319897592f502206f9e10ebb8de21e010da7fc9bdcc0956e5bcefa377097ef6a4e2273d530a46cd01210371e58ba1571b65021affd211df2b0f5d0ca74f2eb50e3a23c4ec4753ffebf88400000000" } ``` @@ -16374,27 +16441,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79 }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "quantity": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, "asset_info": { "divisible": true, @@ -16405,22 +16472,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -16430,22 +16497,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "block_index": 211, - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -16455,30 +16522,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730457465.690188, + "block_time": 1730463825.660409, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "destination": "", "fee": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, - "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", + "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -16492,7 +16559,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -16523,19 +16590,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -16545,7 +16612,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -16558,7 +16625,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8` (str, required) - The hash of the transaction to return + + tx_hash: `bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b` (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 @@ -16578,27 +16645,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79 }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "quantity": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, "asset_info": { "divisible": true, @@ -16609,22 +16676,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -16634,22 +16701,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "block_index": 211, - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -16659,30 +16726,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730457465.690188, + "block_time": 1730463825.660409, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "destination": "", "fee": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, - "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", + "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -16696,7 +16763,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 1c2ee2db2c..029f5ba7f5 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -630,24 +630,16 @@ def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construc def compose_utxo( db, - address: str, + source: str, + destination: str, asset: str, quantity: int, - destination: str = None, **construct_args, ): - """ - Composes a transaction to attach or detach an assets from an address to UTXO. - Disabled after block 870000. - :param address: The address or the utxo from which the assets are attached or detached (e.g. $ADDRESS_1) - :param asset: The asset or subasset to attach or detach (e.g. XCP) - :param quantity: The quantity of the asset to attach or detach (in satoshis, hence integer) (e.g. 1000) - :param destination: The address or the utxo from which the assets are attached or detached (e.g. $UTXO_1_ADDRESS_1) - """ if util.enabled("spend_utxo_to_detach"): - raise exceptions.ComposeError("Disbaled. Please use `attach` or `detach` instead.") + raise exceptions.ComposeError("Disbaled. Please the new `attach` or `detach` instead.") params = { - "source": address, + "source": source, "destination": destination, "asset": asset, "quantity": quantity, @@ -655,6 +647,58 @@ def compose_utxo( return compose(db, "utxo", params, **construct_args) +def compose_attach_old( + db, + address: str, + asset: str, + quantity: int, + destination: str = None, + **construct_args, +): + """ + Composes a transaction to attach assets from an address to UTXO. + Disabled after block 870000. + :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_old( + db, + utxo: str, + destination: str, + asset: str, + quantity: int, + **construct_args, +): + """ + Composes a transaction to detach assets from UTXO to an address. + Disabled after block 870000. + :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_attach( db, address: str, @@ -671,7 +715,7 @@ def compose_attach( :param destination_vout: The vout of the destination output """ if not util.enabled("spend_utxo_to_detach"): - raise exceptions.ComposeError("Not enabled yet. Please use `utxo` instead.") + raise exceptions.ComposeError("Not enabled yet. Please wait for the block 870000") params = { "source": address, "asset": asset, diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index 3af16a4479..43562befb3 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -94,8 +94,9 @@ def get_routes(): "/v2/addresses/
/compose/dispense": compose.compose_dispense, "/v2/addresses/
/compose/fairminter": compose.compose_fairminter, "/v2/addresses/
/compose/fairmint": compose.compose_fairmint, - "/v2/addresses/
/compose/utxo": compose.compose_utxo, + "/v2/addresses/
/compose/attach_old": compose.compose_attach_old, "/v2/addresses/
/compose/attach": compose.compose_attach, + "/v2/utxos//compose/detach_old": compose.compose_detach_old, "/v2/utxos//compose/detach": compose.compose_detach, "/v2/utxos//compose/movetoutxo": compose.compose_movetoutxo, "/v2/compose/attach/estimatexcpfees": compose.get_attach_estimate_xcp_fee, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index d78eda756b..57737e99ae 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": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", "difficulty": 545259519, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", - "block_time": 1730457447, - "previous_block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", + "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_time": 1730463809, + "previous_block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", "difficulty": 545259519, - "ledger_hash": "2fff20569219a81a59899e170650366c96247ec12c3b5121f4b8d20ddb7c4706", - "txlist_hash": "05716db12029c00cb901b46870658444bf5900442142998fc170041a5fb830b7", - "messages_hash": "95eec276fe6404ec172045d3c281e710b1474ce5b13e98de274eee9d30204d62", + "ledger_hash": "35f053e2f1c637213081a0bcfea1ddd2be9aec3cab416f0ebb269782079f78dc", + "txlist_hash": "461a8b263de15651baa99404a13975c16254a53b64f2e90d9498febe8815ad7a", + "messages_hash": "8bb241937064ea12b64845cd3d555de3b4e93eb11e668f783b82c4ec30460b81", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", - "block_time": 1730457443, - "previous_block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", + "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_time": 1730463804, + "previous_block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", "difficulty": 545259519, - "ledger_hash": "2a6fd2bc1f5d63c18e3866f1dd8f3abebef51ef1afbae985c8ca7cb087d2ff49", - "txlist_hash": "44d86cb88dd54394494418814bee2c2c66440474371601e178c87d65de7f91db", - "messages_hash": "3673ff2b8e2fc66e9255712bf3d23fd318c06fc17ad11f3f5850959a282bc7d2", + "ledger_hash": "cd46a366583657374d99eda91fc353966dcf272540778a0ea374bf7dc5a1a710", + "txlist_hash": "50cab122e553f1190a8d77f457f563a22a7a8dcbd6effa52ab9d9ca440cd1947", + "messages_hash": "8c099f3d99de2839c6bb0cd4513aa4df4c26286690e167cb7d6f5dbd8ca236de", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", - "block_time": 1730457439, - "previous_block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", + "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", + "block_time": 1730463791, + "previous_block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", "difficulty": 545259519, - "ledger_hash": "14c1eb0bd8a0572bfa8bbe96f352902e414888d9fdef3576afee22ad8d1a70b5", - "txlist_hash": "21cc8c792273fa4947dba77a4ae285630379b12e1f16f933214ecdf360f07269", - "messages_hash": "042c05931e78d1f941c75d5ab50e1b4680c0545ccd6b16280d28185c02ece61a", + "ledger_hash": "b61eb453e6d3bbcd9824005e832a1c50f51afba15c4a844ebd6858b812d2ab8a", + "txlist_hash": "6a3d97cfa2d269b9253d57cc4c3495c64e2a3c8874134617d59fdf62f3240c9c", + "messages_hash": "280d91cbb992e1ae1d032ab5a5bc1220852bdeb8b423f4a45e573d428817c4eb", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", - "block_time": 1730457436, - "previous_block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", + "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_time": 1730463787, + "previous_block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", "difficulty": 545259519, - "ledger_hash": "7b0c04257b525c411e8c6d80975408acedc07d4e4f9af55cb7cdccd8b073b547", - "txlist_hash": "cfcf6455730258aada3387a3f997c5ad679cde65d8fdb916106f5a58b83a7f2d", - "messages_hash": "47e5f28331dc194b45b3af0ea7fe5e43744ff2509a860af7fd043d6c1ee080f0", + "ledger_hash": "44d477e87dda01c92afc33c5a8237b8f5d34422aa77de318583bb2519c8a3668", + "txlist_hash": "bfb5e954df75c892255c287f2919ef33ec6223300d732b89f01afbd9c87699c8", + "messages_hash": "1d973d615c19d1821ff6830c4035020adb5707ea519bcf50a99bc1cf422ca727", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", "difficulty": 545259519, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", "difficulty": 545259519, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 704, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 703, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" } ], "next_cursor": 701, @@ -256,16 +256,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 700, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" }, { "event_index": 697, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77" + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "object_id": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "block_index": 211, "confirmed": true, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "status": "valid", "confirmed": true, - "block_time": 1730457355 + "block_time": 1730463719 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "block_index": 196, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730457366, + "block_time": 1730463730, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 77, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0", - "block_time": 1730457447, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_time": 1730463809, + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b:1 2 ", + "utxos_info": " c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, @@ -816,53 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "06bbccb4d066b5df3e0119f773372a9eb1918cdc30f9c697a69942741e41f785", + "hash": "3921b25f145d9f932176517a25dd933de55537748dd435ac345222b775a2eeae", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "fd875c233d0e6f69d694d9c9cff91437fb4ad4c1215f79c8b9d21544a410de5f", + "hash": "9af0d75695dcc597eefeb1ac3a8b8d65f58c2d3835d891c14748656fed0a7946", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c61103f6f4174230e88d498f47cb81701c0a8ad806503f4a56eec0ac870db2ba", + "hash": "6fd034f7422f55f6beb97f4d8a623602d5f6594baba94fb23ef4d80e73b71376", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "dc8921e705508e0c751083891f4f366e82c5f11500870bea15437a46a06c6a43", + "hash": "7f0b930e88b441e5dd5369ecc9c8e09e5c9670666b92c066c7b80e07d6fc8c0f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "edfa189fca641c8b80cde3cae7f51847b333729217d33721a85c627c0b794023", + "hash": "44281d947b09c085477cdae6c1cf395c3a025656cc2128e0b98b91a6307fd73a", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "85b524b6bb548fd880b46bc572167c87b236dd75e172184c0464172c46f7d984", + "hash": "5b7e8513b4c55e158cedf7d26b2dbee1e7d306ffc2eec6d07870be680de79de8", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512103514123c151eac86d9e5f99cf8bf3498611409b874da64363c298a31ad6ba8ede2102102c15e48b44826c3369848ac630089ab26f8c9512425d7f8b6cea4c382f48e52103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" + "script_pub_key": "512102282dfb286f24a9877d74721325d6f716550b53a7258cdbb0326db1cc324911c92103c2c68abf0d95c0d4f4c0d29abf5a4fb135c57d12f38e01800a32b6ff6fbc2a7c21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" }, { "value": 1000, - "script_pub_key": "512103514123c151eac86d9e91ccce8581f3ba618de232a1705dc43281cfa02e3f9c2421036d9295c9ee36e31cc0549875179b2809fcf85f7e60683c922213d47bb78e34a82103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" + "script_pub_key": "512102282dfb286f24a9877dea061c1f4c24367240e14442ec8a41f9c89d419395b3c3210330360a53cb1a7f68d872e3577004ae6a41b7ba1e763f026daad1348f532d94e921023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" }, { "value": 1000, - "script_pub_key": "512103704123c151eac86d9e5c99cc0b045303224d56d6e2ae49ef59af47b92efb486021026d9295c9ee36e336d5e10dc0ab512809fcf85f7e6062b9ff477ebb48378e34d92103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53ae" + "script_pub_key": "512102092dfb286f24a9877d777210a53f1920569df455b2c99e6a92e6155893516796210230360a53cb1a7f42cdc776e2ccceae6a41b7ba1e76358700cfbc5bbcd32d943621023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" }, { "value": 29999987000, - "script_pub_key": "0014d60c806085c49fc50e0ad53c52888227322c5b49" + "script_pub_key": "0014d7293bb4314c352ddf34764e4643061d9bea91fe" } ], "vtxinwit": [ - "30440220310ad7418e7f580961e1b61f632bfac834f6fd926485da63aa16daac334e542f02205f5684d1a27d04880d94de6b68081c32dec9daeda40df0ffa2001184f9daf0f801", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "304402207ba9023435f437248127d85a40f65f3540190ba74f6086136091d1fd493ce25c02205ea22e12094fd55187248d6c4f21a27d7aa27286db584bc250f59f6dead4008501", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "3044022029591fe9fbe78412eae31260adc34a1ba0781fa435d991929c24879b6d2acaa902203311fc4618f75fd61f11c80ba1fee768127411262c0d9a0ded3bb93598b5c09301", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "304402206118dde409f12028101065f084e37e48185ac7031d9f0d40eedf29561418af0c0220696ce5be912bd981b8dcae440318badb91acb059b4993c3c6d14aec3d9b016b501", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "3044022060b6ac7d55777dcd0c589c2f6ec9cc8c3501bbc59f3f6443d552f13301b4c70702201b60eb557a808cd4a2fe661ec63ac22135c44c3aa7c8481f3ac93a9811d957b501", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa", - "3044022058944b1bceaf9f682b7ac1dbf9e6d558cbd5fd44398511e022003be90947d0b302205fa199a16a5b1d09776820a88139b3b7d157029ec277766011f4dc829c2b75f801", - "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" + "304402204a888da0023cb14a7dff787d7439be25ff33acc2bdde79dcb5c69c2aaba3ed5102202d09f9f18c68303ad8634c4fe23d8174ddc691924e3d06db34abec295e10dc5d01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402205313cc000f6b10b7809d381566149be8c3598f899664225570f7caf262097f3e0220343d815d41ca619663bbf70f2870433261ffc3c2d1128cab25a899aa66d55e8101", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402202e82b40211eef3a251088393b873a629766f5d55cdbceaffc64f95dd50ce1f2d0220518db77804d1a44dc691b135d90a1992ba89f6717f283dd628a899efd651df5201", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402203acf41e01b9f2c6a6470745210b8cef9bd15819bbe8c1b8979156e47269e46990220331e6195ed8993e35dd35e7858fff2acc99e638e29df4454ba3fa631e92ddf5e01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402203bd43e6a30056cd6285228e1b9a0d023088efc8598baecdc2f3b418a671cf41a022057ad92ec6025db3ffdf53261b5de697ef05488e3c57d3a10c6916c556e0bae1e01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", + "304402204e8295e6654355f8d8b56ee264d07f9fefd956d9a7d282da253f469e9238afe9022011fc04815d4378e51e22432c4f81d517085ba35758f4e8d95d9851904eea04bc01", + "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" ], "lock_time": 0, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", - "tx_id": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42" + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_id": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -926,7 +926,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -946,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "158e21e1614657b8446a4c55624256171696a9b9b4d2bee26e91c4127d48ef9e", + "hash": "3b3ae07746cb931f0f59d17e63cc3e067103e3b5fbac0bff4e1f3ea2603b42d4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e3625f8f87e0b73dfd398fe4134da300541a4af074649d3a8dade81065c418398a18bcafb2994dc5c7e293734fd34" + "script_pub_key": "6a2eeaeada83a7675cb0506d0a303b652ccee851c1df4ba391cebd8967540c0b0572a9b71a27fe9cbac5c549e409a2a2" }, { "value": 4949930546, - "script_pub_key": "0014cc1251040fa17ccd55028e8520b943c0b4e443de" + "script_pub_key": "0014c58eed43bc91be9d740cba73bd1624dd1511f025" } ], "vtxinwit": [ - "30440220517fc5d95f27327b4c3ed23d596e4473258bb7a333047908ee2776ea7c277f56022011bffdad88ff6f252b104472998acf65dbc4195ba0523bd36359776398d1f6af01", - "02acf53d1a6edc80f820009903765c0e3a9441ca7559c694c1df2b913418fcbeb3" + "304402201b11e9e0fe457fb27d2d2edcdce0cfb1f8c663bc549db1bd2a3701b6b6e64761022026be2f6d4f4e162b010580750de684862c0064d58c7e6fdf454ef9f301c7062301", + "038bda439e3d8ee120962ada9e3cb14ff6e063b01ae628bf114388279e17a6eaf9" ], "lock_time": 0, - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", - "tx_id": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8" + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_id": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", - "block_time": 1730457461, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_time": 1730463822, + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 704, @@ -1083,14 +1083,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 703, @@ -1112,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 701, @@ -1161,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "msg_index": 1, "quantity": 2000000000, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", "status": "valid", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 700, @@ -1193,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 704, @@ -1207,14 +1207,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 703, @@ -1236,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 701, @@ -1285,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "msg_index": 1, "quantity": 2000000000, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", "status": "valid", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 700, @@ -1314,10 +1314,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1338,10 @@ }, { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1369,27 +1369,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1425,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 700, @@ -1456,12 +1456,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 697, @@ -1483,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": null, @@ -1512,16 +1512,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 700, @@ -1543,12 +1543,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 697, @@ -1570,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": null, @@ -1600,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1621,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1642,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1663,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1684,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1705,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1729,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_hash": "432e0fba98a2a063efcbf21d8939c269e14fedd6bc83e34c0fa4f7efc6137b33", - "block_time": 1730457443, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_time": 1730463804, + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505:0 4 ", + "utxos_info": " 2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1762,7 +1762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1781,17 +1781,17 @@ }, { "tx_index": 75, - "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "block_index": 208, - "block_hash": "335ef29076d4af8b3033f951f7912b60de48ba0e4fd14c4b259e7ee40cadd6ec", - "block_time": 1730457439, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", + "block_time": 1730463791, + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d60c806085c49fc50e0ad53c52888227322c5b49802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443dec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f025c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7:0 4 ", + "utxos_info": " 9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1814,7 +1814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1833,17 +1833,17 @@ }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", - "block_time": 1730457436, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_time": 1730463787, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", + "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1851,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1866,7 +1866,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1885,17 +1885,17 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", - "block_time": 1730457421, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", + "block_time": 1730463783, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", + "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1903,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1918,7 +1918,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1937,17 +1937,17 @@ }, { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", - "block_time": 1730457408, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", + "block_time": 1730463779, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "supported": true, - "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", + "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1955,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -1985,20 +1985,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "tx0_index": 60, - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx1_index": 55, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2017,38 +2017,38 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "block_time": 1730457447 + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_time": 1730463809 }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730457447, + "block_time": 1730463809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2058,9 +2058,9 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 675, @@ -2068,15 +2068,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -2086,9 +2086,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_time": 1730457443 + "block_time": 1730463804 } ], "next_cursor": 674, @@ -2097,17 +2097,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "quantity": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, "asset_info": { "divisible": true, @@ -2118,22 +2118,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2143,22 +2143,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "block_index": 211, - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,30 +2168,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730457465.690188, + "block_time": 1730463825.660409, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "destination": "", "fee": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, - "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", + "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -2205,7 +2205,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -2214,7 +2214,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2222,14 +2222,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2237,14 +2237,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2252,14 +2252,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2274,7 +2274,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2282,7 +2282,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2295,7 +2295,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2317,16 +2317,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "asset_info": { "divisible": true, "asset_longname": null, @@ -2338,16 +2338,16 @@ }, { "block_index": 209, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -2359,16 +2359,16 @@ }, { "block_index": 208, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,16 +2380,16 @@ }, { "block_index": 208, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -2401,20 +2401,20 @@ }, { "block_index": 204, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "event": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2428,16 +2428,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -2449,20 +2449,20 @@ }, { "block_index": 207, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2470,16 +2470,16 @@ }, { "block_index": 206, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -2491,20 +2491,20 @@ }, { "block_index": 206, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2512,20 +2512,20 @@ }, { "block_index": 205, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "event": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457408, + "block_time": 1730463779, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2544,9 +2544,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", + "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", "block_index": 137, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2554,7 +2554,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457142, + "block_time": 1730463485, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2565,14 +2565,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "dda9d0d032938ede56efc9592fd09e515da5e6436115895713f9ba45164c9ee7", + "tx_hash": "9712fb20f20d513856feb4408e8e6cd9e97cb486df17a2913cfbc77969c6544f", "block_index": 112, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730457039, + "block_time": 1730463378, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2584,10 +2584,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2595,7 +2595,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -2608,10 +2608,10 @@ }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2619,11 +2619,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2632,10 +2632,10 @@ }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2643,11 +2643,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2656,10 +2656,10 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2667,7 +2667,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -2680,10 +2680,10 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2691,11 +2691,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2710,10 +2710,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "2727090cac725438d1aa522506a76c181a4c331822e1f7f156a4b05dd31197c3", + "tx_hash": "f372e72a42c6ba55a6e783fefe920de6e32304ea42544e6dafddefb1db3ab01e", "block_index": 151, - "source": "458c7871c0ec7a75bb2c666bcb56e1e88c5b50b362ffbd946f9e369642d6149a:0", - "destination": "bcrt1qkwzyalan4f2zmqld6swt7dr0xw027j5hvrungt", + "source": "eef6fd2b6944b278d61022959515944d6c242c2b8b095c1e6b544a2598278735:0", + "destination": "bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2721,11 +2721,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457194, + "block_time": 1730463537, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2740,10 +2740,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2751,11 +2751,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2764,10 +2764,10 @@ }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2775,11 +2775,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2788,10 +2788,10 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2799,11 +2799,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2812,10 +2812,10 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2823,11 +2823,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2836,10 +2836,10 @@ }, { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2847,11 +2847,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457408, + "block_time": 1730463779, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2871,9 +2871,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2882,7 +2882,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2892,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -2908,9 +2908,9 @@ }, { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2919,7 +2919,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2929,11 +2929,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -2950,9 +2950,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2971,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -2991,19 +2991,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", + "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3011,7 +3011,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3026,11 +3026,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -3040,19 +3040,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3060,7 +3060,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3075,7 +3075,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -3089,19 +3089,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3109,7 +3109,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3124,7 +3124,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -3144,19 +3144,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", + "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3164,7 +3164,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3179,11 +3179,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -3193,19 +3193,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3213,7 +3213,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3228,7 +3228,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -3242,19 +3242,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3262,7 +3262,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3277,7 +3277,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -3297,19 +3297,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3317,7 +3317,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3332,7 +3332,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -3346,19 +3346,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3366,7 +3366,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3381,7 +3381,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -3401,19 +3401,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3421,7 +3421,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3436,7 +3436,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -3450,19 +3450,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3470,7 +3470,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3485,7 +3485,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -3504,16 +3504,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -3524,14 +3524,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -3546,20 +3546,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", + "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -3574,20 +3574,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457245, + "block_time": 1730463592, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", + "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -3602,20 +3602,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730457241, + "block_time": 1730463589, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", + "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -3630,20 +3630,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457227, + "block_time": 1730463576, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "14a56e3ad6eaff3a17ff25aab4c9475640a5802be030a6fb1579d2a069db9b2b", + "tx_hash": "f10d1dac9f8b370d00f9762bcf6b1db10d07be4ae301753896f397e99eb8a478", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -3658,7 +3658,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457223, + "block_time": 1730463571, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3672,8 +3672,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -3681,16 +3681,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -3698,16 +3698,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -3715,16 +3715,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 40, @@ -3732,16 +3732,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730457133, - "last_issuance_block_time": 1730457137, + "first_issuance_block_time": 1730463476, + "last_issuance_block_time": 1730463480, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 19, @@ -3749,8 +3749,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730457108, - "last_issuance_block_time": 1730457129, + "first_issuance_block_time": 1730463452, + "last_issuance_block_time": 1730463473, "supply_normalized": "0.00000019" } ], @@ -3763,8 +3763,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -3772,16 +3772,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -3789,16 +3789,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -3806,16 +3806,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 40, @@ -3823,16 +3823,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730457133, - "last_issuance_block_time": 1730457137, + "first_issuance_block_time": 1730463476, + "last_issuance_block_time": 1730463480, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 19, @@ -3840,8 +3840,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730457108, - "last_issuance_block_time": 1730457129, + "first_issuance_block_time": 1730463452, + "last_issuance_block_time": 1730463473, "supply_normalized": "0.00000019" } ], @@ -3854,8 +3854,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -3863,16 +3863,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -3880,16 +3880,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -3897,16 +3897,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 40, @@ -3914,16 +3914,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730457133, - "last_issuance_block_time": 1730457137, + "first_issuance_block_time": 1730463476, + "last_issuance_block_time": 1730463480, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 19, @@ -3931,8 +3931,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730457108, - "last_issuance_block_time": 1730457129, + "first_issuance_block_time": 1730463452, + "last_issuance_block_time": 1730463473, "supply_normalized": "0.00000019" } ], @@ -3943,17 +3943,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "block_hash": "11ebdb3baf5bd5425612728002a82c8930a9919a89e3a661378628aab1e2cc98", - "block_time": 1730457436, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_time": 1730463787, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42:0 4 ", + "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3961,14 +3961,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -3976,7 +3976,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3995,17 +3995,17 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "block_hash": "03ced3aeebebd5f58d554c0247ed4063f571d7db76fc5a9393f0e0c6dc78d7dc", - "block_time": 1730457421, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", + "block_time": 1730463783, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f79a85330dcd51af085ea7f01c8fda7041c67dbe802d6572615ae688894a6d6120934e97d3eb7220e480cc1251040fa17ccd55028e8520b943c0b4e443de88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c:0 4 ", + "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4013,14 +4013,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4028,7 +4028,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4047,17 +4047,17 @@ }, { "tx_index": 72, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_hash": "03269e79b1dbf31bdf9148e98386247768e65d2cd95999967ec327d2ca5df202", - "block_time": 1730457408, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", + "block_time": 1730463779, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "supported": true, - "utxos_info": " 081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f:1 2 ", + "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4065,12 +4065,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4081,17 +4081,17 @@ }, { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_hash": "7d7912291607a8552a6a8592e2db47c4dc41b216211421ca5bbd965f00b472d5", - "block_time": 1730457404, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "08dab000338cb97d55543bcaf23a9bb696794c5cf02644f978bccb78120db9ef", + "block_time": 1730463766, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5:1 2 ", + "utxos_info": " d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4116,17 +4116,17 @@ }, { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 197, - "block_hash": "2b1db078f20aa241fc807343f3d11191e0eff2bbc4bfb94f91018c739609190a", - "block_time": 1730457370, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "block_hash": "26392b4b781b115a241ad509959804ae74b8e21c8748f1318b2d2e3fc228be9d", + "block_time": 1730463733, + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191:1 2 ", + "utxos_info": " 45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4143,7 +4143,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4161,20 +4161,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4196,9 +4196,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4213,7 +4213,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4239,9 +4239,9 @@ }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4256,7 +4256,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4282,9 +4282,9 @@ }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4299,7 +4299,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4325,9 +4325,9 @@ }, { "tx_index": 60, - "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "block_index": 210, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4342,7 +4342,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4373,10 +4373,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4401,7 +4401,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4410,10 +4410,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4438,7 +4438,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730457133, + "block_time": 1730463476, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4450,10 +4450,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4478,7 +4478,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730457108, + "block_time": 1730463452, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4490,10 +4490,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4518,7 +4518,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730457105, + "block_time": 1730463449, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4530,10 +4530,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4558,7 +4558,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4576,22 +4576,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4600,22 +4600,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", + "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457129, + "block_time": 1730463473, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4624,22 +4624,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", + "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", "tx_index": 20, "block_index": 133, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457116, + "block_time": 1730463468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4648,22 +4648,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", + "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", "tx_index": 19, "block_index": 132, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457112, + "block_time": 1730463455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4672,22 +4672,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d267eba5af018854aecc34f00562ca5f2e69fa701407af15efd240f836a314e8", + "tx_hash": "6f281df07c7856c3b2903c76d6d0983c2d86b7ede329004247a7a6da09d83834", "tx_index": 15, "block_index": 127, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457093, + "block_time": 1730463436, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4696,22 +4696,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4758,8 +4758,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset_info": { "divisible": true, "asset_longname": null, @@ -4772,12 +4772,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4793,7 +4793,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4805,7 +4805,7 @@ "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "0200000000010153a965d409550a2acc8b6011e47dbf1074d3ce029b48457f4ea14db7cb2762d300000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff0200000000000000002b6a29bbb9b1716dfd9a5ad70ad3416cab5e0653b2cfca8807f765680605fb4a8cd0fc102f8334ad5dc60d5482ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101495942bb5732d6e17b15e2f0ccc7d09a287eb0713dd3d52d075cc92710a376e100000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff0200000000000000002b6a298cbd3881c3b760272da829ed7537e954a8fe50204333ca07c9866eed392fb944b1ec4803b182bc9af282ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4823,23 +4823,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" }, "name": "btcpay", - "data": "434e5452505254590b9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f258f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "data": "434e5452505254590b3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "02000000000101a656b40a65a92a88821a7cc1d0b27f754af89ea58ad35456cbc894f38859d9c100000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e803000000000000160014d60c806085c49fc50e0ad53c52888227322c5b4900000000000000004b6a492e08186aebe98a97ce2b7ae14ccf514405c01b52c30b16152225067c3bc4e46134d23ebe803b88d9a83c9928e2170b71190f06df459892bae25646b263705bc37b8d029db091c6d1c577a7052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101bae42086a22ccbb8c9f94b165cd21d7b1c94b343f4602f6dfa9324937e8cd97a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe00000000000000004b6a49bf0094f4d36c4bf1350ea10415cfc59db691d764b7760a84717aab8bfbbf21ebbdcf716956adef97570e1b7163f9cb6de7f89dafc515119252a48421477b220bf08f611c36c2e7058c77a7052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "order_match_id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "status": "valid" } } @@ -4848,7 +4848,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 1000, "overburn": false }, @@ -4858,27 +4858,27 @@ "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "020000000001019306e5967e51ac38e520c7c531b47a1db2353cd50a53aca2574318b860dc648b00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000" + "rawtransaction": "0200000000010145a65626e6c2e99b4022e6b7bfae443ecc1f0e0fb0804e229cf7d002410fa47600000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" }, "name": "cancel", - "data": "434e54525052545946d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "data": "434e54525052545946c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "020000000001010ba33dc0951d6f04abb181fe92946f8c1d946591cb61406fd110078b6626bdd00100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06cffffffff0200000000000000002b6a29f291a220df835c5406a98ea6cb5eeca4578ab882f52606c945246fccfeea07a3392b39ba6bc6a13beb3e8d09270100000016001483ee26f2c441e38607e8a87ae9f5402153dbc06c02000000000000", + "rawtransaction": "020000000001015ab6a3fadb46a9df14b29f6ece550b0b11a976ca90cc0fd37b12869b753b68c501000000160014fcec67ae32d58c150f61c00bcd5a3e0317724649ffffffff0200000000000000002b6a29afaee2167a032b3f1d202007a340124c3f976ff1d725bf0f70ce36080b7be7461e17ae44a96eddb87b3e8d092701000000160014fcec67ae32d58c150f61c00bcd5a3e031772464902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "status": "valid" } } @@ -4887,7 +4887,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4906,7 +4906,7 @@ "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101ac7da7095f378af7e99845959451e10196dc3e0a9163b60d23e7bd8fd383d77e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000226a20de2f052628860baeb8a229fcceb70b7727e5d15d49fc433ce3a7370bbeef156892bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101f679378d80c481e74fb46b05259b392f369693a9faaf8ef8acddec6e8fc9f12300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000226a20f52c4b8cc50ead8e74615ba2b4af5c2912b2ab1d619c759ada5de441132ac8cb92bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4922,7 +4922,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4946,7 +4946,7 @@ "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "02000000000101779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d96550200000016001420c62b4494792dcc3a836352dd61cdabfef8e9d8ffffffff0200000000000000002c6a2a6ee41bc054780a03880d02d242130c712c585ba0a2d1c6cbef1e3aadf672e8815382e3be1d1456d1d8c432dd08270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d802000000000000", + "rawtransaction": "020000000001017edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da0200000016001400667124a1ada318ec2c1b8b39e49dc755a2906effffffff0200000000000000002c6a2ada5ac2b160bed5c5504b900741a70f82edd041e06ace5f4942b4860184104fab79a725a0f10de23f51c332dd08270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4968,14 +4968,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -4994,7 +4994,7 @@ "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "02000000000101e078c3779400ed6a6a959a1a79d9c6997efc7c57a25aa248c57a7e48300f9ac800000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a216d61776c2666e4387d737b5b9181d4abb99b8990b82704bb8f19befe2d891e591757bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "0200000000010127484090be58476197f874d79be9e83f926f1bd9a006fad9285d25c0db4671c900000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2142c7cfc079dc8517eea9e3b14461a0d70298660bd8817f8ccb8ec9ae992ec60c2257bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5011,10 +5011,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "transfer_destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "lock": false, "reset": false, @@ -5027,7 +5027,7 @@ "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101df5ccaac5aec03ef74c577999dfba6f1e18b23abb98002de2ddede842523deda00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000236a21f68460d38bcb91b083672a5cfc6c501839b942c905be88fbcce7f62b5ecabd67d569b2052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101da061478832a875eca2ad789f3be3f52d923b95b0dc921abc924408e9f1612a500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000236a21b98d2966a69ba68e8a8b61dc51f402237b45abc4e7427138f675c1827d27fa45bd69b2052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5052,16 +5052,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", 1 ], [ "MPMASSET", - "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", 2 ] ], @@ -5069,26 +5069,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d60c806085c49fc50e0ad53c52888227322c5b4980f79a85330dcd51af085ea7f01c8fda7041c67dbe40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d7293bb4314c352ddf34764e4643061d9bea91fe80e96e360396a7f2974511f1cba0cfed291876f2f040000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "020000000001040a733e9124ac5e8603c19f7325a225d26d2b0990fb23bfd624c1f87c4f40e87f00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7266fca9e5f6baa9453c234454406f6629786a3dd4ad79e064b762e73d973a2000000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff7df073294a46a2250cfd46e9c09c4eb47d61f6d7947cdbf461103eae1826fb7c00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffffcbbad1fde15099ba395dcb23178bc8c75978c50859437709174349a607f7e52e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff03e80300000000000069512102db4fcc1f6839e6777bba8106bef0d29ae2cbac45af16fc4d80326e073f62006f210284004c23cd46599f13c3bed27e709d9ce86596fc6de0c29b9b4b4401f5ddb4d12103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aee80300000000000069512103c44fcc1f6839e6777b6981043e26de1a826a68da6a18f698bc64e68518502c1e2102df49cdd457c36a92de9211da20d76d8067bfe6bdab9d7cdb9b4b41e2955570a42103d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa53aeb8f216a804000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000002000002000002000000000000", + "rawtransaction": "020000000001042dafd140772e0bf47690544cd83719c687092f3b3e7544e00838b278fd4d9a7d00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff897698c45f498e492c742e7d1a55e023d2fd78cf9e875a9627513a3dfc51ef3800000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffe98095e79d8da4da9ed4b40cf87a29e05cac525f4fa1ac36b202613a9e2db9c300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffcae093ed649f416658e00db2ff3d538b100bf1a059d588c55fb1a2e295ecac4f00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000695121023cf57dde790755c5ff58d9173149e9811c54e9c485aa132df9cfc1d1db14adbe210246c05baa39732734250966b84aad8af39af3dbd4ba78d8f2f1efb998feb37cfe21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee8030000000000006951210223f57dde790755c5ff8bd915b19ec0baa841a5f1a875275bb78d82d7c68f47152102d73eda43574524a282fbf1fd5b5c4153551ef2cccc8a28b2f1efbc7b9e3bb8ff21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aeb8f216a804000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5100,7 +5100,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5117,7 +5117,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5131,7 +5131,7 @@ "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101d1b8b18532596a0e5b6ecd464bc6acebba323ba5197b223c8ab7e5607785ef8600000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000356a33901f75d51d4fe62503d92bac7343d27ae664de8c7ac14ec2249a9748b8a151749610e289ced462c7d7ca584c1633c4d790c4e237b8052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101d912ed19e99eb07b99aecb51bc60a4ccc44c944e66cb4b73366f65847e62054a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000356a33e495e847659fcfe4893f72de8a02527233c46af5dc6603da031fbb9f65860401a1e113dfcdcc952e40757c939623814510f3cc37b8052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5153,8 +5153,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5170,19 +5170,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f79a85330dcd51af085ea7f01c8fda7041c67dbe", + "data": "434e54525052545902000000000000000100000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "020000000001014c51627eef5104002dcc1fd1e8677d60350ee7f48182880da49c9a9fdcbfdb6e00000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000306a2e22f5e2f27fd4e63c9aaa0ac8b58cbee6e81726be1ed6d14c04eed50a7aabff8719d6ff22a383f14d15346aea85ed5cb9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101dd1254839ca7a3fa1072304cb33451da3da060e1baa5b53cc849c38d449993eb00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000306a2eb5a9802f8c68c5add309fd3cd593f93fc02f601000dbfe99c9fa80af913d0ceac89066884e339f45b192811070895cb9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "quantity_normalized": "0.00001000" } @@ -5192,23 +5192,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f79a85330dcd51af085ea7f01c8fda7041c67dbe07ffff", + "data": "434e5452505254590480e96e360396a7f2974511f1cba0cfed291876f2f007ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001014a4e16c95f136179216ad70a3bca2c703f3abbdc185339e124f760b0e710162700000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000236a21361a816cbd2b097162e660245175148a745c149b5e148e9e73a7c6b9abae34e3fb57bc052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "020000000001017737ef6341dbf734dd761edfbf90b6be63c1958ca0d4a6c40f619ab54c2a0d4500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2151b299581a5434248cbd6aed0242139077d384e9f60f10be3c96c9432c72e5d03e57bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "flags": 7, "memo": "ffff" } @@ -5218,8 +5218,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "quantity": 1000 }, "name": "dispense", @@ -5228,7 +5228,7 @@ "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "020000000001010535e7b336799fb1a0dc190a91668122df1509912cb99d362de9c9648fea1d8d03000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbeffffffff03e803000000000000160014cc1251040fa17ccd55028e8520b943c0b4e443de00000000000000000c6a0a3a29e0bf0b39bde6e3bd8a25082701000000160014f79a85330dcd51af085ea7f01c8fda7041c67dbe02000000000000", + "rawtransaction": "020000000001015b3e036c8d39cc17b35af8706aceb23d49118ac30bafa35cacc54e81cf44e82b03000000160014e96e360396a7f2974511f1cba0cfed291876f2f0ffffffff03e803000000000000160014c58eed43bc91be9d740cba73bd1624dd1511f02500000000000000000c6a0ac4f094f43110f276ecc08a25082701000000160014e96e360396a7f2974511f1cba0cfed291876f2f002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5241,7 +5241,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5272,7 +5272,7 @@ "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "020000000001015da08d1dac44d3621c5eb212a51003f8a252990cc407f6ff2077a3ec08b221d200000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000316a2f356977210af8a1039611bcbe16d8b3de56128f9397f2b4a73d1940559203a8db236ae6863339bd8c685e9a7c710fd221b9052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101cd456e236d2bfadbe1dcaa1b453e6e3bc2c746f5155bdc822b3495b4b532421c00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000316a2fdc33cb33f7341f6e4a30f17d7b409a3610726e6240cf4d9111b03d6efa42990020db28fd571d66d428bc5613e7540021b9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5307,13 +5307,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5325,7 +5325,7 @@ "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101a65bf655e86e2b404c216632cd4878ffd434b2ed80a264589551314f422e667400000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff020000000000000000166a14c1e2aa8f0b3ed5aba33ac66798d2136fed07eacf52bf052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101caf35c27c90d91d43e170ac5f26d6bfe176161ee25302dc0ecc052475259530500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000166a142feb40016ce2506117457ce6bc754b27fc20436d52bf052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5337,13 +5337,13 @@ } } }, - "/v2/addresses/
/compose/utxo": { - "error": "Disbaled. Please use `attach` or `detach` instead." + "/v2/addresses/
/compose/attach_old": { + "error": "Disbaled. Please the new `attach` or `detach` instead." }, "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5362,7 +5362,7 @@ "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "020000000001011dbc604ce7e37a1acc31f6e3c06de97a71c06c4f8013409f6a4332e478ee333500000000160014d60c806085c49fc50e0ad53c52888227322c5b49ffffffff032202000000000000160014d60c806085c49fc50e0ad53c52888227322c5b490000000000000000146a12bb0cafd2f03b1778540315a0ee0efd4196f6dab5052a01000000160014d60c806085c49fc50e0ad53c52888227322c5b4902000000000000", + "rawtransaction": "02000000000101ec9bff73a8a0ebb0d55455a2c391d5badf69caa6ea2967f8e83694f6f11e5f4000000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000146a1266cc3480f38f6b11f1bae2bbe607793334afdab5052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5375,24 +5375,27 @@ } } }, + "/v2/utxos//compose/detach_old": { + "error": "Disbaled. Please the new `attach` or `detach` instead." + }, "/v2/utxos//compose/detach": { "result": { "params": { - "source": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" + "source": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" }, "name": "detach", - "data": "434e545250525459666263727431713663786771637939636a30753272733236353739397a797a7975657a636b3666733630366d6c", + "data": "434e545250525459666263727431713675356e686470336673366a6d6865357765387976736378726b6437347930376a686e6a3376", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "02000000000102779b98f8ff06c01644769b6eab68d2c8989c0f7a2830d4138938881b699d965500000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff689ebd6d6f85a36b3b710a59ab65505a5e63804b5f13640cdf1aa7b2af77110401000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c867ffffffff020000000000000000376a356ee41bc054780a03e26f61a036227d474e203cd1c1a8ffab6d2e4f9f8401dab48eb5da87676d2ca8c9a1a3ed75657df5bf22df0044772c0a2701000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86702000002000000000000", + "rawtransaction": "020000000001027edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff55ce15846566fb8ada653250e7348d199054b4312a6b20bbf616567b15e82131010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff020000000000000000376a35da5ac2b160bed5c53a29f37535967eb499e52f880ebe6c2cd982ec6cec757adff49f5cd6826e9a4d5ea7dbbec0b563f418a3817b5f772c0a27010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b902000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml" + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" } } } @@ -5403,8 +5406,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -5412,16 +5415,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730457404, - "last_issuance_block_time": 1730457404, + "first_issuance_block_time": 1730463766, + "last_issuance_block_time": 1730463766, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "owner": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "owner": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false, "supply": 100000000000, @@ -5429,16 +5432,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730457376, - "last_issuance_block_time": 1730457376, + "first_issuance_block_time": 1730463740, + "last_issuance_block_time": 1730463740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -5446,16 +5449,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730457223, - "last_issuance_block_time": 1730457241, + "first_issuance_block_time": 1730463571, + "last_issuance_block_time": 1730463589, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "owner": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "issuer": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "owner": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "divisible": true, "locked": false, "supply": 100000000000, @@ -5463,16 +5466,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730457219, - "last_issuance_block_time": 1730457219, + "first_issuance_block_time": 1730463567, + "last_issuance_block_time": 1730463567, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 100000000000, @@ -5480,8 +5483,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730457182, - "last_issuance_block_time": 1730457182, + "first_issuance_block_time": 1730463526, + "last_issuance_block_time": 1730463526, "supply_normalized": "1000.00000000" } ], @@ -5493,8 +5496,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "owner": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false, "supply": 10000000000, @@ -5502,15 +5505,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730457074, - "last_issuance_block_time": 1730457086, + "first_issuance_block_time": 1730463416, + "last_issuance_block_time": 1730463428, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5518,14 +5521,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5533,7 +5536,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5546,7 +5549,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5568,9 +5571,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5585,7 +5588,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5611,9 +5614,9 @@ }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5628,7 +5631,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5654,9 +5657,9 @@ }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5671,7 +5674,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5697,9 +5700,9 @@ }, { "tx_index": 60, - "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "block_index": 210, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5714,7 +5717,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5740,9 +5743,9 @@ }, { "tx_index": 53, - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5757,7 +5760,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5788,13 +5791,13 @@ "/v2/assets//matches": { "result": [ { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5808,7 +5811,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5828,13 +5831,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 53, - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5848,7 +5851,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5868,13 +5871,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", "tx0_index": 50, - "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 51, - "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5888,7 +5891,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5908,13 +5911,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5928,7 +5931,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5955,20 +5958,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "event": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5976,20 +5979,20 @@ }, { "block_index": 125, - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", + "event": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -5997,20 +6000,20 @@ }, { "block_index": 124, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6018,20 +6021,20 @@ }, { "block_index": 124, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "event": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6043,16 +6046,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6070,12 +6073,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -6087,16 +6090,16 @@ }, { "block_index": 209, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -6108,16 +6111,16 @@ }, { "block_index": 208, - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -6129,16 +6132,16 @@ }, { "block_index": 207, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -6150,16 +6153,16 @@ }, { "block_index": 206, - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -6182,14 +6185,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", + "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6204,20 +6207,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6232,20 +6235,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6260,20 +6263,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -6288,7 +6291,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730457074, + "block_time": 1730463416, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6300,10 +6303,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6311,7 +6314,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -6324,10 +6327,10 @@ }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6335,7 +6338,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -6348,10 +6351,10 @@ }, { "tx_index": 75, - "tx_hash": "534cc4dde6422ce5541e8c19cb524b4607527d6b33c542cab134414a725209e7", + "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", "block_index": 208, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6359,7 +6362,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "asset_info": { "divisible": true, "asset_longname": null, @@ -6372,10 +6375,10 @@ }, { "tx_index": 74, - "tx_hash": "733d05fd5060e624a8cc48f56150bb3e7b20c5dcc31c702095da70dcb1ae1b42", + "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", "block_index": 207, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6383,7 +6386,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457436, + "block_time": 1730463787, "asset_info": { "divisible": true, "asset_longname": null, @@ -6396,10 +6399,10 @@ }, { "tx_index": 73, - "tx_hash": "71a4600e749ce091eb501f099a4c6dc25c5c8dea98b15df4f270fa98ea5e9d2c", + "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", "block_index": 206, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6407,7 +6410,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457421, + "block_time": 1730463783, "asset_info": { "divisible": true, "asset_longname": null, @@ -6426,9 +6429,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6437,7 +6440,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6447,7 +6450,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6463,9 +6466,9 @@ }, { "tx_index": 29, - "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", + "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", "block_index": 142, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6474,7 +6477,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6484,7 +6487,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457161, + "block_time": 1730463504, "asset_info": { "divisible": true, "asset_longname": null, @@ -6500,9 +6503,9 @@ }, { "tx_index": 30, - "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", + "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", "block_index": 150, - "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", + "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6510,10 +6513,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6521,7 +6524,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457189, + "block_time": 1730463534, "asset_info": { "divisible": true, "asset_longname": null, @@ -6537,18 +6540,18 @@ }, { "tx_index": 33, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6558,7 +6561,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -6579,9 +6582,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6590,7 +6593,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6600,7 +6603,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6628,7 +6631,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6636,7 +6639,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6645,7 +6648,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6653,7 +6656,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6662,7 +6665,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6670,7 +6673,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6679,7 +6682,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6694,27 +6697,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6729,7 +6732,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -6743,27 +6746,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", + "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", "block_index": 147, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6778,7 +6781,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457178, + "block_time": 1730463523, "asset_info": { "divisible": true, "asset_longname": null, @@ -6792,19 +6795,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6812,7 +6815,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6827,7 +6830,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -6841,19 +6844,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6861,7 +6864,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6876,7 +6879,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -6899,10 +6902,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6927,7 +6930,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6945,22 +6948,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f742259e6319d49f10b7f8c522743052e7e90e7e60cd2218833f6fdf71b4fa80", + "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", "tx_index": 13, "block_index": 125, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6969,22 +6972,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42", + "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", "tx_index": 12, "block_index": 124, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457081, + "block_time": 1730463424, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -6993,22 +6996,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7023,22 +7026,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "5cc2b2f4045bf601632319c11d806cf379030093f228fdc1e444a4fbab78bb73", + "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", "tx_index": 11, "block_index": 123, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457077, + "block_time": 1730463420, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -7054,9 +7057,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7071,7 +7074,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7097,9 +7100,9 @@ }, { "tx_index": 53, - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7114,7 +7117,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7140,9 +7143,9 @@ }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7157,7 +7160,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7183,9 +7186,9 @@ }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7200,7 +7203,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7226,9 +7229,9 @@ }, { "tx_index": 60, - "tx_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "block_index": 210, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7243,7 +7246,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7274,9 +7277,9 @@ "/v2/orders/": { "result": { "tx_index": 55, - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "block_index": 211, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7291,7 +7294,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7319,13 +7322,13 @@ "/v2/orders//matches": { "result": [ { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7339,7 +7342,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7366,15 +7369,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "btc_amount": 2000, - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "status": "valid", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "btc_amount_normalized": "0.00002000" } ], @@ -7385,9 +7388,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "block_index": 188, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7405,7 +7408,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730457326, + "block_time": 1730463690, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7431,9 +7434,9 @@ }, { "tx_index": 55, - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "block_index": 211, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7451,7 +7454,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730457461, + "block_time": 1730463822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7477,9 +7480,9 @@ }, { "tx_index": 50, - "tx_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", + "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", "block_index": 185, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7497,7 +7500,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457258, + "block_time": 1730463606, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7523,9 +7526,9 @@ }, { "tx_index": 52, - "tx_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", + "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", "block_index": 208, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7543,7 +7546,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457439, + "block_time": 1730463791, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7569,9 +7572,9 @@ }, { "tx_index": 58, - "tx_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", + "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", "block_index": 193, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7589,7 +7592,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457355, + "block_time": 1730463719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7620,13 +7623,13 @@ "/v2/orders///matches": { "result": [ { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7643,7 +7646,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7663,13 +7666,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 53, - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7686,7 +7689,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457326, + "block_time": 1730463690, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,13 +7709,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", "tx0_index": 50, - "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 51, - "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7729,7 +7732,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457258, + "block_time": 1730463606, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7749,13 +7752,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7772,7 +7775,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7798,13 +7801,13 @@ "/v2/order_matches": { "result": [ { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7818,7 +7821,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7838,13 +7841,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", "tx0_index": 52, - "tx0_hash": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 53, - "tx1_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7858,7 +7861,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730457326, + "block_time": 1730463690, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7878,13 +7881,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72_a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", + "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", "tx0_index": 50, - "tx0_hash": "3ea1286777ccefdca280b2caab2d2b4e73fe69b8fb932baaeb8b9b79a09f4d72", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 51, - "tx1_hash": "a6a89f358b48f39e08f30a5807ec6d6fbf3ef1f42792a5b8bec0437a8536bb3d", - "tx1_address": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7898,7 +7901,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730457258, + "block_time": 1730463606, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7918,13 +7921,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx0_index": 60, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx1_index": 55, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7938,7 +7941,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7983,66 +7986,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", + "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", "block_index": 121, - "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", + "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730457070, + "block_time": 1730463412, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "4ed0d8ac42583a4dd760135e1920ed1f67700c40113bb32072538558e539846a", + "tx_hash": "2fa2f6c16e5a850f7309eda42a0d73357dbc3d3e215e19659d3512c88087b3d9", "block_index": 120, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730457067, + "block_time": 1730463408, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "a9636d72a99630b9a931b4dc6aea179040f5b9323e9df4eb38a9335b03519da9", + "tx_hash": "cd462b8e18ccadeed2abce5b0069fbcf504c66116c9e5a6aa0560ee8d4197a04", "block_index": 119, - "source": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx", + "source": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730457064, + "block_time": 1730463403, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "be136b6b3c2318510c906d4d3ce08fce012e799cb97af6bd10d444147de65f94", + "tx_hash": "c0287b7539b3c2d2bfbdb2186d66d8d7c6c8974533018cc78a5cc56fd51f6d9e", "block_index": 118, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730457060, + "block_time": 1730463399, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "bb2802e09f27213fe8014bb97c8590ab63bc9ebd8b168a81a133f6d2088a2171", + "tx_hash": "c5537fcd875e0cac68401eadb3009889f858bd22e07207f365101c273aaec5ad", "block_index": 117, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730457057, + "block_time": 1730463396, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8054,9 +8057,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8065,7 +8068,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8075,7 +8078,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -8091,9 +8094,9 @@ }, { "tx_index": 29, - "tx_hash": "74736506191fa3f552fc2d41024e743a604bd5c438a376181831d3d24d5f13f8", + "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", "block_index": 142, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8102,7 +8105,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8112,7 +8115,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457161, + "block_time": 1730463504, "asset_info": { "divisible": true, "asset_longname": null, @@ -8128,9 +8131,9 @@ }, { "tx_index": 30, - "tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", + "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", "block_index": 150, - "source": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", + "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8138,10 +8141,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "db86a6d2c808a302e85e0d6f048547bb83e1f38dedcfce9932895e16889127d8", - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8149,7 +8152,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457189, + "block_time": 1730463534, "asset_info": { "divisible": true, "asset_longname": null, @@ -8165,9 +8168,9 @@ }, { "tx_index": 63, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8176,7 +8179,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8186,11 +8189,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8202,18 +8205,18 @@ }, { "tx_index": 33, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8223,7 +8226,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -8244,9 +8247,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8255,7 +8258,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8265,7 +8268,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -8285,19 +8288,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8305,7 +8308,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8320,7 +8323,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -8334,19 +8337,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8354,7 +8357,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8369,7 +8372,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -8388,20 +8391,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8422,20 +8425,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8458,12 +8461,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "event": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "tx_index": 42, - "utxo": "4273329b0ed940a3418d01e39140ca0b8ba8c039bbbcaaba284dceed73da338a:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "utxo": "ddc33af9e516e76d76656655d33c03f82db0508bbe26d0502b1641b3595bbeca:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "confirmed": true, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "divisible": true, "asset_longname": null, @@ -8484,27 +8487,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 704, @@ -8513,14 +8516,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -8531,9 +8534,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 703, @@ -8542,9 +8545,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -8554,24 +8557,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -8581,9 +8584,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 701, @@ -8595,15 +8598,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } }, "/v2/events/counts": { @@ -8638,16 +8641,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -8657,9 +8660,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 700, @@ -8669,12 +8672,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -8684,9 +8687,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 697, @@ -8696,39 +8699,39 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", - "utxo_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "block_time": 1730457461, + "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730457447, + "block_time": 1730463809, "asset_info": { "divisible": true, "asset_longname": null, @@ -8738,24 +8741,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -8765,9 +8768,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_time": 1730457443 + "block_time": 1730463804 } ], "next_cursor": 669, @@ -8784,27 +8787,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8819,7 +8822,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -8833,19 +8836,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "48fe19939dae9746fd44a0e37ba325bc09a0b4e526b9e5d76a558e8a6c480801", + "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8853,7 +8856,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8868,11 +8871,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457373, + "block_time": 1730463736, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -8882,27 +8885,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e04bb6e45d357fe81a0f3543698ebb676d46f93e3501752f5485e6ae41ebb440", + "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", "block_index": 147, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "last_status_tx_hash": null, - "origin": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8917,7 +8920,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730457178, + "block_time": 1730463523, "asset_info": { "divisible": true, "asset_longname": null, @@ -8931,19 +8934,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8b711cdab63935ba45680b5b68ff262ef201523c71929e432358ff5bf4636a53", + "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8951,7 +8954,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8966,7 +8969,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457158, + "block_time": 1730463500, "asset_info": { "divisible": true, "asset_longname": null, @@ -8980,19 +8983,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d26111646954825c4ddef53d4ed59ca6bafc528f7f0f1f6a493b7793b3ad569f", + "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", "block_index": 140, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "f062aeaca541b933d2b24cded9e59b4eb30ca5a632492aa457150f92d315af8a", + "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9000,7 +9003,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9015,7 +9018,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730457154, + "block_time": 1730463496, "asset_info": { "divisible": true, "asset_longname": null, @@ -9034,10 +9037,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9045,7 +9048,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -9058,10 +9061,10 @@ }, { "tx_index": 78, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9069,11 +9072,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9082,10 +9085,10 @@ }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9093,7 +9096,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -9106,10 +9109,10 @@ }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9117,11 +9120,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9130,10 +9133,10 @@ }, { "tx_index": 76, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9141,11 +9144,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9160,14 +9163,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -9182,20 +9185,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "a42d1d8f4f2aa464d070bbad898115de8c501af0ca596b0e18f70dfeed5f3a91", + "tx_hash": "9cbd87c824c325c9e3b3929e4b808ed0116b78788bdfd287d9850b03c9484a23", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "transfer": false, "callable": false, "call_date": 0, @@ -9210,20 +9213,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457376, + "block_time": 1730463740, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "15ffb01f8060ea2118bcf4960df321e1be62579abce8c1aa525a641ef2ff9d92", + "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -9238,20 +9241,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457245, + "block_time": 1730463592, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "82e91b79faacf924a0804af8656e8cee7e65091e7d24bb453c377f53407d2f50", + "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -9266,20 +9269,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730457241, + "block_time": 1730463589, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "35c4d97dec4f379db00e3d0bbf9b1345343c42f09c55e33b9a0ecdd4c7e068fd", + "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -9294,7 +9297,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457227, + "block_time": 1730463576, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9305,14 +9308,14 @@ "/v2/issuances/": { "result": { "tx_index": 71, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "transfer": false, "callable": false, "call_date": 0, @@ -9327,7 +9330,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9336,16 +9339,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -9356,16 +9359,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" } ], @@ -9376,9 +9379,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9386,14 +9389,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457145, + "block_time": 1730463489, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "59e17381b432ede187e8f7ad3d28d09127b2d2565e10d1b24b2c5c817af3c5f6", + "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", "block_index": 137, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9401,7 +9404,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457142, + "block_time": 1730463485, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9411,9 +9414,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9421,17 +9424,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730457145, + "block_time": 1730463489, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9456,7 +9459,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9465,10 +9468,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9493,7 +9496,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730457133, + "block_time": 1730463476, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9505,10 +9508,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9533,7 +9536,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730457108, + "block_time": 1730463452, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9545,10 +9548,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9573,7 +9576,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730457105, + "block_time": 1730463449, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9585,10 +9588,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b56bab966093a261b865062737bf1f43651f7cd1e7c37ca16519e59570b9ce28", + "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9613,7 +9616,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730457086, + "block_time": 1730463428, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9631,22 +9634,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9655,22 +9658,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc5ee5321fee4eeb1be6692c4b07c1a655aaece84212edddf29a76fb43070fcf", + "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", "tx_index": 21, "block_index": 134, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457129, + "block_time": 1730463473, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9679,22 +9682,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "c8c556524c9f5a202bc702d0623384c20fd677d71059e0f9c83d819a5fbc2383", + "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", "tx_index": 20, "block_index": 133, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457116, + "block_time": 1730463468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9703,22 +9706,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9eb443ad1f32fe7906c5b36c637300118aa8d368a806a2581916a037ca4a5b53", + "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", "tx_index": 19, "block_index": 132, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "00a20dd39f8eb1a89b789419e8d7c8abfdae0e343627b5901bd4c087f91e62d2", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457112, + "block_time": 1730463455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9727,22 +9730,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e6b7351251a0177d771a4480fe83ea9f4106301b80cc2fe3d2c09039da01387d", + "tx_hash": "561ea3f3b54e722693cac52fd446e9f03cc41aa6a33ef2d7edec8ee44c871be8", "tx_index": 17, "block_index": 129, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "fairminter_tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457101, + "block_time": 1730463445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9756,22 +9759,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, "block_index": 136, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -9788,26 +9791,26 @@ "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", - "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" }, { - "vout": 1, - "height": 202, + "vout": 0, + "height": 203, "value": 546, - "confirmations": 10, + "confirmations": 9, "amount": 5.46e-06, - "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", - "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" }, { - "vout": 0, - "height": 203, + "vout": 1, + "height": 202, "value": 546, - "confirmations": 9, + "confirmations": 10, "amount": 5.46e-06, - "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", - "address": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5" + "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" }, { "vout": 2, @@ -9815,8 +9818,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df", - "address": "bcrt1qyeqwt90kqfnx38h8a9lyv5ampxnm06dq39zyvx" + "txid": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41", + "address": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq" } ], "next_cursor": null, @@ -9825,25 +9828,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "d2e042faaa6ba6293a8b0b819a0ccfbf3c9a12be6dfdda64d53752126fc80940" + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" }, { - "tx_hash": "470a3a99bed3a9d566aca68cd8c6f07f0d310f35c09a6d054abbc857ab57da42" + "tx_hash": "e4cbd84c212c0d85e0bc0ff0973493d51fb6943ce10eef36e319c57c93abf44b" }, { - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50" }, { - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d" + "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c" }, { - "tx_hash": "885180138abe846d2edd32fd9d2c85863068c0a9c69e9a66fc7e430077339ab5" + "tx_hash": "9b9193cd55f4b64910cdb1b18f4eafe8a72e8c6373631fba1f83c26d5c8751d7" }, { - "tx_hash": "37a112f7c59400955e4ba5d026dd7dc3c90c55f93559a68adaf2cd9b1b23d1ca" + "tx_hash": "fa12a032e01d27adbdca71be9acc1f1ca76aeca8031a6e1d4f5a6168383a1ef7" }, { - "tx_hash": "1bcfb5a88b505cec97f883f2b95a14bca632d7a2b66e30a40bba7584335d51d1" + "tx_hash": "62a86c538277f9812ed919d12ec84ae82ec04b0ed39374e81ece7ce3e46772ff" } ], "next_cursor": null, @@ -9851,27 +9854,19 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "610fd764366a4234557860e36b878bafffc8db6375b0926aaf1d007b5a040b9e" + "block_index": 7, + "tx_hash": "4919bd36f63f4582744c1bb90c38305a665de2724c9c2274077637bc852ec538" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb" - }, { "vout": 1, "height": 210, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b" + "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" }, { "vout": 1, @@ -9879,17 +9874,25 @@ "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f" + "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a" + }, + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03d512af90ecdb3de5369d8046e3317fae291a32f5d5b0a264ae31718376d51dfa" + "result": "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101df410f0963d8995e86d62621d5713b59929e6177f3f0cfea7e8753ad23f3d76e0100000000ffffffff03e803000000000000160014f9d5f5f992ea9ef0da63084cc102ccdb6ca2c86700000000000000000c6a0a84523c205929ea206dc5eb1409270100000016001420c62b4494792dcc3a836352dd61cdabfef8e9d80247304402205fbab6bbd9e3f9aea22d03ca6f29bfabc63d227d54ccbe81727ef2ef555be28e022016378b2351bb6e0ea7160e0d698a3dcc709a1ea6405c4fefb786ad21a7c4eac1012102afa25c58d2ed1a855691557311338a22c5d0b7a78b199fc03e8f0aef941cda3100000000" + "result": "02000000000101413aa22da9b929934ee408dc970b36077cb7c87b70b069e0b8a1d7bb9f8e43bf0100000000ffffffff03e8030000000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b900000000000000000c6a0ab0d6c528b8839b96be74eb1409270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e024730440220630afa3b3683f914d74fe679507cfae30bd56d77af98e6c9eee69319897592f502206f9e10ebb8de21e010da7fc9bdcc0956e5bcefa377097ef6a4e2273d530a46cd01210371e58ba1571b65021affd211df2b0f5d0ca74f2eb50e3a23c4ec4753ffebf88400000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58706 @@ -9912,27 +9915,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79 }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "quantity": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, "asset_info": { "divisible": true, @@ -9943,22 +9946,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -9968,22 +9971,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "block_index": 211, - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -9993,30 +9996,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730457465.690188, + "block_time": 1730463825.660409, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "destination": "", "fee": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, - "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", + "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -10030,7 +10033,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -10039,19 +10042,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -10061,7 +10064,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -10070,27 +10073,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79 }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "quantity": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, "asset_info": { "divisible": true, @@ -10101,22 +10104,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "CREDIT", "params": { - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -10126,22 +10129,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "asset": "XCP", "block_index": 211, - "event": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -10151,30 +10154,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 }, { - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730457465.690188, + "block_time": 1730463825.660409, "btc_amount": 0, - "data": "0200000000000000010000000000002710802d6572615ae688894a6d6120934e97d3eb7220e4", + "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", "destination": "", "fee": 10000, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", - "tx_hash": "57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", "tx_index": 79, - "utxos_info": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15:1 57df4874f057b472e3468e9a79c7e29b20807dd3e5ec8696dd2c20883cb8cac8:1 2 ", + "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "memo": null, "asset_info": { "divisible": true, @@ -10188,7 +10191,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730457465.690188 + "timestamp": 1730463825.660409 } ], "next_cursor": null, @@ -10210,15 +10213,15 @@ "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", "block_index": 211, - "block_time": 1730457461, + "block_time": 1730463822, "difficulty": 545259519, - "previous_block_hash": "65494d94dd92fda4182f2a89115dba054d8c0b5e7b028c55e34e708101c132a0" + "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d" }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 678, @@ -10230,17 +10233,17 @@ "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "246f330b2f2f1cef5b10a6fbc14773723a6f182ae3d4ef66aeaae6e53b3f4bee", + "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", "block_index": 211, - "block_time": 1730457461, + "block_time": 1730463822, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "fee": 0, - "source": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "utxos_info": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1 55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0 3 1", + "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10250,9 +10253,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 679, @@ -10266,16 +10269,16 @@ "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "out_index": 0, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 565, @@ -10288,15 +10291,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "7be4a560cf00c2927aa80413697c82b01f45e764af7a6cd82d5795d0b0bf62f3", - "messages_hash": "a69ac93130adc002b21bad98f17c66289fa35e3344f5c9e694d1b1f132d3d40e", + "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", + "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", "transaction_count": 1, - "txlist_hash": "fb044cd07604dcac8029990bb8ce795ff746b0799b446decf2cffbccb6fbb793", - "block_time": 1730457461 + "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", + "block_time": 1730463822 }, "tx_hash": null, "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 690, @@ -10309,12 +10312,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 689, @@ -10330,12 +10333,12 @@ "address": null, "asset": "XCP", "block_index": 211, - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 2000000000, "tx_index": 78, - "utxo": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", - "utxo_address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", - "block_time": 1730457461, + "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -10345,9 +10348,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 696, @@ -10359,16 +10362,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -10378,9 +10381,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 700, @@ -10394,26 +10397,26 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "memo": null, "quantity": 1000, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "tx_index": 72, - "block_time": 1730457408, + "block_time": 1730463779, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "081966a0ad4f1383bbb4e9e0dae2fcc9ae9d07fa18fe0680d0ea1d11e5dd263f", + "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", "block_index": 205, - "block_time": 1730457408 + "block_time": 1730463779 } ], "next_cursor": 505, @@ -10427,15 +10430,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "tx_index": 76, - "block_time": 1730457443, + "block_time": 1730463804, "asset_info": { "divisible": true, "asset_longname": null, @@ -10445,9 +10448,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8d1dea8f64c9e92d369db92c910915df228166910a19dca0b19f7936b3e73505", + "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", "block_index": 209, - "block_time": 1730457443 + "block_time": 1730463804 } ], "next_cursor": 674, @@ -10470,20 +10473,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "status": "valid", - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "tx_index": 61, - "block_time": 1730457362, + "block_time": 1730463725, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "827641bc9473f2ac531c6941086e9d0c1d14afb59aa87f2c1e7be93bd1111e5d", + "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", "block_index": 195, - "block_time": 1730457362 + "block_time": 1730463725 } ], "next_cursor": null, @@ -10500,15 +10503,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "tx_index": 42, - "block_time": 1730457209, + "block_time": 1730463553, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -10522,9 +10525,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "f0b91c4a0649af8cd91d5817b64c9cdbc9db0651bd943737545321c3c456ab70", + "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", "block_index": 155, - "block_time": 1730457209 + "block_time": 1730463553 } ], "next_cursor": null, @@ -10545,11 +10548,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730457404 + "block_time": 1730463766 }, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_time": 1730457404 + "block_time": 1730463766 } ], "next_cursor": 574, @@ -10572,22 +10575,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", "transfer": false, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "tx_index": 71, - "block_time": 1730457404, + "block_time": 1730463766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "d0e52835b3a02d8b99291b8f6fe9f15282c92782f4d2bb78b195e60edfa252c5", + "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", "block_index": 204, - "block_time": 1730457404 + "block_time": 1730463766 } ], "next_cursor": 575, @@ -10602,12 +10605,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qesf9zpq0597v64gz36zjpw2rcz6wgs77cun54c", + "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", "status": "valid", "tag": "64657374726f79", - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "tx_index": 62, - "block_time": 1730457366, + "block_time": 1730463730, "asset_info": { "divisible": true, "asset_longname": null, @@ -10617,9 +10620,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "9eef487d12c4916ee2bed2b4b9a9961617564262554c6a44b8574661e1218e15", + "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", "block_index": 196, - "block_time": 1730457366 + "block_time": 1730463730 } ], "next_cursor": 157, @@ -10644,15 +10647,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "status": "open", - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "tx_index": 77, - "block_time": 1730457447, + "block_time": 1730463809, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, @@ -10672,9 +10675,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 536, @@ -10692,20 +10695,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "9e49735e3e8a4b63b52525cc46976c0feeeeccb434120826d57daafeb9b3a5f2", + "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", "tx0_index": 60, - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "tx1_index": 55, - "block_time": 1730457447, + "block_time": 1730463809, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10724,9 +10727,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 498, @@ -10739,11 +10742,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49" + "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 685, @@ -10756,11 +10759,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed" + "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361" }, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "block_time": 1730457326 + "block_time": 1730463690 } ], "next_cursor": null, @@ -10772,13 +10775,13 @@ "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", + "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", "status": "expired" }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 488, @@ -10792,18 +10795,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_d3a4b44a5062adfce07ef3c684fcf3fb4b293899ab47ebd1fd704b70dc43a1ed", - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "tx_index": 54, - "block_time": 1730457326, + "block_time": 1730463690, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0ffb11ab59a537e3162234e54fc566b190fc63e974f2db43948efd72bef79873", + "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", "block_index": 188, - "block_time": 1730457326 + "block_time": 1730463690 } ], "next_cursor": null, @@ -10816,16 +10819,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "350e7233be62580cff8d3c3cad6769ef6e48dcc231066c3ac44c140354862a7c", - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": "valid", - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "tx_index": 59, - "block_time": 1730457355 + "block_time": 1730463719 }, - "tx_hash": "77f9a5612bd956522d12f54649dc022f53e3a2a95c3cb0b2933da10c1a585cda", + "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", "block_index": 193, - "block_time": 1730457355 + "block_time": 1730463719 } ], "next_cursor": null, @@ -10838,13 +10841,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "source": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "block_time": 1730457461 + "order_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_time": 1730463822 }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 655, @@ -10857,14 +10860,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "dd2baf5e8235ed2f9e33c27583145f165d14200230eefb04a5eefd6826d86d58_58f8cf6453bd0047fd298eccec2e40885aedf2cbdbba34a623112807e7225d49", - "tx0_address": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "tx1_address": "bcrt1q94jhyc26u6ygjjndvysfxn5h604hyg8y4kry9f", - "block_time": 1730457447 + "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_time": 1730463809 }, - "tx_hash": "d0bd26668b0710d16f4061cb9165941d8c6f9492fe81b1ab046f1d95c03da30b", + "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", "block_index": 210, - "block_time": 1730457447 + "block_time": 1730463809 } ], "next_cursor": 464, @@ -10883,17 +10886,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "satoshirate": 1, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "status": 0, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "tx_index": 63, - "block_time": 1730457370, + "block_time": 1730463733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -10902,9 +10905,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5a847b591696204e451d990305ef75a214237f344bca8f39d1ce701bd82f3191", + "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", "block_index": 197, - "block_time": 1730457370 + "block_time": 1730463733 } ], "next_cursor": 272, @@ -10919,9 +10922,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": 0, - "tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", + "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", "asset_info": { "divisible": true, "asset_longname": null, @@ -10931,9 +10934,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 567, @@ -10947,13 +10950,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "myKG3SkPpwJCQtSyrT6rCuAryftf1Li2TA", + "destination": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", "dispense_quantity": 10, - "dispenser_tx_hash": "34e4480faf5a40da7b56748116234b0a4f11a997e01504cadab781b7c816eafb", - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", - "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", + "dispenser_tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", "tx_index": 31, - "block_time": 1730457168, + "block_time": 1730463512, "asset_info": { "divisible": true, "asset_longname": null, @@ -10963,9 +10966,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a08a471baec96bde799c8848cbc4c4aceec5167b379474e7e40f4b80d1659acf", + "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", "block_index": 144, - "block_time": 1730457168 + "block_time": 1730463512 } ], "next_cursor": null, @@ -10980,14 +10983,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qyrrzk3y50ykucw5rvdfd6cwd40l036wcyerg7e", + "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "041177afb2a71adf0c64135f4b80635e5a5065ab590a713b6ba3856f6dbd9e68", - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -10998,9 +11001,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 568, @@ -11015,19 +11018,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1ql82lt7vja200pknrppxvzqkvmdk29jr8d4mzjq", + "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "tx_index": 25, "value": 66600.0, - "block_time": 1730457145, + "block_time": 1730463489, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "babb8182df6a8c8e8efb34cbd96623e523cb0f4e2c8a6986e837e58b86caa6a7", + "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", "block_index": 138, - "block_time": 1730457145 + "block_time": 1730463489 } ], "next_cursor": 213, @@ -11058,12 +11061,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "start_block": 0, "status": "open", - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "tx_index": 43, - "block_time": 1730457212, + "block_time": 1730463558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11071,9 +11074,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "1add82cc60e5ca9b667fc4350b9ad093a72507076a545bc72d7dfb953a757911", + "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", "block_index": 156, - "block_time": 1730457212 + "block_time": 1730463558 } ], "next_cursor": 196, @@ -11086,11 +11089,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "22d880e9aaefa5cf826beab645b3fbc0441deb475632c24ab2924e4a2c0f7038" + "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25" }, "tx_hash": null, "block_index": 130, - "block_time": 1730457105 + "block_time": 1730463449 } ], "next_cursor": 110, @@ -11106,17 +11109,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "9bc4eba49034deb19fcc75a214a4ff788a3cc06032b8a0f3c5bc4ae30da89e98", + "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", "paid_quantity": 34, - "source": "bcrt1q77dg2vcde4g67zz75lcper76wpquvld7qam9hj", + "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", "status": "valid", - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "tx_index": 23, - "block_time": 1730457137, + "block_time": 1730463480, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6cxgqcy9cj0u2rs265799zyzyuezck6fs606ml", + "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", "divisible": true, "locked": false }, @@ -11124,9 +11127,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "a6171d39ca3dfceba1292cdfcbbabd45a554a0acf4ab7371587eafe5209e4427", + "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", "block_index": 136, - "block_time": 1730457137 + "block_time": 1730463480 } ], "next_cursor": 190, @@ -11140,28 +11143,28 @@ "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb:0", + "destination": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "status": "valid", - "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", "tx_index": 70, - "block_time": 1730457400, + "block_time": 1730463762, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c654c21c256632cd4ee104f94e5f29c440f006d4761c7fe85c81d455888113eb", + "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", "block_index": 203, - "block_time": 1730457400 + "block_time": 1730463762 } ], "next_cursor": 584, @@ -11175,28 +11178,28 @@ "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bc6b3439245bf677cfc259486f338be14e9f766fab8bd8de83a51fe37aa71a62:0", + "source": "5758def2e4d90509b23e384c34015252fb7aceacb765bbb2d13fb0e32edf7268:0", "status": "valid", - "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", "tx_index": 69, - "block_time": 1730457397, + "block_time": 1730463757, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs0hzdukyg83cvplg4pawna2qy9fahsrvwh4nj5", + "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d487d49ce1c1111f8ad46956a13db44a4c4e34c87e3bd3878845984d5049a72f", + "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", "block_index": 202, - "block_time": 1730457397 + "block_time": 1730463757 } ], "next_cursor": 311, @@ -11210,14 +11213,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77:0", + "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", "msg_index": 1, "quantity": 2000000000, - "source": "6ed7f323ad53877eeacff0f377619e92593b71d52126d6865e99d863090f41df:1", + "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", "status": "valid", - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "tx_index": 78, - "block_time": 1730457461, + "block_time": 1730463822, "asset_info": { "divisible": true, "asset_longname": null, @@ -11227,9 +11230,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "55969d691b88388913d430287a0f9c98c8d268ab6e9b764416c006fff8989b77", + "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", "block_index": 211, - "block_time": 1730457461 + "block_time": 1730463822 } ], "next_cursor": 698, @@ -11244,17 +11247,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz9khj6svazkwet0lk0zaqfyu2453ef0xq9p95g", + "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", "status": "valid", - "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", + "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", "tx_index": 9, - "block_time": 1730457070, + "block_time": 1730463412, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8bbe6f5a0294e527eba1935a146f7f7e7c4ffe2f436c070d7a6bdff0ba576b44", + "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", "block_index": 121, - "block_time": 1730457070 + "block_time": 1730463412 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 2c024439ea..fa0ed90d05 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -153,7 +153,7 @@ def get_example_output(path, args): def include_in_dredd(group, path): if "/bet" in path: return False - if "/compose/utxo" in path: + if "_old" in path: return False return True From 18d798eee61a3031166700fa54f99cc56fa9c2bb Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 13:37:17 +0000 Subject: [PATCH 032/138] don't change route --- apiary.apib | 4026 ++++++++--------- .../counterpartycore/lib/api/compose.py | 94 +- .../counterpartycore/lib/api/routes.py | 2 - .../counterpartycore/lib/util.py | 12 + .../test/regtest/apidoc/apicache.json | 3527 +++++++-------- 5 files changed, 3687 insertions(+), 3974 deletions(-) diff --git a/apiary.apib b/apiary.apib index 0a528e9de0..d0db16f9ad 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-01 12:23:58.191885. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-01 13:31:16.911960. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", "block_index": 211, - "block_time": 1730463822, + "block_time": 1730467853, "difficulty": 545259519, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d" + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8" }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 678, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", "block_index": 211, - "block_time": 1730463822, + "block_time": 1730467853, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "fee": 0, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 679, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "out_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 690, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 689, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 211, - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "block_time": 1730463822, + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 696, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 700, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "quantity": 1000, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "tx_index": 72, - "block_time": 1730463779, + "block_time": 1730467808, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_time": 1730463779 + "block_time": 1730467808 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_time": 1730463804 + "block_time": 1730467834 } ], "next_cursor": 674, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "status": "valid", - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "tx_index": 61, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "block_time": 1730463725 + "block_time": 1730467755 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "tx_index": 42, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "block_time": 1730463553 + "block_time": 1730467604 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730463766 + "block_time": 1730467805 }, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_time": 1730463766 + "block_time": 1730467805 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", "transfer": false, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "tx_index": 71, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_time": 1730463766 + "block_time": 1730467805 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "tx_index": 62, - "block_time": 1730463730, + "block_time": 1730467760, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "block_index": 196, - "block_time": 1730463730 + "block_time": 1730467760 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "status": "open", - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "tx_index": 77, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, @@ -734,9 +734,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": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 536, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "tx0_index": 60, - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx1_index": 55, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 685, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361" + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407" }, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "block_time": 1730463690 + "block_time": 1730467720 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "status": "expired" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "tx_index": 54, - "block_time": 1730463690, + "block_time": 1730467720, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "block_time": 1730463690 + "block_time": 1730467720 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "tx_index": 59, - "block_time": 1730463719 + "block_time": 1730467749 }, - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "block_index": 193, - "block_time": 1730463719 + "block_time": 1730467749 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "block_time": 1730463822 + "order_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_time": 1730467853 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 655, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "block_time": 1730463809 + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_time": 1730467838 }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "satoshirate": 1, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": 0, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "tx_index": 63, - "block_time": 1730463733, + "block_time": 1730467763, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 197, - "block_time": 1730463733 + "block_time": 1730467763 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", + "destination": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", "dispense_quantity": 10, - "dispenser_tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", + "dispenser_tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", "tx_index": 31, - "block_time": 1730463512, + "block_time": 1730467555, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", + "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", "block_index": 144, - "block_time": 1730463512 + "block_time": 1730467555 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "tx_index": 25, "value": 66600.0, - "block_time": 1730463489, + "block_time": 1730467531, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "block_time": 1730463489 + "block_time": 1730467531 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "start_block": 0, "status": "open", - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "block_index": 156, - "block_time": 1730463558 + "block_time": 1730467607 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25" + "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83" }, "tx_hash": null, "block_index": 130, - "block_time": 1730463449 + "block_time": 1730467503 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "paid_quantity": 34, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "block_index": 136, - "block_time": 1730463480 + "block_time": 1730467525 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362:0", + "destination": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "status": "valid", - "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", "tx_index": 70, - "block_time": 1730463762, + "block_time": 1730467801, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", "block_index": 203, - "block_time": 1730463762 + "block_time": 1730467801 } ], "next_cursor": 584, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "5758def2e4d90509b23e384c34015252fb7aceacb765bbb2d13fb0e32edf7268:0", + "source": "0d5e9c06995871fa17540d39523a675b6a79898ad42e73692c8c9c0be4fe3801:0", "status": "valid", - "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", "tx_index": 69, - "block_time": 1730463757, + "block_time": 1730467798, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", "block_index": 202, - "block_time": 1730463757 + "block_time": 1730467798 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "msg_index": 1, "quantity": 2000000000, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", "status": "valid", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 698, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", + "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", "status": "valid", - "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", + "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", "tx_index": 9, - "block_time": 1730463412, + "block_time": 1730467465, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", + "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", "block_index": 121, - "block_time": 1730463412 + "block_time": 1730467465 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", "difficulty": 545259519, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", - "block_time": 1730463809, - "previous_block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_time": 1730467838, + "previous_block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", "difficulty": 545259519, - "ledger_hash": "35f053e2f1c637213081a0bcfea1ddd2be9aec3cab416f0ebb269782079f78dc", - "txlist_hash": "461a8b263de15651baa99404a13975c16254a53b64f2e90d9498febe8815ad7a", - "messages_hash": "8bb241937064ea12b64845cd3d555de3b4e93eb11e668f783b82c4ec30460b81", + "ledger_hash": "eee6dfd34d392fd1c8fee996f34c341a269ca3cbfd4f49672f0f2264d73e896c", + "txlist_hash": "850374bac6ec2e9540912a6cb9fc20ef7e43e54ea74b6ef5a472cc21c11f1e88", + "messages_hash": "0065dd2b2d9b77d862befd4b4d9dccdb54b6a85385581c55fd3d033abd51b386", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", - "block_time": 1730463804, - "previous_block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", + "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_time": 1730467834, + "previous_block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", "difficulty": 545259519, - "ledger_hash": "cd46a366583657374d99eda91fc353966dcf272540778a0ea374bf7dc5a1a710", - "txlist_hash": "50cab122e553f1190a8d77f457f563a22a7a8dcbd6effa52ab9d9ca440cd1947", - "messages_hash": "8c099f3d99de2839c6bb0cd4513aa4df4c26286690e167cb7d6f5dbd8ca236de", + "ledger_hash": "086088fee3c96b9155d8811e3cbfa9062de4f0f1546a8b7b17bbfe30ee9b4104", + "txlist_hash": "ae6a9d09edf6ee8be3e38393798d67858cacbd14d254256d5fa7c165d52bef36", + "messages_hash": "4b06c54295b4f5977c726ba1ce6ea87ee48a8eca8dcb812175acc4112cda26ee", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", - "block_time": 1730463791, - "previous_block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", + "block_time": 1730467820, + "previous_block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", "difficulty": 545259519, - "ledger_hash": "b61eb453e6d3bbcd9824005e832a1c50f51afba15c4a844ebd6858b812d2ab8a", - "txlist_hash": "6a3d97cfa2d269b9253d57cc4c3495c64e2a3c8874134617d59fdf62f3240c9c", - "messages_hash": "280d91cbb992e1ae1d032ab5a5bc1220852bdeb8b423f4a45e573d428817c4eb", + "ledger_hash": "05347cfbbe2cc0f07c5e825f263380a619597d89fd898f8494b5bbd844ee0be8", + "txlist_hash": "efa3534f026baafdd04c9b1b14082f801e2a333b85ad459c0d13ee965ea843dc", + "messages_hash": "bde518a8b0bb2c5061b280095c037bf7894ad17ea3772a2303dd733f05575a93", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", - "block_time": 1730463787, - "previous_block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", + "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_time": 1730467817, + "previous_block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", "difficulty": 545259519, - "ledger_hash": "44d477e87dda01c92afc33c5a8237b8f5d34422aa77de318583bb2519c8a3668", - "txlist_hash": "bfb5e954df75c892255c287f2919ef33ec6223300d732b89f01afbd9c87699c8", - "messages_hash": "1d973d615c19d1821ff6830c4035020adb5707ea519bcf50a99bc1cf422ca727", + "ledger_hash": "98c1b25ea18df135ca9a6215b4b4fa948a4f1e25db26b94e353d81825c18b826", + "txlist_hash": "e49fb8e2a353a8239a32595a4695c95f375570221c88590d6ecc65961c3316ec", + "messages_hash": "ac056f5c8e6fbf9a39809ebf3ec12daafb6faaa1e9f094a41a331a60f7ab98f2", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", "difficulty": 545259519, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99` (str, required) - The index of the block to return + + block_hash: `1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", "difficulty": 545259519, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 704, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 703, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" } ], "next_cursor": 701, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 700, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 697, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 211, - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "object_id": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "block_index": 211, "confirmed": true, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "status": "valid", "confirmed": true, - "block_time": 1730463719 + "block_time": 1730467749 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "block_index": 196, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730463730, + "block_time": 1730467760, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "block_hash": "348f7b74a36f94e5a869c980bbc675ef1372c5badfec25415cde697336ab4136", - "block_time": 1730463489, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "583d0b0b3a55acf8da31b3f0dce82f75af4225b1dbe4e893c5be681743775454", + "block_time": 1730467531, + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5:1 2 ", + "utxos_info": " d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "block_hash": "3b11fc3d13d20b861b438750aa4927334edc96123ddef38536f80e9c41239d5a", - "block_time": 1730463690, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "19808a84f2ea73f7b49a6a037ea9323e47f2111bb29adc68af1f3f9d269455e9", + "block_time": 1730467720, + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "btc_amount": 2000, "fee": 10000, - "data": "0ba642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "data": "0b2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6ec3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "supported": true, - "utxos_info": " 6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce:0 3 1", + "utxos_info": " 89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "block_index": 193, - "block_hash": "550f2db4e76fb64b4f5587898d0947a454c6da3f1df88b2ec167c3025522dbd0", - "block_time": 1730463719, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "22c024bd6b63cec6105502d4df6635e87696ba658bbba8f25171f5e3562e3301", + "block_time": 1730467749, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "data": "4625bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "supported": true, - "utxos_info": " 593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8:1 2 ", + "utxos_info": " bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "block_index": 196, - "block_hash": "28d69b5421b4caa42ddf6ab59f389e92fec258ca5365c2875abfd6d2fb669f6e", - "block_time": 1730463730, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "block_hash": "1658782e83fa7d48b88987eb9431a5f1be2c840f08c7dd35a368810e3e5425a0", + "block_time": 1730467760, + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "f372e72a42c6ba55a6e783fefe920de6e32304ea42544e6dafddefb1db3ab01e:1 d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 2 ", + "utxos_info": "cf4df6f34c771bb7959594ec24d7f9747ee07371aca968c7319de88315cae6bf:1 90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 197, - "block_hash": "26392b4b781b115a241ad509959804ae74b8e21c8748f1318b2d2e3fc228be9d", - "block_time": 1730463733, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3df978603809c284f596cad79af1c555c40a75b36a8d8cd875a32e53ee715708", + "block_time": 1730467763, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb:1 2 ", + "utxos_info": " be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "block_hash": "7c839d6ab90a3aac6a8c86b5be8f4dd5177e24cd55f04abfb32251d8203db15d", - "block_time": 1730463553, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "328f4310a20eabb7037d2e14b97d22068242931c679289ba59c78c83348f6fd3", + "block_time": 1730467604, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183:1 2 ", + "utxos_info": " 92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_hash": "08dab000338cb97d55543bcaf23a9bb696794c5cf02644f978bccb78120db9ef", - "block_time": 1730463766, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "5761b45953c102d88bacbff89b100e0cedc8633cf4e3898df6ec0b8af0b756e8", + "block_time": 1730467805, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b:1 2 ", + "utxos_info": " 8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", - "block_time": 1730463809, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_time": 1730467838, + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a:1 2 ", + "utxos_info": " 5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", - "block_time": 1730463779, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", + "block_time": 1730467808, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "supported": true, - "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", + "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", - "block_time": 1730463804, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_time": 1730467834, + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b:0 4 ", + "utxos_info": " 2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "block_hash": "07f0e4d59acc8ea71f831d9cd2f779fbde66da86296b06cf1233525c8bff9b8c", - "block_time": 1730463725, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "block_hash": "272698332ebc8f2b93687289edc45fffbabef200cdb8059b59cdef37f203870e", + "block_time": 1730467755, + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480c58eed43bc91be9d740cba73bd1624dd1511f025017377656570206d7920617373657473", + "data": "04803804ff7a0e2bf5a70d78cefd6a14ce1832620ee8017377656570206d7920617373657473", "supported": true, - "utxos_info": " ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50:1 2 ", + "utxos_info": " 80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", "block_index": 203, - "block_hash": "35dac085144c440890da352310b4112dcca66c8cc71874be66b415aa8bd23a19", - "block_time": 1730463762, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "block_hash": "737062c79cc5413b44a4d46767a554c6989aefd8c00d56233fc28d85403d773e", + "block_time": 1730467801, + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362:0 3 1", + "utxos_info": " a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", "block_index": 202, - "block_hash": "286aa9d58074299f78e3b718aa30e1b5c72f3348b242853c1c0f1b7c0d7f9a77", - "block_time": 1730463757, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "block_hash": "44cb81bb4377aebb68979b338f5765bccccf22a14e3febc6ef2eae4da960dc8e", + "block_time": 1730467798, + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "5758def2e4d90509b23e384c34015252fb7aceacb765bbb2d13fb0e32edf7268:0 790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a:1 2 ", + "utxos_info": "0d5e9c06995871fa17540d39523a675b6a79898ad42e73692c8c9c0be4fe3801:0 258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 77, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", - "block_time": 1730463809, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_time": 1730467838, + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a:1 2 ", + "utxos_info": " 5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001063921b25f145d9f932176517a25dd933de55537748dd435ac345222b775a2eeae0000000000ffffffff9af0d75695dcc597eefeb1ac3a8b8d65f58c2d3835d891c14748656fed0a79460000000000ffffffff6fd034f7422f55f6beb97f4d8a623602d5f6594baba94fb23ef4d80e73b713760000000000ffffffff7f0b930e88b441e5dd5369ecc9c8e09e5c9670666b92c066c7b80e07d6fc8c0f0000000000ffffffff44281d947b09c085477cdae6c1cf395c3a025656cc2128e0b98b91a6307fd73a0000000000ffffffff5b7e8513b4c55e158cedf7d26b2dbee1e7d306ffc2eec6d07870be680de79de80000000000ffffffff04e80300000000000069512102282dfb286f24a9877d74721325d6f716550b53a7258cdbb0326db1cc324911c92103c2c68abf0d95c0d4f4c0d29abf5a4fb135c57d12f38e01800a32b6ff6fbc2a7c21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee80300000000000069512102282dfb286f24a9877dea061c1f4c24367240e14442ec8a41f9c89d419395b3c3210330360a53cb1a7f68d872e3577004ae6a41b7ba1e763f026daad1348f532d94e921023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee80300000000000069512102092dfb286f24a9877d777210a53f1920569df455b2c99e6a92e6155893516796210230360a53cb1a7f42cdc776e2ccceae6a41b7ba1e76358700cfbc5bbcd32d943621023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae387923fc06000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0247304402204a888da0023cb14a7dff787d7439be25ff33acc2bdde79dcb5c69c2aaba3ed5102202d09f9f18c68303ad8634c4fe23d8174ddc691924e3d06db34abec295e10dc5d0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402205313cc000f6b10b7809d381566149be8c3598f899664225570f7caf262097f3e0220343d815d41ca619663bbf70f2870433261ffc3c2d1128cab25a899aa66d55e810121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402202e82b40211eef3a251088393b873a629766f5d55cdbceaffc64f95dd50ce1f2d0220518db77804d1a44dc691b135d90a1992ba89f6717f283dd628a899efd651df520121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402203acf41e01b9f2c6a6470745210b8cef9bd15819bbe8c1b8979156e47269e46990220331e6195ed8993e35dd35e7858fff2acc99e638e29df4454ba3fa631e92ddf5e0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402203bd43e6a30056cd6285228e1b9a0d023088efc8598baecdc2f3b418a671cf41a022057ad92ec6025db3ffdf53261b5de697ef05488e3c57d3a10c6916c556e0bae1e0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d550247304402204e8295e6654355f8d8b56ee264d07f9fefd956d9a7d282da253f469e9238afe9022011fc04815d4378e51e22432c4f81d517085ba35758f4e8d95d9851904eea04bc0121023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5500000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101f7cd7011fc34e7d272fa4053932264324a3f15635a72aa0715e41f4f4cdcee710000000000ffffffff020000000000000000306a2eea47ddf94a798f7056334763aa0b879449f54bc413b523e37d39fe1c9ee112c80ba8cad214800790686530ca0300f0ca052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21024730440220466710a50a050a8e1fa896307f609a9a5a497996c3fdd00ca099d7d1775e246a0220222a5692d2dfaaaa960195ff574e9c6d68a386a9154a6782262a4648aa5a05a8012103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c00000000` (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. @@ -3362,53 +3362,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3921b25f145d9f932176517a25dd933de55537748dd435ac345222b775a2eeae", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "9af0d75695dcc597eefeb1ac3a8b8d65f58c2d3835d891c14748656fed0a7946", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "6fd034f7422f55f6beb97f4d8a623602d5f6594baba94fb23ef4d80e73b71376", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "7f0b930e88b441e5dd5369ecc9c8e09e5c9670666b92c066c7b80e07d6fc8c0f", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "44281d947b09c085477cdae6c1cf395c3a025656cc2128e0b98b91a6307fd73a", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5b7e8513b4c55e158cedf7d26b2dbee1e7d306ffc2eec6d07870be680de79de8", + "hash": "f7cd7011fc34e7d272fa4053932264324a3f15635a72aa0715e41f4f4cdcee71", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3417,75 +3382,39 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 1000, - "script_pub_key": "512102282dfb286f24a9877d74721325d6f716550b53a7258cdbb0326db1cc324911c92103c2c68abf0d95c0d4f4c0d29abf5a4fb135c57d12f38e01800a32b6ff6fbc2a7c21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" - }, - { - "value": 1000, - "script_pub_key": "512102282dfb286f24a9877dea061c1f4c24367240e14442ec8a41f9c89d419395b3c3210330360a53cb1a7f68d872e3577004ae6a41b7ba1e763f026daad1348f532d94e921023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" - }, - { - "value": 1000, - "script_pub_key": "512102092dfb286f24a9877d777210a53f1920569df455b2c99e6a92e6155893516796210230360a53cb1a7f42cdc776e2ccceae6a41b7ba1e76358700cfbc5bbcd32d943621023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" + "value": 0, + "script_pub_key": "6a2eea47ddf94a798f7056334763aa0b879449f54bc413b523e37d39fe1c9ee112c80ba8cad214800790686530ca0300" }, { - "value": 29999987000, - "script_pub_key": "0014d7293bb4314c352ddf34764e4643061d9bea91fe" + "value": 4999990000, + "script_pub_key": "00147b5d66ec4d5936b8c7c77a4145f58847067ecd21" } ], "vtxinwit": [ - "304402204a888da0023cb14a7dff787d7439be25ff33acc2bdde79dcb5c69c2aaba3ed5102202d09f9f18c68303ad8634c4fe23d8174ddc691924e3d06db34abec295e10dc5d01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402205313cc000f6b10b7809d381566149be8c3598f899664225570f7caf262097f3e0220343d815d41ca619663bbf70f2870433261ffc3c2d1128cab25a899aa66d55e8101", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402202e82b40211eef3a251088393b873a629766f5d55cdbceaffc64f95dd50ce1f2d0220518db77804d1a44dc691b135d90a1992ba89f6717f283dd628a899efd651df5201", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402203acf41e01b9f2c6a6470745210b8cef9bd15819bbe8c1b8979156e47269e46990220331e6195ed8993e35dd35e7858fff2acc99e638e29df4454ba3fa631e92ddf5e01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402203bd43e6a30056cd6285228e1b9a0d023088efc8598baecdc2f3b418a671cf41a022057ad92ec6025db3ffdf53261b5de697ef05488e3c57d3a10c6916c556e0bae1e01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402204e8295e6654355f8d8b56ee264d07f9fefd956d9a7d282da253f469e9238afe9022011fc04815d4378e51e22432c4f81d517085ba35758f4e8d95d9851904eea04bc01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" + "30440220466710a50a050a8e1fa896307f609a9a5a497996c3fdd00ca099d7d1775e246a0220222a5692d2dfaaaa960195ff574e9c6d68a386a9154a6782262a4648aa5a05a801", + "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" ], "lock_time": 0, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", - "tx_id": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750" + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_id": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "divisible": true, + "locked": false }, - { - "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] + "quantity_normalized": "0.00001000" + } }, "btc_amount_normalized": "0.00000000" } @@ -3497,7 +3426,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b` (str, required) - Transaction hash + + tx_hash: `7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f` (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. @@ -3508,18 +3437,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3b3ae07746cb931f0f59d17e63cc3e067103e3b5fbac0bff4e1f3ea2603b42d4", + "hash": "54bf40ce30cedfd9c43891e9ed0c3674d854bf22dcb7355a58de63a50aceec90", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3458,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eeaeada83a7675cb0506d0a303b652ccee851c1df4ba391cebd8967540c0b0572a9b71a27fe9cbac5c549e409a2a2" + "script_pub_key": "6a2e6581a03b433acc9291f65c937fb43dab4b6327724271fcfab2457ed3faca0de68e0dd689157e573e52a1c666580c" }, { "value": 4949930546, - "script_pub_key": "0014c58eed43bc91be9d740cba73bd1624dd1511f025" + "script_pub_key": "00143804ff7a0e2bf5a70d78cefd6a14ce1832620ee8" } ], "vtxinwit": [ - "304402201b11e9e0fe457fb27d2d2edcdce0cfb1f8c663bc549db1bd2a3701b6b6e64761022026be2f6d4f4e162b010580750de684862c0064d58c7e6fdf454ef9f301c7062301", - "038bda439e3d8ee120962ada9e3cb14ff6e063b01ae628bf114388279e17a6eaf9" + "3044022033b60c137ebb5a8677b52b67c98d7a1f0699779f198dcd4b50037a7c45f0135f02200b371aebb00c31e96968c4dfc3cfe996c0318d0c84b732d6020262e69d6d4f1701", + "039e1e579d9d1091c7d465062ee0035661af55cd112de71e5194144d43ca628056" ], "lock_time": 0, - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", - "tx_id": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b" + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_id": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3479,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -3611,17 +3540,17 @@ Returns a transaction by its index. { "result": { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3569,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction + + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (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. @@ -3652,17 +3581,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3634,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 704, @@ -3719,14 +3648,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,9 +3666,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 703, @@ -3748,9 +3677,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -3760,24 +3689,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -3787,9 +3716,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 701, @@ -3797,14 +3726,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "msg_index": 1, "quantity": 2000000000, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", "status": "valid", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,9 +3743,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 700, @@ -3829,7 +3758,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction to return + + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -3853,12 +3782,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 704, @@ -3867,14 +3796,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -3885,9 +3814,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 703, @@ -3896,9 +3825,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -3908,24 +3837,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -3935,9 +3864,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 701, @@ -3945,14 +3874,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "msg_index": 1, "quantity": 2000000000, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", "status": "valid", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -3962,9 +3891,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 700, @@ -3977,7 +3906,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction to return + + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (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 @@ -3996,10 +3925,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +3936,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,10 +3949,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +3960,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4053,7 +3982,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction to return + + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (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 @@ -4073,27 +4002,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4037,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,16 +4081,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4171,9 +4100,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 700, @@ -4183,12 +4112,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4198,9 +4127,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 697, @@ -4210,24 +4139,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": null, @@ -4240,7 +4169,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The hash of the transaction to return + + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `706` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4191,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4281,9 +4210,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 700, @@ -4293,12 +4222,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4308,9 +4237,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 697, @@ -4320,24 +4249,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": null, @@ -4352,7 +4281,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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 @@ -4376,7 +4305,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4315,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4397,7 +4326,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4336,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4418,7 +4347,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4357,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4439,7 +4368,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4378,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4460,7 +4389,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4399,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4481,7 +4410,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4420,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4508,7 +4437,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - Comma separated list of addresses to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4456,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", - "block_time": 1730463804, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_time": 1730467834, + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b:0 4 ", + "utxos_info": " 2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4474,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4560,7 +4489,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4579,17 +4508,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "block_index": 208, - "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", - "block_time": 1730463791, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", + "block_time": 1730467820, + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f025c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198:0 4 ", + "utxos_info": " c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4526,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4612,7 +4541,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4631,17 +4560,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", - "block_time": 1730463787, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_time": 1730467817, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", + "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4578,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4664,7 +4593,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4683,17 +4612,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", - "block_time": 1730463783, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", + "block_time": 1730467813, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", + "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4630,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4716,7 +4645,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4735,17 +4664,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", - "block_time": 1730463779, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", + "block_time": 1730467808, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "supported": true, - "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", + "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4682,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4778,7 +4707,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -4807,20 +4736,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "tx0_index": 60, - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx1_index": 55, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4839,38 +4768,38 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "block_time": 1730463809 + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_time": 1730467838 }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730463809, + "block_time": 1730467838, "asset_info": { "divisible": true, "asset_longname": null, @@ -4880,9 +4809,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 675, @@ -4890,15 +4819,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -4908,9 +4837,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_time": 1730463804 + "block_time": 1730467834 } ], "next_cursor": 674, @@ -4923,7 +4852,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e,bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw,bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s` (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 @@ -4939,17 +4868,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "quantity": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, "asset_info": { "divisible": true, @@ -4960,22 +4889,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -4985,22 +4914,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "block_index": 211, - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -5010,30 +4939,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730463825.660409, + "block_time": 1730467857.2218225, "btc_amount": 0, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "destination": "", "fee": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, - "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", + "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -5047,7 +4976,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -5060,7 +4989,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -5080,7 +5009,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5088,14 +5017,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5103,14 +5032,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5118,14 +5047,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5140,7 +5069,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5148,7 +5077,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5165,7 +5094,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -5178,7 +5107,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5203,7 +5132,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5253,16 +5182,16 @@ Returns the credits of an address "result": [ { "block_index": 210, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "asset_info": { "divisible": true, "asset_longname": null, @@ -5274,16 +5203,16 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -5295,16 +5224,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -5316,16 +5245,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -5337,20 +5266,20 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "event": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5367,7 +5296,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5406,16 +5335,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -5427,20 +5356,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5448,16 +5377,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -5469,20 +5398,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5490,20 +5419,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "event": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463779, + "block_time": 1730467808, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5520,7 +5449,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address of the feed + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5555,7 +5484,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -5574,9 +5503,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", + "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", "block_index": 137, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5584,7 +5513,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463485, + "block_time": 1730467528, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5598,7 +5527,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -5617,14 +5546,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "9712fb20f20d513856feb4408e8e6cd9e97cb486df17a2913cfbc77969c6544f", + "tx_hash": "178b61a7bde77db3739e77f7645385820701a229bc4ccb7d866539a1c661881b", "block_index": 112, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730463378, + "block_time": 1730467433, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5639,7 +5568,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -5658,10 +5587,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5669,7 +5598,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -5682,10 +5611,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5693,11 +5622,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5706,10 +5635,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5717,11 +5646,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5730,10 +5659,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5741,7 +5670,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -5754,10 +5683,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5765,11 +5694,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5787,7 +5716,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav` (str, required) - The address to return + + address: `bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207` (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 @@ -5806,10 +5735,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "f372e72a42c6ba55a6e783fefe920de6e32304ea42544e6dafddefb1db3ab01e", + "tx_hash": "cf4df6f34c771bb7959594ec24d7f9747ee07371aca968c7319de88315cae6bf", "block_index": 151, - "source": "eef6fd2b6944b278d61022959515944d6c242c2b8b095c1e6b544a2598278735:0", - "destination": "bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav", + "source": "61f12f3be611720b02fe9a4203129a55a089cb571654679ef47e9165da800be6:0", + "destination": "bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5817,11 +5746,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463537, + "block_time": 1730467589, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5839,7 +5768,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5859,10 +5788,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5870,11 +5799,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5883,10 +5812,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5894,11 +5823,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5907,10 +5836,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5918,11 +5847,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5931,10 +5860,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5942,11 +5871,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5955,10 +5884,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5966,11 +5895,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463779, + "block_time": 1730467808, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5988,7 +5917,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav` (str, required) - The address to return + + address: `bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6016,7 +5945,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6045,9 +5974,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6056,7 +5985,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6066,7 +5995,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6082,9 +6011,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6093,7 +6022,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6103,11 +6032,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6128,7 +6057,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -6141,9 +6070,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6081,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6162,7 +6091,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6184,7 +6113,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -6204,19 +6133,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", + "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6224,7 +6153,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6239,11 +6168,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6253,19 +6182,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6273,7 +6202,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6288,7 +6217,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,19 +6231,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6322,7 +6251,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6337,7 +6266,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6359,7 +6288,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address to return + + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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 @@ -6379,19 +6308,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", + "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6399,7 +6328,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6414,11 +6343,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6428,19 +6357,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6448,7 +6377,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6463,7 +6392,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6477,19 +6406,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6497,7 +6426,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6512,7 +6441,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6534,7 +6463,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -6555,19 +6484,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6575,7 +6504,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6590,7 +6519,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6604,19 +6533,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6624,7 +6553,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6639,7 +6568,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6661,7 +6590,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address to return + + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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` @@ -6682,19 +6611,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6702,7 +6631,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6717,7 +6646,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6731,19 +6660,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6751,7 +6680,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6766,7 +6695,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6788,7 +6717,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e` (str, required) - The address to return + + address: `bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw` (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 @@ -6807,16 +6736,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -6830,7 +6759,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6862,14 +6791,14 @@ Returns the issuances of an address "result": [ { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6884,20 +6813,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", + "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6912,20 +6841,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463592, + "block_time": 1730467637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", + "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6940,20 +6869,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730463589, + "block_time": 1730467634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", + "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6968,20 +6897,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463576, + "block_time": 1730467621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "f10d1dac9f8b370d00f9762bcf6b1db10d07be4ae301753896f397e99eb8a478", + "tx_hash": "2c8c7f352a2ae38fe40e10dae18fa762073de3b0decf2ac8d8bd8691b534ece9", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6996,7 +6925,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463571, + "block_time": 1730467617, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7011,7 +6940,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The issuer or owner to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7034,8 +6963,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -7043,16 +6972,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -7060,16 +6989,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -7077,16 +7006,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 40, @@ -7094,16 +7023,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730463476, - "last_issuance_block_time": 1730463480, + "first_issuance_block_time": 1730467522, + "last_issuance_block_time": 1730467525, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 19, @@ -7111,8 +7040,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730463452, - "last_issuance_block_time": 1730463473, + "first_issuance_block_time": 1730467506, + "last_issuance_block_time": 1730467517, "supply_normalized": "0.00000019" } ], @@ -7126,7 +7055,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The issuer to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -7149,8 +7078,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -7158,16 +7087,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -7175,16 +7104,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -7192,16 +7121,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 40, @@ -7209,16 +7138,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730463476, - "last_issuance_block_time": 1730463480, + "first_issuance_block_time": 1730467522, + "last_issuance_block_time": 1730467525, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 19, @@ -7226,8 +7155,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730463452, - "last_issuance_block_time": 1730463473, + "first_issuance_block_time": 1730467506, + "last_issuance_block_time": 1730467517, "supply_normalized": "0.00000019" } ], @@ -7241,7 +7170,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The owner to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7264,8 +7193,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -7273,16 +7202,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -7290,16 +7219,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -7307,16 +7236,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 40, @@ -7324,16 +7253,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730463476, - "last_issuance_block_time": 1730463480, + "first_issuance_block_time": 1730467522, + "last_issuance_block_time": 1730467525, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 19, @@ -7341,8 +7270,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730463452, - "last_issuance_block_time": 1730463473, + "first_issuance_block_time": 1730467506, + "last_issuance_block_time": 1730467517, "supply_normalized": "0.00000019" } ], @@ -7356,7 +7285,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7375,17 +7304,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", - "block_time": 1730463787, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_time": 1730467817, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", + "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7393,14 +7322,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7408,7 +7337,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7427,17 +7356,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", - "block_time": 1730463783, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", + "block_time": 1730467813, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", + "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7445,14 +7374,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7460,7 +7389,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7479,17 +7408,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", - "block_time": 1730463779, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", + "block_time": 1730467808, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "supported": true, - "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", + "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7497,12 +7426,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7513,17 +7442,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_hash": "08dab000338cb97d55543bcaf23a9bb696794c5cf02644f978bccb78120db9ef", - "block_time": 1730463766, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "5761b45953c102d88bacbff89b100e0cedc8633cf4e3898df6ec0b8af0b756e8", + "block_time": 1730467805, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b:1 2 ", + "utxos_info": " 8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7548,17 +7477,17 @@ Returns the transactions of an address }, { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 197, - "block_hash": "26392b4b781b115a241ad509959804ae74b8e21c8748f1318b2d2e3fc228be9d", - "block_time": 1730463733, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3df978603809c284f596cad79af1c555c40a75b36a8d8cd875a32e53ee715708", + "block_time": 1730467763, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb:1 2 ", + "utxos_info": " be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7575,7 +7504,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7596,7 +7525,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -7615,20 +7544,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7653,7 +7582,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7682,9 +7611,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7699,7 +7628,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7725,9 +7654,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7742,7 +7671,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7768,9 +7697,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7785,7 +7714,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7811,9 +7740,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "block_index": 210, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7828,7 +7757,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7863,7 +7792,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The source of the fairminter to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7888,10 +7817,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7916,7 +7845,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7925,10 +7854,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7953,7 +7882,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730463476, + "block_time": 1730467522, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7965,10 +7894,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7993,7 +7922,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730463452, + "block_time": 1730467506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8005,10 +7934,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8033,7 +7962,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730463449, + "block_time": 1730467503, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8045,10 +7974,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8073,7 +8002,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8095,7 +8024,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address of the mints to return + + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8113,22 +8042,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8137,22 +8066,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", + "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", "tx_index": 21, "block_index": 134, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463473, + "block_time": 1730467517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8161,22 +8090,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", + "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", "tx_index": 20, "block_index": 133, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463468, + "block_time": 1730467513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8185,22 +8114,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", + "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", "tx_index": 19, "block_index": 132, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463455, + "block_time": 1730467510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8209,22 +8138,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6f281df07c7856c3b2903c76d6d0983c2d86b7ede329004247a7a6da09d83834", + "tx_hash": "03b0ed1544e4aa249d8b16e104e1c1eb0653bac0f901cf3334b756341939e97c", "tx_index": 15, "block_index": 127, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463436, + "block_time": 1730467491, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8233,22 +8162,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8267,7 +8196,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address of the mints to return + + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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` @@ -8286,22 +8215,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8322,7 +8251,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0` (str, required) - The utxo to return + + utxo: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8342,8 +8271,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset_info": { "divisible": true, "asset_longname": null, @@ -8356,12 +8285,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8401,8 +8330,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will make the bet - + feed_address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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) @@ -8474,7 +8403,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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) @@ -8534,7 +8463,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8546,7 +8475,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "02000000000101495942bb5732d6e17b15e2f0ccc7d09a287eb0713dd3d52d075cc92710a376e100000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff0200000000000000002b6a298cbd3881c3b760272da829ed7537e954a8fe50204333ca07c9866eed392fb944b1ec4803b182bc9af282ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "0200000000010140e8cddf1d6192b956db2a16b360a5440c86b04a0b6cab4a21f5094b6985b0cb000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0200000000000000002b6a29d04e3af24f09e16bb551e2704631a454d2ceef5ca9fb90e463289e34e913a61903117c2a5a2772527d82ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8568,8 +8497,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending the payment - + order_match_id: `3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending the payment + + order_match_id: `a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0` (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) @@ -8625,23 +8554,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" }, "name": "btcpay", - "data": "434e5452505254590b3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "data": "434e5452505254590ba51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "02000000000101bae42086a22ccbb8c9f94b165cd21d7b1c94b343f4602f6dfa9324937e8cd97a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe00000000000000004b6a49bf0094f4d36c4bf1350ea10415cfc59db691d764b7760a84717aab8bfbbf21ebbdcf716956adef97570e1b7163f9cb6de7f89dafc515119252a48421477b220bf08f611c36c2e7058c77a7052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "0200000000010166305b107998052c191eb345539a43a9b5de3804784ede4ea605d1bdbcb8396a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e8030000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2100000000000000004b6a499f4b097f41297c59e1b386bdc9781a9a7df3333d64b814f3aef235cb9d52c0235e7ef370afd6fbdef9c42a8710b52f8985ab9921de925efc29c9d53f143ae99809c19eff19e8e4638b77a7052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "status": "valid" } } @@ -8654,7 +8583,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address with the BTC to burn + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -8713,7 +8642,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 1000, "overburn": false }, @@ -8723,7 +8652,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "0200000000010145a65626e6c2e99b4022e6b7bfae443ecc1f0e0fb0804e229cf7d002410fa47600000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000" + "rawtransaction": "02000000000101c1b89134bd97a9a83406cdb3e0f475cc1a8036025116ee901be0cce20789059e000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000" } } ``` @@ -8733,8 +8662,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: `bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa` (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) @@ -8790,21 +8719,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" }, "name": "cancel", - "data": "434e54525052545946c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "data": "434e545250525459465c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "020000000001015ab6a3fadb46a9df14b29f6ece550b0b11a976ca90cc0fd37b12869b753b68c501000000160014fcec67ae32d58c150f61c00bcd5a3e0317724649ffffffff0200000000000000002b6a29afaee2167a032b3f1d202007a340124c3f976ff1d725bf0f70ce36080b7be7461e17ae44a96eddb87b3e8d092701000000160014fcec67ae32d58c150f61c00bcd5a3e031772464902000000000000", + "rawtransaction": "02000000000101aacd0e5e1a8c7844b8fd3696e7ad74b3c087eda84c2e6010eb2f6ad655242b5c01000000160014ffdebde14127aa2af866de83c22853593005affdffffffff0200000000000000002b6a29cebf0919789d028d5ee2cd0d3f1b710e1aedfa2e1edfb96b79a0015c062b14f8e80d69cdbc9b54cc053e8d092701000000160014ffdebde14127aa2af866de83c22853593005affd02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "status": "valid" } } @@ -8817,7 +8746,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -8876,7 +8805,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8895,7 +8824,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101f679378d80c481e74fb46b05259b392f369693a9faaf8ef8acddec6e8fc9f12300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000226a20f52c4b8cc50ead8e74615ba2b4af5c2912b2ab1d619c759ada5de441132ac8cb92bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101a22e4a67053a5acb3c5f25f59e8e6f6b128a3fec54cb0f7d411cc3fe8f73102c000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000226a204d1e3208656909dc4f1be80ae78ff6a20740e2f11895e0d403e958b2cf10d19992bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8915,7 +8844,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: `bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809` (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) @@ -8980,7 +8909,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9004,7 +8933,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "020000000001017edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da0200000016001400667124a1ada318ec2c1b8b39e49dc755a2906effffffff0200000000000000002c6a2ada5ac2b160bed5c5504b900741a70f82edd041e06ace5f4942b4860184104fab79a725a0f10de23f51c332dd08270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e02000000000000", + "rawtransaction": "020000000001017f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed245020000001600149d89a2518adb0281244890afd1bb4d3c931f5eb6ffffffff0200000000000000002c6a2ad4eaec308d80109a59b3eb126bbd6ff1141b6fb1272adff767b15917530ce1a01688998925181d9f011732dd0827010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9030,7 +8959,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -9089,14 +9018,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9115,7 +9044,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "0200000000010127484090be58476197f874d79be9e83f926f1bd9a006fad9285d25c0db4671c900000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2142c7cfc079dc8517eea9e3b14461a0d70298660bd8817f8ccb8ec9ae992ec60c2257bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "020000000001014ce71077ec6979d2233ea2f42f40f3030160fea575471f3e50248ce9871a84c7000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21f9c587fc44eecabb0116eefe92439787a373cd264f47001cc215a8cb3f8417ad4757bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9136,10 +9065,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -9204,10 +9133,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "transfer_destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "lock": false, "reset": false, @@ -9220,7 +9149,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101da061478832a875eca2ad789f3be3f52d923b95b0dc921abc924408e9f1612a500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000236a21b98d2966a69ba68e8a8b61dc51f402237b45abc4e7427138f675c1827d27fa45bd69b2052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "0200000000010154bbe92f15fe2191e819cc15a2030368be7e0eacf5d56dcbb2f671576473791a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000236a213aed3bdfb776968c28a7c1dddcf10ec68b3ee1abbf0c2ccf8f428518f3e1128a2e69b2052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9249,9 +9178,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v,bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9316,16 +9245,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", 1 ], [ "MPMASSET", - "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", 2 ] ], @@ -9333,26 +9262,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d7293bb4314c352ddf34764e4643061d9bea91fe80e96e360396a7f2974511f1cba0cfed291876f2f040000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807b5d66ec4d5936b8c7c77a4145f58847067ecd21808eed8f24fbe533f031f29ff29ebd346b54e59a0040000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "020000000001042dafd140772e0bf47690544cd83719c687092f3b3e7544e00838b278fd4d9a7d00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff897698c45f498e492c742e7d1a55e023d2fd78cf9e875a9627513a3dfc51ef3800000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffe98095e79d8da4da9ed4b40cf87a29e05cac525f4fa1ac36b202613a9e2db9c300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffcae093ed649f416658e00db2ff3d538b100bf1a059d588c55fb1a2e295ecac4f00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000695121023cf57dde790755c5ff58d9173149e9811c54e9c485aa132df9cfc1d1db14adbe210246c05baa39732734250966b84aad8af39af3dbd4ba78d8f2f1efb998feb37cfe21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee8030000000000006951210223f57dde790755c5ff8bd915b19ec0baa841a5f1a875275bb78d82d7c68f47152102d73eda43574524a282fbf1fd5b5c4153551ef2cccc8a28b2f1efbc7b9e3bb8ff21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aeb8f216a804000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000002000002000002000000000000", + "rawtransaction": "02000000000104e62d39655be446249fae5886f5197a870347d6a2fd6dc8aea009a120b06675e5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff327da60c579997ac821eafeaf25ac17098196f62c1a951eb461a53d99aebb696000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffffbc13b2a68aba2c8a30e57ba5b1febd8cc3f6278148a30d5fffd32d65301eb026000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff1bcf6696a71ae840f6a72dc83de506fa418249335ae9b1e54ca735aa5ab16dc1000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e80300000000000069512102717c7bab9107b2bfb122b0d624d137d2af4a8dd7c492dbdb9b1cbcded1ab6c862103507a72ee53666df8eff94475080382cf4dcde199f53ac46856bb01637e86b7802103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aee803000000000000695121026e7c7bab9107b2bfb1f1b0d4a4aa6ab44323d4e17c551ca1da5d495696ad12f021039d5bf360bee949030acab444fa9c7051f0f98acd10a0c42856bb04801e0e73922103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aeb8f216a8040000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9368,7 +9297,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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 @@ -9430,7 +9359,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9447,7 +9376,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9461,7 +9390,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101d912ed19e99eb07b99aecb51bc60a4ccc44c944e66cb4b73366f65847e62054a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000356a33e495e847659fcfe4893f72de8a02527233c46af5dc6603da031fbb9f65860401a1e113dfcdcc952e40757c939623814510f3cc37b8052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101ae17720f3cf3f073079058d00584fc14dbc1e47fbeec70d3b6de3cdc08ce5b33000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000356a3371b49840dbf78b83e3b3b80c2fa24ac420536e301f01d9aceb0c16e5fc5f13a0e6e64a422d4ab80ac4678f7bb0c833b92af73e37b8052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9487,8 +9416,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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 @@ -9552,8 +9481,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9569,19 +9498,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "434e54525052545902000000000000000100000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "02000000000101dd1254839ca7a3fa1072304cb33451da3da060e1baa5b53cc849c38d449993eb00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000306a2eb5a9802f8c68c5add309fd3cd593f93fc02f601000dbfe99c9fa80af913d0ceac89066884e339f45b192811070895cb9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101600b0e48665d1cedd14ede371dc103399ca19f3df573e6407449dfbd4df98094000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000306a2ee0b580fbcba4ec673ca28b0584109f3842c41b0c20b820306a921194d9344adbd0af78ab14a34c38b1b265a6dc635cb9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "quantity_normalized": "0.00001000" } @@ -9595,8 +9524,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be sending - + destination: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending + + destination: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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 @@ -9654,23 +9583,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480e96e360396a7f2974511f1cba0cfed291876f2f007ffff", + "data": "434e54525052545904808eed8f24fbe533f031f29ff29ebd346b54e59a0007ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001017737ef6341dbf734dd761edfbf90b6be63c1958ca0d4a6c40f619ab54c2a0d4500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2151b299581a5434248cbd6aed0242139077d384e9f60f10be3c96c9432c72e5d03e57bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "020000000001013f0807c2e76fd2c227aaf75a1db4c92c05419ce31b4e1e054b2048d734b05f70000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21948192ee62d62d72d7e567e8a7b01df82b8675d1f5fc43777cf33ce2c85c22f2dd57bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "flags": 7, "memo": "ffff" } @@ -9684,8 +9613,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: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s` (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` @@ -9742,8 +9671,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "quantity": 1000 }, "name": "dispense", @@ -9752,7 +9681,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "020000000001015b3e036c8d39cc17b35af8706aceb23d49118ac30bafa35cacc54e81cf44e82b03000000160014e96e360396a7f2974511f1cba0cfed291876f2f0ffffffff03e803000000000000160014c58eed43bc91be9d740cba73bd1624dd1511f02500000000000000000c6a0ac4f094f43110f276ecc08a25082701000000160014e96e360396a7f2974511f1cba0cfed291876f2f002000000000000", + "rawtransaction": "02000000000101753ec2e0b3fe2fa5a7a29872d453a16aa9cc55ea7a5ab8ecd0077b1294807d2f030000001600148eed8f24fbe533f031f29ff29ebd346b54e59a00ffffffff03e8030000000000001600143804ff7a0e2bf5a70d78cefd6a14ce1832620ee800000000000000000c6a0a66acea357cf698b28bdd8a250827010000001600148eed8f24fbe533f031f29ff29ebd346b54e59a0002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9769,7 +9698,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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: `` @@ -9858,7 +9787,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9889,7 +9818,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "02000000000101cd456e236d2bfadbe1dcaa1b453e6e3bc2c746f5155bdc822b3495b4b532421c00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000316a2fdc33cb33f7341f6e4a30f17d7b409a3610726e6240cf4d9111b03d6efa42990020db28fd571d66d428bc5613e7540021b9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "020000000001015ac4bc4f0b3fd074f065a8c61b8f82222eb08658615544a1fd11c8c29eb25498000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000316a2fe52fc6ea9b48a3e8fbd7fabfef3250a4408bd227abe85790ab89c6510303b58bb8b27816b1e6f3c6d84b321361d2ec21b9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9928,7 +9857,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: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address that will be minting the asset + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -9987,13 +9916,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -10005,7 +9934,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101caf35c27c90d91d43e170ac5f26d6bfe176161ee25302dc0ecc052475259530500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000166a142feb40016ce2506117457ce6bc754b27fc20436d52bf052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101b9e26ad7824ffa11e584ba3fb819bc61d8e18e67465e4a5a96a5862aab0adfd5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000166a14ef4caa08595f56e4b7b7780ad102c4022ff2c61f52bf052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10019,84 +9948,18 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach Old [GET /v2/addresses/{address}/compose/attach_old{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination_vout}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. -Disabled after block 870000. + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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: `71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:3` (str, optional) - The utxo to attach the assets to - + Default: `None` - + 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) - + Default: `None` - + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output. - + 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` - + 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` - + 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` - + 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` - + 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` - + 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` - + 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` - + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created - + Default: `None` - + 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` - + use_utxos_with_balances (bool, optional) - Use UTXO with balances - + Default: `False` - + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception - + 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. - + Default: `false` - -+ Response 200 (application/json) - - ``` - { - "error": "Disbaled. Please the new `attach` or `detach` instead." - } - ``` - -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination_vout}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] - -Composes a transaction to attach assets from an address to UTXO. - -+ Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address from which the assets are attached + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output + Default: `None` + + destination (str, optional) - [Disabled after block 870000] The utxo to attach the assets to + + Default: `None` + 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) @@ -10152,7 +10015,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10171,7 +10034,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "02000000000101ec9bff73a8a0ebb0d55455a2c391d5badf69caa6ea2967f8e83694f6f11e5f4000000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000146a1266cc3480f38f6b11f1bae2bbe607793334afdab5052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101842872ae8d1210945c44fc94f1ede6be6d68aeb15720e8c11ff074d8ab942a19000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000146a12e482f599078d5f30ee2404ad0f681adb0348dab5052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10186,80 +10049,17 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach Old [GET /v2/utxos/{utxo}/compose/detach_old{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. -Disabled after block 870000. + Parameters - + utxo: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (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 - + 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) - + Default: `None` - + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output. - + 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` - + 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` - + 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 + + utxo: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + 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 inputs_set + + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + 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` - + 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` - + 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` - + 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` - + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created - + Default: `None` - + 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` - + use_utxos_with_balances (bool, optional) - Use UTXO with balances - + Default: `False` - + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception - + 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. - + Default: `false` - -+ Response 200 (application/json) - - ``` - { - "error": "Disbaled. Please the new `attach` or `detach` instead." - } - ``` - -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] - -Composes a transaction to detach assets from UTXO to an address. - -+ Parameters - + utxo: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + quantity (int, optional) - [Disabled after block 870000] The quantity of the asset to detach (in satoshis, hence integer) + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10316,21 +10116,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" + "source": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" }, "name": "detach", - "data": "434e545250525459666263727431713675356e686470336673366a6d6865357765387976736378726b6437347930376a686e6a3376", + "data": "434e545250525459666263727431713064776b646d7a6474796d7433333738306671357461766767757238616e6670356630333439", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "020000000001027edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff55ce15846566fb8ada653250e7348d199054b4312a6b20bbf616567b15e82131010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff020000000000000000376a35da5ac2b160bed5c53a29f37535967eb499e52f880ebe6c2cd982ec6cec757adff49f5cd6826e9a4d5ea7dbbec0b563f418a3817b5f772c0a27010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b902000002000000000000", + "rawtransaction": "020000000001027f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed24500000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745fffffffff75bf556a9c79ab4698c652107cce983e6f3383a0657bc5c79d5758f9417b22b01000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745ffffffff020000000000000000376a35d4eaec308d80109a33d188601f8c1ec1716c04d54a50bb80f6dc2d24603bd99398f9acfd446e7af8106558a912fdce604963ba4218772c0a2701000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74502000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" } } } @@ -10432,8 +10232,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -10441,16 +10241,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "owner": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "owner": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false, "supply": 100000000000, @@ -10458,16 +10258,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730463740, - "last_issuance_block_time": 1730463740, + "first_issuance_block_time": 1730467772, + "last_issuance_block_time": 1730467772, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -10475,16 +10275,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "owner": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "issuer": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "owner": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "divisible": true, "locked": false, "supply": 100000000000, @@ -10492,16 +10292,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730463567, - "last_issuance_block_time": 1730463567, + "first_issuance_block_time": 1730467614, + "last_issuance_block_time": 1730467614, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -10509,8 +10309,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" } ], @@ -10538,8 +10338,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -10547,8 +10347,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730463416, - "last_issuance_block_time": 1730463428, + "first_issuance_block_time": 1730467470, + "last_issuance_block_time": 1730467483, "supply_normalized": "100.00000000" } } @@ -10579,7 +10379,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10587,14 +10387,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10602,7 +10402,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -10620,7 +10420,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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. @@ -10632,7 +10432,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10686,9 +10486,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10703,7 +10503,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10729,9 +10529,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10746,7 +10546,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10772,9 +10572,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10789,7 +10589,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10815,9 +10615,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "block_index": 210, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10832,7 +10632,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10858,9 +10658,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10875,7 +10675,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10937,13 +10737,13 @@ Returns the orders of an asset { "result": [ { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10957,7 +10757,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10977,13 +10777,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 53, - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10997,7 +10797,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11017,13 +10817,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", "tx0_index": 50, - "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 51, - "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11037,7 +10837,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11057,13 +10857,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11077,7 +10877,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11157,20 +10957,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "event": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -11178,20 +10978,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", + "event": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -11199,20 +10999,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -11220,20 +11020,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "event": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -11245,16 +11045,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -11314,12 +11114,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -11331,16 +11131,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -11352,16 +11152,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -11373,16 +11173,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -11394,16 +11194,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -11483,14 +11283,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", + "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -11505,20 +11305,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -11533,20 +11333,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -11561,20 +11361,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -11589,7 +11389,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730463416, + "block_time": 1730467470, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11623,10 +11423,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11634,7 +11434,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -11647,10 +11447,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11658,7 +11458,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -11671,10 +11471,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "block_index": 208, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11682,7 +11482,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -11695,10 +11495,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11706,7 +11506,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -11719,10 +11519,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11730,7 +11530,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -11781,9 +11581,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11792,7 +11592,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11802,7 +11602,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -11818,9 +11618,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", + "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", "block_index": 142, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11829,7 +11629,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11839,7 +11639,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463504, + "block_time": 1730467547, "asset_info": { "divisible": true, "asset_longname": null, @@ -11855,9 +11655,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", + "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", "block_index": 150, - "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", + "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11865,10 +11665,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11876,7 +11676,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463534, + "block_time": 1730467586, "asset_info": { "divisible": true, "asset_longname": null, @@ -11892,18 +11692,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11913,7 +11713,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -11938,7 +11738,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - The address to return + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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` @@ -11951,9 +11751,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11962,7 +11762,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11972,7 +11772,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -12022,7 +11822,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12030,7 +11830,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12039,7 +11839,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12047,7 +11847,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12056,7 +11856,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12064,7 +11864,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12073,7 +11873,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12110,27 +11910,27 @@ Returns the dispenses of an asset { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12145,7 +11945,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -12159,27 +11959,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", + "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", "block_index": 147, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12194,7 +11994,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463523, + "block_time": 1730467575, "asset_info": { "divisible": true, "asset_longname": null, @@ -12208,19 +12008,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12228,7 +12028,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12243,7 +12043,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -12257,19 +12057,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12277,7 +12077,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12292,7 +12092,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -12366,10 +12166,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12394,7 +12194,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12434,22 +12234,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", + "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", "tx_index": 13, "block_index": 125, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12458,22 +12258,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "tx_index": 12, "block_index": 124, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12482,22 +12282,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12516,7 +12316,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu` (str, required) - The address of the mints to return + + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (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` @@ -12535,22 +12335,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -12603,9 +12403,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12620,7 +12420,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12646,9 +12446,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12663,7 +12463,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12689,9 +12489,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12706,7 +12506,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,9 +12532,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12749,7 +12549,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12775,9 +12575,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "block_index": 210, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12792,7 +12592,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12827,7 +12627,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41` (str, required) - The hash of the transaction that created the order + + order_hash: `c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0` (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. @@ -12839,9 +12639,9 @@ Returns the information of an order { "result": { "tx_index": 55, - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "block_index": 211, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12856,7 +12656,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12888,7 +12688,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa` (str, required) - The hash of the transaction that created the order + + order_hash: `a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7` (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 @@ -12915,13 +12715,13 @@ Returns the order matches of an order { "result": [ { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12935,7 +12735,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12965,7 +12765,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe` (str, required) - The hash of the transaction that created the order + + order_hash: `2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e` (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 @@ -12984,15 +12784,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "btc_amount": 2000, - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "status": "valid", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "btc_amount_normalized": "0.00002000" } ], @@ -13036,9 +12836,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13056,7 +12856,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730463690, + "block_time": 1730467720, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13082,9 +12882,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "block_index": 211, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13102,7 +12902,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730463822, + "block_time": 1730467853, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13128,9 +12928,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13148,7 +12948,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13174,9 +12974,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13194,7 +12994,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13220,9 +13020,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13240,7 +13040,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13303,13 +13103,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13326,7 +13126,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13346,13 +13146,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 53, - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13369,7 +13169,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463690, + "block_time": 1730467720, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13389,13 +13189,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", "tx0_index": 50, - "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 51, - "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13412,7 +13212,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463606, + "block_time": 1730467651, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13432,13 +13232,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13455,7 +13255,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13513,13 +13313,13 @@ Returns all the order matches { "result": [ { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13533,7 +13333,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13553,13 +13353,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 53, - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13573,7 +13373,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13593,13 +13393,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", "tx0_index": 50, - "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 51, - "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13613,7 +13413,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13633,13 +13433,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13653,7 +13453,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13821,66 +13621,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", + "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", "block_index": 121, - "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", + "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730463412, + "block_time": 1730467465, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2fa2f6c16e5a850f7309eda42a0d73357dbc3d3e215e19659d3512c88087b3d9", + "tx_hash": "6e78cc5e128af65f1686523a753af99b78c132bdc001ba49411a3ce47c50ee9c", "block_index": 120, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730463408, + "block_time": 1730467462, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "cd462b8e18ccadeed2abce5b0069fbcf504c66116c9e5a6aa0560ee8d4197a04", + "tx_hash": "db455fa4b624eeb04f20aa18e96ee26fc63c1ed3aec0e8650df974a54432d2e6", "block_index": 119, - "source": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq", + "source": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730463403, + "block_time": 1730467457, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "c0287b7539b3c2d2bfbdb2186d66d8d7c6c8974533018cc78a5cc56fd51f6d9e", + "tx_hash": "17392c3df9592847436074efa44d5acaedfd24947c269a583e9c043dd86afd79", "block_index": 118, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730463399, + "block_time": 1730467454, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c5537fcd875e0cac68401eadb3009889f858bd22e07207f365101c273aaec5ad", + "tx_hash": "0f9e72e8e6d07cb5998119bc8f4ed292e6624a9b28465d43b404f0cbc60ae639", "block_index": 117, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730463396, + "block_time": 1730467450, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13925,9 +13725,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13936,7 +13736,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13946,7 +13746,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -13962,9 +13762,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", + "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", "block_index": 142, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13973,7 +13773,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13983,7 +13783,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463504, + "block_time": 1730467547, "asset_info": { "divisible": true, "asset_longname": null, @@ -13999,9 +13799,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", + "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", "block_index": 150, - "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", + "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14009,10 +13809,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -14020,7 +13820,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463534, + "block_time": 1730467586, "asset_info": { "divisible": true, "asset_longname": null, @@ -14036,9 +13836,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14047,7 +13847,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14057,11 +13857,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -14073,18 +13873,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14094,7 +13894,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -14119,7 +13919,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216` (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. @@ -14131,9 +13931,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14142,7 +13942,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14152,7 +13952,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -14174,7 +13974,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216` (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 @@ -14194,19 +13994,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14214,7 +14014,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14229,7 +14029,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -14243,19 +14043,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14263,7 +14063,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14278,7 +14078,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14320,20 +14120,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -14358,7 +14158,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183` (str, required) - The hash of the dividend to return + + dividend_hash: `92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938` (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. @@ -14370,20 +14170,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -14405,7 +14205,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938` (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 @@ -14428,12 +14228,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "event": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "tx_index": 42, - "utxo": "ddc33af9e516e76d76656655d33c03f82db0508bbe26d0502b1641b3595bbeca:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "1c185c4c80aadf151f8406ce362617c32a10281f6390644e3518f6761efaf1c9:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "divisible": true, "asset_longname": null, @@ -14479,27 +14279,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 704, @@ -14508,14 +14308,14 @@ Returns all events "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -14526,9 +14326,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 703, @@ -14537,9 +14337,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -14549,24 +14349,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -14576,9 +14376,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 701, @@ -14606,15 +14406,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } } ``` @@ -14692,16 +14492,16 @@ Returns the events filtered by event name "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -14711,9 +14511,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 700, @@ -14723,12 +14523,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -14738,9 +14538,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 697, @@ -14750,39 +14550,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730463809, + "block_time": 1730467838, "asset_info": { "divisible": true, "asset_longname": null, @@ -14792,24 +14592,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -14819,9 +14619,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_time": 1730463804 + "block_time": 1730467834 } ], "next_cursor": 669, @@ -14877,27 +14677,27 @@ Returns all the dispenses { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14912,7 +14712,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -14926,19 +14726,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", + "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14946,7 +14746,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14961,11 +14761,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -14975,27 +14775,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", + "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", "block_index": 147, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15010,7 +14810,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463523, + "block_time": 1730467575, "asset_info": { "divisible": true, "asset_longname": null, @@ -15024,19 +14824,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15044,7 +14844,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15059,7 +14859,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -15073,19 +14873,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15093,7 +14893,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15108,7 +14908,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -15150,10 +14950,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15161,7 +14961,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -15174,10 +14974,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15185,11 +14985,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -15198,10 +14998,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15209,7 +15009,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -15222,10 +15022,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15233,11 +15033,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -15246,10 +15046,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15257,11 +15057,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -15312,14 +15112,14 @@ Returns all the issuances "result": [ { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -15334,20 +15134,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "9cbd87c824c325c9e3b3929e4b808ed0116b78788bdfd287d9850b03c9484a23", + "tx_hash": "bac413745519011121694c9a89593b6cdf577b62a48484895524f2629d053ba7", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "transfer": false, "callable": false, "call_date": 0, @@ -15362,20 +15162,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463740, + "block_time": 1730467772, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", + "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -15390,20 +15190,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463592, + "block_time": 1730467637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", + "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -15418,20 +15218,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730463589, + "block_time": 1730467634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", + "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -15446,7 +15246,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463576, + "block_time": 1730467621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15461,7 +15261,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b` (str, required) - The hash of the transaction to return + + tx_hash: `8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37` (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. @@ -15473,14 +15273,14 @@ Returns the issuances of a block { "result": { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -15495,7 +15295,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15527,16 +15327,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -15550,7 +15350,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50` (str, required) - The hash of the transaction to return + + tx_hash: `80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464` (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. @@ -15563,16 +15363,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -15606,9 +15406,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15616,14 +15416,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463489, + "block_time": 1730467531, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", + "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", "block_index": 137, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15631,7 +15431,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463485, + "block_time": 1730467528, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15645,7 +15445,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5` (str, required) - The hash of the transaction to return + + tx_hash: `d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad` (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. @@ -15657,9 +15457,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15667,7 +15467,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463489, + "block_time": 1730467531, "fee_fraction_int_normalized": "0.00000000" } } @@ -15704,10 +15504,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15732,7 +15532,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15741,10 +15541,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15769,7 +15569,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730463476, + "block_time": 1730467522, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15781,10 +15581,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15809,7 +15609,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730463452, + "block_time": 1730467506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15821,10 +15621,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15849,7 +15649,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730463449, + "block_time": 1730467503, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15861,10 +15661,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15889,7 +15689,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15958,22 +15758,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -15982,22 +15782,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", + "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", "tx_index": 21, "block_index": 134, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463473, + "block_time": 1730467517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -16006,22 +15806,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", + "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", "tx_index": 20, "block_index": 133, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463468, + "block_time": 1730467513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -16030,22 +15830,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", + "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", "tx_index": 19, "block_index": 132, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463455, + "block_time": 1730467510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -16054,22 +15854,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "561ea3f3b54e722693cac52fd446e9f03cc41aa6a33ef2d7edec8ee44c871be8", + "tx_hash": "ac68db009ddeab5fff5da046698c05a254c7217fe24980421f74c93287736192", "tx_index": 17, "block_index": 129, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463445, + "block_time": 1730467499, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -16088,7 +15888,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23` (str, required) - The hash of the fairmint to return + + tx_hash: `fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16099,22 +15899,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -16132,7 +15932,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd,bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq` (str, required) - The addresses to search for + + addresses: `bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l,bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy` (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. @@ -16145,23 +15945,14 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ - { - "vout": 1, - "height": 210, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", - "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" - }, { "vout": 0, "height": 203, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", - "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" + "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" }, { "vout": 1, @@ -16169,8 +15960,17 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", - "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" + "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + }, + { + "vout": 1, + "height": 210, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" }, { "vout": 2, @@ -16178,8 +15978,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41", - "address": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq" + "txid": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab", + "address": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy" } ], "next_cursor": null, @@ -16192,7 +15992,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e` (str, required) - The address to search for + + address: `bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw` (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 @@ -16208,25 +16008,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" + "tx_hash": "ab91d25ddaeff8fc3191406dfe5f6c0b97ba2735cf2745bcb4cae7109dc38307" }, { - "tx_hash": "e4cbd84c212c0d85e0bc0ff0973493d51fb6943ce10eef36e319c57c93abf44b" + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464" }, { - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50" + "tx_hash": "7a01b5bcecfe586b29e272f20d6200a79f67d0e67bd339776b5625563a31096f" }, { - "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c" + "tx_hash": "07f79a857c031b673fbc182e7e7ccdc3dc7d77856cf171f233cc03a53dd7e879" }, { - "tx_hash": "9b9193cd55f4b64910cdb1b18f4eafe8a72e8c6373631fba1f83c26d5c8751d7" + "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788" }, { - "tx_hash": "fa12a032e01d27adbdca71be9acc1f1ca76aeca8031a6e1d4f5a6168383a1ef7" + "tx_hash": "59149addbd50a4696652bd1992a028a544b0d80b1ba1cdc8719a03c87bf3ddbe" }, { - "tx_hash": "62a86c538277f9812ed919d12ec84ae82ec04b0ed39374e81ece7ce3e46772ff" + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" } ], "next_cursor": null, @@ -16239,7 +16039,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9` (str, required) - The address to search for. + + address: `bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809` (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. @@ -16252,8 +16052,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 7, - "tx_hash": "4919bd36f63f4582744c1bb90c38305a665de2724c9c2274077637bc852ec538" + "block_index": 4, + "tx_hash": "f589724d4e5d8dc8de7c8efb4df0522c252bc84f24dfe42326879d6cb9d8faa6" } } ``` @@ -16263,7 +16063,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd` (str, required) - The address to search for + + address: `bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l` (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 @@ -16278,21 +16078,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 1, - "height": 210, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" - }, { "vout": 1, "height": 202, "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a" + "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3" + }, + { + "vout": 1, + "height": 210, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" }, { "vout": 0, @@ -16300,7 +16100,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362" + "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e" } ], "next_cursor": null, @@ -16313,7 +16113,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v` (str, required) - Address to get pubkey for. + + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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. @@ -16325,7 +16125,7 @@ Get pubkey for an address. ``` { - "result": "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" + "result": "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" } ``` @@ -16334,7 +16134,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e` (str, required) - The transaction hash + + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (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. @@ -16346,7 +16146,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101413aa22da9b929934ee408dc970b36077cb7c87b70b069e0b8a1d7bb9f8e43bf0100000000ffffffff03e8030000000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b900000000000000000c6a0ab0d6c528b8839b96be74eb1409270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e024730440220630afa3b3683f914d74fe679507cfae30bd56d77af98e6c9eee69319897592f502206f9e10ebb8de21e010da7fc9bdcc0956e5bcefa377097ef6a4e2273d530a46cd01210371e58ba1571b65021affd211df2b0f5d0ca74f2eb50e3a23c4ec4753ffebf88400000000" + "result": "02000000000101ab1955de714f10735a3a900a93c87e67f40377ba77150cae8cefb4ba3a3361f60100000000ffffffff03e803000000000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74500000000000000000c6a0a6ecc7cee261673ed77abeb140927010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb60247304402200b94ed5c6dd6b3ded51ef7e95c4391bd9b6d7d23fc38e066ef2b26ee6a24aab50220561dcc8ae2033ae8faf2b55c550cd087a99132df468ee03e3c1746ebb081057f01210289358286deb0840210e8ebab29063bd08bc4e67b6cd9304f46df9fdfc1d0d9bb00000000" } ``` @@ -16441,27 +16241,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79 }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "quantity": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, "asset_info": { "divisible": true, @@ -16472,22 +16272,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -16497,22 +16297,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "block_index": 211, - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -16522,30 +16322,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730463825.660409, + "block_time": 1730467857.2218225, "btc_amount": 0, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "destination": "", "fee": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, - "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", + "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -16559,7 +16359,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -16590,19 +16390,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -16612,7 +16412,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -16625,7 +16425,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b` (str, required) - The hash of the transaction to return + + tx_hash: `7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f` (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 @@ -16645,27 +16445,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79 }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "quantity": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, "asset_info": { "divisible": true, @@ -16676,22 +16476,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -16701,22 +16501,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "block_index": 211, - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -16726,30 +16526,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730463825.660409, + "block_time": 1730467857.2218225, "btc_amount": 0, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "destination": "", "fee": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, - "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", + "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -16763,7 +16563,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 029f5ba7f5..d9c4d4727d 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -647,22 +647,37 @@ def compose_utxo( return compose(db, "utxo", params, **construct_args) -def compose_attach_old( +def compose_attach( db, address: str, asset: str, quantity: int, + destination_vout: str = None, destination: str = None, **construct_args, ): """ Composes a transaction to attach assets from an address to UTXO. - Disabled after block 870000. :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) + :param destination_vout: The vout of the destination output + :param destination: [Disabled after block 870000] The utxo to attach the assets to """ + if util.enabled("spend_utxo_to_detach"): + params = { + "source": address, + "asset": asset, + "quantity": quantity, + "destination_vout": destination_vout, + } + return compose(db, "attach", params, **construct_args) + + if util.CURRENT_BLOCK_INDEX > util.get_change_block_index("spend_utxo_to_detach") - 12: + raise exceptions.ComposeError( + "Attach is disabled from 12 blocks before block 870000 and the activation of the new attach/detach messages types" + ) + return compose_utxo( db, source=address, @@ -673,22 +688,33 @@ def compose_attach_old( ) -def compose_detach_old( +def compose_detach( db, utxo: str, - destination: str, - asset: str, - quantity: int, + destination: str = None, + asset: str = None, + quantity: int = None, **construct_args, ): """ Composes a transaction to detach assets from UTXO to an address. - Disabled after block 870000. :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) + :param destination: The address to detach the assets to, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1) + :param asset: [Disabled after block 870000] The asset or subasset to detach + :param quantity: [Disabled after block 870000] The quantity of the asset to detach (in satoshis, hence integer) """ + if util.enabled("spend_utxo_to_detach"): + params = { + "source": utxo, + "destination": destination, + } + return compose(db, "detach", params, **construct_args) + + if util.CURRENT_BLOCK_INDEX > util.get_change_block_index("spend_utxo_to_detach") - 12: + raise exceptions.ComposeError( + "Attach is disabled from 12 blocks before block 870000 and the activation of the new attach/detach messages types" + ) + return compose_utxo( db, source=utxo, @@ -699,52 +725,6 @@ def compose_detach_old( ) -def compose_attach( - db, - address: str, - asset: str, - quantity: int, - destination_vout: 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 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) - :param destination_vout: The vout of the destination output - """ - if not util.enabled("spend_utxo_to_detach"): - raise exceptions.ComposeError("Not enabled yet. Please wait for the block 870000") - params = { - "source": address, - "asset": asset, - "quantity": quantity, - "destination_vout": destination_vout, - } - return compose(db, "attach", params, **construct_args) - - -def compose_detach( - db, - utxo: str, - destination: str = None, - **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, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1) - """ - if not util.enabled("spend_utxo_to_detach"): - raise exceptions.ComposeError("Not enabled yet. Please use `utxo` instead.") - params = { - "source": utxo, - "destination": destination, - } - return compose(db, "detach", params, **construct_args) - - def get_attach_estimate_xcp_fee(db): """ Returns the estimated fee for attaching assets to a UTXO. diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index 43562befb3..963190ac32 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -94,9 +94,7 @@ def get_routes(): "/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_old": compose.compose_attach_old, "/v2/addresses/
/compose/attach": compose.compose_attach, - "/v2/utxos//compose/detach_old": compose.compose_detach_old, "/v2/utxos//compose/detach": compose.compose_detach, "/v2/utxos//compose/movetoutxo": compose.compose_movetoutxo, "/v2/compose/attach/estimatexcpfees": compose.get_attach_estimate_xcp_fee, diff --git a/counterparty-core/counterpartycore/lib/util.py b/counterparty-core/counterpartycore/lib/util.py index c672dd8774..18bda64ded 100644 --- a/counterparty-core/counterpartycore/lib/util.py +++ b/counterparty-core/counterpartycore/lib/util.py @@ -594,6 +594,18 @@ def enabled(change_name, block_index=None): return False +def get_change_block_index(change_name): + if config.REGTEST: + return 0 + + if config.TESTNET: + index_name = "testnet_block_index" + else: + index_name = "block_index" + + return PROTOCOL_CHANGES[change_name][index_name] + + def get_value_by_block_index(change_name, block_index=None): if not block_index: block_index = CURRENT_BLOCK_INDEX diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 57737e99ae..cd91dd351b 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": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", "difficulty": 545259519, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", - "block_time": 1730463809, - "previous_block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", + "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_time": 1730467838, + "previous_block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", "difficulty": 545259519, - "ledger_hash": "35f053e2f1c637213081a0bcfea1ddd2be9aec3cab416f0ebb269782079f78dc", - "txlist_hash": "461a8b263de15651baa99404a13975c16254a53b64f2e90d9498febe8815ad7a", - "messages_hash": "8bb241937064ea12b64845cd3d555de3b4e93eb11e668f783b82c4ec30460b81", + "ledger_hash": "eee6dfd34d392fd1c8fee996f34c341a269ca3cbfd4f49672f0f2264d73e896c", + "txlist_hash": "850374bac6ec2e9540912a6cb9fc20ef7e43e54ea74b6ef5a472cc21c11f1e88", + "messages_hash": "0065dd2b2d9b77d862befd4b4d9dccdb54b6a85385581c55fd3d033abd51b386", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", - "block_time": 1730463804, - "previous_block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", + "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_time": 1730467834, + "previous_block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", "difficulty": 545259519, - "ledger_hash": "cd46a366583657374d99eda91fc353966dcf272540778a0ea374bf7dc5a1a710", - "txlist_hash": "50cab122e553f1190a8d77f457f563a22a7a8dcbd6effa52ab9d9ca440cd1947", - "messages_hash": "8c099f3d99de2839c6bb0cd4513aa4df4c26286690e167cb7d6f5dbd8ca236de", + "ledger_hash": "086088fee3c96b9155d8811e3cbfa9062de4f0f1546a8b7b17bbfe30ee9b4104", + "txlist_hash": "ae6a9d09edf6ee8be3e38393798d67858cacbd14d254256d5fa7c165d52bef36", + "messages_hash": "4b06c54295b4f5977c726ba1ce6ea87ee48a8eca8dcb812175acc4112cda26ee", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", - "block_time": 1730463791, - "previous_block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", + "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", + "block_time": 1730467820, + "previous_block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", "difficulty": 545259519, - "ledger_hash": "b61eb453e6d3bbcd9824005e832a1c50f51afba15c4a844ebd6858b812d2ab8a", - "txlist_hash": "6a3d97cfa2d269b9253d57cc4c3495c64e2a3c8874134617d59fdf62f3240c9c", - "messages_hash": "280d91cbb992e1ae1d032ab5a5bc1220852bdeb8b423f4a45e573d428817c4eb", + "ledger_hash": "05347cfbbe2cc0f07c5e825f263380a619597d89fd898f8494b5bbd844ee0be8", + "txlist_hash": "efa3534f026baafdd04c9b1b14082f801e2a333b85ad459c0d13ee965ea843dc", + "messages_hash": "bde518a8b0bb2c5061b280095c037bf7894ad17ea3772a2303dd733f05575a93", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", - "block_time": 1730463787, - "previous_block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", + "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_time": 1730467817, + "previous_block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", "difficulty": 545259519, - "ledger_hash": "44d477e87dda01c92afc33c5a8237b8f5d34422aa77de318583bb2519c8a3668", - "txlist_hash": "bfb5e954df75c892255c287f2919ef33ec6223300d732b89f01afbd9c87699c8", - "messages_hash": "1d973d615c19d1821ff6830c4035020adb5707ea519bcf50a99bc1cf422ca727", + "ledger_hash": "98c1b25ea18df135ca9a6215b4b4fa948a4f1e25db26b94e353d81825c18b826", + "txlist_hash": "e49fb8e2a353a8239a32595a4695c95f375570221c88590d6ecc65961c3316ec", + "messages_hash": "ac056f5c8e6fbf9a39809ebf3ec12daafb6faaa1e9f094a41a331a60f7ab98f2", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", "difficulty": 545259519, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", "difficulty": 545259519, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 704, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 703, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" } ], "next_cursor": 701, @@ -256,16 +256,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 700, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" }, { "event_index": 697, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e" + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "object_id": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "block_index": 211, "confirmed": true, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "status": "valid", "confirmed": true, - "block_time": 1730463719 + "block_time": 1730467749 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "block_index": 196, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730463730, + "block_time": 1730467760, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 77, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d", - "block_time": 1730463809, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_time": 1730467838, + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a:1 2 ", + "utxos_info": " 5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, @@ -816,53 +816,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3921b25f145d9f932176517a25dd933de55537748dd435ac345222b775a2eeae", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "9af0d75695dcc597eefeb1ac3a8b8d65f58c2d3835d891c14748656fed0a7946", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "6fd034f7422f55f6beb97f4d8a623602d5f6594baba94fb23ef4d80e73b71376", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "7f0b930e88b441e5dd5369ecc9c8e09e5c9670666b92c066c7b80e07d6fc8c0f", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "44281d947b09c085477cdae6c1cf395c3a025656cc2128e0b98b91a6307fd73a", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5b7e8513b4c55e158cedf7d26b2dbee1e7d306ffc2eec6d07870be680de79de8", + "hash": "f7cd7011fc34e7d272fa4053932264324a3f15635a72aa0715e41f4f4cdcee71", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -871,93 +836,57 @@ ], "vout": [ { - "value": 1000, - "script_pub_key": "512102282dfb286f24a9877d74721325d6f716550b53a7258cdbb0326db1cc324911c92103c2c68abf0d95c0d4f4c0d29abf5a4fb135c57d12f38e01800a32b6ff6fbc2a7c21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" - }, - { - "value": 1000, - "script_pub_key": "512102282dfb286f24a9877dea061c1f4c24367240e14442ec8a41f9c89d419395b3c3210330360a53cb1a7f68d872e3577004ae6a41b7ba1e763f026daad1348f532d94e921023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" - }, - { - "value": 1000, - "script_pub_key": "512102092dfb286f24a9877d777210a53f1920569df455b2c99e6a92e6155893516796210230360a53cb1a7f42cdc776e2ccceae6a41b7ba1e76358700cfbc5bbcd32d943621023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553ae" + "value": 0, + "script_pub_key": "6a2eea47ddf94a798f7056334763aa0b879449f54bc413b523e37d39fe1c9ee112c80ba8cad214800790686530ca0300" }, { - "value": 29999987000, - "script_pub_key": "0014d7293bb4314c352ddf34764e4643061d9bea91fe" + "value": 4999990000, + "script_pub_key": "00147b5d66ec4d5936b8c7c77a4145f58847067ecd21" } ], "vtxinwit": [ - "304402204a888da0023cb14a7dff787d7439be25ff33acc2bdde79dcb5c69c2aaba3ed5102202d09f9f18c68303ad8634c4fe23d8174ddc691924e3d06db34abec295e10dc5d01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402205313cc000f6b10b7809d381566149be8c3598f899664225570f7caf262097f3e0220343d815d41ca619663bbf70f2870433261ffc3c2d1128cab25a899aa66d55e8101", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402202e82b40211eef3a251088393b873a629766f5d55cdbceaffc64f95dd50ce1f2d0220518db77804d1a44dc691b135d90a1992ba89f6717f283dd628a899efd651df5201", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402203acf41e01b9f2c6a6470745210b8cef9bd15819bbe8c1b8979156e47269e46990220331e6195ed8993e35dd35e7858fff2acc99e638e29df4454ba3fa631e92ddf5e01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402203bd43e6a30056cd6285228e1b9a0d023088efc8598baecdc2f3b418a671cf41a022057ad92ec6025db3ffdf53261b5de697ef05488e3c57d3a10c6916c556e0bae1e01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55", - "304402204e8295e6654355f8d8b56ee264d07f9fefd956d9a7d282da253f469e9238afe9022011fc04815d4378e51e22432c4f81d517085ba35758f4e8d95d9851904eea04bc01", - "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" + "30440220466710a50a050a8e1fa896307f609a9a5a497996c3fdd00ca099d7d1775e246a0220222a5692d2dfaaaa960195ff574e9c6d68a386a9154a6782262a4648aa5a05a801", + "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" ], "lock_time": 0, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", - "tx_id": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750" + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_id": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "divisible": true, + "locked": false }, - { - "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] + "quantity_normalized": "0.00001000" + } }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3b3ae07746cb931f0f59d17e63cc3e067103e3b5fbac0bff4e1f3ea2603b42d4", + "hash": "54bf40ce30cedfd9c43891e9ed0c3674d854bf22dcb7355a58de63a50aceec90", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +896,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2eeaeada83a7675cb0506d0a303b652ccee851c1df4ba391cebd8967540c0b0572a9b71a27fe9cbac5c549e409a2a2" + "script_pub_key": "6a2e6581a03b433acc9291f65c937fb43dab4b6327724271fcfab2457ed3faca0de68e0dd689157e573e52a1c666580c" }, { "value": 4949930546, - "script_pub_key": "0014c58eed43bc91be9d740cba73bd1624dd1511f025" + "script_pub_key": "00143804ff7a0e2bf5a70d78cefd6a14ce1832620ee8" } ], "vtxinwit": [ - "304402201b11e9e0fe457fb27d2d2edcdce0cfb1f8c663bc549db1bd2a3701b6b6e64761022026be2f6d4f4e162b010580750de684862c0064d58c7e6fdf454ef9f301c7062301", - "038bda439e3d8ee120962ada9e3cb14ff6e063b01ae628bf114388279e17a6eaf9" + "3044022033b60c137ebb5a8677b52b67c98d7a1f0699779f198dcd4b50037a7c45f0135f02200b371aebb00c31e96968c4dfc3cfe996c0318d0c84b732d6020262e69d6d4f1701", + "039e1e579d9d1091c7d465062ee0035661af55cd112de71e5194144d43ca628056" ], "lock_time": 0, - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", - "tx_id": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b" + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_id": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +917,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +944,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +969,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", - "block_time": 1730463822, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_time": 1730467853, + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +998,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 704, @@ -1083,14 +1012,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1030,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 703, @@ -1112,9 +1041,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1053,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1080,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 701, @@ -1161,14 +1090,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "msg_index": 1, "quantity": 2000000000, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", "status": "valid", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1107,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 700, @@ -1193,12 +1122,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 704, @@ -1207,14 +1136,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1154,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 703, @@ -1236,9 +1165,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1177,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1204,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 701, @@ -1285,14 +1214,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "msg_index": 1, "quantity": 2000000000, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", "status": "valid", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1231,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 700, @@ -1314,10 +1243,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1254,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1267,10 @@ }, { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1278,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1369,27 +1298,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1333,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1354,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1373,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 700, @@ -1456,12 +1385,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1400,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 697, @@ -1483,24 +1412,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": null, @@ -1512,16 +1441,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1460,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 700, @@ -1543,12 +1472,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1487,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 697, @@ -1570,24 +1499,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": null, @@ -1600,7 +1529,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1539,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1621,7 +1550,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1560,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1642,7 +1571,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1581,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1663,7 +1592,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1602,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1684,7 +1613,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1623,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1705,7 +1634,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1644,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1729,17 +1658,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_hash": "42e3baa6575475816598e10e7e66cbb5d2e5baa19b7274332f0d2e0c03acfca4", - "block_time": 1730463804, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_time": 1730467834, + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b:0 4 ", + "utxos_info": " 2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1676,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1762,7 +1691,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1781,17 +1710,17 @@ }, { "tx_index": 75, - "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "block_index": 208, - "block_hash": "71e47404520f096770769c474feab2295cad49d19e7aca6fd1737f69d75897e6", - "block_time": 1730463791, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", + "block_time": 1730467820, + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d7293bb4314c352ddf34764e4643061d9bea91fe80ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f025c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198:0 4 ", + "utxos_info": " c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1728,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1814,7 +1743,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1833,17 +1762,17 @@ }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", - "block_time": 1730463787, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_time": 1730467817, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", + "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1780,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1866,7 +1795,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1885,17 +1814,17 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", - "block_time": 1730463783, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", + "block_time": 1730467813, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", + "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1832,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1918,7 +1847,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1937,17 +1866,17 @@ }, { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", - "block_time": 1730463779, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", + "block_time": 1730467808, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "supported": true, - "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", + "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1884,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -1985,20 +1914,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "tx0_index": 60, - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx1_index": 55, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2017,38 +1946,38 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "block_time": 1730463809 + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_time": 1730467838 }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730463809, + "block_time": 1730467838, "asset_info": { "divisible": true, "asset_longname": null, @@ -2058,9 +1987,9 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 675, @@ -2068,15 +1997,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -2086,9 +2015,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_time": 1730463804 + "block_time": 1730467834 } ], "next_cursor": 674, @@ -2097,17 +2026,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "quantity": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, "asset_info": { "divisible": true, @@ -2118,22 +2047,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2143,22 +2072,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "block_index": 211, - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,30 +2097,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730463825.660409, + "block_time": 1730467857.2218225, "btc_amount": 0, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "destination": "", "fee": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, - "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", + "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -2205,7 +2134,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -2214,7 +2143,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2222,14 +2151,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2237,14 +2166,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2252,14 +2181,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2274,7 +2203,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2282,7 +2211,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2295,7 +2224,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2317,16 +2246,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "asset_info": { "divisible": true, "asset_longname": null, @@ -2338,16 +2267,16 @@ }, { "block_index": 209, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -2359,16 +2288,16 @@ }, { "block_index": 208, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -2380,16 +2309,16 @@ }, { "block_index": 208, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -2401,20 +2330,20 @@ }, { "block_index": 204, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "event": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2428,16 +2357,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -2449,20 +2378,20 @@ }, { "block_index": 207, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2470,16 +2399,16 @@ }, { "block_index": 206, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -2491,20 +2420,20 @@ }, { "block_index": 206, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2512,20 +2441,20 @@ }, { "block_index": 205, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "event": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463779, + "block_time": 1730467808, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2544,9 +2473,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", + "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", "block_index": 137, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2554,7 +2483,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463485, + "block_time": 1730467528, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2565,14 +2494,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "9712fb20f20d513856feb4408e8e6cd9e97cb486df17a2913cfbc77969c6544f", + "tx_hash": "178b61a7bde77db3739e77f7645385820701a229bc4ccb7d866539a1c661881b", "block_index": 112, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730463378, + "block_time": 1730467433, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2584,10 +2513,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2595,7 +2524,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -2608,10 +2537,10 @@ }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2619,11 +2548,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2632,10 +2561,10 @@ }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2643,11 +2572,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2656,10 +2585,10 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2667,7 +2596,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -2680,10 +2609,10 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2691,11 +2620,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2710,10 +2639,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "f372e72a42c6ba55a6e783fefe920de6e32304ea42544e6dafddefb1db3ab01e", + "tx_hash": "cf4df6f34c771bb7959594ec24d7f9747ee07371aca968c7319de88315cae6bf", "block_index": 151, - "source": "eef6fd2b6944b278d61022959515944d6c242c2b8b095c1e6b544a2598278735:0", - "destination": "bcrt1qczl8099nrddygqa022r2yjk5lr6juulpl7vmav", + "source": "61f12f3be611720b02fe9a4203129a55a089cb571654679ef47e9165da800be6:0", + "destination": "bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2721,11 +2650,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463537, + "block_time": 1730467589, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2740,10 +2669,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2751,11 +2680,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2764,10 +2693,10 @@ }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2775,11 +2704,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2788,10 +2717,10 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2799,11 +2728,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2812,10 +2741,10 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2823,11 +2752,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2836,10 +2765,10 @@ }, { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2847,11 +2776,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463779, + "block_time": 1730467808, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2871,9 +2800,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2882,7 +2811,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2892,7 +2821,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -2908,9 +2837,9 @@ }, { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2919,7 +2848,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2929,11 +2858,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -2950,9 +2879,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2890,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2900,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -2991,19 +2920,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", + "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3011,7 +2940,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3026,11 +2955,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -3040,19 +2969,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3060,7 +2989,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3075,7 +3004,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -3089,19 +3018,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3109,7 +3038,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3124,7 +3053,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3144,19 +3073,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", + "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3164,7 +3093,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3179,11 +3108,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -3193,19 +3122,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3213,7 +3142,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3228,7 +3157,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -3242,19 +3171,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3262,7 +3191,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3277,7 +3206,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3297,19 +3226,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3317,7 +3246,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3332,7 +3261,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -3346,19 +3275,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3366,7 +3295,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3381,7 +3310,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3401,19 +3330,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3421,7 +3350,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3436,7 +3365,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -3450,19 +3379,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3470,7 +3399,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3485,7 +3414,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3504,16 +3433,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -3524,14 +3453,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -3546,20 +3475,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", + "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -3574,20 +3503,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463592, + "block_time": 1730467637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", + "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -3602,20 +3531,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730463589, + "block_time": 1730467634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", + "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -3630,20 +3559,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463576, + "block_time": 1730467621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "f10d1dac9f8b370d00f9762bcf6b1db10d07be4ae301753896f397e99eb8a478", + "tx_hash": "2c8c7f352a2ae38fe40e10dae18fa762073de3b0decf2ac8d8bd8691b534ece9", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -3658,7 +3587,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463571, + "block_time": 1730467617, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3672,8 +3601,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -3681,16 +3610,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -3698,16 +3627,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -3715,16 +3644,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 40, @@ -3732,16 +3661,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730463476, - "last_issuance_block_time": 1730463480, + "first_issuance_block_time": 1730467522, + "last_issuance_block_time": 1730467525, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 19, @@ -3749,8 +3678,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730463452, - "last_issuance_block_time": 1730463473, + "first_issuance_block_time": 1730467506, + "last_issuance_block_time": 1730467517, "supply_normalized": "0.00000019" } ], @@ -3763,8 +3692,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -3772,16 +3701,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -3789,16 +3718,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -3806,16 +3735,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 40, @@ -3823,16 +3752,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730463476, - "last_issuance_block_time": 1730463480, + "first_issuance_block_time": 1730467522, + "last_issuance_block_time": 1730467525, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 19, @@ -3840,8 +3769,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730463452, - "last_issuance_block_time": 1730463473, + "first_issuance_block_time": 1730467506, + "last_issuance_block_time": 1730467517, "supply_normalized": "0.00000019" } ], @@ -3854,8 +3783,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -3863,16 +3792,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -3880,16 +3809,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -3897,16 +3826,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 40, @@ -3914,16 +3843,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730463476, - "last_issuance_block_time": 1730463480, + "first_issuance_block_time": 1730467522, + "last_issuance_block_time": 1730467525, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 19, @@ -3931,8 +3860,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730463452, - "last_issuance_block_time": 1730463473, + "first_issuance_block_time": 1730467506, + "last_issuance_block_time": 1730467517, "supply_normalized": "0.00000019" } ], @@ -3943,17 +3872,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "block_hash": "33eab4c5b854adac9b69b0861376d6790662d71cb88ec12066e86c7df8635f70", - "block_time": 1730463787, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_time": 1730467817, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750:0 4 ", + "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3961,14 +3890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -3976,7 +3905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3995,17 +3924,17 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "block_hash": "7e05a3fdb33817c2f51848efce804002028b6db8023dff3cd302d1147a2d8c0d", - "block_time": 1730463783, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", + "block_time": 1730467813, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e96e360396a7f2974511f1cba0cfed291876f2f080ecc68fbf963907a4787394e1db7472c70c85bb8680c58eed43bc91be9d740cba73bd1624dd1511f02588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c:0 4 ", + "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4013,14 +3942,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4028,7 +3957,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4047,17 +3976,17 @@ }, { "tx_index": 72, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_hash": "67778e1633a3bf633bcf6a7aa556e6e9959954326f918a4aea3ddccc2b441dfe", - "block_time": 1730463779, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", + "block_time": 1730467808, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "supported": true, - "utxos_info": " 6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46:1 2 ", + "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4065,12 +3994,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4081,17 +4010,17 @@ }, { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_hash": "08dab000338cb97d55543bcaf23a9bb696794c5cf02644f978bccb78120db9ef", - "block_time": 1730463766, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "5761b45953c102d88bacbff89b100e0cedc8633cf4e3898df6ec0b8af0b756e8", + "block_time": 1730467805, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b:1 2 ", + "utxos_info": " 8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4116,17 +4045,17 @@ }, { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 197, - "block_hash": "26392b4b781b115a241ad509959804ae74b8e21c8748f1318b2d2e3fc228be9d", - "block_time": 1730463733, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "block_hash": "3df978603809c284f596cad79af1c555c40a75b36a8d8cd875a32e53ee715708", + "block_time": 1730467763, + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb:1 2 ", + "utxos_info": " be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4143,7 +4072,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4161,20 +4090,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4196,9 +4125,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4213,7 +4142,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4239,9 +4168,9 @@ }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4256,7 +4185,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4282,9 +4211,9 @@ }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4299,7 +4228,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4325,9 +4254,9 @@ }, { "tx_index": 60, - "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "block_index": 210, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4342,7 +4271,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4373,10 +4302,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4401,7 +4330,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4410,10 +4339,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4438,7 +4367,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730463476, + "block_time": 1730467522, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4450,10 +4379,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4478,7 +4407,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730463452, + "block_time": 1730467506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4490,10 +4419,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4518,7 +4447,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730463449, + "block_time": 1730467503, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4530,10 +4459,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4558,7 +4487,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4576,22 +4505,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4600,22 +4529,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", + "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", "tx_index": 21, "block_index": 134, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463473, + "block_time": 1730467517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4624,22 +4553,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", + "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", "tx_index": 20, "block_index": 133, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463468, + "block_time": 1730467513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4648,22 +4577,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", + "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", "tx_index": 19, "block_index": 132, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463455, + "block_time": 1730467510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4672,22 +4601,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6f281df07c7856c3b2903c76d6d0983c2d86b7ede329004247a7a6da09d83834", + "tx_hash": "03b0ed1544e4aa249d8b16e104e1c1eb0653bac0f901cf3334b756341939e97c", "tx_index": 15, "block_index": 127, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463436, + "block_time": 1730467491, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4696,22 +4625,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4726,22 +4655,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4758,8 +4687,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset_info": { "divisible": true, "asset_longname": null, @@ -4772,12 +4701,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4793,7 +4722,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4805,7 +4734,7 @@ "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "02000000000101495942bb5732d6e17b15e2f0ccc7d09a287eb0713dd3d52d075cc92710a376e100000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff0200000000000000002b6a298cbd3881c3b760272da829ed7537e954a8fe50204333ca07c9866eed392fb944b1ec4803b182bc9af282ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "0200000000010140e8cddf1d6192b956db2a16b360a5440c86b04a0b6cab4a21f5094b6985b0cb000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0200000000000000002b6a29d04e3af24f09e16bb551e2704631a454d2ceef5ca9fb90e463289e34e913a61903117c2a5a2772527d82ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4823,23 +4752,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" }, "name": "btcpay", - "data": "434e5452505254590b3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "data": "434e5452505254590ba51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "02000000000101bae42086a22ccbb8c9f94b165cd21d7b1c94b343f4602f6dfa9324937e8cd97a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe00000000000000004b6a49bf0094f4d36c4bf1350ea10415cfc59db691d764b7760a84717aab8bfbbf21ebbdcf716956adef97570e1b7163f9cb6de7f89dafc515119252a48421477b220bf08f611c36c2e7058c77a7052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "0200000000010166305b107998052c191eb345539a43a9b5de3804784ede4ea605d1bdbcb8396a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e8030000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2100000000000000004b6a499f4b097f41297c59e1b386bdc9781a9a7df3333d64b814f3aef235cb9d52c0235e7ef370afd6fbdef9c42a8710b52f8985ab9921de925efc29c9d53f143ae99809c19eff19e8e4638b77a7052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "order_match_id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "status": "valid" } } @@ -4848,7 +4777,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 1000, "overburn": false }, @@ -4858,27 +4787,27 @@ "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "0200000000010145a65626e6c2e99b4022e6b7bfae443ecc1f0e0fb0804e229cf7d002410fa47600000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000" + "rawtransaction": "02000000000101c1b89134bd97a9a83406cdb3e0f475cc1a8036025116ee901be0cce20789059e000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" }, "name": "cancel", - "data": "434e54525052545946c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "data": "434e545250525459465c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "020000000001015ab6a3fadb46a9df14b29f6ece550b0b11a976ca90cc0fd37b12869b753b68c501000000160014fcec67ae32d58c150f61c00bcd5a3e0317724649ffffffff0200000000000000002b6a29afaee2167a032b3f1d202007a340124c3f976ff1d725bf0f70ce36080b7be7461e17ae44a96eddb87b3e8d092701000000160014fcec67ae32d58c150f61c00bcd5a3e031772464902000000000000", + "rawtransaction": "02000000000101aacd0e5e1a8c7844b8fd3696e7ad74b3c087eda84c2e6010eb2f6ad655242b5c01000000160014ffdebde14127aa2af866de83c22853593005affdffffffff0200000000000000002b6a29cebf0919789d028d5ee2cd0d3f1b710e1aedfa2e1edfb96b79a0015c062b14f8e80d69cdbc9b54cc053e8d092701000000160014ffdebde14127aa2af866de83c22853593005affd02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "status": "valid" } } @@ -4887,7 +4816,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4906,7 +4835,7 @@ "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101f679378d80c481e74fb46b05259b392f369693a9faaf8ef8acddec6e8fc9f12300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000226a20f52c4b8cc50ead8e74615ba2b4af5c2912b2ab1d619c759ada5de441132ac8cb92bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101a22e4a67053a5acb3c5f25f59e8e6f6b128a3fec54cb0f7d411cc3fe8f73102c000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000226a204d1e3208656909dc4f1be80ae78ff6a20740e2f11895e0d403e958b2cf10d19992bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4922,7 +4851,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4946,7 +4875,7 @@ "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "020000000001017edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da0200000016001400667124a1ada318ec2c1b8b39e49dc755a2906effffffff0200000000000000002c6a2ada5ac2b160bed5c5504b900741a70f82edd041e06ace5f4942b4860184104fab79a725a0f10de23f51c332dd08270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e02000000000000", + "rawtransaction": "020000000001017f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed245020000001600149d89a2518adb0281244890afd1bb4d3c931f5eb6ffffffff0200000000000000002c6a2ad4eaec308d80109a59b3eb126bbd6ff1141b6fb1272adff767b15917530ce1a01688998925181d9f011732dd0827010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4968,14 +4897,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -4994,7 +4923,7 @@ "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "0200000000010127484090be58476197f874d79be9e83f926f1bd9a006fad9285d25c0db4671c900000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2142c7cfc079dc8517eea9e3b14461a0d70298660bd8817f8ccb8ec9ae992ec60c2257bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "020000000001014ce71077ec6979d2233ea2f42f40f3030160fea575471f3e50248ce9871a84c7000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21f9c587fc44eecabb0116eefe92439787a373cd264f47001cc215a8cb3f8417ad4757bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5011,10 +4940,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "transfer_destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "lock": false, "reset": false, @@ -5027,7 +4956,7 @@ "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "02000000000101da061478832a875eca2ad789f3be3f52d923b95b0dc921abc924408e9f1612a500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000236a21b98d2966a69ba68e8a8b61dc51f402237b45abc4e7427138f675c1827d27fa45bd69b2052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "0200000000010154bbe92f15fe2191e819cc15a2030368be7e0eacf5d56dcbb2f671576473791a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000236a213aed3bdfb776968c28a7c1dddcf10ec68b3ee1abbf0c2ccf8f428518f3e1128a2e69b2052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5052,16 +4981,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", 1 ], [ "MPMASSET", - "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", 2 ] ], @@ -5069,26 +4998,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d7293bb4314c352ddf34764e4643061d9bea91fe80e96e360396a7f2974511f1cba0cfed291876f2f040000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807b5d66ec4d5936b8c7c77a4145f58847067ecd21808eed8f24fbe533f031f29ff29ebd346b54e59a0040000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "020000000001042dafd140772e0bf47690544cd83719c687092f3b3e7544e00838b278fd4d9a7d00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff897698c45f498e492c742e7d1a55e023d2fd78cf9e875a9627513a3dfc51ef3800000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffe98095e79d8da4da9ed4b40cf87a29e05cac525f4fa1ac36b202613a9e2db9c300000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffffcae093ed649f416658e00db2ff3d538b100bf1a059d588c55fb1a2e295ecac4f00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff03e803000000000000695121023cf57dde790755c5ff58d9173149e9811c54e9c485aa132df9cfc1d1db14adbe210246c05baa39732734250966b84aad8af39af3dbd4ba78d8f2f1efb998feb37cfe21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aee8030000000000006951210223f57dde790755c5ff8bd915b19ec0baa841a5f1a875275bb78d82d7c68f47152102d73eda43574524a282fbf1fd5b5c4153551ef2cccc8a28b2f1efbc7b9e3bb8ff21023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d5553aeb8f216a804000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000002000002000002000000000000", + "rawtransaction": "02000000000104e62d39655be446249fae5886f5197a870347d6a2fd6dc8aea009a120b06675e5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff327da60c579997ac821eafeaf25ac17098196f62c1a951eb461a53d99aebb696000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffffbc13b2a68aba2c8a30e57ba5b1febd8cc3f6278148a30d5fffd32d65301eb026000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff1bcf6696a71ae840f6a72dc83de506fa418249335ae9b1e54ca735aa5ab16dc1000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e80300000000000069512102717c7bab9107b2bfb122b0d624d137d2af4a8dd7c492dbdb9b1cbcded1ab6c862103507a72ee53666df8eff94475080382cf4dcde199f53ac46856bb01637e86b7802103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aee803000000000000695121026e7c7bab9107b2bfb1f1b0d4a4aa6ab44323d4e17c551ca1da5d495696ad12f021039d5bf360bee949030acab444fa9c7051f0f98acd10a0c42856bb04801e0e73922103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aeb8f216a8040000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5100,7 +5029,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5117,7 +5046,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5131,7 +5060,7 @@ "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101d912ed19e99eb07b99aecb51bc60a4ccc44c944e66cb4b73366f65847e62054a00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000356a33e495e847659fcfe4893f72de8a02527233c46af5dc6603da031fbb9f65860401a1e113dfcdcc952e40757c939623814510f3cc37b8052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101ae17720f3cf3f073079058d00584fc14dbc1e47fbeec70d3b6de3cdc08ce5b33000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000356a3371b49840dbf78b83e3b3b80c2fa24ac420536e301f01d9aceb0c16e5fc5f13a0e6e64a422d4ab80ac4678f7bb0c833b92af73e37b8052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5153,8 +5082,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5170,19 +5099,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880e96e360396a7f2974511f1cba0cfed291876f2f0", + "data": "434e54525052545902000000000000000100000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "02000000000101dd1254839ca7a3fa1072304cb33451da3da060e1baa5b53cc849c38d449993eb00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000306a2eb5a9802f8c68c5add309fd3cd593f93fc02f601000dbfe99c9fa80af913d0ceac89066884e339f45b192811070895cb9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101600b0e48665d1cedd14ede371dc103399ca19f3df573e6407449dfbd4df98094000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000306a2ee0b580fbcba4ec673ca28b0584109f3842c41b0c20b820306a921194d9344adbd0af78ab14a34c38b1b265a6dc635cb9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "quantity_normalized": "0.00001000" } @@ -5192,23 +5121,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480e96e360396a7f2974511f1cba0cfed291876f2f007ffff", + "data": "434e54525052545904808eed8f24fbe533f031f29ff29ebd346b54e59a0007ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001017737ef6341dbf734dd761edfbf90b6be63c1958ca0d4a6c40f619ab54c2a0d4500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000236a2151b299581a5434248cbd6aed0242139077d384e9f60f10be3c96c9432c72e5d03e57bc052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "020000000001013f0807c2e76fd2c227aaf75a1db4c92c05419ce31b4e1e054b2048d734b05f70000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21948192ee62d62d72d7e567e8a7b01df82b8675d1f5fc43777cf33ce2c85c22f2dd57bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "flags": 7, "memo": "ffff" } @@ -5218,8 +5147,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "quantity": 1000 }, "name": "dispense", @@ -5228,7 +5157,7 @@ "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "020000000001015b3e036c8d39cc17b35af8706aceb23d49118ac30bafa35cacc54e81cf44e82b03000000160014e96e360396a7f2974511f1cba0cfed291876f2f0ffffffff03e803000000000000160014c58eed43bc91be9d740cba73bd1624dd1511f02500000000000000000c6a0ac4f094f43110f276ecc08a25082701000000160014e96e360396a7f2974511f1cba0cfed291876f2f002000000000000", + "rawtransaction": "02000000000101753ec2e0b3fe2fa5a7a29872d453a16aa9cc55ea7a5ab8ecd0077b1294807d2f030000001600148eed8f24fbe533f031f29ff29ebd346b54e59a00ffffffff03e8030000000000001600143804ff7a0e2bf5a70d78cefd6a14ce1832620ee800000000000000000c6a0a66acea357cf698b28bdd8a250827010000001600148eed8f24fbe533f031f29ff29ebd346b54e59a0002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5241,7 +5170,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5272,7 +5201,7 @@ "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "02000000000101cd456e236d2bfadbe1dcaa1b453e6e3bc2c746f5155bdc822b3495b4b532421c00000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000316a2fdc33cb33f7341f6e4a30f17d7b409a3610726e6240cf4d9111b03d6efa42990020db28fd571d66d428bc5613e7540021b9052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "020000000001015ac4bc4f0b3fd074f065a8c61b8f82222eb08658615544a1fd11c8c29eb25498000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000316a2fe52fc6ea9b48a3e8fbd7fabfef3250a4408bd227abe85790ab89c6510303b58bb8b27816b1e6f3c6d84b321361d2ec21b9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5307,13 +5236,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5325,7 +5254,7 @@ "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101caf35c27c90d91d43e170ac5f26d6bfe176161ee25302dc0ecc052475259530500000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff020000000000000000166a142feb40016ce2506117457ce6bc754b27fc20436d52bf052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101b9e26ad7824ffa11e584ba3fb819bc61d8e18e67465e4a5a96a5862aab0adfd5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000166a14ef4caa08595f56e4b7b7780ad102c4022ff2c61f52bf052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5337,13 +5266,10 @@ } } }, - "/v2/addresses/
/compose/attach_old": { - "error": "Disbaled. Please the new `attach` or `detach` instead." - }, "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5362,7 +5288,7 @@ "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "02000000000101ec9bff73a8a0ebb0d55455a2c391d5badf69caa6ea2967f8e83694f6f11e5f4000000000160014d7293bb4314c352ddf34764e4643061d9bea91feffffffff032202000000000000160014d7293bb4314c352ddf34764e4643061d9bea91fe0000000000000000146a1266cc3480f38f6b11f1bae2bbe607793334afdab5052a01000000160014d7293bb4314c352ddf34764e4643061d9bea91fe02000000000000", + "rawtransaction": "02000000000101842872ae8d1210945c44fc94f1ede6be6d68aeb15720e8c11ff074d8ab942a19000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000146a12e482f599078d5f30ee2404ad0f681adb0348dab5052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5375,27 +5301,24 @@ } } }, - "/v2/utxos//compose/detach_old": { - "error": "Disbaled. Please the new `attach` or `detach` instead." - }, "/v2/utxos//compose/detach": { "result": { "params": { - "source": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" + "source": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" }, "name": "detach", - "data": "434e545250525459666263727431713675356e686470336673366a6d6865357765387976736378726b6437347930376a686e6a3376", + "data": "434e545250525459666263727431713064776b646d7a6474796d7433333738306671357461766767757238616e6670356630333439", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "020000000001027edaf2c77bdd3dcc8bc80e20eb0181c06a89126759df2bab47eda890789b27da000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff55ce15846566fb8ada653250e7348d199054b4312a6b20bbf616567b15e82131010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b9ffffffff020000000000000000376a35da5ac2b160bed5c53a29f37535967eb499e52f880ebe6c2cd982ec6cec757adff49f5cd6826e9a4d5ea7dbbec0b563f418a3817b5f772c0a27010000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b902000002000000000000", + "rawtransaction": "020000000001027f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed24500000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745fffffffff75bf556a9c79ab4698c652107cce983e6f3383a0657bc5c79d5758f9417b22b01000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745ffffffff020000000000000000376a35d4eaec308d80109a33d188601f8c1ec1716c04d54a50bb80f6dc2d24603bd99398f9acfd446e7af8106558a912fdce604963ba4218772c0a2701000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74502000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v" + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" } } } @@ -5406,8 +5329,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -5415,16 +5338,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730463766, - "last_issuance_block_time": 1730463766, + "first_issuance_block_time": 1730467805, + "last_issuance_block_time": 1730467805, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "owner": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "owner": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false, "supply": 100000000000, @@ -5432,16 +5355,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730463740, - "last_issuance_block_time": 1730463740, + "first_issuance_block_time": 1730467772, + "last_issuance_block_time": 1730467772, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -5449,16 +5372,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730463571, - "last_issuance_block_time": 1730463589, + "first_issuance_block_time": 1730467617, + "last_issuance_block_time": 1730467634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "owner": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "issuer": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "owner": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "divisible": true, "locked": false, "supply": 100000000000, @@ -5466,16 +5389,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730463567, - "last_issuance_block_time": 1730463567, + "first_issuance_block_time": 1730467614, + "last_issuance_block_time": 1730467614, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 100000000000, @@ -5483,8 +5406,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730463526, - "last_issuance_block_time": 1730463526, + "first_issuance_block_time": 1730467578, + "last_issuance_block_time": 1730467578, "supply_normalized": "1000.00000000" } ], @@ -5496,8 +5419,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "owner": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false, "supply": 10000000000, @@ -5505,15 +5428,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730463416, - "last_issuance_block_time": 1730463428, + "first_issuance_block_time": 1730467470, + "last_issuance_block_time": 1730467483, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5521,14 +5444,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5536,7 +5459,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5549,7 +5472,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5571,9 +5494,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5588,7 +5511,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5614,9 +5537,9 @@ }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5631,7 +5554,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5657,9 +5580,9 @@ }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5674,7 +5597,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5700,9 +5623,9 @@ }, { "tx_index": 60, - "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "block_index": 210, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5717,7 +5640,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5743,9 +5666,9 @@ }, { "tx_index": 53, - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5760,7 +5683,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5791,13 +5714,13 @@ "/v2/assets//matches": { "result": [ { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5811,7 +5734,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5831,13 +5754,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 53, - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5851,7 +5774,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5871,13 +5794,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", "tx0_index": 50, - "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 51, - "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5891,7 +5814,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5911,13 +5834,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5931,7 +5854,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5958,20 +5881,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "event": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -5979,20 +5902,20 @@ }, { "block_index": 125, - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", + "event": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6000,20 +5923,20 @@ }, { "block_index": 124, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6021,20 +5944,20 @@ }, { "block_index": 124, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "event": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6046,16 +5969,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6073,12 +5996,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -6090,16 +6013,16 @@ }, { "block_index": 209, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6111,16 +6034,16 @@ }, { "block_index": 208, - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -6132,16 +6055,16 @@ }, { "block_index": 207, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -6153,16 +6076,16 @@ }, { "block_index": 206, - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -6185,14 +6108,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", + "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6207,20 +6130,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6235,20 +6158,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6263,20 +6186,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -6291,7 +6214,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730463416, + "block_time": 1730467470, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6303,10 +6226,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6314,7 +6237,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -6327,10 +6250,10 @@ }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6338,7 +6261,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6351,10 +6274,10 @@ }, { "tx_index": 75, - "tx_hash": "9a5b336eb87d4b0857d258a2b6568fcbecee6d9cd8e68fa4ef61c98583047198", + "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", "block_index": 208, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6362,7 +6285,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "asset_info": { "divisible": true, "asset_longname": null, @@ -6375,10 +6298,10 @@ }, { "tx_index": 74, - "tx_hash": "71725f3e884631584451ea9d53379c72ed715c202b980b53f994dc5fbc504750", + "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", "block_index": 207, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6386,7 +6309,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463787, + "block_time": 1730467817, "asset_info": { "divisible": true, "asset_longname": null, @@ -6399,10 +6322,10 @@ }, { "tx_index": 73, - "tx_hash": "50d397660457c6f75cf1f16f605c2f5c82872f5c30b33b287e4483df8015c71c", + "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", "block_index": 206, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6410,7 +6333,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463783, + "block_time": 1730467813, "asset_info": { "divisible": true, "asset_longname": null, @@ -6429,9 +6352,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6440,7 +6363,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6450,7 +6373,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,9 +6389,9 @@ }, { "tx_index": 29, - "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", + "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", "block_index": 142, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6477,7 +6400,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6487,7 +6410,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463504, + "block_time": 1730467547, "asset_info": { "divisible": true, "asset_longname": null, @@ -6503,9 +6426,9 @@ }, { "tx_index": 30, - "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", + "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", "block_index": 150, - "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", + "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6513,10 +6436,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6524,7 +6447,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463534, + "block_time": 1730467586, "asset_info": { "divisible": true, "asset_longname": null, @@ -6540,18 +6463,18 @@ }, { "tx_index": 33, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6561,7 +6484,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -6582,9 +6505,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6593,7 +6516,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6603,7 +6526,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6631,7 +6554,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6639,7 +6562,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6648,7 +6571,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6656,7 +6579,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6665,7 +6588,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6673,7 +6596,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6682,7 +6605,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6697,27 +6620,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6732,7 +6655,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -6746,27 +6669,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", + "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", "block_index": 147, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6781,7 +6704,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463523, + "block_time": 1730467575, "asset_info": { "divisible": true, "asset_longname": null, @@ -6795,19 +6718,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6815,7 +6738,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6830,7 +6753,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -6844,19 +6767,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6864,7 +6787,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6879,7 +6802,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6902,10 +6825,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6930,7 +6853,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6948,22 +6871,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "249d834c0a63a072670d0954388e0c70318c44b7fdb64d1d9db3fd83176266ef", + "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", "tx_index": 13, "block_index": 125, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6972,22 +6895,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c", + "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", "tx_index": 12, "block_index": 124, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463424, + "block_time": 1730467478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -6996,22 +6919,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7026,22 +6949,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "37cb681472e69a6479748665b108ad84b4ac296acf218128027ae44f634e8d61", + "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", "tx_index": 11, "block_index": 123, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463420, + "block_time": 1730467474, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -7057,9 +6980,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7074,7 +6997,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7100,9 +7023,9 @@ }, { "tx_index": 53, - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7117,7 +7040,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7143,9 +7066,9 @@ }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7160,7 +7083,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7186,9 +7109,9 @@ }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7203,7 +7126,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7229,9 +7152,9 @@ }, { "tx_index": 60, - "tx_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "block_index": 210, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7246,7 +7169,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7277,9 +7200,9 @@ "/v2/orders/": { "result": { "tx_index": 55, - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "block_index": 211, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7294,7 +7217,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7322,13 +7245,13 @@ "/v2/orders//matches": { "result": [ { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7342,7 +7265,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7369,15 +7292,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "btc_amount": 2000, - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "status": "valid", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "btc_amount_normalized": "0.00002000" } ], @@ -7388,9 +7311,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "block_index": 188, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7408,7 +7331,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730463690, + "block_time": 1730467720, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7434,9 +7357,9 @@ }, { "tx_index": 55, - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "block_index": 211, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7454,7 +7377,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730463822, + "block_time": 1730467853, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7480,9 +7403,9 @@ }, { "tx_index": 50, - "tx_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", + "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", "block_index": 185, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7500,7 +7423,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463606, + "block_time": 1730467651, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7526,9 +7449,9 @@ }, { "tx_index": 52, - "tx_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", + "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", "block_index": 208, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7546,7 +7469,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463791, + "block_time": 1730467820, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7572,9 +7495,9 @@ }, { "tx_index": 58, - "tx_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", + "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", "block_index": 193, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7592,7 +7515,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463719, + "block_time": 1730467749, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7623,13 +7546,13 @@ "/v2/orders///matches": { "result": [ { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7646,7 +7569,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7666,13 +7589,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 53, - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7689,7 +7612,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463690, + "block_time": 1730467720, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7709,13 +7632,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", "tx0_index": 50, - "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 51, - "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7732,7 +7655,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463606, + "block_time": 1730467651, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7752,13 +7675,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7775,7 +7698,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7801,13 +7724,13 @@ "/v2/order_matches": { "result": [ { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7821,7 +7744,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7841,13 +7764,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", "tx0_index": 52, - "tx0_hash": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 53, - "tx1_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7861,7 +7784,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730463690, + "block_time": 1730467720, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7881,13 +7804,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692_b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", + "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", "tx0_index": 50, - "tx0_hash": "c1b7899b6d1528047466fce514139952c36bd1280779089bef685cbc9fa66692", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 51, - "tx1_hash": "b632e4311d6e70d662d86ac1b2eaec8b54691b01ed316df7c9f43cb8328517db", - "tx1_address": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7901,7 +7824,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730463606, + "block_time": 1730467651, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7921,13 +7844,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx0_index": 60, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx1_index": 55, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7941,7 +7864,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7986,66 +7909,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", + "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", "block_index": 121, - "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", + "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730463412, + "block_time": 1730467465, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2fa2f6c16e5a850f7309eda42a0d73357dbc3d3e215e19659d3512c88087b3d9", + "tx_hash": "6e78cc5e128af65f1686523a753af99b78c132bdc001ba49411a3ce47c50ee9c", "block_index": 120, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730463408, + "block_time": 1730467462, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "cd462b8e18ccadeed2abce5b0069fbcf504c66116c9e5a6aa0560ee8d4197a04", + "tx_hash": "db455fa4b624eeb04f20aa18e96ee26fc63c1ed3aec0e8650df974a54432d2e6", "block_index": 119, - "source": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq", + "source": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730463403, + "block_time": 1730467457, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "c0287b7539b3c2d2bfbdb2186d66d8d7c6c8974533018cc78a5cc56fd51f6d9e", + "tx_hash": "17392c3df9592847436074efa44d5acaedfd24947c269a583e9c043dd86afd79", "block_index": 118, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730463399, + "block_time": 1730467454, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c5537fcd875e0cac68401eadb3009889f858bd22e07207f365101c273aaec5ad", + "tx_hash": "0f9e72e8e6d07cb5998119bc8f4ed292e6624a9b28465d43b404f0cbc60ae639", "block_index": 117, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730463396, + "block_time": 1730467450, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8057,9 +7980,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8068,7 +7991,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8078,7 +8001,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -8094,9 +8017,9 @@ }, { "tx_index": 29, - "tx_hash": "bd6b07cd2f01077ae95eadb938860831b6d0beb324ee411aa50f6589320487f6", + "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", "block_index": 142, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8105,7 +8028,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8115,7 +8038,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463504, + "block_time": 1730467547, "asset_info": { "divisible": true, "asset_longname": null, @@ -8131,9 +8054,9 @@ }, { "tx_index": 30, - "tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", + "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", "block_index": 150, - "source": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", + "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8141,10 +8064,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d1465a87500496f9ea7141de3aca195e97eb8287b81438047a18d29202c428d5", - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8152,7 +8075,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463534, + "block_time": 1730467586, "asset_info": { "divisible": true, "asset_longname": null, @@ -8168,9 +8091,9 @@ }, { "tx_index": 63, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8179,7 +8102,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8189,11 +8112,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8205,18 +8128,18 @@ }, { "tx_index": 33, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8226,7 +8149,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -8247,9 +8170,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8258,7 +8181,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8268,7 +8191,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -8288,19 +8211,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8308,7 +8231,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8323,7 +8246,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -8337,19 +8260,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8357,7 +8280,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8372,7 +8295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8391,20 +8314,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8425,20 +8348,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8461,12 +8384,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "event": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "tx_index": 42, - "utxo": "ddc33af9e516e76d76656655d33c03f82db0508bbe26d0502b1641b3595bbeca:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "utxo": "1c185c4c80aadf151f8406ce362617c32a10281f6390644e3518f6761efaf1c9:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "confirmed": true, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "divisible": true, "asset_longname": null, @@ -8487,27 +8410,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 704, @@ -8516,14 +8439,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -8534,9 +8457,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 703, @@ -8545,9 +8468,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -8557,24 +8480,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -8584,9 +8507,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 701, @@ -8598,15 +8521,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } }, "/v2/events/counts": { @@ -8641,16 +8564,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -8660,9 +8583,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 700, @@ -8672,12 +8595,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -8687,9 +8610,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 697, @@ -8699,39 +8622,39 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", - "utxo_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "block_time": 1730463822, + "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730463809, + "block_time": 1730467838, "asset_info": { "divisible": true, "asset_longname": null, @@ -8741,24 +8664,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -8768,9 +8691,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_time": 1730463804 + "block_time": 1730467834 } ], "next_cursor": 669, @@ -8787,27 +8710,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8822,7 +8745,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -8836,19 +8759,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "8b0b9bf9316e3ee2ae6821d1f8a48f6210c39044c62426d1948a220ca6b375c2", + "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8856,7 +8779,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8871,11 +8794,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463736, + "block_time": 1730467767, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -8885,27 +8808,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9d126b697bc0e74357bae738b08f2343937e0032ce39d5b2d8cb2b399c837b5f", + "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", "block_index": 147, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "last_status_tx_hash": null, - "origin": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8920,7 +8843,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730463523, + "block_time": 1730467575, "asset_info": { "divisible": true, "asset_longname": null, @@ -8934,19 +8857,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "64345e2c685320805e3ffe17d6ee71b02524de65e01695df8d6795320b9b1dda", + "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8954,7 +8877,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8969,7 +8892,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463500, + "block_time": 1730467543, "asset_info": { "divisible": true, "asset_longname": null, @@ -8983,19 +8906,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f82801203f23822517d9161e248b03837fd0a1188fc70a90a812f01c46de71f7", + "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", "block_index": 140, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "26ee4095ab4764c3382ea61f6b56a242a939cd3b05a965c53fcc88869fb82224", + "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9003,7 +8926,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9018,7 +8941,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730463496, + "block_time": 1730467539, "asset_info": { "divisible": true, "asset_longname": null, @@ -9037,10 +8960,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9048,7 +8971,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -9061,10 +8984,10 @@ }, { "tx_index": 78, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9072,11 +8995,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9085,10 +9008,10 @@ }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9096,7 +9019,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -9109,10 +9032,10 @@ }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9120,11 +9043,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9133,10 +9056,10 @@ }, { "tx_index": 76, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9144,11 +9067,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9163,14 +9086,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -9185,20 +9108,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "9cbd87c824c325c9e3b3929e4b808ed0116b78788bdfd287d9850b03c9484a23", + "tx_hash": "bac413745519011121694c9a89593b6cdf577b62a48484895524f2629d053ba7", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "transfer": false, "callable": false, "call_date": 0, @@ -9213,20 +9136,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463740, + "block_time": 1730467772, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3fe5d86a7e477b134ac6a3cbdb4240c985cdfc2519ea0c7458c55d301b02e388", + "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -9241,20 +9164,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463592, + "block_time": 1730467637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "da2c2f364fdf9292d0db4d0afb1de4580a61e03ceef4d4f777fbec484f1e4640", + "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -9269,20 +9192,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730463589, + "block_time": 1730467634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "92ae8f16b267d4fd0f3415882b85c44b42cddeda4ef57af9fab2fc8a5baf0644", + "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -9297,7 +9220,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463576, + "block_time": 1730467621, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9308,14 +9231,14 @@ "/v2/issuances/": { "result": { "tx_index": 71, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "transfer": false, "callable": false, "call_date": 0, @@ -9330,7 +9253,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9339,16 +9262,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -9359,16 +9282,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" } ], @@ -9379,9 +9302,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9389,14 +9312,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463489, + "block_time": 1730467531, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c43c90300d66b756e5fd68ff10aabb601e9a3cf0c7bf94462fe69e8c6b9462f1", + "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", "block_index": 137, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9404,7 +9327,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463485, + "block_time": 1730467528, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9414,9 +9337,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9424,17 +9347,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730463489, + "block_time": 1730467531, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, "block_index": 156, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9459,7 +9382,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9468,10 +9391,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9496,7 +9419,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730463476, + "block_time": 1730467522, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9508,10 +9431,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9536,7 +9459,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730463452, + "block_time": 1730467506, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9548,10 +9471,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9576,7 +9499,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730463449, + "block_time": 1730467503, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9588,10 +9511,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "916b04680209b381148d4955b065a9f0996b069d8b0ef37874068d75c6b6c9fe", + "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9616,7 +9539,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730463428, + "block_time": 1730467483, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9634,22 +9557,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9658,22 +9581,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1bc8bfd85510a4dd8c0ccff0b27ec6e32b5528c3080d60d70d3ee95b5d93c99c", + "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", "tx_index": 21, "block_index": 134, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463473, + "block_time": 1730467517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9682,22 +9605,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e95a42f77a00c4f8541469c40c18baec616d106a595406dc55096ee6d40aec10", + "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", "tx_index": 20, "block_index": 133, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463468, + "block_time": 1730467513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9706,22 +9629,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "627c8f77ba12e26606bd760c9f684748097ea5cef45426e9990aefd325641924", + "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", "tx_index": 19, "block_index": 132, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "51d7fa6af50b08c88a2564cb6c05d2d8364e847f4ac94f5d933b97bec87e79e2", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463455, + "block_time": 1730467510, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9730,22 +9653,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "561ea3f3b54e722693cac52fd446e9f03cc41aa6a33ef2d7edec8ee44c871be8", + "tx_hash": "ac68db009ddeab5fff5da046698c05a254c7217fe24980421f74c93287736192", "tx_index": 17, "block_index": 129, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "fairminter_tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463445, + "block_time": 1730467499, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9759,22 +9682,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, "block_index": 136, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -9785,23 +9708,14 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ - { - "vout": 1, - "height": 210, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", - "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" - }, { "vout": 0, "height": 203, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", - "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" + "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" }, { "vout": 1, @@ -9809,8 +9723,17 @@ "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", - "address": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd" + "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + }, + { + "vout": 1, + "height": 210, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" }, { "vout": 2, @@ -9818,8 +9741,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41", - "address": "bcrt1qprw732yg2mw2laz2mt45z3nxf72qj46n62qpeq" + "txid": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab", + "address": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy" } ], "next_cursor": null, @@ -9828,25 +9751,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" + "tx_hash": "ab91d25ddaeff8fc3191406dfe5f6c0b97ba2735cf2745bcb4cae7109dc38307" }, { - "tx_hash": "e4cbd84c212c0d85e0bc0ff0973493d51fb6943ce10eef36e319c57c93abf44b" + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464" }, { - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50" + "tx_hash": "7a01b5bcecfe586b29e272f20d6200a79f67d0e67bd339776b5625563a31096f" }, { - "tx_hash": "51b96c01de04fa3044227afc448135d3ee1b52620dfbfc69a91899dded04f67c" + "tx_hash": "07f79a857c031b673fbc182e7e7ccdc3dc7d77856cf171f233cc03a53dd7e879" }, { - "tx_hash": "9b9193cd55f4b64910cdb1b18f4eafe8a72e8c6373631fba1f83c26d5c8751d7" + "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788" }, { - "tx_hash": "fa12a032e01d27adbdca71be9acc1f1ca76aeca8031a6e1d4f5a6168383a1ef7" + "tx_hash": "59149addbd50a4696652bd1992a028a544b0d80b1ba1cdc8719a03c87bf3ddbe" }, { - "tx_hash": "62a86c538277f9812ed919d12ec84ae82ec04b0ed39374e81ece7ce3e46772ff" + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" } ], "next_cursor": null, @@ -9854,27 +9777,27 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 7, - "tx_hash": "4919bd36f63f4582744c1bb90c38305a665de2724c9c2274077637bc852ec538" + "block_index": 4, + "tx_hash": "f589724d4e5d8dc8de7c8efb4df0522c252bc84f24dfe42326879d6cb9d8faa6" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 1, - "height": 210, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a" - }, { "vout": 1, "height": 202, "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a" + "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3" + }, + { + "vout": 1, + "height": 210, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" }, { "vout": 0, @@ -9882,17 +9805,17 @@ "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362" + "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "023172c04c45c3d93a507440decebc2634b79a0e03446f3fcb305d9b3478a15d55" + "result": "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101413aa22da9b929934ee408dc970b36077cb7c87b70b069e0b8a1d7bb9f8e43bf0100000000ffffffff03e8030000000000001600144c5a6a2d5cae048251fef4adfbe023eb458f04b900000000000000000c6a0ab0d6c528b8839b96be74eb1409270100000016001400667124a1ada318ec2c1b8b39e49dc755a2906e024730440220630afa3b3683f914d74fe679507cfae30bd56d77af98e6c9eee69319897592f502206f9e10ebb8de21e010da7fc9bdcc0956e5bcefa377097ef6a4e2273d530a46cd01210371e58ba1571b65021affd211df2b0f5d0ca74f2eb50e3a23c4ec4753ffebf88400000000" + "result": "02000000000101ab1955de714f10735a3a900a93c87e67f40377ba77150cae8cefb4ba3a3361f60100000000ffffffff03e803000000000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74500000000000000000c6a0a6ecc7cee261673ed77abeb140927010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb60247304402200b94ed5c6dd6b3ded51ef7e95c4391bd9b6d7d23fc38e066ef2b26ee6a24aab50220561dcc8ae2033ae8faf2b55c550cd087a99132df468ee03e3c1746ebb081057f01210289358286deb0840210e8ebab29063bd08bc4e67b6cd9304f46df9fdfc1d0d9bb00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58706 @@ -9915,27 +9838,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79 }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "quantity": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, "asset_info": { "divisible": true, @@ -9946,22 +9869,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -9971,22 +9894,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "block_index": 211, - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -9996,30 +9919,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730463825.660409, + "block_time": 1730467857.2218225, "btc_amount": 0, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "destination": "", "fee": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, - "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", + "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -10033,7 +9956,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -10042,19 +9965,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -10064,7 +9987,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -10073,27 +9996,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79 }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "quantity": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, "asset_info": { "divisible": true, @@ -10104,22 +10027,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "CREDIT", "params": { - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -10129,22 +10052,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "asset": "XCP", "block_index": 211, - "event": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -10154,30 +10077,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 }, { - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730463825.660409, + "block_time": 1730467857.2218225, "btc_amount": 0, - "data": "020000000000000001000000000000271080ecc68fbf963907a4787394e1db7472c70c85bb86", + "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", "destination": "", "fee": 10000, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", - "tx_hash": "bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", "tx_index": 79, - "utxos_info": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b:1 bffeca60e014e633a0f798504aee66b4221b5e8b0efce177baeca4b3dc20ed4b:1 2 ", + "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "memo": null, "asset_info": { "divisible": true, @@ -10191,7 +10114,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730463825.660409 + "timestamp": 1730467857.2218225 } ], "next_cursor": null, @@ -10213,15 +10136,15 @@ "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", "block_index": 211, - "block_time": 1730463822, + "block_time": 1730467853, "difficulty": 545259519, - "previous_block_hash": "42fcd6115e07e4fa830dc3c0a650154ee16ba9ef5ab6cfef22b6da36c03c1a1d" + "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8" }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 678, @@ -10233,17 +10156,17 @@ "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5d745485a382afb8fc27e1ce5020e8690c12fabee4f8d1b19c5ace5b2a1dcc99", + "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", "block_index": 211, - "block_time": 1730463822, + "block_time": 1730467853, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "fee": 0, - "source": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "utxos_info": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1 da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0 3 1", + "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10253,9 +10176,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 679, @@ -10269,16 +10192,16 @@ "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "out_index": 0, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 565, @@ -10291,15 +10214,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "a86f462ff9c2e26578f53b4bd7c02daf459aa0b1fd970ef70314679e4dc57326", - "messages_hash": "c9010048bdc040dae60b1da6e002b58e89d0cca6dbfcd6d93755d1a9e0e5b441", + "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", + "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", "transaction_count": 1, - "txlist_hash": "f79e127f7f80208a62fd8ccbf3983f01495d945aeb4b5b76bd2a534234aa9441", - "block_time": 1730463822 + "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", + "block_time": 1730467853 }, "tx_hash": null, "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 690, @@ -10312,12 +10235,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 689, @@ -10333,12 +10256,12 @@ "address": null, "asset": "XCP", "block_index": 211, - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 2000000000, "tx_index": 78, - "utxo": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", - "utxo_address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", - "block_time": 1730463822, + "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -10348,9 +10271,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 696, @@ -10362,16 +10285,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -10381,9 +10304,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 700, @@ -10397,26 +10320,26 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "memo": null, "quantity": 1000, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "tx_index": 72, - "block_time": 1730463779, + "block_time": 1730467808, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6cc99c2371838cbd601c1d05f2c64798013dab8020b269307f9ac82db565ca46", + "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", "block_index": 205, - "block_time": 1730463779 + "block_time": 1730467808 } ], "next_cursor": 505, @@ -10430,15 +10353,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "tx_index": 76, - "block_time": 1730463804, + "block_time": 1730467834, "asset_info": { "divisible": true, "asset_longname": null, @@ -10448,9 +10371,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2be844cf814ec5ac5ca3af0bc38a11493db2ce6a70f85ab317cc398d6c033e5b", + "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", "block_index": 209, - "block_time": 1730463804 + "block_time": 1730467834 } ], "next_cursor": 674, @@ -10473,20 +10396,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "status": "valid", - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "tx_index": 61, - "block_time": 1730463725, + "block_time": 1730467755, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "ad4ab5e9266b59e00f58da0ccc3a6b2ff3a796c8455df95a2b8ba658e1ffdf50", + "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", "block_index": 195, - "block_time": 1730463725 + "block_time": 1730467755 } ], "next_cursor": null, @@ -10503,15 +10426,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "tx_index": 42, - "block_time": 1730463553, + "block_time": 1730467604, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -10525,9 +10448,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "6a1d1a9895385b09e542a0b5a87ab33413b997e1213e8a12ff15d0f3921ef183", + "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", "block_index": 155, - "block_time": 1730463553 + "block_time": 1730467604 } ], "next_cursor": null, @@ -10548,11 +10471,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730463766 + "block_time": 1730467805 }, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_time": 1730463766 + "block_time": 1730467805 } ], "next_cursor": 574, @@ -10575,22 +10498,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", "transfer": false, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "tx_index": 71, - "block_time": 1730463766, + "block_time": 1730467805, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "d8210857c51e250466fa84d21e31d32eaa566cd627ee751eaa8eb0e42a60db6b", + "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", "block_index": 204, - "block_time": 1730463766 + "block_time": 1730467805 } ], "next_cursor": 575, @@ -10605,12 +10528,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qck8w6saujxlf6aqvhfem693ym523rup9026kxm", + "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "tx_index": 62, - "block_time": 1730463730, + "block_time": 1730467760, "asset_info": { "divisible": true, "asset_longname": null, @@ -10620,9 +10543,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "d4423b60a23e1f4eff0bacfbb5e30371063ecc637ed1590f1f93cb4677e03a3b", + "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", "block_index": 196, - "block_time": 1730463730 + "block_time": 1730467760 } ], "next_cursor": 157, @@ -10647,15 +10570,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "status": "open", - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "tx_index": 77, - "block_time": 1730463809, + "block_time": 1730467838, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, @@ -10675,9 +10598,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 536, @@ -10695,20 +10618,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "3c5f65e335e125d06e7c47302cc7d2d7d00de29ffb94fda0af8817a2527ddefa", + "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", "tx0_index": 60, - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "tx1_index": 55, - "block_time": 1730463809, + "block_time": 1730467838, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10727,9 +10650,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 498, @@ -10742,11 +10665,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41" + "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 685, @@ -10759,11 +10682,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361" + "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407" }, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "block_time": 1730463690 + "block_time": 1730467720 } ], "next_cursor": null, @@ -10775,13 +10698,13 @@ "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", + "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", "status": "expired" }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 488, @@ -10795,18 +10718,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_72031dbb070c159da68a62eb6c32ae4012e8765c6e90c49d81a2f9df610cd361", - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "tx_index": 54, - "block_time": 1730463690, + "block_time": 1730467720, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6347139cbfc9fdea68f2f1e5a91391414f22bfe1f976ac9ac7a050fea367e8ce", + "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", "block_index": 188, - "block_time": 1730463690 + "block_time": 1730467720 } ], "next_cursor": null, @@ -10819,16 +10742,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "e6bae6201d2b2e821bda15c9495145a58484725338bc556bab023c5df01ce542", - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": "valid", - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "tx_index": 59, - "block_time": 1730463719 + "block_time": 1730467749 }, - "tx_hash": "593d6fb8caa88077a1995c2dbbcd323c153153304492ece5f78c2f63af35cae8", + "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", "block_index": 193, - "block_time": 1730463719 + "block_time": 1730467749 } ], "next_cursor": null, @@ -10841,13 +10764,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "source": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "block_time": 1730463822 + "order_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_time": 1730467853 }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 655, @@ -10860,14 +10783,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "a642633496f0047bb3f28cb56e5cf20a6b48027bfa831ae6c5295b33d9b462fe_73d3b317e69f4ec94ce4c2e8297b78213534818fadd5da239b88f62d71c68c41", - "tx0_address": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "tx1_address": "bcrt1qanrgl0uk8yr6g7rnjnsakarjcuxgtwuxqk8j7e", - "block_time": 1730463809 + "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_time": 1730467838 }, - "tx_hash": "c5683b759b86127bd30fcc90ca76a9110b0b55ce6e9fb214dfa946dbfaa3b65a", + "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", "block_index": 210, - "block_time": 1730463809 + "block_time": 1730467838 } ], "next_cursor": 464, @@ -10886,17 +10809,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "satoshirate": 1, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "status": 0, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "tx_index": 63, - "block_time": 1730463733, + "block_time": 1730467763, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -10905,9 +10828,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "45888bd80a700529df1d24a7734a4f88eaea970717a1047d6fa4d68f7ca4a4eb", + "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", "block_index": 197, - "block_time": 1730463733 + "block_time": 1730467763 } ], "next_cursor": 272, @@ -10922,9 +10845,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": 0, - "tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", + "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", "asset_info": { "divisible": true, "asset_longname": null, @@ -10934,9 +10857,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 567, @@ -10950,13 +10873,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mgaWvsrfmfjL6nEFCxfWVoSqKj16fZXnUQ", + "destination": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", "dispense_quantity": 10, - "dispenser_tx_hash": "42ff682ddb9d2d3ede38973993c720c96af76897d67253c9f9347c31c7ea78ab", - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", - "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", + "dispenser_tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", "tx_index": 31, - "block_time": 1730463512, + "block_time": 1730467555, "asset_info": { "divisible": true, "asset_longname": null, @@ -10966,9 +10889,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e24ee71547d43ea29977117176700de4150505d58382b3734fc58ab457132db0", + "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", "block_index": 144, - "block_time": 1730463512 + "block_time": 1730467555 } ], "next_cursor": null, @@ -10983,14 +10906,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qqpn8zf9p4k333mpvrw9nneyaca269yrwyrdly9", + "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3121e8157b5616f6bb206b2a31b45490198d34e7503265da8afb66658415ce55", - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -11001,9 +10924,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 568, @@ -11018,19 +10941,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qf3dx5t2u4czgy5077jklhcpradzc7p9e6823r6", + "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "tx_index": 25, "value": 66600.0, - "block_time": 1730463489, + "block_time": 1730467531, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "8a020e74850c1fb08501069acbf8948373249734b137538d4a37d57d13163dc5", + "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", "block_index": 138, - "block_time": 1730463489 + "block_time": 1730467531 } ], "next_cursor": 213, @@ -11061,12 +10984,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "start_block": 0, "status": "open", - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "tx_index": 43, - "block_time": 1730463558, + "block_time": 1730467607, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11074,9 +10997,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "4dcee4b7742b3820da0e952bd169bdbce9d9a574cd20f055f6373e708d91a636", + "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", "block_index": 156, - "block_time": 1730463558 + "block_time": 1730467607 } ], "next_cursor": 196, @@ -11089,11 +11012,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "7e6347a62d7a3c0d4964d2cccfb0aa122a3e0caf7cc8a085745c2f0f30130f25" + "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83" }, "tx_hash": null, "block_index": 130, - "block_time": 1730463449 + "block_time": 1730467503 } ], "next_cursor": 110, @@ -11109,17 +11032,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "bac9edd1f1f8837a577109ed2522f585ae1be12bfa8fb18d02905e56f39d7e54", + "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", "paid_quantity": 34, - "source": "bcrt1qa9hrvquk5lefw3g37896pnld9yv8duhs84yhsu", + "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", "status": "valid", - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "tx_index": 23, - "block_time": 1730463480, + "block_time": 1730467525, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6u5nhdp3fs6jmhe5we8yvscxrkd74y07jhnj3v", + "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", "divisible": true, "locked": false }, @@ -11127,9 +11050,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "3439e774c3cb45fc8b291d92f93d3b913a10e3dc311137d35e564e373ff91f23", + "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", "block_index": 136, - "block_time": 1730463480 + "block_time": 1730467525 } ], "next_cursor": 190, @@ -11143,28 +11066,28 @@ "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362:0", + "destination": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "status": "valid", - "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", "tx_index": 70, - "block_time": 1730463762, + "block_time": 1730467801, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "851813d7dc41a8cb33e341c8a2a97957594d811816bc630c0194562f3a737362", + "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", "block_index": 203, - "block_time": 1730463762 + "block_time": 1730467801 } ], "next_cursor": 584, @@ -11178,28 +11101,28 @@ "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "5758def2e4d90509b23e384c34015252fb7aceacb765bbb2d13fb0e32edf7268:0", + "source": "0d5e9c06995871fa17540d39523a675b6a79898ad42e73692c8c9c0be4fe3801:0", "status": "valid", - "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", "tx_index": 69, - "block_time": 1730463757, + "block_time": 1730467798, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qlnkx0t3j6kxp2rmpcq9u6k37qvthy3jf2ex2wd", + "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "790446945482eeaa6310051038c33705bfb1a2a9c2594dccc965bc2b694a949a", + "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", "block_index": 202, - "block_time": 1730463757 + "block_time": 1730467798 } ], "next_cursor": 311, @@ -11213,14 +11136,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e:0", + "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", "msg_index": 1, "quantity": 2000000000, - "source": "bf438e9fbbd7a1b8e069b0707bc8b77c07360b97dc08e44e9329b9a92da23a41:1", + "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", "status": "valid", - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "tx_index": 78, - "block_time": 1730463822, + "block_time": 1730467853, "asset_info": { "divisible": true, "asset_longname": null, @@ -11230,9 +11153,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "da279b7890a8ed47ab2bdf596712896ac08101eb200ec88bcc3ddd7bc7f2da7e", + "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", "block_index": 211, - "block_time": 1730463822 + "block_time": 1730467853 } ], "next_cursor": 698, @@ -11247,17 +11170,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qt0hnegslksrm60wcvm7fgy2yslwt92txthhfxv", + "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", "status": "valid", - "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", + "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", "tx_index": 9, - "block_time": 1730463412, + "block_time": 1730467465, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6c4940b46419c40789d2f482bd74b9a64c7e8bad9b977514ffcd970634ae440d", + "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", "block_index": 121, - "block_time": 1730463412 + "block_time": 1730467465 } ], "next_cursor": 65, From 165ba605f9a0405540a00f9d6ac2341e4934774e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 14:01:20 +0000 Subject: [PATCH 033/138] update fixtures --- .../test/fixtures/api_v2_fixtures.json | 220 ++---------------- 1 file changed, 21 insertions(+), 199 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 138b3ca5db..566ab78812 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14260,205 +14260,6 @@ } ] }, - "/v2/addresses/
/compose/utxo": { - "function": "compose_utxo", - "description": "Composes a transaction to attach or detach an assets from an address to UTXO.\nDisabled after block 870000.", - "args": [ - { - "name": "address", - "required": true, - "type": "str", - "description": "The address or the utxo from which the assets are attached or detached (e.g. $ADDRESS_1)" - }, - { - "name": "asset", - "required": true, - "type": "str", - "description": "The asset or subasset to attach or detach (e.g. XCP)" - }, - { - "name": "quantity", - "required": true, - "type": "int", - "description": "The quantity of the asset to attach or detach (in satoshis, hence integer) (e.g. 1000)" - }, - { - "name": "destination", - "default": null, - "required": false, - "type": "str", - "description": "The address or the utxo from which the assets are attached or detached (e.g. $UTXO_1_ADDRESS_1)" - }, - { - "name": "encoding", - "type": "str", - "default": "auto", - "description": "The encoding method to use", - "required": false - }, - { - "name": "fee_per_kb", - "type": "int", - "default": null, - "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)", - "required": false - }, - { - "name": "regular_dust_size", - "type": "int", - "default": 546, - "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.", - "required": false - }, - { - "name": "multisig_dust_size", - "type": "int", - "default": 1000, - "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output", - "required": false - }, - { - "name": "pubkeys", - "type": "str", - "default": null, - "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 - }, - { - "name": "allow_unconfirmed_inputs", - "type": "bool", - "default": false, - "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs", - "required": false - }, - { - "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", - "required": false - }, - { - "name": "fee_provided", - "type": "int", - "default": 0, - "description": "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", - "required": false - }, - { - "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 inputs_set", - "required": false - }, - { - "name": "dust_return_pubkey", - "type": "str", - "default": null, - "description": "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", - "required": false - }, - { - "name": "disable_utxo_locks", - "type": "bool", - "default": false, - "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": "p2sh_pretx_txid", - "type": "str", - "default": null, - "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction", - "required": false - }, - { - "name": "segwit", - "type": "bool", - "default": false, - "description": "Use segwit", - "required": false - }, - { - "name": "confirmation_target", - "type": "int", - "default": 3, - "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": "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": "(API v2 only) Return only the data part of the transaction", - "required": false - }, - { - "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 - }, - { - "name": "use_utxos_with_balances", - "type": "bool", - "default": false, - "description": "Use UTXO with balances", - "required": false - }, - { - "name": "exclude_utxos_with_balances", - "type": "bool", - "default": false, - "description": "Exclude silently UTXO with balances instead of raising an exception", - "required": false - }, - { - "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/addresses/
/compose/attach": { "function": "compose_attach", "description": "Composes a transaction to attach assets from an address to UTXO.", @@ -14488,6 +14289,13 @@ "type": "str", "description": "The vout of the destination output" }, + { + "name": "destination", + "default": null, + "required": false, + "type": "str", + "description": "[Disabled after block 870000] The utxo to attach the assets to" + }, { "name": "encoding", "type": "str", @@ -14675,6 +14483,20 @@ "type": "str", "description": "The address to detach the assets to, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1)" }, + { + "name": "asset", + "default": null, + "required": false, + "type": "str", + "description": "[Disabled after block 870000] The asset or subasset to detach" + }, + { + "name": "quantity", + "default": null, + "required": false, + "type": "int", + "description": "[Disabled after block 870000] The quantity of the asset to detach (in satoshis, hence integer)" + }, { "name": "encoding", "type": "str", From 2fd5520c03460a8994c316aa7e41ea93c8a4f61b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 14:51:08 +0000 Subject: [PATCH 034/138] Update relase notes --- .../counterpartycore/lib/api/compose.py | 2 +- release-notes/release-notes-v10.6.2.md | 20 ++++++++++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index d9c4d4727d..c4fd9b57e2 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -637,7 +637,7 @@ def compose_utxo( **construct_args, ): if util.enabled("spend_utxo_to_detach"): - raise exceptions.ComposeError("Disbaled. Please the new `attach` or `detach` instead.") + raise exceptions.ComposeError("Disbaled. Please use the new `attach` or `detach` instead.") params = { "source": source, "destination": destination, diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 9006dca49e..15608c5df1 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -8,7 +8,25 @@ ## Protocol Changes -- Starting from block X, to detach assets from a UTXO, this UTXO must be used in the Detach transaction. Consequently, the `asset` and `quantity` parameters have been removed: during a Detach, all assets attached to the UTXO are moved to the destination address. +This update includes major changes in UTXOS support. The previous system was designed to have maximum flexibility, in particular to be able to detach only part of the assets attached to a UTXO. However, as OpenStamp pointed out, this feature allows an Atomic Swap to be front runned by a detach. In addition to this vulnerability many interesting suggestions have been made by OpenStamp and the community. +We therefore took advantage of all these updates to separate the `utxo.py` contract (ID 100) into two separate contracts: `attach.py` (ID 101) and `detach.py` (ID 102). Indeed in its original design the two functions had almost the same signature and the same code which is no longer the case. +Messages with ID 100 will be disabled at the same block where messages with IDs 101 and 102 will be enabled. +12 blocks before activation the functions `compose_attach` and `compose_detach` will be deactivated to avoid having transactions with ID 100 confirmed after activation. + +Here are the changes that will be active after activating the protocol change: + +1. The `attach` function no longer accepts a `destination` parameter. By default, the first non-OP_RETURN output is the destination. +1. The `attach` function now accepts an optional `destination_vout` parameter. This parameter allows you to designate the number of the output to use as the destination. The transaction is invalid if `destination_vout` does not exist or if it is an `OP_RETURN` +1. The `detach` function no longer accepts the `asset` and `quantity` parameters: the UTXO is necessarily part of the transaction inputs and all assets are detached from the UTXO. +1. The `destination` parameter of the `detach` function is now optional. If not provided, the default destination is the address corresponding to the UTXO. +1. The `detach` function detaches the assets attached to all transaction inputs. + +The main consequences of this update are: + +1. It is no longer possible to front run a swap with a detach. +1. Transaction attach and detach are cheaper and easier to construct. In fact, the size of messages is systematically less than 80 and an OP_RETURN is therefore sufficient. +1. It is possible to make several detachments in a single transaction to save fees. +1. It is no longer possible to make a detach and a UTXO move in the same transaction. ## Bugfixes From 891421707a8d749462e9eca355837573b0cc40da Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 15:03:53 +0000 Subject: [PATCH 035/138] Update relase notes --- release-notes/release-notes-v10.6.2.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 15608c5df1..e1a43d2713 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -34,11 +34,13 @@ The main consequences of this update are: ## Codebase - The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. If this is the case, this UTXO is mandatory to be used in the transaction. +- Refactor `compose_moveutxo` to use this new `transactions.compose()` feature. ## API -- Removed `asset` and `quantity` parameters from the `/v2/utxos//compose/detach` route +- In compose detach function, make `destination`, `asset` and `quantity` parameters optionals (`asset` and `quantity` will be ignored after protocol change) +- In compose attach function add `destination_vout` parameter (`destination` will be ignored after protocol change) ## CLI From e72280e15bb9141546a939999884f0116143281d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 16:22:38 +0000 Subject: [PATCH 036/138] update release notes --- release-notes/release-notes-v10.6.2.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index e1a43d2713..21cb75de63 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -27,10 +27,12 @@ The main consequences of this update are: 1. Transaction attach and detach are cheaper and easier to construct. In fact, the size of messages is systematically less than 80 and an OP_RETURN is therefore sufficient. 1. It is possible to make several detachments in a single transaction to save fees. 1. It is no longer possible to make a detach and a UTXO move in the same transaction. +1. Fix the `detach` function when data is encoded in `multisig` ## Bugfixes + ## Codebase - The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. If this is the case, this UTXO is mandatory to be used in the transaction. From 9163379ec04549b9a923f1d97c0b6cf21fd31a8a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 16:24:43 +0000 Subject: [PATCH 037/138] update release notes --- release-notes/release-notes-v10.6.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 21cb75de63..348cc3c1f6 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -27,7 +27,7 @@ The main consequences of this update are: 1. Transaction attach and detach are cheaper and easier to construct. In fact, the size of messages is systematically less than 80 and an OP_RETURN is therefore sufficient. 1. It is possible to make several detachments in a single transaction to save fees. 1. It is no longer possible to make a detach and a UTXO move in the same transaction. -1. Fix the `detach` function when data is encoded in `multisig` +1. Fix the `detach` function when the UTXO to detach is part of the inputs ## Bugfixes From 025d97a2a1c22a9d55c89bbef24728466a5336c2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 1 Nov 2024 20:55:25 +0000 Subject: [PATCH 038/138] introduce propertytest.py --- .../test/regtest/propertytest.py | 81 +++++++++++++++++++ .../test/regtest/regtestnode.py | 45 ++++++++--- 2 files changed, 116 insertions(+), 10 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/propertytest.py diff --git a/counterparty-core/counterpartycore/test/regtest/propertytest.py b/counterparty-core/counterpartycore/test/regtest/propertytest.py new file mode 100644 index 0000000000..3ca0a8ca79 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/propertytest.py @@ -0,0 +1,81 @@ +#!/usr/bin/env python3 + +import time + +import hypothesis +import sh +from hypothesis import given, settings +from regtestnode import ComposeError, RegtestNodeThread + + +class RegtestNode: + def __init__(self): + try: + regtest_node_thread = RegtestNodeThread() + regtest_node_thread.start() + while not regtest_node_thread.ready(): + time.sleep(1) + self.node = regtest_node_thread.node + + self.run_test() + except KeyboardInterrupt: + pass + except Exception as e: + print(regtest_node_thread.node.server_out.getvalue()) + raise e + finally: + # print(regtest_node_thread.node.server_out.getvalue()) + regtest_node_thread.stop() + + def run_test(self): + # issue random assets + self.issued_assets = [] + given( + hypothesis.strategies.sampled_from(self.node.addresses), + hypothesis.strategies.text( + alphabet="BCDEFGHIJKLMNOPQRSTUVWXYZ", min_size=5, max_size=10 + ), + hypothesis.strategies.integers(min_value=10 * 10e8, max_value=1000 * 10e8), + )(self.issue_assets)() + + # mine block + self.node.mine_blocks(1) + self.node.wait_for_counterparty_server() + + # check balances + given(hypothesis.strategies.sampled_from(self.issued_assets))(self.check_balance)() + + @settings(max_examples=100, deadline=None) + def issue_assets(self, source, asset_name, quantity): + print("Issuing asset: ", asset_name, source) + try: + for issued_asset in self.issued_assets: + if issued_asset[1] == asset_name: + return + self.node.send_transaction( + source, + "issuance", + { + "asset": asset_name, + "quantity": quantity, + "allow_unconfirmed_inputs": True, + }, + no_confirmation=True, + dont_wait_mempool=True, + ) + self.issued_assets.append([source, asset_name, quantity]) + except (sh.ErrorReturnCode_26, ComposeError): + pass + + def check_balance(self, balance): + address, asset, quantity = balance + address_balances = self.node.api_call(f"assets/{asset}/balances/{address}")["result"] + for address_balance in address_balances: + if address_balance["address"] == address and address_balance["quantity"] == quantity: + print(f"Valid balance found for {address} {asset}") + return + raise Exception(f"Valid balance not found for {address} {asset}") + + +if __name__ == "__main__": + RegtestNode() diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index c844cc1ccb..dcee7be6a9 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -87,14 +87,19 @@ def enable_all_protocol_changes(self): if os.path.exists(regtest_protocole_file): os.remove(regtest_protocole_file) - def broadcast_transaction(self, signed_transaction, no_confirmation=False, retry=0): + def broadcast_transaction( + self, signed_transaction, no_confirmation=False, dont_wait_mempool=False, retry=0 + ): mempool_event_count_before = self.get_mempool_event_count() tx_hash = self.bitcoin_wallet("sendrawtransaction", signed_transaction, 0).strip() if not no_confirmation: block_hash, block_time = self.mine_blocks(1) else: block_hash, block_time = "mempool", 9999999 - while self.get_mempool_event_count() == mempool_event_count_before: + while ( + not dont_wait_mempool + and self.get_mempool_event_count() == mempool_event_count_before + ): print("waiting for mempool event parsing...") time.sleep(5) self.tx_index += 1 @@ -102,7 +107,14 @@ def broadcast_transaction(self, signed_transaction, no_confirmation=False, retry return tx_hash, block_hash, block_time def send_transaction( - self, source, tx_name, params, return_only_data=False, no_confirmation=False, retry=0 + self, + source, + tx_name, + params, + return_only_data=False, + no_confirmation=False, + dont_wait_mempool=False, + retry=0, ): self.wait_for_counterparty_server() if return_only_data: @@ -112,7 +124,6 @@ def send_transaction( query_string = [] for key, value in params.items(): - print(key, value) if not isinstance(value, list): query_string.append(urllib.parse.urlencode({key: value})) else: @@ -132,7 +143,12 @@ def send_transaction( print("Sleeping for 5 seconds and retrying...") time.sleep(5) return self.send_transaction( - source, tx_name, params, return_only_data, no_confirmation + source, + tx_name, + params, + return_only_data, + no_confirmation, + dont_wait_mempool=dont_wait_mempool, ) raise ComposeError(result["error"]) if return_only_data: @@ -144,7 +160,7 @@ def send_transaction( signed_transaction = json.loads(signed_transaction_json)["hex"] try: tx_hash, block_hash, block_time = self.broadcast_transaction( - signed_transaction, no_confirmation + signed_transaction, no_confirmation, dont_wait_mempool=dont_wait_mempool ) except sh.ErrorReturnCode_25 as e: if retry < 6: @@ -152,7 +168,13 @@ def send_transaction( print("Sleeping for 5 seconds and retrying...") time.sleep(10) return self.send_transaction( - source, tx_name, params, return_only_data, no_confirmation, retry + 1 + source, + tx_name, + params, + return_only_data, + no_confirmation, + dont_wait_mempool, + retry + 1, ) else: raise e @@ -374,10 +396,13 @@ def stop_addrindexrs(self): pass def stop(self): - print("Stopping...") + print("Stopping bitcoin node 1...") self.stop_bitcoin_node() + print("Stopping bitcoin node 2...") self.stop_bitcoin_node(node=2) + print("Stopping counterparty-server...") self.stop_counterparty_server() + print("Stopping addrindexrs...") self.stop_addrindexrs() def get_node_state(self): @@ -553,10 +578,10 @@ def test_invalid_detach(self): try: tx_hash, _block_hash, _block_time = self.broadcast_transaction(signed_transaction) break - except sh.ErrorReturnCode_25 as e: + except sh.ErrorReturnCode_25: retry += 1 assert retry < 6 - print(str(e)) + # print(str(e)) print("Sleeping for 5 seconds and retrying...") time.sleep(5) From 415795901152b78fcc3c778018bc13fc0ea8b40b Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Fri, 1 Nov 2024 17:33:48 -0400 Subject: [PATCH 039/138] Update Release Notes for v10.6.2 --- release-notes/release-notes-v10.6.2.md | 32 ++++++++++---------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 348cc3c1f6..5f9e2b6fef 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -8,26 +8,18 @@ ## Protocol Changes -This update includes major changes in UTXOS support. The previous system was designed to have maximum flexibility, in particular to be able to detach only part of the assets attached to a UTXO. However, as OpenStamp pointed out, this feature allows an Atomic Swap to be front runned by a detach. In addition to this vulnerability many interesting suggestions have been made by OpenStamp and the community. -We therefore took advantage of all these updates to separate the `utxo.py` contract (ID 100) into two separate contracts: `attach.py` (ID 101) and `detach.py` (ID 102). Indeed in its original design the two functions had almost the same signature and the same code which is no longer the case. -Messages with ID 100 will be disabled at the same block where messages with IDs 101 and 102 will be enabled. -12 blocks before activation the functions `compose_attach` and `compose_detach` will be deactivated to avoid having transactions with ID 100 confirmed after activation. +This update includes significant changes to the UTXO Support feature, and in particular to address a vulnerability where an atomic swap could be frontrun by a `detach` transaction. Further feedback from the community, in particular the OpenStamps team and DerpHerpenstein have allowed us to simplify the implementation of this feature significantly. With the protocol change, messages with ID 100 will be disabled at the same block that messages with IDs 101 and 102 will be enabled. 12 blocks before this activation block, the functions `compose_attach` and `compose_detach` will be deactivated to avoid having transactions with ID 100 confirmed after activation. The protocol and API have changed as follows: -Here are the changes that will be active after activating the protocol change: - -1. The `attach` function no longer accepts a `destination` parameter. By default, the first non-OP_RETURN output is the destination. -1. The `attach` function now accepts an optional `destination_vout` parameter. This parameter allows you to designate the number of the output to use as the destination. The transaction is invalid if `destination_vout` does not exist or if it is an `OP_RETURN` -1. The `detach` function no longer accepts the `asset` and `quantity` parameters: the UTXO is necessarily part of the transaction inputs and all assets are detached from the UTXO. +1. The `attach` function no longer accepts a `destination` parameter. It now accepts an optional `destination_vout` parameter (by default the first non-`OP_RETURN` output). This parameter allows one to designate the index of the output to use as the destination. The transaction is invalid if `destination_vout` does not exist or if it is an `OP_RETURN`. 1. The `destination` parameter of the `detach` function is now optional. If not provided, the default destination is the address corresponding to the UTXO. -1. The `detach` function detaches the assets attached to all transaction inputs. +1. The `detach` function no longer accepts `asset` and `quantity` parameters: the UTXO is necessarily part of the transaction inputs and all assets are detached from the UTXO. +1. The `detach` function detaches all assets attached to all transaction inputs every time. -The main consequences of this update are: +In addition to resolving the above frontrunning vulnerability, this update brings a number of improvements: -1. It is no longer possible to front run a swap with a detach. -1. Transaction attach and detach are cheaper and easier to construct. In fact, the size of messages is systematically less than 80 and an OP_RETURN is therefore sufficient. -1. It is possible to make several detachments in a single transaction to save fees. -1. It is no longer possible to make a detach and a UTXO move in the same transaction. -1. Fix the `detach` function when the UTXO to detach is part of the inputs +1. It is now cheaper and easier to construct `attach` and `detach` transactions. The size of messages is always less than 80 bytes, so an `OP_RETURN` output can store all of the necessary data. +1. It is possible to execute several `detach` operations in a single transaction to save fees. +1. It is no longer possible to make a `detach` and a UTXO `move` in the same transaction. ## Bugfixes @@ -35,14 +27,14 @@ The main consequences of this update are: ## Codebase -- The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. If this is the case, this UTXO is mandatory to be used in the transaction. -- Refactor `compose_moveutxo` to use this new `transactions.compose()` feature. +- The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. When a UTXO is used, this UTXO must be spent in the corresponding transaction. +- Refactor `compose_moveutxo()` to use this new `transactions.compose()` feature. ## API -- In compose detach function, make `destination`, `asset` and `quantity` parameters optionals (`asset` and `quantity` will be ignored after protocol change) -- In compose attach function add `destination_vout` parameter (`destination` will be ignored after protocol change) +- For the `compose_detach() endpoint, the `destination`, `asset` and `quantity` parameters are now optional (`asset` and `quantity` will be ignored after the protocol change). +- For the `compose_attach()` endpoint, there is now a `destination_vout` parameter (and the `destination` parameter will be ignored after protocol change). ## CLI From a4fa9ef773db88add03c2e3de92a382e4f689f45 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 2 Nov 2024 12:14:00 +0000 Subject: [PATCH 040/138] more property-test --- .../counterpartycore/lib/transaction.py | 2 +- .../test/regtest/propertytest.py | 100 +++++++++++++++--- .../test/regtest/regtestnode.py | 10 +- 3 files changed, 98 insertions(+), 14 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 8e53f858bc..109cb17734 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -215,7 +215,7 @@ def construct( # Sanity checks. if source: script.validate(source) - if exact_fee and not isinstance(exact_fee, int): + if exact_fee is not None 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.") diff --git a/counterparty-core/counterpartycore/test/regtest/propertytest.py b/counterparty-core/counterpartycore/test/regtest/propertytest.py index 3ca0a8ca79..7e5b921273 100644 --- a/counterparty-core/counterpartycore/test/regtest/propertytest.py +++ b/counterparty-core/counterpartycore/test/regtest/propertytest.py @@ -4,6 +4,7 @@ import hypothesis import sh +from counterpartycore.lib import util from hypothesis import given, settings from regtestnode import ComposeError, RegtestNodeThread @@ -45,12 +46,60 @@ def run_test(self): # check balances given(hypothesis.strategies.sampled_from(self.issued_assets))(self.check_balance)() - @settings(max_examples=100, deadline=None) + # attach assets + self.attached_assets = [] + given( + hypothesis.strategies.sampled_from(self.issued_assets), + hypothesis.strategies.integers(min_value=1 * 10e8, max_value=10 * 10e8), + )(self.attach_asset)() + + # mine block + self.node.mine_blocks(1) + self.node.wait_for_counterparty_server() + + # check balances + given(hypothesis.strategies.sampled_from(self.attached_assets))(self.check_balance)() + + # move assets + self.moved_assets = [] + self.moved_utxo_list = [] + given( + hypothesis.strategies.sampled_from(self.attached_assets), + hypothesis.strategies.sampled_from(self.node.addresses), + )(self.move_asset)() + + # mine block + self.node.mine_blocks(1) + self.node.wait_for_counterparty_server() + + # check balances + given(hypothesis.strategies.sampled_from(self.moved_assets))(self.check_balance)() + + def check_balance(self, balance): + address_or_utxo, asset, quantity, utxo_address = balance + if util.is_utxo_format(address_or_utxo): + balances = self.node.api_call(f"utxos/{address_or_utxo}/balances")["result"] + field_name = "utxo" + else: + balances = self.node.api_call(f"addresses/{address_or_utxo}/balances")["result"] + field_name = "address" + + for balance_item in balances: + if ( + balance_item[field_name] == address_or_utxo + and balance_item["quantity"] == quantity + and balance_item["asset"] == asset + and balance_item["utxo_address"] == utxo_address + ): + print(f"Valid balance found for {address_or_utxo} {asset}") + return + raise Exception(f"Valid balance not found for {address_or_utxo} {asset}") + + @settings(deadline=None) def issue_assets(self, source, asset_name, quantity): - print("Issuing asset: ", asset_name, source) try: for issued_asset in self.issued_assets: - if issued_asset[1] == asset_name: + if issued_asset[1] == asset_name or issued_asset[0] == source: return self.node.send_transaction( source, @@ -58,23 +107,50 @@ def issue_assets(self, source, asset_name, quantity): { "asset": asset_name, "quantity": quantity, - "allow_unconfirmed_inputs": True, + "exact_fee": 0, }, no_confirmation=True, dont_wait_mempool=True, ) - self.issued_assets.append([source, asset_name, quantity]) + self.issued_assets.append([source, asset_name, quantity, None]) except (sh.ErrorReturnCode_26, ComposeError): pass - def check_balance(self, balance): - address, asset, quantity = balance - address_balances = self.node.api_call(f"assets/{asset}/balances/{address}")["result"] - for address_balance in address_balances: - if address_balance["address"] == address and address_balance["quantity"] == quantity: - print(f"Valid balance found for {address} {asset}") + @settings(deadline=None) + def attach_asset(self, balance, attach_quantity): + address, asset, quantity, utxo_address = balance + for attached_asset in self.attached_assets: + if attached_asset[1] == asset: return - raise Exception(f"Valid balance not found for {address} {asset}") + tx_hash, block_hash, block_time, data = self.node.send_transaction( + address, + "attach", + { + "asset": asset, + "quantity": attach_quantity, + "exact_fee": 0, + }, + no_confirmation=True, + dont_wait_mempool=True, + ) + self.attached_assets.append([f"{tx_hash}:0", asset, attach_quantity, address]) + + def move_asset(self, balance, destination): + source, asset, quantity, utxo_address = balance + if source == destination or source in self.moved_utxo_list: + return + tx_hash, block_hash, block_time, data = self.node.send_transaction( + source, + "movetoutxo", + { + "destination": destination, + "exact_fee": 0, + }, + no_confirmation=True, + dont_wait_mempool=True, + ) + self.moved_utxo_list.append(source) + self.moved_assets.append([f"{tx_hash}:0", asset, quantity, destination]) if __name__ == "__main__": diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index dcee7be6a9..297715340c 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -246,7 +246,15 @@ def generate_addresses_with_btc(self): def generate_xcp(self): print("Generating XCP...") for address in self.addresses[0:10]: - self.send_transaction(address, "burn", {"quantity": 50000000}) + self.send_transaction( + address, + "burn", + {"quantity": 50000000}, + no_confirmation=True, + dont_wait_mempool=True, + ) + self.mine_blocks(1) + self.wait_for_counterparty_server() def start_bitcoin_node(self): self.bitcoind_process = sh.bitcoind( From c07d3e62d197dfbf532fc4f2164b734272b5785d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 2 Nov 2024 12:17:10 +0000 Subject: [PATCH 041/138] typo --- release-notes/release-notes-v10.6.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 5f9e2b6fef..370c80b289 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -33,7 +33,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring ## API -- For the `compose_detach() endpoint, the `destination`, `asset` and `quantity` parameters are now optional (`asset` and `quantity` will be ignored after the protocol change). +- For the `compose_detach()` endpoint, the `destination`, `asset` and `quantity` parameters are now optional (`asset` and `quantity` will be ignored after the protocol change). - For the `compose_attach()` endpoint, there is now a `destination_vout` parameter (and the `destination` parameter will be ignored after protocol change). ## CLI From f3321c3a4369db1dce61a3511ea902cf3b8a2637 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 2 Nov 2024 15:31:29 +0000 Subject: [PATCH 042/138] dry property test --- .../test/regtest/propertytest.py | 161 +++++++++--------- 1 file changed, 84 insertions(+), 77 deletions(-) diff --git a/counterparty-core/counterpartycore/test/regtest/propertytest.py b/counterparty-core/counterpartycore/test/regtest/propertytest.py index 7e5b921273..7f6c7d9b69 100644 --- a/counterparty-core/counterpartycore/test/regtest/propertytest.py +++ b/counterparty-core/counterpartycore/test/regtest/propertytest.py @@ -3,10 +3,19 @@ import time import hypothesis -import sh from counterpartycore.lib import util from hypothesis import given, settings -from regtestnode import ComposeError, RegtestNodeThread +from regtestnode import RegtestNodeThread + + +@hypothesis.strategies.composite +def unique(draw, strategy): + seen = draw( + hypothesis.strategies.shared(hypothesis.strategies.builds(dict), key="key-for-unique-elems") + ) + return draw( + strategy.filter(lambda x: str(x) not in seen).map(lambda x: seen.update({str(x): x}) or x) + ) class RegtestNode: @@ -17,6 +26,8 @@ def __init__(self): while not regtest_node_thread.ready(): time.sleep(1) self.node = regtest_node_thread.node + self.addresses = self.node.addresses[:-1] # skip last empty legacy address + self.balances = [] self.run_test() except KeyboardInterrupt: @@ -28,62 +39,23 @@ def __init__(self): # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() - def run_test(self): - # issue random assets - self.issued_assets = [] - given( - hypothesis.strategies.sampled_from(self.node.addresses), - hypothesis.strategies.text( - alphabet="BCDEFGHIJKLMNOPQRSTUVWXYZ", min_size=5, max_size=10 - ), - hypothesis.strategies.integers(min_value=10 * 10e8, max_value=1000 * 10e8), - )(self.issue_assets)() - - # mine block - self.node.mine_blocks(1) - self.node.wait_for_counterparty_server() - - # check balances - given(hypothesis.strategies.sampled_from(self.issued_assets))(self.check_balance)() - - # attach assets - self.attached_assets = [] - given( - hypothesis.strategies.sampled_from(self.issued_assets), - hypothesis.strategies.integers(min_value=1 * 10e8, max_value=10 * 10e8), - )(self.attach_asset)() - - # mine block - self.node.mine_blocks(1) - self.node.wait_for_counterparty_server() - - # check balances - given(hypothesis.strategies.sampled_from(self.attached_assets))(self.check_balance)() - - # move assets - self.moved_assets = [] - self.moved_utxo_list = [] - given( - hypothesis.strategies.sampled_from(self.attached_assets), - hypothesis.strategies.sampled_from(self.node.addresses), - )(self.move_asset)() - - # mine block - self.node.mine_blocks(1) - self.node.wait_for_counterparty_server() - - # check balances - given(hypothesis.strategies.sampled_from(self.moved_assets))(self.check_balance)() + def upsert_balance(self, address_or_utxo, asset, quantity, utxo_address=None): + for balance in self.balances: + if balance[0] == address_or_utxo and balance[1] == asset and balance[3] == utxo_address: + balance[2] += quantity + return + self.balances.append([address_or_utxo, asset, quantity, utxo_address]) def check_balance(self, balance): address_or_utxo, asset, quantity, utxo_address = balance + if util.is_utxo_format(address_or_utxo): - balances = self.node.api_call(f"utxos/{address_or_utxo}/balances")["result"] field_name = "utxo" else: - balances = self.node.api_call(f"addresses/{address_or_utxo}/balances")["result"] field_name = "address" + balances = self.node.api_call(f"assets/{asset}/balances")["result"] + for balance_item in balances: if ( balance_item[field_name] == address_or_utxo @@ -93,37 +65,70 @@ def check_balance(self, balance): ): print(f"Valid balance found for {address_or_utxo} {asset}") return - raise Exception(f"Valid balance not found for {address_or_utxo} {asset}") + if quantity > 0: + raise Exception(f"Valid balance not found for {address_or_utxo} {asset}") + + def test_with_given_data(self, function, *strategies): + given(*strategies)(function)() + + # mine block + self.node.mine_blocks(1) + self.node.wait_for_counterparty_server() + + # check balances + given(hypothesis.strategies.sampled_from(self.balances))(self.check_balance)() + + def run_test(self): + # issue random assets + self.test_with_given_data( + self.issue_assets, + hypothesis.strategies.sampled_from(self.addresses), + hypothesis.strategies.text( + alphabet="BCDEFGHIJKLMNOPQRSTUVWXYZ", min_size=5, max_size=10 + ), + hypothesis.strategies.integers(min_value=10 * 10e8, max_value=1000 * 10e8), + ) + + # attach assets + self.test_with_given_data( + self.attach_asset, + hypothesis.strategies.sampled_from(self.balances), + hypothesis.strategies.integers(min_value=1 * 10e8, max_value=10 * 10e8), + ) + + # move assets + self.test_with_given_data( + self.move_asset, + hypothesis.strategies.sampled_from(self.balances), + hypothesis.strategies.sampled_from(self.addresses), + ) @settings(deadline=None) def issue_assets(self, source, asset_name, quantity): - try: - for issued_asset in self.issued_assets: - if issued_asset[1] == asset_name or issued_asset[0] == source: - return - self.node.send_transaction( - source, - "issuance", - { - "asset": asset_name, - "quantity": quantity, - "exact_fee": 0, - }, - no_confirmation=True, - dont_wait_mempool=True, - ) - self.issued_assets.append([source, asset_name, quantity, None]) - except (sh.ErrorReturnCode_26, ComposeError): - pass + for balance in self.balances: + if balance[1] == asset_name or balance[0] == source: + return + self.node.send_transaction( + source, + "issuance", + { + "asset": asset_name, + "quantity": quantity, + "exact_fee": 0, + }, + no_confirmation=True, + dont_wait_mempool=True, + ) + self.upsert_balance(source, asset_name, quantity) @settings(deadline=None) def attach_asset(self, balance, attach_quantity): - address, asset, quantity, utxo_address = balance - for attached_asset in self.attached_assets: - if attached_asset[1] == asset: + source, asset, quantity, utxo_address = balance + for balance in self.balances: + if balance[3] == source or balance[2] == 0: return tx_hash, block_hash, block_time, data = self.node.send_transaction( - address, + source, "attach", { "asset": asset, @@ -133,11 +138,13 @@ def attach_asset(self, balance, attach_quantity): no_confirmation=True, dont_wait_mempool=True, ) - self.attached_assets.append([f"{tx_hash}:0", asset, attach_quantity, address]) + self.upsert_balance(source, asset, -attach_quantity, None) + self.upsert_balance(f"{tx_hash}:0", asset, attach_quantity, source) + @settings(deadline=None) def move_asset(self, balance, destination): source, asset, quantity, utxo_address = balance - if source == destination or source in self.moved_utxo_list: + if utxo_address is None or source == destination or quantity == 0: return tx_hash, block_hash, block_time, data = self.node.send_transaction( source, @@ -149,8 +156,8 @@ def move_asset(self, balance, destination): no_confirmation=True, dont_wait_mempool=True, ) - self.moved_utxo_list.append(source) - self.moved_assets.append([f"{tx_hash}:0", asset, quantity, destination]) + self.upsert_balance(source, asset, -quantity, utxo_address) + self.upsert_balance(f"{tx_hash}:0", asset, quantity, destination) if __name__ == "__main__": From 67e92f36439d041e324692b6124b5eedb0860c7a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 2 Nov 2024 16:10:35 +0000 Subject: [PATCH 043/138] fix regtest --- .../test/regtest/propertytest.py | 2 +- .../test/regtest/regtestnode.py | 25 +++++++++++++------ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/counterparty-core/counterpartycore/test/regtest/propertytest.py b/counterparty-core/counterpartycore/test/regtest/propertytest.py index 7f6c7d9b69..2f25b30761 100644 --- a/counterparty-core/counterpartycore/test/regtest/propertytest.py +++ b/counterparty-core/counterpartycore/test/regtest/propertytest.py @@ -21,7 +21,7 @@ def unique(draw, strategy): class RegtestNode: def __init__(self): try: - regtest_node_thread = RegtestNodeThread() + regtest_node_thread = RegtestNodeThread(burn_in_one_block=True) regtest_node_thread.start() while not regtest_node_thread.ready(): time.sleep(1) diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 297715340c..4dd0da9a40 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -25,7 +25,13 @@ class ComposeError(Exception): class RegtestNode: - def __init__(self, datadir="regtestnode", show_output=False, wsgi_server="waitress"): + def __init__( + self, + datadir="regtestnode", + show_output=False, + wsgi_server="waitress", + burn_in_one_block=False, + ): self.datadir = datadir self.bitcoin_cli = sh.bitcoin_cli.bake( "-regtest", @@ -57,6 +63,7 @@ def __init__(self, datadir="regtestnode", show_output=False, wsgi_server="waitre "--no-telemetry", "-vv", ) + self.burn_in_one_block = burn_in_one_block def api_call(self, url): return json.loads(sh.curl(f"http://localhost:24000/v2/{url}").strip()) @@ -250,11 +257,12 @@ def generate_xcp(self): address, "burn", {"quantity": 50000000}, - no_confirmation=True, - dont_wait_mempool=True, + no_confirmation=self.burn_in_one_block, + dont_wait_mempool=self.burn_in_one_block, ) - self.mine_blocks(1) - self.wait_for_counterparty_server() + if self.burn_in_one_block: + self.mine_blocks(1) + self.wait_for_counterparty_server() def start_bitcoin_node(self): self.bitcoind_process = sh.bitcoind( @@ -611,14 +619,17 @@ def test_invalid_detach(self): class RegtestNodeThread(threading.Thread): - def __init__(self, wsgi_server="gunicorn"): + def __init__(self, wsgi_server="gunicorn", burn_in_one_block=False): threading.Thread.__init__(self) self.wsgi_server = wsgi_server + self.burn_in_one_block = burn_in_one_block self.daemon = True self.node = None def run(self): - self.node = RegtestNode(wsgi_server=self.wsgi_server) + self.node = RegtestNode( + wsgi_server=self.wsgi_server, burn_in_one_block=self.burn_in_one_block + ) self.node.start() def stop(self): From daf9c41247d6b5cc535e3268d9aa703872cacebb Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 2 Nov 2024 19:18:09 +0000 Subject: [PATCH 044/138] tweaks and cleaning --- .../test/regtest/propertytest.py | 164 ------------------ .../test/regtest/properytestnode.py | 85 +++++++++ .../test/regtest/regtestnode.py | 5 +- .../test/regtest/utxosupport_propertytest.py | 114 ++++++++++++ 4 files changed, 201 insertions(+), 167 deletions(-) delete mode 100644 counterparty-core/counterpartycore/test/regtest/propertytest.py create mode 100644 counterparty-core/counterpartycore/test/regtest/properytestnode.py create mode 100644 counterparty-core/counterpartycore/test/regtest/utxosupport_propertytest.py diff --git a/counterparty-core/counterpartycore/test/regtest/propertytest.py b/counterparty-core/counterpartycore/test/regtest/propertytest.py deleted file mode 100644 index 2f25b30761..0000000000 --- a/counterparty-core/counterpartycore/test/regtest/propertytest.py +++ /dev/null @@ -1,164 +0,0 @@ -#!/usr/bin/env python3 - -import time - -import hypothesis -from counterpartycore.lib import util -from hypothesis import given, settings -from regtestnode import RegtestNodeThread - - -@hypothesis.strategies.composite -def unique(draw, strategy): - seen = draw( - hypothesis.strategies.shared(hypothesis.strategies.builds(dict), key="key-for-unique-elems") - ) - return draw( - strategy.filter(lambda x: str(x) not in seen).map(lambda x: seen.update({str(x): x}) or x) - ) - - -class RegtestNode: - def __init__(self): - try: - regtest_node_thread = RegtestNodeThread(burn_in_one_block=True) - regtest_node_thread.start() - while not regtest_node_thread.ready(): - time.sleep(1) - self.node = regtest_node_thread.node - self.addresses = self.node.addresses[:-1] # skip last empty legacy address - self.balances = [] - - self.run_test() - except KeyboardInterrupt: - pass - except Exception as e: - print(regtest_node_thread.node.server_out.getvalue()) - raise e - finally: - # print(regtest_node_thread.node.server_out.getvalue()) - regtest_node_thread.stop() - - def upsert_balance(self, address_or_utxo, asset, quantity, utxo_address=None): - for balance in self.balances: - if balance[0] == address_or_utxo and balance[1] == asset and balance[3] == utxo_address: - balance[2] += quantity - return - self.balances.append([address_or_utxo, asset, quantity, utxo_address]) - - def check_balance(self, balance): - address_or_utxo, asset, quantity, utxo_address = balance - - if util.is_utxo_format(address_or_utxo): - field_name = "utxo" - else: - field_name = "address" - - balances = self.node.api_call(f"assets/{asset}/balances")["result"] - - for balance_item in balances: - if ( - balance_item[field_name] == address_or_utxo - and balance_item["quantity"] == quantity - and balance_item["asset"] == asset - and balance_item["utxo_address"] == utxo_address - ): - print(f"Valid balance found for {address_or_utxo} {asset}") - return - if quantity > 0: - raise Exception(f"Valid balance not found for {address_or_utxo} {asset}") - - def test_with_given_data(self, function, *strategies): - given(*strategies)(function)() - - # mine block - self.node.mine_blocks(1) - self.node.wait_for_counterparty_server() - - # check balances - given(hypothesis.strategies.sampled_from(self.balances))(self.check_balance)() - - def run_test(self): - # issue random assets - self.test_with_given_data( - self.issue_assets, - hypothesis.strategies.sampled_from(self.addresses), - hypothesis.strategies.text( - alphabet="BCDEFGHIJKLMNOPQRSTUVWXYZ", min_size=5, max_size=10 - ), - hypothesis.strategies.integers(min_value=10 * 10e8, max_value=1000 * 10e8), - ) - - # attach assets - self.test_with_given_data( - self.attach_asset, - hypothesis.strategies.sampled_from(self.balances), - hypothesis.strategies.integers(min_value=1 * 10e8, max_value=10 * 10e8), - ) - - # move assets - self.test_with_given_data( - self.move_asset, - hypothesis.strategies.sampled_from(self.balances), - hypothesis.strategies.sampled_from(self.addresses), - ) - - @settings(deadline=None) - def issue_assets(self, source, asset_name, quantity): - for balance in self.balances: - if balance[1] == asset_name or balance[0] == source: - return - self.node.send_transaction( - source, - "issuance", - { - "asset": asset_name, - "quantity": quantity, - "exact_fee": 0, - }, - no_confirmation=True, - dont_wait_mempool=True, - ) - self.upsert_balance(source, asset_name, quantity) - - @settings(deadline=None) - def attach_asset(self, balance, attach_quantity): - source, asset, quantity, utxo_address = balance - for balance in self.balances: - if balance[3] == source or balance[2] == 0: - return - tx_hash, block_hash, block_time, data = self.node.send_transaction( - source, - "attach", - { - "asset": asset, - "quantity": attach_quantity, - "exact_fee": 0, - }, - no_confirmation=True, - dont_wait_mempool=True, - ) - self.upsert_balance(source, asset, -attach_quantity, None) - self.upsert_balance(f"{tx_hash}:0", asset, attach_quantity, source) - - @settings(deadline=None) - def move_asset(self, balance, destination): - source, asset, quantity, utxo_address = balance - if utxo_address is None or source == destination or quantity == 0: - return - tx_hash, block_hash, block_time, data = self.node.send_transaction( - source, - "movetoutxo", - { - "destination": destination, - "exact_fee": 0, - }, - no_confirmation=True, - dont_wait_mempool=True, - ) - self.upsert_balance(source, asset, -quantity, utxo_address) - self.upsert_balance(f"{tx_hash}:0", asset, quantity, destination) - - -if __name__ == "__main__": - RegtestNode() diff --git a/counterparty-core/counterpartycore/test/regtest/properytestnode.py b/counterparty-core/counterpartycore/test/regtest/properytestnode.py new file mode 100644 index 0000000000..4f4895d7f8 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/properytestnode.py @@ -0,0 +1,85 @@ +import time + +import hypothesis +from counterpartycore.lib import util +from hypothesis import given +from regtestnode import RegtestNodeThread + + +class PropertyTestNode: + def __init__(self): + try: + regtest_node_thread = RegtestNodeThread(burn_in_one_block=True) + regtest_node_thread.start() + while not regtest_node_thread.ready(): + time.sleep(1) + self.node = regtest_node_thread.node + self.addresses = self.node.addresses[:-1] # skip last empty legacy address + self.balances = [] + + self.run_tests() + except KeyboardInterrupt: + pass + except Exception as e: + print(regtest_node_thread.node.server_out.getvalue()) + raise e + finally: + # print(regtest_node_thread.node.server_out.getvalue()) + regtest_node_thread.stop() + + def send_transaction(self, source, transaction_name, params): + tx_hash, _block_hash, _block_time, _data = self.node.send_transaction( + source, + transaction_name, + params, + no_confirmation=True, + dont_wait_mempool=True, + ) + return tx_hash + + def upsert_balance(self, address_or_utxo, asset, quantity, utxo_address=None): + for balance in self.balances: + if balance[0] == address_or_utxo and balance[1] == asset and balance[3] == utxo_address: + balance[2] += quantity + return + self.balances.append([address_or_utxo, asset, quantity, utxo_address]) + + def check_balance(self, balance): + address_or_utxo, asset, quantity, utxo_address = balance + + if util.is_utxo_format(address_or_utxo): + field_name = "utxo" + else: + field_name = "address" + + balances = self.node.api_call(f"assets/{asset}/balances")["result"] + + for balance_item in balances: + if ( + balance_item[field_name] == address_or_utxo + and balance_item["quantity"] == quantity + and balance_item["asset"] == asset + and balance_item["utxo_address"] == utxo_address + ): + print(f"Valid balance found for {address_or_utxo} {asset}") + return + if quantity > 0: + raise Exception(f"Valid balance not found for {address_or_utxo} {asset}") + + def test_with_given_data(self, function, *strategies): + # Each test must update the balances with the function `self.upsert_balance()`. + # All transactions done in the test must be done with the function `self.send_transaction()`. + # All transactions are done with the `no_confirmation=True` and `dont_wait_mempool=True` flags + # and are in the mempool after the test. + # after each test, a block is mined and the balances are checked with the function `self.check_balance()`. + given(*strategies)(function)() + + # mine block + self.node.mine_blocks(1) + self.node.wait_for_counterparty_server() + + # check balances + given(hypothesis.strategies.sampled_from(self.balances))(self.check_balance)() + + def run_tests(self): + raise NotImplementedError diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 4dd0da9a40..a4001f70ec 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -189,17 +189,16 @@ def send_transaction( return tx_hash, block_hash, block_time, result["result"]["data"] def wait_for_counterparty_server(self, block=None): + target_block = block or self.block_count while True: try: result = self.api_call("") if result and "result" in result and result["result"]["server_ready"]: current_block = result["result"]["counterparty_height"] - target_block = block or self.block_count if current_block < target_block: print(f"Waiting for block {current_block} < {target_block}") raise ServerNotReady else: - print("Server ready") return elif result and "result" in result: print( @@ -619,7 +618,7 @@ def test_invalid_detach(self): class RegtestNodeThread(threading.Thread): - def __init__(self, wsgi_server="gunicorn", burn_in_one_block=False): + def __init__(self, wsgi_server="waitress", burn_in_one_block=False): threading.Thread.__init__(self) self.wsgi_server = wsgi_server self.burn_in_one_block = burn_in_one_block diff --git a/counterparty-core/counterpartycore/test/regtest/utxosupport_propertytest.py b/counterparty-core/counterpartycore/test/regtest/utxosupport_propertytest.py new file mode 100644 index 0000000000..2bfd3c2e9d --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/utxosupport_propertytest.py @@ -0,0 +1,114 @@ +#!/usr/bin/env python3 + +import hypothesis +from hypothesis import settings +from properytestnode import PropertyTestNode + + +class UTXOSupportPropertyTest(PropertyTestNode): + def run_tests(self): + # issue random assets + self.test_with_given_data( + self.issue_assets, + hypothesis.strategies.sampled_from(self.addresses), + hypothesis.strategies.text( + alphabet="BCDEFGHIJKLMNOPQRSTUVWXYZ", min_size=5, max_size=10 + ), + hypothesis.strategies.integers(min_value=10 * 10e8, max_value=1000 * 10e8), + ) + + # attach assets + self.test_with_given_data( + self.attach_asset, + hypothesis.strategies.sampled_from(self.balances), + hypothesis.strategies.integers(min_value=1 * 10e8, max_value=10 * 10e8), + ) + + # move assets + self.test_with_given_data( + self.move_asset, + hypothesis.strategies.sampled_from(self.balances), + hypothesis.strategies.sampled_from(self.addresses), + ) + + # detach assets + self.test_with_given_data( + self.detach_asset, + hypothesis.strategies.sampled_from(self.balances), + hypothesis.strategies.sampled_from(self.addresses + [None]), + ) + + @settings(deadline=None) + def issue_assets(self, source, asset_name, quantity): + # don't issue the same asset twice + # and don't issue twice from the same source + for balance in self.balances: + if balance[1] == asset_name or balance[0] == source: + return + self.send_transaction( + source, + "issuance", + { + "asset": asset_name, + "quantity": quantity, + "exact_fee": 0, + }, + ) + self.upsert_balance(source, asset_name, quantity) + + @settings(deadline=None) + def attach_asset(self, balance, attach_quantity): + source, asset, quantity, utxo_address = balance + # don't attach assets already attached or with 0 quantity + for balance in self.balances: + if balance[3] == source or balance[2] == 0: + return + tx_hash = self.send_transaction( + source, + "attach", + { + "asset": asset, + "quantity": attach_quantity, + "exact_fee": 0, + }, + ) + self.upsert_balance(source, asset, -attach_quantity, None) + self.upsert_balance(f"{tx_hash}:0", asset, attach_quantity, source) + + @settings(deadline=None) + def move_asset(self, balance, destination): + source, asset, quantity, utxo_address = balance + # don't move assets not attached, with 0 quantity or to the same address + if utxo_address is None or source == destination or quantity == 0: + return + tx_hash = self.send_transaction( + source, + "movetoutxo", + { + "destination": destination, + "exact_fee": 0, + }, + ) + self.upsert_balance(source, asset, -quantity, utxo_address) + self.upsert_balance(f"{tx_hash}:0", asset, quantity, destination) + + @settings(deadline=None) + def detach_asset(self, balance, destination): + source, asset, quantity, utxo_address = balance + # don't detach assets not attached or with 0 quantity + if utxo_address is None or quantity == 0: + return + self.send_transaction( + source, + "detach", + { + "exact_fee": 0, + "destination": destination, + }, + ) + self.upsert_balance(source, asset, -quantity, utxo_address) + self.upsert_balance(destination or utxo_address, asset, quantity, None) + + +if __name__ == "__main__": + UTXOSupportPropertyTest() From 95273ec485ee99e031527990a7811a01a5591b00 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 2 Nov 2024 19:24:07 +0000 Subject: [PATCH 045/138] Add github workflow for property test --- .github/workflows/propertytest.yml | 46 ++++++++++++++++++++++++++++++ counterparty-core/requirements.txt | 3 +- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/propertytest.yml diff --git a/.github/workflows/propertytest.yml b/.github/workflows/propertytest.yml new file mode 100644 index 0000000000..55d9aa836d --- /dev/null +++ b/.github/workflows/propertytest.yml @@ -0,0 +1,46 @@ +name: Property test + +on: + push: + branches: "**" + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.11"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + default: true + - name: Install dependencies + run: | + sudo apt-get update -y + sudo apt-get install -y libgirepository1.0-dev libleveldb-dev nodejs npm + python -m pip install --upgrade pip + pip install maturin sh rich pyyaml + cd counterparty-rs && pip install -e . && cd .. + cd counterparty-core && pip install -e . && cd .. + pip install evdev + git clone https://github.com/CounterpartyXCP/addrindexrs.git + cd addrindexrs + cargo install --path=. + wget https://bitcoincore.org/bin/bitcoin-core-27.1/bitcoin-27.1-x86_64-linux-gnu.tar.gz + tar -xvf bitcoin-27.1-x86_64-linux-gnu.tar.gz + sudo cp bitcoin-27.1/bin/bitcoin-cli /usr/local/bin/bitcoin-cli + sudo cp bitcoin-27.1/bin/bitcoind /usr/local/bin/bitcoind + sudo cp bitcoin-27.1/bin/bitcoin-wallet /usr/local/bin/bitcoin-wallet + npm install dredd --global + - name: Run regtest tests + run: | + cd counterparty-core + python3 counterpartycore/test/regtest/utxosupport_propertytest.py diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index 6c54807c31..c2de152583 100644 --- a/counterparty-core/requirements.txt +++ b/counterparty-core/requirements.txt @@ -33,5 +33,6 @@ pyzmq==26.0.3 JSON-log-formatter==1.0 yoyo-migrations==8.2.0 gunicorn==23.0.0 -waitress==3.0.0 +waitress==3.0.1 +hypothesis==6.116.0 counterparty-rs==10.6.1 \ No newline at end of file From c673e3f35d8d35f2094a4ab354b5ddd34067a0e5 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 09:24:49 +0000 Subject: [PATCH 046/138] Fix pytest on M1 --- counterparty-core/counterpartycore/test/conftest.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/counterparty-core/counterpartycore/test/conftest.py b/counterparty-core/counterpartycore/test/conftest.py index 0738c53e4b..a5dad10d2a 100644 --- a/counterparty-core/counterpartycore/test/conftest.py +++ b/counterparty-core/counterpartycore/test/conftest.py @@ -673,3 +673,8 @@ def determine_encoding( monkeypatch.setattr( "counterpartycore.lib.ledger.asset_destroyed_total", ledger.asset_destroyed_total_no_cache ) + + class MockSingletonMeta: + pass + + monkeypatch.setattr("counterpartycore.lib.util.SingletonMeta", MockSingletonMeta) From 82ecd19af35ffabf43577567b08b7477d6b7f561 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 09:43:09 +0000 Subject: [PATCH 047/138] Consider invalid detach address as None --- .../counterpartycore/lib/messages/detach.py | 37 ++++++++++++------- .../test/fixtures/contract_vectors/detach.py | 18 +++------ 2 files changed, 29 insertions(+), 26 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index d8cc42724e..7201db0887 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -8,28 +8,28 @@ ID = 102 -def validate(source, destination=None): +def validate(source): problems = [] # check if source is a UTXO if not util.is_utxo_format(source): problems.append("source must be a UTXO") - # check if destination is an address - if destination is not None: - try: - script.validate(destination) - except script.AddressError: - problems.append("destination must be an address") - return problems def compose(db, source, destination=None): - problems = validate(source, destination) + problems = validate(source) if problems: raise exceptions.ComposeError(problems) + # check if destination is an address + if destination is not None: + try: + script.validate(destination) + except script.AddressError as e: + raise exceptions.ComposeError("destination must be an address") from e + # create message data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) # only the destination is needed @@ -59,7 +59,7 @@ def unpack(message, return_dict=False): def detach_assets(db, tx, source, destination): - problems = validate(source, destination) + problems = validate(source) status = "valid" if problems: @@ -84,9 +84,18 @@ def detach_assets(db, tx, source, destination): # debit asset from source and credit to recipient action = "detach from utxo" + detach_destination = destination + + # check if destination is an address + if detach_destination is not None: + try: + script.validate(detach_destination) + except Exception: # let's catch all exceptions here + detach_destination = None + # if no destination is provided, we credit the asset to utxo_address - if destination is None: - destination = balance["utxo_address"] + if detach_destination is None: + detach_destination = balance["utxo_address"] ledger.debit( db, @@ -99,7 +108,7 @@ def detach_assets(db, tx, source, destination): ) ledger.credit( db, - destination, + detach_destination, balance["asset"], balance["quantity"], tx["tx_index"], @@ -113,7 +122,7 @@ def detach_assets(db, tx, source, destination): "block_index": tx["block_index"], "status": "valid", "source": source, - "destination": destination, + "destination": detach_destination, "asset": balance["asset"], "quantity": balance["quantity"], "fee_paid": 0, diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py index 1452b7862c..e87c22f5f4 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py @@ -1,3 +1,5 @@ +from counterpartycore.lib import exceptions + from ..params import ( ADDR, DP, @@ -10,10 +12,6 @@ DETACH_VECTOR = { "detach": { "validate": [ - { - "in": (UTXO_1, ADDR[0]), - "out": [], - }, { "in": (UTXO_1,), "out": [], @@ -22,14 +20,6 @@ "in": (ADDR[0],), "out": ["source must be a UTXO"], }, - { - "in": (UTXO_1, UTXO_1), - "out": ["destination must be an address"], - }, - { - "in": (ADDR[0], UTXO_1), - "out": ["source must be a UTXO", "destination must be an address"], - }, ], "compose": [ { @@ -51,6 +41,10 @@ b"f0", ), }, + { + "in": (UTXO_1, UTXO_1), + "error": (exceptions.ComposeError, "destination must be an address"), + }, ], "unpack": [ { From bb344853e4cbbfb396b8a2ead42952bd5cd1ac49 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 10:18:45 +0000 Subject: [PATCH 048/138] try again to fix test on M1 --- counterparty-core/counterpartycore/lib/ledger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index 1f6a9de710..b31a83ae5d 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -461,7 +461,7 @@ def get_balance(db, address, asset, raise_error_if_no_balance=False, return_list class UTXOBalancesCache(metaclass=util.SingletonMeta): def __init__(self, db): - logger.debug("Initialising utxo balances cache...") + # logger.debug("Initialising utxo balances cache...") sql = "SELECT utxo, asset, quantity, MAX(rowid) FROM balances WHERE utxo IS NOT NULL GROUP BY utxo, asset" cursor = db.cursor() cursor.execute(sql) From 42d8e7e3e0ddbaba0c24abb94c32e47cb14204d4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 10:44:28 +0000 Subject: [PATCH 049/138] Add test for detach with invalid address --- .../test/fixtures/contract_vectors/detach.py | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py index e87c22f5f4..c29715c210 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/detach.py @@ -191,6 +191,54 @@ }, ], }, + { + "in": ( + { + "fee": 10000, + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "data": b"fINVALID_ADDRESS", # => ADDR[0] + "source": ADDR[0], + "block_index": DP["default_block_index"], + "btc_amount": 5430, + "tx_index": DP["default_tx_index"], + "supported": 1, + "destination": ADDR[0], + "block_time": 310501000, + "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58", + "utxos_info": "nobalance:0,e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0,74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:2 2 ", + }, + ), + "records": [ + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "destination": ADDR[0], + "asset": "XCP", + "quantity": 100, + "fee_paid": 0, + }, + }, + { + "table": "sends", + "values": { + "tx_index": DP["default_tx_index"], + "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", + "block_index": DP["default_block_index"], + "status": "valid", + "source": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "destination": ADDR[0], + "asset": "DIVISIBLE", + "quantity": 1, + "fee_paid": 0, + }, + }, + ], + }, ], }, } From 1bd4c597fdb2e24353fca1edc21c43935d869ab1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 11:34:25 +0000 Subject: [PATCH 050/138] msg_index could be > 0 after an attach --- counterparty-core/counterpartycore/lib/messages/detach.py | 2 +- counterparty-core/counterpartycore/lib/messages/move.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index 7201db0887..fb73200a53 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -133,7 +133,7 @@ def detach_assets(db, tx, source, destination): "Detach assets from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", { "source": source, - "destination": destination, + "destination": detach_destination, "tx_hash": tx["tx_hash"], "status": status, }, diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index c3eb3f1e5c..8700974a42 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -35,7 +35,7 @@ def move_assets(db, tx): # we move all assets from the sources to the destination action = "utxo move" - msg_index = 0 + msg_index = ledger.get_send_msg_index(db, tx["tx_hash"]) # we move all assets from each source to the destination for source in sources: balances = ledger.get_utxo_balances(db, source) From f8e255ea7144045938e2be7038746ed9220630d2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 15:09:48 +0000 Subject: [PATCH 051/138] Detach assets when only one single OP_RETURN output --- apiary.apib | 3891 +++++++++-------- .../counterpartycore/lib/blocks.py | 15 +- .../counterpartycore/lib/messages/detach.py | 8 +- .../counterpartycore/lib/messages/move.py | 110 +- .../transaction_helper/transaction_inputs.py | 2 +- .../test/regtest/apidoc/apicache.json | 3527 +++++++-------- .../test/regtest/regtestnode.py | 37 + .../test/regtest/testscenarios.py | 2 +- release-notes/release-notes-v10.6.2.md | 1 + 9 files changed, 3895 insertions(+), 3698 deletions(-) diff --git a/apiary.apib b/apiary.apib index d0db16f9ad..7ded6ac4a5 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-01 13:31:16.911960. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-04 15:03:28.974758. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", "block_index": 211, - "block_time": 1730467853, + "block_time": 1730732593, "difficulty": 545259519, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8" + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f" }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 678, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", "block_index": 211, - "block_time": 1730467853, + "block_time": 1730732593, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "fee": 0, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 679, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "out_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 565, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 690, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 689, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 211, - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "block_time": 1730467853, + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 696, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 700, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "quantity": 1000, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "tx_index": 72, - "block_time": 1730467808, + "block_time": 1730732549, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_time": 1730467808 + "block_time": 1730732549 } ], "next_cursor": 505, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_time": 1730467834 + "block_time": 1730732574 } ], "next_cursor": 674, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "status": "valid", - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "tx_index": 61, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "block_time": 1730467755 + "block_time": 1730732484 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "tx_index": 42, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "block_time": 1730467604 + "block_time": 1730732299 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730467805 + "block_time": 1730732535 }, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_time": 1730467805 + "block_time": 1730732535 } ], "next_cursor": 574, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", "transfer": false, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "tx_index": 71, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_time": 1730467805 + "block_time": 1730732535 } ], "next_cursor": 575, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", "tag": "64657374726f79", - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "tx_index": 62, - "block_time": 1730467760, + "block_time": 1730732487, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "block_index": 196, - "block_time": 1730467760 + "block_time": 1730732487 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "status": "open", - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "tx_index": 77, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, @@ -734,9 +734,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": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 536, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "tx0_index": 60, - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx1_index": 55, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 685, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407" + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be" }, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "block_time": 1730467720 + "block_time": 1730732447 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "status": "expired" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "tx_index": 54, - "block_time": 1730467720, + "block_time": 1730732447, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "block_time": 1730467720 + "block_time": 1730732447 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "offer_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "tx_index": 59, - "block_time": 1730467749 + "block_time": 1730732476 }, - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "block_index": 193, - "block_time": 1730467749 + "block_time": 1730732476 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "block_time": 1730467853 + "order_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "block_time": 1730732593 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 655, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "block_time": 1730467838 + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "block_time": 1730732578 }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "satoshirate": 1, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": 0, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "tx_index": 63, - "block_time": 1730467763, + "block_time": 1730732492, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 197, - "block_time": 1730467763 + "block_time": 1730732492 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 567, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", + "destination": "n1FmWDLz3gFfgc61LQinRBgLeyi7EMcXwt", "dispense_quantity": 10, - "dispenser_tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", + "dispenser_tx_hash": "9ceb4412b1fa83d71d08560201074c5eb5607558967f9465d47b86261846b117", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "tx_hash": "9d6b79315fd4e7f895d05e5dc198b7a663c1f9378b57a59708e8c02515031a15", "tx_index": 31, - "block_time": 1730467555, + "block_time": 1730732257, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", + "tx_hash": "9d6b79315fd4e7f895d05e5dc198b7a663c1f9378b57a59708e8c02515031a15", "block_index": 144, - "block_time": 1730467555 + "block_time": 1730732257 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 568, @@ -1146,19 +1146,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": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "tx_index": 25, "value": 66600.0, - "block_time": 1730467531, + "block_time": 1730732234, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "block_time": 1730467531 + "block_time": 1730732234 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "start_block": 0, "status": "open", - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "block_index": 156, - "block_time": 1730467607 + "block_time": 1730732312 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83" + "tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4" }, "tx_hash": null, "block_index": 130, - "block_time": 1730467503 + "block_time": 1730732191 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "paid_quantity": 34, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "block_index": 136, - "block_time": 1730467525 + "block_time": 1730732226 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e:0", + "destination": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "status": "valid", - "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "tx_hash": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", "tx_index": 70, - "block_time": 1730467801, + "block_time": 1730732530, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "tx_hash": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", "block_index": 203, - "block_time": 1730467801 + "block_time": 1730732530 } ], "next_cursor": 584, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "0d5e9c06995871fa17540d39523a675b6a79898ad42e73692c8c9c0be4fe3801:0", + "source": "9bb912a7237ee1facd4a35cd655c865dc600421adf16c85a71358733e329eac6:0", "status": "valid", - "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "tx_hash": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", "tx_index": 69, - "block_time": 1730467798, + "block_time": 1730732526, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "tx_hash": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", "block_index": 202, - "block_time": 1730467798 + "block_time": 1730732526 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "msg_index": 1, "quantity": 2000000000, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", "status": "valid", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 698, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", + "source": "bcrt1qwvzpkdat23f5gxskhwzlse5cd9lzymwvucxhwn", "status": "valid", - "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", + "tx_hash": "ff3faba5e57edb636874da0ba473d2a2887ab72330e6bdf4d168bbcb6bbaf8a1", "tx_index": 9, - "block_time": 1730467465, + "block_time": 1730732157, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", + "tx_hash": "ff3faba5e57edb636874da0ba473d2a2887ab72330e6bdf4d168bbcb6bbaf8a1", "block_index": 121, - "block_time": 1730467465 + "block_time": 1730732157 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", "difficulty": 545259519, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", - "block_time": 1730467838, - "previous_block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", + "block_time": 1730732578, + "previous_block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", "difficulty": 545259519, - "ledger_hash": "eee6dfd34d392fd1c8fee996f34c341a269ca3cbfd4f49672f0f2264d73e896c", - "txlist_hash": "850374bac6ec2e9540912a6cb9fc20ef7e43e54ea74b6ef5a472cc21c11f1e88", - "messages_hash": "0065dd2b2d9b77d862befd4b4d9dccdb54b6a85385581c55fd3d033abd51b386", + "ledger_hash": "27fe3b2dbd3bdf3cebfa5873c6bd5cb41715377e099514f731d9a134d9484f13", + "txlist_hash": "58a57ea93a48e5dd35726929bb8cf1e09b54b92c232448aaf9a227aa901b41d2", + "messages_hash": "e1dde3b0dff82f963aadefdbc34fecef2c0572df07aaea9a7312bbb41bfb8b0f", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", - "block_time": 1730467834, - "previous_block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", + "block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", + "block_time": 1730732574, + "previous_block_hash": "04b7bdf7b2bd402a370a50d14b555fba6a5af1d9ee6c3bb8a595b3efcb187ac4", "difficulty": 545259519, - "ledger_hash": "086088fee3c96b9155d8811e3cbfa9062de4f0f1546a8b7b17bbfe30ee9b4104", - "txlist_hash": "ae6a9d09edf6ee8be3e38393798d67858cacbd14d254256d5fa7c165d52bef36", - "messages_hash": "4b06c54295b4f5977c726ba1ce6ea87ee48a8eca8dcb812175acc4112cda26ee", + "ledger_hash": "c3f41c59550f4811b2c3fb0fe204e99a845b5723e65fdabe191987f1608617b8", + "txlist_hash": "ce8e1a4c9cc42629c36784e7a045615e799c3c279fd506ee76a591acce4d80c0", + "messages_hash": "d21d084fba0555f69c3f29365bdfb1a54789abbb0bffdee3788d95eef2d5683e", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", - "block_time": 1730467820, - "previous_block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_hash": "04b7bdf7b2bd402a370a50d14b555fba6a5af1d9ee6c3bb8a595b3efcb187ac4", + "block_time": 1730732570, + "previous_block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", "difficulty": 545259519, - "ledger_hash": "05347cfbbe2cc0f07c5e825f263380a619597d89fd898f8494b5bbd844ee0be8", - "txlist_hash": "efa3534f026baafdd04c9b1b14082f801e2a333b85ad459c0d13ee965ea843dc", - "messages_hash": "bde518a8b0bb2c5061b280095c037bf7894ad17ea3772a2303dd733f05575a93", + "ledger_hash": "ed0c071bb57ca6517eb3024de5a0b9e748f3412c6e5a24d55e19364ffe483cd7", + "txlist_hash": "dbf632edcde6b0b097a6f0dfb04322ec4c88d749d2dd3f865e45b2b5f0bb0a3d", + "messages_hash": "9fe7f32c4eb3b8a7238d5c56c16fb0d94cb23d2fbfb7ae9b83dc2457b6d23469", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", - "block_time": 1730467817, - "previous_block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", + "block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", + "block_time": 1730732567, + "previous_block_hash": "2ce784f94dac668a5c02fd7401f415ddb9613ec7ee5bba0bdde990194ef0a580", "difficulty": 545259519, - "ledger_hash": "98c1b25ea18df135ca9a6215b4b4fa948a4f1e25db26b94e353d81825c18b826", - "txlist_hash": "e49fb8e2a353a8239a32595a4695c95f375570221c88590d6ecc65961c3316ec", - "messages_hash": "ac056f5c8e6fbf9a39809ebf3ec12daafb6faaa1e9f094a41a331a60f7ab98f2", + "ledger_hash": "0c490f3781ee8f107e03a25523a743c9eb5b53e55646d09b0e6980d91c2618dc", + "txlist_hash": "d5becc986c494a63c12143ca2692d070cd1a7b5c79bfc1eba47b6b84b7d461ba", + "messages_hash": "d81268600f60cfb738275c6fe382229cbf45c7808caa4d5f6f61158f9dfc0730", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", "difficulty": 545259519, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5` (str, required) - The index of the block to return + + block_hash: `47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", "difficulty": 545259519, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 704, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 703, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" } ], "next_cursor": 701, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 700, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 697, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 211, - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "object_id": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "block_index": 211, "confirmed": true, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "offer_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "status": "valid", "confirmed": true, - "block_time": 1730467749 + "block_time": 1730732476 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "block_index": 196, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730467760, + "block_time": 1730732487, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "block_hash": "583d0b0b3a55acf8da31b3f0dce82f75af4225b1dbe4e893c5be681743775454", - "block_time": 1730467531, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "27112ec5679e596b595868662eb4e26d80614f007385c6586bda4a9890e4445b", + "block_time": 1730732234, + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad:1 2 ", + "utxos_info": " fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "block_hash": "19808a84f2ea73f7b49a6a037ea9323e47f2111bb29adc68af1f3f9d269455e9", - "block_time": 1730467720, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "32fb58c71a21c8c354041e00ea2dbe05b8498902b72ff194e3a8bae463fbb058", + "block_time": 1730732447, + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "btc_amount": 2000, "fee": 10000, - "data": "0b2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6ec3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "data": "0ba04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "supported": true, - "utxos_info": " 89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326:0 3 1", + "utxos_info": " ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "block_index": 193, - "block_hash": "22c024bd6b63cec6105502d4df6635e87696ba658bbba8f25171f5e3562e3301", - "block_time": 1730467749, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "4fe0c7a2702fa11abc37d5c658fba72d7c790ae67d91c347c8cc55cb1df389a3", + "block_time": 1730732476, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4625bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "data": "46a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "supported": true, - "utxos_info": " bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a:1 2 ", + "utxos_info": " f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "offer_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "block_index": 196, - "block_hash": "1658782e83fa7d48b88987eb9431a5f1be2c840f08c7dd35a368810e3e5425a0", - "block_time": 1730467760, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "block_hash": "574cf9a6e9bbd651f8dd8abe2cf7cdf7124e566c59bda5aa353f81664c0e0dbf", + "block_time": 1730732487, + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "cf4df6f34c771bb7959594ec24d7f9747ee07371aca968c7319de88315cae6bf:1 90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 2 ", + "utxos_info": "26ffcaed575fe40ba5909310b94b3f1d7dacd604e7cd07bf7b1b7f65fd4633de:1 7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 197, - "block_hash": "3df978603809c284f596cad79af1c555c40a75b36a8d8cd875a32e53ee715708", - "block_time": 1730467763, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "3878bf3d815bf87cb59a54a83d7bf756080081a42ac9691ed08d1021359f480c", + "block_time": 1730732492, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53:1 2 ", + "utxos_info": " 7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "block_hash": "328f4310a20eabb7037d2e14b97d22068242931c679289ba59c78c83348f6fd3", - "block_time": 1730467604, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "3f598989f02c404d040c4df928220801a4ea01dc2aba0fe73f066894f7f8b1bb", + "block_time": 1730732299, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938:1 2 ", + "utxos_info": " 62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_hash": "5761b45953c102d88bacbff89b100e0cedc8633cf4e3898df6ec0b8af0b756e8", - "block_time": 1730467805, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "21bc678f1bda1552ccfb6fdbde57b8afb35f02c7ea8a9c1bb9830b846b9b2673", + "block_time": 1730732535, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37:1 2 ", + "utxos_info": " 1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", - "block_time": 1730467838, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", + "block_time": 1730732578, + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa:1 2 ", + "utxos_info": " 073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", - "block_time": 1730467808, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "4fd2b9ce32872888cb102b5d43eaa934916efd49de36b774fd12527d1def5ddb", + "block_time": 1730732549, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "02000000178d82231300000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "supported": true, - "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", + "utxos_info": " 011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", - "block_time": 1730467834, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", + "block_time": 1730732574, + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a9602ee1f70d2fcf144fdc88907549c8513e45b98046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75:0 4 ", + "utxos_info": " 596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "block_hash": "272698332ebc8f2b93687289edc45fffbabef200cdb8059b59cdef37f203870e", - "block_time": 1730467755, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "block_hash": "2212acc6ea59328284dc095c5dbd71d89a66f2a5b5228d37b302dc92299a267d", + "block_time": 1730732484, + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803804ff7a0e2bf5a70d78cefd6a14ce1832620ee8017377656570206d7920617373657473", + "data": "048090f604b12f13ad49527e05a26953403f33004f26017377656570206d7920617373657473", "supported": true, - "utxos_info": " 80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464:1 2 ", + "utxos_info": " ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "tx_hash": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", "block_index": 203, - "block_hash": "737062c79cc5413b44a4d46767a554c6989aefd8c00d56233fc28d85403d773e", - "block_time": 1730467801, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "block_hash": "61a9c582c640bd982655dfada2dc073525276842130b56ba7dd01a07122e04d6", + "block_time": 1730732530, + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e:0 3 1", + "utxos_info": " 94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "tx_hash": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", "block_index": 202, - "block_hash": "44cb81bb4377aebb68979b338f5765bccccf22a14e3febc6ef2eae4da960dc8e", - "block_time": 1730467798, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "block_hash": "088a994fbf8314f540c815a40817c4e141e352036ed177fff323e2013c6a2e90", + "block_time": 1730732526, + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "0d5e9c06995871fa17540d39523a675b6a79898ad42e73692c8c9c0be4fe3801:0 258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3:1 2 ", + "utxos_info": "9bb912a7237ee1facd4a35cd655c865dc600421adf16c85a71358733e329eac6:0 4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 77, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", - "block_time": 1730467838, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", + "block_time": 1730732578, + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa:1 2 ", + "utxos_info": " 073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101f7cd7011fc34e7d272fa4053932264324a3f15635a72aa0715e41f4f4cdcee710000000000ffffffff020000000000000000306a2eea47ddf94a798f7056334763aa0b879449f54bc413b523e37d39fe1c9ee112c80ba8cad214800790686530ca0300f0ca052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21024730440220466710a50a050a8e1fa896307f609a9a5a497996c3fdd00ca099d7d1775e246a0220222a5692d2dfaaaa960195ff574e9c6d68a386a9154a6782262a4648aa5a05a8012103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106de0fcff3d7f489f4f3ed94f0339030927dbab679f3ce9fa962d6be1d20f93c190000000000ffffffff3da87b50b7a7f306b9fb273b9f293295b9fe32fb30b615712a5d71fb87b86af60000000000ffffffff139ccb8bd010d4e79b328ada06301838329a25d4bc1899509051434d98d2bd6b0000000000ffffffff6300b44b971f133d329dc6ec748e7d57325817cd686f542507c0c83036e977fd0000000000ffffffffcb9fc7c9ee3e52e89c782154d382055cd1fbd6b9666570ed9a07f10ea3ec6c200000000000ffffffff91188fff2ee34b7e859a2adf6557ddbdc453a72344bb9e5cfdca29769550241c0000000000ffffffff04e8030000000000006951210353c0246c3ff80d1dd8e6719e6ac76f493fcd7be16280dc2f5dbccc3678d153452102e7d1fe08284d13db17b2bbbe43e3511a2dd278a28cc614c83d41e938096c4b5d2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053aee8030000000000006951210253c0246c3ff80d1dd8ac23e3ef4d706aaa949e6f2c7c86e8675db71294ad86d92102f71e7e4ed5122f28b41791a99483bb16a2b88fb6053b5225c8da82baa67fe6e72102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053aee8030000000000006951210372c0246c3ff80d1dd8e5719deaef9939eaabad6f635a92c30c733f0b9469527c2103f71e7e4ed5122f02a1a2041c2849bb16a2b88fb60531d748adb7ed89267fe6eb2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae387923fc06000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b90247304402203697609f975e7e4de5b2d7f8b22304caceb2f2d8034c64d448dde1d6d90afe7a0220660328072f0126587054cad833af3fa892f56d08fc57e4470c1a25ad9fd997e5012102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc4300247304402202d0bd6c97ef200037392649fb33c88760beeecc7983f4a4079379cb330b104df0220359f6b6a9da03e13295eafd4f4ef363f43c7733738fd761b0946eeeae425b186012102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc4300247304402202b2ea56710a96195e759814480b71df3aacf179b17df04a4a5574d79a52413ab0220582ae83397f667997900d0d3bfd508db5cab93f59351c81c26f8acf00459c4e4012102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc4300247304402201e1c3d2726e9b14f40213ca657208a8c329fafbacb3dad9b588e7a68bda1ecdf0220494f5256afb9bde98235541acf912e7238996fef2dae4152ff3167de73c89bb0012102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc4300247304402207f38d042f6ebfb421d8dd5f57d6a9631f2bdcba5140793f26e62a96c7109c31f02201b981a12c0711d13491b61d91ec6a3ed907a573c48ab71da1001a3eb6f7a6c98012102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc4300247304402201e8935fd832415356139015e01c155adecdf25f25a4c3f1ff4ea276e8ad836df02205b593b28fbffaf0ca14070d809dbf829336f907d637f3088b89f6c1ffa1c86de012102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43000000000` (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. @@ -3362,18 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f7cd7011fc34e7d272fa4053932264324a3f15635a72aa0715e41f4f4cdcee71", + "hash": "de0fcff3d7f489f4f3ed94f0339030927dbab679f3ce9fa962d6be1d20f93c19", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "3da87b50b7a7f306b9fb273b9f293295b9fe32fb30b615712a5d71fb87b86af6", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "139ccb8bd010d4e79b328ada06301838329a25d4bc1899509051434d98d2bd6b", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "6300b44b971f133d329dc6ec748e7d57325817cd686f542507c0c83036e977fd", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "cb9fc7c9ee3e52e89c782154d382055cd1fbd6b9666570ed9a07f10ea3ec6c20", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "91188fff2ee34b7e859a2adf6557ddbdc453a72344bb9e5cfdca29769550241c", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3382,39 +3417,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a2eea47ddf94a798f7056334763aa0b879449f54bc413b523e37d39fe1c9ee112c80ba8cad214800790686530ca0300" + "value": 1000, + "script_pub_key": "51210353c0246c3ff80d1dd8e6719e6ac76f493fcd7be16280dc2f5dbccc3678d153452102e7d1fe08284d13db17b2bbbe43e3511a2dd278a28cc614c83d41e938096c4b5d2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae" + }, + { + "value": 1000, + "script_pub_key": "51210253c0246c3ff80d1dd8ac23e3ef4d706aaa949e6f2c7c86e8675db71294ad86d92102f71e7e4ed5122f28b41791a99483bb16a2b88fb6053b5225c8da82baa67fe6e72102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae" }, { - "value": 4999990000, - "script_pub_key": "00147b5d66ec4d5936b8c7c77a4145f58847067ecd21" + "value": 1000, + "script_pub_key": "51210372c0246c3ff80d1dd8e5719deaef9939eaabad6f635a92c30c733f0b9469527c2103f71e7e4ed5122f02a1a2041c2849bb16a2b88fb60531d748adb7ed89267fe6eb2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014a9602ee1f70d2fcf144fdc88907549c8513e45b9" } ], "vtxinwit": [ - "30440220466710a50a050a8e1fa896307f609a9a5a497996c3fdd00ca099d7d1775e246a0220222a5692d2dfaaaa960195ff574e9c6d68a386a9154a6782262a4648aa5a05a801", - "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" + "304402203697609f975e7e4de5b2d7f8b22304caceb2f2d8034c64d448dde1d6d90afe7a0220660328072f0126587054cad833af3fa892f56d08fc57e4470c1a25ad9fd997e501", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402202d0bd6c97ef200037392649fb33c88760beeecc7983f4a4079379cb330b104df0220359f6b6a9da03e13295eafd4f4ef363f43c7733738fd761b0946eeeae425b18601", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402202b2ea56710a96195e759814480b71df3aacf179b17df04a4a5574d79a52413ab0220582ae83397f667997900d0d3bfd508db5cab93f59351c81c26f8acf00459c4e401", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402201e1c3d2726e9b14f40213ca657208a8c329fafbacb3dad9b588e7a68bda1ecdf0220494f5256afb9bde98235541acf912e7238996fef2dae4152ff3167de73c89bb001", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402207f38d042f6ebfb421d8dd5f57d6a9631f2bdcba5140793f26e62a96c7109c31f02201b981a12c0711d13491b61d91ec6a3ed907a573c48ab71da1001a3eb6f7a6c9801", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402201e8935fd832415356139015e01c155adecdf25f25a4c3f1ff4ea276e8ad836df02205b593b28fbffaf0ca14070d809dbf829336f907d637f3088b89f6c1ffa1c86de01", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430" ], "lock_time": 0, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", - "tx_id": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a" + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", + "tx_id": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc" }, "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "divisible": true, - "locked": false + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "quantity_normalized": "0.00001000" - } + { + "asset": "XCP", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "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" } @@ -3426,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f` (str, required) - Transaction hash + + tx_hash: `a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a` (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. @@ -3437,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "54bf40ce30cedfd9c43891e9ed0c3674d854bf22dcb7355a58de63a50aceec90", + "hash": "7836ae1025bad08f978c7fbe398f8a0c7dd57608df8f9840c76f3cf62bbb5272", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3458,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e6581a03b433acc9291f65c937fb43dab4b6327724271fcfab2457ed3faca0de68e0dd689157e573e52a1c666580c" + "script_pub_key": "6a2e238700e5a62e1a0a8c20c1b197d13053cba00d775aecb44b6c05f2b4a1743db86f01a172c33d11c5096de506a10b" }, { "value": 4949930546, - "script_pub_key": "00143804ff7a0e2bf5a70d78cefd6a14ce1832620ee8" + "script_pub_key": "001490f604b12f13ad49527e05a26953403f33004f26" } ], "vtxinwit": [ - "3044022033b60c137ebb5a8677b52b67c98d7a1f0699779f198dcd4b50037a7c45f0135f02200b371aebb00c31e96968c4dfc3cfe996c0318d0c84b732d6020262e69d6d4f1701", - "039e1e579d9d1091c7d465062ee0035661af55cd112de71e5194144d43ca628056" + "30440220643a24349e263985c3ca89a195a49f97c3eaf1fc95b3a009e865292dda0a73ff022014e6c272a1b1e7cff4525a34813be4996fbab3de5bca348c6bd0d69b8435f44501", + "03d81422531867f53e6a0749f21ddc7e66291f8977217618750df99b4ad32dd1c7" ], "lock_time": 0, - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", - "tx_id": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f" + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", + "tx_id": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3479,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -3540,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3569,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction + + tx_hash: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc` (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. @@ -3581,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3634,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 704, @@ -3648,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3666,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 703, @@ -3677,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -3689,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3716,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 701, @@ -3726,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "msg_index": 1, "quantity": 2000000000, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", "status": "valid", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3743,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 700, @@ -3758,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction to return + + tx_hash: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -3782,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 704, @@ -3796,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3814,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 703, @@ -3825,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -3837,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3864,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 701, @@ -3874,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 211, - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "msg_index": 1, "quantity": 2000000000, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", "status": "valid", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3891,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 700, @@ -3906,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction to return + + tx_hash: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc` (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 @@ -3925,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3936,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -3949,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3960,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -3982,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction to return + + tx_hash: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc` (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 @@ -4002,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4037,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4081,16 +4152,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4100,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 700, @@ -4112,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4127,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 697, @@ -4139,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": null, @@ -4169,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The hash of the transaction to return + + tx_hash: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `706` (str, optional) - The last event index to return + Default: `None` @@ -4191,16 +4262,16 @@ Returns the events of a transaction "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4210,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 700, @@ -4222,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4237,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 697, @@ -4249,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": null, @@ -4281,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa,bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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 @@ -4305,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4315,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4326,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4336,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4347,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4357,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4368,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4378,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4389,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4399,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4410,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4420,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4437,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa,bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (str, required) - Comma separated list of addresses to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4456,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", - "block_time": 1730467834, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", + "block_time": 1730732574, + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a9602ee1f70d2fcf144fdc88907549c8513e45b98046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75:0 4 ", + "utxos_info": " 596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4474,14 +4545,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4489,7 +4560,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4508,17 +4579,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "tx_hash": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "block_index": 208, - "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", - "block_time": 1730467820, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "block_hash": "04b7bdf7b2bd402a370a50d14b555fba6a5af1d9ee6c3bb8a595b3efcb187ac4", + "block_time": 1730732570, + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a9602ee1f70d2fcf144fdc88907549c8513e45b98046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f26c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379:0 4 ", + "utxos_info": " 188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4526,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4541,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4560,17 +4631,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", - "block_time": 1730467817, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", + "block_time": 1730732567, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", + "utxos_info": " 297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4578,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4593,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4612,17 +4683,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", - "block_time": 1730467813, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ce784f94dac668a5c02fd7401f415ddb9613ec7ee5bba0bdde990194ef0a580", + "block_time": 1730732562, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", + "utxos_info": " a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4630,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4645,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4664,17 +4735,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", - "block_time": 1730467808, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "4fd2b9ce32872888cb102b5d43eaa934916efd49de36b774fd12527d1def5ddb", + "block_time": 1730732549, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "02000000178d82231300000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "supported": true, - "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", + "utxos_info": " 011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4682,12 +4753,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4707,7 +4778,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa,bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `706` (str, optional) - The last event index to return @@ -4736,20 +4807,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "tx0_index": 60, - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx1_index": 55, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4768,38 +4839,38 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "block_time": 1730467838 + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "block_time": 1730732578 }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730467838, + "block_time": 1730732578, "asset_info": { "divisible": true, "asset_longname": null, @@ -4809,9 +4880,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 675, @@ -4819,15 +4890,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -4837,9 +4908,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_time": 1730467834 + "block_time": 1730732574 } ], "next_cursor": 674, @@ -4852,7 +4923,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw,bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2,bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z` (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 @@ -4868,17 +4939,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "quantity": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, "asset_info": { "divisible": true, @@ -4889,22 +4960,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4914,22 +4985,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "block_index": 211, - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -4939,30 +5010,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730467857.2218225, + "block_time": 1730732596.4768202, "btc_amount": 0, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "destination": "", "fee": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, - "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", + "utxos_info": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -4976,7 +5047,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -4989,7 +5060,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -5009,7 +5080,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5017,14 +5088,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5032,14 +5103,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5047,14 +5118,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5069,7 +5140,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5077,7 +5148,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5094,7 +5165,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -5107,7 +5178,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5132,7 +5203,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5182,16 +5253,16 @@ Returns the credits of an address "result": [ { "block_index": 210, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "asset_info": { "divisible": true, "asset_longname": null, @@ -5203,16 +5274,16 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "event": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,16 +5295,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "event": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -5245,16 +5316,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -5266,20 +5337,20 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "event": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5296,7 +5367,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5335,16 +5406,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "event": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -5356,20 +5427,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "event": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5377,16 +5448,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "event": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -5398,20 +5469,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "event": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5419,20 +5490,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "event": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467808, + "block_time": 1730732549, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5449,7 +5520,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address of the feed + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5484,7 +5555,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -5503,9 +5574,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", + "tx_hash": "3065a7508aaf5464a10de3a984602a765e4e187c4fe24ffdad2025d144e1e6e3", "block_index": 137, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5513,7 +5584,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467528, + "block_time": 1730732230, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5527,7 +5598,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -5546,14 +5617,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "178b61a7bde77db3739e77f7645385820701a229bc4ccb7d866539a1c661881b", + "tx_hash": "96a00b22f7b72a0a1b630723413246350221d9fd3ea875a1390e9a9ce37d08c3", "block_index": 112, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730467433, + "block_time": 1730732127, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5568,7 +5639,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -5587,10 +5658,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5598,7 +5669,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -5611,10 +5682,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5622,11 +5693,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5635,10 +5706,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5646,11 +5717,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5659,10 +5730,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5670,7 +5741,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -5683,10 +5754,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5694,11 +5765,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5716,7 +5787,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207` (str, required) - The address to return + + address: `bcrt1qpyfeeezs9e97krvkkdn6pwun3r8053ygyhghmm` (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 @@ -5735,10 +5806,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "cf4df6f34c771bb7959594ec24d7f9747ee07371aca968c7319de88315cae6bf", + "tx_hash": "26ffcaed575fe40ba5909310b94b3f1d7dacd604e7cd07bf7b1b7f65fd4633de", "block_index": 151, - "source": "61f12f3be611720b02fe9a4203129a55a089cb571654679ef47e9165da800be6:0", - "destination": "bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207", + "source": "01ffe6c623facf7f2a9fabcce8a7327a58a6068ec966487cd2de9fe9f793a695:0", + "destination": "bcrt1qpyfeeezs9e97krvkkdn6pwun3r8053ygyhghmm", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5746,11 +5817,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467589, + "block_time": 1730732284, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5768,7 +5839,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5788,10 +5859,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5799,11 +5870,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5812,10 +5883,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5823,11 +5894,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5836,10 +5907,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5847,11 +5918,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5860,10 +5931,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5871,11 +5942,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5884,10 +5955,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5895,11 +5966,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467808, + "block_time": 1730732549, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5917,7 +5988,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207` (str, required) - The address to return + + address: `bcrt1qpyfeeezs9e97krvkkdn6pwun3r8053ygyhghmm` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5945,7 +6016,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5974,9 +6045,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5985,7 +6056,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5995,7 +6066,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6011,9 +6082,9 @@ Returns the dispensers of an address }, { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6022,7 +6093,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6032,11 +6103,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6057,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -6070,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6081,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6091,7 +6162,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6113,7 +6184,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -6133,19 +6204,19 @@ Returns the dispenses of a source { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", + "tx_hash": "869cbf7fad44312a8e161b7287467cee0cb6b0892180d6c4805c865c40dac5d1", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "dispenser_tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6153,7 +6224,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6168,11 +6239,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6182,19 +6253,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6202,7 +6273,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6217,7 +6288,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6231,19 +6302,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6251,7 +6322,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6266,7 +6337,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -6288,7 +6359,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address to return + + address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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 @@ -6308,19 +6379,19 @@ Returns the dispenses of a destination { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", + "tx_hash": "869cbf7fad44312a8e161b7287467cee0cb6b0892180d6c4805c865c40dac5d1", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "dispenser_tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6328,7 +6399,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6343,11 +6414,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6357,19 +6428,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6377,7 +6448,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6392,7 +6463,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6406,19 +6477,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6426,7 +6497,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6441,7 +6512,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -6463,7 +6534,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -6484,19 +6555,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6504,7 +6575,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6519,7 +6590,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6533,19 +6604,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6553,7 +6624,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6568,7 +6639,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -6590,7 +6661,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address to return + + address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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` @@ -6611,19 +6682,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6631,7 +6702,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6646,7 +6717,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6660,19 +6731,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6680,7 +6751,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6695,7 +6766,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -6717,7 +6788,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw` (str, required) - The address to return + + address: `bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2` (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 @@ -6736,16 +6807,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -6759,7 +6830,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6791,14 +6862,14 @@ Returns the issuances of an address "result": [ { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6813,20 +6884,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", + "tx_hash": "a2c47311a6be8bd375bbcbffbf9c299c2b58dfe8c3636ff61d5b453266db5c6d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6841,20 +6912,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467637, + "block_time": 1730732346, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", + "tx_hash": "564f3ffd7b8be3efee2f5b6e27f26307dc373bf52388175a9aa79b0b41e71167", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6869,20 +6940,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730467634, + "block_time": 1730732342, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", + "tx_hash": "e4161b580092fac2712c970e138b38c97a6ecd8c542152f8509e8db315a9e8b5", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6897,20 +6968,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467621, + "block_time": 1730732337, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "2c8c7f352a2ae38fe40e10dae18fa762073de3b0decf2ac8d8bd8691b534ece9", + "tx_hash": "3643047ff07e7ffb5477c3481c05161ba5a2b8f7646344e080fd3f22a0202ae7", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6925,7 +6996,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467617, + "block_time": 1730732324, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6940,7 +7011,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The issuer or owner to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6963,8 +7034,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -6972,16 +7043,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -6989,16 +7060,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -7006,16 +7077,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 40, @@ -7023,16 +7094,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730467522, - "last_issuance_block_time": 1730467525, + "first_issuance_block_time": 1730732222, + "last_issuance_block_time": 1730732226, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 19, @@ -7040,8 +7111,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730467506, - "last_issuance_block_time": 1730467517, + "first_issuance_block_time": 1730732196, + "last_issuance_block_time": 1730732217, "supply_normalized": "0.00000019" } ], @@ -7055,7 +7126,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The issuer to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -7078,8 +7149,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -7087,16 +7158,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -7104,16 +7175,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -7121,16 +7192,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 40, @@ -7138,16 +7209,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730467522, - "last_issuance_block_time": 1730467525, + "first_issuance_block_time": 1730732222, + "last_issuance_block_time": 1730732226, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 19, @@ -7155,8 +7226,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730467506, - "last_issuance_block_time": 1730467517, + "first_issuance_block_time": 1730732196, + "last_issuance_block_time": 1730732217, "supply_normalized": "0.00000019" } ], @@ -7170,7 +7241,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The owner to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7193,8 +7264,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -7202,16 +7273,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -7219,16 +7290,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -7236,16 +7307,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 40, @@ -7253,16 +7324,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730467522, - "last_issuance_block_time": 1730467525, + "first_issuance_block_time": 1730732222, + "last_issuance_block_time": 1730732226, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 19, @@ -7270,8 +7341,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730467506, - "last_issuance_block_time": 1730467517, + "first_issuance_block_time": 1730732196, + "last_issuance_block_time": 1730732217, "supply_normalized": "0.00000019" } ], @@ -7285,7 +7356,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + cursor: `78` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7304,17 +7375,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", - "block_time": 1730467817, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", + "block_time": 1730732567, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", + "utxos_info": " 297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7322,14 +7393,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -7337,7 +7408,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7356,17 +7427,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", - "block_time": 1730467813, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ce784f94dac668a5c02fd7401f415ddb9613ec7ee5bba0bdde990194ef0a580", + "block_time": 1730732562, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", + "utxos_info": " a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7374,14 +7445,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -7389,7 +7460,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7408,17 +7479,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", - "block_time": 1730467808, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "4fd2b9ce32872888cb102b5d43eaa934916efd49de36b774fd12527d1def5ddb", + "block_time": 1730732549, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "02000000178d82231300000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "supported": true, - "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", + "utxos_info": " 011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7426,12 +7497,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -7442,17 +7513,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_hash": "5761b45953c102d88bacbff89b100e0cedc8633cf4e3898df6ec0b8af0b756e8", - "block_time": 1730467805, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "21bc678f1bda1552ccfb6fdbde57b8afb35f02c7ea8a9c1bb9830b846b9b2673", + "block_time": 1730732535, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37:1 2 ", + "utxos_info": " 1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7477,17 +7548,17 @@ Returns the transactions of an address }, { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 197, - "block_hash": "3df978603809c284f596cad79af1c555c40a75b36a8d8cd875a32e53ee715708", - "block_time": 1730467763, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "3878bf3d815bf87cb59a54a83d7bf756080081a42ac9691ed08d1021359f480c", + "block_time": 1730732492, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53:1 2 ", + "utxos_info": " 7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7504,7 +7575,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -7525,7 +7596,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -7544,20 +7615,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -7582,7 +7653,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7611,9 +7682,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7628,7 +7699,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7654,9 +7725,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7671,7 +7742,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7697,9 +7768,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7714,7 +7785,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7740,9 +7811,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "block_index": 210, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7757,7 +7828,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7792,7 +7863,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The source of the fairminter to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7817,10 +7888,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7845,7 +7916,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7854,10 +7925,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7882,7 +7953,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730467522, + "block_time": 1730732222, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7894,10 +7965,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7922,7 +7993,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730467506, + "block_time": 1730732196, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7934,10 +8005,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7962,7 +8033,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730467503, + "block_time": 1730732191, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7974,10 +8045,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8002,7 +8073,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8024,7 +8095,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address of the mints to return + + address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8042,22 +8113,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8066,22 +8137,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", + "tx_hash": "6e388fae3b73e1e6060a8d3ee92e0b6a88a386d76c0d4be3ff737c3f25d7a087", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467517, + "block_time": 1730732217, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8090,22 +8161,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", + "tx_hash": "f14571bf3bb7cdd8317c1392e844213fbed36356eb193ac0fdeb6318999f50d6", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467513, + "block_time": 1730732203, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8114,22 +8185,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", + "tx_hash": "4595474922c82b36cfa3087ba618db43caac4d8449925561370a703572db1982", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467510, + "block_time": 1730732200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8138,22 +8209,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "03b0ed1544e4aa249d8b16e104e1c1eb0653bac0f901cf3334b756341939e97c", + "tx_hash": "aa47a431cbda6640b5e7b369dc747e89dd1308d6626616486023527d0db54eaa", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467491, + "block_time": 1730732180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8162,22 +8233,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8196,7 +8267,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address of the mints to return + + address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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` @@ -8215,22 +8286,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8251,7 +8322,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0` (str, required) - The utxo to return + + utxo: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8271,8 +8342,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset_info": { "divisible": true, "asset_longname": null, @@ -8285,12 +8356,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8330,8 +8401,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address that will make the bet + + feed_address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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) @@ -8403,7 +8474,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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) @@ -8463,7 +8534,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8475,7 +8546,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "0200000000010140e8cddf1d6192b956db2a16b360a5440c86b04a0b6cab4a21f5094b6985b0cb000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0200000000000000002b6a29d04e3af24f09e16bb551e2704631a454d2ceef5ca9fb90e463289e34e913a61903117c2a5a2772527d82ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001017793c6ec866ddb3d33f4529e58556f0962ab260bb873e166c0a9aa1ed881bd0600000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff0200000000000000002b6a297866d0945893a100af1a606e2fb290d3d1ec5559fc3757ff6f96a3c10d831b9ae141a212dbab43042082ba052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8497,8 +8568,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending the payment - + order_match_id: `a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0` (str, required) - The ID of the order match to pay for + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address that will be sending the payment + + order_match_id: `375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b` (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) @@ -8554,23 +8625,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "order_match_id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b" }, "name": "btcpay", - "data": "434e5452505254590ba51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "data": "434e5452505254590b375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "0200000000010166305b107998052c191eb345539a43a9b5de3804784ede4ea605d1bdbcb8396a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e8030000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2100000000000000004b6a499f4b097f41297c59e1b386bdc9781a9a7df3333d64b814f3aef235cb9d52c0235e7ef370afd6fbdef9c42a8710b52f8985ab9921de925efc29c9d53f143ae99809c19eff19e8e4638b77a7052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001015f050e6a5fc626122fb3a21e47f1dfe001af428202d2f563d2ae8dc82c60a7e200000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff03e803000000000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b900000000000000004b6a49dbc6c87a7ca3524d3911f78f7fd3b86d31b683f9aab0bc54f27e2743cbe9a87a6168da75cb9fc1f1637a806c699a5fbefabc21b0fbbe573c40d3e8df56b9a3a054e3c6bbe6d15916ca77a7052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "order_match_id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "status": "valid" } } @@ -8583,7 +8654,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address with the BTC to burn + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -8642,7 +8713,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 1000, "overburn": false }, @@ -8652,7 +8723,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "02000000000101c1b89134bd97a9a83406cdb3e0f475cc1a8036025116ee901be0cce20789059e000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000" + "rawtransaction": "02000000000101e799fe6adb1bc0fc629dc21d3e0e90240bc1a802d641756c9d367bb3d726953400000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000" } } ``` @@ -8662,8 +8733,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: `bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5` (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) @@ -8719,21 +8790,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "offer_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5" }, "name": "cancel", - "data": "434e545250525459465c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "data": "434e54525052545946073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "02000000000101aacd0e5e1a8c7844b8fd3696e7ad74b3c087eda84c2e6010eb2f6ad655242b5c01000000160014ffdebde14127aa2af866de83c22853593005affdffffffff0200000000000000002b6a29cebf0919789d028d5ee2cd0d3f1b710e1aedfa2e1edfb96b79a0015c062b14f8e80d69cdbc9b54cc053e8d092701000000160014ffdebde14127aa2af866de83c22853593005affd02000000000000", + "rawtransaction": "02000000000101d52586802b79ab8c4beb46b3ba0f2567f0efaaef6f43b50e745daf6c2017390701000000160014584e1ea5fc0aeabce15e26a346b4ea478f4a59c1ffffffff0200000000000000002b6a29410598c329133c5fc9712847a70670b1c236ec78fd2d3d3eff200d6e78f279871a1fa9e7c427df3cbc3e8d092701000000160014584e1ea5fc0aeabce15e26a346b4ea478f4a59c102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "offer_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "status": "valid" } } @@ -8746,7 +8817,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -8805,7 +8876,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8824,7 +8895,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101a22e4a67053a5acb3c5f25f59e8e6f6b128a3fec54cb0f7d411cc3fe8f73102c000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000226a204d1e3208656909dc4f1be80ae78ff6a20740e2f11895e0d403e958b2cf10d19992bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001012aeb97bd2bde0d130ff9d0e7cefbffc3cd4634d83525706b49f0aab37a64af3300000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000226a2077fa8e3028338ba0e837dd1fd1dd3855bf73fd0c0ed56b626f09407b8a7198dd92bc052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8844,7 +8915,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: `bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk` (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) @@ -8909,7 +8980,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8933,7 +9004,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "020000000001017f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed245020000001600149d89a2518adb0281244890afd1bb4d3c931f5eb6ffffffff0200000000000000002c6a2ad4eaec308d80109a59b3eb126bbd6ff1141b6fb1272adff767b15917530ce1a01688998925181d9f011732dd0827010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb602000000000000", + "rawtransaction": "02000000000101fc992ca3c9ecc5263706b8ea30730ba2a1aeadeb6097e9df77662cd470e5f49b0200000016001461b67a115608596e3ce7b315bd2d9e35c739cc48ffffffff0200000000000000002c6a2a5cd26ed2bf4f7e9aab96d1741f5bbe65176e6a5911dbb199168f461c8bc7a28e3c3c71788ae45256e29932dd08270100000016001461b67a115608596e3ce7b315bd2d9e35c739cc4802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8959,7 +9030,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (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: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -9018,14 +9089,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9044,7 +9115,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001014ce71077ec6979d2233ea2f42f40f3030160fea575471f3e50248ce9871a84c7000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21f9c587fc44eecabb0116eefe92439787a373cd264f47001cc215a8cb3f8417ad4757bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101fc50e55276da9b8be953dc00c22bcb396a30e103bd11765b4009ea956e97202c00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000236a218c84a0971e12f8ba357dd9080295053092bd9f59f8f34398c21ad0720162a6a9c157bc052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9065,10 +9136,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -9133,10 +9204,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "transfer_destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "lock": false, "reset": false, @@ -9149,7 +9220,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "0200000000010154bbe92f15fe2191e819cc15a2030368be7e0eacf5d56dcbb2f671576473791a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000236a213aed3bdfb776968c28a7c1dddcf10ec68b3ee1abbf0c2ccf8f428518f3e1128a2e69b2052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101d980e2842bca2cf0a5a5cfd9bb7932d068b4a714842d1607a1cbbe323cdce2b900000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff032202000000000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b90000000000000000236a21af52ce07c22051e0063252c344fd3e963d9c2fdd7377f2d520338eb0940bc5b90269b2052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9178,9 +9249,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349,bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa,bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9245,16 +9316,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", 1 ], [ "MPMASSET", - "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", 2 ] ], @@ -9262,26 +9333,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002807b5d66ec4d5936b8c7c77a4145f58847067ecd21808eed8f24fbe533f031f29ff29ebd346b54e59a0040000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a9602ee1f70d2fcf144fdc88907549c8513e45b980287670d566d68e01da1ac73ae4984464b80110cf40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "02000000000104e62d39655be446249fae5886f5197a870347d6a2fd6dc8aea009a120b06675e5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff327da60c579997ac821eafeaf25ac17098196f62c1a951eb461a53d99aebb696000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffffbc13b2a68aba2c8a30e57ba5b1febd8cc3f6278148a30d5fffd32d65301eb026000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff1bcf6696a71ae840f6a72dc83de506fa418249335ae9b1e54ca735aa5ab16dc1000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e80300000000000069512102717c7bab9107b2bfb122b0d624d137d2af4a8dd7c492dbdb9b1cbcded1ab6c862103507a72ee53666df8eff94475080382cf4dcde199f53ac46856bb01637e86b7802103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aee803000000000000695121026e7c7bab9107b2bfb1f1b0d4a4aa6ab44323d4e17c551ca1da5d495696ad12f021039d5bf360bee949030acab444fa9c7051f0f98acd10a0c42856bb04801e0e73922103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aeb8f216a8040000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000002000002000002000000000000", + "rawtransaction": "0200000000010470c0583636d5eef9b8bc4cfbd5095733896d3e8a70eb18aa5d4698633ea08b5600000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff133af4afa7731f43fe04ac8a470b35201fc6c536e035118b52f9ab05bf1257f600000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffffe4e1f1ae9abb19747f659a78b317140b765ec56ce23e5a398bf89055fad7128a00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffffed4146c3be58624c986a86c8fa798ca21e2fa61be1c2692cbac242eebc4236d800000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff03e80300000000000069512103466723180c870ea037869be55cb38bb82fcc5de6652e77fa0e90458e6ac557872103adb097a7990d1188f8a6f74277ad6227fd1efee49774cae25c10ebff62373cfa2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053aee80300000000000069512102596723180c870ea037559be7dc1aeb96ce1f50c9aa3a3826860430c7a294691e2102e809168fef7dc4ee2e28f6986d6a58c3655a9a5c966405a25c10ee1c02bff8752102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053aeb8f216a804000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9297,7 +9368,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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 @@ -9359,7 +9430,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9376,7 +9447,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9390,7 +9461,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101ae17720f3cf3f073079058d00584fc14dbc1e47fbeec70d3b6de3cdc08ce5b33000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000356a3371b49840dbf78b83e3b3b80c2fa24ac420536e301f01d9aceb0c16e5fc5f13a0e6e64a422d4ab80ac4678f7bb0c833b92af73e37b8052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001012467a1ce0023cafddadf764fcac2b3660162ec63c77ea43c09690f3ac77a468200000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000356a338af0f5d16835995dc31320e11f1d153a16cd6f25a4a4897885faf7e8a1d11d3800a7b6b50655fd40895a25f232224f57432d9137b8052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9416,8 +9487,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address that will be receiving the asset + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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 @@ -9481,8 +9552,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9498,19 +9569,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "434e54525052545902000000000000000100000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "02000000000101600b0e48665d1cedd14ede371dc103399ca19f3df573e6407449dfbd4df98094000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000306a2ee0b580fbcba4ec673ca28b0584109f3842c41b0c20b820306a921194d9344adbd0af78ab14a34c38b1b265a6dc635cb9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "0200000000010179ccfd279884cc6b2cef306ac7139e51919c7eae8d30fe24b9727eb289e741cf00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000306a2eca004eb6f1226750dd67e12bb3c851445c8625820abcd660ecb36aea509721899a3f78c786fffbcc4769812440085cb9052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "quantity_normalized": "0.00001000" } @@ -9524,8 +9595,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be sending - + destination: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address that will be sending + + destination: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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 @@ -9583,23 +9654,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808eed8f24fbe533f031f29ff29ebd346b54e59a0007ffff", + "data": "434e5452505254590480287670d566d68e01da1ac73ae4984464b80110cf07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001013f0807c2e76fd2c227aaf75a1db4c92c05419ce31b4e1e054b2048d734b05f70000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21948192ee62d62d72d7e567e8a7b01df82b8675d1f5fc43777cf33ce2c85c22f2dd57bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001016ecf6206702c50a24daa518f0aaaf074fb2f0d26fa2dc33802059cf6af2c552a00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000236a213601ff5bb3447e21d724ba6d83bae4d815dfb5e9a5dbb08d02565d24520788844b57bc052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "flags": 7, "memo": "ffff" } @@ -9613,8 +9684,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: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z` (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` @@ -9671,8 +9742,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "quantity": 1000 }, "name": "dispense", @@ -9681,7 +9752,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "02000000000101753ec2e0b3fe2fa5a7a29872d453a16aa9cc55ea7a5ab8ecd0077b1294807d2f030000001600148eed8f24fbe533f031f29ff29ebd346b54e59a00ffffffff03e8030000000000001600143804ff7a0e2bf5a70d78cefd6a14ce1832620ee800000000000000000c6a0a66acea357cf698b28bdd8a250827010000001600148eed8f24fbe533f031f29ff29ebd346b54e59a0002000000000000", + "rawtransaction": "02000000000101664d046415dcbcbfa581970a7833920ad5fcfc0b87f8db8b38a71619378d6c5903000000160014287670d566d68e01da1ac73ae4984464b80110cfffffffff03e80300000000000016001490f604b12f13ad49527e05a26953403f33004f2600000000000000000c6a0a2adc66bb8d2994db32698a25082701000000160014287670d566d68e01da1ac73ae4984464b80110cf02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9698,7 +9769,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be issuing the asset + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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: `` @@ -9787,7 +9858,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9818,7 +9889,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "020000000001015ac4bc4f0b3fd074f065a8c61b8f82222eb08658615544a1fd11c8c29eb25498000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000316a2fe52fc6ea9b48a3e8fbd7fabfef3250a4408bd227abe85790ab89c6510303b58bb8b27816b1e6f3c6d84b321361d2ec21b9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101c20c80776d129fdc5dd95b51c5669e21870fd4b142890fdc3e7fbf4c5e823f2a00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000316a2f35f6c1840fa20a47545ad0e1e085b1b62de2ab7591ebc915d150dcf7f08fca0566d714edf856255795480f0c5b48f021b9052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9857,7 +9928,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: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address that will be minting the asset + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -9916,13 +9987,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9934,7 +10005,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101b9e26ad7824ffa11e584ba3fb819bc61d8e18e67465e4a5a96a5862aab0adfd5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000166a14ef4caa08595f56e4b7b7780ad102c4022ff2c61f52bf052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001011948191c7b7e6aaa781925714473d6fe3d1ab794b0f361e7e6a5f7e988246da500000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000166a14007af77a3f70a1014b09c5943c97158b7e3f34f852bf052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9953,7 +10024,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address from which the assets are attached + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10015,7 +10086,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10034,7 +10105,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "02000000000101842872ae8d1210945c44fc94f1ede6be6d68aeb15720e8c11ff074d8ab942a19000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000146a12e482f599078d5f30ee2404ad0f681adb0348dab5052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101a1c3ddbec489d2241a3b601ced72e164cd2c1d8f80f7be903a285c43d792034e00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff032202000000000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b90000000000000000146a129d1252a3596973a50037ec8976c9cd0864fbdab5052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10054,8 +10125,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: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10116,21 +10187,21 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" + "source": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa" }, "name": "detach", - "data": "434e545250525459666263727431713064776b646d7a6474796d7433333738306671357461766767757238616e6670356630333439", + "data": "434e545250525459666263727431713439737a616330687035687537397a306d6a7966716132666570676e753364657736736c7161", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "020000000001027f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed24500000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745fffffffff75bf556a9c79ab4698c652107cce983e6f3383a0657bc5c79d5758f9417b22b01000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745ffffffff020000000000000000376a35d4eaec308d80109a33d188601f8c1ec1716c04d54a50bb80f6dc2d24603bd99398f9acfd446e7af8106558a912fdce604963ba4218772c0a2701000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74502000002000000000000", + "rawtransaction": "02000000000102fc992ca3c9ecc5263706b8ea30730ba2a1aeadeb6097e9df77662cd470e5f49b00000000160014594f55ced439faf816badf7ad2612e16657f5e2affffffffa6d229a9e7b5b1ca7e03337bb6deb29df4f9884aa2736469531c9ec10316c26301000000160014594f55ced439faf816badf7ad2612e16657f5e2affffffff020000000000000000376a355cd26ed2bf4f7e9ac1f4b2066b6acf512f1d103872ebd9eacbe7332bb2bd92e0be451709ebd63433f6fec782bb2f62b56079cab5eb772c0a2701000000160014594f55ced439faf816badf7ad2612e16657f5e2a02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa" } } } @@ -10232,8 +10303,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -10241,16 +10312,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "owner": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "owner": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false, "supply": 100000000000, @@ -10258,16 +10329,16 @@ Returns the valid assets "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730467772, - "last_issuance_block_time": 1730467772, + "first_issuance_block_time": 1730732499, + "last_issuance_block_time": 1730732499, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -10275,16 +10346,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "owner": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "issuer": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "owner": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "divisible": true, "locked": false, "supply": 100000000000, @@ -10292,16 +10363,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730467614, - "last_issuance_block_time": 1730467614, + "first_issuance_block_time": 1730732320, + "last_issuance_block_time": 1730732320, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -10309,8 +10380,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" } ], @@ -10338,8 +10409,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -10347,8 +10418,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730467470, - "last_issuance_block_time": 1730467483, + "first_issuance_block_time": 1730732161, + "last_issuance_block_time": 1730732171, "supply_normalized": "100.00000000" } } @@ -10379,7 +10450,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10387,14 +10458,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10402,7 +10473,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -10420,7 +10491,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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. @@ -10432,7 +10503,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10486,9 +10557,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10503,7 +10574,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10529,9 +10600,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10546,7 +10617,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10572,9 +10643,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10589,7 +10660,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10615,9 +10686,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "block_index": 210, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10632,7 +10703,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10658,9 +10729,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10675,7 +10746,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10737,13 +10808,13 @@ Returns the orders of an asset { "result": [ { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10757,7 +10828,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10777,13 +10848,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 53, - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10797,7 +10868,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10817,13 +10888,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "id": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501_a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", "tx0_index": 50, - "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 51, - "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10837,7 +10908,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10857,13 +10928,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10877,7 +10948,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10957,20 +11028,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "event": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -10978,20 +11049,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", + "event": "1377840a37db84414db1f305f8e7aecb49e7ae78edf718666941607aa40118b6", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -10999,20 +11070,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "event": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11020,20 +11091,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "event": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11045,16 +11116,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "event": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11114,12 +11185,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -11131,16 +11202,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "event": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -11152,16 +11223,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "event": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -11173,16 +11244,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "event": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -11194,16 +11265,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "event": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -11283,14 +11354,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", + "tx_hash": "1377840a37db84414db1f305f8e7aecb49e7ae78edf718666941607aa40118b6", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -11305,20 +11376,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "tx_hash": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -11333,20 +11404,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -11361,20 +11432,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -11389,7 +11460,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730467470, + "block_time": 1730732161, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11423,10 +11494,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11434,7 +11505,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -11447,10 +11518,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11458,7 +11529,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -11471,10 +11542,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "tx_hash": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "block_index": 208, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11482,7 +11553,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -11495,10 +11566,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11506,7 +11577,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -11519,10 +11590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11530,7 +11601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -11581,9 +11652,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11592,7 +11663,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11602,7 +11673,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -11618,9 +11689,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", + "tx_hash": "18fee8ce692f7edbd1fff8d7bd1582a7f29c5811fb14ae33524cde1a67e53b14", "block_index": 142, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11629,7 +11700,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "origin": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11639,7 +11710,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467547, + "block_time": 1730732250, "asset_info": { "divisible": true, "asset_longname": null, @@ -11655,9 +11726,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", + "tx_hash": "9ceb4412b1fa83d71d08560201074c5eb5607558967f9465d47b86261846b117", "block_index": 150, - "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", + "source": "n1FmWDLz3gFfgc61LQinRBgLeyi7EMcXwt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11665,10 +11736,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_hash": "ea9ca7de8f22e820c6af5555f0a01793feda0e2e2c08b8931b4669d4e729db11", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11676,7 +11747,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467586, + "block_time": 1730732280, "asset_info": { "divisible": true, "asset_longname": null, @@ -11692,18 +11763,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11713,7 +11784,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -11738,7 +11809,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - The address to return + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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` @@ -11751,9 +11822,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11762,7 +11833,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11772,7 +11843,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -11822,7 +11893,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11830,7 +11901,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11839,7 +11910,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11847,7 +11918,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11856,7 +11927,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11864,7 +11935,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11873,7 +11944,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11910,27 +11981,27 @@ Returns the dispenses of an asset { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11945,7 +12016,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -11959,27 +12030,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", + "tx_hash": "8f08e8ddf4de2e08cf5cab9e240cc6d24e6fdae54c75395d2595afcd34521a90", "block_index": 147, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11994,7 +12065,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467575, + "block_time": 1730732268, "asset_info": { "divisible": true, "asset_longname": null, @@ -12008,19 +12079,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12028,7 +12099,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12043,7 +12114,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -12057,19 +12128,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12077,7 +12148,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12092,7 +12163,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -12166,10 +12237,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12194,7 +12265,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12234,22 +12305,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", + "tx_hash": "1377840a37db84414db1f305f8e7aecb49e7ae78edf718666941607aa40118b6", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -12258,22 +12329,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "tx_hash": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -12282,22 +12353,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -12316,7 +12387,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f` (str, required) - The address of the mints to return + + address: `bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4` (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` @@ -12335,22 +12406,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -12403,9 +12474,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12420,7 +12491,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12446,9 +12517,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12463,7 +12534,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12489,9 +12560,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12506,7 +12577,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12532,9 +12603,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12549,7 +12620,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12575,9 +12646,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "block_index": 210, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12592,7 +12663,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12627,7 +12698,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0` (str, required) - The hash of the transaction that created the order + + order_hash: `aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b` (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. @@ -12639,9 +12710,9 @@ Returns the information of an order { "result": { "tx_index": 55, - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "block_index": 211, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12656,7 +12727,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12688,7 +12759,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7` (str, required) - The hash of the transaction that created the order + + order_hash: `375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064` (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 @@ -12715,13 +12786,13 @@ Returns the order matches of an order { "result": [ { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12735,7 +12806,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12765,7 +12836,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e` (str, required) - The hash of the transaction that created the order + + order_hash: `a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b` (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 @@ -12784,15 +12855,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "btc_amount": 2000, - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "status": "valid", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "btc_amount_normalized": "0.00002000" } ], @@ -12836,9 +12907,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12856,7 +12927,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730467720, + "block_time": 1730732447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12882,9 +12953,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "block_index": 211, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12902,7 +12973,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730467853, + "block_time": 1730732593, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12928,9 +12999,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12948,7 +13019,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12974,9 +13045,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12994,7 +13065,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13020,9 +13091,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13040,7 +13111,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13103,13 +13174,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13126,7 +13197,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13146,13 +13217,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 53, - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13169,7 +13240,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467720, + "block_time": 1730732447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13189,13 +13260,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "id": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501_a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", "tx0_index": 50, - "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 51, - "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13212,7 +13283,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467651, + "block_time": 1730732360, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13232,13 +13303,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13255,7 +13326,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13313,13 +13384,13 @@ Returns all the order matches { "result": [ { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13333,7 +13404,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13353,13 +13424,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 53, - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13373,7 +13444,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13393,13 +13464,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "id": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501_a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", "tx0_index": 50, - "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 51, - "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13413,7 +13484,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13433,13 +13504,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13453,7 +13524,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13621,66 +13692,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", + "tx_hash": "ff3faba5e57edb636874da0ba473d2a2887ab72330e6bdf4d168bbcb6bbaf8a1", "block_index": 121, - "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", + "source": "bcrt1qwvzpkdat23f5gxskhwzlse5cd9lzymwvucxhwn", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730467465, + "block_time": 1730732157, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6e78cc5e128af65f1686523a753af99b78c132bdc001ba49411a3ce47c50ee9c", + "tx_hash": "a98382abf93085ed4c73a231535e609dad81d61d509bba66d07ec5556b61f10c", "block_index": 120, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730467462, + "block_time": 1730732153, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "db455fa4b624eeb04f20aa18e96ee26fc63c1ed3aec0e8650df974a54432d2e6", + "tx_hash": "97d86b9a08f81c16b87396ad4997e1adc8bad865957102a53e285bc07c47ef19", "block_index": 119, - "source": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy", + "source": "bcrt1qtpmr4j0eu628umesf00708u2yc6wpcw3mma5w4", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730467457, + "block_time": 1730732150, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "17392c3df9592847436074efa44d5acaedfd24947c269a583e9c043dd86afd79", + "tx_hash": "02d30d78417cb40b0e8aeae1b147d666fa680f0d197a75a968cc5f07d0a2ca58", "block_index": 118, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730467454, + "block_time": 1730732147, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0f9e72e8e6d07cb5998119bc8f4ed292e6624a9b28465d43b404f0cbc60ae639", + "tx_hash": "a65fb55dd94eef3a6ffb8b15b286b8e1b07425adcc8f3a1ef7e8f1bf824edc5b", "block_index": 117, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730467450, + "block_time": 1730732144, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13725,9 +13796,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13736,7 +13807,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13746,7 +13817,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -13762,9 +13833,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", + "tx_hash": "18fee8ce692f7edbd1fff8d7bd1582a7f29c5811fb14ae33524cde1a67e53b14", "block_index": 142, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13773,7 +13844,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "origin": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13783,7 +13854,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467547, + "block_time": 1730732250, "asset_info": { "divisible": true, "asset_longname": null, @@ -13799,9 +13870,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", + "tx_hash": "9ceb4412b1fa83d71d08560201074c5eb5607558967f9465d47b86261846b117", "block_index": 150, - "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", + "source": "n1FmWDLz3gFfgc61LQinRBgLeyi7EMcXwt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13809,10 +13880,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_hash": "ea9ca7de8f22e820c6af5555f0a01793feda0e2e2c08b8931b4669d4e729db11", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13820,7 +13891,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467586, + "block_time": 1730732280, "asset_info": { "divisible": true, "asset_longname": null, @@ -13836,9 +13907,9 @@ Returns all dispensers }, { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13847,7 +13918,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13857,11 +13928,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -13873,18 +13944,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13894,7 +13965,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -13919,7 +13990,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216` (str, required) - The hash of the dispenser to return + + dispenser_hash: `bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1` (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. @@ -13931,9 +14002,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13942,7 +14013,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13952,7 +14023,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -13974,7 +14045,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216` (str, required) - The hash of the dispenser to return + + dispenser_hash: `bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1` (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 @@ -13994,19 +14065,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14014,7 +14085,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14029,7 +14100,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -14043,19 +14114,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14063,7 +14134,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14078,7 +14149,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -14120,20 +14191,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -14158,7 +14229,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938` (str, required) - The hash of the dividend to return + + dividend_hash: `62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818` (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. @@ -14170,20 +14241,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -14205,7 +14276,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818` (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 @@ -14228,12 +14299,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "event": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "tx_index": 42, - "utxo": "1c185c4c80aadf151f8406ce362617c32a10281f6390644e3518f6761efaf1c9:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "e3337ff241f0be9eabc0be15057e677d0b9f06562fd690eab138394c86efa68c:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "divisible": true, "asset_longname": null, @@ -14279,27 +14350,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 704, @@ -14308,14 +14379,14 @@ Returns all events "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -14326,9 +14397,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 703, @@ -14337,9 +14408,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -14349,24 +14420,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -14376,9 +14447,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 701, @@ -14406,15 +14477,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } } ``` @@ -14492,16 +14563,16 @@ Returns the events filtered by event name "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -14511,9 +14582,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 700, @@ -14523,12 +14594,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -14538,9 +14609,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 697, @@ -14550,39 +14621,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730467838, + "block_time": 1730732578, "asset_info": { "divisible": true, "asset_longname": null, @@ -14592,24 +14663,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "event": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -14619,9 +14690,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_time": 1730467834 + "block_time": 1730732574 } ], "next_cursor": 669, @@ -14677,27 +14748,27 @@ Returns all the dispenses { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14712,7 +14783,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -14726,19 +14797,19 @@ Returns all the dispenses { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", + "tx_hash": "869cbf7fad44312a8e161b7287467cee0cb6b0892180d6c4805c865c40dac5d1", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "dispenser_tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14746,7 +14817,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14761,11 +14832,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -14775,27 +14846,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", + "tx_hash": "8f08e8ddf4de2e08cf5cab9e240cc6d24e6fdae54c75395d2595afcd34521a90", "block_index": 147, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14810,7 +14881,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467575, + "block_time": 1730732268, "asset_info": { "divisible": true, "asset_longname": null, @@ -14824,19 +14895,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14844,7 +14915,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14859,7 +14930,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -14873,19 +14944,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14893,7 +14964,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14908,7 +14979,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -14950,10 +15021,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14961,7 +15032,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -14974,10 +15045,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14985,11 +15056,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -14998,10 +15069,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15009,7 +15080,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -15022,10 +15093,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15033,11 +15104,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15046,10 +15117,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15057,11 +15128,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15112,14 +15183,14 @@ Returns all the issuances "result": [ { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -15134,20 +15205,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "bac413745519011121694c9a89593b6cdf577b62a48484895524f2629d053ba7", + "tx_hash": "fc89c06450da8d513679e162a0f55da26c04d9cda22846429828191fee1e4dfa", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "transfer": false, "callable": false, "call_date": 0, @@ -15162,20 +15233,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467772, + "block_time": 1730732499, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", + "tx_hash": "a2c47311a6be8bd375bbcbffbf9c299c2b58dfe8c3636ff61d5b453266db5c6d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -15190,20 +15261,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467637, + "block_time": 1730732346, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", + "tx_hash": "564f3ffd7b8be3efee2f5b6e27f26307dc373bf52388175a9aa79b0b41e71167", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -15218,20 +15289,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730467634, + "block_time": 1730732342, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", + "tx_hash": "e4161b580092fac2712c970e138b38c97a6ecd8c542152f8509e8db315a9e8b5", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -15246,7 +15317,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467621, + "block_time": 1730732337, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15261,7 +15332,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37` (str, required) - The hash of the transaction to return + + tx_hash: `1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94` (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. @@ -15273,14 +15344,14 @@ Returns the issuances of a block { "result": { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -15295,7 +15366,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15327,16 +15398,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -15350,7 +15421,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464` (str, required) - The hash of the transaction to return + + tx_hash: `ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed` (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. @@ -15363,16 +15434,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -15406,9 +15477,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15416,14 +15487,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467531, + "block_time": 1730732234, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", + "tx_hash": "3065a7508aaf5464a10de3a984602a765e4e187c4fe24ffdad2025d144e1e6e3", "block_index": 137, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15431,7 +15502,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467528, + "block_time": 1730732230, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15445,7 +15516,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad` (str, required) - The hash of the transaction to return + + tx_hash: `fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa` (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. @@ -15457,9 +15528,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15467,7 +15538,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467531, + "block_time": 1730732234, "fee_fraction_int_normalized": "0.00000000" } } @@ -15504,10 +15575,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15532,7 +15603,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15541,10 +15612,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15569,7 +15640,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730467522, + "block_time": 1730732222, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15581,10 +15652,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15609,7 +15680,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730467506, + "block_time": 1730732196, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15621,10 +15692,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15649,7 +15720,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730467503, + "block_time": 1730732191, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15661,10 +15732,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15689,7 +15760,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15758,22 +15829,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15782,22 +15853,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", + "tx_hash": "6e388fae3b73e1e6060a8d3ee92e0b6a88a386d76c0d4be3ff737c3f25d7a087", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467517, + "block_time": 1730732217, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15806,22 +15877,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", + "tx_hash": "f14571bf3bb7cdd8317c1392e844213fbed36356eb193ac0fdeb6318999f50d6", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467513, + "block_time": 1730732203, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15830,22 +15901,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", + "tx_hash": "4595474922c82b36cfa3087ba618db43caac4d8449925561370a703572db1982", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467510, + "block_time": 1730732200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15854,22 +15925,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ac68db009ddeab5fff5da046698c05a254c7217fe24980421f74c93287736192", + "tx_hash": "4c25d736a88df8d907e80197b0abb8c8c7200e7819316247dd54b10b960c6b1b", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "fairminter_tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467499, + "block_time": 1730732187, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15888,7 +15959,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787` (str, required) - The hash of the fairmint to return + + tx_hash: `1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15899,22 +15970,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -15932,7 +16003,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l,bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy` (str, required) - The addresses to search for + + addresses: `bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp,bcrt1qtpmr4j0eu628umesf00708u2yc6wpcw3mma5w4` (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. @@ -15946,13 +16017,13 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", - "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + "vout": 1, + "height": 210, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", + "address": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp" }, { "vout": 1, @@ -15960,17 +16031,17 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", - "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + "txid": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", + "address": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp" }, { - "vout": 1, - "height": 210, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", - "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", + "address": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp" }, { "vout": 2, @@ -15978,8 +16049,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab", - "address": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy" + "txid": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3", + "address": "bcrt1qtpmr4j0eu628umesf00708u2yc6wpcw3mma5w4" } ], "next_cursor": null, @@ -15992,7 +16063,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw` (str, required) - The address to search for + + address: `bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2` (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 @@ -16008,25 +16079,25 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "ab91d25ddaeff8fc3191406dfe5f6c0b97ba2735cf2745bcb4cae7109dc38307" + "tx_hash": "23d8bdcf6b833762ff1d99705066a0475a02ac6d7a8768b29821fa8d5e2ed42d" }, { - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464" + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b" }, { - "tx_hash": "7a01b5bcecfe586b29e272f20d6200a79f67d0e67bd339776b5625563a31096f" + "tx_hash": "ca984e1c241544b6f31e19c14d20e5efd0debf892bfbafd2a28b28d2038e63a1" }, { - "tx_hash": "07f79a857c031b673fbc182e7e7ccdc3dc7d77856cf171f233cc03a53dd7e879" + "tx_hash": "72560f6e6eec11a4f53b7f74031af765f9b1deb741233b1b35f65e71708d08cf" }, { - "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788" + "tx_hash": "debec5835c3468f990c727fc488916f0a1ee2c325d1a194f20c5ab33fc23bfe0" }, { - "tx_hash": "59149addbd50a4696652bd1992a028a544b0d80b1ba1cdc8719a03c87bf3ddbe" + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed" }, { - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" + "tx_hash": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8" } ], "next_cursor": null, @@ -16039,7 +16110,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809` (str, required) - The address to search for. + + address: `bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk` (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. @@ -16052,8 +16123,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 4, - "tx_hash": "f589724d4e5d8dc8de7c8efb4df0522c252bc84f24dfe42326879d6cb9d8faa6" + "block_index": 3, + "tx_hash": "00847d1ad84b2f71b5aaa302753fdd45998f1b584a28daa0611d289b1c683357" } } ``` @@ -16063,7 +16134,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l` (str, required) - The address to search for + + address: `bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp` (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 @@ -16078,13 +16149,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab" + }, { "vout": 1, "height": 202, "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3" + "txid": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066" }, { "vout": 1, @@ -16092,15 +16171,7 @@ Returns a list of unspent outputs for a specific address "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" - }, - { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e" + "txid": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5" } ], "next_cursor": null, @@ -16113,7 +16184,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349` (str, required) - Address to get pubkey for. + + address: `bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa` (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. @@ -16125,7 +16196,7 @@ Get pubkey for an address. ``` { - "result": "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" + "result": "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430" } ``` @@ -16134,7 +16205,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f` (str, required) - The transaction hash + + tx_hash: `9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc` (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. @@ -16146,7 +16217,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101ab1955de714f10735a3a900a93c87e67f40377ba77150cae8cefb4ba3a3361f60100000000ffffffff03e803000000000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74500000000000000000c6a0a6ecc7cee261673ed77abeb140927010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb60247304402200b94ed5c6dd6b3ded51ef7e95c4391bd9b6d7d23fc38e066ef2b26ee6a24aab50220561dcc8ae2033ae8faf2b55c550cd087a99132df468ee03e3c1746ebb081057f01210289358286deb0840210e8ebab29063bd08bc4e67b6cd9304f46df9fdfc1d0d9bb00000000" + "result": "02000000000101c304e164036e83521078d219d266c9cde141e8eb9aa0557ed20de8e57ac623c00100000000ffffffff03e803000000000000160014594f55ced439faf816badf7ad2612e16657f5e2a00000000000000000c6a0a60e02bbc04e18a144d50eb1409270100000016001461b67a115608596e3ce7b315bd2d9e35c739cc4802473044022011392fd55c4ef295fbeabd50d4033478e4aa30d21334b35522bff66a34ddaa0602207f78fbd8761af931c53e7835583946f1bd815d9dc7a61034a4719858fcbe05f201210297267f553fe9ebdce6ef38386a681ee8d0e34b7fe58d5d68d5a27c3ceecb9e4700000000" } ``` @@ -16241,27 +16312,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79 }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "quantity": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, "asset_info": { "divisible": true, @@ -16272,22 +16343,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -16297,22 +16368,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "block_index": 211, - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -16322,30 +16393,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730467857.2218225, + "block_time": 1730732596.4768202, "btc_amount": 0, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "destination": "", "fee": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, - "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", + "utxos_info": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -16359,7 +16430,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -16390,19 +16461,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -16412,7 +16483,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -16425,7 +16496,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f` (str, required) - The hash of the transaction to return + + tx_hash: `a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a` (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 @@ -16445,27 +16516,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79 }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "quantity": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, "asset_info": { "divisible": true, @@ -16476,22 +16547,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -16501,22 +16572,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "block_index": 211, - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -16526,30 +16597,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730467857.2218225, + "block_time": 1730732596.4768202, "btc_amount": 0, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "destination": "", "fee": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, - "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", + "utxos_info": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -16563,7 +16634,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index daaf1c1627..4810291c9e 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -1001,9 +1001,18 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_ if ( ( - source and (data or destination == config.UNSPENDABLE or dispensers_outs) - ) # counterparty tx - or (utxos_info[0] != "" and utxos_info[1] != "") # utxo move + source + and (data or destination == config.UNSPENDABLE or dispensers_outs) # counterparty tx + ) + or ( + utxos_info[0] != "" + and util.enabled("spend_utxo_to_detach") # utxo move or detach with a single OP_RETURN + ) + or ( + utxos_info[0] != "" + and utxos_info[1] != "" + and not util.enabled("spend_utxo_to_detach") # utxo move + ) ): transaction_bindings = { "tx_index": tx_index, diff --git a/counterparty-core/counterpartycore/lib/messages/detach.py b/counterparty-core/counterpartycore/lib/messages/detach.py index fb73200a53..18409b3b61 100644 --- a/counterparty-core/counterpartycore/lib/messages/detach.py +++ b/counterparty-core/counterpartycore/lib/messages/detach.py @@ -58,7 +58,7 @@ def unpack(message, return_dict=False): raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e -def detach_assets(db, tx, source, destination): +def detach_assets(db, tx, source, destination=None): problems = validate(source) status = "valid" @@ -84,15 +84,14 @@ def detach_assets(db, tx, source, destination): # debit asset from source and credit to recipient action = "detach from utxo" + # determine the destination detach_destination = destination - # check if destination is an address if detach_destination is not None: try: script.validate(detach_destination) except Exception: # let's catch all exceptions here detach_destination = None - # if no destination is provided, we credit the asset to utxo_address if detach_destination is None: detach_destination = balance["utxo_address"] @@ -130,10 +129,9 @@ def detach_assets(db, tx, source, destination): ledger.insert_record(db, "sends", bindings, "DETACH_FROM_UTXO") logger.info( - "Detach assets from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]", + "Detach assets from %(source)s (%(tx_hash)s) [%(status)s]", { "source": source, - "destination": detach_destination, "tx_hash": tx["tx_hash"], "status": status, }, diff --git a/counterparty-core/counterpartycore/lib/messages/move.py b/counterparty-core/counterpartycore/lib/messages/move.py index 8700974a42..34c34a52ee 100644 --- a/counterparty-core/counterpartycore/lib/messages/move.py +++ b/counterparty-core/counterpartycore/lib/messages/move.py @@ -1,6 +1,7 @@ import logging from counterpartycore.lib import config, exceptions, ledger, script, util +from counterpartycore.lib.messages.detach import detach_assets logger = logging.getLogger(config.LOGGER_NAME) @@ -20,6 +21,55 @@ def compose(db, source, destination): return (source, [(destination, None)], None) +def move_balances(db, tx, source, destination): + action = "utxo move" + msg_index = ledger.get_send_msg_index(db, tx["tx_hash"]) + balances = ledger.get_utxo_balances(db, source) + for balance in balances: + if balance["quantity"] == 0: + continue + # debit asset from source + ledger.debit( + db, + source, + balance["asset"], + balance["quantity"], + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + # credit asset to destination + ledger.credit( + db, + destination, + balance["asset"], + balance["quantity"], + tx["tx_index"], + action=action, + event=tx["tx_hash"], + ) + # store the move in the `sends` table + bindings = { + "tx_index": tx["tx_index"], + "tx_hash": tx["tx_hash"], + "block_index": tx["block_index"], + "status": "valid", + "source": source, + "destination": destination, + "asset": balance["asset"], + "quantity": balance["quantity"], + "msg_index": msg_index, + } + + ledger.insert_record(db, "sends", bindings, "UTXO_MOVE") + msg_index += 1 + + # log the move + logger.info( + f"Move {balance['asset']} from utxo: {source} to utxo: {destination} ({tx['tx_hash']})" + ) + + # call on each transaction def move_assets(db, tx): if "utxos_info" not in tx or not tx["utxos_info"]: @@ -29,56 +79,16 @@ def move_assets(db, tx): tx["utxos_info"] ) - # do nothing if no source or destination - if len(sources) == 0 or not destination: + # do nothing if no vin with attached assets + if len(sources) == 0: return - # we move all assets from the sources to the destination - action = "utxo move" - msg_index = ledger.get_send_msg_index(db, tx["tx_hash"]) - # we move all assets from each source to the destination for source in sources: - balances = ledger.get_utxo_balances(db, source) - for balance in balances: - if balance["quantity"] == 0: - continue - # debit asset from source - ledger.debit( - db, - source, - balance["asset"], - balance["quantity"], - tx["tx_index"], - action=action, - event=tx["tx_hash"], - ) - # credit asset to destination - ledger.credit( - db, - destination, - balance["asset"], - balance["quantity"], - tx["tx_index"], - action=action, - event=tx["tx_hash"], - ) - # store the move in the `sends` table - bindings = { - "tx_index": tx["tx_index"], - "tx_hash": tx["tx_hash"], - "block_index": tx["block_index"], - "status": "valid", - "source": source, - "destination": destination, - "asset": balance["asset"], - "quantity": balance["quantity"], - "msg_index": msg_index, - } - - ledger.insert_record(db, "sends", bindings, "UTXO_MOVE") - msg_index += 1 - - # log the move - logger.info( - f"Move {balance['asset']} from utxo: {source} to utxo: {destination} ({tx['tx_hash']})" - ) + if not destination and util.enabled( + "spend_utxo_to_detach" + ): # one single OP_RETURN output in the transaction + # we detach assets from the source + detach_assets(db, tx, source) + elif destination: + # we move all assets from the source to the destination + move_balances(db, tx, source, destination) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index e6ec4d8a68..a42fd2da8a 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -232,7 +232,7 @@ def construct_coin_selection( source, unconfirmed=allow_unconfirmed_inputs ) logger.trace(f"TX Construct - Unspent UTXOs: {[print_coin(coin) for coin in unspent]}") - if len(unspent) == 0: + if len(unspent) == 0 and force_utxo is None: raise exceptions.BalanceError( f"Insufficient {config.BTC} at address {source}: no unspent outputs." ) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index cd91dd351b..02e924f80e 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": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", "difficulty": 545259519, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", - "block_time": 1730467838, - "previous_block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", + "block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", + "block_time": 1730732578, + "previous_block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", "difficulty": 545259519, - "ledger_hash": "eee6dfd34d392fd1c8fee996f34c341a269ca3cbfd4f49672f0f2264d73e896c", - "txlist_hash": "850374bac6ec2e9540912a6cb9fc20ef7e43e54ea74b6ef5a472cc21c11f1e88", - "messages_hash": "0065dd2b2d9b77d862befd4b4d9dccdb54b6a85385581c55fd3d033abd51b386", + "ledger_hash": "27fe3b2dbd3bdf3cebfa5873c6bd5cb41715377e099514f731d9a134d9484f13", + "txlist_hash": "58a57ea93a48e5dd35726929bb8cf1e09b54b92c232448aaf9a227aa901b41d2", + "messages_hash": "e1dde3b0dff82f963aadefdbc34fecef2c0572df07aaea9a7312bbb41bfb8b0f", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", - "block_time": 1730467834, - "previous_block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", + "block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", + "block_time": 1730732574, + "previous_block_hash": "04b7bdf7b2bd402a370a50d14b555fba6a5af1d9ee6c3bb8a595b3efcb187ac4", "difficulty": 545259519, - "ledger_hash": "086088fee3c96b9155d8811e3cbfa9062de4f0f1546a8b7b17bbfe30ee9b4104", - "txlist_hash": "ae6a9d09edf6ee8be3e38393798d67858cacbd14d254256d5fa7c165d52bef36", - "messages_hash": "4b06c54295b4f5977c726ba1ce6ea87ee48a8eca8dcb812175acc4112cda26ee", + "ledger_hash": "c3f41c59550f4811b2c3fb0fe204e99a845b5723e65fdabe191987f1608617b8", + "txlist_hash": "ce8e1a4c9cc42629c36784e7a045615e799c3c279fd506ee76a591acce4d80c0", + "messages_hash": "d21d084fba0555f69c3f29365bdfb1a54789abbb0bffdee3788d95eef2d5683e", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", - "block_time": 1730467820, - "previous_block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", + "block_hash": "04b7bdf7b2bd402a370a50d14b555fba6a5af1d9ee6c3bb8a595b3efcb187ac4", + "block_time": 1730732570, + "previous_block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", "difficulty": 545259519, - "ledger_hash": "05347cfbbe2cc0f07c5e825f263380a619597d89fd898f8494b5bbd844ee0be8", - "txlist_hash": "efa3534f026baafdd04c9b1b14082f801e2a333b85ad459c0d13ee965ea843dc", - "messages_hash": "bde518a8b0bb2c5061b280095c037bf7894ad17ea3772a2303dd733f05575a93", + "ledger_hash": "ed0c071bb57ca6517eb3024de5a0b9e748f3412c6e5a24d55e19364ffe483cd7", + "txlist_hash": "dbf632edcde6b0b097a6f0dfb04322ec4c88d749d2dd3f865e45b2b5f0bb0a3d", + "messages_hash": "9fe7f32c4eb3b8a7238d5c56c16fb0d94cb23d2fbfb7ae9b83dc2457b6d23469", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", - "block_time": 1730467817, - "previous_block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", + "block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", + "block_time": 1730732567, + "previous_block_hash": "2ce784f94dac668a5c02fd7401f415ddb9613ec7ee5bba0bdde990194ef0a580", "difficulty": 545259519, - "ledger_hash": "98c1b25ea18df135ca9a6215b4b4fa948a4f1e25db26b94e353d81825c18b826", - "txlist_hash": "e49fb8e2a353a8239a32595a4695c95f375570221c88590d6ecc65961c3316ec", - "messages_hash": "ac056f5c8e6fbf9a39809ebf3ec12daafb6faaa1e9f094a41a331a60f7ab98f2", + "ledger_hash": "0c490f3781ee8f107e03a25523a743c9eb5b53e55646d09b0e6980d91c2618dc", + "txlist_hash": "d5becc986c494a63c12143ca2692d070cd1a7b5c79bfc1eba47b6b84b7d461ba", + "messages_hash": "d81268600f60cfb738275c6fe382229cbf45c7808caa4d5f6f61158f9dfc0730", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", "difficulty": 545259519, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", "difficulty": 545259519, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 704, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 703, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" } ], "next_cursor": 701, @@ -256,16 +256,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 700, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" }, { "event_index": 697, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f" + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "object_id": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "block_index": 211, "confirmed": true, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "offer_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "status": "valid", "confirmed": true, - "block_time": 1730467749 + "block_time": 1730732476 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "block_index": 196, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730467760, + "block_time": 1730732487, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 77, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8", - "block_time": 1730467838, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f", + "block_time": 1730732578, + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa:1 2 ", + "utxos_info": " 073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, @@ -816,18 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f7cd7011fc34e7d272fa4053932264324a3f15635a72aa0715e41f4f4cdcee71", + "hash": "de0fcff3d7f489f4f3ed94f0339030927dbab679f3ce9fa962d6be1d20f93c19", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "3da87b50b7a7f306b9fb273b9f293295b9fe32fb30b615712a5d71fb87b86af6", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "139ccb8bd010d4e79b328ada06301838329a25d4bc1899509051434d98d2bd6b", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "6300b44b971f133d329dc6ec748e7d57325817cd686f542507c0c83036e977fd", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "cb9fc7c9ee3e52e89c782154d382055cd1fbd6b9666570ed9a07f10ea3ec6c20", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "91188fff2ee34b7e859a2adf6557ddbdc453a72344bb9e5cfdca29769550241c", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,57 +871,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a2eea47ddf94a798f7056334763aa0b879449f54bc413b523e37d39fe1c9ee112c80ba8cad214800790686530ca0300" + "value": 1000, + "script_pub_key": "51210353c0246c3ff80d1dd8e6719e6ac76f493fcd7be16280dc2f5dbccc3678d153452102e7d1fe08284d13db17b2bbbe43e3511a2dd278a28cc614c83d41e938096c4b5d2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae" + }, + { + "value": 1000, + "script_pub_key": "51210253c0246c3ff80d1dd8ac23e3ef4d706aaa949e6f2c7c86e8675db71294ad86d92102f71e7e4ed5122f28b41791a99483bb16a2b88fb6053b5225c8da82baa67fe6e72102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae" }, { - "value": 4999990000, - "script_pub_key": "00147b5d66ec4d5936b8c7c77a4145f58847067ecd21" + "value": 1000, + "script_pub_key": "51210372c0246c3ff80d1dd8e5719deaef9939eaabad6f635a92c30c733f0b9469527c2103f71e7e4ed5122f02a1a2041c2849bb16a2b88fb60531d748adb7ed89267fe6eb2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014a9602ee1f70d2fcf144fdc88907549c8513e45b9" } ], "vtxinwit": [ - "30440220466710a50a050a8e1fa896307f609a9a5a497996c3fdd00ca099d7d1775e246a0220222a5692d2dfaaaa960195ff574e9c6d68a386a9154a6782262a4648aa5a05a801", - "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" + "304402203697609f975e7e4de5b2d7f8b22304caceb2f2d8034c64d448dde1d6d90afe7a0220660328072f0126587054cad833af3fa892f56d08fc57e4470c1a25ad9fd997e501", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402202d0bd6c97ef200037392649fb33c88760beeecc7983f4a4079379cb330b104df0220359f6b6a9da03e13295eafd4f4ef363f43c7733738fd761b0946eeeae425b18601", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402202b2ea56710a96195e759814480b71df3aacf179b17df04a4a5574d79a52413ab0220582ae83397f667997900d0d3bfd508db5cab93f59351c81c26f8acf00459c4e401", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402201e1c3d2726e9b14f40213ca657208a8c329fafbacb3dad9b588e7a68bda1ecdf0220494f5256afb9bde98235541acf912e7238996fef2dae4152ff3167de73c89bb001", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402207f38d042f6ebfb421d8dd5f57d6a9631f2bdcba5140793f26e62a96c7109c31f02201b981a12c0711d13491b61d91ec6a3ed907a573c48ab71da1001a3eb6f7a6c9801", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430", + "304402201e8935fd832415356139015e01c155adecdf25f25a4c3f1ff4ea276e8ad836df02205b593b28fbffaf0ca14070d809dbf829336f907d637f3088b89f6c1ffa1c86de01", + "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430" ], "lock_time": 0, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", - "tx_id": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a" + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", + "tx_id": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc" }, "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "divisible": true, - "locked": false + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "quantity_normalized": "0.00001000" - } + { + "asset": "XCP", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "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": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "54bf40ce30cedfd9c43891e9ed0c3674d854bf22dcb7355a58de63a50aceec90", + "hash": "7836ae1025bad08f978c7fbe398f8a0c7dd57608df8f9840c76f3cf62bbb5272", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -896,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e6581a03b433acc9291f65c937fb43dab4b6327724271fcfab2457ed3faca0de68e0dd689157e573e52a1c666580c" + "script_pub_key": "6a2e238700e5a62e1a0a8c20c1b197d13053cba00d775aecb44b6c05f2b4a1743db86f01a172c33d11c5096de506a10b" }, { "value": 4949930546, - "script_pub_key": "00143804ff7a0e2bf5a70d78cefd6a14ce1832620ee8" + "script_pub_key": "001490f604b12f13ad49527e05a26953403f33004f26" } ], "vtxinwit": [ - "3044022033b60c137ebb5a8677b52b67c98d7a1f0699779f198dcd4b50037a7c45f0135f02200b371aebb00c31e96968c4dfc3cfe996c0318d0c84b732d6020262e69d6d4f1701", - "039e1e579d9d1091c7d465062ee0035661af55cd112de71e5194144d43ca628056" + "30440220643a24349e263985c3ca89a195a49f97c3eaf1fc95b3a009e865292dda0a73ff022014e6c272a1b1e7cff4525a34813be4996fbab3de5bca348c6bd0d69b8435f44501", + "03d81422531867f53e6a0749f21ddc7e66291f8977217618750df99b4ad32dd1c7" ], "lock_time": 0, - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", - "tx_id": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f" + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", + "tx_id": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -917,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -944,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -969,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", - "block_time": 1730467853, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", + "block_time": 1730732593, + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -998,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 704, @@ -1012,14 +1083,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1030,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 703, @@ -1041,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -1053,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1080,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 701, @@ -1090,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "msg_index": 1, "quantity": 2000000000, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", "status": "valid", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1107,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 700, @@ -1122,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 704, @@ -1136,14 +1207,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1154,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 703, @@ -1165,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -1177,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1204,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 701, @@ -1214,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "msg_index": 1, "quantity": 2000000000, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", "status": "valid", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1231,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 700, @@ -1243,10 +1314,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1254,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1267,10 +1338,10 @@ }, { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1278,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1298,27 +1369,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1333,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1354,16 +1425,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1373,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 700, @@ -1385,12 +1456,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1400,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 697, @@ -1412,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": null, @@ -1441,16 +1512,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1460,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 700, @@ -1472,12 +1543,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -1487,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 697, @@ -1499,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": null, @@ -1529,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1539,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1550,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1560,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1571,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1581,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1592,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1602,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1613,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1623,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1634,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1644,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1658,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_hash": "5b586e04534d0ff5372451f94c84a8b8ba8ebecf3a90071a90efe0706b4d8d5b", - "block_time": 1730467834, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "block_hash": "72c9e4557e1559750534d66544fe885d006e5f3c36859bcad4273b8343efac35", + "block_time": 1730732574, + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a9602ee1f70d2fcf144fdc88907549c8513e45b98046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75:0 4 ", + "utxos_info": " 596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1676,14 +1747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1691,7 +1762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1710,17 +1781,17 @@ }, { "tx_index": 75, - "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "tx_hash": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "block_index": 208, - "block_hash": "7c19757145046fbe9a6f79005db969f5a08c557c00304423f34bf0b024153abf", - "block_time": 1730467820, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "block_hash": "04b7bdf7b2bd402a370a50d14b555fba6a5af1d9ee6c3bb8a595b3efcb187ac4", + "block_time": 1730732570, + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b5d66ec4d5936b8c7c77a4145f58847067ecd2180f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a9602ee1f70d2fcf144fdc88907549c8513e45b98046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f26c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379:0 4 ", + "utxos_info": " 188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1728,14 +1799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1743,7 +1814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1762,17 +1833,17 @@ }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", - "block_time": 1730467817, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", + "block_time": 1730732567, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", + "utxos_info": " 297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1780,14 +1851,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1795,7 +1866,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1814,17 +1885,17 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", - "block_time": 1730467813, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ce784f94dac668a5c02fd7401f415ddb9613ec7ee5bba0bdde990194ef0a580", + "block_time": 1730732562, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", + "utxos_info": " a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1832,14 +1903,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1847,7 +1918,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1866,17 +1937,17 @@ }, { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", - "block_time": 1730467808, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "4fd2b9ce32872888cb102b5d43eaa934916efd49de36b774fd12527d1def5ddb", + "block_time": 1730732549, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "02000000178d82231300000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "supported": true, - "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", + "utxos_info": " 011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1884,12 +1955,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -1914,20 +1985,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "tx0_index": 60, - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx1_index": 55, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -1946,38 +2017,38 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 683, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "block_time": 1730467838 + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "block_time": 1730732578 }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730467838, + "block_time": 1730732578, "asset_info": { "divisible": true, "asset_longname": null, @@ -1987,9 +2058,9 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 675, @@ -1997,15 +2068,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -2015,9 +2086,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_time": 1730467834 + "block_time": 1730732574 } ], "next_cursor": 674, @@ -2026,17 +2097,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "quantity": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, "asset_info": { "divisible": true, @@ -2047,22 +2118,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2072,22 +2143,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "block_index": 211, - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -2097,30 +2168,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730467857.2218225, + "block_time": 1730732596.4768202, "btc_amount": 0, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "destination": "", "fee": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, - "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", + "utxos_info": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -2134,7 +2205,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -2143,7 +2214,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2151,14 +2222,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2166,14 +2237,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2181,14 +2252,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2203,7 +2274,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2211,7 +2282,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2224,7 +2295,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2246,16 +2317,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "asset_info": { "divisible": true, "asset_longname": null, @@ -2267,16 +2338,16 @@ }, { "block_index": 209, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "event": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -2288,16 +2359,16 @@ }, { "block_index": 208, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "event": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -2309,16 +2380,16 @@ }, { "block_index": 208, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -2330,20 +2401,20 @@ }, { "block_index": 204, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "event": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2357,16 +2428,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "event": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -2378,20 +2449,20 @@ }, { "block_index": 207, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "event": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2399,16 +2470,16 @@ }, { "block_index": 206, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "event": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -2420,20 +2491,20 @@ }, { "block_index": 206, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "event": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2441,20 +2512,20 @@ }, { "block_index": 205, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "event": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467808, + "block_time": 1730732549, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2473,9 +2544,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", + "tx_hash": "3065a7508aaf5464a10de3a984602a765e4e187c4fe24ffdad2025d144e1e6e3", "block_index": 137, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2483,7 +2554,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467528, + "block_time": 1730732230, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2494,14 +2565,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "178b61a7bde77db3739e77f7645385820701a229bc4ccb7d866539a1c661881b", + "tx_hash": "96a00b22f7b72a0a1b630723413246350221d9fd3ea875a1390e9a9ce37d08c3", "block_index": 112, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730467433, + "block_time": 1730732127, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2513,10 +2584,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2524,7 +2595,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -2537,10 +2608,10 @@ }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2548,11 +2619,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2561,10 +2632,10 @@ }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2572,11 +2643,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2585,10 +2656,10 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2596,7 +2667,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -2609,10 +2680,10 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2620,11 +2691,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2639,10 +2710,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "cf4df6f34c771bb7959594ec24d7f9747ee07371aca968c7319de88315cae6bf", + "tx_hash": "26ffcaed575fe40ba5909310b94b3f1d7dacd604e7cd07bf7b1b7f65fd4633de", "block_index": 151, - "source": "61f12f3be611720b02fe9a4203129a55a089cb571654679ef47e9165da800be6:0", - "destination": "bcrt1q9luq6xn4jwcuhkq8tlzm262qa8zvmsugkw3207", + "source": "01ffe6c623facf7f2a9fabcce8a7327a58a6068ec966487cd2de9fe9f793a695:0", + "destination": "bcrt1qpyfeeezs9e97krvkkdn6pwun3r8053ygyhghmm", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2650,11 +2721,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467589, + "block_time": 1730732284, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2669,10 +2740,10 @@ "result": [ { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2680,11 +2751,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2693,10 +2764,10 @@ }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2704,11 +2775,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2717,10 +2788,10 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2728,11 +2799,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2741,10 +2812,10 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2752,11 +2823,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2765,10 +2836,10 @@ }, { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2776,11 +2847,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467808, + "block_time": 1730732549, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2800,9 +2871,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2811,7 +2882,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2821,7 +2892,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -2837,9 +2908,9 @@ }, { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2848,7 +2919,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2858,11 +2929,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2879,9 +2950,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2890,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2900,7 +2971,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -2920,19 +2991,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", + "tx_hash": "869cbf7fad44312a8e161b7287467cee0cb6b0892180d6c4805c865c40dac5d1", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "dispenser_tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2940,7 +3011,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2955,11 +3026,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -2969,19 +3040,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2989,7 +3060,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3004,7 +3075,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -3018,19 +3089,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3038,7 +3109,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3053,7 +3124,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -3073,19 +3144,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", + "tx_hash": "869cbf7fad44312a8e161b7287467cee0cb6b0892180d6c4805c865c40dac5d1", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "dispenser_tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3093,7 +3164,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3108,11 +3179,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -3122,19 +3193,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3142,7 +3213,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3157,7 +3228,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -3171,19 +3242,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3191,7 +3262,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3206,7 +3277,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -3226,19 +3297,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3246,7 +3317,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3261,7 +3332,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -3275,19 +3346,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3295,7 +3366,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3310,7 +3381,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -3330,19 +3401,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3350,7 +3421,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3365,7 +3436,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -3379,19 +3450,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3399,7 +3470,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3414,7 +3485,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -3433,16 +3504,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -3453,14 +3524,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -3475,20 +3546,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", + "tx_hash": "a2c47311a6be8bd375bbcbffbf9c299c2b58dfe8c3636ff61d5b453266db5c6d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -3503,20 +3574,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467637, + "block_time": 1730732346, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", + "tx_hash": "564f3ffd7b8be3efee2f5b6e27f26307dc373bf52388175a9aa79b0b41e71167", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -3531,20 +3602,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730467634, + "block_time": 1730732342, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", + "tx_hash": "e4161b580092fac2712c970e138b38c97a6ecd8c542152f8509e8db315a9e8b5", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -3559,20 +3630,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467621, + "block_time": 1730732337, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "2c8c7f352a2ae38fe40e10dae18fa762073de3b0decf2ac8d8bd8691b534ece9", + "tx_hash": "3643047ff07e7ffb5477c3481c05161ba5a2b8f7646344e080fd3f22a0202ae7", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -3587,7 +3658,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467617, + "block_time": 1730732324, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3601,8 +3672,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -3610,16 +3681,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -3627,16 +3698,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -3644,16 +3715,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 40, @@ -3661,16 +3732,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730467522, - "last_issuance_block_time": 1730467525, + "first_issuance_block_time": 1730732222, + "last_issuance_block_time": 1730732226, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 19, @@ -3678,8 +3749,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730467506, - "last_issuance_block_time": 1730467517, + "first_issuance_block_time": 1730732196, + "last_issuance_block_time": 1730732217, "supply_normalized": "0.00000019" } ], @@ -3692,8 +3763,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -3701,16 +3772,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -3718,16 +3789,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -3735,16 +3806,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 40, @@ -3752,16 +3823,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730467522, - "last_issuance_block_time": 1730467525, + "first_issuance_block_time": 1730732222, + "last_issuance_block_time": 1730732226, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 19, @@ -3769,8 +3840,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730467506, - "last_issuance_block_time": 1730467517, + "first_issuance_block_time": 1730732196, + "last_issuance_block_time": 1730732217, "supply_normalized": "0.00000019" } ], @@ -3783,8 +3854,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -3792,16 +3863,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -3809,16 +3880,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -3826,16 +3897,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 40, @@ -3843,16 +3914,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730467522, - "last_issuance_block_time": 1730467525, + "first_issuance_block_time": 1730732222, + "last_issuance_block_time": 1730732226, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 19, @@ -3860,8 +3931,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730467506, - "last_issuance_block_time": 1730467517, + "first_issuance_block_time": 1730732196, + "last_issuance_block_time": 1730732217, "supply_normalized": "0.00000019" } ], @@ -3872,17 +3943,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "block_hash": "3b09a3625cfd3253e800c8130a3d3f743401c783e3305b09d28f85414321004d", - "block_time": 1730467817, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ba3a2b50b636cc9dc487ded0e4eabccae6682a6da00977b574b0c36c9210957", + "block_time": 1730732567, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13:0 4 ", + "utxos_info": " 297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3890,14 +3961,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -3905,7 +3976,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3924,17 +3995,17 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "block_hash": "280077085d392a52ff6aa529e782587d485bf096a175ed24219ac07a87571444", - "block_time": 1730467813, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "2ce784f94dac668a5c02fd7401f415ddb9613ec7ee5bba0bdde990194ef0a580", + "block_time": 1730732562, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eed8f24fbe533f031f29ff29ebd346b54e59a0080f396f379e24c54ff819a80c63a16a283ade191b1803804ff7a0e2bf5a70d78cefd6a14ce1832620ee888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380287670d566d68e01da1ac73ae4984464b80110cf8046fd5f3cd9b610bfa26baaea0c8f6af71489f7c38090f604b12f13ad49527e05a26953403f33004f2688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271:0 4 ", + "utxos_info": " a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3942,14 +4013,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -3957,7 +4028,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3976,17 +4047,17 @@ }, { "tx_index": 72, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_hash": "0f6a16d94dead6ebace814e4b8948438bf8c2761017e7545c74abf97b435edd3", - "block_time": 1730467808, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "4fd2b9ce32872888cb102b5d43eaa934916efd49de36b774fd12527d1def5ddb", + "block_time": 1730732549, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "02000000178d82231300000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "supported": true, - "utxos_info": " e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a:1 2 ", + "utxos_info": " 011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3994,12 +4065,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4010,17 +4081,17 @@ }, { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_hash": "5761b45953c102d88bacbff89b100e0cedc8633cf4e3898df6ec0b8af0b756e8", - "block_time": 1730467805, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "21bc678f1bda1552ccfb6fdbde57b8afb35f02c7ea8a9c1bb9830b846b9b2673", + "block_time": 1730732535, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37:1 2 ", + "utxos_info": " 1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4045,17 +4116,17 @@ }, { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 197, - "block_hash": "3df978603809c284f596cad79af1c555c40a75b36a8d8cd875a32e53ee715708", - "block_time": 1730467763, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "block_hash": "3878bf3d815bf87cb59a54a83d7bf756080081a42ac9691ed08d1021359f480c", + "block_time": 1730732492, + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53:1 2 ", + "utxos_info": " 7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4072,7 +4143,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4090,20 +4161,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4125,9 +4196,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4142,7 +4213,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4168,9 +4239,9 @@ }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4185,7 +4256,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4211,9 +4282,9 @@ }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4228,7 +4299,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4254,9 +4325,9 @@ }, { "tx_index": 60, - "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "block_index": 210, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4271,7 +4342,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4302,10 +4373,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4330,7 +4401,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4339,10 +4410,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4367,7 +4438,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730467522, + "block_time": 1730732222, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4379,10 +4450,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4407,7 +4478,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730467506, + "block_time": 1730732196, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4419,10 +4490,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4447,7 +4518,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730467503, + "block_time": 1730732191, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4459,10 +4530,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4487,7 +4558,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4505,22 +4576,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4529,22 +4600,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", + "tx_hash": "6e388fae3b73e1e6060a8d3ee92e0b6a88a386d76c0d4be3ff737c3f25d7a087", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467517, + "block_time": 1730732217, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4553,22 +4624,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", + "tx_hash": "f14571bf3bb7cdd8317c1392e844213fbed36356eb193ac0fdeb6318999f50d6", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467513, + "block_time": 1730732203, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4577,22 +4648,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", + "tx_hash": "4595474922c82b36cfa3087ba618db43caac4d8449925561370a703572db1982", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467510, + "block_time": 1730732200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4601,22 +4672,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "03b0ed1544e4aa249d8b16e104e1c1eb0653bac0f901cf3334b756341939e97c", + "tx_hash": "aa47a431cbda6640b5e7b369dc747e89dd1308d6626616486023527d0db54eaa", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467491, + "block_time": 1730732180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4625,22 +4696,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4655,22 +4726,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4687,8 +4758,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset_info": { "divisible": true, "asset_longname": null, @@ -4701,12 +4772,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4722,7 +4793,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4734,7 +4805,7 @@ "btc_out": 0, "btc_change": 4999985794, "btc_fee": 14206, - "rawtransaction": "0200000000010140e8cddf1d6192b956db2a16b360a5440c86b04a0b6cab4a21f5094b6985b0cb000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0200000000000000002b6a29d04e3af24f09e16bb551e2704631a454d2ceef5ca9fb90e463289e34e913a61903117c2a5a2772527d82ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001017793c6ec866ddb3d33f4529e58556f0962ab260bb873e166c0a9aa1ed881bd0600000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff0200000000000000002b6a297866d0945893a100af1a606e2fb290d3d1ec5559fc3757ff6f96a3c10d831b9ae141a212dbab43042082ba052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4752,23 +4823,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "order_match_id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b" }, "name": "btcpay", - "data": "434e5452505254590ba51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "data": "434e5452505254590b375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980919, "btc_fee": 18081, - "rawtransaction": "0200000000010166305b107998052c191eb345539a43a9b5de3804784ede4ea605d1bdbcb8396a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e8030000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2100000000000000004b6a499f4b097f41297c59e1b386bdc9781a9a7df3333d64b814f3aef235cb9d52c0235e7ef370afd6fbdef9c42a8710b52f8985ab9921de925efc29c9d53f143ae99809c19eff19e8e4638b77a7052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001015f050e6a5fc626122fb3a21e47f1dfe001af428202d2f563d2ae8dc82c60a7e200000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff03e803000000000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b900000000000000004b6a49dbc6c87a7ca3524d3911f78f7fd3b86d31b683f9aab0bc54f27e2743cbe9a87a6168da75cb9fc1f1637a806c699a5fbefabc21b0fbbe573c40d3e8df56b9a3a054e3c6bbe6d15916ca77a7052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "order_match_id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "order_match_id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "status": "valid" } } @@ -4777,7 +4848,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 1000, "overburn": false }, @@ -4787,27 +4858,27 @@ "btc_out": 1000, "btc_change": 4999985792, "btc_fee": 13208, - "rawtransaction": "02000000000101c1b89134bd97a9a83406cdb3e0f475cc1a8036025116ee901be0cce20789059e000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000" + "rawtransaction": "02000000000101e799fe6adb1bc0fc629dc21d3e0e90240bc1a802d641756c9d367bb3d726953400000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac80ba052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "offer_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5" }, "name": "cancel", - "data": "434e545250525459465c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "data": "434e54525052545946073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904702, "btc_fee": 14206, - "rawtransaction": "02000000000101aacd0e5e1a8c7844b8fd3696e7ad74b3c087eda84c2e6010eb2f6ad655242b5c01000000160014ffdebde14127aa2af866de83c22853593005affdffffffff0200000000000000002b6a29cebf0919789d028d5ee2cd0d3f1b710e1aedfa2e1edfb96b79a0015c062b14f8e80d69cdbc9b54cc053e8d092701000000160014ffdebde14127aa2af866de83c22853593005affd02000000000000", + "rawtransaction": "02000000000101d52586802b79ab8c4beb46b3ba0f2567f0efaaef6f43b50e745daf6c2017390701000000160014584e1ea5fc0aeabce15e26a346b4ea478f4a59c1ffffffff0200000000000000002b6a29410598c329133c5fc9712847a70670b1c236ec78fd2d3d3eff200d6e78f279871a1fa9e7c427df3cbc3e8d092701000000160014584e1ea5fc0aeabce15e26a346b4ea478f4a59c102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "offer_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "status": "valid" } } @@ -4816,7 +4887,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4835,7 +4906,7 @@ "btc_out": 0, "btc_change": 4999986322, "btc_fee": 13678, - "rawtransaction": "02000000000101a22e4a67053a5acb3c5f25f59e8e6f6b128a3fec54cb0f7d411cc3fe8f73102c000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000226a204d1e3208656909dc4f1be80ae78ff6a20740e2f11895e0d403e958b2cf10d19992bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001012aeb97bd2bde0d130ff9d0e7cefbffc3cd4634d83525706b49f0aab37a64af3300000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000226a2077fa8e3028338ba0e837dd1fd1dd3855bf73fd0c0ed56b626f09407b8a7198dd92bc052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4851,7 +4922,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4875,7 +4946,7 @@ "btc_out": 0, "btc_change": 4949859634, "btc_fee": 14265, - "rawtransaction": "020000000001017f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed245020000001600149d89a2518adb0281244890afd1bb4d3c931f5eb6ffffffff0200000000000000002c6a2ad4eaec308d80109a59b3eb126bbd6ff1141b6fb1272adff767b15917530ce1a01688998925181d9f011732dd0827010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb602000000000000", + "rawtransaction": "02000000000101fc992ca3c9ecc5263706b8ea30730ba2a1aeadeb6097e9df77662cd470e5f49b0200000016001461b67a115608596e3ce7b315bd2d9e35c739cc48ffffffff0200000000000000002c6a2a5cd26ed2bf4f7e9aab96d1741f5bbe65176e6a5911dbb199168f461c8bc7a28e3c3c71788ae45256e29932dd08270100000016001461b67a115608596e3ce7b315bd2d9e35c739cc4802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4897,14 +4968,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -4923,7 +4994,7 @@ "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001014ce71077ec6979d2233ea2f42f40f3030160fea575471f3e50248ce9871a84c7000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21f9c587fc44eecabb0116eefe92439787a373cd264f47001cc215a8cb3f8417ad4757bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101fc50e55276da9b8be953dc00c22bcb396a30e103bd11765b4009ea956e97202c00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000236a218c84a0971e12f8ba357dd9080295053092bd9f59f8f34398c21ad0720162a6a9c157bc052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4940,10 +5011,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "transfer_destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "lock": false, "reset": false, @@ -4956,7 +5027,7 @@ "btc_out": 546, "btc_change": 4999983721, "btc_fee": 15733, - "rawtransaction": "0200000000010154bbe92f15fe2191e819cc15a2030368be7e0eacf5d56dcbb2f671576473791a000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000236a213aed3bdfb776968c28a7c1dddcf10ec68b3ee1abbf0c2ccf8f428518f3e1128a2e69b2052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101d980e2842bca2cf0a5a5cfd9bb7932d068b4a714842d1607a1cbbe323cdce2b900000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff032202000000000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b90000000000000000236a21af52ce07c22051e0063252c344fd3e963d9c2fdd7377f2d520338eb0940bc5b90269b2052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4981,16 +5052,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", 1 ], [ "MPMASSET", - "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", 2 ] ], @@ -4998,26 +5069,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002807b5d66ec4d5936b8c7c77a4145f58847067ecd21808eed8f24fbe533f031f29ff29ebd346b54e59a0040000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a9602ee1f70d2fcf144fdc88907549c8513e45b980287670d566d68e01da1ac73ae4984464b80110cf40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945400, "btc_fee": 52600, - "rawtransaction": "02000000000104e62d39655be446249fae5886f5197a870347d6a2fd6dc8aea009a120b06675e5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff327da60c579997ac821eafeaf25ac17098196f62c1a951eb461a53d99aebb696000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffffbc13b2a68aba2c8a30e57ba5b1febd8cc3f6278148a30d5fffd32d65301eb026000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff1bcf6696a71ae840f6a72dc83de506fa418249335ae9b1e54ca735aa5ab16dc1000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff03e80300000000000069512102717c7bab9107b2bfb122b0d624d137d2af4a8dd7c492dbdb9b1cbcded1ab6c862103507a72ee53666df8eff94475080382cf4dcde199f53ac46856bb01637e86b7802103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aee803000000000000695121026e7c7bab9107b2bfb1f1b0d4a4aa6ab44323d4e17c551ca1da5d495696ad12f021039d5bf360bee949030acab444fa9c7051f0f98acd10a0c42856bb04801e0e73922103b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c53aeb8f216a8040000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000002000002000002000000000000", + "rawtransaction": "0200000000010470c0583636d5eef9b8bc4cfbd5095733896d3e8a70eb18aa5d4698633ea08b5600000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff133af4afa7731f43fe04ac8a470b35201fc6c536e035118b52f9ab05bf1257f600000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffffe4e1f1ae9abb19747f659a78b317140b765ec56ce23e5a398bf89055fad7128a00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffffed4146c3be58624c986a86c8fa798ca21e2fa61be1c2692cbac242eebc4236d800000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff03e80300000000000069512103466723180c870ea037869be55cb38bb82fcc5de6652e77fa0e90458e6ac557872103adb097a7990d1188f8a6f74277ad6227fd1efee49774cae25c10ebff62373cfa2102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053aee80300000000000069512102596723180c870ea037559be7dc1aeb96ce1f50c9aa3a3826860430c7a294691e2102e809168fef7dc4ee2e28f6986d6a58c3655a9a5c966405a25c10ee1c02bff8752102fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc43053aeb8f216a804000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5029,7 +5100,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5046,7 +5117,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5060,7 +5131,7 @@ "btc_out": 0, "btc_change": 4999985207, "btc_fee": 14793, - "rawtransaction": "02000000000101ae17720f3cf3f073079058d00584fc14dbc1e47fbeec70d3b6de3cdc08ce5b33000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000356a3371b49840dbf78b83e3b3b80c2fa24ac420536e301f01d9aceb0c16e5fc5f13a0e6e64a422d4ab80ac4678f7bb0c833b92af73e37b8052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001012467a1ce0023cafddadf764fcac2b3660162ec63c77ea43c09690f3ac77a468200000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000356a338af0f5d16835995dc31320e11f1d153a16cd6f25a4a4897885faf7e8a1d11d3800a7b6b50655fd40895a25f232224f57432d9137b8052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5082,8 +5153,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5099,19 +5170,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808eed8f24fbe533f031f29ff29ebd346b54e59a00", + "data": "434e54525052545902000000000000000100000000000003e880287670d566d68e01da1ac73ae4984464b80110cf", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985500, "btc_fee": 14500, - "rawtransaction": "02000000000101600b0e48665d1cedd14ede371dc103399ca19f3df573e6407449dfbd4df98094000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000306a2ee0b580fbcba4ec673ca28b0584109f3842c41b0c20b820306a921194d9344adbd0af78ab14a34c38b1b265a6dc635cb9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "0200000000010179ccfd279884cc6b2cef306ac7139e51919c7eae8d30fe24b9727eb289e741cf00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000306a2eca004eb6f1226750dd67e12bb3c851445c8625820abcd660ecb36aea509721899a3f78c786fffbcc4769812440085cb9052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "quantity_normalized": "0.00001000" } @@ -5121,23 +5192,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808eed8f24fbe533f031f29ff29ebd346b54e59a0007ffff", + "data": "434e5452505254590480287670d566d68e01da1ac73ae4984464b80110cf07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986263, "btc_fee": 13737, - "rawtransaction": "020000000001013f0807c2e76fd2c227aaf75a1db4c92c05419ce31b4e1e054b2048d734b05f70000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000236a21948192ee62d62d72d7e567e8a7b01df82b8675d1f5fc43777cf33ce2c85c22f2dd57bc052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001016ecf6206702c50a24daa518f0aaaf074fb2f0d26fa2dc33802059cf6af2c552a00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000236a213601ff5bb3447e21d724ba6d83bae4d815dfb5e9a5dbb08d02565d24520788844b57bc052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "flags": 7, "memo": "ffff" } @@ -5147,8 +5218,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "quantity": 1000 }, "name": "dispense", @@ -5157,7 +5228,7 @@ "btc_out": 1000, "btc_change": 4949812618, "btc_fee": 14382, - "rawtransaction": "02000000000101753ec2e0b3fe2fa5a7a29872d453a16aa9cc55ea7a5ab8ecd0077b1294807d2f030000001600148eed8f24fbe533f031f29ff29ebd346b54e59a00ffffffff03e8030000000000001600143804ff7a0e2bf5a70d78cefd6a14ce1832620ee800000000000000000c6a0a66acea357cf698b28bdd8a250827010000001600148eed8f24fbe533f031f29ff29ebd346b54e59a0002000000000000", + "rawtransaction": "02000000000101664d046415dcbcbfa581970a7833920ad5fcfc0b87f8db8b38a71619378d6c5903000000160014287670d566d68e01da1ac73ae4984464b80110cfffffffff03e80300000000000016001490f604b12f13ad49527e05a26953403f33004f2600000000000000000c6a0a2adc66bb8d2994db32698a25082701000000160014287670d566d68e01da1ac73ae4984464b80110cf02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5170,7 +5241,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5201,7 +5272,7 @@ "btc_out": 0, "btc_change": 4999985441, "btc_fee": 14559, - "rawtransaction": "020000000001015ac4bc4f0b3fd074f065a8c61b8f82222eb08658615544a1fd11c8c29eb25498000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000316a2fe52fc6ea9b48a3e8fbd7fabfef3250a4408bd227abe85790ab89c6510303b58bb8b27816b1e6f3c6d84b321361d2ec21b9052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101c20c80776d129fdc5dd95b51c5669e21870fd4b142890fdc3e7fbf4c5e823f2a00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000316a2f35f6c1840fa20a47545ad0e1e085b1b62de2ab7591ebc915d150dcf7f08fca0566d714edf856255795480f0c5b48f021b9052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5236,13 +5307,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5254,7 +5325,7 @@ "btc_out": 0, "btc_change": 4999987026, "btc_fee": 12974, - "rawtransaction": "02000000000101b9e26ad7824ffa11e584ba3fb819bc61d8e18e67465e4a5a96a5862aab0adfd5000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff020000000000000000166a14ef4caa08595f56e4b7b7780ad102c4022ff2c61f52bf052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "020000000001011948191c7b7e6aaa781925714473d6fe3d1ab794b0f361e7e6a5f7e988246da500000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff020000000000000000166a14007af77a3f70a1014b09c5943c97158b7e3f34f852bf052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5269,7 +5340,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5288,7 +5359,7 @@ "btc_out": 546, "btc_change": 4999984602, "btc_fee": 14852, - "rawtransaction": "02000000000101842872ae8d1210945c44fc94f1ede6be6d68aeb15720e8c11ff074d8ab942a19000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd21ffffffff0322020000000000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd210000000000000000146a12e482f599078d5f30ee2404ad0f681adb0348dab5052a010000001600147b5d66ec4d5936b8c7c77a4145f58847067ecd2102000000000000", + "rawtransaction": "02000000000101a1c3ddbec489d2241a3b601ced72e164cd2c1d8f80f7be903a285c43d792034e00000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b9ffffffff032202000000000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b90000000000000000146a129d1252a3596973a50037ec8976c9cd0864fbdab5052a01000000160014a9602ee1f70d2fcf144fdc88907549c8513e45b902000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5304,21 +5375,21 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" + "source": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa" }, "name": "detach", - "data": "434e545250525459666263727431713064776b646d7a6474796d7433333738306671357461766767757238616e6670356630333439", + "data": "434e545250525459666263727431713439737a616330687035687537397a306d6a7966716132666570676e753364657736736c7161", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945463, "btc_fee": 25537, - "rawtransaction": "020000000001027f049437584852ac9847c4cabcbd8d88e0d79b3641253c137d0cc442614ed24500000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745fffffffff75bf556a9c79ab4698c652107cce983e6f3383a0657bc5c79d5758f9417b22b01000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a745ffffffff020000000000000000376a35d4eaec308d80109a33d188601f8c1ec1716c04d54a50bb80f6dc2d24603bd99398f9acfd446e7af8106558a912fdce604963ba4218772c0a2701000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74502000002000000000000", + "rawtransaction": "02000000000102fc992ca3c9ecc5263706b8ea30730ba2a1aeadeb6097e9df77662cd470e5f49b00000000160014594f55ced439faf816badf7ad2612e16657f5e2affffffffa6d229a9e7b5b1ca7e03337bb6deb29df4f9884aa2736469531c9ec10316c26301000000160014594f55ced439faf816badf7ad2612e16657f5e2affffffff020000000000000000376a355cd26ed2bf4f7e9ac1f4b2066b6acf512f1d103872ebd9eacbe7332bb2bd92e0be451709ebd63433f6fec782bb2f62b56079cab5eb772c0a2701000000160014594f55ced439faf816badf7ad2612e16657f5e2a02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349" + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa" } } } @@ -5329,8 +5400,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -5338,16 +5409,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730467805, - "last_issuance_block_time": 1730467805, + "first_issuance_block_time": 1730732535, + "last_issuance_block_time": 1730732535, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "owner": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "owner": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false, "supply": 100000000000, @@ -5355,16 +5426,16 @@ "first_issuance_block_index": 199, "last_issuance_block_index": 199, "confirmed": true, - "first_issuance_block_time": 1730467772, - "last_issuance_block_time": 1730467772, + "first_issuance_block_time": 1730732499, + "last_issuance_block_time": 1730732499, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -5372,16 +5443,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730467617, - "last_issuance_block_time": 1730467634, + "first_issuance_block_time": 1730732324, + "last_issuance_block_time": 1730732342, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "owner": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "issuer": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "owner": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "divisible": true, "locked": false, "supply": 100000000000, @@ -5389,16 +5460,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730467614, - "last_issuance_block_time": 1730467614, + "first_issuance_block_time": 1730732320, + "last_issuance_block_time": 1730732320, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 100000000000, @@ -5406,8 +5477,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730467578, - "last_issuance_block_time": 1730467578, + "first_issuance_block_time": 1730732272, + "last_issuance_block_time": 1730732272, "supply_normalized": "1000.00000000" } ], @@ -5419,8 +5490,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "owner": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "owner": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false, "supply": 10000000000, @@ -5428,15 +5499,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730467470, - "last_issuance_block_time": 1730467483, + "first_issuance_block_time": 1730732161, + "last_issuance_block_time": 1730732171, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5444,14 +5515,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5459,7 +5530,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5472,7 +5543,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5494,9 +5565,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5511,7 +5582,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5537,9 +5608,9 @@ }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5554,7 +5625,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5580,9 +5651,9 @@ }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5597,7 +5668,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5623,9 +5694,9 @@ }, { "tx_index": 60, - "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "block_index": 210, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5640,7 +5711,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5666,9 +5737,9 @@ }, { "tx_index": 53, - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5683,7 +5754,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5714,13 +5785,13 @@ "/v2/assets//matches": { "result": [ { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5734,7 +5805,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5754,13 +5825,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 53, - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5774,7 +5845,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5794,13 +5865,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "id": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501_a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", "tx0_index": 50, - "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 51, - "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5814,7 +5885,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5834,13 +5905,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5854,7 +5925,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5881,20 +5952,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "event": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5902,20 +5973,20 @@ }, { "block_index": 125, - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", + "event": "1377840a37db84414db1f305f8e7aecb49e7ae78edf718666941607aa40118b6", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5923,20 +5994,20 @@ }, { "block_index": 124, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "event": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5944,20 +6015,20 @@ }, { "block_index": 124, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "event": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5969,16 +6040,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "event": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -5996,12 +6067,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,16 +6084,16 @@ }, { "block_index": 209, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "event": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -6034,16 +6105,16 @@ }, { "block_index": 208, - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "event": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -6055,16 +6126,16 @@ }, { "block_index": 207, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "event": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -6076,16 +6147,16 @@ }, { "block_index": 206, - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "event": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -6108,14 +6179,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", + "tx_hash": "1377840a37db84414db1f305f8e7aecb49e7ae78edf718666941607aa40118b6", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6130,20 +6201,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "tx_hash": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6158,20 +6229,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6186,20 +6257,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -6214,7 +6285,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730467470, + "block_time": 1730732161, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6226,10 +6297,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6237,7 +6308,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -6250,10 +6321,10 @@ }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6261,7 +6332,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -6274,10 +6345,10 @@ }, { "tx_index": 75, - "tx_hash": "c86fd64c3caec168f55b7955e55b0302d0275cced01db97fd836b0510eed4379", + "tx_hash": "188b0210f67520e486f9e2f67179ee15aa4012b69791e55c40f39177b287b698", "block_index": 208, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6285,7 +6356,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "asset_info": { "divisible": true, "asset_longname": null, @@ -6298,10 +6369,10 @@ }, { "tx_index": 74, - "tx_hash": "13ab35691d091b1375f509e14162be99e3d286ad3ab21cca660128cd0e66af13", + "tx_hash": "297f70eec11291d266f483e8a50f5265c57e8d7a6dc21f48720279172f70bcbc", "block_index": 207, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6309,7 +6380,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467817, + "block_time": 1730732567, "asset_info": { "divisible": true, "asset_longname": null, @@ -6322,10 +6393,10 @@ }, { "tx_index": 73, - "tx_hash": "a037fc059e827541898578760a0406640b257a8baad12b7d5fe1c4da494ee271", + "tx_hash": "a828a38bb394e80dc3680d27e98f589e108d07535d74c232db8ad2b392f47abf", "block_index": 206, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6333,7 +6404,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467813, + "block_time": 1730732562, "asset_info": { "divisible": true, "asset_longname": null, @@ -6352,9 +6423,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6363,7 +6434,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6373,7 +6444,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6389,9 +6460,9 @@ }, { "tx_index": 29, - "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", + "tx_hash": "18fee8ce692f7edbd1fff8d7bd1582a7f29c5811fb14ae33524cde1a67e53b14", "block_index": 142, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6400,7 +6471,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "origin": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6410,7 +6481,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467547, + "block_time": 1730732250, "asset_info": { "divisible": true, "asset_longname": null, @@ -6426,9 +6497,9 @@ }, { "tx_index": 30, - "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", + "tx_hash": "9ceb4412b1fa83d71d08560201074c5eb5607558967f9465d47b86261846b117", "block_index": 150, - "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", + "source": "n1FmWDLz3gFfgc61LQinRBgLeyi7EMcXwt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6436,10 +6507,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_hash": "ea9ca7de8f22e820c6af5555f0a01793feda0e2e2c08b8931b4669d4e729db11", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6447,7 +6518,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467586, + "block_time": 1730732280, "asset_info": { "divisible": true, "asset_longname": null, @@ -6463,18 +6534,18 @@ }, { "tx_index": 33, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6484,7 +6555,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -6505,9 +6576,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6516,7 +6587,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6526,7 +6597,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6554,7 +6625,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6562,7 +6633,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6571,7 +6642,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6579,7 +6650,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6588,7 +6659,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6596,7 +6667,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6605,7 +6676,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6620,27 +6691,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6655,7 +6726,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -6669,27 +6740,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", + "tx_hash": "8f08e8ddf4de2e08cf5cab9e240cc6d24e6fdae54c75395d2595afcd34521a90", "block_index": 147, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6704,7 +6775,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467575, + "block_time": 1730732268, "asset_info": { "divisible": true, "asset_longname": null, @@ -6718,19 +6789,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6738,7 +6809,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6753,7 +6824,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -6767,19 +6838,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6787,7 +6858,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6802,7 +6873,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -6825,10 +6896,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6853,7 +6924,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6871,22 +6942,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "020f5ac7f17cc8c88a7cbbea8c31c869ac76670f95460e6d9e12edecfe2364bc", + "tx_hash": "1377840a37db84414db1f305f8e7aecb49e7ae78edf718666941607aa40118b6", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6895,22 +6966,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788", + "tx_hash": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467478, + "block_time": 1730732168, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6919,22 +6990,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6949,22 +7020,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "199925a1041528f177651955053a8899c08a5ebd1bc0661a424d1397988a3b3f", + "tx_hash": "e028cbf27215bcfb21411961c2008b54ab360daba98f1b4c5da445e2c5875775", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467474, + "block_time": 1730732164, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -6980,9 +7051,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6997,7 +7068,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7023,9 +7094,9 @@ }, { "tx_index": 53, - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7040,7 +7111,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7066,9 +7137,9 @@ }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7083,7 +7154,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7109,9 +7180,9 @@ }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7126,7 +7197,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7152,9 +7223,9 @@ }, { "tx_index": 60, - "tx_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "block_index": 210, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7169,7 +7240,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7200,9 +7271,9 @@ "/v2/orders/": { "result": { "tx_index": 55, - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "block_index": 211, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7217,7 +7288,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7245,13 +7316,13 @@ "/v2/orders//matches": { "result": [ { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7265,7 +7336,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7292,15 +7363,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "btc_amount": 2000, - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "status": "valid", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "btc_amount_normalized": "0.00002000" } ], @@ -7311,9 +7382,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "block_index": 188, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7331,7 +7402,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730467720, + "block_time": 1730732447, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7357,9 +7428,9 @@ }, { "tx_index": 55, - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "block_index": 211, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7377,7 +7448,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730467853, + "block_time": 1730732593, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7403,9 +7474,9 @@ }, { "tx_index": 50, - "tx_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", + "tx_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", "block_index": 185, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7423,7 +7494,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467651, + "block_time": 1730732360, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7449,9 +7520,9 @@ }, { "tx_index": 52, - "tx_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", + "tx_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", "block_index": 208, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7469,7 +7540,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467820, + "block_time": 1730732570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7495,9 +7566,9 @@ }, { "tx_index": 58, - "tx_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", + "tx_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", "block_index": 193, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7515,7 +7586,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467749, + "block_time": 1730732476, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7546,13 +7617,13 @@ "/v2/orders///matches": { "result": [ { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7569,7 +7640,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7589,13 +7660,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 53, - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7612,7 +7683,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467720, + "block_time": 1730732447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7632,13 +7703,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "id": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501_a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", "tx0_index": 50, - "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 51, - "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7655,7 +7726,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467651, + "block_time": 1730732360, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7675,13 +7746,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7698,7 +7769,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7724,13 +7795,13 @@ "/v2/order_matches": { "result": [ { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7744,7 +7815,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7764,13 +7835,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", "tx0_index": 52, - "tx0_hash": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 53, - "tx1_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7784,7 +7855,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730467720, + "block_time": 1730732447, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7804,13 +7875,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0_f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", + "id": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501_a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", "tx0_index": 50, - "tx0_hash": "354b568d00f2a78614e5c1eb8dffc9759ac300790af0ff937a2e8c8704e6b4f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "e039916b196f45261cf52987a0973814123021c786f5ca69d4f0c9816fe2d501", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 51, - "tx1_hash": "f096d9445cbdfedb3fc1aead04acad6c7fe712bf1d641ccc20a57efef6933507", - "tx1_address": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "tx1_hash": "a30ee34b1f876686851875757ef26a0fc591107936f350919303fd8ef9f997ff", + "tx1_address": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7824,7 +7895,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730467651, + "block_time": 1730732360, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7844,13 +7915,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx0_index": 60, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx1_index": 55, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7864,7 +7935,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7909,66 +7980,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", + "tx_hash": "ff3faba5e57edb636874da0ba473d2a2887ab72330e6bdf4d168bbcb6bbaf8a1", "block_index": 121, - "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", + "source": "bcrt1qwvzpkdat23f5gxskhwzlse5cd9lzymwvucxhwn", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730467465, + "block_time": 1730732157, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6e78cc5e128af65f1686523a753af99b78c132bdc001ba49411a3ce47c50ee9c", + "tx_hash": "a98382abf93085ed4c73a231535e609dad81d61d509bba66d07ec5556b61f10c", "block_index": 120, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730467462, + "block_time": 1730732153, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "db455fa4b624eeb04f20aa18e96ee26fc63c1ed3aec0e8650df974a54432d2e6", + "tx_hash": "97d86b9a08f81c16b87396ad4997e1adc8bad865957102a53e285bc07c47ef19", "block_index": 119, - "source": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy", + "source": "bcrt1qtpmr4j0eu628umesf00708u2yc6wpcw3mma5w4", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730467457, + "block_time": 1730732150, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "17392c3df9592847436074efa44d5acaedfd24947c269a583e9c043dd86afd79", + "tx_hash": "02d30d78417cb40b0e8aeae1b147d666fa680f0d197a75a968cc5f07d0a2ca58", "block_index": 118, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730467454, + "block_time": 1730732147, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0f9e72e8e6d07cb5998119bc8f4ed292e6624a9b28465d43b404f0cbc60ae639", + "tx_hash": "a65fb55dd94eef3a6ffb8b15b286b8e1b07425adcc8f3a1ef7e8f1bf824edc5b", "block_index": 117, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730467450, + "block_time": 1730732144, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7980,9 +8051,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7991,7 +8062,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8001,7 +8072,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -8017,9 +8088,9 @@ }, { "tx_index": 29, - "tx_hash": "4829e6cdd4360a9cf7b077d0e4ff83b1fd383e563b86fc866a8d09980c46d2c6", + "tx_hash": "18fee8ce692f7edbd1fff8d7bd1582a7f29c5811fb14ae33524cde1a67e53b14", "block_index": 142, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8028,7 +8099,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "origin": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8038,7 +8109,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467547, + "block_time": 1730732250, "asset_info": { "divisible": true, "asset_longname": null, @@ -8054,9 +8125,9 @@ }, { "tx_index": 30, - "tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", + "tx_hash": "9ceb4412b1fa83d71d08560201074c5eb5607558967f9465d47b86261846b117", "block_index": 150, - "source": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", + "source": "n1FmWDLz3gFfgc61LQinRBgLeyi7EMcXwt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8064,10 +8135,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c3aaa91b396891312c0aff453d807318977a2bb324ad2ff7382a4dee10ce5f23", - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_hash": "ea9ca7de8f22e820c6af5555f0a01793feda0e2e2c08b8931b4669d4e729db11", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "last_status_tx_source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8075,7 +8146,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467586, + "block_time": 1730732280, "asset_info": { "divisible": true, "asset_longname": null, @@ -8091,9 +8162,9 @@ }, { "tx_index": 63, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8102,7 +8173,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8112,11 +8183,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8128,18 +8199,18 @@ }, { "tx_index": 33, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8149,7 +8220,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8170,9 +8241,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8181,7 +8252,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8191,7 +8262,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -8211,19 +8282,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8231,7 +8302,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8246,7 +8317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -8260,19 +8331,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8280,7 +8351,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8295,7 +8366,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -8314,20 +8385,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8348,20 +8419,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8384,12 +8455,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "event": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "tx_index": 42, - "utxo": "1c185c4c80aadf151f8406ce362617c32a10281f6390644e3518f6761efaf1c9:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "utxo": "e3337ff241f0be9eabc0be15057e677d0b9f06562fd690eab138394c86efa68c:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "confirmed": true, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "divisible": true, "asset_longname": null, @@ -8410,27 +8481,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 705, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 704, @@ -8439,14 +8510,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8457,9 +8528,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 703, @@ -8468,9 +8539,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -8480,24 +8551,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8507,9 +8578,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 701, @@ -8521,15 +8592,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } }, "/v2/events/counts": { @@ -8564,16 +8635,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8583,9 +8654,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 700, @@ -8595,12 +8666,12 @@ "asset": "XCP", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8610,9 +8681,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 697, @@ -8622,39 +8693,39 @@ "asset": "MYASSETA", "block_index": 211, "calling_function": "utxo move", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", - "utxo_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "block_time": 1730467853, + "utxo": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", + "utxo_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 }, { "event_index": 681, "event": "CREDIT", "params": { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "block_index": 210, "calling_function": "order expired", - "event": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "event": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730467838, + "block_time": 1730732578, "asset_info": { "divisible": true, "asset_longname": null, @@ -8664,24 +8735,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 }, { "event_index": 670, "event": "CREDIT", "params": { - "address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "block_index": 209, "calling_function": "mpma send", - "event": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "event": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "quantity": 10, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -8691,9 +8762,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_time": 1730467834 + "block_time": 1730732574 } ], "next_cursor": 669, @@ -8710,27 +8781,27 @@ { "tx_index": 78, "dispense_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8745,7 +8816,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8759,19 +8830,19 @@ { "tx_index": 64, "dispense_index": 0, - "tx_hash": "0fd14424ecae2e966ac1836c3902b3efe96409685657e728f40564935441ba1f", + "tx_hash": "869cbf7fad44312a8e161b7287467cee0cb6b0892180d6c4805c865c40dac5d1", "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "dispenser_tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 63, "block_index": 198, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8779,7 +8850,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8794,11 +8865,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467767, + "block_time": 1730732496, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -8808,27 +8879,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f6f65d515c4920b3264290020842fbbd999b38ff89001c07c1fd4d573a66858c", + "tx_hash": "8f08e8ddf4de2e08cf5cab9e240cc6d24e6fdae54c75395d2595afcd34521a90", "block_index": 147, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 211, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "oracle_address": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "last_status_tx_hash": null, - "origin": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "origin": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8843,7 +8914,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730467575, + "block_time": 1730732268, "asset_info": { "divisible": true, "asset_longname": null, @@ -8857,19 +8928,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "7e2fc9571ef4c0d1a4105b8e24dc7ec3ef1fda508b985961c207096da0e7500d", + "tx_hash": "94636dca10a6ca898878d92e994a9ebafea4755ee4dfaeb1b16ef835643a8640", "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8877,7 +8948,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8892,7 +8963,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467543, + "block_time": 1730732245, "asset_info": { "divisible": true, "asset_longname": null, @@ -8906,19 +8977,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "079b90d410627540bc8ae7c63c89699882bdb9eb4a655df6bb187e328babfc42", + "tx_hash": "069f489a62a21ff99d845c0843f7d20d736f512bda7d7303f7c28ea3f40867f5", "block_index": 140, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a3dfb01a3784c37b512d9c8c56c4771f43860d232ded20a7f0dbfc72cb056216", + "dispenser_tx_hash": "bcc2c89dd85c7ae7c14c662dd8545efb725a9cb152b8caa911322f9fb44256f1", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8926,7 +8997,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8941,7 +9012,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730467539, + "block_time": 1730732241, "asset_info": { "divisible": true, "asset_longname": null, @@ -8960,10 +9031,10 @@ "result": [ { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8971,7 +9042,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -8984,10 +9055,10 @@ }, { "tx_index": 78, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8995,11 +9066,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9008,10 +9079,10 @@ }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9019,7 +9090,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -9032,10 +9103,10 @@ }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9043,11 +9114,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9056,10 +9127,10 @@ }, { "tx_index": 76, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9067,11 +9138,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9086,14 +9157,14 @@ "result": [ { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -9108,20 +9179,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 65, - "tx_hash": "bac413745519011121694c9a89593b6cdf577b62a48484895524f2629d053ba7", + "tx_hash": "fc89c06450da8d513679e162a0f55da26c04d9cda22846429828191fee1e4dfa", "msg_index": 0, "block_index": 199, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "transfer": false, "callable": false, "call_date": 0, @@ -9136,20 +9207,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467772, + "block_time": 1730732499, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "3e02dc909be0d714ee716895c853dc79127db04351e4254da0782ccf428d7090", + "tx_hash": "a2c47311a6be8bd375bbcbffbf9c299c2b58dfe8c3636ff61d5b453266db5c6d", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -9164,20 +9235,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467637, + "block_time": 1730732346, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "d8d2213e7407c53771b584fe5a01d9a8df60d17c31ecd610d3d74840b4533193", + "tx_hash": "564f3ffd7b8be3efee2f5b6e27f26307dc373bf52388175a9aa79b0b41e71167", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -9192,20 +9263,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730467634, + "block_time": 1730732342, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7b012ec7a035a985d20c5e3fb14e238417e3900a1ec1709953606bedc45e7001", + "tx_hash": "e4161b580092fac2712c970e138b38c97a6ecd8c542152f8509e8db315a9e8b5", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -9220,7 +9291,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467621, + "block_time": 1730732337, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9231,14 +9302,14 @@ "/v2/issuances/": { "result": { "tx_index": 71, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "msg_index": 0, "block_index": 204, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "transfer": false, "callable": false, "call_date": 0, @@ -9253,7 +9324,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9262,16 +9333,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -9282,16 +9353,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" } ], @@ -9302,9 +9373,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9312,14 +9383,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467531, + "block_time": 1730732234, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "35c5c7dc21ac77a16919a59268c4351dd345cbf74c90b26033edc9b8e193c062", + "tx_hash": "3065a7508aaf5464a10de3a984602a765e4e187c4fe24ffdad2025d144e1e6e3", "block_index": 137, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9327,7 +9398,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467528, + "block_time": 1730732230, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9337,9 +9408,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9347,17 +9418,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730467531, + "block_time": 1730732234, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9382,7 +9453,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9391,10 +9462,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9419,7 +9490,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730467522, + "block_time": 1730732222, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9431,10 +9502,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9459,7 +9530,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730467506, + "block_time": 1730732196, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9471,10 +9542,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9499,7 +9570,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730467503, + "block_time": 1730732191, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9511,10 +9582,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3fdd878b35a8cac2c070d0b1d68f6fa39cc72d56e8253b0d5c5ea9675ad00a82", + "tx_hash": "d1652bbfa4445b26b86f71b9ef76ad3c7641148185f308bfbf1eec651a037329", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9539,7 +9610,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730467483, + "block_time": 1730732171, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9557,22 +9628,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9581,22 +9652,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2f7e5c3aba8fae84a73f33ba70c8e55c86b60178fd486402a00da09e24023fce", + "tx_hash": "6e388fae3b73e1e6060a8d3ee92e0b6a88a386d76c0d4be3ff737c3f25d7a087", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467517, + "block_time": 1730732217, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9605,22 +9676,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "8dd3f35a1763bccb6fe1fff63afac7eb041ffba680c00e8ee2db6f08fe08de42", + "tx_hash": "f14571bf3bb7cdd8317c1392e844213fbed36356eb193ac0fdeb6318999f50d6", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467513, + "block_time": 1730732203, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9629,22 +9700,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "29f2ff6c4648a08a0db3a4d72ca792582597ca9275d3223df24ce8f25fbbd85a", + "tx_hash": "4595474922c82b36cfa3087ba618db43caac4d8449925561370a703572db1982", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "1f127def466cf82ee9ae2ebe2ff97cde4f6f665c809b45c49e1274174b49bf8e", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "a81cfffe8e37e2245c3e7f8088a0a53634546d90dabffe33ef3e4c51b2d9a985", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467510, + "block_time": 1730732200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9653,22 +9724,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ac68db009ddeab5fff5da046698c05a254c7217fe24980421f74c93287736192", + "tx_hash": "4c25d736a88df8d907e80197b0abb8c8c7200e7819316247dd54b10b960c6b1b", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "fairminter_tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "fairminter_tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467499, + "block_time": 1730732187, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9682,22 +9753,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -9709,13 +9780,13 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", - "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + "vout": 1, + "height": 210, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", + "address": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp" }, { "vout": 1, @@ -9723,17 +9794,17 @@ "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", - "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + "txid": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", + "address": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp" }, { - "vout": 1, - "height": 210, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", - "address": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l" + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", + "address": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp" }, { "vout": 2, @@ -9741,8 +9812,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab", - "address": "bcrt1qmj06nvvx4mwyhkstrs4jztvts4g30q93e5d2jy" + "txid": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3", + "address": "bcrt1qtpmr4j0eu628umesf00708u2yc6wpcw3mma5w4" } ], "next_cursor": null, @@ -9751,25 +9822,25 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "ab91d25ddaeff8fc3191406dfe5f6c0b97ba2735cf2745bcb4cae7109dc38307" + "tx_hash": "23d8bdcf6b833762ff1d99705066a0475a02ac6d7a8768b29821fa8d5e2ed42d" }, { - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464" + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b" }, { - "tx_hash": "7a01b5bcecfe586b29e272f20d6200a79f67d0e67bd339776b5625563a31096f" + "tx_hash": "ca984e1c241544b6f31e19c14d20e5efd0debf892bfbafd2a28b28d2038e63a1" }, { - "tx_hash": "07f79a857c031b673fbc182e7e7ccdc3dc7d77856cf171f233cc03a53dd7e879" + "tx_hash": "72560f6e6eec11a4f53b7f74031af765f9b1deb741233b1b35f65e71708d08cf" }, { - "tx_hash": "debb87f7f23860fc49e3c6754bae8fc2bf369425058cb57050dcb7b11d73a788" + "tx_hash": "debec5835c3468f990c727fc488916f0a1ee2c325d1a194f20c5ab33fc23bfe0" }, { - "tx_hash": "59149addbd50a4696652bd1992a028a544b0d80b1ba1cdc8719a03c87bf3ddbe" + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed" }, { - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" + "tx_hash": "5e8921f88731d6a95d48dc0f52b9cf08af81625310a7eaf60918db4a035555f8" } ], "next_cursor": null, @@ -9777,19 +9848,27 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "f589724d4e5d8dc8de7c8efb4df0522c252bc84f24dfe42326879d6cb9d8faa6" + "block_index": 3, + "tx_hash": "00847d1ad84b2f71b5aaa302753fdd45998f1b584a28daa0611d289b1c683357" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ + { + "vout": 0, + "height": 203, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab" + }, { "vout": 1, "height": 202, "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3" + "txid": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066" }, { "vout": 1, @@ -9797,25 +9876,17 @@ "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa" - }, - { - "vout": 0, - "height": 203, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e" + "txid": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03b824cdafe5ce066b09192ce992fc877894af5ddb480f7751127034d5a63c566c" + "result": "02fa819147164f755c4bfda0163b98411783fa4acd973097d92fbe5f3eb1bcc430" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101ab1955de714f10735a3a900a93c87e67f40377ba77150cae8cefb4ba3a3361f60100000000ffffffff03e803000000000000160014ef00ed8daf8bf102de3d4a8856aeb114d3d4a74500000000000000000c6a0a6ecc7cee261673ed77abeb140927010000001600149d89a2518adb0281244890afd1bb4d3c931f5eb60247304402200b94ed5c6dd6b3ded51ef7e95c4391bd9b6d7d23fc38e066ef2b26ee6a24aab50220561dcc8ae2033ae8faf2b55c550cd087a99132df468ee03e3c1746ebb081057f01210289358286deb0840210e8ebab29063bd08bc4e67b6cd9304f46df9fdfc1d0d9bb00000000" + "result": "02000000000101c304e164036e83521078d219d266c9cde141e8eb9aa0557ed20de8e57ac623c00100000000ffffffff03e803000000000000160014594f55ced439faf816badf7ad2612e16657f5e2a00000000000000000c6a0a60e02bbc04e18a144d50eb1409270100000016001461b67a115608596e3ce7b315bd2d9e35c739cc4802473044022011392fd55c4ef295fbeabd50d4033478e4aa30d21334b35522bff66a34ddaa0602207f78fbd8761af931c53e7835583946f1bd815d9dc7a61034a4719858fcbe05f201210297267f553fe9ebdce6ef38386a681ee8d0e34b7fe58d5d68d5a27c3ceecb9e4700000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58706 @@ -9838,27 +9909,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79 }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "quantity": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, "asset_info": { "divisible": true, @@ -9869,22 +9940,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -9894,22 +9965,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "block_index": 211, - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -9919,30 +9990,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730467857.2218225, + "block_time": 1730732596.4768202, "btc_amount": 0, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "destination": "", "fee": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, - "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", + "utxos_info": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -9956,7 +10027,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -9965,19 +10036,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -9987,7 +10058,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -9996,27 +10067,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79 }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "destination": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "quantity": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, "asset_info": { "divisible": true, @@ -10027,22 +10098,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "CREDIT", "params": { - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "asset": "XCP", "block_index": 211, "calling_function": "send", - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -10052,22 +10123,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "address": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "asset": "XCP", "block_index": 211, - "event": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "event": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "quantity": 10000, "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -10077,30 +10148,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 }, { - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730467857.2218225, + "block_time": 1730732596.4768202, "btc_amount": 0, - "data": "020000000000000001000000000000271080f396f379e24c54ff819a80c63a16a283ade191b1", + "data": "02000000000000000100000000000027108046fd5f3cd9b610bfa26baaea0c8f6af71489f7c3", "destination": "", "fee": 10000, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", - "tx_hash": "7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", + "tx_hash": "a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a", "tx_index": 79, - "utxos_info": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54:1 7d58062c3933886e1bbb798e036f7aeded6d61bc1dbcc47d390abbfa520f3e0f:1 2 ", + "utxos_info": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678:1 a15fd94d77a6a88b23143095b69752bd60821d5b87df0d22a1825ae8b055e35a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "memo": null, "asset_info": { "divisible": true, @@ -10114,7 +10185,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730467857.2218225 + "timestamp": 1730732596.4768202 } ], "next_cursor": null, @@ -10136,15 +10207,15 @@ "event_index": 691, "event": "NEW_BLOCK", "params": { - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", "block_index": 211, - "block_time": 1730467853, + "block_time": 1730732593, "difficulty": 545259519, - "previous_block_hash": "6804c4c5224e2a6df2e8f9333736f8670022360f3fb4134c5411a07243669aa8" + "previous_block_hash": "1f174e7e47d7161cbe0a31ca652cc6d59c060c9cfe50df9a7ac368172b8b283f" }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 678, @@ -10156,17 +10227,17 @@ "event_index": 692, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1dc83a629f0d17a41355a14bf420a56e9c31b96ce3da007ddad74478320abec5", + "block_hash": "47ff3f407c6f77ac7d0369703d82eea3e259497e5ff8cf454f9fe794ef051876", "block_index": 211, - "block_time": 1730467853, + "block_time": 1730732593, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "fee": 0, - "source": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "source": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "utxos_info": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1 45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0 3 1", + "utxos_info": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1 9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10176,9 +10247,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 679, @@ -10192,16 +10263,16 @@ "params": { "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "destination": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "out_index": 0, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 565, @@ -10214,15 +10285,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 211, - "ledger_hash": "050531918a231bdfc47805149412eb6c458c2780a4cddfa903dfc336b42f9e37", - "messages_hash": "6ddd93749030cd85cee715f95be9f4bf13944003496fe7e4fbb63a3f469ca19d", + "ledger_hash": "2ec2f0d4669351fbe80a79b9ed1bac5820c10a54a188d81c7e55154e231573e7", + "messages_hash": "b03c0b2ccfef0c552ff7ad59859b5cecedb50485c4f21145258ea3eae76760c1", "transaction_count": 1, - "txlist_hash": "0cca0a6d21f969241eb7efad8bef6e5a65b32c95c80a516d000241d5044ba6c0", - "block_time": 1730467853 + "txlist_hash": "79dd58734ac7bcfd2f023110e48aa7f3a438e87086da5e11027939e6e1b5f0b5", + "block_time": 1730732593 }, "tx_hash": null, "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 690, @@ -10235,12 +10306,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 689, @@ -10256,12 +10327,12 @@ "address": null, "asset": "XCP", "block_index": 211, - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 2000000000, "tx_index": 78, - "utxo": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", - "utxo_address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", - "block_time": 1730467853, + "utxo": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", + "utxo_address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -10271,9 +10342,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 696, @@ -10285,16 +10356,16 @@ "event_index": 702, "event": "CREDIT", "params": { - "address": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "address": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "asset": "XCP", "block_index": 211, "calling_function": "dispense", - "event": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "event": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "quantity": 66, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -10304,9 +10375,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 700, @@ -10320,26 +10391,26 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "memo": null, "quantity": 1000, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "tx_index": 72, - "block_time": 1730467808, + "block_time": 1730732549, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e60213a030409878427f30210374e66fda7787e6df0690ae7a660da67f726e2a", + "tx_hash": "011aeaa11a8000dc99af4ea033019e0cffacae46e98e7cfb797b2b916dc7d1a9", "block_index": 205, - "block_time": 1730467808 + "block_time": 1730732549 } ], "next_cursor": 505, @@ -10353,15 +10424,15 @@ "params": { "asset": "XCP", "block_index": 209, - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "tx_index": 76, - "block_time": 1730467834, + "block_time": 1730732574, "asset_info": { "divisible": true, "asset_longname": null, @@ -10371,9 +10442,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2f7d8094127b07d0ecb85a7aea55cca96aa153d47298a2a7a52ffeb3e0c23e75", + "tx_hash": "596c8d371916a7388bdbf8870bfcfcd50a9233780a9781a5bfbcdc1564044d66", "block_index": 209, - "block_time": 1730467834 + "block_time": 1730732574 } ], "next_cursor": 674, @@ -10396,20 +10467,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "destination": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "status": "valid", - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "tx_index": 61, - "block_time": 1730467755, + "block_time": 1730732484, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "80d88fa55d918ddf7d4660b0a4eb6416246a01da80c9857f0100d100e394f464", + "tx_hash": "ee1eccbb0dcbc09296da588a4f2b39862edd52862bc8d2da6af558ae39c4aaed", "block_index": 195, - "block_time": 1730467755 + "block_time": 1730732484 } ], "next_cursor": null, @@ -10426,15 +10497,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "tx_index": 42, - "block_time": 1730467604, + "block_time": 1730732299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -10448,9 +10519,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "92ed9931a66ca18cb4470ea54f04ab952614391dd1d40a50749d1acb8a578938", + "tx_hash": "62e8ed4c7e7a3904a63218413558e202ba430a788ebd10b16fc6ca1e6c11e818", "block_index": 155, - "block_time": 1730467604 + "block_time": 1730732299 } ], "next_cursor": null, @@ -10471,11 +10542,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 204, - "block_time": 1730467805 + "block_time": 1730732535 }, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_time": 1730467805 + "block_time": 1730732535 } ], "next_cursor": 574, @@ -10498,22 +10569,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", "transfer": false, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "tx_index": 71, - "block_time": 1730467805, + "block_time": 1730732535, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "8254367aa46ed8cac82c88303c6e150001006abac6db1be7a22f413e8e1bfc37", + "tx_hash": "1ff576c157b8087a807463f73f7afa31110899d0329c7a71b221936eed09ec94", "block_index": 204, - "block_time": 1730467805 + "block_time": 1730732535 } ], "next_cursor": 575, @@ -10528,12 +10599,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q8qz077sw9066wrtcem7k59xwrqexyrhgkzhq2s", + "source": "bcrt1qjrmqfvf0zwk5j5n7qk3xj56q8uesqnexjk3j2z", "status": "valid", "tag": "64657374726f79", - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "tx_index": 62, - "block_time": 1730467760, + "block_time": 1730732487, "asset_info": { "divisible": true, "asset_longname": null, @@ -10543,9 +10614,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "90ecce0aa563de585a35b7dc22bf54d874360cede99138c4d9dfce30ce40bf54", + "tx_hash": "7252bb2bf63c6fc740988fdf0876d57d0c8a8f39be7f8c978fd0ba2510ae3678", "block_index": 196, - "block_time": 1730467760 + "block_time": 1730732487 } ], "next_cursor": 157, @@ -10570,15 +10641,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "status": "open", - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "tx_index": 77, - "block_time": 1730467838, + "block_time": 1730732578, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, @@ -10598,9 +10669,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 536, @@ -10618,20 +10689,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "a51f426e3b08bf4e07527c75022f2df60ea2928a45e0dde07617ac362a13bdb7", + "tx0_hash": "375f55c88877469da640b0ddef63ea4c03767d716652784ffd9b023f4dde2064", "tx0_index": 60, - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "tx1_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "tx1_index": 55, - "block_time": 1730467838, + "block_time": 1730732578, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10650,9 +10721,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 498, @@ -10665,11 +10736,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0" + "tx_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 685, @@ -10682,11 +10753,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407" + "tx_hash": "24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be" }, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "block_time": 1730467720 + "block_time": 1730732447 } ], "next_cursor": null, @@ -10698,13 +10769,13 @@ "event_index": 680, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", + "id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", "status": "expired" }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 488, @@ -10718,18 +10789,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c3031fb730bc44da141d6fa66a9c6beb4de7982127c4fd94a93136b36e397407", - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "destination": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_24484a6ceb2f71ca4fae20905b1efe6878ae297e32511a782c76fffc423582be", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "tx_index": 54, - "block_time": 1730467720, + "block_time": 1730732447, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "89afa7640c0834e473438cb98fd34402ba3d7275f9eb01beb011ff09faf03326", + "tx_hash": "ce01c9ebc9ab9062f21afd15068477da8aeefad61224ebae6ca2a1b3e52d682b", "block_index": 188, - "block_time": 1730467720 + "block_time": 1730732447 } ], "next_cursor": null, @@ -10742,16 +10813,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "25bc7a466e89a620731f94bb85fab2c1bfb433390f836cfd3bf79657be7b779b", - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "offer_hash": "a13dcd8fc72f266249b7b76450cb71a5f40e0276ec3fb2268866591043135c39", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": "valid", - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "tx_index": 59, - "block_time": 1730467749 + "block_time": 1730732476 }, - "tx_hash": "bf3c50fd5db3aa8fe23ee865a31345811607f633ca330865b6af3e05051f316a", + "tx_hash": "f2d347343709835c807380fe4f3a78bd4ec40a85f8c530fa9a29d94c65c74657", "block_index": 193, - "block_time": 1730467749 + "block_time": 1730732476 } ], "next_cursor": null, @@ -10764,13 +10835,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "source": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "block_time": 1730467853 + "order_hash": "aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "source": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "block_time": 1730732593 }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 655, @@ -10783,14 +10854,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "2da72f784928a9c41c6ca4996dd409756e437d189d2cee043d3f2937f95c1e6e_c8c11c2bcf3de57a29649ea0cfdc8f381b6b8797f0cf111649841dbe67c6b0f0", - "tx0_address": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "tx1_address": "bcrt1q7wt0x70zf320lqv6srrr594zswk7ryd3p586zw", - "block_time": 1730467838 + "order_match_id": "a04e44352a94359f33b03b301dab1db41f73dcdb5720d7e39832404b49d0367b_aa0be3274dae7e820e8790c4ac0c95fa1332b7592c27b8b92b1c737833f2b95b", + "tx0_address": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "tx1_address": "bcrt1qgm7470xekcgtlgnt4t4qerm27u2gna7r53ndv2", + "block_time": 1730732578 }, - "tx_hash": "5c2b2455d66a2feb10602e4ca8ed87c0b374ade79636fdb844788c1a5e0ecdaa", + "tx_hash": "073917206caf5d740eb5436fefaaeff067250fbab346eb4b8cab792b808625d5", "block_index": 210, - "block_time": 1730467838 + "block_time": 1730732578 } ], "next_cursor": 464, @@ -10809,17 +10880,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "origin": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "satoshirate": 1, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "status": 0, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "tx_index": 63, - "block_time": 1730467763, + "block_time": 1730732492, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -10828,9 +10899,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "be782aca2052e3bc4cb54c1789ddb5e2aeb726b5cd4446a9121481a7043fec53", + "tx_hash": "7f4560ec66cc664d3607be4e556766c0d40c0c8402517b12ac2c162d34f7eb9b", "block_index": 197, - "block_time": 1730467763 + "block_time": 1730732492 } ], "next_cursor": 272, @@ -10845,9 +10916,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": 0, - "tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", + "tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", "asset_info": { "divisible": true, "asset_longname": null, @@ -10857,9 +10928,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 567, @@ -10873,13 +10944,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mgqiS8fnrwtb5aQgGPDEwXUCHs6qgYxCVS", + "destination": "n1FmWDLz3gFfgc61LQinRBgLeyi7EMcXwt", "dispense_quantity": 10, - "dispenser_tx_hash": "2e27947c94270127ebc90855064f57c85929348dfcb146747afc956e28e469a6", - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", - "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", + "dispenser_tx_hash": "9ceb4412b1fa83d71d08560201074c5eb5607558967f9465d47b86261846b117", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", + "tx_hash": "9d6b79315fd4e7f895d05e5dc198b7a663c1f9378b57a59708e8c02515031a15", "tx_index": 31, - "block_time": 1730467555, + "block_time": 1730732257, "asset_info": { "divisible": true, "asset_longname": null, @@ -10889,9 +10960,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "0bf7d0991def661f77c17182fe885f3647aeaeb2ba4f4eca815f32df6d09b94b", + "tx_hash": "9d6b79315fd4e7f895d05e5dc198b7a663c1f9378b57a59708e8c02515031a15", "block_index": 144, - "block_time": 1730467555 + "block_time": 1730732257 } ], "next_cursor": null, @@ -10906,14 +10977,14 @@ "asset": "XCP", "block_index": 211, "btc_amount": 1000, - "destination": "bcrt1qnky6y5v2mvpgzfzgjzharw6d8jf37h4kw8j809", + "destination": "bcrt1qvxm85y2kppvku088kv2m6tv7xhrnnnzg2qszpk", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2bb217948f75d5795cbc57063a38f3e683e9cc0721658c69b49ac7a956f55bf7", - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "dispenser_tx_hash": "63c21603c19e1c53696473a24a88f9f49db2deb67b33037ecab1b5e7a929d2a6", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -10924,9 +10995,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 568, @@ -10941,19 +11012,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qauqwmrd030cs9h3af2y9dt43znfaff6933t3qx", + "source": "bcrt1qt984tnk588a0s946maadycfwzejh7h32k8jzz4", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "tx_index": 25, "value": 66600.0, - "block_time": 1730467531, + "block_time": 1730732234, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d9f0c682e5bf43dfa87e2003e792c08477785865107bf26c40a42b7268c8c7ad", + "tx_hash": "fd85a55b3aa877fbb2b3042083bbfa419c6899f1e67260b919f4793c9f5687fa", "block_index": 138, - "block_time": 1730467531 + "block_time": 1730732234 } ], "next_cursor": 213, @@ -10984,12 +11055,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "source": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "start_block": 0, "status": "open", - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "tx_index": 43, - "block_time": 1730467607, + "block_time": 1730732312, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10997,9 +11068,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "73eff46d3a92d44e985b51bc8489e928e065966dbfa82a42196cebc5a8c6d0ef", + "tx_hash": "600be027f3bca8ca94664e409998030afd4f7d8f9c1252f2b2654e35176a6d6d", "block_index": 156, - "block_time": 1730467607 + "block_time": 1730732312 } ], "next_cursor": 196, @@ -11012,11 +11083,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "136879acdfa7848462925ff797d865aa89d83c77d10e96d1520be58d8db07b83" + "tx_hash": "f929df1b9015fc311034ccbcbbba12c3e979666fd2205f3ced63cca9975a4ae4" }, "tx_hash": null, "block_index": 130, - "block_time": 1730467503 + "block_time": 1730732191 } ], "next_cursor": 110, @@ -11032,17 +11103,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "ccbb8105d62778b1f3d3992ba1ca1296cd98fd76b8ec046c71e1c8475401fd75", + "fairminter_tx_hash": "9ce674e2707af132df84837daeac48b56dbd9ac5dc4aff784f0a85e15c9a87e0", "paid_quantity": 34, - "source": "bcrt1q3mkc7f8mu5elqv0jnlefa0f5dd2wtxsqatys8f", + "source": "bcrt1q9pm8p4tx668qrks6cuawfxzyvjuqzyx069mff4", "status": "valid", - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "tx_index": 23, - "block_time": 1730467525, + "block_time": 1730732226, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0dwkdmzdtymt33780fq5tavggur8anfp5f0349", + "issuer": "bcrt1q49szac0hp5hu79z0mjyfqa2fepgnu3dew6slqa", "divisible": true, "locked": false }, @@ -11050,9 +11121,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "fcdbd1e0046688fe0315bc8a38aaa0d1085c66dd828e3fdb874518b6f083f787", + "tx_hash": "1e65fdb6da534837a5e7abdecde3997a84051757cc6f7d75d76d1fa2a30c872d", "block_index": 136, - "block_time": 1730467525 + "block_time": 1730732226 } ], "next_cursor": 190, @@ -11066,28 +11137,28 @@ "params": { "asset": "UTXOASSET", "block_index": 203, - "destination": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e:0", + "destination": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "source": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "status": "valid", - "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "tx_hash": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", "tx_index": 70, - "block_time": 1730467801, + "block_time": 1730732530, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a22b4bba06cd89ca7256c990732dbc342ce8c7c88edca60bea81afa4813f4f3e", + "tx_hash": "94e077f13c5c339702734902673a7e19ddfd6d68cabeb06c78aa18513937c6ab", "block_index": 203, - "block_time": 1730467801 + "block_time": 1730732530 } ], "next_cursor": 584, @@ -11101,28 +11172,28 @@ "params": { "asset": "UTXOASSET", "block_index": 202, - "destination": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "destination": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "0d5e9c06995871fa17540d39523a675b6a79898ad42e73692c8c9c0be4fe3801:0", + "source": "9bb912a7237ee1facd4a35cd655c865dc600421adf16c85a71358733e329eac6:0", "status": "valid", - "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "tx_hash": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", "tx_index": 69, - "block_time": 1730467798, + "block_time": 1730732526, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qll0tmc2py74z47rxm6puy2zntycqttla2d035l", + "issuer": "bcrt1qtp8paf0upt4tec27y635dd82g7855kwpqcr5yp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "258197286c0ed31bd39a7c8a3f190e37b5c98436d8dc1937bbd11ff7f7686ea3", + "tx_hash": "4873758c38ba03d09376dbad3988c9db59d78dcc95c0dabde0666290bce02066", "block_index": 202, - "block_time": 1730467798 + "block_time": 1730732526 } ], "next_cursor": 311, @@ -11136,14 +11207,14 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f:0", + "destination": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc:0", "msg_index": 1, "quantity": 2000000000, - "source": "f661333abab4ef8cae0c1577ba7703f4677ec8930a903a5a73104f71de5519ab:1", + "source": "c023c67ae5e80dd27e55a09aebe841e1cdc966d219d2781052836e0364e104c3:1", "status": "valid", - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "tx_index": 78, - "block_time": 1730467853, + "block_time": 1730732593, "asset_info": { "divisible": true, "asset_longname": null, @@ -11153,9 +11224,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "45d24e6142c40c7d133c2541369bd7e0888dbdbccac44798ac5248583794047f", + "tx_hash": "9bf4e570d42c6677dfe99760ebadaea1a20b7330eab8063726c5ecc9a32c99fc", "block_index": 211, - "block_time": 1730467853 + "block_time": 1730732593 } ], "next_cursor": 698, @@ -11170,17 +11241,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qrwxdz2y8e66wy2prnmq5j74g26fvvjtr7g3v9a", + "source": "bcrt1qwvzpkdat23f5gxskhwzlse5cd9lzymwvucxhwn", "status": "valid", - "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", + "tx_hash": "ff3faba5e57edb636874da0ba473d2a2887ab72330e6bdf4d168bbcb6bbaf8a1", "tx_index": 9, - "block_time": 1730467465, + "block_time": 1730732157, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "6b75989ea3fa1e4a02e69f2e127e0b5c5fbd45a00fd870ce78f091c7ffd9c6d9", + "tx_hash": "ff3faba5e57edb636874da0ba473d2a2887ab72330e6bdf4d168bbcb6bbaf8a1", "block_index": 121, - "block_time": 1730467465 + "block_time": 1730732157 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index a4001f70ec..008b6ba405 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -539,6 +539,7 @@ def test_invalid_detach(self): balances = self.api_call("assets/UTXOASSET/balances")["result"] utxoasset_balances = [] + utxoasset_addresses = [] print(balances) utxo = None test_address = None @@ -548,6 +549,7 @@ def test_invalid_detach(self): utxo = balance["utxo"] test_address = balance["utxo_address"] utxoasset_balances.append(balance["utxo"]) + utxoasset_addresses.append(balance["utxo_address"]) assert utxo txid, vout = utxo.split(":") @@ -616,6 +618,41 @@ def test_invalid_detach(self): print("Invalid detach test successful") + # let's try to detach assets with an UTXO move to a single OP_RETURN output + utxo = utxoasset_balances[0] + utxo_address = utxoasset_addresses[0] + txid, vout = utxo.split(":") + + inputs = json.dumps([{"txid": txid, "vout": int(vout)}]) + outputs = json.dumps({"data": 50 * "00"}) + + raw_transaction = self.bitcoin_cli("createrawtransaction", inputs, outputs).strip() + signed_transaction_json = self.bitcoin_wallet( + "signrawtransactionwithwallet", raw_transaction + ).strip() + signed_transaction = json.loads(signed_transaction_json)["hex"] + + retry = 0 + while True: + try: + tx_hash, _block_hash, _block_time = self.broadcast_transaction(signed_transaction) + break + except sh.ErrorReturnCode_25: + retry += 1 + assert retry < 6 + # print(str(e)) + print("Sleeping for 5 seconds and retrying...") + time.sleep(5) + + events = self.api_call(f"transactions/{tx_hash}/events?event_name=DETACH_FROM_UTXO")[ + "result" + ] + assert len(events) == 1 + assert events[0]["params"]["source"] == utxo + assert events[0]["params"]["destination"] == utxo_address + + print("Detach with a single OP_RETURN output transaction test successful") + class RegtestNodeThread(threading.Thread): def __init__(self, wsgi_server="waitress", burn_in_one_block=False): diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 93882bb397..fa66f00a87 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -357,7 +357,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 370c80b289..eac7f42b1e 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -20,6 +20,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring 1. It is now cheaper and easier to construct `attach` and `detach` transactions. The size of messages is always less than 80 bytes, so an `OP_RETURN` output can store all of the necessary data. 1. It is possible to execute several `detach` operations in a single transaction to save fees. 1. It is no longer possible to make a `detach` and a UTXO `move` in the same transaction. +1. A UTXO move with a transaction that contains only a single OP_RETURN output behaves like a `detach` ## Bugfixes From 429cf46dd6ca94e743ed3eed1ab2228dedea31c5 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 15:24:03 +0000 Subject: [PATCH 052/138] tweak --- counterparty-core/counterpartycore/lib/blocks.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 4810291c9e..e0b7b5664f 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -1008,11 +1008,7 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_ utxos_info[0] != "" and util.enabled("spend_utxo_to_detach") # utxo move or detach with a single OP_RETURN ) - or ( - utxos_info[0] != "" - and utxos_info[1] != "" - and not util.enabled("spend_utxo_to_detach") # utxo move - ) + or (utxos_info[0] != "" and utxos_info[1] != "") ): transaction_bindings = { "tx_index": tx_index, From 5be5ccdd2e67e51497a3cf1abdd49a79c9c108ed Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 19:32:25 +0000 Subject: [PATCH 053/138] Add 'skip_validation' argument --- apiary.apib | 5749 +++++++++-------- .../counterpartycore/lib/api/api_server.py | 5 +- .../counterpartycore/lib/api/compose.py | 5 + .../counterpartycore/lib/messages/bet.py | 3 +- .../lib/messages/broadcast.py | 12 +- .../counterpartycore/lib/messages/btcpay.py | 4 +- .../counterpartycore/lib/messages/burn.py | 4 +- .../counterpartycore/lib/messages/cancel.py | 4 +- .../counterpartycore/lib/messages/destroy.py | 5 +- .../counterpartycore/lib/messages/dispense.py | 4 +- .../lib/messages/dispenser.py | 6 +- .../counterpartycore/lib/messages/dividend.py | 11 +- .../counterpartycore/lib/messages/fairmint.py | 9 +- .../lib/messages/fairminter.py | 39 +- .../counterpartycore/lib/messages/issuance.py | 3 +- .../counterpartycore/lib/messages/order.py | 3 +- .../counterpartycore/lib/messages/send.py | 8 +- .../counterpartycore/lib/messages/sweep.py | 6 +- .../counterpartycore/lib/messages/utxo.py | 6 +- .../lib/messages/versions/enhanced_send.py | 13 +- .../lib/messages/versions/mpma.py | 11 +- .../lib/messages/versions/send1.py | 8 +- .../counterpartycore/lib/transaction.py | 6 +- .../test/fixtures/api_v2_fixtures.json | 126 + .../test/regtest/apidoc/apicache.json | 5221 ++++++++------- .../regtest/scenarios/scenario_12_send.py | 37 + .../scenarios/scenario_17_dispenser.py | 19 + .../regtest/scenarios/scenario_9_issuance.py | 2 +- .../test/regtest/testscenarios.py | 8 +- release-notes/release-notes-v10.6.2.md | 31 + 30 files changed, 6134 insertions(+), 5234 deletions(-) create mode 100644 release-notes/release-notes-v10.6.2.md diff --git a/apiary.apib b/apiary.apib index 6c9130d03d..85d7a4f048 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 21:58:03.817904. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-04 19:20:33.248940. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 662, + "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_index": 210, + "block_time": 1730748017, "difficulty": 545259519, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae" + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b" }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 653, - "result_count": 108 + "next_cursor": 665, + "result_count": 110 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 663, + "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_index": 210, + "block_time": 1730748017, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "fee": 0, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 654, - "result_count": 76 + "next_cursor": 666, + "result_count": 78 } ``` @@ -242,24 +242,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 664, + "event_index": 683, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "out_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 558, + "next_cursor": 567, "result_count": 5 } ``` @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 661, - "result_count": 108 + "next_cursor": 680, + "result_count": 110 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 660, - "result_count": 61 + "next_cursor": 679, + "result_count": 63 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 668, + "event_index": 689, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 208, - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "block_index": 210, + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,12 +343,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 665, + "next_cursor": 686, "result_count": 72 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,13 +381,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 669, - "result_count": 91 + "next_cursor": 690, + "result_count": 92 } ``` @@ -397,35 +397,35 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 602, + "event_index": 611, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 202, - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 204, + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "quantity": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "tx_index": 69, - "block_time": 1730152624, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_index": 71, + "block_time": 1730747983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_time": 1730152624 + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "block_time": 1730747983 } ], - "next_cursor": 498, - "result_count": 2 + "next_cursor": 503, + "result_count": 3 } ``` @@ -435,20 +435,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 650, + "event_index": 662, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 206, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "status": "valid", - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, - "block_time": 1730152650, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_index": 75, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,12 +458,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_time": 1730747999 } ], - "next_cursor": 649, + "next_cursor": 661, "result_count": 15 } ``` @@ -494,24 +494,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 541, + "event_index": 546, "event": "SWEEP", "params": { - "block_index": 194, - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "status": "valid", - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, - "block_time": 1730152588, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_index": 61, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "block_time": 1730152588 + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "block_time": 1730747941 } ], "next_cursor": null, @@ -533,15 +533,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": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "tx_index": 41, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -555,9 +555,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": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "block_time": 1730152419 + "block_time": 1730747777 } ], "next_cursor": null, @@ -583,21 +583,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 593, + "event_index": 602, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 201, - "block_time": 1730152620 + "block_index": 203, + "block_time": 1730747979 }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_time": 1730747979 } ], - "next_cursor": 567, + "next_cursor": 576, "result_count": 12 } ``` @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 594, + "event_index": 603, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 201, + "block_index": 203, "call_date": 0, "call_price": 0.0, "callable": false, @@ -622,25 +622,25 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", "transfer": false, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, - "block_time": 1730152620, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_index": 70, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_time": 1730747979 } ], - "next_cursor": 568, + "next_cursor": 577, "result_count": 24 } ``` @@ -651,18 +651,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 547, + "event_index": 552, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 195, + "block_index": 196, "quantity": 1, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", "tag": "64657374726f79", - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "tx_index": 61, - "block_time": 1730152592, + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_index": 62, + "block_time": 1730747945, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "block_time": 1730152592 + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "block_index": 196, + "block_time": 1730747945 } ], "next_cursor": 157, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 659, + "event_index": 675, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 209, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,11 +706,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": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,12 +734,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": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 529, + "next_cursor": 534, "result_count": 8 } ``` @@ -750,54 +750,54 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 491, + "event_index": 678, "event": "ORDER_MATCH", "params": { - "backward_asset": "BTC", - "backward_quantity": 3000, - "block_index": 188, + "backward_asset": "XCP", + "backward_quantity": 1000, + "block_index": 209, "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 3000, - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "match_expire_index": 208, + "forward_asset": "BTC", + "forward_quantity": 1000, + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx0_block_index": 186, + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_index": 51, - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "tx1_block_index": 188, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 54, + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_index": 54, - "block_time": 1730152544, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_index": 76, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, "backward_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "block_time": 1730152544 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 475, - "result_count": 3 + "next_cursor": 673, + "result_count": 5 } ``` @@ -807,19 +807,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 655, + "event_index": 684, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144" + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 521, - "result_count": 12 + "next_cursor": 677, + "result_count": 18 } ``` @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59" + "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "block_time": 1730152540 + "block_time": 1730747901 } ], "next_cursor": null, @@ -851,20 +851,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 481, + "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "status": "completed" + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "status": "expired" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 454, - "result_count": 2 + "next_cursor": 481, + "result_count": 3 } ``` @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "status": "valid", - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "tx_index": 53, - "block_time": 1730152540, + "block_time": 1730747901, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "block_time": 1730152540 + "block_time": 1730747901 } ], "next_cursor": null, @@ -904,20 +904,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 523, + "event_index": 528, "event": "CANCEL_ORDER", "params": { - "block_index": 192, - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 193, + "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "tx_index": 58, - "block_time": 1730152570 + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_index": 59, + "block_time": 1730747933 }, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "block_time": 1730152570 + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "block_index": 193, + "block_time": 1730747933 } ], "next_cursor": null, @@ -931,21 +931,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 657, + "event_index": 685, "event": "ORDER_EXPIRATION", "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 + "block_index": 210, + "order_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_time": 1730748017 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 462, - "result_count": 3 + "next_cursor": 642, + "result_count": 4 } ``` @@ -955,22 +955,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 457, + "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 184, - "order_match_id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "block_time": 1730152467 + "block_index": 209, + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_time": 1730748003 }, - "tx_hash": null, - "block_index": 184, - "block_time": 1730152467 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": null, - "result_count": 1 + "next_cursor": 457, + "result_count": 2 } ``` @@ -982,27 +982,27 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 553, + "event_index": 562, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 196, + "block_index": 198, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "satoshirate": 1, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": 0, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "tx_index": 62, - "block_time": 1730152595, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_index": 64, + "block_time": 1730747953, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 196, - "block_time": 1730152595 + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 198, + "block_time": 1730747953 } ], "next_cursor": 272, @@ -1027,15 +1027,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,12 +1045,12 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 560, + "next_cursor": 569, "result_count": 8 } ``` @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "destination": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", "dispense_quantity": 10, - "dispenser_tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "dispenser_tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", "tx_index": 31, - "block_time": 1730152380, + "block_time": 1730747730, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", "block_index": 144, - "block_time": 1730152380 + "block_time": 1730747730 } ], "next_cursor": null, @@ -1098,20 +1098,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,12 +1122,12 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 561, + "next_cursor": 570, "result_count": 5 } ``` @@ -1146,19 +1146,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": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "tx_index": 25, "value": 66600.0, - "block_time": 1730152360, + "block_time": 1730747708, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "block_time": 1730152360 + "block_time": 1730747708 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "start_block": 0, "status": "open", - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "block_index": 155, - "block_time": 1730152422 + "block_time": 1730747781 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0" + "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0" }, "tx_hash": null, "block_index": 130, - "block_time": 1730152319 + "block_time": 1730747659 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "paid_quantity": 34, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "status": "valid", - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "block_index": 136, - "block_time": 1730152352 + "block_time": 1730747700 } ], "next_cursor": 190, @@ -1290,33 +1290,33 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 577, + "event_index": 586, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 199, - "destination": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b:0", + "block_index": 201, + "destination": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "status": "valid", - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "tx_index": 65, - "block_time": 1730152606, + "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "tx_index": 67, + "block_time": 1730747966, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "block_index": 199, - "block_time": 1730152606 + "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "block_index": 201, + "block_time": 1730747966 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", + "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", "status": "valid", - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", "tx_index": 38, - "block_time": 1730152407, + "block_time": 1730747767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", "block_index": 151, - "block_time": 1730152407 + "block_time": 1730747767 } ], "next_cursor": null, @@ -1370,19 +1370,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 670, + "event_index": 691, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 210, + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "msg_index": 1, "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,12 +1392,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 667, + "next_cursor": 688, "result_count": 11 } ``` @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", "status": "valid", - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", "tx_index": 9, - "block_time": 1730152285, + "block_time": 1730747624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", "block_index": 121, - "block_time": 1730152285 + "block_time": 1730747624 } ], "next_cursor": 65, @@ -1465,7 +1465,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `208` (str, optional) - The index of the most recent block to return + + cursor: `210` (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` @@ -1482,68 +1482,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, "confirmed": true }, { - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "previous_block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "previous_block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", "difficulty": 545259519, - "ledger_hash": "82b7aa0986153801d34b4a42f07b47c84e24685d8696f9422a2d92fad2a337b5", - "txlist_hash": "ba6fc33695ae4f6266c33514cb0cbee9d38105f78ba7594be4a4cee634d08674", - "messages_hash": "af54cefd796959cf5d8343303d9c7be0b765b1b89b693c6b5a9ab7374afb9606", + "ledger_hash": "e4e8339fce2218d1a5ddc2a90fdf07e8b4800127ff425c617a7e70f6a04c9db0", + "txlist_hash": "2acf87a58f95eb7d391c797c26d4fdc0e8c34152832aadf52db19be71ff97d62", + "messages_hash": "5317a4a193ea6e35dab92210ae429697b0ebfdc663e0066de91b68a9cdc54e11", "transaction_count": 1, "confirmed": true }, { - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "previous_block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_index": 208, + "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_time": 1730747999, + "previous_block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", "difficulty": 545259519, - "ledger_hash": "be00302ec692c6beb809ed6c76f726d178093e916290e232554035f57146b6f2", - "txlist_hash": "365902f962fea5f28dff03b680c5a8b9ca5fd1a33058de5de7ec14aeb225ed25", - "messages_hash": "0dc8852d7d7ecdd56b9c63c616455bc1c116fc865b45cb4b3cec60586168ca3a", + "ledger_hash": "ca54749c09a22fc16cb63c393bdde4d42610edc0efb20cb277f5445b0d0a7c0a", + "txlist_hash": "0c7332148c20bd19bd0b7d46b9b521cdd3c0594fda421f78c4f46b2383a13d15", + "messages_hash": "db6d2c4e59a1440fbf127766509b5f3e7f2de64ae246efd80bca3bc7133fe501", "transaction_count": 1, "confirmed": true }, { - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "previous_block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_index": 207, + "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", + "block_time": 1730747995, + "previous_block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", "difficulty": 545259519, - "ledger_hash": "c1b7edc78b076d79b3a5e4c72424a09d7ffe14fe75b38a4debc9d23fd9f5398d", - "txlist_hash": "4eeeef0e7bd3dd22665ee35f6e47962d68777493d6d40d4ee79327499645e336", - "messages_hash": "c37fc64064bacb9a17a6bdf16fc6c67d169079ff509f690e442a561396f85182", + "ledger_hash": "ef4e39670eea3dcb8fcde3f7042f2e87aae8022bf0c94f8dd61281a8a22ec8b2", + "txlist_hash": "a335d5634b33e980af06bcb66403817acb796fc0472b645b51285662c0d98ba8", + "messages_hash": "78bcba26ba47a3d9138309d68898ef315fbb4fe52bded9f17d7229662e911812", "transaction_count": 1, "confirmed": true }, { - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "previous_block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_index": 206, + "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_time": 1730747991, + "previous_block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", "difficulty": 545259519, - "ledger_hash": "724180ad76ff4c429d83777f69e676fb618e8bad0ff4f7e17e21edf0fc0eebf0", - "txlist_hash": "03f7a32a202bc5cc53417126d5f8a83d7f582f25e64c67cc15e08eb9953cfb98", - "messages_hash": "351bb1b903e1bfe9b921d195c89083d3a5b5eef4fa22f16ded1b900b4dc7f6c4", + "ledger_hash": "1f34cb4b0fc43a1c2a9789e8b2d9fecb67830180ec45e1f273845caa87677c5d", + "txlist_hash": "f96b248908a08236f55b59283d4173f8598e6802362627b801ff9decf985a98f", + "messages_hash": "94492191b231f60849bbf12b97ad3fed1bb4b5f443c72e40090a5d7d7d961f7f", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 203, - "result_count": 108 + "next_cursor": 205, + "result_count": 110 } ``` @@ -1562,7 +1562,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (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. @@ -1573,14 +1573,14 @@ Return the information of a block ``` { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1` (str, required) - The index of the block to return + + block_hash: `402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc` (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,14 +1603,14 @@ Return the information of a block ``` { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, "confirmed": true } @@ -1622,8 +1622,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return - + cursor: `75` (str, optional) - The last transaction index to return + + block_index: `210` (int, required) - The index of the block to return + + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1640,18 +1640,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1673,10 +1673,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1693,43 +1693,43 @@ Returns the events of a block { "result": [ { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null }, { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,18 +1740,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,11 +1786,11 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" } ], - "next_cursor": 670, - "result_count": 14 + "next_cursor": 691, + "result_count": 16 } ``` @@ -1799,7 +1799,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (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 @@ -1825,20 +1825,20 @@ Returns the event counts of a block "event_count": 1 }, { - "event": "NEW_TRANSACTION_OUTPUT", + "event": "ORDER_UPDATE", "event_count": 1 }, { - "event": "NEW_TRANSACTION", + "event": "ORDER_EXPIRATION", "event_count": 1 }, { - "event": "NEW_BLOCK", + "event": "NEW_TRANSACTION_OUTPUT", "event_count": 1 } ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 + "next_cursor": "NEW_TRANSACTION", + "result_count": 12 } ``` @@ -1847,7 +1847,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (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` @@ -1866,19 +1866,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,22 +1888,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,32 +1913,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" } ], "next_cursor": null, @@ -1951,7 +1951,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2000,17 +2000,17 @@ Returns the credits of a block { "result": [ { - "block_index": 208, - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "block_index": 210, + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2021,17 +2021,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 208, + "block_index": 210, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2042,21 +2042,21 @@ Returns the credits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 208, + "block_index": 210, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2073,7 +2073,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2111,17 +2111,17 @@ Returns the debits of a block { "result": [ { - "block_index": 208, + "block_index": 210, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2132,21 +2132,21 @@ Returns the debits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 208, + "block_index": 210, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2163,7 +2163,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `207` (int, required) - The index of the block to return + + block_index: `210` (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 @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, + "object_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "block_index": 210, "confirmed": true, - "block_time": 1730152654 + "block_time": 1730748017 } ], "next_cursor": null, @@ -2198,7 +2198,7 @@ Returns the expirations of a block Returns the cancels 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 cancels to return + Default: `None` + limit: `5` (int, optional) - The maximum number of cancels to return @@ -2216,14 +2216,14 @@ Returns the cancels of a block { "result": [ { - "tx_index": 58, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "tx_index": 59, + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", "status": "valid", "confirmed": true, - "block_time": 1730152570 + "block_time": 1730747933 } ], "next_cursor": null, @@ -2236,7 +2236,7 @@ Returns the cancels of a block Returns the destructions of a block + Parameters - + block_index: `195` (int, required) - The index of the block to return + + block_index: `196` (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 @@ -2254,16 +2254,16 @@ Returns the destructions of a block { "result": [ { - "tx_index": 61, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 62, + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "block_index": 196, + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730152592, + "block_time": 1730747945, "asset_info": { "divisible": true, "asset_longname": null, @@ -2284,7 +2284,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `203` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2315,15 +2315,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2353,7 +2353,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (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 @@ -2371,11 +2371,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2395,11 +2395,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2429,7 +2429,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `208` (int, required) - The index of the block to return + + block_index: `210` (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 @@ -2447,29 +2447,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2506,7 +2506,7 @@ Returns the dispenses of a block Returns the sweeps of a block + Parameters - + block_index: `194` (int, required) - The index of the block to return + + block_index: `195` (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 @@ -2524,17 +2524,17 @@ Returns the sweeps of a block { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "block_hash": "53cb12386a68a0eb2d712688e0a922b31c36cca2e8337ea04f21b73843540e08", - "block_time": 1730152360, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_hash": "1af624b5fc4c3fe0ed6a97e2d955ba36a0b213ea6380c2f43a84f96e0ae63cef", + "block_time": 1730747708, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4:1", + "utxos_info": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "block_hash": "5044c36de08b93fffc6876d3f7129b682a3aed38618d51b8a3a755666c378a72", - "block_time": 1730152540, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_hash": "698eec247b323bf27c48348f7f021ae7dc24a108e4ce40bfcfaac3018c013c1d", + "block_time": 1730747901, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "btc_amount": 2000, "fee": 10000, - "data": "0b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "data": "0b19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "supported": true, - "utxos_info": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29:0", + "utxos_info": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "status": "valid" } }, @@ -2759,24 +2759,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 58, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "block_hash": "7cdd71a5dc05b5bbe83295e9dd2b0c687e13e6d2964c7861b87dad729343aac4", - "block_time": 1730152570, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 59, + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "block_index": 193, + "block_hash": "201900c1299944b3c869485e3dfc67705758c4db5e653bf66c6c492b0eb31aca", + "block_time": 1730747933, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "data": "46ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", "supported": true, - "utxos_info": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7:1", + "utxos_info": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", "status": "valid" } }, @@ -2790,18 +2790,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 61, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "block_hash": "3f462ac5ddea322e484ed6d05aecc7c1920781323352104cfe685930eb32c4ee", - "block_time": 1730152592, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 62, + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "block_index": 196, + "block_hash": "2eca4b670a8c47e3bb1780c43bc4c23d42a549f7d7c8ff3019b1279257dfa2e7", + "block_time": 1730747945, + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282:1", + "utxos_info": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2830,18 +2830,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 196, - "block_hash": "5838e566e95890cb4624db9ee9ccaac5bdd5e02a1bd554532c8d360540c25acc", - "block_time": 1730152595, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 198, + "block_hash": "42c085812220d5241056746deaad4aea076a47d06363fec5634117f27176c750", + "block_time": 1730747953, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648:1", + "utxos_info": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2876,18 +2876,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "block_hash": "6efbde2429b5135643b2c45667e5daa038a188e1d611f50c96a0af39a2ac9d8a", - "block_time": 1730152419, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_hash": "2c17ed99ecf39afc57a222ab103aee2cfed83842250276c377fa363a460cfe08", + "block_time": 1730747777, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab:1", + "utxos_info": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2954,18 +2954,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", - "block_time": 1730152620, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_hash": "4b43b9a21880c7c69b6d184a07d6b13d50a2f311bace24dca8adc27b5265b8e7", + "block_time": 1730747979, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", + "utxos_info": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2996,18 +2996,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3049,18 +3049,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", - "block_time": 1730152624, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "block_hash": "15ad3be6594647eaa6fb60c1ea11a44312fd183115f57aa1ab0d8351773b7bac", + "block_time": 1730747983, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "02000000178d82231300000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", "supported": true, - "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", + "utxos_info": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -3090,18 +3090,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_time": 1730747999, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", + "utxos_info": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3149,24 +3149,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "block_hash": "62df80f065f42d63baeec0fc56cfa085a830945ca932cdeb4cd048b4e81e37f7", - "block_time": 1730152588, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "block_hash": "2c9447f37c4c67ee2d6a026c7c38cbddd8ab886e31b21b4e9e23bb8efa716555", + "block_time": 1730747941, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4017377656570206d7920617373657473", + "data": "04806f8fed86c68edbd4884f3786230f26561a53e3eb017377656570206d7920617373657473", "supported": true, - "utxos_info": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35:1", + "utxos_info": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "memo": "sweep my assets" } @@ -3181,7 +3181,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `75` (str, optional) - The index of the most recent transactions to return + + cursor: `77` (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` @@ -3198,18 +3198,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3221,18 +3221,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3267,8 +3267,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 73, - "result_count": 76 + "next_cursor": 75, + "result_count": 78 } ``` @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001011d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a0000000000ffffffff020000000000000000356a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168f0ca052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1024730440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde012103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001017ba043d50817a3683ce447042f521437e7213c2d970a3c64b90e4074a66582e10000000000ffffffff020000000000000000356a3390b022cf18e43189f294eff85931e18cae3787c9eae61ad669b8dde8f4ea08dca9f1235659069cdedc332470a3660d20001d65f0ca052a01000000160014798a41286d38d8c9e630455aadf358126716233e02473044022023fcb0bdbe64ce8c2e98e56e561a9e46f3649808143a474271a74819fc1100c602202a4b09a9f113dd36d4ef651602257627a34251af3879de4fec33d8158584205b0121038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb000000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3301,7 +3301,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "1d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a", + "hash": "7ba043d50817a3683ce447042f521437e7213c2d970a3c64b90e4074a66582e1", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,20 +3311,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168" + "script_pub_key": "6a3390b022cf18e43189f294eff85931e18cae3787c9eae61ad669b8dde8f4ea08dca9f1235659069cdedc332470a3660d20001d65" }, { "value": 4999990000, - "script_pub_key": "00147967f0a0bd9d33804ecfac05d869b2782a3467a1" + "script_pub_key": "0014798a41286d38d8c9e630455aadf358126716233e" } ], "vtxinwit": [ - "30440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde01", - "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "3044022023fcb0bdbe64ce8c2e98e56e561a9e46f3649808143a474271a74819fc1100c602202a4b09a9f113dd36d4ef651602257627a34251af3879de4fec33d8158584205b01", + "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" ], "lock_time": 0, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_id": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_id": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb" }, "unpacked_data": { "message_type": "order", @@ -3366,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43` (str, required) - Transaction hash + + tx_hash: `9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346` (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. @@ -3377,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "138349f715f3b77257e2c4ad6a7dd21e86edaa83fc46bc3d9e966c702eb2831d", + "hash": "c2d3493aeb9c13b2659ac6d65b27e272391cbc5df3509c051bed23b8318f189e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eff33b1f7f8e902221f13c27b12b7d32e190f805c939dcf9ab4de5baf7143247463d682a89b00ffe16d91d8dc9d1f" + "script_pub_key": "6a2e935a98e35e1bebb99fb1486397daf4fb55da6c6215bc512fe989599a71d3e14885d3e5ba56208d96318f44360597" }, { "value": 4999970000, - "script_pub_key": "00142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4" + "script_pub_key": "00146f8fed86c68edbd4884f3786230f26561a53e3eb" } ], "vtxinwit": [ - "3044022036beb3fb4d3dd6bd98282613490c124c3a14f85ae1b1f004c2f44bd429f4a588022051a6de46a46e50e2ae2b08532f731486c334ac19db5ba804a53f0921fb2e890701", - "023e3d46364a1fab486d12778805a80a614ea43362116ec89285ecd3f2893be2b9" + "304402207f7bfe45d258eb89edef9a23aded36dabb2b1ebeefb01b7b608f59f2fe84325a022004900e3dc278c0c10690e11f887be9fdf224a922cf199d680cc772636b9c52c701", + "03e265b4fb72b1001fbc192ef7e291b08a9d32fc465c312dead2fc97f7e2df062a" ], "lock_time": 0, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_id": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43" + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_id": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -3468,7 +3468,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `75` (int, required) - The index of the transaction + + tx_index: `77` (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. @@ -3479,18 +3479,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction + + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (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. @@ -3520,18 +3520,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3550,7 +3550,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `75` (int, required) - The index of the transaction to return + + tx_index: `77` (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 @@ -3570,32 +3570,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,20 +3606,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,24 +3656,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 670, + "event_index": 691, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 210, + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "msg_index": 1, "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,13 +3683,13 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 669, - "result_count": 12 + "next_cursor": 690, + "result_count": 14 } ``` @@ -3698,10 +3698,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3718,32 +3718,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,20 +3754,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,24 +3804,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 670, + "event_index": 691, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 210, + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "msg_index": 1, "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,13 +3831,13 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 669, - "result_count": 12 + "next_cursor": 690, + "result_count": 14 } ``` @@ -3846,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (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 @@ -3864,11 +3864,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3876,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3888,11 +3888,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3900,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -3922,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (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 @@ -3940,29 +3940,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -3999,9 +3999,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `75` (int, required) - The index of the transaction to return + + tx_index: `77` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4018,19 +4018,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,24 +4040,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,36 +4067,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], "next_cursor": null, @@ -4109,9 +4109,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4128,19 +4128,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,24 +4150,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,36 +4177,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], "next_cursor": null, @@ -4221,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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 @@ -4245,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4266,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4287,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4308,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4329,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4350,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4377,8 +4377,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses to return - + cursor: `75` (str, optional) - The last transaction index to return + + addresses: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - Comma separated list of addresses to return + + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4395,18 +4395,18 @@ Returns the transactions of a list of addresses { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4441,18 +4441,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_time": 1730747999, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", + "utxos_info": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4475,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4493,18 +4493,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 74, + "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "block_index": 207, + "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", + "block_time": 1730747995, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3ebc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa:0", + "utxos_info": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4527,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4545,18 +4545,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_time": 1730747991, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4579,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4597,18 +4597,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", + "block_time": 1730747986, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4631,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4649,8 +4649,8 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 69, - "result_count": 46 + "next_cursor": 71, + "result_count": 47 } ``` @@ -4659,10 +4659,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4679,31 +4679,77 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 659, - "event": "OPEN_ORDER", + "event_index": 678, + "event": "ORDER_MATCH", "params": { - "block_index": 207, - "expiration": 21, - "expire_index": 228, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, - "give_asset_info": { + "backward_asset": "XCP", + "backward_quantity": 1000, + "block_index": 209, + "fee_paid": 0, + "forward_asset": "BTC", + "forward_quantity": 1000, + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "match_expire_index": 229, + "status": "pending", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_block_index": 209, + "tx0_expiration": 21, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 54, + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_block_index": 209, + "tx1_expiration": 21, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_index": 76, + "block_time": 1730748003, + "forward_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 + }, + { + "event_index": 675, + "event": "OPEN_ORDER", + "params": { + "block_index": 209, + "expiration": 21, + "expire_index": 230, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "status": "open", + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, + "block_time": 1730748003, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", "locked": true, "issuer": null }, @@ -4723,24 +4769,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 658, + "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "block_index": 207, - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "block_index": 209, + "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", "quantity": 1000, - "tx_index": 74, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,103 +4796,73 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 - }, - { - "event_index": 657, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 - }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 656, - "event": "CREDIT", + "event_index": 673, + "event": "ORDER_MATCH", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "XCP", - "block_index": 207, - "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "quantity": 5000, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1730152654, - "asset_info": { + "backward_asset": "BTC", + "backward_quantity": 1000, + "block_index": 209, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 1000, + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "match_expire_index": 229, + "status": "pending", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_block_index": 194, + "tx0_expiration": 21, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_index": 60, + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_block_index": 209, + "tx1_expiration": 21, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_index": 54, + "block_time": 1730748003, + "forward_asset_info": { "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 654, - "event": "NEW_TRANSACTION", + "event_index": 670, + "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_index": 207, - "block_time": 1730152654, - "btc_amount": 0, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "destination": "", - "fee": 10000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "block_index": 209, + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_time": 1730748003 + }, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 650, - "result_count": 237 + "next_cursor": 668, + "result_count": 242 } ``` @@ -4855,7 +4871,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2,bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga,bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4` (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 @@ -4871,18 +4887,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, "asset_info": { "divisible": true, "asset_longname": null, @@ -4892,22 +4908,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +4933,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 210, + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +4958,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730748020.6178741, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, + "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +4995,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -4992,7 +5008,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -5012,7 +5028,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5036,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5051,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,16 +5066,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5069,10 +5085,10 @@ Returns the balances of an address "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5096,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5097,7 +5113,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -5110,9 +5126,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5122,7 +5138,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49944000" } ], "next_cursor": null, @@ -5135,7 +5151,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5184,17 +5200,17 @@ Returns the credits of an address { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 209, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 5000, - "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "quantity": 3000, + "calling_function": "order expired", + "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -5202,20 +5218,20 @@ Returns the credits of an address "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, { - "block_index": 206, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -5226,17 +5242,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 207, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730747995, "asset_info": { "divisible": true, "asset_longname": null, @@ -5247,50 +5263,50 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 201, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, + "block_index": 207, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "asset": "XCP", + "quantity": 5000, + "calling_function": "cancel order", + "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747995, "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "1000.00000000" + "quantity_normalized": "0.00005000" }, { - "block_index": 192, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "tx_index": 58, + "block_index": 203, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "asset": "MPMASSET", + "quantity": 100000000000, + "calling_function": "issuance", + "event": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747979, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset B", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "1000.00000000" } ], - "next_cursor": 59, - "result_count": 19 + "next_cursor": 65, + "result_count": 20 } ``` @@ -5299,7 +5315,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5337,17 +5353,17 @@ Returns the debits of an address { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 209, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -5358,17 +5374,17 @@ Returns the debits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5379,38 +5395,38 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "divisible": true, "asset_longname": null, @@ -5421,21 +5437,21 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5452,7 +5468,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address of the feed + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5503,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -5506,9 +5522,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5532,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730747705, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5546,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -5549,14 +5565,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "43020304a8d69e758c8cfe4f200d3db11286a5b782bdf8270be5b1ce40029012", + "tx_hash": "9830c503fafb409b51e566cf014fb1ede5d9d44b205bdfbcf06bfc5aba5bde71", "block_index": 112, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730152253, + "block_time": 1730747593, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5587,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -5589,11 +5605,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5617,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -5613,11 +5629,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5641,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5637,11 +5653,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5665,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5661,11 +5677,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5689,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "divisible": true, "asset_longname": null, @@ -5685,11 +5701,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5713,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5709,7 +5725,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 19, + "next_cursor": 20, "result_count": 12 } ``` @@ -5719,7 +5735,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034` (str, required) - The address to return + + address: `bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6` (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 @@ -5738,10 +5754,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", "block_index": 151, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", + "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5749,11 +5765,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152407, + "block_time": 1730747767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5771,7 +5787,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5790,11 +5806,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5818,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5814,11 +5830,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5842,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5838,11 +5854,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5866,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5862,11 +5878,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +5890,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5886,11 +5902,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 71, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +5914,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152624, + "block_time": 1730747983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5920,7 +5936,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034` (str, required) - The address to return + + address: `bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +5964,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +5993,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +6004,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +6014,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,10 +6029,10 @@ Returns the dispensers of an address "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6041,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6051,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6060,7 +6076,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -6073,9 +6089,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6100,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6110,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6132,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -6134,21 +6150,21 @@ Returns the dispenses of a source { "result": [ { - "tx_index": 63, + "tx_index": 65, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6172,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6187,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6185,19 +6201,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6221,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6236,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6250,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6270,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6285,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6307,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to return + + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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 @@ -6309,21 +6325,21 @@ Returns the dispenses of a destination { "result": [ { - "tx_index": 63, + "tx_index": 65, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6347,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6362,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6360,19 +6376,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6396,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6411,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6425,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6445,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6460,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6482,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -6487,19 +6503,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6523,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6538,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6552,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6572,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6587,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6609,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to return + + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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` @@ -6614,19 +6630,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6650,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6665,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6679,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6699,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6714,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6736,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2` (str, required) - The address to return + + address: `bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga` (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 @@ -6738,17 +6754,17 @@ Returns the sweeps of an address { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6778,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6793,15 +6809,15 @@ Returns the issuances of an address { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6832,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6860,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730747814, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +6888,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730747801, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +6916,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730747796, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "9083ecad51d2ce0aeb1ab41b80c7db2a58cda52c3031dfb8b79d2bb2689cf70a", + "tx_hash": "c82ddebc2f4ef337dc204f70389447a739640708fd7f47fb2eae72a15d252b45", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +6944,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152434, + "block_time": 1730747792, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +6959,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The issuer or owner to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,25 +6982,25 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -6992,16 +7008,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7025,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7042,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730747697, + "last_issuance_block_time": 1730747700, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7059,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730747663, + "last_issuance_block_time": 1730747694, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7074,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The issuer to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -7081,25 +7097,25 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -7107,16 +7123,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7140,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7157,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730747697, + "last_issuance_block_time": 1730747700, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7174,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730747663, + "last_issuance_block_time": 1730747694, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7189,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The owner to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,25 +7212,25 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -7222,16 +7238,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7255,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7272,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730747697, + "last_issuance_block_time": 1730747700, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7289,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730747663, + "last_issuance_block_time": 1730747694, "supply_normalized": "0.00000019" } ], @@ -7288,8 +7304,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return - + cursor: `75` (str, optional) - The last transaction index to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7306,18 +7322,18 @@ Returns the transactions of an address { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7352,18 +7368,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_time": 1730747991, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7387,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7386,7 +7402,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7404,18 +7420,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", + "block_time": 1730747986, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7439,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7438,7 +7454,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7456,18 +7472,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", - "block_time": 1730152624, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "block_hash": "15ad3be6594647eaa6fb60c1ea11a44312fd183115f57aa1ab0d8351773b7bac", + "block_time": 1730747983, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "02000000178d82231300000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", "supported": true, - "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", + "utxos_info": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7491,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7490,18 +7506,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", - "block_time": 1730152620, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_hash": "4b43b9a21880c7c69b6d184a07d6b13d50a2f311bace24dca8adc27b5265b8e7", + "block_time": 1730747979, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", + "utxos_info": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7525,8 +7541,8 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 62, - "result_count": 31 + "next_cursor": 64, + "result_count": 32 } ``` @@ -7535,7 +7551,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -7554,20 +7570,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7592,7 +7608,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7621,9 +7637,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7638,7 +7654,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7664,9 +7680,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7681,7 +7697,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,10 +7722,10 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7717,14 +7733,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7749,25 +7765,25 @@ Returns the orders of an address "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7784,33 +7800,33 @@ Returns the orders of an address }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7827,8 +7843,8 @@ Returns the orders of an address }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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", @@ -7845,7 +7861,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The source of the fairminter to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +7886,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +7914,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +7923,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +7951,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730747697, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +7963,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +7991,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730747663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +8003,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8031,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730747659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8043,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8071,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8093,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8111,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8119,22 +8135,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730747694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8143,22 +8159,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730747679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8167,22 +8183,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730747666, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8191,22 +8207,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cd779281665ec54a0657c909a5a5888c98253660c075af8adf487672735a1d69", + "tx_hash": "50b49611e9c13e2db8dcfedef4d55bf370eb017754c034f804dc03befeac954b", "tx_index": 15, "block_index": 127, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152307, + "block_time": 1730747648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8215,22 +8231,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8249,7 +8265,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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` @@ -8268,22 +8284,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8304,7 +8320,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0` (str, required) - The utxo to return + + utxo: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8324,8 +8340,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset_info": { "divisible": true, "asset_longname": null, @@ -8338,12 +8354,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8378,13 +8394,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will make the bet - + feed_address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will make the bet + + feed_address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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) @@ -8438,6 +8454,8 @@ Composes a transaction to issue a bet against a feed. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8451,12 +8469,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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) @@ -8505,6 +8523,8 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8516,19 +8536,20 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, - "text": "\"Hello, world!\"" + "text": "\"Hello, world!\"", + "skip_validation": false }, "name": "broadcast", "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "020000000001016bbdac07a76d292a49995d8bf8de89da525d9b32d2ab29a52feb98c105f20576000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29b93f99a28b4bb16aef7b085834e88cc7ffc295c6ea9bc30651365677485eea265eb32240ea4dc2f70483ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985772, + "btc_fee": 14228, + "rawtransaction": "02000000000101588a89abdd6d686b998a6dc7c3f8c941a4b876cba76960e30dffed5ce3c8fae600000000160014798a41286d38d8c9e630455aadf358126716233effffffff0200000000000000002b6a298bb510e9b688979f16b5a858d82a242440cc9d0822fc31934510d638e80ec71c47513a437d54b3c6756cba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8545,13 +8566,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending the payment - + order_match_id: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending the payment + + order_match_id: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb` (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) @@ -8596,6 +8617,8 @@ Composes a transaction to pay for a BTC order match. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8607,23 +8630,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca436714468448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "data": "434e5452505254590bc9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837fc3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", "btc_in": 5000000000, - "btc_out": 3000, - "btc_change": 4999978921, - "btc_fee": 18079, - "rawtransaction": "020000000001013ba8474dba78d5b2a7418f254db65d0f667eb6846cf0a2d1a37fec518310b597000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03b80b0000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a100000000000000004b6a4975cbfbf03e30e31bb5e20d495fb01c2653599b2a09b993f3207ec6a8201d7607d5182a30e2d2fa8df227d622eecd6eb3b30958a79f37fd67972e55d5fc313b9c11b791efbb1facff6ca99f052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_out": 1000, + "btc_change": 4999980891, + "btc_fee": 18109, + "rawtransaction": "02000000000101a72b29e52c3b0238e3d87f4bd9b453964eb6a5e05d0d2a506c6a2a031bc7853f00000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e803000000000000160014798a41286d38d8c9e630455aadf358126716233e00000000000000004b6a49ca9c9fbe4157dd8e5c65ba98153af7bbec77c1cdce96a14ba270329329ebce70252b14a21261a2f3e4bc8da943c5d0c826e271f4b83284ebe2d8a38ccd13b530be776f45383e9ea0525ba7052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", "status": "valid" } } @@ -8631,12 +8655,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address with the BTC to burn + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -8684,6 +8708,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8695,28 +8721,29 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 1000, - "overburn": false + "overburn": false, + "skip_validation": false }, "name": "burn", "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985793, - "btc_fee": 13207, - "rawtransaction": "02000000000101b2eea65ffc130ffefef3cddf867d62b6a3a3d85413826b0f9a9bec147e2af13f000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000" + "btc_change": 4999985771, + "btc_fee": 13229, + "rawtransaction": "020000000001010693eb3841c7284d6486e8f298589a8e35b69de57bd53de29858d50baf119faf00000000160014798a41286d38d8c9e630455aadf358126716233effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000" } } ``` -### 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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f` (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) @@ -8761,6 +8788,8 @@ Composes a transaction to cancel an open order or bet. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8770,36 +8799,16 @@ Composes a transaction to cancel an open order or bet. ``` { - "result": { - "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" - }, - "name": "cancel", - "data": "434e5452505254594694d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "020000000001017607181c41ad743b880f28175184e2c04167fd1d94fd25a7209c9ea321fb3887000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29303ebad3021b4d6138b5db967d05db545eedba6d0c675259c45a095f6fd75b9424d81427e4e3aaa10e83ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "status": "valid" - } - } - } + "error": "['incorrect source address', 'offer not open']" } ``` -### 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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -8847,6 +8856,8 @@ Composes a transaction to destroy a quantity of an asset. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8858,10 +8869,11 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -8875,9 +8887,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986323, - "btc_fee": 13677, - "rawtransaction": "02000000000101187d4666a3e0d464a2bfa34950f8e7420dc6a833e8186850829a30dbb5ddc164000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000226a2094d7a3f3bbcd35ff65faa7e260b5ef6c46b4bb390ea97ca5c8ec89f01b2ffc9493bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999986301, + "btc_fee": 13699, + "rawtransaction": "02000000000101e62af58091a274b9e962eb4269b174581d057208c213ce62c5f6d94ffe11469300000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000226a2084f1b46a0a401279cd1f07e2844c86a16b33bf0abbdfcdd392f198748b9091227dbc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8892,12 +8904,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv` (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) @@ -8951,6 +8963,8 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -8962,7 +8976,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8970,6 +8984,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "status": 0, "open_address": null, "oracle_address": null, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -8984,9 +8999,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920236, - "btc_fee": 14264, - "rawtransaction": "02000000000101d1c09a210e2f9eb576d8d0c26d620bd0524b583f80fab9276b3596b96e02afae01000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7effffffff0200000000000000002c6a2a727cb1709e366477fd16c83cc5d4d3816740f1707e9354508ff03c7fc05a03221c9533b31becd82add28ecc9092701000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7e02000000000000", + "btc_change": 4949920213, + "btc_fee": 14287, + "rawtransaction": "020000000001016bc493048e8304d83f9a97127473d44c0ae788545397d55d27b36d0e80a7fdce0100000016001448083d67f6b413b14d42a89a6e66d09385fe2a94ffffffff0200000000000000002c6a2a58f5bf22d68657e615981216404bca840022736410c2d967559ecf0a235149cfe959d3593a92668e19cbd5c909270100000016001448083d67f6b413b14d42a89a6e66d09385fe2a9402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9007,12 +9022,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -9060,6 +9075,8 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9071,14 +9088,15 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", + "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9095,9 +9113,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101bccddcc7c292c9f93bd0a857d43e2f251b8660b79784967209514551c8d90556000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2116d6d2bf8ee338938cd8bb42921a91b70dcb91491707280fba52b2d7971bd7428158bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "0200000000010123c07633cdc00513902a5a00b5f835aa9f6c9454ccda949592efe70fc42125bc00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21f5a744d8c07985b3689f2e41a85e7cfc40cd1e7a8364446ebfc03120c781ed8b6e42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9113,15 +9131,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -9175,6 +9193,8 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9186,23 +9206,24 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "transfer_destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "lock": false, "reset": false, "description": null, + "skip_validation": false, "quantity_normalized": "0.00001000" }, "name": "issuance", "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983723, - "btc_fee": 15731, - "rawtransaction": "02000000000101139de7476f55fdf21e92052391719656f33b7347ea131643e6b1453a536795c7000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0322020000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a10000000000000000236a21ceeba0a4b3fe260c096002670704f57eedf714525e8020461d52d24f2d7fbe50646bb2052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999983697, + "btc_fee": 15757, + "rawtransaction": "02000000000101cd29aff4233d61afb4aaa8b223de27eea6f55718dd7f4d4dde73749a9ab9db9300000000160014798a41286d38d8c9e630455aadf358126716233effffffff032202000000000000160014798a41286d38d8c9e630455aadf358126716233e0000000000000000236a213d66f0d40fc5df290ee6fa7b13a5163a683e1015338e6c1aa3d063b808df6c256151b2052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9226,14 +9247,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}{&memos}{&memos_are_hex}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9287,6 +9308,8 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9298,43 +9321,44 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", 1 ], [ "MPMASSET", - "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", 2 ] ], "memo": null, - "memo_is_hex": false + "memo_is_hex": false, + "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807967f0a0bd9d33804ecfac05d869b2782a3467a1805511f1f6819b94a0094d338694640cbee5b8969d40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280798a41286d38d8c9e630455aadf358126716233e8056d261ee75bba4a6fddbe43bfa34388e116f04b140000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945404, - "btc_fee": 52596, - "rawtransaction": "020000000001049e5f6c01f025eb801bd2f83123f1fbe1bc26d82731c5e989f8827fd1c96545ca000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffff1945c0490ae4bbe569a4e9478ec268003a1461dd53616cbc78fa81d421f8ee6000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffffa6f704e1baaf5c6952e2ea6c20f6981d6dc033886747b9cf110bf2877cd5b1a000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffe4f980087f32a896e9ad9c82620f463004e29fc7dfad97e2a3ee49ab2d75c415000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03e80300000000000069512102f405a8ba5cf6a2b810a6c3550b257049f2d6e1b083639fb7cdf85a7788a4b72d210255bb00ed856a417842a099b3da1b48400df47e096af35ec60cb900f2caafc54d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102eb05a8ba5cf6a2b81075c3578b5c17b9524f7c83032d501bc82433c5f08e835c2103321a81b8949bb7f9d93439ba9728ced469f8c0ecd265c3860cb90511aa2701df2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aebcf216a8040000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000000000000", + "btc_change": 19999945318, + "btc_fee": 52682, + "rawtransaction": "02000000000104f607fc6ac73694cbdf0482fc57e55e793df947b5c0cdfecb6d99670ba9fab85f00000000160014798a41286d38d8c9e630455aadf358126716233effffffffea46021e7f378ebcfac51cf9082b31d34be08a2608735226c3f963b6b2a3a67d00000000160014798a41286d38d8c9e630455aadf358126716233effffffff8835858931a80328613ab84b09665c8994a0f2c0289187ca6edd9491159d910200000000160014798a41286d38d8c9e630455aadf358126716233effffffff94fef9c94436e0efdd17dce4c9f426289832f5ee2c71af4d11d77dde1470e2a500000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e80300000000000069512102096f9b0d83e89bf9655c72633c3bb350fae8105f164efb321f007a926fe9b0512103c91047b9b7071ea9b06ea4d25b1ebe8b3fd43978e18d372225145b06f58bba2421038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102166f9b0d83e89bf9658f7261bc423911d2a12887dfa8cb7745a989ca7d8ea6e52103ea2ec6ef6566f0dc0bca022f80fa85710becb7698e89866225145ee595037edc21038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053ae66f216a804000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9345,12 +9369,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -9401,6 +9425,8 @@ Composes a transaction to place an order on the distributed exchange. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9412,13 +9438,14 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", "get_quantity": 1000, "expiration": 100, "fee_required": 100, + "skip_validation": false, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9429,7 +9456,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9441,9 +9468,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985208, - "btc_fee": 14792, - "rawtransaction": "02000000000101ab499e5a3d8196519c12febc23e233920eb19d00e35c78dca0789e44b26cdac2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000356a33bece1d3d171adcd7284dfef1ab9a46411240de9c5909b634b7850938f967c24dbdbf6ce5d336636d946de16548c2ee67eca42a38b8052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985184, + "btc_fee": 14816, + "rawtransaction": "0200000000010124dfe6e039b3921bbc77b01d27d9873e525c8a16976b90a07bdaf5bc31716f5b00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000356a3371c8fe2a15008d4be5e706e90ca609224989c3cc964e23a4902eb765a38933c6eed72793e62fe224a98cbb25bda2593bb8874420b8052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9464,13 +9491,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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 @@ -9523,6 +9550,8 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9534,13 +9563,14 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 1000, "memo": null, "memo_is_hex": false, "use_enhanced_send": true, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -9551,19 +9581,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "434e54525052545902000000000000000100000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985501, - "btc_fee": 14499, - "rawtransaction": "02000000000101b2623bad63243f7a0e974d94b0c223add9b0b80a5e255266b92ba264c7a45311000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000306a2ea21d7eb608cf78cca691ce6c36f4842f50d439486b60d2e6b88abcceecd2cedf427af27fa2b7385ff2398e091e045db9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985478, + "btc_fee": 14522, + "rawtransaction": "02000000000101dd7bda3b4b59bf32599c05b52f5a76f7a3eec2469f444953195de95e76c79e3600000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000306a2edf6b001f2be4f015ab53c1442c78b1eca279ddbe2c64fadff42ff8f738a6c117a466508a433bc31a81abeedcb1be46b9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "quantity_normalized": "0.00001000" } @@ -9572,13 +9602,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending - + destination: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending + + destination: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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 @@ -9625,6 +9655,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9636,23 +9668,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "flags": 7, - "memo": "FFFF" + "memo": "FFFF", + "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904805511f1f6819b94a0094d338694640cbee5b8969d07ffff", + "data": "434e545250525459048056d261ee75bba4a6fddbe43bfa34388e116f04b107ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101cf72977222916e5cfff737c5d75904919a603da30c94d8ca213d849c9728dd9b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2190fbdb1d8fa53db0eb2a8fc10d632c18bddc537f624460499580413ae7e1bfc5bd58bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "02000000000101c0d0595a484999dd4ccb63f5fedb9bd64b6612050031ce1fa0c4528d36107e7400000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21eccfda5fac6fc9abc27a01363e983824a066affd4fe482cd2a31ceef0f70690c8a42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "flags": 7, "memo": "ffff" } @@ -9661,13 +9694,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4` (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` @@ -9713,6 +9746,8 @@ Composes a transaction to send BTC to a dispenser. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9724,17 +9759,18 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "quantity": 1000 + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "quantity": 1000, + "skip_validation": false }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812619, - "btc_fee": 14381, - "rawtransaction": "02000000000101065e2fae24d3ed96a884712623a3a8e194a3cdde3cb588023317f389f6ba83df030000001600145511f1f6819b94a0094d338694640cbee5b8969dffffffff03e8030000000000001600142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b400000000000000000c6a0a2e4844bdce5321afdbce8b250827010000001600145511f1f6819b94a0094d338694640cbee5b8969d02000000000000", + "btc_change": 4949812595, + "btc_fee": 14405, + "rawtransaction": "02000000000101cfeb54fb835f586e9fee34083c13f100ad5e40abab9d2db77b969bee38bf25960300000016001456d261ee75bba4a6fddbe43bfa34388e116f04b1ffffffff03e8030000000000001600146f8fed86c68edbd4884f3786230f26561a53e3eb00000000000000000c6a0a070e7e3301a812d6c094732508270100000016001456d261ee75bba4a6fddbe43bfa34388e116f04b102000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9746,12 +9782,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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: `` @@ -9829,6 +9865,8 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9840,7 +9878,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9858,6 +9896,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "lock_quantity": false, "divisible": true, "description": "", + "skip_validation": false, "price_normalized": "0.00000010", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9869,9 +9908,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985443, - "btc_fee": 14557, - "rawtransaction": "02000000000101ab2eb3e3483c4039cce505f85cc0563cd331a85d45dff80d9bf880fe20828bb2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000316a2f0dec8a46d77959fb639a45d020ade0350620490390b08869ef4325180cb952a68b03d1100c753808ff73cd2066b25e23b9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985419, + "btc_fee": 14581, + "rawtransaction": "020000000001010e9c33902a07fb4f102bc3fd401322a78f6828385e29db5e84046bfc381e056100000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000316a2fa44097f62f981fe894b248a1b4bccb99d1e0eaad79102f2d287beb67cdf995490d1ee729d1202cb954f22295a410fe0bb9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9905,12 +9944,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be minting the asset + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -9958,6 +9997,8 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -9969,13 +10010,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTC", "quantity": 1, + "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9985,9 +10027,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": 4999987028, - "btc_fee": 12972, - "rawtransaction": "02000000000101268cd03227a87269a296132dced7a43ec578c67b187578cdda41ab4861774127000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000166a14eebd7268248a3ec571ad08ef295683791a5dd5c154bf052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999987006, + "btc_fee": 12994, + "rawtransaction": "0200000000010153f12858ce00c24c07a95ba3933919f2967a2ac071c722830597187d4b2c6b5c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000166a141971f5e8107b61f619f206bdd372e58edc28e5c53ebf052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10001,15 +10043,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address from which the assets are attached + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1` (str, optional) - The utxo to attach the assets to + + destination: `c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10055,6 +10097,8 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -10066,10 +10110,11 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "asset": "XCP", "quantity": 1000, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -10080,12 +10125,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c393464323835333663333666383932316563353335643561336532633533386665613265306561663936663138663536666536323861323436376233636435623a317c5843507c31303030", + "data": "434e54525052545964626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c633334383666393139326532336538346332346636376632303264656662383531386233613432333632633937343230353335343563633762663336396363623a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918400, - "btc_fee": 78600, - "rawtransaction": "02000000000106ca9abaac6407cea4a26e4325a5b6b605c16a5f49ad8b20edb751d3f839e60f01000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff2b86ecbeb4d73419de2ce8914ce12bc97ad3c5f326f3974cc97b9b093a3a7286000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff5efbf12951347af1bc0c104cf84743ee371bbf9077467d9da40739605f1e7c7b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff10fe6ccda7c1f8982d6c4e3ff1bbe67e2821d56b3b69cba67ccfd95d0d080b28000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff101bb44012e5c305a391479949891b545cbdbd18c3e2f7116a1854b927bcea27000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffb0d9bedd8c9fdd0eadc8ba2c4a7d994422c13be06f07d20dc8f80ad0497d221d000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff04e80300000000000069512103db6eed4d1970d0de5bf33f4147e75816cf60917a132dbe1fd32db973c4ef5847210387118c8bf69ca93d3ddb93f8b8d0f234f045d2b0dab2d5cac29c2aba24522f1d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102db6eed4d1970d0de5ba13e1103f5515ecd689a755679b21a8879ef7587e206ac2102841d9994f6ddfa69328a84f5fcd1a66de64585e1cabd948e9a9a7abe2b052f502103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512103f16eed4d1970d0de5bf4391757a9581ba71aaf6a527ab74ebd18dc10b58133e32103b725fff197ef9f5957ebe2cccab797558070b387af8ba6b6fba84e881c671c9d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053ae406d22fc060000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000002000002000000000000", + "btc_change": 29999918271, + "btc_fee": 78729, + "rawtransaction": "020000000001066ad743acd4c3488452e3ee8bb7634147730540d56e888c8814d16c0cd3ef508300000000160014798a41286d38d8c9e630455aadf358126716233effffffff51e54678a806081a6fe5d1697bf5d819fceddc70791f0c1b1b1e8b3da735ac4200000000160014798a41286d38d8c9e630455aadf358126716233effffffffb7f54f082df2dbe41239ef3f628814556b9dde233d80afaeb7237db0fde9985a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff80772f7918c5df9e5cdd47db19883a6cf705b0dbf208982e63f1bc81a7b80f2a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff5d55536296669524e105dce47547815bee5daae8145e2aa337ea8b2892d715b200000000160014798a41286d38d8c9e630455aadf358126716233effffffffbab42c6da624e5db2accd8e2dbab3d1ebc5b33c015cf44b07b00c242946e7b8c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff04e80300000000000069512102bb5cd9b6449af1a66421e6eab35daf5c602fd8281009b42d5a874d16ae6dfce22103b26d824a5ab2772127a04b2b92fc80435208c3bf52adfda5fd88bcc39dc02c3721038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512103bb5cd9b6449af1a66474bdbba41bad48686382635e5df07e04c70b52a46da9bf2102a332831f50bd317670e81e7393e9de11515e95f904abbaecfdd8bf99cd9523d021038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102915cd9b6449af1a6647ce7eaa313af510814b12d5b0bf67962f53b60c008cfe92103c10ab62e68df021744da2d45a18ae726656ca5cc379e8ed99ebb88fbaba6154921038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aebf6c22fc06000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10097,13 +10142,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to detach the assets to + + utxo: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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 @@ -10150,6 +10195,8 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + + skip_validation (bool, optional) - Skip validation of the transaction + + 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. @@ -10161,10 +10208,11 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -10175,12 +10223,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964323432353561353564363832353735323130626261393164616434666538643536336138316664346234663137353665343164633566636538643966383865373a307c62637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c5843507c31303030", + "data": "434e54525052545964663235336432393633636530626466613364393765376639343939393035636337323166303332386633373335393138376466343566343639306533636338323a307c626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030275, - "btc_fee": 46725, - "rawtransaction": "0200000000010300dce77bb944104741936aa0b2b4b265b003e9de46966f0d609e03bc7b0b968901000000160014f9f761de6a26b38c86a3f54543766007cab6e30ffffffffffdbd816d4d7e0daa457fcbda1e6f3ec2bd72cdf3639c9bcafb60916c861b28e300000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff940d2ffcf377a103eb93ce0505be650e0aef5a5f64e5701e6aeeb1560331a58001000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff04e80300000000000069512103c010e4c250f47059c81bf89b12fd3195b90f36696ef58e25d277a20a1ed3deda2103b8e00811d3b48a87c103c6bf3db54b399759dee65ada72df8c304d2ed768e69321038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103c010e4c250f47059c84aaccc45f060cdea026a3a61fd8b6e8526e14e4dc08fba2102b8bf0000d0b98d8ccc0290f860bf433c82478bf758d829d8c8325a7d836df5b621038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103ea10e4c250f47059c84aab9855f17788d479022367f78b22e745933a7cb1bfa3210281d16c70b780ece2f967f3890ed47308f13dea846ebc43e8b906281ae60c854c21038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aec3770b2701000000160014f9f761de6a26b38c86a3f54543766007cab6e30f02000002000002000000000000", + "btc_change": 4950030198, + "btc_fee": 46802, + "rawtransaction": "0200000000010308f4bc439a034ae357a0b066c462aba7579d028af8c277d66978b0fb41a8f107010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffffd08e44cbd77cf280412d6f3fb45d91e21369d183406a69056a85a3138fd6f3fe000000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff65bc2abfe66805b909bc84c5fe7c8401e45d00e6d2aae94782884b09ffca5aa7010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff04e80300000000000069512102c02d27c0a64ddc2f3f61210dd246a13fe7630b18c1694fec0eface3f4907879c2102dba31df58d98a65d17e5ddda86a09d86161f89a2a7614d4683db37fbcf6957f7210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512102c02d27c0a64ddc2f3f30210bd14cf568ed365b4396631df40af88f2f4141d2db210394fc5dbb86d3fb5550f0c883d1a288d1114983a9e1601d09dc843cbacc6a549e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512103ea2d27c0a64ddc2f3f61214c8246b6718616680795691db8689bfd5b7030e2282103ecc524c1b4a19f6d2286beedb491fbb6252db1c494567e73baea0fccab0f635e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953ae76770b27010000001600144de620b4af02f945f107cdb328406ee6e7a25bfc02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10249,42 +10297,42 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "owner": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "owner": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset", - "first_issuance_block_index": 198, - "last_issuance_block_index": 198, + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730152603, - "last_issuance_block_time": 1730152603, + "first_issuance_block_time": 1730747962, + "last_issuance_block_time": 1730747962, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -10292,16 +10340,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "owner": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "issuer": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "owner": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "divisible": true, "locked": false, "supply": 100000000000, @@ -10309,16 +10357,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730152430, - "last_issuance_block_time": 1730152430, + "first_issuance_block_time": 1730747789, + "last_issuance_block_time": 1730747789, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -10326,8 +10374,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" } ], @@ -10355,8 +10403,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -10364,8 +10412,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730152289, - "last_issuance_block_time": 1730152299, + "first_issuance_block_time": 1730747628, + "last_issuance_block_time": 1730747640, "supply_normalized": "100.00000000" } } @@ -10396,7 +10444,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10404,14 +10452,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10419,7 +10467,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -10437,7 +10485,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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. @@ -10449,9 +10497,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { @@ -10461,7 +10509,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49944000" } ], "next_cursor": null, @@ -10503,9 +10551,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10520,7 +10568,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10546,9 +10594,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10563,7 +10611,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10588,10 +10636,10 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10599,14 +10647,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10631,25 +10679,25 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10666,33 +10714,33 @@ Returns the orders of an asset }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10709,8 +10757,8 @@ Returns the orders of an asset }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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", @@ -10754,27 +10802,27 @@ Returns the orders of an asset { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10794,13 +10842,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10814,7 +10862,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10834,13 +10882,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10854,7 +10902,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10872,10 +10920,90 @@ Returns the orders of an asset "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 3 + "result_count": 5 } ``` @@ -10933,21 +11061,21 @@ Returns the credits of an asset { "result": [ { - "block_index": 194, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, + "event": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -10955,20 +11083,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "event": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -10976,20 +11104,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -10997,20 +11125,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "event": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11022,16 +11150,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11086,17 +11214,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 208, + "block_index": 210, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -11107,17 +11235,17 @@ Returns the debits of an asset "quantity_normalized": "15.00000000" }, { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 209, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -11128,17 +11256,17 @@ Returns the debits of an asset "quantity_normalized": "0.00001000" }, { - "block_index": 206, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 208, + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -11149,17 +11277,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 207, + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730747995, "asset_info": { "divisible": true, "asset_longname": null, @@ -11170,17 +11298,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -11260,14 +11388,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -11282,20 +11410,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -11310,20 +11438,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -11338,20 +11466,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -11366,7 +11494,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730152289, + "block_time": 1730747628, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11399,11 +11527,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11411,7 +11539,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -11423,11 +11551,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11435,7 +11563,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -11447,11 +11575,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 74, + "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "block_index": 207, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11459,7 +11587,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730747995, "asset_info": { "divisible": true, "asset_longname": null, @@ -11471,11 +11599,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11483,7 +11611,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -11495,11 +11623,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11507,7 +11635,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "divisible": true, "asset_longname": null, @@ -11519,8 +11647,8 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 14, - "result_count": 9 + "next_cursor": 15, + "result_count": 10 } ``` @@ -11558,9 +11686,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11569,7 +11697,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11579,7 +11707,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -11595,9 +11723,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11606,7 +11734,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11616,7 +11744,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730747723, "asset_info": { "divisible": true, "asset_longname": null, @@ -11632,9 +11760,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11642,10 +11770,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11653,7 +11781,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730747763, "asset_info": { "divisible": true, "asset_longname": null, @@ -11669,18 +11797,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11690,7 +11818,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -11715,7 +11843,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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` @@ -11728,9 +11856,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11739,7 +11867,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11749,7 +11877,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -11799,7 +11927,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11807,7 +11935,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11816,7 +11944,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11824,7 +11952,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11833,7 +11961,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11841,7 +11969,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11850,7 +11978,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11885,29 +12013,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11922,7 +12050,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -11936,27 +12064,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11971,7 +12099,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730747751, "asset_info": { "divisible": true, "asset_longname": null, @@ -11985,19 +12113,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12005,7 +12133,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12020,7 +12148,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -12034,19 +12162,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12054,7 +12182,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12069,7 +12197,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -12143,10 +12271,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12171,7 +12299,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12211,22 +12339,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -12235,22 +12363,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "tx_index": 12, "block_index": 124, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -12259,22 +12387,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -12293,7 +12421,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (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` @@ -12312,22 +12440,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -12380,9 +12508,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12397,7 +12525,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12423,9 +12551,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12440,7 +12568,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12465,68 +12593,68 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 209, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730747933, "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", "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 51, + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "block_index": 207, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "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": 212, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "expired", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12541,35 +12669,35 @@ Returns all the orders "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": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12586,15 +12714,15 @@ Returns all the orders }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 51, + "next_cursor": 76, "result_count": 8 } ``` @@ -12604,7 +12732,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b` (str, required) - The hash of the transaction that created the order + + order_hash: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f` (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. @@ -12615,41 +12743,41 @@ Returns the information of an order ``` { "result": { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "give_asset": "XCP", - "give_quantity": 1000, + "tx_index": 54, + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "block_index": 210, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "give_asset": "BTC", + "give_quantity": 3000, "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, + "get_asset": "XCP", + "get_quantity": 3000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 209, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748017, "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", + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", "get_remaining_normalized": "0.00001000", "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", @@ -12665,7 +12793,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144` (str, required) - The hash of the transaction that created the order + + order_hash: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f` (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 @@ -12692,27 +12820,27 @@ Returns the order matches of an order { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,27 +12860,67 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", - "forward_quantity": 2000, + "forward_quantity": 1000, "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 229, "fee_paid": 0, - "status": "completed", + "status": "pending", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12767,13 +12935,13 @@ Returns the order matches of an order "locked": false, "issuer": null }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 2 + "result_count": 3 } ``` @@ -12782,7 +12950,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144` (str, required) - The hash of the transaction that created the order + + order_hash: `19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e` (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 @@ -12801,15 +12969,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "btc_amount": 2000, - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "status": "valid", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "btc_amount_normalized": "0.00002000" } ], @@ -12853,9 +13021,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12873,7 +13041,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730747901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12899,27 +13067,27 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "block_index": 210, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "give_asset": "BTC", "give_quantity": 3000, - "give_remaining": 0, + "give_remaining": 1000, "get_asset": "XCP", "get_quantity": 3000, - "get_remaining": 0, + "get_remaining": 1000, "expiration": 21, "expire_index": 209, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730748017, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12936,8 +13104,8 @@ Returns the orders to exchange two assets }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "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", @@ -12945,9 +13113,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12965,7 +13133,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12991,9 +13159,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13011,7 +13179,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152654, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13036,10 +13204,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13047,7 +13215,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13057,7 +13225,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152570, + "block_time": 1730747933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13082,7 +13250,7 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 59, + "next_cursor": 60, "result_count": 8 } ``` @@ -13120,30 +13288,30 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13163,13 +13331,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13186,7 +13354,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730747901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13206,13 +13374,56 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13229,7 +13440,50 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730747828, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13250,7 +13504,7 @@ Returns the orders to exchange two assets } ], "next_cursor": null, - "result_count": 3 + "result_count": 5 } ``` @@ -13287,27 +13541,27 @@ Returns all the order matches { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13327,13 +13581,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13347,7 +13601,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13367,13 +13621,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13387,7 +13641,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13405,10 +13659,90 @@ Returns all the order matches "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 3 + "result_count": 5 } ``` @@ -13555,66 +13889,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", "block_index": 121, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730152285, + "block_time": 1730747624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ff424b42a9965359591a54f355ce5c75756123497e76f35debdaef0ea515e76a", + "tx_hash": "3ed22c35c310cbc89a1cd6563227ad0c0b6aaae02dab4cdcdafb85f968f36ed6", "block_index": 120, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730152281, + "block_time": 1730747621, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "6f8c5ecfa83f7514ac2c883bba9d8f016f9fc383a064597aa379221a09df2e26", + "tx_hash": "479f4cac42c754f06e32fbdecc57527e4b76fd7b51dcadd877db18c8a523dea3", "block_index": 119, - "source": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0", + "source": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730152277, + "block_time": 1730747618, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "ea5d0be869f53cc900a7b0d86eefc1124bba3014be198aeef545d113ca6c1415", + "tx_hash": "f6e3a7d0fbe60479c3f6e35bcfff2de735c4149ae4d6090e845c75b5f5caf52e", "block_index": 118, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730152274, + "block_time": 1730747614, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "b99ccc7c02aa79d4f89a55faf59b2997833ac007497ad85b9c54f7f4aee6b38f", + "tx_hash": "02e71ce74746cdb8e530b3f44d2f65a8e533d6a64c7f6447be12e25a3e6dd774", "block_index": 117, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730152271, + "block_time": 1730747611, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13659,9 +13993,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13670,7 +14004,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13680,7 +14014,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -13696,9 +14030,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13707,7 +14041,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13717,7 +14051,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730747723, "asset_info": { "divisible": true, "asset_longname": null, @@ -13733,9 +14067,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13743,10 +14077,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13754,7 +14088,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730747763, "asset_info": { "divisible": true, "asset_longname": null, @@ -13769,10 +14103,10 @@ Returns all dispensers "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13781,7 +14115,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13791,11 +14125,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -13807,18 +14141,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13828,7 +14162,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -13853,7 +14187,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12` (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. @@ -13865,9 +14199,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13876,7 +14210,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13886,7 +14220,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -13908,7 +14242,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12` (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 @@ -13928,19 +14262,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13948,7 +14282,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13963,7 +14297,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -13977,19 +14311,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13997,7 +14331,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14012,7 +14346,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -14054,20 +14388,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -14092,7 +14426,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab` (str, required) - The hash of the dividend to return + + dividend_hash: `7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0` (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. @@ -14104,20 +14438,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -14139,7 +14473,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0` (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 @@ -14162,12 +14496,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "tx_index": 41, - "utxo": "1d83b22e706c969e3dbc46fc83aaed861ed27d6aadc4e25772b7f315f7498313:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "utxo": "9e188f31b823ed1b059c50f35dbc1c3972e2275bd6c69a65b2139ceb3a49d3c2:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "divisible": true, "asset_longname": null, @@ -14179,16 +14513,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "address": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "divisible": true, "asset_longname": null, @@ -14213,7 +14547,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14230,47 +14564,47 @@ Returns all events { "result": [ { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -14281,20 +14615,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -14304,24 +14638,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -14331,13 +14665,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 670, - "result_count": 676 + "next_cursor": 691, + "result_count": 697 } ``` @@ -14346,7 +14680,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `675` (int, required) - The index of the event to return + + event_index: `696` (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. @@ -14357,19 +14691,19 @@ Returns the event of an index ``` { "result": { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 } } ``` @@ -14401,7 +14735,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 61 + "event_count": 63 }, { "event": "SWEEP", @@ -14413,7 +14747,7 @@ Returns the event counts of all blocks }, { "event": "ORDER_UPDATE", - "event_count": 12 + "event_count": 18 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -14427,7 +14761,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `675` (str, optional) - The last event index to return + + cursor: `696` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14444,19 +14778,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -14466,24 +14800,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -14493,51 +14827,51 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 656, + "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "block_index": 207, - "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "quantity": 5000, + "block_index": 209, + "calling_function": "order expired", + "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -14545,26 +14879,26 @@ Returns the events filtered by event name "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 645, + "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "block_index": 206, + "block_index": 208, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", + "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", "quantity": 10, - "tx_index": 73, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -14574,13 +14908,13 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_time": 1730747999 } ], - "next_cursor": 644, - "result_count": 91 + "next_cursor": 656, + "result_count": 92 } ``` @@ -14601,7 +14935,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 91 + "event_count": 92 } } ``` @@ -14630,29 +14964,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14667,7 +15001,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -14679,21 +15013,21 @@ Returns all the dispenses "btc_amount_normalized": "0.00001000" }, { - "tx_index": 63, + "tx_index": 65, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14701,7 +15035,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14716,11 +15050,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -14730,27 +15064,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14765,7 +15099,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730747751, "asset_info": { "divisible": true, "asset_longname": null, @@ -14779,19 +15113,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14799,7 +15133,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14814,7 +15148,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -14828,19 +15162,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14848,7 +15182,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14863,7 +15197,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -14904,11 +15238,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14916,7 +15250,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -14928,11 +15262,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14940,11 +15274,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -14952,11 +15286,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14964,7 +15298,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -14976,11 +15310,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14988,11 +15322,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15000,11 +15334,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15012,11 +15346,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15024,8 +15358,8 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 27, - "result_count": 32 + "next_cursor": 28, + "result_count": 33 } ``` @@ -15066,15 +15400,15 @@ Returns all the issuances { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -15089,20 +15423,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 64, - "tx_hash": "bf75f7092b509102f9cc7488b8a1d2b5ac9b3663ab98a89b377d0ef6fe1dcb7c", + "tx_index": 66, + "tx_hash": "3735cc23ff0d1af87f41b77e1d4ec864e2d6d6ffbd47d46b914216aac2e11f30", "msg_index": 0, - "block_index": 198, + "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "transfer": false, "callable": false, "call_date": 0, @@ -15117,20 +15451,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152603, + "block_time": 1730747962, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -15145,20 +15479,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730747814, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -15173,20 +15507,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730747801, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -15201,7 +15535,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730747796, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15216,7 +15550,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb` (str, required) - The hash of the transaction to return + + tx_hash: `088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36` (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. @@ -15227,15 +15561,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -15250,7 +15584,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15281,17 +15615,17 @@ Returns all sweeps { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -15305,7 +15639,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35` (str, required) - The hash of the transaction to return + + tx_hash: `0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920` (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. @@ -15317,17 +15651,17 @@ Returns the sweeps of a transaction { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -15361,9 +15695,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15371,14 +15705,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730747708, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15386,7 +15720,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730747705, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15400,7 +15734,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4` (str, required) - The hash of the transaction to return + + tx_hash: `c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd` (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. @@ -15412,9 +15746,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15422,7 +15756,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730747708, "fee_fraction_int_normalized": "0.00000000" } } @@ -15459,10 +15793,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15487,7 +15821,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15496,10 +15830,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15524,7 +15858,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730747697, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15536,10 +15870,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15564,7 +15898,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730747663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15576,10 +15910,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15604,7 +15938,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730747659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15616,10 +15950,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15644,7 +15978,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15713,22 +16047,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15737,22 +16071,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730747694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15761,22 +16095,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730747679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15785,22 +16119,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730747666, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15809,22 +16143,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7373471bfbb61006816b238cc58de75e2684d1b9cc29a2ea12ed240f42efc5c1", + "tx_hash": "75057efd3c5e87afdb08c657cc7401e31b3255c06e8d2115a88d08044dfa9efb", "tx_index": 17, "block_index": 129, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152314, + "block_time": 1730747655, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15843,7 +16177,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505` (str, required) - The hash of the fairmint to return + + tx_hash: `1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15854,22 +16188,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -15887,7 +16221,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t,bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0` (str, required) - The addresses to search for + + addresses: `bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv,bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7` (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. @@ -15902,30 +16236,30 @@ Returns a list of unspent outputs for a list of addresses "result": [ { "vout": 0, - "height": 200, + "height": 202, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c", + "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" }, { "vout": 1, - "height": 200, + "height": 202, "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b", + "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" }, { "vout": 2, "height": 157, "value": 100000, - "confirmations": 52, + "confirmations": 54, "amount": 0.001, - "txid": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76", - "address": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0" + "txid": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c", + "address": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7" } ], "next_cursor": null, @@ -15938,7 +16272,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2` (str, required) - The address to search for + + address: `bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga` (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 @@ -15954,28 +16288,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35" + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920" + }, + { + "tx_hash": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24" }, { - "tx_hash": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45" + "tx_hash": "454961c6e2af2327cdafab58f181b6ba863526a6c63ed1a53d4b6a8c61b1d165" }, { - "tx_hash": "aa546f61f8ebb938d0b3ce821f6de5f8150cfeb107148298e068de15ab033e63" + "tx_hash": "a97cf6403165bed5bd86f15312ffd7244209408dcb7a394b2d51bfd049adcd68" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75" + "tx_hash": "e8488df17426c9432406f268211e22aae77ae9e569b9dbeaaff6ef18d83a6e7e" }, { - "tx_hash": "894dceb9db02f71c93dcc4070ecf5daefd49348620bea85df8f0b4e0acec138c" + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" }, { - "tx_hash": "708576bd350d01171c186ecbba44bca04cf7cb37bc750f1b0d2b34d99f125a93" + "tx_hash": "1d08fdbe785954b8f8c4e6e17a4c56e0969133ffa88da7850dbf9c9a259d89c0" }, { - "tx_hash": "a6cb77043648b5643482906ff1d7d5b899f2d4eec6f273ca25ac8652668a51a8" + "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6" }, { - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "tx_hash": "ba6142b84dcba1d1a2a339b9c092b6869e4fc84002f8fede5ec6746c9c59b9f8" } ], "next_cursor": null, @@ -15988,7 +16325,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph` (str, required) - The address to search for. + + address: `bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st` (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. @@ -16001,8 +16338,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "18676cb74eb9dfce4b58b954ec2a6b83b96a6f4daad0a16f77bcb6b61458ace6" + "block_index": 10, + "tx_hash": "4e2c04a10a739b6afcd82d018f013f82fc0d11bc29cd26e71f96272a72c5738a" } } ``` @@ -16012,7 +16349,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t` (str, required) - The address to search for + + address: `bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv` (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 @@ -16029,19 +16366,19 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 1, - "height": 200, + "height": 202, "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1" + "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b" }, { "vout": 0, - "height": 200, + "height": 202, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e" + "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c" } ], "next_cursor": null, @@ -16054,7 +16391,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - Address to get pubkey for. + + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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. @@ -16066,7 +16403,7 @@ Get pubkey for an address. ``` { - "result": "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "result": "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" } ``` @@ -16075,7 +16412,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The transaction hash + + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (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. @@ -16087,7 +16424,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101767fa9746798e2f0da5d0765e73be7115b8f252c0ff7b3420c4ee20d9e51bb0a0100000000ffffffff03e803000000000000160014f9f761de6a26b38c86a3f54543766007cab6e30f00000000000000000c6a0a8ee379ec02600d7a1d1aeb140927010000001600145e3425187b2b5bc42b4371cb0d1f75d1661ad94802473044022038bd1cb36fdd7f9da255360c2b77e5d07c034b15eb8433d992508c6c65c6e693022074d799ef701e0e6ceb1e5e702c023f85f849de50800f98e9f4b29eb8c46f1a63012103606de90e430b926855501d0a176c98eff58fab05f6264d36c656a231b914c4d600000000" + "result": "020000000001010c0b4d2172a4b599243b5badf28f63da42d6531398de05c9b4e1bdc72ac9c4e60100000000ffffffff03e8030000000000001600144de620b4af02f945f107cdb328406ee6e7a25bfc00000000000000000c6a0a18534b84816655e6bb5aeb14092701000000160014023752bd11ba08d76fe9155ceaaa585ae2234fdb0247304402205e3ee8c2683f87fd4939167f8b13d1f55e9f5d7796a068729aeb6da84ac18e69022014039d3c5ec32a1865fb2c2082b7981c787295ca587c2900c29138db5414f06d012103a0dae290728c6d64a4afe2a4a527a04afad743dfa707bb14cfa58f2a3d8edc6c00000000" } ``` @@ -16109,7 +16446,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58701 + "result": 58797 } ``` @@ -16182,28 +16519,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78 }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, "asset_info": { "divisible": true, "asset_longname": null, @@ -16213,22 +16550,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -16238,22 +16575,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 210, + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -16263,30 +16600,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730748020.6178741, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, + "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -16300,7 +16637,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -16331,19 +16668,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -16353,7 +16690,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -16366,7 +16703,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43` (str, required) - The hash of the transaction to return + + tx_hash: `9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346` (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 @@ -16386,28 +16723,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78 }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, "asset_info": { "divisible": true, "asset_longname": null, @@ -16417,22 +16754,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -16442,22 +16779,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 210, + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -16467,30 +16804,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730748020.6178741, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, + "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -16504,7 +16841,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 3fe82003a9..d2eddc8f1a 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -321,8 +321,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/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 2a58aabcf4..a2d35311f8 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -141,6 +141,11 @@ False, "Exclude silently UTXO with balances instead of raising an exception", ), + "skip_validation": ( + bool, + False, + "Skip validation of the transaction", + ), } diff --git a/counterparty-core/counterpartycore/lib/messages/bet.py b/counterparty-core/counterpartycore/lib/messages/bet.py index cc7237ab50..0d1011006b 100644 --- a/counterparty-core/counterpartycore/lib/messages/bet.py +++ b/counterparty-core/counterpartycore/lib/messages/bet.py @@ -379,6 +379,7 @@ def compose( target_value: int, leverage: int, expiration: int, + skip_validation: bool = False, ): if ledger.get_balance(db, source, config.XCP) < wager_quantity: raise exceptions.ComposeError("insufficient funds") @@ -398,7 +399,7 @@ def compose( ) if util.date_passed(deadline): problems.append("deadline passed") - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) data = message_type.pack(ID) diff --git a/counterparty-core/counterpartycore/lib/messages/broadcast.py b/counterparty-core/counterpartycore/lib/messages/broadcast.py index 7e1925b1c9..e0c5f3fd56 100644 --- a/counterparty-core/counterpartycore/lib/messages/broadcast.py +++ b/counterparty-core/counterpartycore/lib/messages/broadcast.py @@ -133,14 +133,22 @@ def validate(db, source, timestamp, value, fee_fraction_int, text, block_index): return problems -def compose(db, source: str, timestamp: int, value: float, fee_fraction: float, text: str): +def compose( + db, + source: str, + timestamp: int, + value: float, + fee_fraction: float, + text: str, + skip_validation: bool = False, +): # Store the fee fraction as an integer. fee_fraction_int = int(fee_fraction * 1e8) problems = validate( db, source, timestamp, value, fee_fraction_int, text, util.CURRENT_BLOCK_INDEX ) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) data = message_type.pack(ID) diff --git a/counterparty-core/counterpartycore/lib/messages/btcpay.py b/counterparty-core/counterpartycore/lib/messages/btcpay.py index 771e2a1d33..9c710c7611 100644 --- a/counterparty-core/counterpartycore/lib/messages/btcpay.py +++ b/counterparty-core/counterpartycore/lib/messages/btcpay.py @@ -104,13 +104,13 @@ def validate(db, source, order_match_id, block_index): return destination, btc_quantity, escrowed_asset, escrowed_quantity, order_match, problems -def compose(db, source: str, order_match_id: str): +def compose(db, source: str, order_match_id: str, skip_validation: bool = False): tx0_hash, tx1_hash = util.parse_id(order_match_id) destination, btc_quantity, escrowed_asset, escrowed_quantity, order_match, problems = validate( db, source, order_match_id, util.CURRENT_BLOCK_INDEX ) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) # Warn if down to the wire. diff --git a/counterparty-core/counterpartycore/lib/messages/burn.py b/counterparty-core/counterpartycore/lib/messages/burn.py index fc00325b36..fd7b4bbc68 100644 --- a/counterparty-core/counterpartycore/lib/messages/burn.py +++ b/counterparty-core/counterpartycore/lib/messages/burn.py @@ -70,13 +70,13 @@ def validate(db, source, destination, quantity, block_index, overburn=False): return problems -def compose(db, source: str, quantity: int, overburn: bool = False): +def compose(db, source: str, quantity: int, overburn: bool = False, skip_validation: bool = False): cursor = db.cursor() destination = config.UNSPENDABLE problems = validate( db, source, destination, quantity, util.CURRENT_BLOCK_INDEX, overburn=overburn ) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) # Check that a maximum of 1 BTC total is burned per address. diff --git a/counterparty-core/counterpartycore/lib/messages/cancel.py b/counterparty-core/counterpartycore/lib/messages/cancel.py index 89d52d2a64..b00ba7c56b 100644 --- a/counterparty-core/counterpartycore/lib/messages/cancel.py +++ b/counterparty-core/counterpartycore/lib/messages/cancel.py @@ -76,10 +76,10 @@ def validate(db, source, offer_hash): return offer, offer_type, problems -def compose(db, source: str, offer_hash: str): +def compose(db, source: str, offer_hash: str, skip_validation: bool = False): # Check that offer exists. offer, offer_type, problems = validate(db, source, offer_hash) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) offer_hash_bytes = binascii.unhexlify(bytes(offer_hash, "utf-8")) diff --git a/counterparty-core/counterpartycore/lib/messages/destroy.py b/counterparty-core/counterpartycore/lib/messages/destroy.py index ca84a3a0b0..a38971af5a 100644 --- a/counterparty-core/counterpartycore/lib/messages/destroy.py +++ b/counterparty-core/counterpartycore/lib/messages/destroy.py @@ -119,11 +119,12 @@ def validate(db, source, destination, asset, quantity): raise BalanceError("balance insufficient") # noqa: F405 -def compose(db, source: str, asset: str, quantity: int, tag: str): +def compose(db, source: str, asset: str, quantity: int, tag: str, skip_validation: bool = False): # resolve subassets asset = ledger.resolve_subasset_longname(db, asset) - validate(db, source, None, asset, quantity) + if not skip_validation: + validate(db, source, None, asset, quantity) data = pack(db, asset, quantity, tag) return (source, [], data) diff --git a/counterparty-core/counterpartycore/lib/messages/dispense.py b/counterparty-core/counterpartycore/lib/messages/dispense.py index 7674e2ccb9..31fe87201b 100644 --- a/counterparty-core/counterpartycore/lib/messages/dispense.py +++ b/counterparty-core/counterpartycore/lib/messages/dispense.py @@ -60,9 +60,9 @@ def validate(db, _source, destination, quantity): return problems -def compose(db, source, destination, quantity): +def compose(db, source, destination, quantity, skip_validation: bool = False): problems = validate(db, source, destination, quantity) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) # create data data = struct.pack(config.SHORT_TXTYPE_FORMAT, dispenser_module.DISPENSE_ID) diff --git a/counterparty-core/counterpartycore/lib/messages/dispenser.py b/counterparty-core/counterpartycore/lib/messages/dispenser.py index 69c4810931..1f1f19e6f1 100644 --- a/counterparty-core/counterpartycore/lib/messages/dispenser.py +++ b/counterparty-core/counterpartycore/lib/messages/dispenser.py @@ -391,6 +391,7 @@ def compose( status: int, open_address: str = None, oracle_address: str = None, + skip_validation: bool = False, ): assetid, problems = validate( db, @@ -405,7 +406,10 @@ def compose( oracle_address, ) if problems: - raise exceptions.ComposeError(problems) + if not skip_validation: + raise exceptions.ComposeError(problems) + else: + assetid = ledger.generate_asset_id(asset, block_index=util.CURRENT_BLOCK_INDEX) destination = [] data = message_type.pack(ID) diff --git a/counterparty-core/counterpartycore/lib/messages/dividend.py b/counterparty-core/counterpartycore/lib/messages/dividend.py index 4699057f3a..4b312a3434 100644 --- a/counterparty-core/counterpartycore/lib/messages/dividend.py +++ b/counterparty-core/counterpartycore/lib/messages/dividend.py @@ -185,7 +185,14 @@ def validate(db, source, quantity_per_unit, asset, dividend_asset, block_index): return dividend_total, outputs, problems, fee -def compose(db, source: str, quantity_per_unit: int, asset: str, dividend_asset: str): +def compose( + db, + source: str, + quantity_per_unit: int, + asset: str, + dividend_asset: str, + skip_validation: bool = False, +): # resolve subassets asset = ledger.resolve_subasset_longname(db, asset) dividend_asset = ledger.resolve_subasset_longname(db, dividend_asset) @@ -193,7 +200,7 @@ def compose(db, source: str, quantity_per_unit: int, asset: str, dividend_asset: dividend_total, outputs, problems, fee = validate( db, source, quantity_per_unit, asset, dividend_asset, util.CURRENT_BLOCK_INDEX ) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) logger.info( f"Total quantity to be distributed in dividends: {ledger.value_out(db, dividend_total, dividend_asset)} {dividend_asset}" diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index 64caea02b4..d60aa99aab 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -100,14 +100,9 @@ def validate( return problems -def compose( - db, - source, - asset, - quantity=0, -): +def compose(db, source: str, asset: str, quantity: int = 0, skip_validation: bool = False): problems = validate(db, source, asset, quantity) - if len(problems) > 0: + if len(problems) > 0 and not skip_validation: raise exceptions.ComposeError(problems) if quantity != 0: diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 839bc8355d..986d3fbbc8 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -196,24 +196,25 @@ def validate( def compose( db, - source, - asset, - asset_parent="", - price=0, - quantity_by_price=1, - max_mint_per_tx=0, - hard_cap=0, - premint_quantity=0, - start_block=0, - end_block=0, - soft_cap=0, - soft_cap_deadline_block=0, - minted_asset_commission=0.0, - burn_payment=False, - lock_description=False, - lock_quantity=False, - divisible=True, - description="", + source: 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 = "", + skip_validation: bool = False, ): # validate parameters problems = validate( @@ -237,7 +238,7 @@ def compose( divisible, description, ) - if len(problems) > 0: + if len(problems) > 0 and not skip_validation: raise exceptions.ComposeError(problems) minted_asset_commission_int = int(minted_asset_commission * 1e8) diff --git a/counterparty-core/counterpartycore/lib/messages/issuance.py b/counterparty-core/counterpartycore/lib/messages/issuance.py index 4a6b7591bd..d5a1443c6b 100644 --- a/counterparty-core/counterpartycore/lib/messages/issuance.py +++ b/counterparty-core/counterpartycore/lib/messages/issuance.py @@ -406,6 +406,7 @@ def compose( lock: bool = None, reset: bool = None, description: str = None, + skip_validation: bool = False, ): # Callability is deprecated, so for re‐issuances set relevant parameters # to old values; for first issuances, make uncallable. @@ -471,7 +472,7 @@ def compose( subasset_longname, util.CURRENT_BLOCK_INDEX, ) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) if subasset_longname is None or reissuance: diff --git a/counterparty-core/counterpartycore/lib/messages/order.py b/counterparty-core/counterpartycore/lib/messages/order.py index 98b7d715f5..a21e765cf7 100644 --- a/counterparty-core/counterpartycore/lib/messages/order.py +++ b/counterparty-core/counterpartycore/lib/messages/order.py @@ -459,6 +459,7 @@ def compose( get_quantity: int, expiration: int, fee_required: int, + skip_validation: bool = False, ): cursor = db.cursor() @@ -483,7 +484,7 @@ def compose( fee_required, util.CURRENT_BLOCK_INDEX, ) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) give_id = ledger.get_asset_id(db, give_asset, util.CURRENT_BLOCK_INDEX) diff --git a/counterparty-core/counterpartycore/lib/messages/send.py b/counterparty-core/counterpartycore/lib/messages/send.py index 77bcf65d09..d6d9cb715d 100644 --- a/counterparty-core/counterpartycore/lib/messages/send.py +++ b/counterparty-core/counterpartycore/lib/messages/send.py @@ -123,6 +123,7 @@ def compose( memo: str = None, memo_is_hex: bool = False, use_enhanced_send: bool = None, + skip_validation: bool = False, ): # special case - enhanced_send replaces send by default when it is enabled # but it can be explicitly disabled with an API parameter @@ -161,6 +162,7 @@ def compose( util.flat(zip(asset, destination, quantity, memo, memo_is_hex)), None, None, + skip_validation, ) elif isinstance(memo, dict) and isinstance(memo_is_hex, dict): # (2) implemented here @@ -190,6 +192,7 @@ def compose( ), memo["msg_wide"], memo_is_hex["msg_wide"], + skip_validation, ) else: # (3) the default case @@ -199,6 +202,7 @@ def compose( util.flat(zip(asset, destination, quantity)), memo, memo_is_hex, + skip_validation, ) else: raise exceptions.ComposeError( @@ -208,12 +212,12 @@ def compose( raise exceptions.ComposeError("mpma sends are not enabled") elif use_enhanced_send is None or use_enhanced_send == True: # noqa: E712 return enhanced_send.compose( - db, source, destination, asset, quantity, memo, memo_is_hex + db, source, destination, asset, quantity, memo, memo_is_hex, skip_validation ) elif memo is not None or use_enhanced_send == True: # noqa: E712 raise exceptions.ComposeError("enhanced sends are not enabled") - return send1.compose(db, source, destination, asset, quantity) + return send1.compose(db, source, destination, asset, quantity, skip_validation) def parse(db, tx, message): # TODO: *args diff --git a/counterparty-core/counterpartycore/lib/messages/sweep.py b/counterparty-core/counterpartycore/lib/messages/sweep.py index 6c6ac669f9..0418da66a7 100644 --- a/counterparty-core/counterpartycore/lib/messages/sweep.py +++ b/counterparty-core/counterpartycore/lib/messages/sweep.py @@ -111,7 +111,9 @@ def validate(db, source, destination, flags, memo, block_index): return problems, total_fee -def compose(db, source: str, destination: str, flags: int, memo: str): +def compose( + db, source: str, destination: str, flags: int, memo: str, skip_validation: bool = False +): if memo is None: memo = b"" elif flags & FLAG_BINARY_MEMO: @@ -122,7 +124,7 @@ def compose(db, source: str, destination: str, flags: int, memo: str): block_index = util.CURRENT_BLOCK_INDEX problems, total_fee = validate(db, source, destination, flags, memo, block_index) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) short_address_bytes = address.pack(destination) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index eb012f4f7b..ab29839e92 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -77,7 +77,9 @@ def validate(db, source, destination, asset, quantity, block_index=None): return problems -def compose(db, source, destination, asset, quantity): +def compose( + db, source: str, destination: str, asset: str, quantity: int, skip_validation: bool = False +): """ Compose a UTXO message. source: the source address or UTXO @@ -86,7 +88,7 @@ def compose(db, source, destination, asset, quantity): quantity: the quantity to transfer """ problems = validate(db, source, destination, asset, quantity) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) # we make an RPC call only at the time of composition diff --git a/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py b/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py index 909f248c70..a5f7686421 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py @@ -99,7 +99,14 @@ def validate(db, source, destination, asset, quantity, memo_bytes, block_index): def compose( - db, source: str, destination: str, asset: str, quantity: int, memo: str, memo_is_hex: bool + db, + source: str, + destination: str, + asset: str, + quantity: int, + memo: str, + memo_is_hex: bool, + skip_validation: bool = False, ): cursor = db.cursor() @@ -117,7 +124,7 @@ def compose( # Only for outgoing (incoming will overburn). balance = ledger.get_balance(db, source, asset) - if balance < quantity: + if balance < quantity and not skip_validation: raise exceptions.ComposeError("insufficient funds") # convert memo to memo_bytes based on memo_is_hex setting @@ -132,7 +139,7 @@ def compose( block_index = util.CURRENT_BLOCK_INDEX problems = validate(db, source, destination, asset, quantity, memo_bytes, block_index) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) asset_id = ledger.get_asset_id(db, asset, block_index) diff --git a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py index 0b4790f9a2..224d61c877 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py @@ -99,7 +99,12 @@ def validate(db, source, asset_dest_quant_list, block_index): def compose( - db, source: str, asset_dest_quant_list: list, memo: str = None, memo_is_hex: bool = None + db, + source: str, + asset_dest_quant_list: list, + memo: str = None, + memo_is_hex: bool = None, + skip_validation: bool = False, ): """ Compose a MPMA send message. @@ -126,7 +131,7 @@ def compose( raise exceptions.ComposeError(f"quantities must be an int (in satoshis) for {asset}") balance = ledger.get_balance(db, source, asset) - if balance < quantity: + if balance < quantity and not skip_validation: raise exceptions.ComposeError(f"insufficient funds for {asset}") block_index = util.CURRENT_BLOCK_INDEX @@ -134,7 +139,7 @@ def compose( cursor.close() problems = validate(db, source, asset_dest_quant_list, block_index) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) data = message_type.pack(ID) diff --git a/counterparty-core/counterpartycore/lib/messages/versions/send1.py b/counterparty-core/counterpartycore/lib/messages/versions/send1.py index e6c85d14db..511cca9997 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/send1.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/send1.py @@ -79,7 +79,9 @@ def compose_send_btc(db, source: str, destination: str, quantity: int): return (source, [(destination, quantity)], None) -def compose(db, source: str, destination: str, asset: str, quantity: int): +def compose( + db, source: str, destination: str, asset: str, quantity: int, skip_validation: bool = False +): cursor = db.cursor() # Just send BTC? @@ -95,13 +97,13 @@ def compose(db, source: str, destination: str, asset: str, quantity: int): # Only for outgoing (incoming will overburn). balance = ledger.get_balance(db, source, asset) - if balance < quantity: + if balance < quantity and not skip_validation: raise exceptions.ComposeError("insufficient funds") block_index = util.CURRENT_BLOCK_INDEX problems = validate(db, source, destination, asset, quantity, block_index) - if problems: + if problems and not skip_validation: raise exceptions.ComposeError(problems) asset_id = ledger.get_asset_id(db, asset, block_index) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 9cb9224fc0..fc88c1ebb4 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -308,7 +308,7 @@ def get_default_args(func): } -def compose_data(db, name, params, accept_missing_params=False): +def compose_data(db, name, params, accept_missing_params=False, skip_validation=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"] @@ -325,11 +325,13 @@ def compose_data(db, name, params, accept_missing_params=False): raise exceptions.ComposeError( f"missing parameters: {', '.join(missing_params)}" ) + params["skip_validation"] = skip_validation return compose_method(db, **params) 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) + skip_validation = construct_kwargs.pop("skip_validation", False) + tx_info = compose_data(db, name, params, accept_missing_params, skip_validation) transaction_info = construct(db, tx_info, **construct_kwargs) return transaction_info diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 8f119c8954..350b7b2a41 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11086,6 +11086,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11290,6 +11297,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11476,6 +11490,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11669,6 +11690,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11855,6 +11883,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12053,6 +12088,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12277,6 +12319,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12475,6 +12524,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12702,6 +12758,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12928,6 +12991,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13144,6 +13214,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13363,6 +13440,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13561,6 +13645,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13753,6 +13844,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14051,6 +14149,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14244,6 +14349,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14443,6 +14555,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14641,6 +14760,13 @@ "description": "Exclude silently UTXO with balances instead of raising an exception", "required": false }, + { + "name": "skip_validation", + "type": "bool", + "default": false, + "description": "Skip validation of the transaction", + "required": false + }, { "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 5df7c8d6fe..23f01b6f3c 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": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, "confirmed": true }, { - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "previous_block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "previous_block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", "difficulty": 545259519, - "ledger_hash": "82b7aa0986153801d34b4a42f07b47c84e24685d8696f9422a2d92fad2a337b5", - "txlist_hash": "ba6fc33695ae4f6266c33514cb0cbee9d38105f78ba7594be4a4cee634d08674", - "messages_hash": "af54cefd796959cf5d8343303d9c7be0b765b1b89b693c6b5a9ab7374afb9606", + "ledger_hash": "e4e8339fce2218d1a5ddc2a90fdf07e8b4800127ff425c617a7e70f6a04c9db0", + "txlist_hash": "2acf87a58f95eb7d391c797c26d4fdc0e8c34152832aadf52db19be71ff97d62", + "messages_hash": "5317a4a193ea6e35dab92210ae429697b0ebfdc663e0066de91b68a9cdc54e11", "transaction_count": 1, "confirmed": true }, { - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "previous_block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_index": 208, + "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_time": 1730747999, + "previous_block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", "difficulty": 545259519, - "ledger_hash": "be00302ec692c6beb809ed6c76f726d178093e916290e232554035f57146b6f2", - "txlist_hash": "365902f962fea5f28dff03b680c5a8b9ca5fd1a33058de5de7ec14aeb225ed25", - "messages_hash": "0dc8852d7d7ecdd56b9c63c616455bc1c116fc865b45cb4b3cec60586168ca3a", + "ledger_hash": "ca54749c09a22fc16cb63c393bdde4d42610edc0efb20cb277f5445b0d0a7c0a", + "txlist_hash": "0c7332148c20bd19bd0b7d46b9b521cdd3c0594fda421f78c4f46b2383a13d15", + "messages_hash": "db6d2c4e59a1440fbf127766509b5f3e7f2de64ae246efd80bca3bc7133fe501", "transaction_count": 1, "confirmed": true }, { - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "previous_block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_index": 207, + "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", + "block_time": 1730747995, + "previous_block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", "difficulty": 545259519, - "ledger_hash": "c1b7edc78b076d79b3a5e4c72424a09d7ffe14fe75b38a4debc9d23fd9f5398d", - "txlist_hash": "4eeeef0e7bd3dd22665ee35f6e47962d68777493d6d40d4ee79327499645e336", - "messages_hash": "c37fc64064bacb9a17a6bdf16fc6c67d169079ff509f690e442a561396f85182", + "ledger_hash": "ef4e39670eea3dcb8fcde3f7042f2e87aae8022bf0c94f8dd61281a8a22ec8b2", + "txlist_hash": "a335d5634b33e980af06bcb66403817acb796fc0472b645b51285662c0d98ba8", + "messages_hash": "78bcba26ba47a3d9138309d68898ef315fbb4fe52bded9f17d7229662e911812", "transaction_count": 1, "confirmed": true }, { - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "previous_block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_index": 206, + "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_time": 1730747991, + "previous_block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", "difficulty": 545259519, - "ledger_hash": "724180ad76ff4c429d83777f69e676fb618e8bad0ff4f7e17e21edf0fc0eebf0", - "txlist_hash": "03f7a32a202bc5cc53417126d5f8a83d7f582f25e64c67cc15e08eb9953cfb98", - "messages_hash": "351bb1b903e1bfe9b921d195c89083d3a5b5eef4fa22f16ded1b900b4dc7f6c4", + "ledger_hash": "1f34cb4b0fc43a1c2a9789e8b2d9fecb67830180ec45e1f273845caa87677c5d", + "txlist_hash": "f96b248908a08236f55b59283d4173f8598e6802362627b801ff9decf985a98f", + "messages_hash": "94492191b231f60849bbf12b97ad3fed1bb4b5f443c72e40090a5d7d7d961f7f", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 203, - "result_count": 108 + "next_cursor": 205, + "result_count": 110 }, "/v2/blocks/": { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", "difficulty": 545259519, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null }, { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,11 +218,11 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" } ], - "next_cursor": 670, - "result_count": 14 + "next_cursor": 691, + "result_count": 16 }, "/v2/blocks//events/counts": { "result": [ @@ -235,37 +235,37 @@ "event_count": 1 }, { - "event": "NEW_TRANSACTION_OUTPUT", + "event": "ORDER_UPDATE", "event_count": 1 }, { - "event": "NEW_TRANSACTION", + "event": "ORDER_EXPIRATION", "event_count": 1 }, { - "event": "NEW_BLOCK", + "event": "NEW_TRANSACTION_OUTPUT", "event_count": 1 } ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 + "next_cursor": "NEW_TRANSACTION", + "result_count": 12 }, "/v2/blocks//events/": { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,32 +300,32 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 208, - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "block_index": 210, + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 208, + "block_index": 210, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -376,21 +376,21 @@ "quantity_normalized": "15.00000000" }, { - "block_index": 208, + "block_index": 210, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 208, + "block_index": 210, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -424,21 +424,21 @@ "quantity_normalized": "15.00000000" }, { - "block_index": 208, + "block_index": 210, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "block_index": 207, + "object_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "block_index": 210, "confirmed": true, - "block_time": 1730152654 + "block_time": 1730748017 } ], "next_cursor": null, @@ -464,14 +464,14 @@ "/v2/blocks//cancels": { "result": [ { - "tx_index": 58, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "tx_index": 59, + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", "status": "valid", "confirmed": true, - "block_time": 1730152570 + "block_time": 1730747933 } ], "next_cursor": null, @@ -480,16 +480,16 @@ "/v2/blocks//destructions": { "result": [ { - "tx_index": 61, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 62, + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "block_index": 196, + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730152592, + "block_time": 1730747945, "asset_info": { "divisible": true, "asset_longname": null, @@ -506,15 +506,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -540,11 +540,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -564,11 +564,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -649,17 +649,17 @@ "/v2/blocks//sweeps": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -742,18 +742,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -765,18 +765,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -811,12 +811,12 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 73, - "result_count": 76 + "next_cursor": 75, + "result_count": 78 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "1d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a", + "hash": "7ba043d50817a3683ce447042f521437e7213c2d970a3c64b90e4074a66582e1", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168" + "script_pub_key": "6a3390b022cf18e43189f294eff85931e18cae3787c9eae61ad669b8dde8f4ea08dca9f1235659069cdedc332470a3660d20001d65" }, { "value": 4999990000, - "script_pub_key": "00147967f0a0bd9d33804ecfac05d869b2782a3467a1" + "script_pub_key": "0014798a41286d38d8c9e630455aadf358126716233e" } ], "vtxinwit": [ - "30440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde01", - "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "3044022023fcb0bdbe64ce8c2e98e56e561a9e46f3649808143a474271a74819fc1100c602202a4b09a9f113dd36d4ef651602257627a34251af3879de4fec33d8158584205b01", + "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" ], "lock_time": 0, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_id": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_id": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "138349f715f3b77257e2c4ad6a7dd21e86edaa83fc46bc3d9e966c702eb2831d", + "hash": "c2d3493aeb9c13b2659ac6d65b27e272391cbc5df3509c051bed23b8318f189e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2eff33b1f7f8e902221f13c27b12b7d32e190f805c939dcf9ab4de5baf7143247463d682a89b00ffe16d91d8dc9d1f" + "script_pub_key": "6a2e935a98e35e1bebb99fb1486397daf4fb55da6c6215bc512fe989599a71d3e14885d3e5ba56208d96318f44360597" }, { "value": 4999970000, - "script_pub_key": "00142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4" + "script_pub_key": "00146f8fed86c68edbd4884f3786230f26561a53e3eb" } ], "vtxinwit": [ - "3044022036beb3fb4d3dd6bd98282613490c124c3a14f85ae1b1f004c2f44bd429f4a588022051a6de46a46e50e2ae2b08532f731486c334ac19db5ba804a53f0921fb2e890701", - "023e3d46364a1fab486d12778805a80a614ea43362116ec89285ecd3f2893be2b9" + "304402207f7bfe45d258eb89edef9a23aded36dabb2b1ebeefb01b7b608f59f2fe84325a022004900e3dc278c0c10690e11f887be9fdf224a922cf199d680cc772636b9c52c701", + "03e265b4fb72b1001fbc192ef7e291b08a9d32fc465c312dead2fc97f7e2df062a" ], "lock_time": 0, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_id": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43" + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_id": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -955,18 +955,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -980,18 +980,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_time": 1730152668, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_time": 1730748017, + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1006,32 +1006,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,20 +1042,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,24 +1092,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 670, + "event_index": 691, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 210, + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "msg_index": 1, "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,43 +1119,43 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 669, - "result_count": 12 + "next_cursor": 690, + "result_count": 14 }, "/v2/transactions//events": { "result": [ { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,20 +1166,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,24 +1216,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 670, + "event_index": 691, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 210, + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "msg_index": 1, "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,22 +1243,22 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 669, - "result_count": 12 + "next_cursor": 690, + "result_count": 14 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1278,11 +1278,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1308,29 +1308,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1363,19 +1363,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,24 +1385,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,36 +1412,36 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], "next_cursor": null, @@ -1450,19 +1450,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,24 +1472,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,36 +1499,36 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1669,18 +1669,18 @@ "/v2/addresses/transactions": { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1715,18 +1715,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", - "block_time": 1730152650, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_time": 1730747999, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", + "utxos_info": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1767,18 +1767,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", - "block_time": 1730152636, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 74, + "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "block_index": 207, + "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", + "block_time": 1730747995, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3ebc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa:0", + "utxos_info": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1819,18 +1819,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_time": 1730747991, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1871,18 +1871,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", + "block_time": 1730747986, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1923,18 +1923,64 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 69, - "result_count": 46 + "next_cursor": 71, + "result_count": 47 }, "/v2/addresses/events": { "result": [ { - "event_index": 659, + "event_index": 678, + "event": "ORDER_MATCH", + "params": { + "backward_asset": "XCP", + "backward_quantity": 1000, + "block_index": 209, + "fee_paid": 0, + "forward_asset": "BTC", + "forward_quantity": 1000, + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "match_expire_index": 229, + "status": "pending", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_block_index": 209, + "tx0_expiration": 21, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 54, + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_block_index": 209, + "tx1_expiration": 21, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_index": 76, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 + }, + { + "event_index": 675, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 209, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -1945,11 +1991,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +2019,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 658, + "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "block_index": 207, - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "block_index": 209, + "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", "quantity": 1000, - "tx_index": 74, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,119 +2046,89 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 - }, - { - "event_index": 657, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 - }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 656, - "event": "CREDIT", + "event_index": 673, + "event": "ORDER_MATCH", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "XCP", - "block_index": 207, - "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "quantity": 5000, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1730152654, - "asset_info": { + "backward_asset": "BTC", + "backward_quantity": 1000, + "block_index": 209, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 1000, + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "match_expire_index": 229, + "status": "pending", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_block_index": 194, + "tx0_expiration": 21, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_index": 60, + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_block_index": 209, + "tx1_expiration": 21, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_index": 54, + "block_time": 1730748003, + "forward_asset_info": { "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 654, - "event": "NEW_TRANSACTION", + "event_index": 670, + "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_index": 207, - "block_time": 1730152654, - "btc_amount": 0, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "destination": "", - "fee": 10000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" + "block_index": 209, + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_time": 1730748003 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 650, - "result_count": 237 + "next_cursor": 668, + "result_count": 242 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, "asset_info": { "divisible": true, "asset_longname": null, @@ -2122,22 +2138,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2163,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 210, + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2188,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730748020.6178741, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, + "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2225,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -2218,7 +2234,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2242,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2257,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,16 +2272,16 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2275,10 +2291,10 @@ "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2302,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2299,9 +2315,9 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2311,7 +2327,7 @@ "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49944000" } ], "next_cursor": null, @@ -2320,17 +2336,17 @@ "/v2/addresses/
/credits": { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 209, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 5000, - "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "quantity": 3000, + "calling_function": "order expired", + "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -2338,20 +2354,20 @@ "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, { - "block_index": 206, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -2362,17 +2378,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 207, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730747995, "asset_info": { "divisible": true, "asset_longname": null, @@ -2383,65 +2399,65 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 201, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, + "block_index": 207, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "asset": "XCP", + "quantity": 5000, + "calling_function": "cancel order", + "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747995, "asset_info": { + "divisible": true, "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "divisible": true, - "locked": false + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "1000.00000000" + "quantity_normalized": "0.00005000" }, { - "block_index": 192, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "tx_index": 58, + "block_index": 203, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "asset": "MPMASSET", + "quantity": 100000000000, + "calling_function": "issuance", + "event": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747979, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset B", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "1000.00000000" } ], - "next_cursor": 59, - "result_count": 19 + "next_cursor": 65, + "result_count": 20 }, "/v2/addresses/
/debits": { "result": [ { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 209, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -2452,17 +2468,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -2473,38 +2489,38 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "divisible": true, "asset_longname": null, @@ -2515,21 +2531,21 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 203, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 205, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "tx_index": 70, + "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2548,9 +2564,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2574,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730747705, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2585,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "43020304a8d69e758c8cfe4f200d3db11286a5b782bdf8270be5b1ce40029012", + "tx_hash": "9830c503fafb409b51e566cf014fb1ede5d9d44b205bdfbcf06bfc5aba5bde71", "block_index": 112, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730152253, + "block_time": 1730747593, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2587,11 +2603,11 @@ "/v2/addresses/
/sends": { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2615,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -2611,11 +2627,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2639,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2635,11 +2651,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2663,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2659,11 +2675,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2687,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "divisible": true, "asset_longname": null, @@ -2683,11 +2699,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2711,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2707,17 +2723,17 @@ "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 19, + "next_cursor": 20, "result_count": 12 }, "/v2/addresses/
/receives": { "result": [ { "tx_index": 38, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", "block_index": 151, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", + "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2725,11 +2741,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152407, + "block_time": 1730747767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2743,11 +2759,11 @@ "/v2/addresses/
/sends/": { "result": [ { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2771,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2767,11 +2783,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2795,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2791,11 +2807,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2819,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2815,11 +2831,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2843,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2839,11 +2855,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 71, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2867,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152624, + "block_time": 1730747983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2875,9 +2891,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2902,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2912,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -2911,10 +2927,10 @@ "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2939,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2949,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -2954,9 +2970,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2981,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2991,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -2993,21 +3009,21 @@ "/v2/addresses/
/dispenses/sends": { "result": [ { - "tx_index": 63, + "tx_index": 65, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3031,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3046,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -3044,19 +3060,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3080,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3095,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3109,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3129,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3144,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -3146,21 +3162,21 @@ "/v2/addresses/
/dispenses/receives": { "result": [ { - "tx_index": 63, + "tx_index": 65, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3184,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3199,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -3197,19 +3213,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3233,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3248,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3262,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3282,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3297,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3317,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3337,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3352,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3366,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3386,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3401,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3421,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3441,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3456,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3470,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3490,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3505,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -3507,17 +3523,17 @@ "/v2/addresses/
/sweeps": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -3527,15 +3543,15 @@ "/v2/addresses/
/issuances": { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3566,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3594,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730747814, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3622,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730747801, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3650,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730747796, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "9083ecad51d2ce0aeb1ab41b80c7db2a58cda52c3031dfb8b79d2bb2689cf70a", + "tx_hash": "c82ddebc2f4ef337dc204f70389447a739640708fd7f47fb2eae72a15d252b45", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3678,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152434, + "block_time": 1730747792, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,25 +3692,25 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3718,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3735,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3752,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730747697, + "last_issuance_block_time": 1730747700, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3769,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730747663, + "last_issuance_block_time": 1730747694, "supply_normalized": "0.00000019" } ], @@ -3767,25 +3783,25 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3809,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3826,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3843,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730747697, + "last_issuance_block_time": 1730747700, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3860,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730747663, + "last_issuance_block_time": 1730747694, "supply_normalized": "0.00000019" } ], @@ -3858,25 +3874,25 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3900,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3917,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3934,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730152348, - "last_issuance_block_time": 1730152352, + "first_issuance_block_time": 1730747697, + "last_issuance_block_time": 1730747700, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3951,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730152322, - "last_issuance_block_time": 1730152344, + "first_issuance_block_time": 1730747663, + "last_issuance_block_time": 1730747694, "supply_normalized": "0.00000019" } ], @@ -3946,18 +3962,18 @@ "/v2/addresses/
/transactions": { "result": [ { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", - "block_time": 1730152654, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_time": 1730748003, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3992,18 +4008,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", - "block_time": 1730152632, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_time": 1730747991, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", + "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4027,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4026,7 +4042,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4044,18 +4060,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", - "block_time": 1730152628, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", + "block_time": 1730747986, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", + "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4079,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4078,7 +4094,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4096,18 +4112,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 69, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", - "block_time": 1730152624, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 71, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "block_hash": "15ad3be6594647eaa6fb60c1ea11a44312fd183115f57aa1ab0d8351773b7bac", + "block_time": 1730747983, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "02000000178d82231300000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", "supported": true, - "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", + "utxos_info": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4131,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4130,18 +4146,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", - "block_time": 1730152620, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_hash": "4b43b9a21880c7c69b6d184a07d6b13d50a2f311bace24dca8adc27b5265b8e7", + "block_time": 1730747979, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", + "utxos_info": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4165,27 +4181,27 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 62, - "result_count": 31 + "next_cursor": 64, + "result_count": 32 }, "/v2/addresses/
/dividends": { "result": [ { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4207,9 +4223,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4240,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4266,9 @@ }, { "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4283,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4292,10 +4308,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4303,14 +4319,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4335,25 +4351,25 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4370,33 +4386,33 @@ }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4413,8 +4429,8 @@ }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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", @@ -4427,10 +4443,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4471,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4480,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4508,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730747697, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4520,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4548,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730747663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4560,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4588,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730747659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4600,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4628,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4646,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4654,22 +4670,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730747694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4678,22 +4694,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730747679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4702,22 +4718,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730747666, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4726,22 +4742,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cd779281665ec54a0657c909a5a5888c98253660c075af8adf487672735a1d69", + "tx_hash": "50b49611e9c13e2db8dcfedef4d55bf370eb017754c034f804dc03befeac954b", "tx_index": 15, "block_index": 127, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152307, + "block_time": 1730747648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4750,22 +4766,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4780,22 +4796,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4812,8 +4828,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4842,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -4847,19 +4863,20 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, - "text": "\"Hello, world!\"" + "text": "\"Hello, world!\"", + "skip_validation": false }, "name": "broadcast", "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "020000000001016bbdac07a76d292a49995d8bf8de89da525d9b32d2ab29a52feb98c105f20576000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29b93f99a28b4bb16aef7b085834e88cc7ffc295c6ea9bc30651365677485eea265eb32240ea4dc2f70483ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985772, + "btc_fee": 14228, + "rawtransaction": "02000000000101588a89abdd6d686b998a6dc7c3f8c941a4b876cba76960e30dffed5ce3c8fae600000000160014798a41286d38d8c9e630455aadf358126716233effffffff0200000000000000002b6a298bb510e9b688979f16b5a858d82a242440cc9d0822fc31934510d638e80ec71c47513a437d54b3c6756cba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4894,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca436714468448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "data": "434e5452505254590bc9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837fc3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", "btc_in": 5000000000, - "btc_out": 3000, - "btc_change": 4999978921, - "btc_fee": 18079, - "rawtransaction": "020000000001013ba8474dba78d5b2a7418f254db65d0f667eb6846cf0a2d1a37fec518310b597000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03b80b0000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a100000000000000004b6a4975cbfbf03e30e31bb5e20d495fb01c2653599b2a09b993f3207ec6a8201d7607d5182a30e2d2fa8df227d622eecd6eb3b30958a79f37fd67972e55d5fc313b9c11b791efbb1facff6ca99f052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_out": 1000, + "btc_change": 4999980891, + "btc_fee": 18109, + "rawtransaction": "02000000000101a72b29e52c3b0238e3d87f4bd9b453964eb6a5e05d0d2a506c6a2a031bc7853f00000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e803000000000000160014798a41286d38d8c9e630455aadf358126716233e00000000000000004b6a49ca9c9fbe4157dd8e5c65ba98153af7bbec77c1cdce96a14ba270329329ebce70252b14a21261a2f3e4bc8da943c5d0c826e271f4b83284ebe2d8a38ccd13b530be776f45383e9ea0525ba7052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", "status": "valid" } } @@ -4902,49 +4920,31 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 1000, - "overburn": false + "overburn": false, + "skip_validation": false }, "name": "burn", "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985793, - "btc_fee": 13207, - "rawtransaction": "02000000000101b2eea65ffc130ffefef3cddf867d62b6a3a3d85413826b0f9a9bec147e2af13f000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000" + "btc_change": 4999985771, + "btc_fee": 13229, + "rawtransaction": "020000000001010693eb3841c7284d6486e8f298589a8e35b69de57bd53de29858d50baf119faf00000000160014798a41286d38d8c9e630455aadf358126716233effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000" } }, "/v2/addresses/
/compose/cancel": { - "result": { - "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" - }, - "name": "cancel", - "data": "434e5452505254594694d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985795, - "btc_fee": 14205, - "rawtransaction": "020000000001017607181c41ad743b880f28175184e2c04167fd1d94fd25a7209c9ea321fb3887000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29303ebad3021b4d6138b5db967d05db545eedba6d0c675259c45a095f6fd75b9424d81427e4e3aaa10e83ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "status": "valid" - } - } - } + "error": "['incorrect source address', 'offer not open']" }, "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,9 +4958,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986323, - "btc_fee": 13677, - "rawtransaction": "02000000000101187d4666a3e0d464a2bfa34950f8e7420dc6a833e8186850829a30dbb5ddc164000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000226a2094d7a3f3bbcd35ff65faa7e260b5ef6c46b4bb390ea97ca5c8ec89f01b2ffc9493bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999986301, + "btc_fee": 13699, + "rawtransaction": "02000000000101e62af58091a274b9e962eb4269b174581d057208c213ce62c5f6d94ffe11469300000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000226a2084f1b46a0a401279cd1f07e2844c86a16b33bf0abbdfcdd392f198748b9091227dbc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +4976,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4984,6 +4984,7 @@ "status": 0, "open_address": null, "oracle_address": null, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -4998,9 +4999,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920236, - "btc_fee": 14264, - "rawtransaction": "02000000000101d1c09a210e2f9eb576d8d0c26d620bd0524b583f80fab9276b3596b96e02afae01000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7effffffff0200000000000000002c6a2a727cb1709e366477fd16c83cc5d4d3816740f1707e9354508ff03c7fc05a03221c9533b31becd82add28ecc9092701000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7e02000000000000", + "btc_change": 4949920213, + "btc_fee": 14287, + "rawtransaction": "020000000001016bc493048e8304d83f9a97127473d44c0ae788545397d55d27b36d0e80a7fdce0100000016001448083d67f6b413b14d42a89a6e66d09385fe2a94ffffffff0200000000000000002c6a2a58f5bf22d68657e615981216404bca840022736410c2d967559ecf0a235149cfe959d3593a92668e19cbd5c909270100000016001448083d67f6b413b14d42a89a6e66d09385fe2a9402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5022,14 +5023,15 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", + "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5046,9 +5048,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101bccddcc7c292c9f93bd0a857d43e2f251b8660b79784967209514551c8d90556000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2116d6d2bf8ee338938cd8bb42921a91b70dcb91491707280fba52b2d7971bd7428158bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "0200000000010123c07633cdc00513902a5a00b5f835aa9f6c9454ccda949592efe70fc42125bc00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21f5a744d8c07985b3689f2e41a85e7cfc40cd1e7a8364446ebfc03120c781ed8b6e42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,23 +5067,24 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "transfer_destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "lock": false, "reset": false, "description": null, + "skip_validation": false, "quantity_normalized": "0.00001000" }, "name": "issuance", "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983723, - "btc_fee": 15731, - "rawtransaction": "02000000000101139de7476f55fdf21e92052391719656f33b7347ea131643e6b1453a536795c7000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0322020000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a10000000000000000236a21ceeba0a4b3fe260c096002670704f57eedf714525e8020461d52d24f2d7fbe50646bb2052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999983697, + "btc_fee": 15757, + "rawtransaction": "02000000000101cd29aff4233d61afb4aaa8b223de27eea6f55718dd7f4d4dde73749a9ab9db9300000000160014798a41286d38d8c9e630455aadf358126716233effffffff032202000000000000160014798a41286d38d8c9e630455aadf358126716233e0000000000000000236a213d66f0d40fc5df290ee6fa7b13a5163a683e1015338e6c1aa3d063b808df6c256151b2052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,43 +5109,44 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", 1 ], [ "MPMASSET", - "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", 2 ] ], "memo": null, - "memo_is_hex": false + "memo_is_hex": false, + "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807967f0a0bd9d33804ecfac05d869b2782a3467a1805511f1f6819b94a0094d338694640cbee5b8969d40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280798a41286d38d8c9e630455aadf358126716233e8056d261ee75bba4a6fddbe43bfa34388e116f04b140000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945404, - "btc_fee": 52596, - "rawtransaction": "020000000001049e5f6c01f025eb801bd2f83123f1fbe1bc26d82731c5e989f8827fd1c96545ca000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffff1945c0490ae4bbe569a4e9478ec268003a1461dd53616cbc78fa81d421f8ee6000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffffa6f704e1baaf5c6952e2ea6c20f6981d6dc033886747b9cf110bf2877cd5b1a000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffe4f980087f32a896e9ad9c82620f463004e29fc7dfad97e2a3ee49ab2d75c415000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03e80300000000000069512102f405a8ba5cf6a2b810a6c3550b257049f2d6e1b083639fb7cdf85a7788a4b72d210255bb00ed856a417842a099b3da1b48400df47e096af35ec60cb900f2caafc54d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102eb05a8ba5cf6a2b81075c3578b5c17b9524f7c83032d501bc82433c5f08e835c2103321a81b8949bb7f9d93439ba9728ced469f8c0ecd265c3860cb90511aa2701df2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aebcf216a8040000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000000000000", + "btc_change": 19999945318, + "btc_fee": 52682, + "rawtransaction": "02000000000104f607fc6ac73694cbdf0482fc57e55e793df947b5c0cdfecb6d99670ba9fab85f00000000160014798a41286d38d8c9e630455aadf358126716233effffffffea46021e7f378ebcfac51cf9082b31d34be08a2608735226c3f963b6b2a3a67d00000000160014798a41286d38d8c9e630455aadf358126716233effffffff8835858931a80328613ab84b09665c8994a0f2c0289187ca6edd9491159d910200000000160014798a41286d38d8c9e630455aadf358126716233effffffff94fef9c94436e0efdd17dce4c9f426289832f5ee2c71af4d11d77dde1470e2a500000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e80300000000000069512102096f9b0d83e89bf9655c72633c3bb350fae8105f164efb321f007a926fe9b0512103c91047b9b7071ea9b06ea4d25b1ebe8b3fd43978e18d372225145b06f58bba2421038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102166f9b0d83e89bf9658f7261bc423911d2a12887dfa8cb7745a989ca7d8ea6e52103ea2ec6ef6566f0dc0bca022f80fa85710becb7698e89866225145ee595037edc21038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053ae66f216a804000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,13 +5158,14 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", "get_quantity": 1000, "expiration": 100, "fee_required": 100, + "skip_validation": false, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5171,7 +5176,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5183,9 +5188,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985208, - "btc_fee": 14792, - "rawtransaction": "02000000000101ab499e5a3d8196519c12febc23e233920eb19d00e35c78dca0789e44b26cdac2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000356a33bece1d3d171adcd7284dfef1ab9a46411240de9c5909b634b7850938f967c24dbdbf6ce5d336636d946de16548c2ee67eca42a38b8052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985184, + "btc_fee": 14816, + "rawtransaction": "0200000000010124dfe6e039b3921bbc77b01d27d9873e525c8a16976b90a07bdaf5bc31716f5b00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000356a3371c8fe2a15008d4be5e706e90ca609224989c3cc964e23a4902eb765a38933c6eed72793e62fe224a98cbb25bda2593bb8874420b8052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,13 +5212,14 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 1000, "memo": null, "memo_is_hex": false, "use_enhanced_send": true, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -5224,19 +5230,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", + "data": "434e54525052545902000000000000000100000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985501, - "btc_fee": 14499, - "rawtransaction": "02000000000101b2623bad63243f7a0e974d94b0c223add9b0b80a5e255266b92ba264c7a45311000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000306a2ea21d7eb608cf78cca691ce6c36f4842f50d439486b60d2e6b88abcceecd2cedf427af27fa2b7385ff2398e091e045db9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985478, + "btc_fee": 14522, + "rawtransaction": "02000000000101dd7bda3b4b59bf32599c05b52f5a76f7a3eec2469f444953195de95e76c79e3600000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000306a2edf6b001f2be4f015ab53c1442c78b1eca279ddbe2c64fadff42ff8f738a6c117a466508a433bc31a81abeedcb1be46b9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5252,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "flags": 7, - "memo": "FFFF" + "memo": "FFFF", + "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904805511f1f6819b94a0094d338694640cbee5b8969d07ffff", + "data": "434e545250525459048056d261ee75bba4a6fddbe43bfa34388e116f04b107ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986264, - "btc_fee": 13736, - "rawtransaction": "02000000000101cf72977222916e5cfff737c5d75904919a603da30c94d8ca213d849c9728dd9b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2190fbdb1d8fa53db0eb2a8fc10d632c18bddc537f624460499580413ae7e1bfc5bd58bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "02000000000101c0d0595a484999dd4ccb63f5fedb9bd64b6612050031ce1fa0c4528d36107e7400000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21eccfda5fac6fc9abc27a01363e983824a066affd4fe482cd2a31ceef0f70690c8a42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "flags": 7, "memo": "ffff" } @@ -5272,17 +5279,18 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "quantity": 1000 + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "quantity": 1000, + "skip_validation": false }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812619, - "btc_fee": 14381, - "rawtransaction": "02000000000101065e2fae24d3ed96a884712623a3a8e194a3cdde3cb588023317f389f6ba83df030000001600145511f1f6819b94a0094d338694640cbee5b8969dffffffff03e8030000000000001600142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b400000000000000000c6a0a2e4844bdce5321afdbce8b250827010000001600145511f1f6819b94a0094d338694640cbee5b8969d02000000000000", + "btc_change": 4949812595, + "btc_fee": 14405, + "rawtransaction": "02000000000101cfeb54fb835f586e9fee34083c13f100ad5e40abab9d2db77b969bee38bf25960300000016001456d261ee75bba4a6fddbe43bfa34388e116f04b1ffffffff03e8030000000000001600146f8fed86c68edbd4884f3786230f26561a53e3eb00000000000000000c6a0a070e7e3301a812d6c094732508270100000016001456d261ee75bba4a6fddbe43bfa34388e116f04b102000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5303,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5313,6 +5321,7 @@ "lock_quantity": false, "divisible": true, "description": "", + "skip_validation": false, "price_normalized": "0.00000010", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5324,9 +5333,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985443, - "btc_fee": 14557, - "rawtransaction": "02000000000101ab2eb3e3483c4039cce505f85cc0563cd331a85d45dff80d9bf880fe20828bb2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000316a2f0dec8a46d77959fb639a45d020ade0350620490390b08869ef4325180cb952a68b03d1100c753808ff73cd2066b25e23b9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999985419, + "btc_fee": 14581, + "rawtransaction": "020000000001010e9c33902a07fb4f102bc3fd401322a78f6828385e29db5e84046bfc381e056100000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000316a2fa44097f62f981fe894b248a1b4bccb99d1e0eaad79102f2d287beb67cdf995490d1ee729d1202cb954f22295a410fe0bb9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5370,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTC", "quantity": 1, + "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5377,9 +5387,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987028, - "btc_fee": 12972, - "rawtransaction": "02000000000101268cd03227a87269a296132dced7a43ec578c67b187578cdda41ab4861774127000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000166a14eebd7268248a3ec571ad08ef295683791a5dd5c154bf052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", + "btc_change": 4999987006, + "btc_fee": 12994, + "rawtransaction": "0200000000010153f12858ce00c24c07a95ba3933919f2967a2ac071c722830597187d4b2c6b5c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000166a141971f5e8107b61f619f206bdd372e58edc28e5c53ebf052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,10 +5404,11 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", "asset": "XCP", "quantity": 1000, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -5408,12 +5419,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c393464323835333663333666383932316563353335643561336532633533386665613265306561663936663138663536666536323861323436376233636435623a317c5843507c31303030", + "data": "434e54525052545964626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c633334383666393139326532336538346332346636376632303264656662383531386233613432333632633937343230353335343563633762663336396363623a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918400, - "btc_fee": 78600, - "rawtransaction": "02000000000106ca9abaac6407cea4a26e4325a5b6b605c16a5f49ad8b20edb751d3f839e60f01000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff2b86ecbeb4d73419de2ce8914ce12bc97ad3c5f326f3974cc97b9b093a3a7286000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff5efbf12951347af1bc0c104cf84743ee371bbf9077467d9da40739605f1e7c7b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff10fe6ccda7c1f8982d6c4e3ff1bbe67e2821d56b3b69cba67ccfd95d0d080b28000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff101bb44012e5c305a391479949891b545cbdbd18c3e2f7116a1854b927bcea27000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffb0d9bedd8c9fdd0eadc8ba2c4a7d994422c13be06f07d20dc8f80ad0497d221d000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff04e80300000000000069512103db6eed4d1970d0de5bf33f4147e75816cf60917a132dbe1fd32db973c4ef5847210387118c8bf69ca93d3ddb93f8b8d0f234f045d2b0dab2d5cac29c2aba24522f1d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102db6eed4d1970d0de5ba13e1103f5515ecd689a755679b21a8879ef7587e206ac2102841d9994f6ddfa69328a84f5fcd1a66de64585e1cabd948e9a9a7abe2b052f502103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512103f16eed4d1970d0de5bf4391757a9581ba71aaf6a527ab74ebd18dc10b58133e32103b725fff197ef9f5957ebe2cccab797558070b387af8ba6b6fba84e881c671c9d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053ae406d22fc060000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000002000002000000000000", + "btc_change": 29999918271, + "btc_fee": 78729, + "rawtransaction": "020000000001066ad743acd4c3488452e3ee8bb7634147730540d56e888c8814d16c0cd3ef508300000000160014798a41286d38d8c9e630455aadf358126716233effffffff51e54678a806081a6fe5d1697bf5d819fceddc70791f0c1b1b1e8b3da735ac4200000000160014798a41286d38d8c9e630455aadf358126716233effffffffb7f54f082df2dbe41239ef3f628814556b9dde233d80afaeb7237db0fde9985a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff80772f7918c5df9e5cdd47db19883a6cf705b0dbf208982e63f1bc81a7b80f2a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff5d55536296669524e105dce47547815bee5daae8145e2aa337ea8b2892d715b200000000160014798a41286d38d8c9e630455aadf358126716233effffffffbab42c6da624e5db2accd8e2dbab3d1ebc5b33c015cf44b07b00c242946e7b8c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff04e80300000000000069512102bb5cd9b6449af1a66421e6eab35daf5c602fd8281009b42d5a874d16ae6dfce22103b26d824a5ab2772127a04b2b92fc80435208c3bf52adfda5fd88bcc39dc02c3721038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512103bb5cd9b6449af1a66474bdbba41bad48686382635e5df07e04c70b52a46da9bf2102a332831f50bd317670e81e7393e9de11515e95f904abbaecfdd8bf99cd9523d021038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102915cd9b6449af1a6647ce7eaa313af510814b12d5b0bf67962f53b60c008cfe92103c10ab62e68df021744da2d45a18ae726656ca5cc379e8ed99ebb88fbaba6154921038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aebf6c22fc06000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5426,10 +5437,11 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, + "skip_validation": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -5440,12 +5452,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964323432353561353564363832353735323130626261393164616434666538643536336138316664346234663137353665343164633566636538643966383865373a307c62637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c5843507c31303030", + "data": "434e54525052545964663235336432393633636530626466613364393765376639343939393035636337323166303332386633373335393138376466343566343639306533636338323a307c626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030275, - "btc_fee": 46725, - "rawtransaction": "0200000000010300dce77bb944104741936aa0b2b4b265b003e9de46966f0d609e03bc7b0b968901000000160014f9f761de6a26b38c86a3f54543766007cab6e30ffffffffffdbd816d4d7e0daa457fcbda1e6f3ec2bd72cdf3639c9bcafb60916c861b28e300000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff940d2ffcf377a103eb93ce0505be650e0aef5a5f64e5701e6aeeb1560331a58001000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff04e80300000000000069512103c010e4c250f47059c81bf89b12fd3195b90f36696ef58e25d277a20a1ed3deda2103b8e00811d3b48a87c103c6bf3db54b399759dee65ada72df8c304d2ed768e69321038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103c010e4c250f47059c84aaccc45f060cdea026a3a61fd8b6e8526e14e4dc08fba2102b8bf0000d0b98d8ccc0290f860bf433c82478bf758d829d8c8325a7d836df5b621038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103ea10e4c250f47059c84aab9855f17788d479022367f78b22e745933a7cb1bfa3210281d16c70b780ece2f967f3890ed47308f13dea846ebc43e8b906281ae60c854c21038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aec3770b2701000000160014f9f761de6a26b38c86a3f54543766007cab6e30f02000002000002000000000000", + "btc_change": 4950030198, + "btc_fee": 46802, + "rawtransaction": "0200000000010308f4bc439a034ae357a0b066c462aba7579d028af8c277d66978b0fb41a8f107010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffffd08e44cbd77cf280412d6f3fb45d91e21369d183406a69056a85a3138fd6f3fe000000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff65bc2abfe66805b909bc84c5fe7c8401e45d00e6d2aae94782884b09ffca5aa7010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff04e80300000000000069512102c02d27c0a64ddc2f3f61210dd246a13fe7630b18c1694fec0eface3f4907879c2102dba31df58d98a65d17e5ddda86a09d86161f89a2a7614d4683db37fbcf6957f7210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512102c02d27c0a64ddc2f3f30210bd14cf568ed365b4396631df40af88f2f4141d2db210394fc5dbb86d3fb5550f0c883d1a288d1114983a9e1601d09dc843cbacc6a549e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512103ea2d27c0a64ddc2f3f61214c8246b6718616680795691db8689bfd5b7030e2282103ecc524c1b4a19f6d2286beedb491fbb6252db1c494567e73baea0fccab0f635e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953ae76770b27010000001600144de620b4af02f945f107cdb328406ee6e7a25bfc02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5461,42 +5473,42 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 203, + "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730152620, - "last_issuance_block_time": 1730152620, + "first_issuance_block_time": 1730747979, + "last_issuance_block_time": 1730747979, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "owner": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "owner": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset", - "first_issuance_block_index": 198, - "last_issuance_block_index": 198, + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730152603, - "last_issuance_block_time": 1730152603, + "first_issuance_block_time": 1730747962, + "last_issuance_block_time": 1730747962, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -5504,16 +5516,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730152434, - "last_issuance_block_time": 1730152441, + "first_issuance_block_time": 1730747792, + "last_issuance_block_time": 1730747801, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "owner": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "issuer": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "owner": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "divisible": true, "locked": false, "supply": 100000000000, @@ -5521,16 +5533,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730152430, - "last_issuance_block_time": 1730152430, + "first_issuance_block_time": 1730747789, + "last_issuance_block_time": 1730747789, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 100000000000, @@ -5538,8 +5550,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730152396, - "last_issuance_block_time": 1730152396, + "first_issuance_block_time": 1730747755, + "last_issuance_block_time": 1730747755, "supply_normalized": "1000.00000000" } ], @@ -5551,8 +5563,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false, "supply": 10000000000, @@ -5560,15 +5572,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730152289, - "last_issuance_block_time": 1730152299, + "first_issuance_block_time": 1730747628, + "last_issuance_block_time": 1730747640, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5576,14 +5588,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5591,7 +5603,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5604,9 +5616,9 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "quantity": 82649941196, + "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5616,7 +5628,7 @@ "locked": true, "issuer": null }, - "quantity_normalized": "826.49941000" + "quantity_normalized": "826.49944000" } ], "next_cursor": null, @@ -5626,9 +5638,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5643,7 +5655,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5669,9 +5681,9 @@ }, { "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5686,7 +5698,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5711,10 +5723,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5722,14 +5734,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": "cancelled", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5754,25 +5766,25 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5789,33 +5801,33 @@ }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 76, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5832,8 +5844,8 @@ }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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", @@ -5846,27 +5858,27 @@ "/v2/assets//matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5886,13 +5898,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5906,7 +5918,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5926,13 +5938,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5946,7 +5958,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5964,29 +5976,109 @@ "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 3 + "result_count": 5 }, "/v2/assets//credits": { "result": [ { - "block_index": 194, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, + "event": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -5994,20 +6086,20 @@ }, { "block_index": 125, - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "event": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6015,20 +6107,20 @@ }, { "block_index": 124, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6036,20 +6128,20 @@ }, { "block_index": 124, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "event": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6061,16 +6153,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6083,17 +6175,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 208, + "block_index": 210, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -6104,17 +6196,17 @@ "quantity_normalized": "15.00000000" }, { - "block_index": 207, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 209, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, + "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -6125,17 +6217,17 @@ "quantity_normalized": "0.00001000" }, { - "block_index": 206, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 208, + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, + "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -6146,17 +6238,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 205, - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 207, + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "tx_index": 72, + "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730747995, "asset_info": { "divisible": true, "asset_longname": null, @@ -6167,17 +6259,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 204, - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 206, + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "tx_index": 71, + "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -6200,14 +6292,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6222,20 +6314,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6250,20 +6342,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6278,20 +6370,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -6306,7 +6398,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730152289, + "block_time": 1730747628, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6317,11 +6409,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6329,7 +6421,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -6341,11 +6433,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6353,7 +6445,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -6365,11 +6457,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 72, - "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", - "block_index": 205, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 74, + "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "block_index": 207, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6377,7 +6469,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730152636, + "block_time": 1730747995, "asset_info": { "divisible": true, "asset_longname": null, @@ -6389,11 +6481,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 71, - "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", - "block_index": 204, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 73, + "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "block_index": 206, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6401,7 +6493,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152632, + "block_time": 1730747991, "asset_info": { "divisible": true, "asset_longname": null, @@ -6413,11 +6505,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", - "block_index": 203, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_index": 72, + "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "block_index": 205, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6425,7 +6517,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152628, + "block_time": 1730747986, "asset_info": { "divisible": true, "asset_longname": null, @@ -6437,16 +6529,16 @@ "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 14, - "result_count": 9 + "next_cursor": 15, + "result_count": 10 }, "/v2/assets//dispensers": { "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6455,7 +6547,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6465,7 +6557,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6481,9 +6573,9 @@ }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6492,7 +6584,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6502,7 +6594,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730747723, "asset_info": { "divisible": true, "asset_longname": null, @@ -6518,9 +6610,9 @@ }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6528,10 +6620,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6539,7 +6631,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730747763, "asset_info": { "divisible": true, "asset_longname": null, @@ -6555,18 +6647,18 @@ }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6576,7 +6668,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -6597,9 +6689,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6608,7 +6700,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6618,7 +6710,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6646,7 +6738,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6654,7 +6746,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6663,7 +6755,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6671,7 +6763,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6680,7 +6772,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6688,7 +6780,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6697,7 +6789,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6710,29 +6802,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6747,7 +6839,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -6761,27 +6853,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6796,7 +6888,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730747751, "asset_info": { "divisible": true, "asset_longname": null, @@ -6810,19 +6902,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6830,7 +6922,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6845,7 +6937,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -6859,19 +6951,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6879,7 +6971,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6894,7 +6986,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -6917,10 +7009,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6945,7 +7037,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6963,22 +7055,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", + "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -6987,22 +7079,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", + "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", "tx_index": 12, "block_index": 124, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152296, + "block_time": 1730747636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7011,22 +7103,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7041,22 +7133,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", + "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", "tx_index": 11, "block_index": 123, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152293, + "block_time": 1730747632, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -7072,9 +7164,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7089,7 +7181,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7115,9 +7207,9 @@ }, { "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7132,7 +7224,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7157,68 +7249,68 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 209, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730747933, "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", "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 51, + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "block_index": 207, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "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": 212, + "expire_index": 206, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "expired", "confirmed": true, - "block_time": 1730152570, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7233,35 +7325,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": 59, - "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", - "block_index": 193, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 60, + "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "block_index": 209, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, - "give_remaining": 1000, + "give_remaining": 0, "get_asset": "BTC", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 214, + "expire_index": 215, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730152583, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7278,54 +7370,54 @@ }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 51, + "next_cursor": 76, "result_count": 8 }, "/v2/orders/": { "result": { - "tx_index": 74, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "give_asset": "XCP", - "give_quantity": 1000, + "tx_index": 54, + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "block_index": 210, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "give_asset": "BTC", + "give_quantity": 3000, "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, + "get_asset": "XCP", + "get_quantity": 3000, "get_remaining": 1000, "expiration": 21, - "expire_index": 228, + "expire_index": 209, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1730152654, + "block_time": 1730748017, "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", + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", "get_remaining_normalized": "0.00001000", "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", @@ -7337,27 +7429,27 @@ "/v2/orders//matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7377,27 +7469,67 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", - "forward_quantity": 2000, + "forward_quantity": 1000, "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 206, + "match_expire_index": 229, "fee_paid": 0, - "status": "completed", + "status": "pending", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7412,27 +7544,27 @@ "locked": false, "issuer": null }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 2 + "result_count": 3 }, "/v2/orders//btcpays": { "result": [ { "tx_index": 53, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "btc_amount": 2000, - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "status": "valid", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "btc_amount_normalized": "0.00002000" } ], @@ -7443,9 +7575,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "block_index": 187, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7463,7 +7595,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730747901, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7489,27 +7621,27 @@ }, { "tx_index": 54, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "block_index": 210, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "give_asset": "BTC", "give_quantity": 3000, - "give_remaining": 0, + "give_remaining": 1000, "get_asset": "XCP", "get_quantity": 3000, - "get_remaining": 0, + "get_remaining": 1000, "expiration": 21, "expire_index": 209, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730748017, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7526,8 +7658,8 @@ }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "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", @@ -7535,9 +7667,9 @@ }, { "tx_index": 49, - "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", "block_index": 184, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7555,7 +7687,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730747828, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7581,9 +7713,9 @@ }, { "tx_index": 51, - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", "block_index": 207, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7601,7 +7733,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152654, + "block_time": 1730747995, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7626,10 +7758,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "block_index": 192, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 58, + "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "block_index": 193, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7637,7 +7769,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7647,7 +7779,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152570, + "block_time": 1730747933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7672,36 +7804,36 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 59, + "next_cursor": 60, "result_count": 8 }, "/v2/orders///matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7721,13 +7853,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7744,7 +7876,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152540, + "block_time": 1730747901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7764,30 +7896,116 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730747828, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, + "tx1_expiration": 21, + "match_expire_index": 229, "fee_paid": 0, - "status": "expired", + "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730152467, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7808,32 +8026,32 @@ } ], "next_cursor": null, - "result_count": 3 + "result_count": 5 }, "/v2/order_matches": { "result": [ { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 54, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, "tx0_block_index": 186, "tx1_block_index": 188, - "block_index": 188, + "block_index": 209, "tx0_expiration": 21, "tx1_expiration": 21, "match_expire_index": 208, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1730152544, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7853,13 +8071,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", "tx0_index": 51, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 52, - "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7873,7 +8091,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730152540, + "block_time": 1730747901, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7893,13 +8111,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", "tx0_index": 49, - "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "tx1_index": 50, - "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7913,7 +8131,47 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730152467, + "block_time": 1730747828, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 60, + "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_index": 54, + "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 194, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7931,10 +8189,50 @@ "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" + }, + { + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_index": 54, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_index": 76, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "forward_asset": "BTC", + "forward_quantity": 1000, + "backward_asset": "XCP", + "backward_quantity": 1000, + "tx0_block_index": 209, + "tx1_block_index": 209, + "block_index": 209, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 229, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730748003, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 3 + "result_count": 5 }, "/v2/bets": { "result": [], @@ -7958,66 +8256,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", "block_index": 121, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730152285, + "block_time": 1730747624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ff424b42a9965359591a54f355ce5c75756123497e76f35debdaef0ea515e76a", + "tx_hash": "3ed22c35c310cbc89a1cd6563227ad0c0b6aaae02dab4cdcdafb85f968f36ed6", "block_index": 120, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730152281, + "block_time": 1730747621, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "6f8c5ecfa83f7514ac2c883bba9d8f016f9fc383a064597aa379221a09df2e26", + "tx_hash": "479f4cac42c754f06e32fbdecc57527e4b76fd7b51dcadd877db18c8a523dea3", "block_index": 119, - "source": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0", + "source": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730152277, + "block_time": 1730747618, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "ea5d0be869f53cc900a7b0d86eefc1124bba3014be198aeef545d113ca6c1415", + "tx_hash": "f6e3a7d0fbe60479c3f6e35bcfff2de735c4149ae4d6090e845c75b5f5caf52e", "block_index": 118, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730152274, + "block_time": 1730747614, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "b99ccc7c02aa79d4f89a55faf59b2997833ac007497ad85b9c54f7f4aee6b38f", + "tx_hash": "02e71ce74746cdb8e530b3f44d2f65a8e533d6a64c7f6447be12e25a3e6dd774", "block_index": 117, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730152271, + "block_time": 1730747611, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8029,9 +8327,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8040,7 +8338,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8050,7 +8348,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -8066,9 +8364,9 @@ }, { "tx_index": 29, - "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", + "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", "block_index": 142, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8077,7 +8375,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8087,7 +8385,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152374, + "block_time": 1730747723, "asset_info": { "divisible": true, "asset_longname": null, @@ -8103,9 +8401,9 @@ }, { "tx_index": 30, - "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", "block_index": 150, - "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8113,10 +8411,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8124,7 +8422,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152404, + "block_time": 1730747763, "asset_info": { "divisible": true, "asset_longname": null, @@ -8139,10 +8437,10 @@ "satoshi_price_normalized": "0.00000001" }, { - "tx_index": 62, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8151,7 +8449,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8161,11 +8459,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8177,18 +8475,18 @@ }, { "tx_index": 33, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8198,7 +8496,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -8219,9 +8517,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8230,7 +8528,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8240,7 +8538,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -8260,19 +8558,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8280,7 +8578,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8295,7 +8593,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -8309,19 +8607,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8329,7 +8627,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8344,7 +8642,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -8363,20 +8661,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8397,20 +8695,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8433,12 +8731,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "tx_index": 41, - "utxo": "1d83b22e706c969e3dbc46fc83aaed861ed27d6aadc4e25772b7f315f7498313:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "utxo": "9e188f31b823ed1b059c50f35dbc1c3972e2275bd6c69a65b2139ceb3a49d3c2:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "divisible": true, "asset_longname": null, @@ -8450,16 +8748,16 @@ }, { "block_index": 154, - "address": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "address": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "divisible": true, "asset_longname": null, @@ -8476,47 +8774,47 @@ "/v2/events": { "result": [ { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -8527,20 +8825,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -8550,24 +8848,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -8577,29 +8875,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 670, - "result_count": 676 + "next_cursor": 691, + "result_count": 697 }, "/v2/events/": { "result": { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 } }, "/v2/events/counts": { @@ -8610,7 +8908,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 61 + "event_count": 63 }, { "event": "SWEEP", @@ -8622,7 +8920,7 @@ }, { "event": "ORDER_UPDATE", - "event_count": 12 + "event_count": 18 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -8631,19 +8929,19 @@ "/v2/events/": { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -8653,24 +8951,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 669, + "event_index": 690, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -8680,51 +8978,51 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 666, + "event_index": 687, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 208, + "block_index": 210, "calling_function": "utxo move", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", - "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 }, { - "event_index": 656, + "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "block_index": 207, - "calling_function": "cancel order", - "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "quantity": 5000, + "block_index": 209, + "calling_function": "order expired", + "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730152654, + "block_time": 1730748003, "asset_info": { "divisible": true, "asset_longname": null, @@ -8732,26 +9030,26 @@ "locked": true, "issuer": null }, - "quantity_normalized": "0.00005000" + "quantity_normalized": "0.00003000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 }, { - "event_index": 645, + "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", - "block_index": 206, + "block_index": 208, "calling_function": "mpma send", - "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", + "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", "quantity": 10, - "tx_index": 73, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -8761,46 +9059,46 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_time": 1730747999 } ], - "next_cursor": 644, - "result_count": 91 + "next_cursor": 656, + "result_count": 92 }, "/v2/events//count": { "result": { "event": "CREDIT", - "event_count": 91 + "event_count": 92 } }, "/v2/dispenses": { "result": [ { - "tx_index": 75, + "tx_index": 77, "dispense_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8815,7 +9113,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -8827,21 +9125,21 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 63, + "tx_index": 65, "dispense_index": 0, - "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", + "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 64, + "block_index": 199, + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8849,7 +9147,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8864,11 +9162,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152599, + "block_time": 1730747958, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -8878,27 +9176,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", + "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", "block_index": 147, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 208, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_index": 210, + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "last_status_tx_hash": null, - "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8913,7 +9211,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730152392, + "block_time": 1730747751, "asset_info": { "divisible": true, "asset_longname": null, @@ -8927,19 +9225,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", + "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8947,7 +9245,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8962,7 +9260,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152371, + "block_time": 1730747720, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,19 +9274,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", + "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", "block_index": 140, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", + "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8996,7 +9294,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9011,7 +9309,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730152367, + "block_time": 1730747715, "asset_info": { "divisible": true, "asset_longname": null, @@ -9029,11 +9327,11 @@ "/v2/sends": { "result": [ { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9041,7 +9339,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -9053,11 +9351,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "tx_index": 77, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9065,11 +9363,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9077,11 +9375,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9089,7 +9387,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -9101,11 +9399,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9113,11 +9411,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9125,11 +9423,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "tx_index": 75, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9137,11 +9435,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730152650, + "block_time": 1730747999, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9149,21 +9447,21 @@ "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 27, - "result_count": 32 + "next_cursor": 28, + "result_count": 33 }, "/v2/issuances": { "result": [ { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -9178,20 +9476,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 64, - "tx_hash": "bf75f7092b509102f9cc7488b8a1d2b5ac9b3663ab98a89b377d0ef6fe1dcb7c", + "tx_index": 66, + "tx_hash": "3735cc23ff0d1af87f41b77e1d4ec864e2d6d6ffbd47d46b914216aac2e11f30", "msg_index": 0, - "block_index": 198, + "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "transfer": false, "callable": false, "call_date": 0, @@ -9206,20 +9504,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152603, + "block_time": 1730747962, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", + "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -9234,20 +9532,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152454, + "block_time": 1730747814, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", + "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -9262,20 +9560,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730152441, + "block_time": 1730747801, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", + "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -9290,7 +9588,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152437, + "block_time": 1730747796, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9300,15 +9598,15 @@ }, "/v2/issuances/": { "result": { - "tx_index": 68, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", + "tx_index": 70, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", "msg_index": 0, - "block_index": 201, + "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "transfer": false, "callable": false, "call_date": 0, @@ -9323,7 +9621,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730152620, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9331,17 +9629,17 @@ "/v2/sweeps": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -9351,17 +9649,17 @@ "/v2/sweeps/": { "result": [ { - "tx_index": 60, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_index": 61, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730152588, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" } ], @@ -9372,9 +9670,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9382,14 +9680,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730747708, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", + "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", "block_index": 137, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9397,7 +9695,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152356, + "block_time": 1730747705, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9407,9 +9705,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9417,17 +9715,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730152360, + "block_time": 1730747708, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, "block_index": 155, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9452,7 +9750,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9461,10 +9759,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "tx_index": 22, "block_index": 135, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9489,7 +9787,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730152348, + "block_time": 1730747697, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9501,10 +9799,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "tx_index": 18, "block_index": 131, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9529,7 +9827,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730152322, + "block_time": 1730747663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9541,10 +9839,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9569,7 +9867,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730152319, + "block_time": 1730747659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9581,10 +9879,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", + "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", "tx_index": 10, "block_index": 125, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9609,7 +9907,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730152299, + "block_time": 1730747640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9627,22 +9925,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9651,22 +9949,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", + "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", "tx_index": 21, "block_index": 134, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152344, + "block_time": 1730747694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9675,22 +9973,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", + "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", "tx_index": 20, "block_index": 133, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152329, + "block_time": 1730747679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9699,22 +9997,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", + "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", "tx_index": 19, "block_index": 132, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152326, + "block_time": 1730747666, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9723,22 +10021,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7373471bfbb61006816b238cc58de75e2684d1b9cc29a2ea12ed240f42efc5c1", + "tx_hash": "75057efd3c5e87afdb08c657cc7401e31b3255c06e8d2115a88d08044dfa9efb", "tx_index": 17, "block_index": 129, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152314, + "block_time": 1730747655, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9752,22 +10050,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, "block_index": 136, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -9780,30 +10078,30 @@ "result": [ { "vout": 0, - "height": 200, + "height": 202, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c", + "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" }, { "vout": 1, - "height": 200, + "height": 202, "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1", - "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" + "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b", + "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" }, { "vout": 2, "height": 157, "value": 100000, - "confirmations": 52, + "confirmations": 54, "amount": 0.001, - "txid": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76", - "address": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0" + "txid": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c", + "address": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7" } ], "next_cursor": null, @@ -9812,28 +10110,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35" + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920" + }, + { + "tx_hash": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24" }, { - "tx_hash": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45" + "tx_hash": "454961c6e2af2327cdafab58f181b6ba863526a6c63ed1a53d4b6a8c61b1d165" }, { - "tx_hash": "aa546f61f8ebb938d0b3ce821f6de5f8150cfeb107148298e068de15ab033e63" + "tx_hash": "a97cf6403165bed5bd86f15312ffd7244209408dcb7a394b2d51bfd049adcd68" }, { - "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75" + "tx_hash": "e8488df17426c9432406f268211e22aae77ae9e569b9dbeaaff6ef18d83a6e7e" }, { - "tx_hash": "894dceb9db02f71c93dcc4070ecf5daefd49348620bea85df8f0b4e0acec138c" + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" }, { - "tx_hash": "708576bd350d01171c186ecbba44bca04cf7cb37bc750f1b0d2b34d99f125a93" + "tx_hash": "1d08fdbe785954b8f8c4e6e17a4c56e0969133ffa88da7850dbf9c9a259d89c0" }, { - "tx_hash": "a6cb77043648b5643482906ff1d7d5b899f2d4eec6f273ca25ac8652668a51a8" + "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6" }, { - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" + "tx_hash": "ba6142b84dcba1d1a2a339b9c092b6869e4fc84002f8fede5ec6746c9c59b9f8" } ], "next_cursor": null, @@ -9841,40 +10142,40 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "18676cb74eb9dfce4b58b954ec2a6b83b96a6f4daad0a16f77bcb6b61458ace6" + "block_index": 10, + "tx_hash": "4e2c04a10a739b6afcd82d018f013f82fc0d11bc29cd26e71f96272a72c5738a" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 1, - "height": 200, + "height": 202, "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1" + "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b" }, { "vout": 0, - "height": 200, + "height": 202, "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e" + "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" + "result": "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101767fa9746798e2f0da5d0765e73be7115b8f252c0ff7b3420c4ee20d9e51bb0a0100000000ffffffff03e803000000000000160014f9f761de6a26b38c86a3f54543766007cab6e30f00000000000000000c6a0a8ee379ec02600d7a1d1aeb140927010000001600145e3425187b2b5bc42b4371cb0d1f75d1661ad94802473044022038bd1cb36fdd7f9da255360c2b77e5d07c034b15eb8433d992508c6c65c6e693022074d799ef701e0e6ceb1e5e702c023f85f849de50800f98e9f4b29eb8c46f1a63012103606de90e430b926855501d0a176c98eff58fab05f6264d36c656a231b914c4d600000000" + "result": "020000000001010c0b4d2172a4b599243b5badf28f63da42d6531398de05c9b4e1bdc72ac9c4e60100000000ffffffff03e8030000000000001600144de620b4af02f945f107cdb328406ee6e7a25bfc00000000000000000c6a0a18534b84816655e6bb5aeb14092701000000160014023752bd11ba08d76fe9155ceaaa585ae2234fdb0247304402205e3ee8c2683f87fd4939167f8b13d1f55e9f5d7796a068729aeb6da84ac18e69022014039d3c5ec32a1865fb2c2082b7981c787295ca587c2900c29138db5414f06d012103a0dae290728c6d64a4afe2a4a527a04afad743dfa707bb14cfa58f2a3d8edc6c00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58701 + "result": 58797 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9894,28 +10195,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78 }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,22 +10226,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -9950,22 +10251,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 210, + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -9975,30 +10276,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730748020.6178741, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, + "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -10012,7 +10313,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -10021,19 +10322,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10043,7 +10344,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -10052,28 +10353,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76 + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78 }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "quantity": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, "asset_info": { "divisible": true, "asset_longname": null, @@ -10083,22 +10384,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "CREDIT", "params": { - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "send", - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10108,22 +10409,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "asset": "XCP", - "block_index": 208, - "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "block_index": 210, + "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "quantity": 10000, - "tx_index": 76, + "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10133,30 +10434,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 }, { - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730152671.386915, + "block_time": 1730748020.6178741, "btc_amount": 0, - "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", + "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", "destination": "", "fee": 10000, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", - "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", - "tx_index": 76, - "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_index": 78, + "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "memo": null, "asset_info": { "divisible": true, @@ -10170,7 +10471,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730152671.386915 + "timestamp": 1730748020.6178741 } ], "next_cursor": null, @@ -10189,40 +10490,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 662, + "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_index": 210, + "block_time": 1730748017, "difficulty": 545259519, - "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae" + "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b" }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 653, - "result_count": 108 + "next_cursor": 665, + "result_count": 110 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 663, + "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", - "block_index": 208, - "block_time": 1730152668, + "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_index": 210, + "block_time": 1730748017, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "fee": 0, - "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10232,92 +10533,92 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 654, - "result_count": 76 + "next_cursor": 666, + "result_count": 78 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 664, + "event_index": 683, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "out_index": 0, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 558, + "next_cursor": 567, "result_count": 5 }, "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 675, + "event_index": 696, "event": "BLOCK_PARSED", "params": { - "block_index": 208, - "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", - "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", + "block_index": 210, + "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", + "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", "transaction_count": 1, - "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", - "block_time": 1730152668 + "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", + "block_time": 1730748017 }, "tx_hash": null, - "block_index": 208, - "block_time": 1730152668 + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 661, - "result_count": 108 + "next_cursor": 680, + "result_count": 110 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 674, + "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77 }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 660, - "result_count": 61 + "next_cursor": 679, + "result_count": 63 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 668, + "event_index": 689, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 208, - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "block_index": 210, + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 1500000000, - "tx_index": 75, - "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", - "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", - "block_time": 1730152668, + "tx_index": 77, + "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10327,30 +10628,30 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 665, + "next_cursor": 686, "result_count": 72 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 671, + "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "asset": "XCP", - "block_index": 208, + "block_index": 210, "calling_function": "dispense", - "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", + "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", "quantity": 66, - "tx_index": 75, + "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730152668, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10360,64 +10661,64 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 669, - "result_count": 91 + "next_cursor": 690, + "result_count": 92 }, "/v2/events/ENHANCED_SEND": { "result": [ { - "event_index": 602, + "event_index": 611, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 202, - "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_index": 204, + "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "memo": null, "quantity": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "tx_index": 69, - "block_time": 1730152624, + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_index": 71, + "block_time": 1730747983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", - "block_index": 202, - "block_time": 1730152624 + "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "block_index": 204, + "block_time": 1730747983 } ], - "next_cursor": 498, - "result_count": 2 + "next_cursor": 503, + "result_count": 3 }, "/v2/events/MPMA_SEND": { "result": [ { - "event_index": 650, + "event_index": 662, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 206, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 208, + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "status": "valid", - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "tx_index": 73, - "block_time": 1730152650, + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_index": 75, + "block_time": 1730747999, "asset_info": { "divisible": true, "asset_longname": null, @@ -10427,12 +10728,12 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", - "block_index": 206, - "block_time": 1730152650 + "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "block_index": 208, + "block_time": 1730747999 } ], - "next_cursor": 649, + "next_cursor": 661, "result_count": 15 }, "/v2/events/SEND": { @@ -10448,24 +10749,24 @@ "/v2/events/SWEEP": { "result": [ { - "event_index": 541, + "event_index": 546, "event": "SWEEP", "params": { - "block_index": 194, - "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "block_index": 195, + "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", "status": "valid", - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "tx_index": 60, - "block_time": 1730152588, + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_index": 61, + "block_time": 1730747941, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", - "block_index": 194, - "block_time": 1730152588 + "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "block_index": 195, + "block_time": 1730747941 } ], "next_cursor": null, @@ -10482,15 +10783,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "tx_index": 41, - "block_time": 1730152419, + "block_time": 1730747777, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -10504,9 +10805,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", + "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", "block_index": 154, - "block_time": 1730152419 + "block_time": 1730747777 } ], "next_cursor": null, @@ -10520,33 +10821,33 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 593, + "event_index": 602, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 201, - "block_time": 1730152620 + "block_index": 203, + "block_time": 1730747979 }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_time": 1730747979 } ], - "next_cursor": 567, + "next_cursor": 576, "result_count": 12 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 594, + "event_index": 603, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 201, + "block_index": 203, "call_date": 0, "call_price": 0.0, "callable": false, @@ -10554,42 +10855,42 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", "transfer": false, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "tx_index": 68, - "block_time": 1730152620, + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_index": 70, + "block_time": 1730747979, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", - "block_index": 201, - "block_time": 1730152620 + "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "block_index": 203, + "block_time": 1730747979 } ], - "next_cursor": 568, + "next_cursor": 577, "result_count": 24 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ { - "event_index": 547, + "event_index": 552, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 195, + "block_index": 196, "quantity": 1, - "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", "status": "valid", "tag": "64657374726f79", - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "tx_index": 61, - "block_time": 1730152592, + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_index": 62, + "block_time": 1730747945, "asset_info": { "divisible": true, "asset_longname": null, @@ -10599,9 +10900,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", - "block_index": 195, - "block_time": 1730152592 + "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "block_index": 196, + "block_time": 1730747945 } ], "next_cursor": 157, @@ -10610,12 +10911,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 659, + "event_index": 675, "event": "OPEN_ORDER", "params": { - "block_index": 207, + "block_index": 209, "expiration": 21, - "expire_index": 228, + "expire_index": 230, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10626,11 +10927,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "open", - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "tx_index": 74, - "block_time": 1730152654, + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_index": 76, + "block_time": 1730748003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10654,82 +10955,82 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 529, + "next_cursor": 534, "result_count": 8 }, "/v2/events/ORDER_MATCH": { "result": [ { - "event_index": 491, + "event_index": 678, "event": "ORDER_MATCH", "params": { - "backward_asset": "BTC", - "backward_quantity": 3000, - "block_index": 188, + "backward_asset": "XCP", + "backward_quantity": 1000, + "block_index": 209, "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 3000, - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "match_expire_index": 208, + "forward_asset": "BTC", + "forward_quantity": 1000, + "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx0_block_index": 186, + "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "tx0_index": 51, - "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", - "tx1_block_index": 188, + "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_index": 54, + "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "tx1_index": 54, - "block_time": 1730152544, + "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_index": 76, + "block_time": 1730748003, "forward_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, "backward_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", - "block_index": 188, - "block_time": 1730152544 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 475, - "result_count": 3 + "next_cursor": 673, + "result_count": 5 }, "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 655, + "event_index": 684, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144" + "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 521, - "result_count": 12 + "next_cursor": 677, + "result_count": 18 }, "/v2/events/ORDER_FILLED": { "result": [ @@ -10738,11 +11039,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59" + "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "block_time": 1730152540 + "block_time": 1730747901 } ], "next_cursor": null, @@ -10751,20 +11052,20 @@ "/v2/events/ORDER_MATCH_UPDATE": { "result": [ { - "event_index": 481, + "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "status": "completed" + "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "status": "expired" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", - "block_index": 187, - "block_time": 1730152540 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": 454, - "result_count": 2 + "next_cursor": 481, + "result_count": 3 }, "/v2/events/BTC_PAY": { "result": [ @@ -10774,18 +11075,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "status": "valid", - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "tx_index": 53, - "block_time": 1730152540, + "block_time": 1730747901, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", + "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", "block_index": 187, - "block_time": 1730152540 + "block_time": 1730747901 } ], "next_cursor": null, @@ -10794,20 +11095,20 @@ "/v2/events/CANCEL_ORDER": { "result": [ { - "event_index": 523, + "event_index": 528, "event": "CANCEL_ORDER", "params": { - "block_index": 192, - "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_index": 193, + "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": "valid", - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "tx_index": 58, - "block_time": 1730152570 + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_index": 59, + "block_time": 1730747933 }, - "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", - "block_index": 192, - "block_time": 1730152570 + "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "block_index": 193, + "block_time": 1730747933 } ], "next_cursor": null, @@ -10816,66 +11117,66 @@ "/v2/events/ORDER_EXPIRATION": { "result": [ { - "event_index": 657, + "event_index": 685, "event": "ORDER_EXPIRATION", "params": { - "block_index": 207, - "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "block_time": 1730152654 + "block_index": 210, + "order_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_time": 1730748017 }, - "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", - "block_index": 207, - "block_time": 1730152654 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 462, - "result_count": 3 + "next_cursor": 642, + "result_count": 4 }, "/v2/events/ORDER_MATCH_EXPIRATION": { "result": [ { - "event_index": 457, + "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 184, - "order_match_id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", - "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", - "block_time": 1730152467 + "block_index": 209, + "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_time": 1730748003 }, - "tx_hash": null, - "block_index": 184, - "block_time": 1730152467 + "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "block_index": 209, + "block_time": 1730748003 } ], - "next_cursor": null, - "result_count": 1 + "next_cursor": 457, + "result_count": 2 }, "/v2/events/OPEN_DISPENSER": { "result": [ { - "event_index": 553, + "event_index": 562, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 196, + "block_index": 198, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "satoshirate": 1, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "status": 0, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "tx_index": 62, - "block_time": 1730152595, + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_index": 64, + "block_time": 1730747953, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -10884,9 +11185,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", - "block_index": 196, - "block_time": 1730152595 + "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "block_index": 198, + "block_time": 1730747953 } ], "next_cursor": 272, @@ -10895,15 +11196,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 672, + "event_index": 693, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": 0, - "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", "asset_info": { "divisible": true, "asset_longname": null, @@ -10913,12 +11214,12 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 560, + "next_cursor": 569, "result_count": 8 }, "/v2/events/REFILL_DISPENSER": { @@ -10929,13 +11230,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", + "destination": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", "dispense_quantity": 10, - "dispenser_tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "dispenser_tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", "tx_index": 31, - "block_time": 1730152380, + "block_time": 1730747730, "asset_info": { "divisible": true, "asset_longname": null, @@ -10945,9 +11246,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", + "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", "block_index": 144, - "block_time": 1730152380 + "block_time": 1730747730 } ], "next_cursor": null, @@ -10956,20 +11257,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 673, + "event_index": 694, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 208, + "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10980,12 +11281,12 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 561, + "next_cursor": 570, "result_count": 5 }, "/v2/events/BROADCAST": { @@ -10997,19 +11298,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "tx_index": 25, "value": 66600.0, - "block_time": 1730152360, + "block_time": 1730747708, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", + "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", "block_index": 138, - "block_time": 1730152360 + "block_time": 1730747708 } ], "next_cursor": 213, @@ -11040,12 +11341,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "start_block": 0, "status": "open", - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "tx_index": 42, - "block_time": 1730152422, + "block_time": 1730747781, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11053,9 +11354,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", + "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", "block_index": 155, - "block_time": 1730152422 + "block_time": 1730747781 } ], "next_cursor": 196, @@ -11068,11 +11369,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0" + "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0" }, "tx_hash": null, "block_index": 130, - "block_time": 1730152319 + "block_time": 1730747659 } ], "next_cursor": 110, @@ -11088,17 +11389,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", + "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", "paid_quantity": 34, - "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", "status": "valid", - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "tx_index": 23, - "block_time": 1730152352, + "block_time": 1730747700, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, @@ -11106,9 +11407,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", + "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", "block_index": 136, - "block_time": 1730152352 + "block_time": 1730747700 } ], "next_cursor": 190, @@ -11117,33 +11418,33 @@ "/v2/events/ATTACH_TO_UTXO": { "result": [ { - "event_index": 577, + "event_index": 586, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 199, - "destination": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b:0", + "block_index": 201, + "destination": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "status": "valid", - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "tx_index": 65, - "block_time": 1730152606, + "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "tx_index": 67, + "block_time": 1730747966, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", - "block_index": 199, - "block_time": 1730152606 + "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "block_index": 201, + "block_time": 1730747966 } ], "next_cursor": 319, @@ -11157,28 +11458,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", + "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", + "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", "status": "valid", - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", "tx_index": 38, - "block_time": 1730152407, + "block_time": 1730747767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", + "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", "block_index": 151, - "block_time": 1730152407 + "block_time": 1730747767 } ], "next_cursor": null, @@ -11187,19 +11488,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 670, + "event_index": 691, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 208, - "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "block_index": 210, + "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", "msg_index": 1, "quantity": 1500000000, - "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", "status": "valid", - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "tx_index": 75, - "block_time": 1730152668, + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_index": 77, + "block_time": 1730748017, "asset_info": { "divisible": true, "asset_longname": null, @@ -11209,12 +11510,12 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", - "block_index": 208, - "block_time": 1730152668 + "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "block_index": 210, + "block_time": 1730748017 } ], - "next_cursor": 667, + "next_cursor": 688, "result_count": 11 }, "/v2/events/BURN": { @@ -11226,17 +11527,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", + "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", "status": "valid", - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", "tx_index": 9, - "block_time": 1730152285, + "block_time": 1730747624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", + "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", "block_index": 121, - "block_time": 1730152285 + "block_time": 1730747624 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py index f951ebe975..7c44b907a8 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py @@ -1,4 +1,41 @@ SCENARIO = [ + { + "title": "Send XCP skip validation", + "transaction": "send", + "source": "$ADDRESS_3", + "params": { + "asset": "XCP", + "quantity": int(10000 * 10e8), + "destination": "$ADDRESS_4", + "skip_validation": True, + }, + "set_variables": { + "SEND_SKIP_VALIDATION_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ENHANCED_SEND,CREDIT,DEBIT", + "result": [ + { + "event": "ENHANCED_SEND", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_4", + "memo": None, + "quantity": 10000000000000, + "source": "$ADDRESS_3", + "status": "invalid: insufficient funds", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, { "title": "Send XCP", "transaction": "send", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py index b941dc614b..d1b6d12f1d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py @@ -1,4 +1,23 @@ SCENARIO = [ + { + "title": "Create invalid dispenser with skip validation", + "transaction": "dispenser", + "source": "$ADDRESS_1", + "params": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": int(10000 * 10e8), + "mainchainrate": 1, # 1 BTC for 1 XCP + "status": 0, + "skip_validation": True, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=OPEN_DISPENSER,DEBIT", + "result": [], + }, + ], + }, { "title": "Create Dispenser 6", "transaction": "dispenser", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_9_issuance.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_9_issuance.py index c63e23c938..50d57b680e 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_9_issuance.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_9_issuance.py @@ -5,7 +5,7 @@ "source": "$ADDRESS_1", "params": { "asset": "TESTLOCKDESC", - "quantity": int(100 * 1e8), + "quantity": int(10 * 10e8), "description": "Test Locking Description", }, "controls": [ diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index f3de3a22ec..07f39498fd 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -234,13 +234,13 @@ def run_item(node, item, context): print(expected_result, str(e)) assert expected_result == str(e) print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as er: print(colored(f"Failed: {item['title']}", "red")) print(f"Expected: {expected_result}") print(f"Got: {str(e)}") - # raise e + raise er from er else: - raise e + raise e from e node.enable_all_protocol_changes() @@ -353,7 +353,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md new file mode 100644 index 0000000000..d7313d0280 --- /dev/null +++ b/release-notes/release-notes-v10.6.2.md @@ -0,0 +1,31 @@ +# Release Notes - Counterparty Core v10.6.2 (2024-11-??) + + + +# Upgrading + +# ChangeLog + +## Protocol Changes + +## Bugfixes + + + +## Codebase + + +## API + +- Add `skip_validation` argument to compose API + +## CLI + + +# Credits + +* OpenStamp +* DerpHerpenstein +* Ouziel Slama +* Wilfred Denton +* Adam Krellenstein From c6157622893d1ec232722a18c18e36a4561e334b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 21:18:57 +0000 Subject: [PATCH 054/138] almost fix regtest --- apiary.apib | 4008 +++++++++-------- .../counterpartycore/lib/api/compose.py | 2 +- .../test/regtest/apidoc/apicache.json | 3668 +++++++-------- .../test/regtest/genapidoc.py | 5 + .../scenarios/scenario_17_dispenser.py | 2 +- .../regtest/scenarios/scenario_19_mpma.py | 32 +- .../test/regtest/testscenarios.py | 57 +- 7 files changed, 3998 insertions(+), 3776 deletions(-) diff --git a/apiary.apib b/apiary.apib index 85d7a4f048..fd5458063f 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-04 19:20:33.248940. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-04 21:14:45.388559. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", "block_index": 210, - "block_time": 1730748017, + "block_time": 1730754868, "difficulty": 545259519, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b" + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25" }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 665, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", "block_index": 210, - "block_time": 1730748017, + "block_time": 1730754868, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "fee": 0, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 666, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "out_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 567, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 680, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 679, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 210, - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "block_time": 1730748017, + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 686, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 690, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "quantity": 1000, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "tx_index": 71, - "block_time": 1730747983, + "block_time": 1730754824, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "block_time": 1730747983 + "block_time": 1730754824 } ], "next_cursor": 503, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "status": "valid", - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "tx_index": 75, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_time": 1730747999 + "block_time": 1730754849 } ], "next_cursor": 661, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "status": "valid", - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "tx_index": 61, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "block_time": 1730747941 + "block_time": 1730754761 } ], "next_cursor": null, @@ -533,15 +533,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": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "tx_index": 41, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -555,9 +555,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": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "block_time": 1730747777 + "block_time": 1730754596 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730747979 + "block_time": 1730754821 }, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_time": 1730747979 + "block_time": 1730754821 } ], "next_cursor": 576, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", "transfer": false, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "tx_index": 70, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_time": 1730747979 + "block_time": 1730754821 } ], "next_cursor": 577, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", "tag": "64657374726f79", - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "tx_index": 62, - "block_time": 1730747945, + "block_time": 1730754765, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "block_index": 196, - "block_time": 1730747945 + "block_time": 1730754765 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "open", - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 534, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 54, - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx1_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 673, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 677, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881" + "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb" }, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "block_time": 1730747901 + "block_time": 1730754711 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "status": "expired" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 481, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "status": "valid", - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "tx_index": 53, - "block_time": 1730747901, + "block_time": 1730754711, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "block_time": 1730747901 + "block_time": 1730754711 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "tx_index": 59, - "block_time": 1730747933 + "block_time": 1730754743 }, - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "block_index": 193, - "block_time": 1730747933 + "block_time": 1730754743 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "block_time": 1730748017 + "order_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_time": 1730754868 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 642, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "block_time": 1730748003 + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_time": 1730754854 }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 457, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "satoshirate": 1, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": 0, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "tx_index": 64, - "block_time": 1730747953, + "block_time": 1730754783, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 198, - "block_time": 1730747953 + "block_time": 1730754783 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 569, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", + "destination": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", "dispense_quantity": 10, - "dispenser_tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", + "dispenser_tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", "tx_index": 31, - "block_time": 1730747730, + "block_time": 1730754550, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", + "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", "block_index": 144, - "block_time": 1730747730 + "block_time": 1730754550 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 570, @@ -1146,19 +1146,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": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "tx_index": 25, "value": 66600.0, - "block_time": 1730747708, + "block_time": 1730754528, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "block_time": 1730747708 + "block_time": 1730754528 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "start_block": 0, "status": "open", - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "block_index": 155, - "block_time": 1730747781 + "block_time": 1730754600 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0" + "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc" }, "tx_hash": null, "block_index": 130, - "block_time": 1730747659 + "block_time": 1730754490 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "paid_quantity": 34, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "status": "valid", - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "block_index": 136, - "block_time": 1730747700 + "block_time": 1730754522 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11:0", + "destination": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "status": "valid", - "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", "tx_index": 67, - "block_time": 1730747966, + "block_time": 1730754803, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", "block_index": 201, - "block_time": 1730747966 + "block_time": 1730754803 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", + "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", + "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", "status": "valid", - "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", + "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", "tx_index": 38, - "block_time": 1730747767, + "block_time": 1730754585, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", + "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", "block_index": 151, - "block_time": 1730747767 + "block_time": 1730754585 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 210, - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "msg_index": 1, "quantity": 1500000000, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", "status": "valid", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 688, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", + "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", "status": "valid", - "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", + "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", "tx_index": 9, - "block_time": 1730747624, + "block_time": 1730754455, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", + "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", "block_index": 121, - "block_time": 1730747624 + "block_time": 1730754455 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", "difficulty": 545259519, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "previous_block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "previous_block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", "difficulty": 545259519, - "ledger_hash": "e4e8339fce2218d1a5ddc2a90fdf07e8b4800127ff425c617a7e70f6a04c9db0", - "txlist_hash": "2acf87a58f95eb7d391c797c26d4fdc0e8c34152832aadf52db19be71ff97d62", - "messages_hash": "5317a4a193ea6e35dab92210ae429697b0ebfdc663e0066de91b68a9cdc54e11", + "ledger_hash": "cbd6077aaccad4b8436492ed89c427265cef46db99e5ab4fc9104ee8acf52628", + "txlist_hash": "bd545fdb56221a49fbf0d11c06d0f251461848fe4debc7084d6f64df7de3139d", + "messages_hash": "e9564dcdb17c6af9fb10d89cfdf0e8278c8b7784e75f5675067db314ac7e1b38", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", - "block_time": 1730747999, - "previous_block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", + "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_time": 1730754849, + "previous_block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", "difficulty": 545259519, - "ledger_hash": "ca54749c09a22fc16cb63c393bdde4d42610edc0efb20cb277f5445b0d0a7c0a", - "txlist_hash": "0c7332148c20bd19bd0b7d46b9b521cdd3c0594fda421f78c4f46b2383a13d15", - "messages_hash": "db6d2c4e59a1440fbf127766509b5f3e7f2de64ae246efd80bca3bc7133fe501", + "ledger_hash": "31bc6d197c29193b312955881e0d352420393f86e998c22852033a0890b7dd82", + "txlist_hash": "50b58cbaf347b8bce5827d392fd73bf2da06794219aa281fb4584d34cae6a6bf", + "messages_hash": "2cc881c9d82adc09a571885cf005177b8d9f9ce1a33a8018ab7df52049515bd8", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", - "block_time": 1730747995, - "previous_block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", + "block_time": 1730754845, + "previous_block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", "difficulty": 545259519, - "ledger_hash": "ef4e39670eea3dcb8fcde3f7042f2e87aae8022bf0c94f8dd61281a8a22ec8b2", - "txlist_hash": "a335d5634b33e980af06bcb66403817acb796fc0472b645b51285662c0d98ba8", - "messages_hash": "78bcba26ba47a3d9138309d68898ef315fbb4fe52bded9f17d7229662e911812", + "ledger_hash": "e8d34fcc80b4b7b1f5574520b2fd439bc2436bea05916a93352a95be8baf62d7", + "txlist_hash": "e6f61dc3f16b1c067877b71da3151f22ebced60c9031c7657135816b95704c53", + "messages_hash": "018098dab8463fe563cb98481a2656800ac78c963fb32d4c71adebb38027bbc7", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", - "block_time": 1730747991, - "previous_block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", + "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_time": 1730754842, + "previous_block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", "difficulty": 545259519, - "ledger_hash": "1f34cb4b0fc43a1c2a9789e8b2d9fecb67830180ec45e1f273845caa87677c5d", - "txlist_hash": "f96b248908a08236f55b59283d4173f8598e6802362627b801ff9decf985a98f", - "messages_hash": "94492191b231f60849bbf12b97ad3fed1bb4b5f443c72e40090a5d7d7d961f7f", + "ledger_hash": "da0371bd06f15390250a7d24f7d0345e0923e252bb049504716df459c5b3496a", + "txlist_hash": "ef0fb17e7c83f75e7ea942e31460353ae5ed4cc96522bee9ae356a0815c844eb", + "messages_hash": "fd4c2b7282303c6fbded5671daaecab012c2dc85d0e8d073ca212d0be3281a2f", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", "difficulty": 545259519, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc` (str, required) - The index of the block to return + + block_hash: `7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", "difficulty": 545259519, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 694, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 693, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" } ], "next_cursor": 691, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 690, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 687, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 210, - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "object_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "block_index": 210, "confirmed": true, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "status": "valid", "confirmed": true, - "block_time": 1730747933 + "block_time": 1730754743 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "block_index": 196, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730747945, + "block_time": 1730754765, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "block_hash": "1af624b5fc4c3fe0ed6a97e2d955ba36a0b213ea6380c2f43a84f96e0ae63cef", - "block_time": 1730747708, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "72e54343592bce55c09d0358c56891a0bf3a5346b7acd71edb149cbf059ab727", + "block_time": 1730754528, + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd:1", + "utxos_info": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "block_hash": "698eec247b323bf27c48348f7f021ae7dc24a108e4ce40bfcfaac3018c013c1d", - "block_time": 1730747901, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "6455e94056b33f44b15273c0dd7e07a0421b92abf03e6715d15b0e97905c73de", + "block_time": 1730754711, + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "btc_amount": 2000, "fee": 10000, - "data": "0b19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "data": "0b7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec0247a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "supported": true, - "utxos_info": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a:0", + "utxos_info": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "block_index": 193, - "block_hash": "201900c1299944b3c869485e3dfc67705758c4db5e653bf66c6c492b0eb31aca", - "block_time": 1730747933, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "7dcb2ca4b546f5396e7b9dcae460a9eb7b8ba43bc793266c33f47a4672ecf243", + "block_time": 1730754743, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "data": "46b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "supported": true, - "utxos_info": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9:1", + "utxos_info": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "block_index": 196, - "block_hash": "2eca4b670a8c47e3bb1780c43bc4c23d42a549f7d7c8ff3019b1279257dfa2e7", - "block_time": 1730747945, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "block_hash": "035f6137f702ab36f6efa8ff4654908256bd0d33f45c5a0fcc78e28a732f2311", + "block_time": 1730754765, + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537:1", + "utxos_info": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 198, - "block_hash": "42c085812220d5241056746deaad4aea076a47d06363fec5634117f27176c750", - "block_time": 1730747953, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "0f35f67c2f1ae02016e9047fe599c90d696f081ccb40a2e627d7998b084e2989", + "block_time": 1730754783, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4:1", + "utxos_info": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "block_hash": "2c17ed99ecf39afc57a222ab103aee2cfed83842250276c377fa363a460cfe08", - "block_time": 1730747777, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "07a96a8f0426a0b4fc38f29dc72c54f1a1e77d20780194708ed974afcf7d7b6b", + "block_time": 1730754596, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0:1", + "utxos_info": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_hash": "4b43b9a21880c7c69b6d184a07d6b13d50a2f311bace24dca8adc27b5265b8e7", - "block_time": 1730747979, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "210def9c77137c26da773ab5f6b789420e9a6191d1970b3bf5ede6e0d457e947", + "block_time": 1730754821, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36:1", + "utxos_info": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "block_hash": "15ad3be6594647eaa6fb60c1ea11a44312fd183115f57aa1ab0d8351773b7bac", - "block_time": 1730747983, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "2fb2f290dd9dd78ef46c06dc3fe672a3fc25e105c542320e7fd319046e553cf4", + "block_time": 1730754824, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", + "data": "02000000178d82231300000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", "supported": true, - "utxos_info": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f:1", + "utxos_info": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", - "block_time": 1730747999, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_time": 1730754849, + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf:0", + "utxos_info": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "block_hash": "2c9447f37c4c67ee2d6a026c7c38cbddd8ab886e31b21b4e9e23bb8efa716555", - "block_time": 1730747941, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "block_hash": "127730cb68751d3cb56ab2b3c3da9fbe5d585826dd6418cc0f46291c17438843", + "block_time": 1730754761, + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04806f8fed86c68edbd4884f3786230f26561a53e3eb017377656570206d7920617373657473", + "data": "04802b76c5b1671561586aee7961c784a0f1cd248b66017377656570206d7920617373657473", "supported": true, - "utxos_info": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920:1", + "utxos_info": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001017ba043d50817a3683ce447042f521437e7213c2d970a3c64b90e4074a66582e10000000000ffffffff020000000000000000356a3390b022cf18e43189f294eff85931e18cae3787c9eae61ad669b8dde8f4ea08dca9f1235659069cdedc332470a3660d20001d65f0ca052a01000000160014798a41286d38d8c9e630455aadf358126716233e02473044022023fcb0bdbe64ce8c2e98e56e561a9e46f3649808143a474271a74819fc1100c602202a4b09a9f113dd36d4ef651602257627a34251af3879de4fec33d8158584205b0121038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106fb783ed345fbf0bad508019a0423a7044cf2a2316ddb63cc574d59d7f100afbe0000000000ffffffffa48a9ecfe168f608f096629ad17c0bd4c87c015bb5119b29e716b41fda150caf0000000000fffffffff33e5b0e9d19827086738088b9d77536b6fdf240c86bbe5d43bae0838328147e0000000000ffffffffeaa70d3e32b332715efe71e15a8ff5ac384619717e2b0c31fe0482200cbcced60000000000ffffffff695d6fc4a30edaa94e8ba3862b8f9f541841f548aececcde6a6ca80fd2845ecf0000000000ffffffff9336c6b54d78a2a769cd02969c372bfb2ef5dbd6c9a714fece83e92a7ae280b60000000000ffffffff04e80300000000000069512103ee3f44397286b4db9741c435942fda6b8738946ec10dd8114642af76753c429521024a9bda0636cf07924a0d67e98b787ec6f2c6db78075efcb547d171e0dcdd7e4e21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee80300000000000069512102ee3f44397286b4db971aaed86d9896b1c80c846d89d15163dc5dea80e39032982103b1d35af89e96771d73f20ad34f16946383961a5f4131ee3566e7b451bbc81fba21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee80300000000000069512102c03f44397286b4db9742c47614f9513568fd496102b7d917b438caed86fd5d7d210231d35af358576694dbf20ad34f169463d1961a5f4131ee356ca7b451bbc81fbd21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae387923fc060000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402473044022035afa11ec9e946b67697703fdc2e06a96decf17370112fffb7ea4a2336e153010220594a26343894c18e51f935a21e4cc5242809df19e0701c53c959896096b33d170121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022036f03055e7559d2c5321fd8260d824bee4069098eb6d4fa66cf9c84ee5dc1bd502201d9d824d9aaa9a5483d5e67d340830498e69a47f2a7bd74c695ac3d97f1ab6350121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022009641257f089d633a95a415e864ca27e057d6000d877517c0d8aaeefd72225970220283ebbdb65b997a524677e16b49c75f47288b4774d56e94c8578654ae70476430121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022013817cea24a285c0ae9069c6b42efb35be1ce260d71c3a6f987ca103d17ed0f10220181f9746d5510ebcd8f47f27bd41b6482da28bb7b3d681539933a2ed7fd21b460121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022006b4c149ca37bbcb5eed68263a29ecc8941e50288f9ef33e39fc515f7c8457db02203e91721ee78f57a45ba378463237c4b56d4e6ad499b548afa6dafd9f87e8a13b0121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e70247304402201467ac20ee2cb7300f5eb63a63051562ae8fab13614ee633ecd076cfd234b8ff0220274aa1c0215c97e69862efc45eb6438d1b8ad16a84fef2c77b3b5e2eb808b3480121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e700000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,18 +3290,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "7ba043d50817a3683ce447042f521437e7213c2d970a3c64b90e4074a66582e1", + "hash": "fb783ed345fbf0bad508019a0423a7044cf2a2316ddb63cc574d59d7f100afbe", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "a48a9ecfe168f608f096629ad17c0bd4c87c015bb5119b29e716b41fda150caf", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "f33e5b0e9d19827086738088b9d77536b6fdf240c86bbe5d43bae0838328147e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "eaa70d3e32b332715efe71e15a8ff5ac384619717e2b0c31fe0482200cbcced6", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "695d6fc4a30edaa94e8ba3862b8f9f541841f548aececcde6a6ca80fd2845ecf", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "9336c6b54d78a2a769cd02969c372bfb2ef5dbd6c9a714fece83e92a7ae280b6", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3310,51 +3345,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a3390b022cf18e43189f294eff85931e18cae3787c9eae61ad669b8dde8f4ea08dca9f1235659069cdedc332470a3660d20001d65" + "value": 1000, + "script_pub_key": "512103ee3f44397286b4db9741c435942fda6b8738946ec10dd8114642af76753c429521024a9bda0636cf07924a0d67e98b787ec6f2c6db78075efcb547d171e0dcdd7e4e21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + }, + { + "value": 1000, + "script_pub_key": "512102ee3f44397286b4db971aaed86d9896b1c80c846d89d15163dc5dea80e39032982103b1d35af89e96771d73f20ad34f16946383961a5f4131ee3566e7b451bbc81fba21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + }, + { + "value": 1000, + "script_pub_key": "512102c03f44397286b4db9742c47614f9513568fd496102b7d917b438caed86fd5d7d210231d35af358576694dbf20ad34f169463d1961a5f4131ee356ca7b451bbc81fbd21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" }, { - "value": 4999990000, - "script_pub_key": "0014798a41286d38d8c9e630455aadf358126716233e" + "value": 29999987000, + "script_pub_key": "00148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4" } ], "vtxinwit": [ - "3044022023fcb0bdbe64ce8c2e98e56e561a9e46f3649808143a474271a74819fc1100c602202a4b09a9f113dd36d4ef651602257627a34251af3879de4fec33d8158584205b01", - "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" + "3044022035afa11ec9e946b67697703fdc2e06a96decf17370112fffb7ea4a2336e153010220594a26343894c18e51f935a21e4cc5242809df19e0701c53c959896096b33d1701", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022036f03055e7559d2c5321fd8260d824bee4069098eb6d4fa66cf9c84ee5dc1bd502201d9d824d9aaa9a5483d5e67d340830498e69a47f2a7bd74c695ac3d97f1ab63501", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022009641257f089d633a95a415e864ca27e057d6000d877517c0d8aaeefd72225970220283ebbdb65b997a524677e16b49c75f47288b4774d56e94c8578654ae704764301", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022013817cea24a285c0ae9069c6b42efb35be1ce260d71c3a6f987ca103d17ed0f10220181f9746d5510ebcd8f47f27bd41b6482da28bb7b3d681539933a2ed7fd21b4601", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022006b4c149ca37bbcb5eed68263a29ecc8941e50288f9ef33e39fc515f7c8457db02203e91721ee78f57a45ba378463237c4b56d4e6ad499b548afa6dafd9f87e8a13b01", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "304402201467ac20ee2cb7300f5eb63a63051562ae8fab13614ee633ecd076cfd234b8ff0220274aa1c0215c97e69862efc45eb6438d1b8ad16a84fef2c77b3b5e2eb808b34801", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" ], "lock_time": 0, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx_id": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb" + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_id": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a" }, "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": "MPMASSET", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "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": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "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" } @@ -3366,7 +3425,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346` (str, required) - Transaction hash + + tx_hash: `bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864` (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. @@ -3377,18 +3436,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "c2d3493aeb9c13b2659ac6d65b27e272391cbc5df3509c051bed23b8318f189e", + "hash": "1f09b900f57c44298db3678ef67d8c8e79363abcc5a70f0aecfbc28535d86c11", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3457,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e935a98e35e1bebb99fb1486397daf4fb55da6c6215bc512fe989599a71d3e14885d3e5ba56208d96318f44360597" + "script_pub_key": "6a2e9e3b42024a82d3dcfc7d5a438061f1bddd41b80e1b9d3af3fb7edbb7cdc8f1884becbe34ff820265a578813417f5" }, { "value": 4999970000, - "script_pub_key": "00146f8fed86c68edbd4884f3786230f26561a53e3eb" + "script_pub_key": "00142b76c5b1671561586aee7961c784a0f1cd248b66" } ], "vtxinwit": [ - "304402207f7bfe45d258eb89edef9a23aded36dabb2b1ebeefb01b7b608f59f2fe84325a022004900e3dc278c0c10690e11f887be9fdf224a922cf199d680cc772636b9c52c701", - "03e265b4fb72b1001fbc192ef7e291b08a9d32fc465c312dead2fc97f7e2df062a" + "3044022033ddf83ddd3e0f45497ad9ddd8f4bfb155b7ede487978ed4fa28bace3013fd9f02200dc9d7f23dd7569d1867edbc42686ee63adc1943a561b24b3ae98d9f2d4397bf01", + "02809757b436dab299fe8cd1e4013c75bcba7f8b7956f253ba9e4c1be1b813b830" ], "lock_time": 0, - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", - "tx_id": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346" + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_id": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3478,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3539,17 @@ Returns a transaction by its index. { "result": { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3568,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction + + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (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. @@ -3521,17 +3580,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3633,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 694, @@ -3588,14 +3647,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3665,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 693, @@ -3617,9 +3676,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3688,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3715,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 691, @@ -3666,14 +3725,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "msg_index": 1, "quantity": 1500000000, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", "status": "valid", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3742,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 690, @@ -3698,7 +3757,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction to return + + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -3722,12 +3781,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 694, @@ -3736,14 +3795,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3813,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 693, @@ -3765,9 +3824,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3836,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3863,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 691, @@ -3814,14 +3873,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "msg_index": 1, "quantity": 1500000000, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", "status": "valid", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3890,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 690, @@ -3846,7 +3905,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction to return + + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (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 @@ -3865,10 +3924,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3876,7 +3935,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +3948,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3900,11 +3959,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -3922,7 +3981,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction to return + + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (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 @@ -3942,27 +4001,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +4036,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4080,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4099,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 690, @@ -4052,12 +4111,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4126,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 687, @@ -4079,24 +4138,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": null, @@ -4109,7 +4168,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The hash of the transaction to return + + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `696` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4190,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4209,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 690, @@ -4162,12 +4221,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4236,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 687, @@ -4189,24 +4248,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": null, @@ -4221,7 +4280,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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 @@ -4245,7 +4304,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4266,7 +4325,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4335,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4287,7 +4346,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4356,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4308,7 +4367,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4377,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4329,7 +4388,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4398,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4350,7 +4409,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4419,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4377,7 +4436,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - Comma separated list of addresses to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4455,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4501,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", - "block_time": 1730747999, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_time": 1730754849, + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf:0", + "utxos_info": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4519,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4475,7 +4534,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4553,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "block_index": 207, - "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", - "block_time": 1730747995, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", + "block_time": 1730754845, + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3ebc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b66c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15:0", + "utxos_info": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4571,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4527,7 +4586,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4605,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", - "block_time": 1730747991, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_time": 1730754842, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", + "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4623,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4579,7 +4638,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4657,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", - "block_time": 1730747986, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", + "block_time": 1730754828, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", + "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4675,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4631,7 +4690,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4718,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -4688,20 +4747,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 54, - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx1_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4720,9 +4779,9 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 675, @@ -4741,11 +4800,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "open", - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4769,24 +4828,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "block_index": 209, - "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -4796,9 +4855,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 673, @@ -4810,20 +4869,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "tx0_index": 60, - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx1_index": 54, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4842,23 +4901,23 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "block_time": 1730748003 + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_time": 1730754854 }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 668, @@ -4871,7 +4930,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga,bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd,bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq` (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 @@ -4887,17 +4946,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "quantity": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, "asset_info": { "divisible": true, @@ -4908,22 +4967,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4933,22 +4992,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "block_index": 210, - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,30 +5017,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730748020.6178741, + "block_time": 1730754872.7442517, "btc_amount": 0, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "destination": "", "fee": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, - "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", + "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -4995,7 +5054,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -5008,7 +5067,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -5028,7 +5087,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5036,14 +5095,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5051,14 +5110,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5066,14 +5125,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5088,7 +5147,7 @@ Returns the balances of an address "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5096,7 +5155,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5113,7 +5172,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -5126,7 +5185,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5151,7 +5210,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5201,16 +5260,16 @@ Returns the credits of an address "result": [ { "block_index": 209, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -5222,16 +5281,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -5243,16 +5302,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -5264,16 +5323,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -5285,20 +5344,20 @@ Returns the credits of an address }, { "block_index": 203, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "event": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5315,7 +5374,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5354,16 +5413,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -5375,16 +5434,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -5396,20 +5455,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5417,16 +5476,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "divisible": true, "asset_longname": null, @@ -5438,20 +5497,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5468,7 +5527,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address of the feed + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5503,7 +5562,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -5522,9 +5581,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", + "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", "block_index": 137, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5532,7 +5591,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747705, + "block_time": 1730754525, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5546,7 +5605,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -5565,14 +5624,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "9830c503fafb409b51e566cf014fb1ede5d9d44b205bdfbcf06bfc5aba5bde71", + "tx_hash": "342bdfbe8d94be62300d5ec7e680a5ebee9efdf8d9e000410b332017d5219fc4", "block_index": 112, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730747593, + "block_time": 1730754423, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5587,7 +5646,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -5606,10 +5665,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5617,7 +5676,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -5630,10 +5689,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5641,11 +5700,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5654,10 +5713,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5665,11 +5724,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5678,10 +5737,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5689,7 +5748,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "divisible": true, "asset_longname": null, @@ -5702,10 +5761,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5713,11 +5772,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5735,7 +5794,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6` (str, required) - The address to return + + address: `bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4` (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 @@ -5754,10 +5813,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", + "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", "block_index": 151, - "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", - "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", + "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", + "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5765,11 +5824,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730747767, + "block_time": 1730754585, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5787,7 +5846,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5807,10 +5866,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5818,11 +5877,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5831,10 +5890,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5842,11 +5901,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5855,10 +5914,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5866,11 +5925,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5879,10 +5938,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5890,11 +5949,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5903,10 +5962,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5914,11 +5973,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730747983, + "block_time": 1730754824, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5936,7 +5995,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6` (str, required) - The address to return + + address: `bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5964,7 +6023,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5993,9 +6052,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6004,7 +6063,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6014,7 +6073,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6030,9 +6089,9 @@ Returns the dispensers of an address }, { "tx_index": 64, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6041,7 +6100,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6051,11 +6110,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6076,7 +6135,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -6089,9 +6148,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6100,7 +6159,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6110,7 +6169,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6132,7 +6191,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -6152,19 +6211,19 @@ Returns the dispenses of a source { "tx_index": 65, "dispense_index": 0, - "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6172,7 +6231,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6187,11 +6246,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6201,19 +6260,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6221,7 +6280,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6236,7 +6295,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6250,19 +6309,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6270,7 +6329,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6285,7 +6344,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -6307,7 +6366,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address to return + + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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 @@ -6327,19 +6386,19 @@ Returns the dispenses of a destination { "tx_index": 65, "dispense_index": 0, - "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6347,7 +6406,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6362,11 +6421,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6376,19 +6435,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6396,7 +6455,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6411,7 +6470,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6425,19 +6484,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6445,7 +6504,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6460,7 +6519,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -6482,7 +6541,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -6503,19 +6562,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6523,7 +6582,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6538,7 +6597,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6552,19 +6611,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6572,7 +6631,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6587,7 +6646,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -6609,7 +6668,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address to return + + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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` @@ -6630,19 +6689,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6650,7 +6709,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6665,7 +6724,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6679,19 +6738,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6699,7 +6758,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6714,7 +6773,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -6736,7 +6795,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga` (str, required) - The address to return + + address: `bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd` (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 @@ -6755,16 +6814,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -6778,7 +6837,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6810,14 +6869,14 @@ Returns the issuances of an address "result": [ { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6832,20 +6891,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", + "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6860,20 +6919,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747814, + "block_time": 1730754623, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", + "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6888,20 +6947,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730747801, + "block_time": 1730754620, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", + "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6916,20 +6975,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747796, + "block_time": 1730754617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c82ddebc2f4ef337dc204f70389447a739640708fd7f47fb2eae72a15d252b45", + "tx_hash": "25b168f316ca8ec76e3f4bd578a55c4506c7eefce7c42ca8287a98cdfdd23d19", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6944,7 +7003,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747792, + "block_time": 1730754612, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6959,7 +7018,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The issuer or owner to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6982,8 +7041,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -6991,16 +7050,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -7008,16 +7067,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -7025,16 +7084,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 40, @@ -7042,16 +7101,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730747697, - "last_issuance_block_time": 1730747700, + "first_issuance_block_time": 1730754518, + "last_issuance_block_time": 1730754522, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 19, @@ -7059,8 +7118,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730747663, - "last_issuance_block_time": 1730747694, + "first_issuance_block_time": 1730754494, + "last_issuance_block_time": 1730754515, "supply_normalized": "0.00000019" } ], @@ -7074,7 +7133,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The issuer to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -7097,8 +7156,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -7106,16 +7165,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -7123,16 +7182,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -7140,16 +7199,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 40, @@ -7157,16 +7216,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730747697, - "last_issuance_block_time": 1730747700, + "first_issuance_block_time": 1730754518, + "last_issuance_block_time": 1730754522, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 19, @@ -7174,8 +7233,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730747663, - "last_issuance_block_time": 1730747694, + "first_issuance_block_time": 1730754494, + "last_issuance_block_time": 1730754515, "supply_normalized": "0.00000019" } ], @@ -7189,7 +7248,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The owner to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7212,8 +7271,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -7221,16 +7280,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -7238,16 +7297,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -7255,16 +7314,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 40, @@ -7272,16 +7331,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730747697, - "last_issuance_block_time": 1730747700, + "first_issuance_block_time": 1730754518, + "last_issuance_block_time": 1730754522, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 19, @@ -7289,8 +7348,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730747663, - "last_issuance_block_time": 1730747694, + "first_issuance_block_time": 1730754494, + "last_issuance_block_time": 1730754515, "supply_normalized": "0.00000019" } ], @@ -7304,7 +7363,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7323,17 +7382,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7369,17 +7428,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", - "block_time": 1730747991, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_time": 1730754842, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", + "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7387,14 +7446,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7402,7 +7461,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7421,17 +7480,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", - "block_time": 1730747986, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", + "block_time": 1730754828, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", + "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7439,14 +7498,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7454,7 +7513,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7473,17 +7532,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "block_hash": "15ad3be6594647eaa6fb60c1ea11a44312fd183115f57aa1ab0d8351773b7bac", - "block_time": 1730747983, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "2fb2f290dd9dd78ef46c06dc3fe672a3fc25e105c542320e7fd319046e553cf4", + "block_time": 1730754824, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", + "data": "02000000178d82231300000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", "supported": true, - "utxos_info": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f:1", + "utxos_info": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7491,12 +7550,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7507,17 +7566,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_hash": "4b43b9a21880c7c69b6d184a07d6b13d50a2f311bace24dca8adc27b5265b8e7", - "block_time": 1730747979, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "210def9c77137c26da773ab5f6b789420e9a6191d1970b3bf5ede6e0d457e947", + "block_time": 1730754821, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36:1", + "utxos_info": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7551,7 +7610,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -7570,20 +7629,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7608,7 +7667,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7637,9 +7696,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7654,7 +7713,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7680,9 +7739,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7697,7 +7756,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7723,9 +7782,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7740,7 +7799,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7766,9 +7825,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7783,7 +7842,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7809,9 +7868,9 @@ Returns the orders of an address }, { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7826,7 +7885,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7861,7 +7920,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The source of the fairminter to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7886,10 +7945,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7914,7 +7973,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7923,10 +7982,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7951,7 +8010,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730747697, + "block_time": 1730754518, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7963,10 +8022,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7991,7 +8050,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730747663, + "block_time": 1730754494, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8003,10 +8062,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8031,7 +8090,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730747659, + "block_time": 1730754490, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8043,10 +8102,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8071,7 +8130,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8093,7 +8152,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address of the mints to return + + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8111,22 +8170,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8135,22 +8194,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", + "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747694, + "block_time": 1730754515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8159,22 +8218,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", + "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747679, + "block_time": 1730754512, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8183,22 +8242,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", + "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747666, + "block_time": 1730754498, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8207,22 +8266,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "50b49611e9c13e2db8dcfedef4d55bf370eb017754c034f804dc03befeac954b", + "tx_hash": "be608604bbfb74748be5552f923987d7fe74c6be140702cc17fa7df503318d13", "tx_index": 15, "block_index": 127, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747648, + "block_time": 1730754478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8231,22 +8290,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8265,7 +8324,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address of the mints to return + + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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` @@ -8284,22 +8343,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8320,7 +8379,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0` (str, required) - The utxo to return + + utxo: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8340,8 +8399,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset_info": { "divisible": true, "asset_longname": null, @@ -8354,12 +8413,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8399,8 +8458,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will make the bet - + feed_address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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) @@ -8474,7 +8533,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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) @@ -8536,7 +8595,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8547,9 +8606,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985772, - "btc_fee": 14228, - "rawtransaction": "02000000000101588a89abdd6d686b998a6dc7c3f8c941a4b876cba76960e30dffed5ce3c8fae600000000160014798a41286d38d8c9e630455aadf358126716233effffffff0200000000000000002b6a298bb510e9b688979f16b5a858d82a242440cc9d0822fc31934510d638e80ec71c47513a437d54b3c6756cba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985760, + "btc_fee": 14240, + "rawtransaction": "0200000000010116fb01b6a49af296f7991a03b6568e8ea53f41618aaf2efe6bdf0c7b221abd88000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a295ba188ea222475b44b30d16faa9c18458a3c59d09f5deebe45a3445d98a9e74651f4b700082e04e93660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8571,8 +8630,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending the payment - + order_match_id: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb` (str, required) - The ID of the order match to pay for + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending the payment + + order_match_id: `c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178` (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) @@ -8630,24 +8689,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837fc3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "data": "434e5452505254590bc240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980891, - "btc_fee": 18109, - "rawtransaction": "02000000000101a72b29e52c3b0238e3d87f4bd9b453964eb6a5e05d0d2a506c6a2a031bc7853f00000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e803000000000000160014798a41286d38d8c9e630455aadf358126716233e00000000000000004b6a49ca9c9fbe4157dd8e5c65ba98153af7bbec77c1cdce96a14ba270329329ebce70252b14a21261a2f3e4bc8da943c5d0c826e271f4b83284ebe2d8a38ccd13b530be776f45383e9ea0525ba7052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999980877, + "btc_fee": 18123, + "rawtransaction": "0200000000010134134bd46a4c5d145230ef15f8b69342b5817d3f4bc49511937e147ef7cd606c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e8030000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d400000000000000004b6a498e5445293aba007dc9e95365fcae404891cc9b4d3f90c1acb6419c75db5f4bb2f048f0378f38702a37535a0cafcff630449b4d8260444a0547bdfcb7465a2de7160f91bba6da4f40d84da7052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "status": "valid" } } @@ -8660,7 +8719,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address with the BTC to burn + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -8721,7 +8780,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8730,9 +8789,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": 4999985771, - "btc_fee": 13229, - "rawtransaction": "020000000001010693eb3841c7284d6486e8f298589a8e35b69de57bd53de29858d50baf119faf00000000160014798a41286d38d8c9e630455aadf358126716233effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000" + "btc_change": 4999985761, + "btc_fee": 13239, + "rawtransaction": "02000000000101a6cbe9947c343c08d41a6c4cf34f79f478993f27f10f1eab0b50b011ce1d2654000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac61ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000" } } ``` @@ -8742,8 +8801,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178` (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) @@ -8799,7 +8858,28 @@ Composes a transaction to cancel an open order or bet. ``` { - "error": "['incorrect source address', 'offer not open']" + "result": { + "params": { + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "skip_validation": false + }, + "name": "cancel", + "data": "434e545250525459465006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985760, + "btc_fee": 14240, + "rawtransaction": "020000000001017da4d7f8266088fa20cbf73ebca547de3ab27f9e9ced3b3541329354a3ac4ec2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a29896e02144b4513af65e3c6a3b890c5895fa7b7d9ce40c5acc846d00fe55c74a1967f1dde79b76b152660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "status": "valid" + } + } + } } ``` @@ -8808,7 +8888,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -8869,7 +8949,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8887,9 +8967,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986301, - "btc_fee": 13699, - "rawtransaction": "02000000000101e62af58091a274b9e962eb4269b174581d057208c213ce62c5f6d94ffe11469300000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000226a2084f1b46a0a401279cd1f07e2844c86a16b33bf0abbdfcdd392f198748b9091227dbc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986290, + "btc_fee": 13710, + "rawtransaction": "02000000000101330b68a63f6a0bf4324eeabdedcaba94724f9acdd71fc338d342fd1f29675bb2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000226a202bed067be42b7470d48f783e703b0a953c71563cf44cfefcfe028ecc883ad24a72bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8909,7 +8989,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: `bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp` (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) @@ -8976,7 +9056,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8999,9 +9079,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920213, - "btc_fee": 14287, - "rawtransaction": "020000000001016bc493048e8304d83f9a97127473d44c0ae788545397d55d27b36d0e80a7fdce0100000016001448083d67f6b413b14d42a89a6e66d09385fe2a94ffffffff0200000000000000002c6a2a58f5bf22d68657e615981216404bca840022736410c2d967559ecf0a235149cfe959d3593a92668e19cbd5c909270100000016001448083d67f6b413b14d42a89a6e66d09385fe2a9402000000000000", + "btc_change": 4949920201, + "btc_fee": 14299, + "rawtransaction": "020000000001014c11c5de8288b4de68b09b3ee42090881eadaaaa42c0097bdfb68a0e023577c2010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad3ffffffff0200000000000000002c6a2afb2e99f1f271d3e1669ec0ebacd4552f9ccdd27777444fcaa2be3c31bd2a04461bbef2bdb08935c0ef9cc9c90927010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9027,7 +9107,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -9088,7 +9168,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9096,7 +9176,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9113,9 +9193,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "0200000000010123c07633cdc00513902a5a00b5f835aa9f6c9454ccda949592efe70fc42125bc00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21f5a744d8c07985b3689f2e41a85e7cfc40cd1e7a8364446ebfc03120c781ed8b6e42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986231, + "btc_fee": 13769, + "rawtransaction": "0200000000010131ea1a6d6bd7c60ddbd7fa1d61b6b1c2dbefd99490d8b05a2603a6c10d549e1d000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a2173c51e8531ada48df30360ae316b80e64969d68a6b45ca15c580748cb7e4f31b5337bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9136,10 +9216,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -9206,10 +9286,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "transfer_destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "lock": false, "reset": false, @@ -9221,9 +9301,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": 4999983697, - "btc_fee": 15757, - "rawtransaction": "02000000000101cd29aff4233d61afb4aaa8b223de27eea6f55718dd7f4d4dde73749a9ab9db9300000000160014798a41286d38d8c9e630455aadf358126716233effffffff032202000000000000160014798a41286d38d8c9e630455aadf358126716233e0000000000000000236a213d66f0d40fc5df290ee6fa7b13a5163a683e1015338e6c1aa3d063b808df6c256151b2052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999983684, + "btc_fee": 15770, + "rawtransaction": "02000000000101b19ac26bdea49564e140b2029d4b5f112b43ba3ec1ce467f19f3e5140234149c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0322020000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d40000000000000000236a218fc47ed77839b421c2b4a7d3ebd4d9f0ec4ebd7b8c0c7bc4b505968245448dea5344b2052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9252,9 +9332,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s,bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9321,16 +9401,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", 1 ], [ "MPMASSET", - "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", 2 ] ], @@ -9339,26 +9419,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280798a41286d38d8c9e630455aadf358126716233e8056d261ee75bba4a6fddbe43bfa34388e116f04b140000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4840000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945318, - "btc_fee": 52682, - "rawtransaction": "02000000000104f607fc6ac73694cbdf0482fc57e55e793df947b5c0cdfecb6d99670ba9fab85f00000000160014798a41286d38d8c9e630455aadf358126716233effffffffea46021e7f378ebcfac51cf9082b31d34be08a2608735226c3f963b6b2a3a67d00000000160014798a41286d38d8c9e630455aadf358126716233effffffff8835858931a80328613ab84b09665c8994a0f2c0289187ca6edd9491159d910200000000160014798a41286d38d8c9e630455aadf358126716233effffffff94fef9c94436e0efdd17dce4c9f426289832f5ee2c71af4d11d77dde1470e2a500000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e80300000000000069512102096f9b0d83e89bf9655c72633c3bb350fae8105f164efb321f007a926fe9b0512103c91047b9b7071ea9b06ea4d25b1ebe8b3fd43978e18d372225145b06f58bba2421038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102166f9b0d83e89bf9658f7261bc423911d2a12887dfa8cb7745a989ca7d8ea6e52103ea2ec6ef6566f0dc0bca022f80fa85710becb7698e89866225145ee595037edc21038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053ae66f216a804000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000000000000", + "btc_change": 19999945276, + "btc_fee": 52724, + "rawtransaction": "020000000001041a1250ec35b55569fd30cbf046022141a0486319174e07e11c7b8a2db83cd9f4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff7d552d27f7ff34c93b8687dbd87357ae0f573be66c031f12e93d721523e9a995000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff523f323acb3c79f41b1428228e9e98006cbb3529b31cc7e98381e5ff0abf1e72000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff8bcd4df934dacb9addb7a1ce084ab23559896fd982f2a4abdb17cf35dad8c1f6000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e803000000000000695121027ba892556213eb2c231b27b136dbff2e43a06f6fbca92ac97c6db2f7ffca946a2103085215750aa78fcc3c3ebb58f6d4163ba7c81ef28be2182ef43ffb55e3a7e48f21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210364a892556213eb2c23c827b3b6554f257d8d8824197907a3bf13a7ad1fe68f0e21031d8694a381f96009e11978e2f7d2e441c253ed339499506ef43ffeb6832f200621028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae3cf216a8040000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9374,7 +9454,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -9438,7 +9518,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9456,7 +9536,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9468,9 +9548,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985184, - "btc_fee": 14816, - "rawtransaction": "0200000000010124dfe6e039b3921bbc77b01d27d9873e525c8a16976b90a07bdaf5bc31716f5b00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000356a3371c8fe2a15008d4be5e706e90ca609224989c3cc964e23a4902eb765a38933c6eed72793e62fe224a98cbb25bda2593bb8874420b8052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985172, + "btc_fee": 14828, + "rawtransaction": "020000000001012702d03614e713d28c3e4c01a838d9c5b2eeb12496ccb5423584af348f56e4a4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000356a33c698b0b058e7527b8dea6d7c15f648dade91b9e217883042182de5cc03260e79e519ea9d0870d8e3f5bafb61b028429127051214b8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9496,8 +9576,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address that will be receiving the asset + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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 @@ -9563,8 +9643,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9581,19 +9661,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", + "data": "434e54525052545902000000000000000100000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985478, - "btc_fee": 14522, - "rawtransaction": "02000000000101dd7bda3b4b59bf32599c05b52f5a76f7a3eec2469f444953195de95e76c79e3600000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000306a2edf6b001f2be4f015ab53c1442c78b1eca279ddbe2c64fadff42ff8f738a6c117a466508a433bc31a81abeedcb1be46b9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985466, + "btc_fee": 14534, + "rawtransaction": "02000000000101ed13f7d9bf1d87d36f3225bf6cf5e0c7f142aa88abd9763a1c28c8b938ca044c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000306a2ea9295a205b1b2256ea5fdb16d168318a070bc85a9f40c96afcd2060c00417f44b9d8a1eb40df502d3245e92a37353ab9052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "quantity_normalized": "0.00001000" } @@ -9607,8 +9687,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be sending - + destination: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending + + destination: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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 @@ -9668,24 +9748,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e545250525459048056d261ee75bba4a6fddbe43bfa34388e116f04b107ffff", + "data": "434e5452505254590480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4807ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "02000000000101c0d0595a484999dd4ccb63f5fedb9bd64b6612050031ce1fa0c4528d36107e7400000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21eccfda5fac6fc9abc27a01363e983824a066affd4fe482cd2a31ceef0f70690c8a42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986231, + "btc_fee": 13769, + "rawtransaction": "020000000001017443aa984d8b162bdc9495a9c1ff98f0726a2276c5b195640d05eccf72387b3c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a213a95fec1a258013af6f7f4fa23e67f928ccf78f3f737380092d4306e339ce4777937bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "flags": 7, "memo": "ffff" } @@ -9699,8 +9779,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: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq` (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` @@ -9759,8 +9839,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "quantity": 1000, "skip_validation": false }, @@ -9768,9 +9848,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812595, - "btc_fee": 14405, - "rawtransaction": "02000000000101cfeb54fb835f586e9fee34083c13f100ad5e40abab9d2db77b969bee38bf25960300000016001456d261ee75bba4a6fddbe43bfa34388e116f04b1ffffffff03e8030000000000001600146f8fed86c68edbd4884f3786230f26561a53e3eb00000000000000000c6a0a070e7e3301a812d6c094732508270100000016001456d261ee75bba4a6fddbe43bfa34388e116f04b102000000000000", + "btc_change": 4949812584, + "btc_fee": 14416, + "rawtransaction": "020000000001010aa9873cdb43e3f44f4d2491a655dd127c69be188ef9b864bdbf64da0832cb5703000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48ffffffff03e8030000000000001600142b76c5b1671561586aee7961c784a0f1cd248b6600000000000000000c6a0a794ec3d5222cae73a3bd6825082701000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9787,7 +9867,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be issuing the asset + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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: `` @@ -9878,7 +9958,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9908,9 +9988,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985419, - "btc_fee": 14581, - "rawtransaction": "020000000001010e9c33902a07fb4f102bc3fd401322a78f6828385e29db5e84046bfc381e056100000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000316a2fa44097f62f981fe894b248a1b4bccb99d1e0eaad79102f2d287beb67cdf995490d1ee729d1202cb954f22295a410fe0bb9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985407, + "btc_fee": 14593, + "rawtransaction": "0200000000010182ad15aabac2d01ded2f1003268ee8556df3ce841c837eb7a69a9a32d8b1db6c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000316a2fb23104f3d5d644520d0b478314e4b0cf49c8c069996c8fe00d20b99975f27618026d8837f8230fbde65daa23b6cffbffb8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9949,7 +10029,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address that will be minting the asset + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -10010,14 +10090,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -10027,9 +10107,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": 4999987006, - "btc_fee": 12994, - "rawtransaction": "0200000000010153f12858ce00c24c07a95ba3933919f2967a2ac071c722830597187d4b2c6b5c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000166a141971f5e8107b61f619f206bdd372e58edc28e5c53ebf052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986996, + "btc_fee": 13004, + "rawtransaction": "02000000000101ec45ccd12a4c63836683fa0c347f6ad4a8abfac00987a8ae3842a6a760f183ec000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000166a1490a595e5f6132e43e59c565f13ad95fdec459d2634bf052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10048,10 +10128,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: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address from which the assets are attached + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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: `c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1` (str, optional) - The utxo to attach the assets to + + destination: `697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10110,8 +10190,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:3", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10125,12 +10205,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c633334383666393139326532336538346332346636376632303264656662383531386233613432333632633937343230353335343563633762663336396363623a317c5843507c31303030", + "data": "434e54525052545964626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c363937653938353163643238383636343765343865306538653438393732623761666432366633646134653733306233383861393033646535646538303933613a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918271, - "btc_fee": 78729, - "rawtransaction": "020000000001066ad743acd4c3488452e3ee8bb7634147730540d56e888c8814d16c0cd3ef508300000000160014798a41286d38d8c9e630455aadf358126716233effffffff51e54678a806081a6fe5d1697bf5d819fceddc70791f0c1b1b1e8b3da735ac4200000000160014798a41286d38d8c9e630455aadf358126716233effffffffb7f54f082df2dbe41239ef3f628814556b9dde233d80afaeb7237db0fde9985a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff80772f7918c5df9e5cdd47db19883a6cf705b0dbf208982e63f1bc81a7b80f2a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff5d55536296669524e105dce47547815bee5daae8145e2aa337ea8b2892d715b200000000160014798a41286d38d8c9e630455aadf358126716233effffffffbab42c6da624e5db2accd8e2dbab3d1ebc5b33c015cf44b07b00c242946e7b8c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff04e80300000000000069512102bb5cd9b6449af1a66421e6eab35daf5c602fd8281009b42d5a874d16ae6dfce22103b26d824a5ab2772127a04b2b92fc80435208c3bf52adfda5fd88bcc39dc02c3721038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512103bb5cd9b6449af1a66474bdbba41bad48686382635e5df07e04c70b52a46da9bf2102a332831f50bd317670e81e7393e9de11515e95f904abbaecfdd8bf99cd9523d021038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102915cd9b6449af1a6647ce7eaa313af510814b12d5b0bf67962f53b60c008cfe92103c10ab62e68df021744da2d45a18ae726656ca5cc379e8ed99ebb88fbaba6154921038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aebf6c22fc06000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000002000002000000000000", + "btc_change": 29999918208, + "btc_fee": 78792, + "rawtransaction": "02000000000106ec26e38d001b524d87f6e28fcbc311178df2dbfcc6516cebbf84004c8312b53f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff1d2795aa3485c988e84fb2e7aa5c7f8ff5edcf36cfb821509f14c3adebe2ec03000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff3529e97b54a82ef5a789daa08b2435014a6b9b36b255bdd8fea9de06a87a9a9a000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff95ed83a21618112cb5b4d145fcd5e78ef5c462501dc275a3962649f1148dec44000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffffe5439ca5eada80e835e68960c42e9fce80044108d885d6defa611726e838df9f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff4358938a7a8b42811031330785715aa7b9f4d501d47845ecdd0625d097e028cf000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff04e8030000000000006951210300e49164f5b810f60465d641f7d79e41f8887a91b8dd2cbbe88e58fa24c46d02210255c29677b057bba4cad10548ee7ab8d25107da8aed8dfd6d8f0321c8fdd160f821028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210200e49164f5b810f60430d746b79b9706fd8a2e85e7d53aedf8d704f868c82a5b210203c4d566be06b0a09a971042aa74b696540099c2e3d5f3218a5e7398a08c6d8921028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee803000000000000695121022ae49164f5b810f604318d11e4999c4c93fd499ce2dd6fed9def61cc50f11d6f210331a6e207d8628296fca474239e1181a56462aafadbb4ca11b93a16adc4e9555021028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae806c22fc060000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10147,8 +10227,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: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to detach the assets to + + utxo: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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 @@ -10208,8 +10288,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10223,12 +10303,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964663235336432393633636530626466613364393765376639343939393035636337323166303332386633373335393138376466343566343639306533636338323a307c626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c5843507c31303030", + "data": "434e54525052545964313538346138643361343130346539376630666265306133643064393463303339353137303332303337303464356263663735343065353334373062326635353a307c626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030198, - "btc_fee": 46802, - "rawtransaction": "0200000000010308f4bc439a034ae357a0b066c462aba7579d028af8c277d66978b0fb41a8f107010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffffd08e44cbd77cf280412d6f3fb45d91e21369d183406a69056a85a3138fd6f3fe000000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff65bc2abfe66805b909bc84c5fe7c8401e45d00e6d2aae94782884b09ffca5aa7010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff04e80300000000000069512102c02d27c0a64ddc2f3f61210dd246a13fe7630b18c1694fec0eface3f4907879c2102dba31df58d98a65d17e5ddda86a09d86161f89a2a7614d4683db37fbcf6957f7210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512102c02d27c0a64ddc2f3f30210bd14cf568ed365b4396631df40af88f2f4141d2db210394fc5dbb86d3fb5550f0c883d1a288d1114983a9e1601d09dc843cbacc6a549e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512103ea2d27c0a64ddc2f3f61214c8246b6718616680795691db8689bfd5b7030e2282103ecc524c1b4a19f6d2286beedb491fbb6252db1c494567e73baea0fccab0f635e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953ae76770b27010000001600144de620b4af02f945f107cdb328406ee6e7a25bfc02000002000002000000000000", + "btc_change": 4950030161, + "btc_fee": 46839, + "rawtransaction": "020000000001037da5c62bf0518bab542904911d47e5ba189ff24c3bc881335f98fd4382900c7f0100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325fffffffffacabf9810b671b81ba9309a3be44da18d0272828ce007e4690c99122a2f45a40000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffffb4368a5fafe65793022c45fcd58316958291c1b030a1da83cde5cdc8b03db7880100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffff04e8030000000000006951210350e8ed5d86b1d3f35116ebda9205bc56837066971cf39594ac77e26b2cd2b1602102c9527c9f10b57e0c47d0979207be90cde10528dc0d3fcad7380fc482048755ea21021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee8030000000000006951210250e8ed5d86b1d3f35142bfda9905ea5e8571619618f9918df723f62f7bc1e7db2102cf503e9010a2214d45d992df07ffc399a64770da033dc8c67c06d78f0ac554a521021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee803000000000000695121027ae8ed5d86b1d3f35117aa9f9c08ea12bf0057df1cf391c19540845b4ab0d4c12102f9334ffb20d1473824e0a4ab328fa7fdd23718ef3a0ffeb30d6da7e433b261c821021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553ae51770b270100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32502000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10297,8 +10377,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -10306,16 +10386,16 @@ Returns the valid assets "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", - "owner": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "owner": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "divisible": true, "locked": false, "supply": 100000000000, @@ -10323,16 +10403,16 @@ Returns the valid assets "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730747962, - "last_issuance_block_time": 1730747962, + "first_issuance_block_time": 1730754790, + "last_issuance_block_time": 1730754790, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -10340,16 +10420,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "owner": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "issuer": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "owner": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "divisible": true, "locked": false, "supply": 100000000000, @@ -10357,16 +10437,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730747789, - "last_issuance_block_time": 1730747789, + "first_issuance_block_time": 1730754608, + "last_issuance_block_time": 1730754608, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -10374,8 +10454,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" } ], @@ -10403,8 +10483,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -10412,8 +10492,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730747628, - "last_issuance_block_time": 1730747640, + "first_issuance_block_time": 1730754459, + "last_issuance_block_time": 1730754470, "supply_normalized": "100.00000000" } } @@ -10444,7 +10524,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10452,14 +10532,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10467,7 +10547,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -10485,7 +10565,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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. @@ -10497,7 +10577,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -10551,9 +10631,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10568,7 +10648,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10594,9 +10674,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10611,7 +10691,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10637,9 +10717,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10654,7 +10734,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10680,9 +10760,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10697,7 +10777,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10723,9 +10803,9 @@ Returns the orders of an asset }, { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10740,7 +10820,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10802,13 +10882,13 @@ Returns the orders of an asset { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10822,7 +10902,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10842,13 +10922,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 52, - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10862,7 +10942,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10882,13 +10962,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", "tx0_index": 49, - "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 50, - "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10902,7 +10982,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10922,13 +11002,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10942,7 +11022,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10962,13 +11042,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -10982,7 +11062,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11062,20 +11142,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "event": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11083,20 +11163,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", + "event": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11104,20 +11184,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11125,20 +11205,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "event": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11150,16 +11230,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11219,12 +11299,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -11236,16 +11316,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -11257,16 +11337,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -11278,16 +11358,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -11299,16 +11379,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -11388,14 +11468,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", + "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -11410,20 +11490,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -11438,20 +11518,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -11466,20 +11546,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -11494,7 +11574,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730747628, + "block_time": 1730754459, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11528,10 +11608,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11539,7 +11619,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -11552,10 +11632,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11563,7 +11643,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -11576,10 +11656,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "block_index": 207, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11587,7 +11667,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -11600,10 +11680,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11611,7 +11691,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -11624,10 +11704,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11635,7 +11715,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "divisible": true, "asset_longname": null, @@ -11686,9 +11766,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11697,7 +11777,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11707,7 +11787,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11723,9 +11803,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", + "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", "block_index": 142, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11734,7 +11814,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11744,7 +11824,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747723, + "block_time": 1730754542, "asset_info": { "divisible": true, "asset_longname": null, @@ -11760,9 +11840,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", + "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", "block_index": 150, - "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", + "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11770,10 +11850,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11781,7 +11861,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747763, + "block_time": 1730754582, "asset_info": { "divisible": true, "asset_longname": null, @@ -11797,18 +11877,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11818,7 +11898,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -11843,7 +11923,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - The address to return + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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` @@ -11856,9 +11936,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11867,7 +11947,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11877,7 +11957,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11927,7 +12007,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11935,7 +12015,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11944,7 +12024,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11952,7 +12032,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11961,7 +12041,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11969,7 +12049,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11978,7 +12058,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -12015,27 +12095,27 @@ Returns the dispenses of an asset { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12050,7 +12130,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -12064,27 +12144,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", + "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", "block_index": 147, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12099,7 +12179,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730747751, + "block_time": 1730754561, "asset_info": { "divisible": true, "asset_longname": null, @@ -12113,19 +12193,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12133,7 +12213,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12148,7 +12228,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -12162,19 +12242,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12182,7 +12262,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12197,7 +12277,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -12271,10 +12351,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12299,7 +12379,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12339,22 +12419,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", + "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", "tx_index": 13, "block_index": 125, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -12363,22 +12443,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "tx_index": 12, "block_index": 124, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -12387,22 +12467,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -12421,7 +12501,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd` (str, required) - The address of the mints to return + + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (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` @@ -12440,22 +12520,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -12508,9 +12588,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12525,7 +12605,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12551,9 +12631,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "block_index": 187, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12568,7 +12648,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12594,9 +12674,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12611,7 +12691,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12637,9 +12717,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12654,7 +12734,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12680,9 +12760,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12697,7 +12777,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,7 +12812,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f` (str, required) - The hash of the transaction that created the order + + order_hash: `c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e` (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. @@ -12744,9 +12824,9 @@ Returns the information of an order { "result": { "tx_index": 54, - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "block_index": 210, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -12761,7 +12841,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12793,7 +12873,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f` (str, required) - The hash of the transaction that created the order + + order_hash: `c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e` (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 @@ -12820,13 +12900,13 @@ Returns the order matches of an order { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12840,7 +12920,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12860,13 +12940,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -12880,7 +12960,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12900,13 +12980,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12920,7 +13000,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12950,7 +13030,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e` (str, required) - The hash of the transaction that created the order + + order_hash: `7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024` (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 @@ -12969,15 +13049,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "btc_amount": 2000, - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "status": "valid", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "btc_amount_normalized": "0.00002000" } ], @@ -13021,9 +13101,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "block_index": 187, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13041,7 +13121,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730747901, + "block_time": 1730754711, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13067,9 +13147,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "block_index": 210, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -13087,7 +13167,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730748017, + "block_time": 1730754868, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13113,9 +13193,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13133,7 +13213,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13159,9 +13239,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13179,7 +13259,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13205,9 +13285,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13225,7 +13305,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13288,13 +13368,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13311,7 +13391,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13331,13 +13411,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 52, - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13354,7 +13434,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747901, + "block_time": 1730754711, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13374,13 +13454,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13397,7 +13477,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13417,13 +13497,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", "tx0_index": 49, - "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 50, - "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13440,7 +13520,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747828, + "block_time": 1730754638, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13460,13 +13540,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13483,7 +13563,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13541,13 +13621,13 @@ Returns all the order matches { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13561,7 +13641,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13581,13 +13661,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 52, - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13601,7 +13681,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13621,13 +13701,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", "tx0_index": 49, - "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 50, - "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13641,7 +13721,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13661,13 +13741,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13681,7 +13761,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13701,13 +13781,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13721,7 +13801,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13889,66 +13969,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", + "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", "block_index": 121, - "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", + "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730747624, + "block_time": 1730754455, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "3ed22c35c310cbc89a1cd6563227ad0c0b6aaae02dab4cdcdafb85f968f36ed6", + "tx_hash": "17ddd01be8b6259737480ce5d41d2296adfd6fad2dd5fd25ba22a7bd25327197", "block_index": 120, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730747621, + "block_time": 1730754452, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "479f4cac42c754f06e32fbdecc57527e4b76fd7b51dcadd877db18c8a523dea3", + "tx_hash": "b68db9d455df4a1461290497eaa93e1b057416b73ec917d8d7b2b25fbcfc8ba7", "block_index": 119, - "source": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7", + "source": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730747618, + "block_time": 1730754448, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f6e3a7d0fbe60479c3f6e35bcfff2de735c4149ae4d6090e845c75b5f5caf52e", + "tx_hash": "4f57e9927e556cd34c39dbdeba6265fc1d88e60b3bf2e08bc874b837828ff0b7", "block_index": 118, - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730747614, + "block_time": 1730754444, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "02e71ce74746cdb8e530b3f44d2f65a8e533d6a64c7f6447be12e25a3e6dd774", + "tx_hash": "216cb7c25a848ecee97deb433973131fbc9af42fa729e1e3febf0fae9d5ebc62", "block_index": 117, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730747611, + "block_time": 1730754441, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13993,9 +14073,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14004,7 +14084,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14014,7 +14094,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14030,9 +14110,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", + "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", "block_index": 142, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14041,7 +14121,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -14051,7 +14131,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747723, + "block_time": 1730754542, "asset_info": { "divisible": true, "asset_longname": null, @@ -14067,9 +14147,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", + "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", "block_index": 150, - "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", + "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14077,10 +14157,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -14088,7 +14168,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747763, + "block_time": 1730754582, "asset_info": { "divisible": true, "asset_longname": null, @@ -14104,9 +14184,9 @@ Returns all dispensers }, { "tx_index": 64, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14115,7 +14195,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14125,11 +14205,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -14141,18 +14221,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14162,7 +14242,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -14187,7 +14267,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12` (str, required) - The hash of the dispenser to return + + dispenser_hash: `3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec` (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. @@ -14199,9 +14279,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14210,7 +14290,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14220,7 +14300,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14242,7 +14322,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12` (str, required) - The hash of the dispenser to return + + dispenser_hash: `3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec` (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 @@ -14262,19 +14342,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14282,7 +14362,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14297,7 +14377,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14311,19 +14391,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14331,7 +14411,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14346,7 +14426,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -14388,20 +14468,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -14426,7 +14506,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0` (str, required) - The hash of the dividend to return + + dividend_hash: `45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe` (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. @@ -14438,20 +14518,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -14473,7 +14553,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe` (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 @@ -14496,12 +14576,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "tx_index": 41, - "utxo": "9e188f31b823ed1b059c50f35dbc1c3972e2275bd6c69a65b2139ceb3a49d3c2:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "116cd83585c2fbec0a0fa7c5bc3a36798e8c7df68e67b38d29447cf500b9091f:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "divisible": true, "asset_longname": null, @@ -14513,16 +14593,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", + "address": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "divisible": true, "asset_longname": null, @@ -14568,27 +14648,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 694, @@ -14597,14 +14677,14 @@ Returns all events "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -14615,9 +14695,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 693, @@ -14626,9 +14706,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -14638,24 +14718,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -14665,9 +14745,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 691, @@ -14695,15 +14775,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } } ``` @@ -14781,16 +14861,16 @@ Returns the events filtered by event name "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -14800,9 +14880,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 690, @@ -14812,12 +14892,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -14827,9 +14907,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 687, @@ -14839,39 +14919,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -14881,24 +14961,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -14908,9 +14988,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_time": 1730747999 + "block_time": 1730754849 } ], "next_cursor": 656, @@ -14966,27 +15046,27 @@ Returns all the dispenses { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15001,7 +15081,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -15015,19 +15095,19 @@ Returns all the dispenses { "tx_index": 65, "dispense_index": 0, - "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15035,7 +15115,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15050,11 +15130,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -15064,27 +15144,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", + "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", "block_index": 147, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15099,7 +15179,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730747751, + "block_time": 1730754561, "asset_info": { "divisible": true, "asset_longname": null, @@ -15113,19 +15193,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15133,7 +15213,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15148,7 +15228,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -15162,19 +15242,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15182,7 +15262,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15197,7 +15277,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -15239,10 +15319,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -15250,7 +15330,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -15263,10 +15343,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -15274,11 +15354,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -15287,10 +15367,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15298,7 +15378,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -15311,10 +15391,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15322,11 +15402,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -15335,10 +15415,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15346,11 +15426,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -15401,14 +15481,14 @@ Returns all the issuances "result": [ { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -15423,20 +15503,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "3735cc23ff0d1af87f41b77e1d4ec864e2d6d6ffbd47d46b914216aac2e11f30", + "tx_hash": "5e42629e369d96d248345e21d5ac75700f1313a5b3d73300b001c56535a9dbd4", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", - "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "transfer": false, "callable": false, "call_date": 0, @@ -15451,20 +15531,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747962, + "block_time": 1730754790, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", + "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -15479,20 +15559,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747814, + "block_time": 1730754623, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", + "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -15507,20 +15587,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730747801, + "block_time": 1730754620, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", + "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -15535,7 +15615,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747796, + "block_time": 1730754617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15550,7 +15630,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36` (str, required) - The hash of the transaction to return + + tx_hash: `82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21` (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. @@ -15562,14 +15642,14 @@ Returns the issuances of a block { "result": { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -15584,7 +15664,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15616,16 +15696,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -15639,7 +15719,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920` (str, required) - The hash of the transaction to return + + tx_hash: `a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae` (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. @@ -15652,16 +15732,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -15695,9 +15775,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15705,14 +15785,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747708, + "block_time": 1730754528, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", + "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", "block_index": 137, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15720,7 +15800,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747705, + "block_time": 1730754525, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15734,7 +15814,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd` (str, required) - The hash of the transaction to return + + tx_hash: `06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885` (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. @@ -15746,9 +15826,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15756,7 +15836,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747708, + "block_time": 1730754528, "fee_fraction_int_normalized": "0.00000000" } } @@ -15793,10 +15873,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15821,7 +15901,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15830,10 +15910,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15858,7 +15938,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730747697, + "block_time": 1730754518, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15870,10 +15950,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15898,7 +15978,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730747663, + "block_time": 1730754494, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15910,10 +15990,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15938,7 +16018,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730747659, + "block_time": 1730754490, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15950,10 +16030,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15978,7 +16058,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16047,22 +16127,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -16071,22 +16151,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", + "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747694, + "block_time": 1730754515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -16095,22 +16175,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", + "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747679, + "block_time": 1730754512, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -16119,22 +16199,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", + "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747666, + "block_time": 1730754498, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -16143,22 +16223,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "75057efd3c5e87afdb08c657cc7401e31b3255c06e8d2115a88d08044dfa9efb", + "tx_hash": "3d947603d199500cf82471d766636ee73f5b9b1ab7994885f70d295231d24752", "tx_index": 17, "block_index": 129, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747655, + "block_time": 1730754487, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -16177,7 +16257,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600` (str, required) - The hash of the fairmint to return + + tx_hash: `bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16188,22 +16268,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -16221,7 +16301,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv,bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7` (str, required) - The addresses to search for + + addresses: `bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp,bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg` (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. @@ -16235,22 +16315,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c", - "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" + "amount": 49.499345, + "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c", + "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" }, { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b", - "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" + "amount": 5.46e-05, + "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9", + "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" }, { "vout": 2, @@ -16258,8 +16338,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c", - "address": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7" + "txid": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e", + "address": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg" } ], "next_cursor": null, @@ -16272,7 +16352,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga` (str, required) - The address to search for + + address: `bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd` (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 @@ -16288,31 +16368,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920" + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" }, { - "tx_hash": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24" + "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934" }, { - "tx_hash": "454961c6e2af2327cdafab58f181b6ba863526a6c63ed1a53d4b6a8c61b1d165" + "tx_hash": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39" }, { - "tx_hash": "a97cf6403165bed5bd86f15312ffd7244209408dcb7a394b2d51bfd049adcd68" + "tx_hash": "f93447495abf4a163194a6319c9447c0ab7da997f808a615c131ef35434cc33c" }, { - "tx_hash": "e8488df17426c9432406f268211e22aae77ae9e569b9dbeaaff6ef18d83a6e7e" + "tx_hash": "3a4dd199180fd38b85c2b4afb6dfdc79b904e76df3c041b0d0cccd17204f8ba5" }, { - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae" }, { - "tx_hash": "1d08fdbe785954b8f8c4e6e17a4c56e0969133ffa88da7850dbf9c9a259d89c0" + "tx_hash": "c9e1bdb5ce778d2a17862427338d102ba9219c3d5ad6115d123ddf2345a7a1cd" }, { - "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6" + "tx_hash": "08497a8ddebcc6b0d334b98818bad3d9050e3e71bd821dcfc59270bb9d9a19d8" }, { - "tx_hash": "ba6142b84dcba1d1a2a339b9c092b6869e4fc84002f8fede5ec6746c9c59b9f8" + "tx_hash": "6e61189defb65cb99f6f025af46b26bf4335e3fe491157807982d3053725b2f6" } ], "next_cursor": null, @@ -16325,7 +16405,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st` (str, required) - The address to search for. + + address: `bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj` (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. @@ -16338,8 +16418,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "4e2c04a10a739b6afcd82d018f013f82fc0d11bc29cd26e71f96272a72c5738a" + "block_index": 4, + "tx_hash": "aaf75b4666e66b95cff047812c285a3f78610420f509717a801d62c5d9472383" } } ``` @@ -16349,7 +16429,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv` (str, required) - The address to search for + + address: `bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp` (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 @@ -16370,7 +16450,7 @@ Returns a list of unspent outputs for a specific address "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b" + "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c" }, { "vout": 0, @@ -16378,7 +16458,7 @@ Returns a list of unspent outputs for a specific address "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c" + "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9" } ], "next_cursor": null, @@ -16391,7 +16471,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s` (str, required) - Address to get pubkey for. + + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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. @@ -16403,7 +16483,7 @@ Get pubkey for an address. ``` { - "result": "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" + "result": "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" } ``` @@ -16412,7 +16492,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82` (str, required) - The transaction hash + + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (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. @@ -16424,7 +16504,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001010c0b4d2172a4b599243b5badf28f63da42d6531398de05c9b4e1bdc72ac9c4e60100000000ffffffff03e8030000000000001600144de620b4af02f945f107cdb328406ee6e7a25bfc00000000000000000c6a0a18534b84816655e6bb5aeb14092701000000160014023752bd11ba08d76fe9155ceaaa585ae2234fdb0247304402205e3ee8c2683f87fd4939167f8b13d1f55e9f5d7796a068729aeb6da84ac18e69022014039d3c5ec32a1865fb2c2082b7981c787295ca587c2900c29138db5414f06d012103a0dae290728c6d64a4afe2a4a527a04afad743dfa707bb14cfa58f2a3d8edc6c00000000" + "result": "020000000001018e1736a71efba3a3d66ef0679c74ba83f331d0297403d411575f1197afc15ebe0100000000ffffffff03e80300000000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32500000000000000000c6a0aba2bf82a6f3f007f486eeb140927010000001600145ef1cb2164d56b362bc50f78174c44075e34c9c4024730440220542281337e069d592be93cddae391fb6e66c63f117cbad0390ee80d88de0502d0220699aad912c39f5804108239b775a6e6c3dfe8a6624109012ae7f83abe8c83127012102ea4592b4061746b40fc9fef3f888299461743e8b632c755abe227355fa747f4c00000000" } ``` @@ -16446,7 +16526,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58797 + "result": 58844 } ``` @@ -16519,27 +16599,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78 }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "quantity": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, "asset_info": { "divisible": true, @@ -16550,22 +16630,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -16575,22 +16655,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "block_index": 210, - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -16600,30 +16680,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730748020.6178741, + "block_time": 1730754872.7442517, "btc_amount": 0, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "destination": "", "fee": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, - "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", + "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -16637,7 +16717,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -16668,19 +16748,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -16690,7 +16770,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -16703,7 +16783,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346` (str, required) - The hash of the transaction to return + + tx_hash: `bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864` (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 @@ -16723,27 +16803,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78 }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "quantity": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, "asset_info": { "divisible": true, @@ -16754,22 +16834,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -16779,22 +16859,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "block_index": 210, - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -16804,30 +16884,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730748020.6178741, + "block_time": 1730754872.7442517, "btc_amount": 0, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "destination": "", "fee": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, - "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", + "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -16841,7 +16921,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index a2d35311f8..5e2555113f 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -281,7 +281,7 @@ 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) + :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_OPEN_ORDER_TX_HASH) """ params = {"source": address, "offer_hash": offer_hash} return compose(db, "cancel", params, **construct_args) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 23f01b6f3c..5985545c37 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": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", "difficulty": 545259519, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "previous_block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "previous_block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", "difficulty": 545259519, - "ledger_hash": "e4e8339fce2218d1a5ddc2a90fdf07e8b4800127ff425c617a7e70f6a04c9db0", - "txlist_hash": "2acf87a58f95eb7d391c797c26d4fdc0e8c34152832aadf52db19be71ff97d62", - "messages_hash": "5317a4a193ea6e35dab92210ae429697b0ebfdc663e0066de91b68a9cdc54e11", + "ledger_hash": "cbd6077aaccad4b8436492ed89c427265cef46db99e5ab4fc9104ee8acf52628", + "txlist_hash": "bd545fdb56221a49fbf0d11c06d0f251461848fe4debc7084d6f64df7de3139d", + "messages_hash": "e9564dcdb17c6af9fb10d89cfdf0e8278c8b7784e75f5675067db314ac7e1b38", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", - "block_time": 1730747999, - "previous_block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", + "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_time": 1730754849, + "previous_block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", "difficulty": 545259519, - "ledger_hash": "ca54749c09a22fc16cb63c393bdde4d42610edc0efb20cb277f5445b0d0a7c0a", - "txlist_hash": "0c7332148c20bd19bd0b7d46b9b521cdd3c0594fda421f78c4f46b2383a13d15", - "messages_hash": "db6d2c4e59a1440fbf127766509b5f3e7f2de64ae246efd80bca3bc7133fe501", + "ledger_hash": "31bc6d197c29193b312955881e0d352420393f86e998c22852033a0890b7dd82", + "txlist_hash": "50b58cbaf347b8bce5827d392fd73bf2da06794219aa281fb4584d34cae6a6bf", + "messages_hash": "2cc881c9d82adc09a571885cf005177b8d9f9ce1a33a8018ab7df52049515bd8", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", - "block_time": 1730747995, - "previous_block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", + "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", + "block_time": 1730754845, + "previous_block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", "difficulty": 545259519, - "ledger_hash": "ef4e39670eea3dcb8fcde3f7042f2e87aae8022bf0c94f8dd61281a8a22ec8b2", - "txlist_hash": "a335d5634b33e980af06bcb66403817acb796fc0472b645b51285662c0d98ba8", - "messages_hash": "78bcba26ba47a3d9138309d68898ef315fbb4fe52bded9f17d7229662e911812", + "ledger_hash": "e8d34fcc80b4b7b1f5574520b2fd439bc2436bea05916a93352a95be8baf62d7", + "txlist_hash": "e6f61dc3f16b1c067877b71da3151f22ebced60c9031c7657135816b95704c53", + "messages_hash": "018098dab8463fe563cb98481a2656800ac78c963fb32d4c71adebb38027bbc7", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", - "block_time": 1730747991, - "previous_block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", + "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_time": 1730754842, + "previous_block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", "difficulty": 545259519, - "ledger_hash": "1f34cb4b0fc43a1c2a9789e8b2d9fecb67830180ec45e1f273845caa87677c5d", - "txlist_hash": "f96b248908a08236f55b59283d4173f8598e6802362627b801ff9decf985a98f", - "messages_hash": "94492191b231f60849bbf12b97ad3fed1bb4b5f443c72e40090a5d7d7d961f7f", + "ledger_hash": "da0371bd06f15390250a7d24f7d0345e0923e252bb049504716df459c5b3496a", + "txlist_hash": "ef0fb17e7c83f75e7ea942e31460353ae5ed4cc96522bee9ae356a0815c844eb", + "messages_hash": "fd4c2b7282303c6fbded5671daaecab012c2dc85d0e8d073ca212d0be3281a2f", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", "difficulty": 545259519, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", "difficulty": 545259519, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 694, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 693, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" } ], "next_cursor": 691, @@ -256,16 +256,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 690, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" }, { "event_index": 687, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82" + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "object_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "block_index": 210, "confirmed": true, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "status": "valid", "confirmed": true, - "block_time": 1730747933 + "block_time": 1730754743 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "block_index": 196, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730747945, + "block_time": 1730754765, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,18 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "7ba043d50817a3683ce447042f521437e7213c2d970a3c64b90e4074a66582e1", + "hash": "fb783ed345fbf0bad508019a0423a7044cf2a2316ddb63cc574d59d7f100afbe", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "a48a9ecfe168f608f096629ad17c0bd4c87c015bb5119b29e716b41fda150caf", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "f33e5b0e9d19827086738088b9d77536b6fdf240c86bbe5d43bae0838328147e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "eaa70d3e32b332715efe71e15a8ff5ac384619717e2b0c31fe0482200cbcced6", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "695d6fc4a30edaa94e8ba3862b8f9f541841f548aececcde6a6ca80fd2845ecf", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "9336c6b54d78a2a769cd02969c372bfb2ef5dbd6c9a714fece83e92a7ae280b6", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,69 +871,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a3390b022cf18e43189f294eff85931e18cae3787c9eae61ad669b8dde8f4ea08dca9f1235659069cdedc332470a3660d20001d65" + "value": 1000, + "script_pub_key": "512103ee3f44397286b4db9741c435942fda6b8738946ec10dd8114642af76753c429521024a9bda0636cf07924a0d67e98b787ec6f2c6db78075efcb547d171e0dcdd7e4e21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + }, + { + "value": 1000, + "script_pub_key": "512102ee3f44397286b4db971aaed86d9896b1c80c846d89d15163dc5dea80e39032982103b1d35af89e96771d73f20ad34f16946383961a5f4131ee3566e7b451bbc81fba21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + }, + { + "value": 1000, + "script_pub_key": "512102c03f44397286b4db9742c47614f9513568fd496102b7d917b438caed86fd5d7d210231d35af358576694dbf20ad34f169463d1961a5f4131ee356ca7b451bbc81fbd21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" }, { - "value": 4999990000, - "script_pub_key": "0014798a41286d38d8c9e630455aadf358126716233e" + "value": 29999987000, + "script_pub_key": "00148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4" } ], "vtxinwit": [ - "3044022023fcb0bdbe64ce8c2e98e56e561a9e46f3649808143a474271a74819fc1100c602202a4b09a9f113dd36d4ef651602257627a34251af3879de4fec33d8158584205b01", - "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" + "3044022035afa11ec9e946b67697703fdc2e06a96decf17370112fffb7ea4a2336e153010220594a26343894c18e51f935a21e4cc5242809df19e0701c53c959896096b33d1701", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022036f03055e7559d2c5321fd8260d824bee4069098eb6d4fa66cf9c84ee5dc1bd502201d9d824d9aaa9a5483d5e67d340830498e69a47f2a7bd74c695ac3d97f1ab63501", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022009641257f089d633a95a415e864ca27e057d6000d877517c0d8aaeefd72225970220283ebbdb65b997a524677e16b49c75f47288b4774d56e94c8578654ae704764301", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022013817cea24a285c0ae9069c6b42efb35be1ce260d71c3a6f987ca103d17ed0f10220181f9746d5510ebcd8f47f27bd41b6482da28bb7b3d681539933a2ed7fd21b4601", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "3044022006b4c149ca37bbcb5eed68263a29ecc8941e50288f9ef33e39fc515f7c8457db02203e91721ee78f57a45ba378463237c4b56d4e6ad499b548afa6dafd9f87e8a13b01", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", + "304402201467ac20ee2cb7300f5eb63a63051562ae8fab13614ee633ecd076cfd234b8ff0220274aa1c0215c97e69862efc45eb6438d1b8ad16a84fef2c77b3b5e2eb808b34801", + "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" ], "lock_time": 0, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx_id": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb" + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_id": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a" }, "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": "MPMASSET", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "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": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "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": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "c2d3493aeb9c13b2659ac6d65b27e272391cbc5df3509c051bed23b8318f189e", + "hash": "1f09b900f57c44298db3678ef67d8c8e79363abcc5a70f0aecfbc28535d86c11", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e935a98e35e1bebb99fb1486397daf4fb55da6c6215bc512fe989599a71d3e14885d3e5ba56208d96318f44360597" + "script_pub_key": "6a2e9e3b42024a82d3dcfc7d5a438061f1bddd41b80e1b9d3af3fb7edbb7cdc8f1884becbe34ff820265a578813417f5" }, { "value": 4999970000, - "script_pub_key": "00146f8fed86c68edbd4884f3786230f26561a53e3eb" + "script_pub_key": "00142b76c5b1671561586aee7961c784a0f1cd248b66" } ], "vtxinwit": [ - "304402207f7bfe45d258eb89edef9a23aded36dabb2b1ebeefb01b7b608f59f2fe84325a022004900e3dc278c0c10690e11f887be9fdf224a922cf199d680cc772636b9c52c701", - "03e265b4fb72b1001fbc192ef7e291b08a9d32fc465c312dead2fc97f7e2df062a" + "3044022033ddf83ddd3e0f45497ad9ddd8f4bfb155b7ede487978ed4fa28bace3013fd9f02200dc9d7f23dd7569d1867edbc42686ee63adc1943a561b24b3ae98d9f2d4397bf01", + "02809757b436dab299fe8cd1e4013c75bcba7f8b7956f253ba9e4c1be1b813b830" ], "lock_time": 0, - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", - "tx_id": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346" + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_id": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", - "block_time": 1730748017, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_time": 1730754868, + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 694, @@ -1024,14 +1083,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 693, @@ -1053,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 691, @@ -1102,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "msg_index": 1, "quantity": 1500000000, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", "status": "valid", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1178,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 690, @@ -1134,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 694, @@ -1148,14 +1207,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 693, @@ -1177,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 691, @@ -1226,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "msg_index": 1, "quantity": 1500000000, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", "status": "valid", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1302,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 690, @@ -1255,10 +1314,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1338,10 @@ }, { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1310,27 +1369,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1425,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 690, @@ -1397,12 +1456,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1471,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 687, @@ -1424,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": null, @@ -1453,16 +1512,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 690, @@ -1484,12 +1543,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1558,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 687, @@ -1511,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": null, @@ -1541,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1562,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1583,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1604,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1625,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1646,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1670,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1775,17 @@ }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_hash": "296b39cf21c33be7ed9825da7ea7529d487ea8b2e26f1dc8fb23883724f24547", - "block_time": 1730747999, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_time": 1730754849, + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf:0", + "utxos_info": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1793,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1749,7 +1808,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1827,17 @@ }, { "tx_index": 74, - "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "block_index": 207, - "block_hash": "1ffbfcadd8cb2434849f2eb9ed707d0082f56490eeeeba93d84f3b0e786ed607", - "block_time": 1730747995, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", + "block_time": 1730754845, + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380798a41286d38d8c9e630455aadf358126716233e808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3ebc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b66c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15:0", + "utxos_info": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1845,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1801,7 +1860,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1879,17 @@ }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", - "block_time": 1730747991, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_time": 1730754842, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", + "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1897,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1853,7 +1912,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1931,17 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", - "block_time": 1730747986, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", + "block_time": 1730754828, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", + "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1949,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -1905,7 +1964,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1938,20 +1997,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 54, - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx1_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -1970,9 +2029,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 675, @@ -1991,11 +2050,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "open", - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -2019,24 +2078,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "block_index": 209, - "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,9 +2105,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 673, @@ -2060,20 +2119,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "tx0_index": 60, - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx1_index": 54, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2092,23 +2151,23 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "block_time": 1730748003 + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_time": 1730754854 }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 668, @@ -2117,17 +2176,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "quantity": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, "asset_info": { "divisible": true, @@ -2138,22 +2197,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2163,22 +2222,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "block_index": 210, - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -2188,30 +2247,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730748020.6178741, + "block_time": 1730754872.7442517, "btc_amount": 0, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "destination": "", "fee": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, - "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", + "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -2225,7 +2284,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -2234,7 +2293,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2242,14 +2301,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2257,14 +2316,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2272,14 +2331,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2294,7 +2353,7 @@ "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2302,7 +2361,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2315,7 +2374,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2337,16 +2396,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -2358,16 +2417,16 @@ }, { "block_index": 208, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -2379,16 +2438,16 @@ }, { "block_index": 207, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -2400,16 +2459,16 @@ }, { "block_index": 207, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -2421,20 +2480,20 @@ }, { "block_index": 203, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "event": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2448,16 +2507,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -2469,16 +2528,16 @@ }, { "block_index": 206, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -2490,20 +2549,20 @@ }, { "block_index": 206, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2511,16 +2570,16 @@ }, { "block_index": 205, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "divisible": true, "asset_longname": null, @@ -2532,20 +2591,20 @@ }, { "block_index": 205, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2564,9 +2623,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", + "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", "block_index": 137, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2574,7 +2633,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747705, + "block_time": 1730754525, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2585,14 +2644,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "9830c503fafb409b51e566cf014fb1ede5d9d44b205bdfbcf06bfc5aba5bde71", + "tx_hash": "342bdfbe8d94be62300d5ec7e680a5ebee9efdf8d9e000410b332017d5219fc4", "block_index": 112, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730747593, + "block_time": 1730754423, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2604,10 +2663,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2615,7 +2674,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -2628,10 +2687,10 @@ }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2639,11 +2698,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2652,10 +2711,10 @@ }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2663,11 +2722,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2676,10 +2735,10 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2687,7 +2746,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "divisible": true, "asset_longname": null, @@ -2700,10 +2759,10 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2711,11 +2770,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2730,10 +2789,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", + "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", "block_index": 151, - "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", - "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", + "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", + "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2741,11 +2800,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730747767, + "block_time": 1730754585, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2760,10 +2819,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2771,11 +2830,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2784,10 +2843,10 @@ }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2795,11 +2854,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2808,10 +2867,10 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2819,11 +2878,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2832,10 +2891,10 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2843,11 +2902,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2856,10 +2915,10 @@ }, { "tx_index": 71, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2867,11 +2926,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730747983, + "block_time": 1730754824, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2891,9 +2950,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2902,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2912,7 +2971,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2928,9 +2987,9 @@ }, { "tx_index": 64, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2939,7 +2998,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2949,11 +3008,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -2970,9 +3029,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2981,7 +3040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2991,7 +3050,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3011,19 +3070,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3031,7 +3090,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3046,11 +3105,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -3060,19 +3119,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3080,7 +3139,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3095,7 +3154,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3109,19 +3168,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3129,7 +3188,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3144,7 +3203,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -3164,19 +3223,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3184,7 +3243,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3199,11 +3258,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -3213,19 +3272,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3233,7 +3292,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3248,7 +3307,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3262,19 +3321,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3282,7 +3341,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3297,7 +3356,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -3317,19 +3376,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3337,7 +3396,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3352,7 +3411,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3366,19 +3425,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3386,7 +3445,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3401,7 +3460,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -3421,19 +3480,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3441,7 +3500,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3456,7 +3515,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3470,19 +3529,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3490,7 +3549,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3505,7 +3564,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -3524,16 +3583,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -3544,14 +3603,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -3566,20 +3625,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", + "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -3594,20 +3653,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747814, + "block_time": 1730754623, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", + "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -3622,20 +3681,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730747801, + "block_time": 1730754620, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", + "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -3650,20 +3709,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747796, + "block_time": 1730754617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c82ddebc2f4ef337dc204f70389447a739640708fd7f47fb2eae72a15d252b45", + "tx_hash": "25b168f316ca8ec76e3f4bd578a55c4506c7eefce7c42ca8287a98cdfdd23d19", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -3678,7 +3737,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747792, + "block_time": 1730754612, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3692,8 +3751,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -3701,16 +3760,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -3718,16 +3777,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -3735,16 +3794,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 40, @@ -3752,16 +3811,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730747697, - "last_issuance_block_time": 1730747700, + "first_issuance_block_time": 1730754518, + "last_issuance_block_time": 1730754522, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 19, @@ -3769,8 +3828,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730747663, - "last_issuance_block_time": 1730747694, + "first_issuance_block_time": 1730754494, + "last_issuance_block_time": 1730754515, "supply_normalized": "0.00000019" } ], @@ -3783,8 +3842,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -3792,16 +3851,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -3809,16 +3868,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -3826,16 +3885,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 40, @@ -3843,16 +3902,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730747697, - "last_issuance_block_time": 1730747700, + "first_issuance_block_time": 1730754518, + "last_issuance_block_time": 1730754522, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 19, @@ -3860,8 +3919,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730747663, - "last_issuance_block_time": 1730747694, + "first_issuance_block_time": 1730754494, + "last_issuance_block_time": 1730754515, "supply_normalized": "0.00000019" } ], @@ -3874,8 +3933,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -3883,16 +3942,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -3900,16 +3959,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -3917,16 +3976,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 40, @@ -3934,16 +3993,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730747697, - "last_issuance_block_time": 1730747700, + "first_issuance_block_time": 1730754518, + "last_issuance_block_time": 1730754522, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 19, @@ -3951,8 +4010,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730747663, - "last_issuance_block_time": 1730747694, + "first_issuance_block_time": 1730754494, + "last_issuance_block_time": 1730754515, "supply_normalized": "0.00000019" } ], @@ -3963,17 +4022,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b", - "block_time": 1730748003, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_time": 1730754854, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4009,17 +4068,17 @@ }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "block_hash": "22d004d5c753b05da1cf543fbf30506ec8e04e971621355e953ff69682d557e2", - "block_time": 1730747991, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_time": 1730754842, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c:0", + "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4027,14 +4086,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4042,7 +4101,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4061,17 +4120,17 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "block_hash": "4e48da0dd8e371aa2dfacfa45ee32bc3f1a3169108bac01989e62ff137ad65f4", - "block_time": 1730747986, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", + "block_time": 1730754828, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038056d261ee75bba4a6fddbe43bfa34388e116f04b1808d51a0f44174c3a74fcf730570a88e9a35304e6e806f8fed86c68edbd4884f3786230f26561a53e3eb88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605:0", + "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4079,14 +4138,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4094,7 +4153,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4113,17 +4172,17 @@ }, { "tx_index": 71, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "block_hash": "15ad3be6594647eaa6fb60c1ea11a44312fd183115f57aa1ab0d8351773b7bac", - "block_time": 1730747983, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "2fb2f290dd9dd78ef46c06dc3fe672a3fc25e105c542320e7fd319046e553cf4", + "block_time": 1730754824, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", + "data": "02000000178d82231300000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", "supported": true, - "utxos_info": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f:1", + "utxos_info": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4131,12 +4190,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4147,17 +4206,17 @@ }, { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_hash": "4b43b9a21880c7c69b6d184a07d6b13d50a2f311bace24dca8adc27b5265b8e7", - "block_time": 1730747979, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "block_hash": "210def9c77137c26da773ab5f6b789420e9a6191d1970b3bf5ede6e0d457e947", + "block_time": 1730754821, + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36:1", + "utxos_info": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4188,20 +4247,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4223,9 +4282,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4240,7 +4299,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4266,9 +4325,9 @@ }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4283,7 +4342,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4309,9 +4368,9 @@ }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4326,7 +4385,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4352,9 +4411,9 @@ }, { "tx_index": 60, - "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4369,7 +4428,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4395,9 +4454,9 @@ }, { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4412,7 +4471,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4443,10 +4502,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4471,7 +4530,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4480,10 +4539,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4508,7 +4567,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730747697, + "block_time": 1730754518, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4520,10 +4579,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4548,7 +4607,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730747663, + "block_time": 1730754494, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4560,10 +4619,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4588,7 +4647,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730747659, + "block_time": 1730754490, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4600,10 +4659,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4628,7 +4687,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4646,22 +4705,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4670,22 +4729,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", + "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747694, + "block_time": 1730754515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4694,22 +4753,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", + "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747679, + "block_time": 1730754512, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4718,22 +4777,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", + "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747666, + "block_time": 1730754498, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4742,22 +4801,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "50b49611e9c13e2db8dcfedef4d55bf370eb017754c034f804dc03befeac954b", + "tx_hash": "be608604bbfb74748be5552f923987d7fe74c6be140702cc17fa7df503318d13", "tx_index": 15, "block_index": 127, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747648, + "block_time": 1730754478, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4766,22 +4825,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4796,22 +4855,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4828,8 +4887,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset_info": { "divisible": true, "asset_longname": null, @@ -4842,12 +4901,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -4863,7 +4922,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4874,9 +4933,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985772, - "btc_fee": 14228, - "rawtransaction": "02000000000101588a89abdd6d686b998a6dc7c3f8c941a4b876cba76960e30dffed5ce3c8fae600000000160014798a41286d38d8c9e630455aadf358126716233effffffff0200000000000000002b6a298bb510e9b688979f16b5a858d82a242440cc9d0822fc31934510d638e80ec71c47513a437d54b3c6756cba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985760, + "btc_fee": 14240, + "rawtransaction": "0200000000010116fb01b6a49af296f7991a03b6568e8ea53f41618aaf2efe6bdf0c7b221abd88000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a295ba188ea222475b44b30d16faa9c18458a3c59d09f5deebe45a3445d98a9e74651f4b700082e04e93660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4894,24 +4953,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837fc3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "data": "434e5452505254590bc240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980891, - "btc_fee": 18109, - "rawtransaction": "02000000000101a72b29e52c3b0238e3d87f4bd9b453964eb6a5e05d0d2a506c6a2a031bc7853f00000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e803000000000000160014798a41286d38d8c9e630455aadf358126716233e00000000000000004b6a49ca9c9fbe4157dd8e5c65ba98153af7bbec77c1cdce96a14ba270329329ebce70252b14a21261a2f3e4bc8da943c5d0c826e271f4b83284ebe2d8a38ccd13b530be776f45383e9ea0525ba7052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999980877, + "btc_fee": 18123, + "rawtransaction": "0200000000010134134bd46a4c5d145230ef15f8b69342b5817d3f4bc49511937e147ef7cd606c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e8030000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d400000000000000004b6a498e5445293aba007dc9e95365fcae404891cc9b4d3f90c1acb6419c75db5f4bb2f048f0378f38702a37535a0cafcff630449b4d8260444a0547bdfcb7465a2de7160f91bba6da4f40d84da7052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "order_match_id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "status": "valid" } } @@ -4920,7 +4979,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4929,18 +4988,39 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985771, - "btc_fee": 13229, - "rawtransaction": "020000000001010693eb3841c7284d6486e8f298589a8e35b69de57bd53de29858d50baf119faf00000000160014798a41286d38d8c9e630455aadf358126716233effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000" + "btc_change": 4999985761, + "btc_fee": 13239, + "rawtransaction": "02000000000101a6cbe9947c343c08d41a6c4cf34f79f478993f27f10f1eab0b50b011ce1d2654000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac61ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000" } }, "/v2/addresses/
/compose/cancel": { - "error": "['incorrect source address', 'offer not open']" + "result": { + "params": { + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "skip_validation": false + }, + "name": "cancel", + "data": "434e545250525459465006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985760, + "btc_fee": 14240, + "rawtransaction": "020000000001017da4d7f8266088fa20cbf73ebca547de3ab27f9e9ced3b3541329354a3ac4ec2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a29896e02144b4513af65e3c6a3b890c5895fa7b7d9ce40c5acc846d00fe55c74a1967f1dde79b76b152660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "status": "valid" + } + } + } }, "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4958,9 +5038,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986301, - "btc_fee": 13699, - "rawtransaction": "02000000000101e62af58091a274b9e962eb4269b174581d057208c213ce62c5f6d94ffe11469300000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000226a2084f1b46a0a401279cd1f07e2844c86a16b33bf0abbdfcdd392f198748b9091227dbc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986290, + "btc_fee": 13710, + "rawtransaction": "02000000000101330b68a63f6a0bf4324eeabdedcaba94724f9acdd71fc338d342fd1f29675bb2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000226a202bed067be42b7470d48f783e703b0a953c71563cf44cfefcfe028ecc883ad24a72bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4976,7 +5056,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4999,9 +5079,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920213, - "btc_fee": 14287, - "rawtransaction": "020000000001016bc493048e8304d83f9a97127473d44c0ae788545397d55d27b36d0e80a7fdce0100000016001448083d67f6b413b14d42a89a6e66d09385fe2a94ffffffff0200000000000000002c6a2a58f5bf22d68657e615981216404bca840022736410c2d967559ecf0a235149cfe959d3593a92668e19cbd5c909270100000016001448083d67f6b413b14d42a89a6e66d09385fe2a9402000000000000", + "btc_change": 4949920201, + "btc_fee": 14299, + "rawtransaction": "020000000001014c11c5de8288b4de68b09b3ee42090881eadaaaa42c0097bdfb68a0e023577c2010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad3ffffffff0200000000000000002c6a2afb2e99f1f271d3e1669ec0ebacd4552f9ccdd27777444fcaa2be3c31bd2a04461bbef2bdb08935c0ef9cc9c90927010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5023,7 +5103,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5031,7 +5111,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5048,9 +5128,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "0200000000010123c07633cdc00513902a5a00b5f835aa9f6c9454ccda949592efe70fc42125bc00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21f5a744d8c07985b3689f2e41a85e7cfc40cd1e7a8364446ebfc03120c781ed8b6e42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986231, + "btc_fee": 13769, + "rawtransaction": "0200000000010131ea1a6d6bd7c60ddbd7fa1d61b6b1c2dbefd99490d8b05a2603a6c10d549e1d000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a2173c51e8531ada48df30360ae316b80e64969d68a6b45ca15c580748cb7e4f31b5337bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5067,10 +5147,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "transfer_destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "lock": false, "reset": false, @@ -5082,9 +5162,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983697, - "btc_fee": 15757, - "rawtransaction": "02000000000101cd29aff4233d61afb4aaa8b223de27eea6f55718dd7f4d4dde73749a9ab9db9300000000160014798a41286d38d8c9e630455aadf358126716233effffffff032202000000000000160014798a41286d38d8c9e630455aadf358126716233e0000000000000000236a213d66f0d40fc5df290ee6fa7b13a5163a683e1015338e6c1aa3d063b808df6c256151b2052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999983684, + "btc_fee": 15770, + "rawtransaction": "02000000000101b19ac26bdea49564e140b2029d4b5f112b43ba3ec1ce467f19f3e5140234149c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0322020000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d40000000000000000236a218fc47ed77839b421c2b4a7d3ebd4d9f0ec4ebd7b8c0c7bc4b505968245448dea5344b2052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5109,16 +5189,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", 1 ], [ "MPMASSET", - "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", 2 ] ], @@ -5127,26 +5207,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280798a41286d38d8c9e630455aadf358126716233e8056d261ee75bba4a6fddbe43bfa34388e116f04b140000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4840000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945318, - "btc_fee": 52682, - "rawtransaction": "02000000000104f607fc6ac73694cbdf0482fc57e55e793df947b5c0cdfecb6d99670ba9fab85f00000000160014798a41286d38d8c9e630455aadf358126716233effffffffea46021e7f378ebcfac51cf9082b31d34be08a2608735226c3f963b6b2a3a67d00000000160014798a41286d38d8c9e630455aadf358126716233effffffff8835858931a80328613ab84b09665c8994a0f2c0289187ca6edd9491159d910200000000160014798a41286d38d8c9e630455aadf358126716233effffffff94fef9c94436e0efdd17dce4c9f426289832f5ee2c71af4d11d77dde1470e2a500000000160014798a41286d38d8c9e630455aadf358126716233effffffff03e80300000000000069512102096f9b0d83e89bf9655c72633c3bb350fae8105f164efb321f007a926fe9b0512103c91047b9b7071ea9b06ea4d25b1ebe8b3fd43978e18d372225145b06f58bba2421038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102166f9b0d83e89bf9658f7261bc423911d2a12887dfa8cb7745a989ca7d8ea6e52103ea2ec6ef6566f0dc0bca022f80fa85710becb7698e89866225145ee595037edc21038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053ae66f216a804000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000000000000", + "btc_change": 19999945276, + "btc_fee": 52724, + "rawtransaction": "020000000001041a1250ec35b55569fd30cbf046022141a0486319174e07e11c7b8a2db83cd9f4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff7d552d27f7ff34c93b8687dbd87357ae0f573be66c031f12e93d721523e9a995000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff523f323acb3c79f41b1428228e9e98006cbb3529b31cc7e98381e5ff0abf1e72000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff8bcd4df934dacb9addb7a1ce084ab23559896fd982f2a4abdb17cf35dad8c1f6000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e803000000000000695121027ba892556213eb2c231b27b136dbff2e43a06f6fbca92ac97c6db2f7ffca946a2103085215750aa78fcc3c3ebb58f6d4163ba7c81ef28be2182ef43ffb55e3a7e48f21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210364a892556213eb2c23c827b3b6554f257d8d8824197907a3bf13a7ad1fe68f0e21031d8694a381f96009e11978e2f7d2e441c253ed339499506ef43ffeb6832f200621028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae3cf216a8040000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5158,7 +5238,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5176,7 +5256,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5188,9 +5268,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985184, - "btc_fee": 14816, - "rawtransaction": "0200000000010124dfe6e039b3921bbc77b01d27d9873e525c8a16976b90a07bdaf5bc31716f5b00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000356a3371c8fe2a15008d4be5e706e90ca609224989c3cc964e23a4902eb765a38933c6eed72793e62fe224a98cbb25bda2593bb8874420b8052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985172, + "btc_fee": 14828, + "rawtransaction": "020000000001012702d03614e713d28c3e4c01a838d9c5b2eeb12496ccb5423584af348f56e4a4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000356a33c698b0b058e7527b8dea6d7c15f648dade91b9e217883042182de5cc03260e79e519ea9d0870d8e3f5bafb61b028429127051214b8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5212,8 +5292,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5230,19 +5310,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88056d261ee75bba4a6fddbe43bfa34388e116f04b1", + "data": "434e54525052545902000000000000000100000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985478, - "btc_fee": 14522, - "rawtransaction": "02000000000101dd7bda3b4b59bf32599c05b52f5a76f7a3eec2469f444953195de95e76c79e3600000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000306a2edf6b001f2be4f015ab53c1442c78b1eca279ddbe2c64fadff42ff8f738a6c117a466508a433bc31a81abeedcb1be46b9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985466, + "btc_fee": 14534, + "rawtransaction": "02000000000101ed13f7d9bf1d87d36f3225bf6cf5e0c7f142aa88abd9763a1c28c8b938ca044c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000306a2ea9295a205b1b2256ea5fdb16d168318a070bc85a9f40c96afcd2060c00417f44b9d8a1eb40df502d3245e92a37353ab9052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "quantity_normalized": "0.00001000" } @@ -5252,24 +5332,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e545250525459048056d261ee75bba4a6fddbe43bfa34388e116f04b107ffff", + "data": "434e5452505254590480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4807ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "02000000000101c0d0595a484999dd4ccb63f5fedb9bd64b6612050031ce1fa0c4528d36107e7400000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000236a21eccfda5fac6fc9abc27a01363e983824a066affd4fe482cd2a31ceef0f70690c8a42bc052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986231, + "btc_fee": 13769, + "rawtransaction": "020000000001017443aa984d8b162bdc9495a9c1ff98f0726a2276c5b195640d05eccf72387b3c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a213a95fec1a258013af6f7f4fa23e67f928ccf78f3f737380092d4306e339ce4777937bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "flags": 7, "memo": "ffff" } @@ -5279,8 +5359,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "quantity": 1000, "skip_validation": false }, @@ -5288,9 +5368,9 @@ "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812595, - "btc_fee": 14405, - "rawtransaction": "02000000000101cfeb54fb835f586e9fee34083c13f100ad5e40abab9d2db77b969bee38bf25960300000016001456d261ee75bba4a6fddbe43bfa34388e116f04b1ffffffff03e8030000000000001600146f8fed86c68edbd4884f3786230f26561a53e3eb00000000000000000c6a0a070e7e3301a812d6c094732508270100000016001456d261ee75bba4a6fddbe43bfa34388e116f04b102000000000000", + "btc_change": 4949812584, + "btc_fee": 14416, + "rawtransaction": "020000000001010aa9873cdb43e3f44f4d2491a655dd127c69be188ef9b864bdbf64da0832cb5703000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48ffffffff03e8030000000000001600142b76c5b1671561586aee7961c784a0f1cd248b6600000000000000000c6a0a794ec3d5222cae73a3bd6825082701000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5303,7 +5383,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5333,9 +5413,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985419, - "btc_fee": 14581, - "rawtransaction": "020000000001010e9c33902a07fb4f102bc3fd401322a78f6828385e29db5e84046bfc381e056100000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000316a2fa44097f62f981fe894b248a1b4bccb99d1e0eaad79102f2d287beb67cdf995490d1ee729d1202cb954f22295a410fe0bb9052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999985407, + "btc_fee": 14593, + "rawtransaction": "0200000000010182ad15aabac2d01ded2f1003268ee8556df3ce841c837eb7a69a9a32d8b1db6c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000316a2fb23104f3d5d644520d0b478314e4b0cf49c8c069996c8fe00d20b99975f27618026d8837f8230fbde65daa23b6cffbffb8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5370,14 +5450,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5387,9 +5467,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987006, - "btc_fee": 12994, - "rawtransaction": "0200000000010153f12858ce00c24c07a95ba3933919f2967a2ac071c722830597187d4b2c6b5c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff020000000000000000166a141971f5e8107b61f619f206bdd372e58edc28e5c53ebf052a01000000160014798a41286d38d8c9e630455aadf358126716233e02000000000000", + "btc_change": 4999986996, + "btc_fee": 13004, + "rawtransaction": "02000000000101ec45ccd12a4c63836683fa0c347f6ad4a8abfac00987a8ae3842a6a760f183ec000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000166a1490a595e5f6132e43e59c565f13ad95fdec459d2634bf052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5404,8 +5484,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb:1", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:3", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5419,12 +5499,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c633334383666393139326532336538346332346636376632303264656662383531386233613432333632633937343230353335343563633762663336396363623a317c5843507c31303030", + "data": "434e54525052545964626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c363937653938353163643238383636343765343865306538653438393732623761666432366633646134653733306233383861393033646535646538303933613a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918271, - "btc_fee": 78729, - "rawtransaction": "020000000001066ad743acd4c3488452e3ee8bb7634147730540d56e888c8814d16c0cd3ef508300000000160014798a41286d38d8c9e630455aadf358126716233effffffff51e54678a806081a6fe5d1697bf5d819fceddc70791f0c1b1b1e8b3da735ac4200000000160014798a41286d38d8c9e630455aadf358126716233effffffffb7f54f082df2dbe41239ef3f628814556b9dde233d80afaeb7237db0fde9985a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff80772f7918c5df9e5cdd47db19883a6cf705b0dbf208982e63f1bc81a7b80f2a00000000160014798a41286d38d8c9e630455aadf358126716233effffffff5d55536296669524e105dce47547815bee5daae8145e2aa337ea8b2892d715b200000000160014798a41286d38d8c9e630455aadf358126716233effffffffbab42c6da624e5db2accd8e2dbab3d1ebc5b33c015cf44b07b00c242946e7b8c00000000160014798a41286d38d8c9e630455aadf358126716233effffffff04e80300000000000069512102bb5cd9b6449af1a66421e6eab35daf5c602fd8281009b42d5a874d16ae6dfce22103b26d824a5ab2772127a04b2b92fc80435208c3bf52adfda5fd88bcc39dc02c3721038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512103bb5cd9b6449af1a66474bdbba41bad48686382635e5df07e04c70b52a46da9bf2102a332831f50bd317670e81e7393e9de11515e95f904abbaecfdd8bf99cd9523d021038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aee80300000000000069512102915cd9b6449af1a6647ce7eaa313af510814b12d5b0bf67962f53b60c008cfe92103c10ab62e68df021744da2d45a18ae726656ca5cc379e8ed99ebb88fbaba6154921038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb053aebf6c22fc06000000160014798a41286d38d8c9e630455aadf358126716233e02000002000002000002000002000002000000000000", + "btc_change": 29999918208, + "btc_fee": 78792, + "rawtransaction": "02000000000106ec26e38d001b524d87f6e28fcbc311178df2dbfcc6516cebbf84004c8312b53f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff1d2795aa3485c988e84fb2e7aa5c7f8ff5edcf36cfb821509f14c3adebe2ec03000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff3529e97b54a82ef5a789daa08b2435014a6b9b36b255bdd8fea9de06a87a9a9a000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff95ed83a21618112cb5b4d145fcd5e78ef5c462501dc275a3962649f1148dec44000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffffe5439ca5eada80e835e68960c42e9fce80044108d885d6defa611726e838df9f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff4358938a7a8b42811031330785715aa7b9f4d501d47845ecdd0625d097e028cf000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff04e8030000000000006951210300e49164f5b810f60465d641f7d79e41f8887a91b8dd2cbbe88e58fa24c46d02210255c29677b057bba4cad10548ee7ab8d25107da8aed8dfd6d8f0321c8fdd160f821028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210200e49164f5b810f60430d746b79b9706fd8a2e85e7d53aedf8d704f868c82a5b210203c4d566be06b0a09a971042aa74b696540099c2e3d5f3218a5e7398a08c6d8921028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee803000000000000695121022ae49164f5b810f604318d11e4999c4c93fd499ce2dd6fed9def61cc50f11d6f210331a6e207d8628296fca474239e1181a56462aafadbb4ca11b93a16adc4e9555021028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae806c22fc060000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5437,8 +5517,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5452,12 +5532,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964663235336432393633636530626466613364393765376639343939393035636337323166303332386633373335393138376466343566343639306533636338323a307c626372743171307839797a327264387276766e653373673464326d7536637a666e33766765376466736533737c5843507c31303030", + "data": "434e54525052545964313538346138643361343130346539376630666265306133643064393463303339353137303332303337303464356263663735343065353334373062326635353a307c626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030198, - "btc_fee": 46802, - "rawtransaction": "0200000000010308f4bc439a034ae357a0b066c462aba7579d028af8c277d66978b0fb41a8f107010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffffd08e44cbd77cf280412d6f3fb45d91e21369d183406a69056a85a3138fd6f3fe000000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff65bc2abfe66805b909bc84c5fe7c8401e45d00e6d2aae94782884b09ffca5aa7010000001600144de620b4af02f945f107cdb328406ee6e7a25bfcffffffff04e80300000000000069512102c02d27c0a64ddc2f3f61210dd246a13fe7630b18c1694fec0eface3f4907879c2102dba31df58d98a65d17e5ddda86a09d86161f89a2a7614d4683db37fbcf6957f7210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512102c02d27c0a64ddc2f3f30210bd14cf568ed365b4396631df40af88f2f4141d2db210394fc5dbb86d3fb5550f0c883d1a288d1114983a9e1601d09dc843cbacc6a549e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953aee80300000000000069512103ea2d27c0a64ddc2f3f61214c8246b6718616680795691db8689bfd5b7030e2282103ecc524c1b4a19f6d2286beedb491fbb6252db1c494567e73baea0fccab0f635e210241ba18020caa23cb0a26f5912ad2d2e6cc63d3801850bad48d182bc4173b860953ae76770b27010000001600144de620b4af02f945f107cdb328406ee6e7a25bfc02000002000002000000000000", + "btc_change": 4950030161, + "btc_fee": 46839, + "rawtransaction": "020000000001037da5c62bf0518bab542904911d47e5ba189ff24c3bc881335f98fd4382900c7f0100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325fffffffffacabf9810b671b81ba9309a3be44da18d0272828ce007e4690c99122a2f45a40000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffffb4368a5fafe65793022c45fcd58316958291c1b030a1da83cde5cdc8b03db7880100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffff04e8030000000000006951210350e8ed5d86b1d3f35116ebda9205bc56837066971cf39594ac77e26b2cd2b1602102c9527c9f10b57e0c47d0979207be90cde10528dc0d3fcad7380fc482048755ea21021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee8030000000000006951210250e8ed5d86b1d3f35142bfda9905ea5e8571619618f9918df723f62f7bc1e7db2102cf503e9010a2214d45d992df07ffc399a64770da033dc8c67c06d78f0ac554a521021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee803000000000000695121027ae8ed5d86b1d3f35117aa9f9c08ea12bf0057df1cf391c19540845b4ab0d4c12102f9334ffb20d1473824e0a4ab328fa7fdd23718ef3a0ffeb30d6da7e433b261c821021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553ae51770b270100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32502000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5473,8 +5553,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -5482,16 +5562,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730747979, - "last_issuance_block_time": 1730747979, + "first_issuance_block_time": 1730754821, + "last_issuance_block_time": 1730754821, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", - "owner": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "owner": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "divisible": true, "locked": false, "supply": 100000000000, @@ -5499,16 +5579,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730747962, - "last_issuance_block_time": 1730747962, + "first_issuance_block_time": 1730754790, + "last_issuance_block_time": 1730754790, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -5516,16 +5596,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730747792, - "last_issuance_block_time": 1730747801, + "first_issuance_block_time": 1730754612, + "last_issuance_block_time": 1730754620, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "owner": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "issuer": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "owner": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "divisible": true, "locked": false, "supply": 100000000000, @@ -5533,16 +5613,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730747789, - "last_issuance_block_time": 1730747789, + "first_issuance_block_time": 1730754608, + "last_issuance_block_time": 1730754608, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 100000000000, @@ -5550,8 +5630,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730747755, - "last_issuance_block_time": 1730747755, + "first_issuance_block_time": 1730754564, + "last_issuance_block_time": 1730754564, "supply_normalized": "1000.00000000" } ], @@ -5563,8 +5643,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "owner": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false, "supply": 10000000000, @@ -5572,15 +5652,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730747628, - "last_issuance_block_time": 1730747640, + "first_issuance_block_time": 1730754459, + "last_issuance_block_time": 1730754470, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5588,14 +5668,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5603,7 +5683,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -5616,7 +5696,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5638,9 +5718,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5655,7 +5735,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5681,9 +5761,9 @@ }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5698,7 +5778,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5724,9 +5804,9 @@ }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5741,7 +5821,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5767,9 +5847,9 @@ }, { "tx_index": 60, - "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5784,7 +5864,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5810,9 +5890,9 @@ }, { "tx_index": 76, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5827,7 +5907,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5858,13 +5938,13 @@ "/v2/assets//matches": { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5878,7 +5958,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5898,13 +5978,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 52, - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5918,7 +5998,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5938,13 +6018,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", "tx0_index": 49, - "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 50, - "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5958,7 +6038,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5978,13 +6058,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5998,7 +6078,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6018,13 +6098,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -6038,7 +6118,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6065,20 +6145,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "event": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6086,20 +6166,20 @@ }, { "block_index": 125, - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", + "event": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6107,20 +6187,20 @@ }, { "block_index": 124, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6128,20 +6208,20 @@ }, { "block_index": 124, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "event": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6153,16 +6233,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6180,12 +6260,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -6197,16 +6277,16 @@ }, { "block_index": 209, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -6218,16 +6298,16 @@ }, { "block_index": 208, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -6239,16 +6319,16 @@ }, { "block_index": 207, - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -6260,16 +6340,16 @@ }, { "block_index": 206, - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -6292,14 +6372,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", + "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6314,20 +6394,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6342,20 +6422,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6370,20 +6450,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -6398,7 +6478,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730747628, + "block_time": 1730754459, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6410,10 +6490,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6421,7 +6501,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -6434,10 +6514,10 @@ }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6445,7 +6525,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -6458,10 +6538,10 @@ }, { "tx_index": 74, - "tx_hash": "7bf6cacd5afebe43e144865bbbe76deea3ac775af849dd79666d8d3de3d28f15", + "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", "block_index": 207, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6469,7 +6549,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "asset_info": { "divisible": true, "asset_longname": null, @@ -6482,10 +6562,10 @@ }, { "tx_index": 73, - "tx_hash": "8508f8206c1c5bc06b5a5701c9eec30d367384554ed2a57f3b94c32e678f864c", + "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", "block_index": 206, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6493,7 +6573,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747991, + "block_time": 1730754842, "asset_info": { "divisible": true, "asset_longname": null, @@ -6506,10 +6586,10 @@ }, { "tx_index": 72, - "tx_hash": "46fb0131972bc56a1dddb9685d2b839980796bfe515659f766d6c9fa5247c605", + "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", "block_index": 205, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6517,7 +6597,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747986, + "block_time": 1730754828, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,9 +6616,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6547,7 +6627,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6557,7 +6637,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6573,9 +6653,9 @@ }, { "tx_index": 29, - "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", + "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", "block_index": 142, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6584,7 +6664,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6594,7 +6674,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747723, + "block_time": 1730754542, "asset_info": { "divisible": true, "asset_longname": null, @@ -6610,9 +6690,9 @@ }, { "tx_index": 30, - "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", + "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", "block_index": 150, - "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", + "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6620,10 +6700,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6631,7 +6711,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747763, + "block_time": 1730754582, "asset_info": { "divisible": true, "asset_longname": null, @@ -6647,18 +6727,18 @@ }, { "tx_index": 33, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6668,7 +6748,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -6689,9 +6769,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6700,7 +6780,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6710,7 +6790,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6738,7 +6818,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6746,7 +6826,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6755,7 +6835,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6763,7 +6843,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6772,7 +6852,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6780,7 +6860,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6789,7 +6869,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -6804,27 +6884,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6839,7 +6919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -6853,27 +6933,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", + "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", "block_index": 147, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6888,7 +6968,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730747751, + "block_time": 1730754561, "asset_info": { "divisible": true, "asset_longname": null, @@ -6902,19 +6982,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6922,7 +7002,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6937,7 +7017,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6951,19 +7031,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6971,7 +7051,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6986,7 +7066,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -7009,10 +7089,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7037,7 +7117,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7055,22 +7135,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "3c0b2aa117c99f62bc0b0defe424cc7242b3ae7c80626934f26fff3b59f7a69d", + "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", "tx_index": 13, "block_index": 125, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7079,22 +7159,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6", + "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", "tx_index": 12, "block_index": 124, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747636, + "block_time": 1730754466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7103,22 +7183,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7133,22 +7213,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "fcc87159844033dbc1e2d3b38a02fe0601e1b225985935119906e9967843375a", + "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", "tx_index": 11, "block_index": 123, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747632, + "block_time": 1730754462, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -7164,9 +7244,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7181,7 +7261,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7207,9 +7287,9 @@ }, { "tx_index": 52, - "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "block_index": 187, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7224,7 +7304,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7250,9 +7330,9 @@ }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7267,7 +7347,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7293,9 +7373,9 @@ }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7310,7 +7390,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7336,9 +7416,9 @@ }, { "tx_index": 60, - "tx_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", + "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", "block_index": 209, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7353,7 +7433,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7384,9 +7464,9 @@ "/v2/orders/": { "result": { "tx_index": 54, - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "block_index": 210, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7401,7 +7481,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7429,13 +7509,13 @@ "/v2/orders//matches": { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7449,7 +7529,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7469,13 +7549,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7489,7 +7569,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7509,13 +7589,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7529,7 +7609,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7556,15 +7636,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "btc_amount": 2000, - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "status": "valid", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "btc_amount_normalized": "0.00002000" } ], @@ -7575,9 +7655,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "block_index": 187, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7595,7 +7675,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730747901, + "block_time": 1730754711, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7621,9 +7701,9 @@ }, { "tx_index": 54, - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "block_index": 210, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7641,7 +7721,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730748017, + "block_time": 1730754868, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7667,9 +7747,9 @@ }, { "tx_index": 49, - "tx_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", + "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", "block_index": 184, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7687,7 +7767,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747828, + "block_time": 1730754638, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7713,9 +7793,9 @@ }, { "tx_index": 51, - "tx_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", + "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", "block_index": 207, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7733,7 +7813,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747995, + "block_time": 1730754845, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7759,9 +7839,9 @@ }, { "tx_index": 58, - "tx_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", + "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", "block_index": 193, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7779,7 +7859,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747933, + "block_time": 1730754743, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7810,13 +7890,13 @@ "/v2/orders///matches": { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7833,7 +7913,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7853,13 +7933,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 52, - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7876,7 +7956,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747901, + "block_time": 1730754711, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7896,13 +7976,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7919,7 +7999,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7939,13 +8019,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", "tx0_index": 49, - "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 50, - "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7962,7 +8042,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730747828, + "block_time": 1730754638, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7982,13 +8062,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8005,7 +8085,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8031,13 +8111,13 @@ "/v2/order_matches": { "result": [ { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8051,7 +8131,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8071,13 +8151,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", "tx0_index": 51, - "tx0_hash": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 52, - "tx1_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8091,7 +8171,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730747901, + "block_time": 1730754711, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8111,13 +8191,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5_bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", + "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", "tx0_index": 49, - "tx0_hash": "8e1c7e939c7c51a182918f1cccb3e1dd35745d80b6beca7965da9ba894d9b1c5", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 50, - "tx1_hash": "bc2ed61b7844ff23c24470cb56d24d7de74e09c528cec7da5657579a56a89e8c", - "tx1_address": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8131,7 +8211,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730747828, + "block_time": 1730754638, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8151,13 +8231,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 60, - "tx0_hash": "b55dc893dcd687cc1da3a2669d3edc633188b6859f2f9e7e2e5ed9763d072bfa", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_index": 54, - "tx1_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8171,7 +8251,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8191,13 +8271,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx0_index": 54, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx1_index": 76, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8211,7 +8291,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8256,66 +8336,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", + "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", "block_index": 121, - "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", + "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730747624, + "block_time": 1730754455, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "3ed22c35c310cbc89a1cd6563227ad0c0b6aaae02dab4cdcdafb85f968f36ed6", + "tx_hash": "17ddd01be8b6259737480ce5d41d2296adfd6fad2dd5fd25ba22a7bd25327197", "block_index": 120, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730747621, + "block_time": 1730754452, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "479f4cac42c754f06e32fbdecc57527e4b76fd7b51dcadd877db18c8a523dea3", + "tx_hash": "b68db9d455df4a1461290497eaa93e1b057416b73ec917d8d7b2b25fbcfc8ba7", "block_index": 119, - "source": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7", + "source": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730747618, + "block_time": 1730754448, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f6e3a7d0fbe60479c3f6e35bcfff2de735c4149ae4d6090e845c75b5f5caf52e", + "tx_hash": "4f57e9927e556cd34c39dbdeba6265fc1d88e60b3bf2e08bc874b837828ff0b7", "block_index": 118, - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730747614, + "block_time": 1730754444, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "02e71ce74746cdb8e530b3f44d2f65a8e533d6a64c7f6447be12e25a3e6dd774", + "tx_hash": "216cb7c25a848ecee97deb433973131fbc9af42fa729e1e3febf0fae9d5ebc62", "block_index": 117, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730747611, + "block_time": 1730754441, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8327,9 +8407,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8338,7 +8418,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8348,7 +8428,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8364,9 +8444,9 @@ }, { "tx_index": 29, - "tx_hash": "83675dbf66e03febfd93b94b12d7ec8c19060fd36d5a616ea4fb017ff0e62b6b", + "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", "block_index": 142, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8375,7 +8455,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8385,7 +8465,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747723, + "block_time": 1730754542, "asset_info": { "divisible": true, "asset_longname": null, @@ -8401,9 +8481,9 @@ }, { "tx_index": 30, - "tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", + "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", "block_index": 150, - "source": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", + "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8411,10 +8491,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5b0101265272bcc147761516d68ec8dc9aa3e61c4279c56652586f2c5fbe189b", - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8422,7 +8502,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747763, + "block_time": 1730754582, "asset_info": { "divisible": true, "asset_longname": null, @@ -8438,9 +8518,9 @@ }, { "tx_index": 64, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8449,7 +8529,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8459,11 +8539,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8475,18 +8555,18 @@ }, { "tx_index": 33, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8496,7 +8576,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -8517,9 +8597,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8528,7 +8608,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8538,7 +8618,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8558,19 +8638,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8578,7 +8658,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8593,7 +8673,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8607,19 +8687,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8627,7 +8707,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8642,7 +8722,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -8661,20 +8741,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8695,20 +8775,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -8731,12 +8811,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "tx_index": 41, - "utxo": "9e188f31b823ed1b059c50f35dbc1c3972e2275bd6c69a65b2139ceb3a49d3c2:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "utxo": "116cd83585c2fbec0a0fa7c5bc3a36798e8c7df68e67b38d29447cf500b9091f:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "divisible": true, "asset_longname": null, @@ -8748,16 +8828,16 @@ }, { "block_index": 154, - "address": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", + "address": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "divisible": true, "asset_longname": null, @@ -8778,27 +8858,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 694, @@ -8807,14 +8887,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -8825,9 +8905,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 693, @@ -8836,9 +8916,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -8848,24 +8928,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -8875,9 +8955,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 691, @@ -8889,15 +8969,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } }, "/v2/events/counts": { @@ -8932,16 +9012,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -8951,9 +9031,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 690, @@ -8963,12 +9043,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -8978,9 +9058,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 687, @@ -8990,39 +9070,39 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", - "utxo_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "block_time": 1730748017, + "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730748003, + "block_time": 1730754854, "asset_info": { "divisible": true, "asset_longname": null, @@ -9032,24 +9112,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -9059,9 +9139,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_time": 1730747999 + "block_time": 1730754849 } ], "next_cursor": 656, @@ -9078,27 +9158,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9113,7 +9193,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -9127,19 +9207,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "50b22b3a9582452d781cb14131bd991b6c0198a9b550d1f59176581fb048d669", + "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9147,7 +9227,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9162,11 +9242,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747958, + "block_time": 1730754786, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9176,27 +9256,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "fef3d68f13a3856a05696a4083d16913e2915db43f6f2d4180f27cd7cb448ed0", + "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", "block_index": 147, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "destination": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "last_status_tx_hash": null, - "origin": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9211,7 +9291,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730747751, + "block_time": 1730754561, "asset_info": { "divisible": true, "asset_longname": null, @@ -9225,19 +9305,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5642ed2a52ae029ccddde187ee186f89993cf5ebd8bbd79be66577e13d92dee6", + "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9245,7 +9325,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9260,7 +9340,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747720, + "block_time": 1730754539, "asset_info": { "divisible": true, "asset_longname": null, @@ -9274,19 +9354,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2b119db7bb68d49817cd9270d21a4a2aec8ff92aed77f2db09a3eb02e85269f5", + "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", "block_index": 140, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d1c585514cf1d4469ced97a334c3baed49e03cdd325b082b6ad9d4a535ffed12", + "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9294,7 +9374,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9309,7 +9389,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730747715, + "block_time": 1730754535, "asset_info": { "divisible": true, "asset_longname": null, @@ -9328,10 +9408,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9339,7 +9419,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -9352,10 +9432,10 @@ }, { "tx_index": 77, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9363,11 +9443,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9376,10 +9456,10 @@ }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9387,7 +9467,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -9400,10 +9480,10 @@ }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9411,11 +9491,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9424,10 +9504,10 @@ }, { "tx_index": 75, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9435,11 +9515,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9454,14 +9534,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -9476,20 +9556,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "3735cc23ff0d1af87f41b77e1d4ec864e2d6d6ffbd47d46b914216aac2e11f30", + "tx_hash": "5e42629e369d96d248345e21d5ac75700f1313a5b3d73300b001c56535a9dbd4", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", - "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "transfer": false, "callable": false, "call_date": 0, @@ -9504,20 +9584,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747962, + "block_time": 1730754790, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "4a2bce1a8ba78bbf7b67634f35dc3d705b7303b738cb4f8bde1013135757305d", + "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -9532,20 +9612,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747814, + "block_time": 1730754623, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "c8ebeb5e4e3c03d36872e1836211a6b9562f0ac0eba73b6ccd297696cb9f5467", + "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -9560,20 +9640,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730747801, + "block_time": 1730754620, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "8491ed89b528122b734fdea08b01f634cb24f26edfee4cbe1628c7649ba31cf2", + "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -9588,7 +9668,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747796, + "block_time": 1730754617, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9599,14 +9679,14 @@ "/v2/issuances/": { "result": { "tx_index": 70, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "transfer": false, "callable": false, "call_date": 0, @@ -9621,7 +9701,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9630,16 +9710,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -9650,16 +9730,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" } ], @@ -9670,9 +9750,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9680,14 +9760,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747708, + "block_time": 1730754528, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "841344bcdbdf11f68e8b545455fa33d2310cc6aa80bb155ead6e2fb3af139a5d", + "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", "block_index": 137, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9695,7 +9775,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747705, + "block_time": 1730754525, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9705,9 +9785,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9715,17 +9795,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730747708, + "block_time": 1730754528, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9750,7 +9830,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9759,10 +9839,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9787,7 +9867,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730747697, + "block_time": 1730754518, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9799,10 +9879,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9827,7 +9907,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730747663, + "block_time": 1730754494, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9839,10 +9919,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9867,7 +9947,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730747659, + "block_time": 1730754490, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9879,10 +9959,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f04043325b3635b164cee57979c0a43ca611de25175d215c096618994e3aa3e5", + "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9907,7 +9987,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730747640, + "block_time": 1730754470, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9925,22 +10005,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9949,22 +10029,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1efdd8434c5aaedd02e404d47ede6ad51ef726533f4294fb19b749028076db38", + "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", "tx_index": 21, "block_index": 134, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747694, + "block_time": 1730754515, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9973,22 +10053,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e1df1ca8d48b3ce5c63e9eb22d60b7b6e3e2d9b80cc1057c8996af6afccdb603", + "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", "tx_index": 20, "block_index": 133, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747679, + "block_time": 1730754512, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -9997,22 +10077,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c1d9edb5be0ddf877037442b996afdfe80ecb12d86e83e701a62f36c1e8ece7", + "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", "tx_index": 19, "block_index": 132, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "66afaf853ad1584ea79e3d2db7122646dd6d967347acabd310536c670643bccf", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747666, + "block_time": 1730754498, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -10021,22 +10101,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "75057efd3c5e87afdb08c657cc7401e31b3255c06e8d2115a88d08044dfa9efb", + "tx_hash": "3d947603d199500cf82471d766636ee73f5b9b1ab7994885f70d295231d24752", "tx_index": 17, "block_index": 129, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "fairminter_tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747655, + "block_time": 1730754487, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -10050,22 +10130,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -10077,22 +10157,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c", - "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" + "amount": 49.499345, + "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c", + "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" }, { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b", - "address": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv" + "amount": 5.46e-05, + "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9", + "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" }, { "vout": 2, @@ -10100,8 +10180,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c", - "address": "bcrt1qpg6fp8aaz9qhjgm3e58flqsnfek2999cah04e7" + "txid": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e", + "address": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg" } ], "next_cursor": null, @@ -10110,31 +10190,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920" + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" }, { - "tx_hash": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24" + "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934" }, { - "tx_hash": "454961c6e2af2327cdafab58f181b6ba863526a6c63ed1a53d4b6a8c61b1d165" + "tx_hash": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39" }, { - "tx_hash": "a97cf6403165bed5bd86f15312ffd7244209408dcb7a394b2d51bfd049adcd68" + "tx_hash": "f93447495abf4a163194a6319c9447c0ab7da997f808a615c131ef35434cc33c" }, { - "tx_hash": "e8488df17426c9432406f268211e22aae77ae9e569b9dbeaaff6ef18d83a6e7e" + "tx_hash": "3a4dd199180fd38b85c2b4afb6dfdc79b904e76df3c041b0d0cccd17204f8ba5" }, { - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae" }, { - "tx_hash": "1d08fdbe785954b8f8c4e6e17a4c56e0969133ffa88da7850dbf9c9a259d89c0" + "tx_hash": "c9e1bdb5ce778d2a17862427338d102ba9219c3d5ad6115d123ddf2345a7a1cd" }, { - "tx_hash": "c1c3c2d3f6ec548fe77ef1afd1e3f14697ebf92f6be993f8e354f695deb431f6" + "tx_hash": "08497a8ddebcc6b0d334b98818bad3d9050e3e71bd821dcfc59270bb9d9a19d8" }, { - "tx_hash": "ba6142b84dcba1d1a2a339b9c092b6869e4fc84002f8fede5ec6746c9c59b9f8" + "tx_hash": "6e61189defb65cb99f6f025af46b26bf4335e3fe491157807982d3053725b2f6" } ], "next_cursor": null, @@ -10142,8 +10222,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "4e2c04a10a739b6afcd82d018f013f82fc0d11bc29cd26e71f96272a72c5738a" + "block_index": 4, + "tx_hash": "aaf75b4666e66b95cff047812c285a3f78610420f509717a801d62c5d9472383" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -10154,7 +10234,7 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "cefda7800e6db3275dd597535488e70a4cd4737412979a3fd804838e0493c46b" + "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c" }, { "vout": 0, @@ -10162,20 +10242,20 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "98c38469f2c1e7a7087a5991bc279a69ef580c94055b32bf32d98099b708886c" + "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "038fc52eb354599f9d9c9648be988c75c851d26b8793765d6348b941bdc54a4bb0" + "result": "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" }, "/v2/bitcoin/transactions/": { - "result": "020000000001010c0b4d2172a4b599243b5badf28f63da42d6531398de05c9b4e1bdc72ac9c4e60100000000ffffffff03e8030000000000001600144de620b4af02f945f107cdb328406ee6e7a25bfc00000000000000000c6a0a18534b84816655e6bb5aeb14092701000000160014023752bd11ba08d76fe9155ceaaa585ae2234fdb0247304402205e3ee8c2683f87fd4939167f8b13d1f55e9f5d7796a068729aeb6da84ac18e69022014039d3c5ec32a1865fb2c2082b7981c787295ca587c2900c29138db5414f06d012103a0dae290728c6d64a4afe2a4a527a04afad743dfa707bb14cfa58f2a3d8edc6c00000000" + "result": "020000000001018e1736a71efba3a3d66ef0679c74ba83f331d0297403d411575f1197afc15ebe0100000000ffffffff03e80300000000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32500000000000000000c6a0aba2bf82a6f3f007f486eeb140927010000001600145ef1cb2164d56b362bc50f78174c44075e34c9c4024730440220542281337e069d592be93cddae391fb6e66c63f117cbad0390ee80d88de0502d0220699aad912c39f5804108239b775a6e6c3dfe8a6624109012ae7f83abe8c83127012102ea4592b4061746b40fc9fef3f888299461743e8b632c755abe227355fa747f4c00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58797 + "result": 58844 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -10195,27 +10275,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78 }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "quantity": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, "asset_info": { "divisible": true, @@ -10226,22 +10306,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10251,22 +10331,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "block_index": 210, - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10276,30 +10356,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730748020.6178741, + "block_time": 1730754872.7442517, "btc_amount": 0, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "destination": "", "fee": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, - "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", + "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -10313,7 +10393,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -10322,19 +10402,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10344,7 +10424,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -10353,27 +10433,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78 }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "quantity": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, "asset_info": { "divisible": true, @@ -10384,22 +10464,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "CREDIT", "params": { - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10409,22 +10489,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "asset": "XCP", "block_index": 210, - "event": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10434,30 +10514,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 }, { - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730748020.6178741, + "block_time": 1730754872.7442517, "btc_amount": 0, - "data": "0200000000000000010000000000002710808d51a0f44174c3a74fcf730570a88e9a35304e6e", + "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", "destination": "", "fee": 10000, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", - "tx_hash": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", "tx_index": 78, - "utxos_info": "9210bf5bfa2a0395db990f5a15b5edba5982c7bde01e2c26872f960415e1c346:1", + "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "memo": null, "asset_info": { "divisible": true, @@ -10471,7 +10551,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730748020.6178741 + "timestamp": 1730754872.7442517 } ], "next_cursor": null, @@ -10493,15 +10573,15 @@ "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", "block_index": 210, - "block_time": 1730748017, + "block_time": 1730754868, "difficulty": 545259519, - "previous_block_hash": "70174afe3fb2c60790b76c6f4042c9647e8c8bfed822b9c710d51134055bc95b" + "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25" }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 665, @@ -10513,17 +10593,17 @@ "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "402611e0776cf4950bde1e21ad8db4340f94a5d2ca85f0fa500fddf1215074bc", + "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", "block_index": 210, - "block_time": 1730748017, + "block_time": 1730754868, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "fee": 0, - "source": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "utxos_info": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1 f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10533,9 +10613,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 666, @@ -10549,16 +10629,16 @@ "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "out_index": 0, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 567, @@ -10571,15 +10651,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "6a9405352a19144ebd5890b7ad78c9e013e8b4957f9d95a67c5540d7cf75845a", - "messages_hash": "8ea33b321988302f6b8f5fb55c419ea269380c43937c86691f500e38694daac3", + "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", + "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", "transaction_count": 1, - "txlist_hash": "2b55d9bebf3c51d144798203cfe812ac25d43233740c2ca4eb860748a93e7d3f", - "block_time": 1730748017 + "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", + "block_time": 1730754868 }, "tx_hash": null, "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 680, @@ -10592,12 +10672,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 679, @@ -10613,12 +10693,12 @@ "address": null, "asset": "XCP", "block_index": 210, - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 1500000000, "tx_index": 77, - "utxo": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", - "utxo_address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", - "block_time": 1730748017, + "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10628,9 +10708,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 686, @@ -10642,16 +10722,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -10661,9 +10741,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 690, @@ -10677,26 +10757,26 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "memo": null, "quantity": 1000, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "tx_index": 71, - "block_time": 1730747983, + "block_time": 1730754824, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "45251ce2a4f0ff8fe532f632206f9487b24a50c9e457f2f31622ccaf42cf572f", + "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", "block_index": 204, - "block_time": 1730747983 + "block_time": 1730754824 } ], "next_cursor": 503, @@ -10710,15 +10790,15 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "status": "valid", - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "tx_index": 75, - "block_time": 1730747999, + "block_time": 1730754849, "asset_info": { "divisible": true, "asset_longname": null, @@ -10728,9 +10808,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9625bf38ee9b967bb72d9dabab405ead00f1133c0834ee9f6e585f83fb54ebcf", + "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", "block_index": 208, - "block_time": 1730747999 + "block_time": 1730754849 } ], "next_cursor": 661, @@ -10753,20 +10833,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "status": "valid", - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "tx_index": 61, - "block_time": 1730747941, + "block_time": 1730754761, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0d91a3425c0b8b6fcba873ae419dfcb6a75c638f7f72050941ca40cd9ef8b920", + "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", "block_index": 195, - "block_time": 1730747941 + "block_time": 1730754761 } ], "next_cursor": null, @@ -10783,15 +10863,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "tx_index": 41, - "block_time": 1730747777, + "block_time": 1730754596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -10805,9 +10885,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "7b19839b15cfbf94e1454b6bdf5befa568b01b5ab02e9221a0f5f2b2beb1dec0", + "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", "block_index": 154, - "block_time": 1730747777 + "block_time": 1730754596 } ], "next_cursor": null, @@ -10828,11 +10908,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730747979 + "block_time": 1730754821 }, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_time": 1730747979 + "block_time": 1730754821 } ], "next_cursor": 576, @@ -10855,22 +10935,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", "transfer": false, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "tx_index": 70, - "block_time": 1730747979, + "block_time": 1730754821, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "088143b7d58d6ae7811a797c53d019c17dfb3909d2ccc8e81ffebcace1073f36", + "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", "block_index": 203, - "block_time": 1730747979 + "block_time": 1730754821 } ], "next_cursor": 577, @@ -10885,12 +10965,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qd787mpkx3mdafzz0x7rzxrex2cd98cltky9xs4", + "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", "status": "valid", "tag": "64657374726f79", - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "tx_index": 62, - "block_time": 1730747945, + "block_time": 1730754765, "asset_info": { "divisible": true, "asset_longname": null, @@ -10900,9 +10980,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "599231470f89047e8de468b742b64579ee51b2b43946b5d2ec4437e3678c5537", + "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", "block_index": 196, - "block_time": 1730747945 + "block_time": 1730754765 } ], "next_cursor": 157, @@ -10927,11 +11007,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "open", - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10955,9 +11035,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 534, @@ -10975,20 +11055,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f_c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", + "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "tx0_index": 54, - "tx1_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "tx1_index": 76, - "block_time": 1730748003, + "block_time": 1730754854, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11007,9 +11087,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 673, @@ -11022,11 +11102,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f" + "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 677, @@ -11039,11 +11119,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881" + "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb" }, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "block_time": 1730747901 + "block_time": 1730754711 } ], "next_cursor": null, @@ -11055,13 +11135,13 @@ "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", + "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", "status": "expired" }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 481, @@ -11075,18 +11155,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_775194648e4236c8bd5fea75c2d0eac429623ad6429709ef42431c5d2d105881", - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "status": "valid", - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "tx_index": 53, - "block_time": 1730747901, + "block_time": 1730754711, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "cd41b9229d8680d6be9b1ec3dfb2914f91f527fe6ddc3d079602f84551935e5a", + "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", "block_index": 187, - "block_time": 1730747901 + "block_time": 1730754711 } ], "next_cursor": null, @@ -11099,16 +11179,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "ec022f05047b8ba3cbd9881e96aa1dd799c6fc67b4d9cdb91167315d1c9a3964", - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": "valid", - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "tx_index": 59, - "block_time": 1730747933 + "block_time": 1730754743 }, - "tx_hash": "5913c1bc2bb1814393851abe46b84abd81d918b03390190d67f31570fd24bef9", + "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", "block_index": 193, - "block_time": 1730747933 + "block_time": 1730754743 } ], "next_cursor": null, @@ -11121,13 +11201,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "source": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "block_time": 1730748017 + "order_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_time": 1730754868 }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 642, @@ -11140,14 +11220,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "19f821f99622c2d01c0cf7369ad1623785ddf8de399b7d981c3ddc555488bb7e_c9719589d17d7a2f7bc83dcf22158cb4634e79ef2fdf0fda7b2084e63750837f", - "tx0_address": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "tx1_address": "bcrt1q34g6pazpwnp6wn70wvzhp2ywng6nqnnwp6hdga", - "block_time": 1730748003 + "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_time": 1730754854 }, - "tx_hash": "c3486f9192e23e84c24f67f202defb8518b3a42362c9742053545cc7bf369ccb", + "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", "block_index": 209, - "block_time": 1730748003 + "block_time": 1730754854 } ], "next_cursor": 457, @@ -11166,17 +11246,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "satoshirate": 1, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "status": 0, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "tx_index": 64, - "block_time": 1730747953, + "block_time": 1730754783, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11185,9 +11265,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5d7de100c2036a7dcd2f7d316c502ad0c620161cf9bb9cb498468917ad78eba4", + "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", "block_index": 198, - "block_time": 1730747953 + "block_time": 1730754783 } ], "next_cursor": 272, @@ -11202,9 +11282,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": 0, - "tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", + "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", "asset_info": { "divisible": true, "asset_longname": null, @@ -11214,9 +11294,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 569, @@ -11230,13 +11310,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mzESLXnx2dq9CmBmxUP4ziDPfgg7P6gAZZ", + "destination": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", "dispense_quantity": 10, - "dispenser_tx_hash": "dae2f2430a66d01d99aec3d42ba4bf4c7eb78e543ffbda38eeeb679daf1b5ec1", - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", - "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", + "dispenser_tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", "tx_index": 31, - "block_time": 1730747730, + "block_time": 1730754550, "asset_info": { "divisible": true, "asset_longname": null, @@ -11246,9 +11326,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "0b8505b37d1cb56af91b47de631261204ba61a8f7f3b54f51206324d5bcfa630", + "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", "block_index": 144, - "block_time": 1730747730 + "block_time": 1730754550 } ], "next_cursor": null, @@ -11263,14 +11343,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqgm490g3hgydwmlfz4ww42jctt3zxn7mt4p9st", + "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "07f1a841fbb07869d677c2f88a029d57a7ab62c466b0a057e34a039a43bcf408", - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -11281,9 +11361,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 570, @@ -11298,19 +11378,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qfhnzpd90qtu5tug8ekejssrwumn6yklugd0uvz", + "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "tx_index": 25, "value": 66600.0, - "block_time": 1730747708, + "block_time": 1730754528, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "c4967de546f0e4a741b300dc3f1a6b6f3c845010882ddff4c4b05bed06eb93dd", + "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", "block_index": 138, - "block_time": 1730747708 + "block_time": 1730754528 } ], "next_cursor": 213, @@ -11341,12 +11421,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "start_block": 0, "status": "open", - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "tx_index": 42, - "block_time": 1730747781, + "block_time": 1730754600, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11354,9 +11434,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "bf9e9799427e192f2b1844cdbd5d3d76b9724b30508c29a03ee596951708e84d", + "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", "block_index": 155, - "block_time": 1730747781 + "block_time": 1730754600 } ], "next_cursor": 196, @@ -11369,11 +11449,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "df2f00e592aa611928f1dce929a0c581ea9be85408edeb0d1a8d64dffd18fec0" + "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc" }, "tx_hash": null, "block_index": 130, - "block_time": 1730747659 + "block_time": 1730754490 } ], "next_cursor": 110, @@ -11389,17 +11469,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f8ba3226545eb7fad0138472e17ec35153895fa774d20ccae15abf61a27e8382", + "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", "paid_quantity": 34, - "source": "bcrt1q2mfxrmn4hwj2dlwmusal5dpc3cgk7p93xycefd", + "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", "status": "valid", - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "tx_index": 23, - "block_time": 1730747700, + "block_time": 1730754522, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, @@ -11407,9 +11487,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "1ba24ba826d84404a06b4289eb97e82c355e768f37ffd6163ff78fd44e171600", + "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", "block_index": 136, - "block_time": 1730747700 + "block_time": 1730754522 } ], "next_cursor": 190, @@ -11423,28 +11503,28 @@ "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11:0", + "destination": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "status": "valid", - "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", "tx_index": 67, - "block_time": 1730747966, + "block_time": 1730754803, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qfqyr6elkksfmzn2z4zdxueksjwzlu255fcwufv", + "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "94e032d8527e32571d62d3b84ff1f40fbf7a6503f58278d17b92a84113abae11", + "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", "block_index": 201, - "block_time": 1730747966 + "block_time": 1730754803 } ], "next_cursor": 319, @@ -11458,28 +11538,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qf9ws6y99r0nahwqjpqt24n0wjspxy8k53mmql6", + "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ceb523e952b77f20c0bed2f9317a2c90b3dff8244bfd0b2b6733558a49367a24:0", + "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", "status": "valid", - "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", + "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", "tx_index": 38, - "block_time": 1730747767, + "block_time": 1730754585, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0x9yz2rd8rvvne3sg4d2mu6czfn3vge7dfse3s", + "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "863774bfec772595d28c0c92dc92b1c9ee20ad7d1044da94ff947c8c0c5482be", + "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", "block_index": 151, - "block_time": 1730747767 + "block_time": 1730754585 } ], "next_cursor": null, @@ -11493,14 +11573,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82:0", + "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", "msg_index": 1, "quantity": 1500000000, - "source": "e6c4c92ac7bde1b4c905de981353d642da638ff2ad5b3b2499b5a472214d0b0c:1", + "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", "status": "valid", - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "tx_index": 77, - "block_time": 1730748017, + "block_time": 1730754868, "asset_info": { "divisible": true, "asset_longname": null, @@ -11510,9 +11590,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "f253d2963ce0bdfa3d97e7f9499905cc721f0328f37359187df45f4690e3cc82", + "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", "block_index": 210, - "block_time": 1730748017 + "block_time": 1730754868 } ], "next_cursor": 688, @@ -11527,17 +11607,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qug0tkex5frnw5lf59w2vr84zwauxg70xwrtjq5", + "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", "status": "valid", - "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", + "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", "tx_index": 9, - "block_time": 1730747624, + "block_time": 1730754455, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "dca134f0129355ede2c67820aab59dffb60d8aaafc6666f35d02630bfb9359be", + "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", "block_index": 121, - "block_time": 1730747624 + "block_time": 1730754455 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 1c5e16b34c..9d99d1d894 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -477,6 +477,11 @@ def generate_regtest_fixtures(db): regtest_fixtures["$LAST_ORDER_BLOCK"] = row["block_index"] regtest_fixtures["$LAST_ORDER_TX_HASH"] = row["tx_hash"] + # last open order tx_hash + cursor.execute("SELECT tx_hash FROM orders WHERE status='open' ORDER BY rowid DESC LIMIT 1") + row = cursor.fetchone() + regtest_fixtures["$LAST_OPEN_ORDER_TX_HASH"] = row["tx_hash"] + # block and tx with fairminter cursor.execute("SELECT block_index, tx_hash FROM fairminters ORDER BY rowid DESC LIMIT 1") row = cursor.fetchone() diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py index d1b6d12f1d..35da661eb3 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py @@ -94,7 +94,7 @@ "source": "$ADDRESS_1", "status": 0, "tx_hash": "$TX_HASH", - "tx_index": 62, + "tx_index": "$TX_INDEX", }, { "asset": "XCP", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py index 11240201b0..cec1b6e4e1 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py @@ -342,7 +342,7 @@ def to_hex(x): "result": [ { "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_10", + "event_index": "$EVENT_INDEX_13", "params": { "asset": "XCP", "block_index": "$BLOCK_INDEX", @@ -359,7 +359,7 @@ def to_hex(x): }, { "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_9", + "event_index": "$EVENT_INDEX_12", "params": { "asset": "MPMASSET", "block_index": "$BLOCK_INDEX", @@ -376,7 +376,7 @@ def to_hex(x): }, { "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_8", + "event_index": "$EVENT_INDEX_11", "params": { "asset": "MPMASSET", "block_index": "$BLOCK_INDEX", @@ -393,7 +393,7 @@ def to_hex(x): }, { "event": "DEBIT", - "event_index": "$EVENT_INDEX_7", + "event_index": "$EVENT_INDEX_10", "params": { "action": "mpma send", "address": "$ADDRESS_2", @@ -409,7 +409,7 @@ def to_hex(x): }, { "event": "DEBIT", - "event_index": "$EVENT_INDEX_6", + "event_index": "$EVENT_INDEX_9", "params": { "action": "mpma send", "address": "$ADDRESS_2", @@ -425,7 +425,7 @@ def to_hex(x): }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_5", + "event_index": "$EVENT_INDEX_8", "params": { "address": "$ADDRESS_1", "asset": "XCP", @@ -441,7 +441,7 @@ def to_hex(x): }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", + "event_index": "$EVENT_INDEX_7", "params": { "address": "$ADDRESS_4", "asset": "MPMASSET", @@ -457,7 +457,7 @@ def to_hex(x): }, { "event": "CREDIT", - "event_index": "$EVENT_INDEX_3", + "event_index": "$EVENT_INDEX_6", "params": { "address": "$ADDRESS_3", "asset": "MPMASSET", @@ -471,6 +471,22 @@ def to_hex(x): }, "tx_hash": "$TX_HASH", }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "calling_function": "cancel order", + "event": "$ORDER_3_HASH", + "quantity": 5000, + "tx_index": 0, + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, ], }, ], diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 07f39498fd..a6528f24d3 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -88,10 +88,36 @@ def prepare_item(item, node, context): return item -def control_result(item, node, context, block_hash, block_time, tx_hash, data, retry=0): +def get_tx_index(node, tx_hash): + if tx_hash is None: + return node.tx_index + if tx_hash == "null": + return node.tx_index + result = node.api_call(f"transactions/{tx_hash}?limit=1") + if "result" in result: + return result["result"]["tx_index"] + return 0 + + +def get_last_tx_index(node): + result = node.api_call("transactions?limit=1") + if "result" in result: + return result["result"][0]["tx_index"] + return 0 + + +def control_result( + item, node, context, block_hash, block_time, tx_hash, data, no_confirmation, 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]) + + if no_confirmation: + tx_index = get_last_tx_index(node) + 1 + else: + tx_index = get_tx_index(node, tx_hash) + for control in item["controls"]: control_url = ( control["url"].replace("$TX_HASH", tx_hash).replace("$BLOCK_INDEX", str(block_index)) @@ -109,7 +135,15 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, data, r ): time.sleep(2) return control_result( - item, node, context, block_hash, block_time, tx_hash, data, retry=retry + 1 + item, + node, + context, + block_hash, + block_time, + tx_hash, + data, + no_confirmation, + retry=retry + 1, ) expected_result = control["result"] @@ -118,7 +152,7 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, data, r .replace("$TX_HASH", tx_hash) .replace("$BLOCK_HASH", block_hash) .replace('"$BLOCK_INDEX"', str(block_index)) - .replace('"$TX_INDEX"', str(node.tx_index)) + .replace('"$TX_INDEX"', str(tx_index)) .replace('"$BLOCK_TIME"', str(block_time)) ) if data: @@ -157,14 +191,14 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, data, r try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as e: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - # raise e + raise e from e def run_item(node, item, context): @@ -174,6 +208,8 @@ def run_item(node, item, context): if "disable_protocol_changes" in item: node.disable_protocol_changes(item["disable_protocol_changes"]) + no_confirmation = item.get("no_confirmation", False) + if item["transaction"] == "mine_blocks": block_hash, block_time = node.mine_blocks(item["params"]["blocks"]) tx_hash = "null" @@ -181,7 +217,6 @@ def run_item(node, item, context): else: item = prepare_item(item, node, context) try: - no_confirmation = item.get("no_confirmation", False) if item["transaction"] == "atomic_swap": data = None if "counterparty_tx" in item["params"]: @@ -245,17 +280,23 @@ def run_item(node, item, context): node.enable_all_protocol_changes() for name, value in item.get("set_variables", {}).items(): + if tx_hash is not None: + tx_index = get_tx_index(node, tx_hash) + else: + tx_index = get_last_tx_index(node) context[name] = ( value.replace("$TX_HASH", tx_hash) .replace("$BLOCK_HASH", block_hash) - .replace("$TX_INDEX", str(node.tx_index)) + .replace("$TX_INDEX", str(tx_index)) .replace("$BLOCK_INDEX + 20", str(node.block_count + 20)) .replace("$BLOCK_INDEX + 21", str(node.block_count + 21)) # TODO: make it more generic .replace("$BLOCK_INDEX", str(node.block_count)) ) if "controls" in item: - control_result(item, node, context, block_hash, block_time, tx_hash, tx_data) + control_result( + item, node, context, block_hash, block_time, tx_hash, tx_data, no_confirmation + ) return context From a7fd02e2ba6f19b67dabdcb0b1eeae6c62e9c403 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 10:30:39 +0000 Subject: [PATCH 055/138] fix tests --- apiary.apib | 3914 ++++++++--------- .../test/fixtures/api_v2_fixtures.json | 2 +- .../test/regtest/apidoc/apicache.json | 3574 +++++++-------- .../regtest/scenarios/scenario_18_utxo.py | 6 +- .../scenarios/scenario_2_fairminter.py | 4 +- .../test/regtest/testscenarios.py | 8 +- 6 files changed, 3756 insertions(+), 3752 deletions(-) diff --git a/apiary.apib b/apiary.apib index fd5458063f..fec8848205 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-04 21:14:45.388559. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-05 10:28:08.019288. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", "block_index": 210, - "block_time": 1730754868, + "block_time": 1730802466, "difficulty": 545259519, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25" + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883" }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 665, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", "block_index": 210, - "block_time": 1730754868, + "block_time": 1730802466, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "fee": 0, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 666, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "out_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 567, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 680, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 679, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 210, - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "block_time": 1730754868, + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 686, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 690, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "quantity": 1000, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "tx_index": 71, - "block_time": 1730754824, + "block_time": 1730802436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "block_time": 1730754824 + "block_time": 1730802436 } ], "next_cursor": 503, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "status": "valid", - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "tx_index": 75, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_time": 1730754849 + "block_time": 1730802452 } ], "next_cursor": 661, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "status": "valid", - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "tx_index": 61, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "block_time": 1730754761 + "block_time": 1730802381 } ], "next_cursor": null, @@ -533,15 +533,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": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "tx_index": 41, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -555,9 +555,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": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "block_time": 1730754596 + "block_time": 1730802213 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730754821 + "block_time": 1730802423 }, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_time": 1730754821 + "block_time": 1730802423 } ], "next_cursor": 576, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", "transfer": false, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "tx_index": 70, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_time": 1730754821 + "block_time": 1730802423 } ], "next_cursor": 577, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", "tag": "64657374726f79", - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "tx_index": 62, - "block_time": 1730754765, + "block_time": 1730802385, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "block_index": 196, - "block_time": 1730754765 + "block_time": 1730802385 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "open", - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 534, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 54, - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx1_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 673, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 677, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb" + "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3" }, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "block_time": 1730754711 + "block_time": 1730802340 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "status": "expired" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 481, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "status": "valid", - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "tx_index": 53, - "block_time": 1730754711, + "block_time": 1730802340, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "block_time": 1730754711 + "block_time": 1730802340 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "tx_index": 59, - "block_time": 1730754743 + "block_time": 1730802374 }, - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "block_index": 193, - "block_time": 1730754743 + "block_time": 1730802374 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "block_time": 1730754868 + "order_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_time": 1730802466 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 642, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "block_time": 1730754854 + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_time": 1730802457 }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 457, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "satoshirate": 1, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": 0, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "tx_index": 64, - "block_time": 1730754783, + "block_time": 1730802392, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 198, - "block_time": 1730754783 + "block_time": 1730802392 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 569, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", + "destination": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", "dispense_quantity": 10, - "dispenser_tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", + "dispenser_tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", "tx_index": 31, - "block_time": 1730754550, + "block_time": 1730802175, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", + "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", "block_index": 144, - "block_time": 1730754550 + "block_time": 1730802175 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 570, @@ -1146,19 +1146,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": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "tx_index": 25, "value": 66600.0, - "block_time": 1730754528, + "block_time": 1730802152, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "block_time": 1730754528 + "block_time": 1730802152 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "start_block": 0, "status": "open", - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "block_index": 155, - "block_time": 1730754600 + "block_time": 1730802226 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc" + "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c" }, "tx_hash": null, "block_index": 130, - "block_time": 1730754490 + "block_time": 1730802121 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "paid_quantity": 34, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "status": "valid", - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "block_index": 136, - "block_time": 1730754522 + "block_time": 1730802145 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03:0", + "destination": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "status": "valid", - "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", + "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", "tx_index": 67, - "block_time": 1730754803, + "block_time": 1730802404, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", + "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", "block_index": 201, - "block_time": 1730754803 + "block_time": 1730802404 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", + "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", + "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", "status": "valid", - "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", + "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", "tx_index": 38, - "block_time": 1730754585, + "block_time": 1730802200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", + "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", "block_index": 151, - "block_time": 1730754585 + "block_time": 1730802200 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 210, - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "msg_index": 1, "quantity": 1500000000, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", "status": "valid", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 688, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", + "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", "status": "valid", - "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", + "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", "tx_index": 9, - "block_time": 1730754455, + "block_time": 1730802086, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", + "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", "block_index": 121, - "block_time": 1730754455 + "block_time": 1730802086 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", "difficulty": 545259519, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "previous_block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "previous_block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", "difficulty": 545259519, - "ledger_hash": "cbd6077aaccad4b8436492ed89c427265cef46db99e5ab4fc9104ee8acf52628", - "txlist_hash": "bd545fdb56221a49fbf0d11c06d0f251461848fe4debc7084d6f64df7de3139d", - "messages_hash": "e9564dcdb17c6af9fb10d89cfdf0e8278c8b7784e75f5675067db314ac7e1b38", + "ledger_hash": "85d9e3b96d6032363520052aec54b68dcf93b60705db70171e4a5d6dd1dc4f69", + "txlist_hash": "861339cf0608556884dff37db1a9a6e37ef1d49bd7751e7f769d1d919f6b8250", + "messages_hash": "176a1499f05f4d8d3ba7c192cf8ff36a9b10138ce2c880c203401d0211d1a506", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", - "block_time": 1730754849, - "previous_block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", + "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_time": 1730802452, + "previous_block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", "difficulty": 545259519, - "ledger_hash": "31bc6d197c29193b312955881e0d352420393f86e998c22852033a0890b7dd82", - "txlist_hash": "50b58cbaf347b8bce5827d392fd73bf2da06794219aa281fb4584d34cae6a6bf", - "messages_hash": "2cc881c9d82adc09a571885cf005177b8d9f9ce1a33a8018ab7df52049515bd8", + "ledger_hash": "d9c62d5736d8e24356d2d415a925b6dbff251f70e674e6a0160857fe66b51f75", + "txlist_hash": "ad75976e8578dd5d59713ad0e91dfba966d52b705b0e58f118f6273556c388f7", + "messages_hash": "125638d1128e7b3343ba55d5ae5d1584a61d596a5ccb9002f4900980a8fa4b9e", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", - "block_time": 1730754845, - "previous_block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", + "block_time": 1730802448, + "previous_block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", "difficulty": 545259519, - "ledger_hash": "e8d34fcc80b4b7b1f5574520b2fd439bc2436bea05916a93352a95be8baf62d7", - "txlist_hash": "e6f61dc3f16b1c067877b71da3151f22ebced60c9031c7657135816b95704c53", - "messages_hash": "018098dab8463fe563cb98481a2656800ac78c963fb32d4c71adebb38027bbc7", + "ledger_hash": "af06333d01569b1a3f3f1f67405248456568678acf2389c2a04bdbe922ddf331", + "txlist_hash": "8c6368190fd932468d0aecfab7779ea7770cbedd7a7cf68f3d35840dd39be4a1", + "messages_hash": "aea533d82b38c4c501f3523fd48636f1e1774ca840819950917620646ce7bd75", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", - "block_time": 1730754842, - "previous_block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", + "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_time": 1730802444, + "previous_block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", "difficulty": 545259519, - "ledger_hash": "da0371bd06f15390250a7d24f7d0345e0923e252bb049504716df459c5b3496a", - "txlist_hash": "ef0fb17e7c83f75e7ea942e31460353ae5ed4cc96522bee9ae356a0815c844eb", - "messages_hash": "fd4c2b7282303c6fbded5671daaecab012c2dc85d0e8d073ca212d0be3281a2f", + "ledger_hash": "fa9779497482071f57571f71c5f0ba68731fbe6eee1ab397dff0a6bd43f8c708", + "txlist_hash": "5ac4483d2610b66ee4d94a1ca410582fd662814107653c90fd2ff867c74dcfcb", + "messages_hash": "4f1b20896965c1337611043fe95a29d63f8cf1be6855853d731357e9b11d93a0", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", "difficulty": 545259519, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1` (str, required) - The index of the block to return + + block_hash: `77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", "difficulty": 545259519, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 694, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 693, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" } ], "next_cursor": 691, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 690, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 687, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 210, - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "object_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "block_index": 210, "confirmed": true, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "status": "valid", "confirmed": true, - "block_time": 1730754743 + "block_time": 1730802374 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "block_index": 196, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730754765, + "block_time": 1730802385, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, "block_index": 155, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "block_hash": "72e54343592bce55c09d0358c56891a0bf3a5346b7acd71edb149cbf059ab727", - "block_time": 1730754528, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "74fc99ee512321d0746a617245a08376c89f10ed2f2365e592a5906486d27a43", + "block_time": 1730802152, + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885:1", + "utxos_info": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "block_hash": "6455e94056b33f44b15273c0dd7e07a0421b92abf03e6715d15b0e97905c73de", - "block_time": 1730754711, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3aff1bd9f45b5467819b52651e6f100bb9182d11bddcf1e8d62b6bf3320fdfdc", + "block_time": 1730802340, + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "btc_amount": 2000, "fee": 10000, - "data": "0b7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec0247a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "data": "0bdea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "supported": true, - "utxos_info": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f:0", + "utxos_info": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "block_index": 193, - "block_hash": "7dcb2ca4b546f5396e7b9dcae460a9eb7b8ba43bc793266c33f47a4672ecf243", - "block_time": 1730754743, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "010774c1086fe55c42950d052bb1a5cb62307bcc4a75b7478722472ba890912b", + "block_time": 1730802374, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "data": "4679dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "supported": true, - "utxos_info": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f:1", + "utxos_info": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "block_index": 196, - "block_hash": "035f6137f702ab36f6efa8ff4654908256bd0d33f45c5a0fcc78e28a732f2311", - "block_time": 1730754765, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "block_hash": "42433e10e22c821e1fe2e4c27d30100dc7c5389fdc2427ab33dd46baed150fde", + "block_time": 1730802385, + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5:1", + "utxos_info": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 198, - "block_hash": "0f35f67c2f1ae02016e9047fe599c90d696f081ccb40a2e627d7998b084e2989", - "block_time": 1730754783, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "61dd3c41ba2f0d7df46abb55b3af1168c09c685b6de541858976ac1111f08ce6", + "block_time": 1730802392, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9:1", + "utxos_info": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "block_hash": "07a96a8f0426a0b4fc38f29dc72c54f1a1e77d20780194708ed974afcf7d7b6b", - "block_time": 1730754596, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "1e8d872f51f911dbab33012d97d8e1eded4fa1e63cc936447cd790d32ad2738d", + "block_time": 1730802213, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe:1", + "utxos_info": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_hash": "210def9c77137c26da773ab5f6b789420e9a6191d1970b3bf5ede6e0d457e947", - "block_time": 1730754821, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "44fd5fd9c920b878146d1dd1f6f40de3294a56d4e993ddfcbd621ec91da787e9", + "block_time": 1730802423, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21:1", + "utxos_info": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "block_hash": "2fb2f290dd9dd78ef46c06dc3fe672a3fc25e105c542320e7fd319046e553cf4", - "block_time": 1730754824, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "2561ce95bf2aff6a835d470b4f19f9d08e4285947c740365d548cafb59791fcc", + "block_time": 1730802436, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", + "data": "02000000178d82231300000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", "supported": true, - "utxos_info": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7:1", + "utxos_info": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", - "block_time": 1730754849, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_time": 1730802452, + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a:0", + "utxos_info": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "block_hash": "127730cb68751d3cb56ab2b3c3da9fbe5d585826dd6418cc0f46291c17438843", - "block_time": 1730754761, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "block_hash": "6eb209251153ad334c20d2211c71f96f6ce3889f2b9565842151667175b13294", + "block_time": 1730802381, + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802b76c5b1671561586aee7961c784a0f1cd248b66017377656570206d7920617373657473", + "data": "0480fcb0ac3d1529a010b58659987e4c25a4d97f74a8017377656570206d7920617373657473", "supported": true, - "utxos_info": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae:1", + "utxos_info": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106fb783ed345fbf0bad508019a0423a7044cf2a2316ddb63cc574d59d7f100afbe0000000000ffffffffa48a9ecfe168f608f096629ad17c0bd4c87c015bb5119b29e716b41fda150caf0000000000fffffffff33e5b0e9d19827086738088b9d77536b6fdf240c86bbe5d43bae0838328147e0000000000ffffffffeaa70d3e32b332715efe71e15a8ff5ac384619717e2b0c31fe0482200cbcced60000000000ffffffff695d6fc4a30edaa94e8ba3862b8f9f541841f548aececcde6a6ca80fd2845ecf0000000000ffffffff9336c6b54d78a2a769cd02969c372bfb2ef5dbd6c9a714fece83e92a7ae280b60000000000ffffffff04e80300000000000069512103ee3f44397286b4db9741c435942fda6b8738946ec10dd8114642af76753c429521024a9bda0636cf07924a0d67e98b787ec6f2c6db78075efcb547d171e0dcdd7e4e21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee80300000000000069512102ee3f44397286b4db971aaed86d9896b1c80c846d89d15163dc5dea80e39032982103b1d35af89e96771d73f20ad34f16946383961a5f4131ee3566e7b451bbc81fba21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee80300000000000069512102c03f44397286b4db9742c47614f9513568fd496102b7d917b438caed86fd5d7d210231d35af358576694dbf20ad34f169463d1961a5f4131ee356ca7b451bbc81fbd21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae387923fc060000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402473044022035afa11ec9e946b67697703fdc2e06a96decf17370112fffb7ea4a2336e153010220594a26343894c18e51f935a21e4cc5242809df19e0701c53c959896096b33d170121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022036f03055e7559d2c5321fd8260d824bee4069098eb6d4fa66cf9c84ee5dc1bd502201d9d824d9aaa9a5483d5e67d340830498e69a47f2a7bd74c695ac3d97f1ab6350121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022009641257f089d633a95a415e864ca27e057d6000d877517c0d8aaeefd72225970220283ebbdb65b997a524677e16b49c75f47288b4774d56e94c8578654ae70476430121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022013817cea24a285c0ae9069c6b42efb35be1ce260d71c3a6f987ca103d17ed0f10220181f9746d5510ebcd8f47f27bd41b6482da28bb7b3d681539933a2ed7fd21b460121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e702473044022006b4c149ca37bbcb5eed68263a29ecc8941e50288f9ef33e39fc515f7c8457db02203e91721ee78f57a45ba378463237c4b56d4e6ad499b548afa6dafd9f87e8a13b0121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e70247304402201467ac20ee2cb7300f5eb63a63051562ae8fab13614ee633ecd076cfd234b8ff0220274aa1c0215c97e69862efc45eb6438d1b8ad16a84fef2c77b3b5e2eb808b3480121028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e700000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010615788845ef5f0f222bb560ff034685e1027711b34b95a4c50b5061e9860819130000000000ffffffffa18d8f843dd1b3ec77bc673c74a289294b25d76cf343be7a40278872529affdc0000000000ffffffff7b81673891e8e9d17933aac18cb70872e06c0b4ba6dfefe1a67144c513db36ce0000000000ffffffffa2c6d6b5e6486dc16ccab638497c541348154eef6874b8089d1dfb9cff5a70eb0000000000ffffffffab5c0a68b745ac17f45b2535e6cb24ddec87836f7a00e02d5170c52e998d915c0000000000ffffffffef95ec6603d996762b8c26e661e81cdb311c41054d8b2f059188719c0ac425110000000000ffffffff04e80300000000000069512102462541f8c6aeeb293279f917a9e3bbc90ef308039c11286f7c6da1eab17ad71b2102957d891fbdeed7772945f63ec37e2f5d45289653a316f79a1b1c5f6b944ae275210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512103462541f8c6aeeb29326a4c9270bf7130559813591cc7c7aacd506a5b7d66c3da2103781209ad4279309a2301369306122704088f5f152f4c937782c19c650163426f210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512102672541f8c6aeeb29327af91429278f7c703cca26686fd381a67ee2427da2177b2102781209ad427930b036b4a326bad82704088f5f152f46161ae7acf3568163425c210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae387923fc060000001600142bd3245f056e748ad251456348cc06a80ff791030247304402200bd2a48ab241b237ea4969c748ff31a0b179235f3e77f6f8402c5b0bb34e593902204047e885aa73be6ef20b8d952e45ea482fef7074832982e2825a88f14f2f824601210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f02473044022011b046e0250be9aaffebdd20eef01983afb6514955dd3cab10f356010211cc790220767a4b9bc6dcf8c37f493c1214b52f506969268f32f72fe234dd80de9efaed2a01210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f0247304402200d31597256c4fd79e2f059717689f599717f25e991fb78656237d2e385a982cf022012149f8be078501aaecb611c705e33bb2d2b3cce3e9b94c54f106e3e4bd718a201210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f0247304402202d0520ebbeb43f727a794a302ca3378dde99f8e086200074f8481be39948fff902205a9f8acdfc57f1784793f48948e58f02e1a3e0c56127682d10f37ca679b8372a01210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f02473044022029647a2d365bf559c55eba9d076a1ae82e85e8e33f81dc23de4d78407ef0c256022054985cf7b5f53c822871248d13838e82a869cae62099e7a550ed5281bb7b775001210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f02473044022043adf0d5f0fb71b91cb82012e83ec18603aa88075517fc877311db9f071075a402204d529ad606a06c9028af5b5fbab2a3cbcc1ef8ceef6ac752453815a49901c1fa01210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,53 +3290,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "fb783ed345fbf0bad508019a0423a7044cf2a2316ddb63cc574d59d7f100afbe", + "hash": "15788845ef5f0f222bb560ff034685e1027711b34b95a4c50b5061e986081913", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "a48a9ecfe168f608f096629ad17c0bd4c87c015bb5119b29e716b41fda150caf", + "hash": "a18d8f843dd1b3ec77bc673c74a289294b25d76cf343be7a40278872529affdc", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f33e5b0e9d19827086738088b9d77536b6fdf240c86bbe5d43bae0838328147e", + "hash": "7b81673891e8e9d17933aac18cb70872e06c0b4ba6dfefe1a67144c513db36ce", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "eaa70d3e32b332715efe71e15a8ff5ac384619717e2b0c31fe0482200cbcced6", + "hash": "a2c6d6b5e6486dc16ccab638497c541348154eef6874b8089d1dfb9cff5a70eb", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "695d6fc4a30edaa94e8ba3862b8f9f541841f548aececcde6a6ca80fd2845ecf", + "hash": "ab5c0a68b745ac17f45b2535e6cb24ddec87836f7a00e02d5170c52e998d915c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "9336c6b54d78a2a769cd02969c372bfb2ef5dbd6c9a714fece83e92a7ae280b6", + "hash": "ef95ec6603d996762b8c26e661e81cdb311c41054d8b2f059188719c0ac42511", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3346,38 +3346,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512103ee3f44397286b4db9741c435942fda6b8738946ec10dd8114642af76753c429521024a9bda0636cf07924a0d67e98b787ec6f2c6db78075efcb547d171e0dcdd7e4e21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + "script_pub_key": "512102462541f8c6aeeb293279f917a9e3bbc90ef308039c11286f7c6da1eab17ad71b2102957d891fbdeed7772945f63ec37e2f5d45289653a316f79a1b1c5f6b944ae275210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" }, { "value": 1000, - "script_pub_key": "512102ee3f44397286b4db971aaed86d9896b1c80c846d89d15163dc5dea80e39032982103b1d35af89e96771d73f20ad34f16946383961a5f4131ee3566e7b451bbc81fba21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + "script_pub_key": "512103462541f8c6aeeb29326a4c9270bf7130559813591cc7c7aacd506a5b7d66c3da2103781209ad4279309a2301369306122704088f5f152f4c937782c19c650163426f210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" }, { "value": 1000, - "script_pub_key": "512102c03f44397286b4db9742c47614f9513568fd496102b7d917b438caed86fd5d7d210231d35af358576694dbf20ad34f169463d1961a5f4131ee356ca7b451bbc81fbd21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + "script_pub_key": "512102672541f8c6aeeb29327af91429278f7c703cca26686fd381a67ee2427da2177b2102781209ad427930b036b4a326bad82704088f5f152f46161ae7acf3568163425c210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" }, { "value": 29999987000, - "script_pub_key": "00148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4" + "script_pub_key": "00142bd3245f056e748ad251456348cc06a80ff79103" } ], "vtxinwit": [ - "3044022035afa11ec9e946b67697703fdc2e06a96decf17370112fffb7ea4a2336e153010220594a26343894c18e51f935a21e4cc5242809df19e0701c53c959896096b33d1701", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022036f03055e7559d2c5321fd8260d824bee4069098eb6d4fa66cf9c84ee5dc1bd502201d9d824d9aaa9a5483d5e67d340830498e69a47f2a7bd74c695ac3d97f1ab63501", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022009641257f089d633a95a415e864ca27e057d6000d877517c0d8aaeefd72225970220283ebbdb65b997a524677e16b49c75f47288b4774d56e94c8578654ae704764301", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022013817cea24a285c0ae9069c6b42efb35be1ce260d71c3a6f987ca103d17ed0f10220181f9746d5510ebcd8f47f27bd41b6482da28bb7b3d681539933a2ed7fd21b4601", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022006b4c149ca37bbcb5eed68263a29ecc8941e50288f9ef33e39fc515f7c8457db02203e91721ee78f57a45ba378463237c4b56d4e6ad499b548afa6dafd9f87e8a13b01", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "304402201467ac20ee2cb7300f5eb63a63051562ae8fab13614ee633ecd076cfd234b8ff0220274aa1c0215c97e69862efc45eb6438d1b8ad16a84fef2c77b3b5e2eb808b34801", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" + "304402200bd2a48ab241b237ea4969c748ff31a0b179235f3e77f6f8402c5b0bb34e593902204047e885aa73be6ef20b8d952e45ea482fef7074832982e2825a88f14f2f824601", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "3044022011b046e0250be9aaffebdd20eef01983afb6514955dd3cab10f356010211cc790220767a4b9bc6dcf8c37f493c1214b52f506969268f32f72fe234dd80de9efaed2a01", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "304402200d31597256c4fd79e2f059717689f599717f25e991fb78656237d2e385a982cf022012149f8be078501aaecb611c705e33bb2d2b3cce3e9b94c54f106e3e4bd718a201", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "304402202d0520ebbeb43f727a794a302ca3378dde99f8e086200074f8481be39948fff902205a9f8acdfc57f1784793f48948e58f02e1a3e0c56127682d10f37ca679b8372a01", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "3044022029647a2d365bf559c55eba9d076a1ae82e85e8e33f81dc23de4d78407ef0c256022054985cf7b5f53c822871248d13838e82a869cae62099e7a550ed5281bb7b775001", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "3044022043adf0d5f0fb71b91cb82012e83ec18603aa88075517fc877311db9f071075a402204d529ad606a06c9028af5b5fbab2a3cbcc1ef8ceef6ac752453815a49901c1fa01", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" ], "lock_time": 0, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", - "tx_id": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a" + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_id": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86" }, "unpacked_data": { "message_type": "mpma_send", @@ -3385,14 +3385,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, - "memo": "the memo", + "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3400,9 +3400,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, - "memo": "the memo", + "memo": "memo1", "memo_is_hex": false, "asset_info": { "divisible": true, @@ -3425,7 +3425,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864` (str, required) - Transaction hash + + tx_hash: `0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188` (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. @@ -3436,18 +3436,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "1f09b900f57c44298db3678ef67d8c8e79363abcc5a70f0aecfbc28535d86c11", + "hash": "f6d5f051f2c4c38f15ba35742ff9ffe1245b085eabe5de68da96ec0c27ba8eae", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3457,20 +3457,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e9e3b42024a82d3dcfc7d5a438061f1bddd41b80e1b9d3af3fb7edbb7cdc8f1884becbe34ff820265a578813417f5" + "script_pub_key": "6a2e954de8ddf4f43746f28f1db9b0a2c78ab46a1ef51d67b1141e9486bad185bbd85720832d1204c8cbdfe2317edceb" }, { "value": 4999970000, - "script_pub_key": "00142b76c5b1671561586aee7961c784a0f1cd248b66" + "script_pub_key": "0014fcb0ac3d1529a010b58659987e4c25a4d97f74a8" } ], "vtxinwit": [ - "3044022033ddf83ddd3e0f45497ad9ddd8f4bfb155b7ede487978ed4fa28bace3013fd9f02200dc9d7f23dd7569d1867edbc42686ee63adc1943a561b24b3ae98d9f2d4397bf01", - "02809757b436dab299fe8cd1e4013c75bcba7f8b7956f253ba9e4c1be1b813b830" + "3044022036f8e8bfe5290767811244fe804ae623e17081f74b514c24df96ad54edacd10302206a233a4d55c0635b10e3f30fc0cf33ed6b10d178100a6d09f4571cd846f832cd01", + "03472bf6a94b2ad79e65f2ddceab4c1d0ddd6df8784a951bb667fb9f49a9617ec9" ], "lock_time": 0, - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", - "tx_id": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864" + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_id": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3478,7 +3478,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -3539,17 +3539,17 @@ Returns a transaction by its index. { "result": { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3568,7 +3568,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction + + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (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. @@ -3580,17 +3580,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3633,12 +3633,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 694, @@ -3647,14 +3647,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3665,9 +3665,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 693, @@ -3676,9 +3676,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -3688,24 +3688,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3715,9 +3715,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 691, @@ -3725,14 +3725,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "msg_index": 1, "quantity": 1500000000, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", "status": "valid", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3742,9 +3742,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 690, @@ -3757,7 +3757,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction to return + + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -3781,12 +3781,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 694, @@ -3795,14 +3795,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3813,9 +3813,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 693, @@ -3824,9 +3824,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -3836,24 +3836,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3863,9 +3863,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 691, @@ -3873,14 +3873,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "msg_index": 1, "quantity": 1500000000, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", "status": "valid", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3890,9 +3890,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 690, @@ -3905,7 +3905,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction to return + + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (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 @@ -3924,10 +3924,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3935,7 +3935,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -3948,10 +3948,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3959,11 +3959,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3981,7 +3981,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction to return + + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (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 @@ -4001,27 +4001,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4036,7 +4036,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -4080,16 +4080,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -4099,9 +4099,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 690, @@ -4111,12 +4111,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -4126,9 +4126,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 687, @@ -4138,24 +4138,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": null, @@ -4168,7 +4168,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The hash of the transaction to return + + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `696` (str, optional) - The last event index to return + Default: `None` @@ -4190,16 +4190,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -4209,9 +4209,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 690, @@ -4221,12 +4221,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -4236,9 +4236,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 687, @@ -4248,24 +4248,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": null, @@ -4280,7 +4280,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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 @@ -4304,7 +4304,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4314,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4325,7 +4325,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4335,7 +4335,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4346,7 +4346,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4356,7 +4356,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4367,7 +4367,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4377,7 +4377,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4388,7 +4388,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4398,7 +4398,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4409,7 +4409,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4419,7 +4419,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4436,7 +4436,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - Comma separated list of addresses to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4455,17 +4455,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4501,17 +4501,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", - "block_time": 1730754849, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_time": 1730802452, + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a:0", + "utxos_info": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4519,14 +4519,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4534,7 +4534,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4553,17 +4553,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "block_index": 207, - "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", - "block_time": 1730754845, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", + "block_time": 1730802448, + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b66c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c:0", + "utxos_info": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4571,14 +4571,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4586,7 +4586,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4605,17 +4605,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", - "block_time": 1730754842, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_time": 1730802444, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", + "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4623,14 +4623,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4638,7 +4638,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4657,17 +4657,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", - "block_time": 1730754828, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", + "block_time": 1730802440, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", + "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4675,14 +4675,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4690,7 +4690,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4718,7 +4718,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -4747,20 +4747,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 54, - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx1_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4779,9 +4779,9 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 675, @@ -4800,11 +4800,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "open", - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4828,24 +4828,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "block_index": 209, - "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -4855,9 +4855,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 673, @@ -4869,20 +4869,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "tx0_index": 60, - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx1_index": 54, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4901,23 +4901,23 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "block_time": 1730754854 + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_time": 1730802457 }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 668, @@ -4930,7 +4930,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd,bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re,bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6` (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 @@ -4946,17 +4946,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "quantity": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, "asset_info": { "divisible": true, @@ -4967,22 +4967,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -4992,22 +4992,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "block_index": 210, - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -5017,30 +5017,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730754872.7442517, + "block_time": 1730802470.7005117, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "destination": "", "fee": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, - "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", + "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -5054,7 +5054,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -5067,7 +5067,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -5087,7 +5087,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5095,14 +5095,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5110,14 +5110,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5125,14 +5125,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5147,7 +5147,7 @@ Returns the balances of an address "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5155,7 +5155,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5172,7 +5172,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -5185,7 +5185,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5210,7 +5210,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5260,16 +5260,16 @@ Returns the credits of an address "result": [ { "block_index": 209, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -5281,16 +5281,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -5302,16 +5302,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -5323,16 +5323,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -5344,20 +5344,20 @@ Returns the credits of an address }, { "block_index": 203, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "event": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5374,7 +5374,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5413,16 +5413,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -5434,16 +5434,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -5455,20 +5455,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5476,16 +5476,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "divisible": true, "asset_longname": null, @@ -5497,20 +5497,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5527,7 +5527,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address of the feed + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5562,7 +5562,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -5581,9 +5581,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", + "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", "block_index": 137, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5591,7 +5591,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754525, + "block_time": 1730802149, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5605,7 +5605,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -5624,14 +5624,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "342bdfbe8d94be62300d5ec7e680a5ebee9efdf8d9e000410b332017d5219fc4", + "tx_hash": "282125d035559b6e107a95f7f558664d4f4fe840ad084c76d24b7ca5b533ce06", "block_index": 112, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730754423, + "block_time": 1730802055, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5646,7 +5646,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -5665,10 +5665,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5676,7 +5676,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -5689,10 +5689,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5700,11 +5700,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5713,10 +5713,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5724,11 +5724,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5737,10 +5737,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5748,7 +5748,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "divisible": true, "asset_longname": null, @@ -5761,10 +5761,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5772,11 +5772,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5794,7 +5794,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4` (str, required) - The address to return + + address: `bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq` (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 @@ -5813,10 +5813,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", + "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", "block_index": 151, - "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", - "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", + "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", + "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5824,11 +5824,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754585, + "block_time": 1730802200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5846,7 +5846,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5866,10 +5866,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5877,11 +5877,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5890,10 +5890,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5901,11 +5901,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5914,10 +5914,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5925,11 +5925,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5938,10 +5938,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5949,11 +5949,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5962,10 +5962,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5973,11 +5973,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754824, + "block_time": 1730802436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5995,7 +5995,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4` (str, required) - The address to return + + address: `bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6023,7 +6023,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6052,9 +6052,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6063,7 +6063,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6073,7 +6073,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6089,9 +6089,9 @@ Returns the dispensers of an address }, { "tx_index": 64, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6100,7 +6100,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6110,11 +6110,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6135,7 +6135,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -6148,9 +6148,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6159,7 +6159,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6169,7 +6169,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6191,7 +6191,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -6211,19 +6211,19 @@ Returns the dispenses of a source { "tx_index": 65, "dispense_index": 0, - "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", + "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6231,7 +6231,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6246,11 +6246,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6260,19 +6260,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6280,7 +6280,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6295,7 +6295,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6309,19 +6309,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6329,7 +6329,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6344,7 +6344,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -6366,7 +6366,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address to return + + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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 @@ -6386,19 +6386,19 @@ Returns the dispenses of a destination { "tx_index": 65, "dispense_index": 0, - "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", + "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6406,7 +6406,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6421,11 +6421,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6435,19 +6435,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6455,7 +6455,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6470,7 +6470,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6484,19 +6484,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6504,7 +6504,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6519,7 +6519,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -6541,7 +6541,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -6562,19 +6562,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6582,7 +6582,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6597,7 +6597,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6611,19 +6611,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6631,7 +6631,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6646,7 +6646,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -6668,7 +6668,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address to return + + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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` @@ -6689,19 +6689,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6709,7 +6709,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6724,7 +6724,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6738,19 +6738,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6758,7 +6758,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6773,7 +6773,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -6795,7 +6795,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd` (str, required) - The address to return + + address: `bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re` (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 @@ -6814,16 +6814,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -6837,7 +6837,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6869,14 +6869,14 @@ Returns the issuances of an address "result": [ { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6891,20 +6891,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", + "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6919,20 +6919,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754623, + "block_time": 1730802261, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", + "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6947,20 +6947,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730754620, + "block_time": 1730802247, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", + "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6975,20 +6975,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754617, + "block_time": 1730802243, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "25b168f316ca8ec76e3f4bd578a55c4506c7eefce7c42ca8287a98cdfdd23d19", + "tx_hash": "461f5d5c7edf5ab4fb9c3044b6d0cbe87893accbc6c103ee3bbc01355b45c08a", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -7003,7 +7003,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754612, + "block_time": 1730802238, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7018,7 +7018,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The issuer or owner to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7041,8 +7041,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -7050,16 +7050,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -7067,16 +7067,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -7084,16 +7084,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 40, @@ -7101,16 +7101,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730754518, - "last_issuance_block_time": 1730754522, + "first_issuance_block_time": 1730802140, + "last_issuance_block_time": 1730802145, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 19, @@ -7118,8 +7118,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730754494, - "last_issuance_block_time": 1730754515, + "first_issuance_block_time": 1730802125, + "last_issuance_block_time": 1730802137, "supply_normalized": "0.00000019" } ], @@ -7133,7 +7133,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The issuer to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -7156,8 +7156,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -7165,16 +7165,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -7182,16 +7182,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -7199,16 +7199,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 40, @@ -7216,16 +7216,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730754518, - "last_issuance_block_time": 1730754522, + "first_issuance_block_time": 1730802140, + "last_issuance_block_time": 1730802145, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 19, @@ -7233,8 +7233,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730754494, - "last_issuance_block_time": 1730754515, + "first_issuance_block_time": 1730802125, + "last_issuance_block_time": 1730802137, "supply_normalized": "0.00000019" } ], @@ -7248,7 +7248,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The owner to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7271,8 +7271,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -7280,16 +7280,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -7297,16 +7297,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -7314,16 +7314,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 40, @@ -7331,16 +7331,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730754518, - "last_issuance_block_time": 1730754522, + "first_issuance_block_time": 1730802140, + "last_issuance_block_time": 1730802145, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 19, @@ -7348,8 +7348,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730754494, - "last_issuance_block_time": 1730754515, + "first_issuance_block_time": 1730802125, + "last_issuance_block_time": 1730802137, "supply_normalized": "0.00000019" } ], @@ -7363,7 +7363,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7382,17 +7382,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7428,17 +7428,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", - "block_time": 1730754842, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_time": 1730802444, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", + "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7446,14 +7446,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7461,7 +7461,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7480,17 +7480,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", - "block_time": 1730754828, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", + "block_time": 1730802440, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", + "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7498,14 +7498,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7513,7 +7513,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7532,17 +7532,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "block_hash": "2fb2f290dd9dd78ef46c06dc3fe672a3fc25e105c542320e7fd319046e553cf4", - "block_time": 1730754824, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "2561ce95bf2aff6a835d470b4f19f9d08e4285947c740365d548cafb59791fcc", + "block_time": 1730802436, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", + "data": "02000000178d82231300000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", "supported": true, - "utxos_info": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7:1", + "utxos_info": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7550,12 +7550,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7566,17 +7566,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_hash": "210def9c77137c26da773ab5f6b789420e9a6191d1970b3bf5ede6e0d457e947", - "block_time": 1730754821, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "44fd5fd9c920b878146d1dd1f6f40de3294a56d4e993ddfcbd621ec91da787e9", + "block_time": 1730802423, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21:1", + "utxos_info": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7610,7 +7610,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -7629,20 +7629,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7667,7 +7667,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7696,9 +7696,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7713,7 +7713,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7739,9 +7739,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7756,7 +7756,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7782,9 +7782,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7799,7 +7799,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7825,9 +7825,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7842,7 +7842,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7868,9 +7868,9 @@ Returns the orders of an address }, { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7885,7 +7885,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7920,7 +7920,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The source of the fairminter to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7945,10 +7945,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, "block_index": 155, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7973,7 +7973,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7982,10 +7982,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "tx_index": 22, "block_index": 135, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8010,7 +8010,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730754518, + "block_time": 1730802140, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8022,10 +8022,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "tx_index": 18, "block_index": 131, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8050,7 +8050,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730754494, + "block_time": 1730802125, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8062,10 +8062,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8090,7 +8090,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730754490, + "block_time": 1730802121, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8102,10 +8102,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8130,7 +8130,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8152,7 +8152,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address of the mints to return + + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8170,22 +8170,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8194,22 +8194,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", + "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754515, + "block_time": 1730802137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8218,22 +8218,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", + "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754512, + "block_time": 1730802134, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8242,22 +8242,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", + "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754498, + "block_time": 1730802129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8266,22 +8266,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "be608604bbfb74748be5552f923987d7fe74c6be140702cc17fa7df503318d13", + "tx_hash": "bbfc719cd39abadecb2979609367d09fde99833a797977f42967fcbfeb3b30ba", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754478, + "block_time": 1730802109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8290,22 +8290,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8324,7 +8324,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address of the mints to return + + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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` @@ -8343,22 +8343,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8379,7 +8379,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0` (str, required) - The utxo to return + + utxo: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8399,8 +8399,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset_info": { "divisible": true, "asset_longname": null, @@ -8413,12 +8413,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8458,8 +8458,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will make the bet + + feed_address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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) @@ -8533,7 +8533,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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) @@ -8595,7 +8595,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8606,9 +8606,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985760, - "btc_fee": 14240, - "rawtransaction": "0200000000010116fb01b6a49af296f7991a03b6568e8ea53f41618aaf2efe6bdf0c7b221abd88000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a295ba188ea222475b44b30d16faa9c18458a3c59d09f5deebe45a3445d98a9e74651f4b700082e04e93660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985772, + "btc_fee": 14228, + "rawtransaction": "0200000000010112c9553dd19ad3444141e1552fa04548dce509ca8bb2b558390dfcddea62f075000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a294298e5abda16b2c4a6e62cc4218ab9fdf0f1c51546ee914debb0db32701f690f879bfe4a1fdfa628bb6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8630,8 +8630,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending the payment - + order_match_id: `c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178` (str, required) - The ID of the order match to pay for + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending the payment + + order_match_id: `eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab` (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) @@ -8689,24 +8689,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "data": "434e5452505254590beb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980877, - "btc_fee": 18123, - "rawtransaction": "0200000000010134134bd46a4c5d145230ef15f8b69342b5817d3f4bc49511937e147ef7cd606c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e8030000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d400000000000000004b6a498e5445293aba007dc9e95365fcae404891cc9b4d3f90c1acb6419c75db5f4bb2f048f0378f38702a37535a0cafcff630449b4d8260444a0547bdfcb7465a2de7160f91bba6da4f40d84da7052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999980891, + "btc_fee": 18109, + "rawtransaction": "02000000000101260d84a410a0dc247a37db4420db3d2a2160bc49b0b161be0fb2c816316b66f3000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e8030000000000001600142bd3245f056e748ad251456348cc06a80ff7910300000000000000004b6a494ed15e3d5ad786a466623be7759292a47f9644f464a4572cd8bc4f19985fbfe88befef2d4f49c176b82151bf16d05b3b6b7964a7c97c58e58230e3468c32db59ba6d3d0fedc0d8e7265ba7052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "status": "valid" } } @@ -8719,7 +8719,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address with the BTC to burn + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -8780,7 +8780,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8789,9 +8789,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": 4999985761, - "btc_fee": 13239, - "rawtransaction": "02000000000101a6cbe9947c343c08d41a6c4cf34f79f478993f27f10f1eab0b50b011ce1d2654000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac61ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000" + "btc_change": 4999985771, + "btc_fee": 13229, + "rawtransaction": "02000000000101066096d8d00d808a870b478dfd229ed09fe2a6c3d10cce46fd0e8b879464d98e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000" } } ``` @@ -8801,8 +8801,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab` (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) @@ -8860,22 +8860,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459465006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "data": "434e545250525459466bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985760, - "btc_fee": 14240, - "rawtransaction": "020000000001017da4d7f8266088fa20cbf73ebca547de3ab27f9e9ced3b3541329354a3ac4ec2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a29896e02144b4513af65e3c6a3b890c5895fa7b7d9ce40c5acc846d00fe55c74a1967f1dde79b76b152660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985772, + "btc_fee": 14228, + "rawtransaction": "020000000001018a1974253fe85fef29e91f1d1693b2719d9e12bcde9324efdef621e4c1123733000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a2976a80684b5dc09f6e2426fa7c0fdc5314d4ee71dec4f2ab9331b1583af3eb6d42c8c12bb06bf0c6fcf6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "status": "valid" } } @@ -8888,7 +8888,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -8949,7 +8949,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8967,9 +8967,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986290, - "btc_fee": 13710, - "rawtransaction": "02000000000101330b68a63f6a0bf4324eeabdedcaba94724f9acdd71fc338d342fd1f29675bb2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000226a202bed067be42b7470d48f783e703b0a953c71563cf44cfefcfe028ecc883ad24a72bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999986301, + "btc_fee": 13699, + "rawtransaction": "02000000000101dc386fd437628a6f89134c4ff4fbeddf2ad6a99856fbdc6d7f67091c420c8d77000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000226a202c16a9d5e454cddedf4ee84e9d90fa0c71f8dd9fb911c9096b120967158286fb7dbc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8989,7 +8989,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: `bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx` (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) @@ -9056,7 +9056,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9079,9 +9079,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920201, - "btc_fee": 14299, - "rawtransaction": "020000000001014c11c5de8288b4de68b09b3ee42090881eadaaaa42c0097bdfb68a0e023577c2010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad3ffffffff0200000000000000002c6a2afb2e99f1f271d3e1669ec0ebacd4552f9ccdd27777444fcaa2be3c31bd2a04461bbef2bdb08935c0ef9cc9c90927010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad302000000000000", + "btc_change": 4949920213, + "btc_fee": 14287, + "rawtransaction": "02000000000101c332c8de3fb0c76191c5107a588c4fcb7627509536cb06bbd714e1afd79dc35e010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0affffffff0200000000000000002c6a2aadd095e8b5d1e694d35140be86ce26e77fc9481c617baa463205fa09c6dd3c01b72cc6aac1a49f1f7feed5c90927010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0a02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9107,7 +9107,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (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: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -9168,7 +9168,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9176,7 +9176,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -9193,9 +9193,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986231, - "btc_fee": 13769, - "rawtransaction": "0200000000010131ea1a6d6bd7c60ddbd7fa1d61b6b1c2dbefd99490d8b05a2603a6c10d549e1d000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a2173c51e8531ada48df30360ae316b80e64969d68a6b45ca15c580748cb7e4f31b5337bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "02000000000101b2e2feb12c6c82ed849dfdb6b9a7b5a39b76272222ef3be1bca08ca5c609d20b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a2126d5d91ae285141f81452824fa079ffdadb2f9c421bdda4741a6f697641f17f53242bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9216,10 +9216,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -9286,10 +9286,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "transfer_destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "lock": false, "reset": false, @@ -9301,9 +9301,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": 4999983684, - "btc_fee": 15770, - "rawtransaction": "02000000000101b19ac26bdea49564e140b2029d4b5f112b43ba3ec1ce467f19f3e5140234149c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0322020000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d40000000000000000236a218fc47ed77839b421c2b4a7d3ebd4d9f0ec4ebd7b8c0c7bc4b505968245448dea5344b2052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999983697, + "btc_fee": 15757, + "rawtransaction": "02000000000101a049022e804c380a150aee7077be87f4263b62ab39b582672c4b1809688d719e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0322020000000000001600142bd3245f056e748ad251456348cc06a80ff791030000000000000000236a213d4112b69dbeee312084dab62f509a25acea023ce4423fa803d13c538052dee3fe51b2052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9332,9 +9332,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697,bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9401,16 +9401,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", 1 ], [ "MPMASSET", - "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", 2 ] ], @@ -9419,26 +9419,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4840000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002802bd3245f056e748ad251456348cc06a80ff7910380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945276, - "btc_fee": 52724, - "rawtransaction": "020000000001041a1250ec35b55569fd30cbf046022141a0486319174e07e11c7b8a2db83cd9f4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff7d552d27f7ff34c93b8687dbd87357ae0f573be66c031f12e93d721523e9a995000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff523f323acb3c79f41b1428228e9e98006cbb3529b31cc7e98381e5ff0abf1e72000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff8bcd4df934dacb9addb7a1ce084ab23559896fd982f2a4abdb17cf35dad8c1f6000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e803000000000000695121027ba892556213eb2c231b27b136dbff2e43a06f6fbca92ac97c6db2f7ffca946a2103085215750aa78fcc3c3ebb58f6d4163ba7c81ef28be2182ef43ffb55e3a7e48f21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210364a892556213eb2c23c827b3b6554f257d8d8824197907a3bf13a7ad1fe68f0e21031d8694a381f96009e11978e2f7d2e441c253ed339499506ef43ffeb6832f200621028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae3cf216a8040000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000000000000", + "btc_change": 19999945318, + "btc_fee": 52682, + "rawtransaction": "0200000000010498e3a0fa2aca6665ad6ae7169d9c0ac92ad355647d00333bf1a76160f1b859ae000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff6dbf92b66757956f9a97a7312f10e47b874f99ceb7c9ae5c8c5f428eb254281000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdfe89bfb8c1a4f480776f689ff9106ebc57bf1983f1e5dfcc57c85f66036586b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffff13f6169bb52da5469ad2953793c063a091bf0ce4e121847d174bc299b00519000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e803000000000000695121020c1b62f2cada3b921bdd32a534b1e38b1ceb9d041efb769d665175ead85cdedb21036d3fd87aa14298c3dd9492bd7cb4515d1446fc3490cb04002a6b98291c51fdf8210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512103131b62f2cada3b921b0e32a7b49a30af43caf370942927d8051db9ec705329482103fc3c59be15f7e60c1fb166c3d371e0653c97b8ec50266b402a6b9dca7cd939e3210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae66f216a8040000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9454,7 +9454,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -9518,7 +9518,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9536,7 +9536,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -9548,9 +9548,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985172, - "btc_fee": 14828, - "rawtransaction": "020000000001012702d03614e713d28c3e4c01a838d9c5b2eeb12496ccb5423584af348f56e4a4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000356a33c698b0b058e7527b8dea6d7c15f648dade91b9e217883042182de5cc03260e79e519ea9d0870d8e3f5bafb61b028429127051214b8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985184, + "btc_fee": 14816, + "rawtransaction": "0200000000010194d51512a6fd477211152d221e39b7d811d0fc8dbe16bb34ae30f71ab0e5fd74000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000356a33548096b524cde9a928f95300164119468764a93e87cc82170a25f188cddb5151867e11f213a4dd43db41754fce5624484126f120b8052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9576,8 +9576,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address that will be receiving the asset + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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 @@ -9643,8 +9643,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9661,19 +9661,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", + "data": "434e54525052545902000000000000000100000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985466, - "btc_fee": 14534, - "rawtransaction": "02000000000101ed13f7d9bf1d87d36f3225bf6cf5e0c7f142aa88abd9763a1c28c8b938ca044c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000306a2ea9295a205b1b2256ea5fdb16d168318a070bc85a9f40c96afcd2060c00417f44b9d8a1eb40df502d3245e92a37353ab9052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985478, + "btc_fee": 14522, + "rawtransaction": "02000000000101c2d20c43b5c5ab37134bcb2eb9fe8d1955d0e44b7818f6697f4a63899beee703000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000306a2e9d707c1e44ed90e162402f0f6c003fda423203f4fb324f46bffce149474d979de962a604bf558508beb742af9a6f46b9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "quantity_normalized": "0.00001000" } @@ -9687,8 +9687,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be sending - + destination: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending + + destination: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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 @@ -9748,24 +9748,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4807ffff", + "data": "434e5452505254590480c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986231, - "btc_fee": 13769, - "rawtransaction": "020000000001017443aa984d8b162bdc9495a9c1ff98f0726a2276c5b195640d05eccf72387b3c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a213a95fec1a258013af6f7f4fa23e67f928ccf78f3f737380092d4306e339ce4777937bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "0200000000010164205d055995ee2dd0de506af86e0f4639cc449e80e5e497d0dfb7a5020dee26000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a210818cede99d429b6a234cd8f1d5c234e402f2b0c63343a629a0a80dd61e25f6b2342bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "flags": 7, "memo": "ffff" } @@ -9779,8 +9779,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: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6` (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` @@ -9839,8 +9839,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "quantity": 1000, "skip_validation": false }, @@ -9848,9 +9848,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812584, - "btc_fee": 14416, - "rawtransaction": "020000000001010aa9873cdb43e3f44f4d2491a655dd127c69be188ef9b864bdbf64da0832cb5703000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48ffffffff03e8030000000000001600142b76c5b1671561586aee7961c784a0f1cd248b6600000000000000000c6a0a794ec3d5222cae73a3bd6825082701000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4802000000000000", + "btc_change": 4949812595, + "btc_fee": 14405, + "rawtransaction": "02000000000101cf6559937a82976daf8a316fcd86d0e1ad2d32e2b29ee9b0085d937f1dd59c5e03000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6fffffffff03e803000000000000160014fcb0ac3d1529a010b58659987e4c25a4d97f74a800000000000000000c6a0acb7e80c5b5e6979c1bdb7325082701000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9867,7 +9867,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be issuing the asset + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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: `` @@ -9958,7 +9958,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9988,9 +9988,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985407, - "btc_fee": 14593, - "rawtransaction": "0200000000010182ad15aabac2d01ded2f1003268ee8556df3ce841c837eb7a69a9a32d8b1db6c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000316a2fb23104f3d5d644520d0b478314e4b0cf49c8c069996c8fe00d20b99975f27618026d8837f8230fbde65daa23b6cffbffb8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985419, + "btc_fee": 14581, + "rawtransaction": "020000000001010ada3b7b5f8c2f08473cc656a89a2b2c5c36024a4eedfddfbe8711e1a5d93fc2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000316a2f11b322d7d2af93cd0af4d5e852286b64696ed73f45be15ac3b416f485a1222208f49d1bd922dc74c8b5dbf74432b820bb9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -10029,7 +10029,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address that will be minting the asset + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -10090,14 +10090,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10107,9 +10107,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": 4999986996, - "btc_fee": 13004, - "rawtransaction": "02000000000101ec45ccd12a4c63836683fa0c347f6ad4a8abfac00987a8ae3842a6a760f183ec000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000166a1490a595e5f6132e43e59c565f13ad95fdec459d2634bf052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999987006, + "btc_fee": 12994, + "rawtransaction": "0200000000010164af163ce2b6045b02c10ef15d398b2fc712f88ca51666ab06b0f193b02bde2c000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000166a144159228c9cfd2f9ef39218bacbeacadb122f7cd63ebf052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10128,10 +10128,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: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address from which the assets are attached + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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: `697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:3` (str, optional) - The utxo to attach the assets to + + destination: `58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10190,8 +10190,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:3", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:3", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10205,12 +10205,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c363937653938353163643238383636343765343865306538653438393732623761666432366633646134653733306233383861393033646535646538303933613a337c5843507c31303030", + "data": "434e545250525459646263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c353866346536663734343438333066663933336432663133343338356164653632343162663138333634363233666534383831323064626137636634336538363a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918208, - "btc_fee": 78792, - "rawtransaction": "02000000000106ec26e38d001b524d87f6e28fcbc311178df2dbfcc6516cebbf84004c8312b53f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff1d2795aa3485c988e84fb2e7aa5c7f8ff5edcf36cfb821509f14c3adebe2ec03000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff3529e97b54a82ef5a789daa08b2435014a6b9b36b255bdd8fea9de06a87a9a9a000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff95ed83a21618112cb5b4d145fcd5e78ef5c462501dc275a3962649f1148dec44000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffffe5439ca5eada80e835e68960c42e9fce80044108d885d6defa611726e838df9f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff4358938a7a8b42811031330785715aa7b9f4d501d47845ecdd0625d097e028cf000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff04e8030000000000006951210300e49164f5b810f60465d641f7d79e41f8887a91b8dd2cbbe88e58fa24c46d02210255c29677b057bba4cad10548ee7ab8d25107da8aed8dfd6d8f0321c8fdd160f821028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210200e49164f5b810f60430d746b79b9706fd8a2e85e7d53aedf8d704f868c82a5b210203c4d566be06b0a09a971042aa74b696540099c2e3d5f3218a5e7398a08c6d8921028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee803000000000000695121022ae49164f5b810f604318d11e4999c4c93fd499ce2dd6fed9def61cc50f11d6f210331a6e207d8628296fca474239e1181a56462aafadbb4ca11b93a16adc4e9555021028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae806c22fc060000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000002000002000000000000", + "btc_change": 29999918271, + "btc_fee": 78729, + "rawtransaction": "02000000000106aba0913452807a575c5886e2fca37f478d734435861d7385abd58f7783276f3d000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff6930ebcd6f0611e8512035762b802a69d8dc1ad8f0ecb92e99ba891c4ba589c2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffbbc19d0ea4db645dca159ec2836cee71d8ad3db773fc7466d507e6943d5ecd64000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffd0c7dafcbbfbfc4ebda10c19cbdbc5a45fb6515fb420154b9a5cb22d05f32428000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdbb42518a577d3cfc97a7be0f446e071201d6a8eccefde9af209ad60115692b7000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff2e0ee5289c55b3316c76f94ca113af4aec414351879ce4089bb816e62d09f91000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff04e80300000000000069512103aa75846a822e62c7f6a9ab9e747ec964717a9c060597b31986d8f9df4af7b1422103055a828ce07083f04f5013ee7bc9f618c4a963d29d534e17816af75ec5f21719210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512102aa75846a822e62c7f6fafdc93232cb252e2cc35f519be246d38efb8b46f7bad421025258808de1728fe7065c51e023cfbd4cd0f92e82c3014e5bd030f05dc3a245ee210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee803000000000000695121038075846a822e62c7f6feacc53030cb691009aa1053cfe010e2bdcfb87ec2db2c2103363db6bfd543ed81376462d617f98f7fb69c1abafb307c6bb452916aa0c471c7210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aebf6c22fc060000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10227,8 +10227,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: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to detach the assets to + + utxo: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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 @@ -10288,8 +10288,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10303,12 +10303,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964313538346138643361343130346539376630666265306133643064393463303339353137303332303337303464356263663735343065353334373062326635353a307c626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c5843507c31303030", + "data": "434e54525052545964613262343736656139653530373032313461353564663464663836396331376564626335653266326231653139363034646365666266303164316334373939303a307c6263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030161, - "btc_fee": 46839, - "rawtransaction": "020000000001037da5c62bf0518bab542904911d47e5ba189ff24c3bc881335f98fd4382900c7f0100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325fffffffffacabf9810b671b81ba9309a3be44da18d0272828ce007e4690c99122a2f45a40000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffffb4368a5fafe65793022c45fcd58316958291c1b030a1da83cde5cdc8b03db7880100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffff04e8030000000000006951210350e8ed5d86b1d3f35116ebda9205bc56837066971cf39594ac77e26b2cd2b1602102c9527c9f10b57e0c47d0979207be90cde10528dc0d3fcad7380fc482048755ea21021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee8030000000000006951210250e8ed5d86b1d3f35142bfda9905ea5e8571619618f9918df723f62f7bc1e7db2102cf503e9010a2214d45d992df07ffc399a64770da033dc8c67c06d78f0ac554a521021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee803000000000000695121027ae8ed5d86b1d3f35117aa9f9c08ea12bf0057df1cf391c19540845b4ab0d4c12102f9334ffb20d1473824e0a4ab328fa7fdd23718ef3a0ffeb30d6da7e433b261c821021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553ae51770b270100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32502000002000002000000000000", + "btc_change": 4950030198, + "btc_fee": 46802, + "rawtransaction": "0200000000010301a75a6b897f9f13e4ea0f796dc40752d61041a3bebdf2fa658458b24a48fa8601000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffffbcd34029e0b936d9407ac254ac3bcf0fb4065f87468e48a3ae8f7c94aa7f685f00000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff7c6fe268aeb8905708c0bf749c079c3d44d513b2c6732740706959d64cdf9ef101000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff04e803000000000000695121024dd9c964e0b9c3150116fe706abab691820beb22ade3906589783bbe4c0e86cf210282e94618eaf7031583f72e890b2eeb110a96b1c1d87335813a17f32d979e5c282103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee803000000000000695121034dd9c964e0b9c3150110f97239eab0c4d35deb7ea8e99729d92a7dab484adb162102d4bb4819baa20312d7f62cd95c27ed130cc3b69087677c8c7d1fab798d9c48722103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee8030000000000006951210267d9c964e0b9c3150147e62a6eedb3dbbf29823ba9e39765bb490fdf793be2d52103e4dd227ed2c13a76b2c04bed694dde7438f083a3e91604b80c27c749f4fb3a7e2103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53ae76770b2701000000160014030bb62d246ddd169864a9ebe96043a04184fb6502000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10377,8 +10377,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -10386,16 +10386,16 @@ Returns the valid assets "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", - "owner": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "owner": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "divisible": true, "locked": false, "supply": 100000000000, @@ -10403,16 +10403,16 @@ Returns the valid assets "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730754790, - "last_issuance_block_time": 1730754790, + "first_issuance_block_time": 1730802400, + "last_issuance_block_time": 1730802400, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -10420,16 +10420,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "owner": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "issuer": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "owner": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "divisible": true, "locked": false, "supply": 100000000000, @@ -10437,16 +10437,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730754608, - "last_issuance_block_time": 1730754608, + "first_issuance_block_time": 1730802235, + "last_issuance_block_time": 1730802235, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -10454,8 +10454,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" } ], @@ -10483,8 +10483,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -10492,8 +10492,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730754459, - "last_issuance_block_time": 1730754470, + "first_issuance_block_time": 1730802090, + "last_issuance_block_time": 1730802100, "supply_normalized": "100.00000000" } } @@ -10524,7 +10524,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10532,14 +10532,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10547,7 +10547,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10565,7 +10565,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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. @@ -10577,7 +10577,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -10631,9 +10631,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10648,7 +10648,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10674,9 +10674,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10691,7 +10691,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10717,9 +10717,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10734,7 +10734,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10760,9 +10760,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10777,7 +10777,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10803,9 +10803,9 @@ Returns the orders of an asset }, { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10820,7 +10820,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10882,13 +10882,13 @@ Returns the orders of an asset { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10902,7 +10902,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10922,13 +10922,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 52, - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10942,7 +10942,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10962,13 +10962,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", "tx0_index": 49, - "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 50, - "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10982,7 +10982,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11002,13 +11002,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11022,7 +11022,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11042,13 +11042,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -11062,7 +11062,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11142,20 +11142,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "event": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11163,20 +11163,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", + "event": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11184,20 +11184,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11205,20 +11205,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "event": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11230,16 +11230,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11299,12 +11299,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -11316,16 +11316,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -11337,16 +11337,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -11358,16 +11358,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -11379,16 +11379,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -11468,14 +11468,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", + "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -11490,20 +11490,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -11518,20 +11518,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -11546,20 +11546,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -11574,7 +11574,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730754459, + "block_time": 1730802090, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11608,10 +11608,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11619,7 +11619,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -11632,10 +11632,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11643,7 +11643,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -11656,10 +11656,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "block_index": 207, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11667,7 +11667,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -11680,10 +11680,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11691,7 +11691,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -11704,10 +11704,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11715,7 +11715,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "divisible": true, "asset_longname": null, @@ -11766,9 +11766,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11777,7 +11777,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11787,7 +11787,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -11803,9 +11803,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", + "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", "block_index": 142, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11814,7 +11814,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11824,7 +11824,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754542, + "block_time": 1730802167, "asset_info": { "divisible": true, "asset_longname": null, @@ -11840,9 +11840,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", + "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", "block_index": 150, - "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", + "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11850,10 +11850,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 0, - "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11861,7 +11861,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754582, + "block_time": 1730802197, "asset_info": { "divisible": true, "asset_longname": null, @@ -11877,18 +11877,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11898,7 +11898,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -11923,7 +11923,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - The address to return + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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` @@ -11936,9 +11936,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11947,7 +11947,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11957,7 +11957,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -12007,7 +12007,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12015,7 +12015,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12024,7 +12024,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12032,7 +12032,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12041,7 +12041,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12049,7 +12049,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12058,7 +12058,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12095,27 +12095,27 @@ Returns the dispenses of an asset { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12130,7 +12130,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -12144,27 +12144,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", + "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", "block_index": 147, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12179,7 +12179,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754561, + "block_time": 1730802186, "asset_info": { "divisible": true, "asset_longname": null, @@ -12193,19 +12193,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12213,7 +12213,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12228,7 +12228,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -12242,19 +12242,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12262,7 +12262,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12277,7 +12277,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -12351,10 +12351,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12379,7 +12379,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12419,22 +12419,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", + "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12443,22 +12443,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "tx_index": 12, "block_index": 124, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12467,22 +12467,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12501,7 +12501,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc` (str, required) - The address of the mints to return + + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (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` @@ -12520,22 +12520,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -12588,9 +12588,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12605,7 +12605,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12631,9 +12631,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "block_index": 187, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12648,7 +12648,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12674,9 +12674,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12691,7 +12691,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12717,9 +12717,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12734,7 +12734,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12760,9 +12760,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12777,7 +12777,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12812,7 +12812,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e` (str, required) - The hash of the transaction that created the order + + order_hash: `eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a` (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. @@ -12824,9 +12824,9 @@ Returns the information of an order { "result": { "tx_index": 54, - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "block_index": 210, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -12841,7 +12841,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12873,7 +12873,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e` (str, required) - The hash of the transaction that created the order + + order_hash: `eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a` (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 @@ -12900,13 +12900,13 @@ Returns the order matches of an order { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12920,7 +12920,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12940,13 +12940,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -12960,7 +12960,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12980,13 +12980,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13000,7 +13000,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13030,7 +13030,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024` (str, required) - The hash of the transaction that created the order + + order_hash: `dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d` (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 @@ -13049,15 +13049,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "btc_amount": 2000, - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "status": "valid", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "btc_amount_normalized": "0.00002000" } ], @@ -13101,9 +13101,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "block_index": 187, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13121,7 +13121,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730754711, + "block_time": 1730802340, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13147,9 +13147,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "block_index": 210, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -13167,7 +13167,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730754868, + "block_time": 1730802466, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13193,9 +13193,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13213,7 +13213,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13239,9 +13239,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13259,7 +13259,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13285,9 +13285,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13305,7 +13305,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13368,13 +13368,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13391,7 +13391,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13411,13 +13411,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 52, - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13434,7 +13434,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754711, + "block_time": 1730802340, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13454,13 +13454,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13477,7 +13477,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13497,13 +13497,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", "tx0_index": 49, - "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 50, - "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13520,7 +13520,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754638, + "block_time": 1730802275, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13540,13 +13540,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13563,7 +13563,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13621,13 +13621,13 @@ Returns all the order matches { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13641,7 +13641,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13661,13 +13661,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 52, - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13681,7 +13681,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13701,13 +13701,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", "tx0_index": 49, - "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 50, - "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13721,7 +13721,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13741,13 +13741,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13761,7 +13761,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13781,13 +13781,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13801,7 +13801,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13969,66 +13969,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", + "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", "block_index": 121, - "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", + "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730754455, + "block_time": 1730802086, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "17ddd01be8b6259737480ce5d41d2296adfd6fad2dd5fd25ba22a7bd25327197", + "tx_hash": "6fa2b808ca4cbe55962246eccb58ff39bf86a963fd2d557b0ff9df2b7ca2e5a0", "block_index": 120, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730754452, + "block_time": 1730802083, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b68db9d455df4a1461290497eaa93e1b057416b73ec917d8d7b2b25fbcfc8ba7", + "tx_hash": "1056bd10fc8114a8914c302c232de98308caabbdd1fe9914e6fa838d74d2c941", "block_index": 119, - "source": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg", + "source": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730754448, + "block_time": 1730802078, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "4f57e9927e556cd34c39dbdeba6265fc1d88e60b3bf2e08bc874b837828ff0b7", + "tx_hash": "3fc43bf9e1c19a92e27d17eec17982d27b8b84b227215bb4a549f5bdc0f7856b", "block_index": 118, - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730754444, + "block_time": 1730802075, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "216cb7c25a848ecee97deb433973131fbc9af42fa729e1e3febf0fae9d5ebc62", + "tx_hash": "d8c65c1b98d461160788c8c81a24437cf47e85269115a619fd32b2dadc9ca3b3", "block_index": 117, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730754441, + "block_time": 1730802072, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -14073,9 +14073,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14084,7 +14084,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14094,7 +14094,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -14110,9 +14110,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", + "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", "block_index": 142, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14121,7 +14121,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -14131,7 +14131,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754542, + "block_time": 1730802167, "asset_info": { "divisible": true, "asset_longname": null, @@ -14147,9 +14147,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", + "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", "block_index": 150, - "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", + "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14157,10 +14157,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 0, - "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -14168,7 +14168,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754582, + "block_time": 1730802197, "asset_info": { "divisible": true, "asset_longname": null, @@ -14184,9 +14184,9 @@ Returns all dispensers }, { "tx_index": 64, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14195,7 +14195,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14205,11 +14205,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -14221,18 +14221,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14242,7 +14242,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -14267,7 +14267,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced` (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. @@ -14279,9 +14279,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14290,7 +14290,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14300,7 +14300,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -14322,7 +14322,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced` (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 @@ -14342,19 +14342,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14362,7 +14362,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14377,7 +14377,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -14391,19 +14391,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14411,7 +14411,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14426,7 +14426,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -14468,20 +14468,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -14506,7 +14506,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe` (str, required) - The hash of the dividend to return + + dividend_hash: `e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945` (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. @@ -14518,20 +14518,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -14553,7 +14553,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945` (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 @@ -14576,12 +14576,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "tx_index": 41, - "utxo": "116cd83585c2fbec0a0fa7c5bc3a36798e8c7df68e67b38d29447cf500b9091f:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "ae8eba270cec96da68dee5ab5e085b24e1fff92f7435ba158fc3c4f251f0d5f6:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "divisible": true, "asset_longname": null, @@ -14593,16 +14593,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", + "address": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,27 +14648,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 694, @@ -14677,14 +14677,14 @@ Returns all events "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -14695,9 +14695,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 693, @@ -14706,9 +14706,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -14718,24 +14718,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -14745,9 +14745,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 691, @@ -14775,15 +14775,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } } ``` @@ -14861,16 +14861,16 @@ Returns the events filtered by event name "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -14880,9 +14880,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 690, @@ -14892,12 +14892,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -14907,9 +14907,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 687, @@ -14919,39 +14919,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -14961,24 +14961,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -14988,9 +14988,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_time": 1730754849 + "block_time": 1730802452 } ], "next_cursor": 656, @@ -15046,27 +15046,27 @@ Returns all the dispenses { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15081,7 +15081,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -15095,19 +15095,19 @@ Returns all the dispenses { "tx_index": 65, "dispense_index": 0, - "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", + "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15115,7 +15115,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15130,11 +15130,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -15144,27 +15144,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", + "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", "block_index": 147, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15179,7 +15179,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754561, + "block_time": 1730802186, "asset_info": { "divisible": true, "asset_longname": null, @@ -15193,19 +15193,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15213,7 +15213,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15228,7 +15228,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -15242,19 +15242,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15262,7 +15262,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15277,7 +15277,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -15319,10 +15319,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -15330,7 +15330,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -15343,10 +15343,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -15354,11 +15354,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -15367,10 +15367,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15378,7 +15378,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -15391,10 +15391,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15402,11 +15402,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -15415,10 +15415,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15426,11 +15426,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -15481,14 +15481,14 @@ Returns all the issuances "result": [ { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -15503,20 +15503,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "5e42629e369d96d248345e21d5ac75700f1313a5b3d73300b001c56535a9dbd4", + "tx_hash": "e8b357aa91530c00239d9e85624339c7d502fcd1042ba98b4255292588bc9a27", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", - "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "transfer": false, "callable": false, "call_date": 0, @@ -15531,20 +15531,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754790, + "block_time": 1730802400, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", + "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -15559,20 +15559,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754623, + "block_time": 1730802261, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", + "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -15587,20 +15587,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730754620, + "block_time": 1730802247, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", + "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -15615,7 +15615,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754617, + "block_time": 1730802243, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15630,7 +15630,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21` (str, required) - The hash of the transaction to return + + tx_hash: `4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592` (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. @@ -15642,14 +15642,14 @@ Returns the issuances of a block { "result": { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -15664,7 +15664,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15696,16 +15696,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -15719,7 +15719,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae` (str, required) - The hash of the transaction to return + + tx_hash: `8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b` (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. @@ -15732,16 +15732,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -15775,9 +15775,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15785,14 +15785,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754528, + "block_time": 1730802152, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", + "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", "block_index": 137, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15800,7 +15800,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754525, + "block_time": 1730802149, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15814,7 +15814,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885` (str, required) - The hash of the transaction to return + + tx_hash: `6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440` (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. @@ -15826,9 +15826,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15836,7 +15836,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754528, + "block_time": 1730802152, "fee_fraction_int_normalized": "0.00000000" } } @@ -15873,10 +15873,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, "block_index": 155, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15901,7 +15901,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15910,10 +15910,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "tx_index": 22, "block_index": 135, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15938,7 +15938,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730754518, + "block_time": 1730802140, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15950,10 +15950,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "tx_index": 18, "block_index": 131, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15978,7 +15978,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730754494, + "block_time": 1730802125, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15990,10 +15990,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -16018,7 +16018,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730754490, + "block_time": 1730802121, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16030,10 +16030,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -16058,7 +16058,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16127,22 +16127,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -16151,22 +16151,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", + "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754515, + "block_time": 1730802137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -16175,22 +16175,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", + "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754512, + "block_time": 1730802134, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -16199,22 +16199,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", + "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754498, + "block_time": 1730802129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -16223,22 +16223,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "3d947603d199500cf82471d766636ee73f5b9b1ab7994885f70d295231d24752", + "tx_hash": "25b732f7012bae585692e26dff9e0cae7420d2d34c758ae58e1e872c4c0605ac", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754487, + "block_time": 1730802117, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -16257,7 +16257,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7` (str, required) - The hash of the fairmint to return + + tx_hash: `fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16268,22 +16268,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -16301,7 +16301,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp,bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg` (str, required) - The addresses to search for + + addresses: `bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx,bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp` (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. @@ -16320,8 +16320,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c", - "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" + "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3", + "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" }, { "vout": 0, @@ -16329,8 +16329,8 @@ Returns a list of unspent outputs for a list of addresses "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9", - "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" + "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882", + "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" }, { "vout": 2, @@ -16338,8 +16338,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e", - "address": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg" + "txid": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87", + "address": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp" } ], "next_cursor": null, @@ -16352,7 +16352,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd` (str, required) - The address to search for + + address: `bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re` (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 @@ -16368,31 +16368,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b" }, { - "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934" + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" }, { - "tx_hash": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39" + "tx_hash": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140" }, { - "tx_hash": "f93447495abf4a163194a6319c9447c0ab7da997f808a615c131ef35434cc33c" + "tx_hash": "c5ae623bb16527836c14d80200db239faf600171f9a8bbce57eb17f98e83dc69" }, { - "tx_hash": "3a4dd199180fd38b85c2b4afb6dfdc79b904e76df3c041b0d0cccd17204f8ba5" + "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75" }, { - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae" + "tx_hash": "b85036cbfa2d68a737e3168b0f4eee86af23b648867c9a04672f36d423ebfe7d" }, { - "tx_hash": "c9e1bdb5ce778d2a17862427338d102ba9219c3d5ad6115d123ddf2345a7a1cd" + "tx_hash": "8e25e9254d6bddaea902953b00cba7ff65ffd772d2876aabff6026e0a9b03db6" }, { - "tx_hash": "08497a8ddebcc6b0d334b98818bad3d9050e3e71bd821dcfc59270bb9d9a19d8" + "tx_hash": "391f3d89a1a54c1f6244c8065f7eedac51effeabfa3cfa3d47dd7901c385d5d1" }, { - "tx_hash": "6e61189defb65cb99f6f025af46b26bf4335e3fe491157807982d3053725b2f6" + "tx_hash": "d5a7c6ca15b47d85e67bfb6bc3d15fbb644691439c552af371a6328d0bae8af7" } ], "next_cursor": null, @@ -16405,7 +16405,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj` (str, required) - The address to search for. + + address: `bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh` (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. @@ -16418,8 +16418,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 4, - "tx_hash": "aaf75b4666e66b95cff047812c285a3f78610420f509717a801d62c5d9472383" + "block_index": 10, + "tx_hash": "ce652a5add340982733c4b9f78851d770ad293cb125b7139c5c6888a9585e614" } } ``` @@ -16429,7 +16429,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp` (str, required) - The address to search for + + address: `bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx` (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 @@ -16450,7 +16450,7 @@ Returns a list of unspent outputs for a specific address "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c" + "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3" }, { "vout": 0, @@ -16458,7 +16458,7 @@ Returns a list of unspent outputs for a specific address "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9" + "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882" } ], "next_cursor": null, @@ -16471,7 +16471,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697` (str, required) - Address to get pubkey for. + + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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. @@ -16483,7 +16483,7 @@ Get pubkey for an address. ``` { - "result": "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" + "result": "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" } ``` @@ -16492,7 +16492,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55` (str, required) - The transaction hash + + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (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. @@ -16504,7 +16504,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001018e1736a71efba3a3d66ef0679c74ba83f331d0297403d411575f1197afc15ebe0100000000ffffffff03e80300000000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32500000000000000000c6a0aba2bf82a6f3f007f486eeb140927010000001600145ef1cb2164d56b362bc50f78174c44075e34c9c4024730440220542281337e069d592be93cddae391fb6e66c63f117cbad0390ee80d88de0502d0220699aad912c39f5804108239b775a6e6c3dfe8a6624109012ae7f83abe8c83127012102ea4592b4061746b40fc9fef3f888299461743e8b632c755abe227355fa747f4c00000000" + "result": "02000000000101873c745176e6e026a77e6ad4118223dad255017dcf24f727619b597db1d41cd20100000000ffffffff03e803000000000000160014030bb62d246ddd169864a9ebe96043a04184fb6500000000000000000c6a0af928ee36123adc49716aeb1409270100000016001427ef74571f9a85ec586af7739d92549c0c3156c90247304402204ad41dd2b8a71d4d2ab33446754357ab3509b8f75270dfda2e22c9fd3cfa0ef00220569aac8a21d95ff5b46af49db36868a5cb22c86e2b6ed70cfea241a4620390ba012103ded09b2bbdb12beffbc4bd367813e7d396da685973b1cf4e4ffe273c8578780a00000000" } ``` @@ -16526,7 +16526,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58844 + "result": 58797 } ``` @@ -16599,27 +16599,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78 }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "quantity": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, "asset_info": { "divisible": true, @@ -16630,22 +16630,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -16655,22 +16655,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "block_index": 210, - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -16680,30 +16680,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730754872.7442517, + "block_time": 1730802470.7005117, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "destination": "", "fee": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, - "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", + "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -16717,7 +16717,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -16748,19 +16748,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -16770,7 +16770,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -16783,7 +16783,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864` (str, required) - The hash of the transaction to return + + tx_hash: `0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188` (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 @@ -16803,27 +16803,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78 }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "quantity": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, "asset_info": { "divisible": true, @@ -16834,22 +16834,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -16859,22 +16859,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "block_index": 210, - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -16884,30 +16884,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730754872.7442517, + "block_time": 1730802470.7005117, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "destination": "", "fee": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, - "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", + "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -16921,7 +16921,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 350b7b2a41..34aa1f4a58 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11727,7 +11727,7 @@ "name": "offer_hash", "required": true, "type": "str", - "description": "The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH)" + "description": "The hash of the order/bet to be cancelled (e.g. $LAST_OPEN_ORDER_TX_HASH)" }, { "name": "encoding", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 5985545c37..9260eef6a3 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": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", "difficulty": 545259519, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "previous_block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "previous_block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", "difficulty": 545259519, - "ledger_hash": "cbd6077aaccad4b8436492ed89c427265cef46db99e5ab4fc9104ee8acf52628", - "txlist_hash": "bd545fdb56221a49fbf0d11c06d0f251461848fe4debc7084d6f64df7de3139d", - "messages_hash": "e9564dcdb17c6af9fb10d89cfdf0e8278c8b7784e75f5675067db314ac7e1b38", + "ledger_hash": "85d9e3b96d6032363520052aec54b68dcf93b60705db70171e4a5d6dd1dc4f69", + "txlist_hash": "861339cf0608556884dff37db1a9a6e37ef1d49bd7751e7f769d1d919f6b8250", + "messages_hash": "176a1499f05f4d8d3ba7c192cf8ff36a9b10138ce2c880c203401d0211d1a506", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", - "block_time": 1730754849, - "previous_block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", + "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_time": 1730802452, + "previous_block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", "difficulty": 545259519, - "ledger_hash": "31bc6d197c29193b312955881e0d352420393f86e998c22852033a0890b7dd82", - "txlist_hash": "50b58cbaf347b8bce5827d392fd73bf2da06794219aa281fb4584d34cae6a6bf", - "messages_hash": "2cc881c9d82adc09a571885cf005177b8d9f9ce1a33a8018ab7df52049515bd8", + "ledger_hash": "d9c62d5736d8e24356d2d415a925b6dbff251f70e674e6a0160857fe66b51f75", + "txlist_hash": "ad75976e8578dd5d59713ad0e91dfba966d52b705b0e58f118f6273556c388f7", + "messages_hash": "125638d1128e7b3343ba55d5ae5d1584a61d596a5ccb9002f4900980a8fa4b9e", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", - "block_time": 1730754845, - "previous_block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", + "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", + "block_time": 1730802448, + "previous_block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", "difficulty": 545259519, - "ledger_hash": "e8d34fcc80b4b7b1f5574520b2fd439bc2436bea05916a93352a95be8baf62d7", - "txlist_hash": "e6f61dc3f16b1c067877b71da3151f22ebced60c9031c7657135816b95704c53", - "messages_hash": "018098dab8463fe563cb98481a2656800ac78c963fb32d4c71adebb38027bbc7", + "ledger_hash": "af06333d01569b1a3f3f1f67405248456568678acf2389c2a04bdbe922ddf331", + "txlist_hash": "8c6368190fd932468d0aecfab7779ea7770cbedd7a7cf68f3d35840dd39be4a1", + "messages_hash": "aea533d82b38c4c501f3523fd48636f1e1774ca840819950917620646ce7bd75", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", - "block_time": 1730754842, - "previous_block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", + "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_time": 1730802444, + "previous_block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", "difficulty": 545259519, - "ledger_hash": "da0371bd06f15390250a7d24f7d0345e0923e252bb049504716df459c5b3496a", - "txlist_hash": "ef0fb17e7c83f75e7ea942e31460353ae5ed4cc96522bee9ae356a0815c844eb", - "messages_hash": "fd4c2b7282303c6fbded5671daaecab012c2dc85d0e8d073ca212d0be3281a2f", + "ledger_hash": "fa9779497482071f57571f71c5f0ba68731fbe6eee1ab397dff0a6bd43f8c708", + "txlist_hash": "5ac4483d2610b66ee4d94a1ca410582fd662814107653c90fd2ff867c74dcfcb", + "messages_hash": "4f1b20896965c1337611043fe95a29d63f8cf1be6855853d731357e9b11d93a0", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", "difficulty": 545259519, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", "difficulty": 545259519, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 694, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 693, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" } ], "next_cursor": 691, @@ -256,16 +256,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 690, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" }, { "event_index": 687, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55" + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "object_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "block_index": 210, "confirmed": true, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "status": "valid", "confirmed": true, - "block_time": 1730754743 + "block_time": 1730802374 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "block_index": 196, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730754765, + "block_time": 1730802385, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, "block_index": 155, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,53 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "fb783ed345fbf0bad508019a0423a7044cf2a2316ddb63cc574d59d7f100afbe", + "hash": "15788845ef5f0f222bb560ff034685e1027711b34b95a4c50b5061e986081913", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "a48a9ecfe168f608f096629ad17c0bd4c87c015bb5119b29e716b41fda150caf", + "hash": "a18d8f843dd1b3ec77bc673c74a289294b25d76cf343be7a40278872529affdc", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f33e5b0e9d19827086738088b9d77536b6fdf240c86bbe5d43bae0838328147e", + "hash": "7b81673891e8e9d17933aac18cb70872e06c0b4ba6dfefe1a67144c513db36ce", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "eaa70d3e32b332715efe71e15a8ff5ac384619717e2b0c31fe0482200cbcced6", + "hash": "a2c6d6b5e6486dc16ccab638497c541348154eef6874b8089d1dfb9cff5a70eb", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "695d6fc4a30edaa94e8ba3862b8f9f541841f548aececcde6a6ca80fd2845ecf", + "hash": "ab5c0a68b745ac17f45b2535e6cb24ddec87836f7a00e02d5170c52e998d915c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "9336c6b54d78a2a769cd02969c372bfb2ef5dbd6c9a714fece83e92a7ae280b6", + "hash": "ef95ec6603d996762b8c26e661e81cdb311c41054d8b2f059188719c0ac42511", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512103ee3f44397286b4db9741c435942fda6b8738946ec10dd8114642af76753c429521024a9bda0636cf07924a0d67e98b787ec6f2c6db78075efcb547d171e0dcdd7e4e21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + "script_pub_key": "512102462541f8c6aeeb293279f917a9e3bbc90ef308039c11286f7c6da1eab17ad71b2102957d891fbdeed7772945f63ec37e2f5d45289653a316f79a1b1c5f6b944ae275210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" }, { "value": 1000, - "script_pub_key": "512102ee3f44397286b4db971aaed86d9896b1c80c846d89d15163dc5dea80e39032982103b1d35af89e96771d73f20ad34f16946383961a5f4131ee3566e7b451bbc81fba21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + "script_pub_key": "512103462541f8c6aeeb29326a4c9270bf7130559813591cc7c7aacd506a5b7d66c3da2103781209ad4279309a2301369306122704088f5f152f4c937782c19c650163426f210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" }, { "value": 1000, - "script_pub_key": "512102c03f44397286b4db9742c47614f9513568fd496102b7d917b438caed86fd5d7d210231d35af358576694dbf20ad34f169463d1961a5f4131ee356ca7b451bbc81fbd21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae" + "script_pub_key": "512102672541f8c6aeeb29327af91429278f7c703cca26686fd381a67ee2427da2177b2102781209ad427930b036b4a326bad82704088f5f152f46161ae7acf3568163425c210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" }, { "value": 29999987000, - "script_pub_key": "00148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4" + "script_pub_key": "00142bd3245f056e748ad251456348cc06a80ff79103" } ], "vtxinwit": [ - "3044022035afa11ec9e946b67697703fdc2e06a96decf17370112fffb7ea4a2336e153010220594a26343894c18e51f935a21e4cc5242809df19e0701c53c959896096b33d1701", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022036f03055e7559d2c5321fd8260d824bee4069098eb6d4fa66cf9c84ee5dc1bd502201d9d824d9aaa9a5483d5e67d340830498e69a47f2a7bd74c695ac3d97f1ab63501", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022009641257f089d633a95a415e864ca27e057d6000d877517c0d8aaeefd72225970220283ebbdb65b997a524677e16b49c75f47288b4774d56e94c8578654ae704764301", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022013817cea24a285c0ae9069c6b42efb35be1ce260d71c3a6f987ca103d17ed0f10220181f9746d5510ebcd8f47f27bd41b6482da28bb7b3d681539933a2ed7fd21b4601", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "3044022006b4c149ca37bbcb5eed68263a29ecc8941e50288f9ef33e39fc515f7c8457db02203e91721ee78f57a45ba378463237c4b56d4e6ad499b548afa6dafd9f87e8a13b01", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7", - "304402201467ac20ee2cb7300f5eb63a63051562ae8fab13614ee633ecd076cfd234b8ff0220274aa1c0215c97e69862efc45eb6438d1b8ad16a84fef2c77b3b5e2eb808b34801", - "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" + "304402200bd2a48ab241b237ea4969c748ff31a0b179235f3e77f6f8402c5b0bb34e593902204047e885aa73be6ef20b8d952e45ea482fef7074832982e2825a88f14f2f824601", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "3044022011b046e0250be9aaffebdd20eef01983afb6514955dd3cab10f356010211cc790220767a4b9bc6dcf8c37f493c1214b52f506969268f32f72fe234dd80de9efaed2a01", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "304402200d31597256c4fd79e2f059717689f599717f25e991fb78656237d2e385a982cf022012149f8be078501aaecb611c705e33bb2d2b3cce3e9b94c54f106e3e4bd718a201", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "304402202d0520ebbeb43f727a794a302ca3378dde99f8e086200074f8481be39948fff902205a9f8acdfc57f1784793f48948e58f02e1a3e0c56127682d10f37ca679b8372a01", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "3044022029647a2d365bf559c55eba9d076a1ae82e85e8e33f81dc23de4d78407ef0c256022054985cf7b5f53c822871248d13838e82a869cae62099e7a550ed5281bb7b775001", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", + "3044022043adf0d5f0fb71b91cb82012e83ec18603aa88075517fc877311db9f071075a402204d529ad606a06c9028af5b5fbab2a3cbcc1ef8ceef6ac752453815a49901c1fa01", + "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" ], "lock_time": 0, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", - "tx_id": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a" + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_id": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, - "memo": "the memo", + "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -926,9 +926,9 @@ }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, - "memo": "the memo", + "memo": "memo1", "memo_is_hex": false, "asset_info": { "divisible": true, @@ -946,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "1f09b900f57c44298db3678ef67d8c8e79363abcc5a70f0aecfbc28535d86c11", + "hash": "f6d5f051f2c4c38f15ba35742ff9ffe1245b085eabe5de68da96ec0c27ba8eae", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e9e3b42024a82d3dcfc7d5a438061f1bddd41b80e1b9d3af3fb7edbb7cdc8f1884becbe34ff820265a578813417f5" + "script_pub_key": "6a2e954de8ddf4f43746f28f1db9b0a2c78ab46a1ef51d67b1141e9486bad185bbd85720832d1204c8cbdfe2317edceb" }, { "value": 4999970000, - "script_pub_key": "00142b76c5b1671561586aee7961c784a0f1cd248b66" + "script_pub_key": "0014fcb0ac3d1529a010b58659987e4c25a4d97f74a8" } ], "vtxinwit": [ - "3044022033ddf83ddd3e0f45497ad9ddd8f4bfb155b7ede487978ed4fa28bace3013fd9f02200dc9d7f23dd7569d1867edbc42686ee63adc1943a561b24b3ae98d9f2d4397bf01", - "02809757b436dab299fe8cd1e4013c75bcba7f8b7956f253ba9e4c1be1b813b830" + "3044022036f8e8bfe5290767811244fe804ae623e17081f74b514c24df96ad54edacd10302206a233a4d55c0635b10e3f30fc0cf33ed6b10d178100a6d09f4571cd846f832cd01", + "03472bf6a94b2ad79e65f2ddceab4c1d0ddd6df8784a951bb667fb9f49a9617ec9" ], "lock_time": 0, - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", - "tx_id": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864" + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_id": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", - "block_time": 1730754868, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_time": 1730802466, + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 694, @@ -1083,14 +1083,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 693, @@ -1112,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 691, @@ -1161,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "msg_index": 1, "quantity": 1500000000, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", "status": "valid", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1178,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 690, @@ -1193,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 694, @@ -1207,14 +1207,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 693, @@ -1236,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 691, @@ -1285,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "msg_index": 1, "quantity": 1500000000, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", "status": "valid", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1302,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 690, @@ -1314,10 +1314,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1325,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1338,10 @@ }, { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1349,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1369,27 +1369,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1425,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 690, @@ -1456,12 +1456,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1471,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 687, @@ -1483,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": null, @@ -1512,16 +1512,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 690, @@ -1543,12 +1543,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1558,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 687, @@ -1570,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": null, @@ -1600,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1621,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1642,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1663,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1684,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1705,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1729,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1775,17 +1775,17 @@ }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_hash": "6ab25a035f2b1220703204d178bf2f2e3b501b66b225c3fa453b2300780ee9c9", - "block_time": 1730754849, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_time": 1730802452, + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a:0", + "utxos_info": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1793,14 +1793,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1808,7 +1808,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1827,17 +1827,17 @@ }, { "tx_index": 74, - "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "block_index": 207, - "block_hash": "1275fcfa88a284fa73b0b0ed0ea5df93da7fe13dd8834814f2ce8f1023ebc0ca", - "block_time": 1730754845, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", + "block_time": 1730802448, + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b66c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c:0", + "utxos_info": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1845,14 +1845,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1860,7 +1860,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1879,17 +1879,17 @@ }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", - "block_time": 1730754842, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_time": 1730802444, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", + "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1897,14 +1897,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1912,7 +1912,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1931,17 +1931,17 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", - "block_time": 1730754828, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", + "block_time": 1730802440, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", + "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1949,14 +1949,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -1964,7 +1964,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1997,20 +1997,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 54, - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx1_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2029,9 +2029,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 675, @@ -2050,11 +2050,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "open", - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -2078,24 +2078,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "block_index": 209, - "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -2105,9 +2105,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 673, @@ -2119,20 +2119,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "tx0_index": 60, - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx1_index": 54, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2151,23 +2151,23 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "block_time": 1730754854 + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_time": 1730802457 }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 668, @@ -2176,17 +2176,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "quantity": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, "asset_info": { "divisible": true, @@ -2197,22 +2197,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2222,22 +2222,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "block_index": 210, - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2247,30 +2247,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730754872.7442517, + "block_time": 1730802470.7005117, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "destination": "", "fee": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, - "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", + "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -2284,7 +2284,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -2293,7 +2293,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2301,14 +2301,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2316,14 +2316,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2331,14 +2331,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2353,7 +2353,7 @@ "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2361,7 +2361,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2374,7 +2374,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2396,16 +2396,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -2417,16 +2417,16 @@ }, { "block_index": 208, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -2438,16 +2438,16 @@ }, { "block_index": 207, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -2459,16 +2459,16 @@ }, { "block_index": 207, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -2480,20 +2480,20 @@ }, { "block_index": 203, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "event": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2507,16 +2507,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -2528,16 +2528,16 @@ }, { "block_index": 206, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -2549,20 +2549,20 @@ }, { "block_index": 206, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2570,16 +2570,16 @@ }, { "block_index": 205, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "divisible": true, "asset_longname": null, @@ -2591,20 +2591,20 @@ }, { "block_index": 205, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2623,9 +2623,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", + "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", "block_index": 137, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2633,7 +2633,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754525, + "block_time": 1730802149, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2644,14 +2644,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "342bdfbe8d94be62300d5ec7e680a5ebee9efdf8d9e000410b332017d5219fc4", + "tx_hash": "282125d035559b6e107a95f7f558664d4f4fe840ad084c76d24b7ca5b533ce06", "block_index": 112, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730754423, + "block_time": 1730802055, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2663,10 +2663,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2674,7 +2674,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -2687,10 +2687,10 @@ }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2698,11 +2698,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2711,10 +2711,10 @@ }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2722,11 +2722,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2735,10 +2735,10 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2746,7 +2746,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "divisible": true, "asset_longname": null, @@ -2759,10 +2759,10 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2770,11 +2770,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2789,10 +2789,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", + "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", "block_index": 151, - "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", - "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", + "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", + "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2800,11 +2800,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754585, + "block_time": 1730802200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2819,10 +2819,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2830,11 +2830,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2843,10 +2843,10 @@ }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2854,11 +2854,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2867,10 +2867,10 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2878,11 +2878,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2891,10 +2891,10 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2902,11 +2902,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2915,10 +2915,10 @@ }, { "tx_index": 71, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2926,11 +2926,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754824, + "block_time": 1730802436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -2950,9 +2950,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2971,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -2987,9 +2987,9 @@ }, { "tx_index": 64, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2998,7 +2998,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3008,11 +3008,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3029,9 +3029,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3040,7 +3040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3050,7 +3050,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -3070,19 +3070,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", + "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3090,7 +3090,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3105,11 +3105,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3119,19 +3119,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3139,7 +3139,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3154,7 +3154,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -3168,19 +3168,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3188,7 +3188,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3203,7 +3203,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -3223,19 +3223,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", + "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3243,7 +3243,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3258,11 +3258,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -3272,19 +3272,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3292,7 +3292,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3307,7 +3307,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -3321,19 +3321,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3341,7 +3341,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3356,7 +3356,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -3376,19 +3376,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3396,7 +3396,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3411,7 +3411,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -3425,19 +3425,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3445,7 +3445,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3460,7 +3460,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -3480,19 +3480,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3500,7 +3500,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3515,7 +3515,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -3529,19 +3529,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3549,7 +3549,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3564,7 +3564,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -3583,16 +3583,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -3603,14 +3603,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -3625,20 +3625,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", + "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -3653,20 +3653,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754623, + "block_time": 1730802261, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", + "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -3681,20 +3681,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730754620, + "block_time": 1730802247, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", + "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -3709,20 +3709,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754617, + "block_time": 1730802243, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "25b168f316ca8ec76e3f4bd578a55c4506c7eefce7c42ca8287a98cdfdd23d19", + "tx_hash": "461f5d5c7edf5ab4fb9c3044b6d0cbe87893accbc6c103ee3bbc01355b45c08a", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -3737,7 +3737,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754612, + "block_time": 1730802238, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3751,8 +3751,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3760,16 +3760,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -3777,16 +3777,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3794,16 +3794,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 40, @@ -3811,16 +3811,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730754518, - "last_issuance_block_time": 1730754522, + "first_issuance_block_time": 1730802140, + "last_issuance_block_time": 1730802145, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 19, @@ -3828,8 +3828,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730754494, - "last_issuance_block_time": 1730754515, + "first_issuance_block_time": 1730802125, + "last_issuance_block_time": 1730802137, "supply_normalized": "0.00000019" } ], @@ -3842,8 +3842,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3851,16 +3851,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -3868,16 +3868,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3885,16 +3885,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 40, @@ -3902,16 +3902,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730754518, - "last_issuance_block_time": 1730754522, + "first_issuance_block_time": 1730802140, + "last_issuance_block_time": 1730802145, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 19, @@ -3919,8 +3919,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730754494, - "last_issuance_block_time": 1730754515, + "first_issuance_block_time": 1730802125, + "last_issuance_block_time": 1730802137, "supply_normalized": "0.00000019" } ], @@ -3933,8 +3933,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3942,16 +3942,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -3959,16 +3959,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -3976,16 +3976,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 40, @@ -3993,16 +3993,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730754518, - "last_issuance_block_time": 1730754522, + "first_issuance_block_time": 1730802140, + "last_issuance_block_time": 1730802145, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 19, @@ -4010,8 +4010,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730754494, - "last_issuance_block_time": 1730754515, + "first_issuance_block_time": 1730802125, + "last_issuance_block_time": 1730802137, "supply_normalized": "0.00000019" } ], @@ -4022,17 +4022,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25", - "block_time": 1730754854, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_time": 1730802457, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178:1", + "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4068,17 +4068,17 @@ }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "block_hash": "1efb64b81138936d356be28747f1dad150b9659cc8ff431942e038ee0bf7b6ed", - "block_time": 1730754842, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_time": 1730802444, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946:0", + "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4086,14 +4086,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4101,7 +4101,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4120,17 +4120,17 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "block_hash": "252ecd7c3719e2381f78bee1ae7d09da8a60eda734748bff08c8dbfefe8c68e5", - "block_time": 1730754828, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", + "block_time": 1730802440, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4880f56e98610691ff6d3ac46eeaa52350c127466f12802b76c5b1671561586aee7961c784a0f1cd248b6688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:0", + "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4138,14 +4138,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4153,7 +4153,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4172,17 +4172,17 @@ }, { "tx_index": 71, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "block_hash": "2fb2f290dd9dd78ef46c06dc3fe672a3fc25e105c542320e7fd319046e553cf4", - "block_time": 1730754824, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "2561ce95bf2aff6a835d470b4f19f9d08e4285947c740365d548cafb59791fcc", + "block_time": 1730802436, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", + "data": "02000000178d82231300000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", "supported": true, - "utxos_info": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7:1", + "utxos_info": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4190,12 +4190,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4206,17 +4206,17 @@ }, { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_hash": "210def9c77137c26da773ab5f6b789420e9a6191d1970b3bf5ede6e0d457e947", - "block_time": 1730754821, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "block_hash": "44fd5fd9c920b878146d1dd1f6f40de3294a56d4e993ddfcbd621ec91da787e9", + "block_time": 1730802423, + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21:1", + "utxos_info": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4247,20 +4247,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4282,9 +4282,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4299,7 +4299,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4325,9 +4325,9 @@ }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4342,7 +4342,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4368,9 +4368,9 @@ }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4385,7 +4385,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4411,9 +4411,9 @@ }, { "tx_index": 60, - "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4428,7 +4428,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4454,9 +4454,9 @@ }, { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4471,7 +4471,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4502,10 +4502,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, "block_index": 155, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4530,7 +4530,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4539,10 +4539,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "tx_index": 22, "block_index": 135, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4567,7 +4567,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730754518, + "block_time": 1730802140, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4579,10 +4579,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "tx_index": 18, "block_index": 131, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4607,7 +4607,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730754494, + "block_time": 1730802125, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4619,10 +4619,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4647,7 +4647,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730754490, + "block_time": 1730802121, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4659,10 +4659,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4687,7 +4687,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4705,22 +4705,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4729,22 +4729,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", + "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754515, + "block_time": 1730802137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4753,22 +4753,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", + "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754512, + "block_time": 1730802134, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4777,22 +4777,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", + "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754498, + "block_time": 1730802129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4801,22 +4801,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "be608604bbfb74748be5552f923987d7fe74c6be140702cc17fa7df503318d13", + "tx_hash": "bbfc719cd39abadecb2979609367d09fde99833a797977f42967fcbfeb3b30ba", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754478, + "block_time": 1730802109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4825,22 +4825,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4855,22 +4855,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4887,8 +4887,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset_info": { "divisible": true, "asset_longname": null, @@ -4901,12 +4901,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -4922,7 +4922,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4933,9 +4933,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985760, - "btc_fee": 14240, - "rawtransaction": "0200000000010116fb01b6a49af296f7991a03b6568e8ea53f41618aaf2efe6bdf0c7b221abd88000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a295ba188ea222475b44b30d16faa9c18458a3c59d09f5deebe45a3445d98a9e74651f4b700082e04e93660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985772, + "btc_fee": 14228, + "rawtransaction": "0200000000010112c9553dd19ad3444141e1552fa04548dce509ca8bb2b558390dfcddea62f075000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a294298e5abda16b2c4a6e62cc4218ab9fdf0f1c51546ee914debb0db32701f690f879bfe4a1fdfa628bb6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4953,24 +4953,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "data": "434e5452505254590beb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980877, - "btc_fee": 18123, - "rawtransaction": "0200000000010134134bd46a4c5d145230ef15f8b69342b5817d3f4bc49511937e147ef7cd606c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e8030000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d400000000000000004b6a498e5445293aba007dc9e95365fcae404891cc9b4d3f90c1acb6419c75db5f4bb2f048f0378f38702a37535a0cafcff630449b4d8260444a0547bdfcb7465a2de7160f91bba6da4f40d84da7052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999980891, + "btc_fee": 18109, + "rawtransaction": "02000000000101260d84a410a0dc247a37db4420db3d2a2160bc49b0b161be0fb2c816316b66f3000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e8030000000000001600142bd3245f056e748ad251456348cc06a80ff7910300000000000000004b6a494ed15e3d5ad786a466623be7759292a47f9644f464a4572cd8bc4f19985fbfe88befef2d4f49c176b82151bf16d05b3b6b7964a7c97c58e58230e3468c32db59ba6d3d0fedc0d8e7265ba7052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "order_match_id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "status": "valid" } } @@ -4979,7 +4979,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4988,30 +4988,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985761, - "btc_fee": 13239, - "rawtransaction": "02000000000101a6cbe9947c343c08d41a6c4cf34f79f478993f27f10f1eab0b50b011ce1d2654000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac61ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000" + "btc_change": 4999985771, + "btc_fee": 13229, + "rawtransaction": "02000000000101066096d8d00d808a870b478dfd229ed09fe2a6c3d10cce46fd0e8b879464d98e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459465006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "data": "434e545250525459466bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985760, - "btc_fee": 14240, - "rawtransaction": "020000000001017da4d7f8266088fa20cbf73ebca547de3ab27f9e9ced3b3541329354a3ac4ec2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0200000000000000002b6a29896e02144b4513af65e3c6a3b890c5895fa7b7d9ce40c5acc846d00fe55c74a1967f1dde79b76b152660ba052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985772, + "btc_fee": 14228, + "rawtransaction": "020000000001018a1974253fe85fef29e91f1d1693b2719d9e12bcde9324efdef621e4c1123733000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a2976a80684b5dc09f6e2426fa7c0fdc5314d4ee71dec4f2ab9331b1583af3eb6d42c8c12bb06bf0c6fcf6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "status": "valid" } } @@ -5020,7 +5020,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -5038,9 +5038,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986290, - "btc_fee": 13710, - "rawtransaction": "02000000000101330b68a63f6a0bf4324eeabdedcaba94724f9acdd71fc338d342fd1f29675bb2000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000226a202bed067be42b7470d48f783e703b0a953c71563cf44cfefcfe028ecc883ad24a72bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999986301, + "btc_fee": 13699, + "rawtransaction": "02000000000101dc386fd437628a6f89134c4ff4fbeddf2ad6a99856fbdc6d7f67091c420c8d77000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000226a202c16a9d5e454cddedf4ee84e9d90fa0c71f8dd9fb911c9096b120967158286fb7dbc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -5056,7 +5056,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5079,9 +5079,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949920201, - "btc_fee": 14299, - "rawtransaction": "020000000001014c11c5de8288b4de68b09b3ee42090881eadaaaa42c0097bdfb68a0e023577c2010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad3ffffffff0200000000000000002c6a2afb2e99f1f271d3e1669ec0ebacd4552f9ccdd27777444fcaa2be3c31bd2a04461bbef2bdb08935c0ef9cc9c90927010000001600149df55f56bda6ce8e0418c3b110dcf19bd157fad302000000000000", + "btc_change": 4949920213, + "btc_fee": 14287, + "rawtransaction": "02000000000101c332c8de3fb0c76191c5107a588c4fcb7627509536cb06bbd714e1afd79dc35e010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0affffffff0200000000000000002c6a2aadd095e8b5d1e694d35140be86ce26e77fc9481c617baa463205fa09c6dd3c01b72cc6aac1a49f1f7feed5c90927010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0a02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5103,7 +5103,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5111,7 +5111,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5128,9 +5128,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986231, - "btc_fee": 13769, - "rawtransaction": "0200000000010131ea1a6d6bd7c60ddbd7fa1d61b6b1c2dbefd99490d8b05a2603a6c10d549e1d000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a2173c51e8531ada48df30360ae316b80e64969d68a6b45ca15c580748cb7e4f31b5337bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "02000000000101b2e2feb12c6c82ed849dfdb6b9a7b5a39b76272222ef3be1bca08ca5c609d20b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a2126d5d91ae285141f81452824fa079ffdadb2f9c421bdda4741a6f697641f17f53242bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5147,10 +5147,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "transfer_destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "lock": false, "reset": false, @@ -5162,9 +5162,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983684, - "btc_fee": 15770, - "rawtransaction": "02000000000101b19ac26bdea49564e140b2029d4b5f112b43ba3ec1ce467f19f3e5140234149c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff0322020000000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d40000000000000000236a218fc47ed77839b421c2b4a7d3ebd4d9f0ec4ebd7b8c0c7bc4b505968245448dea5344b2052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999983697, + "btc_fee": 15757, + "rawtransaction": "02000000000101a049022e804c380a150aee7077be87f4263b62ab39b582672c4b1809688d719e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0322020000000000001600142bd3245f056e748ad251456348cc06a80ff791030000000000000000236a213d4112b69dbeee312084dab62f509a25acea023ce4423fa803d13c538052dee3fe51b2052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5189,16 +5189,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", 1 ], [ "MPMASSET", - "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", 2 ] ], @@ -5207,26 +5207,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002808eb00b3e09e74ba5d02d6ac37a155ae02c1b15d480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4840000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002802bd3245f056e748ad251456348cc06a80ff7910380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945276, - "btc_fee": 52724, - "rawtransaction": "020000000001041a1250ec35b55569fd30cbf046022141a0486319174e07e11c7b8a2db83cd9f4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff7d552d27f7ff34c93b8687dbd87357ae0f573be66c031f12e93d721523e9a995000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff523f323acb3c79f41b1428228e9e98006cbb3529b31cc7e98381e5ff0abf1e72000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff8bcd4df934dacb9addb7a1ce084ab23559896fd982f2a4abdb17cf35dad8c1f6000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff03e803000000000000695121027ba892556213eb2c231b27b136dbff2e43a06f6fbca92ac97c6db2f7ffca946a2103085215750aa78fcc3c3ebb58f6d4163ba7c81ef28be2182ef43ffb55e3a7e48f21028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210364a892556213eb2c23c827b3b6554f257d8d8824197907a3bf13a7ad1fe68f0e21031d8694a381f96009e11978e2f7d2e441c253ed339499506ef43ffeb6832f200621028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae3cf216a8040000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000000000000", + "btc_change": 19999945318, + "btc_fee": 52682, + "rawtransaction": "0200000000010498e3a0fa2aca6665ad6ae7169d9c0ac92ad355647d00333bf1a76160f1b859ae000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff6dbf92b66757956f9a97a7312f10e47b874f99ceb7c9ae5c8c5f428eb254281000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdfe89bfb8c1a4f480776f689ff9106ebc57bf1983f1e5dfcc57c85f66036586b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffff13f6169bb52da5469ad2953793c063a091bf0ce4e121847d174bc299b00519000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e803000000000000695121020c1b62f2cada3b921bdd32a534b1e38b1ceb9d041efb769d665175ead85cdedb21036d3fd87aa14298c3dd9492bd7cb4515d1446fc3490cb04002a6b98291c51fdf8210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512103131b62f2cada3b921b0e32a7b49a30af43caf370942927d8051db9ec705329482103fc3c59be15f7e60c1fb166c3d371e0653c97b8ec50266b402a6b9dca7cd939e3210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae66f216a8040000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5238,7 +5238,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5256,7 +5256,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5268,9 +5268,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985172, - "btc_fee": 14828, - "rawtransaction": "020000000001012702d03614e713d28c3e4c01a838d9c5b2eeb12496ccb5423584af348f56e4a4000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000356a33c698b0b058e7527b8dea6d7c15f648dade91b9e217883042182de5cc03260e79e519ea9d0870d8e3f5bafb61b028429127051214b8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985184, + "btc_fee": 14816, + "rawtransaction": "0200000000010194d51512a6fd477211152d221e39b7d811d0fc8dbe16bb34ae30f71ab0e5fd74000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000356a33548096b524cde9a928f95300164119468764a93e87cc82170a25f188cddb5151867e11f213a4dd43db41754fce5624484126f120b8052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5292,8 +5292,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5310,19 +5310,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48", + "data": "434e54525052545902000000000000000100000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985466, - "btc_fee": 14534, - "rawtransaction": "02000000000101ed13f7d9bf1d87d36f3225bf6cf5e0c7f142aa88abd9763a1c28c8b938ca044c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000306a2ea9295a205b1b2256ea5fdb16d168318a070bc85a9f40c96afcd2060c00417f44b9d8a1eb40df502d3245e92a37353ab9052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985478, + "btc_fee": 14522, + "rawtransaction": "02000000000101c2d20c43b5c5ab37134bcb2eb9fe8d1955d0e44b7818f6697f4a63899beee703000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000306a2e9d707c1e44ed90e162402f0f6c003fda423203f4fb324f46bffce149474d979de962a604bf558508beb742af9a6f46b9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "quantity_normalized": "0.00001000" } @@ -5332,24 +5332,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4807ffff", + "data": "434e5452505254590480c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986231, - "btc_fee": 13769, - "rawtransaction": "020000000001017443aa984d8b162bdc9495a9c1ff98f0726a2276c5b195640d05eccf72387b3c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000236a213a95fec1a258013af6f7f4fa23e67f928ccf78f3f737380092d4306e339ce4777937bc052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999986242, + "btc_fee": 13758, + "rawtransaction": "0200000000010164205d055995ee2dd0de506af86e0f4639cc449e80e5e497d0dfb7a5020dee26000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a210818cede99d429b6a234cd8f1d5c234e402f2b0c63343a629a0a80dd61e25f6b2342bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "flags": 7, "memo": "ffff" } @@ -5359,8 +5359,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "quantity": 1000, "skip_validation": false }, @@ -5368,9 +5368,9 @@ "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949812584, - "btc_fee": 14416, - "rawtransaction": "020000000001010aa9873cdb43e3f44f4d2491a655dd127c69be188ef9b864bdbf64da0832cb5703000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b48ffffffff03e8030000000000001600142b76c5b1671561586aee7961c784a0f1cd248b6600000000000000000c6a0a794ec3d5222cae73a3bd6825082701000000160014d68b5eefc5dd27c3ba0106f27a659bf3c11f7b4802000000000000", + "btc_change": 4949812595, + "btc_fee": 14405, + "rawtransaction": "02000000000101cf6559937a82976daf8a316fcd86d0e1ad2d32e2b29ee9b0085d937f1dd59c5e03000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6fffffffff03e803000000000000160014fcb0ac3d1529a010b58659987e4c25a4d97f74a800000000000000000c6a0acb7e80c5b5e6979c1bdb7325082701000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5383,7 +5383,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5413,9 +5413,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985407, - "btc_fee": 14593, - "rawtransaction": "0200000000010182ad15aabac2d01ded2f1003268ee8556df3ce841c837eb7a69a9a32d8b1db6c000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000316a2fb23104f3d5d644520d0b478314e4b0cf49c8c069996c8fe00d20b99975f27618026d8837f8230fbde65daa23b6cffbffb8052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999985419, + "btc_fee": 14581, + "rawtransaction": "020000000001010ada3b7b5f8c2f08473cc656a89a2b2c5c36024a4eedfddfbe8711e1a5d93fc2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000316a2f11b322d7d2af93cd0af4d5e852286b64696ed73f45be15ac3b416f485a1222208f49d1bd922dc74c8b5dbf74432b820bb9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5450,14 +5450,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5467,9 +5467,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986996, - "btc_fee": 13004, - "rawtransaction": "02000000000101ec45ccd12a4c63836683fa0c347f6ad4a8abfac00987a8ae3842a6a760f183ec000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff020000000000000000166a1490a595e5f6132e43e59c565f13ad95fdec459d2634bf052a010000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000000000000", + "btc_change": 4999987006, + "btc_fee": 12994, + "rawtransaction": "0200000000010164af163ce2b6045b02c10ef15d398b2fc712f88ca51666ab06b0f193b02bde2c000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000166a144159228c9cfd2f9ef39218bacbeacadb122f7cd63ebf052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5484,8 +5484,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a:3", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:3", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5499,12 +5499,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c363937653938353163643238383636343765343865306538653438393732623761666432366633646134653733306233383861393033646535646538303933613a337c5843507c31303030", + "data": "434e545250525459646263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c353866346536663734343438333066663933336432663133343338356164653632343162663138333634363233666534383831323064626137636634336538363a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918208, - "btc_fee": 78792, - "rawtransaction": "02000000000106ec26e38d001b524d87f6e28fcbc311178df2dbfcc6516cebbf84004c8312b53f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff1d2795aa3485c988e84fb2e7aa5c7f8ff5edcf36cfb821509f14c3adebe2ec03000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff3529e97b54a82ef5a789daa08b2435014a6b9b36b255bdd8fea9de06a87a9a9a000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff95ed83a21618112cb5b4d145fcd5e78ef5c462501dc275a3962649f1148dec44000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffffe5439ca5eada80e835e68960c42e9fce80044108d885d6defa611726e838df9f000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff4358938a7a8b42811031330785715aa7b9f4d501d47845ecdd0625d097e028cf000000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d4ffffffff04e8030000000000006951210300e49164f5b810f60465d641f7d79e41f8887a91b8dd2cbbe88e58fa24c46d02210255c29677b057bba4cad10548ee7ab8d25107da8aed8dfd6d8f0321c8fdd160f821028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee8030000000000006951210200e49164f5b810f60430d746b79b9706fd8a2e85e7d53aedf8d704f868c82a5b210203c4d566be06b0a09a971042aa74b696540099c2e3d5f3218a5e7398a08c6d8921028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753aee803000000000000695121022ae49164f5b810f604318d11e4999c4c93fd499ce2dd6fed9def61cc50f11d6f210331a6e207d8628296fca474239e1181a56462aafadbb4ca11b93a16adc4e9555021028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e753ae806c22fc060000001600148eb00b3e09e74ba5d02d6ac37a155ae02c1b15d402000002000002000002000002000002000000000000", + "btc_change": 29999918271, + "btc_fee": 78729, + "rawtransaction": "02000000000106aba0913452807a575c5886e2fca37f478d734435861d7385abd58f7783276f3d000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff6930ebcd6f0611e8512035762b802a69d8dc1ad8f0ecb92e99ba891c4ba589c2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffbbc19d0ea4db645dca159ec2836cee71d8ad3db773fc7466d507e6943d5ecd64000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffd0c7dafcbbfbfc4ebda10c19cbdbc5a45fb6515fb420154b9a5cb22d05f32428000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdbb42518a577d3cfc97a7be0f446e071201d6a8eccefde9af209ad60115692b7000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff2e0ee5289c55b3316c76f94ca113af4aec414351879ce4089bb816e62d09f91000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff04e80300000000000069512103aa75846a822e62c7f6a9ab9e747ec964717a9c060597b31986d8f9df4af7b1422103055a828ce07083f04f5013ee7bc9f618c4a963d29d534e17816af75ec5f21719210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512102aa75846a822e62c7f6fafdc93232cb252e2cc35f519be246d38efb8b46f7bad421025258808de1728fe7065c51e023cfbd4cd0f92e82c3014e5bd030f05dc3a245ee210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee803000000000000695121038075846a822e62c7f6feacc53030cb691009aa1053cfe010e2bdcfb87ec2db2c2103363db6bfd543ed81376462d617f98f7fb69c1abafb307c6bb452916aa0c471c7210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aebf6c22fc060000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5517,8 +5517,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5532,12 +5532,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964313538346138643361343130346539376630666265306133643064393463303339353137303332303337303464356263663735343065353334373062326635353a307c626372743171333663716b3073667561393674357064647470683539323675716b706b3977356570703639377c5843507c31303030", + "data": "434e54525052545964613262343736656139653530373032313461353564663464663836396331376564626335653266326231653139363034646365666266303164316334373939303a307c6263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030161, - "btc_fee": 46839, - "rawtransaction": "020000000001037da5c62bf0518bab542904911d47e5ba189ff24c3bc881335f98fd4382900c7f0100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325fffffffffacabf9810b671b81ba9309a3be44da18d0272828ce007e4690c99122a2f45a40000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffffb4368a5fafe65793022c45fcd58316958291c1b030a1da83cde5cdc8b03db7880100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb325ffffffff04e8030000000000006951210350e8ed5d86b1d3f35116ebda9205bc56837066971cf39594ac77e26b2cd2b1602102c9527c9f10b57e0c47d0979207be90cde10528dc0d3fcad7380fc482048755ea21021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee8030000000000006951210250e8ed5d86b1d3f35142bfda9905ea5e8571619618f9918df723f62f7bc1e7db2102cf503e9010a2214d45d992df07ffc399a64770da033dc8c67c06d78f0ac554a521021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553aee803000000000000695121027ae8ed5d86b1d3f35117aa9f9c08ea12bf0057df1cf391c19540845b4ab0d4c12102f9334ffb20d1473824e0a4ab328fa7fdd23718ef3a0ffeb30d6da7e433b261c821021f735da67241391a2f276349c768652de82da1aa60ce15f7abbb4557258662a553ae51770b270100000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32502000002000002000000000000", + "btc_change": 4950030198, + "btc_fee": 46802, + "rawtransaction": "0200000000010301a75a6b897f9f13e4ea0f796dc40752d61041a3bebdf2fa658458b24a48fa8601000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffffbcd34029e0b936d9407ac254ac3bcf0fb4065f87468e48a3ae8f7c94aa7f685f00000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff7c6fe268aeb8905708c0bf749c079c3d44d513b2c6732740706959d64cdf9ef101000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff04e803000000000000695121024dd9c964e0b9c3150116fe706abab691820beb22ade3906589783bbe4c0e86cf210282e94618eaf7031583f72e890b2eeb110a96b1c1d87335813a17f32d979e5c282103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee803000000000000695121034dd9c964e0b9c3150110f97239eab0c4d35deb7ea8e99729d92a7dab484adb162102d4bb4819baa20312d7f62cd95c27ed130cc3b69087677c8c7d1fab798d9c48722103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee8030000000000006951210267d9c964e0b9c3150147e62a6eedb3dbbf29823ba9e39765bb490fdf793be2d52103e4dd227ed2c13a76b2c04bed694dde7438f083a3e91604b80c27c749f4fb3a7e2103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53ae76770b2701000000160014030bb62d246ddd169864a9ebe96043a04184fb6502000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5553,8 +5553,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -5562,16 +5562,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730754821, - "last_issuance_block_time": 1730754821, + "first_issuance_block_time": 1730802423, + "last_issuance_block_time": 1730802423, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", - "owner": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "owner": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "divisible": true, "locked": false, "supply": 100000000000, @@ -5579,16 +5579,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730754790, - "last_issuance_block_time": 1730754790, + "first_issuance_block_time": 1730802400, + "last_issuance_block_time": 1730802400, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -5596,16 +5596,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730754612, - "last_issuance_block_time": 1730754620, + "first_issuance_block_time": 1730802238, + "last_issuance_block_time": 1730802247, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "owner": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "issuer": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "owner": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "divisible": true, "locked": false, "supply": 100000000000, @@ -5613,16 +5613,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730754608, - "last_issuance_block_time": 1730754608, + "first_issuance_block_time": 1730802235, + "last_issuance_block_time": 1730802235, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 100000000000, @@ -5630,8 +5630,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730754564, - "last_issuance_block_time": 1730754564, + "first_issuance_block_time": 1730802189, + "last_issuance_block_time": 1730802189, "supply_normalized": "1000.00000000" } ], @@ -5643,8 +5643,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "owner": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false, "supply": 10000000000, @@ -5652,15 +5652,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730754459, - "last_issuance_block_time": 1730754470, + "first_issuance_block_time": 1730802090, + "last_issuance_block_time": 1730802100, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5668,14 +5668,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5683,7 +5683,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -5696,7 +5696,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5718,9 +5718,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5735,7 +5735,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5761,9 +5761,9 @@ }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5778,7 +5778,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5804,9 +5804,9 @@ }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5821,7 +5821,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5847,9 +5847,9 @@ }, { "tx_index": 60, - "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5864,7 +5864,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5890,9 +5890,9 @@ }, { "tx_index": 76, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5907,7 +5907,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5938,13 +5938,13 @@ "/v2/assets//matches": { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5958,7 +5958,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5978,13 +5978,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 52, - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5998,7 +5998,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6018,13 +6018,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", "tx0_index": 49, - "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 50, - "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6038,7 +6038,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6058,13 +6058,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6078,7 +6078,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6098,13 +6098,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -6118,7 +6118,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6145,20 +6145,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "event": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6166,20 +6166,20 @@ }, { "block_index": 125, - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", + "event": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6187,20 +6187,20 @@ }, { "block_index": 124, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6208,20 +6208,20 @@ }, { "block_index": 124, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "event": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6233,16 +6233,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6260,12 +6260,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -6277,16 +6277,16 @@ }, { "block_index": 209, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -6298,16 +6298,16 @@ }, { "block_index": 208, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -6319,16 +6319,16 @@ }, { "block_index": 207, - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -6340,16 +6340,16 @@ }, { "block_index": 206, - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -6372,14 +6372,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", + "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6394,20 +6394,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6422,20 +6422,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6450,20 +6450,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -6478,7 +6478,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730754459, + "block_time": 1730802090, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6490,10 +6490,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6501,7 +6501,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -6514,10 +6514,10 @@ }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6525,7 +6525,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -6538,10 +6538,10 @@ }, { "tx_index": 74, - "tx_hash": "09f58875efeef6501326826d7b5516a58ad2767dd314ab21ac8a33d3d39bdf8c", + "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", "block_index": 207, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6549,7 +6549,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "asset_info": { "divisible": true, "asset_longname": null, @@ -6562,10 +6562,10 @@ }, { "tx_index": 73, - "tx_hash": "530cc20346989622fd41f7ba7185af04483b2dd1acf9715dcc01681f33179946", + "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", "block_index": 206, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6573,7 +6573,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754842, + "block_time": 1730802444, "asset_info": { "divisible": true, "asset_longname": null, @@ -6586,10 +6586,10 @@ }, { "tx_index": 72, - "tx_hash": "697e9851cd2886647e48e0e8e48972b7afd26f3da4e730b388a903de5de8093a", + "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", "block_index": 205, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6597,7 +6597,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754828, + "block_time": 1730802440, "asset_info": { "divisible": true, "asset_longname": null, @@ -6616,9 +6616,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6627,7 +6627,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6637,7 +6637,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6653,9 +6653,9 @@ }, { "tx_index": 29, - "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", + "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", "block_index": 142, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6664,7 +6664,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6674,7 +6674,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754542, + "block_time": 1730802167, "asset_info": { "divisible": true, "asset_longname": null, @@ -6690,9 +6690,9 @@ }, { "tx_index": 30, - "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", + "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", "block_index": 150, - "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", + "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6700,10 +6700,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 0, - "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6711,7 +6711,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754582, + "block_time": 1730802197, "asset_info": { "divisible": true, "asset_longname": null, @@ -6727,18 +6727,18 @@ }, { "tx_index": 33, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6748,7 +6748,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -6769,9 +6769,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6780,7 +6780,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6790,7 +6790,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -6818,7 +6818,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6826,7 +6826,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6835,7 +6835,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6843,7 +6843,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6852,7 +6852,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6860,7 +6860,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6869,7 +6869,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -6884,27 +6884,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6919,7 +6919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -6933,27 +6933,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", + "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", "block_index": 147, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6968,7 +6968,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754561, + "block_time": 1730802186, "asset_info": { "divisible": true, "asset_longname": null, @@ -6982,19 +6982,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7002,7 +7002,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7017,7 +7017,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -7031,19 +7031,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7051,7 +7051,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7066,7 +7066,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -7089,10 +7089,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7117,7 +7117,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7135,22 +7135,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "0a76474f39c293d6292a14a7e610effafd664a73ee6316b51ffc8c67415d6f14", + "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7159,22 +7159,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934", + "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", "tx_index": 12, "block_index": 124, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754466, + "block_time": 1730802096, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7183,22 +7183,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7213,22 +7213,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "6660dcdfc2c80afb6fa5a7dde907e7c8144b64d0b2a942f4b8a52d873be0d11f", + "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754462, + "block_time": 1730802093, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -7244,9 +7244,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7261,7 +7261,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7287,9 +7287,9 @@ }, { "tx_index": 52, - "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "block_index": 187, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7304,7 +7304,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7330,9 +7330,9 @@ }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7347,7 +7347,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7373,9 +7373,9 @@ }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7390,7 +7390,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7416,9 +7416,9 @@ }, { "tx_index": 60, - "tx_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", + "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", "block_index": 209, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7433,7 +7433,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7464,9 +7464,9 @@ "/v2/orders/": { "result": { "tx_index": 54, - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "block_index": 210, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7481,7 +7481,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7509,13 +7509,13 @@ "/v2/orders//matches": { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7529,7 +7529,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7549,13 +7549,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7569,7 +7569,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7589,13 +7589,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7609,7 +7609,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7636,15 +7636,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "btc_amount": 2000, - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "status": "valid", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "btc_amount_normalized": "0.00002000" } ], @@ -7655,9 +7655,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "block_index": 187, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7675,7 +7675,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730754711, + "block_time": 1730802340, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7701,9 +7701,9 @@ }, { "tx_index": 54, - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "block_index": 210, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7721,7 +7721,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730754868, + "block_time": 1730802466, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7747,9 +7747,9 @@ }, { "tx_index": 49, - "tx_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", + "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", "block_index": 184, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7767,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754638, + "block_time": 1730802275, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7793,9 @@ }, { "tx_index": 51, - "tx_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", + "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", "block_index": 207, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7813,7 +7813,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754845, + "block_time": 1730802448, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7839,9 +7839,9 @@ }, { "tx_index": 58, - "tx_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", + "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", "block_index": 193, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7859,7 +7859,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754743, + "block_time": 1730802374, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7890,13 +7890,13 @@ "/v2/orders///matches": { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7913,7 +7913,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7933,13 +7933,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 52, - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7956,7 +7956,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754711, + "block_time": 1730802340, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7976,13 +7976,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7999,7 +7999,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8019,13 +8019,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", "tx0_index": 49, - "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 50, - "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8042,7 +8042,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754638, + "block_time": 1730802275, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8062,13 +8062,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8085,7 +8085,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8111,13 +8111,13 @@ "/v2/order_matches": { "result": [ { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8131,7 +8131,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8151,13 +8151,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", "tx0_index": 51, - "tx0_hash": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 52, - "tx1_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8171,7 +8171,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730754711, + "block_time": 1730802340, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8191,13 +8191,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5_481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", + "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", "tx0_index": 49, - "tx0_hash": "5afc652786976dbb6923ef871b06ff5383daa7af1f74c0042d72dbc7477a6ef5", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 50, - "tx1_hash": "481ac178d3da9c2e8569261c50bb3ebfd39a280f834927fc3921bdbf22e993bd", - "tx1_address": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8211,7 +8211,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730754638, + "block_time": 1730802275, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8231,13 +8231,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 60, - "tx0_hash": "e6cfff0a79a183655c32446a54104cefacb93d1a4c46d749ceed6a65b002a783", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_index": 54, - "tx1_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8251,7 +8251,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8271,13 +8271,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx0_index": 54, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx1_index": 76, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8291,7 +8291,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8336,66 +8336,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", + "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", "block_index": 121, - "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", + "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730754455, + "block_time": 1730802086, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "17ddd01be8b6259737480ce5d41d2296adfd6fad2dd5fd25ba22a7bd25327197", + "tx_hash": "6fa2b808ca4cbe55962246eccb58ff39bf86a963fd2d557b0ff9df2b7ca2e5a0", "block_index": 120, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730754452, + "block_time": 1730802083, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b68db9d455df4a1461290497eaa93e1b057416b73ec917d8d7b2b25fbcfc8ba7", + "tx_hash": "1056bd10fc8114a8914c302c232de98308caabbdd1fe9914e6fa838d74d2c941", "block_index": 119, - "source": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg", + "source": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730754448, + "block_time": 1730802078, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "4f57e9927e556cd34c39dbdeba6265fc1d88e60b3bf2e08bc874b837828ff0b7", + "tx_hash": "3fc43bf9e1c19a92e27d17eec17982d27b8b84b227215bb4a549f5bdc0f7856b", "block_index": 118, - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730754444, + "block_time": 1730802075, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "216cb7c25a848ecee97deb433973131fbc9af42fa729e1e3febf0fae9d5ebc62", + "tx_hash": "d8c65c1b98d461160788c8c81a24437cf47e85269115a619fd32b2dadc9ca3b3", "block_index": 117, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730754441, + "block_time": 1730802072, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8407,9 +8407,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8418,7 +8418,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8428,7 +8428,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -8444,9 +8444,9 @@ }, { "tx_index": 29, - "tx_hash": "a6867c23f18244f17800b959df38ff8237100a1284671fb25d5b522e57dc3494", + "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", "block_index": 142, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8455,7 +8455,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8465,7 +8465,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754542, + "block_time": 1730802167, "asset_info": { "divisible": true, "asset_longname": null, @@ -8481,9 +8481,9 @@ }, { "tx_index": 30, - "tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", + "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", "block_index": 150, - "source": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", + "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8491,10 +8491,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "1eb72dcedc0dc0cf3c0e998d366804c230f71e6b335b5fd6f78ef13052436c09", - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 0, - "last_status_tx_source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8502,7 +8502,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754582, + "block_time": 1730802197, "asset_info": { "divisible": true, "asset_longname": null, @@ -8518,9 +8518,9 @@ }, { "tx_index": 64, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8529,7 +8529,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8539,11 +8539,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8555,18 +8555,18 @@ }, { "tx_index": 33, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8576,7 +8576,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -8597,9 +8597,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8608,7 +8608,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8618,7 +8618,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -8638,19 +8638,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8658,7 +8658,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8673,7 +8673,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -8687,19 +8687,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8707,7 +8707,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8722,7 +8722,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -8741,20 +8741,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8775,20 +8775,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -8811,12 +8811,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "tx_index": 41, - "utxo": "116cd83585c2fbec0a0fa7c5bc3a36798e8c7df68e67b38d29447cf500b9091f:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "utxo": "ae8eba270cec96da68dee5ab5e085b24e1fff92f7435ba158fc3c4f251f0d5f6:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "divisible": true, "asset_longname": null, @@ -8828,16 +8828,16 @@ }, { "block_index": 154, - "address": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", + "address": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "divisible": true, "asset_longname": null, @@ -8858,27 +8858,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 694, @@ -8887,14 +8887,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -8905,9 +8905,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 693, @@ -8916,9 +8916,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -8928,24 +8928,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -8955,9 +8955,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 691, @@ -8969,15 +8969,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } }, "/v2/events/counts": { @@ -9012,16 +9012,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -9031,9 +9031,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 690, @@ -9043,12 +9043,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -9058,9 +9058,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 687, @@ -9070,39 +9070,39 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", - "utxo_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "block_time": 1730754868, + "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730754854, + "block_time": 1730802457, "asset_info": { "divisible": true, "asset_longname": null, @@ -9112,24 +9112,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -9139,9 +9139,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_time": 1730754849 + "block_time": 1730802452 } ], "next_cursor": 656, @@ -9158,27 +9158,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9193,7 +9193,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -9207,19 +9207,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "4b1f80a0bebef4730955ce0e21759a5e9821d3910bfaa8cd4a8d1cdace45e9e8", + "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9227,7 +9227,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9242,11 +9242,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754786, + "block_time": 1730802395, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -9256,27 +9256,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "a4452f2a12990c69e407e08c8272028da14de43b9a30a91bb871b61098bfcafa", + "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", "block_index": 147, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "destination": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "last_status_tx_hash": null, - "origin": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9291,7 +9291,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730754561, + "block_time": 1730802186, "asset_info": { "divisible": true, "asset_longname": null, @@ -9305,19 +9305,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f156aa09eaeeb8212ae182afa957961e6802578256033cb58fc545de24f21a25", + "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9325,7 +9325,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9340,7 +9340,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754539, + "block_time": 1730802164, "asset_info": { "divisible": true, "asset_longname": null, @@ -9354,19 +9354,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "eabec5151982d2926cc3be5d7ab3b08bd0129d4b61b444d815377ef68aefebbd", + "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", "block_index": 140, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "3fdba77ee882cadf97e4498e156923293e643331e1479a4e4377bf44514cfdec", + "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9374,7 +9374,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9389,7 +9389,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730754535, + "block_time": 1730802160, "asset_info": { "divisible": true, "asset_longname": null, @@ -9408,10 +9408,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9419,7 +9419,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -9432,10 +9432,10 @@ }, { "tx_index": 77, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9443,11 +9443,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -9456,10 +9456,10 @@ }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9467,7 +9467,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -9480,10 +9480,10 @@ }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9491,11 +9491,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -9504,10 +9504,10 @@ }, { "tx_index": 75, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9515,11 +9515,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -9534,14 +9534,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -9556,20 +9556,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "5e42629e369d96d248345e21d5ac75700f1313a5b3d73300b001c56535a9dbd4", + "tx_hash": "e8b357aa91530c00239d9e85624339c7d502fcd1042ba98b4255292588bc9a27", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", - "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "transfer": false, "callable": false, "call_date": 0, @@ -9584,20 +9584,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754790, + "block_time": 1730802400, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "0cbbd5e3988984e84d5732b64969ddf43ae1616ed6cd3f37ff4ebd64a32938ec", + "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -9612,20 +9612,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754623, + "block_time": 1730802261, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85691ffb932878864cff581d4cbadab275bc736339474622dcf5c83113fec66d", + "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -9640,20 +9640,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730754620, + "block_time": 1730802247, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "036eab0dfe7bf2ffea8d94995fd23f3aebf1c4f61a8b96e812c5c9fc8da78f10", + "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -9668,7 +9668,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754617, + "block_time": 1730802243, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9679,14 +9679,14 @@ "/v2/issuances/": { "result": { "tx_index": 70, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "transfer": false, "callable": false, "call_date": 0, @@ -9701,7 +9701,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9710,16 +9710,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -9730,16 +9730,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" } ], @@ -9750,9 +9750,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9760,14 +9760,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754528, + "block_time": 1730802152, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c6b8725f71c57a566f138e66f8f19a01b9f4eb69fa60528711a185ce7c4f4fc2", + "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", "block_index": 137, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9775,7 +9775,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754525, + "block_time": 1730802149, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9785,9 +9785,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9795,17 +9795,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730754528, + "block_time": 1730802152, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, "block_index": 155, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9830,7 +9830,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9839,10 +9839,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "tx_index": 22, "block_index": 135, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9867,7 +9867,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730754518, + "block_time": 1730802140, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9879,10 +9879,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "tx_index": 18, "block_index": 131, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9907,7 +9907,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730754494, + "block_time": 1730802125, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9919,10 +9919,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9947,7 +9947,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730754490, + "block_time": 1730802121, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9959,10 +9959,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8008b0778599c889ef537e5d5bf4cb6ee966c912754e89b0415ce9709ba5c251", + "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9987,7 +9987,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730754470, + "block_time": 1730802100, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -10005,22 +10005,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10029,22 +10029,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "57a0b20cb74d3bbff0b1e83869451e8c3c1a36efd600495ea13bd7533ea6ac85", + "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754515, + "block_time": 1730802137, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10053,22 +10053,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "079e56ab5de05e1c94bfe8072a36edb041fab3bde91235c2741b5a8799cf56ea", + "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754512, + "block_time": 1730802134, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10077,22 +10077,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c83c5e1bc59348bf911a0cd24f1855189b4abff6ae8d4c43f721e12f76dbfdda", + "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "0775572e85fb027a360b4778899871372e3c257210674ef76e69f00bb4f1e335", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754498, + "block_time": 1730802129, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10101,22 +10101,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "3d947603d199500cf82471d766636ee73f5b9b1ab7994885f70d295231d24752", + "tx_hash": "25b732f7012bae585692e26dff9e0cae7420d2d34c758ae58e1e872c4c0605ac", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "fairminter_tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754487, + "block_time": 1730802117, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10130,22 +10130,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10162,8 +10162,8 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c", - "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" + "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3", + "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" }, { "vout": 0, @@ -10171,8 +10171,8 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9", - "address": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp" + "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882", + "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" }, { "vout": 2, @@ -10180,8 +10180,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e", - "address": "bcrt1qsfgwj3g4yh5u7qj3cn2rcfq0ymhpfqt4r336kg" + "txid": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87", + "address": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp" } ], "next_cursor": null, @@ -10190,31 +10190,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b" }, { - "tx_hash": "39f20f4d14a040c91dd55373cc3056e0aeb94179f51f411ecd03489192e12934" + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" }, { - "tx_hash": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39" + "tx_hash": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140" }, { - "tx_hash": "f93447495abf4a163194a6319c9447c0ab7da997f808a615c131ef35434cc33c" + "tx_hash": "c5ae623bb16527836c14d80200db239faf600171f9a8bbce57eb17f98e83dc69" }, { - "tx_hash": "3a4dd199180fd38b85c2b4afb6dfdc79b904e76df3c041b0d0cccd17204f8ba5" + "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75" }, { - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae" + "tx_hash": "b85036cbfa2d68a737e3168b0f4eee86af23b648867c9a04672f36d423ebfe7d" }, { - "tx_hash": "c9e1bdb5ce778d2a17862427338d102ba9219c3d5ad6115d123ddf2345a7a1cd" + "tx_hash": "8e25e9254d6bddaea902953b00cba7ff65ffd772d2876aabff6026e0a9b03db6" }, { - "tx_hash": "08497a8ddebcc6b0d334b98818bad3d9050e3e71bd821dcfc59270bb9d9a19d8" + "tx_hash": "391f3d89a1a54c1f6244c8065f7eedac51effeabfa3cfa3d47dd7901c385d5d1" }, { - "tx_hash": "6e61189defb65cb99f6f025af46b26bf4335e3fe491157807982d3053725b2f6" + "tx_hash": "d5a7c6ca15b47d85e67bfb6bc3d15fbb644691439c552af371a6328d0bae8af7" } ], "next_cursor": null, @@ -10222,8 +10222,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "aaf75b4666e66b95cff047812c285a3f78610420f509717a801d62c5d9472383" + "block_index": 10, + "tx_hash": "ce652a5add340982733c4b9f78851d770ad293cb125b7139c5c6888a9585e614" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -10234,7 +10234,7 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "c27735020e8ab6df7b09c042aaaaad1e889020e43e9bb068deb48882dec5114c" + "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3" }, { "vout": 0, @@ -10242,20 +10242,20 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "7f7623bb7d854e2f967a222f98fb276910fc76a4b48e57cb3ff8271940b60af9" + "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "028fd43c9a027776209b618787fb318022be17614e2da26ae69e464f27653279e7" + "result": "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" }, "/v2/bitcoin/transactions/": { - "result": "020000000001018e1736a71efba3a3d66ef0679c74ba83f331d0297403d411575f1197afc15ebe0100000000ffffffff03e80300000000000016001494b8bd87b21fe84c833eaf5aa452930f9fecb32500000000000000000c6a0aba2bf82a6f3f007f486eeb140927010000001600145ef1cb2164d56b362bc50f78174c44075e34c9c4024730440220542281337e069d592be93cddae391fb6e66c63f117cbad0390ee80d88de0502d0220699aad912c39f5804108239b775a6e6c3dfe8a6624109012ae7f83abe8c83127012102ea4592b4061746b40fc9fef3f888299461743e8b632c755abe227355fa747f4c00000000" + "result": "02000000000101873c745176e6e026a77e6ad4118223dad255017dcf24f727619b597db1d41cd20100000000ffffffff03e803000000000000160014030bb62d246ddd169864a9ebe96043a04184fb6500000000000000000c6a0af928ee36123adc49716aeb1409270100000016001427ef74571f9a85ec586af7739d92549c0c3156c90247304402204ad41dd2b8a71d4d2ab33446754357ab3509b8f75270dfda2e22c9fd3cfa0ef00220569aac8a21d95ff5b46af49db36868a5cb22c86e2b6ed70cfea241a4620390ba012103ded09b2bbdb12beffbc4bd367813e7d396da685973b1cf4e4ffe273c8578780a00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58844 + "result": 58797 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -10275,27 +10275,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78 }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "quantity": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, "asset_info": { "divisible": true, @@ -10306,22 +10306,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10331,22 +10331,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "block_index": 210, - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10356,30 +10356,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730754872.7442517, + "block_time": 1730802470.7005117, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "destination": "", "fee": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, - "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", + "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -10393,7 +10393,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -10402,19 +10402,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10424,7 +10424,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -10433,27 +10433,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78 }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "quantity": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, "asset_info": { "divisible": true, @@ -10464,22 +10464,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "CREDIT", "params": { - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10489,22 +10489,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "asset": "XCP", "block_index": 210, - "event": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10514,30 +10514,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 }, { - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730754872.7442517, + "block_time": 1730802470.7005117, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56e98610691ff6d3ac46eeaa52350c127466f12", + "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", "destination": "", "fee": 10000, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", - "tx_hash": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", "tx_index": 78, - "utxos_info": "bcba9ddf957ae2135a1b28aa281b995082e53103d34e870dfebf7cb573df1864:1", + "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "memo": null, "asset_info": { "divisible": true, @@ -10551,7 +10551,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730754872.7442517 + "timestamp": 1730802470.7005117 } ], "next_cursor": null, @@ -10573,15 +10573,15 @@ "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", "block_index": 210, - "block_time": 1730754868, + "block_time": 1730802466, "difficulty": 545259519, - "previous_block_hash": "3bceae6ced2673eacd9d20216e086c63c9bcc5933611d5a6945d9234f7028d25" + "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883" }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 665, @@ -10593,17 +10593,17 @@ "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7be3ca453c7a9d993a38844c6482cc7494acc94a9796625844fb3183287d78f1", + "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", "block_index": 210, - "block_time": 1730754868, + "block_time": 1730802466, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "fee": 0, - "source": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "utxos_info": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1 1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10613,9 +10613,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 666, @@ -10629,16 +10629,16 @@ "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "out_index": 0, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 567, @@ -10651,15 +10651,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "bb3a5d95a0fc0e95f909878825b4932e35f6ea087a222de57ba6962d102db80a", - "messages_hash": "0f0d9a3eab512ebdb27793b12ec9e3cc07870face96c8e236473ea65f4ea724e", + "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", + "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", "transaction_count": 1, - "txlist_hash": "09f9ea954464d290befc32c78f5018aea7712f6d607377cf689a415d65df870c", - "block_time": 1730754868 + "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", + "block_time": 1730802466 }, "tx_hash": null, "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 680, @@ -10672,12 +10672,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 679, @@ -10693,12 +10693,12 @@ "address": null, "asset": "XCP", "block_index": 210, - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 1500000000, "tx_index": 77, - "utxo": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", - "utxo_address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", - "block_time": 1730754868, + "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10708,9 +10708,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 686, @@ -10722,16 +10722,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10741,9 +10741,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 690, @@ -10757,26 +10757,26 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "memo": null, "quantity": 1000, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "tx_index": 71, - "block_time": 1730754824, + "block_time": 1730802436, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9f2dd832d951b0e293aef32d3deb0f12af420639480f0a4e4317178d8d1083a7", + "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", "block_index": 204, - "block_time": 1730754824 + "block_time": 1730802436 } ], "next_cursor": 503, @@ -10790,15 +10790,15 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "status": "valid", - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "tx_index": 75, - "block_time": 1730754849, + "block_time": 1730802452, "asset_info": { "divisible": true, "asset_longname": null, @@ -10808,9 +10808,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "57cb3208da64bfbd64b8f98e18be697c12dd55a691244d4ff4e343db3c87a90a", + "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", "block_index": 208, - "block_time": 1730754849 + "block_time": 1730802452 } ], "next_cursor": 661, @@ -10833,20 +10833,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "status": "valid", - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "tx_index": 61, - "block_time": 1730754761, + "block_time": 1730802381, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a30b1b7fad2990917eeac4f412c7335f00b50c9bba72dadbd1fdac0cee538eae", + "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", "block_index": 195, - "block_time": 1730754761 + "block_time": 1730802381 } ], "next_cursor": null, @@ -10863,15 +10863,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "tx_index": 41, - "block_time": 1730754596, + "block_time": 1730802213, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -10885,9 +10885,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "45e1418c17902cd76083782a097cfa5897236e9f66163fefef09f9aa2f384dbe", + "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", "block_index": 154, - "block_time": 1730754596 + "block_time": 1730802213 } ], "next_cursor": null, @@ -10908,11 +10908,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730754821 + "block_time": 1730802423 }, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_time": 1730754821 + "block_time": 1730802423 } ], "next_cursor": 576, @@ -10935,22 +10935,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", "transfer": false, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "tx_index": 70, - "block_time": 1730754821, + "block_time": 1730802423, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "82025e4cfa7451faf5d060bea073703eedb9d0beaffb66f20280a5e55e6f9c21", + "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", "block_index": 203, - "block_time": 1730754821 + "block_time": 1730802423 } ], "next_cursor": 577, @@ -10965,12 +10965,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q9dmvtvt8z4s4s6hw09su0p9q78xjfzmxtn60cq", + "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", "status": "valid", "tag": "64657374726f79", - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "tx_index": 62, - "block_time": 1730754765, + "block_time": 1730802385, "asset_info": { "divisible": true, "asset_longname": null, @@ -10980,9 +10980,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "83aaff62bcdf1b373083cffa98ea2013563e896dca64f6c5f9fec093746fd7e5", + "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", "block_index": 196, - "block_time": 1730754765 + "block_time": 1730802385 } ], "next_cursor": 157, @@ -11007,11 +11007,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "open", - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11035,9 +11035,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 534, @@ -11055,20 +11055,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e_5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", + "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "tx0_index": 54, - "tx1_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "tx1_index": 76, - "block_time": 1730754854, + "block_time": 1730802457, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11087,9 +11087,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 673, @@ -11102,11 +11102,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e" + "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 677, @@ -11119,11 +11119,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb" + "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3" }, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "block_time": 1730754711 + "block_time": 1730802340 } ], "next_cursor": null, @@ -11135,13 +11135,13 @@ "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", + "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", "status": "expired" }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 481, @@ -11155,18 +11155,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_7a6c748cfc25aacf6f943a9345da4f3748ed8b1c0ffe00f277ba5334902b3deb", - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "status": "valid", - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "tx_index": 53, - "block_time": 1730754711, + "block_time": 1730802340, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "e9ca2c6fe54e0fc683de09db1d88221ae196c42bd2d0f89aa9f8619c4695187f", + "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", "block_index": 187, - "block_time": 1730754711 + "block_time": 1730802340 } ], "next_cursor": null, @@ -11179,16 +11179,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "b7ffe34d27a46d81538c29d062c78c1c4f387a51ed127aa2c7e83c0405f818df", - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": "valid", - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "tx_index": 59, - "block_time": 1730754743 + "block_time": 1730802374 }, - "tx_hash": "591effaacfa66fd1c17bf8b7e84b3ca23b21f9c9cdde8ec2e4444eda5e66309f", + "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", "block_index": 193, - "block_time": 1730754743 + "block_time": 1730802374 } ], "next_cursor": null, @@ -11201,13 +11201,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "source": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "block_time": 1730754868 + "order_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_time": 1730802466 }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 642, @@ -11220,14 +11220,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "7c83296bfd262614e2677ae5cfc3b7c24409784bb5eaeaa7560c6ee9a5bec024_c240c7de41ae2fa814c9d513e3df6f7cdfe21be5e3a989e7c08a35b19132ac2e", - "tx0_address": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "tx1_address": "bcrt1q74hfscgxj8lk6wkydm422g6scyn5vmcj7q37rd", - "block_time": 1730754854 + "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_time": 1730802457 }, - "tx_hash": "5006f9d6e8c817550e717e8861260d10f8c938539453ff14645a27c5edcf5178", + "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", "block_index": 209, - "block_time": 1730754854 + "block_time": 1730802457 } ], "next_cursor": 457, @@ -11246,17 +11246,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "satoshirate": 1, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "status": 0, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "tx_index": 64, - "block_time": 1730754783, + "block_time": 1730802392, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11265,9 +11265,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "f63cbf2213fcf74c63eea837ebb70dedd1f60cef689592ec056aae8f975d22d9", + "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", "block_index": 198, - "block_time": 1730754783 + "block_time": 1730802392 } ], "next_cursor": 272, @@ -11282,9 +11282,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": 0, - "tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", + "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", "asset_info": { "divisible": true, "asset_longname": null, @@ -11294,9 +11294,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 569, @@ -11310,13 +11310,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n1FB64NnMTey8HE3dWXeVGUBxUtcviSjYq", + "destination": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", "dispense_quantity": 10, - "dispenser_tx_hash": "b6739e112c6dd33521b91f9e64f9355c85373d32d7d671b2a0a8362cd8dff811", - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", - "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", + "dispenser_tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", "tx_index": 31, - "block_time": 1730754550, + "block_time": 1730802175, "asset_info": { "divisible": true, "asset_longname": null, @@ -11326,9 +11326,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "396d77a3b52ab14403062f19e52df1beaa5fe64d74b899268a24a87511bc32b8", + "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", "block_index": 144, - "block_time": 1730754550 + "block_time": 1730802175 } ], "next_cursor": null, @@ -11343,14 +11343,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qtmcukgty644nv279paupwnzyqa0rfjwy78wuaj", + "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f0c908243fd985f3381c83b4cf29f18bae5471d91042954ab8b51f02bc6a57d", - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -11361,9 +11361,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 570, @@ -11378,19 +11378,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qjjutmpajrl5yeqe74ad2g55np707eve9ckt5nv", + "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "tx_index": 25, "value": 66600.0, - "block_time": 1730754528, + "block_time": 1730802152, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "06b2148938823d0610e0f36c92c5f2d705bde5cc946d844e54d233c0f50cc885", + "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", "block_index": 138, - "block_time": 1730754528 + "block_time": 1730802152 } ], "next_cursor": 213, @@ -11421,12 +11421,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "start_block": 0, "status": "open", - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "tx_index": 42, - "block_time": 1730754600, + "block_time": 1730802226, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11434,9 +11434,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "e58736ab6a33a4c02912232a59130d3935e75dd718e48cff2db6702b80c694e4", + "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", "block_index": 155, - "block_time": 1730754600 + "block_time": 1730802226 } ], "next_cursor": 196, @@ -11449,11 +11449,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ff3f93b205e17f8e90aa63d40ba3de726f51c0431bbe2d30c57ca1ecb960d5bc" + "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c" }, "tx_hash": null, "block_index": 130, - "block_time": 1730754490 + "block_time": 1730802121 } ], "next_cursor": 110, @@ -11469,17 +11469,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d5e0cbbb4a8f8b13b85cf4b76ecfb425648f534b0e08be26efbc0efb3ff54e46", + "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", "paid_quantity": 34, - "source": "bcrt1q6694am79m5nu8wspqme85evm70q3776g42yflc", + "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", "status": "valid", - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "tx_index": 23, - "block_time": 1730754522, + "block_time": 1730802145, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, @@ -11487,9 +11487,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "bb88a3a38e47c1e4a8721be1ed4e63dc1bbcd0c759eaaa46c3e3b606bfb50dd7", + "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", "block_index": 136, - "block_time": 1730754522 + "block_time": 1730802145 } ], "next_cursor": 190, @@ -11503,28 +11503,28 @@ "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03:0", + "destination": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "status": "valid", - "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", + "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", "tx_index": 67, - "block_time": 1730754803, + "block_time": 1730802404, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnh64744a5m8gupqccwc3ph83n0g407kn03fsnp", + "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4d22b5e9c01495bd0d190d3db4c61fa29766c4595123ad4c121cddb573ee1b03", + "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", "block_index": 201, - "block_time": 1730754803 + "block_time": 1730802404 } ], "next_cursor": 319, @@ -11538,28 +11538,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qhp2phl2rhvfzjngwtgrghczek0zdve6z6m2pz4", + "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "28dbfbba073855d9e37047cccbc1659d295ec4cbbc2dde10e9271590629c6f39:0", + "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", "status": "valid", - "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", + "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", "tx_index": 38, - "block_time": 1730754585, + "block_time": 1730802200, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q36cqk0sfua96t5pddtph5926uqkpk9w5epp697", + "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c1e464e29cb371d5511ed72f5d255de6f471db161957b7d62b9255c1b99d2574", + "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", "block_index": 151, - "block_time": 1730754585 + "block_time": 1730802200 } ], "next_cursor": null, @@ -11573,14 +11573,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55:0", + "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", "msg_index": 1, "quantity": 1500000000, - "source": "be5ec1af97115f5711d4037429d031f383ba749c67f06ed6a3a3fb1ea736178e:1", + "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", "status": "valid", - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "tx_index": 77, - "block_time": 1730754868, + "block_time": 1730802466, "asset_info": { "divisible": true, "asset_longname": null, @@ -11590,9 +11590,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "1584a8d3a4104e97f0fbe0a3d0d94c03951703203704d5bcf7540e53470b2f55", + "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", "block_index": 210, - "block_time": 1730754868 + "block_time": 1730802466 } ], "next_cursor": 688, @@ -11607,17 +11607,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qvfq9m3mde47zwld9kc89h80ufgmw8hhq4l6jrm", + "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", "status": "valid", - "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", + "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", "tx_index": 9, - "block_time": 1730754455, + "block_time": 1730802086, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "29286dc9ac053408040e3930e8280d9394a57bdc65ca15415820278e4eb3f6e3", + "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", "block_index": 121, - "block_time": 1730754455 + "block_time": 1730802086 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 543c1c5558..f0c38346ad 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -303,7 +303,7 @@ "source": "$UTXOASSET_UTXO_1_TX_HASH:0", "status": "valid", "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", - "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", + "tx_index": 68, }, "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", }, @@ -317,7 +317,7 @@ "calling_function": "utxo move", "event": "$UTXOASSET_UTXO_2_TX_HASH", "quantity": 1000000000, - "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", + "tx_index": 68, "utxo": "$UTXOASSET_UTXO_2_TX_HASH:0", "utxo_address": "$ADDRESS_8", }, @@ -333,7 +333,7 @@ "block_index": "$BLOCK_INDEX", "event": "$UTXOASSET_UTXO_2_TX_HASH", "quantity": 1000000000, - "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", + "tx_index": 68, "utxo": "$UTXOASSET_UTXO_1_TX_HASH:0", "utxo_address": "$ADDRESS_7", }, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py index d1841cc258..9cf115557e 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py @@ -481,7 +481,7 @@ "calling_function": "fairmint refund", "event": "$FAIRMINTB_WITH_ADDRESS_4_TX_HASH", "quantity": 100000000, - "tx_index": "$FAIRMINTB_WITH_ADDRESS_4_TX_INDEX", + "tx_index": "$TX_INDEX", "utxo": None, "utxo_address": None, }, @@ -497,7 +497,7 @@ "calling_function": "fairmint refund", "event": "$FAIRMINTB_WITH_ADDRESS_3_TX_HASH", "quantity": 100000000, - "tx_index": "$FAIRMINTB_WITH_ADDRESS_3_TX_INDEX", + "tx_index": 16, "utxo": None, "utxo_address": None, }, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index a6528f24d3..cba69058a8 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -59,7 +59,7 @@ CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = scenario_19_mpma.SCENARIO +# SCENARIOS = scenario_18_utxo.SCENARIO def compare_strings(string1, string2): @@ -281,7 +281,10 @@ def run_item(node, item, context): for name, value in item.get("set_variables", {}).items(): if tx_hash is not None: + print("get tx index", tx_hash) tx_index = get_tx_index(node, tx_hash) + if tx_index is None: + tx_index = get_last_tx_index(node) + 1 else: tx_index = get_last_tx_index(node) context[name] = ( @@ -292,6 +295,7 @@ def run_item(node, item, context): .replace("$BLOCK_INDEX + 21", str(node.block_count + 21)) # TODO: make it more generic .replace("$BLOCK_INDEX", str(node.block_count)) ) + print(f"Set variable {name} to {context[name]}") if "controls" in item: control_result( @@ -394,7 +398,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From 29551bd3f458d5c605ce4cdc7d8091fbef4a918e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 10:55:23 +0000 Subject: [PATCH 056/138] skip_validation -> validate --- apiary.apib | 4016 ++++++++--------- .../counterpartycore/lib/api/compose.py | 6 +- .../counterpartycore/lib/transaction.py | 2 +- .../test/fixtures/api_v2_fixtures.json | 108 +- .../test/regtest/apidoc/apicache.json | 3568 +++++++-------- .../regtest/scenarios/scenario_12_send.py | 2 +- .../scenarios/scenario_17_dispenser.py | 2 +- release-notes/release-notes-v10.6.2.md | 2 +- 8 files changed, 3783 insertions(+), 3923 deletions(-) diff --git a/apiary.apib b/apiary.apib index fec8848205..4bcdb5feb6 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-05 10:28:08.019288. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-05 10:54:27.519510. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", "block_index": 210, - "block_time": 1730802466, + "block_time": 1730804046, "difficulty": 545259519, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883" + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72" }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 665, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", "block_index": 210, - "block_time": 1730802466, + "block_time": 1730804046, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "fee": 0, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 666, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "out_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 567, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 680, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 679, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 210, - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "block_time": 1730802466, + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 686, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 690, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "quantity": 1000, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "tx_index": 71, - "block_time": 1730802436, + "block_time": 1730804008, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "block_time": 1730802436 + "block_time": 1730804008 } ], "next_cursor": 503, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "status": "valid", - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "tx_index": 75, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_time": 1730802452 + "block_time": 1730804033 } ], "next_cursor": 661, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "status": "valid", - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "tx_index": 61, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "block_time": 1730802381 + "block_time": 1730803948 } ], "next_cursor": null, @@ -533,15 +533,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": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "tx_index": 41, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -555,9 +555,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": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "block_time": 1730802213 + "block_time": 1730803765 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730802423 + "block_time": 1730804003 }, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_time": 1730802423 + "block_time": 1730804003 } ], "next_cursor": 576, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", "transfer": false, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "tx_index": 70, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_time": 1730802423 + "block_time": 1730804003 } ], "next_cursor": 577, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "tx_index": 62, - "block_time": 1730802385, + "block_time": 1730803952, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "block_index": 196, - "block_time": 1730802385 + "block_time": 1730803952 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "open", - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 534, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 54, - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx1_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 673, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 677, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3" + "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4" }, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "block_time": 1730802340 + "block_time": 1730803906 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "status": "expired" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 481, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "status": "valid", - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "tx_index": 53, - "block_time": 1730802340, + "block_time": 1730803906, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "block_time": 1730802340 + "block_time": 1730803906 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "tx_index": 59, - "block_time": 1730802374 + "block_time": 1730803930 }, - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "block_index": 193, - "block_time": 1730802374 + "block_time": 1730803930 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "block_time": 1730802466 + "order_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_time": 1730804046 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 642, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "block_time": 1730802457 + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_time": 1730804037 }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 457, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "satoshirate": 1, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": 0, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "tx_index": 64, - "block_time": 1730802392, + "block_time": 1730803969, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 198, - "block_time": 1730802392 + "block_time": 1730803969 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 569, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", + "destination": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", "dispense_quantity": 10, - "dispenser_tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", + "dispenser_tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", "tx_index": 31, - "block_time": 1730802175, + "block_time": 1730803729, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", + "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", "block_index": 144, - "block_time": 1730802175 + "block_time": 1730803729 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 570, @@ -1146,19 +1146,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": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "tx_index": 25, "value": 66600.0, - "block_time": 1730802152, + "block_time": 1730803688, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "block_time": 1730802152 + "block_time": 1730803688 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "start_block": 0, "status": "open", - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "block_index": 155, - "block_time": 1730802226 + "block_time": 1730803778 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c" + "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc" }, "tx_hash": null, "block_index": 130, - "block_time": 1730802121 + "block_time": 1730803649 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "paid_quantity": 34, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "status": "valid", - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "block_index": 136, - "block_time": 1730802145 + "block_time": 1730803680 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b:0", + "destination": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "status": "valid", - "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", + "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", "tx_index": 67, - "block_time": 1730802404, + "block_time": 1730803990, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", + "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", "block_index": 201, - "block_time": 1730802404 + "block_time": 1730803990 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", + "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", + "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", "status": "valid", - "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", + "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", "tx_index": 38, - "block_time": 1730802200, + "block_time": 1730803754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", + "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", "block_index": 151, - "block_time": 1730802200 + "block_time": 1730803754 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 210, - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "msg_index": 1, "quantity": 1500000000, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", "status": "valid", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 688, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", + "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", "status": "valid", - "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", + "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", "tx_index": 9, - "block_time": 1730802086, + "block_time": 1730803615, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", + "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", "block_index": 121, - "block_time": 1730802086 + "block_time": 1730803615 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", "difficulty": 545259519, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "previous_block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "previous_block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", "difficulty": 545259519, - "ledger_hash": "85d9e3b96d6032363520052aec54b68dcf93b60705db70171e4a5d6dd1dc4f69", - "txlist_hash": "861339cf0608556884dff37db1a9a6e37ef1d49bd7751e7f769d1d919f6b8250", - "messages_hash": "176a1499f05f4d8d3ba7c192cf8ff36a9b10138ce2c880c203401d0211d1a506", + "ledger_hash": "2832208b5976d7d56a2cb9016bb3e3a8d867504a9166ec6e9be34f672af5e5bd", + "txlist_hash": "ecf0b4a281d4691fd458095771d81ac7d88b98f3a241697d28232f10ddc6154e", + "messages_hash": "566f6ce132f1b5b40eaaa1594b13b16940ee338e5e86242912a4489f5487cf5e", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", - "block_time": 1730802452, - "previous_block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", + "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_time": 1730804033, + "previous_block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", "difficulty": 545259519, - "ledger_hash": "d9c62d5736d8e24356d2d415a925b6dbff251f70e674e6a0160857fe66b51f75", - "txlist_hash": "ad75976e8578dd5d59713ad0e91dfba966d52b705b0e58f118f6273556c388f7", - "messages_hash": "125638d1128e7b3343ba55d5ae5d1584a61d596a5ccb9002f4900980a8fa4b9e", + "ledger_hash": "fe8dac69d2789bd97bfea4688b305b38c0b6f4b3a5a8a459ef090d5077acb6f7", + "txlist_hash": "71213a325bb189bd60ad8356726b8b289b6cc40832a2753f2fa90fed4abb6dee", + "messages_hash": "554a3fc6f8fac8dd078217de6f89d24306ecc03d3f94f2d12a36a8c0908b7bd4", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", - "block_time": 1730802448, - "previous_block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", + "block_time": 1730804029, + "previous_block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", "difficulty": 545259519, - "ledger_hash": "af06333d01569b1a3f3f1f67405248456568678acf2389c2a04bdbe922ddf331", - "txlist_hash": "8c6368190fd932468d0aecfab7779ea7770cbedd7a7cf68f3d35840dd39be4a1", - "messages_hash": "aea533d82b38c4c501f3523fd48636f1e1774ca840819950917620646ce7bd75", + "ledger_hash": "92ef021c637f16bbe647891da469f387569dc7ef66a8a813c938c82d21a7e641", + "txlist_hash": "8ff9babc088363fbae03fabd550c72c476a55c500a3b398404a46879df88ba52", + "messages_hash": "7628d6dfe38c04422f29dfe524c921c3d58d5f30c313f63a8b272198a9a92159", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", - "block_time": 1730802444, - "previous_block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", + "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_time": 1730804024, + "previous_block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", "difficulty": 545259519, - "ledger_hash": "fa9779497482071f57571f71c5f0ba68731fbe6eee1ab397dff0a6bd43f8c708", - "txlist_hash": "5ac4483d2610b66ee4d94a1ca410582fd662814107653c90fd2ff867c74dcfcb", - "messages_hash": "4f1b20896965c1337611043fe95a29d63f8cf1be6855853d731357e9b11d93a0", + "ledger_hash": "963ee9a1a46f9536ff9e4351f061e47dfa4c213b4316b43f0a1db1dcd9c77d89", + "txlist_hash": "b365ccc1de84e35aa113b73a2bc9c5364a29258793536eedf0a80118b1495afa", + "messages_hash": "9f41152da97de7ee0aa5bd2a2acf7c6fb70fd192abc0ef29785812652fec9fc7", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", "difficulty": 545259519, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea` (str, required) - The index of the block to return + + block_hash: `104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", "difficulty": 545259519, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 694, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 693, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" } ], "next_cursor": 691, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 690, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 687, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 210, - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "object_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "block_index": 210, "confirmed": true, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "status": "valid", "confirmed": true, - "block_time": 1730802374 + "block_time": 1730803930 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "block_index": 196, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730802385, + "block_time": 1730803952, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, "block_index": 155, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "block_hash": "74fc99ee512321d0746a617245a08376c89f10ed2f2365e592a5906486d27a43", - "block_time": 1730802152, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "2d959a5810e5be62ea9af4e03a7c2c6b60bda59d20571e2b815485b5348c5132", + "block_time": 1730803688, + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440:1", + "utxos_info": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "block_hash": "3aff1bd9f45b5467819b52651e6f100bb9182d11bddcf1e8d62b6bf3320fdfdc", - "block_time": 1730802340, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "6e0e18a88969bf69f8f2d43ea964543b57a8b973f798d1f519ea9fc11f39a0ec", + "block_time": 1730803906, + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "btc_amount": 2000, "fee": 10000, - "data": "0bdea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "data": "0bbb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "supported": true, - "utxos_info": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850:0", + "utxos_info": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "block_index": 193, - "block_hash": "010774c1086fe55c42950d052bb1a5cb62307bcc4a75b7478722472ba890912b", - "block_time": 1730802374, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "551d48e49ab16c764c3c0b6db8a419c12fc38d448dc2022e9a9e8823ddf8ae08", + "block_time": 1730803930, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4679dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "data": "46a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "supported": true, - "utxos_info": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6:1", + "utxos_info": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "block_index": 196, - "block_hash": "42433e10e22c821e1fe2e4c27d30100dc7c5389fdc2427ab33dd46baed150fde", - "block_time": 1730802385, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "block_hash": "3efd2b6215625d2aff9dfa8c7831a4a2bc284e9b49e79d699f29338c29cac5d7", + "block_time": 1730803952, + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f:1", + "utxos_info": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 198, - "block_hash": "61dd3c41ba2f0d7df46abb55b3af1168c09c685b6de541858976ac1111f08ce6", - "block_time": 1730802392, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "6cdb0b141232873de57dc01894c88af87c32167e6aef52c741f38490ad4b94b7", + "block_time": 1730803969, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7:1", + "utxos_info": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "block_hash": "1e8d872f51f911dbab33012d97d8e1eded4fa1e63cc936447cd790d32ad2738d", - "block_time": 1730802213, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "2bd907e4e1f981cd135035d13edd08ff4f295cd76137bd7b6d6597b69954d88a", + "block_time": 1730803765, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945:1", + "utxos_info": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_hash": "44fd5fd9c920b878146d1dd1f6f40de3294a56d4e993ddfcbd621ec91da787e9", - "block_time": 1730802423, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "750a8780e1830d3ce0323c69bc4aa4e479f4d28e5883c8318f72a7d99793f5c6", + "block_time": 1730804003, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592:1", + "utxos_info": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "block_hash": "2561ce95bf2aff6a835d470b4f19f9d08e4285947c740365d548cafb59791fcc", - "block_time": 1730802436, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "54c234af19c5aaef14bd17510500fcf7f56f27369249714c95054847677d42f5", + "block_time": 1730804008, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", + "data": "02000000178d82231300000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", "supported": true, - "utxos_info": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8:1", + "utxos_info": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", - "block_time": 1730802452, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_time": 1730804033, + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf:0", + "utxos_info": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "block_hash": "6eb209251153ad334c20d2211c71f96f6ce3889f2b9565842151667175b13294", - "block_time": 1730802381, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "block_hash": "79046e409c818b7aab07a43bb2ee088ad633986704bf14af1cdb0675250c64bd", + "block_time": 1730803948, + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fcb0ac3d1529a010b58659987e4c25a4d97f74a8017377656570206d7920617373657473", + "data": "0480b52251261586063fd84ccd5b6d7716ee71e9c234017377656570206d7920617373657473", "supported": true, - "utxos_info": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b:1", + "utxos_info": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010615788845ef5f0f222bb560ff034685e1027711b34b95a4c50b5061e9860819130000000000ffffffffa18d8f843dd1b3ec77bc673c74a289294b25d76cf343be7a40278872529affdc0000000000ffffffff7b81673891e8e9d17933aac18cb70872e06c0b4ba6dfefe1a67144c513db36ce0000000000ffffffffa2c6d6b5e6486dc16ccab638497c541348154eef6874b8089d1dfb9cff5a70eb0000000000ffffffffab5c0a68b745ac17f45b2535e6cb24ddec87836f7a00e02d5170c52e998d915c0000000000ffffffffef95ec6603d996762b8c26e661e81cdb311c41054d8b2f059188719c0ac425110000000000ffffffff04e80300000000000069512102462541f8c6aeeb293279f917a9e3bbc90ef308039c11286f7c6da1eab17ad71b2102957d891fbdeed7772945f63ec37e2f5d45289653a316f79a1b1c5f6b944ae275210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512103462541f8c6aeeb29326a4c9270bf7130559813591cc7c7aacd506a5b7d66c3da2103781209ad4279309a2301369306122704088f5f152f4c937782c19c650163426f210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512102672541f8c6aeeb29327af91429278f7c703cca26686fd381a67ee2427da2177b2102781209ad427930b036b4a326bad82704088f5f152f46161ae7acf3568163425c210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae387923fc060000001600142bd3245f056e748ad251456348cc06a80ff791030247304402200bd2a48ab241b237ea4969c748ff31a0b179235f3e77f6f8402c5b0bb34e593902204047e885aa73be6ef20b8d952e45ea482fef7074832982e2825a88f14f2f824601210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f02473044022011b046e0250be9aaffebdd20eef01983afb6514955dd3cab10f356010211cc790220767a4b9bc6dcf8c37f493c1214b52f506969268f32f72fe234dd80de9efaed2a01210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f0247304402200d31597256c4fd79e2f059717689f599717f25e991fb78656237d2e385a982cf022012149f8be078501aaecb611c705e33bb2d2b3cce3e9b94c54f106e3e4bd718a201210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f0247304402202d0520ebbeb43f727a794a302ca3378dde99f8e086200074f8481be39948fff902205a9f8acdfc57f1784793f48948e58f02e1a3e0c56127682d10f37ca679b8372a01210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f02473044022029647a2d365bf559c55eba9d076a1ae82e85e8e33f81dc23de4d78407ef0c256022054985cf7b5f53c822871248d13838e82a869cae62099e7a550ed5281bb7b775001210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f02473044022043adf0d5f0fb71b91cb82012e83ec18603aa88075517fc877311db9f071075a402204d529ad606a06c9028af5b5fbab2a3cbcc1ef8ceef6ac752453815a49901c1fa01210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101843ffae900dcbbc860ede0f5a6848f666c36603383510299c579929c32a740e70000000000ffffffff0200000000000000002e6a2cf5b1aca445c1e2d61f0b3f91c2655bc4d9e7c87165f2e9ff03c25faed5157d8afb65949edc7fd36c8cc96df8f0ca052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d30247304402204d2f41b18d45b7432ba82355232e850f90822901e7e88d255bac465d2bcbe46602207535963f704b2b23d839a1c2a3bcaa9fc3fffd89330739ae244817d61fd20c0301210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b200000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,53 +3290,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "15788845ef5f0f222bb560ff034685e1027711b34b95a4c50b5061e986081913", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a18d8f843dd1b3ec77bc673c74a289294b25d76cf343be7a40278872529affdc", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "7b81673891e8e9d17933aac18cb70872e06c0b4ba6dfefe1a67144c513db36ce", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a2c6d6b5e6486dc16ccab638497c541348154eef6874b8089d1dfb9cff5a70eb", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "ab5c0a68b745ac17f45b2535e6cb24ddec87836f7a00e02d5170c52e998d915c", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "ef95ec6603d996762b8c26e661e81cdb311c41054d8b2f059188719c0ac42511", + "hash": "843ffae900dcbbc860ede0f5a6848f666c36603383510299c579929c32a740e7", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3345,75 +3310,40 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 1000, - "script_pub_key": "512102462541f8c6aeeb293279f917a9e3bbc90ef308039c11286f7c6da1eab17ad71b2102957d891fbdeed7772945f63ec37e2f5d45289653a316f79a1b1c5f6b944ae275210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" - }, - { - "value": 1000, - "script_pub_key": "512103462541f8c6aeeb29326a4c9270bf7130559813591cc7c7aacd506a5b7d66c3da2103781209ad4279309a2301369306122704088f5f152f4c937782c19c650163426f210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" - }, - { - "value": 1000, - "script_pub_key": "512102672541f8c6aeeb29327af91429278f7c703cca26686fd381a67ee2427da2177b2102781209ad427930b036b4a326bad82704088f5f152f46161ae7acf3568163425c210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" + "value": 0, + "script_pub_key": "6a2cf5b1aca445c1e2d61f0b3f91c2655bc4d9e7c87165f2e9ff03c25faed5157d8afb65949edc7fd36c8cc96df8" }, { - "value": 29999987000, - "script_pub_key": "00142bd3245f056e748ad251456348cc06a80ff79103" + "value": 4999990000, + "script_pub_key": "00147a136e6da4ea780f77ce087498a2cb0ea63118d3" } ], "vtxinwit": [ - "304402200bd2a48ab241b237ea4969c748ff31a0b179235f3e77f6f8402c5b0bb34e593902204047e885aa73be6ef20b8d952e45ea482fef7074832982e2825a88f14f2f824601", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "3044022011b046e0250be9aaffebdd20eef01983afb6514955dd3cab10f356010211cc790220767a4b9bc6dcf8c37f493c1214b52f506969268f32f72fe234dd80de9efaed2a01", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "304402200d31597256c4fd79e2f059717689f599717f25e991fb78656237d2e385a982cf022012149f8be078501aaecb611c705e33bb2d2b3cce3e9b94c54f106e3e4bd718a201", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "304402202d0520ebbeb43f727a794a302ca3378dde99f8e086200074f8481be39948fff902205a9f8acdfc57f1784793f48948e58f02e1a3e0c56127682d10f37ca679b8372a01", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "3044022029647a2d365bf559c55eba9d076a1ae82e85e8e33f81dc23de4d78407ef0c256022054985cf7b5f53c822871248d13838e82a869cae62099e7a550ed5281bb7b775001", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "3044022043adf0d5f0fb71b91cb82012e83ec18603aa88075517fc877311db9f071075a402204d529ad606a06c9028af5b5fbab2a3cbcc1ef8ceef6ac752453815a49901c1fa01", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" + "304402204d2f41b18d45b7432ba82355232e850f90822901e7e88d255bac465d2bcbe46602207535963f704b2b23d839a1c2a3bcaa9fc3fffd89330739ae244817d61fd20c0301", + "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" ], "lock_time": 0, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", - "tx_id": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86" + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_id": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" + } }, "btc_amount_normalized": "0.00000000" } @@ -3425,7 +3355,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188` (str, required) - Transaction hash + + tx_hash: `badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10` (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. @@ -3436,18 +3366,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f6d5f051f2c4c38f15ba35742ff9ffe1245b085eabe5de68da96ec0c27ba8eae", + "hash": "e7ae8ed3e2d68431a62466ed61b86a89fd09c2379db1da759a70cda0d768089a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3457,20 +3387,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e954de8ddf4f43746f28f1db9b0a2c78ab46a1ef51d67b1141e9486bad185bbd85720832d1204c8cbdfe2317edceb" + "script_pub_key": "6a2e9b269de2860042058e962cf37fef06c914ab6c767386666e073b33f75a980e27f897fdcaf9349e433ed1f506e1f2" }, { "value": 4999970000, - "script_pub_key": "0014fcb0ac3d1529a010b58659987e4c25a4d97f74a8" + "script_pub_key": "0014b52251261586063fd84ccd5b6d7716ee71e9c234" } ], "vtxinwit": [ - "3044022036f8e8bfe5290767811244fe804ae623e17081f74b514c24df96ad54edacd10302206a233a4d55c0635b10e3f30fc0cf33ed6b10d178100a6d09f4571cd846f832cd01", - "03472bf6a94b2ad79e65f2ddceab4c1d0ddd6df8784a951bb667fb9f49a9617ec9" + "3044022023652f8971b6e2cf46f7dd44ac8bfcb7763e2fffae1a899f165fa8ed27a6011802205ae3eb739eb45d3628e44c449a1a354dd8e214272220c21b988547804f17247901", + "027919e5c84ae072cc3b76f5e1d325b98ebc5f5e3e2da6024d63813f76d4f1b035" ], "lock_time": 0, - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", - "tx_id": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188" + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_id": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3478,7 +3408,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -3539,17 +3469,17 @@ Returns a transaction by its index. { "result": { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3568,7 +3498,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction + + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (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. @@ -3580,17 +3510,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3633,12 +3563,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 694, @@ -3647,14 +3577,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3665,9 +3595,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 693, @@ -3676,9 +3606,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -3688,24 +3618,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3715,9 +3645,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 691, @@ -3725,14 +3655,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "msg_index": 1, "quantity": 1500000000, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", "status": "valid", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3742,9 +3672,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 690, @@ -3757,7 +3687,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction to return + + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -3781,12 +3711,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 694, @@ -3795,14 +3725,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3813,9 +3743,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 693, @@ -3824,9 +3754,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -3836,24 +3766,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3863,9 +3793,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 691, @@ -3873,14 +3803,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "msg_index": 1, "quantity": 1500000000, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", "status": "valid", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3890,9 +3820,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 690, @@ -3905,7 +3835,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction to return + + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (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 @@ -3924,10 +3854,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3935,7 +3865,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -3948,10 +3878,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3959,11 +3889,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -3981,7 +3911,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction to return + + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (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 @@ -4001,27 +3931,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4036,7 +3966,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -4080,16 +4010,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -4099,9 +4029,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 690, @@ -4111,12 +4041,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -4126,9 +4056,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 687, @@ -4138,24 +4068,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": null, @@ -4168,7 +4098,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The hash of the transaction to return + + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `696` (str, optional) - The last event index to return + Default: `None` @@ -4190,16 +4120,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -4209,9 +4139,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 690, @@ -4221,12 +4151,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -4236,9 +4166,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 687, @@ -4248,24 +4178,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": null, @@ -4280,7 +4210,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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 @@ -4304,7 +4234,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4314,7 +4244,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4325,7 +4255,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4335,7 +4265,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4346,7 +4276,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4356,7 +4286,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4367,7 +4297,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4377,7 +4307,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4388,7 +4318,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4398,7 +4328,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4409,7 +4339,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4419,7 +4349,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4436,7 +4366,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - Comma separated list of addresses to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4455,17 +4385,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4501,17 +4431,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", - "block_time": 1730802452, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_time": 1730804033, + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf:0", + "utxos_info": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4519,14 +4449,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4534,7 +4464,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4553,17 +4483,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "block_index": 207, - "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", - "block_time": 1730802448, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", + "block_time": 1730804029, + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c234c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43:0", + "utxos_info": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4571,14 +4501,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4586,7 +4516,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4605,17 +4535,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", - "block_time": 1730802444, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_time": 1730804024, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", + "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4623,14 +4553,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4638,7 +4568,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4657,17 +4587,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", - "block_time": 1730802440, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", + "block_time": 1730804011, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", + "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4675,14 +4605,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4690,7 +4620,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4718,7 +4648,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -4747,20 +4677,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 54, - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx1_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4779,9 +4709,9 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 675, @@ -4800,11 +4730,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "open", - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4828,24 +4758,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "block_index": 209, - "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -4855,9 +4785,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 673, @@ -4869,20 +4799,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "tx0_index": 60, - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx1_index": 54, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4901,23 +4831,23 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "block_time": 1730802457 + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_time": 1730804037 }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 668, @@ -4930,7 +4860,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re,bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l,bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv` (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 @@ -4946,17 +4876,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "quantity": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, "asset_info": { "divisible": true, @@ -4967,22 +4897,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -4992,22 +4922,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "block_index": 210, - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -5017,30 +4947,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730802470.7005117, + "block_time": 1730804050.1464322, "btc_amount": 0, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "destination": "", "fee": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, - "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", + "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -5054,7 +4984,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -5067,7 +4997,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -5087,7 +5017,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5095,14 +5025,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5110,14 +5040,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5125,14 +5055,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5147,7 +5077,7 @@ Returns the balances of an address "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5155,7 +5085,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5172,7 +5102,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -5185,7 +5115,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5210,7 +5140,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5260,16 +5190,16 @@ Returns the credits of an address "result": [ { "block_index": 209, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -5281,16 +5211,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -5302,16 +5232,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -5323,16 +5253,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -5344,20 +5274,20 @@ Returns the credits of an address }, { "block_index": 203, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "event": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5374,7 +5304,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5413,16 +5343,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -5434,16 +5364,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -5455,20 +5385,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5476,16 +5406,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "divisible": true, "asset_longname": null, @@ -5497,20 +5427,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5527,7 +5457,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address of the feed + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5562,7 +5492,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -5581,9 +5511,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", + "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", "block_index": 137, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5591,7 +5521,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802149, + "block_time": 1730803685, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5605,7 +5535,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -5624,14 +5554,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "282125d035559b6e107a95f7f558664d4f4fe840ad084c76d24b7ca5b533ce06", + "tx_hash": "7ffb1c32851e405bb735efcfac37591da1ced665eab020ec6eb51f0d423d429a", "block_index": 112, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730802055, + "block_time": 1730803583, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5646,7 +5576,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -5665,10 +5595,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5676,7 +5606,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -5689,10 +5619,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5700,11 +5630,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5713,10 +5643,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5724,11 +5654,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5737,10 +5667,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5748,7 +5678,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "divisible": true, "asset_longname": null, @@ -5761,10 +5691,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5772,11 +5702,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5794,7 +5724,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq` (str, required) - The address to return + + address: `bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr` (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 @@ -5813,10 +5743,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", + "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", "block_index": 151, - "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", - "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", + "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", + "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5824,11 +5754,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802200, + "block_time": 1730803754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5846,7 +5776,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5866,10 +5796,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5877,11 +5807,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5890,10 +5820,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5901,11 +5831,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5914,10 +5844,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5925,11 +5855,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5938,10 +5868,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5949,11 +5879,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5962,10 +5892,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5973,11 +5903,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802436, + "block_time": 1730804008, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5995,7 +5925,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq` (str, required) - The address to return + + address: `bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6023,7 +5953,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6052,9 +5982,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6063,7 +5993,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6073,7 +6003,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6089,9 +6019,9 @@ Returns the dispensers of an address }, { "tx_index": 64, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6100,7 +6030,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6110,11 +6040,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6135,7 +6065,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -6148,9 +6078,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6159,7 +6089,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6169,7 +6099,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6191,7 +6121,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -6211,19 +6141,19 @@ Returns the dispenses of a source { "tx_index": 65, "dispense_index": 0, - "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", + "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6231,7 +6161,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6246,11 +6176,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6260,19 +6190,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6280,7 +6210,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6295,7 +6225,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6309,19 +6239,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6329,7 +6259,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6344,7 +6274,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -6366,7 +6296,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address to return + + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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 @@ -6386,19 +6316,19 @@ Returns the dispenses of a destination { "tx_index": 65, "dispense_index": 0, - "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", + "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6406,7 +6336,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6421,11 +6351,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6435,19 +6365,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6455,7 +6385,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6470,7 +6400,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6484,19 +6414,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6504,7 +6434,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6519,7 +6449,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -6541,7 +6471,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -6562,19 +6492,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6582,7 +6512,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6597,7 +6527,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6611,19 +6541,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6631,7 +6561,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6646,7 +6576,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -6668,7 +6598,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address to return + + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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` @@ -6689,19 +6619,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6709,7 +6639,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6724,7 +6654,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6738,19 +6668,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6758,7 +6688,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6773,7 +6703,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -6795,7 +6725,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re` (str, required) - The address to return + + address: `bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l` (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 @@ -6814,16 +6744,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -6837,7 +6767,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6869,14 +6799,14 @@ Returns the issuances of an address "result": [ { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6891,20 +6821,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", + "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6919,20 +6849,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802261, + "block_time": 1730803813, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", + "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6947,20 +6877,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730802247, + "block_time": 1730803808, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", + "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6975,20 +6905,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802243, + "block_time": 1730803795, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "461f5d5c7edf5ab4fb9c3044b6d0cbe87893accbc6c103ee3bbc01355b45c08a", + "tx_hash": "4125c1bdb875706dafde81f4b005bdd027a19d6696523b6f8e292a72e662f215", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -7003,7 +6933,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802238, + "block_time": 1730803792, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7018,7 +6948,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The issuer or owner to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7041,8 +6971,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -7050,16 +6980,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -7067,16 +6997,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -7084,16 +7014,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 40, @@ -7101,16 +7031,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730802140, - "last_issuance_block_time": 1730802145, + "first_issuance_block_time": 1730803677, + "last_issuance_block_time": 1730803680, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 19, @@ -7118,8 +7048,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730802125, - "last_issuance_block_time": 1730802137, + "first_issuance_block_time": 1730803653, + "last_issuance_block_time": 1730803673, "supply_normalized": "0.00000019" } ], @@ -7133,7 +7063,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The issuer to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -7156,8 +7086,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -7165,16 +7095,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -7182,16 +7112,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -7199,16 +7129,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 40, @@ -7216,16 +7146,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730802140, - "last_issuance_block_time": 1730802145, + "first_issuance_block_time": 1730803677, + "last_issuance_block_time": 1730803680, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 19, @@ -7233,8 +7163,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730802125, - "last_issuance_block_time": 1730802137, + "first_issuance_block_time": 1730803653, + "last_issuance_block_time": 1730803673, "supply_normalized": "0.00000019" } ], @@ -7248,7 +7178,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The owner to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7271,8 +7201,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -7280,16 +7210,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -7297,16 +7227,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -7314,16 +7244,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 40, @@ -7331,16 +7261,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730802140, - "last_issuance_block_time": 1730802145, + "first_issuance_block_time": 1730803677, + "last_issuance_block_time": 1730803680, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 19, @@ -7348,8 +7278,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730802125, - "last_issuance_block_time": 1730802137, + "first_issuance_block_time": 1730803653, + "last_issuance_block_time": 1730803673, "supply_normalized": "0.00000019" } ], @@ -7363,7 +7293,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7382,17 +7312,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7428,17 +7358,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", - "block_time": 1730802444, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_time": 1730804024, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", + "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7446,14 +7376,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7461,7 +7391,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7480,17 +7410,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", - "block_time": 1730802440, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", + "block_time": 1730804011, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", + "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7498,14 +7428,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7513,7 +7443,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7532,17 +7462,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "block_hash": "2561ce95bf2aff6a835d470b4f19f9d08e4285947c740365d548cafb59791fcc", - "block_time": 1730802436, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "54c234af19c5aaef14bd17510500fcf7f56f27369249714c95054847677d42f5", + "block_time": 1730804008, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", + "data": "02000000178d82231300000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", "supported": true, - "utxos_info": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8:1", + "utxos_info": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7550,12 +7480,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7566,17 +7496,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_hash": "44fd5fd9c920b878146d1dd1f6f40de3294a56d4e993ddfcbd621ec91da787e9", - "block_time": 1730802423, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "750a8780e1830d3ce0323c69bc4aa4e479f4d28e5883c8318f72a7d99793f5c6", + "block_time": 1730804003, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592:1", + "utxos_info": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7610,7 +7540,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -7629,20 +7559,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7667,7 +7597,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7696,9 +7626,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7713,7 +7643,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7739,9 +7669,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7756,7 +7686,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7782,9 +7712,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7799,7 +7729,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7825,9 +7755,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7842,7 +7772,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7868,9 +7798,9 @@ Returns the orders of an address }, { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7885,7 +7815,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7920,7 +7850,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The source of the fairminter to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7945,10 +7875,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, "block_index": 155, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7973,7 +7903,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7982,10 +7912,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8010,7 +7940,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730802140, + "block_time": 1730803677, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8022,10 +7952,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "tx_index": 18, "block_index": 131, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8050,7 +7980,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730802125, + "block_time": 1730803653, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8062,10 +7992,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8090,7 +8020,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730802121, + "block_time": 1730803649, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8102,10 +8032,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8130,7 +8060,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8152,7 +8082,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address of the mints to return + + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8170,22 +8100,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8194,22 +8124,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", + "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802137, + "block_time": 1730803673, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8218,22 +8148,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", + "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802134, + "block_time": 1730803660, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8242,22 +8172,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", + "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802129, + "block_time": 1730803656, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8266,22 +8196,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "bbfc719cd39abadecb2979609367d09fde99833a797977f42967fcbfeb3b30ba", + "tx_hash": "306c4ceda4e9ba3ceb13b837f07aae03418306999c8f7c7d268ef15dd57755d3", "tx_index": 15, "block_index": 127, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802109, + "block_time": 1730803637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8290,22 +8220,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8324,7 +8254,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address of the mints to return + + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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` @@ -8343,22 +8273,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8379,7 +8309,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0` (str, required) - The utxo to return + + utxo: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8399,8 +8329,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset_info": { "divisible": true, "asset_longname": null, @@ -8413,12 +8343,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8453,13 +8383,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will make the bet - + feed_address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will make the bet + + feed_address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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) @@ -8513,8 +8443,8 @@ Composes a transaction to issue a bet against a feed. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8528,12 +8458,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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) @@ -8582,8 +8512,8 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8595,7 +8525,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8608,7 +8538,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "0200000000010112c9553dd19ad3444141e1552fa04548dce509ca8bb2b558390dfcddea62f075000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a294298e5abda16b2c4a6e62cc4218ab9fdf0f1c51546ee914debb0db32701f690f879bfe4a1fdfa628bb6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101a679258bf6dac8dfec2ec68f705213fd4edec68312e4d352105f9b7ec182a193000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a290da1a4954067dec4344cbdd51f4951e305b85171a7dbc719c05edac7890972adc36b2305749a1da5466cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8625,13 +8555,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending the payment - + order_match_id: `eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending the payment + + order_match_id: `af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599` (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) @@ -8676,8 +8606,8 @@ Composes a transaction to pay for a BTC order match. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8689,24 +8619,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590beb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "data": "434e5452505254590baf5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "02000000000101260d84a410a0dc247a37db4420db3d2a2160bc49b0b161be0fb2c816316b66f3000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e8030000000000001600142bd3245f056e748ad251456348cc06a80ff7910300000000000000004b6a494ed15e3d5ad786a466623be7759292a47f9644f464a4572cd8bc4f19985fbfe88befef2d4f49c176b82151bf16d05b3b6b7964a7c97c58e58230e3468c32db59ba6d3d0fedc0d8e7265ba7052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "020000000001012caeacf3e0da85ae81c7bf91d025eeb9c0d52fb3b689caa84c7c57d5fe75e08e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e8030000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d300000000000000004b6a491b430c39785d847281d541456204caa2b2eb844e9858928fd1f42e2822f70070c389b4afc24747d56befb15917e1fb08142caa70561016c5bc365bb4e55e8bd6ea52a78248b8867b715ba7052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "status": "valid" } } @@ -8714,12 +8644,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&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: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address with the BTC to burn + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -8767,8 +8697,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8780,7 +8710,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8791,18 +8721,18 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "02000000000101066096d8d00d808a870b478dfd229ed09fe2a6c3d10cce46fd0e8b879464d98e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000" + "rawtransaction": "02000000000101af08ca388d2cac5534883742f926a0029c15e6c4b48e167fa10f5e4a858dd3b9000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000" } } ``` -### 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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599` (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) @@ -8847,8 +8777,8 @@ Composes a transaction to cancel an open order or bet. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8860,22 +8790,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459466bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "data": "434e54525052545946110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "020000000001018a1974253fe85fef29e91f1d1693b2719d9e12bcde9324efdef621e4c1123733000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a2976a80684b5dc09f6e2426fa7c0fdc5314d4ee71dec4f2ab9331b1583af3eb6d42c8c12bb06bf0c6fcf6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101845d0c60f7a97009104075dec4a4ff0a86c72c53a99c915fdadec60c98447196000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a29b04a8da7dce1351dfbd1d54e2e8002d645ad95b133aaf282bfc84e5084a762007aaae3030633e0f7296cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "status": "valid" } } @@ -8883,12 +8813,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -8936,8 +8866,8 @@ Composes a transaction to destroy a quantity of an asset. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8949,7 +8879,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8969,7 +8899,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101dc386fd437628a6f89134c4ff4fbeddf2ad6a99856fbdc6d7f67091c420c8d77000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000226a202c16a9d5e454cddedf4ee84e9d90fa0c71f8dd9fb911c9096b120967158286fb7dbc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101b3c5ddef9be621ba5cc23e185690ee2a563512b49b98271c4df9312c684b973a000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000226a204feb2696a3117f421fbd42446231fc4e38c95f853c3c37d7260f99088a40edcc7dbc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8984,12 +8914,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&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: `bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963` (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) @@ -9043,8 +8973,8 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9056,7 +8986,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9081,7 +9011,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "02000000000101c332c8de3fb0c76191c5107a588c4fcb7627509536cb06bbd714e1afd79dc35e010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0affffffff0200000000000000002c6a2aadd095e8b5d1e694d35140be86ce26e77fc9481c617baa463205fa09c6dd3c01b72cc6aac1a49f1f7feed5c90927010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0a02000000000000", + "rawtransaction": "02000000000101eaa743ec6a7ae3b6a66ae4cbe270a9c1a146558e8fa256c52597fc039ab24a7b010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3effffffff0200000000000000002c6a2af978c5d86abd8f7d24f8b8434b85c9ff44c55bf1d3d84dd1a16cc03a4adc0fb2602aacc1f29dc4c72165d5c90927010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9102,12 +9032,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -9155,8 +9085,8 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9168,7 +9098,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9176,7 +9106,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -9195,7 +9125,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101b2e2feb12c6c82ed849dfdb6b9a7b5a39b76272222ef3be1bca08ca5c609d20b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a2126d5d91ae285141f81452824fa079ffdadb2f9c421bdda4741a6f697641f17f53242bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101cb82b3c860c90fd963801be658b42a9cfd295d8105cb26bd5f94bde16204cfee000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2168ef0d71579dbf45310d4942ccd1cbcb597f295e715261f19b554995da2ed5ae7e42bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9211,15 +9141,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&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: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -9273,8 +9203,8 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9286,10 +9216,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "transfer_destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "lock": false, "reset": false, @@ -9303,7 +9233,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101a049022e804c380a150aee7077be87f4263b62ab39b582672c4b1809688d719e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0322020000000000001600142bd3245f056e748ad251456348cc06a80ff791030000000000000000236a213d4112b69dbeee312084dab62f509a25acea023ce4423fa803d13c538052dee3fe51b2052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101771c67b85242343c27970f5aaa0deb1449956767e30581a98efb1182b26566af000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0322020000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d30000000000000000236a219c4725f31aa4c122599a4e8e5e1277e3a73082eee59288b834f7156338b4c28f9751b2052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9327,14 +9257,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}{&memos}{&memos_are_hex}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2,bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9388,8 +9318,8 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9401,16 +9331,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", 1 ], [ "MPMASSET", - "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", 2 ] ], @@ -9419,26 +9349,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002802bd3245f056e748ad251456348cc06a80ff7910380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807a136e6da4ea780f77ce087498a2cb0ea63118d3808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "0200000000010498e3a0fa2aca6665ad6ae7169d9c0ac92ad355647d00333bf1a76160f1b859ae000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff6dbf92b66757956f9a97a7312f10e47b874f99ceb7c9ae5c8c5f428eb254281000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdfe89bfb8c1a4f480776f689ff9106ebc57bf1983f1e5dfcc57c85f66036586b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffff13f6169bb52da5469ad2953793c063a091bf0ce4e121847d174bc299b00519000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e803000000000000695121020c1b62f2cada3b921bdd32a534b1e38b1ceb9d041efb769d665175ead85cdedb21036d3fd87aa14298c3dd9492bd7cb4515d1446fc3490cb04002a6b98291c51fdf8210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512103131b62f2cada3b921b0e32a7b49a30af43caf370942927d8051db9ec705329482103fc3c59be15f7e60c1fb166c3d371e0653c97b8ec50266b402a6b9dca7cd939e3210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae66f216a8040000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000000000000", + "rawtransaction": "02000000000104c0b9c1ef98c817f23543cd148cf95c5c35bf8fc476b8d3c5606140dd427e4013000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffffffbdc0ba180ed194a35657846ee029135fe58437cbc5d6f994181489f97d3670000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff87653abdce9cbc55d454f94a1938063fa5fa75156831b29a73134d7a6c79a46f000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff542c9fcbceccfba9a7e24628107fb94ca713854b759c457b5e3581ae00b920a2000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e80300000000000069512103e5901797f9ddc65b16e3f094c7de2ec1f688e8143982926ddf3b21058d06681521030c3f9b6a832eef514b6ae0e3ca3fc1512bb1b2050f9413078234b40f4b568046210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102fa901797f9ddc65b1630f09647a43daf9b08026c36f55c65aba783ce83a05947210314ec1ae6d8310401d7935af3cc3fef5b34eaed4aab9a78478234b1ec2bde44cc210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253ae66f216a8040000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9449,12 +9379,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -9505,8 +9435,8 @@ Composes a transaction to place an order on the distributed exchange. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9518,7 +9448,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9536,7 +9466,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -9550,7 +9480,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "0200000000010194d51512a6fd477211152d221e39b7d811d0fc8dbe16bb34ae30f71ab0e5fd74000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000356a33548096b524cde9a928f95300164119468764a93e87cc82170a25f188cddb5151867e11f213a4dd43db41754fce5624484126f120b8052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "0200000000010181c66f8b3b47455a44f85bb02299fed9bb8fe9fa4296ae6b210b1638ffb6c3cc000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000356a33916f0172924afca690dbc8a8ca90aa2a401d6c071771da56d7a76da394f1542cbc858860a39e913b4aa4a96c7f97a8ef19277820b8052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9571,13 +9501,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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 @@ -9630,8 +9560,8 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9643,8 +9573,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9661,19 +9591,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", + "data": "434e54525052545902000000000000000100000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "02000000000101c2d20c43b5c5ab37134bcb2eb9fe8d1955d0e44b7818f6697f4a63899beee703000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000306a2e9d707c1e44ed90e162402f0f6c003fda423203f4fb324f46bffce149474d979de962a604bf558508beb742af9a6f46b9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "020000000001015c7c9ec9010c3c5f164f8962aaabc3482ea95894d9d1ed0ebea9c94d1b04aaaa000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000306a2ea22c094438264d388cc52b332a7ed7c5e67296ff60df4c9c4eb92b5ccffa9017cc7e21fabff1dcdda19be1a4a2f246b9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "quantity_normalized": "0.00001000" } @@ -9682,13 +9612,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be sending - + destination: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending + + destination: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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 @@ -9735,8 +9665,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9748,24 +9678,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f07ffff", + "data": "434e54525052545904808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "0200000000010164205d055995ee2dd0de506af86e0f4639cc449e80e5e497d0dfb7a5020dee26000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a210818cede99d429b6a234cd8f1d5c234e402f2b0c63343a629a0a80dd61e25f6b2342bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101538b5e8008a84ead950b4b8b9fb9ca0e6bc4a27f3ec8ef3da1ec80ec477eb537000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2182c6e65a380aba8e89411d21794b5262ae87762b56ba156aa9a09fb75d627b840742bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "flags": 7, "memo": "ffff" } @@ -9774,13 +9704,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv` (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` @@ -9826,8 +9756,8 @@ Composes a transaction to send BTC to a dispenser. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9839,8 +9769,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "quantity": 1000, "skip_validation": false }, @@ -9850,7 +9780,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "02000000000101cf6559937a82976daf8a316fcd86d0e1ad2d32e2b29ee9b0085d937f1dd59c5e03000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6fffffffff03e803000000000000160014fcb0ac3d1529a010b58659987e4c25a4d97f74a800000000000000000c6a0acb7e80c5b5e6979c1bdb7325082701000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f02000000000000", + "rawtransaction": "0200000000010160645b4e9543a262f98dd1424434b1d8e70c93c26e1763a9fd8cb3596964a430030000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6bffffffff03e803000000000000160014b52251261586063fd84ccd5b6d7716ee71e9c23400000000000000000c6a0a5c6a35510d6e69be4c5773250827010000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9862,12 +9792,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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: `` @@ -9945,8 +9875,8 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9958,7 +9888,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9990,7 +9920,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "020000000001010ada3b7b5f8c2f08473cc656a89a2b2c5c36024a4eedfddfbe8711e1a5d93fc2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000316a2f11b322d7d2af93cd0af4d5e852286b64696ed73f45be15ac3b416f485a1222208f49d1bd922dc74c8b5dbf74432b820bb9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "020000000001018dea80ded78224744a13887dbe5e8dfcad22027d0d1ed4523c0c7314eccc24be000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000316a2ff5170f1affbac633bc5266a5ed8ef44a52c3e75c0af942a5b1ac5dd931b05a6d0b7d4d98885cbb38ae9ce5c95c59bc0bb9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -10024,12 +9954,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address that will be minting the asset + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -10077,8 +10007,8 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10090,14 +10020,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10109,7 +10039,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "0200000000010164af163ce2b6045b02c10ef15d398b2fc712f88ca51666ab06b0f193b02bde2c000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000166a144159228c9cfd2f9ef39218bacbeacadb122f7cd63ebf052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "0200000000010145da7a6d207d4c6b64dfd6e172313e4e819b2f861285ef5f1c1bb4e59672ec2d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000166a14996cd1daab8c3f16a3a982829164c5929447d62e3ebf052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10123,15 +10053,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address from which the assets are attached + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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: `58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:3` (str, optional) - The utxo to attach the assets to + + destination: `14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10177,8 +10107,8 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10190,8 +10120,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:3", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10205,12 +10135,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c353866346536663734343438333066663933336432663133343338356164653632343162663138333634363233666534383831323064626137636634336538363a337c5843507c31303030", + "data": "434e545250525459646263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c313461646535393534303664633762363435333464326337383962663166363564346536393235363335336565646637613038313239623130346163303963303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "02000000000106aba0913452807a575c5886e2fca37f478d734435861d7385abd58f7783276f3d000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff6930ebcd6f0611e8512035762b802a69d8dc1ad8f0ecb92e99ba891c4ba589c2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffbbc19d0ea4db645dca159ec2836cee71d8ad3db773fc7466d507e6943d5ecd64000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffd0c7dafcbbfbfc4ebda10c19cbdbc5a45fb6515fb420154b9a5cb22d05f32428000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdbb42518a577d3cfc97a7be0f446e071201d6a8eccefde9af209ad60115692b7000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff2e0ee5289c55b3316c76f94ca113af4aec414351879ce4089bb816e62d09f91000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff04e80300000000000069512103aa75846a822e62c7f6a9ab9e747ec964717a9c060597b31986d8f9df4af7b1422103055a828ce07083f04f5013ee7bc9f618c4a963d29d534e17816af75ec5f21719210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512102aa75846a822e62c7f6fafdc93232cb252e2cc35f519be246d38efb8b46f7bad421025258808de1728fe7065c51e023cfbd4cd0f92e82c3014e5bd030f05dc3a245ee210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee803000000000000695121038075846a822e62c7f6feacc53030cb691009aa1053cfe010e2bdcfb87ec2db2c2103363db6bfd543ed81376462d617f98f7fb69c1abafb307c6bb452916aa0c471c7210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aebf6c22fc060000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106145abe818b9bd68aeb075274ed81bd1cf2f116f2a772719157210c9753bf5e55000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4afb2ebef1fcb386e6d672c47881ba9bdd96599c1744768805e157a481fc32bb000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff976c32a16b506c1ebefa384eee8c59356c503d2d2ec23786a53b165473d27005000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4d2d18182ad31efce3fd6be83e8d09527b43cda8d2d5f86ff50394bebea4c32d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff38bcc93e9325e1b33973df78c706b264c50f49bebf2038c9ab2fc62be280105e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3fffffffff98ecc1697a666b4ee1ff49032ca7ed1c418bb3de85caefde51f2c3bc145056d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff04e80300000000000069512102074bb045adcf43e30e5b7b62b5e1bdf28300371576df96183b402fea676e41142103c191030585761fc13b362ebcc1642d57e19dbb171d4c68abb770905ab4f9395d210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102074bb045adcf43e30e0a2d31f1f1efb4d151654b30869653391162a2326947e92102d0d74657d7204e937d732ee1862d304aeb8ef4415c436be5bf26c00ee5ad6324210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee803000000000000695121022d4bb045adcf43e30e0f2062f7afbdffeb2401023282c2515a265a9b500f76782102b6e17333e34578aa4f4618d2b31e552f8fe8c3206c7b5ad78644f13ed1cc00d4210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aebf6c22fc060000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10222,13 +10152,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}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&skip_validation}{&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}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&validate}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to detach the assets to + + utxo: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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 @@ -10275,8 +10205,8 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `False` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` - + skip_validation (bool, optional) - Skip validation of the transaction - + Default: `False` + + validate (bool, optional) - Validate the transaction + + Default: `True` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10288,8 +10218,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10303,12 +10233,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964613262343736656139653530373032313461353564663464663836396331376564626335653266326231653139363034646365666266303164316334373939303a307c6263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c5843507c31303030", + "data": "434e54525052545964356563303833336238316232316566333131643436636661653231356537663030666636363536653962313036313236313561366530363630343563626163343a307c6263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "0200000000010301a75a6b897f9f13e4ea0f796dc40752d61041a3bebdf2fa658458b24a48fa8601000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffffbcd34029e0b936d9407ac254ac3bcf0fb4065f87468e48a3ae8f7c94aa7f685f00000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff7c6fe268aeb8905708c0bf749c079c3d44d513b2c6732740706959d64cdf9ef101000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff04e803000000000000695121024dd9c964e0b9c3150116fe706abab691820beb22ade3906589783bbe4c0e86cf210282e94618eaf7031583f72e890b2eeb110a96b1c1d87335813a17f32d979e5c282103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee803000000000000695121034dd9c964e0b9c3150110f97239eab0c4d35deb7ea8e99729d92a7dab484adb162102d4bb4819baa20312d7f62cd95c27ed130cc3b69087677c8c7d1fab798d9c48722103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee8030000000000006951210267d9c964e0b9c3150147e62a6eedb3dbbf29823ba9e39765bb490fdf793be2d52103e4dd227ed2c13a76b2c04bed694dde7438f083a3e91604b80c27c749f4fb3a7e2103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53ae76770b2701000000160014030bb62d246ddd169864a9ebe96043a04184fb6502000002000002000000000000", + "rawtransaction": "020000000001033fd47b27bf21980a4ffa8088bd42173375be5940563dd6650288d104cce0632b010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff9f946c2235fdede29e6e192932c5bc2a6ae4c6515b67c4677c7df20a1de8ee6b000000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffffcc6600f1562d400a1d22b61f8e371920722f2bf75d09b8ef54c42d35c7655e94010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff04e8030000000000006951210284e91461957f773d9d32c02430e9c63a22476d09608bc0b91739de1f10d979992102d645130153fc37c0fa4567ee163ee3d7d9fee2b1a03a5da096c5da92e5adfbab210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee8030000000000006951210384e91461957f773d9d33c57765e9ca3c7247345b3683c1a013699d5a459c7f272103d24519110ca97bc4ab5626e9116fa2919cfee1bba56019e691999ed9a8b4a35d210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee80300000000000069512102aee91461957f773d9d238d7622eecc75496605443389c1ec710aef2e74ed4fb82103b523726461cd02a5cd2357de7058d5e1ecc88788c20b6d96a7f7eca3d0cccd2f210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853ae76770b27010000001600149c888c6d38f587584105e664eeb7d8327b0c13ca02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10377,8 +10307,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -10386,16 +10316,16 @@ Returns the valid assets "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", - "owner": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "owner": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "divisible": true, "locked": false, "supply": 100000000000, @@ -10403,16 +10333,16 @@ Returns the valid assets "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730802400, - "last_issuance_block_time": 1730802400, + "first_issuance_block_time": 1730803975, + "last_issuance_block_time": 1730803975, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -10420,16 +10350,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "owner": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "issuer": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "owner": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "divisible": true, "locked": false, "supply": 100000000000, @@ -10437,16 +10367,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730802235, - "last_issuance_block_time": 1730802235, + "first_issuance_block_time": 1730803787, + "last_issuance_block_time": 1730803787, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -10454,8 +10384,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" } ], @@ -10483,8 +10413,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -10492,8 +10422,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730802090, - "last_issuance_block_time": 1730802100, + "first_issuance_block_time": 1730803619, + "last_issuance_block_time": 1730803630, "supply_normalized": "100.00000000" } } @@ -10524,7 +10454,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10532,14 +10462,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10547,7 +10477,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10565,7 +10495,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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. @@ -10577,7 +10507,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -10631,9 +10561,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10648,7 +10578,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10674,9 +10604,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10691,7 +10621,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10717,9 +10647,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10734,7 +10664,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10760,9 +10690,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10777,7 +10707,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10803,9 +10733,9 @@ Returns the orders of an asset }, { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10820,7 +10750,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10882,13 +10812,13 @@ Returns the orders of an asset { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10902,7 +10832,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10922,13 +10852,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 52, - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10942,7 +10872,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10962,13 +10892,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", "tx0_index": 49, - "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 50, - "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10982,7 +10912,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11002,13 +10932,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11022,7 +10952,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11042,13 +10972,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -11062,7 +10992,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11142,20 +11072,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "event": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11163,20 +11093,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", + "event": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11184,20 +11114,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11205,20 +11135,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "event": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11230,16 +11160,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11299,12 +11229,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -11316,16 +11246,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -11337,16 +11267,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -11358,16 +11288,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -11379,16 +11309,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -11468,14 +11398,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", + "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -11490,20 +11420,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -11518,20 +11448,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -11546,20 +11476,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -11574,7 +11504,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730802090, + "block_time": 1730803619, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11608,10 +11538,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11619,7 +11549,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -11632,10 +11562,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11643,7 +11573,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -11656,10 +11586,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "block_index": 207, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11667,7 +11597,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -11680,10 +11610,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11691,7 +11621,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -11704,10 +11634,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11715,7 +11645,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "divisible": true, "asset_longname": null, @@ -11766,9 +11696,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11777,7 +11707,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11787,7 +11717,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -11803,9 +11733,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", + "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", "block_index": 142, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11814,7 +11744,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11824,7 +11754,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802167, + "block_time": 1730803711, "asset_info": { "divisible": true, "asset_longname": null, @@ -11840,9 +11770,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", + "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", "block_index": 150, - "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", + "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11850,10 +11780,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 0, - "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11861,7 +11791,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802197, + "block_time": 1730803750, "asset_info": { "divisible": true, "asset_longname": null, @@ -11877,18 +11807,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11898,7 +11828,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -11923,7 +11853,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - The address to return + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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` @@ -11936,9 +11866,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11947,7 +11877,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11957,7 +11887,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -12007,7 +11937,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12015,7 +11945,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12024,7 +11954,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12032,7 +11962,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12041,7 +11971,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12049,7 +11979,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12058,7 +11988,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12095,27 +12025,27 @@ Returns the dispenses of an asset { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12130,7 +12060,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -12144,27 +12074,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", + "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", "block_index": 147, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12179,7 +12109,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802186, + "block_time": 1730803739, "asset_info": { "divisible": true, "asset_longname": null, @@ -12193,19 +12123,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12213,7 +12143,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12228,7 +12158,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -12242,19 +12172,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12262,7 +12192,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12277,7 +12207,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -12351,10 +12281,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12379,7 +12309,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12419,22 +12349,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", + "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", "tx_index": 13, "block_index": 125, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12443,22 +12373,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "tx_index": 12, "block_index": 124, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12467,22 +12397,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12501,7 +12431,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9` (str, required) - The address of the mints to return + + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (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` @@ -12520,22 +12450,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -12588,9 +12518,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12605,7 +12535,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12631,9 +12561,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "block_index": 187, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12648,7 +12578,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12674,9 +12604,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12691,7 +12621,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12717,9 +12647,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12734,7 +12664,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12760,9 +12690,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12777,7 +12707,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12812,7 +12742,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a` (str, required) - The hash of the transaction that created the order + + order_hash: `af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4` (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. @@ -12824,9 +12754,9 @@ Returns the information of an order { "result": { "tx_index": 54, - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "block_index": 210, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -12841,7 +12771,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12873,7 +12803,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a` (str, required) - The hash of the transaction that created the order + + order_hash: `af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4` (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 @@ -12900,13 +12830,13 @@ Returns the order matches of an order { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12920,7 +12850,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12940,13 +12870,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -12960,7 +12890,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12980,13 +12910,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13000,7 +12930,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13030,7 +12960,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d` (str, required) - The hash of the transaction that created the order + + order_hash: `bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807` (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 @@ -13049,15 +12979,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "btc_amount": 2000, - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "status": "valid", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "btc_amount_normalized": "0.00002000" } ], @@ -13101,9 +13031,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "block_index": 187, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13121,7 +13051,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730802340, + "block_time": 1730803906, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13147,9 +13077,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "block_index": 210, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -13167,7 +13097,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730802466, + "block_time": 1730804046, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13193,9 +13123,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13213,7 +13143,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13239,9 +13169,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13259,7 +13189,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13285,9 +13215,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13305,7 +13235,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13368,13 +13298,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13391,7 +13321,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13411,13 +13341,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 52, - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13434,7 +13364,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802340, + "block_time": 1730803906, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13454,13 +13384,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13477,7 +13407,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13497,13 +13427,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", "tx0_index": 49, - "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 50, - "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13520,7 +13450,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802275, + "block_time": 1730803826, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13540,13 +13470,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13563,7 +13493,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13621,13 +13551,13 @@ Returns all the order matches { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13641,7 +13571,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13661,13 +13591,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 52, - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13681,7 +13611,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13701,13 +13631,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", "tx0_index": 49, - "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 50, - "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13721,7 +13651,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13741,13 +13671,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13761,7 +13691,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13781,13 +13711,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13801,7 +13731,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13969,66 +13899,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", + "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", "block_index": 121, - "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", + "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730802086, + "block_time": 1730803615, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6fa2b808ca4cbe55962246eccb58ff39bf86a963fd2d557b0ff9df2b7ca2e5a0", + "tx_hash": "46b1fa87b1a4e176547f9a27c6e766f45af6bf33772ef9af4b9d872f49ed8428", "block_index": 120, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730802083, + "block_time": 1730803612, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "1056bd10fc8114a8914c302c232de98308caabbdd1fe9914e6fa838d74d2c941", + "tx_hash": "c9dae8b10b1dc7c13a533807ce35138ab263bab4718fde412b0b59e97c1a9875", "block_index": 119, - "source": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp", + "source": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730802078, + "block_time": 1730803608, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "3fc43bf9e1c19a92e27d17eec17982d27b8b84b227215bb4a549f5bdc0f7856b", + "tx_hash": "9822e208aca66c4f75ec215c31aeb1491e5c837d8100195a587a7772400147fa", "block_index": 118, - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730802075, + "block_time": 1730803604, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d8c65c1b98d461160788c8c81a24437cf47e85269115a619fd32b2dadc9ca3b3", + "tx_hash": "fc0b64eb61d459396eb9dffd16e7327535a2cee5c43f9787029d649f9ebca39e", "block_index": 117, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730802072, + "block_time": 1730803601, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -14073,9 +14003,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14084,7 +14014,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14094,7 +14024,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -14110,9 +14040,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", + "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", "block_index": 142, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14121,7 +14051,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -14131,7 +14061,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802167, + "block_time": 1730803711, "asset_info": { "divisible": true, "asset_longname": null, @@ -14147,9 +14077,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", + "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", "block_index": 150, - "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", + "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14157,10 +14087,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 0, - "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -14168,7 +14098,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802197, + "block_time": 1730803750, "asset_info": { "divisible": true, "asset_longname": null, @@ -14184,9 +14114,9 @@ Returns all dispensers }, { "tx_index": 64, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14195,7 +14125,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14205,11 +14135,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -14221,18 +14151,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14242,7 +14172,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -14267,7 +14197,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced` (str, required) - The hash of the dispenser to return + + dispenser_hash: `aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5` (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. @@ -14279,9 +14209,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14290,7 +14220,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14300,7 +14230,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -14322,7 +14252,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced` (str, required) - The hash of the dispenser to return + + dispenser_hash: `aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5` (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 @@ -14342,19 +14272,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14362,7 +14292,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14377,7 +14307,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -14391,19 +14321,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14411,7 +14341,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14426,7 +14356,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -14468,20 +14398,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -14506,7 +14436,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945` (str, required) - The hash of the dividend to return + + dividend_hash: `160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd` (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. @@ -14518,20 +14448,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -14553,7 +14483,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd` (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 @@ -14576,12 +14506,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "tx_index": 41, - "utxo": "ae8eba270cec96da68dee5ab5e085b24e1fff92f7435ba158fc3c4f251f0d5f6:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "9a0868d7a0cd709a75dab19d37c209fd896ab861ed6624a63184d6e2d38eaee7:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "divisible": true, "asset_longname": null, @@ -14593,16 +14523,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", + "address": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,27 +14578,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 694, @@ -14677,14 +14607,14 @@ Returns all events "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -14695,9 +14625,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 693, @@ -14706,9 +14636,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -14718,24 +14648,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -14745,9 +14675,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 691, @@ -14775,15 +14705,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } } ``` @@ -14861,16 +14791,16 @@ Returns the events filtered by event name "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -14880,9 +14810,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 690, @@ -14892,12 +14822,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -14907,9 +14837,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 687, @@ -14919,39 +14849,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -14961,24 +14891,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -14988,9 +14918,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_time": 1730802452 + "block_time": 1730804033 } ], "next_cursor": 656, @@ -15046,27 +14976,27 @@ Returns all the dispenses { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15081,7 +15011,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -15095,19 +15025,19 @@ Returns all the dispenses { "tx_index": 65, "dispense_index": 0, - "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", + "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15115,7 +15045,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15130,11 +15060,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -15144,27 +15074,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", + "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", "block_index": 147, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15179,7 +15109,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802186, + "block_time": 1730803739, "asset_info": { "divisible": true, "asset_longname": null, @@ -15193,19 +15123,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15213,7 +15143,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15228,7 +15158,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -15242,19 +15172,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15262,7 +15192,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15277,7 +15207,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -15319,10 +15249,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -15330,7 +15260,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -15343,10 +15273,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -15354,11 +15284,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -15367,10 +15297,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15378,7 +15308,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -15391,10 +15321,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15402,11 +15332,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -15415,10 +15345,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15426,11 +15356,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -15481,14 +15411,14 @@ Returns all the issuances "result": [ { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -15503,20 +15433,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "e8b357aa91530c00239d9e85624339c7d502fcd1042ba98b4255292588bc9a27", + "tx_hash": "973dbfc3d5006c89f20e05930dfe8ec6f41dce002773a8d7f89f8c4fd2b77629", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", - "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "transfer": false, "callable": false, "call_date": 0, @@ -15531,20 +15461,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802400, + "block_time": 1730803975, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", + "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -15559,20 +15489,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802261, + "block_time": 1730803813, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", + "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -15587,20 +15517,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730802247, + "block_time": 1730803808, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", + "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -15615,7 +15545,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802243, + "block_time": 1730803795, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15630,7 +15560,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592` (str, required) - The hash of the transaction to return + + tx_hash: `14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0` (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. @@ -15642,14 +15572,14 @@ Returns the issuances of a block { "result": { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -15664,7 +15594,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15696,16 +15626,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -15719,7 +15649,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b` (str, required) - The hash of the transaction to return + + tx_hash: `2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a` (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. @@ -15732,16 +15662,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -15775,9 +15705,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15785,14 +15715,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802152, + "block_time": 1730803688, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", + "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", "block_index": 137, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15800,7 +15730,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802149, + "block_time": 1730803685, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15814,7 +15744,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440` (str, required) - The hash of the transaction to return + + tx_hash: `146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f` (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. @@ -15826,9 +15756,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15836,7 +15766,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802152, + "block_time": 1730803688, "fee_fraction_int_normalized": "0.00000000" } } @@ -15873,10 +15803,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, "block_index": 155, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15901,7 +15831,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15910,10 +15840,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15938,7 +15868,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730802140, + "block_time": 1730803677, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15950,10 +15880,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "tx_index": 18, "block_index": 131, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15978,7 +15908,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730802125, + "block_time": 1730803653, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15990,10 +15920,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -16018,7 +15948,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730802121, + "block_time": 1730803649, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16030,10 +15960,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -16058,7 +15988,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16127,22 +16057,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -16151,22 +16081,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", + "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802137, + "block_time": 1730803673, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -16175,22 +16105,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", + "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802134, + "block_time": 1730803660, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -16199,22 +16129,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", + "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802129, + "block_time": 1730803656, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -16223,22 +16153,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "25b732f7012bae585692e26dff9e0cae7420d2d34c758ae58e1e872c4c0605ac", + "tx_hash": "a5dda36fe17d51665230d3dc0b163d9f0ac8088574f680d7ac9d1639d93979a7", "tx_index": 17, "block_index": 129, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802117, + "block_time": 1730803645, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -16257,7 +16187,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3` (str, required) - The hash of the fairmint to return + + tx_hash: `f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16268,22 +16198,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -16301,7 +16231,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx,bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp` (str, required) - The addresses to search for + + addresses: `bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963,bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu` (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. @@ -16320,8 +16250,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3", - "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" + "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea", + "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" }, { "vout": 0, @@ -16329,8 +16259,8 @@ Returns a list of unspent outputs for a list of addresses "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882", - "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" + "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd", + "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" }, { "vout": 2, @@ -16338,8 +16268,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87", - "address": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp" + "txid": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888", + "address": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu" } ], "next_cursor": null, @@ -16352,7 +16282,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re` (str, required) - The address to search for + + address: `bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l` (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 @@ -16368,31 +16298,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b" + "tx_hash": "42f07b3232c643037564ece13fdf7a669ffb3e4b0bac5a0c3f43b1052061ef0c" }, { - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" + "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421" }, { - "tx_hash": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140" + "tx_hash": "9f3197d94c332c1b4cbed5f513f792c09d8e3376879599e71eb217e396e6bc26" }, { - "tx_hash": "c5ae623bb16527836c14d80200db239faf600171f9a8bbce57eb17f98e83dc69" + "tx_hash": "4ea5d5181c45bd1c6e404df1bd1cdfc7c1223036d5b238d3d3fac69ffe3d2e2d" }, { - "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75" + "tx_hash": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c" }, { - "tx_hash": "b85036cbfa2d68a737e3168b0f4eee86af23b648867c9a04672f36d423ebfe7d" + "tx_hash": "3fae326a238017d66b6a2343b8e2efe9cfcbb685a8cef9b542f7f5e2c23e6c79" }, { - "tx_hash": "8e25e9254d6bddaea902953b00cba7ff65ffd772d2876aabff6026e0a9b03db6" + "tx_hash": "1e128106013637b72112682543e29aa6122d4d5397e609dac8039590763ebd8b" }, { - "tx_hash": "391f3d89a1a54c1f6244c8065f7eedac51effeabfa3cfa3d47dd7901c385d5d1" + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a" }, { - "tx_hash": "d5a7c6ca15b47d85e67bfb6bc3d15fbb644691439c552af371a6328d0bae8af7" + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" } ], "next_cursor": null, @@ -16405,7 +16335,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh` (str, required) - The address to search for. + + address: `bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s` (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. @@ -16418,8 +16348,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "ce652a5add340982733c4b9f78851d770ad293cb125b7139c5c6888a9585e614" + "block_index": 9, + "tx_hash": "6d2d5f10aae352b1b5a95fba0f3e002fdac1185b6ccca80f454c8e75db1e41ce" } } ``` @@ -16429,7 +16359,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx` (str, required) - The address to search for + + address: `bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963` (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 @@ -16450,7 +16380,7 @@ Returns a list of unspent outputs for a specific address "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3" + "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea" }, { "vout": 0, @@ -16458,7 +16388,7 @@ Returns a list of unspent outputs for a specific address "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882" + "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd" } ], "next_cursor": null, @@ -16471,7 +16401,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2` (str, required) - Address to get pubkey for. + + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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. @@ -16483,7 +16413,7 @@ Get pubkey for an address. ``` { - "result": "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" + "result": "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" } ``` @@ -16492,7 +16422,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990` (str, required) - The transaction hash + + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (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. @@ -16504,7 +16434,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101873c745176e6e026a77e6ad4118223dad255017dcf24f727619b597db1d41cd20100000000ffffffff03e803000000000000160014030bb62d246ddd169864a9ebe96043a04184fb6500000000000000000c6a0af928ee36123adc49716aeb1409270100000016001427ef74571f9a85ec586af7739d92549c0c3156c90247304402204ad41dd2b8a71d4d2ab33446754357ab3509b8f75270dfda2e22c9fd3cfa0ef00220569aac8a21d95ff5b46af49db36868a5cb22c86e2b6ed70cfea241a4620390ba012103ded09b2bbdb12beffbc4bd367813e7d396da685973b1cf4e4ffe273c8578780a00000000" + "result": "0200000000010188a8860f8b7b8feb281fd9f2bacbfc55dcd7a06908489a2cdc18301903cb40060100000000ffffffff03e8030000000000001600149c888c6d38f587584105e664eeb7d8327b0c13ca00000000000000000c6a0aa448e03e0ab2e889a4b1eb140927010000001600147117d7b7942210084f54617475402534fba5a0e90247304402205130abc939b2fc1366c4468d38a769594463812473594fcb4bf8710b7b1c6119022070d18ae3541f1d096fc581f3064a6632477a80f1e414108f986356066b1aacb2012103c8cfefa4b8d6559382a523b41068bf1a9344d905d4f2492ed6b46584e4c16ff000000000" } ``` @@ -16599,27 +16529,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78 }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "quantity": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, "asset_info": { "divisible": true, @@ -16630,22 +16560,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -16655,22 +16585,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "block_index": 210, - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -16680,30 +16610,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730802470.7005117, + "block_time": 1730804050.1464322, "btc_amount": 0, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "destination": "", "fee": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, - "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", + "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -16717,7 +16647,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -16748,19 +16678,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -16770,7 +16700,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -16783,7 +16713,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188` (str, required) - The hash of the transaction to return + + tx_hash: `badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10` (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 @@ -16803,27 +16733,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78 }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "quantity": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, "asset_info": { "divisible": true, @@ -16834,22 +16764,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -16859,22 +16789,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "block_index": 210, - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -16884,30 +16814,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730802470.7005117, + "block_time": 1730804050.1464322, "btc_amount": 0, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "destination": "", "fee": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, - "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", + "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -16921,7 +16851,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 5e2555113f..1735e51650 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -141,10 +141,10 @@ False, "Exclude silently UTXO with balances instead of raising an exception", ), - "skip_validation": ( + "validate": ( bool, - False, - "Skip validation of the transaction", + True, + "Validate the transaction", ), } diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index fc88c1ebb4..3206e59326 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -331,7 +331,7 @@ def compose_data(db, name, params, accept_missing_params=False, skip_validation= def compose_transaction(db, name, params, accept_missing_params=False, **construct_kwargs): """Create and return a transaction.""" - skip_validation = construct_kwargs.pop("skip_validation", False) + skip_validation = not construct_kwargs.pop("validate", True) tx_info = compose_data(db, name, params, accept_missing_params, skip_validation) transaction_info = construct(db, tx_info, **construct_kwargs) return transaction_info diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 34aa1f4a58..58502b6868 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11087,10 +11087,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -11298,10 +11298,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -11491,10 +11491,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -11691,10 +11691,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -11884,10 +11884,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -12089,10 +12089,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -12320,10 +12320,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -12525,10 +12525,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -12759,10 +12759,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -12992,10 +12992,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -13215,10 +13215,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -13441,10 +13441,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -13646,10 +13646,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -13845,10 +13845,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -14150,10 +14150,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -14350,10 +14350,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -14556,10 +14556,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { @@ -14761,10 +14761,10 @@ "required": false }, { - "name": "skip_validation", + "name": "validate", "type": "bool", - "default": false, - "description": "Skip validation of the transaction", + "default": true, + "description": "Validate the transaction", "required": false }, { diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 9260eef6a3..0e9d437a62 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": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", "difficulty": 545259519, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "previous_block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "previous_block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", "difficulty": 545259519, - "ledger_hash": "85d9e3b96d6032363520052aec54b68dcf93b60705db70171e4a5d6dd1dc4f69", - "txlist_hash": "861339cf0608556884dff37db1a9a6e37ef1d49bd7751e7f769d1d919f6b8250", - "messages_hash": "176a1499f05f4d8d3ba7c192cf8ff36a9b10138ce2c880c203401d0211d1a506", + "ledger_hash": "2832208b5976d7d56a2cb9016bb3e3a8d867504a9166ec6e9be34f672af5e5bd", + "txlist_hash": "ecf0b4a281d4691fd458095771d81ac7d88b98f3a241697d28232f10ddc6154e", + "messages_hash": "566f6ce132f1b5b40eaaa1594b13b16940ee338e5e86242912a4489f5487cf5e", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", - "block_time": 1730802452, - "previous_block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", + "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_time": 1730804033, + "previous_block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", "difficulty": 545259519, - "ledger_hash": "d9c62d5736d8e24356d2d415a925b6dbff251f70e674e6a0160857fe66b51f75", - "txlist_hash": "ad75976e8578dd5d59713ad0e91dfba966d52b705b0e58f118f6273556c388f7", - "messages_hash": "125638d1128e7b3343ba55d5ae5d1584a61d596a5ccb9002f4900980a8fa4b9e", + "ledger_hash": "fe8dac69d2789bd97bfea4688b305b38c0b6f4b3a5a8a459ef090d5077acb6f7", + "txlist_hash": "71213a325bb189bd60ad8356726b8b289b6cc40832a2753f2fa90fed4abb6dee", + "messages_hash": "554a3fc6f8fac8dd078217de6f89d24306ecc03d3f94f2d12a36a8c0908b7bd4", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", - "block_time": 1730802448, - "previous_block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", + "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", + "block_time": 1730804029, + "previous_block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", "difficulty": 545259519, - "ledger_hash": "af06333d01569b1a3f3f1f67405248456568678acf2389c2a04bdbe922ddf331", - "txlist_hash": "8c6368190fd932468d0aecfab7779ea7770cbedd7a7cf68f3d35840dd39be4a1", - "messages_hash": "aea533d82b38c4c501f3523fd48636f1e1774ca840819950917620646ce7bd75", + "ledger_hash": "92ef021c637f16bbe647891da469f387569dc7ef66a8a813c938c82d21a7e641", + "txlist_hash": "8ff9babc088363fbae03fabd550c72c476a55c500a3b398404a46879df88ba52", + "messages_hash": "7628d6dfe38c04422f29dfe524c921c3d58d5f30c313f63a8b272198a9a92159", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", - "block_time": 1730802444, - "previous_block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", + "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_time": 1730804024, + "previous_block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", "difficulty": 545259519, - "ledger_hash": "fa9779497482071f57571f71c5f0ba68731fbe6eee1ab397dff0a6bd43f8c708", - "txlist_hash": "5ac4483d2610b66ee4d94a1ca410582fd662814107653c90fd2ff867c74dcfcb", - "messages_hash": "4f1b20896965c1337611043fe95a29d63f8cf1be6855853d731357e9b11d93a0", + "ledger_hash": "963ee9a1a46f9536ff9e4351f061e47dfa4c213b4316b43f0a1db1dcd9c77d89", + "txlist_hash": "b365ccc1de84e35aa113b73a2bc9c5364a29258793536eedf0a80118b1495afa", + "messages_hash": "9f41152da97de7ee0aa5bd2a2acf7c6fb70fd192abc0ef29785812652fec9fc7", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", "difficulty": 545259519, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", "difficulty": 545259519, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 694, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 693, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" } ], "next_cursor": 691, @@ -256,16 +256,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 690, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" }, { "event_index": 687, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990" + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "object_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "block_index": 210, "confirmed": true, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "status": "valid", "confirmed": true, - "block_time": 1730802374 + "block_time": 1730803930 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "block_index": 196, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730802385, + "block_time": 1730803952, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, "block_index": 155, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,53 +816,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "15788845ef5f0f222bb560ff034685e1027711b34b95a4c50b5061e986081913", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a18d8f843dd1b3ec77bc673c74a289294b25d76cf343be7a40278872529affdc", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "7b81673891e8e9d17933aac18cb70872e06c0b4ba6dfefe1a67144c513db36ce", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a2c6d6b5e6486dc16ccab638497c541348154eef6874b8089d1dfb9cff5a70eb", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "ab5c0a68b745ac17f45b2535e6cb24ddec87836f7a00e02d5170c52e998d915c", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "ef95ec6603d996762b8c26e661e81cdb311c41054d8b2f059188719c0ac42511", + "hash": "843ffae900dcbbc860ede0f5a6848f666c36603383510299c579929c32a740e7", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -871,93 +836,58 @@ ], "vout": [ { - "value": 1000, - "script_pub_key": "512102462541f8c6aeeb293279f917a9e3bbc90ef308039c11286f7c6da1eab17ad71b2102957d891fbdeed7772945f63ec37e2f5d45289653a316f79a1b1c5f6b944ae275210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" - }, - { - "value": 1000, - "script_pub_key": "512103462541f8c6aeeb29326a4c9270bf7130559813591cc7c7aacd506a5b7d66c3da2103781209ad4279309a2301369306122704088f5f152f4c937782c19c650163426f210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" - }, - { - "value": 1000, - "script_pub_key": "512102672541f8c6aeeb29327af91429278f7c703cca26686fd381a67ee2427da2177b2102781209ad427930b036b4a326bad82704088f5f152f46161ae7acf3568163425c210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae" + "value": 0, + "script_pub_key": "6a2cf5b1aca445c1e2d61f0b3f91c2655bc4d9e7c87165f2e9ff03c25faed5157d8afb65949edc7fd36c8cc96df8" }, { - "value": 29999987000, - "script_pub_key": "00142bd3245f056e748ad251456348cc06a80ff79103" + "value": 4999990000, + "script_pub_key": "00147a136e6da4ea780f77ce087498a2cb0ea63118d3" } ], "vtxinwit": [ - "304402200bd2a48ab241b237ea4969c748ff31a0b179235f3e77f6f8402c5b0bb34e593902204047e885aa73be6ef20b8d952e45ea482fef7074832982e2825a88f14f2f824601", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "3044022011b046e0250be9aaffebdd20eef01983afb6514955dd3cab10f356010211cc790220767a4b9bc6dcf8c37f493c1214b52f506969268f32f72fe234dd80de9efaed2a01", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "304402200d31597256c4fd79e2f059717689f599717f25e991fb78656237d2e385a982cf022012149f8be078501aaecb611c705e33bb2d2b3cce3e9b94c54f106e3e4bd718a201", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "304402202d0520ebbeb43f727a794a302ca3378dde99f8e086200074f8481be39948fff902205a9f8acdfc57f1784793f48948e58f02e1a3e0c56127682d10f37ca679b8372a01", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "3044022029647a2d365bf559c55eba9d076a1ae82e85e8e33f81dc23de4d78407ef0c256022054985cf7b5f53c822871248d13838e82a869cae62099e7a550ed5281bb7b775001", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f", - "3044022043adf0d5f0fb71b91cb82012e83ec18603aa88075517fc877311db9f071075a402204d529ad606a06c9028af5b5fbab2a3cbcc1ef8ceef6ac752453815a49901c1fa01", - "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" + "304402204d2f41b18d45b7432ba82355232e850f90822901e7e88d255bac465d2bcbe46602207535963f704b2b23d839a1c2a3bcaa9fc3fffd89330739ae244817d61fd20c0301", + "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" ], "lock_time": 0, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", - "tx_id": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86" + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_id": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" + } }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f6d5f051f2c4c38f15ba35742ff9ffe1245b085eabe5de68da96ec0c27ba8eae", + "hash": "e7ae8ed3e2d68431a62466ed61b86a89fd09c2379db1da759a70cda0d768089a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +897,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e954de8ddf4f43746f28f1db9b0a2c78ab46a1ef51d67b1141e9486bad185bbd85720832d1204c8cbdfe2317edceb" + "script_pub_key": "6a2e9b269de2860042058e962cf37fef06c914ab6c767386666e073b33f75a980e27f897fdcaf9349e433ed1f506e1f2" }, { "value": 4999970000, - "script_pub_key": "0014fcb0ac3d1529a010b58659987e4c25a4d97f74a8" + "script_pub_key": "0014b52251261586063fd84ccd5b6d7716ee71e9c234" } ], "vtxinwit": [ - "3044022036f8e8bfe5290767811244fe804ae623e17081f74b514c24df96ad54edacd10302206a233a4d55c0635b10e3f30fc0cf33ed6b10d178100a6d09f4571cd846f832cd01", - "03472bf6a94b2ad79e65f2ddceab4c1d0ddd6df8784a951bb667fb9f49a9617ec9" + "3044022023652f8971b6e2cf46f7dd44ac8bfcb7763e2fffae1a899f165fa8ed27a6011802205ae3eb739eb45d3628e44c449a1a354dd8e214272220c21b988547804f17247901", + "027919e5c84ae072cc3b76f5e1d325b98ebc5f5e3e2da6024d63813f76d4f1b035" ], "lock_time": 0, - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", - "tx_id": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188" + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_id": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +918,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +945,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +970,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", - "block_time": 1730802466, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_time": 1730804046, + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +999,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 694, @@ -1083,14 +1013,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1031,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 693, @@ -1112,9 +1042,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1054,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1081,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 691, @@ -1161,14 +1091,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "msg_index": 1, "quantity": 1500000000, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", "status": "valid", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1108,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 690, @@ -1193,12 +1123,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 694, @@ -1207,14 +1137,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1155,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 693, @@ -1236,9 +1166,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1178,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1205,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 691, @@ -1285,14 +1215,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "msg_index": 1, "quantity": 1500000000, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", "status": "valid", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1232,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 690, @@ -1314,10 +1244,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1325,7 +1255,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1268,10 @@ }, { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1349,11 +1279,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1369,27 +1299,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1334,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1355,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1374,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 690, @@ -1456,12 +1386,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1401,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 687, @@ -1483,24 +1413,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": null, @@ -1512,16 +1442,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1461,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 690, @@ -1543,12 +1473,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1488,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 687, @@ -1570,24 +1500,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": null, @@ -1600,7 +1530,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1540,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1621,7 +1551,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1561,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1642,7 +1572,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1582,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1663,7 +1593,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1603,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1684,7 +1614,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1624,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1705,7 +1635,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1645,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1729,17 +1659,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1775,17 +1705,17 @@ }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_hash": "0356566fa7500ae81aa27c5f44738d2f535cfcd35833be75bc51b43daf770ad0", - "block_time": 1730802452, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_time": 1730804033, + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf:0", + "utxos_info": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1793,14 +1723,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1808,7 +1738,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1827,17 +1757,17 @@ }, { "tx_index": 74, - "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "block_index": 207, - "block_hash": "095b6a2787a14158a39fd7b1ce3f190ac5b78edebcf74b9a36de4feef27b758e", - "block_time": 1730802448, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", + "block_time": 1730804029, + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802bd3245f056e748ad251456348cc06a80ff7910380b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a8c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c234c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43:0", + "utxos_info": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1845,14 +1775,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1860,7 +1790,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1879,17 +1809,17 @@ }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", - "block_time": 1730802444, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_time": 1730804024, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", + "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1897,14 +1827,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1912,7 +1842,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1931,17 +1861,17 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", - "block_time": 1730802440, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", + "block_time": 1730804011, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", + "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1949,14 +1879,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -1964,7 +1894,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1997,20 +1927,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 54, - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx1_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2029,9 +1959,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 675, @@ -2050,11 +1980,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "open", - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -2078,24 +2008,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "block_index": 209, - "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -2105,9 +2035,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 673, @@ -2119,20 +2049,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "tx0_index": 60, - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx1_index": 54, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2151,23 +2081,23 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "block_time": 1730802457 + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_time": 1730804037 }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 668, @@ -2176,17 +2106,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "quantity": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, "asset_info": { "divisible": true, @@ -2197,22 +2127,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2222,22 +2152,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "block_index": 210, - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -2247,30 +2177,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730802470.7005117, + "block_time": 1730804050.1464322, "btc_amount": 0, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "destination": "", "fee": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, - "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", + "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -2284,7 +2214,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -2293,7 +2223,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2301,14 +2231,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2316,14 +2246,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2331,14 +2261,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2353,7 +2283,7 @@ "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2361,7 +2291,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2374,7 +2304,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2396,16 +2326,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -2417,16 +2347,16 @@ }, { "block_index": 208, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -2438,16 +2368,16 @@ }, { "block_index": 207, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2459,16 +2389,16 @@ }, { "block_index": 207, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -2480,20 +2410,20 @@ }, { "block_index": 203, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "event": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2507,16 +2437,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -2528,16 +2458,16 @@ }, { "block_index": 206, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -2549,20 +2479,20 @@ }, { "block_index": 206, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2570,16 +2500,16 @@ }, { "block_index": 205, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "divisible": true, "asset_longname": null, @@ -2591,20 +2521,20 @@ }, { "block_index": 205, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2623,9 +2553,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", + "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", "block_index": 137, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2633,7 +2563,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802149, + "block_time": 1730803685, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2644,14 +2574,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "282125d035559b6e107a95f7f558664d4f4fe840ad084c76d24b7ca5b533ce06", + "tx_hash": "7ffb1c32851e405bb735efcfac37591da1ced665eab020ec6eb51f0d423d429a", "block_index": 112, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730802055, + "block_time": 1730803583, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2663,10 +2593,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2674,7 +2604,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -2687,10 +2617,10 @@ }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2698,11 +2628,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2711,10 +2641,10 @@ }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2722,11 +2652,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2735,10 +2665,10 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2746,7 +2676,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "divisible": true, "asset_longname": null, @@ -2759,10 +2689,10 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2770,11 +2700,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2789,10 +2719,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", + "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", "block_index": 151, - "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", - "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", + "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", + "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2800,11 +2730,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802200, + "block_time": 1730803754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2819,10 +2749,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2830,11 +2760,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2843,10 +2773,10 @@ }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2854,11 +2784,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2867,10 +2797,10 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2878,11 +2808,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2891,10 +2821,10 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2902,11 +2832,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2915,10 +2845,10 @@ }, { "tx_index": 71, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2926,11 +2856,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802436, + "block_time": 1730804008, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -2950,9 +2880,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2891,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2901,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -2987,9 +2917,9 @@ }, { "tx_index": 64, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2998,7 +2928,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3008,11 +2938,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -3029,9 +2959,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3040,7 +2970,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3050,7 +2980,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3070,19 +3000,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", + "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3090,7 +3020,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3105,11 +3035,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -3119,19 +3049,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3139,7 +3069,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3154,7 +3084,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3168,19 +3098,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3188,7 +3118,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3203,7 +3133,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -3223,19 +3153,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", + "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3243,7 +3173,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3258,11 +3188,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -3272,19 +3202,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3292,7 +3222,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3307,7 +3237,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3321,19 +3251,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3341,7 +3271,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3356,7 +3286,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -3376,19 +3306,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3396,7 +3326,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3411,7 +3341,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3425,19 +3355,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3445,7 +3375,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3460,7 +3390,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -3480,19 +3410,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3500,7 +3430,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3515,7 +3445,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3529,19 +3459,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3549,7 +3479,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3564,7 +3494,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -3583,16 +3513,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -3603,14 +3533,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -3625,20 +3555,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", + "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -3653,20 +3583,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802261, + "block_time": 1730803813, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", + "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -3681,20 +3611,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730802247, + "block_time": 1730803808, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", + "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -3709,20 +3639,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802243, + "block_time": 1730803795, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "461f5d5c7edf5ab4fb9c3044b6d0cbe87893accbc6c103ee3bbc01355b45c08a", + "tx_hash": "4125c1bdb875706dafde81f4b005bdd027a19d6696523b6f8e292a72e662f215", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -3737,7 +3667,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802238, + "block_time": 1730803792, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3751,8 +3681,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -3760,16 +3690,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -3777,16 +3707,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -3794,16 +3724,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 40, @@ -3811,16 +3741,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730802140, - "last_issuance_block_time": 1730802145, + "first_issuance_block_time": 1730803677, + "last_issuance_block_time": 1730803680, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 19, @@ -3828,8 +3758,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730802125, - "last_issuance_block_time": 1730802137, + "first_issuance_block_time": 1730803653, + "last_issuance_block_time": 1730803673, "supply_normalized": "0.00000019" } ], @@ -3842,8 +3772,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -3851,16 +3781,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -3868,16 +3798,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -3885,16 +3815,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 40, @@ -3902,16 +3832,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730802140, - "last_issuance_block_time": 1730802145, + "first_issuance_block_time": 1730803677, + "last_issuance_block_time": 1730803680, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 19, @@ -3919,8 +3849,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730802125, - "last_issuance_block_time": 1730802137, + "first_issuance_block_time": 1730803653, + "last_issuance_block_time": 1730803673, "supply_normalized": "0.00000019" } ], @@ -3933,8 +3863,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -3942,16 +3872,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -3959,16 +3889,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -3976,16 +3906,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 40, @@ -3993,16 +3923,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730802140, - "last_issuance_block_time": 1730802145, + "first_issuance_block_time": 1730803677, + "last_issuance_block_time": 1730803680, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 19, @@ -4010,8 +3940,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730802125, - "last_issuance_block_time": 1730802137, + "first_issuance_block_time": 1730803653, + "last_issuance_block_time": 1730803673, "supply_normalized": "0.00000019" } ], @@ -4022,17 +3952,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883", - "block_time": 1730802457, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_time": 1730804037, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab:1", + "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4068,17 +3998,17 @@ }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "block_hash": "22cb1144a78eb986f23cb07faddf1b1d8366775cbe62d73a9a902a5d4f4e3c6c", - "block_time": 1730802444, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_time": 1730804024, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:0", + "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4086,14 +4016,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4101,7 +4031,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4120,17 +4050,17 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "block_hash": "1f5ae0d7abc779f2fabb30863b981d926b293a2da7ef84f87b5091fac8768d0b", - "block_time": 1730802440, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", + "block_time": 1730804011, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f80b2ff97e7c71ff1551879a608594da7c9468c50e180fcb0ac3d1529a010b58659987e4c25a4d97f74a888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1:0", + "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4138,14 +4068,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4153,7 +4083,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4172,17 +4102,17 @@ }, { "tx_index": 71, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "block_hash": "2561ce95bf2aff6a835d470b4f19f9d08e4285947c740365d548cafb59791fcc", - "block_time": 1730802436, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "54c234af19c5aaef14bd17510500fcf7f56f27369249714c95054847677d42f5", + "block_time": 1730804008, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", + "data": "02000000178d82231300000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", "supported": true, - "utxos_info": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8:1", + "utxos_info": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4190,12 +4120,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4206,17 +4136,17 @@ }, { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_hash": "44fd5fd9c920b878146d1dd1f6f40de3294a56d4e993ddfcbd621ec91da787e9", - "block_time": 1730802423, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "block_hash": "750a8780e1830d3ce0323c69bc4aa4e479f4d28e5883c8318f72a7d99793f5c6", + "block_time": 1730804003, + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592:1", + "utxos_info": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4247,20 +4177,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4282,9 +4212,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4299,7 +4229,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4325,9 +4255,9 @@ }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4342,7 +4272,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4368,9 +4298,9 @@ }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4385,7 +4315,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4411,9 +4341,9 @@ }, { "tx_index": 60, - "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4428,7 +4358,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4454,9 +4384,9 @@ }, { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4471,7 +4401,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4502,10 +4432,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, "block_index": 155, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4530,7 +4460,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4539,10 +4469,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4567,7 +4497,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730802140, + "block_time": 1730803677, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4579,10 +4509,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "tx_index": 18, "block_index": 131, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4607,7 +4537,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730802125, + "block_time": 1730803653, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4619,10 +4549,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4647,7 +4577,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730802121, + "block_time": 1730803649, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4659,10 +4589,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4687,7 +4617,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4705,22 +4635,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4729,22 +4659,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", + "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802137, + "block_time": 1730803673, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4753,22 +4683,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", + "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802134, + "block_time": 1730803660, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4777,22 +4707,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", + "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802129, + "block_time": 1730803656, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4801,22 +4731,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "bbfc719cd39abadecb2979609367d09fde99833a797977f42967fcbfeb3b30ba", + "tx_hash": "306c4ceda4e9ba3ceb13b837f07aae03418306999c8f7c7d268ef15dd57755d3", "tx_index": 15, "block_index": 127, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802109, + "block_time": 1730803637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4825,22 +4755,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4855,22 +4785,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4887,8 +4817,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset_info": { "divisible": true, "asset_longname": null, @@ -4901,12 +4831,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -4922,7 +4852,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4935,7 +4865,7 @@ "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "0200000000010112c9553dd19ad3444141e1552fa04548dce509ca8bb2b558390dfcddea62f075000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a294298e5abda16b2c4a6e62cc4218ab9fdf0f1c51546ee914debb0db32701f690f879bfe4a1fdfa628bb6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101a679258bf6dac8dfec2ec68f705213fd4edec68312e4d352105f9b7ec182a193000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a290da1a4954067dec4344cbdd51f4951e305b85171a7dbc719c05edac7890972adc36b2305749a1da5466cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4953,24 +4883,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590beb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "data": "434e5452505254590baf5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "02000000000101260d84a410a0dc247a37db4420db3d2a2160bc49b0b161be0fb2c816316b66f3000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e8030000000000001600142bd3245f056e748ad251456348cc06a80ff7910300000000000000004b6a494ed15e3d5ad786a466623be7759292a47f9644f464a4572cd8bc4f19985fbfe88befef2d4f49c176b82151bf16d05b3b6b7964a7c97c58e58230e3468c32db59ba6d3d0fedc0d8e7265ba7052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "020000000001012caeacf3e0da85ae81c7bf91d025eeb9c0d52fb3b689caa84c7c57d5fe75e08e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e8030000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d300000000000000004b6a491b430c39785d847281d541456204caa2b2eb844e9858928fd1f42e2822f70070c389b4afc24747d56befb15917e1fb08142caa70561016c5bc365bb4e55e8bd6ea52a78248b8867b715ba7052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "order_match_id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "status": "valid" } } @@ -4979,7 +4909,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4990,28 +4920,28 @@ "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "02000000000101066096d8d00d808a870b478dfd229ed09fe2a6c3d10cce46fd0e8b879464d98e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000" + "rawtransaction": "02000000000101af08ca388d2cac5534883742f926a0029c15e6c4b48e167fa10f5e4a858dd3b9000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459466bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "data": "434e54525052545946110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "020000000001018a1974253fe85fef29e91f1d1693b2719d9e12bcde9324efdef621e4c1123733000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0200000000000000002b6a2976a80684b5dc09f6e2426fa7c0fdc5314d4ee71dec4f2ab9331b1583af3eb6d42c8c12bb06bf0c6fcf6cba052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101845d0c60f7a97009104075dec4a4ff0a86c72c53a99c915fdadec60c98447196000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a29b04a8da7dce1351dfbd1d54e2e8002d645ad95b133aaf282bfc84e5084a762007aaae3030633e0f7296cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "status": "valid" } } @@ -5020,7 +4950,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -5040,7 +4970,7 @@ "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101dc386fd437628a6f89134c4ff4fbeddf2ad6a99856fbdc6d7f67091c420c8d77000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000226a202c16a9d5e454cddedf4ee84e9d90fa0c71f8dd9fb911c9096b120967158286fb7dbc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101b3c5ddef9be621ba5cc23e185690ee2a563512b49b98271c4df9312c684b973a000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000226a204feb2696a3117f421fbd42446231fc4e38c95f853c3c37d7260f99088a40edcc7dbc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -5056,7 +4986,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5081,7 +5011,7 @@ "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "02000000000101c332c8de3fb0c76191c5107a588c4fcb7627509536cb06bbd714e1afd79dc35e010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0affffffff0200000000000000002c6a2aadd095e8b5d1e694d35140be86ce26e77fc9481c617baa463205fa09c6dd3c01b72cc6aac1a49f1f7feed5c90927010000001600146186402d4cc861d0ae1f56c5c95fc504fac14c0a02000000000000", + "rawtransaction": "02000000000101eaa743ec6a7ae3b6a66ae4cbe270a9c1a146558e8fa256c52597fc039ab24a7b010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3effffffff0200000000000000002c6a2af978c5d86abd8f7d24f8b8434b85c9ff44c55bf1d3d84dd1a16cc03a4adc0fb2602aacc1f29dc4c72165d5c90927010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5103,7 +5033,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5111,7 +5041,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5130,7 +5060,7 @@ "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101b2e2feb12c6c82ed849dfdb6b9a7b5a39b76272222ef3be1bca08ca5c609d20b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a2126d5d91ae285141f81452824fa079ffdadb2f9c421bdda4741a6f697641f17f53242bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101cb82b3c860c90fd963801be658b42a9cfd295d8105cb26bd5f94bde16204cfee000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2168ef0d71579dbf45310d4942ccd1cbcb597f295e715261f19b554995da2ed5ae7e42bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5147,10 +5077,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "transfer_destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "lock": false, "reset": false, @@ -5164,7 +5094,7 @@ "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101a049022e804c380a150aee7077be87f4263b62ab39b582672c4b1809688d719e000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff0322020000000000001600142bd3245f056e748ad251456348cc06a80ff791030000000000000000236a213d4112b69dbeee312084dab62f509a25acea023ce4423fa803d13c538052dee3fe51b2052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101771c67b85242343c27970f5aaa0deb1449956767e30581a98efb1182b26566af000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0322020000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d30000000000000000236a219c4725f31aa4c122599a4e8e5e1277e3a73082eee59288b834f7156338b4c28f9751b2052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5189,16 +5119,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", 1 ], [ "MPMASSET", - "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", 2 ] ], @@ -5207,26 +5137,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002802bd3245f056e748ad251456348cc06a80ff7910380c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807a136e6da4ea780f77ce087498a2cb0ea63118d3808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "0200000000010498e3a0fa2aca6665ad6ae7169d9c0ac92ad355647d00333bf1a76160f1b859ae000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff6dbf92b66757956f9a97a7312f10e47b874f99ceb7c9ae5c8c5f428eb254281000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdfe89bfb8c1a4f480776f689ff9106ebc57bf1983f1e5dfcc57c85f66036586b000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffff13f6169bb52da5469ad2953793c063a091bf0ce4e121847d174bc299b00519000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff03e803000000000000695121020c1b62f2cada3b921bdd32a534b1e38b1ceb9d041efb769d665175ead85cdedb21036d3fd87aa14298c3dd9492bd7cb4515d1446fc3490cb04002a6b98291c51fdf8210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512103131b62f2cada3b921b0e32a7b49a30af43caf370942927d8051db9ec705329482103fc3c59be15f7e60c1fb166c3d371e0653c97b8ec50266b402a6b9dca7cd939e3210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53ae66f216a8040000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000000000000", + "rawtransaction": "02000000000104c0b9c1ef98c817f23543cd148cf95c5c35bf8fc476b8d3c5606140dd427e4013000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffffffbdc0ba180ed194a35657846ee029135fe58437cbc5d6f994181489f97d3670000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff87653abdce9cbc55d454f94a1938063fa5fa75156831b29a73134d7a6c79a46f000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff542c9fcbceccfba9a7e24628107fb94ca713854b759c457b5e3581ae00b920a2000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e80300000000000069512103e5901797f9ddc65b16e3f094c7de2ec1f688e8143982926ddf3b21058d06681521030c3f9b6a832eef514b6ae0e3ca3fc1512bb1b2050f9413078234b40f4b568046210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102fa901797f9ddc65b1630f09647a43daf9b08026c36f55c65aba783ce83a05947210314ec1ae6d8310401d7935af3cc3fef5b34eaed4aab9a78478234b1ec2bde44cc210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253ae66f216a8040000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5238,7 +5168,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5256,7 +5186,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5270,7 +5200,7 @@ "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "0200000000010194d51512a6fd477211152d221e39b7d811d0fc8dbe16bb34ae30f71ab0e5fd74000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000356a33548096b524cde9a928f95300164119468764a93e87cc82170a25f188cddb5151867e11f213a4dd43db41754fce5624484126f120b8052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "0200000000010181c66f8b3b47455a44f85bb02299fed9bb8fe9fa4296ae6b210b1638ffb6c3cc000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000356a33916f0172924afca690dbc8a8ca90aa2a401d6c071771da56d7a76da394f1542cbc858860a39e913b4aa4a96c7f97a8ef19277820b8052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5292,8 +5222,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5310,19 +5240,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f", + "data": "434e54525052545902000000000000000100000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "02000000000101c2d20c43b5c5ab37134bcb2eb9fe8d1955d0e44b7818f6697f4a63899beee703000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000306a2e9d707c1e44ed90e162402f0f6c003fda423203f4fb324f46bffce149474d979de962a604bf558508beb742af9a6f46b9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "020000000001015c7c9ec9010c3c5f164f8962aaabc3482ea95894d9d1ed0ebea9c94d1b04aaaa000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000306a2ea22c094438264d388cc52b332a7ed7c5e67296ff60df4c9c4eb92b5ccffa9017cc7e21fabff1dcdda19be1a4a2f246b9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "quantity_normalized": "0.00001000" } @@ -5332,24 +5262,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f07ffff", + "data": "434e54525052545904808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "0200000000010164205d055995ee2dd0de506af86e0f4639cc449e80e5e497d0dfb7a5020dee26000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000236a210818cede99d429b6a234cd8f1d5c234e402f2b0c63343a629a0a80dd61e25f6b2342bc052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "02000000000101538b5e8008a84ead950b4b8b9fb9ca0e6bc4a27f3ec8ef3da1ec80ec477eb537000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2182c6e65a380aba8e89411d21794b5262ae87762b56ba156aa9a09fb75d627b840742bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "flags": 7, "memo": "ffff" } @@ -5359,8 +5289,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "quantity": 1000, "skip_validation": false }, @@ -5370,7 +5300,7 @@ "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "02000000000101cf6559937a82976daf8a316fcd86d0e1ad2d32e2b29ee9b0085d937f1dd59c5e03000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6fffffffff03e803000000000000160014fcb0ac3d1529a010b58659987e4c25a4d97f74a800000000000000000c6a0acb7e80c5b5e6979c1bdb7325082701000000160014c4b4b57ecfc225f47eafc5b13828d144d8c0ed6f02000000000000", + "rawtransaction": "0200000000010160645b4e9543a262f98dd1424434b1d8e70c93c26e1763a9fd8cb3596964a430030000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6bffffffff03e803000000000000160014b52251261586063fd84ccd5b6d7716ee71e9c23400000000000000000c6a0a5c6a35510d6e69be4c5773250827010000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5383,7 +5313,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5415,7 +5345,7 @@ "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "020000000001010ada3b7b5f8c2f08473cc656a89a2b2c5c36024a4eedfddfbe8711e1a5d93fc2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000316a2f11b322d7d2af93cd0af4d5e852286b64696ed73f45be15ac3b416f485a1222208f49d1bd922dc74c8b5dbf74432b820bb9052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "020000000001018dea80ded78224744a13887dbe5e8dfcad22027d0d1ed4523c0c7314eccc24be000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000316a2ff5170f1affbac633bc5266a5ed8ef44a52c3e75c0af942a5b1ac5dd931b05a6d0b7d4d98885cbb38ae9ce5c95c59bc0bb9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5450,14 +5380,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5469,7 +5399,7 @@ "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "0200000000010164af163ce2b6045b02c10ef15d398b2fc712f88ca51666ab06b0f193b02bde2c000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff020000000000000000166a144159228c9cfd2f9ef39218bacbeacadb122f7cd63ebf052a010000001600142bd3245f056e748ad251456348cc06a80ff7910302000000000000", + "rawtransaction": "0200000000010145da7a6d207d4c6b64dfd6e172313e4e819b2f861285ef5f1c1bb4e59672ec2d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000166a14996cd1daab8c3f16a3a982829164c5929447d62e3ebf052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5484,8 +5414,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86:3", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5499,12 +5429,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c353866346536663734343438333066663933336432663133343338356164653632343162663138333634363233666534383831323064626137636634336538363a337c5843507c31303030", + "data": "434e545250525459646263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c313461646535393534303664633762363435333464326337383962663166363564346536393235363335336565646637613038313239623130346163303963303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "02000000000106aba0913452807a575c5886e2fca37f478d734435861d7385abd58f7783276f3d000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff6930ebcd6f0611e8512035762b802a69d8dc1ad8f0ecb92e99ba891c4ba589c2000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffbbc19d0ea4db645dca159ec2836cee71d8ad3db773fc7466d507e6943d5ecd64000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffd0c7dafcbbfbfc4ebda10c19cbdbc5a45fb6515fb420154b9a5cb22d05f32428000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffffdbb42518a577d3cfc97a7be0f446e071201d6a8eccefde9af209ad60115692b7000000001600142bd3245f056e748ad251456348cc06a80ff79103fffffffff2e0ee5289c55b3316c76f94ca113af4aec414351879ce4089bb816e62d09f91000000001600142bd3245f056e748ad251456348cc06a80ff79103ffffffff04e80300000000000069512103aa75846a822e62c7f6a9ab9e747ec964717a9c060597b31986d8f9df4af7b1422103055a828ce07083f04f5013ee7bc9f618c4a963d29d534e17816af75ec5f21719210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee80300000000000069512102aa75846a822e62c7f6fafdc93232cb252e2cc35f519be246d38efb8b46f7bad421025258808de1728fe7065c51e023cfbd4cd0f92e82c3014e5bd030f05dc3a245ee210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aee803000000000000695121038075846a822e62c7f6feacc53030cb691009aa1053cfe010e2bdcfb87ec2db2c2103363db6bfd543ed81376462d617f98f7fb69c1abafb307c6bb452916aa0c471c7210313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f53aebf6c22fc060000001600142bd3245f056e748ad251456348cc06a80ff7910302000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106145abe818b9bd68aeb075274ed81bd1cf2f116f2a772719157210c9753bf5e55000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4afb2ebef1fcb386e6d672c47881ba9bdd96599c1744768805e157a481fc32bb000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff976c32a16b506c1ebefa384eee8c59356c503d2d2ec23786a53b165473d27005000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4d2d18182ad31efce3fd6be83e8d09527b43cda8d2d5f86ff50394bebea4c32d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff38bcc93e9325e1b33973df78c706b264c50f49bebf2038c9ab2fc62be280105e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3fffffffff98ecc1697a666b4ee1ff49032ca7ed1c418bb3de85caefde51f2c3bc145056d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff04e80300000000000069512102074bb045adcf43e30e5b7b62b5e1bdf28300371576df96183b402fea676e41142103c191030585761fc13b362ebcc1642d57e19dbb171d4c68abb770905ab4f9395d210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102074bb045adcf43e30e0a2d31f1f1efb4d151654b30869653391162a2326947e92102d0d74657d7204e937d732ee1862d304aeb8ef4415c436be5bf26c00ee5ad6324210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee803000000000000695121022d4bb045adcf43e30e0f2062f7afbdffeb2401023282c2515a265a9b500f76782102b6e17333e34578aa4f4618d2b31e552f8fe8c3206c7b5ad78644f13ed1cc00d4210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aebf6c22fc060000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5517,8 +5447,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5532,12 +5462,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964613262343736656139653530373032313461353564663464663836396331376564626335653266326231653139363034646365666266303164316334373939303a307c6263727431713930666a676863396465366734356a3367343335336e71783471386c307967723579686663327c5843507c31303030", + "data": "434e54525052545964356563303833336238316232316566333131643436636661653231356537663030666636363536653962313036313236313561366530363630343563626163343a307c6263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "0200000000010301a75a6b897f9f13e4ea0f796dc40752d61041a3bebdf2fa658458b24a48fa8601000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffffbcd34029e0b936d9407ac254ac3bcf0fb4065f87468e48a3ae8f7c94aa7f685f00000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff7c6fe268aeb8905708c0bf749c079c3d44d513b2c6732740706959d64cdf9ef101000000160014030bb62d246ddd169864a9ebe96043a04184fb65ffffffff04e803000000000000695121024dd9c964e0b9c3150116fe706abab691820beb22ade3906589783bbe4c0e86cf210282e94618eaf7031583f72e890b2eeb110a96b1c1d87335813a17f32d979e5c282103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee803000000000000695121034dd9c964e0b9c3150110f97239eab0c4d35deb7ea8e99729d92a7dab484adb162102d4bb4819baa20312d7f62cd95c27ed130cc3b69087677c8c7d1fab798d9c48722103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53aee8030000000000006951210267d9c964e0b9c3150147e62a6eedb3dbbf29823ba9e39765bb490fdf793be2d52103e4dd227ed2c13a76b2c04bed694dde7438f083a3e91604b80c27c749f4fb3a7e2103ddb4e3ce1d7c9e4427908485a330de50b3bea9c4dd48b0079d5825e0d2e6798d53ae76770b2701000000160014030bb62d246ddd169864a9ebe96043a04184fb6502000002000002000000000000", + "rawtransaction": "020000000001033fd47b27bf21980a4ffa8088bd42173375be5940563dd6650288d104cce0632b010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff9f946c2235fdede29e6e192932c5bc2a6ae4c6515b67c4677c7df20a1de8ee6b000000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffffcc6600f1562d400a1d22b61f8e371920722f2bf75d09b8ef54c42d35c7655e94010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff04e8030000000000006951210284e91461957f773d9d32c02430e9c63a22476d09608bc0b91739de1f10d979992102d645130153fc37c0fa4567ee163ee3d7d9fee2b1a03a5da096c5da92e5adfbab210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee8030000000000006951210384e91461957f773d9d33c57765e9ca3c7247345b3683c1a013699d5a459c7f272103d24519110ca97bc4ab5626e9116fa2919cfee1bba56019e691999ed9a8b4a35d210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee80300000000000069512102aee91461957f773d9d238d7622eecc75496605443389c1ec710aef2e74ed4fb82103b523726461cd02a5cd2357de7058d5e1ecc88788c20b6d96a7f7eca3d0cccd2f210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853ae76770b27010000001600149c888c6d38f587584105e664eeb7d8327b0c13ca02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5553,8 +5483,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -5562,16 +5492,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730802423, - "last_issuance_block_time": 1730802423, + "first_issuance_block_time": 1730804003, + "last_issuance_block_time": 1730804003, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", - "owner": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "owner": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "divisible": true, "locked": false, "supply": 100000000000, @@ -5579,16 +5509,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730802400, - "last_issuance_block_time": 1730802400, + "first_issuance_block_time": 1730803975, + "last_issuance_block_time": 1730803975, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -5596,16 +5526,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730802238, - "last_issuance_block_time": 1730802247, + "first_issuance_block_time": 1730803792, + "last_issuance_block_time": 1730803808, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "owner": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "issuer": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "owner": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "divisible": true, "locked": false, "supply": 100000000000, @@ -5613,16 +5543,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730802235, - "last_issuance_block_time": 1730802235, + "first_issuance_block_time": 1730803787, + "last_issuance_block_time": 1730803787, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 100000000000, @@ -5630,8 +5560,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730802189, - "last_issuance_block_time": 1730802189, + "first_issuance_block_time": 1730803742, + "last_issuance_block_time": 1730803742, "supply_normalized": "1000.00000000" } ], @@ -5643,8 +5573,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "owner": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false, "supply": 10000000000, @@ -5652,15 +5582,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730802090, - "last_issuance_block_time": 1730802100, + "first_issuance_block_time": 1730803619, + "last_issuance_block_time": 1730803630, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5668,14 +5598,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5683,7 +5613,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -5696,7 +5626,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5718,9 +5648,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5735,7 +5665,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5761,9 +5691,9 @@ }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5778,7 +5708,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5804,9 +5734,9 @@ }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5821,7 +5751,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5847,9 +5777,9 @@ }, { "tx_index": 60, - "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5864,7 +5794,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5890,9 +5820,9 @@ }, { "tx_index": 76, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5907,7 +5837,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5938,13 +5868,13 @@ "/v2/assets//matches": { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5958,7 +5888,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5978,13 +5908,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 52, - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5998,7 +5928,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6018,13 +5948,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", "tx0_index": 49, - "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 50, - "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6038,7 +5968,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6058,13 +5988,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6078,7 +6008,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6098,13 +6028,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -6118,7 +6048,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6145,20 +6075,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "event": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6166,20 +6096,20 @@ }, { "block_index": 125, - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", + "event": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6187,20 +6117,20 @@ }, { "block_index": 124, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6208,20 +6138,20 @@ }, { "block_index": 124, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "event": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6233,16 +6163,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6260,12 +6190,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -6277,16 +6207,16 @@ }, { "block_index": 209, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -6298,16 +6228,16 @@ }, { "block_index": 208, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -6319,16 +6249,16 @@ }, { "block_index": 207, - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6340,16 +6270,16 @@ }, { "block_index": 206, - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -6372,14 +6302,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", + "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6394,20 +6324,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6422,20 +6352,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6450,20 +6380,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -6478,7 +6408,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730802090, + "block_time": 1730803619, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6490,10 +6420,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6501,7 +6431,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -6514,10 +6444,10 @@ }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6525,7 +6455,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -6538,10 +6468,10 @@ }, { "tx_index": 74, - "tx_hash": "e4cec9ab665f431214118e3daaad400e590bdf1b412bcfba15b3b0f58f5b3e43", + "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", "block_index": 207, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6549,7 +6479,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "asset_info": { "divisible": true, "asset_longname": null, @@ -6562,10 +6492,10 @@ }, { "tx_index": 73, - "tx_hash": "58f4e6f7444830ff933d2f134385ade6241bf18364623fe488120dba7cf43e86", + "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", "block_index": 206, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6573,7 +6503,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802444, + "block_time": 1730804024, "asset_info": { "divisible": true, "asset_longname": null, @@ -6586,10 +6516,10 @@ }, { "tx_index": 72, - "tx_hash": "552b5e43f9e1f4813a388f7c96e293c006b39e78c6e7165cf77790cf0f9828e1", + "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", "block_index": 205, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6597,7 +6527,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802440, + "block_time": 1730804011, "asset_info": { "divisible": true, "asset_longname": null, @@ -6616,9 +6546,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6627,7 +6557,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6637,7 +6567,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6653,9 +6583,9 @@ }, { "tx_index": 29, - "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", + "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", "block_index": 142, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6664,7 +6594,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6674,7 +6604,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802167, + "block_time": 1730803711, "asset_info": { "divisible": true, "asset_longname": null, @@ -6690,9 +6620,9 @@ }, { "tx_index": 30, - "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", + "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", "block_index": 150, - "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", + "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6700,10 +6630,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 0, - "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6711,7 +6641,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802197, + "block_time": 1730803750, "asset_info": { "divisible": true, "asset_longname": null, @@ -6727,18 +6657,18 @@ }, { "tx_index": 33, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6748,7 +6678,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -6769,9 +6699,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6780,7 +6710,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6790,7 +6720,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6818,7 +6748,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6826,7 +6756,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6835,7 +6765,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6843,7 +6773,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6852,7 +6782,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6860,7 +6790,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6869,7 +6799,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -6884,27 +6814,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6919,7 +6849,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -6933,27 +6863,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", + "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", "block_index": 147, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6968,7 +6898,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802186, + "block_time": 1730803739, "asset_info": { "divisible": true, "asset_longname": null, @@ -6982,19 +6912,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7002,7 +6932,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7017,7 +6947,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -7031,19 +6961,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7051,7 +6981,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7066,7 +6996,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -7089,10 +7019,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7117,7 +7047,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7135,22 +7065,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "dad31a1085b08181c3eff629e15323b647ef4068974eda7af346c3bde5e537d3", + "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", "tx_index": 13, "block_index": 125, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7159,22 +7089,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75", + "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", "tx_index": 12, "block_index": 124, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802096, + "block_time": 1730803626, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7183,22 +7113,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7213,22 +7143,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "13bb1bf68ddafbb0e9d06c8c02a3ad96eb1a3b85bc349b500f2c1b445e43d029", + "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802093, + "block_time": 1730803622, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -7244,9 +7174,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7261,7 +7191,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7287,9 +7217,9 @@ }, { "tx_index": 52, - "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "block_index": 187, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7304,7 +7234,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7330,9 +7260,9 @@ }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7347,7 +7277,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7373,9 +7303,9 @@ }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7390,7 +7320,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7416,9 +7346,9 @@ }, { "tx_index": 60, - "tx_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", + "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", "block_index": 209, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7433,7 +7363,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7464,9 +7394,9 @@ "/v2/orders/": { "result": { "tx_index": 54, - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "block_index": 210, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7481,7 +7411,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7509,13 +7439,13 @@ "/v2/orders//matches": { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7529,7 +7459,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7549,13 +7479,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7569,7 +7499,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7589,13 +7519,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7609,7 +7539,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7636,15 +7566,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "btc_amount": 2000, - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "status": "valid", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "btc_amount_normalized": "0.00002000" } ], @@ -7655,9 +7585,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "block_index": 187, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7675,7 +7605,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730802340, + "block_time": 1730803906, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7701,9 +7631,9 @@ }, { "tx_index": 54, - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "block_index": 210, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7721,7 +7651,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730802466, + "block_time": 1730804046, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7747,9 +7677,9 @@ }, { "tx_index": 49, - "tx_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", + "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", "block_index": 184, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7697,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802275, + "block_time": 1730803826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7723,9 @@ }, { "tx_index": 51, - "tx_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", + "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", "block_index": 207, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7813,7 +7743,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802448, + "block_time": 1730804029, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7839,9 +7769,9 @@ }, { "tx_index": 58, - "tx_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", + "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", "block_index": 193, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7859,7 +7789,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802374, + "block_time": 1730803930, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7890,13 +7820,13 @@ "/v2/orders///matches": { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7913,7 +7843,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7933,13 +7863,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 52, - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7956,7 +7886,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802340, + "block_time": 1730803906, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7976,13 +7906,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7999,7 +7929,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8019,13 +7949,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", "tx0_index": 49, - "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 50, - "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8042,7 +7972,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802275, + "block_time": 1730803826, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8062,13 +7992,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8085,7 +8015,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8111,13 +8041,13 @@ "/v2/order_matches": { "result": [ { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8131,7 +8061,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8151,13 +8081,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", "tx0_index": 51, - "tx0_hash": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 52, - "tx1_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8171,7 +8101,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730802340, + "block_time": 1730803906, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8191,13 +8121,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a_71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", + "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", "tx0_index": 49, - "tx0_hash": "3b505459c1cfd85434c297fbb47b655f8ac07ff306daab449a80d69e35e09f2a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 50, - "tx1_hash": "71ac42ccfa9ab4d80dfd37cb2f95033daa6c110fc1f3300382c2295c4d6126c6", - "tx1_address": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8211,7 +8141,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730802275, + "block_time": 1730803826, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8231,13 +8161,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 60, - "tx0_hash": "98672597bdf53463a37e6207b6b1a7191a8baa990040f0a4937dbd7e57b6a7e9", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_index": 54, - "tx1_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8251,7 +8181,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8271,13 +8201,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx0_index": 54, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx1_index": 76, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8291,7 +8221,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8336,66 +8266,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", + "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", "block_index": 121, - "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", + "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730802086, + "block_time": 1730803615, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6fa2b808ca4cbe55962246eccb58ff39bf86a963fd2d557b0ff9df2b7ca2e5a0", + "tx_hash": "46b1fa87b1a4e176547f9a27c6e766f45af6bf33772ef9af4b9d872f49ed8428", "block_index": 120, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730802083, + "block_time": 1730803612, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "1056bd10fc8114a8914c302c232de98308caabbdd1fe9914e6fa838d74d2c941", + "tx_hash": "c9dae8b10b1dc7c13a533807ce35138ab263bab4718fde412b0b59e97c1a9875", "block_index": 119, - "source": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp", + "source": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730802078, + "block_time": 1730803608, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "3fc43bf9e1c19a92e27d17eec17982d27b8b84b227215bb4a549f5bdc0f7856b", + "tx_hash": "9822e208aca66c4f75ec215c31aeb1491e5c837d8100195a587a7772400147fa", "block_index": 118, - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730802075, + "block_time": 1730803604, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d8c65c1b98d461160788c8c81a24437cf47e85269115a619fd32b2dadc9ca3b3", + "tx_hash": "fc0b64eb61d459396eb9dffd16e7327535a2cee5c43f9787029d649f9ebca39e", "block_index": 117, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730802072, + "block_time": 1730803601, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8407,9 +8337,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8418,7 +8348,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8428,7 +8358,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -8444,9 +8374,9 @@ }, { "tx_index": 29, - "tx_hash": "2fa560ab911fa662ef90ee3b45eeca0bcf8a5df6c15dc23cde158e453f7b1d23", + "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", "block_index": 142, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8455,7 +8385,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8465,7 +8395,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802167, + "block_time": 1730803711, "asset_info": { "divisible": true, "asset_longname": null, @@ -8481,9 +8411,9 @@ }, { "tx_index": 30, - "tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", + "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", "block_index": 150, - "source": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", + "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8491,10 +8421,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "dc13043f2fa8e189c5d8c5c8b8ec55b587988eb85ac691a96eb5ab0a86cd654f", - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 0, - "last_status_tx_source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8502,7 +8432,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802197, + "block_time": 1730803750, "asset_info": { "divisible": true, "asset_longname": null, @@ -8518,9 +8448,9 @@ }, { "tx_index": 64, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8529,7 +8459,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8539,11 +8469,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8555,18 +8485,18 @@ }, { "tx_index": 33, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8576,7 +8506,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -8597,9 +8527,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8608,7 +8538,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8618,7 +8548,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -8638,19 +8568,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8658,7 +8588,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8673,7 +8603,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -8687,19 +8617,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8707,7 +8637,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8722,7 +8652,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -8741,20 +8671,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8775,20 +8705,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -8811,12 +8741,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "tx_index": 41, - "utxo": "ae8eba270cec96da68dee5ab5e085b24e1fff92f7435ba158fc3c4f251f0d5f6:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "utxo": "9a0868d7a0cd709a75dab19d37c209fd896ab861ed6624a63184d6e2d38eaee7:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "divisible": true, "asset_longname": null, @@ -8828,16 +8758,16 @@ }, { "block_index": 154, - "address": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", + "address": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "divisible": true, "asset_longname": null, @@ -8858,27 +8788,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 694, @@ -8887,14 +8817,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -8905,9 +8835,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 693, @@ -8916,9 +8846,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -8928,24 +8858,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -8955,9 +8885,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 691, @@ -8969,15 +8899,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } }, "/v2/events/counts": { @@ -9012,16 +8942,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -9031,9 +8961,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 690, @@ -9043,12 +8973,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -9058,9 +8988,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 687, @@ -9070,39 +9000,39 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", - "utxo_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "block_time": 1730802466, + "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730802457, + "block_time": 1730804037, "asset_info": { "divisible": true, "asset_longname": null, @@ -9112,24 +9042,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -9139,9 +9069,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_time": 1730802452 + "block_time": 1730804033 } ], "next_cursor": 656, @@ -9158,27 +9088,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9193,7 +9123,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -9207,19 +9137,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "17643a0e28e3a51301615d990d826c21fc907d167b0a7fc0a53497ba2bfcdf45", + "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9227,7 +9157,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9242,11 +9172,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802395, + "block_time": 1730803972, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -9256,27 +9186,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5f687faa947c8faea3488e46875f06b40fcf3bac54c27a40d936b9e02940d3bc", + "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", "block_index": 147, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "destination": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "last_status_tx_hash": null, - "origin": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9291,7 +9221,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730802186, + "block_time": 1730803739, "asset_info": { "divisible": true, "asset_longname": null, @@ -9305,19 +9235,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5947218e88c023b4787aa2c77f35c0616d2fa1cc8fc5c8bc0f9f732942960c1e", + "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9325,7 +9255,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9340,7 +9270,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802164, + "block_time": 1730803708, "asset_info": { "divisible": true, "asset_longname": null, @@ -9354,19 +9284,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "6860d655ecf4e501d17a852f71dc3a58c5b7bac9da9112cb4abed2a420cec60d", + "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", "block_index": 140, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c671b9211161b7c219b5e73eb058b90b746db6b1e9ebcc82bac71f5a28322ced", + "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9374,7 +9304,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9389,7 +9319,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730802160, + "block_time": 1730803695, "asset_info": { "divisible": true, "asset_longname": null, @@ -9408,10 +9338,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9419,7 +9349,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -9432,10 +9362,10 @@ }, { "tx_index": 77, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9443,11 +9373,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -9456,10 +9386,10 @@ }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9467,7 +9397,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -9480,10 +9410,10 @@ }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9491,11 +9421,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -9504,10 +9434,10 @@ }, { "tx_index": 75, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9515,11 +9445,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -9534,14 +9464,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -9556,20 +9486,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "e8b357aa91530c00239d9e85624339c7d502fcd1042ba98b4255292588bc9a27", + "tx_hash": "973dbfc3d5006c89f20e05930dfe8ec6f41dce002773a8d7f89f8c4fd2b77629", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", - "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "transfer": false, "callable": false, "call_date": 0, @@ -9584,20 +9514,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802400, + "block_time": 1730803975, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "b780c583ac499f1616e6c30f03733f04a166e99628496e40e69cde1026b1c5de", + "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -9612,20 +9542,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802261, + "block_time": 1730803813, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "76fab80b3da1240293faba0a7614aa9062bfbe637199649e78d3d354bab26c9a", + "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -9640,20 +9570,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730802247, + "block_time": 1730803808, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "dd4e82064f1ade1f3f610d340b8197762f8e7b8964670b4da8383919329622e3", + "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -9668,7 +9598,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802243, + "block_time": 1730803795, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9679,14 +9609,14 @@ "/v2/issuances/": { "result": { "tx_index": 70, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "transfer": false, "callable": false, "call_date": 0, @@ -9701,7 +9631,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9710,16 +9640,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -9730,16 +9660,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" } ], @@ -9750,9 +9680,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9760,14 +9690,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802152, + "block_time": 1730803688, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "982970339f709960c97f7540135a289905a4d3ff2b1ffe9e7d3df32318225400", + "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", "block_index": 137, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9775,7 +9705,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802149, + "block_time": 1730803685, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9785,9 +9715,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9795,17 +9725,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730802152, + "block_time": 1730803688, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, "block_index": 155, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9830,7 +9760,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9839,10 +9769,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9867,7 +9797,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730802140, + "block_time": 1730803677, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9879,10 +9809,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "tx_index": 18, "block_index": 131, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9907,7 +9837,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730802125, + "block_time": 1730803653, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9919,10 +9849,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9947,7 +9877,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730802121, + "block_time": 1730803649, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9959,10 +9889,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f91ff3a2ba1e4fb56c709505af62e1331487bd60e90bd94cf7ccdfa833c67f1a", + "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", "tx_index": 10, "block_index": 125, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9987,7 +9917,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730802100, + "block_time": 1730803630, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -10005,22 +9935,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10029,22 +9959,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "6cfae20c5ff310fbb2d1e3d1464ae18579d62db46f6930a75f486f661580bed5", + "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802137, + "block_time": 1730803673, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10053,22 +9983,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "487cf0f4d2c1a28b0be505e027e6c6b65f1bbe5ba06ebe2adbef57bedf745804", + "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802134, + "block_time": 1730803660, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10077,22 +10007,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c66c7be58384a0517e44661f6efd80ee7ab5e7777c71b3b5ca0d7cd952623d4c", + "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "6e248b5b998143c6d02dd64a00354444201277081a92453e51d5cf7b60915ace", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802129, + "block_time": 1730803656, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10101,22 +10031,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "25b732f7012bae585692e26dff9e0cae7420d2d34c758ae58e1e872c4c0605ac", + "tx_hash": "a5dda36fe17d51665230d3dc0b163d9f0ac8088574f680d7ac9d1639d93979a7", "tx_index": 17, "block_index": 129, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "fairminter_tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802117, + "block_time": 1730803645, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10130,22 +10060,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10162,8 +10092,8 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3", - "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" + "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea", + "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" }, { "vout": 0, @@ -10171,8 +10101,8 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882", - "address": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx" + "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd", + "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" }, { "vout": 2, @@ -10180,8 +10110,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87", - "address": "bcrt1qwg985y9c0xctyglkjl0l8ncepr2mqnhqwmmtlp" + "txid": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888", + "address": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu" } ], "next_cursor": null, @@ -10190,31 +10120,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b" + "tx_hash": "42f07b3232c643037564ece13fdf7a669ffb3e4b0bac5a0c3f43b1052061ef0c" }, { - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" + "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421" }, { - "tx_hash": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140" + "tx_hash": "9f3197d94c332c1b4cbed5f513f792c09d8e3376879599e71eb217e396e6bc26" }, { - "tx_hash": "c5ae623bb16527836c14d80200db239faf600171f9a8bbce57eb17f98e83dc69" + "tx_hash": "4ea5d5181c45bd1c6e404df1bd1cdfc7c1223036d5b238d3d3fac69ffe3d2e2d" }, { - "tx_hash": "773dab0291592ab4082f4e3dc40665406ea2db7761499d54290667302f208e75" + "tx_hash": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c" }, { - "tx_hash": "b85036cbfa2d68a737e3168b0f4eee86af23b648867c9a04672f36d423ebfe7d" + "tx_hash": "3fae326a238017d66b6a2343b8e2efe9cfcbb685a8cef9b542f7f5e2c23e6c79" }, { - "tx_hash": "8e25e9254d6bddaea902953b00cba7ff65ffd772d2876aabff6026e0a9b03db6" + "tx_hash": "1e128106013637b72112682543e29aa6122d4d5397e609dac8039590763ebd8b" }, { - "tx_hash": "391f3d89a1a54c1f6244c8065f7eedac51effeabfa3cfa3d47dd7901c385d5d1" + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a" }, { - "tx_hash": "d5a7c6ca15b47d85e67bfb6bc3d15fbb644691439c552af371a6328d0bae8af7" + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" } ], "next_cursor": null, @@ -10222,8 +10152,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "ce652a5add340982733c4b9f78851d770ad293cb125b7139c5c6888a9585e614" + "block_index": 9, + "tx_hash": "6d2d5f10aae352b1b5a95fba0f3e002fdac1185b6ccca80f454c8e75db1e41ce" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -10234,7 +10164,7 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "5ec39dd7afe114d7bb06cb3695502776cb4f8c587a10c59161c7b03fdec832c3" + "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea" }, { "vout": 0, @@ -10242,17 +10172,17 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "75ef1d9edba333332915e42ef63cb3f9a0bbb83a7f9a7c95ca9dc31335204882" + "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0313b75c2c15c31f245a6ad378f81e9036fd302e5b12a8564a05e3e73c2cd9e93f" + "result": "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101873c745176e6e026a77e6ad4118223dad255017dcf24f727619b597db1d41cd20100000000ffffffff03e803000000000000160014030bb62d246ddd169864a9ebe96043a04184fb6500000000000000000c6a0af928ee36123adc49716aeb1409270100000016001427ef74571f9a85ec586af7739d92549c0c3156c90247304402204ad41dd2b8a71d4d2ab33446754357ab3509b8f75270dfda2e22c9fd3cfa0ef00220569aac8a21d95ff5b46af49db36868a5cb22c86e2b6ed70cfea241a4620390ba012103ded09b2bbdb12beffbc4bd367813e7d396da685973b1cf4e4ffe273c8578780a00000000" + "result": "0200000000010188a8860f8b7b8feb281fd9f2bacbfc55dcd7a06908489a2cdc18301903cb40060100000000ffffffff03e8030000000000001600149c888c6d38f587584105e664eeb7d8327b0c13ca00000000000000000c6a0aa448e03e0ab2e889a4b1eb140927010000001600147117d7b7942210084f54617475402534fba5a0e90247304402205130abc939b2fc1366c4468d38a769594463812473594fcb4bf8710b7b1c6119022070d18ae3541f1d096fc581f3064a6632477a80f1e414108f986356066b1aacb2012103c8cfefa4b8d6559382a523b41068bf1a9344d905d4f2492ed6b46584e4c16ff000000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58797 @@ -10275,27 +10205,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78 }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "quantity": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, "asset_info": { "divisible": true, @@ -10306,22 +10236,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10331,22 +10261,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "block_index": 210, - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10356,30 +10286,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730802470.7005117, + "block_time": 1730804050.1464322, "btc_amount": 0, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "destination": "", "fee": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, - "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", + "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -10393,7 +10323,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -10402,19 +10332,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10424,7 +10354,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -10433,27 +10363,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78 }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "quantity": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, "asset_info": { "divisible": true, @@ -10464,22 +10394,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "CREDIT", "params": { - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10489,22 +10419,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "asset": "XCP", "block_index": 210, - "event": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10514,30 +10444,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 }, { - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730802470.7005117, + "block_time": 1730804050.1464322, "btc_amount": 0, - "data": "020000000000000001000000000000271080b2ff97e7c71ff1551879a608594da7c9468c50e1", + "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", "destination": "", "fee": 10000, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", - "tx_hash": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", "tx_index": 78, - "utxos_info": "0c6b1145f13424c900ac1df6449771917cd921c2ab66fc8823aac4c7f5d33188:1", + "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "memo": null, "asset_info": { "divisible": true, @@ -10551,7 +10481,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730802470.7005117 + "timestamp": 1730804050.1464322 } ], "next_cursor": null, @@ -10573,15 +10503,15 @@ "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", "block_index": 210, - "block_time": 1730802466, + "block_time": 1730804046, "difficulty": 545259519, - "previous_block_hash": "3c6d09072390550d37154bb77068d18d07a18f6b4661f183a58d60f067024883" + "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72" }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 665, @@ -10593,17 +10523,17 @@ "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "77515dc9be1855a155f79c0e0cc9014ffdfc89b01be6d053081dcd279c68daea", + "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", "block_index": 210, - "block_time": 1730802466, + "block_time": 1730804046, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "fee": 0, - "source": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "utxos_info": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1 a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10613,9 +10543,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 666, @@ -10629,16 +10559,16 @@ "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "out_index": 0, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 567, @@ -10651,15 +10581,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "faf5c6fc0130c8bf6ad3b4c21f48363c850a8205f9a588e01093c82e847b5427", - "messages_hash": "d21ac40071d4ce7db9e6d6218e350006c16a800b619f33dcb8bea12991608239", + "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", + "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", "transaction_count": 1, - "txlist_hash": "38da8f68c5c1b4b07d99a680ed1b4af5dc8aac23135720efcaf87ba164072c6a", - "block_time": 1730802466 + "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", + "block_time": 1730804046 }, "tx_hash": null, "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 680, @@ -10672,12 +10602,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 679, @@ -10693,12 +10623,12 @@ "address": null, "asset": "XCP", "block_index": 210, - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 1500000000, "tx_index": 77, - "utxo": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", - "utxo_address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", - "block_time": 1730802466, + "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10708,9 +10638,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 686, @@ -10722,16 +10652,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -10741,9 +10671,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 690, @@ -10757,26 +10687,26 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "memo": null, "quantity": 1000, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "tx_index": 71, - "block_time": 1730802436, + "block_time": 1730804008, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "52ee3dc9d68b631230bc81538b0f30ca78c63b4c49a1520acec7d1b1887549d8", + "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", "block_index": 204, - "block_time": 1730802436 + "block_time": 1730804008 } ], "next_cursor": 503, @@ -10790,15 +10720,15 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "status": "valid", - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "tx_index": 75, - "block_time": 1730802452, + "block_time": 1730804033, "asset_info": { "divisible": true, "asset_longname": null, @@ -10808,9 +10738,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5e9cd51d7f935d08b0e99eb2e2322dade1d086cd6f318aaf6d97827a935965cf", + "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", "block_index": 208, - "block_time": 1730802452 + "block_time": 1730804033 } ], "next_cursor": 661, @@ -10833,20 +10763,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "status": "valid", - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "tx_index": 61, - "block_time": 1730802381, + "block_time": 1730803948, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8d7c3e65f488a0e7a0a29641126fcf23bbd2c0d4f5b968d4be9b69f58a24261b", + "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", "block_index": 195, - "block_time": 1730802381 + "block_time": 1730803948 } ], "next_cursor": null, @@ -10863,15 +10793,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "tx_index": 41, - "block_time": 1730802213, + "block_time": 1730803765, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -10885,9 +10815,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "e8c3e2e5d16465d6f766716c3d8a948b92e36aaa21a31a0d0196b395e29f0945", + "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", "block_index": 154, - "block_time": 1730802213 + "block_time": 1730803765 } ], "next_cursor": null, @@ -10908,11 +10838,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730802423 + "block_time": 1730804003 }, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_time": 1730802423 + "block_time": 1730804003 } ], "next_cursor": 576, @@ -10935,22 +10865,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", "transfer": false, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "tx_index": 70, - "block_time": 1730802423, + "block_time": 1730804003, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "4eadabf732471e6fc8ffe70c1a001b3764c517e15e649dfad8164eda134a4592", + "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", "block_index": 203, - "block_time": 1730802423 + "block_time": 1730804003 } ], "next_cursor": 577, @@ -10965,12 +10895,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qljc2c0g49xsppdvxtxv8unp95nvh7a9ggf5mj6", + "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "tx_index": 62, - "block_time": 1730802385, + "block_time": 1730803952, "asset_info": { "divisible": true, "asset_longname": null, @@ -10980,9 +10910,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "d980c5803bafa6be18542dae94bb6d64fe61157ae24390588a0a77de0bbea95f", + "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", "block_index": 196, - "block_time": 1730802385 + "block_time": 1730803952 } ], "next_cursor": 157, @@ -11007,11 +10937,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "open", - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11035,9 +10965,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 534, @@ -11055,20 +10985,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a_6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", + "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "tx0_index": 54, - "tx1_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "tx1_index": 76, - "block_time": 1730802457, + "block_time": 1730804037, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11087,9 +11017,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 673, @@ -11102,11 +11032,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a" + "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 677, @@ -11119,11 +11049,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3" + "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4" }, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "block_time": 1730802340 + "block_time": 1730803906 } ], "next_cursor": null, @@ -11135,13 +11065,13 @@ "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", + "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", "status": "expired" }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 481, @@ -11155,18 +11085,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_60c0d5b8e0b68dc3c0d85e0da943ce4c809653bfa888af2cedc79e3b21f7baf3", - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "status": "valid", - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "tx_index": 53, - "block_time": 1730802340, + "block_time": 1730803906, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1d44251f58c1d1d67a2a74b5371178f6258a95a3d72499807b7ca98e212ce850", + "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", "block_index": 187, - "block_time": 1730802340 + "block_time": 1730803906 } ], "next_cursor": null, @@ -11179,16 +11109,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "79dde8f43eeec6861bec514c46c59c97a2074db8b06141049e311d78fce1e35d", - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": "valid", - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "tx_index": 59, - "block_time": 1730802374 + "block_time": 1730803930 }, - "tx_hash": "9bb22876715733950a24c4f8900b3285bddde5b25ff0d2e85d063cd3ae849aa6", + "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", "block_index": 193, - "block_time": 1730802374 + "block_time": 1730803930 } ], "next_cursor": null, @@ -11201,13 +11131,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "source": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "block_time": 1730802466 + "order_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_time": 1730804046 }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 642, @@ -11220,14 +11150,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "dea68d91cc883fb7d4011489000b0d9d045a600d6ea7292bdd99b9a9d6fdeb6d_eb0566dff05ef56b68cc21ee884d2d2a328fe3e4a494006ef9e51decb9f4862a", - "tx0_address": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "tx1_address": "bcrt1qktle0e78rlc42xre5cy9jnd8e9rgc58puwz6re", - "block_time": 1730802457 + "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_time": 1730804037 }, - "tx_hash": "6bbdd7a80cb74f5d637a59a907ab54496640579102fbfe3694f6ac859ae1ddab", + "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", "block_index": 209, - "block_time": 1730802457 + "block_time": 1730804037 } ], "next_cursor": 457, @@ -11246,17 +11176,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "satoshirate": 1, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "status": 0, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "tx_index": 64, - "block_time": 1730802392, + "block_time": 1730803969, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11265,9 +11195,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "eb3a1289349cb82e5c758b963337c2b1b8340bf3930eb70ba02b1f839705d2e7", + "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", "block_index": 198, - "block_time": 1730802392 + "block_time": 1730803969 } ], "next_cursor": 272, @@ -11282,9 +11212,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": 0, - "tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", + "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", "asset_info": { "divisible": true, "asset_longname": null, @@ -11294,9 +11224,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 569, @@ -11310,13 +11240,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mgYEWZzm7vuMu2MZeMphmCC1Xn1kgGb6Mr", + "destination": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", "dispense_quantity": 10, - "dispenser_tx_hash": "42c0d848d57d04f446610e4f98b281e057fe67c1fa888b692ca9650204c02e9b", - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", - "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", + "dispenser_tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", "tx_index": 31, - "block_time": 1730802175, + "block_time": 1730803729, "asset_info": { "divisible": true, "asset_longname": null, @@ -11326,9 +11256,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "2b71f9f1a3d78efb83b7d3ff67a73255c93a97f383203ccb555fe9abd73a8f1d", + "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", "block_index": 144, - "block_time": 1730802175 + "block_time": 1730803729 } ], "next_cursor": null, @@ -11343,14 +11273,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qylhhg4cln2z7ckr27aeemyj5nsxrz4kfk8xylh", + "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86fa484ab2588465faf2bdbea34110d65207c46d790feae4139f7f896b5aa701", - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -11361,9 +11291,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 570, @@ -11378,19 +11308,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qqv9mvtfydhw3dxry4847jczr5pqcf7m9w8ak45", + "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "tx_index": 25, "value": 66600.0, - "block_time": 1730802152, + "block_time": 1730803688, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6ce4c84cefe5237f0c2d62426112071f0f99f7b37bbe90bfa1ffedfe9920a440", + "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", "block_index": 138, - "block_time": 1730802152 + "block_time": 1730803688 } ], "next_cursor": 213, @@ -11421,12 +11351,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "start_block": 0, "status": "open", - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "tx_index": 42, - "block_time": 1730802226, + "block_time": 1730803778, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11434,9 +11364,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "d15146e68f4fc1ffef56a607f5f25d6aa49df263f58f4e3a0115ded13e6eaee9", + "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", "block_index": 155, - "block_time": 1730802226 + "block_time": 1730803778 } ], "next_cursor": 196, @@ -11449,11 +11379,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "25056145e23b1c00d5618f90da9026eb2c987cea4b8b87c6d3c0a112ac7f631c" + "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc" }, "tx_hash": null, "block_index": 130, - "block_time": 1730802121 + "block_time": 1730803649 } ], "next_cursor": 110, @@ -11469,17 +11399,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "a37f450f544f8b08736e0bcc571aaa057353618f5f10cd86166ce3f59fb51070", + "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", "paid_quantity": 34, - "source": "bcrt1qcj6t2lk0cgjlgl40ckcns2x3gnvvpmt00745e9", + "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", "status": "valid", - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "tx_index": 23, - "block_time": 1730802145, + "block_time": 1730803680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, @@ -11487,9 +11417,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "fcba11f01ac454e253bf13ea1ef85afc0e15a220c2d77c275a5ad3693999b7a3", + "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", "block_index": 136, - "block_time": 1730802145 + "block_time": 1730803680 } ], "next_cursor": 190, @@ -11503,28 +11433,28 @@ "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b:0", + "destination": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "status": "valid", - "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", + "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", "tx_index": 67, - "block_time": 1730802404, + "block_time": 1730803990, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qvxryqt2vepsaptsl2mzujh79qnavznq2kfhprx", + "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "753f58eab8d5bc32b2e2fc592ad4e812726cc87a82f825eadae7bb5ed772497b", + "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", "block_index": 201, - "block_time": 1730802404 + "block_time": 1730803990 } ], "next_cursor": 319, @@ -11538,28 +11468,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qp77jyvhfvfn7va3lf2squvcpav5sq532f9tnkq", + "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "4f14d4a0acdb69155a43ef5d27185fc6c7a2c66510bd0cb881d42d035f5d1140:0", + "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", "status": "valid", - "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", + "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", "tx_index": 38, - "block_time": 1730802200, + "block_time": 1730803754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q90fjghc9de6g45j3g4353nqx4q8l0ygr5yhfc2", + "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "99477e3d005da11c7b9a8bcf51127dd80e7898e6e45ba8f993d2f44fb87dd3f8", + "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", "block_index": 151, - "block_time": 1730802200 + "block_time": 1730803754 } ], "next_cursor": null, @@ -11573,14 +11503,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990:0", + "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", "msg_index": 1, "quantity": 1500000000, - "source": "d21cd4b17d599b6127f724cf7d0155d2da238211d46a7ea726e0e67651743c87:1", + "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", "status": "valid", - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "tx_index": 77, - "block_time": 1730802466, + "block_time": 1730804046, "asset_info": { "divisible": true, "asset_longname": null, @@ -11590,9 +11520,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a2b476ea9e5070214a55df4df869c17edbc5e2f2b1e19604dcefbf01d1c47990", + "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", "block_index": 210, - "block_time": 1730802466 + "block_time": 1730804046 } ], "next_cursor": 688, @@ -11607,17 +11537,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzwa6c8unt0ujtqlslj8jj9d8addf36qt9k0fzg", + "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", "status": "valid", - "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", + "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", "tx_index": 9, - "block_time": 1730802086, + "block_time": 1730803615, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8888ee5c7433dfcd94609a636126043d1d6cd36c60487f1a264facccf64c3d08", + "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", "block_index": 121, - "block_time": 1730802086 + "block_time": 1730803615 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py index 7c44b907a8..58538fc891 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py @@ -7,7 +7,7 @@ "asset": "XCP", "quantity": int(10000 * 10e8), "destination": "$ADDRESS_4", - "skip_validation": True, + "validate": False, }, "set_variables": { "SEND_SKIP_VALIDATION_HASH": "$TX_HASH", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py index 35da661eb3..9dce40c1d0 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py @@ -9,7 +9,7 @@ "escrow_quantity": int(10000 * 10e8), "mainchainrate": 1, # 1 BTC for 1 XCP "status": 0, - "skip_validation": True, + "validate": False, }, "controls": [ { diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index d7313d0280..f087b289fd 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -17,7 +17,7 @@ ## API -- Add `skip_validation` argument to compose API +- Add `validate` argument to compose API ## CLI From d65072563ff8c56949ba555ad13227656c41bd7c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 11:12:48 +0000 Subject: [PATCH 057/138] no need to move utxo after a detach --- counterparty-core/counterpartycore/lib/blocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index e0b7b5664f..16428c33bd 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -253,7 +253,7 @@ def parse_tx(db, tx): return False # if attach or detach we move assets after parsing - if util.enabled("spend_utxo_to_detach") and message_type_id in [attach.ID, detach.ID]: + if util.enabled("spend_utxo_to_detach") and message_type_id == attach.ID: move.move_assets(db, tx) # NOTE: for debugging (check asset conservation after every `N` transactions). From 3e3850381ca5c5fc776e4da62cc1ba48f4132b45 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 12:39:45 +0000 Subject: [PATCH 058/138] Add sortable 'get_price' and 'give_price' fields in orders --- apiary.apib | 3961 +++++++++-------- .../counterpartycore/lib/api/queries.py | 11 + .../counterpartycore/lib/api/util.py | 13 +- .../counterpartycore/test/api_v2_test.py | 4 + .../test/fixtures/api_v2_fixtures.json | 72 +- .../test/regtest/apidoc/apicache.json | 3621 +++++++-------- release-notes/release-notes-v10.6.2.md | 1 + 7 files changed, 3952 insertions(+), 3731 deletions(-) diff --git a/apiary.apib b/apiary.apib index 4bcdb5feb6..55ad25e820 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-05 10:54:27.519510. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-05 12:35:35.913088. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", "block_index": 210, - "block_time": 1730804046, + "block_time": 1730810115, "difficulty": 545259519, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72" + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320" }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 665, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", "block_index": 210, - "block_time": 1730804046, + "block_time": 1730810115, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "fee": 0, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 666, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "out_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 567, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 680, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 679, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 210, - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "block_time": 1730804046, + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 686, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 690, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "quantity": 1000, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "tx_index": 71, - "block_time": 1730804008, + "block_time": 1730810074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "block_time": 1730804008 + "block_time": 1730810074 } ], "next_cursor": 503, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "status": "valid", - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "tx_index": 75, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_time": 1730804033 + "block_time": 1730810101 } ], "next_cursor": 661, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "status": "valid", - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "tx_index": 61, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "block_time": 1730803948 + "block_time": 1730810020 } ], "next_cursor": null, @@ -533,15 +533,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": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "tx_index": 41, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -555,9 +555,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": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "block_time": 1730803765 + "block_time": 1730809852 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730804003 + "block_time": 1730810071 }, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_time": 1730804003 + "block_time": 1730810071 } ], "next_cursor": 576, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", "transfer": false, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "tx_index": 70, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_time": 1730804003 + "block_time": 1730810071 } ], "next_cursor": 577, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", "tag": "64657374726f79", - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "tx_index": 62, - "block_time": 1730803952, + "block_time": 1730810023, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "block_index": 196, - "block_time": 1730803952 + "block_time": 1730810023 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "open", - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 534, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 54, - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx1_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 673, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 677, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4" + "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a" }, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "block_time": 1730803906 + "block_time": 1730809971 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "status": "expired" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 481, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "status": "valid", - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "tx_index": 53, - "block_time": 1730803906, + "block_time": 1730809971, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "block_time": 1730803906 + "block_time": 1730809971 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "tx_index": 59, - "block_time": 1730803930 + "block_time": 1730810003 }, - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "block_index": 193, - "block_time": 1730803930 + "block_time": 1730810003 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "block_time": 1730804046 + "order_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_time": 1730810115 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 642, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "block_time": 1730804037 + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_time": 1730810105 }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 457, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "satoshirate": 1, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": 0, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "tx_index": 64, - "block_time": 1730803969, + "block_time": 1730810030, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 198, - "block_time": 1730803969 + "block_time": 1730810030 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 569, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", + "destination": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", "dispense_quantity": 10, - "dispenser_tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", + "dispenser_tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", "tx_index": 31, - "block_time": 1730803729, + "block_time": 1730809794, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", + "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", "block_index": 144, - "block_time": 1730803729 + "block_time": 1730809794 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 570, @@ -1146,19 +1146,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": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "tx_index": 25, "value": 66600.0, - "block_time": 1730803688, + "block_time": 1730809760, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "block_time": 1730803688 + "block_time": 1730809760 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "start_block": 0, "status": "open", - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "block_index": 155, - "block_time": 1730803778 + "block_time": 1730809856 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc" + "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b" }, "tx_hash": null, "block_index": 130, - "block_time": 1730803649 + "block_time": 1730809718 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "paid_quantity": 34, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "status": "valid", - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "block_index": 136, - "block_time": 1730803680 + "block_time": 1730809751 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0:0", + "destination": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "status": "valid", - "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", + "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", "tx_index": 67, - "block_time": 1730803990, + "block_time": 1730810052, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", + "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", "block_index": 201, - "block_time": 1730803990 + "block_time": 1730810052 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", + "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", + "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", "status": "valid", - "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", + "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", "tx_index": 38, - "block_time": 1730803754, + "block_time": 1730809840, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", + "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", "block_index": 151, - "block_time": 1730803754 + "block_time": 1730809840 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 210, - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "msg_index": 1, "quantity": 1500000000, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", "status": "valid", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 688, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", + "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", "status": "valid", - "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", + "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", "tx_index": 9, - "block_time": 1730803615, + "block_time": 1730809684, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", + "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", "block_index": 121, - "block_time": 1730803615 + "block_time": 1730809684 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", "difficulty": 545259519, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "previous_block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "previous_block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", "difficulty": 545259519, - "ledger_hash": "2832208b5976d7d56a2cb9016bb3e3a8d867504a9166ec6e9be34f672af5e5bd", - "txlist_hash": "ecf0b4a281d4691fd458095771d81ac7d88b98f3a241697d28232f10ddc6154e", - "messages_hash": "566f6ce132f1b5b40eaaa1594b13b16940ee338e5e86242912a4489f5487cf5e", + "ledger_hash": "fa863f767a1ec7aff30b3d50f18afc458d2d38eee301eaf31ca4594fcfb1700a", + "txlist_hash": "87ed16845085e4fac7eb0248c5d98e80b9aa226a7defbe57601a75e4b618cc52", + "messages_hash": "574fe5babf94a16cf8ad5c70d4330a3b97678ad7f65989ff3eb7fba5728acfe5", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", - "block_time": 1730804033, - "previous_block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", + "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_time": 1730810101, + "previous_block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", "difficulty": 545259519, - "ledger_hash": "fe8dac69d2789bd97bfea4688b305b38c0b6f4b3a5a8a459ef090d5077acb6f7", - "txlist_hash": "71213a325bb189bd60ad8356726b8b289b6cc40832a2753f2fa90fed4abb6dee", - "messages_hash": "554a3fc6f8fac8dd078217de6f89d24306ecc03d3f94f2d12a36a8c0908b7bd4", + "ledger_hash": "82cdb11101b7d3eaff8fa83af3df7ada9140fa18e99fddfb0e50063b1ac19bdf", + "txlist_hash": "5ae691bb7181741f4945cf3ec2b62be06d936b9f4e46c859d4195cdbfecf8cde", + "messages_hash": "fbebad60f42b702ad0b50cb2a0ff93af9f0747c7cf849cc6d0c48424cb311194", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", - "block_time": 1730804029, - "previous_block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", + "block_time": 1730810097, + "previous_block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", "difficulty": 545259519, - "ledger_hash": "92ef021c637f16bbe647891da469f387569dc7ef66a8a813c938c82d21a7e641", - "txlist_hash": "8ff9babc088363fbae03fabd550c72c476a55c500a3b398404a46879df88ba52", - "messages_hash": "7628d6dfe38c04422f29dfe524c921c3d58d5f30c313f63a8b272198a9a92159", + "ledger_hash": "4b19ce525f7c47bd15da4d84b8c12b9eb833435441d7ab94f69fccc11a64fca0", + "txlist_hash": "e445f4e045e1572d476cf0b28fbd646147bc9c82d65569cbe884d9af2a0a21be", + "messages_hash": "6b102244e88f6d30a48b00ce6523a39cab9dc33d899952fbba74b017a5b077da", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", - "block_time": 1730804024, - "previous_block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", + "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_time": 1730810093, + "previous_block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", "difficulty": 545259519, - "ledger_hash": "963ee9a1a46f9536ff9e4351f061e47dfa4c213b4316b43f0a1db1dcd9c77d89", - "txlist_hash": "b365ccc1de84e35aa113b73a2bc9c5364a29258793536eedf0a80118b1495afa", - "messages_hash": "9f41152da97de7ee0aa5bd2a2acf7c6fb70fd192abc0ef29785812652fec9fc7", + "ledger_hash": "396e9da473d68e63408d43d85b99daa35f6089406459bd7a742bea482c7f916c", + "txlist_hash": "1b744275c22796f23817d67f481a22cc224d7d8e1d3933ada8ef2a1ad6003ba0", + "messages_hash": "4b5aac3bfbb71de10a81527d40fd8b66e2a3eb3795ce8e25c90034911de61da2", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", "difficulty": 545259519, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338` (str, required) - The index of the block to return + + block_hash: `68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", "difficulty": 545259519, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 694, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 693, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" } ], "next_cursor": 691, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 690, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 687, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 210, - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "object_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "block_index": 210, "confirmed": true, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "status": "valid", "confirmed": true, - "block_time": 1730803930 + "block_time": 1730810003 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "block_index": 196, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730803952, + "block_time": 1730810023, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "block_hash": "2d959a5810e5be62ea9af4e03a7c2c6b60bda59d20571e2b815485b5348c5132", - "block_time": 1730803688, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "382c007df5ab3861be4311290c588eeae3705c65eca940104386a47f4a16b96c", + "block_time": 1730809760, + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f:1", + "utxos_info": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "block_hash": "6e0e18a88969bf69f8f2d43ea964543b57a8b973f798d1f519ea9fc11f39a0ec", - "block_time": 1730803906, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "1f915eb45422b64d329cebb203c744ab2f4975714c6b9f7355b16aa6295c33c1", + "block_time": 1730809971, + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "btc_amount": 2000, "fee": 10000, - "data": "0bbb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "data": "0bc5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "supported": true, - "utxos_info": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e:0", + "utxos_info": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "block_index": 193, - "block_hash": "551d48e49ab16c764c3c0b6db8a419c12fc38d448dc2022e9a9e8823ddf8ae08", - "block_time": 1730803930, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "4a6f3fc3ad0939075bdc6ed9b8e87271ea7d7794f0b5b29a446aaf525be7ccc8", + "block_time": 1730810003, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "data": "460bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "supported": true, - "utxos_info": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a:1", + "utxos_info": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "block_index": 196, - "block_hash": "3efd2b6215625d2aff9dfa8c7831a4a2bc284e9b49e79d699f29338c29cac5d7", - "block_time": 1730803952, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "block_hash": "24a11b579be779fac88f8e23f4a7dcadf95856bb472c8ac15d14dbce2d071538", + "block_time": 1730810023, + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de:1", + "utxos_info": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 198, - "block_hash": "6cdb0b141232873de57dc01894c88af87c32167e6aef52c741f38490ad4b94b7", - "block_time": 1730803969, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "3fc16aa7174869b24f0aba7e510d2680e04665b981a5d28331bf42f47d7a5542", + "block_time": 1730810030, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1:1", + "utxos_info": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "block_hash": "2bd907e4e1f981cd135035d13edd08ff4f295cd76137bd7b6d6597b69954d88a", - "block_time": 1730803765, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55272d5c34ef8189b752b4cbafd9496bdf2e0e7a82adeb6b0e9eb140e333c830", + "block_time": 1730809852, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd:1", + "utxos_info": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_hash": "750a8780e1830d3ce0323c69bc4aa4e479f4d28e5883c8318f72a7d99793f5c6", - "block_time": 1730804003, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "0af1f606973a4e3770f42816bca688b9f05c7ce64e55df8a3a9d7fccec169710", + "block_time": 1730810071, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", + "utxos_info": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "block_hash": "54c234af19c5aaef14bd17510500fcf7f56f27369249714c95054847677d42f5", - "block_time": 1730804008, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "6e9baba13cfa1bfc29824ca940e6e792724686c7ee6d61661c80922400213e4b", + "block_time": 1730810074, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", + "data": "02000000178d82231300000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", "supported": true, - "utxos_info": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6:1", + "utxos_info": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", - "block_time": 1730804033, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_time": 1730810101, + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460:0", + "utxos_info": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "block_hash": "79046e409c818b7aab07a43bb2ee088ad633986704bf14af1cdb0675250c64bd", - "block_time": 1730803948, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "block_hash": "6f9a33fcb8d1d8ae14af9d28f71441d3c18788787c354eb826ec848b48dd26d4", + "block_time": 1730810020, + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480b52251261586063fd84ccd5b6d7716ee71e9c234017377656570206d7920617373657473", + "data": "0480f6811e9837b88c1c4b4f9324cceb3e6c95db534b017377656570206d7920617373657473", "supported": true, - "utxos_info": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a:1", + "utxos_info": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101843ffae900dcbbc860ede0f5a6848f666c36603383510299c579929c32a740e70000000000ffffffff0200000000000000002e6a2cf5b1aca445c1e2d61f0b3f91c2655bc4d9e7c87165f2e9ff03c25faed5157d8afb65949edc7fd36c8cc96df8f0ca052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d30247304402204d2f41b18d45b7432ba82355232e850f90822901e7e88d255bac465d2bcbe46602207535963f704b2b23d839a1c2a3bcaa9fc3fffd89330739ae244817d61fd20c0301210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001018c3309c5737147ca542db19d835d97753d8621e801a55b21ed6ac230cbbf68e30000000000ffffffff020000000000000000356a3388c6c523f588bc4ff80728f676effb4c3fd787b4b77b30cd83934063dd10df5adc283859389ee493993748989da810da578b43f0ca052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a0247304402203de657371ca5dd5866465047570cc056e07bd0d4ff438b9cd8515e0eb554858302206a76adcf234fbc4c49cb65fcf10be05ea23ba2f333c6a53c870fb29a7fdfcb3701210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec100000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,18 +3290,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "843ffae900dcbbc860ede0f5a6848f666c36603383510299c579929c32a740e7", + "hash": "8c3309c5737147ca542db19d835d97753d8621e801a55b21ed6ac230cbbf68e3", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,38 +3311,49 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a2cf5b1aca445c1e2d61f0b3f91c2655bc4d9e7c87165f2e9ff03c25faed5157d8afb65949edc7fd36c8cc96df8" + "script_pub_key": "6a3388c6c523f588bc4ff80728f676effb4c3fd787b4b77b30cd83934063dd10df5adc283859389ee493993748989da810da578b43" }, { "value": 4999990000, - "script_pub_key": "00147a136e6da4ea780f77ce087498a2cb0ea63118d3" + "script_pub_key": "00148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a" } ], "vtxinwit": [ - "304402204d2f41b18d45b7432ba82355232e850f90822901e7e88d255bac465d2bcbe46602207535963f704b2b23d839a1c2a3bcaa9fc3fffd89330739ae244817d61fd20c0301", - "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" + "304402203de657371ca5dd5866465047570cc056e07bd0d4ff438b9cd8515e0eb554858302206a76adcf234fbc4c49cb65fcf10be05ea23ba2f333c6a53c870fb29a7fdfcb3701", + "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" ], "lock_time": 0, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", - "tx_id": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0" + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_id": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601" }, "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, + "message_type": "order", + "message_type_id": 10, "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" + "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" @@ -3355,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10` (str, required) - Transaction hash + + tx_hash: `d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39` (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. @@ -3366,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "e7ae8ed3e2d68431a62466ed61b86a89fd09c2379db1da759a70cda0d768089a", + "hash": "925c0f4c47ab9e0ee4b45b9b86c2ab48972b78c3aac3f3b5aa1695b81dcd96d7", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3387,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e9b269de2860042058e962cf37fef06c914ab6c767386666e073b33f75a980e27f897fdcaf9349e433ed1f506e1f2" + "script_pub_key": "6a2e5cef4840b91e11ceb0e64ca8558eff6303f73545fd8c12e4fb97cef6309bab3f8513b4b6c0ca884b704df5626316" }, { "value": 4999970000, - "script_pub_key": "0014b52251261586063fd84ccd5b6d7716ee71e9c234" + "script_pub_key": "0014f6811e9837b88c1c4b4f9324cceb3e6c95db534b" } ], "vtxinwit": [ - "3044022023652f8971b6e2cf46f7dd44ac8bfcb7763e2fffae1a899f165fa8ed27a6011802205ae3eb739eb45d3628e44c449a1a354dd8e214272220c21b988547804f17247901", - "027919e5c84ae072cc3b76f5e1d325b98ebc5f5e3e2da6024d63813f76d4f1b035" + "30440220087c163eb4412833e338a4bd68ae6833d3f75c5e5cb36627c976b187bfa3135902203154b59af84fe7a2702c68ee920fa43fa03b390f658fbd33c64a36fa96f5581401", + "02fa96e8629ffb83d4a03ad1334f4f1734cd3c290d310037cc58e298810e7235ed" ], "lock_time": 0, - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", - "tx_id": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10" + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_id": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3408,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -3469,17 +3480,17 @@ Returns a transaction by its index. { "result": { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3498,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction + + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (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. @@ -3510,17 +3521,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3563,12 +3574,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 694, @@ -3577,14 +3588,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3595,9 +3606,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 693, @@ -3606,9 +3617,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -3618,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3645,9 +3656,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 691, @@ -3655,14 +3666,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "msg_index": 1, "quantity": 1500000000, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", "status": "valid", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3672,9 +3683,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 690, @@ -3687,7 +3698,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction to return + + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -3711,12 +3722,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 694, @@ -3725,14 +3736,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3743,9 +3754,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 693, @@ -3754,9 +3765,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -3766,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3793,9 +3804,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 691, @@ -3803,14 +3814,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "msg_index": 1, "quantity": 1500000000, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", "status": "valid", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3820,9 +3831,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 690, @@ -3835,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction to return + + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (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 @@ -3854,10 +3865,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3865,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -3878,10 +3889,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3889,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -3911,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction to return + + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (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 @@ -3931,27 +3942,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3966,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4010,16 +4021,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4029,9 +4040,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 690, @@ -4041,12 +4052,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4056,9 +4067,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 687, @@ -4068,24 +4079,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": null, @@ -4098,7 +4109,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The hash of the transaction to return + + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `696` (str, optional) - The last event index to return + Default: `None` @@ -4120,16 +4131,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4139,9 +4150,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 690, @@ -4151,12 +4162,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4166,9 +4177,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 687, @@ -4178,24 +4189,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": null, @@ -4210,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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 @@ -4234,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4244,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4255,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4265,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4276,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4286,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4297,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4307,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4318,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4328,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4339,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4349,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4366,7 +4377,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - Comma separated list of addresses to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4385,17 +4396,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4431,17 +4442,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", - "block_time": 1730804033, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_time": 1730810101, + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460:0", + "utxos_info": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4449,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4464,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4483,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "block_index": 207, - "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", - "block_time": 1730804029, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", + "block_time": 1730810097, + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c234c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534bc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75:0", + "utxos_info": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4501,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4516,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4535,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", - "block_time": 1730804024, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_time": 1730810093, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", + "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4553,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4568,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4587,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", - "block_time": 1730804011, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", + "block_time": 1730810088, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", + "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4605,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4620,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4648,7 +4659,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -4677,20 +4688,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 54, - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx1_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4709,9 +4720,9 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 675, @@ -4730,11 +4741,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "open", - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4758,24 +4769,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "block_index": 209, - "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -4785,9 +4796,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 673, @@ -4799,20 +4810,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "tx0_index": 60, - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx1_index": 54, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4831,23 +4842,23 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "block_time": 1730804037 + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_time": 1730810105 }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 668, @@ -4860,7 +4871,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l,bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e,bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g` (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 @@ -4876,17 +4887,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "quantity": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, "asset_info": { "divisible": true, @@ -4897,22 +4908,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4922,22 +4933,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "block_index": 210, - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -4947,30 +4958,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730804050.1464322, + "block_time": 1730810118.4794593, "btc_amount": 0, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "destination": "", "fee": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, - "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", + "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -4984,7 +4995,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -4997,7 +5008,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -5017,7 +5028,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5025,14 +5036,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5040,14 +5051,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5055,14 +5066,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5077,7 +5088,7 @@ Returns the balances of an address "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5085,7 +5096,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5102,7 +5113,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -5115,7 +5126,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5140,7 +5151,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5190,16 +5201,16 @@ Returns the credits of an address "result": [ { "block_index": 209, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -5211,16 +5222,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -5232,16 +5243,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -5253,16 +5264,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -5274,20 +5285,20 @@ Returns the credits of an address }, { "block_index": 203, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "event": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5304,7 +5315,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5343,16 +5354,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -5364,16 +5375,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -5385,20 +5396,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5406,16 +5417,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "divisible": true, "asset_longname": null, @@ -5427,20 +5438,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5457,7 +5468,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address of the feed + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5492,7 +5503,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -5511,9 +5522,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", + "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", "block_index": 137, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5521,7 +5532,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803685, + "block_time": 1730809755, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5535,7 +5546,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -5554,14 +5565,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "7ffb1c32851e405bb735efcfac37591da1ced665eab020ec6eb51f0d423d429a", + "tx_hash": "6ba0d3fcf7c02e433d201c2ce80a5fa7e122af150032da86c2116381f334e537", "block_index": 112, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730803583, + "block_time": 1730809651, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5576,7 +5587,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -5595,10 +5606,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5606,7 +5617,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -5619,10 +5630,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5630,11 +5641,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5643,10 +5654,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5654,11 +5665,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5667,10 +5678,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5678,7 +5689,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "divisible": true, "asset_longname": null, @@ -5691,10 +5702,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5702,11 +5713,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5724,7 +5735,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr` (str, required) - The address to return + + address: `bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh` (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 @@ -5743,10 +5754,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", + "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", "block_index": 151, - "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", - "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", + "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", + "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5754,11 +5765,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730803754, + "block_time": 1730809840, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5776,7 +5787,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5796,10 +5807,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5807,11 +5818,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5820,10 +5831,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5831,11 +5842,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5844,10 +5855,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5855,11 +5866,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5868,10 +5879,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5879,11 +5890,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5892,10 +5903,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5903,11 +5914,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804008, + "block_time": 1730810074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5925,7 +5936,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr` (str, required) - The address to return + + address: `bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5953,7 +5964,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5982,9 +5993,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5993,7 +6004,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6003,7 +6014,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6019,9 +6030,9 @@ Returns the dispensers of an address }, { "tx_index": 64, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6030,7 +6041,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6040,11 +6051,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6065,7 +6076,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -6078,9 +6089,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6089,7 +6100,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6099,7 +6110,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6121,7 +6132,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -6141,19 +6152,19 @@ Returns the dispenses of a source { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", + "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6161,7 +6172,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6176,11 +6187,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6190,19 +6201,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6210,7 +6221,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6225,7 +6236,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6239,19 +6250,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6259,7 +6270,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6274,7 +6285,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6296,7 +6307,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address to return + + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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 @@ -6316,19 +6327,19 @@ Returns the dispenses of a destination { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", + "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6336,7 +6347,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6351,11 +6362,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6365,19 +6376,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6385,7 +6396,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6400,7 +6411,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6414,19 +6425,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6434,7 +6445,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6449,7 +6460,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6471,7 +6482,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -6492,19 +6503,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6512,7 +6523,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6527,7 +6538,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6541,19 +6552,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6561,7 +6572,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6576,7 +6587,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6598,7 +6609,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address to return + + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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` @@ -6619,19 +6630,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6639,7 +6650,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6654,7 +6665,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6668,19 +6679,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6688,7 +6699,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6703,7 +6714,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6725,7 +6736,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l` (str, required) - The address to return + + address: `bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e` (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 @@ -6744,16 +6755,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -6767,7 +6778,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6799,14 +6810,14 @@ Returns the issuances of an address "result": [ { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6821,20 +6832,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", + "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6849,20 +6860,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803813, + "block_time": 1730809879, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", + "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6877,20 +6888,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730803808, + "block_time": 1730809875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", + "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6905,20 +6916,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803795, + "block_time": 1730809872, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "4125c1bdb875706dafde81f4b005bdd027a19d6696523b6f8e292a72e662f215", + "tx_hash": "49c9963d6f64cf86ca63534109735b5b572e9be5d645e8470d9fb09bb6daa139", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6933,7 +6944,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803792, + "block_time": 1730809868, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6948,7 +6959,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The issuer or owner to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6971,8 +6982,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6980,16 +6991,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6997,16 +7008,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -7014,16 +7025,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 40, @@ -7031,16 +7042,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730803677, - "last_issuance_block_time": 1730803680, + "first_issuance_block_time": 1730809747, + "last_issuance_block_time": 1730809751, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 19, @@ -7048,8 +7059,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730803653, - "last_issuance_block_time": 1730803673, + "first_issuance_block_time": 1730809722, + "last_issuance_block_time": 1730809742, "supply_normalized": "0.00000019" } ], @@ -7063,7 +7074,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The issuer to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -7086,8 +7097,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -7095,16 +7106,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -7112,16 +7123,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -7129,16 +7140,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 40, @@ -7146,16 +7157,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730803677, - "last_issuance_block_time": 1730803680, + "first_issuance_block_time": 1730809747, + "last_issuance_block_time": 1730809751, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 19, @@ -7163,8 +7174,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730803653, - "last_issuance_block_time": 1730803673, + "first_issuance_block_time": 1730809722, + "last_issuance_block_time": 1730809742, "supply_normalized": "0.00000019" } ], @@ -7178,7 +7189,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The owner to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7201,8 +7212,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -7210,16 +7221,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -7227,16 +7238,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -7244,16 +7255,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 40, @@ -7261,16 +7272,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730803677, - "last_issuance_block_time": 1730803680, + "first_issuance_block_time": 1730809747, + "last_issuance_block_time": 1730809751, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 19, @@ -7278,8 +7289,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730803653, - "last_issuance_block_time": 1730803673, + "first_issuance_block_time": 1730809722, + "last_issuance_block_time": 1730809742, "supply_normalized": "0.00000019" } ], @@ -7293,7 +7304,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7312,17 +7323,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7358,17 +7369,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", - "block_time": 1730804024, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_time": 1730810093, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", + "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7376,14 +7387,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7391,7 +7402,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7410,17 +7421,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", - "block_time": 1730804011, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", + "block_time": 1730810088, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", + "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7428,14 +7439,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7443,7 +7454,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7462,17 +7473,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "block_hash": "54c234af19c5aaef14bd17510500fcf7f56f27369249714c95054847677d42f5", - "block_time": 1730804008, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "6e9baba13cfa1bfc29824ca940e6e792724686c7ee6d61661c80922400213e4b", + "block_time": 1730810074, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", + "data": "02000000178d82231300000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", "supported": true, - "utxos_info": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6:1", + "utxos_info": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7480,12 +7491,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7496,17 +7507,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_hash": "750a8780e1830d3ce0323c69bc4aa4e479f4d28e5883c8318f72a7d99793f5c6", - "block_time": 1730804003, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "0af1f606973a4e3770f42816bca688b9f05c7ce64e55df8a3a9d7fccec169710", + "block_time": 1730810071, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", + "utxos_info": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7540,7 +7551,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -7559,20 +7570,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7597,7 +7608,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7626,9 +7637,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7642,8 +7653,10 @@ Returns the orders of an address "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7665,13 +7678,15 @@ Returns the orders of an address "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7685,8 +7700,10 @@ Returns the orders of an address "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7708,13 +7725,15 @@ Returns the orders of an address "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7728,8 +7747,10 @@ Returns the orders of an address "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7751,13 +7772,15 @@ Returns the orders of an address "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 60, - "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7771,8 +7794,10 @@ Returns the orders of an address "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7794,13 +7819,15 @@ Returns the orders of an address "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7814,8 +7841,10 @@ Returns the orders of an address "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7837,7 +7866,9 @@ Returns the orders of an address "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": null, @@ -7850,7 +7881,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The source of the fairminter to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7875,10 +7906,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7903,7 +7934,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7912,10 +7943,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7940,7 +7971,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730803677, + "block_time": 1730809747, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7952,10 +7983,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7980,7 +8011,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730803653, + "block_time": 1730809722, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7992,10 +8023,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8020,7 +8051,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730803649, + "block_time": 1730809718, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8032,10 +8063,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8060,7 +8091,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8082,7 +8113,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address of the mints to return + + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8100,22 +8131,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8124,22 +8155,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", + "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", "tx_index": 21, "block_index": 134, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803673, + "block_time": 1730809742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8148,22 +8179,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", + "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", "tx_index": 20, "block_index": 133, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803660, + "block_time": 1730809728, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8172,22 +8203,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", + "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803656, + "block_time": 1730809725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8196,22 +8227,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "306c4ceda4e9ba3ceb13b837f07aae03418306999c8f7c7d268ef15dd57755d3", + "tx_hash": "263485eed907cb6a5e026620a237331cc432d53f2e45d13ae55175d7fe30e308", "tx_index": 15, "block_index": 127, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803637, + "block_time": 1730809709, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8220,22 +8251,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8254,7 +8285,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address of the mints to return + + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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` @@ -8273,22 +8304,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8309,7 +8340,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0` (str, required) - The utxo to return + + utxo: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8329,8 +8360,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset_info": { "divisible": true, "asset_longname": null, @@ -8343,12 +8374,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8388,8 +8419,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will make the bet - + feed_address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will make the bet + + feed_address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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) @@ -8463,7 +8494,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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) @@ -8525,7 +8556,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8538,7 +8569,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101a679258bf6dac8dfec2ec68f705213fd4edec68312e4d352105f9b7ec182a193000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a290da1a4954067dec4344cbdd51f4951e305b85171a7dbc719c05edac7890972adc36b2305749a1da5466cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101dffb2c358ebb66e47d30a00f08fc61bfefb12b48cffb3f61d94c104887ed8572000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a292ff47f19c650c7f1740c50698b7ba35d5352ade35e2c50d9675c49db5f9f479a5b38093e00881b710d6cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8560,8 +8591,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending the payment - + order_match_id: `af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599` (str, required) - The ID of the order match to pay for + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending the payment + + order_match_id: `4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601` (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) @@ -8619,24 +8650,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590baf5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "data": "434e5452505254590b4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b031ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "020000000001012caeacf3e0da85ae81c7bf91d025eeb9c0d52fb3b689caa84c7c57d5fe75e08e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e8030000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d300000000000000004b6a491b430c39785d847281d541456204caa2b2eb844e9858928fd1f42e2822f70070c389b4afc24747d56befb15917e1fb08142caa70561016c5bc365bb4e55e8bd6ea52a78248b8867b715ba7052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "020000000001013bad799111538665c5ae6edbd676ebd2338910be8fad21933d170ae4156bceb2000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a00000000000000004b6a496be606ceeeb8dfd059b44538e6e1463c2cf7d1156073392e23d54ccdfb6324b1495caee52feb96927265473543b84bf104c7d0ed9296fd7425eeadf46747eeb973a6edd980c5cb13705ba7052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "status": "valid" } } @@ -8649,7 +8680,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address with the BTC to burn + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -8710,7 +8741,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8721,7 +8752,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "02000000000101af08ca388d2cac5534883742f926a0029c15e6c4b48e167fa10f5e4a858dd3b9000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000" + "rawtransaction": "02000000000101225beddaa73e2967910d6acd96282473b75a3ed87ed685552ba762feac7c4773000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000" } } ``` @@ -8731,8 +8762,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601` (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) @@ -8790,22 +8821,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "data": "434e545250525459461ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101845d0c60f7a97009104075dec4a4ff0a86c72c53a99c915fdadec60c98447196000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a29b04a8da7dce1351dfbd1d54e2e8002d645ad95b133aaf282bfc84e5084a762007aaae3030633e0f7296cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101bf61a56dd39ed5364ab7ef507f45681084d6821d3f8a7c950a3e8977d524ab3d000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a29da3d4ea504f49fe3cc06b09006bb7e3b0f30171d1abb544f787aca363d587e2884e4546fa96410c0906cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "status": "valid" } } @@ -8818,7 +8849,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -8879,7 +8910,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8899,7 +8930,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101b3c5ddef9be621ba5cc23e185690ee2a563512b49b98271c4df9312c684b973a000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000226a204feb2696a3117f421fbd42446231fc4e38c95f853c3c37d7260f99088a40edcc7dbc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101f36ca70562ee4a2f6c18fb0511991b608d0397746848aadba68b4db7e5786af7000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000226a20517597411a4dd5b9fc38c7fd725df8a26f755fe769e8e205eabbd2646c743a757dbc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8919,7 +8950,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: `bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6` (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) @@ -8986,7 +9017,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9011,7 +9042,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "02000000000101eaa743ec6a7ae3b6a66ae4cbe270a9c1a146558e8fa256c52597fc039ab24a7b010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3effffffff0200000000000000002c6a2af978c5d86abd8f7d24f8b8434b85c9ff44c55bf1d3d84dd1a16cc03a4adc0fb2602aacc1f29dc4c72165d5c90927010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3e02000000000000", + "rawtransaction": "020000000001011d420e7b0e4b184ef9e46a39f28835b2d77fc8cbc5236b762dd14b80a86f78eb01000000160014cdd4d899318994115a60972e0d5bba8adecb9457ffffffff0200000000000000002c6a2a6620b22011f8d5855783bd4343e5412316d2dc198fc2e057ee765a612c911dc41b2ce2f1b7db83b5b8b3d5c9092701000000160014cdd4d899318994115a60972e0d5bba8adecb945702000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9037,7 +9068,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -9098,7 +9129,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9106,7 +9137,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9125,7 +9156,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101cb82b3c860c90fd963801be658b42a9cfd295d8105cb26bd5f94bde16204cfee000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2168ef0d71579dbf45310d4942ccd1cbcb597f295e715261f19b554995da2ed5ae7e42bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101fa218e50a6093053f0f1be29ac767695645b2b9d9fa5bd34b713eb01f997d645000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21f2e7ff3bccb2f0c017da6e13a445ce6209e57e9d2542ca91ae72d7aa30fa0629c442bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9146,10 +9177,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -9216,10 +9247,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "transfer_destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "lock": false, "reset": false, @@ -9233,7 +9264,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101771c67b85242343c27970f5aaa0deb1449956767e30581a98efb1182b26566af000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0322020000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d30000000000000000236a219c4725f31aa4c122599a4e8e5e1277e3a73082eee59288b834f7156338b4c28f9751b2052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101e7d6a7e7bbaa7afaa632fbc1ebbfcfc754228ef69be699afa1f2327a117d487e000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0322020000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a0000000000000000236a21e7e10da03ba949f22f43476e46603cde45fd20417662dd966f15887d1f1347234b51b2052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9262,9 +9293,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72,bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9331,16 +9362,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", 1 ], [ "MPMASSET", - "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", 2 ] ], @@ -9349,26 +9380,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807a136e6da4ea780f77ce087498a2cb0ea63118d3808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808a9c18e44852c20cdae290d6049d8ad6197f982340000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "02000000000104c0b9c1ef98c817f23543cd148cf95c5c35bf8fc476b8d3c5606140dd427e4013000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffffffbdc0ba180ed194a35657846ee029135fe58437cbc5d6f994181489f97d3670000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff87653abdce9cbc55d454f94a1938063fa5fa75156831b29a73134d7a6c79a46f000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff542c9fcbceccfba9a7e24628107fb94ca713854b759c457b5e3581ae00b920a2000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e80300000000000069512103e5901797f9ddc65b16e3f094c7de2ec1f688e8143982926ddf3b21058d06681521030c3f9b6a832eef514b6ae0e3ca3fc1512bb1b2050f9413078234b40f4b568046210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102fa901797f9ddc65b1630f09647a43daf9b08026c36f55c65aba783ce83a05947210314ec1ae6d8310401d7935af3cc3fef5b34eaed4aab9a78478234b1ec2bde44cc210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253ae66f216a8040000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000000000000", + "rawtransaction": "0200000000010458be15f289df4071133783cf1c1ed3e2768a234803b8feb48928991b9fc024be000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff876b095a062457cb134333a8e47d539525539ebe92a832bb2228bfa0027bd149000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff12c40221baedf2b7a64a30c194f0f3ee21fd9e3da5bb3a63050f9e6b45374890000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff4221a7ee683c9523487251e23fbc44c1d12cdb29e14f30d40a460c398bef9cda000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000006951210217f2cc3bbde1e89bc278b4b68b0fba98aefacead03ef760459f2be122063d78f21024713ff6e020c87d763802137f89415d6df57a43432184d96a216ec8248abf077210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210308f2cc3bbde1e89bc2abb4b40b8447143c25a4ab54192df3e439f5adab930b1b2102b0097ee49e14639f31422ded1a04c3d242dd722d4d806ed6a216e961282334ae210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153ae66f216a8040000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9384,7 +9415,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -9448,7 +9479,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9466,7 +9497,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9480,7 +9511,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "0200000000010181c66f8b3b47455a44f85bb02299fed9bb8fe9fa4296ae6b210b1638ffb6c3cc000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000356a33916f0172924afca690dbc8a8ca90aa2a401d6c071771da56d7a76da394f1542cbc858860a39e913b4aa4a96c7f97a8ef19277820b8052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101b0893555ae8807501de63095f2b53863a51d7768a5aff0f2b58ebb66d3de5b9a000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000356a33f3bb5cf2945eb2ed3257d586edea273b59a863e8a1f6d71a02ee8d6c11f3e47aa2bc6ed831a6b99ef14b59ad7715720ff459e520b8052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9506,8 +9537,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address that will be receiving the asset + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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 @@ -9573,8 +9604,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9591,19 +9622,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", + "data": "434e54525052545902000000000000000100000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "020000000001015c7c9ec9010c3c5f164f8962aaabc3482ea95894d9d1ed0ebea9c94d1b04aaaa000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000306a2ea22c094438264d388cc52b332a7ed7c5e67296ff60df4c9c4eb92b5ccffa9017cc7e21fabff1dcdda19be1a4a2f246b9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "0200000000010171d6b30e0c80581a3fa43f6aa1fe2ac92980828de4db011efe630df1b64c891f000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000306a2e2816b2393cdd6248d0f9a147cd75fb5b2482aaff3c825143097e8d0958ab8061f5b8847c16a90fa8f29c30f36e9e46b9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "quantity_normalized": "0.00001000" } @@ -9617,8 +9648,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be sending - + destination: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending + + destination: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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 @@ -9678,24 +9709,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b07ffff", + "data": "434e54525052545904808a9c18e44852c20cdae290d6049d8ad6197f982307ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101538b5e8008a84ead950b4b8b9fb9ca0e6bc4a27f3ec8ef3da1ec80ec477eb537000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2182c6e65a380aba8e89411d21794b5262ae87762b56ba156aa9a09fb75d627b840742bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "0200000000010136efde72e0576fc71aea6444b4c301322c8fff3799186d0d67f511e73b967012000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21d08123bc12fb1a7c398242851a229a5e15e68159a408f2d212d34df3056d25716642bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "flags": 7, "memo": "ffff" } @@ -9709,8 +9740,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: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g` (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` @@ -9769,8 +9800,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "quantity": 1000, "skip_validation": false }, @@ -9780,7 +9811,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "0200000000010160645b4e9543a262f98dd1424434b1d8e70c93c26e1763a9fd8cb3596964a430030000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6bffffffff03e803000000000000160014b52251261586063fd84ccd5b6d7716ee71e9c23400000000000000000c6a0a5c6a35510d6e69be4c5773250827010000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b02000000000000", + "rawtransaction": "02000000000101467f71359d9460f9fecd1eb4649aee7f1f6934a3354f1dde44adcdc7ba54f4f6030000001600148a9c18e44852c20cdae290d6049d8ad6197f9823ffffffff03e803000000000000160014f6811e9837b88c1c4b4f9324cceb3e6c95db534b00000000000000000c6a0aa797acc097dfd9819e0c73250827010000001600148a9c18e44852c20cdae290d6049d8ad6197f982302000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9797,7 +9828,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be issuing the asset + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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: `` @@ -9888,7 +9919,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9920,7 +9951,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "020000000001018dea80ded78224744a13887dbe5e8dfcad22027d0d1ed4523c0c7314eccc24be000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000316a2ff5170f1affbac633bc5266a5ed8ef44a52c3e75c0af942a5b1ac5dd931b05a6d0b7d4d98885cbb38ae9ce5c95c59bc0bb9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101b7ca96eff788cde1b51e0499f00d6171db77bb0fd16a07391a4bc1d21543fafa000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000316a2fb91e1b4c98ee02128aa4194cdb4702ae460f3169fccbd2ad4c2f21905c673519defc94bfdc6002ac6ad535d076330e0bb9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9959,7 +9990,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address that will be minting the asset + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -10020,14 +10051,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10039,7 +10070,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "0200000000010145da7a6d207d4c6b64dfd6e172313e4e819b2f861285ef5f1c1bb4e59672ec2d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000166a14996cd1daab8c3f16a3a982829164c5929447d62e3ebf052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101caa8d4d43d9dd37707e6bc7c9874fcf92c6f4ecef49f4a5256f3497018fcfb62000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000166a1424456f8814246c661bbef39812f6027818f142ac3ebf052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10058,10 +10089,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: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address from which the assets are attached + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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: `14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1` (str, optional) - The utxo to attach the assets to + + destination: `1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10120,8 +10151,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10135,12 +10166,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c313461646535393534303664633762363435333464326337383962663166363564346536393235363335336565646637613038313239623130346163303963303a317c5843507c31303030", + "data": "434e54525052545964626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c316563663639323938393263366431396262653563303538303832343138373965633063363739336534313661656365383037333964323737653664623630313a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "02000000000106145abe818b9bd68aeb075274ed81bd1cf2f116f2a772719157210c9753bf5e55000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4afb2ebef1fcb386e6d672c47881ba9bdd96599c1744768805e157a481fc32bb000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff976c32a16b506c1ebefa384eee8c59356c503d2d2ec23786a53b165473d27005000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4d2d18182ad31efce3fd6be83e8d09527b43cda8d2d5f86ff50394bebea4c32d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff38bcc93e9325e1b33973df78c706b264c50f49bebf2038c9ab2fc62be280105e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3fffffffff98ecc1697a666b4ee1ff49032ca7ed1c418bb3de85caefde51f2c3bc145056d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff04e80300000000000069512102074bb045adcf43e30e5b7b62b5e1bdf28300371576df96183b402fea676e41142103c191030585761fc13b362ebcc1642d57e19dbb171d4c68abb770905ab4f9395d210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102074bb045adcf43e30e0a2d31f1f1efb4d151654b30869653391162a2326947e92102d0d74657d7204e937d732ee1862d304aeb8ef4415c436be5bf26c00ee5ad6324210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee803000000000000695121022d4bb045adcf43e30e0f2062f7afbdffeb2401023282c2515a265a9b500f76782102b6e17333e34578aa4f4618d2b31e552f8fe8c3206c7b5ad78644f13ed1cc00d4210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aebf6c22fc060000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000002000002000000000000", + "rawtransaction": "020000000001064af97c3690a3f0cf6b7370271a37e282af29494ba26d0b1d96214bc5f9db9899000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff63e551a2dd0a24ec0d47c8d360f3d72c585717cad06f5f770ec54e0ab379f670000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71afffffffff8344e4cb55f939487f361dbd7e75e8b1f4bf506582fab780abc15b4664bbf18000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffbf69d39b750bb2538937ef38c9449f3a0b1d666c396392a90d3039fcd2f024b8000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffcef8c4131db7015edc622a51f6db575382c7590d704895b8ec8af197ab7f2c89000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff501773fc9b9291bf3749b90f0dd42750161265a0e4f430a66c0aa7d956e85986000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff04e8030000000000006951210265ba91e3d243cda2aa58322bde6d7daa08cc6cbb301a959115f33ddcf140555721032cfa50ab8e88749f7a30c65e8c21f1f8e76fd2f5eb28909d0a145be1bea40d53210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210365ba91e3d243cda2aa0568719e7a7abf0ac539ba30569ecc44ac7fddf3150e73210279fa5ef9988f7dc8213ac558dc75a6fab43fc0f9ad6cd6d85f430fb0edab5b30210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee803000000000000695121024fba91e3d243cda2aa5e66789d237da763bf0ba46453cdcc71944fe5c1213f7a210341cd679cfbbf1efe1603f63de844909bd15ca5c19d5be5e13b713887889d3fdb210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aebf6c22fc060000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10157,8 +10188,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: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to detach the assets to + + utxo: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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 @@ -10218,8 +10249,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10233,12 +10264,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964356563303833336238316232316566333131643436636661653231356537663030666636363536653962313036313236313561366530363630343563626163343a307c6263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c5843507c31303030", + "data": "434e54525052545964353666306430373335643139653939653131383663646639363761386661353361356531336532373363623833626130626236636630643037666231313632353a307c626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "020000000001033fd47b27bf21980a4ffa8088bd42173375be5940563dd6650288d104cce0632b010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff9f946c2235fdede29e6e192932c5bc2a6ae4c6515b67c4677c7df20a1de8ee6b000000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffffcc6600f1562d400a1d22b61f8e371920722f2bf75d09b8ef54c42d35c7655e94010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff04e8030000000000006951210284e91461957f773d9d32c02430e9c63a22476d09608bc0b91739de1f10d979992102d645130153fc37c0fa4567ee163ee3d7d9fee2b1a03a5da096c5da92e5adfbab210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee8030000000000006951210384e91461957f773d9d33c57765e9ca3c7247345b3683c1a013699d5a459c7f272103d24519110ca97bc4ab5626e9116fa2919cfee1bba56019e691999ed9a8b4a35d210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee80300000000000069512102aee91461957f773d9d238d7622eecc75496605443389c1ec710aef2e74ed4fb82103b523726461cd02a5cd2357de7058d5e1ecc88788c20b6d96a7f7eca3d0cccd2f210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853ae76770b27010000001600149c888c6d38f587584105e664eeb7d8327b0c13ca02000002000002000000000000", + "rawtransaction": "02000000000103689faeb311ecfa80fcb9e636c017a198d4aadb67d65188b93b5d87a4fef82d7e01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff65b360a9784712f6c29cacd4f947f3037882cf8227921a1aeef741e9cf3142db00000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffffc40f7e74a17fbcdceb8f25e7abd0dba57ff8138e2d4299b69da40696b91f2dcf01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff04e80300000000000069512102b318430630aece23e31c22b156c51a6d6c628431e9ba8d53b24a001dd78997b7210228088b8da72744152e45818f748c332bacb53d917188ca52bd54d61df8e95cb021027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee80300000000000069512103b318430630aece23e31e27e300c2183f6a608767edb9d816e94c4358decec73921037c59d1dee92e111728028bde20836f2ffeb07f95788b9e52ef56821afbbc091c21027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee803000000000000695121029918430630aece23e34b60b346860b210312e129e9b3d85a8b2f312cefbff49221034c6eb2bb90467c734f70b2ee41e90218c9870aa212eaf261df35e67f9adf3f4321027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53ae76770b2701000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10307,8 +10338,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -10316,16 +10347,16 @@ Returns the valid assets "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", - "owner": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "owner": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "divisible": true, "locked": false, "supply": 100000000000, @@ -10333,16 +10364,16 @@ Returns the valid assets "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730803975, - "last_issuance_block_time": 1730803975, + "first_issuance_block_time": 1730810038, + "last_issuance_block_time": 1730810038, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -10350,16 +10381,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "owner": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "issuer": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "owner": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "divisible": true, "locked": false, "supply": 100000000000, @@ -10367,16 +10398,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730803787, - "last_issuance_block_time": 1730803787, + "first_issuance_block_time": 1730809864, + "last_issuance_block_time": 1730809864, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -10384,8 +10415,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" } ], @@ -10413,8 +10444,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -10422,8 +10453,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730803619, - "last_issuance_block_time": 1730803630, + "first_issuance_block_time": 1730809688, + "last_issuance_block_time": 1730809701, "supply_normalized": "100.00000000" } } @@ -10454,7 +10485,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10462,14 +10493,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10477,7 +10508,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10495,7 +10526,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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. @@ -10507,7 +10538,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -10561,9 +10592,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10577,8 +10608,10 @@ Returns the orders of an asset "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10600,13 +10633,15 @@ Returns the orders of an asset "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10620,8 +10655,10 @@ Returns the orders of an asset "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10643,13 +10680,15 @@ Returns the orders of an asset "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10663,8 +10702,10 @@ Returns the orders of an asset "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10686,13 +10727,15 @@ Returns the orders of an asset "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 60, - "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10706,8 +10749,10 @@ Returns the orders of an asset "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10729,13 +10774,15 @@ Returns the orders of an asset "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10749,8 +10796,10 @@ Returns the orders of an asset "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10772,7 +10821,9 @@ Returns the orders of an asset "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": 52, @@ -10812,13 +10863,13 @@ Returns the orders of an asset { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10832,7 +10883,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10852,13 +10903,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 52, - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10872,7 +10923,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10892,13 +10943,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", "tx0_index": 49, - "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 50, - "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10912,7 +10963,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10932,13 +10983,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10952,7 +11003,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10972,13 +11023,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -10992,7 +11043,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11072,20 +11123,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "event": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11093,20 +11144,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", + "event": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11114,20 +11165,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11135,20 +11186,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "event": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11160,16 +11211,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11229,12 +11280,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -11246,16 +11297,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -11267,16 +11318,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -11288,16 +11339,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -11309,16 +11360,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -11398,14 +11449,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", + "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -11420,20 +11471,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -11448,20 +11499,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -11476,20 +11527,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -11504,7 +11555,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730803619, + "block_time": 1730809688, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11538,10 +11589,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11549,7 +11600,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -11562,10 +11613,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11573,7 +11624,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -11586,10 +11637,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "block_index": 207, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11597,7 +11648,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -11610,10 +11661,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11621,7 +11672,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -11634,10 +11685,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11645,7 +11696,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "divisible": true, "asset_longname": null, @@ -11696,9 +11747,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11707,7 +11758,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11717,7 +11768,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -11733,9 +11784,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", + "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", "block_index": 142, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11744,7 +11795,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11754,7 +11805,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803711, + "block_time": 1730809785, "asset_info": { "divisible": true, "asset_longname": null, @@ -11770,9 +11821,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", + "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", "block_index": 150, - "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", + "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11780,10 +11831,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11791,7 +11842,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803750, + "block_time": 1730809837, "asset_info": { "divisible": true, "asset_longname": null, @@ -11807,18 +11858,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11828,7 +11879,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -11853,7 +11904,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - The address to return + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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` @@ -11866,9 +11917,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11877,7 +11928,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11887,7 +11938,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -11937,7 +11988,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11945,7 +11996,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11954,7 +12005,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11962,7 +12013,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11971,7 +12022,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11979,7 +12030,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11988,7 +12039,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -12025,27 +12076,27 @@ Returns the dispenses of an asset { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12060,7 +12111,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -12074,27 +12125,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", + "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", "block_index": 147, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12109,7 +12160,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730803739, + "block_time": 1730809815, "asset_info": { "divisible": true, "asset_longname": null, @@ -12123,19 +12174,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12143,7 +12194,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12158,7 +12209,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -12172,19 +12223,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12192,7 +12243,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12207,7 +12258,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -12281,10 +12332,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12309,7 +12360,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12349,22 +12400,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", + "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", "tx_index": 13, "block_index": 125, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -12373,22 +12424,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -12397,22 +12448,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -12431,7 +12482,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn` (str, required) - The address of the mints to return + + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (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` @@ -12450,22 +12501,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -12518,9 +12569,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12534,8 +12585,10 @@ Returns all the orders "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12557,13 +12610,15 @@ Returns all the orders "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 52, - "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "block_index": 187, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12577,8 +12632,10 @@ Returns all the orders "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "filled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12600,13 +12657,15 @@ Returns all the orders "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12620,8 +12679,10 @@ Returns all the orders "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12643,13 +12704,15 @@ Returns all the orders "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12663,8 +12726,10 @@ Returns all the orders "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12686,13 +12751,15 @@ Returns all the orders "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 60, - "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12706,8 +12773,10 @@ Returns all the orders "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12729,7 +12798,9 @@ Returns all the orders "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": 76, @@ -12742,7 +12813,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4` (str, required) - The hash of the transaction that created the order + + order_hash: `4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03` (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. @@ -12754,9 +12825,9 @@ Returns the information of an order { "result": { "tx_index": 54, - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "block_index": 210, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -12770,8 +12841,10 @@ Returns the information of an order "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12793,7 +12866,9 @@ Returns the information of an order "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } } ``` @@ -12803,7 +12878,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4` (str, required) - The hash of the transaction that created the order + + order_hash: `4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03` (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 @@ -12830,13 +12905,13 @@ Returns the order matches of an order { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12850,7 +12925,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12870,13 +12945,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -12890,7 +12965,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12910,13 +12985,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12930,7 +13005,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12960,7 +13035,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807` (str, required) - The hash of the transaction that created the order + + order_hash: `c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175` (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 @@ -12979,15 +13054,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "btc_amount": 2000, - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "status": "valid", "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "btc_amount_normalized": "0.00002000" } ], @@ -13031,9 +13106,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "block_index": 187, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13051,7 +13126,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730803906, + "block_time": 1730809971, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13077,9 +13152,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "block_index": 210, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -13097,7 +13172,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730804046, + "block_time": 1730810115, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13123,9 +13198,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13143,7 +13218,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13169,9 +13244,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13189,7 +13264,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13215,9 +13290,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13235,7 +13310,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13298,13 +13373,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13321,7 +13396,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13341,13 +13416,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 52, - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13364,7 +13439,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803906, + "block_time": 1730809971, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13384,13 +13459,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13407,7 +13482,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13427,13 +13502,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", "tx0_index": 49, - "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 50, - "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13450,7 +13525,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803826, + "block_time": 1730809903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13470,13 +13545,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13493,7 +13568,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13551,13 +13626,13 @@ Returns all the order matches { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13571,7 +13646,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13591,13 +13666,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 52, - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13611,7 +13686,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13631,13 +13706,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", "tx0_index": 49, - "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 50, - "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13651,7 +13726,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13671,13 +13746,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13691,7 +13766,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13711,13 +13786,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13731,7 +13806,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13899,66 +13974,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", + "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", "block_index": 121, - "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", + "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730803615, + "block_time": 1730809684, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "46b1fa87b1a4e176547f9a27c6e766f45af6bf33772ef9af4b9d872f49ed8428", + "tx_hash": "9cdfbeb6e7c77a7a98300dad36fefe08d1ed94ef8d9d84b24118b8eeb9a8e712", "block_index": 120, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730803612, + "block_time": 1730809680, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "c9dae8b10b1dc7c13a533807ce35138ab263bab4718fde412b0b59e97c1a9875", + "tx_hash": "372f224b97c859b86dce204bf93a9b5fa36f005c57e7310ba57b3aba401dc0b7", "block_index": 119, - "source": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu", + "source": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730803608, + "block_time": 1730809677, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "9822e208aca66c4f75ec215c31aeb1491e5c837d8100195a587a7772400147fa", + "tx_hash": "8ed2ecd4c265013d1580174b734b3cd125419219038e42d9de5318d1b3bc266f", "block_index": 118, - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730803604, + "block_time": 1730809674, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "fc0b64eb61d459396eb9dffd16e7327535a2cee5c43f9787029d649f9ebca39e", + "tx_hash": "0faf4c2e5517b6eb8fde2d128037829b95beeddfcbb1a139fcdb8d16027e0a72", "block_index": 117, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730803601, + "block_time": 1730809669, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -14003,9 +14078,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14014,7 +14089,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14024,7 +14099,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -14040,9 +14115,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", + "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", "block_index": 142, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14051,7 +14126,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -14061,7 +14136,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803711, + "block_time": 1730809785, "asset_info": { "divisible": true, "asset_longname": null, @@ -14077,9 +14152,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", + "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", "block_index": 150, - "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", + "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14087,10 +14162,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -14098,7 +14173,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803750, + "block_time": 1730809837, "asset_info": { "divisible": true, "asset_longname": null, @@ -14114,9 +14189,9 @@ Returns all dispensers }, { "tx_index": 64, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14125,7 +14200,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14135,11 +14210,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -14151,18 +14226,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14172,7 +14247,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -14197,7 +14272,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5` (str, required) - The hash of the dispenser to return + + dispenser_hash: `0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388` (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. @@ -14209,9 +14284,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14220,7 +14295,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14230,7 +14305,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -14252,7 +14327,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5` (str, required) - The hash of the dispenser to return + + dispenser_hash: `0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388` (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 @@ -14272,19 +14347,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14292,7 +14367,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14307,7 +14382,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -14321,19 +14396,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14341,7 +14416,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14356,7 +14431,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -14398,20 +14473,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -14436,7 +14511,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd` (str, required) - The hash of the dividend to return + + dividend_hash: `671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23` (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. @@ -14448,20 +14523,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -14483,7 +14558,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23` (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 @@ -14506,12 +14581,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "tx_index": 41, - "utxo": "9a0868d7a0cd709a75dab19d37c209fd896ab861ed6624a63184d6e2d38eaee7:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "d796cd1db89516aab5f3c3aac3782b9748abc2869b5bb4e40e9eab474c0f5c92:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "divisible": true, "asset_longname": null, @@ -14523,16 +14598,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", + "address": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "divisible": true, "asset_longname": null, @@ -14578,27 +14653,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 694, @@ -14607,14 +14682,14 @@ Returns all events "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -14625,9 +14700,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 693, @@ -14636,9 +14711,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,24 +14723,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -14675,9 +14750,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 691, @@ -14705,15 +14780,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } } ``` @@ -14791,16 +14866,16 @@ Returns the events filtered by event name "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -14810,9 +14885,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 690, @@ -14822,12 +14897,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -14837,9 +14912,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 687, @@ -14849,39 +14924,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -14891,24 +14966,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -14918,9 +14993,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_time": 1730804033 + "block_time": 1730810101 } ], "next_cursor": 656, @@ -14976,27 +15051,27 @@ Returns all the dispenses { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15011,7 +15086,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -15025,19 +15100,19 @@ Returns all the dispenses { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", + "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15045,7 +15120,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15060,11 +15135,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -15074,27 +15149,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", + "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", "block_index": 147, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15109,7 +15184,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730803739, + "block_time": 1730809815, "asset_info": { "divisible": true, "asset_longname": null, @@ -15123,19 +15198,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15143,7 +15218,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15158,7 +15233,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -15172,19 +15247,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15192,7 +15267,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15207,7 +15282,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -15249,10 +15324,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -15260,7 +15335,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -15273,10 +15348,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -15284,11 +15359,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -15297,10 +15372,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15308,7 +15383,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -15321,10 +15396,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15332,11 +15407,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -15345,10 +15420,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15356,11 +15431,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -15411,14 +15486,14 @@ Returns all the issuances "result": [ { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -15433,20 +15508,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "973dbfc3d5006c89f20e05930dfe8ec6f41dce002773a8d7f89f8c4fd2b77629", + "tx_hash": "e7077d8a8a933b7047e3402cb8a39b0cae833dd9e7f5ff11a920bda3767ffce1", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", - "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "transfer": false, "callable": false, "call_date": 0, @@ -15461,20 +15536,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803975, + "block_time": 1730810038, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", + "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -15489,20 +15564,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803813, + "block_time": 1730809879, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", + "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -15517,20 +15592,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730803808, + "block_time": 1730809875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", + "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -15545,7 +15620,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803795, + "block_time": 1730809872, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15560,7 +15635,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0` (str, required) - The hash of the transaction to return + + tx_hash: `76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d` (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. @@ -15572,14 +15647,14 @@ Returns the issuances of a block { "result": { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -15594,7 +15669,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15626,16 +15701,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -15649,7 +15724,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a` (str, required) - The hash of the transaction to return + + tx_hash: `c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c` (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. @@ -15662,16 +15737,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -15705,9 +15780,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15715,14 +15790,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803688, + "block_time": 1730809760, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", + "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", "block_index": 137, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15730,7 +15805,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803685, + "block_time": 1730809755, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15744,7 +15819,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f` (str, required) - The hash of the transaction to return + + tx_hash: `ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45` (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. @@ -15756,9 +15831,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15766,7 +15841,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803688, + "block_time": 1730809760, "fee_fraction_int_normalized": "0.00000000" } } @@ -15803,10 +15878,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15831,7 +15906,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15840,10 +15915,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15868,7 +15943,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730803677, + "block_time": 1730809747, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15880,10 +15955,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15908,7 +15983,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730803653, + "block_time": 1730809722, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15920,10 +15995,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15948,7 +16023,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730803649, + "block_time": 1730809718, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15960,10 +16035,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15988,7 +16063,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16057,22 +16132,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -16081,22 +16156,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", + "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", "tx_index": 21, "block_index": 134, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803673, + "block_time": 1730809742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -16105,22 +16180,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", + "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", "tx_index": 20, "block_index": 133, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803660, + "block_time": 1730809728, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -16129,22 +16204,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", + "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803656, + "block_time": 1730809725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -16153,22 +16228,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "a5dda36fe17d51665230d3dc0b163d9f0ac8088574f680d7ac9d1639d93979a7", + "tx_hash": "0a1cb229ccebe973b679aad8fb8699dc9c8b3723e2ae1735a98d06420499b318", "tx_index": 17, "block_index": 129, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803645, + "block_time": 1730809715, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -16187,7 +16262,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f` (str, required) - The hash of the fairmint to return + + tx_hash: `ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16198,22 +16273,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -16231,7 +16306,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963,bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu` (str, required) - The addresses to search for + + addresses: `bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6,bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9` (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. @@ -16245,22 +16320,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea", - "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" + "amount": 5.46e-05, + "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa", + "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" }, { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd", - "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" + "amount": 49.499345, + "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d", + "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" }, { "vout": 2, @@ -16268,8 +16343,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888", - "address": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu" + "txid": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215", + "address": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9" } ], "next_cursor": null, @@ -16282,7 +16357,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l` (str, required) - The address to search for + + address: `bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e` (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 @@ -16298,31 +16373,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "42f07b3232c643037564ece13fdf7a669ffb3e4b0bac5a0c3f43b1052061ef0c" + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" }, { - "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421" + "tx_hash": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d" }, { - "tx_hash": "9f3197d94c332c1b4cbed5f513f792c09d8e3376879599e71eb217e396e6bc26" + "tx_hash": "155214cde54155ad9f22f9401e297430884c73e57da9693a55376c941df0b333" }, { - "tx_hash": "4ea5d5181c45bd1c6e404df1bd1cdfc7c1223036d5b238d3d3fac69ffe3d2e2d" + "tx_hash": "9c05cf48db05c2a1a61d802e9ed24385872f68e888b28ecb075c2f039a67f851" }, { - "tx_hash": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c" + "tx_hash": "dcaa6acc1d5feb408823e8e4a970292b42ca77021cdfe06397828f0e42d80166" }, { - "tx_hash": "3fae326a238017d66b6a2343b8e2efe9cfcbb685a8cef9b542f7f5e2c23e6c79" + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c" }, { - "tx_hash": "1e128106013637b72112682543e29aa6122d4d5397e609dac8039590763ebd8b" + "tx_hash": "8c731c5ac1e94f8978aa69e55cca9f8a6ff5a0d14c462ab1475b1b87a07889a1" }, { - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a" + "tx_hash": "af9c59991017c568be76110e3d45e950452378a2d55210f69558fb099f3fd8bf" }, { - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" + "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4" } ], "next_cursor": null, @@ -16335,7 +16410,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s` (str, required) - The address to search for. + + address: `bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w` (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. @@ -16348,8 +16423,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "6d2d5f10aae352b1b5a95fba0f3e002fdac1185b6ccca80f454c8e75db1e41ce" + "block_index": 5, + "tx_hash": "5bc96b88246c6e1efef6344274ceb58e42ca761aac372b68b451b002061eb170" } } ``` @@ -16359,7 +16434,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963` (str, required) - The address to search for + + address: `bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6` (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 @@ -16375,20 +16450,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea" + "amount": 5.46e-05, + "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa" }, { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd" + "amount": 49.499345, + "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d" } ], "next_cursor": null, @@ -16401,7 +16476,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72` (str, required) - Address to get pubkey for. + + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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. @@ -16413,7 +16488,7 @@ Get pubkey for an address. ``` { - "result": "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" + "result": "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" } ``` @@ -16422,7 +16497,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4` (str, required) - The transaction hash + + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (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. @@ -16434,7 +16509,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010188a8860f8b7b8feb281fd9f2bacbfc55dcd7a06908489a2cdc18301903cb40060100000000ffffffff03e8030000000000001600149c888c6d38f587584105e664eeb7d8327b0c13ca00000000000000000c6a0aa448e03e0ab2e889a4b1eb140927010000001600147117d7b7942210084f54617475402534fba5a0e90247304402205130abc939b2fc1366c4468d38a769594463812473594fcb4bf8710b7b1c6119022070d18ae3541f1d096fc581f3064a6632477a80f1e414108f986356066b1aacb2012103c8cfefa4b8d6559382a523b41068bf1a9344d905d4f2492ed6b46584e4c16ff000000000" + "result": "0200000000010115a285033f8b1881954b6493d6b70007a36304c3f76b94674fd915f9ff199d660100000000ffffffff03e803000000000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa00000000000000000c6a0aaf8db67dd27f504f06ebeb140927010000001600149d9b6a9f2ea9c21b09081f10701535115b764f9702473044022062301d8deb93198293864ae2459c469132a83e21cd88073bc6f8c1e8b2abb4f002207ee31d16a156d1c1bf738e84da22d3f676fe4420888a985ebc864d8cfaef1c500121027f48f7b23d5afb56a3fd9df18d4bd18fa8128f20ba8e2a8a7a8a151393d3db1900000000" } ``` @@ -16529,27 +16604,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78 }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "quantity": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, "asset_info": { "divisible": true, @@ -16560,22 +16635,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -16585,22 +16660,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "block_index": 210, - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -16610,30 +16685,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730804050.1464322, + "block_time": 1730810118.4794593, "btc_amount": 0, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "destination": "", "fee": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, - "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", + "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -16647,7 +16722,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -16678,19 +16753,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -16700,7 +16775,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -16713,7 +16788,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10` (str, required) - The hash of the transaction to return + + tx_hash: `d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39` (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 @@ -16733,27 +16808,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78 }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "quantity": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, "asset_info": { "divisible": true, @@ -16764,22 +16839,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -16789,22 +16864,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "block_index": 210, - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -16814,30 +16889,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730804050.1464322, + "block_time": 1730810118.4794593, "btc_amount": 0, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "destination": "", "fee": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, - "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", + "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -16851,7 +16926,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 3b78ca5632..c17656aae8 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -102,6 +102,8 @@ "get_asset", "get_quantity", "expiration", + "give_price", + "get_price", ], "dispensers": [ "block_index", @@ -2277,6 +2279,11 @@ def prepare_order_matches_where(status, other_conditions=None): return prepare_where_status(status, OrderMatchesStatus, other_conditions=other_conditions) +SELECT_ORDERS = "*, " +SELECT_ORDERS += "(get_quantity * 1.0) / (give_quantity * 1.0) AS give_price, " +SELECT_ORDERS += "(give_quantity * 1.0) / (get_quantity * 1.0) AS get_price" + + def get_orders( db, status: OrderStatus = "all", @@ -2311,6 +2318,7 @@ def get_orders( limit=limit, offset=offset, sort=sort, + select=SELECT_ORDERS, ) @@ -2345,6 +2353,7 @@ def get_orders_by_asset( limit=limit, offset=offset, sort=sort, + select=SELECT_ORDERS, ) @@ -2375,6 +2384,7 @@ def get_orders_by_address( limit=limit, offset=offset, sort=sort, + select=SELECT_ORDERS, ) @@ -2452,6 +2462,7 @@ def get_order(db, order_hash: str): db, "orders", where={"tx_hash": order_hash}, + select=SELECT_ORDERS, ) diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index e524b0c38c..4ed5717e92 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -424,9 +424,14 @@ def inject_normalized_quantity(item, field_name, asset_info): return item if item[field_name] is not None: - item[field_name + "_normalized"] = ( - divide(item[field_name], 10**8) if asset_info["divisible"] else str(item[field_name]) - ) + if field_name in ["give_price", "get_price"]: + item[field_name + "_normalized"] = divide(item[field_name], 1) + else: + item[field_name + "_normalized"] = ( + divide(item[field_name], 10**8) + if asset_info["divisible"] + else str(item[field_name]) + ) return item @@ -465,6 +470,8 @@ def inject_normalized_quantities(result_list): "earn_quantity": {"asset_field": "asset_info", "divisible": None}, "commission": {"asset_field": "asset_info", "divisible": None}, "paid_quantity": {"asset_field": "asset_info", "divisible": None}, + "give_price": {"asset_field": "give_asset_info", "divisible": None}, + "get_price": {"asset_field": "get_asset_info", "divisible": None}, } enriched_result_list = [] diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py index 06041437d7..241aa973a9 100644 --- a/counterparty-core/counterpartycore/test/api_v2_test.py +++ b/counterparty-core/counterpartycore/test/api_v2_test.py @@ -396,6 +396,8 @@ def test_new_get_asset_orders(): "fee_provided_remaining": 992800, "status": "open", "confirmed": True, + "get_price": 0.008, + "give_price": 125.0, } @@ -423,6 +425,8 @@ def test_new_get_order_info(): "fee_provided_remaining": 6800, "status": "open", "confirmed": True, + "get_price": 100.0, + "give_price": 0.01, } diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 58502b6868..b1799d49eb 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -4502,6 +4502,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 0.008, + "get_price": 125.0, "confirmed": true, "block_time": 310513000, "give_asset_info": { @@ -4525,7 +4527,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "0.00800000", + "get_price_normalized": "125.00000000" }, { "tx_index": 12, @@ -4545,6 +4549,8 @@ "fee_provided": 1000000, "fee_provided_remaining": 1000000, "status": "open", + "give_price": 149.9999250000375, + "get_price": 0.00666667, "confirmed": true, "block_time": 310011000, "give_asset_info": { @@ -4568,7 +4574,9 @@ "fee_provided_normalized": "0.01000000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.01000000" + "fee_provided_remaining_normalized": "0.01000000", + "give_price_normalized": "149.99993000", + "get_price_normalized": "0.00666667" }, { "tx_index": 11, @@ -4588,6 +4596,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 0.01, + "get_price": 100.0, "confirmed": true, "block_time": 310010000, "give_asset_info": { @@ -4611,7 +4621,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "0.01000000", + "get_price_normalized": "100.00000000" }, { "tx_index": 10, @@ -4631,6 +4643,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, "block_time": 310009000, "give_asset_info": { @@ -4654,7 +4668,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 7, @@ -4674,6 +4690,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, "block_time": 310006000, "give_asset_info": { @@ -4697,7 +4715,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": null, @@ -5488,6 +5508,8 @@ "fee_provided": 1000000, "fee_provided_remaining": 992800, "status": "open", + "give_price": 125.0, + "get_price": 0.008, "confirmed": true, "block_time": 310513000, "give_asset_info": { @@ -5511,7 +5533,9 @@ "fee_provided_normalized": "0.01000000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00992800" + "fee_provided_remaining_normalized": "0.00992800", + "give_price_normalized": "125.00000000", + "get_price_normalized": "0.00800000" }, { "tx_index": 492, @@ -5531,6 +5555,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 0.008, + "get_price": 125.0, "confirmed": true, "block_time": 310513000, "give_asset_info": { @@ -5554,7 +5580,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "0.00800000", + "get_price_normalized": "125.00000000" }, { "tx_index": 12, @@ -5574,6 +5602,8 @@ "fee_provided": 1000000, "fee_provided_remaining": 1000000, "status": "open", + "give_price": 149.9999250000375, + "get_price": 0.00666667, "confirmed": true, "block_time": 310011000, "give_asset_info": { @@ -5597,7 +5627,9 @@ "fee_provided_normalized": "0.01000000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.01000000" + "fee_provided_remaining_normalized": "0.01000000", + "give_price_normalized": "149.99993000", + "get_price_normalized": "0.00666667" }, { "tx_index": 11, @@ -5617,6 +5649,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 0.01, + "get_price": 100.0, "confirmed": true, "block_time": 310010000, "give_asset_info": { @@ -5640,7 +5674,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "0.01000000", + "get_price_normalized": "100.00000000" }, { "tx_index": 10, @@ -5660,6 +5696,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, "block_time": 310009000, "give_asset_info": { @@ -5683,7 +5721,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 7, @@ -5703,6 +5743,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, "block_time": 310006000, "give_asset_info": { @@ -5726,7 +5768,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": null, @@ -5751,6 +5795,8 @@ "fee_provided": 6800, "fee_provided_remaining": 6800, "status": "open", + "give_price": 0.008, + "get_price": 125.0, "confirmed": true, "block_time": 310513000, "give_asset_info": { @@ -5774,7 +5820,9 @@ "fee_provided_normalized": "0.00006800", "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", - "fee_provided_remaining_normalized": "0.00006800" + "fee_provided_remaining_normalized": "0.00006800", + "give_price_normalized": "0.00800000", + "get_price_normalized": "125.00000000" } }, "http://localhost:10009/v2/orders/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498/matches?verbose=true": { diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 0e9d437a62..944db25416 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": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", "difficulty": 545259519, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "previous_block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "previous_block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", "difficulty": 545259519, - "ledger_hash": "2832208b5976d7d56a2cb9016bb3e3a8d867504a9166ec6e9be34f672af5e5bd", - "txlist_hash": "ecf0b4a281d4691fd458095771d81ac7d88b98f3a241697d28232f10ddc6154e", - "messages_hash": "566f6ce132f1b5b40eaaa1594b13b16940ee338e5e86242912a4489f5487cf5e", + "ledger_hash": "fa863f767a1ec7aff30b3d50f18afc458d2d38eee301eaf31ca4594fcfb1700a", + "txlist_hash": "87ed16845085e4fac7eb0248c5d98e80b9aa226a7defbe57601a75e4b618cc52", + "messages_hash": "574fe5babf94a16cf8ad5c70d4330a3b97678ad7f65989ff3eb7fba5728acfe5", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", - "block_time": 1730804033, - "previous_block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", + "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_time": 1730810101, + "previous_block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", "difficulty": 545259519, - "ledger_hash": "fe8dac69d2789bd97bfea4688b305b38c0b6f4b3a5a8a459ef090d5077acb6f7", - "txlist_hash": "71213a325bb189bd60ad8356726b8b289b6cc40832a2753f2fa90fed4abb6dee", - "messages_hash": "554a3fc6f8fac8dd078217de6f89d24306ecc03d3f94f2d12a36a8c0908b7bd4", + "ledger_hash": "82cdb11101b7d3eaff8fa83af3df7ada9140fa18e99fddfb0e50063b1ac19bdf", + "txlist_hash": "5ae691bb7181741f4945cf3ec2b62be06d936b9f4e46c859d4195cdbfecf8cde", + "messages_hash": "fbebad60f42b702ad0b50cb2a0ff93af9f0747c7cf849cc6d0c48424cb311194", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", - "block_time": 1730804029, - "previous_block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", + "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", + "block_time": 1730810097, + "previous_block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", "difficulty": 545259519, - "ledger_hash": "92ef021c637f16bbe647891da469f387569dc7ef66a8a813c938c82d21a7e641", - "txlist_hash": "8ff9babc088363fbae03fabd550c72c476a55c500a3b398404a46879df88ba52", - "messages_hash": "7628d6dfe38c04422f29dfe524c921c3d58d5f30c313f63a8b272198a9a92159", + "ledger_hash": "4b19ce525f7c47bd15da4d84b8c12b9eb833435441d7ab94f69fccc11a64fca0", + "txlist_hash": "e445f4e045e1572d476cf0b28fbd646147bc9c82d65569cbe884d9af2a0a21be", + "messages_hash": "6b102244e88f6d30a48b00ce6523a39cab9dc33d899952fbba74b017a5b077da", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", - "block_time": 1730804024, - "previous_block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", + "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_time": 1730810093, + "previous_block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", "difficulty": 545259519, - "ledger_hash": "963ee9a1a46f9536ff9e4351f061e47dfa4c213b4316b43f0a1db1dcd9c77d89", - "txlist_hash": "b365ccc1de84e35aa113b73a2bc9c5364a29258793536eedf0a80118b1495afa", - "messages_hash": "9f41152da97de7ee0aa5bd2a2acf7c6fb70fd192abc0ef29785812652fec9fc7", + "ledger_hash": "396e9da473d68e63408d43d85b99daa35f6089406459bd7a742bea482c7f916c", + "txlist_hash": "1b744275c22796f23817d67f481a22cc224d7d8e1d3933ada8ef2a1ad6003ba0", + "messages_hash": "4b5aac3bfbb71de10a81527d40fd8b66e2a3eb3795ce8e25c90034911de61da2", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", "difficulty": 545259519, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", "difficulty": 545259519, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 694, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 693, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" } ], "next_cursor": 691, @@ -256,16 +256,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 690, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" }, { "event_index": 687, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4" + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "object_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "block_index": 210, "confirmed": true, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "status": "valid", "confirmed": true, - "block_time": 1730803930 + "block_time": 1730810003 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "block_index": 196, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730803952, + "block_time": 1730810023, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,18 +816,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "843ffae900dcbbc860ede0f5a6848f666c36603383510299c579929c32a740e7", + "hash": "8c3309c5737147ca542db19d835d97753d8621e801a55b21ed6ac230cbbf68e3", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,38 +837,49 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2cf5b1aca445c1e2d61f0b3f91c2655bc4d9e7c87165f2e9ff03c25faed5157d8afb65949edc7fd36c8cc96df8" + "script_pub_key": "6a3388c6c523f588bc4ff80728f676effb4c3fd787b4b77b30cd83934063dd10df5adc283859389ee493993748989da810da578b43" }, { "value": 4999990000, - "script_pub_key": "00147a136e6da4ea780f77ce087498a2cb0ea63118d3" + "script_pub_key": "00148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a" } ], "vtxinwit": [ - "304402204d2f41b18d45b7432ba82355232e850f90822901e7e88d255bac465d2bcbe46602207535963f704b2b23d839a1c2a3bcaa9fc3fffd89330739ae244817d61fd20c0301", - "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" + "304402203de657371ca5dd5866465047570cc056e07bd0d4ff438b9cd8515e0eb554858302206a76adcf234fbc4c49cb65fcf10be05ea23ba2f333c6a53c870fb29a7fdfcb3701", + "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" ], "lock_time": 0, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", - "tx_id": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0" + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_id": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601" }, "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, + "message_type": "order", + "message_type_id": 10, "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" + "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" @@ -876,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "e7ae8ed3e2d68431a62466ed61b86a89fd09c2379db1da759a70cda0d768089a", + "hash": "925c0f4c47ab9e0ee4b45b9b86c2ab48972b78c3aac3f3b5aa1695b81dcd96d7", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -897,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e9b269de2860042058e962cf37fef06c914ab6c767386666e073b33f75a980e27f897fdcaf9349e433ed1f506e1f2" + "script_pub_key": "6a2e5cef4840b91e11ceb0e64ca8558eff6303f73545fd8c12e4fb97cef6309bab3f8513b4b6c0ca884b704df5626316" }, { "value": 4999970000, - "script_pub_key": "0014b52251261586063fd84ccd5b6d7716ee71e9c234" + "script_pub_key": "0014f6811e9837b88c1c4b4f9324cceb3e6c95db534b" } ], "vtxinwit": [ - "3044022023652f8971b6e2cf46f7dd44ac8bfcb7763e2fffae1a899f165fa8ed27a6011802205ae3eb739eb45d3628e44c449a1a354dd8e214272220c21b988547804f17247901", - "027919e5c84ae072cc3b76f5e1d325b98ebc5f5e3e2da6024d63813f76d4f1b035" + "30440220087c163eb4412833e338a4bd68ae6833d3f75c5e5cb36627c976b187bfa3135902203154b59af84fe7a2702c68ee920fa43fa03b390f658fbd33c64a36fa96f5581401", + "02fa96e8629ffb83d4a03ad1334f4f1734cd3c290d310037cc58e298810e7235ed" ], "lock_time": 0, - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", - "tx_id": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10" + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_id": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39" }, "unpacked_data": { "message_type": "enhanced_send", @@ -918,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -945,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -970,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", - "block_time": 1730804046, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_time": 1730810115, + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -999,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 694, @@ -1013,14 +1024,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1031,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 693, @@ -1042,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1054,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1081,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 691, @@ -1091,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "msg_index": 1, "quantity": 1500000000, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", "status": "valid", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1108,9 +1119,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 690, @@ -1123,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 694, @@ -1137,14 +1148,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1155,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 693, @@ -1166,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1205,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 691, @@ -1215,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "msg_index": 1, "quantity": 1500000000, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", "status": "valid", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1232,9 +1243,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 690, @@ -1244,10 +1255,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1255,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1268,10 +1279,10 @@ }, { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1279,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1299,27 +1310,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1334,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1355,16 +1366,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1374,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 690, @@ -1386,12 +1397,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1401,9 +1412,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 687, @@ -1413,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": null, @@ -1442,16 +1453,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1461,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 690, @@ -1473,12 +1484,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -1488,9 +1499,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 687, @@ -1500,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": null, @@ -1530,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1540,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1551,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1561,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1572,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1582,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1593,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1603,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1614,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1624,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1635,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1645,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1659,17 +1670,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1705,17 +1716,17 @@ }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_hash": "09b2f8a429c0d64db5a48f9a411e45a37b564b57a9f07b8f76d961b7052edd66", - "block_time": 1730804033, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_time": 1730810101, + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460:0", + "utxos_info": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1723,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1738,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1757,17 +1768,17 @@ }, { "tx_index": 74, - "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "block_index": 207, - "block_hash": "59b6dc6561d4df94ce1cdadf8fe711a06e8e6303124e657276228c184885377c", - "block_time": 1730804029, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", + "block_time": 1730810097, + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807a136e6da4ea780f77ce087498a2cb0ea63118d380f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c234c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534bc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75:0", + "utxos_info": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1775,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1790,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1809,17 +1820,17 @@ }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", - "block_time": 1730804024, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_time": 1730810093, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", + "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1827,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1842,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1861,17 +1872,17 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", - "block_time": 1730804011, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", + "block_time": 1730810088, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", + "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1879,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -1894,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1927,20 +1938,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 54, - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx1_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -1959,9 +1970,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 675, @@ -1980,11 +1991,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "open", - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -2008,24 +2019,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "block_index": 209, - "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -2035,9 +2046,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 673, @@ -2049,20 +2060,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "tx0_index": 60, - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx1_index": 54, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2081,23 +2092,23 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "block_time": 1730804037 + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_time": 1730810105 }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 668, @@ -2106,17 +2117,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "quantity": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, "asset_info": { "divisible": true, @@ -2127,22 +2138,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2152,22 +2163,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "block_index": 210, - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -2177,30 +2188,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730804050.1464322, + "block_time": 1730810118.4794593, "btc_amount": 0, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "destination": "", "fee": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, - "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", + "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -2214,7 +2225,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -2223,7 +2234,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2231,14 +2242,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2246,14 +2257,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2261,14 +2272,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2283,7 +2294,7 @@ "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2291,7 +2302,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2304,7 +2315,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2326,16 +2337,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -2347,16 +2358,16 @@ }, { "block_index": 208, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -2368,16 +2379,16 @@ }, { "block_index": 207, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -2389,16 +2400,16 @@ }, { "block_index": 207, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -2410,20 +2421,20 @@ }, { "block_index": 203, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "event": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2437,16 +2448,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -2458,16 +2469,16 @@ }, { "block_index": 206, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -2479,20 +2490,20 @@ }, { "block_index": 206, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2500,16 +2511,16 @@ }, { "block_index": 205, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "divisible": true, "asset_longname": null, @@ -2521,20 +2532,20 @@ }, { "block_index": 205, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2553,9 +2564,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", + "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", "block_index": 137, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2563,7 +2574,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803685, + "block_time": 1730809755, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2574,14 +2585,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "7ffb1c32851e405bb735efcfac37591da1ced665eab020ec6eb51f0d423d429a", + "tx_hash": "6ba0d3fcf7c02e433d201c2ce80a5fa7e122af150032da86c2116381f334e537", "block_index": 112, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730803583, + "block_time": 1730809651, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2593,10 +2604,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2604,7 +2615,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -2617,10 +2628,10 @@ }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2628,11 +2639,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2641,10 +2652,10 @@ }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2652,11 +2663,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2665,10 +2676,10 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2676,7 +2687,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "divisible": true, "asset_longname": null, @@ -2689,10 +2700,10 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2700,11 +2711,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2719,10 +2730,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", + "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", "block_index": 151, - "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", - "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", + "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", + "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2730,11 +2741,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730803754, + "block_time": 1730809840, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2749,10 +2760,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2760,11 +2771,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2773,10 +2784,10 @@ }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2784,11 +2795,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2797,10 +2808,10 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2808,11 +2819,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2821,10 +2832,10 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2832,11 +2843,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2845,10 +2856,10 @@ }, { "tx_index": 71, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2856,11 +2867,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804008, + "block_time": 1730810074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2880,9 +2891,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2891,7 +2902,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2901,7 +2912,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -2917,9 +2928,9 @@ }, { "tx_index": 64, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2928,7 +2939,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2938,11 +2949,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -2959,9 +2970,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2970,7 +2981,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2980,7 +2991,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -3000,19 +3011,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", + "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3020,7 +3031,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3035,11 +3046,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -3049,19 +3060,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3069,7 +3080,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3084,7 +3095,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -3098,19 +3109,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3118,7 +3129,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3133,7 +3144,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -3153,19 +3164,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", + "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3173,7 +3184,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3188,11 +3199,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -3202,19 +3213,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3222,7 +3233,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3237,7 +3248,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -3251,19 +3262,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3271,7 +3282,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3286,7 +3297,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -3306,19 +3317,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3326,7 +3337,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3341,7 +3352,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -3355,19 +3366,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3375,7 +3386,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3390,7 +3401,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -3410,19 +3421,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3430,7 +3441,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3445,7 +3456,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -3459,19 +3470,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3479,7 +3490,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3494,7 +3505,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -3513,16 +3524,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -3533,14 +3544,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -3555,20 +3566,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", + "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -3583,20 +3594,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803813, + "block_time": 1730809879, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", + "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -3611,20 +3622,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730803808, + "block_time": 1730809875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", + "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -3639,20 +3650,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803795, + "block_time": 1730809872, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "4125c1bdb875706dafde81f4b005bdd027a19d6696523b6f8e292a72e662f215", + "tx_hash": "49c9963d6f64cf86ca63534109735b5b572e9be5d645e8470d9fb09bb6daa139", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -3667,7 +3678,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803792, + "block_time": 1730809868, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3681,8 +3692,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3690,16 +3701,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -3707,16 +3718,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3724,16 +3735,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 40, @@ -3741,16 +3752,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730803677, - "last_issuance_block_time": 1730803680, + "first_issuance_block_time": 1730809747, + "last_issuance_block_time": 1730809751, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 19, @@ -3758,8 +3769,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730803653, - "last_issuance_block_time": 1730803673, + "first_issuance_block_time": 1730809722, + "last_issuance_block_time": 1730809742, "supply_normalized": "0.00000019" } ], @@ -3772,8 +3783,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3781,16 +3792,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -3798,16 +3809,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3815,16 +3826,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 40, @@ -3832,16 +3843,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730803677, - "last_issuance_block_time": 1730803680, + "first_issuance_block_time": 1730809747, + "last_issuance_block_time": 1730809751, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 19, @@ -3849,8 +3860,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730803653, - "last_issuance_block_time": 1730803673, + "first_issuance_block_time": 1730809722, + "last_issuance_block_time": 1730809742, "supply_normalized": "0.00000019" } ], @@ -3863,8 +3874,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3872,16 +3883,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -3889,16 +3900,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3906,16 +3917,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 40, @@ -3923,16 +3934,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730803677, - "last_issuance_block_time": 1730803680, + "first_issuance_block_time": 1730809747, + "last_issuance_block_time": 1730809751, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 19, @@ -3940,8 +3951,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730803653, - "last_issuance_block_time": 1730803673, + "first_issuance_block_time": 1730809722, + "last_issuance_block_time": 1730809742, "supply_normalized": "0.00000019" } ], @@ -3952,17 +3963,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72", - "block_time": 1730804037, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_time": 1730810105, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599:1", + "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3998,17 +4009,17 @@ }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "block_hash": "614f56e3485d73b6c1a9d3cb1a2eeac05ba5964e6d9a03ca56eff2c309d8aecd", - "block_time": 1730804024, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_time": 1730810093, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23:0", + "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4016,14 +4027,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4031,7 +4042,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4050,17 +4061,17 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "block_hash": "2792e5b2f7580abac79a23f87621a34e6839fe269eb607bd2a9bede03244bf2c", - "block_time": 1730804011, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", + "block_time": 1730810088, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b80f3bd0c66a5c84b57f9a916980d12f0a4e732a86f80b52251261586063fd84ccd5b6d7716ee71e9c23488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4:0", + "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4068,14 +4079,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4083,7 +4094,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4102,17 +4113,17 @@ }, { "tx_index": 71, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "block_hash": "54c234af19c5aaef14bd17510500fcf7f56f27369249714c95054847677d42f5", - "block_time": 1730804008, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "6e9baba13cfa1bfc29824ca940e6e792724686c7ee6d61661c80922400213e4b", + "block_time": 1730810074, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", + "data": "02000000178d82231300000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", "supported": true, - "utxos_info": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6:1", + "utxos_info": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4120,12 +4131,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4136,17 +4147,17 @@ }, { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_hash": "750a8780e1830d3ce0323c69bc4aa4e479f4d28e5883c8318f72a7d99793f5c6", - "block_time": 1730804003, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "block_hash": "0af1f606973a4e3770f42816bca688b9f05c7ce64e55df8a3a9d7fccec169710", + "block_time": 1730810071, + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", + "utxos_info": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4177,20 +4188,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4212,9 +4223,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4228,8 +4239,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4251,13 +4264,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4271,8 +4286,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4294,13 +4311,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4314,8 +4333,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4337,13 +4358,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 60, - "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4357,8 +4380,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4380,13 +4405,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4400,8 +4427,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4423,7 +4452,9 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": null, @@ -4432,10 +4463,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4460,7 +4491,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4469,10 +4500,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4497,7 +4528,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730803677, + "block_time": 1730809747, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4509,10 +4540,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4537,7 +4568,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730803653, + "block_time": 1730809722, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4549,10 +4580,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4577,7 +4608,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730803649, + "block_time": 1730809718, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4589,10 +4620,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4617,7 +4648,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4635,22 +4666,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4659,22 +4690,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", + "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", "tx_index": 21, "block_index": 134, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803673, + "block_time": 1730809742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4683,22 +4714,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", + "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", "tx_index": 20, "block_index": 133, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803660, + "block_time": 1730809728, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4707,22 +4738,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", + "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803656, + "block_time": 1730809725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4731,22 +4762,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "306c4ceda4e9ba3ceb13b837f07aae03418306999c8f7c7d268ef15dd57755d3", + "tx_hash": "263485eed907cb6a5e026620a237331cc432d53f2e45d13ae55175d7fe30e308", "tx_index": 15, "block_index": 127, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803637, + "block_time": 1730809709, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4755,22 +4786,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4785,22 +4816,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4817,8 +4848,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset_info": { "divisible": true, "asset_longname": null, @@ -4831,12 +4862,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -4852,7 +4883,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4865,7 +4896,7 @@ "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101a679258bf6dac8dfec2ec68f705213fd4edec68312e4d352105f9b7ec182a193000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a290da1a4954067dec4344cbdd51f4951e305b85171a7dbc719c05edac7890972adc36b2305749a1da5466cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101dffb2c358ebb66e47d30a00f08fc61bfefb12b48cffb3f61d94c104887ed8572000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a292ff47f19c650c7f1740c50698b7ba35d5352ade35e2c50d9675c49db5f9f479a5b38093e00881b710d6cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4883,24 +4914,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590baf5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "data": "434e5452505254590b4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b031ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "020000000001012caeacf3e0da85ae81c7bf91d025eeb9c0d52fb3b689caa84c7c57d5fe75e08e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e8030000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d300000000000000004b6a491b430c39785d847281d541456204caa2b2eb844e9858928fd1f42e2822f70070c389b4afc24747d56befb15917e1fb08142caa70561016c5bc365bb4e55e8bd6ea52a78248b8867b715ba7052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "020000000001013bad799111538665c5ae6edbd676ebd2338910be8fad21933d170ae4156bceb2000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a00000000000000004b6a496be606ceeeb8dfd059b44538e6e1463c2cf7d1156073392e23d54ccdfb6324b1495caee52feb96927265473543b84bf104c7d0ed9296fd7425eeadf46747eeb973a6edd980c5cb13705ba7052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "order_match_id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "status": "valid" } } @@ -4909,7 +4940,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4920,28 +4951,28 @@ "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "02000000000101af08ca388d2cac5534883742f926a0029c15e6c4b48e167fa10f5e4a858dd3b9000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000" + "rawtransaction": "02000000000101225beddaa73e2967910d6acd96282473b75a3ed87ed685552ba762feac7c4773000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "data": "434e545250525459461ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101845d0c60f7a97009104075dec4a4ff0a86c72c53a99c915fdadec60c98447196000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0200000000000000002b6a29b04a8da7dce1351dfbd1d54e2e8002d645ad95b133aaf282bfc84e5084a762007aaae3030633e0f7296cba052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101bf61a56dd39ed5364ab7ef507f45681084d6821d3f8a7c950a3e8977d524ab3d000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a29da3d4ea504f49fe3cc06b09006bb7e3b0f30171d1abb544f787aca363d587e2884e4546fa96410c0906cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "status": "valid" } } @@ -4950,7 +4981,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4970,7 +5001,7 @@ "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101b3c5ddef9be621ba5cc23e185690ee2a563512b49b98271c4df9312c684b973a000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000226a204feb2696a3117f421fbd42446231fc4e38c95f853c3c37d7260f99088a40edcc7dbc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101f36ca70562ee4a2f6c18fb0511991b608d0397746848aadba68b4db7e5786af7000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000226a20517597411a4dd5b9fc38c7fd725df8a26f755fe769e8e205eabbd2646c743a757dbc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4986,7 +5017,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5011,7 +5042,7 @@ "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "02000000000101eaa743ec6a7ae3b6a66ae4cbe270a9c1a146558e8fa256c52597fc039ab24a7b010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3effffffff0200000000000000002c6a2af978c5d86abd8f7d24f8b8434b85c9ff44c55bf1d3d84dd1a16cc03a4adc0fb2602aacc1f29dc4c72165d5c90927010000001600141c83f2bebdb9a2ca6baf99f73cbcfb03a75e7f3e02000000000000", + "rawtransaction": "020000000001011d420e7b0e4b184ef9e46a39f28835b2d77fc8cbc5236b762dd14b80a86f78eb01000000160014cdd4d899318994115a60972e0d5bba8adecb9457ffffffff0200000000000000002c6a2a6620b22011f8d5855783bd4343e5412316d2dc198fc2e057ee765a612c911dc41b2ce2f1b7db83b5b8b3d5c9092701000000160014cdd4d899318994115a60972e0d5bba8adecb945702000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5033,7 +5064,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5041,7 +5072,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5060,7 +5091,7 @@ "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101cb82b3c860c90fd963801be658b42a9cfd295d8105cb26bd5f94bde16204cfee000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2168ef0d71579dbf45310d4942ccd1cbcb597f295e715261f19b554995da2ed5ae7e42bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101fa218e50a6093053f0f1be29ac767695645b2b9d9fa5bd34b713eb01f997d645000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21f2e7ff3bccb2f0c017da6e13a445ce6209e57e9d2542ca91ae72d7aa30fa0629c442bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5077,10 +5108,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "transfer_destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "lock": false, "reset": false, @@ -5094,7 +5125,7 @@ "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101771c67b85242343c27970f5aaa0deb1449956767e30581a98efb1182b26566af000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff0322020000000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d30000000000000000236a219c4725f31aa4c122599a4e8e5e1277e3a73082eee59288b834f7156338b4c28f9751b2052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101e7d6a7e7bbaa7afaa632fbc1ebbfcfc754228ef69be699afa1f2327a117d487e000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0322020000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a0000000000000000236a21e7e10da03ba949f22f43476e46603cde45fd20417662dd966f15887d1f1347234b51b2052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5119,16 +5150,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", 1 ], [ "MPMASSET", - "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", 2 ] ], @@ -5137,26 +5168,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807a136e6da4ea780f77ce087498a2cb0ea63118d3808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808a9c18e44852c20cdae290d6049d8ad6197f982340000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "02000000000104c0b9c1ef98c817f23543cd148cf95c5c35bf8fc476b8d3c5606140dd427e4013000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffffffbdc0ba180ed194a35657846ee029135fe58437cbc5d6f994181489f97d3670000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff87653abdce9cbc55d454f94a1938063fa5fa75156831b29a73134d7a6c79a46f000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff542c9fcbceccfba9a7e24628107fb94ca713854b759c457b5e3581ae00b920a2000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff03e80300000000000069512103e5901797f9ddc65b16e3f094c7de2ec1f688e8143982926ddf3b21058d06681521030c3f9b6a832eef514b6ae0e3ca3fc1512bb1b2050f9413078234b40f4b568046210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102fa901797f9ddc65b1630f09647a43daf9b08026c36f55c65aba783ce83a05947210314ec1ae6d8310401d7935af3cc3fef5b34eaed4aab9a78478234b1ec2bde44cc210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253ae66f216a8040000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000000000000", + "rawtransaction": "0200000000010458be15f289df4071133783cf1c1ed3e2768a234803b8feb48928991b9fc024be000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff876b095a062457cb134333a8e47d539525539ebe92a832bb2228bfa0027bd149000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff12c40221baedf2b7a64a30c194f0f3ee21fd9e3da5bb3a63050f9e6b45374890000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff4221a7ee683c9523487251e23fbc44c1d12cdb29e14f30d40a460c398bef9cda000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000006951210217f2cc3bbde1e89bc278b4b68b0fba98aefacead03ef760459f2be122063d78f21024713ff6e020c87d763802137f89415d6df57a43432184d96a216ec8248abf077210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210308f2cc3bbde1e89bc2abb4b40b8447143c25a4ab54192df3e439f5adab930b1b2102b0097ee49e14639f31422ded1a04c3d242dd722d4d806ed6a216e961282334ae210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153ae66f216a8040000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5168,7 +5199,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5186,7 +5217,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5200,7 +5231,7 @@ "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "0200000000010181c66f8b3b47455a44f85bb02299fed9bb8fe9fa4296ae6b210b1638ffb6c3cc000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000356a33916f0172924afca690dbc8a8ca90aa2a401d6c071771da56d7a76da394f1542cbc858860a39e913b4aa4a96c7f97a8ef19277820b8052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101b0893555ae8807501de63095f2b53863a51d7768a5aff0f2b58ebb66d3de5b9a000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000356a33f3bb5cf2945eb2ed3257d586edea273b59a863e8a1f6d71a02ee8d6c11f3e47aa2bc6ed831a6b99ef14b59ad7715720ff459e520b8052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5222,8 +5253,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5240,19 +5271,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b", + "data": "434e54525052545902000000000000000100000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "020000000001015c7c9ec9010c3c5f164f8962aaabc3482ea95894d9d1ed0ebea9c94d1b04aaaa000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000306a2ea22c094438264d388cc52b332a7ed7c5e67296ff60df4c9c4eb92b5ccffa9017cc7e21fabff1dcdda19be1a4a2f246b9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "0200000000010171d6b30e0c80581a3fa43f6aa1fe2ac92980828de4db011efe630df1b64c891f000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000306a2e2816b2393cdd6248d0f9a147cd75fb5b2482aaff3c825143097e8d0958ab8061f5b8847c16a90fa8f29c30f36e9e46b9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "quantity_normalized": "0.00001000" } @@ -5262,24 +5293,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904808c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b07ffff", + "data": "434e54525052545904808a9c18e44852c20cdae290d6049d8ad6197f982307ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101538b5e8008a84ead950b4b8b9fb9ca0e6bc4a27f3ec8ef3da1ec80ec477eb537000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000236a2182c6e65a380aba8e89411d21794b5262ae87762b56ba156aa9a09fb75d627b840742bc052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "0200000000010136efde72e0576fc71aea6444b4c301322c8fff3799186d0d67f511e73b967012000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21d08123bc12fb1a7c398242851a229a5e15e68159a408f2d212d34df3056d25716642bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "flags": 7, "memo": "ffff" } @@ -5289,8 +5320,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "quantity": 1000, "skip_validation": false }, @@ -5300,7 +5331,7 @@ "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "0200000000010160645b4e9543a262f98dd1424434b1d8e70c93c26e1763a9fd8cb3596964a430030000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6bffffffff03e803000000000000160014b52251261586063fd84ccd5b6d7716ee71e9c23400000000000000000c6a0a5c6a35510d6e69be4c5773250827010000001600148c5b1feb509cf9ba1006002e0a1f5b5f4fa40e6b02000000000000", + "rawtransaction": "02000000000101467f71359d9460f9fecd1eb4649aee7f1f6934a3354f1dde44adcdc7ba54f4f6030000001600148a9c18e44852c20cdae290d6049d8ad6197f9823ffffffff03e803000000000000160014f6811e9837b88c1c4b4f9324cceb3e6c95db534b00000000000000000c6a0aa797acc097dfd9819e0c73250827010000001600148a9c18e44852c20cdae290d6049d8ad6197f982302000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5313,7 +5344,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5345,7 +5376,7 @@ "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "020000000001018dea80ded78224744a13887dbe5e8dfcad22027d0d1ed4523c0c7314eccc24be000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000316a2ff5170f1affbac633bc5266a5ed8ef44a52c3e75c0af942a5b1ac5dd931b05a6d0b7d4d98885cbb38ae9ce5c95c59bc0bb9052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101b7ca96eff788cde1b51e0499f00d6171db77bb0fd16a07391a4bc1d21543fafa000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000316a2fb91e1b4c98ee02128aa4194cdb4702ae460f3169fccbd2ad4c2f21905c673519defc94bfdc6002ac6ad535d076330e0bb9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5380,14 +5411,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5399,7 +5430,7 @@ "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "0200000000010145da7a6d207d4c6b64dfd6e172313e4e819b2f861285ef5f1c1bb4e59672ec2d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff020000000000000000166a14996cd1daab8c3f16a3a982829164c5929447d62e3ebf052a010000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000000000000", + "rawtransaction": "02000000000101caa8d4d43d9dd37707e6bc7c9874fcf92c6f4ecef49f4a5256f3497018fcfb62000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000166a1424456f8814246c661bbef39812f6027818f142ac3ebf052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5414,8 +5445,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0:1", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5429,12 +5460,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c313461646535393534303664633762363435333464326337383962663166363564346536393235363335336565646637613038313239623130346163303963303a317c5843507c31303030", + "data": "434e54525052545964626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c316563663639323938393263366431396262653563303538303832343138373965633063363739336534313661656365383037333964323737653664623630313a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "02000000000106145abe818b9bd68aeb075274ed81bd1cf2f116f2a772719157210c9753bf5e55000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4afb2ebef1fcb386e6d672c47881ba9bdd96599c1744768805e157a481fc32bb000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff976c32a16b506c1ebefa384eee8c59356c503d2d2ec23786a53b165473d27005000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff4d2d18182ad31efce3fd6be83e8d09527b43cda8d2d5f86ff50394bebea4c32d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff38bcc93e9325e1b33973df78c706b264c50f49bebf2038c9ab2fc62be280105e000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3fffffffff98ecc1697a666b4ee1ff49032ca7ed1c418bb3de85caefde51f2c3bc145056d000000001600147a136e6da4ea780f77ce087498a2cb0ea63118d3ffffffff04e80300000000000069512102074bb045adcf43e30e5b7b62b5e1bdf28300371576df96183b402fea676e41142103c191030585761fc13b362ebcc1642d57e19dbb171d4c68abb770905ab4f9395d210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee80300000000000069512102074bb045adcf43e30e0a2d31f1f1efb4d151654b30869653391162a2326947e92102d0d74657d7204e937d732ee1862d304aeb8ef4415c436be5bf26c00ee5ad6324210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aee803000000000000695121022d4bb045adcf43e30e0f2062f7afbdffeb2401023282c2515a265a9b500f76782102b6e17333e34578aa4f4618d2b31e552f8fe8c3206c7b5ad78644f13ed1cc00d4210283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b253aebf6c22fc060000001600147a136e6da4ea780f77ce087498a2cb0ea63118d302000002000002000002000002000002000000000000", + "rawtransaction": "020000000001064af97c3690a3f0cf6b7370271a37e282af29494ba26d0b1d96214bc5f9db9899000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff63e551a2dd0a24ec0d47c8d360f3d72c585717cad06f5f770ec54e0ab379f670000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71afffffffff8344e4cb55f939487f361dbd7e75e8b1f4bf506582fab780abc15b4664bbf18000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffbf69d39b750bb2538937ef38c9449f3a0b1d666c396392a90d3039fcd2f024b8000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffcef8c4131db7015edc622a51f6db575382c7590d704895b8ec8af197ab7f2c89000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff501773fc9b9291bf3749b90f0dd42750161265a0e4f430a66c0aa7d956e85986000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff04e8030000000000006951210265ba91e3d243cda2aa58322bde6d7daa08cc6cbb301a959115f33ddcf140555721032cfa50ab8e88749f7a30c65e8c21f1f8e76fd2f5eb28909d0a145be1bea40d53210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210365ba91e3d243cda2aa0568719e7a7abf0ac539ba30569ecc44ac7fddf3150e73210279fa5ef9988f7dc8213ac558dc75a6fab43fc0f9ad6cd6d85f430fb0edab5b30210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee803000000000000695121024fba91e3d243cda2aa5e66789d237da763bf0ba46453cdcc71944fe5c1213f7a210341cd679cfbbf1efe1603f63de844909bd15ca5c19d5be5e13b713887889d3fdb210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aebf6c22fc060000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5447,8 +5478,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5462,12 +5493,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964356563303833336238316232316566333131643436636661653231356537663030666636363536653962313036313236313561366530363630343563626163343a307c6263727431713067666b756d647961667571376137777070366633676b7470366e727a78786e7578377137327c5843507c31303030", + "data": "434e54525052545964353666306430373335643139653939653131383663646639363761386661353361356531336532373363623833626130626236636630643037666231313632353a307c626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "020000000001033fd47b27bf21980a4ffa8088bd42173375be5940563dd6650288d104cce0632b010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff9f946c2235fdede29e6e192932c5bc2a6ae4c6515b67c4677c7df20a1de8ee6b000000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffffcc6600f1562d400a1d22b61f8e371920722f2bf75d09b8ef54c42d35c7655e94010000001600149c888c6d38f587584105e664eeb7d8327b0c13caffffffff04e8030000000000006951210284e91461957f773d9d32c02430e9c63a22476d09608bc0b91739de1f10d979992102d645130153fc37c0fa4567ee163ee3d7d9fee2b1a03a5da096c5da92e5adfbab210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee8030000000000006951210384e91461957f773d9d33c57765e9ca3c7247345b3683c1a013699d5a459c7f272103d24519110ca97bc4ab5626e9116fa2919cfee1bba56019e691999ed9a8b4a35d210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853aee80300000000000069512102aee91461957f773d9d238d7622eecc75496605443389c1ec710aef2e74ed4fb82103b523726461cd02a5cd2357de7058d5e1ecc88788c20b6d96a7f7eca3d0cccd2f210359b021a8b00933a9187ad977fe23b86015715fbdf50c5ea9435692a047bb348853ae76770b27010000001600149c888c6d38f587584105e664eeb7d8327b0c13ca02000002000002000000000000", + "rawtransaction": "02000000000103689faeb311ecfa80fcb9e636c017a198d4aadb67d65188b93b5d87a4fef82d7e01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff65b360a9784712f6c29cacd4f947f3037882cf8227921a1aeef741e9cf3142db00000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffffc40f7e74a17fbcdceb8f25e7abd0dba57ff8138e2d4299b69da40696b91f2dcf01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff04e80300000000000069512102b318430630aece23e31c22b156c51a6d6c628431e9ba8d53b24a001dd78997b7210228088b8da72744152e45818f748c332bacb53d917188ca52bd54d61df8e95cb021027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee80300000000000069512103b318430630aece23e31e27e300c2183f6a608767edb9d816e94c4358decec73921037c59d1dee92e111728028bde20836f2ffeb07f95788b9e52ef56821afbbc091c21027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee803000000000000695121029918430630aece23e34b60b346860b210312e129e9b3d85a8b2f312cefbff49221034c6eb2bb90467c734f70b2ee41e90218c9870aa212eaf261df35e67f9adf3f4321027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53ae76770b2701000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5483,8 +5514,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -5492,16 +5523,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730804003, - "last_issuance_block_time": 1730804003, + "first_issuance_block_time": 1730810071, + "last_issuance_block_time": 1730810071, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", - "owner": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "owner": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "divisible": true, "locked": false, "supply": 100000000000, @@ -5509,16 +5540,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730803975, - "last_issuance_block_time": 1730803975, + "first_issuance_block_time": 1730810038, + "last_issuance_block_time": 1730810038, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -5526,16 +5557,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730803792, - "last_issuance_block_time": 1730803808, + "first_issuance_block_time": 1730809868, + "last_issuance_block_time": 1730809875, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "owner": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "issuer": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "owner": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "divisible": true, "locked": false, "supply": 100000000000, @@ -5543,16 +5574,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730803787, - "last_issuance_block_time": 1730803787, + "first_issuance_block_time": 1730809864, + "last_issuance_block_time": 1730809864, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 100000000000, @@ -5560,8 +5591,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730803742, - "last_issuance_block_time": 1730803742, + "first_issuance_block_time": 1730809818, + "last_issuance_block_time": 1730809818, "supply_normalized": "1000.00000000" } ], @@ -5573,8 +5604,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "owner": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false, "supply": 10000000000, @@ -5582,15 +5613,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730803619, - "last_issuance_block_time": 1730803630, + "first_issuance_block_time": 1730809688, + "last_issuance_block_time": 1730809701, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5598,14 +5629,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5613,7 +5644,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -5626,7 +5657,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5648,9 +5679,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5664,8 +5695,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5687,13 +5720,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5707,8 +5742,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5730,13 +5767,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5750,8 +5789,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5773,13 +5814,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 60, - "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5793,8 +5836,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5816,13 +5861,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 76, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5836,8 +5883,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5859,7 +5908,9 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": 52, @@ -5868,13 +5919,13 @@ "/v2/assets//matches": { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5888,7 +5939,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5908,13 +5959,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 52, - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5928,7 +5979,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5948,13 +5999,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", "tx0_index": 49, - "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 50, - "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5968,7 +6019,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5988,13 +6039,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6008,7 +6059,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6028,13 +6079,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -6048,7 +6099,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6075,20 +6126,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "event": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6096,20 +6147,20 @@ }, { "block_index": 125, - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", + "event": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6117,20 +6168,20 @@ }, { "block_index": 124, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6138,20 +6189,20 @@ }, { "block_index": 124, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "event": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6163,16 +6214,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6190,12 +6241,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -6207,16 +6258,16 @@ }, { "block_index": 209, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -6228,16 +6279,16 @@ }, { "block_index": 208, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -6249,16 +6300,16 @@ }, { "block_index": 207, - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -6270,16 +6321,16 @@ }, { "block_index": 206, - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,14 +6353,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", + "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6324,20 +6375,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6352,20 +6403,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6380,20 +6431,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -6408,7 +6459,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730803619, + "block_time": 1730809688, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6420,10 +6471,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6431,7 +6482,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -6444,10 +6495,10 @@ }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6455,7 +6506,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -6468,10 +6519,10 @@ }, { "tx_index": 74, - "tx_hash": "ab6f4270c8c74405b533008292c2a56f8c95694771498f9aa1d21d90b26d5f75", + "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", "block_index": 207, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6479,7 +6530,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "asset_info": { "divisible": true, "asset_longname": null, @@ -6492,10 +6543,10 @@ }, { "tx_index": 73, - "tx_hash": "1487c66bf448c9d0cc34b2f0315546e3c710e85f5b9d5fa36d64bdd929595a23", + "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", "block_index": 206, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6503,7 +6554,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804024, + "block_time": 1730810093, "asset_info": { "divisible": true, "asset_longname": null, @@ -6516,10 +6567,10 @@ }, { "tx_index": 72, - "tx_hash": "f9be488902d29d84684064e5294a37e30a8a413ea8a041b1cc06591438f069f4", + "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", "block_index": 205, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6527,7 +6578,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804011, + "block_time": 1730810088, "asset_info": { "divisible": true, "asset_longname": null, @@ -6546,9 +6597,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6557,7 +6608,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6567,7 +6618,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6583,9 +6634,9 @@ }, { "tx_index": 29, - "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", + "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", "block_index": 142, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6594,7 +6645,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6604,7 +6655,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803711, + "block_time": 1730809785, "asset_info": { "divisible": true, "asset_longname": null, @@ -6620,9 +6671,9 @@ }, { "tx_index": 30, - "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", + "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", "block_index": 150, - "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", + "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6630,10 +6681,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6641,7 +6692,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803750, + "block_time": 1730809837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6657,18 +6708,18 @@ }, { "tx_index": 33, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6678,7 +6729,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -6699,9 +6750,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6710,7 +6761,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6720,7 +6771,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6748,7 +6799,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6756,7 +6807,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6765,7 +6816,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6773,7 +6824,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6782,7 +6833,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6790,7 +6841,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6799,7 +6850,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -6814,27 +6865,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6849,7 +6900,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -6863,27 +6914,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", + "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", "block_index": 147, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6898,7 +6949,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730803739, + "block_time": 1730809815, "asset_info": { "divisible": true, "asset_longname": null, @@ -6912,19 +6963,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6932,7 +6983,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6947,7 +6998,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -6961,19 +7012,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6981,7 +7032,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6996,7 +7047,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -7019,10 +7070,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7047,7 +7098,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7065,22 +7116,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "5ce4f943eb5f042635b41fdca1f84a5e70d0a58dc004d8e1303871ff7167ef50", + "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", "tx_index": 13, "block_index": 125, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7089,22 +7140,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421", + "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803626, + "block_time": 1730809697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7113,22 +7164,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7143,22 +7194,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "15cad757f35960fcce35cc8f7543910b0f5617bee4242ea7b34e597a26178742", + "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", "tx_index": 11, "block_index": 123, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803622, + "block_time": 1730809692, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -7174,9 +7225,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7190,8 +7241,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7213,13 +7266,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 52, - "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "block_index": 187, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7233,8 +7288,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "filled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7256,13 +7313,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7276,8 +7335,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7299,13 +7360,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7319,8 +7382,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7342,13 +7407,15 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" }, { "tx_index": 60, - "tx_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", + "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", "block_index": 209, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7362,8 +7429,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7385,7 +7454,9 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } ], "next_cursor": 76, @@ -7394,9 +7465,9 @@ "/v2/orders/": { "result": { "tx_index": 54, - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "block_index": 210, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7410,8 +7481,10 @@ "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "expired", + "give_price": 1.0, + "get_price": 1.0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7433,19 +7506,21 @@ "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.00000000", + "get_price_normalized": "1.00000000" } }, "/v2/orders//matches": { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7459,7 +7534,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7479,13 +7554,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7499,7 +7574,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7519,13 +7594,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7539,7 +7614,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7566,15 +7641,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "btc_amount": 2000, - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "status": "valid", "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "btc_amount_normalized": "0.00002000" } ], @@ -7585,9 +7660,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "block_index": 187, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7605,7 +7680,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730803906, + "block_time": 1730809971, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7631,9 +7706,9 @@ }, { "tx_index": 54, - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "block_index": 210, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7651,7 +7726,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730804046, + "block_time": 1730810115, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7677,9 +7752,9 @@ }, { "tx_index": 49, - "tx_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", + "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", "block_index": 184, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7697,7 +7772,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803826, + "block_time": 1730809903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7723,9 +7798,9 @@ }, { "tx_index": 51, - "tx_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", + "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", "block_index": 207, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7743,7 +7818,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730804029, + "block_time": 1730810097, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7769,9 +7844,9 @@ }, { "tx_index": 58, - "tx_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", + "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", "block_index": 193, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7789,7 +7864,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803930, + "block_time": 1730810003, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7820,13 +7895,13 @@ "/v2/orders///matches": { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7843,7 +7918,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7863,13 +7938,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 52, - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7886,7 +7961,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803906, + "block_time": 1730809971, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7906,13 +7981,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7929,7 +8004,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7949,13 +8024,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", "tx0_index": 49, - "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 50, - "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7972,7 +8047,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730803826, + "block_time": 1730809903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7992,13 +8067,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8015,7 +8090,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8041,13 +8116,13 @@ "/v2/order_matches": { "result": [ { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8061,7 +8136,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8081,13 +8156,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", "tx0_index": 51, - "tx0_hash": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 52, - "tx1_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8101,7 +8176,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730803906, + "block_time": 1730809971, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8121,13 +8196,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89_78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", + "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", "tx0_index": 49, - "tx0_hash": "dbe9cf1ec73591affba3cc99e8bd5dc1e2533ae2ac87937f6b6b93044dff9b89", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 50, - "tx1_hash": "78a6da8cd93f03840dded728b485974002d50e5a496e2aa6d2127b34ecd0c552", - "tx1_address": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8141,7 +8216,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730803826, + "block_time": 1730809903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8161,13 +8236,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 60, - "tx0_hash": "2acfaf04f715c65f0ef16ce513365de294a740cecca3d1492d93f1aba3a8a309", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_index": 54, - "tx1_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8181,7 +8256,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8201,13 +8276,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx0_index": 54, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx1_index": 76, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8221,7 +8296,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8266,66 +8341,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", + "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", "block_index": 121, - "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", + "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730803615, + "block_time": 1730809684, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "46b1fa87b1a4e176547f9a27c6e766f45af6bf33772ef9af4b9d872f49ed8428", + "tx_hash": "9cdfbeb6e7c77a7a98300dad36fefe08d1ed94ef8d9d84b24118b8eeb9a8e712", "block_index": 120, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730803612, + "block_time": 1730809680, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "c9dae8b10b1dc7c13a533807ce35138ab263bab4718fde412b0b59e97c1a9875", + "tx_hash": "372f224b97c859b86dce204bf93a9b5fa36f005c57e7310ba57b3aba401dc0b7", "block_index": 119, - "source": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu", + "source": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730803608, + "block_time": 1730809677, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "9822e208aca66c4f75ec215c31aeb1491e5c837d8100195a587a7772400147fa", + "tx_hash": "8ed2ecd4c265013d1580174b734b3cd125419219038e42d9de5318d1b3bc266f", "block_index": 118, - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730803604, + "block_time": 1730809674, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "fc0b64eb61d459396eb9dffd16e7327535a2cee5c43f9787029d649f9ebca39e", + "tx_hash": "0faf4c2e5517b6eb8fde2d128037829b95beeddfcbb1a139fcdb8d16027e0a72", "block_index": 117, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730803601, + "block_time": 1730809669, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8337,9 +8412,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8348,7 +8423,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8358,7 +8433,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -8374,9 +8449,9 @@ }, { "tx_index": 29, - "tx_hash": "4d53f010552ec8f2d2bfa57684eca59f7d86b4ad812d74b0fa3885b5e3d49c2a", + "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", "block_index": 142, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8385,7 +8460,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8395,7 +8470,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803711, + "block_time": 1730809785, "asset_info": { "divisible": true, "asset_longname": null, @@ -8411,9 +8486,9 @@ }, { "tx_index": 30, - "tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", + "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", "block_index": 150, - "source": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", + "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8421,10 +8496,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "cf17e78295a84805d656519154f6afda6578c607dc885de2c789bf45af0270c6", - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8432,7 +8507,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803750, + "block_time": 1730809837, "asset_info": { "divisible": true, "asset_longname": null, @@ -8448,9 +8523,9 @@ }, { "tx_index": 64, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8459,7 +8534,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8469,11 +8544,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8485,18 +8560,18 @@ }, { "tx_index": 33, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8506,7 +8581,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -8527,9 +8602,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8538,7 +8613,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8548,7 +8623,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -8568,19 +8643,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8588,7 +8663,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8603,7 +8678,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -8617,19 +8692,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8637,7 +8712,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8652,7 +8727,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -8671,20 +8746,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8705,20 +8780,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -8741,12 +8816,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "tx_index": 41, - "utxo": "9a0868d7a0cd709a75dab19d37c209fd896ab861ed6624a63184d6e2d38eaee7:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "utxo": "d796cd1db89516aab5f3c3aac3782b9748abc2869b5bb4e40e9eab474c0f5c92:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "divisible": true, "asset_longname": null, @@ -8758,16 +8833,16 @@ }, { "block_index": 154, - "address": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", + "address": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "divisible": true, "asset_longname": null, @@ -8788,27 +8863,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 694, @@ -8817,14 +8892,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -8835,9 +8910,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 693, @@ -8846,9 +8921,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -8858,24 +8933,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -8885,9 +8960,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 691, @@ -8899,15 +8974,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } }, "/v2/events/counts": { @@ -8942,16 +9017,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -8961,9 +9036,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 690, @@ -8973,12 +9048,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -8988,9 +9063,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 687, @@ -9000,39 +9075,39 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", - "utxo_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "block_time": 1730804046, + "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730804037, + "block_time": 1730810105, "asset_info": { "divisible": true, "asset_longname": null, @@ -9042,24 +9117,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -9069,9 +9144,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_time": 1730804033 + "block_time": 1730810101 } ], "next_cursor": 656, @@ -9088,27 +9163,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9123,7 +9198,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -9137,19 +9212,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f2055e12b536be529dde8805c3544b41b884288b4338fb9cff4e8a624f9053de", + "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9157,7 +9232,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9172,11 +9247,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803972, + "block_time": 1730810034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9186,27 +9261,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "6beee81d0af27d7c67c4675b51c6e46a2abcc53229196e9ee2edfd35226c949f", + "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", "block_index": 147, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "destination": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "last_status_tx_hash": null, - "origin": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9221,7 +9296,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730803739, + "block_time": 1730809815, "asset_info": { "divisible": true, "asset_longname": null, @@ -9235,19 +9310,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "886e0a45b4ba0c8fd41bcc49e52f4c7b727d1d643fc3f0caf6534ad71212b2b9", + "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9255,7 +9330,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9270,7 +9345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803708, + "block_time": 1730809782, "asset_info": { "divisible": true, "asset_longname": null, @@ -9284,19 +9359,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "42f042379f3d456dc89c52a04c2a00d8d49561b15296db53ddf2e209a5e5e160", + "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", "block_index": 140, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "aeba587cb94b133533e2f31eaa03d60930698f75a7de9d7cf76a7e6f925916a5", + "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9304,7 +9379,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9319,7 +9394,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730803695, + "block_time": 1730809768, "asset_info": { "divisible": true, "asset_longname": null, @@ -9338,10 +9413,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9349,7 +9424,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -9362,10 +9437,10 @@ }, { "tx_index": 77, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9373,11 +9448,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9386,10 +9461,10 @@ }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9397,7 +9472,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -9410,10 +9485,10 @@ }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9421,11 +9496,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9434,10 +9509,10 @@ }, { "tx_index": 75, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9445,11 +9520,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9464,14 +9539,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -9486,20 +9561,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "973dbfc3d5006c89f20e05930dfe8ec6f41dce002773a8d7f89f8c4fd2b77629", + "tx_hash": "e7077d8a8a933b7047e3402cb8a39b0cae833dd9e7f5ff11a920bda3767ffce1", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", - "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "transfer": false, "callable": false, "call_date": 0, @@ -9514,20 +9589,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803975, + "block_time": 1730810038, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "8d23036a5c67e36083e7b1d99f9772010e8306995aa8682b7808ca161932d903", + "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -9542,20 +9617,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803813, + "block_time": 1730809879, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "74cfcb9ae73b3a7215538451f14e004e55775e17ba63fbeb8a864c01e0f4b3af", + "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -9570,20 +9645,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730803808, + "block_time": 1730809875, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a1d65367780d45cc427943bdeb0cfdd1ac7908ed090e041f260e5e2af4318a7f", + "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -9598,7 +9673,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730803795, + "block_time": 1730809872, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9609,14 +9684,14 @@ "/v2/issuances/": { "result": { "tx_index": 70, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "transfer": false, "callable": false, "call_date": 0, @@ -9631,7 +9706,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9640,16 +9715,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -9660,16 +9735,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" } ], @@ -9680,9 +9755,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9690,14 +9765,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803688, + "block_time": 1730809760, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "df9aa66784bdfe040077caa830c2df41acfb921354dbe4e8c1f1e3168ed71798", + "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", "block_index": 137, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9705,7 +9780,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803685, + "block_time": 1730809755, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9715,9 +9790,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9725,17 +9800,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730803688, + "block_time": 1730809760, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9760,7 +9835,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9769,10 +9844,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9797,7 +9872,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730803677, + "block_time": 1730809747, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9809,10 +9884,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9837,7 +9912,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730803653, + "block_time": 1730809722, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9849,10 +9924,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9877,7 +9952,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730803649, + "block_time": 1730809718, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9889,10 +9964,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bc0f59988efba411634eb7c7174e12cccbc0e5f07bb238734a7cff8290750fc9", + "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9917,7 +9992,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730803630, + "block_time": 1730809701, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9935,22 +10010,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9959,22 +10034,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fd48b8d1b1d24ed704880cadce8d2f43d830874163c6d22c5187287806978124", + "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", "tx_index": 21, "block_index": 134, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803673, + "block_time": 1730809742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -9983,22 +10058,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1238324fe79add0a39b1ce3b072c1040b0e4cdbbf6ff9233c70e43273ad4ad6d", + "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", "tx_index": 20, "block_index": 133, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803660, + "block_time": 1730809728, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10007,22 +10082,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6242e6ab6d99e7a71dca83ba4698c24253edfd5abfa732c20cb4ec145296f8d3", + "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", "tx_index": 19, "block_index": 132, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "bca547a76c8fbdcfb555f21ba741647b63ece4792dbacc85c9ff7db78b9e6163", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803656, + "block_time": 1730809725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10031,22 +10106,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "a5dda36fe17d51665230d3dc0b163d9f0ac8088574f680d7ac9d1639d93979a7", + "tx_hash": "0a1cb229ccebe973b679aad8fb8699dc9c8b3723e2ae1735a98d06420499b318", "tx_index": 17, "block_index": 129, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "fairminter_tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803645, + "block_time": 1730809715, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10060,22 +10135,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, "block_index": 136, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10087,22 +10162,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea", - "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" + "amount": 5.46e-05, + "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa", + "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" }, { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd", - "address": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963" + "amount": 49.499345, + "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d", + "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" }, { "vout": 2, @@ -10110,8 +10185,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888", - "address": "bcrt1qspldj4xdjq48h0hjy39fen02rtxxgtf2mfyggu" + "txid": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215", + "address": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9" } ], "next_cursor": null, @@ -10120,31 +10195,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "42f07b3232c643037564ece13fdf7a669ffb3e4b0bac5a0c3f43b1052061ef0c" + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" }, { - "tx_hash": "779be453facff27bfb859611893723fa9ba86faee159ef85111f3a330842a421" + "tx_hash": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d" }, { - "tx_hash": "9f3197d94c332c1b4cbed5f513f792c09d8e3376879599e71eb217e396e6bc26" + "tx_hash": "155214cde54155ad9f22f9401e297430884c73e57da9693a55376c941df0b333" }, { - "tx_hash": "4ea5d5181c45bd1c6e404df1bd1cdfc7c1223036d5b238d3d3fac69ffe3d2e2d" + "tx_hash": "9c05cf48db05c2a1a61d802e9ed24385872f68e888b28ecb075c2f039a67f851" }, { - "tx_hash": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c" + "tx_hash": "dcaa6acc1d5feb408823e8e4a970292b42ca77021cdfe06397828f0e42d80166" }, { - "tx_hash": "3fae326a238017d66b6a2343b8e2efe9cfcbb685a8cef9b542f7f5e2c23e6c79" + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c" }, { - "tx_hash": "1e128106013637b72112682543e29aa6122d4d5397e609dac8039590763ebd8b" + "tx_hash": "8c731c5ac1e94f8978aa69e55cca9f8a6ff5a0d14c462ab1475b1b87a07889a1" }, { - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a" + "tx_hash": "af9c59991017c568be76110e3d45e950452378a2d55210f69558fb099f3fd8bf" }, { - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" + "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4" } ], "next_cursor": null, @@ -10152,37 +10227,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "6d2d5f10aae352b1b5a95fba0f3e002fdac1185b6ccca80f454c8e75db1e41ce" + "block_index": 5, + "tx_hash": "5bc96b88246c6e1efef6344274ceb58e42ca761aac372b68b451b002061eb170" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "7b4ab29a03fc9725c556a28f8e5546a1c1a970e2cbe46aa6b6e37a6aec43a7ea" + "amount": 5.46e-05, + "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa" }, { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "146a9ad9898460ec9e3f3b3523f756bd81fb32f990dcfbd9873af07d642476bd" + "amount": 49.499345, + "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0283a3322454978109cdc1816bc59ff3866e4a7d560b8989093915f930d06078b2" + "result": "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010188a8860f8b7b8feb281fd9f2bacbfc55dcd7a06908489a2cdc18301903cb40060100000000ffffffff03e8030000000000001600149c888c6d38f587584105e664eeb7d8327b0c13ca00000000000000000c6a0aa448e03e0ab2e889a4b1eb140927010000001600147117d7b7942210084f54617475402534fba5a0e90247304402205130abc939b2fc1366c4468d38a769594463812473594fcb4bf8710b7b1c6119022070d18ae3541f1d096fc581f3064a6632477a80f1e414108f986356066b1aacb2012103c8cfefa4b8d6559382a523b41068bf1a9344d905d4f2492ed6b46584e4c16ff000000000" + "result": "0200000000010115a285033f8b1881954b6493d6b70007a36304c3f76b94674fd915f9ff199d660100000000ffffffff03e803000000000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa00000000000000000c6a0aaf8db67dd27f504f06ebeb140927010000001600149d9b6a9f2ea9c21b09081f10701535115b764f9702473044022062301d8deb93198293864ae2459c469132a83e21cd88073bc6f8c1e8b2abb4f002207ee31d16a156d1c1bf738e84da22d3f676fe4420888a985ebc864d8cfaef1c500121027f48f7b23d5afb56a3fd9df18d4bd18fa8128f20ba8e2a8a7a8a151393d3db1900000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58797 @@ -10205,27 +10280,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78 }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "quantity": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, "asset_info": { "divisible": true, @@ -10236,22 +10311,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10261,22 +10336,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "block_index": 210, - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10286,30 +10361,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730804050.1464322, + "block_time": 1730810118.4794593, "btc_amount": 0, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "destination": "", "fee": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, - "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", + "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -10323,7 +10398,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -10332,19 +10407,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10354,7 +10429,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -10363,27 +10438,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78 }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "quantity": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, "asset_info": { "divisible": true, @@ -10394,22 +10469,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "CREDIT", "params": { - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10419,22 +10494,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "asset": "XCP", "block_index": 210, - "event": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10444,30 +10519,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 }, { - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730804050.1464322, + "block_time": 1730810118.4794593, "btc_amount": 0, - "data": "020000000000000001000000000000271080f3bd0c66a5c84b57f9a916980d12f0a4e732a86f", + "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", "destination": "", "fee": 10000, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", - "tx_hash": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", "tx_index": 78, - "utxos_info": "badaa84c97f8b743b5a4eb65e19591ed74700bfaf19e04d867561a703c31af10:1", + "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "memo": null, "asset_info": { "divisible": true, @@ -10481,7 +10556,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730804050.1464322 + "timestamp": 1730810118.4794593 } ], "next_cursor": null, @@ -10503,15 +10578,15 @@ "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", "block_index": 210, - "block_time": 1730804046, + "block_time": 1730810115, "difficulty": 545259519, - "previous_block_hash": "16ef14d95c60c1b0dd6128f8237d8bfe8ad7f7a494b13f3e590e3c1c17c4ef72" + "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320" }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 665, @@ -10523,17 +10598,17 @@ "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "104d788ec4775fb87efca7b15fa14f90778ca62cd5ad46629f8def7d21eaa338", + "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", "block_index": 210, - "block_time": 1730804046, + "block_time": 1730810115, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "fee": 0, - "source": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "utxos_info": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1 5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10543,9 +10618,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 666, @@ -10559,16 +10634,16 @@ "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "out_index": 0, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 567, @@ -10581,15 +10656,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "c1fbcecf8fecbeb0438e7efb35030a9e05e80e4b2184d2459f52274f2b4c215c", - "messages_hash": "d949fad938cdccc133672a0f96ee29ba732b52a7e7b8d2b3631f053f66011fe6", + "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", + "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", "transaction_count": 1, - "txlist_hash": "d56a4189c55056c702bac739dd55c2e9127f67ffbdec43bd110f418b514a71d0", - "block_time": 1730804046 + "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", + "block_time": 1730810115 }, "tx_hash": null, "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 680, @@ -10602,12 +10677,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 679, @@ -10623,12 +10698,12 @@ "address": null, "asset": "XCP", "block_index": 210, - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 1500000000, "tx_index": 77, - "utxo": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", - "utxo_address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", - "block_time": 1730804046, + "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10638,9 +10713,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 686, @@ -10652,16 +10727,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -10671,9 +10746,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 690, @@ -10687,26 +10762,26 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "memo": null, "quantity": 1000, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "tx_index": 71, - "block_time": 1730804008, + "block_time": 1730810074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d1bc2c2ef59af5bd383911e45570ee84034a8636a4e43bd8a80669f4a4d82ab6", + "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", "block_index": 204, - "block_time": 1730804008 + "block_time": 1730810074 } ], "next_cursor": 503, @@ -10720,15 +10795,15 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "status": "valid", - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "tx_index": 75, - "block_time": 1730804033, + "block_time": 1730810101, "asset_info": { "divisible": true, "asset_longname": null, @@ -10738,9 +10813,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "30a4646959b38cfda963176ec2930ce7d8b1344442d18df962a243954e5b6460", + "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", "block_index": 208, - "block_time": 1730804033 + "block_time": 1730810101 } ], "next_cursor": 661, @@ -10763,20 +10838,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "status": "valid", - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "tx_index": 61, - "block_time": 1730803948, + "block_time": 1730810020, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2c3b55593bd365e9348bc7140dab128c081f47dea7c6f2de8a97a66ddbda9a9a", + "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", "block_index": 195, - "block_time": 1730803948 + "block_time": 1730810020 } ], "next_cursor": null, @@ -10793,15 +10868,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "tx_index": 41, - "block_time": 1730803765, + "block_time": 1730809852, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -10815,9 +10890,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "160880bdc85459b61e98967ae93cc733df8a2270005951c95a081e61dfab21dd", + "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", "block_index": 154, - "block_time": 1730803765 + "block_time": 1730809852 } ], "next_cursor": null, @@ -10838,11 +10913,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730804003 + "block_time": 1730810071 }, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_time": 1730804003 + "block_time": 1730810071 } ], "next_cursor": 576, @@ -10865,22 +10940,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", "transfer": false, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "tx_index": 70, - "block_time": 1730804003, + "block_time": 1730810071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "14ade595406dc7b64534d2c789bf1f65d4e69256353eedf7a08129b104ac09c0", + "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", "block_index": 203, - "block_time": 1730804003 + "block_time": 1730810071 } ], "next_cursor": 577, @@ -10895,12 +10970,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qk539zfs4scrrlkzve4dk6ackaec7ns35a86ynv", + "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", "status": "valid", "tag": "64657374726f79", - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "tx_index": 62, - "block_time": 1730803952, + "block_time": 1730810023, "asset_info": { "divisible": true, "asset_longname": null, @@ -10910,9 +10985,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "7462cac0f6cf6161049a2b9a9afa9451e4fe9b13d4910ea33ae0b3c2fe3783de", + "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", "block_index": 196, - "block_time": 1730803952 + "block_time": 1730810023 } ], "next_cursor": 157, @@ -10937,11 +11012,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "open", - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10965,9 +11040,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 534, @@ -10985,20 +11060,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4_110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", + "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "tx0_index": 54, - "tx1_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "tx1_index": 76, - "block_time": 1730804037, + "block_time": 1730810105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11017,9 +11092,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 673, @@ -11032,11 +11107,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4" + "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 677, @@ -11049,11 +11124,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4" + "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a" }, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "block_time": 1730803906 + "block_time": 1730809971 } ], "next_cursor": null, @@ -11065,13 +11140,13 @@ "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", + "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", "status": "expired" }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 481, @@ -11085,18 +11160,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_630680dd19a1d779acf51a7c653078bcaad786f23718c96cbbea338f63750ce4", - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "status": "valid", - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "tx_index": 53, - "block_time": 1730803906, + "block_time": 1730809971, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "2e452cf2089224a222fbf04abea54113910df1ccb5765c91981614f9e7f9138e", + "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", "block_index": 187, - "block_time": 1730803906 + "block_time": 1730809971 } ], "next_cursor": null, @@ -11109,16 +11184,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "a4e55bffea90a1289d91b503c99836c64a76578b487bcb15351507c445412538", - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": "valid", - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "tx_index": 59, - "block_time": 1730803930 + "block_time": 1730810003 }, - "tx_hash": "cc5f07de6e96cc3fefc1d06b7a59cfe6f2907043bf0f33f6a2c1dfd83eb9e47a", + "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", "block_index": 193, - "block_time": 1730803930 + "block_time": 1730810003 } ], "next_cursor": null, @@ -11131,13 +11206,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "source": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "block_time": 1730804046 + "order_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_time": 1730810115 }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 642, @@ -11150,14 +11225,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "bb81850cd56234b84a206dd70de15c69bbac81e033a71b5ff5f978b5edfc0807_af5eae514e10b6795ed1c77a5148e50a346bfa6195d9e44fa7a4cdb3cb7464e4", - "tx0_address": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "tx1_address": "bcrt1q7w7sce49ep9407dfz6vq6yhs5nnn92r0ceyl5l", - "block_time": 1730804037 + "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_time": 1730810105 }, - "tx_hash": "110f14060e7b98b5eb80332a67e056cbbd0ac1503cad2e83594c14a9f1568599", + "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", "block_index": 209, - "block_time": 1730804037 + "block_time": 1730810105 } ], "next_cursor": 457, @@ -11176,17 +11251,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "satoshirate": 1, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "status": 0, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "tx_index": 64, - "block_time": 1730803969, + "block_time": 1730810030, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11195,9 +11270,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "01ed5b305e1da0ec071fcb1ed05c0f0e7cc09744c9e5fbebb73188179ab18da1", + "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", "block_index": 198, - "block_time": 1730803969 + "block_time": 1730810030 } ], "next_cursor": 272, @@ -11212,9 +11287,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": 0, - "tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", + "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", "asset_info": { "divisible": true, "asset_longname": null, @@ -11224,9 +11299,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 569, @@ -11240,13 +11315,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mzVTUCd7wkDYZwe7j6AnixPGbzzmoHFqsG", + "destination": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", "dispense_quantity": 10, - "dispenser_tx_hash": "3a1c61b4f90bd29a7b1f26b17ed505f59b173b7a42e5bd6e24fc0fab7fe61e47", - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", - "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", + "dispenser_tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", "tx_index": 31, - "block_time": 1730803729, + "block_time": 1730809794, "asset_info": { "divisible": true, "asset_longname": null, @@ -11256,9 +11331,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e63c776f74fb621bf0f3878e150fd6c79186a3071bc0872cdef0cfe30131d899", + "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", "block_index": 144, - "block_time": 1730803729 + "block_time": 1730809794 } ], "next_cursor": null, @@ -11273,14 +11348,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qwyta0du5yggqsn65v9682sp9xna6tg8fw9ll7s", + "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2b63e0cc04d1880265d63d564059be75331742bd8880fa4f0a9821bf277bd43f", - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -11291,9 +11366,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 570, @@ -11308,19 +11383,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnjygcmfc7kr4ssg9uejwad7cxfascy72wddzm9", + "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "tx_index": 25, "value": 66600.0, - "block_time": 1730803688, + "block_time": 1730809760, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "146b44baf5cd7bed6276bcd9f432ca72ae97a1839195459f2eea7ddaf531be5f", + "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", "block_index": 138, - "block_time": 1730803688 + "block_time": 1730809760 } ], "next_cursor": 213, @@ -11351,12 +11426,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "start_block": 0, "status": "open", - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "tx_index": 42, - "block_time": 1730803778, + "block_time": 1730809856, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11364,9 +11439,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "e04dfbf50add8440039c027ae742825b391fb4b0668a5312e67522176a5f886a", + "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", "block_index": 155, - "block_time": 1730803778 + "block_time": 1730809856 } ], "next_cursor": 196, @@ -11379,11 +11454,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c49b9e85a91eb1036dc396eb39e67c21ad6225be37bd81e9c279c05ded6408cc" + "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b" }, "tx_hash": null, "block_index": 130, - "block_time": 1730803649 + "block_time": 1730809718 } ], "next_cursor": 110, @@ -11399,17 +11474,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "4a417086ec4676c2373852a709c4bce9ad63d496f92c00369bbbe29f6680a6a4", + "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", "paid_quantity": 34, - "source": "bcrt1q33d3l66snnum5yqxqqhq586mta86grntpswepn", + "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", "status": "valid", - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "tx_index": 23, - "block_time": 1730803680, + "block_time": 1730809751, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, @@ -11417,9 +11492,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "f7f8e7cfcad8483e6056ed77547b015db3c20052f1de29a5d88e52290315413f", + "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", "block_index": 136, - "block_time": 1730803680 + "block_time": 1730809751 } ], "next_cursor": 190, @@ -11433,28 +11508,28 @@ "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0:0", + "destination": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "status": "valid", - "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", + "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", "tx_index": 67, - "block_time": 1730803990, + "block_time": 1730810052, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrjpl904ahx3v56a0n8mne08mqwn4ule7hm7963", + "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "87fc6d859d91ef14c93a4e3898d108df9bfebd93006c101153c2305e2efd87b0", + "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", "block_index": 201, - "block_time": 1730803990 + "block_time": 1730810052 } ], "next_cursor": 319, @@ -11468,28 +11543,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qlk3ny05nzmw8enmwtwv7ag3eelw0evcwprxdpr", + "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "3a15a770e411e8333b4529e6875674c5a9fc32d878036a23d45e4377acd2894c:0", + "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", "status": "valid", - "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", + "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", "tx_index": 38, - "block_time": 1730803754, + "block_time": 1730809840, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0gfkumdyafuq7a7wpp6f3gktp6nrzxxnux7q72", + "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "09bfb63966c4c2030c403bb43087feeb49c74c3336d30665a8d6a7fb5bf84f6d", + "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", "block_index": 151, - "block_time": 1730803754 + "block_time": 1730809840 } ], "next_cursor": null, @@ -11503,14 +11578,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4:0", + "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", "msg_index": 1, "quantity": 1500000000, - "source": "0640cb03193018dc2c9a480869a0d7dc55fccbbaf2d91f28eb8f7b8b0f86a888:1", + "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", "status": "valid", - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "tx_index": 77, - "block_time": 1730804046, + "block_time": 1730810115, "asset_info": { "divisible": true, "asset_longname": null, @@ -11520,9 +11595,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5ec0833b81b21ef311d46cfae215e7f00ff6656e9b10612615a6e066045cbac4", + "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", "block_index": 210, - "block_time": 1730804046 + "block_time": 1730810115 } ], "next_cursor": 688, @@ -11537,17 +11612,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzexmmqcaupfeegkql2j8qt6qzu6092dzvzlsxm", + "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", "status": "valid", - "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", + "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", "tx_index": 9, - "block_time": 1730803615, + "block_time": 1730809684, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "f7ee9924fbaf3727eefade7afb3bd27b01d511148fb9620fc2df270be355bdac", + "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", "block_index": 121, - "block_time": 1730803615 + "block_time": 1730809684 } ], "next_cursor": 65, diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index f087b289fd..601856fcbb 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -18,6 +18,7 @@ ## API - Add `validate` argument to compose API +- Add sortable `get_price` and `give_price` fields in orders ## CLI From ff2732d54221b3a769aea56c90847d9f89da34f0 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 14:08:55 +0000 Subject: [PATCH 059/138] Add sortable 'price' field in dispensers --- apiary.apib | 3972 +++++++++-------- .../counterpartycore/lib/api/queries.py | 9 + .../counterpartycore/lib/api/util.py | 10 +- .../counterpartycore/test/api_v2_test.py | 2 + .../test/fixtures/api_v2_fixtures.json | 68 +- .../test/regtest/apidoc/apicache.json | 3632 +++++++-------- .../scenarios/scenario_17_dispenser.py | 2 + release-notes/release-notes-v10.6.2.md | 1 + 8 files changed, 3891 insertions(+), 3805 deletions(-) diff --git a/apiary.apib b/apiary.apib index 55ad25e820..a194262f9e 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-05 12:35:35.913088. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-05 14:02:25.533665. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", "block_index": 210, - "block_time": 1730810115, + "block_time": 1730815328, "difficulty": 545259519, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320" + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8" }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 665, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", "block_index": 210, - "block_time": 1730810115, + "block_time": 1730815328, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "fee": 0, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 666, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "out_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 567, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 680, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 679, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 210, - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "block_time": 1730810115, + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 686, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 690, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "quantity": 1000, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "tx_index": 71, - "block_time": 1730810074, + "block_time": 1730815285, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "block_time": 1730810074 + "block_time": 1730815285 } ], "next_cursor": 503, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "status": "valid", - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "tx_index": 75, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_time": 1730810101 + "block_time": 1730815312 } ], "next_cursor": 661, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "status": "valid", - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "tx_index": 61, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "block_time": 1730810020 + "block_time": 1730815247 } ], "next_cursor": null, @@ -533,15 +533,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": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "tx_index": 41, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -555,9 +555,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": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "block_time": 1730809852 + "block_time": 1730815072 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730810071 + "block_time": 1730815282 }, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_time": 1730810071 + "block_time": 1730815282 } ], "next_cursor": 576, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", "transfer": false, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "tx_index": 70, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_time": 1730810071 + "block_time": 1730815282 } ], "next_cursor": 577, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", "tag": "64657374726f79", - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "tx_index": 62, - "block_time": 1730810023, + "block_time": 1730815251, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "block_index": 196, - "block_time": 1730810023 + "block_time": 1730815251 } ], "next_cursor": 157, @@ -706,11 +706,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": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "open", - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,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": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 534, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 54, - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx1_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 673, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 677, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a" + "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0" }, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "block_time": 1730809971 + "block_time": 1730815205 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "status": "expired" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 481, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "status": "valid", - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "tx_index": 53, - "block_time": 1730809971, + "block_time": 1730815205, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "block_time": 1730809971 + "block_time": 1730815205 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "tx_index": 59, - "block_time": 1730810003 + "block_time": 1730815238 }, - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "block_index": 193, - "block_time": 1730810003 + "block_time": 1730815238 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "block_time": 1730810115 + "order_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_time": 1730815328 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 642, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "block_time": 1730810105 + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_time": 1730815315 }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 457, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "satoshirate": 1, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": 0, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "tx_index": 64, - "block_time": 1730810030, + "block_time": 1730815257, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 198, - "block_time": 1730810030 + "block_time": 1730815257 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 569, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", + "destination": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", "dispense_quantity": 10, - "dispenser_tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", + "dispenser_tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", "tx_index": 31, - "block_time": 1730809794, + "block_time": 1730815031, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", + "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", "block_index": 144, - "block_time": 1730809794 + "block_time": 1730815031 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 570, @@ -1146,19 +1146,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": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "tx_index": 25, "value": 66600.0, - "block_time": 1730809760, + "block_time": 1730814999, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "block_time": 1730809760 + "block_time": 1730814999 } ], "next_cursor": 213, @@ -1196,22 +1196,22 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "start_block": 0, "status": "open", - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "block_index": 155, - "block_time": 1730809856 + "block_time": 1730815076 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b" + "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0" }, "tx_hash": null, "block_index": 130, - "block_time": 1730809718 + "block_time": 1730814958 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "paid_quantity": 34, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "status": "valid", - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "block_index": 136, - "block_time": 1730809751 + "block_time": 1730814993 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528:0", + "destination": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "status": "valid", - "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", + "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", "tx_index": 67, - "block_time": 1730810052, + "block_time": 1730815268, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", + "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", "block_index": 201, - "block_time": 1730810052 + "block_time": 1730815268 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", + "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", + "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", "status": "valid", - "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", + "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", "tx_index": 38, - "block_time": 1730809840, + "block_time": 1730815061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", + "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", "block_index": 151, - "block_time": 1730809840 + "block_time": 1730815061 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 210, - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "msg_index": 1, "quantity": 1500000000, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", "status": "valid", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 688, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", + "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", "status": "valid", - "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", + "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", "tx_index": 9, - "block_time": 1730809684, + "block_time": 1730814922, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", + "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", "block_index": 121, - "block_time": 1730809684 + "block_time": 1730814922 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", "difficulty": 545259519, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "previous_block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "previous_block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", "difficulty": 545259519, - "ledger_hash": "fa863f767a1ec7aff30b3d50f18afc458d2d38eee301eaf31ca4594fcfb1700a", - "txlist_hash": "87ed16845085e4fac7eb0248c5d98e80b9aa226a7defbe57601a75e4b618cc52", - "messages_hash": "574fe5babf94a16cf8ad5c70d4330a3b97678ad7f65989ff3eb7fba5728acfe5", + "ledger_hash": "4f8ec7521eb079fc7651868cfb0e091d56cb9a946781741224a0b21045fe3f08", + "txlist_hash": "e5088fbc9436f1733f83b3116d0a90fb8bb0bb4fb592aa6bbbd6b1d6a3959153", + "messages_hash": "305efc93cd4fc24a5f5acbf52cb0a11d74687f4b46a213ce0cc00cd70c251c89", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", - "block_time": 1730810101, - "previous_block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", + "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_time": 1730815312, + "previous_block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", "difficulty": 545259519, - "ledger_hash": "82cdb11101b7d3eaff8fa83af3df7ada9140fa18e99fddfb0e50063b1ac19bdf", - "txlist_hash": "5ae691bb7181741f4945cf3ec2b62be06d936b9f4e46c859d4195cdbfecf8cde", - "messages_hash": "fbebad60f42b702ad0b50cb2a0ff93af9f0747c7cf849cc6d0c48424cb311194", + "ledger_hash": "ac49b220ad7ebca61cfa89d8e3ad61724cc7b02f449c815f732c05eba38be416", + "txlist_hash": "91e3ce6d6848aee4c67f2a51cec38c4ddfef1927fc06f23aaeba105187d52941", + "messages_hash": "ab230dd234a477a9d8fed8c39f5357e9f7be5cf52dcbb3e3051b7db8b0be0e46", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", - "block_time": 1730810097, - "previous_block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", + "block_time": 1730815307, + "previous_block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", "difficulty": 545259519, - "ledger_hash": "4b19ce525f7c47bd15da4d84b8c12b9eb833435441d7ab94f69fccc11a64fca0", - "txlist_hash": "e445f4e045e1572d476cf0b28fbd646147bc9c82d65569cbe884d9af2a0a21be", - "messages_hash": "6b102244e88f6d30a48b00ce6523a39cab9dc33d899952fbba74b017a5b077da", + "ledger_hash": "c5a362d8ca3b4e3f105e20edf23add9475523d4b434aa409271b7246fc0c6eaa", + "txlist_hash": "49bb59b65fcab0a3644d337af67945ae3eec864306b3aa1b46979407fc927944", + "messages_hash": "ec1ca9b4459dc9cdcc751a118f641e718f90c6dc8956441b7ce5a24e4a1f0bba", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", - "block_time": 1730810093, - "previous_block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", + "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_time": 1730815303, + "previous_block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", "difficulty": 545259519, - "ledger_hash": "396e9da473d68e63408d43d85b99daa35f6089406459bd7a742bea482c7f916c", - "txlist_hash": "1b744275c22796f23817d67f481a22cc224d7d8e1d3933ada8ef2a1ad6003ba0", - "messages_hash": "4b5aac3bfbb71de10a81527d40fd8b66e2a3eb3795ce8e25c90034911de61da2", + "ledger_hash": "cbbf765e3f0de039e1b923d3c657023d20fa8674d7af665ad037520ce65debf3", + "txlist_hash": "35cedfac328fc7f2e6b7c51bf6a774c0be6d0189d5172b86d146a19ebe1d95c1", + "messages_hash": "fb5ce0e3b6ffa98c6199e293927b7145d7f72112365e4493bf728f64d08590c5", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", "difficulty": 545259519, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe` (str, required) - The index of the block to return + + block_hash: `39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", "difficulty": 545259519, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 694, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 693, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" } ], "next_cursor": 691, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 690, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 687, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 210, - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "object_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "block_index": 210, "confirmed": true, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "status": "valid", "confirmed": true, - "block_time": 1730810003 + "block_time": 1730815238 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "block_index": 196, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730810023, + "block_time": 1730815251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,8 +2601,8 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "block_hash": "382c007df5ab3861be4311290c588eeae3705c65eca940104386a47f4a16b96c", - "block_time": 1730809760, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "4e8359d69ec8abc43f3bbe20133171da3e136269b6bc9b10e72d010f7759fed9", + "block_time": 1730814999, + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45:1", + "utxos_info": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "block_hash": "1f915eb45422b64d329cebb203c744ab2f4975714c6b9f7355b16aa6295c33c1", - "block_time": 1730809971, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "030ae8e735daddc8c1e1d3140d895f2ea1adb660a67cdeba1664893a720dc443", + "block_time": 1730815205, + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "btc_amount": 2000, "fee": 10000, - "data": "0bc5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "data": "0b385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "supported": true, - "utxos_info": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d:0", + "utxos_info": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "block_index": 193, - "block_hash": "4a6f3fc3ad0939075bdc6ed9b8e87271ea7d7794f0b5b29a446aaf525be7ccc8", - "block_time": 1730810003, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "429af7429ac885063944b7608642fd6850df192b0d7653e0a96b8bc124a1a1f0", + "block_time": 1730815238, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "data": "46d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "supported": true, - "utxos_info": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6:1", + "utxos_info": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "block_index": 196, - "block_hash": "24a11b579be779fac88f8e23f4a7dcadf95856bb472c8ac15d14dbce2d071538", - "block_time": 1730810023, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "block_hash": "332f7f4b04131babd9b016298c40a275f8f0830e03f45224ae2589e67acf1ac5", + "block_time": 1730815251, + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db:1", + "utxos_info": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 198, - "block_hash": "3fc16aa7174869b24f0aba7e510d2680e04665b981a5d28331bf42f47d7a5542", - "block_time": 1730810030, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "051b5cec3fae59ef9bbe222a69e649104595947be637785fc442b12aaf91974a", + "block_time": 1730815257, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e:1", + "utxos_info": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "block_hash": "55272d5c34ef8189b752b4cbafd9496bdf2e0e7a82adeb6b0e9eb140e333c830", - "block_time": 1730809852, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "7c645e7df6ff090833ee30fbb01e26cdc19430d0d3fba68b0c9ee13243bb6704", + "block_time": 1730815072, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23:1", + "utxos_info": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_hash": "0af1f606973a4e3770f42816bca688b9f05c7ce64e55df8a3a9d7fccec169710", - "block_time": 1730810071, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0452ab098a169e2a20d1cfc65d6e096911592556fbd09c39d80a8366d714e40c", + "block_time": 1730815282, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d:1", + "utxos_info": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "block_hash": "6e9baba13cfa1bfc29824ca940e6e792724686c7ee6d61661c80922400213e4b", - "block_time": 1730810074, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0d1d4c85be3f416768380fb66d48e2de59fc107a9dbc4a5ef2e043ce7e0fdedf", + "block_time": 1730815285, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", + "data": "02000000178d82231300000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", "supported": true, - "utxos_info": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a:1", + "utxos_info": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", - "block_time": 1730810101, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_time": 1730815312, + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46:0", + "utxos_info": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "block_hash": "6f9a33fcb8d1d8ae14af9d28f71441d3c18788787c354eb826ec848b48dd26d4", - "block_time": 1730810020, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "block_hash": "5ac4e3bdebbfa961533f1b5cd52056c41e3f3e9897632631e00f3562fc799904", + "block_time": 1730815247, + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480f6811e9837b88c1c4b4f9324cceb3e6c95db534b017377656570206d7920617373657473", + "data": "04804a30b7f971594bc6d7dffb1ef3a31b6c60641695017377656570206d7920617373657473", "supported": true, - "utxos_info": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c:1", + "utxos_info": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001018c3309c5737147ca542db19d835d97753d8621e801a55b21ed6ac230cbbf68e30000000000ffffffff020000000000000000356a3388c6c523f588bc4ff80728f676effb4c3fd787b4b77b30cd83934063dd10df5adc283859389ee493993748989da810da578b43f0ca052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a0247304402203de657371ca5dd5866465047570cc056e07bd0d4ff438b9cd8515e0eb554858302206a76adcf234fbc4c49cb65fcf10be05ea23ba2f333c6a53c870fb29a7fdfcb3701210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec100000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001013261e18b3eae2ddf8bdea39bd034853a7cbe9bbc4fdbd311e0c5845dc89e31640000000000ffffffff020000000000000000356a338802082addd0ade1c547e48654fe75eaf429a87839ca41eafed5cf343c4092d7821bc14c42f838aad0eb8cf0dc41cbb7b1a641f0ca052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302473044022013b664bb39a587ae8e8d55da46915fdc453437c1c3d8225433ea8d3a3e5a7f3a02204fe2e9d7af41d973ae853052d4d7ac8140dcf85005e2f266a75288a2c6fa01f90121027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122700000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3301,7 +3301,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "8c3309c5737147ca542db19d835d97753d8621e801a55b21ed6ac230cbbf68e3", + "hash": "3261e18b3eae2ddf8bdea39bd034853a7cbe9bbc4fdbd311e0c5845dc89e3164", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,20 +3311,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a3388c6c523f588bc4ff80728f676effb4c3fd787b4b77b30cd83934063dd10df5adc283859389ee493993748989da810da578b43" + "script_pub_key": "6a338802082addd0ade1c547e48654fe75eaf429a87839ca41eafed5cf343c4092d7821bc14c42f838aad0eb8cf0dc41cbb7b1a641" }, { "value": 4999990000, - "script_pub_key": "00148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a" + "script_pub_key": "00147f6fe9665382ab7ab49540720d8ea14679793823" } ], "vtxinwit": [ - "304402203de657371ca5dd5866465047570cc056e07bd0d4ff438b9cd8515e0eb554858302206a76adcf234fbc4c49cb65fcf10be05ea23ba2f333c6a53c870fb29a7fdfcb3701", - "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" + "3044022013b664bb39a587ae8e8d55da46915fdc453437c1c3d8225433ea8d3a3e5a7f3a02204fe2e9d7af41d973ae853052d4d7ac8140dcf85005e2f266a75288a2c6fa01f901", + "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" ], "lock_time": 0, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx_id": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601" + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_id": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93" }, "unpacked_data": { "message_type": "order", @@ -3366,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39` (str, required) - Transaction hash + + tx_hash: `b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58` (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. @@ -3377,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "925c0f4c47ab9e0ee4b45b9b86c2ab48972b78c3aac3f3b5aa1695b81dcd96d7", + "hash": "de614bb8fd765aa1e740024e8db7f3be6dce211f2e01b18525d573efbceb86a7", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e5cef4840b91e11ceb0e64ca8558eff6303f73545fd8c12e4fb97cef6309bab3f8513b4b6c0ca884b704df5626316" + "script_pub_key": "6a2e90c76a9673d624468a6c4435f080f320b3428ac2189aeec1ea0100851be836f1c342fa2b141e23a1b307844f0395" }, { "value": 4999970000, - "script_pub_key": "0014f6811e9837b88c1c4b4f9324cceb3e6c95db534b" + "script_pub_key": "00144a30b7f971594bc6d7dffb1ef3a31b6c60641695" } ], "vtxinwit": [ - "30440220087c163eb4412833e338a4bd68ae6833d3f75c5e5cb36627c976b187bfa3135902203154b59af84fe7a2702c68ee920fa43fa03b390f658fbd33c64a36fa96f5581401", - "02fa96e8629ffb83d4a03ad1334f4f1734cd3c290d310037cc58e298810e7235ed" + "3044022024718b8861d1f4af30576aa6fe16d52dd56f58a4c9ce9d609c210dc87bf2089f02203e36d8e85b01a4d909ecbbbd727630045437bdd44f7b949b71ac96a056f1c7a301", + "0342812158a90261b26d3f9549abf087fa115869e7e2156559c056675af21ca08a" ], "lock_time": 0, - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", - "tx_id": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39" + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_id": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3480,17 @@ Returns a transaction by its index. { "result": { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction + + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (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. @@ -3521,17 +3521,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3574,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 694, @@ -3588,14 +3588,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3606,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 693, @@ -3617,9 +3617,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3656,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 691, @@ -3666,14 +3666,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "msg_index": 1, "quantity": 1500000000, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", "status": "valid", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3683,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 690, @@ -3698,7 +3698,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction to return + + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -3722,12 +3722,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 694, @@ -3736,14 +3736,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3754,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 693, @@ -3765,9 +3765,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3804,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 691, @@ -3814,14 +3814,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "msg_index": 1, "quantity": 1500000000, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", "status": "valid", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3831,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 690, @@ -3846,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction to return + + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (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 @@ -3865,10 +3865,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3876,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +3889,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3900,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -3922,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction to return + + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (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 @@ -3942,27 +3942,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4021,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4040,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 690, @@ -4052,12 +4052,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4067,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 687, @@ -4079,24 +4079,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": null, @@ -4109,7 +4109,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The hash of the transaction to return + + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `696` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4131,16 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4150,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 690, @@ -4162,12 +4162,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4177,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 687, @@ -4189,24 +4189,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": null, @@ -4221,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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 @@ -4245,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4266,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4287,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4308,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4329,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4350,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4377,7 +4377,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - Comma separated list of addresses to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4396,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4442,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", - "block_time": 1730810101, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_time": 1730815312, + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46:0", + "utxos_info": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4475,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "block_index": 207, - "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", - "block_time": 1730810097, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", + "block_time": 1730815307, + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534bc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c60641695c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70:0", + "utxos_info": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4527,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", - "block_time": 1730810093, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_time": 1730815303, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", + "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4579,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", - "block_time": 1730810088, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", + "block_time": 1730815299, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", + "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4631,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4659,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -4688,20 +4688,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 54, - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx1_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4720,9 +4720,9 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 675, @@ -4741,11 +4741,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "open", - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4769,24 +4769,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "block_index": 209, - "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -4796,9 +4796,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 673, @@ -4810,20 +4810,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "tx0_index": 60, - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx1_index": 54, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4842,23 +4842,23 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "block_time": 1730810105 + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_time": 1730815315 }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 668, @@ -4871,7 +4871,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e,bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd,bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s` (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 @@ -4887,17 +4887,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "quantity": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, "asset_info": { "divisible": true, @@ -4908,22 +4908,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4933,22 +4933,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "block_index": 210, - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -4958,30 +4958,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730810118.4794593, + "block_time": 1730815333.0180326, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "destination": "", "fee": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, - "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", + "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -4995,7 +4995,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -5008,7 +5008,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -5028,7 +5028,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5036,14 +5036,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5051,14 +5051,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5066,14 +5066,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5088,7 +5088,7 @@ Returns the balances of an address "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5096,7 +5096,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5113,7 +5113,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -5126,7 +5126,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5151,7 +5151,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5201,16 +5201,16 @@ Returns the credits of an address "result": [ { "block_index": 209, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -5222,16 +5222,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -5243,16 +5243,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -5264,16 +5264,16 @@ Returns the credits of an address }, { "block_index": 207, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -5285,20 +5285,20 @@ Returns the credits of an address }, { "block_index": 203, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "event": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5315,7 +5315,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5354,16 +5354,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -5375,16 +5375,16 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -5396,20 +5396,20 @@ Returns the debits of an address }, { "block_index": 206, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5417,16 +5417,16 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "divisible": true, "asset_longname": null, @@ -5438,20 +5438,20 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5468,7 +5468,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address of the feed + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5503,7 +5503,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -5522,9 +5522,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", + "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", "block_index": 137, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5532,7 +5532,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809755, + "block_time": 1730814996, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5546,7 +5546,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -5565,14 +5565,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "6ba0d3fcf7c02e433d201c2ce80a5fa7e122af150032da86c2116381f334e537", + "tx_hash": "7cc5672c094deda5d41dc47ebec6556934227559b084cfdc84dde8ee8a3778b6", "block_index": 112, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730809651, + "block_time": 1730814893, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5587,7 +5587,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -5606,10 +5606,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5617,7 +5617,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -5630,10 +5630,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5641,11 +5641,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5654,10 +5654,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5665,11 +5665,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5678,10 +5678,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5689,7 +5689,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "divisible": true, "asset_longname": null, @@ -5702,10 +5702,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5713,11 +5713,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5735,7 +5735,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh` (str, required) - The address to return + + address: `bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj` (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 @@ -5754,10 +5754,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", + "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", "block_index": 151, - "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", - "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", + "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", + "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5765,11 +5765,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730809840, + "block_time": 1730815061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5787,7 +5787,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5807,10 +5807,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5818,11 +5818,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5831,10 +5831,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5842,11 +5842,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5855,10 +5855,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5866,11 +5866,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5879,10 +5879,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5890,11 +5890,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5903,10 +5903,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5914,11 +5914,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810074, + "block_time": 1730815285, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5936,7 +5936,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh` (str, required) - The address to return + + address: `bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5964,7 +5964,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5993,9 +5993,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6004,17 +6004,18 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6026,13 +6027,14 @@ Returns the dispensers of an address "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 64, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6041,21 +6043,22 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6063,7 +6066,8 @@ Returns the dispensers of an address "give_remaining_normalized": "0.00006000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -6076,7 +6080,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -6089,9 +6093,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6100,17 +6104,18 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6122,7 +6127,8 @@ Returns the dispenser of an address and an asset "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } } ``` @@ -6132,7 +6138,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -6152,19 +6158,19 @@ Returns the dispenses of a source { "tx_index": 65, "dispense_index": 0, - "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", + "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6172,7 +6178,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6187,11 +6193,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6201,19 +6207,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6221,7 +6227,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6236,7 +6242,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6250,19 +6256,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6270,7 +6276,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6285,7 +6291,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -6307,7 +6313,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address to return + + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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 @@ -6327,19 +6333,19 @@ Returns the dispenses of a destination { "tx_index": 65, "dispense_index": 0, - "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", + "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6347,7 +6353,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6362,11 +6368,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6376,19 +6382,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6396,7 +6402,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6411,7 +6417,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6425,19 +6431,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6445,7 +6451,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6460,7 +6466,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -6482,7 +6488,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -6503,19 +6509,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6523,7 +6529,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6538,7 +6544,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6552,19 +6558,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6572,7 +6578,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6587,7 +6593,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -6609,7 +6615,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address to return + + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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` @@ -6630,19 +6636,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6650,7 +6656,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6665,7 +6671,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6679,19 +6685,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6699,7 +6705,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6714,7 +6720,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -6736,7 +6742,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e` (str, required) - The address to return + + address: `bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd` (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 @@ -6755,16 +6761,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -6778,7 +6784,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6810,14 +6816,14 @@ Returns the issuances of an address "result": [ { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6832,20 +6838,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", + "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6860,20 +6866,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809879, + "block_time": 1730815111, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", + "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6888,20 +6894,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730809875, + "block_time": 1730815107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", + "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6916,20 +6922,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809872, + "block_time": 1730815104, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "49c9963d6f64cf86ca63534109735b5b572e9be5d645e8470d9fb09bb6daa139", + "tx_hash": "945ce27ed72be9ebd17662ee389fa75a69875f250547ca10f6c4bd85e5ed8f8b", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6944,7 +6950,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809868, + "block_time": 1730815090, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6959,7 +6965,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The issuer or owner to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6982,8 +6988,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -6991,16 +6997,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -7008,16 +7014,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -7025,16 +7031,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 40, @@ -7042,16 +7048,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730809747, - "last_issuance_block_time": 1730809751, + "first_issuance_block_time": 1730814988, + "last_issuance_block_time": 1730814993, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 19, @@ -7059,8 +7065,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730809722, - "last_issuance_block_time": 1730809742, + "first_issuance_block_time": 1730814962, + "last_issuance_block_time": 1730814984, "supply_normalized": "0.00000019" } ], @@ -7074,7 +7080,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The issuer to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -7097,8 +7103,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -7106,16 +7112,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -7123,16 +7129,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -7140,16 +7146,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 40, @@ -7157,16 +7163,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730809747, - "last_issuance_block_time": 1730809751, + "first_issuance_block_time": 1730814988, + "last_issuance_block_time": 1730814993, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 19, @@ -7174,8 +7180,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730809722, - "last_issuance_block_time": 1730809742, + "first_issuance_block_time": 1730814962, + "last_issuance_block_time": 1730814984, "supply_normalized": "0.00000019" } ], @@ -7189,7 +7195,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The owner to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7212,8 +7218,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -7221,16 +7227,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -7238,16 +7244,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -7255,16 +7261,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 40, @@ -7272,16 +7278,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730809747, - "last_issuance_block_time": 1730809751, + "first_issuance_block_time": 1730814988, + "last_issuance_block_time": 1730814993, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 19, @@ -7289,8 +7295,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730809722, - "last_issuance_block_time": 1730809742, + "first_issuance_block_time": 1730814962, + "last_issuance_block_time": 1730814984, "supply_normalized": "0.00000019" } ], @@ -7304,7 +7310,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7323,17 +7329,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7369,17 +7375,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", - "block_time": 1730810093, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_time": 1730815303, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", + "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7387,14 +7393,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7402,7 +7408,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7421,17 +7427,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", - "block_time": 1730810088, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", + "block_time": 1730815299, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", + "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7439,14 +7445,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7454,7 +7460,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7473,17 +7479,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "block_hash": "6e9baba13cfa1bfc29824ca940e6e792724686c7ee6d61661c80922400213e4b", - "block_time": 1730810074, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0d1d4c85be3f416768380fb66d48e2de59fc107a9dbc4a5ef2e043ce7e0fdedf", + "block_time": 1730815285, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", + "data": "02000000178d82231300000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", "supported": true, - "utxos_info": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a:1", + "utxos_info": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7491,12 +7497,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7507,17 +7513,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_hash": "0af1f606973a4e3770f42816bca688b9f05c7ce64e55df8a3a9d7fccec169710", - "block_time": 1730810071, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0452ab098a169e2a20d1cfc65d6e096911592556fbd09c39d80a8366d714e40c", + "block_time": 1730815282, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d:1", + "utxos_info": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7551,7 +7557,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -7570,20 +7576,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7608,7 +7614,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7637,9 +7643,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7656,7 +7662,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7679,14 +7685,14 @@ Returns the orders of an address "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7703,7 +7709,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7726,14 +7732,14 @@ Returns the orders of an address "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7750,7 +7756,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7773,14 +7779,14 @@ Returns the orders of an address "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 60, - "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7797,7 +7803,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7820,14 +7826,14 @@ Returns the orders of an address "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7844,7 +7850,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7867,8 +7873,8 @@ Returns the orders of an address "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -7881,7 +7887,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The source of the fairminter to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7906,10 +7912,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7934,8 +7940,8 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -7943,10 +7949,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7971,8 +7977,8 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730809747, - "price_normalized": "0.00000050", + "block_time": 1730814988, + "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000060", @@ -7983,10 +7989,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "tx_index": 18, "block_index": 131, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8011,8 +8017,8 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730809722, - "price_normalized": "0.00000001", + "block_time": 1730814962, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -8023,10 +8029,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8051,8 +8057,8 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730809718, - "price_normalized": "0.00000001", + "block_time": 1730814958, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -8063,10 +8069,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "tx_index": 10, "block_index": 125, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8091,8 +8097,8 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730809701, - "price_normalized": "0.00000001", + "block_time": 1730814938, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -8113,7 +8119,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address of the mints to return + + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8131,22 +8137,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8155,22 +8161,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", + "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809742, + "block_time": 1730814984, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8179,22 +8185,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", + "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", "tx_index": 20, "block_index": 133, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809728, + "block_time": 1730814971, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8203,22 +8209,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", + "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809725, + "block_time": 1730814967, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8227,22 +8233,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "263485eed907cb6a5e026620a237331cc432d53f2e45d13ae55175d7fe30e308", + "tx_hash": "ca0c585abf6677903f74e0c8408a3fae99a12236a94a5be695101c4d4361f3e5", "tx_index": 15, "block_index": 127, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809709, + "block_time": 1730814945, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8251,22 +8257,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8285,7 +8291,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address of the mints to return + + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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` @@ -8304,22 +8310,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8340,7 +8346,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0` (str, required) - The utxo to return + + utxo: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8360,8 +8366,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset_info": { "divisible": true, "asset_longname": null, @@ -8374,12 +8380,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8419,8 +8425,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will make the bet - + feed_address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will make the bet + + feed_address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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) @@ -8494,7 +8500,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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) @@ -8556,7 +8562,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8569,7 +8575,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101dffb2c358ebb66e47d30a00f08fc61bfefb12b48cffb3f61d94c104887ed8572000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a292ff47f19c650c7f1740c50698b7ba35d5352ade35e2c50d9675c49db5f9f479a5b38093e00881b710d6cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "020000000001018017f02235867208f1c66833e1c43299eb94926bb2c8dfcd8e9b80e5c25ba83f000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a29032e1f027b2812512e7f9e409806f85f57f40343b92b7733cec2338eb75f812661dfd2d1f61d47cd616cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8591,8 +8597,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending the payment - + order_match_id: `4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending the payment + + order_match_id: `620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93` (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) @@ -8650,24 +8656,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b031ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "data": "434e5452505254590b620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "020000000001013bad799111538665c5ae6edbd676ebd2338910be8fad21933d170ae4156bceb2000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a00000000000000004b6a496be606ceeeb8dfd059b44538e6e1463c2cf7d1156073392e23d54ccdfb6324b1495caee52feb96927265473543b84bf104c7d0ed9296fd7425eeadf46747eeb973a6edd980c5cb13705ba7052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "020000000001018a40f853ceb837a3fccf0064a9696352222c3c5fcc27415104441b7bcf60dbf3000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e8030000000000001600147f6fe9665382ab7ab49540720d8ea1467979382300000000000000004b6a49e22e8130265b6eb46363c3e3faed6c3c7f6f2022dd3fade405c416d278e5a9ee2914ce52696619dc95ef9cc95ce8358edabe9db89e734eb6efb606f330afd1a7f0e8771d4a5b2759995ba7052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "status": "valid" } } @@ -8680,7 +8686,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address with the BTC to burn + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -8741,7 +8747,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8752,7 +8758,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "02000000000101225beddaa73e2967910d6acd96282473b75a3ed87ed685552ba762feac7c4773000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000" + "rawtransaction": "0200000000010117b149307a2b0e5b12dbd3b350bc4926b7c457a490ca5b9a8ac227204532c824000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000" } } ``` @@ -8762,8 +8768,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93` (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) @@ -8821,22 +8827,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459461ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "data": "434e54525052545946cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101bf61a56dd39ed5364ab7ef507f45681084d6821d3f8a7c950a3e8977d524ab3d000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a29da3d4ea504f49fe3cc06b09006bb7e3b0f30171d1abb544f787aca363d587e2884e4546fa96410c0906cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "0200000000010139ece5a6daf4da1bb92ad80a9479a6a8878990cd5db85893dcf4cacbd546d302000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a2902e55eb492edcd684d3f2eb19fb203f279586b207067f9f56f1f04bd565daabe8125e969c7077d79656cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "status": "valid" } } @@ -8849,7 +8855,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -8910,7 +8916,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8930,7 +8936,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101f36ca70562ee4a2f6c18fb0511991b608d0397746848aadba68b4db7e5786af7000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000226a20517597411a4dd5b9fc38c7fd725df8a26f755fe769e8e205eabbd2646c743a757dbc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101b2ef7e28271d1b8b49e907b7831834ee719e92d895f9cf497e7810e60a1fa985000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000226a2035ebadb3b7163716017bde9cbeb0ad270926e374140fa16965a835bb925b6c377dbc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8950,7 +8956,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: `bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w` (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) @@ -9017,7 +9023,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9042,7 +9048,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "020000000001011d420e7b0e4b184ef9e46a39f28835b2d77fc8cbc5236b762dd14b80a86f78eb01000000160014cdd4d899318994115a60972e0d5bba8adecb9457ffffffff0200000000000000002c6a2a6620b22011f8d5855783bd4343e5412316d2dc198fc2e057ee765a612c911dc41b2ce2f1b7db83b5b8b3d5c9092701000000160014cdd4d899318994115a60972e0d5bba8adecb945702000000000000", + "rawtransaction": "020000000001013b833b4de8f0d14c0a3c54cac0a8fbe37f6c14a950b5e479e808f3412c1d551e010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25fffffffff0200000000000000002c6a2ab92d97d0e0c4293324fcd7b6d3199d2f287a6d0b3c9b66c212f22d2b2ad4d39a2e2f3f5e31cdbd058c2fd5c90927010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9068,7 +9074,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -9129,7 +9135,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9137,7 +9143,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -9156,7 +9162,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101fa218e50a6093053f0f1be29ac767695645b2b9d9fa5bd34b713eb01f997d645000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21f2e7ff3bccb2f0c017da6e13a445ce6209e57e9d2542ca91ae72d7aa30fa0629c442bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101cf363810cc6cf64ad6a0a195169a58ce97c56ee9b8a4156167de5c6ffc242349000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a217d9f92a51aaaa4c829a4428ce8e44c744dc359445c322a576f68a725075dcf6a7142bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9177,10 +9183,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -9247,10 +9253,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "transfer_destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "lock": false, "reset": false, @@ -9264,7 +9270,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101e7d6a7e7bbaa7afaa632fbc1ebbfcfc754228ef69be699afa1f2327a117d487e000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0322020000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a0000000000000000236a21e7e10da03ba949f22f43476e46603cde45fd20417662dd966f15887d1f1347234b51b2052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101b121b83c5e9404f1e58301f78c2b043ce2d84df8a5ad0a394fe00413ef537ea6000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0322020000000000001600147f6fe9665382ab7ab49540720d8ea146797938230000000000000000236a21cd226da658352e1dd07e24c038488f30c729adb834b84b660a6a36d42af75f59fc51b2052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9293,9 +9299,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu,bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9362,16 +9368,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", 1 ], [ "MPMASSET", - "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", 2 ] ], @@ -9380,26 +9386,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808a9c18e44852c20cdae290d6049d8ad6197f982340000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807f6fe9665382ab7ab49540720d8ea1467979382380d533872f3cd762df505e43deb7a9d2734007319d40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "0200000000010458be15f289df4071133783cf1c1ed3e2768a234803b8feb48928991b9fc024be000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff876b095a062457cb134333a8e47d539525539ebe92a832bb2228bfa0027bd149000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff12c40221baedf2b7a64a30c194f0f3ee21fd9e3da5bb3a63050f9e6b45374890000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff4221a7ee683c9523487251e23fbc44c1d12cdb29e14f30d40a460c398bef9cda000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000006951210217f2cc3bbde1e89bc278b4b68b0fba98aefacead03ef760459f2be122063d78f21024713ff6e020c87d763802137f89415d6df57a43432184d96a216ec8248abf077210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210308f2cc3bbde1e89bc2abb4b40b8447143c25a4ab54192df3e439f5adab930b1b2102b0097ee49e14639f31422ded1a04c3d242dd722d4d806ed6a216e961282334ae210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153ae66f216a8040000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000000000000", + "rawtransaction": "020000000001045ee860f841c0569f86d19b01ec6711472db5496f858af9132f2eca62ab8ca735000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffee18d5f5ae84c0399fbf792bdbf7ab7fdc510c068c6a40be76f397bf19e7de38000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff2b797c44b8694e7e217a4a8a3accda1b1cb29607a6cd6316b54daacca2a334d4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffea1a5ee27dc8f066819c331881e974659c7334530b016555be43242120b26eb4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e80300000000000069512102a04e8f8f6d8383f439d007ef5175c4388cc7fddb7705c0849a41a81e843377e72102680630e59982444e271abadf464e6e1619fa42f46057ce84f4dcfe0adbac6bbe21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee80300000000000069512102bf4e8f8f6d8383f4390307edd10aabd1eab07f700db155c4e84826bfc24a0e0a21025025b130aa056b72f078658f180db0a1b02831b4676653c4f4dcfbe9bb24af5f21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753ae66f216a8040000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9415,7 +9421,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -9479,7 +9485,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9497,7 +9503,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -9511,7 +9517,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "02000000000101b0893555ae8807501de63095f2b53863a51d7768a5aff0f2b58ebb66d3de5b9a000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000356a33f3bb5cf2945eb2ed3257d586edea273b59a863e8a1f6d71a02ee8d6c11f3e47aa2bc6ed831a6b99ef14b59ad7715720ff459e520b8052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "0200000000010138c342bf395cdf8c26dabf53339062b01c2eb0abea0c0f7a638ff4cc6eaafb4e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000356a33fba79fc250bafb2e30508455e8e114f0b29f929835841b52b97fac7e1d436d1090555e14c254873c72e16a527613fe16a4c0f420b8052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9537,8 +9543,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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 @@ -9604,8 +9610,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9622,19 +9628,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", + "data": "434e54525052545902000000000000000100000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "0200000000010171d6b30e0c80581a3fa43f6aa1fe2ac92980828de4db011efe630df1b64c891f000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000306a2e2816b2393cdd6248d0f9a147cd75fb5b2482aaff3c825143097e8d0958ab8061f5b8847c16a90fa8f29c30f36e9e46b9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "0200000000010147bdd6b0c16e67e6a092697cfe860efefbe5e581c3620e1cb94d46c72f9c0d7e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000306a2ede34b251d660efae25d706a8b88651654fcd92f3202d50a9989f5f5b866aeee9302e52f4956683764e468ce8f27346b9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "quantity_normalized": "0.00001000" } @@ -9648,8 +9654,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be sending - + destination: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending + + destination: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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 @@ -9709,24 +9715,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904808a9c18e44852c20cdae290d6049d8ad6197f982307ffff", + "data": "434e5452505254590480d533872f3cd762df505e43deb7a9d2734007319d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "0200000000010136efde72e0576fc71aea6444b4c301322c8fff3799186d0d67f511e73b967012000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21d08123bc12fb1a7c398242851a229a5e15e68159a408f2d212d34df3056d25716642bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101b8c28fb80188921a61ab4a8fea0607c10c7835291682b5e9489d8d3dd14c0344000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a214b9f209081dbbe9b89886d4957e05c88aa2332fa5f145b7c022461d03f311fb06742bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "flags": 7, "memo": "ffff" } @@ -9740,8 +9746,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: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s` (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` @@ -9800,8 +9806,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "quantity": 1000, "skip_validation": false }, @@ -9811,7 +9817,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "02000000000101467f71359d9460f9fecd1eb4649aee7f1f6934a3354f1dde44adcdc7ba54f4f6030000001600148a9c18e44852c20cdae290d6049d8ad6197f9823ffffffff03e803000000000000160014f6811e9837b88c1c4b4f9324cceb3e6c95db534b00000000000000000c6a0aa797acc097dfd9819e0c73250827010000001600148a9c18e44852c20cdae290d6049d8ad6197f982302000000000000", + "rawtransaction": "0200000000010132673017a967b2e1623fd09aa62e4f037b7eb1ebeedb10949065659f8732619003000000160014d533872f3cd762df505e43deb7a9d2734007319dffffffff03e8030000000000001600144a30b7f971594bc6d7dffb1ef3a31b6c6064169500000000000000000c6a0add3a4bcf7b1a9ea1b1457325082701000000160014d533872f3cd762df505e43deb7a9d2734007319d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9828,7 +9834,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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: `` @@ -9919,7 +9925,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9938,7 +9944,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "divisible": true, "description": "", "skip_validation": false, - "price_normalized": "0.00000010", + "price_normalized": "10.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", @@ -9951,7 +9957,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "02000000000101b7ca96eff788cde1b51e0499f00d6171db77bb0fd16a07391a4bc1d21543fafa000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000316a2fb91e1b4c98ee02128aa4194cdb4702ae460f3169fccbd2ad4c2f21905c673519defc94bfdc6002ac6ad535d076330e0bb9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101f4cd4fb47d5b0174369f70d6115e99b7643ed759c5c659348d6b5fd362c8c4ca000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000316a2f075edb58bf3db1ab50a9c6bb65a6a85960683ae765e0df2cf477be4d5beca548f282f766804b86d79bf87e278f1b7a0bb9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9973,7 +9979,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "lock_quantity": false, "divisible": true, "description": "", - "price_normalized": "0.00000010", + "price_normalized": "10.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", @@ -9990,7 +9996,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address that will be minting the asset + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -10051,14 +10057,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10070,7 +10076,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "02000000000101caa8d4d43d9dd37707e6bc7c9874fcf92c6f4ecef49f4a5256f3497018fcfb62000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000166a1424456f8814246c661bbef39812f6027818f142ac3ebf052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "020000000001011923f19e1932dacb8dcfd9167e7b5e8cad538ed0353dbd7b0ab7d702c0895a5b000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000166a144c2fabbba2484964b34b5a693b6d1ad64605217f3ebf052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10089,10 +10095,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: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address from which the assets are attached + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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: `1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1` (str, optional) - The utxo to attach the assets to + + destination: `cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10151,8 +10157,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10166,12 +10172,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c316563663639323938393263366431396262653563303538303832343138373965633063363739336534313661656365383037333964323737653664623630313a317c5843507c31303030", + "data": "434e54525052545964626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c636437353937303835633463336333303233396135623031336465363233366537366533653438373137653465313337646236656536666137636338646639333a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "020000000001064af97c3690a3f0cf6b7370271a37e282af29494ba26d0b1d96214bc5f9db9899000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff63e551a2dd0a24ec0d47c8d360f3d72c585717cad06f5f770ec54e0ab379f670000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71afffffffff8344e4cb55f939487f361dbd7e75e8b1f4bf506582fab780abc15b4664bbf18000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffbf69d39b750bb2538937ef38c9449f3a0b1d666c396392a90d3039fcd2f024b8000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffcef8c4131db7015edc622a51f6db575382c7590d704895b8ec8af197ab7f2c89000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff501773fc9b9291bf3749b90f0dd42750161265a0e4f430a66c0aa7d956e85986000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff04e8030000000000006951210265ba91e3d243cda2aa58322bde6d7daa08cc6cbb301a959115f33ddcf140555721032cfa50ab8e88749f7a30c65e8c21f1f8e76fd2f5eb28909d0a145be1bea40d53210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210365ba91e3d243cda2aa0568719e7a7abf0ac539ba30569ecc44ac7fddf3150e73210279fa5ef9988f7dc8213ac558dc75a6fab43fc0f9ad6cd6d85f430fb0edab5b30210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee803000000000000695121024fba91e3d243cda2aa5e66789d237da763bf0ba46453cdcc71944fe5c1213f7a210341cd679cfbbf1efe1603f63de844909bd15ca5c19d5be5e13b713887889d3fdb210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aebf6c22fc060000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106db945b92cfb2eca1800dded27810d809fc4a988ffb62acd10e413458d3c56737000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffde697e1109acfb31633a911a588b2000ff5839f3b4f41ea6578910f0c959f94d000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffd4922256cf5cc82dafdc5fc9e6cb053c9a30bee05d974526a60e688436de0394000000001600147f6fe9665382ab7ab49540720d8ea14679793823fffffffff7201a9db60784431f9a353aad7fa7ea8298d26c3b020b7948c423c252d132a9000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffb647d0bf7b905b7e54e3bd58defd71de535aa86456fa6285c8131cac8256dab8000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff54f6f9a87dab4870666e9d5d1ba0a9d3ed0c62a981be56a74dfbc6cc06a358c4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff04e803000000000000695121030817c07da58a3f44629992fe360746cc3c84f9d75cc0ecdcb262f504594be42f2103df65c402c74eeb9545ca5a2d77f15c42fc7e6c38b51b2858bba562f5386f768221027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121030817c07da58a3f4462c5c5fe701044de3fd5a3d30fc4b3d0f161f2080819af612103d834d1508046aac40195086928fe1f57bf23626ab2572641eea734f7623b7e0c21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121022217c07da58a3f44629996a4774946c154a6c19c0795b682c150c16c6d2f9da52103eb02b467b62399a135ad3f581f9b2b328e10550ed0614324d8c155c00158466b21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aebf6c22fc060000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10188,8 +10194,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: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to detach the assets to + + utxo: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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 @@ -10249,8 +10255,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -10264,12 +10270,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964353666306430373335643139653939653131383663646639363761386661353361356531336532373363623833626130626236636630643037666231313632353a307c626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c5843507c31303030", + "data": "434e54525052545964326130633638623263323639346433653764666334306336636239333631653835636534343964613664366633343238663938636636383836343062633833353a307c626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "02000000000103689faeb311ecfa80fcb9e636c017a198d4aadb67d65188b93b5d87a4fef82d7e01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff65b360a9784712f6c29cacd4f947f3037882cf8227921a1aeef741e9cf3142db00000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffffc40f7e74a17fbcdceb8f25e7abd0dba57ff8138e2d4299b69da40696b91f2dcf01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff04e80300000000000069512102b318430630aece23e31c22b156c51a6d6c628431e9ba8d53b24a001dd78997b7210228088b8da72744152e45818f748c332bacb53d917188ca52bd54d61df8e95cb021027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee80300000000000069512103b318430630aece23e31e27e300c2183f6a608767edb9d816e94c4358decec73921037c59d1dee92e111728028bde20836f2ffeb07f95788b9e52ef56821afbbc091c21027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee803000000000000695121029918430630aece23e34b60b346860b210312e129e9b3d85a8b2f312cefbff49221034c6eb2bb90467c734f70b2ee41e90218c9870aa212eaf261df35e67f9adf3f4321027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53ae76770b2701000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa02000002000002000000000000", + "rawtransaction": "02000000000103a21bc50f5cdd8b65aab1bad1f613bfff5b753d39e679f0fc363d632bdcd257b5010000001600141e3b253faedc160b8e01feea12afc01591194e93fffffffff09f234b4df5e2c9e152a8c34a34ead74e21d3ba11df52df88b7fe2eecb9d189000000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff6d8be49447adf2412d1ab0ee7159f4eaaaf04b6f065aecbfd3ce3a76d7793002010000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff04e80300000000000069512103a0082e44e6e7afb58e468b1d708015939b5ac17c3ff1c3964812460df6fc1184210254ba92e43dfebb13e8caea9174b38b0525ff8d8fc35d9dd3f35d49a1acc1d9352102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee80300000000000069512102a0082e44e6e7afb58e448f4478d5179b9b0b9a7d3cf2c78e1914031da1ee1504210305b193ed3aade656eb9bba9073af8b566cfe9dd4d55f8b87a21a19ade289c89f2102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee803000000000000695121028a082e44e6e7afb58e4c804a259948d7a12bf23238f8c7c27b777169909f2510210364d9a4875fc78825d9afd2a417d6bf311c9becb9a76bfbe0c76f71c795f9bab42102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53ae76770b27010000001600141e3b253faedc160b8e01feea12afc01591194e9302000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10338,8 +10344,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -10347,16 +10353,16 @@ Returns the valid assets "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", - "owner": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "owner": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "divisible": true, "locked": false, "supply": 100000000000, @@ -10364,16 +10370,16 @@ Returns the valid assets "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730810038, - "last_issuance_block_time": 1730810038, + "first_issuance_block_time": 1730815264, + "last_issuance_block_time": 1730815264, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -10381,16 +10387,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "owner": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "issuer": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "owner": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "divisible": true, "locked": false, "supply": 100000000000, @@ -10398,16 +10404,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730809864, - "last_issuance_block_time": 1730809864, + "first_issuance_block_time": 1730815086, + "last_issuance_block_time": 1730815086, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -10415,8 +10421,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" } ], @@ -10444,8 +10450,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -10453,8 +10459,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730809688, - "last_issuance_block_time": 1730809701, + "first_issuance_block_time": 1730814927, + "last_issuance_block_time": 1730814938, "supply_normalized": "100.00000000" } } @@ -10485,7 +10491,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10493,14 +10499,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10508,7 +10514,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10526,7 +10532,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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. @@ -10538,7 +10544,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -10592,9 +10598,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10611,7 +10617,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10634,14 +10640,14 @@ Returns the orders of an asset "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10658,7 +10664,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10681,14 +10687,14 @@ Returns the orders of an asset "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10705,7 +10711,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10728,14 +10734,14 @@ Returns the orders of an asset "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 60, - "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10752,7 +10758,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10775,14 +10781,14 @@ Returns the orders of an asset "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10799,7 +10805,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10822,8 +10828,8 @@ Returns the orders of an asset "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": 52, @@ -10863,13 +10869,13 @@ Returns the orders of an asset { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10883,7 +10889,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10903,13 +10909,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 52, - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10923,7 +10929,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10943,13 +10949,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", "tx0_index": 49, - "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 50, - "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10963,7 +10969,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10983,13 +10989,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11003,7 +11009,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11023,13 +11029,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -11043,7 +11049,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11123,20 +11129,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "event": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11144,20 +11150,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", + "event": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809701, + "block_time": 1730814938, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11165,20 +11171,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11186,20 +11192,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "event": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11211,16 +11217,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11280,12 +11286,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -11297,16 +11303,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -11318,16 +11324,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -11339,16 +11345,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -11360,16 +11366,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -11449,14 +11455,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", + "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -11471,20 +11477,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730809701, + "block_time": 1730814938, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -11499,20 +11505,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -11527,20 +11533,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -11555,7 +11561,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730809688, + "block_time": 1730814927, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11589,10 +11595,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11600,7 +11606,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -11613,10 +11619,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11624,7 +11630,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -11637,10 +11643,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 74, - "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "block_index": 207, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11648,7 +11654,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -11661,10 +11667,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11672,7 +11678,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -11685,10 +11691,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11696,7 +11702,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "divisible": true, "asset_longname": null, @@ -11747,9 +11753,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11758,17 +11764,18 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -11780,13 +11787,14 @@ Returns the dispensers of an asset "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 29, - "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", + "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", "block_index": 142, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11795,17 +11803,18 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809785, + "block_time": 1730815023, "asset_info": { "divisible": true, "asset_longname": null, @@ -11817,13 +11826,14 @@ Returns the dispensers of an asset "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 30, - "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", + "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", "block_index": 150, - "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", + "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11831,18 +11841,19 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 0, - "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "close_block_index": 150, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809837, + "block_time": 1730815057, "asset_info": { "divisible": true, "asset_longname": null, @@ -11854,32 +11865,34 @@ Returns the dispensers of an asset "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 33, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -11891,7 +11904,8 @@ Returns the dispensers of an asset "give_remaining_normalized": "0.00009268", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000016", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -11904,7 +11918,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - The address to return + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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` @@ -11917,9 +11931,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11928,17 +11942,18 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -11950,7 +11965,8 @@ Returns the dispenser of an address and an asset "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } } ``` @@ -11988,7 +12004,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11996,7 +12012,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12005,7 +12021,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12013,7 +12029,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12022,7 +12038,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12030,7 +12046,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12039,7 +12055,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12076,27 +12092,27 @@ Returns the dispenses of an asset { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12111,7 +12127,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -12125,27 +12141,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", + "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", "block_index": 147, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12160,7 +12176,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730809815, + "block_time": 1730815044, "asset_info": { "divisible": true, "asset_longname": null, @@ -12174,19 +12190,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12194,7 +12210,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12209,7 +12225,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -12223,19 +12239,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12243,7 +12259,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12258,7 +12274,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -12332,10 +12348,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "tx_index": 10, "block_index": 125, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12360,8 +12376,8 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730809701, - "price_normalized": "0.00000001", + "block_time": 1730814938, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -12400,22 +12416,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", + "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", "tx_index": 13, "block_index": 125, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809701, + "block_time": 1730814938, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12424,22 +12440,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12448,22 +12464,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12482,7 +12498,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6` (str, required) - The address of the mints to return + + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (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` @@ -12501,22 +12517,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -12569,9 +12585,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12588,7 +12604,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12611,14 +12627,14 @@ Returns all the orders "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 52, - "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "block_index": 187, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12635,7 +12651,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12658,14 +12674,14 @@ Returns all the orders "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12682,7 +12698,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12705,14 +12721,14 @@ Returns all the orders "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12729,7 +12745,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12752,14 +12768,14 @@ Returns all the orders "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 60, - "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12776,7 +12792,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12799,8 +12815,8 @@ Returns all the orders "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": 76, @@ -12813,7 +12829,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03` (str, required) - The hash of the transaction that created the order + + order_hash: `620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4` (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. @@ -12825,9 +12841,9 @@ Returns the information of an order { "result": { "tx_index": 54, - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "block_index": 210, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -12844,7 +12860,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12867,8 +12883,8 @@ Returns the information of an order "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } } ``` @@ -12878,7 +12894,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03` (str, required) - The hash of the transaction that created the order + + order_hash: `620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4` (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 @@ -12905,13 +12921,13 @@ Returns the order matches of an order { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12925,7 +12941,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12945,13 +12961,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -12965,7 +12981,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12985,13 +13001,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13005,7 +13021,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13035,7 +13051,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175` (str, required) - The hash of the transaction that created the order + + order_hash: `385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663` (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 @@ -13054,15 +13070,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "btc_amount": 2000, - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "status": "valid", "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "btc_amount_normalized": "0.00002000" } ], @@ -13106,9 +13122,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "block_index": 187, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13126,7 +13142,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730809971, + "block_time": 1730815205, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13152,9 +13168,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "block_index": 210, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -13172,7 +13188,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730810115, + "block_time": 1730815328, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13198,9 +13214,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13218,7 +13234,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13244,9 +13260,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13264,7 +13280,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13290,9 +13306,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13310,7 +13326,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13373,13 +13389,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13396,7 +13412,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13416,13 +13432,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 52, - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13439,7 +13455,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730809971, + "block_time": 1730815205, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13459,13 +13475,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13482,7 +13498,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13502,13 +13518,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", "tx0_index": 49, - "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 50, - "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13525,7 +13541,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730809903, + "block_time": 1730815126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13545,13 +13561,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13568,7 +13584,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13626,13 +13642,13 @@ Returns all the order matches { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13646,7 +13662,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13666,13 +13682,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 52, - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13686,7 +13702,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13706,13 +13722,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", "tx0_index": 49, - "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 50, - "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13726,7 +13742,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13746,13 +13762,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13766,7 +13782,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13786,13 +13802,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13806,7 +13822,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13974,66 +13990,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", + "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", "block_index": 121, - "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", + "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730809684, + "block_time": 1730814922, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "9cdfbeb6e7c77a7a98300dad36fefe08d1ed94ef8d9d84b24118b8eeb9a8e712", + "tx_hash": "6c5d5de4a45d374a9e7e8b39e7655c5229ef815ea661ad9f71cf4eb8935ae729", "block_index": 120, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730809680, + "block_time": 1730814919, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "372f224b97c859b86dce204bf93a9b5fa36f005c57e7310ba57b3aba401dc0b7", + "tx_hash": "ab82779227e9a373afa751fbe46629179c0a567c9251bc34a289d75a82383573", "block_index": 119, - "source": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9", + "source": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730809677, + "block_time": 1730814915, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8ed2ecd4c265013d1580174b734b3cd125419219038e42d9de5318d1b3bc266f", + "tx_hash": "b7e759cba65e5066d59edc941bc6a53bde9feae3b1d854ba6ed335fe6a18a528", "block_index": 118, - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730809674, + "block_time": 1730814911, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0faf4c2e5517b6eb8fde2d128037829b95beeddfcbb1a139fcdb8d16027e0a72", + "tx_hash": "d0854e63c8720442ecb862287f6d9f79f569382ec5695f7bf2b557ec2d7e9b6d", "block_index": 117, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730809669, + "block_time": 1730814907, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -14078,9 +14094,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14089,17 +14105,18 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -14111,13 +14128,14 @@ Returns all dispensers "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 29, - "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", + "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", "block_index": 142, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14126,17 +14144,18 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809785, + "block_time": 1730815023, "asset_info": { "divisible": true, "asset_longname": null, @@ -14148,13 +14167,14 @@ Returns all dispensers "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 30, - "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", + "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", "block_index": 150, - "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", + "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14162,18 +14182,19 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 0, - "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "close_block_index": 150, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809837, + "block_time": 1730815057, "asset_info": { "divisible": true, "asset_longname": null, @@ -14185,13 +14206,14 @@ Returns all dispensers "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 64, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14200,21 +14222,22 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -14222,32 +14245,34 @@ Returns all dispensers "give_remaining_normalized": "0.00006000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 33, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -14259,7 +14284,8 @@ Returns all dispensers "give_remaining_normalized": "0.00009268", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000016", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -14272,7 +14298,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c` (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. @@ -14284,9 +14310,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14295,17 +14321,18 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -14317,7 +14344,8 @@ Returns the dispenser information by tx_hash "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } } ``` @@ -14327,7 +14355,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c` (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 @@ -14347,19 +14375,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14367,7 +14395,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14382,7 +14410,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -14396,19 +14424,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14416,7 +14444,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14431,7 +14459,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -14473,20 +14501,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -14511,7 +14539,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23` (str, required) - The hash of the dividend to return + + dividend_hash: `1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef` (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. @@ -14523,20 +14551,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -14558,7 +14586,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef` (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 @@ -14581,12 +14609,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "tx_index": 41, - "utxo": "d796cd1db89516aab5f3c3aac3782b9748abc2869b5bb4e40e9eab474c0f5c92:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "a786ebbcef73d52585b1012e1f21ce6dbef3b78d4e0240e7a15a76fdb84b61de:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "divisible": true, "asset_longname": null, @@ -14598,16 +14626,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", + "address": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "divisible": true, "asset_longname": null, @@ -14653,27 +14681,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 694, @@ -14682,14 +14710,14 @@ Returns all events "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -14700,9 +14728,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 693, @@ -14711,9 +14739,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -14723,24 +14751,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -14750,9 +14778,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 691, @@ -14780,15 +14808,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } } ``` @@ -14866,16 +14894,16 @@ Returns the events filtered by event name "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -14885,9 +14913,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 690, @@ -14897,12 +14925,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -14912,9 +14940,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 687, @@ -14924,39 +14952,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -14966,24 +14994,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00003000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -14993,9 +15021,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_time": 1730810101 + "block_time": 1730815312 } ], "next_cursor": 656, @@ -15051,27 +15079,27 @@ Returns all the dispenses { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15086,7 +15114,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -15100,19 +15128,19 @@ Returns all the dispenses { "tx_index": 65, "dispense_index": 0, - "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", + "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15120,7 +15148,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15135,11 +15163,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -15149,27 +15177,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", + "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", "block_index": 147, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15184,7 +15212,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730809815, + "block_time": 1730815044, "asset_info": { "divisible": true, "asset_longname": null, @@ -15198,19 +15226,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15218,7 +15246,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15233,7 +15261,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -15247,19 +15275,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15267,7 +15295,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15282,7 +15310,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -15324,10 +15352,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -15335,7 +15363,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -15348,10 +15376,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -15359,11 +15387,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -15372,10 +15400,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15383,7 +15411,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -15396,10 +15424,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15407,11 +15435,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -15420,10 +15448,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15431,11 +15459,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -15486,14 +15514,14 @@ Returns all the issuances "result": [ { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -15508,20 +15536,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "e7077d8a8a933b7047e3402cb8a39b0cae833dd9e7f5ff11a920bda3767ffce1", + "tx_hash": "29bc5c4992ab2801c3ef43e6c67dd0da8c60ff295a174c149f68cd4f2c32fe44", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", - "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "transfer": false, "callable": false, "call_date": 0, @@ -15536,20 +15564,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810038, + "block_time": 1730815264, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", + "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -15564,20 +15592,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809879, + "block_time": 1730815111, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", + "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -15592,20 +15620,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730809875, + "block_time": 1730815107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", + "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -15620,7 +15648,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809872, + "block_time": 1730815104, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15635,7 +15663,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d` (str, required) - The hash of the transaction to return + + tx_hash: `f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc` (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. @@ -15647,14 +15675,14 @@ Returns the issuances of a block { "result": { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -15669,7 +15697,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15701,16 +15729,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -15724,7 +15752,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c` (str, required) - The hash of the transaction to return + + tx_hash: `52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f` (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. @@ -15737,16 +15765,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -15780,9 +15808,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15790,14 +15818,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809760, + "block_time": 1730814999, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", + "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", "block_index": 137, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15805,7 +15833,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809755, + "block_time": 1730814996, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15819,7 +15847,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45` (str, required) - The hash of the transaction to return + + tx_hash: `f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b` (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. @@ -15831,9 +15859,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15841,7 +15869,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809760, + "block_time": 1730814999, "fee_fraction_int_normalized": "0.00000000" } } @@ -15878,10 +15906,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15906,8 +15934,8 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -15915,10 +15943,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15943,8 +15971,8 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730809747, - "price_normalized": "0.00000050", + "block_time": 1730814988, + "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000060", @@ -15955,10 +15983,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "tx_index": 18, "block_index": 131, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15983,8 +16011,8 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730809722, - "price_normalized": "0.00000001", + "block_time": 1730814962, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -15995,10 +16023,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -16023,8 +16051,8 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730809718, - "price_normalized": "0.00000001", + "block_time": 1730814958, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -16035,10 +16063,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "tx_index": 10, "block_index": 125, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -16063,8 +16091,8 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730809701, - "price_normalized": "0.00000001", + "block_time": 1730814938, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -16132,22 +16160,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -16156,22 +16184,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", + "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809742, + "block_time": 1730814984, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -16180,22 +16208,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", + "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", "tx_index": 20, "block_index": 133, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809728, + "block_time": 1730814971, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -16204,22 +16232,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", + "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809725, + "block_time": 1730814967, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -16228,22 +16256,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0a1cb229ccebe973b679aad8fb8699dc9c8b3723e2ae1735a98d06420499b318", + "tx_hash": "245d76ac2bac5f99c58866cfeb27c8e3571cc13c9e019fd018bb443df46130a3", "tx_index": 17, "block_index": 129, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809715, + "block_time": 1730814954, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -16262,7 +16290,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe` (str, required) - The hash of the fairmint to return + + tx_hash: `d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16273,22 +16301,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -16306,7 +16334,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6,bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9` (str, required) - The addresses to search for + + addresses: `bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w,bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff` (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. @@ -16320,22 +16348,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa", - "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" + "amount": 49.499345, + "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b", + "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" }, { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d", - "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" + "amount": 5.46e-05, + "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585", + "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" }, { "vout": 2, @@ -16343,8 +16371,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215", - "address": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9" + "txid": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4", + "address": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff" } ], "next_cursor": null, @@ -16357,7 +16385,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e` (str, required) - The address to search for + + address: `bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd` (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 @@ -16373,31 +16401,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" + "tx_hash": "1cf93eaecf80fee38f282708e49be0e972b4526e9c5ad72ec822cd570f63eb06" }, { - "tx_hash": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d" + "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c" }, { - "tx_hash": "155214cde54155ad9f22f9401e297430884c73e57da9693a55376c941df0b333" + "tx_hash": "e37f8aa66f2894997ea5795928c5e29bf8d9b94109f97d0d8f28c7cd04598c25" }, { - "tx_hash": "9c05cf48db05c2a1a61d802e9ed24385872f68e888b28ecb075c2f039a67f851" + "tx_hash": "561135f903b3cfe5dbd6bc6bf6729eea4268a1075e009865119f0212c704072e" }, { - "tx_hash": "dcaa6acc1d5feb408823e8e4a970292b42ca77021cdfe06397828f0e42d80166" + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f" }, { - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c" + "tx_hash": "792827d3afb74c45f7a681503c2f51e26c2d12400c0e86eeea745a5bfbf01d5d" }, { - "tx_hash": "8c731c5ac1e94f8978aa69e55cca9f8a6ff5a0d14c462ab1475b1b87a07889a1" + "tx_hash": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8" }, { - "tx_hash": "af9c59991017c568be76110e3d45e950452378a2d55210f69558fb099f3fd8bf" + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" }, { - "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4" + "tx_hash": "80d23748c8c9e7860f9d0193b861b38c7a820b25f2fb8f606fc7561fb12b96f9" } ], "next_cursor": null, @@ -16410,7 +16438,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w` (str, required) - The address to search for. + + address: `bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2` (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. @@ -16423,8 +16451,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 5, - "tx_hash": "5bc96b88246c6e1efef6344274ceb58e42ca761aac372b68b451b002061eb170" + "block_index": 6, + "tx_hash": "93fa0e493eefe1d4b855ed4e2aa6b6afe1f9261f63fdfe6b53442aee181e223a" } } ``` @@ -16434,7 +16462,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6` (str, required) - The address to search for + + address: `bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w` (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 @@ -16450,20 +16478,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa" + "amount": 49.499345, + "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b" }, { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d" + "amount": 5.46e-05, + "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585" } ], "next_cursor": null, @@ -16476,7 +16504,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu` (str, required) - Address to get pubkey for. + + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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. @@ -16488,7 +16516,7 @@ Get pubkey for an address. ``` { - "result": "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" + "result": "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" } ``` @@ -16497,7 +16525,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625` (str, required) - The transaction hash + + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (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. @@ -16509,7 +16537,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010115a285033f8b1881954b6493d6b70007a36304c3f76b94674fd915f9ff199d660100000000ffffffff03e803000000000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa00000000000000000c6a0aaf8db67dd27f504f06ebeb140927010000001600149d9b6a9f2ea9c21b09081f10701535115b764f9702473044022062301d8deb93198293864ae2459c469132a83e21cd88073bc6f8c1e8b2abb4f002207ee31d16a156d1c1bf738e84da22d3f676fe4420888a985ebc864d8cfaef1c500121027f48f7b23d5afb56a3fd9df18d4bd18fa8128f20ba8e2a8a7a8a151393d3db1900000000" + "result": "02000000000101b48666cefd466f79a3d15bf814096f990dc492394bad3fc32b9a05bb9485a7770100000000ffffffff03e8030000000000001600141e3b253faedc160b8e01feea12afc01591194e9300000000000000000c6a0af440a74b8610ff8c1f4aeb140927010000001600145d2f62d2b47bd9b2fd83ab8a11e6bd825c54c1430247304402207b3abd99e749c9ad380900801266580250d2cba1d3ab53081f94bdc4b60c134902203f1b636047b9335a4c7355cf8a774e94b7b34e0e0b3cddc53daaea22f21550e7012102266210940cb1609912dc497cd1c1591851135e1fa766e4225851b402b6caf07500000000" } ``` @@ -16604,27 +16632,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78 }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "quantity": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, "asset_info": { "divisible": true, @@ -16635,22 +16663,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -16660,22 +16688,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "block_index": 210, - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -16685,30 +16713,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730810118.4794593, + "block_time": 1730815333.0180326, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "destination": "", "fee": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, - "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", + "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -16722,7 +16750,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -16753,19 +16781,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -16775,7 +16803,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -16788,7 +16816,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39` (str, required) - The hash of the transaction to return + + tx_hash: `b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58` (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 @@ -16808,27 +16836,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78 }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "quantity": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, "asset_info": { "divisible": true, @@ -16839,22 +16867,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -16864,22 +16892,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "block_index": 210, - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -16889,30 +16917,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730810118.4794593, + "block_time": 1730815333.0180326, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "destination": "", "fee": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, - "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", + "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -16926,7 +16954,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index c17656aae8..b401241422 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -112,6 +112,7 @@ "give_remaining", "dispense_count", "satoshirate", + "price", ], } @@ -1892,6 +1893,9 @@ def prepare_dispenser_where(status, other_conditions=None): return where +SELECT_DISPENSERS = "*, (satoshirate * 1.0) / (give_quantity * 1.0) AS price" + + def get_dispensers( db, status: DispenserStatus = "all", @@ -1917,6 +1921,7 @@ def get_dispensers( limit=limit, offset=offset, sort=sort, + select=SELECT_DISPENSERS, ) @@ -1946,6 +1951,7 @@ def get_dispensers_by_address( limit=limit, offset=offset, sort=sort, + select=SELECT_DISPENSERS, ) @@ -1975,6 +1981,7 @@ def get_dispensers_by_asset( limit=limit, offset=offset, sort=sort, + select=SELECT_DISPENSERS, ) @@ -1989,6 +1996,7 @@ def get_dispenser_by_address_and_asset(db, address: str, asset: str): db, "dispensers", where={"source": address, "asset": asset.upper()}, + select=SELECT_DISPENSERS, ) @@ -2706,6 +2714,7 @@ def get_dispenser_info_by_hash(db, dispenser_hash: str): db, "dispensers", where={"tx_hash": dispenser_hash}, + select=SELECT_DISPENSERS, ) diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index 4ed5717e92..0444df3891 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -303,6 +303,11 @@ def divide(value1, value2): return D(value1) / D(value2) +def normalize_price(value): + decimal.getcontext().prec = 16 + return "{0:.16f}".format(D(value)) + + def inject_issuances_and_block_times(db, result_list): asset_fields = [ "asset", @@ -424,8 +429,9 @@ def inject_normalized_quantity(item, field_name, asset_info): return item if item[field_name] is not None: - if field_name in ["give_price", "get_price"]: - item[field_name + "_normalized"] = divide(item[field_name], 1) + if field_name in ["give_price", "get_price", "price"]: + # use 16 decimal places for prices + item[field_name + "_normalized"] = normalize_price(item[field_name]) else: item[field_name + "_normalized"] = ( divide(item[field_name], 10**8) diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py index 241aa973a9..64c85b3a04 100644 --- a/counterparty-core/counterpartycore/test/api_v2_test.py +++ b/counterparty-core/counterpartycore/test/api_v2_test.py @@ -484,6 +484,7 @@ def test_asset_dispensers(): "oracle_address": None, "last_status_tx_hash": None, "origin": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", + "price": 1.0, "dispense_count": 0, "last_status_tx_source": None, "close_block_index": None, @@ -514,6 +515,7 @@ def test_asset_dispensers(): "oracle_address": None, "last_status_tx_hash": None, "origin": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", + "price": 1.0, "dispense_count": 0, "last_status_tx_source": None, "close_block_index": None, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index b1799d49eb..e11601163c 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -3200,6 +3200,7 @@ "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, @@ -3218,7 +3219,8 @@ "give_remaining_normalized": "0.00000100", "escrow_quantity_normalized": "0.00000100", "satoshirate_normalized": "0.00000100", - "satoshi_price_normalized": "0.00000100" + "satoshi_price_normalized": "0.00000100", + "price_normalized": "1.0000000000000000" } }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/dispenses/sends?verbose=true": { @@ -4528,8 +4530,8 @@ "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "0.00800000", - "get_price_normalized": "125.00000000" + "give_price_normalized": "0.0080000000000000", + "get_price_normalized": "125.0000000000000000" }, { "tx_index": 12, @@ -4575,8 +4577,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.01000000", - "give_price_normalized": "149.99993000", - "get_price_normalized": "0.00666667" + "give_price_normalized": "149.9999250000375071", + "get_price_normalized": "0.0066666700000000" }, { "tx_index": 11, @@ -4622,8 +4624,8 @@ "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "0.01000000", - "get_price_normalized": "100.00000000" + "give_price_normalized": "0.0100000000000000", + "get_price_normalized": "100.0000000000000000" }, { "tx_index": 10, @@ -4669,8 +4671,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 7, @@ -4716,8 +4718,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -5390,6 +5392,7 @@ "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, @@ -5408,7 +5411,8 @@ "give_remaining_normalized": "0.00000100", "escrow_quantity_normalized": "0.00000100", "satoshirate_normalized": "0.00000100", - "satoshi_price_normalized": "0.00000100" + "satoshi_price_normalized": "0.00000100", + "price_normalized": "1.0000000000000000" } }, "http://localhost:10009/v2/assets/NODIVISIBLE/holders?verbose=true": { @@ -5534,8 +5538,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00992800", - "give_price_normalized": "125.00000000", - "get_price_normalized": "0.00800000" + "give_price_normalized": "125.0000000000000000", + "get_price_normalized": "0.0080000000000000" }, { "tx_index": 492, @@ -5581,8 +5585,8 @@ "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "0.00800000", - "get_price_normalized": "125.00000000" + "give_price_normalized": "0.0080000000000000", + "get_price_normalized": "125.0000000000000000" }, { "tx_index": 12, @@ -5628,8 +5632,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.01000000", - "give_price_normalized": "149.99993000", - "get_price_normalized": "0.00666667" + "give_price_normalized": "149.9999250000375071", + "get_price_normalized": "0.0066666700000000" }, { "tx_index": 11, @@ -5675,8 +5679,8 @@ "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "0.01000000", - "get_price_normalized": "100.00000000" + "give_price_normalized": "0.0100000000000000", + "get_price_normalized": "100.0000000000000000" }, { "tx_index": 10, @@ -5722,8 +5726,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 7, @@ -5769,8 +5773,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -5821,8 +5825,8 @@ "fee_required_normalized": "0.00900000", "fee_required_remaining_normalized": "0.00900000", "fee_provided_remaining_normalized": "0.00006800", - "give_price_normalized": "0.00800000", - "get_price_normalized": "125.00000000" + "give_price_normalized": "0.0080000000000000", + "get_price_normalized": "125.0000000000000000" } }, "http://localhost:10009/v2/orders/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498/matches?verbose=true": { @@ -6159,6 +6163,7 @@ "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, @@ -6177,7 +6182,8 @@ "give_remaining_normalized": "100", "escrow_quantity_normalized": "100", "satoshirate_normalized": "0.00000100", - "satoshi_price_normalized": "0.00000100" + "satoshi_price_normalized": "0.00000100", + "price_normalized": "1.0000000000000000" }, { "tx_index": 108, @@ -6196,6 +6202,7 @@ "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, @@ -6214,7 +6221,8 @@ "give_remaining_normalized": "0.00000100", "escrow_quantity_normalized": "0.00000100", "satoshirate_normalized": "0.00000100", - "satoshi_price_normalized": "0.00000100" + "satoshi_price_normalized": "0.00000100", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -6238,6 +6246,7 @@ "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, @@ -6256,7 +6265,8 @@ "give_remaining_normalized": "0.00000100", "escrow_quantity_normalized": "0.00000100", "satoshirate_normalized": "0.00000100", - "satoshi_price_normalized": "0.00000100" + "satoshi_price_normalized": "0.00000100", + "price_normalized": "1.0000000000000000" } }, "http://localhost:10009/v2/dispensers/9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec/dispenses?verbose=true": { diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 944db25416..a8a4a3a73e 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": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", "difficulty": 545259519, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "previous_block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "previous_block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", "difficulty": 545259519, - "ledger_hash": "fa863f767a1ec7aff30b3d50f18afc458d2d38eee301eaf31ca4594fcfb1700a", - "txlist_hash": "87ed16845085e4fac7eb0248c5d98e80b9aa226a7defbe57601a75e4b618cc52", - "messages_hash": "574fe5babf94a16cf8ad5c70d4330a3b97678ad7f65989ff3eb7fba5728acfe5", + "ledger_hash": "4f8ec7521eb079fc7651868cfb0e091d56cb9a946781741224a0b21045fe3f08", + "txlist_hash": "e5088fbc9436f1733f83b3116d0a90fb8bb0bb4fb592aa6bbbd6b1d6a3959153", + "messages_hash": "305efc93cd4fc24a5f5acbf52cb0a11d74687f4b46a213ce0cc00cd70c251c89", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", - "block_time": 1730810101, - "previous_block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", + "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_time": 1730815312, + "previous_block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", "difficulty": 545259519, - "ledger_hash": "82cdb11101b7d3eaff8fa83af3df7ada9140fa18e99fddfb0e50063b1ac19bdf", - "txlist_hash": "5ae691bb7181741f4945cf3ec2b62be06d936b9f4e46c859d4195cdbfecf8cde", - "messages_hash": "fbebad60f42b702ad0b50cb2a0ff93af9f0747c7cf849cc6d0c48424cb311194", + "ledger_hash": "ac49b220ad7ebca61cfa89d8e3ad61724cc7b02f449c815f732c05eba38be416", + "txlist_hash": "91e3ce6d6848aee4c67f2a51cec38c4ddfef1927fc06f23aaeba105187d52941", + "messages_hash": "ab230dd234a477a9d8fed8c39f5357e9f7be5cf52dcbb3e3051b7db8b0be0e46", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", - "block_time": 1730810097, - "previous_block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", + "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", + "block_time": 1730815307, + "previous_block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", "difficulty": 545259519, - "ledger_hash": "4b19ce525f7c47bd15da4d84b8c12b9eb833435441d7ab94f69fccc11a64fca0", - "txlist_hash": "e445f4e045e1572d476cf0b28fbd646147bc9c82d65569cbe884d9af2a0a21be", - "messages_hash": "6b102244e88f6d30a48b00ce6523a39cab9dc33d899952fbba74b017a5b077da", + "ledger_hash": "c5a362d8ca3b4e3f105e20edf23add9475523d4b434aa409271b7246fc0c6eaa", + "txlist_hash": "49bb59b65fcab0a3644d337af67945ae3eec864306b3aa1b46979407fc927944", + "messages_hash": "ec1ca9b4459dc9cdcc751a118f641e718f90c6dc8956441b7ce5a24e4a1f0bba", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", - "block_time": 1730810093, - "previous_block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", + "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_time": 1730815303, + "previous_block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", "difficulty": 545259519, - "ledger_hash": "396e9da473d68e63408d43d85b99daa35f6089406459bd7a742bea482c7f916c", - "txlist_hash": "1b744275c22796f23817d67f481a22cc224d7d8e1d3933ada8ef2a1ad6003ba0", - "messages_hash": "4b5aac3bfbb71de10a81527d40fd8b66e2a3eb3795ce8e25c90034911de61da2", + "ledger_hash": "cbbf765e3f0de039e1b923d3c657023d20fa8674d7af665ad037520ce65debf3", + "txlist_hash": "35cedfac328fc7f2e6b7c51bf6a774c0be6d0189d5172b86d146a19ebe1d95c1", + "messages_hash": "fb5ce0e3b6ffa98c6199e293927b7145d7f72112365e4493bf728f64d08590c5", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", "difficulty": 545259519, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", "difficulty": 545259519, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 694, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 693, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" } ], "next_cursor": 691, @@ -256,16 +256,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 690, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" }, { "event_index": 687, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625" + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 210, - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "object_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "block_index": 210, "confirmed": true, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "status": "valid", "confirmed": true, - "block_time": 1730810003 + "block_time": 1730815238 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 62, - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "block_index": 196, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730810023, + "block_time": 1730815251, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,8 +697,8 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,7 +816,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "8c3309c5737147ca542db19d835d97753d8621e801a55b21ed6ac230cbbf68e3", + "hash": "3261e18b3eae2ddf8bdea39bd034853a7cbe9bbc4fdbd311e0c5845dc89e3164", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a3388c6c523f588bc4ff80728f676effb4c3fd787b4b77b30cd83934063dd10df5adc283859389ee493993748989da810da578b43" + "script_pub_key": "6a338802082addd0ade1c547e48654fe75eaf429a87839ca41eafed5cf343c4092d7821bc14c42f838aad0eb8cf0dc41cbb7b1a641" }, { "value": 4999990000, - "script_pub_key": "00148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a" + "script_pub_key": "00147f6fe9665382ab7ab49540720d8ea14679793823" } ], "vtxinwit": [ - "304402203de657371ca5dd5866465047570cc056e07bd0d4ff438b9cd8515e0eb554858302206a76adcf234fbc4c49cb65fcf10be05ea23ba2f333c6a53c870fb29a7fdfcb3701", - "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" + "3044022013b664bb39a587ae8e8d55da46915fdc453437c1c3d8225433ea8d3a3e5a7f3a02204fe2e9d7af41d973ae853052d4d7ac8140dcf85005e2f266a75288a2c6fa01f901", + "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" ], "lock_time": 0, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx_id": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601" + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_id": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "925c0f4c47ab9e0ee4b45b9b86c2ab48972b78c3aac3f3b5aa1695b81dcd96d7", + "hash": "de614bb8fd765aa1e740024e8db7f3be6dce211f2e01b18525d573efbceb86a7", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e5cef4840b91e11ceb0e64ca8558eff6303f73545fd8c12e4fb97cef6309bab3f8513b4b6c0ca884b704df5626316" + "script_pub_key": "6a2e90c76a9673d624468a6c4435f080f320b3428ac2189aeec1ea0100851be836f1c342fa2b141e23a1b307844f0395" }, { "value": 4999970000, - "script_pub_key": "0014f6811e9837b88c1c4b4f9324cceb3e6c95db534b" + "script_pub_key": "00144a30b7f971594bc6d7dffb1ef3a31b6c60641695" } ], "vtxinwit": [ - "30440220087c163eb4412833e338a4bd68ae6833d3f75c5e5cb36627c976b187bfa3135902203154b59af84fe7a2702c68ee920fa43fa03b390f658fbd33c64a36fa96f5581401", - "02fa96e8629ffb83d4a03ad1334f4f1734cd3c290d310037cc58e298810e7235ed" + "3044022024718b8861d1f4af30576aa6fe16d52dd56f58a4c9ce9d609c210dc87bf2089f02203e36d8e85b01a4d909ecbbbd727630045437bdd44f7b949b71ac96a056f1c7a301", + "0342812158a90261b26d3f9549abf087fa115869e7e2156559c056675af21ca08a" ], "lock_time": 0, - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", - "tx_id": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39" + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_id": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", - "block_time": 1730810115, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_time": 1730815328, + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 694, @@ -1024,14 +1024,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 693, @@ -1053,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 691, @@ -1102,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "msg_index": 1, "quantity": 1500000000, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", "status": "valid", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1119,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 690, @@ -1134,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 694, @@ -1148,14 +1148,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 693, @@ -1177,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 691, @@ -1226,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "msg_index": 1, "quantity": 1500000000, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", "status": "valid", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1243,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 690, @@ -1255,10 +1255,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1279,10 @@ }, { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1310,27 +1310,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1366,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 690, @@ -1397,12 +1397,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1412,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 687, @@ -1424,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": null, @@ -1453,16 +1453,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 690, @@ -1484,12 +1484,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1499,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 687, @@ -1511,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1670,17 +1670,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1716,17 @@ }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_hash": "5a95a07821cd0f9187bfc08bab2b0564a81cebb525f1e844786bb375f403e145", - "block_time": 1730810101, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_time": 1730815312, + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46:0", + "utxos_info": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1768,17 @@ }, { "tx_index": 74, - "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "block_index": 207, - "block_hash": "3af882a435fe35ad3fe8a2d92f237553c295d31796e4b7d84bd8daeb28d98967", - "block_time": 1730810097, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", + "block_time": 1730815307, + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534bc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c60641695c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70:0", + "utxos_info": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1820,17 @@ }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", - "block_time": 1730810093, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_time": 1730815303, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", + "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1872,17 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", - "block_time": 1730810088, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", + "block_time": 1730815299, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", + "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1938,20 +1938,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 54, - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx1_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -1970,9 +1970,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 675, @@ -1991,11 +1991,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "open", - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -2019,24 +2019,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "block_index": 209, - "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,9 +2046,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 673, @@ -2060,20 +2060,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "tx0_index": 60, - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx1_index": 54, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -2092,23 +2092,23 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "block_time": 1730810105 + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_time": 1730815315 }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 668, @@ -2117,17 +2117,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "quantity": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, "asset_info": { "divisible": true, @@ -2138,22 +2138,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2163,22 +2163,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "block_index": 210, - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -2188,30 +2188,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730810118.4794593, + "block_time": 1730815333.0180326, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "destination": "", "fee": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, - "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", + "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -2225,7 +2225,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -2234,7 +2234,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2242,14 +2242,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2257,14 +2257,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2272,14 +2272,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2294,7 +2294,7 @@ "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2302,7 +2302,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2315,7 +2315,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -2337,16 +2337,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -2358,16 +2358,16 @@ }, { "block_index": 208, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -2379,16 +2379,16 @@ }, { "block_index": 207, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -2400,16 +2400,16 @@ }, { "block_index": 207, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -2421,20 +2421,20 @@ }, { "block_index": 203, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "event": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2448,16 +2448,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -2469,16 +2469,16 @@ }, { "block_index": 206, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -2490,20 +2490,20 @@ }, { "block_index": 206, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2511,16 +2511,16 @@ }, { "block_index": 205, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "divisible": true, "asset_longname": null, @@ -2532,20 +2532,20 @@ }, { "block_index": 205, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2564,9 +2564,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", + "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", "block_index": 137, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2574,7 +2574,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809755, + "block_time": 1730814996, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2585,14 +2585,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "6ba0d3fcf7c02e433d201c2ce80a5fa7e122af150032da86c2116381f334e537", + "tx_hash": "7cc5672c094deda5d41dc47ebec6556934227559b084cfdc84dde8ee8a3778b6", "block_index": 112, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730809651, + "block_time": 1730814893, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2604,10 +2604,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2615,7 +2615,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -2628,10 +2628,10 @@ }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2639,11 +2639,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2652,10 +2652,10 @@ }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2663,11 +2663,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2676,10 +2676,10 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2687,7 +2687,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "divisible": true, "asset_longname": null, @@ -2700,10 +2700,10 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2711,11 +2711,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2730,10 +2730,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", + "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", "block_index": 151, - "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", - "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", + "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", + "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2741,11 +2741,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730809840, + "block_time": 1730815061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2760,10 +2760,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2771,11 +2771,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2784,10 +2784,10 @@ }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2795,11 +2795,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2808,10 +2808,10 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2819,11 +2819,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2832,10 +2832,10 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2843,11 +2843,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2856,10 +2856,10 @@ }, { "tx_index": 71, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2867,11 +2867,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810074, + "block_time": 1730815285, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2891,9 +2891,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2902,17 +2902,18 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -2924,13 +2925,14 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 64, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2939,21 +2941,22 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -2961,7 +2964,8 @@ "give_remaining_normalized": "0.00006000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -2970,9 +2974,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2981,17 +2985,18 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -3003,7 +3008,8 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } }, "/v2/addresses/
/dispenses/sends": { @@ -3011,19 +3017,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", + "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3031,7 +3037,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3046,11 +3052,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -3060,19 +3066,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3080,7 +3086,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3095,7 +3101,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -3109,19 +3115,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3129,7 +3135,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3144,7 +3150,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -3164,19 +3170,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", + "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3184,7 +3190,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3199,11 +3205,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -3213,19 +3219,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3233,7 +3239,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3248,7 +3254,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -3262,19 +3268,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3282,7 +3288,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3297,7 +3303,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -3317,19 +3323,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3337,7 +3343,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3352,7 +3358,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -3366,19 +3372,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3386,7 +3392,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3401,7 +3407,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -3421,19 +3427,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3441,7 +3447,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3456,7 +3462,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -3470,19 +3476,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3490,7 +3496,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3505,7 +3511,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -3524,16 +3530,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -3544,14 +3550,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -3566,20 +3572,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", + "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -3594,20 +3600,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809879, + "block_time": 1730815111, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", + "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -3622,20 +3628,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730809875, + "block_time": 1730815107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", + "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -3650,20 +3656,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809872, + "block_time": 1730815104, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "49c9963d6f64cf86ca63534109735b5b572e9be5d645e8470d9fb09bb6daa139", + "tx_hash": "945ce27ed72be9ebd17662ee389fa75a69875f250547ca10f6c4bd85e5ed8f8b", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -3678,7 +3684,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809868, + "block_time": 1730815090, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3692,8 +3698,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3701,16 +3707,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -3718,16 +3724,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3735,16 +3741,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 40, @@ -3752,16 +3758,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730809747, - "last_issuance_block_time": 1730809751, + "first_issuance_block_time": 1730814988, + "last_issuance_block_time": 1730814993, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 19, @@ -3769,8 +3775,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730809722, - "last_issuance_block_time": 1730809742, + "first_issuance_block_time": 1730814962, + "last_issuance_block_time": 1730814984, "supply_normalized": "0.00000019" } ], @@ -3783,8 +3789,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3792,16 +3798,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -3809,16 +3815,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3826,16 +3832,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 40, @@ -3843,16 +3849,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730809747, - "last_issuance_block_time": 1730809751, + "first_issuance_block_time": 1730814988, + "last_issuance_block_time": 1730814993, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 19, @@ -3860,8 +3866,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730809722, - "last_issuance_block_time": 1730809742, + "first_issuance_block_time": 1730814962, + "last_issuance_block_time": 1730814984, "supply_normalized": "0.00000019" } ], @@ -3874,8 +3880,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3883,16 +3889,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -3900,16 +3906,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -3917,16 +3923,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 40, @@ -3934,16 +3940,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730809747, - "last_issuance_block_time": 1730809751, + "first_issuance_block_time": 1730814988, + "last_issuance_block_time": 1730814993, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 19, @@ -3951,8 +3957,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730809722, - "last_issuance_block_time": 1730809742, + "first_issuance_block_time": 1730814962, + "last_issuance_block_time": 1730814984, "supply_normalized": "0.00000019" } ], @@ -3963,17 +3969,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320", - "block_time": 1730810105, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_time": 1730815315, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4009,17 +4015,17 @@ }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "block_hash": "56db604ed2d9d03ff6dafc1673e0e20dff4f33fd4df04061d725379173fe4f7e", - "block_time": 1730810093, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_time": 1730815303, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423:0", + "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4027,14 +4033,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4042,7 +4048,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4061,17 +4067,17 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "block_hash": "7fa8e6f2980fdaec39ad14d6e328ee705724dc98e1b34bc4e4608a775f0b6a74", - "block_time": 1730810088, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", + "block_time": 1730815299, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808a9c18e44852c20cdae290d6049d8ad6197f9823808b4546edb63d85b6cd92dc220eb3849e58d73deb80f6811e9837b88c1c4b4f9324cceb3e6c95db534b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd:0", + "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4079,14 +4085,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4094,7 +4100,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4113,17 +4119,17 @@ }, { "tx_index": 71, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "block_hash": "6e9baba13cfa1bfc29824ca940e6e792724686c7ee6d61661c80922400213e4b", - "block_time": 1730810074, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0d1d4c85be3f416768380fb66d48e2de59fc107a9dbc4a5ef2e043ce7e0fdedf", + "block_time": 1730815285, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", + "data": "02000000178d82231300000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", "supported": true, - "utxos_info": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a:1", + "utxos_info": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4131,12 +4137,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4147,17 +4153,17 @@ }, { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_hash": "0af1f606973a4e3770f42816bca688b9f05c7ce64e55df8a3a9d7fccec169710", - "block_time": 1730810071, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "block_hash": "0452ab098a169e2a20d1cfc65d6e096911592556fbd09c39d80a8366d714e40c", + "block_time": 1730815282, + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d:1", + "utxos_info": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4188,20 +4194,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4223,9 +4229,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4242,7 +4248,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4265,14 +4271,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4289,7 +4295,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4312,14 +4318,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4336,7 +4342,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4359,14 +4365,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 60, - "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4383,7 +4389,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4406,14 +4412,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4430,7 +4436,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4453,8 +4459,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -4463,10 +4469,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4491,8 +4497,8 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -4500,10 +4506,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4528,8 +4534,8 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730809747, - "price_normalized": "0.00000050", + "block_time": 1730814988, + "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000060", @@ -4540,10 +4546,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "tx_index": 18, "block_index": 131, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4568,8 +4574,8 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730809722, - "price_normalized": "0.00000001", + "block_time": 1730814962, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -4580,10 +4586,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4608,8 +4614,8 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730809718, - "price_normalized": "0.00000001", + "block_time": 1730814958, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -4620,10 +4626,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "tx_index": 10, "block_index": 125, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4648,8 +4654,8 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730809701, - "price_normalized": "0.00000001", + "block_time": 1730814938, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -4666,22 +4672,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4690,22 +4696,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", + "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809742, + "block_time": 1730814984, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4714,22 +4720,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", + "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", "tx_index": 20, "block_index": 133, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809728, + "block_time": 1730814971, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4738,22 +4744,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", + "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809725, + "block_time": 1730814967, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4762,22 +4768,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "263485eed907cb6a5e026620a237331cc432d53f2e45d13ae55175d7fe30e308", + "tx_hash": "ca0c585abf6677903f74e0c8408a3fae99a12236a94a5be695101c4d4361f3e5", "tx_index": 15, "block_index": 127, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809709, + "block_time": 1730814945, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4786,22 +4792,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4816,22 +4822,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4848,8 +4854,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset_info": { "divisible": true, "asset_longname": null, @@ -4862,12 +4868,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -4883,7 +4889,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4896,7 +4902,7 @@ "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101dffb2c358ebb66e47d30a00f08fc61bfefb12b48cffb3f61d94c104887ed8572000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a292ff47f19c650c7f1740c50698b7ba35d5352ade35e2c50d9675c49db5f9f479a5b38093e00881b710d6cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "020000000001018017f02235867208f1c66833e1c43299eb94926bb2c8dfcd8e9b80e5c25ba83f000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a29032e1f027b2812512e7f9e409806f85f57f40343b92b7733cec2338eb75f812661dfd2d1f61d47cd616cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4914,24 +4920,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b031ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "data": "434e5452505254590b620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "020000000001013bad799111538665c5ae6edbd676ebd2338910be8fad21933d170ae4156bceb2000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a00000000000000004b6a496be606ceeeb8dfd059b44538e6e1463c2cf7d1156073392e23d54ccdfb6324b1495caee52feb96927265473543b84bf104c7d0ed9296fd7425eeadf46747eeb973a6edd980c5cb13705ba7052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "020000000001018a40f853ceb837a3fccf0064a9696352222c3c5fcc27415104441b7bcf60dbf3000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e8030000000000001600147f6fe9665382ab7ab49540720d8ea1467979382300000000000000004b6a49e22e8130265b6eb46363c3e3faed6c3c7f6f2022dd3fade405c416d278e5a9ee2914ce52696619dc95ef9cc95ce8358edabe9db89e734eb6efb606f330afd1a7f0e8771d4a5b2759995ba7052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "order_match_id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "status": "valid" } } @@ -4940,7 +4946,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4951,28 +4957,28 @@ "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "02000000000101225beddaa73e2967910d6acd96282473b75a3ed87ed685552ba762feac7c4773000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000" + "rawtransaction": "0200000000010117b149307a2b0e5b12dbd3b350bc4926b7c457a490ca5b9a8ac227204532c824000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459461ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "data": "434e54525052545946cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "02000000000101bf61a56dd39ed5364ab7ef507f45681084d6821d3f8a7c950a3e8977d524ab3d000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0200000000000000002b6a29da3d4ea504f49fe3cc06b09006bb7e3b0f30171d1abb544f787aca363d587e2884e4546fa96410c0906cba052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "0200000000010139ece5a6daf4da1bb92ad80a9479a6a8878990cd5db85893dcf4cacbd546d302000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a2902e55eb492edcd684d3f2eb19fb203f279586b207067f9f56f1f04bd565daabe8125e969c7077d79656cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "status": "valid" } } @@ -4981,7 +4987,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -5001,7 +5007,7 @@ "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101f36ca70562ee4a2f6c18fb0511991b608d0397746848aadba68b4db7e5786af7000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000226a20517597411a4dd5b9fc38c7fd725df8a26f755fe769e8e205eabbd2646c743a757dbc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101b2ef7e28271d1b8b49e907b7831834ee719e92d895f9cf497e7810e60a1fa985000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000226a2035ebadb3b7163716017bde9cbeb0ad270926e374140fa16965a835bb925b6c377dbc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -5017,7 +5023,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5042,7 +5048,7 @@ "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "020000000001011d420e7b0e4b184ef9e46a39f28835b2d77fc8cbc5236b762dd14b80a86f78eb01000000160014cdd4d899318994115a60972e0d5bba8adecb9457ffffffff0200000000000000002c6a2a6620b22011f8d5855783bd4343e5412316d2dc198fc2e057ee765a612c911dc41b2ce2f1b7db83b5b8b3d5c9092701000000160014cdd4d899318994115a60972e0d5bba8adecb945702000000000000", + "rawtransaction": "020000000001013b833b4de8f0d14c0a3c54cac0a8fbe37f6c14a950b5e479e808f3412c1d551e010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25fffffffff0200000000000000002c6a2ab92d97d0e0c4293324fcd7b6d3199d2f287a6d0b3c9b66c212f22d2b2ad4d39a2e2f3f5e31cdbd058c2fd5c90927010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5064,7 +5070,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5072,7 +5078,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5091,7 +5097,7 @@ "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101fa218e50a6093053f0f1be29ac767695645b2b9d9fa5bd34b713eb01f997d645000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21f2e7ff3bccb2f0c017da6e13a445ce6209e57e9d2542ca91ae72d7aa30fa0629c442bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101cf363810cc6cf64ad6a0a195169a58ce97c56ee9b8a4156167de5c6ffc242349000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a217d9f92a51aaaa4c829a4428ce8e44c744dc359445c322a576f68a725075dcf6a7142bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5108,10 +5114,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "transfer_destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "lock": false, "reset": false, @@ -5125,7 +5131,7 @@ "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101e7d6a7e7bbaa7afaa632fbc1ebbfcfc754228ef69be699afa1f2327a117d487e000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff0322020000000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a0000000000000000236a21e7e10da03ba949f22f43476e46603cde45fd20417662dd966f15887d1f1347234b51b2052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101b121b83c5e9404f1e58301f78c2b043ce2d84df8a5ad0a394fe00413ef537ea6000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0322020000000000001600147f6fe9665382ab7ab49540720d8ea146797938230000000000000000236a21cd226da658352e1dd07e24c038488f30c729adb834b84b660a6a36d42af75f59fc51b2052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5150,16 +5156,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", 1 ], [ "MPMASSET", - "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", 2 ] ], @@ -5168,26 +5174,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002808bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a808a9c18e44852c20cdae290d6049d8ad6197f982340000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807f6fe9665382ab7ab49540720d8ea1467979382380d533872f3cd762df505e43deb7a9d2734007319d40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "0200000000010458be15f289df4071133783cf1c1ed3e2768a234803b8feb48928991b9fc024be000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff876b095a062457cb134333a8e47d539525539ebe92a832bb2228bfa0027bd149000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff12c40221baedf2b7a64a30c194f0f3ee21fd9e3da5bb3a63050f9e6b45374890000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff4221a7ee683c9523487251e23fbc44c1d12cdb29e14f30d40a460c398bef9cda000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff03e8030000000000006951210217f2cc3bbde1e89bc278b4b68b0fba98aefacead03ef760459f2be122063d78f21024713ff6e020c87d763802137f89415d6df57a43432184d96a216ec8248abf077210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210308f2cc3bbde1e89bc2abb4b40b8447143c25a4ab54192df3e439f5adab930b1b2102b0097ee49e14639f31422ded1a04c3d242dd722d4d806ed6a216e961282334ae210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153ae66f216a8040000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000000000000", + "rawtransaction": "020000000001045ee860f841c0569f86d19b01ec6711472db5496f858af9132f2eca62ab8ca735000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffee18d5f5ae84c0399fbf792bdbf7ab7fdc510c068c6a40be76f397bf19e7de38000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff2b797c44b8694e7e217a4a8a3accda1b1cb29607a6cd6316b54daacca2a334d4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffea1a5ee27dc8f066819c331881e974659c7334530b016555be43242120b26eb4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e80300000000000069512102a04e8f8f6d8383f439d007ef5175c4388cc7fddb7705c0849a41a81e843377e72102680630e59982444e271abadf464e6e1619fa42f46057ce84f4dcfe0adbac6bbe21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee80300000000000069512102bf4e8f8f6d8383f4390307edd10aabd1eab07f700db155c4e84826bfc24a0e0a21025025b130aa056b72f078658f180db0a1b02831b4676653c4f4dcfbe9bb24af5f21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753ae66f216a8040000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5199,7 +5205,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5217,7 +5223,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5231,7 +5237,7 @@ "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "02000000000101b0893555ae8807501de63095f2b53863a51d7768a5aff0f2b58ebb66d3de5b9a000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000356a33f3bb5cf2945eb2ed3257d586edea273b59a863e8a1f6d71a02ee8d6c11f3e47aa2bc6ed831a6b99ef14b59ad7715720ff459e520b8052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "0200000000010138c342bf395cdf8c26dabf53339062b01c2eb0abea0c0f7a638ff4cc6eaafb4e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000356a33fba79fc250bafb2e30508455e8e114f0b29f929835841b52b97fac7e1d436d1090555e14c254873c72e16a527613fe16a4c0f420b8052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5253,8 +5259,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5271,19 +5277,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808a9c18e44852c20cdae290d6049d8ad6197f9823", + "data": "434e54525052545902000000000000000100000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "0200000000010171d6b30e0c80581a3fa43f6aa1fe2ac92980828de4db011efe630df1b64c891f000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000306a2e2816b2393cdd6248d0f9a147cd75fb5b2482aaff3c825143097e8d0958ab8061f5b8847c16a90fa8f29c30f36e9e46b9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "0200000000010147bdd6b0c16e67e6a092697cfe860efefbe5e581c3620e1cb94d46c72f9c0d7e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000306a2ede34b251d660efae25d706a8b88651654fcd92f3202d50a9989f5f5b866aeee9302e52f4956683764e468ce8f27346b9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "quantity_normalized": "0.00001000" } @@ -5293,24 +5299,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904808a9c18e44852c20cdae290d6049d8ad6197f982307ffff", + "data": "434e5452505254590480d533872f3cd762df505e43deb7a9d2734007319d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "0200000000010136efde72e0576fc71aea6444b4c301322c8fff3799186d0d67f511e73b967012000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000236a21d08123bc12fb1a7c398242851a229a5e15e68159a408f2d212d34df3056d25716642bc052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101b8c28fb80188921a61ab4a8fea0607c10c7835291682b5e9489d8d3dd14c0344000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a214b9f209081dbbe9b89886d4957e05c88aa2332fa5f145b7c022461d03f311fb06742bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "flags": 7, "memo": "ffff" } @@ -5320,8 +5326,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "quantity": 1000, "skip_validation": false }, @@ -5331,7 +5337,7 @@ "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "02000000000101467f71359d9460f9fecd1eb4649aee7f1f6934a3354f1dde44adcdc7ba54f4f6030000001600148a9c18e44852c20cdae290d6049d8ad6197f9823ffffffff03e803000000000000160014f6811e9837b88c1c4b4f9324cceb3e6c95db534b00000000000000000c6a0aa797acc097dfd9819e0c73250827010000001600148a9c18e44852c20cdae290d6049d8ad6197f982302000000000000", + "rawtransaction": "0200000000010132673017a967b2e1623fd09aa62e4f037b7eb1ebeedb10949065659f8732619003000000160014d533872f3cd762df505e43deb7a9d2734007319dffffffff03e8030000000000001600144a30b7f971594bc6d7dffb1ef3a31b6c6064169500000000000000000c6a0add3a4bcf7b1a9ea1b1457325082701000000160014d533872f3cd762df505e43deb7a9d2734007319d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5344,7 +5350,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5363,7 +5369,7 @@ "divisible": true, "description": "", "skip_validation": false, - "price_normalized": "0.00000010", + "price_normalized": "10.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", @@ -5376,7 +5382,7 @@ "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "02000000000101b7ca96eff788cde1b51e0499f00d6171db77bb0fd16a07391a4bc1d21543fafa000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000316a2fb91e1b4c98ee02128aa4194cdb4702ae460f3169fccbd2ad4c2f21905c673519defc94bfdc6002ac6ad535d076330e0bb9052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "02000000000101f4cd4fb47d5b0174369f70d6115e99b7643ed759c5c659348d6b5fd362c8c4ca000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000316a2f075edb58bf3db1ab50a9c6bb65a6a85960683ae765e0df2cf477be4d5beca548f282f766804b86d79bf87e278f1b7a0bb9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5398,7 +5404,7 @@ "lock_quantity": false, "divisible": true, "description": "", - "price_normalized": "0.00000010", + "price_normalized": "10.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", @@ -5411,14 +5417,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5430,7 +5436,7 @@ "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "02000000000101caa8d4d43d9dd37707e6bc7c9874fcf92c6f4ecef49f4a5256f3497018fcfb62000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff020000000000000000166a1424456f8814246c661bbef39812f6027818f142ac3ebf052a010000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000000000000", + "rawtransaction": "020000000001011923f19e1932dacb8dcfd9167e7b5e8cad538ed0353dbd7b0ab7d702c0895a5b000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000166a144c2fabbba2484964b34b5a693b6d1ad64605217f3ebf052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5445,8 +5451,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601:1", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5460,12 +5466,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c316563663639323938393263366431396262653563303538303832343138373965633063363739336534313661656365383037333964323737653664623630313a317c5843507c31303030", + "data": "434e54525052545964626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c636437353937303835633463336333303233396135623031336465363233366537366533653438373137653465313337646236656536666137636338646639333a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "020000000001064af97c3690a3f0cf6b7370271a37e282af29494ba26d0b1d96214bc5f9db9899000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff63e551a2dd0a24ec0d47c8d360f3d72c585717cad06f5f770ec54e0ab379f670000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71afffffffff8344e4cb55f939487f361dbd7e75e8b1f4bf506582fab780abc15b4664bbf18000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffbf69d39b750bb2538937ef38c9449f3a0b1d666c396392a90d3039fcd2f024b8000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffffcef8c4131db7015edc622a51f6db575382c7590d704895b8ec8af197ab7f2c89000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff501773fc9b9291bf3749b90f0dd42750161265a0e4f430a66c0aa7d956e85986000000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71affffffff04e8030000000000006951210265ba91e3d243cda2aa58322bde6d7daa08cc6cbb301a959115f33ddcf140555721032cfa50ab8e88749f7a30c65e8c21f1f8e76fd2f5eb28909d0a145be1bea40d53210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee8030000000000006951210365ba91e3d243cda2aa0568719e7a7abf0ac539ba30569ecc44ac7fddf3150e73210279fa5ef9988f7dc8213ac558dc75a6fab43fc0f9ad6cd6d85f430fb0edab5b30210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aee803000000000000695121024fba91e3d243cda2aa5e66789d237da763bf0ba46453cdcc71944fe5c1213f7a210341cd679cfbbf1efe1603f63de844909bd15ca5c19d5be5e13b713887889d3fdb210267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec153aebf6c22fc060000001600148bfd8c92fb6a0657f65bf7bdcf4bbf8bf0dcf71a02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106db945b92cfb2eca1800dded27810d809fc4a988ffb62acd10e413458d3c56737000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffde697e1109acfb31633a911a588b2000ff5839f3b4f41ea6578910f0c959f94d000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffd4922256cf5cc82dafdc5fc9e6cb053c9a30bee05d974526a60e688436de0394000000001600147f6fe9665382ab7ab49540720d8ea14679793823fffffffff7201a9db60784431f9a353aad7fa7ea8298d26c3b020b7948c423c252d132a9000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffb647d0bf7b905b7e54e3bd58defd71de535aa86456fa6285c8131cac8256dab8000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff54f6f9a87dab4870666e9d5d1ba0a9d3ed0c62a981be56a74dfbc6cc06a358c4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff04e803000000000000695121030817c07da58a3f44629992fe360746cc3c84f9d75cc0ecdcb262f504594be42f2103df65c402c74eeb9545ca5a2d77f15c42fc7e6c38b51b2858bba562f5386f768221027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121030817c07da58a3f4462c5c5fe701044de3fd5a3d30fc4b3d0f161f2080819af612103d834d1508046aac40195086928fe1f57bf23626ab2572641eea734f7623b7e0c21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121022217c07da58a3f44629996a4774946c154a6c19c0795b682c150c16c6d2f9da52103eb02b467b62399a135ad3f581f9b2b328e10550ed0614324d8c155c00158466b21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aebf6c22fc060000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5478,8 +5484,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "skip_validation": false, @@ -5493,12 +5499,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964353666306430373335643139653939653131383663646639363761386661353361356531336532373363623833626130626236636630643037666231313632353a307c626372743171333037636579686d6467723930616a6d37373775376a616c33306364656163363377347673757c5843507c31303030", + "data": "434e54525052545964326130633638623263323639346433653764666334306336636239333631653835636534343964613664366633343238663938636636383836343062633833353a307c626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "02000000000103689faeb311ecfa80fcb9e636c017a198d4aadb67d65188b93b5d87a4fef82d7e01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff65b360a9784712f6c29cacd4f947f3037882cf8227921a1aeef741e9cf3142db00000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffffc40f7e74a17fbcdceb8f25e7abd0dba57ff8138e2d4299b69da40696b91f2dcf01000000160014e99a7c9f133b44e61b93f10354058ab7bfa377faffffffff04e80300000000000069512102b318430630aece23e31c22b156c51a6d6c628431e9ba8d53b24a001dd78997b7210228088b8da72744152e45818f748c332bacb53d917188ca52bd54d61df8e95cb021027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee80300000000000069512103b318430630aece23e31e27e300c2183f6a608767edb9d816e94c4358decec73921037c59d1dee92e111728028bde20836f2ffeb07f95788b9e52ef56821afbbc091c21027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53aee803000000000000695121029918430630aece23e34b60b346860b210312e129e9b3d85a8b2f312cefbff49221034c6eb2bb90467c734f70b2ee41e90218c9870aa212eaf261df35e67f9adf3f4321027f44dfdda5bf78f8848e54c649e9a3a4da51db4c380104b0533f7cb30b6a3c9f53ae76770b2701000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa02000002000002000000000000", + "rawtransaction": "02000000000103a21bc50f5cdd8b65aab1bad1f613bfff5b753d39e679f0fc363d632bdcd257b5010000001600141e3b253faedc160b8e01feea12afc01591194e93fffffffff09f234b4df5e2c9e152a8c34a34ead74e21d3ba11df52df88b7fe2eecb9d189000000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff6d8be49447adf2412d1ab0ee7159f4eaaaf04b6f065aecbfd3ce3a76d7793002010000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff04e80300000000000069512103a0082e44e6e7afb58e468b1d708015939b5ac17c3ff1c3964812460df6fc1184210254ba92e43dfebb13e8caea9174b38b0525ff8d8fc35d9dd3f35d49a1acc1d9352102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee80300000000000069512102a0082e44e6e7afb58e448f4478d5179b9b0b9a7d3cf2c78e1914031da1ee1504210305b193ed3aade656eb9bba9073af8b566cfe9dd4d55f8b87a21a19ade289c89f2102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee803000000000000695121028a082e44e6e7afb58e4c804a259948d7a12bf23238f8c7c27b777169909f2510210364d9a4875fc78825d9afd2a417d6bf311c9becb9a76bfbe0c76f71c795f9bab42102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53ae76770b27010000001600141e3b253faedc160b8e01feea12afc01591194e9302000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5514,8 +5520,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -5523,16 +5529,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730810071, - "last_issuance_block_time": 1730810071, + "first_issuance_block_time": 1730815282, + "last_issuance_block_time": 1730815282, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", - "owner": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "owner": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "divisible": true, "locked": false, "supply": 100000000000, @@ -5540,16 +5546,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730810038, - "last_issuance_block_time": 1730810038, + "first_issuance_block_time": 1730815264, + "last_issuance_block_time": 1730815264, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -5557,16 +5563,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730809868, - "last_issuance_block_time": 1730809875, + "first_issuance_block_time": 1730815090, + "last_issuance_block_time": 1730815107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "owner": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "issuer": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "owner": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "divisible": true, "locked": false, "supply": 100000000000, @@ -5574,16 +5580,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730809864, - "last_issuance_block_time": 1730809864, + "first_issuance_block_time": 1730815086, + "last_issuance_block_time": 1730815086, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 100000000000, @@ -5591,8 +5597,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730809818, - "last_issuance_block_time": 1730809818, + "first_issuance_block_time": 1730815048, + "last_issuance_block_time": 1730815048, "supply_normalized": "1000.00000000" } ], @@ -5604,8 +5610,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "owner": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false, "supply": 10000000000, @@ -5613,15 +5619,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730809688, - "last_issuance_block_time": 1730809701, + "first_issuance_block_time": 1730814927, + "last_issuance_block_time": 1730814938, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5629,14 +5635,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5644,7 +5650,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -5657,7 +5663,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 82649944196, "utxo": null, @@ -5679,9 +5685,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5698,7 +5704,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5721,14 +5727,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5745,7 +5751,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5768,14 +5774,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5792,7 +5798,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5815,14 +5821,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 60, - "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5839,7 +5845,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5862,14 +5868,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 76, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5886,7 +5892,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5909,8 +5915,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": 52, @@ -5919,13 +5925,13 @@ "/v2/assets//matches": { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5939,7 +5945,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5959,13 +5965,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 52, - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5979,7 +5985,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5999,13 +6005,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", "tx0_index": 49, - "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 50, - "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6019,7 +6025,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6039,13 +6045,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6059,7 +6065,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6079,13 +6085,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -6099,7 +6105,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6126,20 +6132,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "event": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6147,20 +6153,20 @@ }, { "block_index": 125, - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", + "event": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809701, + "block_time": 1730814938, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6168,20 +6174,20 @@ }, { "block_index": 124, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6189,20 +6195,20 @@ }, { "block_index": 124, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "event": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6214,16 +6220,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6241,12 +6247,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -6258,16 +6264,16 @@ }, { "block_index": 209, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -6279,16 +6285,16 @@ }, { "block_index": 208, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -6300,16 +6306,16 @@ }, { "block_index": 207, - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -6321,16 +6327,16 @@ }, { "block_index": 206, - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -6353,14 +6359,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", + "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6375,20 +6381,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730809701, + "block_time": 1730814938, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6403,20 +6409,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6431,20 +6437,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -6459,7 +6465,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730809688, + "block_time": 1730814927, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6471,10 +6477,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6482,7 +6488,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -6495,10 +6501,10 @@ }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6506,7 +6512,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -6519,10 +6525,10 @@ }, { "tx_index": 74, - "tx_hash": "fd7634a0d7072c97206efce05e8fa4e18b5bfe20b04295d74aee6f5fad4c8a70", + "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", "block_index": 207, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6530,7 +6536,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "asset_info": { "divisible": true, "asset_longname": null, @@ -6543,10 +6549,10 @@ }, { "tx_index": 73, - "tx_hash": "91933df685a76309badf16dd0b910e68f132d977733e28cbb8e2397d16080423", + "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", "block_index": 206, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6554,7 +6560,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810093, + "block_time": 1730815303, "asset_info": { "divisible": true, "asset_longname": null, @@ -6567,10 +6573,10 @@ }, { "tx_index": 72, - "tx_hash": "6f420966bddf801945af0816d2e63c412160f3035d7c4f406f774b79570825dd", + "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", "block_index": 205, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6578,7 +6584,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810088, + "block_time": 1730815299, "asset_info": { "divisible": true, "asset_longname": null, @@ -6597,9 +6603,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6608,17 +6614,18 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6630,13 +6637,14 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 29, - "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", + "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", "block_index": 142, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6645,17 +6653,18 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809785, + "block_time": 1730815023, "asset_info": { "divisible": true, "asset_longname": null, @@ -6667,13 +6676,14 @@ "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 30, - "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", + "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", "block_index": 150, - "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", + "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6681,18 +6691,19 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 0, - "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "close_block_index": 150, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809837, + "block_time": 1730815057, "asset_info": { "divisible": true, "asset_longname": null, @@ -6704,32 +6715,34 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 33, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -6741,7 +6754,8 @@ "give_remaining_normalized": "0.00009268", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000016", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -6750,9 +6764,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6761,17 +6775,18 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -6783,7 +6798,8 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } }, "/v2/assets//holders": { @@ -6799,7 +6815,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6807,7 +6823,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6816,7 +6832,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6824,7 +6840,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6833,7 +6849,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6841,7 +6857,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6850,7 +6866,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -6865,27 +6881,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6900,7 +6916,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -6914,27 +6930,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", + "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", "block_index": 147, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6949,7 +6965,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730809815, + "block_time": 1730815044, "asset_info": { "divisible": true, "asset_longname": null, @@ -6963,19 +6979,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6983,7 +6999,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6998,7 +7014,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -7012,19 +7028,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7032,7 +7048,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7047,7 +7063,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -7070,10 +7086,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "tx_index": 10, "block_index": 125, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7098,8 +7114,8 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730809701, - "price_normalized": "0.00000001", + "block_time": 1730814938, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -7116,22 +7132,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "5b149cfab411cd458910388a42c48f98d1e3ade72026506cb5194f923c394d01", + "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", "tx_index": 13, "block_index": 125, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809701, + "block_time": 1730814938, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7140,22 +7156,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4", + "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", "tx_index": 12, "block_index": 124, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809697, + "block_time": 1730814933, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7164,22 +7180,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7194,22 +7210,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "d4369f825c2a3ad98d591231e507fd44fca20a94e8b23fed0a7b86a44c161918", + "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", "tx_index": 11, "block_index": 123, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809692, + "block_time": 1730814930, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -7225,9 +7241,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7244,7 +7260,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7267,14 +7283,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 52, - "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "block_index": 187, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7291,7 +7307,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7314,14 +7330,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7338,7 +7354,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7361,14 +7377,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7385,7 +7401,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7408,14 +7424,14 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" }, { "tx_index": 60, - "tx_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", + "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", "block_index": 209, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7432,7 +7448,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7455,8 +7471,8 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } ], "next_cursor": 76, @@ -7465,9 +7481,9 @@ "/v2/orders/": { "result": { "tx_index": 54, - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "block_index": 210, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7484,7 +7500,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7507,20 +7523,20 @@ "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.00000000", - "get_price_normalized": "1.00000000" + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" } }, "/v2/orders//matches": { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7534,7 +7550,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7554,13 +7570,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7574,7 +7590,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7594,13 +7610,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7614,7 +7630,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7641,15 +7657,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "btc_amount": 2000, - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "status": "valid", "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "btc_amount_normalized": "0.00002000" } ], @@ -7660,9 +7676,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "block_index": 187, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7680,7 +7696,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730809971, + "block_time": 1730815205, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,9 +7722,9 @@ }, { "tx_index": 54, - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "block_index": 210, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7726,7 +7742,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730810115, + "block_time": 1730815328, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7752,9 +7768,9 @@ }, { "tx_index": 49, - "tx_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", + "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", "block_index": 184, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7772,7 +7788,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730809903, + "block_time": 1730815126, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7798,9 +7814,9 @@ }, { "tx_index": 51, - "tx_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", + "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", "block_index": 207, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7818,7 +7834,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810097, + "block_time": 1730815307, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7844,9 +7860,9 @@ }, { "tx_index": 58, - "tx_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", + "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", "block_index": 193, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7864,7 +7880,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810003, + "block_time": 1730815238, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7895,13 +7911,13 @@ "/v2/orders///matches": { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7918,7 +7934,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7938,13 +7954,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 52, - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7961,7 +7977,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730809971, + "block_time": 1730815205, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7981,13 +7997,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8004,7 +8020,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8024,13 +8040,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", "tx0_index": 49, - "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 50, - "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8047,7 +8063,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730809903, + "block_time": 1730815126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8067,13 +8083,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8090,7 +8106,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8116,13 +8132,13 @@ "/v2/order_matches": { "result": [ { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8136,7 +8152,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8156,13 +8172,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", "tx0_index": 51, - "tx0_hash": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 52, - "tx1_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8176,7 +8192,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730809971, + "block_time": 1730815205, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8196,13 +8212,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147_2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", + "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", "tx0_index": 49, - "tx0_hash": "65be8b2f714885f8db6b5a347051dd891aca24bc749115de7e02f74974ecb147", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 50, - "tx1_hash": "2432b82a8bb501d786aa77b251e68f657eadbfda0a4af7be483de167ddc9e130", - "tx1_address": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8216,7 +8232,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730809903, + "block_time": 1730815126, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8236,13 +8252,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 60, - "tx0_hash": "dc10846a701d1bdb8f9855d6be281ae7c76896e7cd38d80b2be3c98b1304a707", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_index": 54, - "tx1_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8256,7 +8272,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8276,13 +8292,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx0_index": 54, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx1_index": 76, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8296,7 +8312,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8341,66 +8357,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", + "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", "block_index": 121, - "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", + "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730809684, + "block_time": 1730814922, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "9cdfbeb6e7c77a7a98300dad36fefe08d1ed94ef8d9d84b24118b8eeb9a8e712", + "tx_hash": "6c5d5de4a45d374a9e7e8b39e7655c5229ef815ea661ad9f71cf4eb8935ae729", "block_index": 120, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730809680, + "block_time": 1730814919, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "372f224b97c859b86dce204bf93a9b5fa36f005c57e7310ba57b3aba401dc0b7", + "tx_hash": "ab82779227e9a373afa751fbe46629179c0a567c9251bc34a289d75a82383573", "block_index": 119, - "source": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9", + "source": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730809677, + "block_time": 1730814915, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8ed2ecd4c265013d1580174b734b3cd125419219038e42d9de5318d1b3bc266f", + "tx_hash": "b7e759cba65e5066d59edc941bc6a53bde9feae3b1d854ba6ed335fe6a18a528", "block_index": 118, - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730809674, + "block_time": 1730814911, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "0faf4c2e5517b6eb8fde2d128037829b95beeddfcbb1a139fcdb8d16027e0a72", + "tx_hash": "d0854e63c8720442ecb862287f6d9f79f569382ec5695f7bf2b557ec2d7e9b6d", "block_index": 117, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730809669, + "block_time": 1730814907, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8412,9 +8428,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8423,17 +8439,18 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -8445,13 +8462,14 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 29, - "tx_hash": "e8ff535a496e7ba8dbbb0e97d59fc4028efadd38057bfeec3bc6f0ed57b6cc9c", + "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", "block_index": 142, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8460,17 +8478,18 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809785, + "block_time": 1730815023, "asset_info": { "divisible": true, "asset_longname": null, @@ -8482,13 +8501,14 @@ "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 30, - "tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", + "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", "block_index": 150, - "source": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", + "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8496,18 +8516,19 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "67b570fb0a355711485962bae327bc9be9e7023e980a83de465c386001ffb560", - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 0, - "last_status_tx_source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "close_block_index": 150, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809837, + "block_time": 1730815057, "asset_info": { "divisible": true, "asset_longname": null, @@ -8519,13 +8540,14 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00000010", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 64, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8534,21 +8556,22 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8556,32 +8579,34 @@ "give_remaining_normalized": "0.00006000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" }, { "tx_index": 33, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -8593,7 +8618,8 @@ "give_remaining_normalized": "0.00009268", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" + "satoshi_price_normalized": "0.00000016", + "price_normalized": "1.0000000000000000" } ], "next_cursor": null, @@ -8602,9 +8628,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8613,17 +8639,18 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, + "price": 1.0, "confirmed": true, "fiat_price": null, "oracle_price": null, "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -8635,7 +8662,8 @@ "give_remaining_normalized": "0.00000000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" } }, "/v2/dispensers//dispenses": { @@ -8643,19 +8671,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8663,7 +8691,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8678,7 +8706,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -8692,19 +8720,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8712,7 +8740,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8727,7 +8755,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -8746,20 +8774,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8780,20 +8808,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -8816,12 +8844,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "tx_index": 41, - "utxo": "d796cd1db89516aab5f3c3aac3782b9748abc2869b5bb4e40e9eab474c0f5c92:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "utxo": "a786ebbcef73d52585b1012e1f21ce6dbef3b78d4e0240e7a15a76fdb84b61de:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "divisible": true, "asset_longname": null, @@ -8833,16 +8861,16 @@ }, { "block_index": 154, - "address": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", + "address": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "divisible": true, "asset_longname": null, @@ -8863,27 +8891,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 694, @@ -8892,14 +8920,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -8910,9 +8938,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 693, @@ -8921,9 +8949,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -8933,24 +8961,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -8960,9 +8988,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 691, @@ -8974,15 +9002,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } }, "/v2/events/counts": { @@ -9017,16 +9045,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -9036,9 +9064,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 690, @@ -9048,12 +9076,12 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -9063,9 +9091,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 687, @@ -9075,39 +9103,39 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", - "utxo_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "block_time": 1730810115, + "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730810105, + "block_time": 1730815315, "asset_info": { "divisible": true, "asset_longname": null, @@ -9117,24 +9145,24 @@ }, "quantity_normalized": "0.00003000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -9144,9 +9172,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_time": 1730810101 + "block_time": 1730815312 } ], "next_cursor": 656, @@ -9163,27 +9191,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9198,7 +9226,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -9212,19 +9240,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "2173f49e8bd036dc5ee52b07622dd77a832ede1f4b0f0ad7415c3d1f2850f714", + "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9232,7 +9260,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9247,11 +9275,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730810034, + "block_time": 1730815261, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -9261,27 +9289,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "db4231cfe941f7ee1a1a922782cf827803f347f9d4ac9cc2f6124778a960b365", + "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", "block_index": 147, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "destination": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "last_status_tx_hash": null, - "origin": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9296,7 +9324,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730809815, + "block_time": 1730815044, "asset_info": { "divisible": true, "asset_longname": null, @@ -9310,19 +9338,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5fe45b56e7e5eca21a2be80e8041812b3ba67b9a97e1aa7140d72c3aab3b509", + "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9330,7 +9358,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9345,7 +9373,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809782, + "block_time": 1730815019, "asset_info": { "divisible": true, "asset_longname": null, @@ -9359,19 +9387,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "817dbc93bf6ede1421df390e53e82dc58c9591bb08d7f945feae0b5ab22384d6", + "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", "block_index": 140, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "0634eda414efde17edf5e552656aa0efc5cbf1e8341bc4d5745da6650cc3b388", + "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9379,7 +9407,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9394,7 +9422,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730809768, + "block_time": 1730815006, "asset_info": { "divisible": true, "asset_longname": null, @@ -9413,10 +9441,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9424,7 +9452,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -9437,10 +9465,10 @@ }, { "tx_index": 77, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9448,11 +9476,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -9461,10 +9489,10 @@ }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9472,7 +9500,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -9485,10 +9513,10 @@ }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9496,11 +9524,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -9509,10 +9537,10 @@ }, { "tx_index": 75, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9520,11 +9548,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -9539,14 +9567,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -9561,20 +9589,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "e7077d8a8a933b7047e3402cb8a39b0cae833dd9e7f5ff11a920bda3767ffce1", + "tx_hash": "29bc5c4992ab2801c3ef43e6c67dd0da8c60ff295a174c149f68cd4f2c32fe44", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", - "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "transfer": false, "callable": false, "call_date": 0, @@ -9589,20 +9617,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810038, + "block_time": 1730815264, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "2e5c011509cb9310c5bc2188da151358ffab81e27b221320d782c36d20787acd", + "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -9617,20 +9645,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809879, + "block_time": 1730815111, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "dc932a03f0193c4bc3a248cdc9616608c9c50de570ff969b86ebb363c6821390", + "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -9645,20 +9673,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730809875, + "block_time": 1730815107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "e7fa62d6672a2843e1454aa33d80ea5778e242c2545a20e66e750acb0f3156d6", + "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -9673,7 +9701,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730809872, + "block_time": 1730815104, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9684,14 +9712,14 @@ "/v2/issuances/": { "result": { "tx_index": 70, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "transfer": false, "callable": false, "call_date": 0, @@ -9706,7 +9734,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9715,16 +9743,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -9735,16 +9763,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" } ], @@ -9755,9 +9783,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9765,14 +9793,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809760, + "block_time": 1730814999, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "9fc4717fae6f279b17e8d3a6bfcc658e78d26583336a00edf79cea339a0612da", + "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", "block_index": 137, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9780,7 +9808,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809755, + "block_time": 1730814996, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9790,9 +9818,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9800,17 +9828,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730809760, + "block_time": 1730814999, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9835,8 +9863,8 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -9844,10 +9872,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9872,8 +9900,8 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730809747, - "price_normalized": "0.00000050", + "block_time": 1730814988, + "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000060", @@ -9884,10 +9912,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "tx_index": 18, "block_index": 131, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9912,8 +9940,8 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730809722, - "price_normalized": "0.00000001", + "block_time": 1730814962, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", @@ -9924,10 +9952,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9952,8 +9980,8 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730809718, - "price_normalized": "0.00000001", + "block_time": 1730814958, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -9964,10 +9992,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8d297fb301e30d00b5d1225dbe652b3e04affe441e8f1bb6b9694e1c5d172339", + "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", "tx_index": 10, "block_index": 125, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9992,8 +10020,8 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730809701, - "price_normalized": "0.00000001", + "block_time": 1730814938, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", "quantity_by_price_normalized": "0.00000001", @@ -10010,22 +10038,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10034,22 +10062,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "f2ba7dd3ae9d453bf61f5a2ce0e95d5a8427818e52f8b145b7cd284d15ebb8f7", + "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809742, + "block_time": 1730814984, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10058,22 +10086,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "0dbc795c313b1e6cef4b04b8ab5c68e3eb56991e1b0f85a5190ea1418d3afa30", + "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", "tx_index": 20, "block_index": 133, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809728, + "block_time": 1730814971, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10082,22 +10110,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2c8654cabbd50bd89d0daa554117d4e3d44c7898e29dcf42da4ef6d33dc8bd44", + "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", "tx_index": 19, "block_index": 132, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "0a0028af7c9068abbd1e9d5636a2a55b0aec6e8cb952d476b038e8874ed3027d", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809725, + "block_time": 1730814967, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10106,22 +10134,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0a1cb229ccebe973b679aad8fb8699dc9c8b3723e2ae1735a98d06420499b318", + "tx_hash": "245d76ac2bac5f99c58866cfeb27c8e3571cc13c9e019fd018bb443df46130a3", "tx_index": 17, "block_index": 129, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "fairminter_tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809715, + "block_time": 1730814954, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10135,22 +10163,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, "block_index": 136, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10162,22 +10190,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa", - "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" + "amount": 49.499345, + "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b", + "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" }, { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d", - "address": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6" + "amount": 5.46e-05, + "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585", + "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" }, { "vout": 2, @@ -10185,8 +10213,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215", - "address": "bcrt1qf5gxahjef4qthr0cpd23m4wd3axurce2y6glq9" + "txid": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4", + "address": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff" } ], "next_cursor": null, @@ -10195,31 +10223,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" + "tx_hash": "1cf93eaecf80fee38f282708e49be0e972b4526e9c5ad72ec822cd570f63eb06" }, { - "tx_hash": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d" + "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c" }, { - "tx_hash": "155214cde54155ad9f22f9401e297430884c73e57da9693a55376c941df0b333" + "tx_hash": "e37f8aa66f2894997ea5795928c5e29bf8d9b94109f97d0d8f28c7cd04598c25" }, { - "tx_hash": "9c05cf48db05c2a1a61d802e9ed24385872f68e888b28ecb075c2f039a67f851" + "tx_hash": "561135f903b3cfe5dbd6bc6bf6729eea4268a1075e009865119f0212c704072e" }, { - "tx_hash": "dcaa6acc1d5feb408823e8e4a970292b42ca77021cdfe06397828f0e42d80166" + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f" }, { - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c" + "tx_hash": "792827d3afb74c45f7a681503c2f51e26c2d12400c0e86eeea745a5bfbf01d5d" }, { - "tx_hash": "8c731c5ac1e94f8978aa69e55cca9f8a6ff5a0d14c462ab1475b1b87a07889a1" + "tx_hash": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8" }, { - "tx_hash": "af9c59991017c568be76110e3d45e950452378a2d55210f69558fb099f3fd8bf" + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" }, { - "tx_hash": "22ca94830b6f5fe1f67d2aa930b95f106969dce35d02aea8831d5a5c50d0e4c4" + "tx_hash": "80d23748c8c9e7860f9d0193b861b38c7a820b25f2fb8f606fc7561fb12b96f9" } ], "next_cursor": null, @@ -10227,37 +10255,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 5, - "tx_hash": "5bc96b88246c6e1efef6344274ceb58e42ca761aac372b68b451b002061eb170" + "block_index": 6, + "tx_hash": "93fa0e493eefe1d4b855ed4e2aa6b6afe1f9261f63fdfe6b53442aee181e223a" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "745d58a38d667dce782f364e8167bed66ef9a5ef5b78d50b2596db26c71afefa" + "amount": 49.499345, + "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b" }, { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "eb786fa8804bd12d766b23c5cbc87fd7b23588f2396ae4f94e184b0e7b0e421d" + "amount": 5.46e-05, + "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0267d523dcde52dd27d635f40beb33f0a9a31d962fcb21b37f391d1cef4e4baec1" + "result": "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010115a285033f8b1881954b6493d6b70007a36304c3f76b94674fd915f9ff199d660100000000ffffffff03e803000000000000160014e99a7c9f133b44e61b93f10354058ab7bfa377fa00000000000000000c6a0aaf8db67dd27f504f06ebeb140927010000001600149d9b6a9f2ea9c21b09081f10701535115b764f9702473044022062301d8deb93198293864ae2459c469132a83e21cd88073bc6f8c1e8b2abb4f002207ee31d16a156d1c1bf738e84da22d3f676fe4420888a985ebc864d8cfaef1c500121027f48f7b23d5afb56a3fd9df18d4bd18fa8128f20ba8e2a8a7a8a151393d3db1900000000" + "result": "02000000000101b48666cefd466f79a3d15bf814096f990dc492394bad3fc32b9a05bb9485a7770100000000ffffffff03e8030000000000001600141e3b253faedc160b8e01feea12afc01591194e9300000000000000000c6a0af440a74b8610ff8c1f4aeb140927010000001600145d2f62d2b47bd9b2fd83ab8a11e6bd825c54c1430247304402207b3abd99e749c9ad380900801266580250d2cba1d3ab53081f94bdc4b60c134902203f1b636047b9335a4c7355cf8a774e94b7b34e0e0b3cddc53daaea22f21550e7012102266210940cb1609912dc497cd1c1591851135e1fa766e4225851b402b6caf07500000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58797 @@ -10280,27 +10308,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78 }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "quantity": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, "asset_info": { "divisible": true, @@ -10311,22 +10339,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10336,22 +10364,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "block_index": 210, - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10361,30 +10389,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730810118.4794593, + "block_time": 1730815333.0180326, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "destination": "", "fee": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, - "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", + "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -10398,7 +10426,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -10407,19 +10435,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10429,7 +10457,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -10438,27 +10466,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78 }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "quantity": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, "asset_info": { "divisible": true, @@ -10469,22 +10497,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "CREDIT", "params": { - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10494,22 +10522,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "asset": "XCP", "block_index": 210, - "event": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10519,30 +10547,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 }, { - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730810118.4794593, + "block_time": 1730815333.0180326, "btc_amount": 0, - "data": "0200000000000000010000000000002710808b4546edb63d85b6cd92dc220eb3849e58d73deb", + "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", "destination": "", "fee": 10000, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", - "tx_hash": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", "tx_index": 78, - "utxos_info": "d3e04d0ae96b6e559703c47a347f65dfa1685bc042f37cbb1844482ad36b5c39:1", + "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "memo": null, "asset_info": { "divisible": true, @@ -10556,7 +10584,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730810118.4794593 + "timestamp": 1730815333.0180326 } ], "next_cursor": null, @@ -10578,15 +10606,15 @@ "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", "block_index": 210, - "block_time": 1730810115, + "block_time": 1730815328, "difficulty": 545259519, - "previous_block_hash": "55752c13f42dd76f12ff3f74aa0685da05f9dfaf824abab09f7e4202579ff320" + "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8" }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 665, @@ -10598,17 +10626,17 @@ "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "68ee7caddf8dfc7299232233dde9ecb1194cabebd8aa59cefd8afaee27bfc2fe", + "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", "block_index": 210, - "block_time": 1730810115, + "block_time": 1730815328, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "fee": 0, - "source": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "utxos_info": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1 56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10618,9 +10646,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 666, @@ -10634,16 +10662,16 @@ "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "out_index": 0, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 567, @@ -10656,15 +10684,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "86d8b8b8c82c4b0e68a7adf3f0017d9a1fc7366a2ed828df107df44d223e5d75", - "messages_hash": "3ee3d6676e9bc22865d47c59b182b10d0fa69128262adf835dc42c6b598b557e", + "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", + "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", "transaction_count": 1, - "txlist_hash": "c268136463368ac95f3c540b0e74d73ee5150b41b4158649e81b56fd126e8590", - "block_time": 1730810115 + "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", + "block_time": 1730815328 }, "tx_hash": null, "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 680, @@ -10677,12 +10705,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 679, @@ -10698,12 +10726,12 @@ "address": null, "asset": "XCP", "block_index": 210, - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 1500000000, "tx_index": 77, - "utxo": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", - "utxo_address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", - "block_time": 1730810115, + "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10713,9 +10741,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 686, @@ -10727,16 +10755,16 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -10746,9 +10774,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 690, @@ -10762,26 +10790,26 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "memo": null, "quantity": 1000, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "tx_index": 71, - "block_time": 1730810074, + "block_time": 1730815285, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1bf2ebbc5d03a98a2abc4ba354dd0c4bde254e84aad21791ba360eb812f5364a", + "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", "block_index": 204, - "block_time": 1730810074 + "block_time": 1730815285 } ], "next_cursor": 503, @@ -10795,15 +10823,15 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "status": "valid", - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "tx_index": 75, - "block_time": 1730810101, + "block_time": 1730815312, "asset_info": { "divisible": true, "asset_longname": null, @@ -10813,9 +10841,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6f454bac7cdad44de1d4f35a334691f7fee9a64b41ecdfef960949d35717f46", + "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", "block_index": 208, - "block_time": 1730810101 + "block_time": 1730815312 } ], "next_cursor": 661, @@ -10838,20 +10866,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "status": "valid", - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "tx_index": 61, - "block_time": 1730810020, + "block_time": 1730815247, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "c0dd1739dbe24075dfe15ec3ae9c4e336adb501170990e9386e6d61c71828f6c", + "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", "block_index": 195, - "block_time": 1730810020 + "block_time": 1730815247 } ], "next_cursor": null, @@ -10868,15 +10896,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "tx_index": 41, - "block_time": 1730809852, + "block_time": 1730815072, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -10890,9 +10918,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "671311899c87ef56f1b44a261b19db7869a84a86cca46ef3aaf32b51b1f62c23", + "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", "block_index": 154, - "block_time": 1730809852 + "block_time": 1730815072 } ], "next_cursor": null, @@ -10913,11 +10941,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730810071 + "block_time": 1730815282 }, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_time": 1730810071 + "block_time": 1730815282 } ], "next_cursor": 576, @@ -10940,22 +10968,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", "transfer": false, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "tx_index": 70, - "block_time": 1730810071, + "block_time": 1730815282, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "76a1d51836a19464b731f44dde539da735cbf8412c437d9ac90153e09627fd4d", + "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", "block_index": 203, - "block_time": 1730810071 + "block_time": 1730815282 } ], "next_cursor": 577, @@ -10970,12 +10998,12 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1q76q3axphhzxpcj60jvjve6e7dj2ak56tpfrv4g", + "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", "status": "valid", "tag": "64657374726f79", - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "tx_index": 62, - "block_time": 1730810023, + "block_time": 1730815251, "asset_info": { "divisible": true, "asset_longname": null, @@ -10985,9 +11013,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "121bdbe1c26103be27ecb1f4bd12a7b4c0237d83b4300b5fa7914a7fa1cb04db", + "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", "block_index": 196, - "block_time": 1730810023 + "block_time": 1730815251 } ], "next_cursor": 157, @@ -11012,11 +11040,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "open", - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11040,9 +11068,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 534, @@ -11060,20 +11088,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03_1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", + "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "tx0_index": 54, - "tx1_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "tx1_index": 76, - "block_time": 1730810105, + "block_time": 1730815315, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11092,9 +11120,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 673, @@ -11107,11 +11135,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03" + "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 677, @@ -11124,11 +11152,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a" + "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0" }, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "block_time": 1730809971 + "block_time": 1730815205 } ], "next_cursor": null, @@ -11140,13 +11168,13 @@ "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", + "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", "status": "expired" }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 481, @@ -11160,18 +11188,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_e00af908f2b30cb1c6df8f65107f471825a90d8dcfe431ecfc37e0deb445ea9a", - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "status": "valid", - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "tx_index": 53, - "block_time": 1730809971, + "block_time": 1730815205, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "90ca7b2489f2cd8b849a05a0ebceaf3bb6a7da4f2f150c4c8967acef0595ce0d", + "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", "block_index": 187, - "block_time": 1730809971 + "block_time": 1730815205 } ], "next_cursor": null, @@ -11184,16 +11212,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "0bd926e432a2ef63fdf73d328fdad69facc15e68bff0f155669acad39eb0e1b0", - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": "valid", - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "tx_index": 59, - "block_time": 1730810003 + "block_time": 1730815238 }, - "tx_hash": "b2f769b341af30df77648154619ce7c7850e8d87c73cbcc64fb1e56e131e6bb6", + "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", "block_index": 193, - "block_time": 1730810003 + "block_time": 1730815238 } ], "next_cursor": null, @@ -11206,13 +11234,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "source": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "block_time": 1730810115 + "order_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_time": 1730815328 }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 642, @@ -11225,14 +11253,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "c5c767c774ef1ae4ecc277cf11f9f519013e86f800c769b0b9a03bcc06787175_4f19bfcb7d9de938d57e729c633493a0ea020aaaf55cf5c0ce211e0c87123b03", - "tx0_address": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "tx1_address": "bcrt1q3dz5dmdk8kzmdnvjms3qavuynevdw00twg6r7e", - "block_time": 1730810105 + "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_time": 1730815315 }, - "tx_hash": "1ecf6929892c6d19bbe5c05808241879ec0c6793e416aece80739d277e6db601", + "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", "block_index": 209, - "block_time": 1730810105 + "block_time": 1730815315 } ], "next_cursor": 457, @@ -11251,17 +11279,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "satoshirate": 1, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "status": 0, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "tx_index": 64, - "block_time": 1730810030, + "block_time": 1730815257, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11270,9 +11298,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "f6a39155c081eea4efc979c3401b9add6619af33817f3f5c2bd663d7d207210e", + "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", "block_index": 198, - "block_time": 1730810030 + "block_time": 1730815257 } ], "next_cursor": 272, @@ -11287,9 +11315,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": 0, - "tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", + "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", "asset_info": { "divisible": true, "asset_longname": null, @@ -11299,9 +11327,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 569, @@ -11315,13 +11343,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n15VxBcgaJDXEf1ijXPgjFWCw4S99tVZwA", + "destination": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", "dispense_quantity": 10, - "dispenser_tx_hash": "0c9458512c646524a3f5de326258fd0ee99a8260aa387abbfb570e838166406b", - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", - "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", + "dispenser_tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", "tx_index": 31, - "block_time": 1730809794, + "block_time": 1730815031, "asset_info": { "divisible": true, "asset_longname": null, @@ -11331,9 +11359,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "570e065b9c93420f541c3b1a692b2c3bf1ba45b5f5b56f1688df960c039ca718", + "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", "block_index": 144, - "block_time": 1730809794 + "block_time": 1730815031 } ], "next_cursor": null, @@ -11348,14 +11376,14 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qnkdk48ew48ppkzggrug8q9f4z9dhvnuhpde42w", + "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7e2df8fea4875d3bb98851d667dbaad498a117c036e6b9fc80faec11b3ae9f68", - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -11366,9 +11394,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 570, @@ -11383,19 +11411,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qaxd8e8cn8dzwvxun7yp4gpv2k7l6xal6gedvd3", + "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "tx_index": 25, "value": 66600.0, - "block_time": 1730809760, + "block_time": 1730814999, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "ae440ea26876a0762cff044b531b596339cb2dc6128b5876192e460802f8fa45", + "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", "block_index": 138, - "block_time": 1730809760 + "block_time": 1730814999 } ], "next_cursor": 213, @@ -11426,22 +11454,22 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "start_block": 0, "status": "open", - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "tx_index": 42, - "block_time": 1730809856, - "price_normalized": "0.00000001", + "block_time": 1730815076, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000005", "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "a0a3d10c4e412c30abaebd3c84e10ffcceefb8465090f5a5a02b204f5b7f937c", + "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", "block_index": 155, - "block_time": 1730809856 + "block_time": 1730815076 } ], "next_cursor": 196, @@ -11454,11 +11482,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d6c762c5a9ebda793df220cb6dfa4bb35ae2fc93b0ee59467173cb3c4b4cbf9b" + "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0" }, "tx_hash": null, "block_index": 130, - "block_time": 1730809718 + "block_time": 1730814958 } ], "next_cursor": 110, @@ -11474,17 +11502,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f51796961f7524b8c087606e2264d18f991cb8e2512eef705995bbc9496824df", + "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", "paid_quantity": 34, - "source": "bcrt1q32wp3ezg2tpqekhzjrtqf8v26cvhlxprm87mg6", + "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", "status": "valid", - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "tx_index": 23, - "block_time": 1730809751, + "block_time": 1730814993, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, @@ -11492,9 +11520,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ad9b51c4eff78e64e95dfd6a5eadfa232fe1d6f433fefff5dbf8210c56995cfe", + "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", "block_index": 136, - "block_time": 1730809751 + "block_time": 1730814993 } ], "next_cursor": 190, @@ -11508,28 +11536,28 @@ "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528:0", + "destination": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "status": "valid", - "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", + "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", "tx_index": 67, - "block_time": 1730810052, + "block_time": 1730815268, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qeh2d3xf33x2pzknqjuhq6ka63t0vh9zhvu85m6", + "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a7cbc070917fa7a5acd5cef6b8f07b5fad76b439ae6dde78bb3c530198e2f528", + "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", "block_index": 201, - "block_time": 1730810052 + "block_time": 1730815268 } ], "next_cursor": 319, @@ -11543,28 +11571,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1q80znwrwnugd29wr2u56ndqljlmlj8j0e8n3dvh", + "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "c2639db4b7e7e05d3659c155e8595ddc00fa0c07887e20181aac8dad6687ed1d:0", + "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", "status": "valid", - "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", + "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", "tx_index": 38, - "block_time": 1730809840, + "block_time": 1730815061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q307ceyhmdgr90ajm777u7jal30cdeac63w4vsu", + "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "61556103602203b7b8639e3301d02d42e351902a7fb572384426af818626e870", + "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", "block_index": 151, - "block_time": 1730809840 + "block_time": 1730815061 } ], "next_cursor": null, @@ -11578,14 +11606,14 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625:0", + "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", "msg_index": 1, "quantity": 1500000000, - "source": "669d19fff915d94f67946bf7c30463a30700b7d693644b9581188b3f0385a215:1", + "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", "status": "valid", - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "tx_index": 77, - "block_time": 1730810115, + "block_time": 1730815328, "asset_info": { "divisible": true, "asset_longname": null, @@ -11595,9 +11623,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "56f0d0735d19e99e1186cdf967a8fa53a5e13e273cb83ba0bb6cf0d07fb11625", + "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", "block_index": 210, - "block_time": 1730810115 + "block_time": 1730815328 } ], "next_cursor": 688, @@ -11612,17 +11640,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtvwuvtuyc4k2hk84n7y8dtncjnxcnxw552z93e", + "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", "status": "valid", - "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", + "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", "tx_index": 9, - "block_time": 1730809684, + "block_time": 1730814922, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "252f7698ca2c9814df25f1a86f9e926eddd1860d5c5399bff2254cc0ac06aa82", + "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", "block_index": 121, - "block_time": 1730809684 + "block_time": 1730814922 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py index 9dce40c1d0..884378a147 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py @@ -90,6 +90,7 @@ "last_status_tx_source": None, "oracle_address": None, "origin": "$ADDRESS_1", + "price": 1.0, "satoshirate": 1, "source": "$ADDRESS_1", "status": 0, @@ -109,6 +110,7 @@ "last_status_tx_source": None, "oracle_address": None, "origin": "$ADDRESS_1", + "price": 1.0, "satoshirate": 1, "source": "$ADDRESS_1", "status": 10, diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 601856fcbb..19ea7f1484 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -19,6 +19,7 @@ - Add `validate` argument to compose API - Add sortable `get_price` and `give_price` fields in orders +- Add sortable `price` field in dispensers ## CLI From 90ae78138c3e672d924f264ee5fa8cefaa14a4b2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 14:45:13 +0000 Subject: [PATCH 060/138] Use 'asset_infos' table to populate 'asset_info' field --- .../counterpartycore/lib/ledger.py | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index 80c85908bf..b805752001 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -922,14 +922,11 @@ def get_assets_last_issuance(db, asset_list): cursor = db.cursor() fields = ["asset", "asset_longname", "description", "issuer", "divisible", "locked"] query = f""" - SELECT {", ".join(fields)}, MAX(rowid) AS rowid - FROM issuances + SELECT {", ".join(fields)} FROM assets_info WHERE asset IN ({",".join(["?"] * len(asset_list))}) - AND status = ? - GROUP BY asset """ # nosec B608 # noqa: S608 - cursor.execute(query, asset_list + ["valid"]) - issuances = cursor.fetchall() + cursor.execute(query, asset_list) + assets_info = cursor.fetchall() result = { "BTC": { @@ -947,11 +944,10 @@ def get_assets_last_issuance(db, asset_list): "issuer": None, }, } - for issuance in issuances: - del issuance["rowid"] - asset = issuance["asset"] - del issuance["asset"] - result[asset] = issuance + for asset_info in assets_info: + asset = asset_info["asset"] + del asset_info["asset"] + result[asset] = asset_info return result From 8205a19c9007eb9f19af85994c61907d1fff2c6f Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 14:47:57 +0000 Subject: [PATCH 061/138] update release notes --- release-notes/release-notes-v10.6.2.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 19ea7f1484..4dba042866 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -20,6 +20,7 @@ - Add `validate` argument to compose API - Add sortable `get_price` and `give_price` fields in orders - Add sortable `price` field in dispensers +- Fix `locked` in `asset_info` field ## CLI From 1ff806c53716814adcc78b9bef86220f39a1279c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 13:21:18 +0000 Subject: [PATCH 062/138] Partial Minting to reach Hard Cap --- .../counterpartycore/lib/messages/fairmint.py | 17 +- .../counterpartycore/protocol_changes.json | 9 +- .../scenarios/scenario_16_fairminter.py | 174 ++++++++++++++++++ 3 files changed, 196 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index d60aa99aab..934fba8b3a 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -3,7 +3,7 @@ import math import struct -from counterpartycore.lib import config, database, exceptions, ledger +from counterpartycore.lib import config, database, exceptions, ledger, util from counterpartycore.lib.messages import fairminter as fairminter_mod logger = logging.getLogger(config.LOGGER_NAME) @@ -89,7 +89,7 @@ def validate( balance = ledger.get_balance(db, source, config.XCP) if balance < xcp_total_price: problems.append("insufficient XCP balance") - else: + elif not util.enabled("partial_mint_to_reach_hard_cap"): # check id we don't exceed the hard cap if ( fairminter["hard_cap"] > 0 @@ -194,7 +194,18 @@ def parse(db, tx, message): earn_quantity = quantity else: paid_quantity = 0 - earn_quantity = fairminter["max_mint_per_tx"] + if util.enabled("partial_mint_to_reach_hard_cap"): + asset_supply = ledger.asset_supply(db, fairminter["asset"]) + if ( + fairminter["hard_cap"] > 0 + and asset_supply + fairminter["max_mint_per_tx"] > fairminter["hard_cap"] + ): + earn_quantity = fairminter["hard_cap"] - asset_supply + else: + earn_quantity = fairminter["max_mint_per_tx"] + else: + earn_quantity = fairminter["max_mint_per_tx"] + # we determine the commission to be paid to the issuer # and we subtract it from the assets to be sent to the user commission = 0 diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 2ab79f577c..5743bae7c5 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -660,7 +660,14 @@ "spend_utxo_to_detach": { "minimum_version_major": 10, "minimum_version_minor": 6, - "minimum_version_revision": 0, + "minimum_version_revision": 2, + "block_index": 870000, + "testnet_block_index": 3195137 + }, + "partial_mint_to_reach_hard_cap": { + "minimum_version_major": 10, + "minimum_version_minor": 6, + "minimum_version_revision": 2, "block_index": 870000, "testnet_block_index": 3195137 } diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py index 55b1f8153d..f82279ca93 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py @@ -86,4 +86,178 @@ }, ], }, + { + "title": "Create free fairminter with hardcap 180", + "transaction": "fairminter", + "source": "$ADDRESS_1", + "params": { + "asset": "FREEFAIRMINT", + "max_mint_per_tx": 100, + "hard_cap": 180, + }, + "set_variables": { + "FREEFAIRMINT_TX_HASH": "$TX_HASH", + }, + "controls": [], + }, + { + "title": "Mint 100 FREEFAIRMINT", + "transaction": "fairmint", + "source": "$ADDRESS_2", + "params": { + "asset": "FREEFAIRMINT", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=DEBIT,CREDIT,NEW_FAIRMINT,ASSET_ISSUANCE", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "FREEFAIRMINT", + "asset_longname": "", + "asset_events": "fairmint", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "", + "description_locked": False, + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_1", + "locked": False, + "msg_index": 0, + "quantity": 100, + "reset": False, + "source": "$ADDRESS_2", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINT", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "FREEFAIRMINT", + "block_index": "$BLOCK_INDEX", + "commission": 0, + "earn_quantity": 100, + "fairminter_tx_hash": "$FREEFAIRMINT_TX_HASH", + "paid_quantity": 0, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_2", + "asset": "FREEFAIRMINT", + "block_index": "$BLOCK_INDEX", + "calling_function": "fairmint", + "event": "$TX_HASH", + "quantity": 100, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Mint 80 FREEFAIRMINT", + "transaction": "fairmint", + "source": "$ADDRESS_2", + "params": { + "asset": "FREEFAIRMINT", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=DEBIT,CREDIT,NEW_FAIRMINT,FAIRMINTER_UPDATE,ASSET_ISSUANCE", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "FREEFAIRMINT", + "asset_longname": "", + "asset_events": "fairmint", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "", + "description_locked": False, + "divisible": True, + "fair_minting": False, + "fee_paid": 0, + "issuer": "$ADDRESS_1", + "locked": False, + "msg_index": 0, + "quantity": 80, + "reset": False, + "source": "$ADDRESS_2", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "FAIRMINTER_UPDATE", + "event_index": "$EVENT_INDEX_5", + "params": {"status": "closed", "tx_hash": "$FREEFAIRMINT_TX_HASH"}, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINT", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "FREEFAIRMINT", + "block_index": "$BLOCK_INDEX", + "commission": 0, + "earn_quantity": 80, + "fairminter_tx_hash": "$FREEFAIRMINT_TX_HASH", + "paid_quantity": 0, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_2", + "asset": "FREEFAIRMINT", + "block_index": "$BLOCK_INDEX", + "calling_function": "fairmint", + "event": "$TX_HASH", + "quantity": 80, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, ] From d25c3ec43db6e25e755a544beec0c564c093e4c4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 4 Nov 2024 15:18:38 +0000 Subject: [PATCH 063/138] fix dredd test --- counterparty-core/counterpartycore/lib/api/compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 7f1a37bd9d..18e4fcd6e3 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -406,7 +406,7 @@ def compose_mpma( ): """ 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 address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_2) :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) From 814ef2ae3c14e75165d2478a66aaf927a6cfffea Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 5 Nov 2024 20:00:43 +0000 Subject: [PATCH 064/138] Support correctly --- .../lib/messages/fairminter.py | 23 ++++++++++++------- release-notes/release-notes-v10.6.2.md | 2 +- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 986d3fbbc8..10b3f3f805 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -128,13 +128,17 @@ def validate( except exceptions.AssetNameError as e: problems.append(f"Invalid asset name: {e}") - asset_name = asset - # is subasset ? - if asset_parent != "": - asset_name = f"{asset_parent}.{asset}" - # check if asset exists + asset_name = asset existing_asset = ledger.get_asset(db, asset_name) + if existing_asset and existing_asset["asset_longname"]: + asset_name = existing_asset["asset_longname"] + if asset_parent != "": + problems.append("Asset parent cannot be set for a subasset.") + asset_parent, asset = asset_name.split(".") + elif asset_parent != "": + asset_name = f"{asset_parent}.{asset}" + existing_asset = ledger.get_asset(db, asset_name) if existing_asset: # check if a fair minter is already opened for this asset @@ -413,10 +417,13 @@ def parse(db, tx, message): # is subasset ? asset_longname = "" - if asset_parent != "": + existing_asset = ledger.get_asset(db, asset) + if existing_asset and existing_asset["asset_longname"]: + asset_longname = existing_asset["asset_longname"] + asset_parent, asset = asset_longname.split(".") + elif asset_parent != "": asset_longname = f"{asset_parent}.{asset}" - - existing_asset = ledger.get_asset(db, asset_longname if asset_longname != "" else asset) + existing_asset = ledger.get_asset(db, asset_longname) fee = 0 asset_name = asset diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index f01a40224e..1e00618ddc 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -24,7 +24,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring ## Bugfixes - +- Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified ## Codebase From 2ed0e5942473a278bea52d8bd83ce51cb45e135b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 09:51:44 +0000 Subject: [PATCH 065/138] fix rebase and tests --- apiary.apib | 5995 ++++++++--------- .../counterpartycore/lib/api/compose.py | 2 +- .../test/fixtures/api_v2_fixtures.json | 2 +- .../test/regtest/apidoc/apicache.json | 5571 ++++++++------- .../regtest/scenarios/scenario_18_utxo.py | 6 +- .../test/regtest/testscenarios.py | 1 + 6 files changed, 5756 insertions(+), 5821 deletions(-) diff --git a/apiary.apib b/apiary.apib index 48135d598f..386e348b2d 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-06 09:16:54.939863. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-06 09:50:54.693257. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 702, + "event_index": 725, "event": "NEW_BLOCK", "params": { - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_index": 213, - "block_time": 1730884598, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_index": 216, + "block_time": 1730886637, "difficulty": 545259519, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108" + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427" }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 696, - "result_count": 113 + "next_cursor": 719, + "result_count": 116 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 703, + "event_index": 726, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_index": 213, - "block_time": 1730884598, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_index": 216, + "block_time": 1730886637, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "fee": 0, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 697, - "result_count": 81 + "next_cursor": 720, + "result_count": 84 } ``` @@ -242,24 +242,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 704, + "event_index": 727, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "out_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 574, + "next_cursor": 597, "result_count": 5 } ``` @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 701, - "result_count": 113 + "next_cursor": 724, + "result_count": 116 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 700, - "result_count": 66 + "next_cursor": 723, + "result_count": 69 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 708, + "event_index": 731, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 213, - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "block_index": 216, + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,13 +343,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 705, - "result_count": 75 + "next_cursor": 728, + "result_count": 76 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,13 +381,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 709, - "result_count": 94 + "next_cursor": 732, + "result_count": 96 } ``` @@ -397,34 +397,34 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 633, + "event_index": 656, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 207, - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "block_index": 210, + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "quantity": 1000, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "tx_index": 74, - "block_time": 1730884553, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_index": 77, + "block_time": 1730886595, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_time": 1730884553 + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_time": 1730886595 } ], - "next_cursor": 510, + "next_cursor": 533, "result_count": 3 } ``` @@ -435,20 +435,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 693, + "event_index": 716, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 211, - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 214, + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,12 +458,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 692, + "next_cursor": 715, "result_count": 15 } ``` @@ -494,24 +494,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 553, + "event_index": 576, "event": "SWEEP", "params": { - "block_index": 196, - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "block_index": 199, + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "status": "valid", - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "tx_index": 62, - "block_time": 1730884492, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_index": 65, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "block_time": 1730884492 + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "block_time": 1730886537 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "tx_index": 42, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "block_time": 1730884321 + "block_time": 1730886343 } ], "next_cursor": null, @@ -583,22 +583,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 624, + "event_index": 647, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 206, - "block_time": 1730884548 + "block_index": 209, + "block_time": 1730886581 }, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_time": 1730884548 + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_time": 1730886581 } ], - "next_cursor": 583, - "result_count": 12 + "next_cursor": 606, + "result_count": 13 } ``` @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 625, + "event_index": 648, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 206, + "block_index": 209, "call_date": 0, "call_price": 0.0, "callable": false, @@ -622,26 +622,26 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", "transfer": false, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "tx_index": 73, - "block_time": 1730884548, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 76, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_time": 1730884548 + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_time": 1730886581 } ], - "next_cursor": 584, - "result_count": 24 + "next_cursor": 607, + "result_count": 27 } ``` @@ -651,18 +651,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 559, + "event_index": 582, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 197, + "block_index": 200, "quantity": 1, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "tx_index": 63, - "block_time": 1730884496, + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_index": 66, + "block_time": 1730886540, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "block_index": 197, - "block_time": 1730884496 + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "block_index": 200, + "block_time": 1730886540 } ], "next_cursor": 157, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 699, + "event_index": 722, "event": "OPEN_ORDER", "params": { - "block_index": 212, + "block_index": 215, "expiration": 21, - "expire_index": 233, + "expire_index": 236, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "status": "open", - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "tx_index": 79, - "block_time": 1730884584, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "tx_index": 82, + "block_time": 1730886624, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -734,12 +734,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": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "block_time": 1730884584 + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "block_time": 1730886624 } ], - "next_cursor": 541, + "next_cursor": 564, "result_count": 8 } ``` @@ -750,29 +750,29 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 671, + "event_index": 694, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 210, + "block_index": 213, "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "match_expire_index": 230, + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "match_expire_index": 233, "status": "pending", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx0_block_index": 195, + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_block_index": 198, "tx0_expiration": 21, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_index": 61, - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "tx1_block_index": 210, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_index": 64, + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_block_index": 213, "tx1_expiration": 21, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_index": 55, - "block_time": 1730884566, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_index": 58, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -791,12 +791,12 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_time": 1730884566 + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_time": 1730886606 } ], - "next_cursor": 498, + "next_cursor": 521, "result_count": 4 } ``` @@ -807,18 +807,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 684, + "event_index": 707, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b" + "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 670, + "next_cursor": 693, "result_count": 16 } ``` @@ -829,15 +829,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 489, + "event_index": 512, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387" + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b" }, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "block_time": 1730884441 + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "block_time": 1730886496 } ], "next_cursor": null, @@ -851,19 +851,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 665, + "event_index": 688, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "status": "expired" }, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_time": 1730884566 + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_time": 1730886606 } ], - "next_cursor": 488, + "next_cursor": 511, "result_count": 3 } ``` @@ -874,23 +874,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 490, + "event_index": 513, "event": "BTC_PAY", "params": { - "block_index": 188, + "block_index": 191, "btc_amount": 2000, - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "tx_index": 54, - "block_time": 1730884441, + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_index": 57, + "block_time": 1730886496, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "block_time": 1730884441 + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "block_time": 1730886496 } ], "next_cursor": null, @@ -904,20 +904,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 535, + "event_index": 558, "event": "CANCEL_ORDER", "params": { - "block_index": 194, - "offer_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 197, + "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "tx_index": 60, - "block_time": 1730884485 + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_index": 63, + "block_time": 1730886529 }, - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "block_index": 194, - "block_time": 1730884485 + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "block_index": 197, + "block_time": 1730886529 } ], "next_cursor": null, @@ -931,20 +931,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 685, + "event_index": 708, "event": "ORDER_EXPIRATION", "params": { - "block_index": 211, - "order_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "block_time": 1730884580 + "block_index": 214, + "order_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "block_time": 1730886620 }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 640, + "next_cursor": 663, "result_count": 4 } ``` @@ -955,21 +955,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 668, + "event_index": 691, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 210, - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "block_time": 1730884566 + "block_index": 213, + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "block_time": 1730886606 }, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_time": 1730884566 + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_time": 1730886606 } ], - "next_cursor": 464, + "next_cursor": 487, "result_count": 2 } ``` @@ -982,27 +982,27 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 569, + "event_index": 592, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 199, + "block_index": 202, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "satoshirate": 1, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": 0, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "tx_index": 65, - "block_time": 1730884513, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_index": 68, + "block_time": 1730886548, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 199, - "block_time": 1730884513 + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 202, + "block_time": 1730886548 } ], "next_cursor": 272, @@ -1027,15 +1027,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,12 +1045,12 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 576, + "next_cursor": 599, "result_count": 8 } ``` @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "musJjGf26KUkxLu8bL5eELQs8fhbi864yV", + "destination": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", "dispense_quantity": 10, - "dispenser_tx_hash": "4d730de3a7dd1d36dc971868a9934b4710203325b59dc25bef79c237049ade8f", - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx_hash": "0f833e31d6ecc289070b94e36cb21ee568c8b66706a9dbc124d22147217238e8", + "dispenser_tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", "tx_index": 31, - "block_time": 1730884279, + "block_time": 1730886302, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "0f833e31d6ecc289070b94e36cb21ee568c8b66706a9dbc124d22147217238e8", + "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", "block_index": 144, - "block_time": 1730884279 + "block_time": 1730886302 } ], "next_cursor": null, @@ -1098,20 +1098,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1122,12 +1122,12 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 577, + "next_cursor": 600, "result_count": 5 } ``` @@ -1146,19 +1146,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": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "tx_index": 25, "value": 66600.0, - "block_time": 1730884237, + "block_time": 1730886280, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "block_time": 1730884237 + "block_time": 1730886280 } ], "next_cursor": 213, @@ -1174,48 +1174,48 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 349, + "event_index": 356, "event": "NEW_FAIRMINTER", "params": { - "asset": "A95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "asset_parent": "MYASSETA", - "block_index": 156, + "asset": "FREEFAIRMINT", + "asset_longname": "", + "asset_parent": "", + "block_index": 157, "burn_payment": false, "description": "", "divisible": true, "end_block": 0, - "hard_cap": 0, + "hard_cap": 180, "lock_description": false, "lock_quantity": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "minted_asset_commission_int": 0, "pre_minted": false, "premint_quantity": 0, - "price": 1, - "quantity_by_price": 5, + "price": 0, + "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "start_block": 0, "status": "open", - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", - "tx_index": 43, - "block_time": 1730884325, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_time": 1730886352, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", - "block_index": 156, - "block_time": 1730884325 + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "block_index": 157, + "block_time": 1730886352 } ], - "next_cursor": 196, - "result_count": 5 + "next_cursor": 349, + "result_count": 6 } ``` @@ -1225,19 +1225,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 155, + "event_index": 373, "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931" + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211" }, - "tx_hash": null, - "block_index": 130, - "block_time": 1730884198 + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "block_index": 159, + "block_time": 1730886370 } ], - "next_cursor": 110, - "result_count": 2 + "next_cursor": 155, + "result_count": 3 } ``` @@ -1247,38 +1247,38 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 207, + "event_index": 372, "event": "NEW_FAIRMINT", "params": { - "asset": "FAIRMINTD", - "block_index": 136, + "asset": "FREEFAIRMINT", + "block_index": 159, "commission": 0, - "earn_quantity": 40, - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "paid_quantity": 34, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "earn_quantity": 80, + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "paid_quantity": 0, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_time": 1730884230, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" }, - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "block_index": 136, - "block_time": 1730884230 + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "block_index": 159, + "block_time": 1730886370 } ], - "next_cursor": 190, - "result_count": 10 + "next_cursor": 365, + "result_count": 12 } ``` @@ -1290,36 +1290,36 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 618, + "event_index": 641, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 205, - "destination": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5:0", + "block_index": 208, + "destination": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "status": "valid", - "tx_hash": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "tx_index": 72, - "block_time": 1730884545, + "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_index": 75, + "block_time": 1730886578, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "block_index": 205, - "block_time": 1730884545 + "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "block_index": 208, + "block_time": 1730886578 } ], - "next_cursor": 593, + "next_cursor": 616, "result_count": 5 } ``` @@ -1330,33 +1330,33 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 610, + "event_index": 633, "event": "DETACH_FROM_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 204, - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "block_index": 207, + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "956e3b483564e885a5de19f4ad17ada4711efe08d43447ef87cca985b27ca79f:0", + "source": "1cb31e85b64a5555769a2d32c674a64224e8a1c904b259f6964656bbdba4175e:0", "status": "valid", - "tx_hash": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "tx_index": 71, - "block_time": 1730884542, + "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_index": 74, + "block_time": 1730886573, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "block_index": 204, - "block_time": 1730884542 + "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "block_index": 207, + "block_time": 1730886573 } ], "next_cursor": 311, @@ -1370,19 +1370,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 710, + "event_index": 733, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 213, - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "block_index": 216, + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "msg_index": 1, "quantity": 2000000000, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", "status": "valid", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,12 +1392,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 707, + "next_cursor": 730, "result_count": 11 } ``` @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtj558eqjpr8535ds772a9zv4xasuydnrkh3nj8", + "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", "status": "valid", - "tx_hash": "2cf83eb06925ce9353c6448d088541d61a2060e223248e4cab9f7dd40350df54", + "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", "tx_index": 9, - "block_time": 1730884165, + "block_time": 1730886217, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2cf83eb06925ce9353c6448d088541d61a2060e223248e4cab9f7dd40350df54", + "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", "block_index": 121, - "block_time": 1730884165 + "block_time": 1730886217 } ], "next_cursor": 65, @@ -1465,7 +1465,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `213` (str, optional) - The index of the most recent block to return + + cursor: `216` (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` @@ -1482,68 +1482,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", "difficulty": 545259519, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, "confirmed": true }, { - "block_index": 212, - "block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", - "block_time": 1730884584, - "previous_block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", + "block_index": 215, + "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_time": 1730886624, + "previous_block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", "difficulty": 545259519, - "ledger_hash": "2e03b30521a72f313115ae98e224418e3fcacdc4a8f993258a16fd28bbe7c171", - "txlist_hash": "2eeddb7c41b451fafee1d77e32e907cb01a81e9b4cea33d366d985718a6426ed", - "messages_hash": "12f00b986f225fff3ef5f2420383063a4cfbdbed5bf23ada4d045f4d6d6eaf1c", + "ledger_hash": "4a2ce5404e543bec2e3d0a3d601790892724baf757c6862310ba9c9d3df35df5", + "txlist_hash": "9444b4994ced319d8d8a37636d2743c6ba940b7a417c82bfbd3a7149283875e9", + "messages_hash": "193dc4c585cd7b9c9c64adebaf12e8d804d6ae183dbba550745135ecbb9604bb", "transaction_count": 1, "confirmed": true }, { - "block_index": 211, - "block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", - "block_time": 1730884580, - "previous_block_hash": "57714d24824aa1b5bb0d1adc5aaff232aedc4d74d10c995780aafe50beb9ab4d", + "block_index": 214, + "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_time": 1730886620, + "previous_block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", "difficulty": 545259519, - "ledger_hash": "8cb1537b8b67a45284be966d2c49ac1ff66bfe251b6cf3ce18b674523676e9fe", - "txlist_hash": "ed8ab455cf9305256c904900c0ac15a37812e123f553b683d1e9d22c748a6dc9", - "messages_hash": "464840862458467e6b8694c01989db796b4a97bd3fc670f803ccb443a764b75c", + "ledger_hash": "14c940a84f3314ff088c8ae41ae4461993a5f6723af74a4830909a4435160970", + "txlist_hash": "97ca3575aba4bae0b540b67777f953d5763f8edbe3bc53b683c69f6905307ef8", + "messages_hash": "a7476b4c76c553528bae39fda715adc1318ca3d307122ac2f9378bb2e7609715", "transaction_count": 1, "confirmed": true }, { - "block_index": 210, - "block_hash": "57714d24824aa1b5bb0d1adc5aaff232aedc4d74d10c995780aafe50beb9ab4d", - "block_time": 1730884566, - "previous_block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", + "block_index": 213, + "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", + "block_time": 1730886606, + "previous_block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", "difficulty": 545259519, - "ledger_hash": "9185c2efaf96fd7362adbc7cc563d30c1eaee2dbd4ed0998c60a4dc2a94b2094", - "txlist_hash": "f06e60f4cb4ea0f13afb89f8e97eba45f1b1d34f93142092f98a793001bfda4f", - "messages_hash": "f3709c85f8d8e673bb8bf66695e0310395635ecbdfda9354d1f2bc3c0a520761", + "ledger_hash": "6c1eb330077904aeb0291ace28883e5bfd4715bc6477dc40f5883b3467ff8297", + "txlist_hash": "0e960685873437705c0b2503ae83c5650d5fea2398c93c898521d89b9c89acba", + "messages_hash": "72152ff841590875ca0252a0e725f2c8e888c9f113f319f687ec639c89f6ae5f", "transaction_count": 1, "confirmed": true }, { - "block_index": 209, - "block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", - "block_time": 1730884561, - "previous_block_hash": "7bb2fb23ea6b04169342759f8db28963793cf1b8d06e939a935cfd4d3953eeec", + "block_index": 212, + "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_time": 1730886603, + "previous_block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", "difficulty": 545259519, - "ledger_hash": "cb73dc64f8922a4369da66b22dd05631d052dd2472b15e9be7c450aacee7221f", - "txlist_hash": "d26cc32638659220eb89b58edccc06bf0c93814e16d02c447da396777c30bb19", - "messages_hash": "c49ebe2494f6e333552459e6a97606576cf9abc029ec575531cc6d55d3b8a107", + "ledger_hash": "47c34859d5f8cf69be7eee7fc0634f0a703461dc4eeb18420cc3f98decfe55b0", + "txlist_hash": "4b7d62a61b9d44386fd3fbbfb0be78c5d2e7e85fccaca876ca99ebe02011b221", + "messages_hash": "2925e83a1854ca2d6c988538d276c9d4a4746de5aeb6bc67c0e55f9b4f8af08c", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 208, - "result_count": 113 + "next_cursor": 211, + "result_count": 116 } ``` @@ -1562,7 +1562,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (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. @@ -1573,14 +1573,14 @@ Return the information of a block ``` { "result": { - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", "difficulty": 545259519, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946` (str, required) - The index of the block to return + + block_hash: `5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d` (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,14 +1603,14 @@ Return the information of a block ``` { "result": { - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", "difficulty": 545259519, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, "confirmed": true } @@ -1622,8 +1622,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return - + cursor: `80` (str, optional) - The last transaction index to return + + block_index: `216` (int, required) - The index of the block to return + + cursor: `83` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1640,18 +1640,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1673,10 +1673,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1693,43 +1693,43 @@ Returns the events of a block { "result": [ { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null }, { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1740,18 +1740,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1786,10 +1786,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" } ], - "next_cursor": 710, + "next_cursor": 733, "result_count": 14 } ``` @@ -1799,7 +1799,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (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 @@ -1847,7 +1847,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (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` @@ -1866,19 +1866,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1888,22 +1888,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1913,32 +1913,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" } ], "next_cursor": null, @@ -1951,7 +1951,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2000,17 +2000,17 @@ Returns the credits of a block { "result": [ { - "block_index": 213, - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "block_index": 216, + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2021,17 +2021,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 213, + "block_index": 216, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2042,21 +2042,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 213, + "block_index": 216, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2073,7 +2073,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2111,17 +2111,17 @@ Returns the debits of a block { "result": [ { - "block_index": 213, + "block_index": 216, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2132,21 +2132,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 213, + "block_index": 216, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2163,7 +2163,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `211` (int, required) - The index of the block to return + + block_index: `214` (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 @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "block_index": 211, + "object_id": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "block_index": 214, "confirmed": true, - "block_time": 1730884580 + "block_time": 1730886620 } ], "next_cursor": null, @@ -2198,7 +2198,7 @@ Returns the expirations of a block Returns the cancels of a block + Parameters - + block_index: `194` (int, required) - The index of the block to return + + block_index: `197` (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 @@ -2216,14 +2216,14 @@ Returns the cancels of a block { "result": [ { - "tx_index": 60, - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "offer_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", + "tx_index": 63, + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", "status": "valid", "confirmed": true, - "block_time": 1730884485 + "block_time": 1730886529 } ], "next_cursor": null, @@ -2236,7 +2236,7 @@ Returns the cancels of a block Returns the destructions of a block + Parameters - + block_index: `197` (int, required) - The index of the block to return + + block_index: `200` (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 @@ -2254,16 +2254,16 @@ Returns the destructions of a block { "result": [ { - "tx_index": 63, - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "block_index": 197, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 66, + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "block_index": 200, + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730884496, + "block_time": 1730886540, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2284,7 +2284,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `206` (int, required) - The index of the block to return + + block_index: `209` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2315,15 +2315,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2353,7 +2353,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (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 @@ -2371,11 +2371,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2395,11 +2395,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2429,7 +2429,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `213` (int, required) - The index of the block to return + + block_index: `216` (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 @@ -2447,29 +2447,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2506,7 +2506,7 @@ Returns the dispenses of a block Returns the sweeps of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `199` (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 @@ -2524,17 +2524,17 @@ Returns the sweeps of a block { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -2548,7 +2548,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `156` (int, required) - The block index of the fairminter to return + + block_index: `159` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2573,19 +2573,19 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -2596,18 +2596,21 @@ Returns the fairminters by its block index "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, "confirmed": true, - "block_time": 1730884325, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", + "block_time": 1730886370, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -2620,7 +2623,7 @@ Returns the fairminters by its block index Returns the fairmints by its block index + Parameters - + block_index: `136` (int, required) - The block index of the fairmint to return + + block_index: `159` (int, required) - The block index of the fairmint to return + cursor (str, optional) - The last index of the fairmint to return + Default: `None` + limit: `5` (int, optional) - The maximum number of fairmint to return @@ -2638,28 +2641,28 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -2694,17 +2697,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "block_hash": "2db9729a31ccd5113871bb18b4ae20c759b5c229f75879e83c8967bb326ce1ea", - "block_time": 1730884237, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_hash": "74b01284da584e15e47f6d2bacfb0de0872c7e74a726465204194bb7f75db21f", + "block_time": 1730886280, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0:1 2 ", + "utxos_info": " 5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2728,26 +2731,26 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 54, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "block_hash": "6120fa6831660df545c0e2a974b6e3b9d73b8975a1c9d4c53f02396a921ea43c", - "block_time": 1730884441, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 57, + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "block_hash": "702f8580d41981d3588ac53799fb5aa0dd2371483d5f484d92bc0dd448a95a52", + "block_time": 1730886496, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "btc_amount": 2000, "fee": 10000, - "data": "0bcbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3deaf5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", + "data": "0b5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", "supported": true, - "utxos_info": " 5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a:0 3 1", + "utxos_info": " 23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", "status": "valid" } }, @@ -2761,24 +2764,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 60, - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "block_index": 194, - "block_hash": "6aade02f4ec7a6f4062ef0e4a052e2d10846266eddb7eefd36d9b45badfd3bab", - "block_time": 1730884485, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 63, + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "block_index": 197, + "block_hash": "2c3b85dd56f975b80f14268db6b524228b5a19d4da99d3ea99c18329a2bb1a68", + "block_time": 1730886529, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4662b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", + "data": "4638a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", "supported": true, - "utxos_info": " 4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b:1 2 ", + "utxos_info": " 0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", + "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", "status": "valid" } }, @@ -2792,18 +2795,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 63, - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "block_index": 197, - "block_hash": "433348abe947613cb74a022080dc20bd4c5a31b3486fa9cca2c3c8b625aa7b42", - "block_time": 1730884496, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 66, + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "block_index": 200, + "block_hash": "2f82945c17e531a7f600c8c47d7fd280ba3c38b749100c7e4ae90582d47ac96c", + "block_time": 1730886540, + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "e0ccc5968229f71afb06c0ddae0183b6fa3706cbb5be5e4ebaac1e0ace4cbd4b:1 93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 2 ", + "utxos_info": "363325b127e459a90d7a306995804fae5bcdd591c4fe5973652fd44d1ba50f4b:1 5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2832,18 +2835,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 199, - "block_hash": "677b5a48d499db48e1f296ffb2cb0d269a4f8ec7e2df1c6b8649229936aee66a", - "block_time": 1730884513, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 202, + "block_hash": "0d9e15163c4725e3733cbcdfebd1a077c34264a34de5681049530a0ec14a4832", + "block_time": 1730886548, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957:1 2 ", + "utxos_info": " 5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2863,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2878,18 +2881,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2912,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "block_hash": "6794de9afb3997907c43e2d8f3c62ccac4de28730af7ca3e3bb618a9b36bd40a", - "block_time": 1730884321, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_hash": "55cd8ccd996256fa17580abeb6904fbca04881edaa04a5680da4df850c15a6ad", + "block_time": 1730886343, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab:1 2 ", + "utxos_info": " 1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2935,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2956,18 +2959,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_hash": "29345d5e9c6ed02e1b02972b781d9daf4957dfa5d3fe07a871a76f953bba5b06", - "block_time": 1730884548, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_hash": "3eee0202e49997e9138f321ad34f3ebc4b0f05692963a115eaf5c152a5ee65b5", + "block_time": 1730886581, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805:1 2 ", + "utxos_info": " eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2998,18 +3001,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 79, - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", - "block_time": 1730884584, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 82, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_time": 1730886624, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25:1 2 ", + "utxos_info": " a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3028,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -3051,18 +3054,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_hash": "79cd26e0fad17347428aa7b2b4f2e71ec4a2da27dc01374ed4a87c1926943280", - "block_time": 1730884553, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 77, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", + "block_time": 1730886595, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "supported": true, - "utxos_info": " b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83:1 2 ", + "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3073,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -3092,18 +3095,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", - "block_time": 1730884580, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_time": 1730886620, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380521982e6e38b010fa2959ab665fe0566e12cd682806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a:0 4 ", + "utxos_info": " 62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3114,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -3126,7 +3129,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3151,24 +3154,24 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "block_hash": "2c8430a1405643262dddda48c1eb859df30ae2c4f877469cf8b67de04fba3745", - "block_time": 1730884492, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "block_hash": "55add94b1ea93f07a8f69e30307b3a3398ed8d113a8dcd05212f17e22cb91744", + "block_time": 1730886537, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480c8f5115de862a59398869599a2052d29beae3330017377656570206d7920617373657473", + "data": "0480fa6b94743d53f5f6af69583dd022e460c5a7074c017377656570206d7920617373657473", "supported": true, - "utxos_info": " 33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2:1 2 ", + "utxos_info": " c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "memo": "sweep my assets" } @@ -3183,18 +3186,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 72, - "tx_hash": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "block_index": 205, - "block_hash": "1cfb0e487581dce4d6c867391e892f893d2cb81373959a8cabda8f94591f67a3", - "block_time": 1730884545, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 75, + "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "block_index": 208, + "block_hash": "7eec77254205210426e84026d1e3a1f0f0337690c6c545686c41dc8c4c24c393", + "block_time": 1730886578, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5:0 3 1", + "utxos_info": " 08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3209,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -3223,18 +3226,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 71, - "tx_hash": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "block_index": 204, - "block_hash": "19bf68e97835c5600bbf3896f7a40f0559e5830c8254dfae836706df64e3c4ad", - "block_time": 1730884542, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 74, + "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "block_index": 207, + "block_hash": "6ee308bb05a38403aa9943cc224064cf10ccf0926a30939150b0dd5574eaea98", + "block_time": 1730886573, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "956e3b483564e885a5de19f4ad17ada4711efe08d43447ef87cca985b27ca79f:0 1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578:1 2 ", + "utxos_info": "1cb31e85b64a5555769a2d32c674a64224e8a1c904b259f6964656bbdba4175e:0 5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3253,7 +3256,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `80` (str, optional) - The index of the most recent transactions to return + + cursor: `83` (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` @@ -3270,18 +3273,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3293,18 +3296,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 79, - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", - "block_time": 1730884584, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 82, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_time": 1730886624, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25:1 2 ", + "utxos_info": " a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3323,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -3339,8 +3342,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 78, - "result_count": 81 + "next_cursor": 81, + "result_count": 84 } ``` @@ -3349,7 +3352,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106535830b08795c4e6e336436c82e955fba5b6fd497bd92bd340098e664a10f96c0000000000ffffffff450f13d83d9029ab9e99183b76dec30e076085a55f6cf6cb8d4ce099b4cfb0850000000000ffffffffea8c9e8da7c51f44e71bec3b92efeaaf529ee7cc3aeb6b2dbad385c88028e8220000000000ffffffff4096056c11414dc4d25e6f8ce141cbc5c7e43831df8de77043a474f481eca0340000000000ffffffffbfff4e69a4394ce1f6801ba9a0301666d8b81582c2d8001eca5b90250eaaaf790000000000ffffffff7f09ff9688f908d98cfa0db6e87d5a4ea95a034cdfa9415531885e258baefac00000000000ffffffff04e80300000000000069512102f7984928115fc97aaaa4508f6a4451e0db11940c0176821c21b07bca826cf31421026cdb70d022b32d36c98e741926b975ba54c1f2531f46ed0d5dc0f309d08f814e210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253aee80300000000000069512103f7984928115fc97aaa34c80a7f50676dc70393f26d25d15cc45b3ad097de721c21033ab2f0bba70d9edf97229881046b91a6878bf6d8e79979e0f0588d67b8ed24fc210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253aee80300000000000069512103d6984928115fc97aaaa7508ceac94568ea2a2d5c5e15c577af75b2c9971aa62d21023ab2f0bba70d9ef582970d34b8a191a6878bf6d8e793fc8d9535e25438ed246a210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae387923fc06000000160014521982e6e38b010fa2959ab665fe0566e12cd68202473044022052dc5517449680e35c8cfbd36a19126fc4357033c51ba85248921f6ec9a5afa4022079acb12a5d880674c14a9f6ad0521b3c7f93c6aedb316749b8b923be1fbf809a01210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f20247304402201517fd273cb149a31861e9179939f7778b146356416817879c71faef580a209b02204107faf1d2df4c570e0c00bc15acc4b457e566d4500a42fdbd19b05984a9222f01210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f202473044022019a4fbad8c9d2bb76d39af355d6f7002c2d18abb0eb02781f2a691ee8b3d799402205ebb2072fa1b9ac0dc8ac4da77cc21c5dc74d5c9930f5a50402f2a2bb6eeed3701210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f202473044022075783410d45a4da114d4a6283cf432ad62a5a152fe48a8685c375be30f13d91b02206cd48f72aea69728a1251280ddd994dde0b1c388f4262666491bf305699c9efd01210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f20247304402206eaca35bb7af1e88fe6f66c70d092c0eee6470f574f3242a31ee4a7f515bfa14022029e29852c2ebb655b8f86d142f982f5987fac90a9de7b67c4f114611e0b500e401210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f20247304402202620243dcef313ee8be81963374aac10f8c48cdcb59fe6ab1584b9253f58b14302207cb091acf9df3ab765b7bebfaa892517470b68f82f005bbf89d43bdc689af6c801210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106605694f6c029d04b69c9d40654e4735dd3d40e04b5996b386f5c7a71b40b47c30000000000ffffffff3a978d7e007d40c67ba4f8dc1c054c1d0a46502cc1860559bf4aaede837d5c180000000000ffffffff8d4d7c20ccfa6968e4377015bd9e0b7078a6d98375589e58e152609620a5a2ec0000000000ffffffffe35f6c08ca28b217d089ed6fa66e1ce2e224f51efcf33c4d1763b575ae4fbdb50000000000ffffffffbce276563e9b1c7e36c304c9552dce94d582464993e24ff4afbcad2434d5e4ab0000000000ffffffff1933d11652cc8b260abd57fb1c40940d8dbd08065f57eef504e39063702ea61e0000000000ffffffff04e80300000000000069512102af14eeb0084c152974c0c4dc20a3e9d4bf36a7ea2837501f6ebbead1f15832d32102023305782c7b2e0e0ad78bd86b0d9c2c372c0dd8777b190ff22bd50db943381521030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353aee80300000000000069512103af14eeb0084c152974356bb6f83467d69258478efc8e775963e0410df91312e62103affe851a1cce2caa14e5a9f79356902d54f34b6db1b7dd8f020041798410cdbd21030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353aee803000000000000695121038114eeb0084c152974c3c49fa009b7f476388201fbc2ff2d0b8561609c7e7d2f21032ffe8511da0f3d23bce5a9f79356902d06f34b6db1b7dd8f084041798410cd0421030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae387923fc060000001600147b8d32180ac4c5c380d3d70e5121633b537a226402473044022060bd3cf8dd9fd04596bef152b705e93498946f1948e6401f6984b44e4bb0b3ea02201e5949a78dafb528693316442df19b7bbf328f93725052f09e57773f6cff3f7a0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3024730440220599596e5682f14940ca521928a5442ad79a62fabc5a09c8a8278dde16b27ec4d02206c7ab29074a68e0275c4432bf0c06b6806b784deede4799189c4c8bec635f4e50121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac302473044022076b15ca17e376623fd0c37c7407393d9e225d5b341d5b4e0b279c0c6c7409d960220233515d11ceee2a205a6b151b428f4e4a7dd653a5868d770fa8b04966e8dfaea0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac30247304402207897a00dec9b1decdbe7b0603f2c0d6ce0a64a066c3dee2590c7d5d7a88403ea022010572029ddc8d1159b8b9adbbbd6bccdc99956232059e2d60cb2b477bd75d6320121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac30247304402202cce65d353ebfb1e56ed1399f0a3d2a3e3759aeb20614e773c23bca22d7bb0980220795eddc632a8db411e9feb0ae38185bfc8f859a577a93d90767389577a33491d0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac30247304402203b928cfc18d69421835bb3e0efb015b5bef38febceacd2885658daed064bab130220024634a9b73e8a1556ddbaf14ed571fe331180b167e118b06eb4205bd89cae7c0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac300000000` (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. @@ -3362,53 +3365,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "535830b08795c4e6e336436c82e955fba5b6fd497bd92bd340098e664a10f96c", + "hash": "605694f6c029d04b69c9d40654e4735dd3d40e04b5996b386f5c7a71b40b47c3", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "450f13d83d9029ab9e99183b76dec30e076085a55f6cf6cb8d4ce099b4cfb085", + "hash": "3a978d7e007d40c67ba4f8dc1c054c1d0a46502cc1860559bf4aaede837d5c18", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "ea8c9e8da7c51f44e71bec3b92efeaaf529ee7cc3aeb6b2dbad385c88028e822", + "hash": "8d4d7c20ccfa6968e4377015bd9e0b7078a6d98375589e58e152609620a5a2ec", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "4096056c11414dc4d25e6f8ce141cbc5c7e43831df8de77043a474f481eca034", + "hash": "e35f6c08ca28b217d089ed6fa66e1ce2e224f51efcf33c4d1763b575ae4fbdb5", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bfff4e69a4394ce1f6801ba9a0301666d8b81582c2d8001eca5b90250eaaaf79", + "hash": "bce276563e9b1c7e36c304c9552dce94d582464993e24ff4afbcad2434d5e4ab", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "7f09ff9688f908d98cfa0db6e87d5a4ea95a034cdfa9415531885e258baefac0", + "hash": "1933d11652cc8b260abd57fb1c40940d8dbd08065f57eef504e39063702ea61e", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3421,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512102f7984928115fc97aaaa4508f6a4451e0db11940c0176821c21b07bca826cf31421026cdb70d022b32d36c98e741926b975ba54c1f2531f46ed0d5dc0f309d08f814e210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae" + "script_pub_key": "512102af14eeb0084c152974c0c4dc20a3e9d4bf36a7ea2837501f6ebbead1f15832d32102023305782c7b2e0e0ad78bd86b0d9c2c372c0dd8777b190ff22bd50db943381521030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" }, { "value": 1000, - "script_pub_key": "512103f7984928115fc97aaa34c80a7f50676dc70393f26d25d15cc45b3ad097de721c21033ab2f0bba70d9edf97229881046b91a6878bf6d8e79979e0f0588d67b8ed24fc210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae" + "script_pub_key": "512103af14eeb0084c152974356bb6f83467d69258478efc8e775963e0410df91312e62103affe851a1cce2caa14e5a9f79356902d54f34b6db1b7dd8f020041798410cdbd21030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" }, { "value": 1000, - "script_pub_key": "512103d6984928115fc97aaaa7508ceac94568ea2a2d5c5e15c577af75b2c9971aa62d21023ab2f0bba70d9ef582970d34b8a191a6878bf6d8e793fc8d9535e25438ed246a210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae" + "script_pub_key": "5121038114eeb0084c152974c3c49fa009b7f476388201fbc2ff2d0b8561609c7e7d2f21032ffe8511da0f3d23bce5a9f79356902d06f34b6db1b7dd8f084041798410cd0421030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" }, { "value": 29999987000, - "script_pub_key": "0014521982e6e38b010fa2959ab665fe0566e12cd682" + "script_pub_key": "00147b8d32180ac4c5c380d3d70e5121633b537a2264" } ], "vtxinwit": [ - "3044022052dc5517449680e35c8cfbd36a19126fc4357033c51ba85248921f6ec9a5afa4022079acb12a5d880674c14a9f6ad0521b3c7f93c6aedb316749b8b923be1fbf809a01", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "304402201517fd273cb149a31861e9179939f7778b146356416817879c71faef580a209b02204107faf1d2df4c570e0c00bc15acc4b457e566d4500a42fdbd19b05984a9222f01", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "3044022019a4fbad8c9d2bb76d39af355d6f7002c2d18abb0eb02781f2a691ee8b3d799402205ebb2072fa1b9ac0dc8ac4da77cc21c5dc74d5c9930f5a50402f2a2bb6eeed3701", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "3044022075783410d45a4da114d4a6283cf432ad62a5a152fe48a8685c375be30f13d91b02206cd48f72aea69728a1251280ddd994dde0b1c388f4262666491bf305699c9efd01", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "304402206eaca35bb7af1e88fe6f66c70d092c0eee6470f574f3242a31ee4a7f515bfa14022029e29852c2ebb655b8f86d142f982f5987fac90a9de7b67c4f114611e0b500e401", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "304402202620243dcef313ee8be81963374aac10f8c48cdcb59fe6ab1584b9253f58b14302207cb091acf9df3ab765b7bebfaa892517470b68f82f005bbf89d43bdc689af6c801", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2" + "3044022060bd3cf8dd9fd04596bef152b705e93498946f1948e6401f6984b44e4bb0b3ea02201e5949a78dafb528693316442df19b7bbf328f93725052f09e57773f6cff3f7a01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "30440220599596e5682f14940ca521928a5442ad79a62fabc5a09c8a8278dde16b27ec4d02206c7ab29074a68e0275c4432bf0c06b6806b784deede4799189c4c8bec635f4e501", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "3044022076b15ca17e376623fd0c37c7407393d9e225d5b341d5b4e0b279c0c6c7409d960220233515d11ceee2a205a6b151b428f4e4a7dd653a5868d770fa8b04966e8dfaea01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "304402207897a00dec9b1decdbe7b0603f2c0d6ce0a64a066c3dee2590c7d5d7a88403ea022010572029ddc8d1159b8b9adbbbd6bccdc99956232059e2d60cb2b477bd75d63201", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "304402202cce65d353ebfb1e56ed1399f0a3d2a3e3759aeb20614e773c23bca22d7bb0980220795eddc632a8db411e9feb0ae38185bfc8f859a577a93d90767389577a33491d01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "304402203b928cfc18d69421835bb3e0efb015b5bef38febceacd2885658daed064bab130220024634a9b73e8a1556ddbaf14ed571fe331180b167e118b06eb4205bd89cae7c01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" ], "lock_time": 0, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_id": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193" + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_id": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3460,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -3472,9 +3475,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -3497,7 +3500,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61` (str, required) - Transaction hash + + tx_hash: `ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c` (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. @@ -3508,18 +3511,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d52d9b41d18cf24b3fef89a22060bf59997445b2ab951bba264f58671ff1bd93", + "hash": "84ebf11cb90a6835943d513a9cf0c11e3327c456d35a65be126acfb46e7a645a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3532,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e00a4819b6a9bfa68b405a0416a2e316f54bd3fc213bd6a398c68c1cb7967c92107f2dd3284147b00d886216ca4d0" + "script_pub_key": "6a2e6fd344482e13f2ed14ef3ee933c06f06a1df98afcc1e53d1dc2a933aa89662011107217b06a7eb2dd35a637b6df6" }, { "value": 4949930546, - "script_pub_key": "0014c8f5115de862a59398869599a2052d29beae3330" + "script_pub_key": "0014fa6b94743d53f5f6af69583dd022e460c5a7074c" } ], "vtxinwit": [ - "304402200c3697886f75d3b629b20ebc1c2173b9d5df525d3bfee0d9bfe8889abdb58bf302200e3cc23ae09bf5dc4b720b46b3b4098865bfe10a29def7d1870315e6205aee6a01", - "03c296edf7bafea14d15e650ea83edf9192fd44d619ada54529961c4db5d896ce9" + "304402200b61928a679b13372abf29d5c8082a414e50f1fb45aae2cab5e24361dc6edf8e022037d4b3043338e16a0d5323fb536e207a4ae977de91257aac777b21a5eb90771a01", + "02674fa5b9bdf3cb84ebddc108d1b2fca4f99f8cc943cfa511877f47bb42a27faf" ], "lock_time": 0, - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_id": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61" + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_id": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3553,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -3599,7 +3602,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `80` (int, required) - The index of the transaction + + tx_index: `83` (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. @@ -3610,18 +3613,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3643,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8` (str, required) - The hash of the transaction + + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (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. @@ -3651,18 +3654,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3681,7 +3684,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `80` (int, required) - The index of the transaction to return + + tx_index: `83` (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 @@ -3701,32 +3704,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3737,20 +3740,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3760,24 +3763,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3787,24 +3790,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 710, + "event_index": 733, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 213, - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "block_index": 216, + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "msg_index": 1, "quantity": 2000000000, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", "status": "valid", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3814,12 +3817,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 709, + "next_cursor": 732, "result_count": 12 } ``` @@ -3829,10 +3832,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8` (str, required) - The hash of the transaction to return + + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3849,32 +3852,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3885,20 +3888,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3908,24 +3911,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3935,24 +3938,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 710, + "event_index": 733, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 213, - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "block_index": 216, + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "msg_index": 1, "quantity": 2000000000, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", "status": "valid", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3962,12 +3965,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 709, + "next_cursor": 732, "result_count": 12 } ``` @@ -3977,7 +3980,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8` (str, required) - The hash of the transaction to return + + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (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 @@ -3995,11 +3998,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4010,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4019,11 +4022,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4034,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4053,7 +4056,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8` (str, required) - The hash of the transaction to return + + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (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 @@ -4071,29 +4074,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4111,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4130,9 +4133,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `80` (int, required) - The index of the transaction to return + + tx_index: `83` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4149,19 +4152,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4171,24 +4174,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4198,36 +4201,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], "next_cursor": null, @@ -4240,9 +4243,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8` (str, required) - The hash of the transaction to return + + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4259,19 +4262,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4281,24 +4284,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4308,36 +4311,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], "next_cursor": null, @@ -4352,7 +4355,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv,bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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 @@ -4376,7 +4379,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,39 +4389,18 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "total_normalized": "1000.00000000" }, - { - "asset": "MPMASSET", - "total": 99999998960, - "addresses": [ - { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "utxo": null, - "utxo_address": null, - "quantity": 99999998960, - "quantity_normalized": "999.99999000" - } - ], - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "total_normalized": "999.99999000" - }, { "asset": "FAIRMINTA", "total": 500000000, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,39 +4410,39 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "total_normalized": "5.00000000" }, { - "asset": "MPMASSET", - "total": 960, + "asset": "FREEFAIRMINT", + "total": 180, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, - "quantity": 960, - "quantity_normalized": "0.00000960" + "quantity": 180, + "quantity_normalized": "0.00000180" } ], "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "asset_longname": "", + "description": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "total_normalized": "0.00000960" + "total_normalized": "0.00000180" }, { "asset": "FAIRMINTD", "total": 40, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4452,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4481,7 +4463,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,15 +4473,15 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "total_normalized": "0.00000019" } ], - "next_cursor": "MYASSETA", - "result_count": 8 + "next_cursor": "MPMASSET", + "result_count": 9 } ``` @@ -4508,8 +4490,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv,bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - Comma separated list of addresses to return - + cursor: `80` (str, optional) - The last transaction index to return + + addresses: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - Comma separated list of addresses to return + + cursor: `83` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4526,18 +4508,18 @@ Returns the transactions of a list of addresses { "result": [ { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", - "block_time": 1730884580, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_time": 1730886620, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380521982e6e38b010fa2959ab665fe0566e12cd682806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a:0 4 ", + "utxos_info": " 62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4527,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4560,7 +4542,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4578,18 +4560,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 77, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_hash": "57714d24824aa1b5bb0d1adc5aaff232aedc4d74d10c995780aafe50beb9ab4d", - "block_time": 1730884566, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 80, + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", + "block_time": 1730886606, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380521982e6e38b010fa2959ab665fe0566e12cd682806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae3330c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b:0 4 ", + "utxos_info": " d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4579,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4612,7 +4594,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4630,18 +4612,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", - "block_time": 1730884561, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_time": 1730886603, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193:0 4 ", + "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4631,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4664,7 +4646,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4682,18 +4664,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "block_hash": "7bb2fb23ea6b04169342759f8db28963793cf1b8d06e939a935cfd4d3953eeec", - "block_time": 1730884557, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", + "block_time": 1730886600, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05:0 4 ", + "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4683,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4716,7 +4698,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4734,18 +4716,18 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_hash": "79cd26e0fad17347428aa7b2b4f2e71ec4a2da27dc01374ed4a87c1926943280", - "block_time": 1730884553, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 77, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", + "block_time": 1730886595, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "supported": true, - "utxos_info": " b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83:1 2 ", + "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4735,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4768,8 +4750,8 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 73, - "result_count": 46 + "next_cursor": 76, + "result_count": 49 } ``` @@ -4778,10 +4760,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv,bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4798,20 +4780,20 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 693, + "event_index": 716, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 211, - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 214, + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4821,80 +4803,80 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 692, + "event_index": 715, "event": "MPMA_SEND", "params": { "asset": "MPMASSET", - "block_index": 211, - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "block_index": 214, + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 691, + "event_index": 714, "event": "MPMA_SEND", "params": { "asset": "MPMASSET", - "block_index": 211, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "block_index": 214, + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 690, + "event_index": 713, "event": "DEBIT", "params": { "action": "mpma send", - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", - "block_index": 211, - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", + "block_index": 214, + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", "quantity": 10, - "tx_index": 78, + "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4904,13 +4886,13 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 689, - "result_count": 239 + "next_cursor": 712, + "result_count": 254 } ``` @@ -4919,7 +4901,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx,bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu,bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr` (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 @@ -4935,18 +4917,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "quantity": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4956,22 +4938,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4981,22 +4963,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", - "block_index": 213, - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "block_index": 216, + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5006,30 +4988,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730884602.200858, + "block_time": 1730886641.799628, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "destination": "", "fee": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, - "utxos_info": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61:1 2 ", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, + "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -5043,7 +5025,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -5056,7 +5038,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -5076,7 +5058,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5084,14 +5066,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5099,14 +5081,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5114,16 +5096,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "quantity": 82649965196, + "quantity": 82599965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5133,10 +5115,10 @@ Returns the balances of an address "divisible": true, "locked": true }, - "quantity_normalized": "826.49965000" + "quantity_normalized": "825.99965000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5144,7 +5126,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5161,7 +5143,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -5174,9 +5156,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "quantity": 82649965196, + "quantity": 82599965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5186,7 +5168,7 @@ Returns the balances of an address and asset "divisible": true, "locked": true }, - "quantity_normalized": "826.49965000" + "quantity_normalized": "825.99965000" } ], "next_cursor": null, @@ -5199,7 +5181,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5248,17 +5230,17 @@ Returns the credits of an address { "result": [ { - "block_index": 211, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 214, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5269,17 +5251,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 210, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 213, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "tx_index": 77, + "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5290,17 +5272,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 210, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 213, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5311,17 +5293,17 @@ Returns the credits of an address "quantity_normalized": "0.00003000" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", + "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5332,28 +5314,28 @@ Returns the credits of an address "quantity_normalized": "0.00005000" }, { - "block_index": 206, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 209, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "tx_index": 73, + "event": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" } ], - "next_cursor": 65, + "next_cursor": 67, "result_count": 21 } ``` @@ -5363,7 +5345,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5401,17 +5383,17 @@ Returns the debits of an address { "result": [ { - "block_index": 209, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 212, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_index": 76, + "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5422,38 +5404,38 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 209, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 212, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_index": 76, + "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "tx_index": 75, + "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5464,50 +5446,50 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "tx_index": 75, + "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 207, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 210, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "tx_index": 74, + "event": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884553, + "block_time": 1730886595, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" } ], - "next_cursor": 63, - "result_count": 28 + "next_cursor": 64, + "result_count": 29 } ``` @@ -5516,7 +5498,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address of the feed + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5551,7 +5533,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -5570,9 +5552,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "42413c788d4f9a82101b9dcca95f7f6c9c0bc2968709805b1d87af2feed82ae6", + "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", "block_index": 137, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5580,7 +5562,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884233, + "block_time": 1730886277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5594,7 +5576,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -5613,14 +5595,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "546bedac42e68ec3c7f91b3ff492a73d7ef216601a656ab6e60104e03d71da0d", + "tx_hash": "7c47734a6ee7a2f33b0c1ad9317deb9a1dae7d63d87980275b6058c5ed37b4c2", "block_index": 112, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730884133, + "block_time": 1730886184, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5635,7 +5617,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -5653,11 +5635,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address { "result": [ { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5665,7 +5647,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5677,11 +5659,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5689,11 +5671,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5701,11 +5683,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5713,11 +5695,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5725,11 +5707,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5737,7 +5719,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5749,11 +5731,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5761,11 +5743,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5783,7 +5765,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qkt2my5cycee0vxum5ur499k9mgu9xy8j28m5l7` (str, required) - The address to return + + address: `bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl` (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 @@ -5802,10 +5784,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "e0ccc5968229f71afb06c0ddae0183b6fa3706cbb5be5e4ebaac1e0ace4cbd4b", + "tx_hash": "363325b127e459a90d7a306995804fae5bcdd591c4fe5973652fd44d1ba50f4b", "block_index": 151, - "source": "03fc70e0af7a6d57311d5e6f2ac934541122a98f9303c0a33490a8b704a46399:0", - "destination": "bcrt1qkt2my5cycee0vxum5ur499k9mgu9xy8j28m5l7", + "source": "0c9dfaf54232e7be973691b86c950e256220902b5458d1ca65afad6816244fd8:0", + "destination": "bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5813,11 +5795,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884304, + "block_time": 1730886328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5835,8 +5817,8 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return - + asset: `MPMASSET` (str, required) - The asset to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + asset: `FREEFAIRMINT` (str, required) - The asset 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 @@ -5852,130 +5834,9 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset ``` { - "result": [ - { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884561, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "memo2", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884561, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884557, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884557, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "asset": "MPMASSET", - "quantity": 1000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884553, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], + "result": [], "next_cursor": null, - "result_count": 5 + "result_count": 0 } ``` @@ -5984,8 +5845,8 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qkt2my5cycee0vxum5ur499k9mgu9xy8j28m5l7` (str, required) - The address to return - + asset: `MPMASSET` (str, required) - The asset to return + + address: `bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl` (str, required) - The address to return + + asset: `FREEFAIRMINT` (str, required) - The asset 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 @@ -6012,7 +5873,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6041,9 +5902,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6052,7 +5913,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6063,7 +5924,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6079,10 +5940,10 @@ Returns the dispensers of an address "price_normalized": "1.0000000000000000" }, { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6091,7 +5952,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6102,11 +5963,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6128,7 +5989,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -6141,9 +6002,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6013,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6163,7 +6024,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6186,7 +6047,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -6204,21 +6065,21 @@ Returns the dispenses of a source { "result": [ { - "tx_index": 66, + "tx_index": 69, "dispense_index": 0, - "tx_hash": "079248fd9ba418bc64f8e772a7366e8c73e70c22e46c570fba89ed16e7162044", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", + "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 65, - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6226,7 +6087,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6241,11 +6102,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6255,19 +6116,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6275,7 +6136,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6290,7 +6151,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6304,19 +6165,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6324,7 +6185,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6339,7 +6200,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6361,7 +6222,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address to return + + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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 @@ -6379,21 +6240,21 @@ Returns the dispenses of a destination { "result": [ { - "tx_index": 66, + "tx_index": 69, "dispense_index": 0, - "tx_hash": "079248fd9ba418bc64f8e772a7366e8c73e70c22e46c570fba89ed16e7162044", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", + "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 65, - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6401,7 +6262,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6416,11 +6277,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6430,19 +6291,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6450,7 +6311,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6465,7 +6326,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6479,19 +6340,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6499,7 +6360,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6514,7 +6375,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6536,7 +6397,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -6557,19 +6418,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6577,7 +6438,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6453,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6606,19 +6467,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6626,7 +6487,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6641,7 +6502,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6663,7 +6524,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address to return + + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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` @@ -6684,19 +6545,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6704,7 +6565,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6719,7 +6580,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6733,19 +6594,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6753,7 +6614,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6768,7 +6629,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6790,7 +6651,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx` (str, required) - The address to return + + address: `bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu` (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 @@ -6808,17 +6669,17 @@ Returns the sweeps of an address { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -6832,7 +6693,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6863,15 +6724,15 @@ Returns the issuances of an address { "result": [ { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6886,20 +6747,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 49, - "tx_hash": "a42d2425d18af16891bd75fcefcf1bc9223a35992a141ad062c7086e05e2a44b", + "tx_index": 52, + "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", "msg_index": 0, - "block_index": 162, + "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6914,20 +6775,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884359, + "block_time": 1730886403, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 48, - "tx_hash": "da7da4ce78f62e11147f389e27d94992144cba270d071d149c9849c186dffdbd", + "tx_index": 51, + "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", "msg_index": 0, - "block_index": 161, + "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6942,20 +6803,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730884345, + "block_time": 1730886399, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "120efaaa0ada277ed8b31fe5e87d88984582a2c951d67e1575917ad6af9e6bb8", + "tx_index": 50, + "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", "msg_index": 0, - "block_index": 160, + "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6970,20 +6831,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884341, + "block_time": 1730886395, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 46, - "tx_hash": "767dd2512833cee3c1fb0e42ed674f2209cad65509de729d0108b60bb6731f03", + "tx_index": 49, + "tx_hash": "5c5b02a352c69a997df3828df766561ead6e67d71cb291d9f284dff3f11ff6fd", "msg_index": 0, - "block_index": 159, + "block_index": 162, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6998,13 +6859,13 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884337, + "block_time": 1730886382, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 17, - "result_count": 22 + "next_cursor": 20, + "result_count": 25 } ``` @@ -7013,7 +6874,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The issuer or owner to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7036,42 +6897,59 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" + }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, @@ -7079,16 +6957,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, + "first_issuance_block_time": 1730886317, + "last_issuance_block_time": 1730886317, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 40, @@ -7096,30 +6974,13 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730884227, - "last_issuance_block_time": 1730884230, + "first_issuance_block_time": 1730886271, + "last_issuance_block_time": 1730886274, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730884202, - "last_issuance_block_time": 1730884224, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 7 + "next_cursor": 4, + "result_count": 8 } ``` @@ -7128,7 +6989,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The issuer to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -7151,42 +7012,59 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" + }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, @@ -7194,16 +7072,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, + "first_issuance_block_time": 1730886317, + "last_issuance_block_time": 1730886317, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 40, @@ -7211,30 +7089,13 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730884227, - "last_issuance_block_time": 1730884230, + "first_issuance_block_time": 1730886271, + "last_issuance_block_time": 1730886274, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730884202, - "last_issuance_block_time": 1730884224, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 7 + "next_cursor": 4, + "result_count": 8 } ``` @@ -7243,7 +7104,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The owner to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7266,42 +7127,59 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" + }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, @@ -7309,16 +7187,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, + "first_issuance_block_time": 1730886317, + "last_issuance_block_time": 1730886317, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 40, @@ -7326,30 +7204,13 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730884227, - "last_issuance_block_time": 1730884230, + "first_issuance_block_time": 1730886271, + "last_issuance_block_time": 1730886274, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730884202, - "last_issuance_block_time": 1730884224, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 7 + "next_cursor": 4, + "result_count": 8 } ``` @@ -7358,8 +7219,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return - + cursor: `80` (str, optional) - The last transaction index to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + cursor: `83` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7376,18 +7237,18 @@ Returns the transactions of an address { "result": [ { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", - "block_time": 1730884561, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_time": 1730886603, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193:0 4 ", + "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7395,14 +7256,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7410,7 +7271,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7428,18 +7289,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "block_hash": "7bb2fb23ea6b04169342759f8db28963793cf1b8d06e939a935cfd4d3953eeec", - "block_time": 1730884557, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", + "block_time": 1730886600, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05:0 4 ", + "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7447,14 +7308,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7462,7 +7323,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7480,18 +7341,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_hash": "79cd26e0fad17347428aa7b2b4f2e71ec4a2da27dc01374ed4a87c1926943280", - "block_time": 1730884553, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 77, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", + "block_time": 1730886595, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "supported": true, - "utxos_info": " b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83:1 2 ", + "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7499,12 +7360,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7514,18 +7375,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_hash": "29345d5e9c6ed02e1b02972b781d9daf4957dfa5d3fe07a871a76f953bba5b06", - "block_time": 1730884548, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_hash": "3eee0202e49997e9138f321ad34f3ebc4b0f05692963a115eaf5c152a5ee65b5", + "block_time": 1730886581, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805:1 2 ", + "utxos_info": " eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7549,18 +7410,18 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 199, - "block_hash": "677b5a48d499db48e1f296ffb2cb0d269a4f8ec7e2df1c6b8649229936aee66a", - "block_time": 1730884513, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 202, + "block_hash": "0d9e15163c4725e3733cbcdfebd1a077c34264a34de5681049530a0ec14a4832", + "block_time": 1730886548, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957:1 2 ", + "utxos_info": " 5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7577,7 +7438,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7588,8 +7449,8 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 64, - "result_count": 31 + "next_cursor": 67, + "result_count": 32 } ``` @@ -7598,7 +7459,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -7617,20 +7478,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7655,7 +7516,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7683,10 +7544,10 @@ Returns the orders of an address { "result": [ { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7694,7 +7555,7 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7703,7 +7564,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7730,10 +7591,10 @@ Returns the orders of an address "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7741,7 +7602,7 @@ Returns the orders of an address "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7750,7 +7611,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7777,10 +7638,10 @@ Returns the orders of an address "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7788,7 +7649,7 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7797,7 +7658,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7824,10 +7685,10 @@ Returns the orders of an address "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 61, - "tx_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "block_index": 210, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 64, + "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "block_index": 213, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7835,7 +7696,7 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 216, + "expire_index": 219, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7844,7 +7705,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7881,7 +7742,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The source of the fairminter to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7906,10 +7767,50 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, + "burn_payment": false, + "max_mint_per_tx": 100, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, + "confirmed": true, + "block_time": 1730886370, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7934,7 +7835,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730884325, + "block_time": 1730886348, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7943,10 +7844,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", + "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7971,7 +7872,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730884227, + "block_time": 1730886271, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7983,10 +7884,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8011,7 +7912,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730884202, + "block_time": 1730886255, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8023,10 +7924,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", + "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8051,7 +7952,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730884198, + "block_time": 1730886251, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8063,10 +7964,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8091,7 +7992,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8104,7 +8005,7 @@ Returns the fairminter by its source } ], "next_cursor": null, - "result_count": 5 + "result_count": 6 } ``` @@ -8113,7 +8014,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address of the mints to return + + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8131,22 +8032,70 @@ Returns the mints by address { "result": [ { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730886370, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000080", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_index": 45, + "block_index": 158, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730886356, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000100", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8155,22 +8104,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "83fa2be461c4f9b9f9dc3d50241a983329b37dfebaa45fa191e3e5523821640b", + "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884224, + "block_time": 1730886266, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8179,22 +8128,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "67e671625a4abfb4c58b66d343202e1e659f8b9dfa929db9a98777ac6841a616", + "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884209, + "block_time": 1730886262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8203,22 +8152,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9d8a5440390fe51170b1722012a8222105d65e1300aa7a8eb482cb8911eb6c8e", + "tx_hash": "390924b7ff0790fb00684834a44113047037bfabf1ab65af88f02a8846492d1f", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884205, + "block_time": 1730886259, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8227,22 +8176,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "46a174edb58f1bb5b4143489b186918b8911edcf903f5f73f69297c4f70ef7bf", + "tx_hash": "348fb1aaceebdc68efbbb9071e4604c31756d3cd4ea3fcf68f24c7d7e28e7c13", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884187, + "block_time": 1730886238, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8251,22 +8200,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8276,7 +8225,7 @@ Returns the mints by address } ], "next_cursor": null, - "result_count": 6 + "result_count": 8 } ``` @@ -8285,7 +8234,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address of the mints to return + + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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` @@ -8304,22 +8253,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8340,7 +8289,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0` (str, required) - The utxo to return + + utxo: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8360,8 +8309,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8374,12 +8323,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8419,8 +8368,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will make the bet + + feed_address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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) @@ -8494,7 +8443,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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) @@ -8556,7 +8505,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8567,9 +8516,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985771, - "btc_fee": 14229, - "rawtransaction": "02000000000101e95073f79c70e12194c97eeaf02cd86e6431ca46ec5e1a5201cc8825fd3f104d00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff0200000000000000002b6a2946b2cc1d095a8ab16a519bb9a8c1bd06bae09c1b78406c214d68843007f94a1419ff4e1281ce5209426bba052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985766, + "btc_fee": 14234, + "rawtransaction": "020000000001018b4dfb8e206f20712453a9d9959f580f043aa1b465aa63c1b8176e209fbc24f3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0200000000000000002b6a29493a8c69426454a968f746df4d46beeae1f2bf82863c0270b0889be44b2d5a3c4d1c298757ab544e7d66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8591,8 +8540,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be sending the payment - + order_match_id: `2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending the payment + + order_match_id: `7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c` (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) @@ -8650,24 +8599,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "order_match_id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "data": "434e5452505254590b7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980890, - "btc_fee": 18110, - "rawtransaction": "0200000000010133b049696f3c0f25c5e24175c42fe6576bba1591098f54657d85d41a4fb6f3b100000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff03e803000000000000160014521982e6e38b010fa2959ab665fe0566e12cd68200000000000000004b6a497698f31e4f199638012fa3f0f6fa6f6dda002d7e081bffb58fd9ce40528301301b9932b732485a34faf82264c895636419d38474da5635b4ad584ba8458ff46021823b33193eed630d5aa7052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999980884, + "btc_fee": 18116, + "rawtransaction": "02000000000101a829b8346ce37e8bf2b3ea16712ce37cf845502770a623c7587813d9447c3823000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e8030000000000001600147b8d32180ac4c5c380d3d70e5121633b537a226400000000000000004b6a490b20e455032e9e62a99c253c3e59653d0e708151c34960e05b3b645e757d8c67a94813449cabcd858c2cbd9cbb578d74a88e0c7eb850694bf73447d9bbf5368934ff1150f4e497d70b54a7052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "order_match_id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "status": "valid" } } @@ -8680,7 +8629,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address with the BTC to burn + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -8741,7 +8690,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8750,9 +8699,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": 4999985771, - "btc_fee": 13229, - "rawtransaction": "020000000001010d24040c083ec54d5ab01131bcbc4b691e086d1c7041482d4b13f13900ed090a00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000" + "btc_change": 4999985766, + "btc_fee": 13234, + "rawtransaction": "020000000001019cc202bedc122198f6b12678a98dd90de2fa7fc318a6ff41d7a5bd3136885e0d000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000" } } ``` @@ -8762,8 +8711,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: `bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2` (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) @@ -8821,22 +8770,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "offer_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594673cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", + "data": "434e54525052545946a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", "btc_in": 4949918908, "btc_out": 0, - "btc_change": 4949904679, - "btc_fee": 14229, - "rawtransaction": "02000000000101251b7078facdaaee4f62c81bbcc41af8f0894b867d0ee39efe5d6943ae24cd73010000001600149c04699f9f9ef98a5ae8e028c2b8844f224bfac2ffffffff0200000000000000002b6a294b2a288c23e0f0926145c44efdcd2f292f01a591a8f76419989f5e17da6557468cc1a52e451039ae70278d0927010000001600149c04699f9f9ef98a5ae8e028c2b8844f224bfac202000000000000", + "btc_change": 4949904674, + "btc_fee": 14234, + "rawtransaction": "02000000000101f24a195a18e1da52602ddbbc13bfbffc31f4c874a5c8daf3d7c8e7e9208e35a901000000160014e62456afc0c558231e013678f81fb805ef35313dffffffff0200000000000000002b6a29ff4b8dea9e40339979dba3a76af618d3f083605b8b46113ccdd50ca4cbfebc8c8252de40ac151aa921228d092701000000160014e62456afc0c558231e013678f81fb805ef35313d02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", + "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", "status": "valid" } } @@ -8849,7 +8798,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -8910,7 +8859,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8928,9 +8877,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986300, - "btc_fee": 13700, - "rawtransaction": "02000000000101651b571d30fe5f2a90d8e26fec83c78f6c4b6eddd987a114bebf629f08b6687600000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000226a20af69aa080104c5616d55a77c586fa83519edaf20872782c725322cde13d752cd7cbc052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999986295, + "btc_fee": 13705, + "rawtransaction": "02000000000101855a9a51c83577baa8d3f9ff9e61a9f3a1579351ff1657166f3c0ed000d4cd51000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000226a208f0307d7f1420e3684cf2424ae44beac95f89d514a977b3c3ff71b82d313124c77bc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8950,7 +8899,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: `bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh` (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) @@ -9017,7 +8966,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9038,11 +8987,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949873899, + "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859611, - "btc_fee": 14288, - "rawtransaction": "02000000000101c8a64cdbaf95d0c8d72c9555b61b3eacea471da2b4b9a7cf4c83c3e7611095e6020000001600140113344d9a963143961fe97976f811a05209110fffffffff0200000000000000002c6a2a49a1a3deb794397490b34ee9f5596641151bdd5cf2274142b4441d79fd2928ca0f6ffd61adb807d8ed251bdd0827010000001600140113344d9a963143961fe97976f811a05209110f02000000000000", + "btc_change": 4949859506, + "btc_fee": 14293, + "rawtransaction": "020000000001012e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d02000000160014624b13a86be421eb76d68cecd83105881369410fffffffff0200000000000000002c6a2a2434d6006027eff29f2f1e426b10f2fef716b6f73d19ba8abdd55401e26a4412d8dcda666175cdda2ce6b2dc082701000000160014624b13a86be421eb76d68cecd83105881369410f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9068,7 +9017,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -9129,7 +9078,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9137,7 +9086,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -9154,9 +9103,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "020000000001016f31b371c0a7c36c6fd8dda6e102adad6843ce37a7453ce77ffd2d2db4861d2600000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000236a213d86e97ae7e9c78026137baef6f66e2b25282933fb585f4829c6906562344b3a3b42bc052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999986236, + "btc_fee": 13764, + "rawtransaction": "02000000000101cc98a969b4f945a78368d8916d2c7d9bee9d69749495cb1865445e64349c67c3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21815332422fbde6a1aea35c7ec44a180c434513f8fd7473e601d3b35729529266bb3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9177,10 +9126,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -9247,10 +9196,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "transfer_destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "lock": false, "reset": false, @@ -9262,9 +9211,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": 4999983696, - "btc_fee": 15758, - "rawtransaction": "02000000000101f0f664147bad915a2e0e23c15cf701ec2efe3092b505988abc24f2a19114488100000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff032202000000000000160014521982e6e38b010fa2959ab665fe0566e12cd6820000000000000000236a21443c409a0f96f0ed7a070fbcb8ddd0dce4063aa88571258d11c06a4465363fb43c50b2052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999983690, + "btc_fee": 15764, + "rawtransaction": "02000000000101028f9389d6e5c7f90fc8b94881a272584c6434aa79be0428157e3069be230421000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000236a217abb78cb6e881cfbd0f8a7a0fdeb568fd4b9f25f44937be3585e3368045afa03a64ab2052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9293,9 +9242,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv,bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - comma-separated list of addresses to send to + + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + assets: `XCP,FREEFAIRMINT` (str, required) - comma-separated list of assets to send + + destinations: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9362,16 +9311,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", 1 ], [ - "MPMASSET", - "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "FREEFAIRMINT", + "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", 2 ] ], @@ -9380,26 +9329,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280521982e6e38b010fa2959ab665fe0566e12cd682808d9488313bb9505f631340e5eea27a9d7655566940000005e36088c4d000000000000000240000000000000004000000000000000100", - "btc_in": 20000000000, + "data": "434e545250525459030002807b8d32180ac4c5c380d3d70e5121633b537a226480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd4012737f10d9927d5000000000000000240000000000000004000000000000000100", + "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 19999945317, - "btc_fee": 52683, - "rawtransaction": "020000000001045a57118b3283f658d9c5287f03e8f186ac2a2bdb3ba3863b12eeef72fdb62b5d00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffffc1ebb13bf78e408be898be96cc772472e5996a65eeafb7376511b0cd9395e88500000000160014521982e6e38b010fa2959ab665fe0566e12cd682fffffffff6967e4572eeddd7fd8a9cb11aaa7552ad74840e697cc6e19b5d3a95c2bd527b00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff2be7d6dbf6ece402b2d35ecfe31aaccbe5abd43d874f7696c456174b55dfa42d00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff03e8030000000000006951210224ee0a9a8154f64d71d89ddce1ae55df642b9fdfa6678a11a569f6377da2b3d42102ffaaa5507045744068bc58e5c1808cbe5c1fbf46a150f6c7f397a76944ec89c8210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253aee803000000000000695121033bee0a9a8154f64d710b9dde61fc4c5d82ec14dea9c51f8b130808321b439f9d2103292824dde4cd457bd1ec0786d2c06950fe652230f4069f87f397a28a24644dd6210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae65f216a804000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000002000002000002000000000000", + "btc_change": 4949785237, + "btc_fee": 20763, + "rawtransaction": "0200000000010122c3c583c72bdbe3f3f2ecf55416203822230d62a06d7e09fd540253679d456203000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcdffffffff03e803000000000000695121035d646b1cdc084e0a2e09bf0839ee5bb51b343a850f03ef6e25525a840609bd7f210368ead1e23823ce3b006f65565be8b4f378db74d1f042fd8f1f56c86aca3b1235210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053aee8030000000000006951210242646b1cdc084e0a2e5abf0ab995d687031afe40cc833cb92b077be73d5ac74721034a8e50486603073525acb6a3f4dad1cdf36a19f7bf6f30cf0d25b77a13a96f04210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053ae95ba072701000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd02000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { - "asset": "MPMASSET", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "asset": "FREEFAIRMINT", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9415,7 +9364,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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 @@ -9479,7 +9428,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9497,7 +9446,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -9509,9 +9458,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985183, - "btc_fee": 14817, - "rawtransaction": "0200000000010146c455bf68073e12ba3a5588f66f2c82f48cfaebf374597d46c0bdf201c56a4700000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000356a33e01edb063920a8ec25f8a446b9e02ede6ca9b0dac83fba9c18cbb75483a1b86f7a45adba1907c699f2b1651b72165a89e02b081fb8052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985178, + "btc_fee": 14822, + "rawtransaction": "0200000000010149e6efe4ad0a8dd972f22d8ccc4164198fd959c30a8afb65fda68a861736f630000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000356a33a6e1e691f9fa705391f2df264dac2ac42ce78c0cd889f759fb725c65d61e1601b8f52ad2dee8dc8ceb3159594a681c216a5ec51ab8052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9537,8 +9486,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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 @@ -9604,8 +9553,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9622,19 +9571,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "434e54525052545902000000000000000100000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985477, - "btc_fee": 14523, - "rawtransaction": "020000000001013252b7217daacebae5db61b08859cd1439e826ec348ecac69b15b6680e8b51d400000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000306a2ef642087562c36e2da62e07ff8d850bb71aaac599686ca8e02283f1e29939e612ce82ae7f86b578e2c682565a51c145b9052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985472, + "btc_fee": 14528, + "rawtransaction": "0200000000010176adf4c96cdfb64fe7d8f3459b6991979152f66583c03ae446750c5efdc44233000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000306a2e6a8e01aff6e7de1d30cbc25f6e9b981676e8c633aa9dbb9dcc01c57c24ed8fd507f4d6d714a286e08b71c3c3118b40b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "quantity_normalized": "0.00001000" } @@ -9648,8 +9597,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be sending - + destination: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending + + destination: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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 @@ -9709,24 +9658,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904808d9488313bb9505f631340e5eea27a9d7655566907ffff", + "data": "434e5452505254590480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "020000000001013eeef476284e9053bbafbd64a0b32006600df631f43ffb02aab6c4f01b8a592200000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000236a213cc48a0bc48f5c19fe35e7ac74a871b2fcd9e4a4a56e820638ba4c611ef6dc806242bc052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999986236, + "btc_fee": 13764, + "rawtransaction": "020000000001017a417f3513fdd7dc612af97e0ee6db660d6003b94eadd0a6e4ae2edd258c56b3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21e8669fe856070345d5cd5fcfdb1622581aee9dd67b95cd3a8e3d9e857582969a0d3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "flags": 7, "memo": "ffff" } @@ -9740,8 +9689,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: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr` (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` @@ -9800,18 +9749,18 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "quantity": 1000, "skip_validation": false }, "name": "dispense", "data": "434e5452505254590d00", - "btc_in": 4949828000, + "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4949812595, - "btc_fee": 14405, - "rawtransaction": "020000000001019a48e45d092873e83745dde822e1154b4a08da817ad0f576bf05e8215754df1e030000001600148d9488313bb9505f631340e5eea27a9d76555669ffffffff03e803000000000000160014c8f5115de862a59398869599a2052d29beae333000000000000000000c6a0aca1f64e3767bf3a2632473250827010000001600148d9488313bb9505f631340e5eea27a9d7655566902000000000000", + "btc_change": 4999984589, + "btc_fee": 14411, + "rawtransaction": "02000000000101962bc2a009c7f79714fc2d3941ea1042b3f037d12f73cdacacdc8c7efba6fd9c000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e803000000000000160014fa6b94743d53f5f6af69583dd022e460c5a7074c00000000000000000c6a0a511d742f0ea868b132cdcdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9828,7 +9777,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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: `` @@ -9919,7 +9868,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9949,9 +9898,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985418, - "btc_fee": 14582, - "rawtransaction": "02000000000101784bad7a91c5748f6f14e4bc7f90c09e7609f39ff5a619c18f289111bf98500600000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000316a2f2c4be5800e032c37a3dd3b21619ec00d530c5ee5a4c73da87f8f9e5d1ca2a5b026372f8f04208c8c0022a0ca4626900ab9052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985413, + "btc_fee": 14587, + "rawtransaction": "02000000000101d43d7acc00907086c9aabd7fa6995838005e778649d7102aa4a6e2dd539e9158000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000316a2fda14fd26bd30d6a7615b945b6b0a69e79f5c0bc845df1dc9a75e66395ccd946396faa541d1cb2a413f9762aae8cd6305b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9990,7 +9939,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: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address that will be minting the asset + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -10051,14 +10000,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -10068,9 +10017,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": 4999987006, - "btc_fee": 12994, - "rawtransaction": "0200000000010137f46b4c9b1e5b77ac64ce9fd45daa5092b28980c6a710c3e5f946fae56ddd3f00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000166a14e14268c6e49b56a54d9a1018bd2c14281487dc443ebf052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999987001, + "btc_fee": 12999, + "rawtransaction": "0200000000010136c36c53b6c41332021f1a5bd09ce0db8cbdc1d19d098ae9752b5794ecf03d1f000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000166a14a4116968c44adf991436772cb5e7083da06eb40f39bf052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10089,7 +10038,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address from which the assets are attached + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10153,7 +10102,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10171,9 +10120,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984578, - "btc_fee": 14876, - "rawtransaction": "02000000000101a92aa87b7c3b928543c5196f913987a2820c177c54346dbf7d277f2b2ec090c000000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff032202000000000000160014521982e6e38b010fa2959ab665fe0566e12cd6820000000000000000146a1268ec7ff530cbedd94fe0120fa543840cd02bc2b5052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999984573, + "btc_fee": 14881, + "rawtransaction": "0200000000010189acbc31f714a8230cef894e93178acb320d10506c4f2a8af2f5ef773bec22fe000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000146a12d19841328717b7e718064ed72456dd4845febdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10193,8 +10142,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: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10257,22 +10206,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713267766339656872337671736c6735346e326d78746c7339766d736a6534357a363576386676", + "data": "434e545250525459666263727431713077786e79787132636e7a753871786e367538397a6774723864666835676e79737439786a6c", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945423, - "btc_fee": 25577, - "rawtransaction": "02000000000102c8a64cdbaf95d0c8d72c9555b61b3eacea471da2b4b9a7cf4c83c3e7611095e600000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca4ffffffff2bc78dcf11a255ab48e68f38b61d870f0fb6fefbc20c2f1672e24638790f517001000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca4ffffffff020000000000000000376a3549a1a3deb7943974fad12d9b81681773736dbe65974f33722a356e159a1c1ca7d5028515c1cb3eaee456dbc71ddcd5a6281399f2714f2c0a2701000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca402000002000000000000", + "btc_change": 4949945413, + "btc_fee": 25587, + "rawtransaction": "020000000001022e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d000000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff473f290d82dad686230fef5b223c5e3da0436844f09c72f2210fb9e1010f3d02010000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff020000000000000000376a352434d6006027eff2f54d7d301f2183ce816ed88e456888ea3baf213993122a2745e4e31c0601bfe22c80b65e5004721d93539e5904452c0a27010000001600141ad1af8b95b1ea4881905a2154d06b313e97901f02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv" + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl" } } } @@ -10376,90 +10325,90 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "owner": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "owner": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730884521, - "last_issuance_block_time": 1730884521, + "first_issuance_block_time": 1730886556, + "last_issuance_block_time": 1730886556, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "owner": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "issuer": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "owner": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 158, - "last_issuance_block_index": 158, + "first_issuance_block_index": 161, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730884334, - "last_issuance_block_time": 1730884334, + "first_issuance_block_time": 1730886377, + "last_issuance_block_time": 1730886377, "supply_normalized": "1000.00000000" }, { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, - "supply_normalized": "1000.00000000" + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" } ], - "next_cursor": 5, - "result_count": 10 + "next_cursor": 6, + "result_count": 11 } ``` @@ -10482,8 +10431,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, @@ -10491,8 +10440,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730884168, - "last_issuance_block_time": 1730884179, + "first_issuance_block_time": 1730886221, + "last_issuance_block_time": 1730886232, "supply_normalized": "100.00000000" } } @@ -10523,7 +10472,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10531,14 +10480,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10546,7 +10495,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -10564,7 +10513,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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. @@ -10576,9 +10525,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "quantity": 82649965196, + "quantity": 82599965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -10588,7 +10537,7 @@ Returns the balances of an address and asset "divisible": true, "locked": true }, - "quantity_normalized": "826.49965000" + "quantity_normalized": "825.99965000" } ], "next_cursor": null, @@ -10629,10 +10578,10 @@ Returns the orders of an asset { "result": [ { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10640,7 +10589,7 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10649,7 +10598,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10676,10 +10625,10 @@ Returns the orders of an asset "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10687,7 +10636,7 @@ Returns the orders of an asset "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10696,7 +10645,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10723,10 +10672,10 @@ Returns the orders of an asset "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10734,7 +10683,7 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10743,7 +10692,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10770,10 +10719,10 @@ Returns the orders of an asset "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 61, - "tx_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "block_index": 210, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 64, + "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "block_index": 213, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10781,7 +10730,7 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 216, + "expire_index": 219, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10790,7 +10739,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10817,10 +10766,10 @@ Returns the orders of an asset "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 53, - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 56, + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10828,7 +10777,7 @@ Returns the orders of an asset "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 208, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10837,7 +10786,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10864,7 +10813,7 @@ Returns the orders of an asset "get_price_normalized": "1.0000000000000000" } ], - "next_cursor": 55, + "next_cursor": 58, "result_count": 7 } ``` @@ -10901,27 +10850,27 @@ Returns the orders of an asset { "result": [ { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 210, + "tx0_block_index": 190, + "tx1_block_index": 192, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 212, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10941,27 +10890,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 53, - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 56, + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, + "tx0_block_index": 189, + "tx1_block_index": 190, + "block_index": 191, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 207, + "match_expire_index": 210, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10981,27 +10930,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4_0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx0_index": 50, - "tx0_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 51, - "tx1_hash": "0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx0_index": 53, + "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 54, + "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, + "tx0_block_index": 166, + "tx1_block_index": 167, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 184, + "match_expire_index": 187, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11021,27 +10970,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11120,21 +11069,21 @@ Returns the credits of an asset { "result": [ { - "block_index": 196, - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "block_index": 199, + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "tx_index": 62, + "event": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_index": 65, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -11142,20 +11091,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "8a32dc1ad51b3b8957fe78069f393b38a03517fcc2daf6d1443ac453367ec67a", + "event": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -11163,20 +11112,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -11184,20 +11133,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "event": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -11209,16 +11158,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -11273,17 +11222,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 213, + "block_index": 216, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11294,17 +11243,17 @@ Returns the debits of an asset "quantity_normalized": "20.00000000" }, { - "block_index": 211, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "block_index": 214, + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11315,17 +11264,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 210, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "block_index": 213, + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "tx_index": 77, + "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11336,17 +11285,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 209, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 212, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_index": 76, + "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11357,17 +11306,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "tx_index": 75, + "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11378,8 +11327,8 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" } ], - "next_cursor": 63, - "result_count": 45 + "next_cursor": 64, + "result_count": 46 } ``` @@ -11388,7 +11337,7 @@ Returns the debits of an asset Returns the dividends of an asset + Parameters - + asset: `MPMASSET` (str, required) - The asset to return + + asset: `FREEFAIRMINT` (str, required) - The asset to return + cursor (str, optional) - The last index of the dividend to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dividend to return @@ -11447,14 +11396,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "8a32dc1ad51b3b8957fe78069f393b38a03517fcc2daf6d1443ac453367ec67a", + "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -11469,20 +11418,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -11497,20 +11446,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -11525,20 +11474,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -11553,7 +11502,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730884168, + "block_time": 1730886221, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11586,11 +11535,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11598,7 +11547,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11610,11 +11559,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11622,7 +11571,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11634,11 +11583,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 77, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 80, + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11646,7 +11595,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11658,11 +11607,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11670,7 +11619,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11682,11 +11631,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11694,7 +11643,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11745,9 +11694,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11756,7 +11705,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11767,7 +11716,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11784,9 +11733,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "b19c98b66aec1383b4fd070f0de012ec29a3c598dc62d10eac08cad28a606143", + "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", "block_index": 142, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11795,7 +11744,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11806,7 +11755,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884261, + "block_time": 1730886295, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11823,9 +11772,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "4d730de3a7dd1d36dc971868a9934b4710203325b59dc25bef79c237049ade8f", + "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", "block_index": 150, - "source": "musJjGf26KUkxLu8bL5eELQs8fhbi864yV", + "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11833,10 +11782,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "079fa58a39342ea9c86725f3f8238027d5581c73827dd5e0e70730d0957c569b", - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -11845,7 +11794,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884300, + "block_time": 1730886324, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11862,18 +11811,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11884,7 +11833,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11910,7 +11859,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - The address to return + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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` @@ -11923,9 +11872,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11934,7 +11883,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11945,7 +11894,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11996,7 +11945,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12004,7 +11953,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12013,7 +11962,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12021,7 +11970,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12030,7 +11979,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12038,7 +11987,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12047,7 +11996,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12082,29 +12031,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12119,7 +12068,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12133,27 +12082,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b10a78c83afac45375b074b4777b82d023d0a65c2f2b2022bf6e03c369af2557", + "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", "block_index": 147, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12168,7 +12117,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884289, + "block_time": 1730886314, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12182,19 +12131,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12202,7 +12151,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12217,7 +12166,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12231,19 +12180,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12251,7 +12200,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12266,7 +12215,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12288,7 +12237,7 @@ Returns the dispenses of an asset Returns asset subassets + Parameters - + asset: `MYASSETB` (str, required) - The name of the asset to return + + asset: `MYASSETA` (str, required) - The name of the asset 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 @@ -12304,9 +12253,27 @@ Returns asset subassets ``` { - "result": [], + "result": [ + { + "asset": "A95428958968845068", + "asset_id": "95428958968845068", + "asset_longname": "MYASSETA.SUBMYASSETA", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 156, + "last_issuance_block_index": 156, + "confirmed": true, + "first_issuance_block_time": 1730886348, + "last_issuance_block_time": 1730886348, + "supply_normalized": "0.00000000" + } + ], "next_cursor": null, - "result_count": 0 + "result_count": 1 } ``` @@ -12340,10 +12307,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12368,7 +12335,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12408,22 +12375,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "8a32dc1ad51b3b8957fe78069f393b38a03517fcc2daf6d1443ac453367ec67a", + "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", "tx_index": 13, "block_index": 125, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12432,22 +12399,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12456,22 +12423,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12490,7 +12457,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n` (str, required) - The address of the mints to return + + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (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` @@ -12509,22 +12476,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -12576,10 +12543,10 @@ Returns all the orders { "result": [ { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12587,7 +12554,7 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12596,7 +12563,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12623,10 +12590,10 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 53, - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 56, + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12634,7 +12601,7 @@ Returns all the orders "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 208, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12643,7 +12610,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12670,10 +12637,10 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12681,7 +12648,7 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12690,7 +12657,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12717,10 +12684,10 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12728,7 +12695,7 @@ Returns all the orders "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12737,7 +12704,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12764,10 +12731,10 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 61, - "tx_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "block_index": 210, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 64, + "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "block_index": 213, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12775,7 +12742,7 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 216, + "expire_index": 219, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12784,7 +12751,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12811,7 +12778,7 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" } ], - "next_cursor": 55, + "next_cursor": 58, "result_count": 8 } ``` @@ -12821,7 +12788,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25` (str, required) - The hash of the transaction that created the order + + order_hash: `a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2` (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. @@ -12832,10 +12799,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 79, - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 82, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -12843,7 +12810,7 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 233, + "expire_index": 236, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12852,11 +12819,11 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884584, + "block_time": 1730886624, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -12886,7 +12853,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc` (str, required) - The hash of the transaction that created the order + + order_hash: `7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308` (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 @@ -12913,27 +12880,27 @@ Returns the order matches of an order { "result": [ { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12963,7 +12930,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea` (str, required) - The hash of the transaction that created the order + + order_hash: `5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb` (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 @@ -12981,16 +12948,16 @@ Returns the BTC pays of an order { "result": [ { - "tx_index": 54, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 57, + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "btc_amount": 2000, - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", "status": "valid", "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "btc_amount_normalized": "0.00002000" } ], @@ -13033,10 +13000,10 @@ Returns the orders to exchange two assets { "result": [ { - "tx_index": 53, - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 56, + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13044,7 +13011,7 @@ Returns the orders to exchange two assets "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 208, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13054,7 +13021,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730884441, + "block_time": 1730886496, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13079,10 +13046,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "block_index": 211, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 58, + "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "block_index": 214, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13090,7 +13057,7 @@ Returns the orders to exchange two assets "get_quantity": 3000, "get_remaining": 2000, "expiration": 21, - "expire_index": 210, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13100,7 +13067,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730884580, + "block_time": 1730886620, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13125,10 +13092,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13136,7 +13103,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13146,7 +13113,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13171,10 +13138,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13182,7 +13149,7 @@ Returns the orders to exchange two assets "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13192,7 +13159,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13217,10 +13184,10 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13228,7 +13195,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13238,7 +13205,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13263,7 +13230,7 @@ Returns the orders to exchange two assets "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 61, + "next_cursor": 64, "result_count": 7 } ``` @@ -13301,30 +13268,30 @@ Returns the orders to exchange two assets { "result": [ { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 210, + "tx0_block_index": 190, + "tx1_block_index": 192, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 212, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13344,30 +13311,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 53, - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 56, + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, + "tx0_block_index": 189, + "tx1_block_index": 190, + "block_index": 191, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 207, + "match_expire_index": 210, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884441, + "block_time": 1730886496, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13387,30 +13354,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4_0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx0_index": 50, - "tx0_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 51, - "tx1_hash": "0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx0_index": 53, + "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 54, + "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, + "tx0_block_index": 166, + "tx1_block_index": 167, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 184, + "match_expire_index": 187, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884374, + "block_time": 1730886417, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13430,30 +13397,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13511,27 +13478,27 @@ Returns all the order matches { "result": [ { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 210, + "tx0_block_index": 190, + "tx1_block_index": 192, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 212, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13551,27 +13518,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 53, - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 56, + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, + "tx0_block_index": 189, + "tx1_block_index": 190, + "block_index": 191, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 207, + "match_expire_index": 210, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13591,27 +13558,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4_0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx0_index": 50, - "tx0_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 51, - "tx1_hash": "0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx0_index": 53, + "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 54, + "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, + "tx0_block_index": 166, + "tx1_block_index": 167, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 184, + "match_expire_index": 187, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13631,27 +13598,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13819,66 +13786,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "2cf83eb06925ce9353c6448d088541d61a2060e223248e4cab9f7dd40350df54", + "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", "block_index": 121, - "source": "bcrt1qtj558eqjpr8535ds772a9zv4xasuydnrkh3nj8", + "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730884165, + "block_time": 1730886217, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "e132ce71781e6d25b59b326b93b4ed152fb613acd1b5b07e749f5d7aa457e16c", + "tx_hash": "ee366d303008de29c1f29cdff882b519245f6652ddfe99ddc933e610beda5115", "block_index": 120, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730884162, + "block_time": 1730886214, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3a7d725a11f7077cfbd63c52bcb3d44e9bf0079af822d57e47a6c4909765cc93", + "tx_hash": "43da716b1f2f1e00880372cb84be2a52dfa70aa764de4564d5e265d2364c2c8d", "block_index": 119, - "source": "bcrt1qp0cl8tfjzm73nqjqyesegsyg8cyvax0gd774jq", + "source": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730884157, + "block_time": 1730886211, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "39ba748e3545a57c321bcbe989dc54f8ebd8b7fbec06601cf1ae0e7d46071d00", + "tx_hash": "382b4c27437eab49985a9e81ecf9f3ece4477debd0ac690ed8a979ad3471a47d", "block_index": 118, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730884153, + "block_time": 1730886207, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "53d49574b60ce1b2ffd0869314db42a4abb3a56fb13d0de46a8d231c985e71e2", + "tx_hash": "c2b948594d283e13dc4281672b2b78d7ff522fcc711344881a19de5b805a5600", "block_index": 117, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730884150, + "block_time": 1730886203, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13923,9 +13890,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13934,7 +13901,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13945,7 +13912,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13962,9 +13929,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "b19c98b66aec1383b4fd070f0de012ec29a3c598dc62d10eac08cad28a606143", + "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", "block_index": 142, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13973,7 +13940,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13984,7 +13951,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884261, + "block_time": 1730886295, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14001,9 +13968,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "4d730de3a7dd1d36dc971868a9934b4710203325b59dc25bef79c237049ade8f", + "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", "block_index": 150, - "source": "musJjGf26KUkxLu8bL5eELQs8fhbi864yV", + "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14011,10 +13978,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "079fa58a39342ea9c86725f3f8238027d5581c73827dd5e0e70730d0957c569b", - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -14023,7 +13990,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884300, + "block_time": 1730886324, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14039,10 +14006,10 @@ Returns all dispensers "price_normalized": "1.0000000000000000" }, { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14051,7 +14018,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14062,11 +14029,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -14079,18 +14046,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14101,7 +14068,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14127,7 +14094,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171` (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. @@ -14139,9 +14106,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14150,7 +14117,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14161,7 +14128,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14184,7 +14151,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171` (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 @@ -14204,19 +14171,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14224,7 +14191,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14239,7 +14206,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14253,19 +14220,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14273,7 +14240,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14288,7 +14255,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14330,20 +14297,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -14368,7 +14335,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab` (str, required) - The hash of the dividend to return + + dividend_hash: `1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598` (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. @@ -14380,20 +14347,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -14415,7 +14382,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598` (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 @@ -14438,12 +14405,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "event": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "tx_index": 42, - "utxo": "c85d83e1af288f8dd89f0d23045b28e8212a5bc157bb962fcf4417029a7dd7ca:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "utxo": "3264140a2e7efabf03b12425c19a3dadb411458ec26c4bc3e8d1db42758660ef:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14468,7 +14435,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14485,47 +14452,47 @@ Returns all events { "result": [ { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14536,20 +14503,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14559,24 +14526,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14586,13 +14553,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 710, - "result_count": 716 + "next_cursor": 733, + "result_count": 739 } ``` @@ -14601,7 +14568,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `715` (int, required) - The index of the event to return + + event_index: `738` (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. @@ -14612,19 +14579,19 @@ Returns the event of an index ``` { "result": { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 } } ``` @@ -14656,7 +14623,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 66 + "event_count": 69 }, { "event": "SWEEP", @@ -14682,7 +14649,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `715` (str, optional) - The last event index to return + + cursor: `738` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14699,19 +14666,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14721,24 +14688,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14748,51 +14715,51 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 688, + "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "block_index": 211, + "block_index": 214, "calling_function": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", "quantity": 10, - "tx_index": 78, + "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14802,40 +14769,40 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 687, + "event_index": 710, "event": "CREDIT", "params": { - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", - "block_index": 211, + "block_index": 214, "calling_function": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", "quantity": 10, - "tx_index": 78, + "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 686, - "result_count": 94 + "next_cursor": 709, + "result_count": 96 } ``` @@ -14856,7 +14823,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 94 + "event_count": 96 } } ``` @@ -14885,29 +14852,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14922,7 +14889,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14934,21 +14901,21 @@ Returns all the dispenses "btc_amount_normalized": "0.00001000" }, { - "tx_index": 66, + "tx_index": 69, "dispense_index": 0, - "tx_hash": "079248fd9ba418bc64f8e772a7366e8c73e70c22e46c570fba89ed16e7162044", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", + "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 65, - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14956,7 +14923,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14971,11 +14938,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -14985,27 +14952,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b10a78c83afac45375b074b4777b82d023d0a65c2f2b2022bf6e03c369af2557", + "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", "block_index": 147, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15020,7 +14987,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884289, + "block_time": 1730886314, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15034,19 +15001,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15054,7 +15021,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15069,7 +15036,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15083,19 +15050,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15103,7 +15070,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15118,7 +15085,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15159,11 +15126,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15171,7 +15138,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15183,11 +15150,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15195,11 +15162,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -15207,11 +15174,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15219,7 +15186,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15231,11 +15198,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15243,11 +15210,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -15255,11 +15222,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15267,11 +15234,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -15321,15 +15288,15 @@ Returns all the issuances { "result": [ { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -15344,20 +15311,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 67, - "tx_hash": "9e75231d5f8275c8af6174e614581b83567fd0bcdac653f9a054c4497ca1104a", + "tx_index": 70, + "tx_hash": "c622762c16349bf83423fcf478e846bfbad4ee4593c4f81368e9c543ef2e3863", "msg_index": 0, - "block_index": 201, + "block_index": 204, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "transfer": false, "callable": false, "call_date": 0, @@ -15372,20 +15339,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884521, + "block_time": 1730886556, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 49, - "tx_hash": "a42d2425d18af16891bd75fcefcf1bc9223a35992a141ad062c7086e05e2a44b", + "tx_index": 52, + "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", "msg_index": 0, - "block_index": 162, + "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -15400,20 +15367,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884359, + "block_time": 1730886403, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 48, - "tx_hash": "da7da4ce78f62e11147f389e27d94992144cba270d071d149c9849c186dffdbd", + "tx_index": 51, + "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", "msg_index": 0, - "block_index": 161, + "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -15428,20 +15395,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730884345, + "block_time": 1730886399, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "120efaaa0ada277ed8b31fe5e87d88984582a2c951d67e1575917ad6af9e6bb8", + "tx_index": 50, + "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", "msg_index": 0, - "block_index": 160, + "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -15456,13 +15423,13 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884341, + "block_time": 1730886395, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 19, - "result_count": 24 + "next_cursor": 22, + "result_count": 27 } ``` @@ -15471,7 +15438,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805` (str, required) - The hash of the transaction to return + + tx_hash: `eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b` (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. @@ -15482,15 +15449,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -15505,7 +15472,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15536,17 +15503,17 @@ Returns all sweeps { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -15560,7 +15527,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2` (str, required) - The hash of the transaction to return + + tx_hash: `c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6` (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. @@ -15572,17 +15539,17 @@ Returns the sweeps of a transaction { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -15616,9 +15583,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15626,14 +15593,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884237, + "block_time": 1730886280, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "42413c788d4f9a82101b9dcca95f7f6c9c0bc2968709805b1d87af2feed82ae6", + "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", "block_index": 137, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15641,7 +15608,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884233, + "block_time": 1730886277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15655,7 +15622,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0` (str, required) - The hash of the transaction to return + + tx_hash: `5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36` (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. @@ -15667,9 +15634,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15677,7 +15644,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884237, + "block_time": 1730886280, "fee_fraction_int_normalized": "0.00000000" } } @@ -15714,10 +15681,50 @@ Returns all fairminters { "result": [ { - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, + "burn_payment": false, + "max_mint_per_tx": 100, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, + "confirmed": true, + "block_time": 1730886370, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15742,7 +15749,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730884325, + "block_time": 1730886348, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15751,10 +15758,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", + "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15779,7 +15786,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730884227, + "block_time": 1730886271, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15791,10 +15798,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15819,7 +15826,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730884202, + "block_time": 1730886255, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15831,10 +15838,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", + "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15859,7 +15866,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730884198, + "block_time": 1730886251, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15869,50 +15876,10 @@ Returns all fairminters "earned_quantity_normalized": "3.00000000", "commission_normalized": "0.00000000", "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730884179, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" } ], - "next_cursor": null, - "result_count": 5 + "next_cursor": 1, + "result_count": 6 } ``` @@ -15968,128 +15935,128 @@ Returns all fairmints { "result": [ { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "83fa2be461c4f9b9f9dc3d50241a983329b37dfebaa45fa191e3e5523821640b", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, + "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_index": 45, + "block_index": 158, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884224, + "block_time": 1730886356, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000011", + "earn_quantity_normalized": "0.00000100", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "67e671625a4abfb4c58b66d343202e1e659f8b9dfa929db9a98777ac6841a616", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, + "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884209, + "block_time": 1730886274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000003", + "earn_quantity_normalized": "0.00000040", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" + "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9d8a5440390fe51170b1722012a8222105d65e1300aa7a8eb482cb8911eb6c8e", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, + "earn_quantity": 11, + "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884205, + "block_time": 1730886266, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000005", + "earn_quantity_normalized": "0.00000011", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" + "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f374aad6a7436f193367fccc78c8887e010b7ffa02813dec06aa9c7479e670c9", - "tx_index": 17, - "block_index": 129, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "fairminter_tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, + "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884194, + "block_time": 1730886262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "1.00000000", + "earn_quantity_normalized": "0.00000003", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" + "paid_quantity_normalized": "0.00000001" } ], - "next_cursor": 5, - "result_count": 10 + "next_cursor": 7, + "result_count": 12 } ``` @@ -16098,7 +16065,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28` (str, required) - The hash of the fairmint to return + + tx_hash: `3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16109,28 +16076,28 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" } } ``` @@ -16142,7 +16109,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3,bcrt1qp0cl8tfjzm73nqjqyesegsyg8cyvax0gd774jq` (str, required) - The addresses to search for + + addresses: `bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h,bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd` (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. @@ -16157,39 +16124,39 @@ Returns a list of unspent outputs for a list of addresses "result": [ { "vout": 1, - "height": 212, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "address": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3" - }, - { - "vout": 1, - "height": 204, + "height": 207, "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "address": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3" + "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" }, { "vout": 0, - "height": 205, + "height": 208, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "address": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3" + "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" + }, + { + "vout": 1, + "height": 215, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" }, { "vout": 2, - "height": 158, + "height": 161, "value": 100000, "confirmations": 56, "amount": 0.001, - "txid": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01", - "address": "bcrt1qp0cl8tfjzm73nqjqyesegsyg8cyvax0gd774jq" + "txid": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5", + "address": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd" } ], "next_cursor": null, @@ -16202,7 +16169,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx` (str, required) - The address to search for + + address: `bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu` (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 @@ -16218,28 +16185,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b" + "tx_hash": "4519f82c1ed3f7e2dcaaa3bcb580feeddc5efbb4d2946ac38b795c6acc4c4412" }, { - "tx_hash": "cd4ea5b373f9cf69f311def971a04444010d724d71cd2767879cbf62f39f394d" + "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316" }, { - "tx_hash": "2b6b82359bd52c44411cbfce21224a3b0fd3bd953268e8bb3081b1b5d8a9d45f" + "tx_hash": "a239b17588ee52999d0c52eea7813185ab36a70effba05497ed3726f1b687443" }, { - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2" + "tx_hash": "dc66355d306b60dbac5b6bdb4a8141fc1f11648a8c34955d58006d97f31e6e5e" }, { - "tx_hash": "494c40a60a301a88615defff96a23264c1d47cad0a12dd58c47d3a35e37bfbaf" + "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" }, { - "tx_hash": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0" + "tx_hash": "f5067f400bf33532ca6ab0094d0442388ba5829806f5db9a41717901c2dc1a91" }, { - "tx_hash": "4fda4b0b773b35d332bc78585eb44c353f47af14788a24f73992c2c60d92bbd8" + "tx_hash": "45e8de234c0b52f86d33cde23aa9fbe52cecfc84782be3df834740f29b0499bd" }, { - "tx_hash": "5f5fa37c7cba435f0d43074b148c6bc3762e2a4b1f15778dd3592f622fbfcfe0" + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6" } ], "next_cursor": null, @@ -16252,7 +16219,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6` (str, required) - The address to search for. + + address: `bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh` (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. @@ -16265,8 +16232,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "62a108830ec162aecd5861dc453f933dc3913ab54d2a0ce1d1906004bb698b30" + "block_index": 3, + "tx_hash": "33f637d86afc199db09906ca7a57f29604a0b40ca1b07d04ac857586311997e1" } } ``` @@ -16276,7 +16243,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3` (str, required) - The address to search for + + address: `bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h` (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 @@ -16291,29 +16258,29 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 1, - "height": 204, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578" - }, { "vout": 0, - "height": 205, + "height": 208, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5" + "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8" }, { "vout": 1, - "height": 212, + "height": 215, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25" + "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2" + }, + { + "vout": 1, + "height": 207, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a" } ], "next_cursor": null, @@ -16326,7 +16293,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv` (str, required) - Address to get pubkey for. + + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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. @@ -16338,7 +16305,7 @@ Get pubkey for an address. ``` { - "result": "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2" + "result": "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" } ``` @@ -16347,7 +16314,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8` (str, required) - The transaction hash + + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (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. @@ -16359,7 +16326,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010101cc03cd337b79abb8faa68fc458c42c928752b84c7a3ac0561772610ed5d33d0100000000ffffffff03e803000000000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca400000000000000000c6a0acc5397c4d33e3423ccddeb140927010000001600140113344d9a963143961fe97976f811a05209110f0247304402206117b81977d24ac63130afce5d2eb91e0e8c5f45ee665f46b931f92569f73d2102207955ee179585f3eb635997e43ffc20b72feb8d25a4ffdf7ca75a030af5fa347901210250ff69bbbd0d1e2f8969ba419acba230a689b686ff914f76f59053ce6ed7eb3500000000" + "result": "02000000000101a5f42e5f80961ac262d40fc73ba5463a008993b619f90e68ef7c67795471b3360100000000ffffffff03e8030000000000001600141ad1af8b95b1ea4881905a2154d06b313e97901f00000000000000000c6a0aa17405a4003cc1c6497c8714092701000000160014624b13a86be421eb76d68cecd83105881369410f024730440220549d14d47b716b826b9afc9d6f2bf1d46e947ae886a30735a453dd5e6736966002205a8b25282e7ef5a4317e11dccb08ef9b6bb31fe8ea44356c41a1648df326dab2012103cd47bca279d06d3537c8bfadd50f781929f898ce7088fbb462156577a96079f700000000" } ``` @@ -16381,7 +16348,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58799 + "result": 58821 } ``` @@ -16454,28 +16421,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81 + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84 }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "quantity": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16485,22 +16452,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16510,22 +16477,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", - "block_index": 213, - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "block_index": 216, + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16535,30 +16502,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730884602.200858, + "block_time": 1730886641.799628, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "destination": "", "fee": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, - "utxos_info": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61:1 2 ", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, + "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -16572,7 +16539,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -16603,19 +16570,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16625,7 +16592,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -16638,7 +16605,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61` (str, required) - The hash of the transaction to return + + tx_hash: `ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c` (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 @@ -16658,28 +16625,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81 + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84 }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "quantity": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16689,22 +16656,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16714,22 +16681,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", - "block_index": 213, - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "block_index": 216, + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16739,30 +16706,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730884602.200858, + "block_time": 1730886641.799628, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "destination": "", "fee": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, - "utxos_info": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61:1 2 ", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, + "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -16776,7 +16743,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 18e4fcd6e3..0f37d8c9ed 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -523,7 +523,7 @@ def compose_dispense( ): """ 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 address: The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_1) :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) """ diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 1377cecf38..7e6d1645c9 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -12847,7 +12847,7 @@ "name": "address", "required": true, "type": "str", - "description": "The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)" + "description": "The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_2)" }, { "name": "assets", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 3367e5888d..4b268802b0 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": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", "difficulty": 545259519, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, "confirmed": true }, { - "block_index": 212, - "block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", - "block_time": 1730884584, - "previous_block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", + "block_index": 215, + "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_time": 1730886624, + "previous_block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", "difficulty": 545259519, - "ledger_hash": "2e03b30521a72f313115ae98e224418e3fcacdc4a8f993258a16fd28bbe7c171", - "txlist_hash": "2eeddb7c41b451fafee1d77e32e907cb01a81e9b4cea33d366d985718a6426ed", - "messages_hash": "12f00b986f225fff3ef5f2420383063a4cfbdbed5bf23ada4d045f4d6d6eaf1c", + "ledger_hash": "4a2ce5404e543bec2e3d0a3d601790892724baf757c6862310ba9c9d3df35df5", + "txlist_hash": "9444b4994ced319d8d8a37636d2743c6ba940b7a417c82bfbd3a7149283875e9", + "messages_hash": "193dc4c585cd7b9c9c64adebaf12e8d804d6ae183dbba550745135ecbb9604bb", "transaction_count": 1, "confirmed": true }, { - "block_index": 211, - "block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", - "block_time": 1730884580, - "previous_block_hash": "57714d24824aa1b5bb0d1adc5aaff232aedc4d74d10c995780aafe50beb9ab4d", + "block_index": 214, + "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_time": 1730886620, + "previous_block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", "difficulty": 545259519, - "ledger_hash": "8cb1537b8b67a45284be966d2c49ac1ff66bfe251b6cf3ce18b674523676e9fe", - "txlist_hash": "ed8ab455cf9305256c904900c0ac15a37812e123f553b683d1e9d22c748a6dc9", - "messages_hash": "464840862458467e6b8694c01989db796b4a97bd3fc670f803ccb443a764b75c", + "ledger_hash": "14c940a84f3314ff088c8ae41ae4461993a5f6723af74a4830909a4435160970", + "txlist_hash": "97ca3575aba4bae0b540b67777f953d5763f8edbe3bc53b683c69f6905307ef8", + "messages_hash": "a7476b4c76c553528bae39fda715adc1318ca3d307122ac2f9378bb2e7609715", "transaction_count": 1, "confirmed": true }, { - "block_index": 210, - "block_hash": "57714d24824aa1b5bb0d1adc5aaff232aedc4d74d10c995780aafe50beb9ab4d", - "block_time": 1730884566, - "previous_block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", + "block_index": 213, + "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", + "block_time": 1730886606, + "previous_block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", "difficulty": 545259519, - "ledger_hash": "9185c2efaf96fd7362adbc7cc563d30c1eaee2dbd4ed0998c60a4dc2a94b2094", - "txlist_hash": "f06e60f4cb4ea0f13afb89f8e97eba45f1b1d34f93142092f98a793001bfda4f", - "messages_hash": "f3709c85f8d8e673bb8bf66695e0310395635ecbdfda9354d1f2bc3c0a520761", + "ledger_hash": "6c1eb330077904aeb0291ace28883e5bfd4715bc6477dc40f5883b3467ff8297", + "txlist_hash": "0e960685873437705c0b2503ae83c5650d5fea2398c93c898521d89b9c89acba", + "messages_hash": "72152ff841590875ca0252a0e725f2c8e888c9f113f319f687ec639c89f6ae5f", "transaction_count": 1, "confirmed": true }, { - "block_index": 209, - "block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", - "block_time": 1730884561, - "previous_block_hash": "7bb2fb23ea6b04169342759f8db28963793cf1b8d06e939a935cfd4d3953eeec", + "block_index": 212, + "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_time": 1730886603, + "previous_block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", "difficulty": 545259519, - "ledger_hash": "cb73dc64f8922a4369da66b22dd05631d052dd2472b15e9be7c450aacee7221f", - "txlist_hash": "d26cc32638659220eb89b58edccc06bf0c93814e16d02c447da396777c30bb19", - "messages_hash": "c49ebe2494f6e333552459e6a97606576cf9abc029ec575531cc6d55d3b8a107", + "ledger_hash": "47c34859d5f8cf69be7eee7fc0634f0a703461dc4eeb18420cc3f98decfe55b0", + "txlist_hash": "4b7d62a61b9d44386fd3fbbfb0be78c5d2e7e85fccaca876ca99ebe02011b221", + "messages_hash": "2925e83a1854ca2d6c988538d276c9d4a4746de5aeb6bc67c0e55f9b4f8af08c", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 208, - "result_count": 113 + "next_cursor": 211, + "result_count": 116 }, "/v2/blocks/": { "result": { - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", "difficulty": 545259519, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", "difficulty": 545259519, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null }, { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" } ], - "next_cursor": 710, + "next_cursor": 733, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,32 +300,32 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8" + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 213, - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "block_index": 216, + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 213, + "block_index": 216, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -376,21 +376,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 213, + "block_index": 216, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 213, + "block_index": 216, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -424,21 +424,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 213, + "block_index": 216, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "block_index": 211, + "object_id": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "block_index": 214, "confirmed": true, - "block_time": 1730884580 + "block_time": 1730886620 } ], "next_cursor": null, @@ -464,14 +464,14 @@ "/v2/blocks//cancels": { "result": [ { - "tx_index": 60, - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "offer_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", + "tx_index": 63, + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", "status": "valid", "confirmed": true, - "block_time": 1730884485 + "block_time": 1730886529 } ], "next_cursor": null, @@ -480,16 +480,16 @@ "/v2/blocks//destructions": { "result": [ { - "tx_index": 63, - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "block_index": 197, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 66, + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "block_index": 200, + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730884496, + "block_time": 1730886540, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -506,15 +506,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -540,11 +540,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -564,11 +564,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -649,17 +649,17 @@ "/v2/blocks//sweeps": { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -669,19 +669,19 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -692,18 +692,21 @@ "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, "confirmed": true, - "block_time": 1730884325, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", + "block_time": 1730886370, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -712,28 +715,28 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -742,18 +745,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -765,18 +768,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 79, - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108", - "block_time": 1730884584, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 82, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_time": 1730886624, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25:1 2 ", + "utxos_info": " a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +795,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -811,58 +814,58 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 78, - "result_count": 81 + "next_cursor": 81, + "result_count": 84 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "535830b08795c4e6e336436c82e955fba5b6fd497bd92bd340098e664a10f96c", + "hash": "605694f6c029d04b69c9d40654e4735dd3d40e04b5996b386f5c7a71b40b47c3", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "450f13d83d9029ab9e99183b76dec30e076085a55f6cf6cb8d4ce099b4cfb085", + "hash": "3a978d7e007d40c67ba4f8dc1c054c1d0a46502cc1860559bf4aaede837d5c18", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "ea8c9e8da7c51f44e71bec3b92efeaaf529ee7cc3aeb6b2dbad385c88028e822", + "hash": "8d4d7c20ccfa6968e4377015bd9e0b7078a6d98375589e58e152609620a5a2ec", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "4096056c11414dc4d25e6f8ce141cbc5c7e43831df8de77043a474f481eca034", + "hash": "e35f6c08ca28b217d089ed6fa66e1ce2e224f51efcf33c4d1763b575ae4fbdb5", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bfff4e69a4394ce1f6801ba9a0301666d8b81582c2d8001eca5b90250eaaaf79", + "hash": "bce276563e9b1c7e36c304c9552dce94d582464993e24ff4afbcad2434d5e4ab", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "7f09ff9688f908d98cfa0db6e87d5a4ea95a034cdfa9415531885e258baefac0", + "hash": "1933d11652cc8b260abd57fb1c40940d8dbd08065f57eef504e39063702ea61e", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +875,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512102f7984928115fc97aaaa4508f6a4451e0db11940c0176821c21b07bca826cf31421026cdb70d022b32d36c98e741926b975ba54c1f2531f46ed0d5dc0f309d08f814e210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae" + "script_pub_key": "512102af14eeb0084c152974c0c4dc20a3e9d4bf36a7ea2837501f6ebbead1f15832d32102023305782c7b2e0e0ad78bd86b0d9c2c372c0dd8777b190ff22bd50db943381521030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" }, { "value": 1000, - "script_pub_key": "512103f7984928115fc97aaa34c80a7f50676dc70393f26d25d15cc45b3ad097de721c21033ab2f0bba70d9edf97229881046b91a6878bf6d8e79979e0f0588d67b8ed24fc210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae" + "script_pub_key": "512103af14eeb0084c152974356bb6f83467d69258478efc8e775963e0410df91312e62103affe851a1cce2caa14e5a9f79356902d54f34b6db1b7dd8f020041798410cdbd21030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" }, { "value": 1000, - "script_pub_key": "512103d6984928115fc97aaaa7508ceac94568ea2a2d5c5e15c577af75b2c9971aa62d21023ab2f0bba70d9ef582970d34b8a191a6878bf6d8e793fc8d9535e25438ed246a210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae" + "script_pub_key": "5121038114eeb0084c152974c3c49fa009b7f476388201fbc2ff2d0b8561609c7e7d2f21032ffe8511da0f3d23bce5a9f79356902d06f34b6db1b7dd8f084041798410cd0421030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" }, { "value": 29999987000, - "script_pub_key": "0014521982e6e38b010fa2959ab665fe0566e12cd682" + "script_pub_key": "00147b8d32180ac4c5c380d3d70e5121633b537a2264" } ], "vtxinwit": [ - "3044022052dc5517449680e35c8cfbd36a19126fc4357033c51ba85248921f6ec9a5afa4022079acb12a5d880674c14a9f6ad0521b3c7f93c6aedb316749b8b923be1fbf809a01", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "304402201517fd273cb149a31861e9179939f7778b146356416817879c71faef580a209b02204107faf1d2df4c570e0c00bc15acc4b457e566d4500a42fdbd19b05984a9222f01", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "3044022019a4fbad8c9d2bb76d39af355d6f7002c2d18abb0eb02781f2a691ee8b3d799402205ebb2072fa1b9ac0dc8ac4da77cc21c5dc74d5c9930f5a50402f2a2bb6eeed3701", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "3044022075783410d45a4da114d4a6283cf432ad62a5a152fe48a8685c375be30f13d91b02206cd48f72aea69728a1251280ddd994dde0b1c388f4262666491bf305699c9efd01", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "304402206eaca35bb7af1e88fe6f66c70d092c0eee6470f574f3242a31ee4a7f515bfa14022029e29852c2ebb655b8f86d142f982f5987fac90a9de7b67c4f114611e0b500e401", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2", - "304402202620243dcef313ee8be81963374aac10f8c48cdcb59fe6ab1584b9253f58b14302207cb091acf9df3ab765b7bebfaa892517470b68f82f005bbf89d43bdc689af6c801", - "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2" + "3044022060bd3cf8dd9fd04596bef152b705e93498946f1948e6401f6984b44e4bb0b3ea02201e5949a78dafb528693316442df19b7bbf328f93725052f09e57773f6cff3f7a01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "30440220599596e5682f14940ca521928a5442ad79a62fabc5a09c8a8278dde16b27ec4d02206c7ab29074a68e0275c4432bf0c06b6806b784deede4799189c4c8bec635f4e501", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "3044022076b15ca17e376623fd0c37c7407393d9e225d5b341d5b4e0b279c0c6c7409d960220233515d11ceee2a205a6b151b428f4e4a7dd653a5868d770fa8b04966e8dfaea01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "304402207897a00dec9b1decdbe7b0603f2c0d6ce0a64a066c3dee2590c7d5d7a88403ea022010572029ddc8d1159b8b9adbbbd6bccdc99956232059e2d60cb2b477bd75d63201", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "304402202cce65d353ebfb1e56ed1399f0a3d2a3e3759aeb20614e773c23bca22d7bb0980220795eddc632a8db411e9feb0ae38185bfc8f859a577a93d90767389577a33491d01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", + "304402203b928cfc18d69421835bb3e0efb015b5bef38febceacd2885658daed064bab130220024634a9b73e8a1556ddbaf14ed571fe331180b167e118b06eb4205bd89cae7c01", + "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" ], "lock_time": 0, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_id": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193" + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_id": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +914,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -926,9 +929,9 @@ }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -946,18 +949,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d52d9b41d18cf24b3fef89a22060bf59997445b2ab951bba264f58671ff1bd93", + "hash": "84ebf11cb90a6835943d513a9cf0c11e3327c456d35a65be126acfb46e7a645a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +970,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e00a4819b6a9bfa68b405a0416a2e316f54bd3fc213bd6a398c68c1cb7967c92107f2dd3284147b00d886216ca4d0" + "script_pub_key": "6a2e6fd344482e13f2ed14ef3ee933c06f06a1df98afcc1e53d1dc2a933aa89662011107217b06a7eb2dd35a637b6df6" }, { "value": 4949930546, - "script_pub_key": "0014c8f5115de862a59398869599a2052d29beae3330" + "script_pub_key": "0014fa6b94743d53f5f6af69583dd022e460c5a7074c" } ], "vtxinwit": [ - "304402200c3697886f75d3b629b20ebc1c2173b9d5df525d3bfee0d9bfe8889abdb58bf302200e3cc23ae09bf5dc4b720b46b3b4098865bfe10a29def7d1870315e6205aee6a01", - "03c296edf7bafea14d15e650ea83edf9192fd44d619ada54529961c4db5d896ce9" + "304402200b61928a679b13372abf29d5c8082a414e50f1fb45aae2cab5e24361dc6edf8e022037d4b3043338e16a0d5323fb536e207a4ae977de91257aac777b21a5eb90771a01", + "02674fa5b9bdf3cb84ebddc108d1b2fca4f99f8cc943cfa511877f47bb42a27faf" ], "lock_time": 0, - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_id": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61" + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_id": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +991,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -1014,18 +1017,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1039,18 +1042,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_time": 1730884598, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_time": 1730886637, + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1065,32 +1068,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1101,20 +1104,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1124,24 +1127,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1151,24 +1154,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 710, + "event_index": 733, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 213, - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "block_index": 216, + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "msg_index": 1, "quantity": 2000000000, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", "status": "valid", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1178,43 +1181,43 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 709, + "next_cursor": 732, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1225,20 +1228,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1248,24 +1251,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1275,24 +1278,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 710, + "event_index": 733, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 213, - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "block_index": 216, + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "msg_index": 1, "quantity": 2000000000, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", "status": "valid", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1302,22 +1305,22 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 709, + "next_cursor": 732, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1328,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1337,11 +1340,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1352,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1367,29 +1370,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1407,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1422,19 +1425,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1444,24 +1447,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1471,36 +1474,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], "next_cursor": null, @@ -1509,19 +1512,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1531,24 +1534,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1558,36 +1561,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], "next_cursor": null, @@ -1600,7 +1603,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,39 +1613,18 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "total_normalized": "1000.00000000" }, - { - "asset": "MPMASSET", - "total": 99999998960, - "addresses": [ - { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "utxo": null, - "utxo_address": null, - "quantity": 99999998960, - "quantity_normalized": "999.99999000" - } - ], - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "total_normalized": "999.99999000" - }, { "asset": "FAIRMINTA", "total": 500000000, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,39 +1634,39 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "total_normalized": "5.00000000" }, { - "asset": "MPMASSET", - "total": 960, + "asset": "FREEFAIRMINT", + "total": 180, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, - "quantity": 960, - "quantity_normalized": "0.00000960" + "quantity": 180, + "quantity_normalized": "0.00000180" } ], "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "asset_longname": "", + "description": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "total_normalized": "0.00000960" + "total_normalized": "0.00000180" }, { "asset": "FAIRMINTD", "total": 40, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1676,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1705,7 +1687,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,31 +1697,31 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "total_normalized": "0.00000019" } ], - "next_cursor": "MYASSETA", - "result_count": 8 + "next_cursor": "MPMASSET", + "result_count": 9 }, "/v2/addresses/transactions": { "result": [ { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_hash": "2da0709a8e1047ac252d6b712cf61870bd85c9cde892c5e8c6697558794f2736", - "block_time": 1730884580, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_time": 1730886620, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380521982e6e38b010fa2959ab665fe0566e12cd682806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a:0 4 ", + "utxos_info": " 62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1729,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1762,7 +1744,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1780,18 +1762,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 77, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_hash": "57714d24824aa1b5bb0d1adc5aaff232aedc4d74d10c995780aafe50beb9ab4d", - "block_time": 1730884566, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 80, + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", + "block_time": 1730886606, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380521982e6e38b010fa2959ab665fe0566e12cd682806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae3330c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b:0 4 ", + "utxos_info": " d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1781,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1814,7 +1796,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1832,18 +1814,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", - "block_time": 1730884561, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_time": 1730886603, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193:0 4 ", + "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1833,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1866,7 +1848,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1884,18 +1866,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "block_hash": "7bb2fb23ea6b04169342759f8db28963793cf1b8d06e939a935cfd4d3953eeec", - "block_time": 1730884557, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", + "block_time": 1730886600, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05:0 4 ", + "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1885,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1918,7 +1900,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1936,18 +1918,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_hash": "79cd26e0fad17347428aa7b2b4f2e71ec4a2da27dc01374ed4a87c1926943280", - "block_time": 1730884553, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 77, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", + "block_time": 1730886595, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "supported": true, - "utxos_info": " b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83:1 2 ", + "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1937,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -1970,26 +1952,26 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 73, - "result_count": 46 + "next_cursor": 76, + "result_count": 49 }, "/v2/addresses/events": { "result": [ { - "event_index": 693, + "event_index": 716, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 211, - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 214, + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1999,80 +1981,80 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 692, + "event_index": 715, "event": "MPMA_SEND", "params": { "asset": "MPMASSET", - "block_index": 211, - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "block_index": 214, + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 691, + "event_index": 714, "event": "MPMA_SEND", "params": { "asset": "MPMASSET", - "block_index": 211, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "block_index": 214, + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 690, + "event_index": 713, "event": "DEBIT", "params": { "action": "mpma send", - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", - "block_index": 211, - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", + "block_index": 214, + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", "quantity": 10, - "tx_index": 78, + "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2082,29 +2064,29 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 689, - "result_count": 239 + "next_cursor": 712, + "result_count": 254 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "quantity": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2114,22 +2096,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2139,22 +2121,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", - "block_index": 213, - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "block_index": 216, + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2164,30 +2146,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730884602.200858, + "block_time": 1730886641.799628, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "destination": "", "fee": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, - "utxos_info": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61:1 2 ", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, + "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -2201,7 +2183,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -2210,7 +2192,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2218,14 +2200,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2233,14 +2215,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2248,16 +2230,16 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "quantity": 82649965196, + "quantity": 82599965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2267,10 +2249,10 @@ "divisible": true, "locked": true }, - "quantity_normalized": "826.49965000" + "quantity_normalized": "825.99965000" }, { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2278,7 +2260,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2291,9 +2273,9 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "quantity": 82649965196, + "quantity": 82599965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -2303,7 +2285,7 @@ "divisible": true, "locked": true }, - "quantity_normalized": "826.49965000" + "quantity_normalized": "825.99965000" } ], "next_cursor": null, @@ -2312,17 +2294,17 @@ "/v2/addresses/
/credits": { "result": [ { - "block_index": 211, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 214, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2333,17 +2315,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 210, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 213, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "tx_index": 77, + "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2354,17 +2336,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 210, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 213, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2375,17 +2357,17 @@ "quantity_normalized": "0.00003000" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", + "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2396,44 +2378,44 @@ "quantity_normalized": "0.00005000" }, { - "block_index": 206, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 209, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "tx_index": 73, + "event": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" } ], - "next_cursor": 65, + "next_cursor": 67, "result_count": 21 }, "/v2/addresses/
/debits": { "result": [ { - "block_index": 209, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 212, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_index": 76, + "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2444,38 +2426,38 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 209, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 212, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_index": 76, + "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "tx_index": 75, + "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2486,50 +2468,50 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "tx_index": 75, + "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 207, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 210, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "tx_index": 74, + "event": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884553, + "block_time": 1730886595, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" } ], - "next_cursor": 63, - "result_count": 28 + "next_cursor": 64, + "result_count": 29 }, "/v2/addresses/
/bets": { "result": [], @@ -2540,9 +2522,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "42413c788d4f9a82101b9dcca95f7f6c9c0bc2968709805b1d87af2feed82ae6", + "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", "block_index": 137, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2550,7 +2532,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884233, + "block_time": 1730886277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2561,14 +2543,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "546bedac42e68ec3c7f91b3ff492a73d7ef216601a656ab6e60104e03d71da0d", + "tx_hash": "7c47734a6ee7a2f33b0c1ad9317deb9a1dae7d63d87980275b6058c5ed37b4c2", "block_index": 112, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730884133, + "block_time": 1730886184, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2579,11 +2561,11 @@ "/v2/addresses/
/sends": { "result": [ { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2591,7 +2573,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2603,11 +2585,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2615,11 +2597,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2627,11 +2609,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2639,11 +2621,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2651,11 +2633,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2663,7 +2645,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2675,11 +2657,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2687,11 +2669,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2706,10 +2688,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "e0ccc5968229f71afb06c0ddae0183b6fa3706cbb5be5e4ebaac1e0ace4cbd4b", + "tx_hash": "363325b127e459a90d7a306995804fae5bcdd591c4fe5973652fd44d1ba50f4b", "block_index": 151, - "source": "03fc70e0af7a6d57311d5e6f2ac934541122a98f9303c0a33490a8b704a46399:0", - "destination": "bcrt1qkt2my5cycee0vxum5ur499k9mgu9xy8j28m5l7", + "source": "0c9dfaf54232e7be973691b86c950e256220902b5458d1ca65afad6816244fd8:0", + "destination": "bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2717,11 +2699,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884304, + "block_time": 1730886328, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2733,143 +2715,22 @@ "result_count": 1 }, "/v2/addresses/
/sends/": { - "result": [ - { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884561, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "memo2", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884561, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884557, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884557, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "asset": "MPMASSET", - "quantity": 1000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730884553, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/receives/": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/dispensers": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/receives/": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/dispensers": { "result": [ { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2878,7 +2739,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2889,7 +2750,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2905,10 +2766,10 @@ "price_normalized": "1.0000000000000000" }, { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2917,7 +2778,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2928,11 +2789,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -2950,9 +2811,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2822,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2972,7 +2833,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2991,21 +2852,21 @@ "/v2/addresses/
/dispenses/sends": { "result": [ { - "tx_index": 66, + "tx_index": 69, "dispense_index": 0, - "tx_hash": "079248fd9ba418bc64f8e772a7366e8c73e70c22e46c570fba89ed16e7162044", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", + "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 65, - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3013,7 +2874,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3028,11 +2889,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -3042,19 +2903,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3062,7 +2923,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3077,7 +2938,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3091,19 +2952,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3111,7 +2972,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3126,7 +2987,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3144,21 +3005,21 @@ "/v2/addresses/
/dispenses/receives": { "result": [ { - "tx_index": 66, + "tx_index": 69, "dispense_index": 0, - "tx_hash": "079248fd9ba418bc64f8e772a7366e8c73e70c22e46c570fba89ed16e7162044", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", + "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 65, - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3166,7 +3027,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3181,11 +3042,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -3195,19 +3056,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3215,7 +3076,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3230,7 +3091,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3244,19 +3105,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3264,7 +3125,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3279,7 +3140,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3299,19 +3160,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3319,7 +3180,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3334,7 +3195,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3348,19 +3209,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3368,7 +3229,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3383,7 +3244,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3403,19 +3264,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3423,7 +3284,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3438,7 +3299,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3452,19 +3313,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3472,7 +3333,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3487,7 +3348,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3505,17 +3366,17 @@ "/v2/addresses/
/sweeps": { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -3525,15 +3386,15 @@ "/v2/addresses/
/issuances": { "result": [ { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -3548,20 +3409,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 49, - "tx_hash": "a42d2425d18af16891bd75fcefcf1bc9223a35992a141ad062c7086e05e2a44b", + "tx_index": 52, + "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", "msg_index": 0, - "block_index": 162, + "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -3576,20 +3437,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884359, + "block_time": 1730886403, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 48, - "tx_hash": "da7da4ce78f62e11147f389e27d94992144cba270d071d149c9849c186dffdbd", + "tx_index": 51, + "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", "msg_index": 0, - "block_index": 161, + "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -3604,20 +3465,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730884345, + "block_time": 1730886399, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "120efaaa0ada277ed8b31fe5e87d88984582a2c951d67e1575917ad6af9e6bb8", + "tx_index": 50, + "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", "msg_index": 0, - "block_index": 160, + "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -3632,20 +3493,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884341, + "block_time": 1730886395, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 46, - "tx_hash": "767dd2512833cee3c1fb0e42ed674f2209cad65509de729d0108b60bb6731f03", + "tx_index": 49, + "tx_hash": "5c5b02a352c69a997df3828df766561ead6e67d71cb291d9f284dff3f11ff6fd", "msg_index": 0, - "block_index": 159, + "block_index": 162, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -3660,13 +3521,13 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884337, + "block_time": 1730886382, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 17, - "result_count": 22 + "next_cursor": 20, + "result_count": 25 }, "/v2/addresses/
/assets": { "result": [ @@ -3674,42 +3535,59 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" + }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3717,16 +3595,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, + "first_issuance_block_time": 1730886317, + "last_issuance_block_time": 1730886317, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 40, @@ -3734,30 +3612,13 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730884227, - "last_issuance_block_time": 1730884230, + "first_issuance_block_time": 1730886271, + "last_issuance_block_time": 1730886274, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730884202, - "last_issuance_block_time": 1730884224, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 7 + "next_cursor": 4, + "result_count": 8 }, "/v2/addresses/
/assets/issued": { "result": [ @@ -3765,42 +3626,59 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" + }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3808,16 +3686,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, + "first_issuance_block_time": 1730886317, + "last_issuance_block_time": 1730886317, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 40, @@ -3825,30 +3703,13 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730884227, - "last_issuance_block_time": 1730884230, + "first_issuance_block_time": 1730886271, + "last_issuance_block_time": 1730886274, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730884202, - "last_issuance_block_time": 1730884224, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 7 + "next_cursor": 4, + "result_count": 8 }, "/v2/addresses/
/assets/owned": { "result": [ @@ -3856,42 +3717,59 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" + }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3899,16 +3777,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, + "first_issuance_block_time": 1730886317, + "last_issuance_block_time": 1730886317, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 40, @@ -3916,46 +3794,29 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730884227, - "last_issuance_block_time": 1730884230, + "first_issuance_block_time": 1730886271, + "last_issuance_block_time": 1730886274, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1730884202, - "last_issuance_block_time": 1730884224, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 7 + "next_cursor": 4, + "result_count": 8 }, "/v2/addresses/
/transactions": { "result": [ { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "block_hash": "1c67bf6d37796bb22970df59946d5d96ec6243cf0cf75f1e7349975b72889727", - "block_time": 1730884561, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_time": 1730886603, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193:0 4 ", + "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3963,14 +3824,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -3978,7 +3839,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3996,18 +3857,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "block_hash": "7bb2fb23ea6b04169342759f8db28963793cf1b8d06e939a935cfd4d3953eeec", - "block_time": 1730884557, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", + "block_time": 1730886600, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d9488313bb9505f631340e5eea27a9d76555669806b85beb3c34b19792d9e18e41cd34a048bf8d51180c8f5115de862a59398869599a2052d29beae333088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05:0 4 ", + "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4015,14 +3876,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4030,7 +3891,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4048,18 +3909,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 74, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_hash": "79cd26e0fad17347428aa7b2b4f2e71ec4a2da27dc01374ed4a87c1926943280", - "block_time": 1730884553, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 77, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", + "block_time": 1730886595, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "supported": true, - "utxos_info": " b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83:1 2 ", + "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4067,12 +3928,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4082,18 +3943,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_hash": "29345d5e9c6ed02e1b02972b781d9daf4957dfa5d3fe07a871a76f953bba5b06", - "block_time": 1730884548, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_hash": "3eee0202e49997e9138f321ad34f3ebc4b0f05692963a115eaf5c152a5ee65b5", + "block_time": 1730886581, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805:1 2 ", + "utxos_info": " eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4117,18 +3978,18 @@ "btc_amount_normalized": "0.00000000" }, { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 199, - "block_hash": "677b5a48d499db48e1f296ffb2cb0d269a4f8ec7e2df1c6b8649229936aee66a", - "block_time": 1730884513, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 202, + "block_hash": "0d9e15163c4725e3733cbcdfebd1a077c34264a34de5681049530a0ec14a4832", + "block_time": 1730886548, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957:1 2 ", + "utxos_info": " 5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4145,7 +4006,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4156,27 +4017,27 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 64, - "result_count": 31 + "next_cursor": 67, + "result_count": 32 }, "/v2/addresses/
/dividends": { "result": [ { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4197,10 +4058,10 @@ "/v2/addresses/
/orders": { "result": [ { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4208,7 +4069,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -4217,7 +4078,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4244,10 +4105,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4255,7 +4116,7 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -4264,7 +4125,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4291,10 +4152,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4302,7 +4163,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -4311,7 +4172,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4338,10 +4199,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 61, - "tx_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "block_index": 210, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 64, + "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "block_index": 213, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4349,7 +4210,7 @@ "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 216, + "expire_index": 219, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -4358,7 +4219,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4391,10 +4252,50 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, + "burn_payment": false, + "max_mint_per_tx": 100, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, + "confirmed": true, + "block_time": 1730886370, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4419,7 +4320,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730884325, + "block_time": 1730886348, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4428,10 +4329,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", + "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4456,7 +4357,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730884227, + "block_time": 1730886271, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4468,10 +4369,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4496,7 +4397,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730884202, + "block_time": 1730886255, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4508,10 +4409,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", + "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4536,7 +4437,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730884198, + "block_time": 1730886251, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4548,10 +4449,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4576,7 +4477,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4589,75 +4490,123 @@ } ], "next_cursor": null, - "result_count": 5 + "result_count": 6 }, "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "83fa2be461c4f9b9f9dc3d50241a983329b37dfebaa45fa191e3e5523821640b", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, + "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_index": 45, + "block_index": 158, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884224, + "block_time": 1730886356, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000011", + "earn_quantity_normalized": "0.00000100", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "67e671625a4abfb4c58b66d343202e1e659f8b9dfa929db9a98777ac6841a616", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730884209, - "asset_info": { + "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730886274, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730886266, + "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730886262, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4666,22 +4615,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9d8a5440390fe51170b1722012a8222105d65e1300aa7a8eb482cb8911eb6c8e", + "tx_hash": "390924b7ff0790fb00684834a44113047037bfabf1ab65af88f02a8846492d1f", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884205, + "block_time": 1730886259, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4690,22 +4639,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "46a174edb58f1bb5b4143489b186918b8911edcf903f5f73f69297c4f70ef7bf", + "tx_hash": "348fb1aaceebdc68efbbb9071e4604c31756d3cd4ea3fcf68f24c7d7e28e7c13", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884187, + "block_time": 1730886238, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4714,22 +4663,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4739,27 +4688,27 @@ } ], "next_cursor": null, - "result_count": 6 + "result_count": 8 }, "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4776,8 +4725,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4790,12 +4739,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -4811,7 +4760,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4822,9 +4771,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985771, - "btc_fee": 14229, - "rawtransaction": "02000000000101e95073f79c70e12194c97eeaf02cd86e6431ca46ec5e1a5201cc8825fd3f104d00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff0200000000000000002b6a2946b2cc1d095a8ab16a519bb9a8c1bd06bae09c1b78406c214d68843007f94a1419ff4e1281ce5209426bba052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985766, + "btc_fee": 14234, + "rawtransaction": "020000000001018b4dfb8e206f20712453a9d9959f580f043aa1b465aa63c1b8176e209fbc24f3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0200000000000000002b6a29493a8c69426454a968f746df4d46beeae1f2bf82863c0270b0889be44b2d5a3c4d1c298757ab544e7d66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4842,24 +4791,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "order_match_id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "data": "434e5452505254590b7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980890, - "btc_fee": 18110, - "rawtransaction": "0200000000010133b049696f3c0f25c5e24175c42fe6576bba1591098f54657d85d41a4fb6f3b100000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff03e803000000000000160014521982e6e38b010fa2959ab665fe0566e12cd68200000000000000004b6a497698f31e4f199638012fa3f0f6fa6f6dda002d7e081bffb58fd9ce40528301301b9932b732485a34faf82264c895636419d38474da5635b4ad584ba8458ff46021823b33193eed630d5aa7052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999980884, + "btc_fee": 18116, + "rawtransaction": "02000000000101a829b8346ce37e8bf2b3ea16712ce37cf845502770a623c7587813d9447c3823000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e8030000000000001600147b8d32180ac4c5c380d3d70e5121633b537a226400000000000000004b6a490b20e455032e9e62a99c253c3e59653d0e708151c34960e05b3b645e757d8c67a94813449cabcd858c2cbd9cbb578d74a88e0c7eb850694bf73447d9bbf5368934ff1150f4e497d70b54a7052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "order_match_id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "status": "valid" } } @@ -4868,7 +4817,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4877,30 +4826,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985771, - "btc_fee": 13229, - "rawtransaction": "020000000001010d24040c083ec54d5ab01131bcbc4b691e086d1c7041482d4b13f13900ed090a00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000" + "btc_change": 4999985766, + "btc_fee": 13234, + "rawtransaction": "020000000001019cc202bedc122198f6b12678a98dd90de2fa7fc318a6ff41d7a5bd3136885e0d000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "offer_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594673cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", + "data": "434e54525052545946a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", "btc_in": 4949918908, "btc_out": 0, - "btc_change": 4949904679, - "btc_fee": 14229, - "rawtransaction": "02000000000101251b7078facdaaee4f62c81bbcc41af8f0894b867d0ee39efe5d6943ae24cd73010000001600149c04699f9f9ef98a5ae8e028c2b8844f224bfac2ffffffff0200000000000000002b6a294b2a288c23e0f0926145c44efdcd2f292f01a591a8f76419989f5e17da6557468cc1a52e451039ae70278d0927010000001600149c04699f9f9ef98a5ae8e028c2b8844f224bfac202000000000000", + "btc_change": 4949904674, + "btc_fee": 14234, + "rawtransaction": "02000000000101f24a195a18e1da52602ddbbc13bfbffc31f4c874a5c8daf3d7c8e7e9208e35a901000000160014e62456afc0c558231e013678f81fb805ef35313dffffffff0200000000000000002b6a29ff4b8dea9e40339979dba3a76af618d3f083605b8b46113ccdd50ca4cbfebc8c8252de40ac151aa921228d092701000000160014e62456afc0c558231e013678f81fb805ef35313d02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", + "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", "status": "valid" } } @@ -4909,7 +4858,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4927,9 +4876,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986300, - "btc_fee": 13700, - "rawtransaction": "02000000000101651b571d30fe5f2a90d8e26fec83c78f6c4b6eddd987a114bebf629f08b6687600000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000226a20af69aa080104c5616d55a77c586fa83519edaf20872782c725322cde13d752cd7cbc052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999986295, + "btc_fee": 13705, + "rawtransaction": "02000000000101855a9a51c83577baa8d3f9ff9e61a9f3a1579351ff1657166f3c0ed000d4cd51000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000226a208f0307d7f1420e3684cf2424ae44beac95f89d514a977b3c3ff71b82d313124c77bc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4945,7 +4894,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4966,11 +4915,11 @@ }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949873899, + "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859611, - "btc_fee": 14288, - "rawtransaction": "02000000000101c8a64cdbaf95d0c8d72c9555b61b3eacea471da2b4b9a7cf4c83c3e7611095e6020000001600140113344d9a963143961fe97976f811a05209110fffffffff0200000000000000002c6a2a49a1a3deb794397490b34ee9f5596641151bdd5cf2274142b4441d79fd2928ca0f6ffd61adb807d8ed251bdd0827010000001600140113344d9a963143961fe97976f811a05209110f02000000000000", + "btc_change": 4949859506, + "btc_fee": 14293, + "rawtransaction": "020000000001012e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d02000000160014624b13a86be421eb76d68cecd83105881369410fffffffff0200000000000000002c6a2a2434d6006027eff29f2f1e426b10f2fef716b6f73d19ba8abdd55401e26a4412d8dcda666175cdda2ce6b2dc082701000000160014624b13a86be421eb76d68cecd83105881369410f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4992,7 +4941,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5000,7 +4949,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5017,9 +4966,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "020000000001016f31b371c0a7c36c6fd8dda6e102adad6843ce37a7453ce77ffd2d2db4861d2600000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000236a213d86e97ae7e9c78026137baef6f66e2b25282933fb585f4829c6906562344b3a3b42bc052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999986236, + "btc_fee": 13764, + "rawtransaction": "02000000000101cc98a969b4f945a78368d8916d2c7d9bee9d69749495cb1865445e64349c67c3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21815332422fbde6a1aea35c7ec44a180c434513f8fd7473e601d3b35729529266bb3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5036,10 +4985,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "transfer_destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "lock": false, "reset": false, @@ -5051,9 +5000,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983696, - "btc_fee": 15758, - "rawtransaction": "02000000000101f0f664147bad915a2e0e23c15cf701ec2efe3092b505988abc24f2a19114488100000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff032202000000000000160014521982e6e38b010fa2959ab665fe0566e12cd6820000000000000000236a21443c409a0f96f0ed7a070fbcb8ddd0dce4063aa88571258d11c06a4465363fb43c50b2052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999983690, + "btc_fee": 15764, + "rawtransaction": "02000000000101028f9389d6e5c7f90fc8b94881a272584c6434aa79be0428157e3069be230421000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000236a217abb78cb6e881cfbd0f8a7a0fdeb568fd4b9f25f44937be3585e3368045afa03a64ab2052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5078,16 +5027,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", 1 ], [ - "MPMASSET", - "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "FREEFAIRMINT", + "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", 2 ] ], @@ -5096,26 +5045,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280521982e6e38b010fa2959ab665fe0566e12cd682808d9488313bb9505f631340e5eea27a9d7655566940000005e36088c4d000000000000000240000000000000004000000000000000100", - "btc_in": 20000000000, + "data": "434e545250525459030002807b8d32180ac4c5c380d3d70e5121633b537a226480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd4012737f10d9927d5000000000000000240000000000000004000000000000000100", + "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 19999945317, - "btc_fee": 52683, - "rawtransaction": "020000000001045a57118b3283f658d9c5287f03e8f186ac2a2bdb3ba3863b12eeef72fdb62b5d00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffffc1ebb13bf78e408be898be96cc772472e5996a65eeafb7376511b0cd9395e88500000000160014521982e6e38b010fa2959ab665fe0566e12cd682fffffffff6967e4572eeddd7fd8a9cb11aaa7552ad74840e697cc6e19b5d3a95c2bd527b00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff2be7d6dbf6ece402b2d35ecfe31aaccbe5abd43d874f7696c456174b55dfa42d00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff03e8030000000000006951210224ee0a9a8154f64d71d89ddce1ae55df642b9fdfa6678a11a569f6377da2b3d42102ffaaa5507045744068bc58e5c1808cbe5c1fbf46a150f6c7f397a76944ec89c8210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253aee803000000000000695121033bee0a9a8154f64d710b9dde61fc4c5d82ec14dea9c51f8b130808321b439f9d2103292824dde4cd457bd1ec0786d2c06950fe652230f4069f87f397a28a24644dd6210213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f253ae65f216a804000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000002000002000002000000000000", + "btc_change": 4949785237, + "btc_fee": 20763, + "rawtransaction": "0200000000010122c3c583c72bdbe3f3f2ecf55416203822230d62a06d7e09fd540253679d456203000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcdffffffff03e803000000000000695121035d646b1cdc084e0a2e09bf0839ee5bb51b343a850f03ef6e25525a840609bd7f210368ead1e23823ce3b006f65565be8b4f378db74d1f042fd8f1f56c86aca3b1235210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053aee8030000000000006951210242646b1cdc084e0a2e5abf0ab995d687031afe40cc833cb92b077be73d5ac74721034a8e50486603073525acb6a3f4dad1cdf36a19f7bf6f30cf0d25b77a13a96f04210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053ae95ba072701000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd02000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { - "asset": "MPMASSET", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "asset": "FREEFAIRMINT", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5127,7 +5076,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5145,7 +5094,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5157,9 +5106,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985183, - "btc_fee": 14817, - "rawtransaction": "0200000000010146c455bf68073e12ba3a5588f66f2c82f48cfaebf374597d46c0bdf201c56a4700000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000356a33e01edb063920a8ec25f8a446b9e02ede6ca9b0dac83fba9c18cbb75483a1b86f7a45adba1907c699f2b1651b72165a89e02b081fb8052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985178, + "btc_fee": 14822, + "rawtransaction": "0200000000010149e6efe4ad0a8dd972f22d8ccc4164198fd959c30a8afb65fda68a861736f630000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000356a33a6e1e691f9fa705391f2df264dac2ac42ce78c0cd889f759fb725c65d61e1601b8f52ad2dee8dc8ceb3159594a681c216a5ec51ab8052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5181,8 +5130,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5199,19 +5148,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808d9488313bb9505f631340e5eea27a9d76555669", + "data": "434e54525052545902000000000000000100000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985477, - "btc_fee": 14523, - "rawtransaction": "020000000001013252b7217daacebae5db61b08859cd1439e826ec348ecac69b15b6680e8b51d400000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000306a2ef642087562c36e2da62e07ff8d850bb71aaac599686ca8e02283f1e29939e612ce82ae7f86b578e2c682565a51c145b9052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985472, + "btc_fee": 14528, + "rawtransaction": "0200000000010176adf4c96cdfb64fe7d8f3459b6991979152f66583c03ae446750c5efdc44233000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000306a2e6a8e01aff6e7de1d30cbc25f6e9b981676e8c633aa9dbb9dcc01c57c24ed8fd507f4d6d714a286e08b71c3c3118b40b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "quantity_normalized": "0.00001000" } @@ -5221,24 +5170,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904808d9488313bb9505f631340e5eea27a9d7655566907ffff", + "data": "434e5452505254590480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986242, - "btc_fee": 13758, - "rawtransaction": "020000000001013eeef476284e9053bbafbd64a0b32006600df631f43ffb02aab6c4f01b8a592200000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000236a213cc48a0bc48f5c19fe35e7ac74a871b2fcd9e4a4a56e820638ba4c611ef6dc806242bc052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999986236, + "btc_fee": 13764, + "rawtransaction": "020000000001017a417f3513fdd7dc612af97e0ee6db660d6003b94eadd0a6e4ae2edd258c56b3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21e8669fe856070345d5cd5fcfdb1622581aee9dd67b95cd3a8e3d9e857582969a0d3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "flags": 7, "memo": "ffff" } @@ -5248,18 +5197,18 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "quantity": 1000, "skip_validation": false }, "name": "dispense", "data": "434e5452505254590d00", - "btc_in": 4949828000, + "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4949812595, - "btc_fee": 14405, - "rawtransaction": "020000000001019a48e45d092873e83745dde822e1154b4a08da817ad0f576bf05e8215754df1e030000001600148d9488313bb9505f631340e5eea27a9d76555669ffffffff03e803000000000000160014c8f5115de862a59398869599a2052d29beae333000000000000000000c6a0aca1f64e3767bf3a2632473250827010000001600148d9488313bb9505f631340e5eea27a9d7655566902000000000000", + "btc_change": 4999984589, + "btc_fee": 14411, + "rawtransaction": "02000000000101962bc2a009c7f79714fc2d3941ea1042b3f037d12f73cdacacdc8c7efba6fd9c000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e803000000000000160014fa6b94743d53f5f6af69583dd022e460c5a7074c00000000000000000c6a0a511d742f0ea868b132cdcdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5272,7 +5221,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5302,9 +5251,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985418, - "btc_fee": 14582, - "rawtransaction": "02000000000101784bad7a91c5748f6f14e4bc7f90c09e7609f39ff5a619c18f289111bf98500600000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000316a2f2c4be5800e032c37a3dd3b21619ec00d530c5ee5a4c73da87f8f9e5d1ca2a5b026372f8f04208c8c0022a0ca4626900ab9052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999985413, + "btc_fee": 14587, + "rawtransaction": "02000000000101d43d7acc00907086c9aabd7fa6995838005e778649d7102aa4a6e2dd539e9158000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000316a2fda14fd26bd30d6a7615b945b6b0a69e79f5c0bc845df1dc9a75e66395ccd946396faa541d1cb2a413f9762aae8cd6305b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5339,14 +5288,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5356,9 +5305,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987006, - "btc_fee": 12994, - "rawtransaction": "0200000000010137f46b4c9b1e5b77ac64ce9fd45daa5092b28980c6a710c3e5f946fae56ddd3f00000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff020000000000000000166a14e14268c6e49b56a54d9a1018bd2c14281487dc443ebf052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999987001, + "btc_fee": 12999, + "rawtransaction": "0200000000010136c36c53b6c41332021f1a5bd09ce0db8cbdc1d19d098ae9752b5794ecf03d1f000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000166a14a4116968c44adf991436772cb5e7083da06eb40f39bf052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5373,7 +5322,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5391,9 +5340,9 @@ "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984578, - "btc_fee": 14876, - "rawtransaction": "02000000000101a92aa87b7c3b928543c5196f913987a2820c177c54346dbf7d277f2b2ec090c000000000160014521982e6e38b010fa2959ab665fe0566e12cd682ffffffff032202000000000000160014521982e6e38b010fa2959ab665fe0566e12cd6820000000000000000146a1268ec7ff530cbedd94fe0120fa543840cd02bc2b5052a01000000160014521982e6e38b010fa2959ab665fe0566e12cd68202000000000000", + "btc_change": 4999984573, + "btc_fee": 14881, + "rawtransaction": "0200000000010189acbc31f714a8230cef894e93178acb320d10506c4f2a8af2f5ef773bec22fe000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000146a12d19841328717b7e718064ed72456dd4845febdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5409,22 +5358,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713267766339656872337671736c6735346e326d78746c7339766d736a6534357a363576386676", + "data": "434e545250525459666263727431713077786e79787132636e7a753871786e367538397a6774723864666835676e79737439786a6c", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945423, - "btc_fee": 25577, - "rawtransaction": "02000000000102c8a64cdbaf95d0c8d72c9555b61b3eacea471da2b4b9a7cf4c83c3e7611095e600000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca4ffffffff2bc78dcf11a255ab48e68f38b61d870f0fb6fefbc20c2f1672e24638790f517001000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca4ffffffff020000000000000000376a3549a1a3deb7943974fad12d9b81681773736dbe65974f33722a356e159a1c1ca7d5028515c1cb3eaee456dbc71ddcd5a6281399f2714f2c0a2701000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca402000002000000000000", + "btc_change": 4949945413, + "btc_fee": 25587, + "rawtransaction": "020000000001022e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d000000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff473f290d82dad686230fef5b223c5e3da0436844f09c72f2210fb9e1010f3d02010000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff020000000000000000376a352434d6006027eff2f54d7d301f2183ce816ed88e456888ea3baf213993122a2745e4e31c0601bfe22c80b65e5004721d93539e5904452c0a27010000001600141ad1af8b95b1ea4881905a2154d06b313e97901f02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv" + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl" } } } @@ -5435,98 +5384,98 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 206, - "last_issuance_block_index": 206, + "first_issuance_block_index": 209, + "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730884548, - "last_issuance_block_time": 1730884548, + "first_issuance_block_time": 1730886581, + "last_issuance_block_time": 1730886581, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "owner": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "owner": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset", - "first_issuance_block_index": 201, - "last_issuance_block_index": 201, + "first_issuance_block_index": 204, + "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730884521, - "last_issuance_block_time": 1730884521, + "first_issuance_block_time": 1730886556, + "last_issuance_block_time": 1730886556, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 161, + "first_issuance_block_index": 162, + "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730884337, - "last_issuance_block_time": 1730884345, + "first_issuance_block_time": 1730886382, + "last_issuance_block_time": 1730886399, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "owner": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "issuer": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "owner": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 158, - "last_issuance_block_index": 158, + "first_issuance_block_index": 161, + "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730884334, - "last_issuance_block_time": 1730884334, + "first_issuance_block_time": 1730886377, + "last_issuance_block_time": 1730886377, "supply_normalized": "1000.00000000" }, { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, + "supply": 180, + "description": "", + "first_issuance_block_index": 157, + "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730884292, - "last_issuance_block_time": 1730884292, - "supply_normalized": "1000.00000000" + "first_issuance_block_time": 1730886352, + "last_issuance_block_time": 1730886370, + "supply_normalized": "0.00000180" } ], - "next_cursor": 5, - "result_count": 10 + "next_cursor": 6, + "result_count": 11 }, "/v2/assets/": { "result": { "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "owner": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false, "supply": 10000000000, @@ -5534,15 +5483,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730884168, - "last_issuance_block_time": 1730884179, + "first_issuance_block_time": 1730886221, + "last_issuance_block_time": 1730886232, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5550,14 +5499,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5565,7 +5514,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -5578,9 +5527,9 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "quantity": 82649965196, + "quantity": 82599965196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5590,7 +5539,7 @@ "divisible": true, "locked": true }, - "quantity_normalized": "826.49965000" + "quantity_normalized": "825.99965000" } ], "next_cursor": null, @@ -5599,10 +5548,10 @@ "/v2/assets//orders": { "result": [ { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5610,7 +5559,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -5619,7 +5568,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5646,10 +5595,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5657,7 +5606,7 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -5666,7 +5615,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5693,10 +5642,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5704,7 +5653,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -5713,7 +5662,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5740,10 +5689,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 61, - "tx_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "block_index": 210, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 64, + "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "block_index": 213, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5751,7 +5700,7 @@ "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 216, + "expire_index": 219, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -5760,7 +5709,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5787,10 +5736,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 53, - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 56, + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5798,7 +5747,7 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 208, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -5807,7 +5756,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5834,33 +5783,33 @@ "get_price_normalized": "1.0000000000000000" } ], - "next_cursor": 55, + "next_cursor": 58, "result_count": 7 }, "/v2/assets//matches": { "result": [ { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 210, + "tx0_block_index": 190, + "tx1_block_index": 192, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 212, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5880,27 +5829,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 53, - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 56, + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, + "tx0_block_index": 189, + "tx1_block_index": 190, + "block_index": 191, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 207, + "match_expire_index": 210, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5920,27 +5869,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4_0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx0_index": 50, - "tx0_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 51, - "tx1_hash": "0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx0_index": 53, + "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 54, + "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, + "tx0_block_index": 166, + "tx1_block_index": 167, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 184, + "match_expire_index": 187, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5960,27 +5909,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6006,21 +5955,21 @@ "/v2/assets//credits": { "result": [ { - "block_index": 196, - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "block_index": 199, + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "tx_index": 62, + "event": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_index": 65, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6028,20 +5977,20 @@ }, { "block_index": 125, - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "8a32dc1ad51b3b8957fe78069f393b38a03517fcc2daf6d1443ac453367ec67a", + "event": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6049,20 +5998,20 @@ }, { "block_index": 124, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6070,20 +6019,20 @@ }, { "block_index": 124, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "event": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6095,16 +6044,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6117,17 +6066,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 213, + "block_index": 216, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6138,17 +6087,17 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 211, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "block_index": 214, + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6159,17 +6108,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 210, - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "block_index": 213, + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "tx_index": 77, + "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6180,17 +6129,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 209, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 212, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "tx_index": 76, + "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6201,17 +6150,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 208, - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 211, + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "tx_index": 75, + "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6222,8 +6171,8 @@ "quantity_normalized": "0.00000010" } ], - "next_cursor": 63, - "result_count": 45 + "next_cursor": 64, + "result_count": 46 }, "/v2/assets//dividends": { "result": [], @@ -6234,14 +6183,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "8a32dc1ad51b3b8957fe78069f393b38a03517fcc2daf6d1443ac453367ec67a", + "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6256,20 +6205,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6284,20 +6233,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6312,20 +6261,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -6340,7 +6289,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730884168, + "block_time": 1730886221, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6351,11 +6300,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6363,7 +6312,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6375,11 +6324,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6387,7 +6336,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6399,11 +6348,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 77, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 80, + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6411,7 +6360,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6423,11 +6372,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 76, - "tx_hash": "cbae276ee3dd427d9cf64a81a4f693c3b817bc71332de0b0443b171a5a92f193", - "block_index": 209, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 79, + "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "block_index": 212, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6435,7 +6384,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884561, + "block_time": 1730886603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6447,11 +6396,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 75, - "tx_hash": "246b380c6e0c1b5cdaad155c72ea9ed08b1a89158a116e7e6b72c0c3bf271f05", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 78, + "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6459,7 +6408,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6478,9 +6427,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6489,7 +6438,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6500,7 +6449,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6517,9 +6466,9 @@ }, { "tx_index": 29, - "tx_hash": "b19c98b66aec1383b4fd070f0de012ec29a3c598dc62d10eac08cad28a606143", + "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", "block_index": 142, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6528,7 +6477,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6539,7 +6488,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884261, + "block_time": 1730886295, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6556,9 +6505,9 @@ }, { "tx_index": 30, - "tx_hash": "4d730de3a7dd1d36dc971868a9934b4710203325b59dc25bef79c237049ade8f", + "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", "block_index": 150, - "source": "musJjGf26KUkxLu8bL5eELQs8fhbi864yV", + "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6566,10 +6515,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "079fa58a39342ea9c86725f3f8238027d5581c73827dd5e0e70730d0957c569b", - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -6578,7 +6527,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884300, + "block_time": 1730886324, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6595,18 +6544,18 @@ }, { "tx_index": 33, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6617,7 +6566,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6639,9 +6588,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6650,7 +6599,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6661,7 +6610,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6690,7 +6639,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6698,7 +6647,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6707,7 +6656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6715,7 +6664,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6724,7 +6673,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6732,7 +6681,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6741,7 +6690,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -6754,29 +6703,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6791,7 +6740,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6805,27 +6754,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b10a78c83afac45375b074b4777b82d023d0a65c2f2b2022bf6e03c369af2557", + "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", "block_index": 147, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6840,7 +6789,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884289, + "block_time": 1730886314, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6854,19 +6803,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6874,7 +6823,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6889,7 +6838,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6903,19 +6852,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6923,7 +6872,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6938,7 +6887,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6954,17 +6903,35 @@ "result_count": 4 }, "/v2/assets//subassets": { - "result": [], + "result": [ + { + "asset": "A95428958968845068", + "asset_id": "95428958968845068", + "asset_longname": "MYASSETA.SUBMYASSETA", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 156, + "last_issuance_block_index": 156, + "confirmed": true, + "first_issuance_block_time": 1730886348, + "last_issuance_block_time": 1730886348, + "supply_normalized": "0.00000000" + } + ], "next_cursor": null, - "result_count": 0 + "result_count": 1 }, "/v2/assets//fairminters": { "result": [ { - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6989,7 +6956,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7007,22 +6974,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "8a32dc1ad51b3b8957fe78069f393b38a03517fcc2daf6d1443ac453367ec67a", + "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", "tx_index": 13, "block_index": 125, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884179, + "block_time": 1730886232, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7031,22 +6998,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0", + "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884176, + "block_time": 1730886228, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7055,22 +7022,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7085,22 +7052,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "0ba4ab70c6870164ffa0b48a2c2fa8d98872590869b6e9a5cfde74073a24c5cf", + "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884173, + "block_time": 1730886224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -7115,10 +7082,10 @@ "/v2/orders": { "result": [ { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7126,7 +7093,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7135,7 +7102,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7162,10 +7129,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 53, - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 56, + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7173,7 +7140,7 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 208, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7182,7 +7149,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7209,10 +7176,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7220,7 +7187,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7229,7 +7196,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7256,10 +7223,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7267,7 +7234,7 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7276,7 +7243,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7303,10 +7270,10 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 61, - "tx_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "block_index": 210, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 64, + "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "block_index": 213, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7314,7 +7281,7 @@ "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 216, + "expire_index": 219, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7323,7 +7290,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7350,15 +7317,15 @@ "get_price_normalized": "1.0000000000000000" } ], - "next_cursor": 55, + "next_cursor": 58, "result_count": 8 }, "/v2/orders/": { "result": { - "tx_index": 79, - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "tx_index": 82, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -7366,7 +7333,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 233, + "expire_index": 236, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7375,11 +7342,11 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730884584, + "block_time": 1730886624, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -7405,27 +7372,27 @@ "/v2/orders//matches": { "result": [ { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7451,16 +7418,16 @@ "/v2/orders//btcpays": { "result": [ { - "tx_index": 54, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 57, + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "btc_amount": 2000, - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", "status": "valid", "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "btc_amount_normalized": "0.00002000" } ], @@ -7470,10 +7437,10 @@ "/v2/orders//": { "result": [ { - "tx_index": 53, - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "block_index": 188, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_index": 56, + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "block_index": 191, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7481,7 +7448,7 @@ "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 208, + "expire_index": 211, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7491,7 +7458,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730884441, + "block_time": 1730886496, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7516,10 +7483,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 55, - "tx_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "block_index": 211, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 58, + "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "block_index": 214, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7527,7 +7494,7 @@ "get_quantity": 3000, "get_remaining": 2000, "expiration": 21, - "expire_index": 210, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7537,7 +7504,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730884580, + "block_time": 1730886620, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7562,10 +7529,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 50, - "tx_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "block_index": 185, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 53, + "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "block_index": 188, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7573,7 +7540,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 184, + "expire_index": 187, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7583,7 +7550,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884374, + "block_time": 1730886417, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7608,10 +7575,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "block_index": 208, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 55, + "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "block_index": 211, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7619,7 +7586,7 @@ "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 207, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7629,7 +7596,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884557, + "block_time": 1730886600, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7654,10 +7621,10 @@ "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 59, - "tx_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "block_index": 194, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 62, + "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "block_index": 197, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7665,7 +7632,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 217, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7675,7 +7642,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884485, + "block_time": 1730886529, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7700,36 +7667,36 @@ "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 61, + "next_cursor": 64, "result_count": 7 }, "/v2/orders///matches": { "result": [ { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 210, + "tx0_block_index": 190, + "tx1_block_index": 192, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 212, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7749,30 +7716,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 53, - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 56, + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, + "tx0_block_index": 189, + "tx1_block_index": 190, + "block_index": 191, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 207, + "match_expire_index": 210, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884441, + "block_time": 1730886496, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7792,30 +7759,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4_0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx0_index": 50, - "tx0_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 51, - "tx1_hash": "0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx0_index": 53, + "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 54, + "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, + "tx0_block_index": 166, + "tx1_block_index": 167, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 184, + "match_expire_index": 187, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884374, + "block_time": 1730886417, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7835,30 +7802,30 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7884,27 +7851,27 @@ "/v2/order_matches": { "result": [ { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 187, - "tx1_block_index": 189, - "block_index": 210, + "tx0_block_index": 190, + "tx1_block_index": 192, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 209, + "match_expire_index": 212, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7924,27 +7891,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx0_index": 52, - "tx0_hash": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 53, - "tx1_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_index": 55, + "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 56, + "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 186, - "tx1_block_index": 187, - "block_index": 188, + "tx0_block_index": 189, + "tx1_block_index": 190, + "block_index": 191, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 207, + "match_expire_index": 210, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730884441, + "block_time": 1730886496, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7964,27 +7931,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4_0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx0_index": 50, - "tx0_hash": "de2cb08ef3851f867bf3c83eda6ee8808e8380df40496e14da7f6f5c71343ea4", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 51, - "tx1_hash": "0618a41cafb06ee5c19962f6ff0f72fc65e8fdba28c740ec819304f7ad41b8cb", - "tx1_address": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx0_index": 53, + "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 54, + "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 163, - "tx1_block_index": 164, - "block_index": 185, + "tx0_block_index": 166, + "tx1_block_index": 167, + "block_index": 188, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 184, + "match_expire_index": 187, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730884374, + "block_time": 1730886417, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8004,27 +7971,27 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_index": 61, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_index": 55, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_index": 64, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_index": 58, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 195, - "tx1_block_index": 210, - "block_index": 210, + "tx0_block_index": 198, + "tx1_block_index": 213, + "block_index": 213, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 230, + "match_expire_index": 233, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730884566, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8069,66 +8036,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "2cf83eb06925ce9353c6448d088541d61a2060e223248e4cab9f7dd40350df54", + "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", "block_index": 121, - "source": "bcrt1qtj558eqjpr8535ds772a9zv4xasuydnrkh3nj8", + "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730884165, + "block_time": 1730886217, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "e132ce71781e6d25b59b326b93b4ed152fb613acd1b5b07e749f5d7aa457e16c", + "tx_hash": "ee366d303008de29c1f29cdff882b519245f6652ddfe99ddc933e610beda5115", "block_index": 120, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730884162, + "block_time": 1730886214, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3a7d725a11f7077cfbd63c52bcb3d44e9bf0079af822d57e47a6c4909765cc93", + "tx_hash": "43da716b1f2f1e00880372cb84be2a52dfa70aa764de4564d5e265d2364c2c8d", "block_index": 119, - "source": "bcrt1qp0cl8tfjzm73nqjqyesegsyg8cyvax0gd774jq", + "source": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730884157, + "block_time": 1730886211, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "39ba748e3545a57c321bcbe989dc54f8ebd8b7fbec06601cf1ae0e7d46071d00", + "tx_hash": "382b4c27437eab49985a9e81ecf9f3ece4477debd0ac690ed8a979ad3471a47d", "block_index": 118, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730884153, + "block_time": 1730886207, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "53d49574b60ce1b2ffd0869314db42a4abb3a56fb13d0de46a8d231c985e71e2", + "tx_hash": "c2b948594d283e13dc4281672b2b78d7ff522fcc711344881a19de5b805a5600", "block_index": 117, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730884150, + "block_time": 1730886203, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8140,9 +8107,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8151,7 +8118,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8162,7 +8129,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8179,9 +8146,9 @@ }, { "tx_index": 29, - "tx_hash": "b19c98b66aec1383b4fd070f0de012ec29a3c598dc62d10eac08cad28a606143", + "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", "block_index": 142, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8190,7 +8157,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8201,7 +8168,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884261, + "block_time": 1730886295, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8218,9 +8185,9 @@ }, { "tx_index": 30, - "tx_hash": "4d730de3a7dd1d36dc971868a9934b4710203325b59dc25bef79c237049ade8f", + "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", "block_index": 150, - "source": "musJjGf26KUkxLu8bL5eELQs8fhbi864yV", + "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8228,10 +8195,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "079fa58a39342ea9c86725f3f8238027d5581c73827dd5e0e70730d0957c569b", - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -8240,7 +8207,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884300, + "block_time": 1730886324, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8256,10 +8223,10 @@ "price_normalized": "1.0000000000000000" }, { - "tx_index": 65, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8268,7 +8235,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8279,11 +8246,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8296,18 +8263,18 @@ }, { "tx_index": 33, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8318,7 +8285,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8340,9 +8307,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8351,7 +8318,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8362,7 +8329,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8383,19 +8350,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8403,7 +8370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8418,7 +8385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8432,19 +8399,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8452,7 +8419,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8467,7 +8434,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8486,20 +8453,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8520,20 +8487,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8556,12 +8523,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "event": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "tx_index": 42, - "utxo": "c85d83e1af288f8dd89f0d23045b28e8212a5bc157bb962fcf4417029a7dd7ca:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "utxo": "3264140a2e7efabf03b12425c19a3dadb411458ec26c4bc3e8d1db42758660ef:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "confirmed": true, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8578,47 +8545,47 @@ "/v2/events": { "result": [ { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8629,20 +8596,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8652,24 +8619,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8679,29 +8646,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 710, - "result_count": 716 + "next_cursor": 733, + "result_count": 739 }, "/v2/events/": { "result": { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 } }, "/v2/events/counts": { @@ -8712,7 +8679,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 66 + "event_count": 69 }, { "event": "SWEEP", @@ -8733,19 +8700,19 @@ "/v2/events/": { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8755,24 +8722,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 709, + "event_index": 732, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8782,51 +8749,51 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 706, + "event_index": 729, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 213, + "block_index": 216, "calling_function": "utxo move", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", - "utxo_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 }, { - "event_index": 688, + "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", - "block_index": 211, + "block_index": 214, "calling_function": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", "quantity": 10, - "tx_index": 78, + "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8836,73 +8803,73 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 }, { - "event_index": 687, + "event_index": 710, "event": "CREDIT", "params": { - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", - "block_index": 211, + "block_index": 214, "calling_function": "mpma send", - "event": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", + "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", "quantity": 10, - "tx_index": 78, + "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 686, - "result_count": 94 + "next_cursor": 709, + "result_count": 96 }, "/v2/events//count": { "result": { "event": "CREDIT", - "event_count": 94 + "event_count": 96 } }, "/v2/dispenses": { "result": [ { - "tx_index": 80, + "tx_index": 83, "dispense_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8917,7 +8884,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8929,21 +8896,21 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 66, + "tx_index": 69, "dispense_index": 0, - "tx_hash": "079248fd9ba418bc64f8e772a7366e8c73e70c22e46c570fba89ed16e7162044", - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", + "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", "btc_amount": 4000, "confirmed": true, "dispenser": { - "tx_index": 65, - "block_index": 200, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 68, + "block_index": 203, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8951,7 +8918,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8966,11 +8933,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884518, + "block_time": 1730886552, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -8980,27 +8947,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b10a78c83afac45375b074b4777b82d023d0a65c2f2b2022bf6e03c369af2557", + "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", "block_index": 147, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 213, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "block_index": 216, + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "last_status_tx_hash": null, - "origin": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9015,7 +8982,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730884289, + "block_time": 1730886314, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9029,19 +8996,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "9e11343e701d4e2574b4ac9f0f4400ba93e2c4b8e83220fac350c21b93ed996d", + "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9049,7 +9016,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9064,7 +9031,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884258, + "block_time": 1730886291, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9078,19 +9045,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "00d94a7533b0a038b28c48af781f576420f6a1ba68701315817b67a8c16ad6a7", + "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", "block_index": 140, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "90a517d1552db9916172753403f3a88b5c4db78e03a4ea59495f7fe7b5dff75c", + "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9098,7 +9065,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9113,7 +9080,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730884244, + "block_time": 1730886288, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9131,11 +9098,11 @@ "/v2/sends": { "result": [ { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9143,7 +9110,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9155,11 +9122,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 80, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "tx_index": 83, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9167,11 +9134,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -9179,11 +9146,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9191,7 +9158,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9203,11 +9170,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9215,11 +9182,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -9227,11 +9194,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 78, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "tx_index": 81, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9239,11 +9206,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730884580, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -9257,15 +9224,15 @@ "/v2/issuances": { "result": [ { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -9280,20 +9247,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 67, - "tx_hash": "9e75231d5f8275c8af6174e614581b83567fd0bcdac653f9a054c4497ca1104a", + "tx_index": 70, + "tx_hash": "c622762c16349bf83423fcf478e846bfbad4ee4593c4f81368e9c543ef2e3863", "msg_index": 0, - "block_index": 201, + "block_index": 204, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "transfer": false, "callable": false, "call_date": 0, @@ -9308,20 +9275,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884521, + "block_time": 1730886556, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 49, - "tx_hash": "a42d2425d18af16891bd75fcefcf1bc9223a35992a141ad062c7086e05e2a44b", + "tx_index": 52, + "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", "msg_index": 0, - "block_index": 162, + "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -9336,20 +9303,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884359, + "block_time": 1730886403, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 48, - "tx_hash": "da7da4ce78f62e11147f389e27d94992144cba270d071d149c9849c186dffdbd", + "tx_index": 51, + "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", "msg_index": 0, - "block_index": 161, + "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -9364,20 +9331,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730884345, + "block_time": 1730886399, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 47, - "tx_hash": "120efaaa0ada277ed8b31fe5e87d88984582a2c951d67e1575917ad6af9e6bb8", + "tx_index": 50, + "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", "msg_index": 0, - "block_index": 160, + "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -9392,25 +9359,25 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884341, + "block_time": 1730886395, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 19, - "result_count": 24 + "next_cursor": 22, + "result_count": 27 }, "/v2/issuances/": { "result": { - "tx_index": 73, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", + "tx_index": 76, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", "msg_index": 0, - "block_index": 206, + "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "transfer": false, "callable": false, "call_date": 0, @@ -9425,7 +9392,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730884548, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9433,17 +9400,17 @@ "/v2/sweeps": { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -9453,17 +9420,17 @@ "/v2/sweeps/": { "result": [ { - "tx_index": 62, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "tx_index": 65, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730884492, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" } ], @@ -9474,9 +9441,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9484,14 +9451,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884237, + "block_time": 1730886280, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "42413c788d4f9a82101b9dcca95f7f6c9c0bc2968709805b1d87af2feed82ae6", + "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", "block_index": 137, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9499,7 +9466,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884233, + "block_time": 1730886277, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9509,9 +9476,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9519,17 +9486,57 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730884237, + "block_time": 1730886280, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, + "burn_payment": false, + "max_mint_per_tx": 100, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, + "confirmed": true, + "block_time": 1730886370, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", "tx_index": 43, "block_index": 156, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9554,7 +9561,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730884325, + "block_time": 1730886348, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9563,10 +9570,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", + "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9591,7 +9598,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730884227, + "block_time": 1730886271, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9603,10 +9610,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9631,7 +9638,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730884202, + "block_time": 1730886255, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9643,10 +9650,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", + "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9671,7 +9678,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730884198, + "block_time": 1730886251, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9681,240 +9688,200 @@ "earned_quantity_normalized": "3.00000000", "commission_normalized": "0.00000000", "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "bbf19f6fc5cc349435220909c455d6de775a3cd5912ee93b74651d36ecbdb85f", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730884179, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" } ], - "next_cursor": null, - "result_count": 5 + "next_cursor": 1, + "result_count": 6 }, "/v2/fairmints": { "result": [ { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "83fa2be461c4f9b9f9dc3d50241a983329b37dfebaa45fa191e3e5523821640b", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, + "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_index": 45, + "block_index": 158, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884224, + "block_time": 1730886356, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000011", + "earn_quantity_normalized": "0.00000100", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "67e671625a4abfb4c58b66d343202e1e659f8b9dfa929db9a98777ac6841a616", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, + "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884209, + "block_time": 1730886274, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000003", + "earn_quantity_normalized": "0.00000040", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" + "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9d8a5440390fe51170b1722012a8222105d65e1300aa7a8eb482cb8911eb6c8e", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "78c4ad51c91d9d70465280e9b6836d07b44e1f6c2694b2f36d255a8b169de075", + "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, + "earn_quantity": 11, + "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884205, + "block_time": 1730886266, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000005", + "earn_quantity_normalized": "0.00000011", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" + "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f374aad6a7436f193367fccc78c8887e010b7ffa02813dec06aa9c7479e670c9", - "tx_index": 17, - "block_index": 129, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "fairminter_tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, + "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884194, + "block_time": 1730886262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "1.00000000", + "earn_quantity_normalized": "0.00000003", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" + "paid_quantity_normalized": "0.00000001" } ], - "next_cursor": 5, - "result_count": 10 + "next_cursor": 7, + "result_count": 12 }, "/v2/fairmints/": { "result": { - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_index": 159, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730884230, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" } }, "/v2/bitcoin/addresses/utxos": { "result": [ { "vout": 1, - "height": 212, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "address": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3" - }, - { - "vout": 1, - "height": 204, + "height": 207, "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "address": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3" + "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" }, { "vout": 0, - "height": 205, + "height": 208, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "address": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3" + "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" + }, + { + "vout": 1, + "height": 215, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" }, { "vout": 2, - "height": 158, + "height": 161, "value": 100000, "confirmations": 56, "amount": 0.001, - "txid": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01", - "address": "bcrt1qp0cl8tfjzm73nqjqyesegsyg8cyvax0gd774jq" + "txid": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5", + "address": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd" } ], "next_cursor": null, @@ -9923,28 +9890,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b" + "tx_hash": "4519f82c1ed3f7e2dcaaa3bcb580feeddc5efbb4d2946ac38b795c6acc4c4412" }, { - "tx_hash": "cd4ea5b373f9cf69f311def971a04444010d724d71cd2767879cbf62f39f394d" + "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316" }, { - "tx_hash": "2b6b82359bd52c44411cbfce21224a3b0fd3bd953268e8bb3081b1b5d8a9d45f" + "tx_hash": "a239b17588ee52999d0c52eea7813185ab36a70effba05497ed3726f1b687443" }, { - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2" + "tx_hash": "dc66355d306b60dbac5b6bdb4a8141fc1f11648a8c34955d58006d97f31e6e5e" }, { - "tx_hash": "494c40a60a301a88615defff96a23264c1d47cad0a12dd58c47d3a35e37bfbaf" + "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" }, { - "tx_hash": "595242d79a60adf444c8706fa8d2176871f4dcb7e1bcae6687e462c9b87138b0" + "tx_hash": "f5067f400bf33532ca6ab0094d0442388ba5829806f5db9a41717901c2dc1a91" }, { - "tx_hash": "4fda4b0b773b35d332bc78585eb44c353f47af14788a24f73992c2c60d92bbd8" + "tx_hash": "45e8de234c0b52f86d33cde23aa9fbe52cecfc84782be3df834740f29b0499bd" }, { - "tx_hash": "5f5fa37c7cba435f0d43074b148c6bc3762e2a4b1f15778dd3592f622fbfcfe0" + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6" } ], "next_cursor": null, @@ -9952,48 +9919,48 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "62a108830ec162aecd5861dc453f933dc3913ab54d2a0ce1d1906004bb698b30" + "block_index": 3, + "tx_hash": "33f637d86afc199db09906ca7a57f29604a0b40ca1b07d04ac857586311997e1" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 1, - "height": 204, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578" - }, { "vout": 0, - "height": 205, + "height": 208, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5" + "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8" }, { "vout": 1, - "height": 212, + "height": 215, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25" + "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2" + }, + { + "vout": 1, + "height": 207, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0213f5dd1a5d6871990f1984fcb7367a4d98e3e629920cbb0becc8dd78645e70f2" + "result": "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010101cc03cd337b79abb8faa68fc458c42c928752b84c7a3ac0561772610ed5d33d0100000000ffffffff03e803000000000000160014d9ab14b48c06db2654fc1f7a6d12ab8524358ca400000000000000000c6a0acc5397c4d33e3423ccddeb140927010000001600140113344d9a963143961fe97976f811a05209110f0247304402206117b81977d24ac63130afce5d2eb91e0e8c5f45ee665f46b931f92569f73d2102207955ee179585f3eb635997e43ffc20b72feb8d25a4ffdf7ca75a030af5fa347901210250ff69bbbd0d1e2f8969ba419acba230a689b686ff914f76f59053ce6ed7eb3500000000" + "result": "02000000000101a5f42e5f80961ac262d40fc73ba5463a008993b619f90e68ef7c67795471b3360100000000ffffffff03e8030000000000001600141ad1af8b95b1ea4881905a2154d06b313e97901f00000000000000000c6a0aa17405a4003cc1c6497c8714092701000000160014624b13a86be421eb76d68cecd83105881369410f024730440220549d14d47b716b826b9afc9d6f2bf1d46e947ae886a30735a453dd5e6736966002205a8b25282e7ef5a4317e11dccb08ef9b6bb31fe8ea44356c41a1648df326dab2012103cd47bca279d06d3537c8bfadd50f781929f898ce7088fbb462156577a96079f700000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58799 + "result": 58821 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -10013,28 +9980,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81 + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84 }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "quantity": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10044,22 +10011,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10069,22 +10036,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", - "block_index": 213, - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "block_index": 216, + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10094,30 +10061,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730884602.200858, + "block_time": 1730886641.799628, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "destination": "", "fee": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, - "utxos_info": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61:1 2 ", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, + "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -10131,7 +10098,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -10140,19 +10107,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10162,7 +10129,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -10171,28 +10138,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81 + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84 }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "quantity": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10202,22 +10169,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "CREDIT", "params": { - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "send", - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10227,22 +10194,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "asset": "XCP", - "block_index": 213, - "event": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "block_index": 216, + "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "quantity": 10000, - "tx_index": 81, + "tx_index": 84, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10252,30 +10219,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 }, { - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730884602.200858, + "block_time": 1730886641.799628, "btc_amount": 0, - "data": "0200000000000000010000000000002710806b85beb3c34b19792d9e18e41cd34a048bf8d511", + "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", "destination": "", "fee": 10000, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", - "tx_hash": "386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61", - "tx_index": 81, - "utxos_info": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5:1 386516b5cc521f66dfce3e80b6a04d945fb45e8c673ac48720548f6454aefc61:1 2 ", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_index": 84, + "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "memo": null, "asset_info": { "asset_longname": null, @@ -10289,7 +10256,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730884602.200858 + "timestamp": 1730886641.799628 } ], "next_cursor": null, @@ -10308,40 +10275,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 702, + "event_index": 725, "event": "NEW_BLOCK", "params": { - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_index": 213, - "block_time": 1730884598, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_index": 216, + "block_time": 1730886637, "difficulty": 545259519, - "previous_block_hash": "21204ae726a83514f05cc15b079bfb26bd010b0d9f3d7dedd5e7e78201a16108" + "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427" }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 696, - "result_count": 113 + "next_cursor": 719, + "result_count": 116 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 703, + "event_index": 726, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4a35840249a86fb40ce09b681e17042b93876aab67d6dee7a0295d019424d946", - "block_index": 213, - "block_time": 1730884598, + "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", + "block_index": 216, + "block_time": 1730886637, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "fee": 0, - "source": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "utxos_info": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1 e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0 3 1", + "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10351,92 +10318,92 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 697, - "result_count": 81 + "next_cursor": 720, + "result_count": 84 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 704, + "event_index": 727, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "out_index": 0, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 574, + "next_cursor": 597, "result_count": 5 }, "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 715, + "event_index": 738, "event": "BLOCK_PARSED", "params": { - "block_index": 213, - "ledger_hash": "3ecb6aa93ff0bc60c65691c08afeee7ad9d8276f18bd0da8aef85748e99d16a3", - "messages_hash": "6d2e11db7f650a2110248de9f4f854044a17ad80943399781aac7d394c620064", + "block_index": 216, + "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", + "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", "transaction_count": 1, - "txlist_hash": "e3f8e562491c7554d1a54408214b38fdf7497a5623677cb80af6243e34682809", - "block_time": 1730884598 + "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", + "block_time": 1730886637 }, "tx_hash": null, - "block_index": 213, - "block_time": 1730884598 + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 701, - "result_count": 113 + "next_cursor": 724, + "result_count": 116 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 714, + "event_index": 737, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83 }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 700, - "result_count": 66 + "next_cursor": 723, + "result_count": 69 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 708, + "event_index": 731, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 213, - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "block_index": 216, + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 2000000000, - "tx_index": 80, - "utxo": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", - "utxo_address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", - "block_time": 1730884598, + "tx_index": 83, + "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10446,30 +10413,30 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 705, - "result_count": 75 + "next_cursor": 728, + "result_count": 76 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 711, + "event_index": 734, "event": "CREDIT", "params": { - "address": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "asset": "XCP", - "block_index": 213, + "block_index": 216, "calling_function": "dispense", - "event": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", + "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", "quantity": 66, - "tx_index": 80, + "tx_index": 83, "utxo": null, "utxo_address": null, - "block_time": 1730884598, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10479,64 +10446,64 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 709, - "result_count": 94 + "next_cursor": 732, + "result_count": 96 }, "/v2/events/ENHANCED_SEND": { "result": [ { - "event_index": 633, + "event_index": 656, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 207, - "destination": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "block_index": 210, + "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "memo": null, "quantity": 1000, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "tx_index": 74, - "block_time": 1730884553, + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_index": 77, + "block_time": 1730886595, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b1d512c111c75900bc8fdabc7e0dee7a18e65a86d324caff0e3b582aabdb5f83", - "block_index": 207, - "block_time": 1730884553 + "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "block_index": 210, + "block_time": 1730886595 } ], - "next_cursor": 510, + "next_cursor": 533, "result_count": 3 }, "/v2/events/MPMA_SEND": { "result": [ { - "event_index": 693, + "event_index": 716, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 211, - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 214, + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "tx_index": 78, - "block_time": 1730884580, + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_index": 81, + "block_time": 1730886620, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10546,12 +10513,12 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 692, + "next_cursor": 715, "result_count": 15 }, "/v2/events/SEND": { @@ -10567,24 +10534,24 @@ "/v2/events/SWEEP": { "result": [ { - "event_index": 553, + "event_index": 576, "event": "SWEEP", "params": { - "block_index": 196, - "destination": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "block_index": 199, + "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", "status": "valid", - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "tx_index": 62, - "block_time": 1730884492, + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_index": 65, + "block_time": 1730886537, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "33cf9c1f53a9ace7801c95c45bfc7b21b5aed0b298c4bec57820f3f7b913fda2", - "block_index": 196, - "block_time": 1730884492 + "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "block_index": 199, + "block_time": 1730886537 } ], "next_cursor": null, @@ -10601,15 +10568,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "tx_index": 42, - "block_time": 1730884321, + "block_time": 1730886343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -10623,9 +10590,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1981f2e9bb2634cf3b04fe5a26527c15ebeb0d4dc24576361a8e3e215e885bab", + "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", "block_index": 155, - "block_time": 1730884321 + "block_time": 1730886343 } ], "next_cursor": null, @@ -10639,33 +10606,33 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 624, + "event_index": 647, "event": "ASSET_CREATION", "params": { "asset_id": "101158363923", "asset_longname": null, "asset_name": "MPMASSET", - "block_index": 206, - "block_time": 1730884548 + "block_index": 209, + "block_time": 1730886581 }, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_time": 1730884548 + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_time": 1730886581 } ], - "next_cursor": 583, - "result_count": 12 + "next_cursor": 606, + "result_count": 13 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 625, + "event_index": 648, "event": "ASSET_ISSUANCE", "params": { "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 206, + "block_index": 209, "call_date": 0, "call_price": 0.0, "callable": false, @@ -10673,42 +10640,42 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", "transfer": false, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "tx_index": 73, - "block_time": 1730884548, + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 76, + "block_time": 1730886581, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "9bf5b6c6fd67f490c8ac6d956e3d479ade5ed39595a5e7cdbe9eb1e90fbfe805", - "block_index": 206, - "block_time": 1730884548 + "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "block_index": 209, + "block_time": 1730886581 } ], - "next_cursor": 584, - "result_count": 24 + "next_cursor": 607, + "result_count": 27 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ { - "event_index": 559, + "event_index": 582, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 197, + "block_index": 200, "quantity": 1, - "source": "bcrt1qer63zh0gv2je8xyxjkv6ypfd9xl2uvesfxxywr", + "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "tx_index": 63, - "block_time": 1730884496, + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_index": 66, + "block_time": 1730886540, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10718,9 +10685,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "93bdf11f67584f26ba1b95abb245749959bf6020a289ef3f4bf28cd1419b2dd5", - "block_index": 197, - "block_time": 1730884496 + "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "block_index": 200, + "block_time": 1730886540 } ], "next_cursor": 157, @@ -10729,12 +10696,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 699, + "event_index": 722, "event": "OPEN_ORDER", "params": { - "block_index": 212, + "block_index": 215, "expiration": 21, - "expire_index": 233, + "expire_index": 236, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10745,15 +10712,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "status": "open", - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "tx_index": 79, - "block_time": 1730884584, + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "tx_index": 82, + "block_time": 1730886624, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, @@ -10773,40 +10740,40 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "73cd24ae43695dfe9ee30e7d864b89f0f81ac4bc1bc8624feeaacdfa78701b25", - "block_index": 212, - "block_time": 1730884584 + "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "block_index": 215, + "block_time": 1730886624 } ], - "next_cursor": 541, + "next_cursor": 564, "result_count": 8 }, "/v2/events/ORDER_MATCH": { "result": [ { - "event_index": 671, + "event_index": 694, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 210, + "block_index": 213, "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "match_expire_index": 230, + "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "match_expire_index": 233, "status": "pending", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx0_block_index": 195, + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_block_index": 198, "tx0_expiration": 21, - "tx0_hash": "2a4bb8fd5563fb662de7c2886262a1d516bf000a51a98b4cfbd65d1d617ea3dc", - "tx0_index": 61, - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "tx1_block_index": 210, + "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_index": 64, + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_block_index": 213, "tx1_expiration": 21, - "tx1_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx1_index": 55, - "block_time": 1730884566, + "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_index": 58, + "block_time": 1730886606, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10825,43 +10792,43 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_time": 1730884566 + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_time": 1730886606 } ], - "next_cursor": 498, + "next_cursor": 521, "result_count": 4 }, "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 684, + "event_index": 707, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b" + "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 670, + "next_cursor": 693, "result_count": 16 }, "/v2/events/ORDER_FILLED": { "result": [ { - "event_index": 489, + "event_index": 512, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387" + "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b" }, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "block_time": 1730884441 + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "block_time": 1730886496 } ], "next_cursor": null, @@ -10870,41 +10837,41 @@ "/v2/events/ORDER_MATCH_UPDATE": { "result": [ { - "event_index": 665, + "event_index": 688, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", + "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", "status": "expired" }, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_time": 1730884566 + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_time": 1730886606 } ], - "next_cursor": 488, + "next_cursor": 511, "result_count": 3 }, "/v2/events/BTC_PAY": { "result": [ { - "event_index": 490, + "event_index": 513, "event": "BTC_PAY", "params": { - "block_index": 188, + "block_index": 191, "btc_amount": 2000, - "destination": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_f5b3bd62d35831981208ff9d81b34ce410124ba04f89379e4e1305a5a6572387", - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "tx_index": 54, - "block_time": 1730884441, + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_index": 57, + "block_time": 1730886496, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "5d3d2885a454317ca995db338eb88044e269f28789cb5e5446053c8674598f8a", - "block_index": 188, - "block_time": 1730884441 + "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "block_index": 191, + "block_time": 1730886496 } ], "next_cursor": null, @@ -10913,20 +10880,20 @@ "/v2/events/CANCEL_ORDER": { "result": [ { - "event_index": 535, + "event_index": 558, "event": "CANCEL_ORDER", "params": { - "block_index": 194, - "offer_hash": "62b902b98e61d946c585823d8e4f609dcdaa701b4261da35306ee58b4086c2f2", - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "block_index": 197, + "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": "valid", - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "tx_index": 60, - "block_time": 1730884485 + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_index": 63, + "block_time": 1730886529 }, - "tx_hash": "4623468f25fc8669459c0b654694561bfa520c791528aba5883164c64e55915b", - "block_index": 194, - "block_time": 1730884485 + "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "block_index": 197, + "block_time": 1730886529 } ], "next_cursor": null, @@ -10935,66 +10902,66 @@ "/v2/events/ORDER_EXPIRATION": { "result": [ { - "event_index": 685, + "event_index": 708, "event": "ORDER_EXPIRATION", "params": { - "block_index": 211, - "order_hash": "8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "source": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "block_time": 1730884580 + "block_index": 214, + "order_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "block_time": 1730886620 }, - "tx_hash": "1edf545721e805bf76f5d07a81da084a4b15e122e8dd4537e87328095de4489a", - "block_index": 211, - "block_time": 1730884580 + "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "block_index": 214, + "block_time": 1730886620 } ], - "next_cursor": 640, + "next_cursor": 663, "result_count": 4 }, "/v2/events/ORDER_MATCH_EXPIRATION": { "result": [ { - "event_index": 668, + "event_index": 691, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 210, - "order_match_id": "cbb3ba621afed47ee387e9e4c7120bc6dbba56b241699a0e3d7e5f58c6ef3dea_8641fa5417577ff2833ba265ddb06a384d0b677c7692d3b39f17df63c070b14b", - "tx0_address": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx1_address": "bcrt1qdwzmav7rfvvhjtv7rrjpe562qj9l34g38y5dxx", - "block_time": 1730884566 + "block_index": 213, + "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "block_time": 1730886606 }, - "tx_hash": "89c858213b27b00cc75962a55b591f725d7f0b1d558db9c225b50311fd40138b", - "block_index": 210, - "block_time": 1730884566 + "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "block_index": 213, + "block_time": 1730886606 } ], - "next_cursor": 464, + "next_cursor": 487, "result_count": 2 }, "/v2/events/OPEN_DISPENSER": { "result": [ { - "event_index": 569, + "event_index": 592, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 199, + "block_index": 202, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "satoshirate": 1, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "status": 0, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "tx_index": 65, - "block_time": 1730884513, + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_index": 68, + "block_time": 1730886548, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, @@ -11003,9 +10970,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "2967d3f36a11c318b4b661fa715a5bc9a7e78fe622e8b5525db8f58e7fd2c957", - "block_index": 199, - "block_time": 1730884513 + "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "block_index": 202, + "block_time": 1730886548 } ], "next_cursor": 272, @@ -11014,15 +10981,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 712, + "event_index": 735, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": 0, - "tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", + "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11032,12 +10999,12 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 576, + "next_cursor": 599, "result_count": 8 }, "/v2/events/REFILL_DISPENSER": { @@ -11048,13 +11015,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "musJjGf26KUkxLu8bL5eELQs8fhbi864yV", + "destination": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", "dispense_quantity": 10, - "dispenser_tx_hash": "4d730de3a7dd1d36dc971868a9934b4710203325b59dc25bef79c237049ade8f", - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", - "tx_hash": "0f833e31d6ecc289070b94e36cb21ee568c8b66706a9dbc124d22147217238e8", + "dispenser_tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", "tx_index": 31, - "block_time": 1730884279, + "block_time": 1730886302, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11064,9 +11031,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "0f833e31d6ecc289070b94e36cb21ee568c8b66706a9dbc124d22147217238e8", + "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", "block_index": 144, - "block_time": 1730884279 + "block_time": 1730886302 } ], "next_cursor": null, @@ -11075,20 +11042,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 713, + "event_index": 736, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 213, + "block_index": 216, "btc_amount": 1000, - "destination": "bcrt1qqyfngnv6jcc589sla9uhd7q35pfqjyg078z7l6", + "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "70510f793846e272162f0cc2fbfeb60f0f871db6388fe648ab55a211cf8dc72b", - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11099,12 +11066,12 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 577, + "next_cursor": 600, "result_count": 5 }, "/v2/events/BROADCAST": { @@ -11116,19 +11083,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmx43fdyvqmdjv48uraax6y4ts5jrtr9y2chwm8", + "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "tx_index": 25, "value": 66600.0, - "block_time": 1730884237, + "block_time": 1730886280, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "51e69a9e6a52fcdbf31f73a6de1ed24393e04ce04e776780759daffbfe86f6a0", + "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", "block_index": 138, - "block_time": 1730884237 + "block_time": 1730886280 } ], "next_cursor": 213, @@ -11137,167 +11104,167 @@ "/v2/events/NEW_FAIRMINTER": { "result": [ { - "event_index": 349, + "event_index": 356, "event": "NEW_FAIRMINTER", "params": { - "asset": "A95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "asset_parent": "MYASSETA", - "block_index": 156, + "asset": "FREEFAIRMINT", + "asset_longname": "", + "asset_parent": "", + "block_index": 157, "burn_payment": false, "description": "", "divisible": true, "end_block": 0, - "hard_cap": 0, + "hard_cap": 180, "lock_description": false, "lock_quantity": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "minted_asset_commission_int": 0, "pre_minted": false, "premint_quantity": 0, - "price": 1, - "quantity_by_price": 5, + "price": 0, + "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "start_block": 0, "status": "open", - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", - "tx_index": 43, - "block_time": 1730884325, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_index": 44, + "block_time": 1730886352, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "8d341aa47a64aa27b6c6bfde291ef4e71638253f92ee8cdb836b4baa92ef4bb0", - "block_index": 156, - "block_time": 1730884325 + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "block_index": 157, + "block_time": 1730886352 } ], - "next_cursor": 196, - "result_count": 5 + "next_cursor": 349, + "result_count": 6 }, "/v2/events/FAIRMINTER_UPDATE": { "result": [ { - "event_index": 155, + "event_index": 373, "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "633ff357da36f183d4401e53a472574aa70e5c158b893fd8184fc83f943d7931" + "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211" }, - "tx_hash": null, - "block_index": 130, - "block_time": 1730884198 + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "block_index": 159, + "block_time": 1730886370 } ], - "next_cursor": 110, - "result_count": 2 + "next_cursor": 155, + "result_count": 3 }, "/v2/events/NEW_FAIRMINT": { "result": [ { - "event_index": 207, + "event_index": 372, "event": "NEW_FAIRMINT", "params": { - "asset": "FAIRMINTD", - "block_index": 136, + "asset": "FREEFAIRMINT", + "block_index": 159, "commission": 0, - "earn_quantity": 40, - "fairminter_tx_hash": "149bcb4a84a1f5dbae988f1c62f63ec325839e4b7928c4ee8c67a8b7ca898917", - "paid_quantity": 34, - "source": "bcrt1q3k2gsvfmh9g97ccngrj7agn6n4m924nfv7ry2n", + "earn_quantity": 80, + "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "paid_quantity": 0, + "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", "status": "valid", - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "tx_index": 23, - "block_time": 1730884230, + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_index": 46, + "block_time": 1730886370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2gvc9ehr3vqslg54n2mxtls9vmsje45z65v8fv", + "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" }, - "tx_hash": "245bea5e7b4dda4bd6b6c2a99eed491d9adb3890fec5e37405b2c9e022e47a28", - "block_index": 136, - "block_time": 1730884230 + "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "block_index": 159, + "block_time": 1730886370 } ], - "next_cursor": 190, - "result_count": 10 + "next_cursor": 365, + "result_count": 12 }, "/v2/events/ATTACH_TO_UTXO": { "result": [ { - "event_index": 618, + "event_index": 641, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 205, - "destination": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5:0", + "block_index": 208, + "destination": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "status": "valid", - "tx_hash": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "tx_index": 72, - "block_time": 1730884545, + "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_index": 75, + "block_time": 1730886578, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fcc7cfaac8b37b782d9cd1e26b39abc62f9498f571bf4e1bbb093072ab3672d5", - "block_index": 205, - "block_time": 1730884545 + "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "block_index": 208, + "block_time": 1730886578 } ], - "next_cursor": 593, + "next_cursor": 616, "result_count": 5 }, "/v2/events/DETACH_FROM_UTXO": { "result": [ { - "event_index": 610, + "event_index": 633, "event": "DETACH_FROM_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 204, - "destination": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "block_index": 207, + "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "956e3b483564e885a5de19f4ad17ada4711efe08d43447ef87cca985b27ca79f:0", + "source": "1cb31e85b64a5555769a2d32c674a64224e8a1c904b259f6964656bbdba4175e:0", "status": "valid", - "tx_hash": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "tx_index": 71, - "block_time": 1730884542, + "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_index": 74, + "block_time": 1730886573, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qnszxn8ulnmuc5khguq5v9wyyfu3yh7kzjhvpf3", + "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1cf38cc29e18966f8ba3c35170a87872e41b861d5a7ab8b69a28e3067dd56578", - "block_index": 204, - "block_time": 1730884542 + "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "block_index": 207, + "block_time": 1730886573 } ], "next_cursor": 311, @@ -11306,19 +11273,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 710, + "event_index": 733, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 213, - "destination": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8:0", + "block_index": 216, + "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", "msg_index": 1, "quantity": 2000000000, - "source": "3dd3d50e61721756c03a7a4cb85287922cc458c48fa6fab8ab797b33cd03cc01:1", + "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", "status": "valid", - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "tx_index": 80, - "block_time": 1730884598, + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "tx_index": 83, + "block_time": 1730886637, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11328,12 +11295,12 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "e6951061e7c3834ccfa7b9b4a21d47eaac3e1bb655952cd7c8d095afdb4ca6c8", - "block_index": 213, - "block_time": 1730884598 + "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 216, + "block_time": 1730886637 } ], - "next_cursor": 707, + "next_cursor": 730, "result_count": 11 }, "/v2/events/BURN": { @@ -11345,17 +11312,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtj558eqjpr8535ds772a9zv4xasuydnrkh3nj8", + "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", "status": "valid", - "tx_hash": "2cf83eb06925ce9353c6448d088541d61a2060e223248e4cab9f7dd40350df54", + "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", "tx_index": 9, - "block_time": 1730884165, + "block_time": 1730886217, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2cf83eb06925ce9353c6448d088541d61a2060e223248e4cab9f7dd40350df54", + "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", "block_index": 121, - "block_time": 1730884165 + "block_time": 1730886217 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 5b20827b6f..1a1d6e35fc 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -308,7 +308,7 @@ "source": "$UTXOASSET_UTXO_1_TX_HASH:0", "status": "valid", "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", - "tx_index": 69, + "tx_index": "$TX_INDEX - 1", }, "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", }, @@ -322,7 +322,7 @@ "calling_function": "utxo move", "event": "$UTXOASSET_UTXO_2_TX_HASH", "quantity": 1000000000, - "tx_index": 69, + "tx_index": "$TX_INDEX - 1", "utxo": "$UTXOASSET_UTXO_2_TX_HASH:0", "utxo_address": "$ADDRESS_8", }, @@ -338,7 +338,7 @@ "block_index": "$BLOCK_INDEX", "event": "$UTXOASSET_UTXO_2_TX_HASH", "quantity": 1000000000, - "tx_index": 69, + "tx_index": "$TX_INDEX - 1", "utxo": "$UTXOASSET_UTXO_1_TX_HASH:0", "utxo_address": "$ADDRESS_7", }, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index c5cae90bfd..762bfafebb 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -153,6 +153,7 @@ def control_result( .replace("$BLOCK_HASH", block_hash) .replace('"$BLOCK_INDEX"', str(block_index)) .replace('"$TX_INDEX"', str(tx_index)) + .replace('"$TX_INDEX - 1"', str(tx_index - 1)) .replace('"$BLOCK_TIME"', str(block_time)) ) if data: From 0046b5ac8db64376e4f586f628ea6731ba9fb236 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 10:08:42 +0000 Subject: [PATCH 066/138] fix fixtures --- .../counterpartycore/test/fixtures/api_v2_fixtures.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 7e6d1645c9..44e2384a80 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -13734,7 +13734,7 @@ "name": "address", "required": true, "type": "str", - "description": "The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_2)" + "description": "The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_1)" }, { "name": "dispenser", From 077f91bb3e2a036a416dcdaae253c096ca235e2e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 10:35:54 +0000 Subject: [PATCH 067/138] Add regtest test for fairminter on existing subasset --- .../scenarios/scenario_16_fairminter.py | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py index f82279ca93..cb3a9aff2d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py @@ -260,4 +260,94 @@ } ], }, + { + "title": "Create fairminter on existing subasset", + "transaction": "fairminter", + "source": "$ADDRESS_1", + "params": { + "asset": "A95428959745315388", # TESTLOCKDESC.MYSUBASSET from scenario_9 + "max_mint_per_tx": 100, + "hard_cap": 180, + }, + "set_variables": { + "FREEFAIRMINT_SUBASSET_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": 196, + "params": { + "asset": "A95428959745315388", + "asset_events": "open_fairminter", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "block_index": 138, + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "Test Locking Description", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_1", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_1", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": 26, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": 195, + "params": { + "asset": "A95428959745315388", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "asset_parent": "TESTLOCKDESC", + "block_index": 138, + "burn_payment": False, + "description": "Test Locking Description", + "divisible": True, + "end_block": 0, + "hard_cap": 180, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 100, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_1", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": 26, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Create fairminter on existing subasset 2", + "transaction": "fairminter", + "source": "$ADDRESS_1", + "params": { + "asset": "MYSUBASSET", # TESTLOCKDESC.MYSUBASSET from scenario_9 + "asset_parent": "TESTLOCKDESC", + "max_mint_per_tx": 100, + "hard_cap": 180, + }, + "expected_error": ["Fair minter already opened for `TESTLOCKDESC.MYSUBASSET`."], + }, ] From bde91a09a85bbf443be402b2ae59225f07228730 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 10:41:20 +0000 Subject: [PATCH 068/138] update release notes --- release-notes/release-notes-v10.6.2.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 1e00618ddc..666e9809e7 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -8,6 +8,8 @@ ## Protocol Changes +### UTXO Support + This update includes significant changes to the UTXO Support feature, and in particular to address a vulnerability where an atomic swap could be frontrun by a `detach` transaction. Further feedback from the community, in particular the OpenStamps team and DerpHerpenstein have allowed us to simplify the implementation of this feature significantly. With the protocol change, messages with ID 100 will be disabled at the same block that messages with IDs 101 and 102 will be enabled. 12 blocks before this activation block, the functions `compose_attach` and `compose_detach` will be deactivated to avoid having transactions with ID 100 confirmed after activation. The protocol and API have changed as follows: 1. The `attach` function no longer accepts a `destination` parameter. It now accepts an optional `destination_vout` parameter (by default the first non-`OP_RETURN` output). This parameter allows one to designate the index of the output to use as the destination. The transaction is invalid if `destination_vout` does not exist or if it is an `OP_RETURN`. @@ -22,6 +24,10 @@ In addition to resolving the above frontrunning vulnerability, this update bring 1. It is no longer possible to make a `detach` and a UTXO `move` in the same transaction. 1. A UTXO move with a transaction that contains only a single OP_RETURN output behaves like a `detach` +### Fairminter + +When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminter with hard cap, the last mint receives what remains instead of triggering an error. + ## Bugfixes - Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified From 2521f8a536683866aac1db79e06ab2fbad1167a6 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 13:23:34 +0000 Subject: [PATCH 069/138] fix and add regtest tests --- apiary.apib | 5191 ++++++++--------- .../lib/messages/fairminter.py | 2 +- .../test/regtest/apidoc/apicache.json | 4719 ++++++++------- .../scenarios/scenario_16_fairminter.py | 90 - .../scenarios/scenario_20_fairminter.py | 370 ++ .../test/regtest/testscenarios.py | 4 +- 6 files changed, 5307 insertions(+), 5069 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py diff --git a/apiary.apib b/apiary.apib index 386e348b2d..b27694cb14 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-06 09:50:54.693257. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-06 13:13:57.753084. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 725, + "event_index": 779, "event": "NEW_BLOCK", "params": { - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_index": 216, - "block_time": 1730886637, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_index": 223, + "block_time": 1730898820, "difficulty": 545259519, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427" + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388" }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 719, - "result_count": 116 + "next_cursor": 773, + "result_count": 123 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 726, + "event_index": 780, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_index": 216, - "block_time": 1730886637, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_index": 223, + "block_time": 1730898820, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "fee": 0, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 720, - "result_count": 84 + "next_cursor": 774, + "result_count": 91 } ``` @@ -242,21 +242,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 727, + "event_index": 781, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "out_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": 597, @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 724, - "result_count": 116 + "next_cursor": 778, + "result_count": 123 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 723, - "result_count": 69 + "next_cursor": 777, + "result_count": 76 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 731, + "event_index": 785, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 216, - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 223, + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,13 +343,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 728, - "result_count": 76 + "next_cursor": 782, + "result_count": 80 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,13 +381,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 732, - "result_count": 96 + "next_cursor": 786, + "result_count": 101 } ``` @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 210, - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "quantity": 1000, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": "valid", - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "tx_index": 77, - "block_time": 1730886595, + "block_time": 1730898744, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_time": 1730886595 + "block_time": 1730898744 } ], "next_cursor": 533, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 214, - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_time": 1730886620 + "block_time": 1730898769 } ], "next_cursor": 715, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 199, - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "status": "valid", - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "tx_index": 65, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "block_time": 1730886537 + "block_time": 1730898695 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": "valid", - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "tx_index": 42, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "block_time": 1730886343 + "block_time": 1730898507 } ], "next_cursor": null, @@ -583,22 +583,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 647, + "event_index": 769, "event": "ASSET_CREATION", "params": { - "asset_id": "101158363923", - "asset_longname": null, - "asset_name": "MPMASSET", - "block_index": 209, - "block_time": 1730886581 + "asset_id": "95428960586448133", + "asset_longname": "PARENTB.SUBASSETC", + "asset_name": "A95428960586448133", + "block_index": 221, + "block_time": 1730898808 }, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "block_index": 209, - "block_time": 1730886581 + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_time": 1730898808 } ], - "next_cursor": 606, - "result_count": 13 + "next_cursor": 746, + "result_count": 18 } ``` @@ -608,40 +608,40 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 648, + "event_index": 770, "event": "ASSET_ISSUANCE", "params": { - "asset": "MPMASSET", - "asset_events": "creation", - "asset_longname": null, - "block_index": 209, + "asset": "A95428960586448133", + "asset_events": "open_fairminter", + "asset_longname": "PARENTB.SUBASSETC", + "block_index": 221, "call_date": 0, - "call_price": 0.0, + "call_price": 0, "callable": false, - "description": "My super asset B", - "description_locked": false, + "description": "", "divisible": true, - "fee_paid": 50000000, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "fair_minting": true, + "fee_paid": 0, + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "locked": false, - "quantity": 100000000000, + "quantity": 0, "reset": false, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "status": "valid", "transfer": false, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "tx_index": 76, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" }, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "block_index": 209, - "block_time": 1730886581 + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_time": 1730898808 } ], - "next_cursor": 607, - "result_count": 27 + "next_cursor": 763, + "result_count": 34 } ``` @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 200, "quantity": 1, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", "tag": "64657374726f79", - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "tx_index": 66, - "block_time": 1730886540, + "block_time": 1730898698, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "block_index": 200, - "block_time": 1730886540 + "block_time": 1730898698 } ], "next_cursor": 157, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 722, + "event_index": 776, "event": "OPEN_ORDER", "params": { - "block_index": 215, + "block_index": 222, "expiration": 21, - "expire_index": 236, + "expire_index": 243, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "status": "open", - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "tx_index": 82, - "block_time": 1730886624, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "tx_index": 89, + "block_time": 1730898812, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -734,9 +734,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": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "block_time": 1730886624 + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "block_time": 1730898812 } ], "next_cursor": 564, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "match_expire_index": 233, "status": "pending", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx0_block_index": 198, "tx0_expiration": 21, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", "tx0_index": 64, - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "tx1_block_index": 213, "tx1_expiration": 21, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx1_index": 58, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_time": 1730886606 + "block_time": 1730898765 } ], "next_cursor": 521, @@ -807,19 +807,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 707, + "event_index": 759, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" + "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 } ], - "next_cursor": 693, - "result_count": 16 + "next_cursor": 707, + "result_count": 17 } ``` @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b" + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca" }, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "block_time": 1730886496 + "block_time": 1730898646 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 688, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "status": "expired" }, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_time": 1730886606 + "block_time": 1730898765 } ], "next_cursor": 511, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 191, "btc_amount": 2000, - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "tx_index": 57, - "block_time": 1730886496, + "block_time": 1730898646, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "block_time": 1730886496 + "block_time": 1730898646 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 197, - "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": "valid", - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "tx_index": 63, - "block_time": 1730886529 + "block_time": 1730898688 }, - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "block_index": 197, - "block_time": 1730886529 + "block_time": 1730898688 } ], "next_cursor": null, @@ -931,21 +931,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 708, + "event_index": 761, "event": "ORDER_EXPIRATION", "params": { - "block_index": 214, - "order_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "block_time": 1730886620 + "block_index": 220, + "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_time": 1730898794 }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 } ], - "next_cursor": 663, - "result_count": 4 + "next_cursor": 708, + "result_count": 5 } ``` @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 213, - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "block_time": 1730886606 + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "block_time": 1730898765 }, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_time": 1730886606 + "block_time": 1730898765 } ], "next_cursor": 487, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "satoshirate": 1, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": 0, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "tx_index": 68, - "block_time": 1730886548, + "block_time": 1730898704, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 202, - "block_time": 1730886548 + "block_time": 1730898704 } ], "next_cursor": 272, @@ -1027,15 +1027,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": 599, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", + "destination": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", "dispense_quantity": 10, - "dispenser_tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", + "dispenser_tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", "tx_index": 31, - "block_time": 1730886302, + "block_time": 1730898458, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", + "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", "block_index": 144, - "block_time": 1730886302 + "block_time": 1730898458 } ], "next_cursor": null, @@ -1098,20 +1098,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": 600, @@ -1146,19 +1146,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": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "tx_index": 25, "value": 66600.0, - "block_time": 1730886280, + "block_time": 1730898417, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "block_time": 1730886280 + "block_time": 1730898417 } ], "next_cursor": 213, @@ -1174,18 +1174,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 356, + "event_index": 768, "event": "NEW_FAIRMINTER", "params": { - "asset": "FREEFAIRMINT", - "asset_longname": "", - "asset_parent": "", - "block_index": 157, + "asset": "A95428960586448133", + "asset_longname": "PARENTB.SUBASSETC", + "asset_parent": "PARENTB", + "block_index": 221, "burn_payment": false, "description": "", "divisible": true, "end_block": 0, - "hard_cap": 180, + "hard_cap": 0, "lock_description": false, "lock_quantity": false, "max_mint_per_tx": 100, @@ -1196,26 +1196,26 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "start_block": 0, "status": "open", - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "tx_index": 44, - "block_time": 1730886352, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_time": 1730898808, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "block_index": 157, - "block_time": 1730886352 + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_time": 1730898808 } ], - "next_cursor": 349, - "result_count": 6 + "next_cursor": 762, + "result_count": 9 } ``` @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211" + "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4" }, - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "block_index": 159, - "block_time": 1730886370 + "block_time": 1730898523 } ], "next_cursor": 155, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 159, "commission": 0, "earn_quantity": 80, - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "paid_quantity": 0, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "block_index": 159, - "block_time": 1730886370 + "block_time": 1730898523 } ], "next_cursor": 365, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 208, - "destination": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8:0", + "destination": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "status": "valid", - "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", "tx_index": 75, - "block_time": 1730886578, + "block_time": 1730898736, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", "block_index": 208, - "block_time": 1730886578 + "block_time": 1730898736 } ], "next_cursor": 616, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 207, - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "1cb31e85b64a5555769a2d32c674a64224e8a1c904b259f6964656bbdba4175e:0", + "source": "43e7c2c0f317b252725389920e482359189075b03ed94b5f69b61e032d1163e1:0", "status": "valid", - "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", "tx_index": 74, - "block_time": 1730886573, + "block_time": 1730898732, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", "block_index": 207, - "block_time": 1730886573 + "block_time": 1730898732 } ], "next_cursor": 311, @@ -1370,19 +1370,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 733, + "event_index": 787, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 216, - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "block_index": 223, + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "msg_index": 1, "quantity": 2000000000, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", "status": "valid", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,12 +1392,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 730, + "next_cursor": 784, "result_count": 11 } ``` @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", + "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", "status": "valid", - "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", + "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", "tx_index": 9, - "block_time": 1730886217, + "block_time": 1730898343, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", + "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", "block_index": 121, - "block_time": 1730886217 + "block_time": 1730898343 } ], "next_cursor": 65, @@ -1465,7 +1465,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `216` (str, optional) - The index of the most recent block to return + + cursor: `223` (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` @@ -1482,68 +1482,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", "difficulty": 545259519, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, "confirmed": true }, { - "block_index": 215, - "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", - "block_time": 1730886624, - "previous_block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_index": 222, + "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_time": 1730898812, + "previous_block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", "difficulty": 545259519, - "ledger_hash": "4a2ce5404e543bec2e3d0a3d601790892724baf757c6862310ba9c9d3df35df5", - "txlist_hash": "9444b4994ced319d8d8a37636d2743c6ba940b7a417c82bfbd3a7149283875e9", - "messages_hash": "193dc4c585cd7b9c9c64adebaf12e8d804d6ae183dbba550745135ecbb9604bb", + "ledger_hash": "50b0eb6caea691c2981c7ca1a6781038786c9c763cd7df828aac1a866ce65842", + "txlist_hash": "b60b5bd37d63aae124e8fae2fd3eadaf9d1477056b35dda5abf8f31906ef045b", + "messages_hash": "8a2393350121ebdd03181d86762ce0eac115cea857a0b297fff444cd09933d05", "transaction_count": 1, "confirmed": true }, { - "block_index": 214, - "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", - "block_time": 1730886620, - "previous_block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", + "block_index": 221, + "block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", + "block_time": 1730898808, + "previous_block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", "difficulty": 545259519, - "ledger_hash": "14c940a84f3314ff088c8ae41ae4461993a5f6723af74a4830909a4435160970", - "txlist_hash": "97ca3575aba4bae0b540b67777f953d5763f8edbe3bc53b683c69f6905307ef8", - "messages_hash": "a7476b4c76c553528bae39fda715adc1318ca3d307122ac2f9378bb2e7609715", + "ledger_hash": "921556d15aa22775a407bdb2ddae1340ba9d05627ba52e68f923d1da8d19dd32", + "txlist_hash": "48b1b772b588d367c6f93a95cf77a01dd2b6522b48ade863da4989ad23f40125", + "messages_hash": "e45f2bb3efd8a2c26d8dea423458b6a5eefbdf97154a6e9e53ab1cf307042e79", "transaction_count": 1, "confirmed": true }, { - "block_index": 213, - "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", - "block_time": 1730886606, - "previous_block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_index": 220, + "block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", + "block_time": 1730898794, + "previous_block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", "difficulty": 545259519, - "ledger_hash": "6c1eb330077904aeb0291ace28883e5bfd4715bc6477dc40f5883b3467ff8297", - "txlist_hash": "0e960685873437705c0b2503ae83c5650d5fea2398c93c898521d89b9c89acba", - "messages_hash": "72152ff841590875ca0252a0e725f2c8e888c9f113f319f687ec639c89f6ae5f", + "ledger_hash": "3a3bcf0fe193fed2da2edbf1249f1e2039a9ff5c42f5800cb0c018478e87bedf", + "txlist_hash": "a46d10f1ded5d41459f29f158547521b309044b50994ff95248225c852c251ac", + "messages_hash": "5c9c6bececd7ca2915376470ba0c216344d4f5649cc9c94703d71fe641b1c889", "transaction_count": 1, "confirmed": true }, { - "block_index": 212, - "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", - "block_time": 1730886603, - "previous_block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", + "block_index": 219, + "block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", + "block_time": 1730898790, + "previous_block_hash": "41debd881d6501feb35a5b16f192e8d6c1ff4bfec922ad9bd666d277685c9aba", "difficulty": 545259519, - "ledger_hash": "47c34859d5f8cf69be7eee7fc0634f0a703461dc4eeb18420cc3f98decfe55b0", - "txlist_hash": "4b7d62a61b9d44386fd3fbbfb0be78c5d2e7e85fccaca876ca99ebe02011b221", - "messages_hash": "2925e83a1854ca2d6c988538d276c9d4a4746de5aeb6bc67c0e55f9b4f8af08c", + "ledger_hash": "12f9cb1cf9633d79cc0121d9cfe50f8652d1fa6f74cc93b8293098c5b0fb928a", + "txlist_hash": "519c1de30fbedf96677528be9dc75d2acff5273e4065a097c8c674b042d437f7", + "messages_hash": "23cb022018309ef70abf974578425962b684da32d2a897ab76a94be5b0c899f9", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 211, - "result_count": 116 + "next_cursor": 218, + "result_count": 123 } ``` @@ -1562,7 +1562,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (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. @@ -1573,14 +1573,14 @@ Return the information of a block ``` { "result": { - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", "difficulty": 545259519, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d` (str, required) - The index of the block to return + + block_hash: `6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f` (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,14 +1603,14 @@ Return the information of a block ``` { "result": { - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", "difficulty": 545259519, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, "confirmed": true } @@ -1622,8 +1622,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return - + cursor: `83` (str, optional) - The last transaction index to return + + block_index: `223` (int, required) - The index of the block to return + + cursor: `90` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1640,18 +1640,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1673,10 +1673,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1693,43 +1693,43 @@ Returns the events of a block { "result": [ { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null }, { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1740,18 +1740,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1786,10 +1786,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" } ], - "next_cursor": 733, + "next_cursor": 787, "result_count": 14 } ``` @@ -1799,7 +1799,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (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 @@ -1847,7 +1847,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (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` @@ -1866,19 +1866,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1888,22 +1888,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1913,32 +1913,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" } ], "next_cursor": null, @@ -1951,7 +1951,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2000,17 +2000,17 @@ Returns the credits of a block { "result": [ { - "block_index": 216, - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "block_index": 223, + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2021,17 +2021,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 216, + "block_index": 223, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2042,21 +2042,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 216, + "block_index": 223, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2073,7 +2073,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2111,17 +2111,17 @@ Returns the debits of a block { "result": [ { - "block_index": 216, + "block_index": 223, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2132,21 +2132,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 216, + "block_index": 223, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2163,7 +2163,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `214` (int, required) - The index of the block to return + + block_index: `220` (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 @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "block_index": 214, + "object_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "block_index": 220, "confirmed": true, - "block_time": 1730886620 + "block_time": 1730898794 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "status": "valid", "confirmed": true, - "block_time": 1730886529 + "block_time": 1730898688 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 66, - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "block_index": 200, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730886540, + "block_time": 1730898698, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2284,7 +2284,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `209` (int, required) - The index of the block to return + + block_index: `221` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2315,32 +2315,32 @@ Returns the issuances of a block { "result": [ { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, + "block_index": 221, + "asset": "A95428960586448133", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, + "description": "", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, @@ -2353,7 +2353,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (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 @@ -2371,11 +2371,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2395,11 +2395,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2429,7 +2429,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `216` (int, required) - The index of the block to return + + block_index: `223` (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 @@ -2447,29 +2447,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -2548,7 +2548,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `159` (int, required) - The block index of the fairminter to return + + block_index: `221` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2573,17 +2573,17 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_index": 221, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960586448133", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, - "hard_cap": 180, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 100, "premint_quantity": 0, @@ -2596,21 +2596,18 @@ Returns the fairminters by its block index "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898808, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "premint_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -2641,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2697,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "block_hash": "74b01284da584e15e47f6d2bacfb0de0872c7e74a726465204194bb7f75db21f", - "block_time": 1730886280, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_hash": "0b12af3823f4c844f47dcaa84a0c4948e7daf8eb4e56ad2e79a964cd7af20dd8", + "block_time": 1730898417, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36:1 2 ", + "utxos_info": " d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2732,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "block_hash": "702f8580d41981d3588ac53799fb5aa0dd2371483d5f484d92bc0dd448a95a52", - "block_time": 1730886496, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3de2d8917df39ee170e970a5e5b4bb85e365bd6378189dc6078c90b821c12e13", + "block_time": 1730898646, + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "btc_amount": 2000, "fee": 10000, - "data": "0b5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "data": "0b39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "supported": true, - "utxos_info": " 23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6:0 3 1", + "utxos_info": " 1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "status": "valid" } }, @@ -2765,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "block_index": 197, - "block_hash": "2c3b85dd56f975b80f14268db6b524228b5a19d4da99d3ea99c18329a2bb1a68", - "block_time": 1730886529, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "36b3406b8a66106c420de68bb68a4494382fda63649afc5d968528069130fb62", + "block_time": 1730898688, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4638a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "data": "46512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "supported": true, - "utxos_info": " 0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388:1 2 ", + "utxos_info": " ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "status": "valid" } }, @@ -2796,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 66, - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "block_index": 200, - "block_hash": "2f82945c17e531a7f600c8c47d7fd280ba3c38b749100c7e4ae90582d47ac96c", - "block_time": 1730886540, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "block_hash": "126e67da545e43c381c275e8c3a925df9c160a2da05635d85699e228982e2c54", + "block_time": 1730898698, + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "363325b127e459a90d7a306995804fae5bcdd591c4fe5973652fd44d1ba50f4b:1 5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 2 ", + "utxos_info": "9cabb396047dd7241313f9131a4b5a7e3f7a7a9213c360840ade79881132ce8c:1 79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2836,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 202, - "block_hash": "0d9e15163c4725e3733cbcdfebd1a077c34264a34de5681049530a0ec14a4832", - "block_time": 1730886548, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3cefda465642e6950410081f78c82cc5ea312c1db554802d891858b8174c14cf", + "block_time": 1730898704, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c:1 2 ", + "utxos_info": " 64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2863,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2881,18 +2878,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2912,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "block_hash": "55cd8ccd996256fa17580abeb6904fbca04881edaa04a5680da4df850c15a6ad", - "block_time": 1730886343, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "2c560e60a6794b86a16e39e0cc5dbddfc792a2f8435a9b3a946fbb3fe39f3e5f", + "block_time": 1730898507, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598:1 2 ", + "utxos_info": " 65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2935,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2959,36 +2956,46 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "block_index": 209, - "block_hash": "3eee0202e49997e9138f321ad34f3ebc4b0f05692963a115eaf5c152a5ee65b5", - "block_time": 1730886581, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", + "block_time": 1730898808, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "data": "5a5355424153534554437c504152454e54427c307c317c3130307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b:1 2 ", + "utxos_info": " 3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb:1 2 ", "confirmed": true, "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, + "message_type": "fairminter", + "message_type_id": 90, "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, + "asset": "SUBASSETC", + "asset_parent": "PARENTB", + "price": 0, + "quantity_by_price": 1, + "max_mint_per_tx": 100, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" + "description": "", + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000" } }, "btc_amount_normalized": "0.00000000" @@ -3001,18 +3008,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 82, - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", - "block_time": 1730886624, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "tx_index": 89, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_time": 1730898812, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2:1 2 ", + "utxos_info": " a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3028,7 +3035,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -3055,17 +3062,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", - "block_time": 1730886595, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", + "block_time": 1730898744, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "supported": true, - "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", + "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3073,12 +3080,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3096,17 +3103,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", - "block_time": 1730886620, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_hash": "3d736d00b47d164c3591fed8490ab8c61ac4853a494cf0deb3773bd0fb8c8abc", + "block_time": 1730898769, + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322:0 4 ", + "utxos_info": " b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3114,14 +3121,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3129,7 +3136,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3155,23 +3162,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "block_hash": "55add94b1ea93f07a8f69e30307b3a3398ed8d113a8dcd05212f17e22cb91744", - "block_time": 1730886537, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "block_hash": "5f65278abfaf5d60d9df0fd77e984b88e8a8f3a3d80206451cde23cd412d54d8", + "block_time": 1730898695, + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480fa6b94743d53f5f6af69583dd022e460c5a7074c017377656570206d7920617373657473", + "data": "0480cb84369aaa777801d6d572f0dde4294cbf91d44f017377656570206d7920617373657473", "supported": true, - "utxos_info": " c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6:1 2 ", + "utxos_info": " 50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "memo": "sweep my assets" } @@ -3187,17 +3194,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", "block_index": 208, - "block_hash": "7eec77254205210426e84026d1e3a1f0f0337690c6c545686c41dc8c4c24c393", - "block_time": 1730886578, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "block_hash": "24e28eb0305c3e0231bfec603863aa5ff3198ba5e2d21915939d86afc6f7f037", + "block_time": 1730898736, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8:0 3 1", + "utxos_info": " 3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3209,7 +3216,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -3227,17 +3234,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", "block_index": 207, - "block_hash": "6ee308bb05a38403aa9943cc224064cf10ccf0926a30939150b0dd5574eaea98", - "block_time": 1730886573, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "block_hash": "1371d6e031b8bbef4ccd6180ff2de69497eca7c35765c8f0dfa02f1a111cf662", + "block_time": 1730898732, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "1cb31e85b64a5555769a2d32c674a64224e8a1c904b259f6964656bbdba4175e:0 5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a:1 2 ", + "utxos_info": "43e7c2c0f317b252725389920e482359189075b03ed94b5f69b61e032d1163e1:0 fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3256,7 +3263,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `83` (str, optional) - The index of the most recent transactions to return + + cursor: `90` (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` @@ -3273,18 +3280,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3296,18 +3303,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 82, - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", - "block_time": 1730886624, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "tx_index": 89, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_time": 1730898812, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2:1 2 ", + "utxos_info": " a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3323,7 +3330,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -3342,8 +3349,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 81, - "result_count": 84 + "next_cursor": 88, + "result_count": 91 } ``` @@ -3352,7 +3359,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106605694f6c029d04b69c9d40654e4735dd3d40e04b5996b386f5c7a71b40b47c30000000000ffffffff3a978d7e007d40c67ba4f8dc1c054c1d0a46502cc1860559bf4aaede837d5c180000000000ffffffff8d4d7c20ccfa6968e4377015bd9e0b7078a6d98375589e58e152609620a5a2ec0000000000ffffffffe35f6c08ca28b217d089ed6fa66e1ce2e224f51efcf33c4d1763b575ae4fbdb50000000000ffffffffbce276563e9b1c7e36c304c9552dce94d582464993e24ff4afbcad2434d5e4ab0000000000ffffffff1933d11652cc8b260abd57fb1c40940d8dbd08065f57eef504e39063702ea61e0000000000ffffffff04e80300000000000069512102af14eeb0084c152974c0c4dc20a3e9d4bf36a7ea2837501f6ebbead1f15832d32102023305782c7b2e0e0ad78bd86b0d9c2c372c0dd8777b190ff22bd50db943381521030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353aee80300000000000069512103af14eeb0084c152974356bb6f83467d69258478efc8e775963e0410df91312e62103affe851a1cce2caa14e5a9f79356902d54f34b6db1b7dd8f020041798410cdbd21030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353aee803000000000000695121038114eeb0084c152974c3c49fa009b7f476388201fbc2ff2d0b8561609c7e7d2f21032ffe8511da0f3d23bce5a9f79356902d06f34b6db1b7dd8f084041798410cd0421030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae387923fc060000001600147b8d32180ac4c5c380d3d70e5121633b537a226402473044022060bd3cf8dd9fd04596bef152b705e93498946f1948e6401f6984b44e4bb0b3ea02201e5949a78dafb528693316442df19b7bbf328f93725052f09e57773f6cff3f7a0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3024730440220599596e5682f14940ca521928a5442ad79a62fabc5a09c8a8278dde16b27ec4d02206c7ab29074a68e0275c4432bf0c06b6806b784deede4799189c4c8bec635f4e50121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac302473044022076b15ca17e376623fd0c37c7407393d9e225d5b341d5b4e0b279c0c6c7409d960220233515d11ceee2a205a6b151b428f4e4a7dd653a5868d770fa8b04966e8dfaea0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac30247304402207897a00dec9b1decdbe7b0603f2c0d6ce0a64a066c3dee2590c7d5d7a88403ea022010572029ddc8d1159b8b9adbbbd6bccdc99956232059e2d60cb2b477bd75d6320121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac30247304402202cce65d353ebfb1e56ed1399f0a3d2a3e3759aeb20614e773c23bca22d7bb0980220795eddc632a8db411e9feb0ae38185bfc8f859a577a93d90767389577a33491d0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac30247304402203b928cfc18d69421835bb3e0efb015b5bef38febceacd2885658daed064bab130220024634a9b73e8a1556ddbaf14ed571fe331180b167e118b06eb4205bd89cae7c0121030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac300000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106cd955517616e0c584adfe5bb2a14ea5690f8cd94b6f4165fa3cd8388c8ac85060000000000ffffffffdf544dae99046d52bfe00ee970090a9e5d1b82e902e41e0fa5e6b77dfb6a190d0000000000ffffffff322d7b8bfaa3dddc763da6ccaf27f9ebac18c16f72292051848dea08c729afee0000000000ffffffffa2fedd6847dde20c534d8bf99d1650415de2f4a1a3b3af0deff81f31d01095500000000000ffffffff55efd04385a547c293a24327b5555f2365a0259d4c03af3f17cb00bff0c020600000000000ffffffff151ba7ebe2228badc209400c38bfc61feb4c90769496758ef2cf2b86d7c1d0280000000000ffffffff04e80300000000000069512102eae04b7fae4b06bd25d5ad9737045b679610f802d3a3b7b607a8ac83f0ec5c9a21030d6ce6956533c554e8f0b0830b00fc2a85aba464e355af852411d14d983236442103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953aee80300000000000069512102eae04b7fae4b06bd25d77b41c53760d275ad4bb4fae0aa7c813af1c34e74019a210307d966f155ec99974ed766c88e9341262ea73141660fbf05e5d5e7d732454eb02103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953aee80300000000000069512103c4e04b7fae4b06bd25d6add4b7c7bd365ce1f40d2eaf2208e95fd1ae2b196e21210387d966fa932d881ee6d766c88e9341267ca73141660fbf05ef95e7d732454e232103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae387923fc060000001600148866238a1b690fe23cd7db55f93c555a4c161e320247304402204e78e6c2d67a3f18feb9586c86f41ae654c83a6d9fd405799258b4615cec4ca6022079636bb1c4e9012125cd208ca6400a17ee20cb05c3b6ba74d7b0105b94429bcc012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9024730440220372f18faa11db76488c63d41b0140e7620a87a08f35ae59bb34aea965e2db853022006a41f594f0f55adb737870a5b0db7baad51f98e2e3f399a4af8b7e94a565e46012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f90247304402202ecc1d77c8a97e8bd7f38a50e523d33ea77ddd1f1ae4ffbcf50907f9c1499f6d022076fdcfd3ebfcf9cd48ecb85f05b4cf3a11bb6f4ec6a7c76b048b635e1e332d86012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f902473044022003a165ddb344b3e95ae53cfb2583a04e3f824c541be5925f1b15765a635b26bb02204b614b91b6884ef95e97594637b3150545ef4e8bd5994083878b678c7616fbad012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f90247304402203546a8bea60a68d32dbd0e0d84eaf7665990103b273b88870528d02e5216fb620220497630e159a901a0c8de9303c2cceb85a4ca707941b848b345c9061fedac3ebb012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f90247304402202ee2bbd715c5798e9f4c98e1959922d890ef5e814838c6fd59962792cf65fb830220213a6bd58397f93abe93766a2dd029ea8d4f600ef0ef0ab7b7d4f22bdd5ab60a012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f900000000` (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. @@ -3365,53 +3372,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "605694f6c029d04b69c9d40654e4735dd3d40e04b5996b386f5c7a71b40b47c3", + "hash": "cd955517616e0c584adfe5bb2a14ea5690f8cd94b6f4165fa3cd8388c8ac8506", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "3a978d7e007d40c67ba4f8dc1c054c1d0a46502cc1860559bf4aaede837d5c18", + "hash": "df544dae99046d52bfe00ee970090a9e5d1b82e902e41e0fa5e6b77dfb6a190d", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "8d4d7c20ccfa6968e4377015bd9e0b7078a6d98375589e58e152609620a5a2ec", + "hash": "322d7b8bfaa3dddc763da6ccaf27f9ebac18c16f72292051848dea08c729afee", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "e35f6c08ca28b217d089ed6fa66e1ce2e224f51efcf33c4d1763b575ae4fbdb5", + "hash": "a2fedd6847dde20c534d8bf99d1650415de2f4a1a3b3af0deff81f31d0109550", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bce276563e9b1c7e36c304c9552dce94d582464993e24ff4afbcad2434d5e4ab", + "hash": "55efd04385a547c293a24327b5555f2365a0259d4c03af3f17cb00bff0c02060", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "1933d11652cc8b260abd57fb1c40940d8dbd08065f57eef504e39063702ea61e", + "hash": "151ba7ebe2228badc209400c38bfc61feb4c90769496758ef2cf2b86d7c1d028", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3421,38 +3428,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512102af14eeb0084c152974c0c4dc20a3e9d4bf36a7ea2837501f6ebbead1f15832d32102023305782c7b2e0e0ad78bd86b0d9c2c372c0dd8777b190ff22bd50db943381521030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" + "script_pub_key": "512102eae04b7fae4b06bd25d5ad9737045b679610f802d3a3b7b607a8ac83f0ec5c9a21030d6ce6956533c554e8f0b0830b00fc2a85aba464e355af852411d14d983236442103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" }, { "value": 1000, - "script_pub_key": "512103af14eeb0084c152974356bb6f83467d69258478efc8e775963e0410df91312e62103affe851a1cce2caa14e5a9f79356902d54f34b6db1b7dd8f020041798410cdbd21030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" + "script_pub_key": "512102eae04b7fae4b06bd25d77b41c53760d275ad4bb4fae0aa7c813af1c34e74019a210307d966f155ec99974ed766c88e9341262ea73141660fbf05e5d5e7d732454eb02103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" }, { "value": 1000, - "script_pub_key": "5121038114eeb0084c152974c3c49fa009b7f476388201fbc2ff2d0b8561609c7e7d2f21032ffe8511da0f3d23bce5a9f79356902d06f34b6db1b7dd8f084041798410cd0421030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" + "script_pub_key": "512103c4e04b7fae4b06bd25d6add4b7c7bd365ce1f40d2eaf2208e95fd1ae2b196e21210387d966fa932d881ee6d766c88e9341267ca73141660fbf05ef95e7d732454e232103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" }, { "value": 29999987000, - "script_pub_key": "00147b8d32180ac4c5c380d3d70e5121633b537a2264" + "script_pub_key": "00148866238a1b690fe23cd7db55f93c555a4c161e32" } ], "vtxinwit": [ - "3044022060bd3cf8dd9fd04596bef152b705e93498946f1948e6401f6984b44e4bb0b3ea02201e5949a78dafb528693316442df19b7bbf328f93725052f09e57773f6cff3f7a01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "30440220599596e5682f14940ca521928a5442ad79a62fabc5a09c8a8278dde16b27ec4d02206c7ab29074a68e0275c4432bf0c06b6806b784deede4799189c4c8bec635f4e501", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "3044022076b15ca17e376623fd0c37c7407393d9e225d5b341d5b4e0b279c0c6c7409d960220233515d11ceee2a205a6b151b428f4e4a7dd653a5868d770fa8b04966e8dfaea01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "304402207897a00dec9b1decdbe7b0603f2c0d6ce0a64a066c3dee2590c7d5d7a88403ea022010572029ddc8d1159b8b9adbbbd6bccdc99956232059e2d60cb2b477bd75d63201", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "304402202cce65d353ebfb1e56ed1399f0a3d2a3e3759aeb20614e773c23bca22d7bb0980220795eddc632a8db411e9feb0ae38185bfc8f859a577a93d90767389577a33491d01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "304402203b928cfc18d69421835bb3e0efb015b5bef38febceacd2885658daed064bab130220024634a9b73e8a1556ddbaf14ed571fe331180b167e118b06eb4205bd89cae7c01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" + "304402204e78e6c2d67a3f18feb9586c86f41ae654c83a6d9fd405799258b4615cec4ca6022079636bb1c4e9012125cd208ca6400a17ee20cb05c3b6ba74d7b0105b94429bcc01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "30440220372f18faa11db76488c63d41b0140e7620a87a08f35ae59bb34aea965e2db853022006a41f594f0f55adb737870a5b0db7baad51f98e2e3f399a4af8b7e94a565e4601", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "304402202ecc1d77c8a97e8bd7f38a50e523d33ea77ddd1f1ae4ffbcf50907f9c1499f6d022076fdcfd3ebfcf9cd48ecb85f05b4cf3a11bb6f4ec6a7c76b048b635e1e332d8601", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "3044022003a165ddb344b3e95ae53cfb2583a04e3f824c541be5925f1b15765a635b26bb02204b614b91b6884ef95e97594637b3150545ef4e8bd5994083878b678c7616fbad01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "304402203546a8bea60a68d32dbd0e0d84eaf7665990103b273b88870528d02e5216fb620220497630e159a901a0c8de9303c2cceb85a4ca707941b848b345c9061fedac3ebb01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "304402202ee2bbd715c5798e9f4c98e1959922d890ef5e814838c6fd59962792cf65fb830220213a6bd58397f93abe93766a2dd029ea8d4f600ef0ef0ab7b7d4f22bdd5ab60a01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" ], "lock_time": 0, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", - "tx_id": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440" + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_id": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8" }, "unpacked_data": { "message_type": "mpma_send", @@ -3460,14 +3467,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3475,7 +3482,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3500,7 +3507,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c` (str, required) - Transaction hash + + tx_hash: `b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb` (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. @@ -3511,18 +3518,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "84ebf11cb90a6835943d513a9cf0c11e3327c456d35a65be126acfb46e7a645a", + "hash": "6b65f00172eaa1e413172fbfc3e96fdab3b2dd37f5d8be9af578f3582bdde379", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3532,20 +3539,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e6fd344482e13f2ed14ef3ee933c06f06a1df98afcc1e53d1dc2a933aa89662011107217b06a7eb2dd35a637b6df6" + "script_pub_key": "6a2e802cc64f2ff3672fdfce4c17c8387d39625bf0027ca63ec6e99e7d0bcbe992c6e2d7c870c0bd251acfcbbb9b92dd" }, { "value": 4949930546, - "script_pub_key": "0014fa6b94743d53f5f6af69583dd022e460c5a7074c" + "script_pub_key": "0014cb84369aaa777801d6d572f0dde4294cbf91d44f" } ], "vtxinwit": [ - "304402200b61928a679b13372abf29d5c8082a414e50f1fb45aae2cab5e24361dc6edf8e022037d4b3043338e16a0d5323fb536e207a4ae977de91257aac777b21a5eb90771a01", - "02674fa5b9bdf3cb84ebddc108d1b2fca4f99f8cc943cfa511877f47bb42a27faf" + "304402200d48445154c4792d883d61c85df920b1c73006420c9dd956f7b5d98b683121aa02201f7a53bb97d9b052905a7baec0ee819893f57090a8302317ff6b8efe959bd7c201", + "028bf1a844374d601cebb7bb76f8534dfc66b13cd6c2ab56ef54ec474c9527acb6" ], "lock_time": 0, - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_id": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c" + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_id": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3553,7 +3560,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -3602,7 +3609,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `83` (int, required) - The index of the transaction + + tx_index: `90` (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. @@ -3613,18 +3620,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3643,7 +3650,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction + + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (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. @@ -3654,18 +3661,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3684,7 +3691,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `83` (int, required) - The index of the transaction to return + + tx_index: `90` (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 @@ -3704,32 +3711,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3740,20 +3747,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3763,24 +3770,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3790,24 +3797,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 733, + "event_index": 787, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 216, - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "block_index": 223, + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "msg_index": 1, "quantity": 2000000000, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", "status": "valid", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3817,12 +3824,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 732, + "next_cursor": 786, "result_count": 12 } ``` @@ -3832,10 +3839,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction to return + + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3852,32 +3859,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3888,20 +3895,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3911,24 +3918,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3938,24 +3945,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 733, + "event_index": 787, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 216, - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "block_index": 223, + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "msg_index": 1, "quantity": 2000000000, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", "status": "valid", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3965,12 +3972,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 732, + "next_cursor": 786, "result_count": 12 } ``` @@ -3980,7 +3987,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction to return + + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (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 @@ -3998,11 +4005,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4010,7 +4017,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4022,11 +4029,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4034,11 +4041,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4056,7 +4063,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction to return + + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (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 @@ -4074,29 +4081,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4111,7 +4118,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4133,9 +4140,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `83` (int, required) - The index of the transaction to return + + tx_index: `90` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4152,19 +4159,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4174,24 +4181,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4201,36 +4208,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": null, @@ -4243,9 +4250,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The hash of the transaction to return + + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4262,19 +4269,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4284,24 +4291,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4311,36 +4318,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": null, @@ -4355,7 +4362,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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 @@ -4379,7 +4386,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4389,7 +4396,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4400,7 +4407,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4410,7 +4417,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4421,7 +4428,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4431,7 +4438,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4442,7 +4449,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4452,7 +4459,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4463,7 +4470,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4473,7 +4480,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4490,8 +4497,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - Comma separated list of addresses to return - + cursor: `83` (str, optional) - The last transaction index to return + + addresses: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - Comma separated list of addresses to return + + cursor: `90` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4509,17 +4516,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", - "block_time": 1730886620, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_hash": "3d736d00b47d164c3591fed8490ab8c61ac4853a494cf0deb3773bd0fb8c8abc", + "block_time": 1730898769, + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322:0 4 ", + "utxos_info": " b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4527,14 +4534,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4542,7 +4549,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4561,17 +4568,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", - "block_time": 1730886606, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_hash": "55ee08d2ac5ed1cc1fe953521fd43be001432636fed97fe117ee619ac3f3ab8b", + "block_time": 1730898765, + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9:0 4 ", + "utxos_info": " 8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4579,14 +4586,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4594,7 +4601,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4613,17 +4620,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", - "block_time": 1730886603, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", + "block_time": 1730898762, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", + "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4631,14 +4638,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4646,7 +4653,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4665,17 +4672,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", - "block_time": 1730886600, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", + "block_time": 1730898757, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", + "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4683,14 +4690,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4698,7 +4705,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4717,17 +4724,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", - "block_time": 1730886595, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", + "block_time": 1730898744, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "supported": true, - "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", + "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4735,12 +4742,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4760,10 +4767,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4780,20 +4787,32 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 716, - "event": "MPMA_SEND", + "event_index": 761, + "event": "ORDER_EXPIRATION", "params": { + "block_index": 220, + "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_time": 1730898794 + }, + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 + }, + { + "event_index": 760, + "event": "CREDIT", + "params": { + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "tx_index": 81, - "block_time": 1730886620, + "block_index": 220, + "calling_function": "cancel order", + "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "quantity": 0, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730898794, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4801,98 +4820,71 @@ Returns the events of a list of addresses "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000000" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 }, { - "event_index": 715, + "event_index": 716, "event": "MPMA_SEND", "params": { - "asset": "MPMASSET", + "asset": "XCP", "block_index": 214, - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "memo": "memo3", - "msg_index": 1, + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "memo": "memo1", + "msg_index": 2, "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_time": 1730886620 + "block_time": 1730898769 }, { - "event_index": 714, + "event_index": 715, "event": "MPMA_SEND", "params": { "asset": "MPMASSET", "block_index": 214, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "memo": "the memo", - "msg_index": 0, + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "memo": "memo3", + "msg_index": 1, "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 - }, - { - "event_index": 713, - "event": "DEBIT", - "params": { - "action": "mpma send", - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "asset": "XCP", - "block_index": 214, - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "quantity": 10, - "tx_index": 81, - "utxo": null, - "utxo_address": null, - "block_time": 1730886620, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_time": 1730886620 + "block_time": 1730898769 } ], - "next_cursor": 712, - "result_count": 254 + "next_cursor": 714, + "result_count": 256 } ``` @@ -4901,7 +4893,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu,bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz,bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq` (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 @@ -4917,18 +4909,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "quantity": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4938,22 +4930,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4963,22 +4955,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", - "block_index": 216, - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "block_index": 223, + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4988,30 +4980,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730886641.799628, + "block_time": 1730898824.7521684, "btc_amount": 0, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "destination": "", "fee": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, - "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, + "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -5025,7 +5017,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -5038,7 +5030,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -5058,7 +5050,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5066,14 +5058,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5081,14 +5073,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5096,14 +5088,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -5118,7 +5110,7 @@ Returns the balances of an address "quantity_normalized": "825.99965000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5126,7 +5118,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5143,7 +5135,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -5156,7 +5148,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -5181,7 +5173,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5231,16 +5223,16 @@ Returns the credits of an address "result": [ { "block_index": 214, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5252,16 +5244,16 @@ Returns the credits of an address }, { "block_index": 213, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5273,16 +5265,16 @@ Returns the credits of an address }, { "block_index": 213, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5294,16 +5286,16 @@ Returns the credits of an address }, { "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5315,20 +5307,20 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "event": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886581, + "block_time": 1730898740, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5345,7 +5337,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5384,16 +5376,16 @@ Returns the debits of an address "result": [ { "block_index": 212, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5405,20 +5397,20 @@ Returns the debits of an address }, { "block_index": 212, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5426,16 +5418,16 @@ Returns the debits of an address }, { "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5447,20 +5439,20 @@ Returns the debits of an address }, { "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5468,20 +5460,20 @@ Returns the debits of an address }, { "block_index": 210, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "event": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886595, + "block_time": 1730898744, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5498,7 +5490,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address of the feed + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5533,7 +5525,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -5552,9 +5544,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", + "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", "block_index": 137, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5562,7 +5554,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886277, + "block_time": 1730898413, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5576,7 +5568,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -5595,14 +5587,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "7c47734a6ee7a2f33b0c1ad9317deb9a1dae7d63d87980275b6058c5ed37b4c2", + "tx_hash": "8fe6de4ce0b7f483efb269b49c145c96bd129fb037c8c90fdecaa5c597b24b17", "block_index": 112, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730886184, + "block_time": 1730898296, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5617,7 +5609,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -5636,10 +5628,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5647,7 +5639,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5660,10 +5652,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5671,11 +5663,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5684,10 +5676,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5695,11 +5687,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5708,10 +5700,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5719,7 +5711,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5732,10 +5724,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5743,11 +5735,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5765,7 +5757,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl` (str, required) - The address to return + + address: `bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m` (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 @@ -5784,10 +5776,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "363325b127e459a90d7a306995804fae5bcdd591c4fe5973652fd44d1ba50f4b", + "tx_hash": "9cabb396047dd7241313f9131a4b5a7e3f7a7a9213c360840ade79881132ce8c", "block_index": 151, - "source": "0c9dfaf54232e7be973691b86c950e256220902b5458d1ca65afad6816244fd8:0", - "destination": "bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl", + "source": "8816f586e3586a6ffe38bb114f1f022f738630f3f70b7addb798e06d08a9a5ce:0", + "destination": "bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5795,11 +5787,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886328, + "block_time": 1730898493, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5817,7 +5809,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + asset: `FREEFAIRMINT` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5845,7 +5837,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl` (str, required) - The address to return + + address: `bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m` (str, required) - The address to return + asset: `FREEFAIRMINT` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5873,7 +5865,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5902,9 +5894,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5913,7 +5905,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5924,7 +5916,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5941,9 +5933,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5952,7 +5944,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5963,11 +5955,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5989,7 +5981,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -6002,9 +5994,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6013,7 +6005,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6024,7 +6016,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6047,7 +6039,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 +6059,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6087,7 +6079,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6102,11 +6094,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6116,19 +6108,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6136,7 +6128,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6151,7 +6143,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6165,19 +6157,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6185,7 +6177,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6200,7 +6192,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6222,7 +6214,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address to return + + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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 @@ -6242,19 +6234,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6262,7 +6254,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6277,11 +6269,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6291,19 +6283,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6311,7 +6303,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6326,7 +6318,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6340,19 +6332,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6360,7 +6352,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6375,7 +6367,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6397,7 +6389,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -6418,19 +6410,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6438,7 +6430,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6453,7 +6445,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6467,19 +6459,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6487,7 +6479,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6502,7 +6494,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6524,7 +6516,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address to return + + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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` @@ -6545,19 +6537,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6565,7 +6557,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6580,7 +6572,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6594,19 +6586,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6614,7 +6606,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6629,7 +6621,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6651,7 +6643,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu` (str, required) - The address to return + + address: `bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz` (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 @@ -6670,16 +6662,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -6693,7 +6685,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6725,14 +6717,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", "msg_index": 0, "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6747,20 +6739,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886581, + "block_time": 1730898740, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", + "tx_hash": "5a7af4a1e2d6735e874e2271f8ba9f34cf2ff6b08b43ce63342239cc0eaf7d85", "msg_index": 0, "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6775,20 +6767,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886403, + "block_time": 1730898549, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", + "tx_hash": "afc31bab261d3338b6b1168b9682b0d2e012330502e350c8dc90093651ba244b", "msg_index": 0, "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6803,20 +6795,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730886399, + "block_time": 1730898544, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", + "tx_hash": "5df52d08f42b3f10fd555d494df49b6799e67fa12a5d889ad77222366d8dcb56", "msg_index": 0, "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6831,20 +6823,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886395, + "block_time": 1730898541, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "5c5b02a352c69a997df3828df766561ead6e67d71cb291d9f284dff3f11ff6fd", + "tx_hash": "de3cf70c12d0136d2c4c5abbaf5d5a69ec3b68f2d6861e9531f41ce54e04df22", "msg_index": 0, "block_index": 162, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6859,7 +6851,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886382, + "block_time": 1730898537, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6874,7 +6866,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The issuer or owner to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6897,8 +6889,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -6906,16 +6898,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -6923,16 +6915,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 180, @@ -6940,16 +6932,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, + "first_issuance_block_time": 1730898516, + "last_issuance_block_time": 1730898523, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -6957,16 +6949,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730886317, - "last_issuance_block_time": 1730886317, + "first_issuance_block_time": 1730898481, + "last_issuance_block_time": 1730898481, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 40, @@ -6974,8 +6966,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730886271, - "last_issuance_block_time": 1730886274, + "first_issuance_block_time": 1730898407, + "last_issuance_block_time": 1730898410, "supply_normalized": "0.00000040" } ], @@ -6989,7 +6981,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The issuer to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -7012,8 +7004,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -7021,16 +7013,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -7038,16 +7030,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 180, @@ -7055,16 +7047,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, + "first_issuance_block_time": 1730898516, + "last_issuance_block_time": 1730898523, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -7072,16 +7064,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730886317, - "last_issuance_block_time": 1730886317, + "first_issuance_block_time": 1730898481, + "last_issuance_block_time": 1730898481, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 40, @@ -7089,8 +7081,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730886271, - "last_issuance_block_time": 1730886274, + "first_issuance_block_time": 1730898407, + "last_issuance_block_time": 1730898410, "supply_normalized": "0.00000040" } ], @@ -7104,7 +7096,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The owner to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7127,8 +7119,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -7136,16 +7128,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -7153,16 +7145,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 180, @@ -7170,16 +7162,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, + "first_issuance_block_time": 1730898516, + "last_issuance_block_time": 1730898523, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -7187,16 +7179,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730886317, - "last_issuance_block_time": 1730886317, + "first_issuance_block_time": 1730898481, + "last_issuance_block_time": 1730898481, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 40, @@ -7204,8 +7196,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730886271, - "last_issuance_block_time": 1730886274, + "first_issuance_block_time": 1730898407, + "last_issuance_block_time": 1730898410, "supply_normalized": "0.00000040" } ], @@ -7219,8 +7211,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return - + cursor: `83` (str, optional) - The last transaction index to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + cursor: `90` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7238,17 +7230,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", - "block_time": 1730886603, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", + "block_time": 1730898762, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", + "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7256,14 +7248,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7271,7 +7263,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7290,17 +7282,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", - "block_time": 1730886600, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", + "block_time": 1730898757, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", + "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7308,14 +7300,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7323,7 +7315,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7342,17 +7334,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", - "block_time": 1730886595, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", + "block_time": 1730898744, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "supported": true, - "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", + "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7360,12 +7352,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7376,17 +7368,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", "block_index": 209, - "block_hash": "3eee0202e49997e9138f321ad34f3ebc4b0f05692963a115eaf5c152a5ee65b5", - "block_time": 1730886581, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "7c515a6e0922fe0def0d949bf564cfe18c524a326a51d16417e5c82c01f526ca", + "block_time": 1730898740, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b:1 2 ", + "utxos_info": " 23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7411,17 +7403,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 202, - "block_hash": "0d9e15163c4725e3733cbcdfebd1a077c34264a34de5681049530a0ec14a4832", - "block_time": 1730886548, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3cefda465642e6950410081f78c82cc5ea312c1db554802d891858b8174c14cf", + "block_time": 1730898704, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c:1 2 ", + "utxos_info": " 64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7438,7 +7430,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7459,7 +7451,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -7478,20 +7470,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7516,7 +7508,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7545,9 +7537,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7564,7 +7556,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7592,9 +7584,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7611,7 +7603,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7639,9 +7631,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7658,7 +7650,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7686,9 +7678,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "block_index": 213, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "block_index": 220, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7701,11 +7693,11 @@ Returns the orders of an address "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898794, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7742,7 +7734,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The source of the fairminter to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7767,10 +7759,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "tx_index": 44, "block_index": 159, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7795,7 +7787,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7807,10 +7799,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", + "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7835,7 +7827,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730886348, + "block_time": 1730898512, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7844,10 +7836,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7872,7 +7864,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730886271, + "block_time": 1730898407, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7884,10 +7876,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7912,7 +7904,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730886255, + "block_time": 1730898381, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7924,10 +7916,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", + "tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7952,7 +7944,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730886251, + "block_time": 1730898376, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7964,10 +7956,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7992,7 +7984,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8014,7 +8006,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address of the mints to return + + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8032,22 +8024,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8056,22 +8048,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", "tx_index": 45, "block_index": 158, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886356, + "block_time": 1730898520, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8080,22 +8072,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886274, + "block_time": 1730898410, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8104,22 +8096,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886266, + "block_time": 1730898402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8128,22 +8120,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886262, + "block_time": 1730898388, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8152,22 +8144,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "390924b7ff0790fb00684834a44113047037bfabf1ab65af88f02a8846492d1f", + "tx_hash": "3ecb5d63127ffd9177a63b61b38c60f2a5565baf6bb30926ee0f3aff7acf59d9", "tx_index": 19, "block_index": 132, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886259, + "block_time": 1730898385, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8176,22 +8168,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "348fb1aaceebdc68efbbb9071e4604c31756d3cd4ea3fcf68f24c7d7e28e7c13", + "tx_hash": "38d40d2b91efed74d8498647729dc1339a295b593b29133217fe68bbcac63bf4", "tx_index": 15, "block_index": 127, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886238, + "block_time": 1730898364, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8200,22 +8192,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8234,7 +8226,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address of the mints to return + + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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` @@ -8253,22 +8245,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8289,7 +8281,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0` (str, required) - The utxo to return + + utxo: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8309,8 +8301,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8323,12 +8315,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8368,8 +8360,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will make the bet - + feed_address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will make the bet + + feed_address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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) @@ -8443,7 +8435,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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) @@ -8505,7 +8497,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8516,9 +8508,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985766, - "btc_fee": 14234, - "rawtransaction": "020000000001018b4dfb8e206f20712453a9d9959f580f043aa1b465aa63c1b8176e209fbc24f3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0200000000000000002b6a29493a8c69426454a968f746df4d46beeae1f2bf82863c0270b0889be44b2d5a3c4d1c298757ab544e7d66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985786, + "btc_fee": 14214, + "rawtransaction": "020000000001011f26920a04a29ce9c43871a74e2cdcd812609941351ae1885cb421f02e60a7d7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0200000000000000002b6a293e05675e09c8cf2a17734419a1ca7604fbd84a4bf747ddeb0fb14b0610cab5f3494f88b803e84338067aba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8540,8 +8532,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending the payment - + order_match_id: `7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c` (str, required) - The ID of the order match to pay for + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending the payment + + order_match_id: `8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe` (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) @@ -8599,24 +8591,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "data": "434e5452505254590b8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980884, - "btc_fee": 18116, - "rawtransaction": "02000000000101a829b8346ce37e8bf2b3ea16712ce37cf845502770a623c7587813d9447c3823000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e8030000000000001600147b8d32180ac4c5c380d3d70e5121633b537a226400000000000000004b6a490b20e455032e9e62a99c253c3e59653d0e708151c34960e05b3b645e757d8c67a94813449cabcd858c2cbd9cbb578d74a88e0c7eb850694bf73447d9bbf5368934ff1150f4e497d70b54a7052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999980910, + "btc_fee": 18090, + "rawtransaction": "020000000001018ac98cb5e07e7ebaecd4544792ba69f7520a39081b66cc81e6c7722f8028eb3d000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e8030000000000001600148866238a1b690fe23cd7db55f93c555a4c161e3200000000000000004b6a49bddcaf612bd8e8b982ea2bf027e094462c5e4db35c0426b684e56ded8020b991c4dfb2ed68220c26aa909967ac7ecc446184dd995eda98bf4fd591dd2374ff2b424989c48b1fa803946ea7052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "status": "valid" } } @@ -8629,7 +8621,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address with the BTC to burn + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -8690,7 +8682,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8699,9 +8691,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": 4999985766, - "btc_fee": 13234, - "rawtransaction": "020000000001019cc202bedc122198f6b12678a98dd90de2fa7fc318a6ff41d7a5bd3136885e0d000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000" + "btc_change": 4999985785, + "btc_fee": 13215, + "rawtransaction": "0200000000010175505947253fe180015f3d5d2d2bcc88da78d0374f8aeeb63cba417a8b9ab445000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac79ba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000" } } ``` @@ -8711,8 +8703,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: `bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096` (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) @@ -8770,22 +8762,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "data": "434e54525052545946a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", "btc_in": 4949918908, "btc_out": 0, - "btc_change": 4949904674, - "btc_fee": 14234, - "rawtransaction": "02000000000101f24a195a18e1da52602ddbbc13bfbffc31f4c874a5c8daf3d7c8e7e9208e35a901000000160014e62456afc0c558231e013678f81fb805ef35313dffffffff0200000000000000002b6a29ff4b8dea9e40339979dba3a76af618d3f083605b8b46113ccdd50ca4cbfebc8c8252de40ac151aa921228d092701000000160014e62456afc0c558231e013678f81fb805ef35313d02000000000000", + "btc_change": 4949904694, + "btc_fee": 14214, + "rawtransaction": "0200000000010196b010c4f14eb4b263dcc5b2ebd574e1c0a60d0e35ef6004004fe992531ce3a801000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e396ffffffff0200000000000000002b6a2913427da40a73ff22b57560ac1a5e2c647d1ee0fbd909c290fbc80e3f81262db6bd3d29b05e8350f971368d092701000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e39602000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", "status": "valid" } } @@ -8798,7 +8790,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -8859,7 +8851,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8877,9 +8869,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986295, - "btc_fee": 13705, - "rawtransaction": "02000000000101855a9a51c83577baa8d3f9ff9e61a9f3a1579351ff1657166f3c0ed000d4cd51000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000226a208f0307d7f1420e3684cf2424ae44beac95f89d514a977b3c3ff71b82d313124c77bc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999986315, + "btc_fee": 13685, + "rawtransaction": "0200000000010164ae3656cbb3db3af50bf78b72e4334a948f3fd9ccff761d6f35973063ddffbd000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000226a2041e69f4fdfdb37994a3e4970786c46b606bc0099d6a174cd6af7aed20e774d618bbc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8899,7 +8891,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: `bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy` (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) @@ -8966,7 +8958,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8989,9 +8981,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859506, - "btc_fee": 14293, - "rawtransaction": "020000000001012e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d02000000160014624b13a86be421eb76d68cecd83105881369410fffffffff0200000000000000002c6a2a2434d6006027eff29f2f1e426b10f2fef716b6f73d19ba8abdd55401e26a4412d8dcda666175cdda2ce6b2dc082701000000160014624b13a86be421eb76d68cecd83105881369410f02000000000000", + "btc_change": 4949859527, + "btc_fee": 14272, + "rawtransaction": "02000000000101b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f60200000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6fffffffff0200000000000000002c6a2aed10c2a73d16732ffb8c3b160726f88e075a38b11a8621651a41c17968d155492a8c588ccf686e064069c7dc08270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9017,7 +9009,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -9078,7 +9070,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9086,7 +9078,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9103,9 +9095,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986236, - "btc_fee": 13764, - "rawtransaction": "02000000000101cc98a969b4f945a78368d8916d2c7d9bee9d69749495cb1865445e64349c67c3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21815332422fbde6a1aea35c7ec44a180c434513f8fd7473e601d3b35729529266bb3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999986256, + "btc_fee": 13744, + "rawtransaction": "0200000000010137ca04a987548ae9224a7b556e3b6b6fe71b779f50029a25e8beb974a1991668000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a21bf85e8640974884939c4ba68a062ab2fe65a5a4b72beee71fde295c91561c1f0fe50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9126,10 +9118,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -9196,10 +9188,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "transfer_destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "lock": false, "reset": false, @@ -9211,9 +9203,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": 4999983690, - "btc_fee": 15764, - "rawtransaction": "02000000000101028f9389d6e5c7f90fc8b94881a272584c6434aa79be0428157e3069be230421000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000236a217abb78cb6e881cfbd0f8a7a0fdeb568fd4b9f25f44937be3585e3368045afa03a64ab2052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999983713, + "btc_fee": 15741, + "rawtransaction": "0200000000010138cd9ca70f96225144ec6cda7db6239752465c0740b867ea640b4c947bc93105000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000236a21a12053d440562b7c5ca67bbca734003946afed661ae2d7649f9df42fee641b0bb261b2052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9242,9 +9234,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: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FREEFAIRMINT` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl,bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9311,16 +9303,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", 1 ], [ "FREEFAIRMINT", - "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", 2 ] ], @@ -9329,26 +9321,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807b8d32180ac4c5c380d3d70e5121633b537a226480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd4012737f10d9927d5000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002808866238a1b690fe23cd7db55f93c555a4c161e3280c3e651caf10c27fd0c95beeef77d2ddbf5328ab54012737f10d9927d5000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785237, - "btc_fee": 20763, - "rawtransaction": "0200000000010122c3c583c72bdbe3f3f2ecf55416203822230d62a06d7e09fd540253679d456203000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcdffffffff03e803000000000000695121035d646b1cdc084e0a2e09bf0839ee5bb51b343a850f03ef6e25525a840609bd7f210368ead1e23823ce3b006f65565be8b4f378db74d1f042fd8f1f56c86aca3b1235210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053aee8030000000000006951210242646b1cdc084e0a2e5abf0ab995d687031afe40cc833cb92b077be73d5ac74721034a8e50486603073525acb6a3f4dad1cdf36a19f7bf6f30cf0d25b77a13a96f04210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053ae95ba072701000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd02000000000000", + "btc_change": 4949785267, + "btc_fee": 20733, + "rawtransaction": "020000000001018ed4ff4164d68262c320ae21eef08ee8085683b2f00910c14bb1980c508a3bb803000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab5ffffffff03e803000000000000695121028de71ffdf85c16d2cd5b19121f750f1c9fdcbbce92d5c3560de6fe938ba009fd2102d12779a7e8950e0e379fde6abcf1c98b46520962b36ca56c869d1d2486228cb121032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aee8030000000000006951210292e71ffdf85c16d2cd0819109ffd693f15e3d2c170e9148d581bc2c6d1ec1f282102cf15f8640ec4c4ff3bb82366294f277c3b7fd29781e6102c94ee62345fb0f16721032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aeb3ba072701000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab502000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FREEFAIRMINT", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9364,7 +9356,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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 @@ -9428,7 +9420,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9446,7 +9438,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9458,9 +9450,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985178, - "btc_fee": 14822, - "rawtransaction": "0200000000010149e6efe4ad0a8dd972f22d8ccc4164198fd959c30a8afb65fda68a861736f630000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000356a33a6e1e691f9fa705391f2df264dac2ac42ce78c0cd889f759fb725c65d61e1601b8f52ad2dee8dc8ceb3159594a681c216a5ec51ab8052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985199, + "btc_fee": 14801, + "rawtransaction": "02000000000101c70fc97b78bd7034fe2d3f9004a46d8006a66784a9929d830ee82eaf726f5158000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000356a330cb28c2f88b24650c272ec55edec5b7a31bc88a410b6cc14d45df5529ed60eb94ebbf649de531d141502200b5a32a390bfd6bf2fb8052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9486,8 +9478,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address that will be receiving the asset + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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 @@ -9553,8 +9545,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9571,19 +9563,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "434e54525052545902000000000000000100000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985472, - "btc_fee": 14528, - "rawtransaction": "0200000000010176adf4c96cdfb64fe7d8f3459b6991979152f66583c03ae446750c5efdc44233000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000306a2e6a8e01aff6e7de1d30cbc25f6e9b981676e8c633aa9dbb9dcc01c57c24ed8fd507f4d6d714a286e08b71c3c3118b40b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985493, + "btc_fee": 14507, + "rawtransaction": "02000000000101275f8f9d807f9d3a3ea26cc21cdb9e8bd02473ef52e2c4510c3944766e6f3cc7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000306a2e4a351f39f607b988bb1084bd9056d04cb3997b670785d105977fbedc43dd615ef56b511ea26d7c6b6803d5dd324455b9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "quantity_normalized": "0.00001000" } @@ -9597,8 +9589,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending - + destination: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending + + destination: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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 @@ -9658,24 +9650,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd07ffff", + "data": "434e5452505254590480c3e651caf10c27fd0c95beeef77d2ddbf5328ab507ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986236, - "btc_fee": 13764, - "rawtransaction": "020000000001017a417f3513fdd7dc612af97e0ee6db660d6003b94eadd0a6e4ae2edd258c56b3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21e8669fe856070345d5cd5fcfdb1622581aee9dd67b95cd3a8e3d9e857582969a0d3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999986256, + "btc_fee": 13744, + "rawtransaction": "02000000000101d510690fb211173b73d75d0eb18bcd9df309e406eb936e1e226de3f6343ab516000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a216bc35627c64c3bb817cdcdf526daf2eaead0a68d42524cee3058940662f921352d50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "flags": 7, "memo": "ffff" } @@ -9689,8 +9681,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq` (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` @@ -9749,8 +9741,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "quantity": 1000, "skip_validation": false }, @@ -9758,9 +9750,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984589, - "btc_fee": 14411, - "rawtransaction": "02000000000101962bc2a009c7f79714fc2d3941ea1042b3f037d12f73cdacacdc8c7efba6fd9c000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e803000000000000160014fa6b94743d53f5f6af69583dd022e460c5a7074c00000000000000000c6a0a511d742f0ea868b132cdcdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999984610, + "btc_fee": 14390, + "rawtransaction": "02000000000101568bc9e3a73e1d8eabc6631161efd3d5db9313886eadbbfccb687d15a7afcd95000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e803000000000000160014cb84369aaa777801d6d572f0dde4294cbf91d44f00000000000000000c6a0a75757985319c705349d3e2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9777,7 +9769,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be issuing the asset + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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: `` @@ -9868,7 +9860,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9898,9 +9890,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985413, - "btc_fee": 14587, - "rawtransaction": "02000000000101d43d7acc00907086c9aabd7fa6995838005e778649d7102aa4a6e2dd539e9158000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000316a2fda14fd26bd30d6a7615b945b6b0a69e79f5c0bc845df1dc9a75e66395ccd946396faa541d1cb2a413f9762aae8cd6305b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985434, + "btc_fee": 14566, + "rawtransaction": "020000000001015dc2b22cfdd0ff5c24829aaab5c4387acfa517478203f77e9ac07622774977e1000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000316a2fa81466c8bc106f07472813851f995b5088ee75e832b732391e0996feec362ddb8cd22b040e6555b13b2dfccb8d25771ab9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9939,7 +9931,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: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address that will be minting the asset + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -10000,14 +9992,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -10017,9 +10009,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": 4999987001, - "btc_fee": 12999, - "rawtransaction": "0200000000010136c36c53b6c41332021f1a5bd09ce0db8cbdc1d19d098ae9752b5794ecf03d1f000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000166a14a4116968c44adf991436772cb5e7083da06eb40f39bf052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999987020, + "btc_fee": 12980, + "rawtransaction": "02000000000101eb1278f82d60cbb72e82b894b5ba1f723e044daa85b8409e86501c6b10724285000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000166a14741a301b7be4b4adde7275b8b564d45731cbe2234cbf052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10038,7 +10030,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address from which the assets are attached + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10102,7 +10094,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10120,9 +10112,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984573, - "btc_fee": 14881, - "rawtransaction": "0200000000010189acbc31f714a8230cef894e93178acb320d10506c4f2a8af2f5ef773bec22fe000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000146a12d19841328717b7e718064ed72456dd4845febdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999984594, + "btc_fee": 14860, + "rawtransaction": "02000000000101a6f8fd141df24a6a7bdc80bc7a998fcd167006e2a8df362810a3f0c9af450815000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000146a128553f23205b8a06d14241944d54f34b58fbdd2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10142,8 +10134,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: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10206,22 +10198,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713077786e79787132636e7a753871786e367538397a6774723864666835676e79737439786a6c", + "data": "434e5452505254596662637274317133706e7a387a736d64793837793078686d64326c6a307a34746678707638336a3875636d6e38", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945413, - "btc_fee": 25587, - "rawtransaction": "020000000001022e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d000000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff473f290d82dad686230fef5b223c5e3da0436844f09c72f2210fb9e1010f3d02010000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff020000000000000000376a352434d6006027eff2f54d7d301f2183ce816ed88e456888ea3baf213993122a2745e4e31c0601bfe22c80b65e5004721d93539e5904452c0a27010000001600141ad1af8b95b1ea4881905a2154d06b313e97901f02000002000000000000", + "btc_change": 4949945450, + "btc_fee": 25550, + "rawtransaction": "02000000000102b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f600000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff8507ccc200545adb00db06cf3e1d341d1b00517f5b14121efbaa5840407855cd01000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff020000000000000000376a35ed10c2a73d16732f91ee5864731789bd7634428960f54c028b79f60058a93d27a6be34e6ff125a724211eda463802d049ab645ee1b6a2c0a2701000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl" + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8" } } } @@ -10321,12 +10313,46 @@ Returns the valid assets ``` { "result": [ + { + "asset": "PARENTB", + "asset_id": "4641584819", + "asset_longname": null, + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset PARENTB", + "first_issuance_block_index": 217, + "last_issuance_block_index": 217, + "confirmed": true, + "first_issuance_block_time": 1730898781, + "last_issuance_block_time": 1730898781, + "supply_normalized": "1000.00000000" + }, + { + "asset": "PARENTA", + "asset_id": "4641584818", + "asset_longname": null, + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset PARENTA", + "first_issuance_block_index": 215, + "last_issuance_block_index": 215, + "confirmed": true, + "first_issuance_block_time": 1730898773, + "last_issuance_block_time": 1730898773, + "supply_normalized": "1000.00000000" + }, { "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -10334,16 +10360,16 @@ Returns the valid assets "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "owner": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "owner": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false, "supply": 100000000000, @@ -10351,16 +10377,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730886556, - "last_issuance_block_time": 1730886556, + "first_issuance_block_time": 1730898711, + "last_issuance_block_time": 1730898711, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -10368,47 +10394,13 @@ Returns the valid assets "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETB", - "asset_id": "103804245871", - "asset_longname": null, - "issuer": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "owner": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 161, - "last_issuance_block_index": 161, - "confirmed": true, - "first_issuance_block_time": 1730886377, - "last_issuance_block_time": 1730886377, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, - "supply_normalized": "0.00000180" } ], - "next_cursor": 6, - "result_count": 11 + "next_cursor": 9, + "result_count": 13 } ``` @@ -10431,8 +10423,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -10440,8 +10432,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730886221, - "last_issuance_block_time": 1730886232, + "first_issuance_block_time": 1730898347, + "last_issuance_block_time": 1730898357, "supply_normalized": "100.00000000" } } @@ -10472,7 +10464,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10480,14 +10472,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10495,7 +10487,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -10513,7 +10505,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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. @@ -10525,7 +10517,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -10579,9 +10571,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10598,7 +10590,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10626,9 +10618,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10645,7 +10637,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10673,9 +10665,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10692,7 +10684,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10720,9 +10712,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "block_index": 213, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "block_index": 220, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10735,11 +10727,11 @@ Returns the orders of an asset "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898794, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10767,9 +10759,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10786,7 +10778,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10850,13 +10842,13 @@ Returns the orders of an asset { "result": [ { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10870,7 +10862,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10890,13 +10882,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 56, - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10910,7 +10902,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10930,13 +10922,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", "tx0_index": 53, - "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 54, - "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10950,7 +10942,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10970,13 +10962,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10990,7 +10982,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11070,20 +11062,20 @@ Returns the credits of an asset "result": [ { "block_index": 199, - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "event": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "tx_index": 65, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11091,20 +11083,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", + "event": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11112,20 +11104,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11133,20 +11125,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "event": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11158,16 +11150,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11222,17 +11214,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 216, + "block_index": 223, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11243,17 +11235,17 @@ Returns the debits of an asset "quantity_normalized": "20.00000000" }, { - "block_index": 214, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_index": 217, + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "tx_index": 81, + "quantity": 50000000, + "action": "issuance fee", + "event": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", + "tx_index": 84, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11261,20 +11253,20 @@ Returns the debits of an asset "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.50000000" }, { - "block_index": 213, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_index": 215, + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", - "tx_index": 80, + "quantity": 50000000, + "action": "issuance fee", + "event": "efeb32ad1e798d9117382cdd1d0e9714530e4f27b6d57ca9e6d5b6bc9186b375", + "tx_index": 82, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898773, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11282,20 +11274,20 @@ Returns the debits of an asset "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.50000000" }, { - "block_index": 212, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_index": 214, + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", - "tx_index": 79, + "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11306,17 +11298,17 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" }, { - "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_index": 213, + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", - "tx_index": 78, + "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11327,8 +11319,8 @@ Returns the debits of an asset "quantity_normalized": "0.00000010" } ], - "next_cursor": 64, - "result_count": 46 + "next_cursor": 69, + "result_count": 48 } ``` @@ -11396,14 +11388,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", + "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -11418,20 +11410,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -11446,20 +11438,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -11474,20 +11466,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -11502,7 +11494,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886221, + "block_time": 1730898347, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11535,11 +11527,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11547,7 +11539,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11560,10 +11552,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11571,7 +11563,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11584,10 +11576,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11595,7 +11587,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11608,10 +11600,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11619,7 +11611,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11632,10 +11624,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11643,7 +11635,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11694,9 +11686,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11705,7 +11697,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11716,7 +11708,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11733,9 +11725,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", + "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", "block_index": 142, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11744,7 +11736,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11755,7 +11747,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886295, + "block_time": 1730898440, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11772,9 +11764,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", + "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", "block_index": 150, - "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", + "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11782,10 +11774,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -11794,7 +11786,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886324, + "block_time": 1730898490, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11811,18 +11803,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11833,7 +11825,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11859,7 +11851,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - The address to return + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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` @@ -11872,9 +11864,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11883,7 +11875,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11894,7 +11886,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11945,7 +11937,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11953,7 +11945,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11962,7 +11954,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11970,7 +11962,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11979,7 +11971,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11987,7 +11979,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11996,7 +11988,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -12031,29 +12023,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12068,7 +12060,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12082,27 +12074,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", + "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", "block_index": 147, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12117,7 +12109,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886314, + "block_time": 1730898478, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12131,19 +12123,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12151,7 +12143,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12166,7 +12158,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12180,19 +12172,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12200,7 +12192,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12215,7 +12207,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12258,8 +12250,8 @@ Returns asset subassets "asset": "A95428958968845068", "asset_id": "95428958968845068", "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 0, @@ -12267,8 +12259,8 @@ Returns asset subassets "first_issuance_block_index": 156, "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1730886348, - "last_issuance_block_time": 1730886348, + "first_issuance_block_time": 1730898512, + "last_issuance_block_time": 1730898512, "supply_normalized": "0.00000000" } ], @@ -12307,10 +12299,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12335,7 +12327,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12375,22 +12367,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", + "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", "tx_index": 13, "block_index": 125, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -12399,22 +12391,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "tx_index": 12, "block_index": 124, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -12423,22 +12415,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -12457,7 +12449,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3` (str, required) - The address of the mints to return + + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (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` @@ -12476,22 +12468,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -12544,9 +12536,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12563,7 +12555,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12591,9 +12583,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12610,7 +12602,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12638,9 +12630,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12657,7 +12649,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12685,9 +12677,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12704,7 +12696,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12731,45 +12723,45 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 64, - "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "block_index": 213, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 0, + "tx_index": 58, + "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "block_index": 214, + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, "expiration": 21, - "expire_index": 219, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898769, "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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.00000000", - "give_remaining_normalized": "0.00000000", + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -12778,7 +12770,7 @@ Returns all the orders "get_price_normalized": "1.0000000000000000" } ], - "next_cursor": 58, + "next_cursor": 64, "result_count": 8 } ``` @@ -12788,7 +12780,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2` (str, required) - The hash of the transaction that created the order + + order_hash: `a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096` (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. @@ -12799,10 +12791,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 82, - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "tx_index": 89, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -12810,7 +12802,7 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 236, + "expire_index": 243, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12819,11 +12811,11 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886624, + "block_time": 1730898812, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -12853,7 +12845,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308` (str, required) - The hash of the transaction that created the order + + order_hash: `8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a` (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 @@ -12880,13 +12872,13 @@ Returns the order matches of an order { "result": [ { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12900,7 +12892,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12930,7 +12922,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb` (str, required) - The hash of the transaction that created the order + + order_hash: `39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518` (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 @@ -12949,15 +12941,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "btc_amount": 2000, - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "status": "valid", "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "btc_amount_normalized": "0.00002000" } ], @@ -13001,9 +12993,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13021,7 +13013,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730886496, + "block_time": 1730898646, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13047,9 +13039,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "block_index": 214, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13067,7 +13059,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730886620, + "block_time": 1730898769, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13093,9 +13085,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13113,7 +13105,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13139,9 +13131,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13159,7 +13151,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13185,9 +13177,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13205,7 +13197,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13268,13 +13260,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13291,7 +13283,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13311,13 +13303,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 56, - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13334,7 +13326,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886496, + "block_time": 1730898646, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13354,13 +13346,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", "tx0_index": 53, - "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 54, - "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13377,7 +13369,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886417, + "block_time": 1730898572, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13397,13 +13389,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13420,7 +13412,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13478,13 +13470,13 @@ Returns all the order matches { "result": [ { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13498,7 +13490,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13518,13 +13510,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 56, - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13538,7 +13530,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13558,13 +13550,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", "tx0_index": 53, - "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 54, - "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13578,7 +13570,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13598,13 +13590,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13618,7 +13610,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13786,66 +13778,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", + "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", "block_index": 121, - "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", + "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730886217, + "block_time": 1730898343, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ee366d303008de29c1f29cdff882b519245f6652ddfe99ddc933e610beda5115", + "tx_hash": "d04e1815ea01ea320d5bd70e7bcda49e0f042749f91b3116584ff7a4a1a9edd4", "block_index": 120, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730886214, + "block_time": 1730898340, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "43da716b1f2f1e00880372cb84be2a52dfa70aa764de4564d5e265d2364c2c8d", + "tx_hash": "6d6092b5d22a3ad8197e66cd85362be31503d99b5b030532ec9e64756dd21ca0", "block_index": 119, - "source": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730886211, + "block_time": 1730898336, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "382b4c27437eab49985a9e81ecf9f3ece4477debd0ac690ed8a979ad3471a47d", + "tx_hash": "5fe912a7879caa5bc0c86788564c5c07c8f9ab632b9dc008845061755b9eb4ed", "block_index": 118, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730886207, + "block_time": 1730898332, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c2b948594d283e13dc4281672b2b78d7ff522fcc711344881a19de5b805a5600", + "tx_hash": "14d1b38c8dc9ae9bd3b115f907e94a6a7561124382141848df564e207ab5bfc6", "block_index": 117, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730886203, + "block_time": 1730898329, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13890,9 +13882,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13901,7 +13893,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13912,7 +13904,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13929,9 +13921,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", + "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", "block_index": 142, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13940,7 +13932,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13951,7 +13943,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886295, + "block_time": 1730898440, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13968,9 +13960,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", + "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", "block_index": 150, - "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", + "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13978,10 +13970,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -13990,7 +13982,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886324, + "block_time": 1730898490, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14007,9 +13999,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14018,7 +14010,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14029,11 +14021,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -14046,18 +14038,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14068,7 +14060,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14094,7 +14086,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171` (str, required) - The hash of the dispenser to return + + dispenser_hash: `b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09` (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. @@ -14106,9 +14098,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14117,7 +14109,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14128,7 +14120,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14151,7 +14143,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171` (str, required) - The hash of the dispenser to return + + dispenser_hash: `b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09` (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 @@ -14171,19 +14163,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14191,7 +14183,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14206,7 +14198,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14220,19 +14212,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14240,7 +14232,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14255,7 +14247,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14297,20 +14289,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -14335,7 +14327,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598` (str, required) - The hash of the dividend to return + + dividend_hash: `65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c` (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. @@ -14347,20 +14339,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -14382,7 +14374,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c` (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 @@ -14405,12 +14397,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "event": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "tx_index": 42, - "utxo": "3264140a2e7efabf03b12425c19a3dadb411458ec26c4bc3e8d1db42758660ef:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "utxo": "ed49366d20a6a726ce19d702e5991e11d77b163b8b6ee4d78846be58f66ff3ec:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14435,7 +14427,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14452,47 +14444,47 @@ Returns all events { "result": [ { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14503,20 +14495,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14526,24 +14518,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14553,13 +14545,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 733, - "result_count": 739 + "next_cursor": 787, + "result_count": 793 } ``` @@ -14568,7 +14560,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `738` (int, required) - The index of the event to return + + event_index: `792` (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. @@ -14579,19 +14571,19 @@ Returns the event of an index ``` { "result": { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 } } ``` @@ -14623,7 +14615,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 69 + "event_count": 76 }, { "event": "SWEEP", @@ -14635,7 +14627,7 @@ Returns the event counts of all blocks }, { "event": "ORDER_UPDATE", - "event_count": 16 + "event_count": 17 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -14649,7 +14641,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `738` (str, optional) - The last event index to return + + cursor: `792` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14666,19 +14658,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14688,24 +14680,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14715,51 +14707,51 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 711, + "event_index": 760, "event": "CREDIT", "params": { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", - "block_index": 214, - "calling_function": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "quantity": 10, - "tx_index": 81, + "block_index": 220, + "calling_function": "cancel order", + "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "quantity": 0, + "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730886620, + "block_time": 1730898794, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14767,42 +14759,42 @@ Returns the events filtered by event name "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000000" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 }, { - "event_index": 710, + "event_index": 748, "event": "CREDIT", "params": { - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "asset": "MPMASSET", - "block_index": 214, - "calling_function": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "quantity": 10, - "tx_index": 81, + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960545690062", + "block_index": 218, + "calling_function": "issuance", + "event": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "quantity": 100000000000, + "tx_index": 85, "utxo": null, "utxo_address": null, - "block_time": 1730886620, + "block_time": 1730898785, "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset_longname": "PARENTB.SUBASSETB", + "description": "My super subasset SUBASSETB", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "1000.00000000" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "block_index": 218, + "block_time": 1730898785 } ], - "next_cursor": 709, - "result_count": 96 + "next_cursor": 740, + "result_count": 101 } ``` @@ -14823,7 +14815,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 96 + "event_count": 101 } } ``` @@ -14852,29 +14844,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14889,7 +14881,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14903,19 +14895,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14923,7 +14915,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14938,11 +14930,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -14952,27 +14944,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", + "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", "block_index": 147, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14987,7 +14979,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886314, + "block_time": 1730898478, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15001,19 +14993,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15021,7 +15013,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15036,7 +15028,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15050,19 +15042,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15070,7 +15062,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15085,7 +15077,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15126,11 +15118,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15138,7 +15130,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15150,11 +15142,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15162,11 +15154,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -15175,10 +15167,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15186,7 +15178,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15199,10 +15191,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15210,11 +15202,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -15223,10 +15215,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15234,11 +15226,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -15288,148 +15280,148 @@ Returns all the issuances { "result": [ { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, + "block_index": 221, + "asset": "A95428960586448133", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, + "description": "", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "c622762c16349bf83423fcf478e846bfbad4ee4593c4f81368e9c543ef2e3863", + "tx_index": 87, + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", "msg_index": 0, - "block_index": 204, - "asset": "UTXOASSET", - "quantity": 100000000000, + "block_index": 220, + "asset": "A95428960545690062", + "quantity": 0, "divisible": true, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset", - "fee_paid": 50000000, + "description": "My super subasset SUBASSETB", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETB", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886556, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898794, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" }, { - "tx_index": 52, - "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", + "tx_index": 86, + "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", "msg_index": 0, - "block_index": 165, - "asset": "A95428956980101314", - "quantity": 100000000000, + "block_index": 219, + "asset": "A95428960939749879", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "A subnumeric asset", + "description": "My super subasset SUBASSETA", "fee_paid": 0, "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", + "asset_longname": "PARENTA.SUBASSETA", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886403, - "quantity_normalized": "1000.00000000", + "block_time": 1730898790, + "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 51, - "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", + "tx_index": 85, + "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", "msg_index": 0, - "block_index": 164, - "asset": "TESTLOCKDESC", - "quantity": 0, + "block_index": 218, + "asset": "A95428960545690062", + "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "Test Locking Description", + "description": "My super subasset SUBASSETB", "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETB", "locked": false, "reset": false, - "description_locked": true, + "description_locked": false, "fair_minting": false, - "asset_events": "lock_description", + "asset_events": "creation", "confirmed": true, - "block_time": 1730886399, - "quantity_normalized": "0.00000000", + "block_time": 1730898785, + "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 50, - "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", + "tx_index": 84, + "tx_hash": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", "msg_index": 0, - "block_index": 163, - "asset": "A95428959745315388", - "quantity": 0, + "block_index": 217, + "asset": "PARENTB", + "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, + "description": "My super asset PARENTB", + "fee_paid": 50000000, "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "asset_longname": null, "locked": false, "reset": false, "description_locked": false, "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886395, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" + "block_time": 1730898781, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 22, - "result_count": 27 + "next_cursor": 29, + "result_count": 34 } ``` @@ -15438,7 +15430,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b` (str, required) - The hash of the transaction to return + + tx_hash: `3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb` (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. @@ -15449,32 +15441,32 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, + "block_index": 221, + "asset": "A95428960586448133", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, + "description": "", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" } } ``` @@ -15504,16 +15496,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -15527,7 +15519,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6` (str, required) - The hash of the transaction to return + + tx_hash: `50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3` (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. @@ -15540,16 +15532,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -15583,9 +15575,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15593,14 +15585,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886280, + "block_time": 1730898417, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", + "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", "block_index": 137, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15608,7 +15600,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886277, + "block_time": 1730898413, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15622,7 +15614,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36` (str, required) - The hash of the transaction to return + + tx_hash: `d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7` (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. @@ -15634,9 +15626,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15644,7 +15636,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886280, + "block_time": 1730898417, "fee_fraction_int_normalized": "0.00000000" } } @@ -15681,17 +15673,17 @@ Returns all fairminters { "result": [ { - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_index": 221, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960586448133", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, - "hard_cap": 180, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 100, "premint_quantity": 0, @@ -15704,36 +15696,33 @@ Returns all fairminters "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898808, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_index": 87, + "block_index": 220, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960545690062", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETB", + "description": "My super subasset SUBASSETB", + "price": 0, + "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -15749,28 +15738,28 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730886348, - "price_normalized": "1.0000000000000000", + "block_time": 1730898794, + "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, + "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", + "tx_index": 86, + "block_index": 219, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960939749879", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETA", + "description": "My super subasset SUBASSETA", + "price": 0, + "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -15782,35 +15771,32 @@ Returns all fairminters "divisible": true, "pre_minted": false, "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886271, - "price_normalized": "50.0000000000000000", + "block_time": 1730898790, + "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FAIRMINTC", + "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -15821,65 +15807,62 @@ Returns all fairminters "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "open", - "earned_quantity": 19, + "status": "closed", + "earned_quantity": 180, "commission": 0, - "paid_quantity": 5, + "paid_quantity": 0, "confirmed": true, - "block_time": 1730886255, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", + "block_time": 1730898523, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", + "earned_quantity_normalized": "0.00000180", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", + "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", "description": "", "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, + "quantity_by_price": 5, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 0, "premint_quantity": 0, "start_block": 0, "end_block": 0, "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, + "soft_cap": 0, + "soft_cap_deadline_block": 0, "lock_description": false, "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886251, + "block_time": 1730898512, "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" + "premint_quantity_normalized": "0.00000000" } ], - "next_cursor": 1, - "result_count": 6 + "next_cursor": 4, + "result_count": 9 } ``` @@ -15935,22 +15918,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -15959,22 +15942,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", "tx_index": 45, "block_index": 158, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886356, + "block_time": 1730898520, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -15983,22 +15966,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886274, + "block_time": 1730898410, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -16007,22 +15990,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886266, + "block_time": 1730898402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -16031,22 +16014,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886262, + "block_time": 1730898388, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -16065,7 +16048,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06` (str, required) - The hash of the fairmint to return + + tx_hash: `4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16076,22 +16059,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -16109,7 +16092,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h,bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd` (str, required) - The addresses to search for + + addresses: `bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf,bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4` (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. @@ -16122,41 +16105,41 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", - "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" - }, { "vout": 0, "height": 208, "value": 546, - "confirmations": 9, + "confirmations": 16, "amount": 5.46e-06, - "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", - "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" + "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" }, { "vout": 1, - "height": 215, + "height": 222, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" + "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" }, { - "vout": 2, - "height": 161, - "value": 100000, - "confirmations": 56, - "amount": 0.001, - "txid": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5", - "address": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd" + "vout": 1, + "height": 207, + "value": 546, + "confirmations": 17, + "amount": 5.46e-06, + "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" + }, + { + "vout": 1, + "height": 221, + "value": 30000, + "confirmations": 3, + "amount": 0.0003, + "txid": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4" } ], "next_cursor": null, @@ -16169,7 +16152,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu` (str, required) - The address to search for + + address: `bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz` (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 @@ -16185,28 +16168,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "4519f82c1ed3f7e2dcaaa3bcb580feeddc5efbb4d2946ac38b795c6acc4c4412" + "tx_hash": "18c8292a8126d912dbb5ab301ae88bb93eb450259b9e7310dfa512bdff233d37" }, { - "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316" + "tx_hash": "fd2cb81224522fc1415c7317daf6d89c39eb79b79a5431e4c4a13f364715f149" }, { - "tx_hash": "a239b17588ee52999d0c52eea7813185ab36a70effba05497ed3726f1b687443" + "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe" }, { - "tx_hash": "dc66355d306b60dbac5b6bdb4a8141fc1f11648a8c34955d58006d97f31e6e5e" + "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7" }, { - "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" + "tx_hash": "16526ef5652dfe3b5199019a8acf05a470963dad9093583e05a14abeff52d5ea" }, { - "tx_hash": "f5067f400bf33532ca6ab0094d0442388ba5829806f5db9a41717901c2dc1a91" + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3" }, { - "tx_hash": "45e8de234c0b52f86d33cde23aa9fbe52cecfc84782be3df834740f29b0499bd" + "tx_hash": "167369f337dfa88bd51bf20bdeabc28c33c7f4fd43bb835f7d8757dd804fb4f6" }, { - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6" + "tx_hash": "b19bbad697e8f745b8dd5f084f96a01f8089cdeb2267c8b79dd3e29d759da8fb" } ], "next_cursor": null, @@ -16219,7 +16202,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh` (str, required) - The address to search for. + + address: `bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy` (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. @@ -16232,8 +16215,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "33f637d86afc199db09906ca7a57f29604a0b40ca1b07d04ac857586311997e1" + "block_index": 5, + "tx_hash": "a1e1862525e3efd76ea5f0db4d9f4ed15d8f5abd685db9b0cc8d892cb67e620c" } } ``` @@ -16243,7 +16226,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h` (str, required) - The address to search for + + address: `bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf` (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 @@ -16258,29 +16241,29 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 0, - "height": 208, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8" - }, { "vout": 1, - "height": 215, + "height": 222, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2" + "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096" + }, + { + "vout": 0, + "height": 208, + "value": 546, + "confirmations": 16, + "amount": 5.46e-06, + "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa" }, { "vout": 1, "height": 207, "value": 546, - "confirmations": 10, + "confirmations": 17, "amount": 5.46e-06, - "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a" + "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f" } ], "next_cursor": null, @@ -16293,7 +16276,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl` (str, required) - Address to get pubkey for. + + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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. @@ -16305,7 +16288,7 @@ Get pubkey for an address. ``` { - "result": "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" + "result": "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" } ``` @@ -16314,7 +16297,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e` (str, required) - The transaction hash + + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (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. @@ -16326,7 +16309,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101a5f42e5f80961ac262d40fc73ba5463a008993b619f90e68ef7c67795471b3360100000000ffffffff03e8030000000000001600141ad1af8b95b1ea4881905a2154d06b313e97901f00000000000000000c6a0aa17405a4003cc1c6497c8714092701000000160014624b13a86be421eb76d68cecd83105881369410f024730440220549d14d47b716b826b9afc9d6f2bf1d46e947ae886a30735a453dd5e6736966002205a8b25282e7ef5a4317e11dccb08ef9b6bb31fe8ea44356c41a1648df326dab2012103cd47bca279d06d3537c8bfadd50f781929f898ce7088fbb462156577a96079f700000000" + "result": "02000000000101d1d4156b83b56e571f9ba594e9aa65992272697a6de9caaa651a0dc3a6fa7e500100000000ffffffff03e803000000000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c00000000000000000c6a0ad778ef892ea746169a1d871409270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f024730440220464e2423ab3da160e439d44da2eae939911dcd9a54d15ea1f16da79aabd7a3000220088d1fe2f68b6432a34ad4f5cafa2ae74235887042411aadf87ef8f361776f27012103610de3d16a355f04ba4d9fffb79d13cbdb9940e8c6579b04d736f56fb5ac6cbf00000000" } ``` @@ -16348,7 +16331,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58821 + "result": 58736 } ``` @@ -16421,28 +16404,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84 + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91 }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "quantity": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16452,22 +16435,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16477,22 +16460,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", - "block_index": 216, - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "block_index": 223, + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16502,30 +16485,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730886641.799628, + "block_time": 1730898824.7521684, "btc_amount": 0, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "destination": "", "fee": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, - "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, + "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -16539,7 +16522,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -16570,19 +16553,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16592,7 +16575,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -16605,7 +16588,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c` (str, required) - The hash of the transaction to return + + tx_hash: `b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb` (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 @@ -16625,28 +16608,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84 + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91 }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "quantity": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16656,22 +16639,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16681,22 +16664,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", - "block_index": 216, - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "block_index": 223, + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16706,30 +16689,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730886641.799628, + "block_time": 1730898824.7521684, "btc_amount": 0, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "destination": "", "fee": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, - "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, + "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -16743,7 +16726,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 10b3f3f805..6c6548b3eb 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -134,7 +134,7 @@ def validate( if existing_asset and existing_asset["asset_longname"]: asset_name = existing_asset["asset_longname"] if asset_parent != "": - problems.append("Asset parent cannot be set for a subasset.") + problems.append("Asset parent cannot be set when using subasset numeric name.") asset_parent, asset = asset_name.split(".") elif asset_parent != "": asset_name = f"{asset_parent}.{asset}" diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 4b268802b0..2cb0fdeb38 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": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", "difficulty": 545259519, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, "confirmed": true }, { - "block_index": 215, - "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", - "block_time": 1730886624, - "previous_block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", + "block_index": 222, + "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_time": 1730898812, + "previous_block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", "difficulty": 545259519, - "ledger_hash": "4a2ce5404e543bec2e3d0a3d601790892724baf757c6862310ba9c9d3df35df5", - "txlist_hash": "9444b4994ced319d8d8a37636d2743c6ba940b7a417c82bfbd3a7149283875e9", - "messages_hash": "193dc4c585cd7b9c9c64adebaf12e8d804d6ae183dbba550745135ecbb9604bb", + "ledger_hash": "50b0eb6caea691c2981c7ca1a6781038786c9c763cd7df828aac1a866ce65842", + "txlist_hash": "b60b5bd37d63aae124e8fae2fd3eadaf9d1477056b35dda5abf8f31906ef045b", + "messages_hash": "8a2393350121ebdd03181d86762ce0eac115cea857a0b297fff444cd09933d05", "transaction_count": 1, "confirmed": true }, { - "block_index": 214, - "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", - "block_time": 1730886620, - "previous_block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", + "block_index": 221, + "block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", + "block_time": 1730898808, + "previous_block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", "difficulty": 545259519, - "ledger_hash": "14c940a84f3314ff088c8ae41ae4461993a5f6723af74a4830909a4435160970", - "txlist_hash": "97ca3575aba4bae0b540b67777f953d5763f8edbe3bc53b683c69f6905307ef8", - "messages_hash": "a7476b4c76c553528bae39fda715adc1318ca3d307122ac2f9378bb2e7609715", + "ledger_hash": "921556d15aa22775a407bdb2ddae1340ba9d05627ba52e68f923d1da8d19dd32", + "txlist_hash": "48b1b772b588d367c6f93a95cf77a01dd2b6522b48ade863da4989ad23f40125", + "messages_hash": "e45f2bb3efd8a2c26d8dea423458b6a5eefbdf97154a6e9e53ab1cf307042e79", "transaction_count": 1, "confirmed": true }, { - "block_index": 213, - "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", - "block_time": 1730886606, - "previous_block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", + "block_index": 220, + "block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", + "block_time": 1730898794, + "previous_block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", "difficulty": 545259519, - "ledger_hash": "6c1eb330077904aeb0291ace28883e5bfd4715bc6477dc40f5883b3467ff8297", - "txlist_hash": "0e960685873437705c0b2503ae83c5650d5fea2398c93c898521d89b9c89acba", - "messages_hash": "72152ff841590875ca0252a0e725f2c8e888c9f113f319f687ec639c89f6ae5f", + "ledger_hash": "3a3bcf0fe193fed2da2edbf1249f1e2039a9ff5c42f5800cb0c018478e87bedf", + "txlist_hash": "a46d10f1ded5d41459f29f158547521b309044b50994ff95248225c852c251ac", + "messages_hash": "5c9c6bececd7ca2915376470ba0c216344d4f5649cc9c94703d71fe641b1c889", "transaction_count": 1, "confirmed": true }, { - "block_index": 212, - "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", - "block_time": 1730886603, - "previous_block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", + "block_index": 219, + "block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", + "block_time": 1730898790, + "previous_block_hash": "41debd881d6501feb35a5b16f192e8d6c1ff4bfec922ad9bd666d277685c9aba", "difficulty": 545259519, - "ledger_hash": "47c34859d5f8cf69be7eee7fc0634f0a703461dc4eeb18420cc3f98decfe55b0", - "txlist_hash": "4b7d62a61b9d44386fd3fbbfb0be78c5d2e7e85fccaca876ca99ebe02011b221", - "messages_hash": "2925e83a1854ca2d6c988538d276c9d4a4746de5aeb6bc67c0e55f9b4f8af08c", + "ledger_hash": "12f9cb1cf9633d79cc0121d9cfe50f8652d1fa6f74cc93b8293098c5b0fb928a", + "txlist_hash": "519c1de30fbedf96677528be9dc75d2acff5273e4065a097c8c674b042d437f7", + "messages_hash": "23cb022018309ef70abf974578425962b684da32d2a897ab76a94be5b0c899f9", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 211, - "result_count": 116 + "next_cursor": 218, + "result_count": 123 }, "/v2/blocks/": { "result": { - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", "difficulty": 545259519, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", "difficulty": 545259519, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null }, { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" } ], - "next_cursor": 733, + "next_cursor": 787, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,32 +300,32 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e" + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 216, - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "block_index": 223, + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 216, + "block_index": 223, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -376,21 +376,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 216, + "block_index": 223, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 216, + "block_index": 223, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -424,21 +424,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 216, + "block_index": 223, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "block_index": 214, + "object_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "block_index": 220, "confirmed": true, - "block_time": 1730886620 + "block_time": 1730898794 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "status": "valid", "confirmed": true, - "block_time": 1730886529 + "block_time": 1730898688 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 66, - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "block_index": 200, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730886540, + "block_time": 1730898698, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -506,32 +506,32 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, + "block_index": 221, + "asset": "A95428960586448133", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, + "description": "", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, @@ -540,11 +540,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -564,11 +564,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -669,17 +669,17 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_index": 221, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960586448133", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, - "hard_cap": 180, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 100, "premint_quantity": 0, @@ -692,21 +692,18 @@ "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898808, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "premint_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -715,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -745,18 +742,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -768,18 +765,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 82, - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427", - "block_time": 1730886624, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "tx_index": 89, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_time": 1730898812, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2:1 2 ", + "utxos_info": " a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -795,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -814,58 +811,58 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 81, - "result_count": 84 + "next_cursor": 88, + "result_count": 91 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "605694f6c029d04b69c9d40654e4735dd3d40e04b5996b386f5c7a71b40b47c3", + "hash": "cd955517616e0c584adfe5bb2a14ea5690f8cd94b6f4165fa3cd8388c8ac8506", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "3a978d7e007d40c67ba4f8dc1c054c1d0a46502cc1860559bf4aaede837d5c18", + "hash": "df544dae99046d52bfe00ee970090a9e5d1b82e902e41e0fa5e6b77dfb6a190d", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "8d4d7c20ccfa6968e4377015bd9e0b7078a6d98375589e58e152609620a5a2ec", + "hash": "322d7b8bfaa3dddc763da6ccaf27f9ebac18c16f72292051848dea08c729afee", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "e35f6c08ca28b217d089ed6fa66e1ce2e224f51efcf33c4d1763b575ae4fbdb5", + "hash": "a2fedd6847dde20c534d8bf99d1650415de2f4a1a3b3af0deff81f31d0109550", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bce276563e9b1c7e36c304c9552dce94d582464993e24ff4afbcad2434d5e4ab", + "hash": "55efd04385a547c293a24327b5555f2365a0259d4c03af3f17cb00bff0c02060", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "1933d11652cc8b260abd57fb1c40940d8dbd08065f57eef504e39063702ea61e", + "hash": "151ba7ebe2228badc209400c38bfc61feb4c90769496758ef2cf2b86d7c1d028", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -875,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512102af14eeb0084c152974c0c4dc20a3e9d4bf36a7ea2837501f6ebbead1f15832d32102023305782c7b2e0e0ad78bd86b0d9c2c372c0dd8777b190ff22bd50db943381521030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" + "script_pub_key": "512102eae04b7fae4b06bd25d5ad9737045b679610f802d3a3b7b607a8ac83f0ec5c9a21030d6ce6956533c554e8f0b0830b00fc2a85aba464e355af852411d14d983236442103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" }, { "value": 1000, - "script_pub_key": "512103af14eeb0084c152974356bb6f83467d69258478efc8e775963e0410df91312e62103affe851a1cce2caa14e5a9f79356902d54f34b6db1b7dd8f020041798410cdbd21030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" + "script_pub_key": "512102eae04b7fae4b06bd25d77b41c53760d275ad4bb4fae0aa7c813af1c34e74019a210307d966f155ec99974ed766c88e9341262ea73141660fbf05e5d5e7d732454eb02103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" }, { "value": 1000, - "script_pub_key": "5121038114eeb0084c152974c3c49fa009b7f476388201fbc2ff2d0b8561609c7e7d2f21032ffe8511da0f3d23bce5a9f79356902d06f34b6db1b7dd8f084041798410cd0421030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac353ae" + "script_pub_key": "512103c4e04b7fae4b06bd25d6add4b7c7bd365ce1f40d2eaf2208e95fd1ae2b196e21210387d966fa932d881ee6d766c88e9341267ca73141660fbf05ef95e7d732454e232103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" }, { "value": 29999987000, - "script_pub_key": "00147b8d32180ac4c5c380d3d70e5121633b537a2264" + "script_pub_key": "00148866238a1b690fe23cd7db55f93c555a4c161e32" } ], "vtxinwit": [ - "3044022060bd3cf8dd9fd04596bef152b705e93498946f1948e6401f6984b44e4bb0b3ea02201e5949a78dafb528693316442df19b7bbf328f93725052f09e57773f6cff3f7a01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "30440220599596e5682f14940ca521928a5442ad79a62fabc5a09c8a8278dde16b27ec4d02206c7ab29074a68e0275c4432bf0c06b6806b784deede4799189c4c8bec635f4e501", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "3044022076b15ca17e376623fd0c37c7407393d9e225d5b341d5b4e0b279c0c6c7409d960220233515d11ceee2a205a6b151b428f4e4a7dd653a5868d770fa8b04966e8dfaea01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "304402207897a00dec9b1decdbe7b0603f2c0d6ce0a64a066c3dee2590c7d5d7a88403ea022010572029ddc8d1159b8b9adbbbd6bccdc99956232059e2d60cb2b477bd75d63201", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "304402202cce65d353ebfb1e56ed1399f0a3d2a3e3759aeb20614e773c23bca22d7bb0980220795eddc632a8db411e9feb0ae38185bfc8f859a577a93d90767389577a33491d01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3", - "304402203b928cfc18d69421835bb3e0efb015b5bef38febceacd2885658daed064bab130220024634a9b73e8a1556ddbaf14ed571fe331180b167e118b06eb4205bd89cae7c01", - "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" + "304402204e78e6c2d67a3f18feb9586c86f41ae654c83a6d9fd405799258b4615cec4ca6022079636bb1c4e9012125cd208ca6400a17ee20cb05c3b6ba74d7b0105b94429bcc01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "30440220372f18faa11db76488c63d41b0140e7620a87a08f35ae59bb34aea965e2db853022006a41f594f0f55adb737870a5b0db7baad51f98e2e3f399a4af8b7e94a565e4601", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "304402202ecc1d77c8a97e8bd7f38a50e523d33ea77ddd1f1ae4ffbcf50907f9c1499f6d022076fdcfd3ebfcf9cd48ecb85f05b4cf3a11bb6f4ec6a7c76b048b635e1e332d8601", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "3044022003a165ddb344b3e95ae53cfb2583a04e3f824c541be5925f1b15765a635b26bb02204b614b91b6884ef95e97594637b3150545ef4e8bd5994083878b678c7616fbad01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "304402203546a8bea60a68d32dbd0e0d84eaf7665990103b273b88870528d02e5216fb620220497630e159a901a0c8de9303c2cceb85a4ca707941b848b345c9061fedac3ebb01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", + "304402202ee2bbd715c5798e9f4c98e1959922d890ef5e814838c6fd59962792cf65fb830220213a6bd58397f93abe93766a2dd029ea8d4f600ef0ef0ab7b7d4f22bdd5ab60a01", + "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" ], "lock_time": 0, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", - "tx_id": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440" + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_id": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8" }, "unpacked_data": { "message_type": "mpma_send", @@ -914,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -929,7 +926,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -949,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "84ebf11cb90a6835943d513a9cf0c11e3327c456d35a65be126acfb46e7a645a", + "hash": "6b65f00172eaa1e413172fbfc3e96fdab3b2dd37f5d8be9af578f3582bdde379", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -970,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e6fd344482e13f2ed14ef3ee933c06f06a1df98afcc1e53d1dc2a933aa89662011107217b06a7eb2dd35a637b6df6" + "script_pub_key": "6a2e802cc64f2ff3672fdfce4c17c8387d39625bf0027ca63ec6e99e7d0bcbe992c6e2d7c870c0bd251acfcbbb9b92dd" }, { "value": 4949930546, - "script_pub_key": "0014fa6b94743d53f5f6af69583dd022e460c5a7074c" + "script_pub_key": "0014cb84369aaa777801d6d572f0dde4294cbf91d44f" } ], "vtxinwit": [ - "304402200b61928a679b13372abf29d5c8082a414e50f1fb45aae2cab5e24361dc6edf8e022037d4b3043338e16a0d5323fb536e207a4ae977de91257aac777b21a5eb90771a01", - "02674fa5b9bdf3cb84ebddc108d1b2fca4f99f8cc943cfa511877f47bb42a27faf" + "304402200d48445154c4792d883d61c85df920b1c73006420c9dd956f7b5d98b683121aa02201f7a53bb97d9b052905a7baec0ee819893f57090a8302317ff6b8efe959bd7c201", + "028bf1a844374d601cebb7bb76f8534dfc66b13cd6c2ab56ef54ec474c9527acb6" ], "lock_time": 0, - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_id": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c" + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_id": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb" }, "unpacked_data": { "message_type": "enhanced_send", @@ -991,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -1017,18 +1014,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1042,18 +1039,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_time": 1730886637, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_time": 1730898820, + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1068,32 +1065,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1104,20 +1101,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1127,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1154,24 +1151,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 733, + "event_index": 787, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 216, - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "block_index": 223, + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "msg_index": 1, "quantity": 2000000000, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", "status": "valid", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1181,43 +1178,43 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 732, + "next_cursor": 786, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1228,20 +1225,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1251,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1278,24 +1275,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 733, + "event_index": 787, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 216, - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "block_index": 223, + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "msg_index": 1, "quantity": 2000000000, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", "status": "valid", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1305,22 +1302,22 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 732, + "next_cursor": 786, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1328,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1340,11 +1337,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1352,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1370,29 +1367,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1407,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1425,19 +1422,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1447,24 +1444,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1474,36 +1471,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": null, @@ -1512,19 +1509,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1534,24 +1531,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1561,36 +1558,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": null, @@ -1603,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1613,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1624,7 +1621,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1634,7 +1631,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1645,7 +1642,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1655,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1666,7 +1663,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1676,7 +1673,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1687,7 +1684,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1697,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1711,17 +1708,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_hash": "53e520a05e0b08995293b4c9fe3b6af0c43e051f04c15913d5751852c7efad97", - "block_time": 1730886620, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_hash": "3d736d00b47d164c3591fed8490ab8c61ac4853a494cf0deb3773bd0fb8c8abc", + "block_time": 1730898769, + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322:0 4 ", + "utxos_info": " b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1729,14 +1726,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1744,7 +1741,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1763,17 +1760,17 @@ }, { "tx_index": 80, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_hash": "4d1356430d13dbef9716c11a8d683b8047126497a7fee7d03234e45d39cb50fa", - "block_time": 1730886606, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_hash": "55ee08d2ac5ed1cc1fe953521fd43be001432636fed97fe117ee619ac3f3ab8b", + "block_time": 1730898765, + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807b8d32180ac4c5c380d3d70e5121633b537a22648069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074cc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9:0 4 ", + "utxos_info": " 8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1781,14 +1778,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1796,7 +1793,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1815,17 +1812,17 @@ }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", - "block_time": 1730886603, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", + "block_time": 1730898762, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", + "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1833,14 +1830,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1848,7 +1845,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1867,17 +1864,17 @@ }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", - "block_time": 1730886600, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", + "block_time": 1730898757, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", + "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1885,14 +1882,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1900,7 +1897,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1919,17 +1916,17 @@ }, { "tx_index": 77, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", - "block_time": 1730886595, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", + "block_time": 1730898744, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "supported": true, - "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", + "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1937,12 +1934,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -1958,20 +1955,32 @@ "/v2/addresses/events": { "result": [ { - "event_index": 716, - "event": "MPMA_SEND", + "event_index": 761, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 220, + "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_time": 1730898794 + }, + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 + }, + { + "event_index": 760, + "event": "CREDIT", "params": { + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "tx_index": 81, - "block_time": 1730886620, + "block_index": 220, + "calling_function": "cancel order", + "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "quantity": 0, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730898794, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1979,114 +1988,87 @@ "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000000" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 }, { - "event_index": 715, + "event_index": 716, "event": "MPMA_SEND", "params": { - "asset": "MPMASSET", + "asset": "XCP", "block_index": 214, - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "memo": "memo3", - "msg_index": 1, + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "memo": "memo1", + "msg_index": 2, "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_time": 1730886620 + "block_time": 1730898769 }, { - "event_index": 714, + "event_index": 715, "event": "MPMA_SEND", "params": { "asset": "MPMASSET", "block_index": 214, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "memo": "the memo", - "msg_index": 0, + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "memo": "memo3", + "msg_index": 1, "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 - }, - { - "event_index": 713, - "event": "DEBIT", - "params": { - "action": "mpma send", - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "asset": "XCP", - "block_index": 214, - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "quantity": 10, - "tx_index": 81, - "utxo": null, - "utxo_address": null, - "block_time": 1730886620, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_time": 1730886620 + "block_time": 1730898769 } ], - "next_cursor": 712, - "result_count": 254 + "next_cursor": 714, + "result_count": 256 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "quantity": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2096,22 +2078,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2121,22 +2103,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", - "block_index": 216, - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "block_index": 223, + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2146,30 +2128,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730886641.799628, + "block_time": 1730898824.7521684, "btc_amount": 0, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "destination": "", "fee": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, - "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, + "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -2183,7 +2165,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -2192,7 +2174,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2200,14 +2182,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2215,14 +2197,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2230,14 +2212,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -2252,7 +2234,7 @@ "quantity_normalized": "825.99965000" }, { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2260,7 +2242,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2273,7 +2255,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -2295,16 +2277,16 @@ "result": [ { "block_index": 214, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2316,16 +2298,16 @@ }, { "block_index": 213, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2337,16 +2319,16 @@ }, { "block_index": 213, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2358,16 +2340,16 @@ }, { "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2379,20 +2361,20 @@ }, { "block_index": 209, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "event": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886581, + "block_time": 1730898740, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2406,16 +2388,16 @@ "result": [ { "block_index": 212, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2427,20 +2409,20 @@ }, { "block_index": 212, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2448,16 +2430,16 @@ }, { "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2469,20 +2451,20 @@ }, { "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2490,20 +2472,20 @@ }, { "block_index": 210, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "event": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886595, + "block_time": 1730898744, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2522,9 +2504,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", + "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", "block_index": 137, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2532,7 +2514,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886277, + "block_time": 1730898413, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2543,14 +2525,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "7c47734a6ee7a2f33b0c1ad9317deb9a1dae7d63d87980275b6058c5ed37b4c2", + "tx_hash": "8fe6de4ce0b7f483efb269b49c145c96bd129fb037c8c90fdecaa5c597b24b17", "block_index": 112, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730886184, + "block_time": 1730898296, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2562,10 +2544,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2573,7 +2555,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2586,10 +2568,10 @@ }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2597,11 +2579,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2610,10 +2592,10 @@ }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2621,11 +2603,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2634,10 +2616,10 @@ }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2645,7 +2627,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2658,10 +2640,10 @@ }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2669,11 +2651,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2688,10 +2670,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "363325b127e459a90d7a306995804fae5bcdd591c4fe5973652fd44d1ba50f4b", + "tx_hash": "9cabb396047dd7241313f9131a4b5a7e3f7a7a9213c360840ade79881132ce8c", "block_index": 151, - "source": "0c9dfaf54232e7be973691b86c950e256220902b5458d1ca65afad6816244fd8:0", - "destination": "bcrt1qm9tch8wu8dp2d8jj6wuykd63rhksq4mrd00zfl", + "source": "8816f586e3586a6ffe38bb114f1f022f738630f3f70b7addb798e06d08a9a5ce:0", + "destination": "bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2699,11 +2681,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886328, + "block_time": 1730898493, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2728,9 +2710,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2739,7 +2721,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2750,7 +2732,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2767,9 +2749,9 @@ }, { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2778,7 +2760,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2789,11 +2771,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2811,9 +2793,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2822,7 +2804,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2833,7 +2815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2854,19 +2836,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2874,7 +2856,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2889,11 +2871,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -2903,19 +2885,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2923,7 +2905,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2938,7 +2920,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2952,19 +2934,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2972,7 +2954,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2987,7 +2969,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3007,19 +2989,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3027,7 +3009,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3042,11 +3024,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3056,19 +3038,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3076,7 +3058,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3091,7 +3073,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3105,19 +3087,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3125,7 +3107,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3140,7 +3122,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3160,19 +3142,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3180,7 +3162,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3195,7 +3177,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3209,19 +3191,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3229,7 +3211,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3244,7 +3226,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3264,19 +3246,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3284,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3299,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3313,19 +3295,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3333,7 +3315,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3348,7 +3330,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3367,16 +3349,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -3387,14 +3369,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", "msg_index": 0, "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -3409,20 +3391,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886581, + "block_time": 1730898740, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", + "tx_hash": "5a7af4a1e2d6735e874e2271f8ba9f34cf2ff6b08b43ce63342239cc0eaf7d85", "msg_index": 0, "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -3437,20 +3419,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886403, + "block_time": 1730898549, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", + "tx_hash": "afc31bab261d3338b6b1168b9682b0d2e012330502e350c8dc90093651ba244b", "msg_index": 0, "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -3465,20 +3447,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730886399, + "block_time": 1730898544, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", + "tx_hash": "5df52d08f42b3f10fd555d494df49b6799e67fa12a5d889ad77222366d8dcb56", "msg_index": 0, "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -3493,20 +3475,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886395, + "block_time": 1730898541, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "5c5b02a352c69a997df3828df766561ead6e67d71cb291d9f284dff3f11ff6fd", + "tx_hash": "de3cf70c12d0136d2c4c5abbaf5d5a69ec3b68f2d6861e9531f41ce54e04df22", "msg_index": 0, "block_index": 162, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -3521,7 +3503,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886382, + "block_time": 1730898537, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3535,8 +3517,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3544,16 +3526,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -3561,16 +3543,16 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 180, @@ -3578,16 +3560,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, + "first_issuance_block_time": 1730898516, + "last_issuance_block_time": 1730898523, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3595,16 +3577,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730886317, - "last_issuance_block_time": 1730886317, + "first_issuance_block_time": 1730898481, + "last_issuance_block_time": 1730898481, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 40, @@ -3612,8 +3594,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730886271, - "last_issuance_block_time": 1730886274, + "first_issuance_block_time": 1730898407, + "last_issuance_block_time": 1730898410, "supply_normalized": "0.00000040" } ], @@ -3626,8 +3608,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3635,16 +3617,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -3652,16 +3634,16 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 180, @@ -3669,16 +3651,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, + "first_issuance_block_time": 1730898516, + "last_issuance_block_time": 1730898523, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3686,16 +3668,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730886317, - "last_issuance_block_time": 1730886317, + "first_issuance_block_time": 1730898481, + "last_issuance_block_time": 1730898481, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 40, @@ -3703,8 +3685,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730886271, - "last_issuance_block_time": 1730886274, + "first_issuance_block_time": 1730898407, + "last_issuance_block_time": 1730898410, "supply_normalized": "0.00000040" } ], @@ -3717,8 +3699,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3726,16 +3708,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -3743,16 +3725,16 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 180, @@ -3760,16 +3742,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, + "first_issuance_block_time": 1730898516, + "last_issuance_block_time": 1730898523, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3777,16 +3759,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730886317, - "last_issuance_block_time": 1730886317, + "first_issuance_block_time": 1730898481, + "last_issuance_block_time": 1730898481, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 40, @@ -3794,8 +3776,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730886271, - "last_issuance_block_time": 1730886274, + "first_issuance_block_time": 1730898407, + "last_issuance_block_time": 1730898410, "supply_normalized": "0.00000040" } ], @@ -3806,17 +3788,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "block_hash": "0ae0176f723b82890e6ab777e168e266e30382c68958c782f3ea224fcb8ec245", - "block_time": 1730886603, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", + "block_time": 1730898762, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5:0 4 ", + "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3824,14 +3806,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3839,7 +3821,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3858,17 +3840,17 @@ }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "block_hash": "062bf14545898335e157bdd00f923dd870603138e90de555a6919ec959f5ec2f", - "block_time": 1730886600, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", + "block_time": 1730898757, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd8069f674132db632222ff85b0c0131df46b5c6ccc480fa6b94743d53f5f6af69583dd022e460c5a7074c88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440:0 4 ", + "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3876,14 +3858,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3891,7 +3873,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3910,17 +3892,17 @@ }, { "tx_index": 77, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_hash": "2776fa8560068421284894111af8b1059e6771ae683996fd9bdc8bab5c11bdf1", - "block_time": 1730886595, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", + "block_time": 1730898744, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "supported": true, - "utxos_info": " 114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d:1 2 ", + "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3928,12 +3910,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -3944,17 +3926,17 @@ }, { "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", "block_index": 209, - "block_hash": "3eee0202e49997e9138f321ad34f3ebc4b0f05692963a115eaf5c152a5ee65b5", - "block_time": 1730886581, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "7c515a6e0922fe0def0d949bf564cfe18c524a326a51d16417e5c82c01f526ca", + "block_time": 1730898740, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b:1 2 ", + "utxos_info": " 23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3979,17 +3961,17 @@ }, { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 202, - "block_hash": "0d9e15163c4725e3733cbcdfebd1a077c34264a34de5681049530a0ec14a4832", - "block_time": 1730886548, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_hash": "3cefda465642e6950410081f78c82cc5ea312c1db554802d891858b8174c14cf", + "block_time": 1730898704, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c:1 2 ", + "utxos_info": " 64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4006,7 +3988,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4024,20 +4006,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4059,9 +4041,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4078,7 +4060,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4106,9 +4088,9 @@ }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4125,7 +4107,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4153,9 +4135,9 @@ }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4172,7 +4154,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4200,9 +4182,9 @@ }, { "tx_index": 64, - "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "block_index": 213, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "block_index": 220, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4215,11 +4197,11 @@ "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898794, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4252,10 +4234,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "tx_index": 44, "block_index": 159, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4280,7 +4262,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4292,10 +4274,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", + "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", "tx_index": 43, "block_index": 156, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4320,7 +4302,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730886348, + "block_time": 1730898512, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4329,10 +4311,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4357,7 +4339,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730886271, + "block_time": 1730898407, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4369,10 +4351,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4397,7 +4379,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730886255, + "block_time": 1730898381, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4409,10 +4391,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", + "tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4437,7 +4419,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730886251, + "block_time": 1730898376, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4449,10 +4431,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4477,7 +4459,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4495,22 +4477,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4519,22 +4501,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", "tx_index": 45, "block_index": 158, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886356, + "block_time": 1730898520, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4543,22 +4525,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886274, + "block_time": 1730898410, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4567,22 +4549,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886266, + "block_time": 1730898402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4591,22 +4573,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886262, + "block_time": 1730898388, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4615,22 +4597,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "390924b7ff0790fb00684834a44113047037bfabf1ab65af88f02a8846492d1f", + "tx_hash": "3ecb5d63127ffd9177a63b61b38c60f2a5565baf6bb30926ee0f3aff7acf59d9", "tx_index": 19, "block_index": 132, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886259, + "block_time": 1730898385, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4639,22 +4621,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "348fb1aaceebdc68efbbb9071e4604c31756d3cd4ea3fcf68f24c7d7e28e7c13", + "tx_hash": "38d40d2b91efed74d8498647729dc1339a295b593b29133217fe68bbcac63bf4", "tx_index": 15, "block_index": 127, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886238, + "block_time": 1730898364, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4663,22 +4645,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4693,22 +4675,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4725,8 +4707,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4739,12 +4721,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4760,7 +4742,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4771,9 +4753,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985766, - "btc_fee": 14234, - "rawtransaction": "020000000001018b4dfb8e206f20712453a9d9959f580f043aa1b465aa63c1b8176e209fbc24f3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0200000000000000002b6a29493a8c69426454a968f746df4d46beeae1f2bf82863c0270b0889be44b2d5a3c4d1c298757ab544e7d66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985786, + "btc_fee": 14214, + "rawtransaction": "020000000001011f26920a04a29ce9c43871a74e2cdcd812609941351ae1885cb421f02e60a7d7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0200000000000000002b6a293e05675e09c8cf2a17734419a1ca7604fbd84a4bf747ddeb0fb14b0610cab5f3494f88b803e84338067aba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4791,24 +4773,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "data": "434e5452505254590b8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980884, - "btc_fee": 18116, - "rawtransaction": "02000000000101a829b8346ce37e8bf2b3ea16712ce37cf845502770a623c7587813d9447c3823000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e8030000000000001600147b8d32180ac4c5c380d3d70e5121633b537a226400000000000000004b6a490b20e455032e9e62a99c253c3e59653d0e708151c34960e05b3b645e757d8c67a94813449cabcd858c2cbd9cbb578d74a88e0c7eb850694bf73447d9bbf5368934ff1150f4e497d70b54a7052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999980910, + "btc_fee": 18090, + "rawtransaction": "020000000001018ac98cb5e07e7ebaecd4544792ba69f7520a39081b66cc81e6c7722f8028eb3d000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e8030000000000001600148866238a1b690fe23cd7db55f93c555a4c161e3200000000000000004b6a49bddcaf612bd8e8b982ea2bf027e094462c5e4db35c0426b684e56ded8020b991c4dfb2ed68220c26aa909967ac7ecc446184dd995eda98bf4fd591dd2374ff2b424989c48b1fa803946ea7052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "order_match_id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "status": "valid" } } @@ -4817,7 +4799,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4826,30 +4808,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985766, - "btc_fee": 13234, - "rawtransaction": "020000000001019cc202bedc122198f6b12678a98dd90de2fa7fc318a6ff41d7a5bd3136885e0d000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac66ba052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000" + "btc_change": 4999985785, + "btc_fee": 13215, + "rawtransaction": "0200000000010175505947253fe180015f3d5d2d2bcc88da78d0374f8aeeb63cba417a8b9ab445000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac79ba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "data": "434e54525052545946a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", "btc_in": 4949918908, "btc_out": 0, - "btc_change": 4949904674, - "btc_fee": 14234, - "rawtransaction": "02000000000101f24a195a18e1da52602ddbbc13bfbffc31f4c874a5c8daf3d7c8e7e9208e35a901000000160014e62456afc0c558231e013678f81fb805ef35313dffffffff0200000000000000002b6a29ff4b8dea9e40339979dba3a76af618d3f083605b8b46113ccdd50ca4cbfebc8c8252de40ac151aa921228d092701000000160014e62456afc0c558231e013678f81fb805ef35313d02000000000000", + "btc_change": 4949904694, + "btc_fee": 14214, + "rawtransaction": "0200000000010196b010c4f14eb4b263dcc5b2ebd574e1c0a60d0e35ef6004004fe992531ce3a801000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e396ffffffff0200000000000000002b6a2913427da40a73ff22b57560ac1a5e2c647d1ee0fbd909c290fbc80e3f81262db6bd3d29b05e8350f971368d092701000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e39602000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", + "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", "status": "valid" } } @@ -4858,7 +4840,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4876,9 +4858,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986295, - "btc_fee": 13705, - "rawtransaction": "02000000000101855a9a51c83577baa8d3f9ff9e61a9f3a1579351ff1657166f3c0ed000d4cd51000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000226a208f0307d7f1420e3684cf2424ae44beac95f89d514a977b3c3ff71b82d313124c77bc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999986315, + "btc_fee": 13685, + "rawtransaction": "0200000000010164ae3656cbb3db3af50bf78b72e4334a948f3fd9ccff761d6f35973063ddffbd000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000226a2041e69f4fdfdb37994a3e4970786c46b606bc0099d6a174cd6af7aed20e774d618bbc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4894,7 +4876,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4917,9 +4899,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859506, - "btc_fee": 14293, - "rawtransaction": "020000000001012e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d02000000160014624b13a86be421eb76d68cecd83105881369410fffffffff0200000000000000002c6a2a2434d6006027eff29f2f1e426b10f2fef716b6f73d19ba8abdd55401e26a4412d8dcda666175cdda2ce6b2dc082701000000160014624b13a86be421eb76d68cecd83105881369410f02000000000000", + "btc_change": 4949859527, + "btc_fee": 14272, + "rawtransaction": "02000000000101b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f60200000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6fffffffff0200000000000000002c6a2aed10c2a73d16732ffb8c3b160726f88e075a38b11a8621651a41c17968d155492a8c588ccf686e064069c7dc08270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4941,7 +4923,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -4949,7 +4931,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -4966,9 +4948,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986236, - "btc_fee": 13764, - "rawtransaction": "02000000000101cc98a969b4f945a78368d8916d2c7d9bee9d69749495cb1865445e64349c67c3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21815332422fbde6a1aea35c7ec44a180c434513f8fd7473e601d3b35729529266bb3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999986256, + "btc_fee": 13744, + "rawtransaction": "0200000000010137ca04a987548ae9224a7b556e3b6b6fe71b779f50029a25e8beb974a1991668000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a21bf85e8640974884939c4ba68a062ab2fe65a5a4b72beee71fde295c91561c1f0fe50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4985,10 +4967,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "transfer_destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "lock": false, "reset": false, @@ -5000,9 +4982,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983690, - "btc_fee": 15764, - "rawtransaction": "02000000000101028f9389d6e5c7f90fc8b94881a272584c6434aa79be0428157e3069be230421000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000236a217abb78cb6e881cfbd0f8a7a0fdeb568fd4b9f25f44937be3585e3368045afa03a64ab2052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999983713, + "btc_fee": 15741, + "rawtransaction": "0200000000010138cd9ca70f96225144ec6cda7db6239752465c0740b867ea640b4c947bc93105000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000236a21a12053d440562b7c5ca67bbca734003946afed661ae2d7649f9df42fee641b0bb261b2052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5027,16 +5009,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", 1 ], [ "FREEFAIRMINT", - "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", 2 ] ], @@ -5045,26 +5027,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807b8d32180ac4c5c380d3d70e5121633b537a226480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd4012737f10d9927d5000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002808866238a1b690fe23cd7db55f93c555a4c161e3280c3e651caf10c27fd0c95beeef77d2ddbf5328ab54012737f10d9927d5000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785237, - "btc_fee": 20763, - "rawtransaction": "0200000000010122c3c583c72bdbe3f3f2ecf55416203822230d62a06d7e09fd540253679d456203000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcdffffffff03e803000000000000695121035d646b1cdc084e0a2e09bf0839ee5bb51b343a850f03ef6e25525a840609bd7f210368ead1e23823ce3b006f65565be8b4f378db74d1f042fd8f1f56c86aca3b1235210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053aee8030000000000006951210242646b1cdc084e0a2e5abf0ab995d687031afe40cc833cb92b077be73d5ac74721034a8e50486603073525acb6a3f4dad1cdf36a19f7bf6f30cf0d25b77a13a96f04210229a3bb5b2edf231af8dba79ce226cc823db2d561f1cc7aa8f2b992dcbbb95a2053ae95ba072701000000160014aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd02000000000000", + "btc_change": 4949785267, + "btc_fee": 20733, + "rawtransaction": "020000000001018ed4ff4164d68262c320ae21eef08ee8085683b2f00910c14bb1980c508a3bb803000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab5ffffffff03e803000000000000695121028de71ffdf85c16d2cd5b19121f750f1c9fdcbbce92d5c3560de6fe938ba009fd2102d12779a7e8950e0e379fde6abcf1c98b46520962b36ca56c869d1d2486228cb121032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aee8030000000000006951210292e71ffdf85c16d2cd0819109ffd693f15e3d2c170e9148d581bc2c6d1ec1f282102cf15f8640ec4c4ff3bb82366294f277c3b7fd29781e6102c94ee62345fb0f16721032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aeb3ba072701000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab502000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FREEFAIRMINT", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5076,7 +5058,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5094,7 +5076,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5106,9 +5088,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985178, - "btc_fee": 14822, - "rawtransaction": "0200000000010149e6efe4ad0a8dd972f22d8ccc4164198fd959c30a8afb65fda68a861736f630000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000356a33a6e1e691f9fa705391f2df264dac2ac42ce78c0cd889f759fb725c65d61e1601b8f52ad2dee8dc8ceb3159594a681c216a5ec51ab8052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985199, + "btc_fee": 14801, + "rawtransaction": "02000000000101c70fc97b78bd7034fe2d3f9004a46d8006a66784a9929d830ee82eaf726f5158000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000356a330cb28c2f88b24650c272ec55edec5b7a31bc88a410b6cc14d45df5529ed60eb94ebbf649de531d141502200b5a32a390bfd6bf2fb8052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5130,8 +5112,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5148,19 +5130,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd", + "data": "434e54525052545902000000000000000100000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985472, - "btc_fee": 14528, - "rawtransaction": "0200000000010176adf4c96cdfb64fe7d8f3459b6991979152f66583c03ae446750c5efdc44233000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000306a2e6a8e01aff6e7de1d30cbc25f6e9b981676e8c633aa9dbb9dcc01c57c24ed8fd507f4d6d714a286e08b71c3c3118b40b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985493, + "btc_fee": 14507, + "rawtransaction": "02000000000101275f8f9d807f9d3a3ea26cc21cdb9e8bd02473ef52e2c4510c3944766e6f3cc7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000306a2e4a351f39f607b988bb1084bd9056d04cb3997b670785d105977fbedc43dd615ef56b511ea26d7c6b6803d5dd324455b9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "quantity_normalized": "0.00001000" } @@ -5170,24 +5152,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480aa5e20c90e25c3d3f5af32653e8bb16d264f2dcd07ffff", + "data": "434e5452505254590480c3e651caf10c27fd0c95beeef77d2ddbf5328ab507ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986236, - "btc_fee": 13764, - "rawtransaction": "020000000001017a417f3513fdd7dc612af97e0ee6db660d6003b94eadd0a6e4ae2edd258c56b3000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000236a21e8669fe856070345d5cd5fcfdb1622581aee9dd67b95cd3a8e3d9e857582969a0d3cbc052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999986256, + "btc_fee": 13744, + "rawtransaction": "02000000000101d510690fb211173b73d75d0eb18bcd9df309e406eb936e1e226de3f6343ab516000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a216bc35627c64c3bb817cdcdf526daf2eaead0a68d42524cee3058940662f921352d50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "flags": 7, "memo": "ffff" } @@ -5197,8 +5179,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "quantity": 1000, "skip_validation": false }, @@ -5206,9 +5188,9 @@ "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984589, - "btc_fee": 14411, - "rawtransaction": "02000000000101962bc2a009c7f79714fc2d3941ea1042b3f037d12f73cdacacdc8c7efba6fd9c000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff03e803000000000000160014fa6b94743d53f5f6af69583dd022e460c5a7074c00000000000000000c6a0a511d742f0ea868b132cdcdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999984610, + "btc_fee": 14390, + "rawtransaction": "02000000000101568bc9e3a73e1d8eabc6631161efd3d5db9313886eadbbfccb687d15a7afcd95000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e803000000000000160014cb84369aaa777801d6d572f0dde4294cbf91d44f00000000000000000c6a0a75757985319c705349d3e2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5221,7 +5203,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5251,9 +5233,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985413, - "btc_fee": 14587, - "rawtransaction": "02000000000101d43d7acc00907086c9aabd7fa6995838005e778649d7102aa4a6e2dd539e9158000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000316a2fda14fd26bd30d6a7615b945b6b0a69e79f5c0bc845df1dc9a75e66395ccd946396faa541d1cb2a413f9762aae8cd6305b9052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999985434, + "btc_fee": 14566, + "rawtransaction": "020000000001015dc2b22cfdd0ff5c24829aaab5c4387acfa517478203f77e9ac07622774977e1000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000316a2fa81466c8bc106f07472813851f995b5088ee75e832b732391e0996feec362ddb8cd22b040e6555b13b2dfccb8d25771ab9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5288,14 +5270,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5305,9 +5287,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987001, - "btc_fee": 12999, - "rawtransaction": "0200000000010136c36c53b6c41332021f1a5bd09ce0db8cbdc1d19d098ae9752b5794ecf03d1f000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff020000000000000000166a14a4116968c44adf991436772cb5e7083da06eb40f39bf052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999987020, + "btc_fee": 12980, + "rawtransaction": "02000000000101eb1278f82d60cbb72e82b894b5ba1f723e044daa85b8409e86501c6b10724285000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000166a14741a301b7be4b4adde7275b8b564d45731cbe2234cbf052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5322,7 +5304,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5340,9 +5322,9 @@ "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984573, - "btc_fee": 14881, - "rawtransaction": "0200000000010189acbc31f714a8230cef894e93178acb320d10506c4f2a8af2f5ef773bec22fe000000001600147b8d32180ac4c5c380d3d70e5121633b537a2264ffffffff0322020000000000001600147b8d32180ac4c5c380d3d70e5121633b537a22640000000000000000146a12d19841328717b7e718064ed72456dd4845febdb5052a010000001600147b8d32180ac4c5c380d3d70e5121633b537a226402000000000000", + "btc_change": 4999984594, + "btc_fee": 14860, + "rawtransaction": "02000000000101a6f8fd141df24a6a7bdc80bc7a998fcd167006e2a8df362810a3f0c9af450815000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000146a128553f23205b8a06d14241944d54f34b58fbdd2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5358,34 +5340,68 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713077786e79787132636e7a753871786e367538397a6774723864666835676e79737439786a6c", + "data": "434e5452505254596662637274317133706e7a387a736d64793837793078686d64326c6a307a34746678707638336a3875636d6e38", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945413, - "btc_fee": 25587, - "rawtransaction": "020000000001022e53f347efca13a3b57ae937c0c40a2951117b66277b2d06de128dc7663e801d000000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff473f290d82dad686230fef5b223c5e3da0436844f09c72f2210fb9e1010f3d02010000001600141ad1af8b95b1ea4881905a2154d06b313e97901fffffffff020000000000000000376a352434d6006027eff2f54d7d301f2183ce816ed88e456888ea3baf213993122a2745e4e31c0601bfe22c80b65e5004721d93539e5904452c0a27010000001600141ad1af8b95b1ea4881905a2154d06b313e97901f02000002000000000000", + "btc_change": 4949945450, + "btc_fee": 25550, + "rawtransaction": "02000000000102b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f600000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff8507ccc200545adb00db06cf3e1d341d1b00517f5b14121efbaa5840407855cd01000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff020000000000000000376a35ed10c2a73d16732f91ee5864731789bd7634428960f54c028b79f60058a93d27a6be34e6ff125a724211eda463802d049ab645ee1b6a2c0a2701000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl" + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8" } } } }, "/v2/assets": { "result": [ + { + "asset": "PARENTB", + "asset_id": "4641584819", + "asset_longname": null, + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset PARENTB", + "first_issuance_block_index": 217, + "last_issuance_block_index": 217, + "confirmed": true, + "first_issuance_block_time": 1730898781, + "last_issuance_block_time": 1730898781, + "supply_normalized": "1000.00000000" + }, + { + "asset": "PARENTA", + "asset_id": "4641584818", + "asset_longname": null, + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset PARENTA", + "first_issuance_block_index": 215, + "last_issuance_block_index": 215, + "confirmed": true, + "first_issuance_block_time": 1730898773, + "last_issuance_block_time": 1730898773, + "supply_normalized": "1000.00000000" + }, { "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 100000000000, @@ -5393,16 +5409,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730886581, - "last_issuance_block_time": 1730886581, + "first_issuance_block_time": 1730898740, + "last_issuance_block_time": 1730898740, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "owner": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "owner": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false, "supply": 100000000000, @@ -5410,16 +5426,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730886556, - "last_issuance_block_time": 1730886556, + "first_issuance_block_time": 1730898711, + "last_issuance_block_time": 1730898711, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -5427,55 +5443,21 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730886382, - "last_issuance_block_time": 1730886399, + "first_issuance_block_time": 1730898537, + "last_issuance_block_time": 1730898544, "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETB", - "asset_id": "103804245871", - "asset_longname": null, - "issuer": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "owner": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 161, - "last_issuance_block_index": 161, - "confirmed": true, - "first_issuance_block_time": 1730886377, - "last_issuance_block_time": 1730886377, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1730886352, - "last_issuance_block_time": 1730886370, - "supply_normalized": "0.00000180" } ], - "next_cursor": 6, - "result_count": 11 + "next_cursor": 9, + "result_count": 13 }, "/v2/assets/": { "result": { "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 10000000000, @@ -5483,15 +5465,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730886221, - "last_issuance_block_time": 1730886232, + "first_issuance_block_time": 1730898347, + "last_issuance_block_time": 1730898357, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5499,14 +5481,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5514,7 +5496,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5527,7 +5509,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -5549,9 +5531,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5568,7 +5550,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5596,9 +5578,9 @@ }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5615,7 +5597,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5643,9 +5625,9 @@ }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5662,7 +5644,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5690,9 +5672,9 @@ }, { "tx_index": 64, - "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "block_index": 213, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "block_index": 220, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5705,11 +5687,11 @@ "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898794, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5737,9 +5719,9 @@ }, { "tx_index": 56, - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5756,7 +5738,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5789,13 +5771,13 @@ "/v2/assets//matches": { "result": [ { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5809,7 +5791,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5829,13 +5811,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 56, - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5849,7 +5831,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5869,13 +5851,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", "tx0_index": 53, - "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 54, - "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5889,7 +5871,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5909,13 +5891,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5929,7 +5911,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5956,20 +5938,20 @@ "result": [ { "block_index": 199, - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "event": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "tx_index": 65, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5977,20 +5959,20 @@ }, { "block_index": 125, - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", + "event": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -5998,20 +5980,20 @@ }, { "block_index": 124, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6019,20 +6001,20 @@ }, { "block_index": 124, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "event": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6044,16 +6026,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6066,17 +6048,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 216, + "block_index": 223, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6087,17 +6069,17 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 214, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_index": 217, + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "tx_index": 81, + "quantity": 50000000, + "action": "issuance fee", + "event": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", + "tx_index": 84, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6105,20 +6087,20 @@ "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.50000000" }, { - "block_index": 213, - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "block_index": 215, + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", - "tx_index": 80, + "quantity": 50000000, + "action": "issuance fee", + "event": "efeb32ad1e798d9117382cdd1d0e9714530e4f27b6d57ca9e6d5b6bc9186b375", + "tx_index": 82, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898773, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6126,20 +6108,20 @@ "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.50000000" }, { - "block_index": 212, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_index": 214, + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", - "tx_index": 79, + "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6150,17 +6132,17 @@ "quantity_normalized": "0.00000010" }, { - "block_index": 211, - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "block_index": 213, + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", - "tx_index": 78, + "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6171,8 +6153,8 @@ "quantity_normalized": "0.00000010" } ], - "next_cursor": 64, - "result_count": 46 + "next_cursor": 69, + "result_count": 48 }, "/v2/assets//dividends": { "result": [], @@ -6183,14 +6165,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", + "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6205,20 +6187,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6233,20 +6215,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6261,20 +6243,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "transfer": false, "callable": false, "call_date": 0, @@ -6289,7 +6271,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886221, + "block_time": 1730898347, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6300,11 +6282,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6312,7 +6294,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6325,10 +6307,10 @@ }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6336,7 +6318,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6349,10 +6331,10 @@ }, { "tx_index": 80, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6360,7 +6342,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6373,10 +6355,10 @@ }, { "tx_index": 79, - "tx_hash": "9c5f434b7431abf7a259a4f10cbcb4a94f95edef3e6937797efa21efe5902da5", + "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", "block_index": 212, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6384,7 +6366,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886603, + "block_time": 1730898762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6397,10 +6379,10 @@ }, { "tx_index": 78, - "tx_hash": "f1ee06c1441ab8f6b812b2d2084bd86c61330a7601006e3e1823da240e7da440", + "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6408,7 +6390,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6427,9 +6409,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6438,7 +6420,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6449,7 +6431,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6466,9 +6448,9 @@ }, { "tx_index": 29, - "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", + "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", "block_index": 142, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6477,7 +6459,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6488,7 +6470,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886295, + "block_time": 1730898440, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6505,9 +6487,9 @@ }, { "tx_index": 30, - "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", + "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", "block_index": 150, - "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", + "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6515,10 +6497,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -6527,7 +6509,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886324, + "block_time": 1730898490, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6544,18 +6526,18 @@ }, { "tx_index": 33, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6566,7 +6548,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6588,9 +6570,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6599,7 +6581,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6610,7 +6592,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6639,7 +6621,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6647,7 +6629,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6656,7 +6638,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6664,7 +6646,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6673,7 +6655,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6681,7 +6663,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6690,7 +6672,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6703,29 +6685,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6740,7 +6722,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6754,27 +6736,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", + "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", "block_index": 147, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6789,7 +6771,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886314, + "block_time": 1730898478, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6803,19 +6785,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6823,7 +6805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6838,7 +6820,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6852,19 +6834,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6872,7 +6854,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6887,7 +6869,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6908,8 +6890,8 @@ "asset": "A95428958968845068", "asset_id": "95428958968845068", "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "owner": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false, "supply": 0, @@ -6917,8 +6899,8 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1730886348, - "last_issuance_block_time": 1730886348, + "first_issuance_block_time": 1730898512, + "last_issuance_block_time": 1730898512, "supply_normalized": "0.00000000" } ], @@ -6928,10 +6910,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6956,7 +6938,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6974,22 +6956,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "616a06c3f80773e0eec46cd5d0a4cbd87ed528b8911062815f38d6bf886df4a5", + "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", "tx_index": 13, "block_index": 125, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886232, + "block_time": 1730898357, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -6998,22 +6980,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316", + "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", "tx_index": 12, "block_index": 124, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886228, + "block_time": 1730898354, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7022,22 +7004,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7052,22 +7034,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "bd39d303ae0d62aec05796d7964301d07abaf8add921feea8ce0f9a9a1a72dc3", + "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "97098b041537b28d283572bcac3782cbcd5df68f8ca47ce417d515201a694301", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886224, + "block_time": 1730898350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -7083,9 +7065,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7102,7 +7084,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7130,9 +7112,9 @@ }, { "tx_index": 56, - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7149,7 +7131,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7177,9 +7159,9 @@ }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7196,7 +7178,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7224,9 +7206,9 @@ }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7243,7 +7225,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7270,45 +7252,45 @@ "get_price_normalized": "1.0000000000000000" }, { - "tx_index": 64, - "tx_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "block_index": 213, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 0, + "tx_index": 58, + "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "block_index": 214, + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, "expiration": 21, - "expire_index": 219, + "expire_index": 213, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898769, "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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.00000000", - "give_remaining_normalized": "0.00000000", + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", @@ -7317,15 +7299,15 @@ "get_price_normalized": "1.0000000000000000" } ], - "next_cursor": 58, + "next_cursor": 64, "result_count": 8 }, "/v2/orders/": { "result": { - "tx_index": 82, - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "tx_index": 89, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -7333,7 +7315,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 236, + "expire_index": 243, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7342,11 +7324,11 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730886624, + "block_time": 1730898812, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -7372,13 +7354,13 @@ "/v2/orders//matches": { "result": [ { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7392,7 +7374,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7419,15 +7401,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "btc_amount": 2000, - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "status": "valid", "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "btc_amount_normalized": "0.00002000" } ], @@ -7438,9 +7420,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "block_index": 191, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7458,7 +7440,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730886496, + "block_time": 1730898646, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7484,9 +7466,9 @@ }, { "tx_index": 58, - "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "block_index": 214, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7504,7 +7486,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730886620, + "block_time": 1730898769, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7530,9 +7512,9 @@ }, { "tx_index": 53, - "tx_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", + "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", "block_index": 188, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7550,7 +7532,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886417, + "block_time": 1730898572, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7576,9 +7558,9 @@ }, { "tx_index": 55, - "tx_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", + "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", "block_index": 211, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7596,7 +7578,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886600, + "block_time": 1730898757, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7622,9 +7604,9 @@ }, { "tx_index": 62, - "tx_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", + "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", "block_index": 197, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7642,7 +7624,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886529, + "block_time": 1730898688, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7673,13 +7655,13 @@ "/v2/orders///matches": { "result": [ { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7696,7 +7678,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7716,13 +7698,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 56, - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7739,7 +7721,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886496, + "block_time": 1730898646, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7759,13 +7741,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", "tx0_index": 53, - "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 54, - "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7782,7 +7764,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886417, + "block_time": 1730898572, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7802,13 +7784,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7825,7 +7807,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7851,13 +7833,13 @@ "/v2/order_matches": { "result": [ { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7871,7 +7853,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7891,13 +7873,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", "tx0_index": 55, - "tx0_hash": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 56, - "tx1_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7911,7 +7893,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730886496, + "block_time": 1730898646, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7931,13 +7913,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5_df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", + "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", "tx0_index": 53, - "tx0_hash": "6bd02c231b7c420ebdd079dd073eb21e1ca7a03ed4df39202e6e04b0e80cadf5", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 54, - "tx1_hash": "df7a2ba2ba9ca8b738f05a4fc1b6718ef7241ebbf23340b4d4536e1cc74e965e", - "tx1_address": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7951,7 +7933,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730886417, + "block_time": 1730898572, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7971,13 +7953,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx0_index": 64, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx1_index": 58, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7991,7 +7973,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8036,66 +8018,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", + "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", "block_index": 121, - "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", + "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730886217, + "block_time": 1730898343, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ee366d303008de29c1f29cdff882b519245f6652ddfe99ddc933e610beda5115", + "tx_hash": "d04e1815ea01ea320d5bd70e7bcda49e0f042749f91b3116584ff7a4a1a9edd4", "block_index": 120, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730886214, + "block_time": 1730898340, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "43da716b1f2f1e00880372cb84be2a52dfa70aa764de4564d5e265d2364c2c8d", + "tx_hash": "6d6092b5d22a3ad8197e66cd85362be31503d99b5b030532ec9e64756dd21ca0", "block_index": 119, - "source": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730886211, + "block_time": 1730898336, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "382b4c27437eab49985a9e81ecf9f3ece4477debd0ac690ed8a979ad3471a47d", + "tx_hash": "5fe912a7879caa5bc0c86788564c5c07c8f9ab632b9dc008845061755b9eb4ed", "block_index": 118, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730886207, + "block_time": 1730898332, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "c2b948594d283e13dc4281672b2b78d7ff522fcc711344881a19de5b805a5600", + "tx_hash": "14d1b38c8dc9ae9bd3b115f907e94a6a7561124382141848df564e207ab5bfc6", "block_index": 117, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730886203, + "block_time": 1730898329, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8107,9 +8089,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8118,7 +8100,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8129,7 +8111,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8146,9 +8128,9 @@ }, { "tx_index": 29, - "tx_hash": "410934d04c8bc1bc15875ce703b1b68917f8c71546091e170252311ca5be8631", + "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", "block_index": 142, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8157,7 +8139,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8168,7 +8150,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886295, + "block_time": 1730898440, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8185,9 +8167,9 @@ }, { "tx_index": 30, - "tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", + "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", "block_index": 150, - "source": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", + "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8195,10 +8177,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8a1bebb99fa666a5a904a7d1c78dc30aca8f6af65fe30489e9758fbc48ceb8d1", - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -8207,7 +8189,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886324, + "block_time": 1730898490, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8224,9 +8206,9 @@ }, { "tx_index": 68, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8235,7 +8217,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8246,11 +8228,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8263,18 +8245,18 @@ }, { "tx_index": 33, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8285,7 +8267,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8307,9 +8289,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8318,7 +8300,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8329,7 +8311,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8350,19 +8332,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8370,7 +8352,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8385,7 +8367,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8399,19 +8381,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8419,7 +8401,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8434,7 +8416,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8453,20 +8435,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8487,20 +8469,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8523,12 +8505,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "event": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "tx_index": 42, - "utxo": "3264140a2e7efabf03b12425c19a3dadb411458ec26c4bc3e8d1db42758660ef:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "utxo": "ed49366d20a6a726ce19d702e5991e11d77b163b8b6ee4d78846be58f66ff3ec:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "confirmed": true, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8545,47 +8527,47 @@ "/v2/events": { "result": [ { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8596,20 +8578,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8619,24 +8601,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8646,29 +8628,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 733, - "result_count": 739 + "next_cursor": 787, + "result_count": 793 }, "/v2/events/": { "result": { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 } }, "/v2/events/counts": { @@ -8679,7 +8661,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 69 + "event_count": 76 }, { "event": "SWEEP", @@ -8691,7 +8673,7 @@ }, { "event": "ORDER_UPDATE", - "event_count": 16 + "event_count": 17 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -8700,19 +8682,19 @@ "/v2/events/": { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8722,24 +8704,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 732, + "event_index": 786, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8749,51 +8731,51 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 729, + "event_index": 783, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 216, + "block_index": 223, "calling_function": "utxo move", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", - "utxo_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 }, { - "event_index": 711, + "event_index": 760, "event": "CREDIT", "params": { - "address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", - "block_index": 214, - "calling_function": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "quantity": 10, - "tx_index": 81, + "block_index": 220, + "calling_function": "cancel order", + "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "quantity": 0, + "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730886620, + "block_time": 1730898794, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8801,75 +8783,75 @@ "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000000" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 }, { - "event_index": 710, + "event_index": 748, "event": "CREDIT", "params": { - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "asset": "MPMASSET", - "block_index": 214, - "calling_function": "mpma send", - "event": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "quantity": 10, - "tx_index": 81, + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960545690062", + "block_index": 218, + "calling_function": "issuance", + "event": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "quantity": 100000000000, + "tx_index": 85, "utxo": null, "utxo_address": null, - "block_time": 1730886620, + "block_time": 1730898785, "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "asset_longname": "PARENTB.SUBASSETB", + "description": "My super subasset SUBASSETB", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "1000.00000000" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "block_index": 218, + "block_time": 1730898785 } ], - "next_cursor": 709, - "result_count": 96 + "next_cursor": 740, + "result_count": 101 }, "/v2/events//count": { "result": { "event": "CREDIT", - "event_count": 96 + "event_count": 101 } }, "/v2/dispenses": { "result": [ { - "tx_index": 83, + "tx_index": 90, "dispense_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8884,7 +8866,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8898,19 +8880,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "617beba54a9f35b151cc97c7e8eac9177fd4a170940dbcf429666016cd1d5cb1", + "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8918,7 +8900,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8933,11 +8915,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886552, + "block_time": 1730898708, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -8947,27 +8929,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e5609f154cf057a6336f2ceac47aab9dc4ef794b780ebb9ac31489e0a861e4", + "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", "block_index": 147, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 216, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "block_index": 223, + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "last_status_tx_hash": null, - "origin": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8982,7 +8964,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730886314, + "block_time": 1730898478, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8996,19 +8978,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "05b9738f0335f4ab18333a683fc69f38857180a24996d5ff998ea2338c14cc90", + "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9016,7 +8998,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9031,7 +9013,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886291, + "block_time": 1730898437, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9045,19 +9027,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea28782689037b7ea2437e9bca037b8ab99821fe0b94e371a901e1bf5d7be4ed", + "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", "block_index": 140, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a19ac666dfe2d71a209b76f468b7b7735094798ee090da06e4ecec73c6e99171", + "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9065,7 +9047,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9080,7 +9062,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730886288, + "block_time": 1730898423, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9098,11 +9080,11 @@ "/v2/sends": { "result": [ { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9110,7 +9092,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9122,11 +9104,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 83, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "tx_index": 90, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9134,11 +9116,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9147,10 +9129,10 @@ }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9158,7 +9140,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9171,10 +9153,10 @@ }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9182,11 +9164,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9195,10 +9177,10 @@ }, { "tx_index": 81, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9206,11 +9188,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9224,193 +9206,193 @@ "/v2/issuances": { "result": [ { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, + "block_index": 221, + "asset": "A95428960586448133", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, + "description": "", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" }, { - "tx_index": 70, - "tx_hash": "c622762c16349bf83423fcf478e846bfbad4ee4593c4f81368e9c543ef2e3863", + "tx_index": 87, + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", "msg_index": 0, - "block_index": 204, - "asset": "UTXOASSET", - "quantity": 100000000000, + "block_index": 220, + "asset": "A95428960545690062", + "quantity": 0, "divisible": true, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset", - "fee_paid": 50000000, + "description": "My super subasset SUBASSETB", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETB", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886556, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898794, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" }, { - "tx_index": 52, - "tx_hash": "21af53968e0d06d2a5609043761def6f9faceae9011e937fcea381a152446720", + "tx_index": 86, + "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", "msg_index": 0, - "block_index": 165, - "asset": "A95428956980101314", - "quantity": 100000000000, + "block_index": 219, + "asset": "A95428960939749879", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "A subnumeric asset", + "description": "My super subasset SUBASSETA", "fee_paid": 0, "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", + "asset_longname": "PARENTA.SUBASSETA", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886403, - "quantity_normalized": "1000.00000000", + "block_time": 1730898790, + "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 51, - "tx_hash": "5b04397981bd95828eb3f6df60c4eb3924d46650b8886c1b8ce9d800a14a3d93", + "tx_index": 85, + "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", "msg_index": 0, - "block_index": 164, - "asset": "TESTLOCKDESC", - "quantity": 0, + "block_index": 218, + "asset": "A95428960545690062", + "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "Test Locking Description", + "description": "My super subasset SUBASSETB", "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETB", "locked": false, "reset": false, - "description_locked": true, + "description_locked": false, "fair_minting": false, - "asset_events": "lock_description", + "asset_events": "creation", "confirmed": true, - "block_time": 1730886399, - "quantity_normalized": "0.00000000", + "block_time": 1730898785, + "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 50, - "tx_hash": "545a5f6a03841970ecbf8c7315cff14da3a891e18ef5cf142f69139e396782cd", + "tx_index": 84, + "tx_hash": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", "msg_index": 0, - "block_index": 163, - "asset": "A95428959745315388", - "quantity": 0, + "block_index": 217, + "asset": "PARENTB", + "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, + "description": "My super asset PARENTB", + "fee_paid": 50000000, "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "asset_longname": null, "locked": false, "reset": false, "description_locked": false, "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730886395, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" + "block_time": 1730898781, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 22, - "result_count": 27 + "next_cursor": 29, + "result_count": 34 }, "/v2/issuances/": { "result": { - "tx_index": 76, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", + "tx_index": 88, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, + "block_index": 221, + "asset": "A95428960586448133", + "quantity": 0, "divisible": true, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, + "description": "", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" } }, "/v2/sweeps": { "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -9421,16 +9403,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" } ], @@ -9441,9 +9423,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9451,14 +9433,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886280, + "block_time": 1730898417, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "47d069a347dd6568268e132b943b3fd9c042477726111b877883c91f3ea6474c", + "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", "block_index": 137, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9466,7 +9448,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886277, + "block_time": 1730898413, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9476,9 +9458,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9486,24 +9468,24 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730886280, + "block_time": 1730898417, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_index": 221, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960586448133", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, - "hard_cap": 180, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 100, "premint_quantity": 0, @@ -9516,36 +9498,33 @@ "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898808, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6d9a2b31b8fe17c3b631dd0f93f5d6139c45b891b24b850fc6dda225d5d0d1a4", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_index": 87, + "block_index": 220, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960545690062", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETB", + "description": "My super subasset SUBASSETB", + "price": 0, + "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -9561,28 +9540,28 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730886348, - "price_normalized": "1.0000000000000000", + "block_time": 1730898794, + "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, + "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", + "tx_index": 86, + "block_index": 219, + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "asset": "A95428960939749879", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETA", + "description": "My super subasset SUBASSETA", + "price": 0, + "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -9594,35 +9573,32 @@ "divisible": true, "pre_minted": false, "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886271, - "price_normalized": "50.0000000000000000", + "block_time": 1730898790, + "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FAIRMINTC", + "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "tx_index": 44, + "block_index": 159, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -9633,85 +9609,82 @@ "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "open", - "earned_quantity": 19, + "status": "closed", + "earned_quantity": 180, "commission": 0, - "paid_quantity": 5, + "paid_quantity": 0, "confirmed": true, - "block_time": 1730886255, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", + "block_time": 1730898523, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", + "earned_quantity_normalized": "0.00000180", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "d88202e7ae5acecf7d4c6acfeaf326999c478927e9079b56e22a77d61e65efd0", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", + "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", + "tx_index": 43, + "block_index": 156, + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", "description": "", "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, + "quantity_by_price": 5, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 0, "premint_quantity": 0, "start_block": 0, "end_block": 0, "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, + "soft_cap": 0, + "soft_cap_deadline_block": 0, "lock_description": false, "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730886251, + "block_time": 1730898512, "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" + "premint_quantity_normalized": "0.00000000" } ], - "next_cursor": 1, - "result_count": 6 + "next_cursor": 4, + "result_count": 9 }, "/v2/fairmints": { "result": [ { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9720,22 +9693,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e32b74f41d90bad3d0653eb6c950df18f21a0451e2d2b975bba1721cfa67b80e", + "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", "tx_index": 45, "block_index": 158, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886356, + "block_time": 1730898520, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9744,22 +9717,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "fcfb392ffa0b9ceee0b47501f5ca86efbcd4c8fd13a4248352d02ef15d880691", + "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "fdbd6b4bc2c857dca67711746bac4db1fae8791870b9e77f758f122c1f25dc5f", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886274, + "block_time": 1730898410, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9768,22 +9741,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71e3931009a0fab83e0de0d93129f3d5f608f6b59d109cc51951080728574353", + "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886266, + "block_time": 1730898402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9792,22 +9765,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "ac20154d6c47c19560f2e02227c2736f99ed3bf3e96e3e317af343ff02c9cae8", + "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "adfaf81713f850bb04c1ae02aff534be692d43e6b8c3bc81304564d5dc917e1a", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886262, + "block_time": 1730898388, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9821,22 +9794,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, "block_index": 159, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -9847,41 +9820,41 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", - "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" - }, { "vout": 0, "height": 208, "value": 546, - "confirmations": 9, + "confirmations": 16, "amount": 5.46e-06, - "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", - "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" + "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" }, { "vout": 1, - "height": 215, + "height": 222, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "address": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h" + "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" }, { - "vout": 2, - "height": 161, - "value": 100000, - "confirmations": 56, - "amount": 0.001, - "txid": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5", - "address": "bcrt1quzrk3sual9tek77ratwd8xly8fzra6s36fcsnd" + "vout": 1, + "height": 207, + "value": 546, + "confirmations": 17, + "amount": 5.46e-06, + "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" + }, + { + "vout": 1, + "height": 221, + "value": 30000, + "confirmations": 3, + "amount": 0.0003, + "txid": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4" } ], "next_cursor": null, @@ -9890,28 +9863,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "4519f82c1ed3f7e2dcaaa3bcb580feeddc5efbb4d2946ac38b795c6acc4c4412" + "tx_hash": "18c8292a8126d912dbb5ab301ae88bb93eb450259b9e7310dfa512bdff233d37" }, { - "tx_hash": "5214f86d4d2267cf654fcdc53d5acd86756978782804846a7ce33408896ac316" + "tx_hash": "fd2cb81224522fc1415c7317daf6d89c39eb79b79a5431e4c4a13f364715f149" }, { - "tx_hash": "a239b17588ee52999d0c52eea7813185ab36a70effba05497ed3726f1b687443" + "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe" }, { - "tx_hash": "dc66355d306b60dbac5b6bdb4a8141fc1f11648a8c34955d58006d97f31e6e5e" + "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7" }, { - "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" + "tx_hash": "16526ef5652dfe3b5199019a8acf05a470963dad9093583e05a14abeff52d5ea" }, { - "tx_hash": "f5067f400bf33532ca6ab0094d0442388ba5829806f5db9a41717901c2dc1a91" + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3" }, { - "tx_hash": "45e8de234c0b52f86d33cde23aa9fbe52cecfc84782be3df834740f29b0499bd" + "tx_hash": "167369f337dfa88bd51bf20bdeabc28c33c7f4fd43bb835f7d8757dd804fb4f6" }, { - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6" + "tx_hash": "b19bbad697e8f745b8dd5f084f96a01f8089cdeb2267c8b79dd3e29d759da8fb" } ], "next_cursor": null, @@ -9919,48 +9892,48 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "33f637d86afc199db09906ca7a57f29604a0b40ca1b07d04ac857586311997e1" + "block_index": 5, + "tx_hash": "a1e1862525e3efd76ea5f0db4d9f4ed15d8f5abd685db9b0cc8d892cb67e620c" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 0, - "height": 208, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8" - }, { "vout": 1, - "height": 215, + "height": 222, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2" + "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096" + }, + { + "vout": 0, + "height": 208, + "value": 546, + "confirmations": 16, + "amount": 5.46e-06, + "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa" }, { "vout": 1, "height": 207, "value": 546, - "confirmations": 10, + "confirmations": 17, "amount": 5.46e-06, - "txid": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a" + "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "030966eed548664c6fc0fd96c9d3bdbd22835d46c36251f34a32f0b380ca42bac3" + "result": "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101a5f42e5f80961ac262d40fc73ba5463a008993b619f90e68ef7c67795471b3360100000000ffffffff03e8030000000000001600141ad1af8b95b1ea4881905a2154d06b313e97901f00000000000000000c6a0aa17405a4003cc1c6497c8714092701000000160014624b13a86be421eb76d68cecd83105881369410f024730440220549d14d47b716b826b9afc9d6f2bf1d46e947ae886a30735a453dd5e6736966002205a8b25282e7ef5a4317e11dccb08ef9b6bb31fe8ea44356c41a1648df326dab2012103cd47bca279d06d3537c8bfadd50f781929f898ce7088fbb462156577a96079f700000000" + "result": "02000000000101d1d4156b83b56e571f9ba594e9aa65992272697a6de9caaa651a0dc3a6fa7e500100000000ffffffff03e803000000000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c00000000000000000c6a0ad778ef892ea746169a1d871409270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f024730440220464e2423ab3da160e439d44da2eae939911dcd9a54d15ea1f16da79aabd7a3000220088d1fe2f68b6432a34ad4f5cafa2ae74235887042411aadf87ef8f361776f27012103610de3d16a355f04ba4d9fffb79d13cbdb9940e8c6579b04d736f56fb5ac6cbf00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58821 + "result": 58736 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9980,28 +9953,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84 + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91 }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "quantity": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10011,22 +9984,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10036,22 +10009,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", - "block_index": 216, - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "block_index": 223, + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10061,30 +10034,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730886641.799628, + "block_time": 1730898824.7521684, "btc_amount": 0, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "destination": "", "fee": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, - "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, + "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -10098,7 +10071,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -10107,19 +10080,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10129,7 +10102,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -10138,28 +10111,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84 + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91 }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "quantity": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10169,22 +10142,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "CREDIT", "params": { - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "send", - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10194,22 +10167,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "asset": "XCP", - "block_index": 216, - "event": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "block_index": 223, + "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "quantity": 10000, - "tx_index": 84, + "tx_index": 91, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10219,30 +10192,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 }, { - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730886641.799628, + "block_time": 1730898824.7521684, "btc_amount": 0, - "data": "02000000000000000100000000000027108069f674132db632222ff85b0c0131df46b5c6ccc4", + "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", "destination": "", "fee": 10000, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", - "tx_hash": "ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c", - "tx_index": 84, - "utxos_info": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84:1 ad48d8153e0f4bb333208b01bc3bdfc2cb970d23a467b581cbfbb60bb8dba11c:1 2 ", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_index": 91, + "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "memo": null, "asset_info": { "asset_longname": null, @@ -10256,7 +10229,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730886641.799628 + "timestamp": 1730898824.7521684 } ], "next_cursor": null, @@ -10275,40 +10248,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 725, + "event_index": 779, "event": "NEW_BLOCK", "params": { - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_index": 216, - "block_time": 1730886637, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_index": 223, + "block_time": 1730898820, "difficulty": 545259519, - "previous_block_hash": "436c10a53b44eb1dbd3f699ee5c85a5227c37f28f7884ae0683051b2d4787427" + "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388" }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 719, - "result_count": 116 + "next_cursor": 773, + "result_count": 123 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 726, + "event_index": 780, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5fbbcbd8b655f0a7719db0d6168b2646bef543db2f62d57eeea4e900de4d091d", - "block_index": 216, - "block_time": 1730886637, + "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", + "block_index": 223, + "block_time": 1730898820, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "fee": 0, - "source": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "utxos_info": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1 1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0 3 1", + "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10318,32 +10291,32 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 720, - "result_count": 84 + "next_cursor": 774, + "result_count": 91 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 727, + "event_index": 781, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "out_index": 0, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": 597, @@ -10352,58 +10325,58 @@ "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 738, + "event_index": 792, "event": "BLOCK_PARSED", "params": { - "block_index": 216, - "ledger_hash": "4f3436139c41cde6041fa0e354bff237bff14243daf2555dcdd98faa3f1afbd6", - "messages_hash": "70fe112fd76073f086b04501a109f5cb751125eb591e5f541250d476a0e53405", + "block_index": 223, + "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", + "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", "transaction_count": 1, - "txlist_hash": "f19ccb54fb8ce8f2a3f819ee82036ceba698c7cef10048c24cde4663892708bf", - "block_time": 1730886637 + "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", + "block_time": 1730898820 }, "tx_hash": null, - "block_index": 216, - "block_time": 1730886637 + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 724, - "result_count": 116 + "next_cursor": 778, + "result_count": 123 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 737, + "event_index": 791, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90 }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 723, - "result_count": 69 + "next_cursor": 777, + "result_count": 76 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 731, + "event_index": 785, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 216, - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "block_index": 223, + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 2000000000, - "tx_index": 83, - "utxo": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", - "utxo_address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", - "block_time": 1730886637, + "tx_index": 90, + "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10413,30 +10386,30 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 728, - "result_count": 76 + "next_cursor": 782, + "result_count": 80 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 734, + "event_index": 788, "event": "CREDIT", "params": { - "address": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "asset": "XCP", - "block_index": 216, + "block_index": 223, "calling_function": "dispense", - "event": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", + "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", "quantity": 66, - "tx_index": 83, + "tx_index": 90, "utxo": null, "utxo_address": null, - "block_time": 1730886637, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10446,13 +10419,13 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 732, - "result_count": 96 + "next_cursor": 786, + "result_count": 101 }, "/v2/events/ENHANCED_SEND": { "result": [ @@ -10462,26 +10435,26 @@ "params": { "asset": "MPMASSET", "block_index": 210, - "destination": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "memo": null, "quantity": 1000, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": "valid", - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "tx_index": 77, - "block_time": 1730886595, + "block_time": 1730898744, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "114c5ca242516edbfb18fe71e06d6ac9e4b6acb06bfe6f0deeedd7039dfc4b6d", + "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", "block_index": 210, - "block_time": 1730886595 + "block_time": 1730898744 } ], "next_cursor": 533, @@ -10495,15 +10468,15 @@ "params": { "asset": "XCP", "block_index": 214, - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "tx_index": 81, - "block_time": 1730886620, + "block_time": 1730898769, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10513,9 +10486,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", + "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", "block_index": 214, - "block_time": 1730886620 + "block_time": 1730898769 } ], "next_cursor": 715, @@ -10538,20 +10511,20 @@ "event": "SWEEP", "params": { "block_index": 199, - "destination": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "status": "valid", - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "tx_index": 65, - "block_time": 1730886537, + "block_time": 1730898695, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "c98dddc60f27fd9d577ec57c8f9429f67973a3a01aab8de9f83b106fdbb50bf6", + "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", "block_index": 199, - "block_time": 1730886537 + "block_time": 1730898695 } ], "next_cursor": null, @@ -10568,15 +10541,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": "valid", - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "tx_index": 42, - "block_time": 1730886343, + "block_time": 1730898507, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -10590,9 +10563,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1f7e82635b6522a1cdc21948fccd2a0d81fa472cef22566c901a1b3f90ad2598", + "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", "block_index": 155, - "block_time": 1730886343 + "block_time": 1730898507 } ], "next_cursor": null, @@ -10606,60 +10579,60 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 647, + "event_index": 769, "event": "ASSET_CREATION", "params": { - "asset_id": "101158363923", - "asset_longname": null, - "asset_name": "MPMASSET", - "block_index": 209, - "block_time": 1730886581 + "asset_id": "95428960586448133", + "asset_longname": "PARENTB.SUBASSETC", + "asset_name": "A95428960586448133", + "block_index": 221, + "block_time": 1730898808 }, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "block_index": 209, - "block_time": 1730886581 + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_time": 1730898808 } ], - "next_cursor": 606, - "result_count": 13 + "next_cursor": 746, + "result_count": 18 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 648, + "event_index": 770, "event": "ASSET_ISSUANCE", "params": { - "asset": "MPMASSET", - "asset_events": "creation", - "asset_longname": null, - "block_index": 209, + "asset": "A95428960586448133", + "asset_events": "open_fairminter", + "asset_longname": "PARENTB.SUBASSETC", + "block_index": 221, "call_date": 0, - "call_price": 0.0, + "call_price": 0, "callable": false, - "description": "My super asset B", - "description_locked": false, + "description": "", "divisible": true, - "fee_paid": 50000000, - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "fair_minting": true, + "fee_paid": 0, + "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "locked": false, - "quantity": 100000000000, + "quantity": 0, "reset": false, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "status": "valid", "transfer": false, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "tx_index": 76, - "block_time": 1730886581, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_time": 1730898808, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" }, - "tx_hash": "eb77a78347073b660033222fa20aedde81db5260d262c8fa9028d11dbde9428b", - "block_index": 209, - "block_time": 1730886581 + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_time": 1730898808 } ], - "next_cursor": 607, - "result_count": 27 + "next_cursor": 763, + "result_count": 34 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ @@ -10670,12 +10643,12 @@ "asset": "XCP", "block_index": 200, "quantity": 1, - "source": "bcrt1qlf4egapa206ldtmftq7aqghyvrz6wp6vk87hrr", + "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", "status": "valid", "tag": "64657374726f79", - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "tx_index": 66, - "block_time": 1730886540, + "block_time": 1730898698, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10685,9 +10658,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "5a647a6eb4cf6a12be655ad356c427331ec1f09c3a513d9435680ab91cf1eb84", + "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", "block_index": 200, - "block_time": 1730886540 + "block_time": 1730898698 } ], "next_cursor": 157, @@ -10696,12 +10669,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 722, + "event_index": 776, "event": "OPEN_ORDER", "params": { - "block_index": 215, + "block_index": 222, "expiration": 21, - "expire_index": 236, + "expire_index": 243, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10712,15 +10685,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "status": "open", - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "tx_index": 82, - "block_time": 1730886624, + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "tx_index": 89, + "block_time": 1730898812, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, @@ -10740,9 +10713,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a9358e20e9e7c8d7f3dac8a574c8f431fcbfbf13bcdb2d6052dae1185a194af2", - "block_index": 215, - "block_time": 1730886624 + "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "block_index": 222, + "block_time": 1730898812 } ], "next_cursor": 564, @@ -10760,20 +10733,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "match_expire_index": 233, "status": "pending", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "tx0_block_index": 198, "tx0_expiration": 21, - "tx0_hash": "7655fe5c881e5e22f376bf3d98d0a0f773b3ac07149ec454b5e64cbb3f43b308", + "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", "tx0_index": 64, - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", "tx1_block_index": 213, "tx1_expiration": 21, - "tx1_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "tx1_index": 58, - "block_time": 1730886606, + "block_time": 1730898765, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10792,9 +10765,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_time": 1730886606 + "block_time": 1730898765 } ], "next_cursor": 521, @@ -10803,19 +10776,19 @@ "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 707, + "event_index": 759, "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c" + "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a" }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 } ], - "next_cursor": 693, - "result_count": 16 + "next_cursor": 707, + "result_count": 17 }, "/v2/events/ORDER_FILLED": { "result": [ @@ -10824,11 +10797,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b" + "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca" }, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "block_time": 1730886496 + "block_time": 1730898646 } ], "next_cursor": null, @@ -10840,13 +10813,13 @@ "event_index": 688, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", + "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", "status": "expired" }, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_time": 1730886606 + "block_time": 1730898765 } ], "next_cursor": 511, @@ -10860,18 +10833,18 @@ "params": { "block_index": 191, "btc_amount": 2000, - "destination": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_221bc16c191706e44d4d94e81f7806ce8126980559baaa09488e97207b2a7d8b", - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "tx_index": 57, - "block_time": 1730886496, + "block_time": 1730898646, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "23ccc20f356422ae8ee81985d63858f0eb5722f9e1ebc2463ac7f0393da651c6", + "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", "block_index": 191, - "block_time": 1730886496 + "block_time": 1730898646 } ], "next_cursor": null, @@ -10884,16 +10857,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 197, - "offer_hash": "38a6b93f061412b98e7826f4bf4304b8e6c8023b50bd2c5729598c1204e9a586", - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": "valid", - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "tx_index": 63, - "block_time": 1730886529 + "block_time": 1730898688 }, - "tx_hash": "0e64e521649828eb48f8657addbfde8874a177e8915b626c38f9d4879917e388", + "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", "block_index": 197, - "block_time": 1730886529 + "block_time": 1730898688 } ], "next_cursor": null, @@ -10902,21 +10875,21 @@ "/v2/events/ORDER_EXPIRATION": { "result": [ { - "event_index": 708, + "event_index": 761, "event": "ORDER_EXPIRATION", "params": { - "block_index": 214, - "order_hash": "447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "source": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "block_time": 1730886620 + "block_index": 220, + "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_time": 1730898794 }, - "tx_hash": "62459d67530254fd097e6da0620d232238201654f5ecf2f3e3db2bc783c5c322", - "block_index": 214, - "block_time": 1730886620 + "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "block_index": 220, + "block_time": 1730898794 } ], - "next_cursor": 663, - "result_count": 4 + "next_cursor": 708, + "result_count": 5 }, "/v2/events/ORDER_MATCH_EXPIRATION": { "result": [ @@ -10925,14 +10898,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 213, - "order_match_id": "5d841a3e99696da1906ddaefc854f059eb45c57e2f7af7083b451395c26a76eb_447a23c43cbc4ab65a18539d053403be097a289a224a9d5805b00f727f7c0c6c", - "tx0_address": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "tx1_address": "bcrt1qd8m8gyedkcezytlctvxqzvwlg66udnxy9308pu", - "block_time": 1730886606 + "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "block_time": 1730898765 }, - "tx_hash": "d047986758f31d9b0614c8c303c71b3252e77f564fe4646719abdab8575f1ec9", + "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", "block_index": 213, - "block_time": 1730886606 + "block_time": 1730898765 } ], "next_cursor": 487, @@ -10951,17 +10924,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "satoshirate": 1, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "status": 0, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "tx_index": 68, - "block_time": 1730886548, + "block_time": 1730898704, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -10970,9 +10943,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5beeacb1bc6abb20448e31661de0685818984132c98a8ae01f89794bc2feb70c", + "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", "block_index": 202, - "block_time": 1730886548 + "block_time": 1730898704 } ], "next_cursor": 272, @@ -10981,15 +10954,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 735, + "event_index": 789, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": 0, - "tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", + "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10999,9 +10972,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": 599, @@ -11015,13 +10988,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n3x2AmiVCUpWAUkdjbA5GmpBjSn9PfsZxQ", + "destination": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", "dispense_quantity": 10, - "dispenser_tx_hash": "f06adbd16be4b6c3ca3982d664974dc7608aeefaef99eb9a3cba1d47b5fad70f", - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", - "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", + "dispenser_tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", + "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", "tx_index": 31, - "block_time": 1730886302, + "block_time": 1730898458, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11031,9 +11004,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "66d56421ec3d40a574471a55db32536482b2f3e4d4279854ff40554a0f10f7ef", + "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", "block_index": 144, - "block_time": 1730886302 + "block_time": 1730898458 } ], "next_cursor": null, @@ -11042,20 +11015,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 736, + "event_index": 790, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 216, + "block_index": 223, "btc_amount": 1000, - "destination": "bcrt1qvf9382rtuss7kakk3nkdsvg93qfkjsg082skvh", + "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "023d0f01e1b90f21f2729cf0446843a03d5e3c225bef0f2386d6da820d293f47", - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11066,9 +11039,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], "next_cursor": 600, @@ -11083,19 +11056,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qrtg6lzu4k84y3qvstgs4f5rtxylf0yql3lrtgl", + "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "tx_index": 25, "value": 66600.0, - "block_time": 1730886280, + "block_time": 1730898417, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5ad32d923239c717710e9285db70c08b38b628c394583fbec63cf2ea49240e36", + "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", "block_index": 138, - "block_time": 1730886280 + "block_time": 1730898417 } ], "next_cursor": 213, @@ -11104,18 +11077,18 @@ "/v2/events/NEW_FAIRMINTER": { "result": [ { - "event_index": 356, + "event_index": 768, "event": "NEW_FAIRMINTER", "params": { - "asset": "FREEFAIRMINT", - "asset_longname": "", - "asset_parent": "", - "block_index": 157, + "asset": "A95428960586448133", + "asset_longname": "PARENTB.SUBASSETC", + "asset_parent": "PARENTB", + "block_index": 221, "burn_payment": false, "description": "", "divisible": true, "end_block": 0, - "hard_cap": 180, + "hard_cap": 0, "lock_description": false, "lock_quantity": false, "max_mint_per_tx": 100, @@ -11126,26 +11099,26 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", "start_block": 0, "status": "open", - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "tx_index": 44, - "block_time": 1730886352, + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 88, + "block_time": 1730898808, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", - "block_index": 157, - "block_time": 1730886352 + "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "block_index": 221, + "block_time": 1730898808 } ], - "next_cursor": 349, - "result_count": 6 + "next_cursor": 762, + "result_count": 9 }, "/v2/events/FAIRMINTER_UPDATE": { "result": [ @@ -11154,11 +11127,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211" + "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4" }, - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "block_index": 159, - "block_time": 1730886370 + "block_time": 1730898523 } ], "next_cursor": 155, @@ -11174,17 +11147,17 @@ "block_index": 159, "commission": 0, "earn_quantity": 80, - "fairminter_tx_hash": "be6f58b57cb20556c61e9ca1040b2dd6b6e32642fd98fe65f0b6b74acdb2a211", + "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", "paid_quantity": 0, - "source": "bcrt1q4f0zpjgwyhpa8ad0xfjnaza3d5ny7twdwftfc3", + "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", "status": "valid", - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "tx_index": 46, - "block_time": 1730886370, + "block_time": 1730898523, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0wxnyxq2cnzu8qxn6u89zgtr8dfh5gnyst9xjl", + "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", "divisible": true, "locked": false }, @@ -11192,9 +11165,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, - "tx_hash": "3444c6ac95f0e8d5adf8dde0cd4d1ac67137373b4ec60e975c268bf85c207c06", + "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", "block_index": 159, - "block_time": 1730886370 + "block_time": 1730898523 } ], "next_cursor": 365, @@ -11208,28 +11181,28 @@ "params": { "asset": "UTXOASSET", "block_index": 208, - "destination": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8:0", + "destination": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "status": "valid", - "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", "tx_index": 75, - "block_time": 1730886578, + "block_time": 1730898736, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "08fa325d84fb0d703080a2994996eeba953d9919d01ad808ba0388b84f148fa8", + "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", "block_index": 208, - "block_time": 1730886578 + "block_time": 1730898736 } ], "next_cursor": 616, @@ -11243,28 +11216,28 @@ "params": { "asset": "UTXOASSET", "block_index": 207, - "destination": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "1cb31e85b64a5555769a2d32c674a64224e8a1c904b259f6964656bbdba4175e:0", + "source": "43e7c2c0f317b252725389920e482359189075b03ed94b5f69b61e032d1163e1:0", "status": "valid", - "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", "tx_index": 74, - "block_time": 1730886573, + "block_time": 1730898732, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qucj9dt7qc4vzx8spxeu0s8acqhhn2vfaqtvs4h", + "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5b2279cf388af98e7feacbb446512a0d45498cbcb5dae124dd936f08b52d780a", + "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", "block_index": 207, - "block_time": 1730886573 + "block_time": 1730898732 } ], "next_cursor": 311, @@ -11273,19 +11246,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 733, + "event_index": 787, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 216, - "destination": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e:0", + "block_index": 223, + "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", "msg_index": 1, "quantity": 2000000000, - "source": "36b3715479677cef680ef919b69389003a46a53bc70fd462c21a96805f2ef4a5:1", + "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", "status": "valid", - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "tx_index": 83, - "block_time": 1730886637, + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "tx_index": 90, + "block_time": 1730898820, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11295,12 +11268,12 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1d803e66c78d12de062d7b27667b1151290ac4c037e97ab5a313caef47f3532e", - "block_index": 216, - "block_time": 1730886637 + "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 223, + "block_time": 1730898820 } ], - "next_cursor": 730, + "next_cursor": 784, "result_count": 11 }, "/v2/events/BURN": { @@ -11312,17 +11285,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwya447eu6lpsjt4s0nyah2acmmunq679vel0t0", + "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", "status": "valid", - "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", + "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", "tx_index": 9, - "block_time": 1730886217, + "block_time": 1730898343, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "1f258b1980935b8de97c4742ffd5e15409613c7170a5f1ae6535116f0f976049", + "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", "block_index": 121, - "block_time": 1730886217 + "block_time": 1730898343 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py index cb3a9aff2d..f82279ca93 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_16_fairminter.py @@ -260,94 +260,4 @@ } ], }, - { - "title": "Create fairminter on existing subasset", - "transaction": "fairminter", - "source": "$ADDRESS_1", - "params": { - "asset": "A95428959745315388", # TESTLOCKDESC.MYSUBASSET from scenario_9 - "max_mint_per_tx": 100, - "hard_cap": 180, - }, - "set_variables": { - "FREEFAIRMINT_SUBASSET_TX_HASH": "$TX_HASH", - }, - "controls": [ - { - "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER", - "result": [ - { - "event": "ASSET_ISSUANCE", - "event_index": 196, - "params": { - "asset": "A95428959745315388", - "asset_events": "open_fairminter", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "block_index": 138, - "call_date": 0, - "call_price": 0, - "callable": False, - "description": "Test Locking Description", - "divisible": True, - "fair_minting": True, - "fee_paid": 0, - "issuer": "$ADDRESS_1", - "locked": False, - "quantity": 0, - "reset": False, - "source": "$ADDRESS_1", - "status": "valid", - "transfer": False, - "tx_hash": "$TX_HASH", - "tx_index": 26, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "NEW_FAIRMINTER", - "event_index": 195, - "params": { - "asset": "A95428959745315388", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "asset_parent": "TESTLOCKDESC", - "block_index": 138, - "burn_payment": False, - "description": "Test Locking Description", - "divisible": True, - "end_block": 0, - "hard_cap": 180, - "lock_description": False, - "lock_quantity": False, - "max_mint_per_tx": 100, - "minted_asset_commission_int": 0, - "pre_minted": False, - "premint_quantity": 0, - "price": 0, - "quantity_by_price": 1, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "$ADDRESS_1", - "start_block": 0, - "status": "open", - "tx_hash": "$TX_HASH", - "tx_index": 26, - }, - "tx_hash": "$TX_HASH", - }, - ], - } - ], - }, - { - "title": "Create fairminter on existing subasset 2", - "transaction": "fairminter", - "source": "$ADDRESS_1", - "params": { - "asset": "MYSUBASSET", # TESTLOCKDESC.MYSUBASSET from scenario_9 - "asset_parent": "TESTLOCKDESC", - "max_mint_per_tx": 100, - "hard_cap": 180, - }, - "expected_error": ["Fair minter already opened for `TESTLOCKDESC.MYSUBASSET`."], - }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py new file mode 100644 index 0000000000..9819fccff5 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py @@ -0,0 +1,370 @@ +SCENARIO = [ + { + "title": "Create asset PARENTA", + "transaction": "issuance", + "source": "$ADDRESS_8", + "params": { + "asset": "PARENTA", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super asset PARENTA", + }, + "controls": [], + }, + { + "title": "Create subasset PARENTA", + "transaction": "issuance", + "source": "$ADDRESS_8", + "params": { + "asset": "PARENTA.SUBASSETA", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super subasset SUBASSETA", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "A95428960939749879", + "asset_events": "creation", + "asset_longname": "PARENTA.SUBASSETA", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "My super subasset SUBASSETA", + "description_locked": False, + "divisible": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 100000000000, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + } + ], + } + ], + }, + { + "title": "Create asset PARENTB", + "transaction": "issuance", + "source": "$ADDRESS_8", + "params": { + "asset": "PARENTB", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super asset PARENTB", + }, + "controls": [], + }, + { + "title": "Create subasset PARENTB", + "transaction": "issuance", + "source": "$ADDRESS_8", + "params": { + "asset": "PARENTB.SUBASSETB", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super subasset SUBASSETB", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "A95428960545690062", + "asset_events": "creation", + "asset_longname": "PARENTB.SUBASSETB", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "My super subasset SUBASSETB", + "description_locked": False, + "divisible": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 100000000000, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + } + ], + } + ], + }, + { + "title": "Create fairminter on existing subasset", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "A95428960939749879", + "max_mint_per_tx": 100, + }, + "set_variables": { + "FREEFAIRMINT_SUBASSET_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "A95428960939749879", + "asset_events": "open_fairminter", + "asset_longname": "PARENTA.SUBASSETA", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "My super subasset SUBASSETA", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "A95428960939749879", + "asset_longname": "PARENTA.SUBASSETA", + "asset_parent": "PARENTA", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "My super subasset SUBASSETA", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 100, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_8", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Create fairminter on existing subasset 2", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "SUBASSETA", + "asset_parent": "PARENTA", + "max_mint_per_tx": 100, + }, + "expected_error": ["Fair minter already opened for `PARENTA.SUBASSETA`."], + }, + { + "title": "Create fairminter on existing subasset 2", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "SUBASSETB", + "asset_parent": "PARENTB", + "max_mint_per_tx": 100, + }, + "set_variables": { + "FREEFAIRMINT_SUBASSET_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_7", + "params": { + "asset": "A95428960545690062", + "asset_events": "open_fairminter", + "asset_longname": "PARENTB.SUBASSETB", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "My super subasset SUBASSETB", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "A95428960545690062", + "asset_longname": "PARENTB.SUBASSETB", + "asset_parent": "PARENTB", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "My super subasset SUBASSETB", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 100, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_8", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Create fairminter on existing subasset 2", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "A95428960545690062", + "max_mint_per_tx": 100, + }, + "expected_error": ["Fair minter already opened for `PARENTB.SUBASSETB`."], + }, + { + "title": "Create subasset fairminter on asset", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "SUBASSETC", + "asset_parent": "PARENTB", + "max_mint_per_tx": 100, + }, + "set_variables": { + "FREEFAIRMINT_SUBASSET_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "A95428960586448133", + "asset_events": "open_fairminter", + "asset_longname": "PARENTB.SUBASSETC", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "A95428960586448133", + "asset_longname": "PARENTB.SUBASSETC", + "asset_parent": "PARENTB", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 100, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_8", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, +] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 762bfafebb..9e0b2de084 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -29,6 +29,7 @@ scenario_17_dispenser, scenario_18_utxo, scenario_19_mpma, + scenario_20_fairminter, scenario_last_mempool, ) from termcolor import colored @@ -53,13 +54,14 @@ SCENARIOS += scenario_17_dispenser.SCENARIO SCENARIOS += scenario_18_utxo.SCENARIO SCENARIOS += scenario_19_mpma.SCENARIO +SCENARIOS += scenario_20_fairminter.SCENARIO # more scenarios before this one SCENARIOS += scenario_last_mempool.SCENARIO CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = scenario_18_utxo.SCENARIO +# SCENARIOS = scenario_20_fairminter.SCENARIO def compare_strings(string1, string2): From 9e0682799304440e7d7890f5bb34c20f9abca73b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 13:51:06 +0000 Subject: [PATCH 070/138] add proxy to bitcoin decoderawtransaction method --- apiary.apib | 5075 +++++++++-------- .../counterpartycore/lib/api/routes.py | 1 + .../counterpartycore/lib/backend/bitcoind.py | 8 + .../test/fixtures/api_v2_fixtures.json | 446 +- .../test/regtest/apidoc/apicache.json | 4695 +++++++-------- .../test/regtest/regtestnode.py | 1 + dredd.yml | 1 + release-notes/release-notes-v10.6.2.md | 1 + 8 files changed, 5250 insertions(+), 4978 deletions(-) diff --git a/apiary.apib b/apiary.apib index a194262f9e..85ddcd10fe 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-05 14:02:25.533665. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-06 13:48:18.963735. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", "block_index": 210, - "block_time": 1730815328, + "block_time": 1730900878, "difficulty": 545259519, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8" + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270" }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 665, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", "block_index": 210, - "block_time": 1730815328, + "block_time": 1730900878, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "fee": 0, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 666, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "out_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 567, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 680, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 679, @@ -328,24 +328,24 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 210, - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "block_time": 1730815328, + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 686, @@ -362,28 +362,28 @@ Here is a list of events classified by theme and for each an example response: "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 690, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "quantity": 1000, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "tx_index": 71, - "block_time": 1730815285, + "block_time": 1730900829, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "block_time": 1730815285 + "block_time": 1730900829 } ], "next_cursor": 503, @@ -440,27 +440,27 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "status": "valid", - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "tx_index": 75, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_time": 1730815312 + "block_time": 1730900865 } ], "next_cursor": 661, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "status": "valid", - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "tx_index": 61, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "block_time": 1730815247 + "block_time": 1730900783 } ], "next_cursor": null, @@ -533,31 +533,31 @@ 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": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "tx_index": 41, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "block_time": 1730815072 + "block_time": 1730900609 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730815282 + "block_time": 1730900825 }, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_time": 1730815282 + "block_time": 1730900825 } ], "next_cursor": 576, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", "transfer": false, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "tx_index": 70, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_time": 1730815282 + "block_time": 1730900825 } ], "next_cursor": 577, @@ -657,24 +657,24 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", "tag": "64657374726f79", - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "tx_index": 62, - "block_time": 1730815251, + "block_time": 1730900786, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000001" }, - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "block_index": 196, - "block_time": 1730815251 + "block_time": 1730900786 } ], "next_cursor": 157, @@ -706,17 +706,17 @@ 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": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "open", - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -734,9 +734,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": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 534, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 54, - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx1_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -781,19 +781,19 @@ Here is a list of events classified by theme and for each an example response: "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 673, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 677, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0" + "tx_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac" }, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "block_time": 1730815205 + "block_time": 1730900734 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "status": "expired" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 481, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "status": "valid", - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "tx_index": 53, - "block_time": 1730815205, + "block_time": 1730900734, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "block_time": 1730815205 + "block_time": 1730900734 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "offer_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "tx_index": 59, - "block_time": 1730815238 + "block_time": 1730900775 }, - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "block_index": 193, - "block_time": 1730815238 + "block_time": 1730900775 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "block_time": 1730815328 + "order_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "block_time": 1730900878 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 642, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "block_time": 1730815315 + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "block_time": 1730900869 }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 457, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "satoshirate": 1, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": 0, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "tx_index": 64, - "block_time": 1730815257, + "block_time": 1730900793, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 198, - "block_time": 1730815257 + "block_time": 1730900793 } ], "next_cursor": 272, @@ -1033,21 +1033,21 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 569, @@ -1066,25 +1066,25 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", + "destination": "mfanX2LPYr7FZamgGboJwc9G1VFYpaQHjA", "dispense_quantity": 10, - "dispenser_tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", + "dispenser_tx_hash": "0e3006e756353602d5a3f3999734c449dbbff728c7572db3dcd3ba26395f5dd0", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "tx_hash": "f6ab5235c44c0271e8a417d54923d6409dbc0ae0b81dfeda6a35d616f92a2f9c", "tx_index": 31, - "block_time": 1730815031, + "block_time": 1730900558, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", + "tx_hash": "f6ab5235c44c0271e8a417d54923d6409dbc0ae0b81dfeda6a35d616f92a2f9c", "block_index": 144, - "block_time": 1730815031 + "block_time": 1730900558 } ], "next_cursor": null, @@ -1104,27 +1104,27 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 570, @@ -1146,19 +1146,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": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "tx_index": 25, "value": 66600.0, - "block_time": 1730814999, + "block_time": 1730900524, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "block_time": 1730814999 + "block_time": 1730900524 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "start_block": 0, "status": "open", - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "block_index": 155, - "block_time": 1730815076 + "block_time": 1730900612 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0" + "tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93" }, "tx_hash": null, "block_index": 130, - "block_time": 1730814958 + "block_time": 1730900483 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "paid_quantity": 34, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "status": "valid", - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "block_index": 136, - "block_time": 1730814993 + "block_time": 1730900518 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581:0", + "destination": "8f108eef75e95edc0c3f553f86ce8df869916cd95a7833cfcc31ee8a2652f9b6:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "status": "valid", - "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", + "tx_hash": "8f108eef75e95edc0c3f553f86ce8df869916cd95a7833cfcc31ee8a2652f9b6", "tx_index": 67, - "block_time": 1730815268, + "block_time": 1730900806, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "issuer": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", + "tx_hash": "8f108eef75e95edc0c3f553f86ce8df869916cd95a7833cfcc31ee8a2652f9b6", "block_index": 201, - "block_time": 1730815268 + "block_time": 1730900806 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", + "destination": "bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", + "source": "d3557e53fddabc7976909a78cd1aaf0a217b640e4b1e696490f9fe3659e18403:0", "status": "valid", - "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", + "tx_hash": "002fdac93f23ce31b8aae7ee71dca85a51e70769a27dde00fc63e4459f89f289", "tx_index": 38, - "block_time": 1730815061, + "block_time": 1730900596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", + "tx_hash": "002fdac93f23ce31b8aae7ee71dca85a51e70769a27dde00fc63e4459f89f289", "block_index": 151, - "block_time": 1730815061 + "block_time": 1730900596 } ], "next_cursor": null, @@ -1375,26 +1375,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 210, - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "msg_index": 1, "quantity": 1500000000, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", "status": "valid", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 688, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", + "source": "bcrt1qw6eahpx7d8036rwyp89hastveh2x94craud9dn", "status": "valid", - "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", + "tx_hash": "2ce50256f747be5c5c5d50f3615f0dc0ea9abfb217166346e93166cfc690fa96", "tx_index": 9, - "block_time": 1730814922, + "block_time": 1730900450, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", + "tx_hash": "2ce50256f747be5c5c5d50f3615f0dc0ea9abfb217166346e93166cfc690fa96", "block_index": 121, - "block_time": 1730814922 + "block_time": 1730900450 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", "difficulty": 545259519, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "previous_block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "previous_block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", "difficulty": 545259519, - "ledger_hash": "4f8ec7521eb079fc7651868cfb0e091d56cb9a946781741224a0b21045fe3f08", - "txlist_hash": "e5088fbc9436f1733f83b3116d0a90fb8bb0bb4fb592aa6bbbd6b1d6a3959153", - "messages_hash": "305efc93cd4fc24a5f5acbf52cb0a11d74687f4b46a213ce0cc00cd70c251c89", + "ledger_hash": "c5435103093fec63739ae7e8f186daeb67522af7f218db301d0ad8e42adea110", + "txlist_hash": "dda6311d347153d1b6ed118c9599094530cd703c9562b7f39f3111664823d5a2", + "messages_hash": "bf0b43cc24dd36e2a5dcd1f207cedda884164c2c65a451f335ffadbb9b9987e9", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", - "block_time": 1730815312, - "previous_block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", + "block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", + "block_time": 1730900865, + "previous_block_hash": "10c03099ba1f61bfb17cd7625a99a1857ad45e0e0a03bc8d8cd044e12ed3bfb5", "difficulty": 545259519, - "ledger_hash": "ac49b220ad7ebca61cfa89d8e3ad61724cc7b02f449c815f732c05eba38be416", - "txlist_hash": "91e3ce6d6848aee4c67f2a51cec38c4ddfef1927fc06f23aaeba105187d52941", - "messages_hash": "ab230dd234a477a9d8fed8c39f5357e9f7be5cf52dcbb3e3051b7db8b0be0e46", + "ledger_hash": "02608dc643d65e1168301ffe52f55eec69c473ac35ad444ae4ff1ac6deed9117", + "txlist_hash": "c026cdc85f03fe0f4e86ac21e1d7e220ad46f1cd04c92b4628c4da16f8ce94e5", + "messages_hash": "c9a534024d5029fd664b466ab0ed3e517922affec3d2c99ad7ad5d95d0a9a25b", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", - "block_time": 1730815307, - "previous_block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_hash": "10c03099ba1f61bfb17cd7625a99a1857ad45e0e0a03bc8d8cd044e12ed3bfb5", + "block_time": 1730900861, + "previous_block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", "difficulty": 545259519, - "ledger_hash": "c5a362d8ca3b4e3f105e20edf23add9475523d4b434aa409271b7246fc0c6eaa", - "txlist_hash": "49bb59b65fcab0a3644d337af67945ae3eec864306b3aa1b46979407fc927944", - "messages_hash": "ec1ca9b4459dc9cdcc751a118f641e718f90c6dc8956441b7ce5a24e4a1f0bba", + "ledger_hash": "612b26afc345be9b429c0259c8a43720a25b0f51fd1f3fe388b783b41b38ecf3", + "txlist_hash": "7b06957467fcf6c5a23f6ab494ad96b32a27e3a2f8bf654a47f9e1f170a2b0bc", + "messages_hash": "607a9f22740965d9e5c17eda6c61f22cd9c33a4f9416ed96f6d05a106f981ed4", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", - "block_time": 1730815303, - "previous_block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", + "block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", + "block_time": 1730900857, + "previous_block_hash": "510cdd820aa3171cb24fc0998e6509852ce385b5f4ef12a67bc2dd2fa0e6e09d", "difficulty": 545259519, - "ledger_hash": "cbbf765e3f0de039e1b923d3c657023d20fa8674d7af665ad037520ce65debf3", - "txlist_hash": "35cedfac328fc7f2e6b7c51bf6a774c0be6d0189d5172b86d146a19ebe1d95c1", - "messages_hash": "fb5ce0e3b6ffa98c6199e293927b7145d7f72112365e4493bf728f64d08590c5", + "ledger_hash": "ee4004f819b9420ff4549a5c007391cb9e5208117ed79b88e4b6fc1b667e87cd", + "txlist_hash": "2e953290e92e204bcc2b55042df0095f81369fbb3405779dfccc908800f9e349", + "messages_hash": "addd40a4eba6de83f9d9ff3fea5fec4e83be1d4cbe9d61a09a69f9455bb71a63", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", "difficulty": 545259519, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199` (str, required) - The index of the block to return + + block_hash: `090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", "difficulty": 545259519, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 694, @@ -1722,25 +1722,25 @@ Returns the events of a block "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 693, @@ -1749,44 +1749,44 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" } ], "next_cursor": 691, @@ -1869,26 +1869,26 @@ Returns the events of a block filtered by event "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 690, @@ -1898,22 +1898,22 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 687, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" } ], "next_cursor": null, @@ -2001,22 +2001,22 @@ Returns the credits of a block "result": [ { "block_index": 210, - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, @@ -2026,18 +2026,18 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2116,18 +2116,18 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "object_id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "block_index": 210, "confirmed": true, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 59, - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "offer_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "status": "valid", "confirmed": true, - "block_time": 1730815238 + "block_time": 1730900775 } ], "next_cursor": null, @@ -2255,21 +2255,21 @@ Returns the destructions of a block "result": [ { "tx_index": 62, - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "block_index": 196, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730815251, + "block_time": 1730900786, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000001" } @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,23 +2383,23 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,13 +2484,13 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "block_hash": "4e8359d69ec8abc43f3bbe20133171da3e136269b6bc9b10e72d010f7759fed9", - "block_time": 1730814999, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "6629effa03ed8a744c59c864abf2ec896b1df20d042f738edda64cd6b4dfd50d", + "block_time": 1730900524, + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b:1", + "utxos_info": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "block_hash": "030ae8e735daddc8c1e1d3140d895f2ea1adb660a67cdeba1664893a720dc443", - "block_time": 1730815205, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "2ea2de71d9a7c8f9adb58d3b44f1e322651db163a1ec76b801d76003c937ac48", + "block_time": 1730900734, + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "btc_amount": 2000, "fee": 10000, - "data": "0b385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "data": "0b0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc497cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "supported": true, - "utxos_info": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be:0", + "utxos_info": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "block_index": 193, - "block_hash": "429af7429ac885063944b7608642fd6850df192b0d7653e0a96b8bc124a1a1f0", - "block_time": 1730815238, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "3f0492233f775b6b394d927816d88852a66d74d63c4734cfc1a2d24569b4177f", + "block_time": 1730900775, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "data": "4649956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "supported": true, - "utxos_info": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3:1", + "utxos_info": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "offer_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "block_index": 196, - "block_hash": "332f7f4b04131babd9b016298c40a275f8f0830e03f45224ae2589e67acf1ac5", - "block_time": 1730815251, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "block_hash": "412b668a2bc42d8087407ce3907fd0fe1fa384134cd8b659ec9d74fdce480c01", + "block_time": 1730900786, + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25:1", + "utxos_info": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2811,11 +2811,11 @@ Here is sample API output for each of these transactions: "quantity": 1, "tag": "64657374726f79", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000001" } @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 198, - "block_hash": "051b5cec3fae59ef9bbe222a69e649104595947be637785fc442b12aaf91974a", - "block_time": 1730815257, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "7e5353f816966df45146d4cbb3f76adfb303d7693d2cc6bbf85c6ec5849f68e9", + "block_time": 1730900793, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6:1", + "utxos_info": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "block_hash": "7c645e7df6ff090833ee30fbb01e26cdc19430d0d3fba68b0c9ee13243bb6704", - "block_time": 1730815072, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "594e8c1fc70f0c84e34075f770bfd81e9308055afa5078330972f04fcf2cc6ef", + "block_time": 1730900609, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef:1", + "utxos_info": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,16 +2930,16 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000" } @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_hash": "0452ab098a169e2a20d1cfc65d6e096911592556fbd09c39d80a8366d714e40c", - "block_time": 1730815282, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "703bcbabc965b996c228b011b90c38098156977484dc27e3c33635a84a398458", + "block_time": 1730900825, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc:1", + "utxos_info": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3021,11 +3021,11 @@ Here is sample API output for each of these transactions: "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "block_hash": "0d1d4c85be3f416768380fb66d48e2de59fc107a9dbc4a5ef2e043ce7e0fdedf", - "block_time": 1730815285, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "49d5f3e6b5ea67cce3e690b6b4fd028de33dc8f6ea87b01c412ceb65c58f8048", + "block_time": 1730900829, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", + "data": "02000000178d82231300000000000003e880c2df191d023210e58d54cde74576a219160a4993", "supported": true, - "utxos_info": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba:1", + "utxos_info": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", - "block_time": 1730815312, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", + "block_time": 1730900865, + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ac548681482bc1c036de9247e1131713f3cecada806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732:0", + "utxos_info": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -3124,16 +3124,16 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "block_hash": "5ac4e3bdebbfa961533f1b5cd52056c41e3f3e9897632631e00f3562fc799904", - "block_time": 1730815247, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "block_hash": "1e4fa8282616d348b6146b1ca03dc041fa9b50bc77d77971d68b04f3d23c8932", + "block_time": 1730900783, + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804a30b7f971594bc6d7dffb1ef3a31b6c60641695017377656570206d7920617373657473", + "data": "0480b8f22384d60c55c3b8b004f32cb1d080e58b1e03017377656570206d7920617373657473", "supported": true, - "utxos_info": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f:1", + "utxos_info": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3246,11 +3246,11 @@ Returns the list of the last ten transactions "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001013261e18b3eae2ddf8bdea39bd034853a7cbe9bbc4fdbd311e0c5845dc89e31640000000000ffffffff020000000000000000356a338802082addd0ade1c547e48654fe75eaf429a87839ca41eafed5cf343c4092d7821bc14c42f838aad0eb8cf0dc41cbb7b1a641f0ca052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302473044022013b664bb39a587ae8e8d55da46915fdc453437c1c3d8225433ea8d3a3e5a7f3a02204fe2e9d7af41d973ae853052d4d7ac8140dcf85005e2f266a75288a2c6fa01f90121027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122700000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010687d7cdb2ac8946fa97ded0c25bc6e558ba8e5d0087e7aad5f81db4560edeba390000000000ffffffff10530046ff47c153d5c02c8d93c82b840f2620bb9df85334c595f2a3a8f13ddb0000000000ffffffff52b9311552dddf187d88d31b5c6efb0f6390f90b1192607c4028b21eefe27d430000000000fffffffff7fd7a10bca5545dbaec73c3be9ed0cbde96129e7cc9951457ba3fdf01d4af9e0000000000ffffffffa0b03be76ed9459150f613a772ceeddc3bcc1492103f1c108172d3a49662b4330000000000ffffffffb97cdbdd7db82174f01ed608c3979db6a4200c107dcc9983931861988e0d15290000000000ffffffff04e80300000000000069512103324818c392c8e8e54c4428df64ca3dbf8a6ef0b067dfb62994784370486f1c0a2103e0890bdecab850d31f0871431f3776ef43bbe9d60efe43d58d5ea08a11ea089c2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512102324818c392c8e8e54c84906ce0fbce1747ec272b9c51a2e47338d6b2d9bdc24b2103a91a8bb325f9cf7a9a968437d82e4dde7fb3078f4ff26e3850c1ec3d47e65de32102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512103134818c392c8e8e54c4728dce40862a6976cc2a08252b6cf18165eabd979162f2102a91a8bb325f9cf508f23118264e44dde7fb3078f4ff8eb5535ac830ec7e65d582102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae387923fc06000000160014ac548681482bc1c036de9247e1131713f3cecada0247304402207ed2876c6a71af20421978104ca63c8e10cfdee48c573bc4488d965fff8b259d0220266420b9a751a5a86d3402a5f52dd4657b1108c632fc9834218f798429d09591012102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec40247304402204b2ba25781b69bb0fef06faf24c1a1d13cf5e2fb84add09e2090e30213487493022005d3f480baa22750c136ae55732f513272db3eda58381f8b150bf6d137823bd6012102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec40247304402202200855e97cd85c9a70e64861c836449985bdd9bbf057f92ed9bee80f32d1b9202206f23058dbcbe5153d00d751c95d81248560e22d78f29b20727efa786cf2b867e012102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec402473044022027acaf3d6fa65435d8b3c05404abe57ad6127f77e7fea5a8530f83b20f5325d10220256beb949c5f42818d5a2b5abe6805f18dfa2bf0a8abe4169c9d87d4c28b72ee012102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec40247304402204e1bba3ad5de094cd21c5dfa8fd2fe7d3b5dc8881bc61b7e7a4f46e9338574c2022021b1ef69e1a68d701f85e31fd3204b4e0aabc3ad1299c09aebd4eff1d2091fea012102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4024730440220030bb9735bf0db4cca72a6dd7702a09cb4e5d62b11c150261b6a7f9d0408e7e00220332a68a97e9c016c435bcc1907e0cb66a3dbb4ac83b4014ee0a9e56f049ad6cd012102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec400000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,18 +3290,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3261e18b3eae2ddf8bdea39bd034853a7cbe9bbc4fdbd311e0c5845dc89e3164", + "hash": "87d7cdb2ac8946fa97ded0c25bc6e558ba8e5d0087e7aad5f81db4560edeba39", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "10530046ff47c153d5c02c8d93c82b840f2620bb9df85334c595f2a3a8f13ddb", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "52b9311552dddf187d88d31b5c6efb0f6390f90b1192607c4028b21eefe27d43", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "f7fd7a10bca5545dbaec73c3be9ed0cbde96129e7cc9951457ba3fdf01d4af9e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "a0b03be76ed9459150f613a772ceeddc3bcc1492103f1c108172d3a49662b433", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "b97cdbdd7db82174f01ed608c3979db6a4200c107dcc9983931861988e0d1529", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3310,51 +3345,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a338802082addd0ade1c547e48654fe75eaf429a87839ca41eafed5cf343c4092d7821bc14c42f838aad0eb8cf0dc41cbb7b1a641" + "value": 1000, + "script_pub_key": "512103324818c392c8e8e54c4428df64ca3dbf8a6ef0b067dfb62994784370486f1c0a2103e0890bdecab850d31f0871431f3776ef43bbe9d60efe43d58d5ea08a11ea089c2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae" + }, + { + "value": 1000, + "script_pub_key": "512102324818c392c8e8e54c84906ce0fbce1747ec272b9c51a2e47338d6b2d9bdc24b2103a91a8bb325f9cf7a9a968437d82e4dde7fb3078f4ff26e3850c1ec3d47e65de32102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae" }, { - "value": 4999990000, - "script_pub_key": "00147f6fe9665382ab7ab49540720d8ea14679793823" + "value": 1000, + "script_pub_key": "512103134818c392c8e8e54c4728dce40862a6976cc2a08252b6cf18165eabd979162f2102a91a8bb325f9cf508f23118264e44dde7fb3078f4ff8eb5535ac830ec7e65d582102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014ac548681482bc1c036de9247e1131713f3cecada" } ], "vtxinwit": [ - "3044022013b664bb39a587ae8e8d55da46915fdc453437c1c3d8225433ea8d3a3e5a7f3a02204fe2e9d7af41d973ae853052d4d7ac8140dcf85005e2f266a75288a2c6fa01f901", - "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" + "304402207ed2876c6a71af20421978104ca63c8e10cfdee48c573bc4488d965fff8b259d0220266420b9a751a5a86d3402a5f52dd4657b1108c632fc9834218f798429d0959101", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "304402204b2ba25781b69bb0fef06faf24c1a1d13cf5e2fb84add09e2090e30213487493022005d3f480baa22750c136ae55732f513272db3eda58381f8b150bf6d137823bd601", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "304402202200855e97cd85c9a70e64861c836449985bdd9bbf057f92ed9bee80f32d1b9202206f23058dbcbe5153d00d751c95d81248560e22d78f29b20727efa786cf2b867e01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "3044022027acaf3d6fa65435d8b3c05404abe57ad6127f77e7fea5a8530f83b20f5325d10220256beb949c5f42818d5a2b5abe6805f18dfa2bf0a8abe4169c9d87d4c28b72ee01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "304402204e1bba3ad5de094cd21c5dfa8fd2fe7d3b5dc8881bc61b7e7a4f46e9338574c2022021b1ef69e1a68d701f85e31fd3204b4e0aabc3ad1299c09aebd4eff1d2091fea01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "30440220030bb9735bf0db4cca72a6dd7702a09cb4e5d62b11c150261b6a7f9d0408e7e00220332a68a97e9c016c435bcc1907e0cb66a3dbb4ac83b4014ee0a9e56f049ad6cd01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4" ], "lock_time": 0, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx_id": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93" + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", + "tx_id": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04" }, "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": "MPMASSET", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "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": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } @@ -3366,7 +3425,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58` (str, required) - Transaction hash + + tx_hash: `3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001` (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. @@ -3377,18 +3436,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "de614bb8fd765aa1e740024e8db7f3be6dce211f2e01b18525d573efbceb86a7", + "hash": "6a10aa5bb8c581675e5553ca009ea8250e768f39d222b141631d38c1b1e77a93", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3457,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e90c76a9673d624468a6c4435f080f320b3428ac2189aeec1ea0100851be836f1c342fa2b141e23a1b307844f0395" + "script_pub_key": "6a2e00e407aea1c8119908d1993e5f7c090a5af55788eb3c3a8875db8f391995957be4c93bd0b024c11431941664acf0" }, { "value": 4999970000, - "script_pub_key": "00144a30b7f971594bc6d7dffb1ef3a31b6c60641695" + "script_pub_key": "0014b8f22384d60c55c3b8b004f32cb1d080e58b1e03" } ], "vtxinwit": [ - "3044022024718b8861d1f4af30576aa6fe16d52dd56f58a4c9ce9d609c210dc87bf2089f02203e36d8e85b01a4d909ecbbbd727630045437bdd44f7b949b71ac96a056f1c7a301", - "0342812158a90261b26d3f9549abf087fa115869e7e2156559c056675af21ca08a" + "3044022028f2472f78403a1fb76dfc5e0d06dfe85928f5f071bc2e79674f0f8bd9f725a402203238e7f9e29d4082f6f1cc0eb65d3744f798328f653f0fc589ab8f8e670fc48f01", + "02dbd464e1c397bf575500343e80a62646d0cdb65e6215c319a8f4312dcbfbba9a" ], "lock_time": 0, - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", - "tx_id": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58" + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", + "tx_id": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,14 +3478,14 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } @@ -3480,17 +3539,17 @@ Returns a transaction by its index. { "result": { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3568,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction + + tx_hash: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547` (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. @@ -3521,17 +3580,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3633,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 694, @@ -3588,27 +3647,27 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 693, @@ -3617,48 +3676,48 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 691, @@ -3666,26 +3725,26 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "msg_index": 1, "quantity": 1500000000, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", "status": "valid", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 690, @@ -3698,7 +3757,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction to return + + tx_hash: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -3722,12 +3781,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 694, @@ -3736,27 +3795,27 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 693, @@ -3765,48 +3824,48 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 691, @@ -3814,26 +3873,26 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 210, - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "msg_index": 1, "quantity": 1500000000, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", "status": "valid", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 690, @@ -3846,7 +3905,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction to return + + tx_hash: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547` (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 @@ -3865,10 +3924,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3876,23 +3935,23 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3900,11 +3959,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -3922,7 +3981,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction to return + + tx_hash: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547` (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 @@ -3942,27 +4001,27 @@ Returns the dispenses of a block { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,13 +4036,13 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -4021,28 +4080,28 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 690, @@ -4052,24 +4111,24 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 687, @@ -4079,24 +4138,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": null, @@ -4109,7 +4168,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The hash of the transaction to return + + tx_hash: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `696` (str, optional) - The last event index to return + Default: `None` @@ -4131,28 +4190,28 @@ Returns the events of a transaction "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 690, @@ -4162,24 +4221,24 @@ Returns the events of a transaction "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 687, @@ -4189,24 +4248,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": null, @@ -4221,7 +4280,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9,bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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 @@ -4245,7 +4304,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4266,7 +4325,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4335,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4287,7 +4346,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4356,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4308,7 +4367,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4377,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4329,7 +4388,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4398,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4350,7 +4409,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4419,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4377,7 +4436,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9,bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (str, required) - Comma separated list of addresses to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4455,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4420,11 +4479,11 @@ Returns the transactions of a list of addresses "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4442,17 +4501,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", - "block_time": 1730815312, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", + "block_time": 1730900865, + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ac548681482bc1c036de9247e1131713f3cecada806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732:0", + "utxos_info": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4519,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4475,16 +4534,16 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -4494,17 +4553,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "tx_hash": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "block_index": 207, - "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", - "block_time": 1730815307, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "block_hash": "10c03099ba1f61bfb17cd7625a99a1857ad45e0e0a03bc8d8cd044e12ed3bfb5", + "block_time": 1730900861, + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c60641695c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ac548681482bc1c036de9247e1131713f3cecada806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e03c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9:0", + "utxos_info": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4571,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4527,16 +4586,16 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -4546,17 +4605,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", - "block_time": 1730815303, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", + "block_time": 1730900857, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", + "utxos_info": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4623,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4579,16 +4638,16 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -4598,17 +4657,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", - "block_time": 1730815299, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "510cdd820aa3171cb24fc0998e6509852ce385b5f4ef12a67bc2dd2fa0e6e09d", + "block_time": 1730900842, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", + "utxos_info": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4675,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4631,16 +4690,16 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -4659,7 +4718,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9,bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `696` (str, optional) - The last event index to return @@ -4688,20 +4747,20 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 54, - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx1_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -4710,19 +4769,19 @@ Returns the events of a list of addresses "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 675, @@ -4741,17 +4800,17 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "open", - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4769,36 +4828,36 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "block_index": 209, - "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "event": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 673, @@ -4810,26 +4869,26 @@ Returns the events of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "tx0_index": 60, - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx1_index": 54, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -4842,23 +4901,23 @@ Returns the events of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "block_time": 1730815315 + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "block_time": 1730900869 }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 668, @@ -4871,7 +4930,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd,bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4,bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u` (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 @@ -4887,115 +4946,115 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "quantity": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "block_index": 210, - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730815333.0180326, + "block_time": 1730900881.524786, "btc_amount": 0, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "destination": "", "fee": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, - "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", + "utxos_info": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -5008,7 +5067,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -5028,7 +5087,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5036,14 +5095,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5051,14 +5110,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5066,29 +5125,29 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5096,7 +5155,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5113,7 +5172,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -5126,17 +5185,17 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "826.49944000" } @@ -5151,7 +5210,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5201,104 +5260,104 @@ Returns the credits of an address "result": [ { "block_index": 209, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "event": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00003000" }, { "block_index": 208, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "event": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 207, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "event": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 207, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "event": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00005000" }, { "block_index": 203, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "event": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5315,7 +5374,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5354,62 +5413,62 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "event": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, { "block_index": 206, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "event": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 206, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "event": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5417,41 +5476,41 @@ Returns the debits of an address }, { "block_index": 205, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "event": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 205, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "event": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5468,7 +5527,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address of the feed + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5503,7 +5562,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -5522,9 +5581,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", + "tx_hash": "c7b0a9b6bee7d309ab6dc5ae4fc986e4fcd7c1183231e459fb6648d8c2fb8231", "block_index": 137, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5532,7 +5591,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814996, + "block_time": 1730900521, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5546,7 +5605,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -5565,14 +5624,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "7cc5672c094deda5d41dc47ebec6556934227559b084cfdc84dde8ee8a3778b6", + "tx_hash": "fda16f7d49638086a55f4a846e9be0f954408333997f06c37378c33469332528", "block_index": 112, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730814893, + "block_time": 1730900417, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5587,7 +5646,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -5606,10 +5665,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5617,23 +5676,23 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5641,11 +5700,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5654,10 +5713,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5665,11 +5724,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5678,10 +5737,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5689,23 +5748,23 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5713,11 +5772,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5735,7 +5794,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj` (str, required) - The address to return + + address: `bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl` (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 @@ -5754,10 +5813,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", + "tx_hash": "002fdac93f23ce31b8aae7ee71dca85a51e70769a27dde00fc63e4459f89f289", "block_index": 151, - "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", - "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", + "source": "d3557e53fddabc7976909a78cd1aaf0a217b640e4b1e696490f9fe3659e18403:0", + "destination": "bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5765,11 +5824,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815061, + "block_time": 1730900596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5787,7 +5846,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5807,10 +5866,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5818,11 +5877,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5831,10 +5890,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5842,11 +5901,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5855,10 +5914,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5866,11 +5925,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5879,10 +5938,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5890,11 +5949,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5903,10 +5962,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5914,11 +5973,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815285, + "block_time": 1730900829, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5936,7 +5995,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj` (str, required) - The address to return + + address: `bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5964,7 +6023,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5993,9 +6052,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6004,7 +6063,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6015,13 +6074,13 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -6032,9 +6091,9 @@ Returns the dispensers of an address }, { "tx_index": 64, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6043,7 +6102,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6054,11 +6113,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6080,7 +6139,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -6093,9 +6152,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6104,7 +6163,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6115,13 +6174,13 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -6138,7 +6197,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -6158,19 +6217,19 @@ Returns the dispenses of a source { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", + "tx_hash": "1b7d30e4bf5db9ccccf1988c2cfed43d70ed988d65bc6fa6e5faa946e7dc2f22", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "dispenser_tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6178,7 +6237,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6193,11 +6252,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6207,19 +6266,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6227,7 +6286,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6242,13 +6301,13 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -6256,19 +6315,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6276,7 +6335,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6291,13 +6350,13 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -6313,7 +6372,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address to return + + address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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 @@ -6333,19 +6392,19 @@ Returns the dispenses of a destination { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", + "tx_hash": "1b7d30e4bf5db9ccccf1988c2cfed43d70ed988d65bc6fa6e5faa946e7dc2f22", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "dispenser_tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6353,7 +6412,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6368,11 +6427,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6382,19 +6441,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6402,7 +6461,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6417,13 +6476,13 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -6431,19 +6490,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6451,7 +6510,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6466,13 +6525,13 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -6488,7 +6547,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -6509,19 +6568,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6529,7 +6588,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6544,13 +6603,13 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -6558,19 +6617,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6578,7 +6637,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6593,13 +6652,13 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -6615,7 +6674,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address to return + + address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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` @@ -6636,19 +6695,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6656,7 +6715,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6671,13 +6730,13 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -6685,19 +6744,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6705,7 +6764,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6720,13 +6779,13 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -6742,7 +6801,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd` (str, required) - The address to return + + address: `bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4` (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 @@ -6761,16 +6820,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -6784,7 +6843,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6816,14 +6875,14 @@ Returns the issuances of an address "result": [ { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6838,20 +6897,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", + "tx_hash": "8251160a2e10f586c7b1581c6439712e84d4669300bb9a5cb6204706b358a21d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6866,20 +6925,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815111, + "block_time": 1730900637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", + "tx_hash": "96468e255a09d5e865bbb6bce5b82451123f4a2a88cb91dcac981a448af22352", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6894,20 +6953,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730815107, + "block_time": 1730900634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", + "tx_hash": "047f91bd33430d27d88fe19c263b682a65061b4d5c2d276962f448eabb2d1dee", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6922,20 +6981,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815104, + "block_time": 1730900630, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "945ce27ed72be9ebd17662ee389fa75a69875f250547ca10f6c4bd85e5ed8f8b", + "tx_hash": "c5bd9cbe4db32a81f335f6cab78eecea3c9c0fc658c680561bddccd92f8b5c99", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6950,7 +7009,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815090, + "block_time": 1730900625, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6965,7 +7024,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The issuer or owner to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6988,8 +7047,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -6997,16 +7056,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -7014,16 +7073,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -7031,16 +7090,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 40, @@ -7048,16 +7107,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730814988, - "last_issuance_block_time": 1730814993, + "first_issuance_block_time": 1730900513, + "last_issuance_block_time": 1730900518, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 19, @@ -7065,8 +7124,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730814962, - "last_issuance_block_time": 1730814984, + "first_issuance_block_time": 1730900487, + "last_issuance_block_time": 1730900509, "supply_normalized": "0.00000019" } ], @@ -7080,7 +7139,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The issuer to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -7103,8 +7162,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -7112,16 +7171,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -7129,16 +7188,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -7146,16 +7205,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 40, @@ -7163,16 +7222,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730814988, - "last_issuance_block_time": 1730814993, + "first_issuance_block_time": 1730900513, + "last_issuance_block_time": 1730900518, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 19, @@ -7180,8 +7239,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730814962, - "last_issuance_block_time": 1730814984, + "first_issuance_block_time": 1730900487, + "last_issuance_block_time": 1730900509, "supply_normalized": "0.00000019" } ], @@ -7195,7 +7254,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The owner to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7218,8 +7277,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -7227,16 +7286,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -7244,16 +7303,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -7261,16 +7320,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 40, @@ -7278,16 +7337,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730814988, - "last_issuance_block_time": 1730814993, + "first_issuance_block_time": 1730900513, + "last_issuance_block_time": 1730900518, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 19, @@ -7295,8 +7354,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730814962, - "last_issuance_block_time": 1730814984, + "first_issuance_block_time": 1730900487, + "last_issuance_block_time": 1730900509, "supply_normalized": "0.00000019" } ], @@ -7310,7 +7369,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + cursor: `77` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7329,17 +7388,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7353,11 +7412,11 @@ Returns the transactions of an address "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7375,17 +7434,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", - "block_time": 1730815303, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", + "block_time": 1730900857, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", + "utxos_info": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7393,14 +7452,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7408,16 +7467,16 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -7427,17 +7486,17 @@ Returns the transactions of an address }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", - "block_time": 1730815299, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "510cdd820aa3171cb24fc0998e6509852ce385b5f4ef12a67bc2dd2fa0e6e09d", + "block_time": 1730900842, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", + "utxos_info": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7445,14 +7504,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7460,16 +7519,16 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -7479,17 +7538,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "block_hash": "0d1d4c85be3f416768380fb66d48e2de59fc107a9dbc4a5ef2e043ce7e0fdedf", - "block_time": 1730815285, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "49d5f3e6b5ea67cce3e690b6b4fd028de33dc8f6ea87b01c412ceb65c58f8048", + "block_time": 1730900829, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", + "data": "02000000178d82231300000000000003e880c2df191d023210e58d54cde74576a219160a4993", "supported": true, - "utxos_info": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba:1", + "utxos_info": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7497,12 +7556,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7513,17 +7572,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_hash": "0452ab098a169e2a20d1cfc65d6e096911592556fbd09c39d80a8366d714e40c", - "block_time": 1730815282, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "703bcbabc965b996c228b011b90c38098156977484dc27e3c33635a84a398458", + "block_time": 1730900825, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc:1", + "utxos_info": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7557,7 +7616,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -7576,29 +7635,29 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" @@ -7614,7 +7673,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7643,9 +7702,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7662,13 +7721,13 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7690,9 +7749,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7709,13 +7768,13 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7737,9 +7796,9 @@ Returns the orders of an address }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7756,13 +7815,13 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7784,9 +7843,9 @@ Returns the orders of an address }, { "tx_index": 60, - "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7803,13 +7862,13 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7831,9 +7890,9 @@ Returns the orders of an address }, { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7850,13 +7909,13 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7887,7 +7946,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The source of the fairminter to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7912,10 +7971,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7940,7 +7999,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7949,10 +8008,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7977,7 +8036,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730814988, + "block_time": 1730900513, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7989,10 +8048,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8017,7 +8076,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730814962, + "block_time": 1730900487, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8029,10 +8088,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8057,7 +8116,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730814958, + "block_time": 1730900483, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8069,10 +8128,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8097,7 +8156,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8119,7 +8178,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address of the mints to return + + address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8137,22 +8196,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8161,22 +8220,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", + "tx_hash": "63df57cbf4953b9c87d8b78c85e3bb25c90f157dd68dcca6aa7ecca96a7120ca", "tx_index": 21, "block_index": 134, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814984, + "block_time": 1730900509, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8185,22 +8244,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", + "tx_hash": "cbe53304ae4f7b21bcb2513d104690258c2bdb6a96e73d83bd3d8334ff93529c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814971, + "block_time": 1730900505, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8209,22 +8268,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", + "tx_hash": "589f32021120f9302bfd44f8566adadcd0d7a8d544060ba23b85aca2e880a8b4", "tx_index": 19, "block_index": 132, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814967, + "block_time": 1730900492, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8233,22 +8292,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ca0c585abf6677903f74e0c8408a3fae99a12236a94a5be695101c4d4361f3e5", + "tx_hash": "26d6c2d0cab047b8f6fcf91f61ba5be0866f9f4b586e1a2e4c34cf81459b708d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814945, + "block_time": 1730900472, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8257,22 +8316,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8291,7 +8350,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address of the mints to return + + address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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` @@ -8310,22 +8369,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8346,7 +8405,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0` (str, required) - The utxo to return + + utxo: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8366,26 +8425,26 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8425,8 +8484,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will make the bet - + feed_address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address that will make the bet + + feed_address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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) @@ -8500,7 +8559,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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) @@ -8562,7 +8621,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8575,7 +8634,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "020000000001018017f02235867208f1c66833e1c43299eb94926bb2c8dfcd8e9b80e5c25ba83f000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a29032e1f027b2812512e7f9e409806f85f57f40343b92b7733cec2338eb75f812661dfd2d1f61d47cd616cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101d5617e46d4a59d46d36fcf4efdebf80740867cf27e3cc7924002855f3f27ff9400000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff0200000000000000002b6a296288c73b2e360b047fb42dc394da407ed55d89ad32a44459ce6131827ac0ae8fa70863197673acb8306cba052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8597,8 +8656,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending the payment - + order_match_id: `620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93` (str, required) - The ID of the order match to pay for + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address that will be sending the payment + + order_match_id: `81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf` (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) @@ -8656,24 +8715,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "order_match_id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "data": "434e5452505254590b81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711defb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "020000000001018a40f853ceb837a3fccf0064a9696352222c3c5fcc27415104441b7bcf60dbf3000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e8030000000000001600147f6fe9665382ab7ab49540720d8ea1467979382300000000000000004b6a49e22e8130265b6eb46363c3e3faed6c3c7f6f2022dd3fade405c416d278e5a9ee2914ce52696619dc95ef9cc95ce8358edabe9db89e734eb6efb606f330afd1a7f0e8771d4a5b2759995ba7052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101930dc7fcdb055f75a3518b40621af6394386cdb980ef3d60e8d412fc330b56c500000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff03e803000000000000160014ac548681482bc1c036de9247e1131713f3cecada00000000000000004b6a49acc9507ff541f2b0ea317df48a084ff2c63b16b7db3d006df9df05b2138bd750a16e14c0fdea4f4c10ddf761bc62d9ef8be01adac25f8777a427914d81db909cae90352596ff02212c5ba7052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "order_match_id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "status": "valid" } } @@ -8686,7 +8745,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address with the BTC to burn + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -8747,7 +8806,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8758,7 +8817,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "0200000000010117b149307a2b0e5b12dbd3b350bc4926b7c457a490ca5b9a8ac227204532c824000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000" + "rawtransaction": "02000000000101db46b670c5366537ba3d25bf67be019753e7955b84ef84b2634c2633d7bdf4b800000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000" } } ``` @@ -8768,8 +8827,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf` (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) @@ -8827,22 +8886,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "offer_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "data": "434e54525052545946efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "0200000000010139ece5a6daf4da1bb92ad80a9479a6a8878990cd5db85893dcf4cacbd546d302000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a2902e55eb492edcd684d3f2eb19fb203f279586b207067f9f56f1f04bd565daabe8125e969c7077d79656cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101ba57e6dcfe5fd6e35c4e68352157acf79c85a2b85d34903c2502440ba8f983f200000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff0200000000000000002b6a29498026ced9a9cd70ee8946063ce22b4ff2940f68678e7e0925d5b534a1c0b4d743c6166f2dc1aaa7e16cba052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "offer_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "status": "valid" } } @@ -8855,7 +8914,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -8916,17 +8975,17 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, @@ -8936,7 +8995,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101b2ef7e28271d1b8b49e907b7831834ee719e92d895f9cf497e7810e60a1fa985000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000226a2035ebadb3b7163716017bde9cbeb0ad270926e374140fa16965a835bb925b6c377dbc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "020000000001014ff10575ef00db4a3bd621b0b184b876945e1241921a7a3c1fa815bebc93a0ff00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000226a20edea90033d18ddceb738f9494d7fb762d4758423febd72422f34d0b1e6c812c57dbc052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8956,7 +9015,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: `bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd` (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) @@ -9023,7 +9082,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9033,11 +9092,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "oracle_address": null, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00001000", "escrow_quantity_normalized": "0.00001000" @@ -9048,7 +9107,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "020000000001013b833b4de8f0d14c0a3c54cac0a8fbe37f6c14a950b5e479e808f3412c1d551e010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25fffffffff0200000000000000002c6a2ab92d97d0e0c4293324fcd7b6d3199d2f287a6d0b3c9b66c212f22d2b2ad4d39a2e2f3f5e31cdbd058c2fd5c90927010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25f02000000000000", + "rawtransaction": "020000000001017a1fc004883231c52e04e6d3a2e991233d3c8284e1a7f5605334fbd5bab1fd1601000000160014030911d5fdc714881fa8e952b498af6d61f5ac51ffffffff0200000000000000002c6a2a2f5d0b294a11444f5797033cf9b3852d3f8367344fb787ae88c9d1df0702dd1642e9aeb2eeaa9b737167d5c9092701000000160014030911d5fdc714881fa8e952b498af6d61f5ac5102000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9074,7 +9133,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (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: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -9135,7 +9194,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9143,16 +9202,16 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "0.00000001" }, @@ -9162,7 +9221,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101cf363810cc6cf64ad6a0a195169a58ce97c56ee9b8a4156167de5c6ffc242349000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a217d9f92a51aaaa4c829a4428ce8e44c744dc359445c322a576f68a725075dcf6a7142bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "0200000000010118aca66593ec2219c453c3849871c53b55711c736416b5f534c40707fb487c5000000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000236a2196dfe092c77d183087ba1628be778cbc2742c81a4fcc93e84b8fe103a81213405f42bc052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9183,10 +9242,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -9253,10 +9312,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "transfer_destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "lock": false, "reset": false, @@ -9270,7 +9329,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101b121b83c5e9404f1e58301f78c2b043ce2d84df8a5ad0a394fe00413ef537ea6000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0322020000000000001600147f6fe9665382ab7ab49540720d8ea146797938230000000000000000236a21cd226da658352e1dd07e24c038488f30c729adb834b84b660a6a36d42af75f59fc51b2052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "0200000000010172f1071973567309030ea5f066c9bf140d033692b7509deee4b10c4baa6febe800000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff032202000000000000160014ac548681482bc1c036de9247e1131713f3cecada0000000000000000236a21888d7ca85afa3a95deafb239d5257da2862b1b8ced1c5bff4fff1dd89f0388218451b2052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9299,9 +9358,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk,bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9,bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9368,16 +9427,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", 1 ], [ "MPMASSET", - "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", 2 ] ], @@ -9386,26 +9445,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807f6fe9665382ab7ab49540720d8ea1467979382380d533872f3cd762df505e43deb7a9d2734007319d40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280ac548681482bc1c036de9247e1131713f3cecada80c2df191d023210e58d54cde74576a219160a499340000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "020000000001045ee860f841c0569f86d19b01ec6711472db5496f858af9132f2eca62ab8ca735000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffee18d5f5ae84c0399fbf792bdbf7ab7fdc510c068c6a40be76f397bf19e7de38000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff2b797c44b8694e7e217a4a8a3accda1b1cb29607a6cd6316b54daacca2a334d4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffea1a5ee27dc8f066819c331881e974659c7334530b016555be43242120b26eb4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e80300000000000069512102a04e8f8f6d8383f439d007ef5175c4388cc7fddb7705c0849a41a81e843377e72102680630e59982444e271abadf464e6e1619fa42f46057ce84f4dcfe0adbac6bbe21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee80300000000000069512102bf4e8f8f6d8383f4390307edd10aabd1eab07f700db155c4e84826bfc24a0e0a21025025b130aa056b72f078658f180db0a1b02831b4676653c4f4dcfbe9bb24af5f21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753ae66f216a8040000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000000000000", + "rawtransaction": "02000000000104d65bcc8792c120d77e9a5201d8d2dec413f5d2cbc4eede594acda564f39627bb00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff17f769b391ac1007b8e14ff3012a05cdf7e3a50646ace149f83fc5a99f9bbc1a00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff51bf37e20488a1aebc5c4359f1e6823e11bf0add1cf1cc2128710c5f953976ec00000000160014ac548681482bc1c036de9247e1131713f3cecadafffffffffc8df3047e642a3d3980cdb8da12502561c14c6b98a09a5618d0ac8a6914036500000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff03e80300000000000069512102698df6d31404b2761a75efbd552cec2c10093d0043b215f6e89c6b13ad570e512103d52a2b87ae8349b933de73f6d748722406b62e2ddb71ce07d64e1339c9b9e5722102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512102768df6d31404b2761aa6efbfd580b8aa916516c18384cb64af797804bea4c08f21031ff0aa45719a54bb01ce967b838595617014373bd1385d47d64e16daa931217b2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae66f216a804000000160014ac548681482bc1c036de9247e1131713f3cecada02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9421,7 +9480,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -9485,7 +9544,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9494,16 +9553,16 @@ Composes a transaction to place an order on the distributed exchange. "fee_required": 100, "skip_validation": false, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -9517,7 +9576,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "0200000000010138c342bf395cdf8c26dabf53339062b01c2eb0abea0c0f7a638ff4cc6eaafb4e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000356a33fba79fc250bafb2e30508455e8e114f0b29f929835841b52b97fac7e1d436d1090555e14c254873c72e16a527613fe16a4c0f420b8052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101d80f696e9a7e6de1bc787dfcda446034a0e665919ee0a746efc5f137b85d4ad800000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000356a33585eda4f273ca3c9c1087667c458fcf792c479477eab9a654422dcdb6bfd573bd35d006142c80590481767a8bf0175fe28ec8120b8052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9543,8 +9602,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address that will be receiving the asset + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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 @@ -9610,8 +9669,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9619,28 +9678,28 @@ Composes a transaction to send a quantity of an asset to another address. "use_enhanced_send": true, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", + "data": "434e54525052545902000000000000000100000000000003e880c2df191d023210e58d54cde74576a219160a4993", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "0200000000010147bdd6b0c16e67e6a092697cfe860efefbe5e581c3620e1cb94d46c72f9c0d7e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000306a2ede34b251d660efae25d706a8b88651654fcd92f3202d50a9989f5f5b866aeee9302e52f4956683764e468ce8f27346b9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101463bf9f4eaa34614708a66e1e17cd53d7fb70729194c67b121b7a61530254df000000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000306a2e28da51ceddf2103ca36461a34558bd299a7c9b669c6f7cea70dc3ee7416e1893d05c3531ae9f52fdf9487054481646b9052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "quantity_normalized": "0.00001000" } @@ -9654,8 +9713,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be sending - + destination: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (str, required) - The address that will be sending + + destination: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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 @@ -9715,24 +9774,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d533872f3cd762df505e43deb7a9d2734007319d07ffff", + "data": "434e5452505254590480c2df191d023210e58d54cde74576a219160a499307ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101b8c28fb80188921a61ab4a8fea0607c10c7835291682b5e9489d8d3dd14c0344000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a214b9f209081dbbe9b89886d4957e05c88aa2332fa5f145b7c022461d03f311fb06742bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101e820c0ad0e3faf6497c066d1c838075e988b0563b899327457aeada167cc7be900000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000236a21805a0b040e734216b0a5438e72791428a4c536a00d030b07d09a572ad09673cd4e42bc052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "flags": 7, "memo": "ffff" } @@ -9746,8 +9805,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: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u` (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` @@ -9806,8 +9865,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "quantity": 1000, "skip_validation": false }, @@ -9817,7 +9876,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "0200000000010132673017a967b2e1623fd09aa62e4f037b7eb1ebeedb10949065659f8732619003000000160014d533872f3cd762df505e43deb7a9d2734007319dffffffff03e8030000000000001600144a30b7f971594bc6d7dffb1ef3a31b6c6064169500000000000000000c6a0add3a4bcf7b1a9ea1b1457325082701000000160014d533872f3cd762df505e43deb7a9d2734007319d02000000000000", + "rawtransaction": "02000000000101397f4156c55298b6b6a91babfb845667aee8bc7de79feeb8d2b3fa0e2bcf794203000000160014c2df191d023210e58d54cde74576a219160a4993ffffffff03e803000000000000160014b8f22384d60c55c3b8b004f32cb1d080e58b1e0300000000000000000c6a0a0884065c8041c43e180c7325082701000000160014c2df191d023210e58d54cde74576a219160a499302000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9834,7 +9893,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be issuing the asset + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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: `` @@ -9925,7 +9984,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9957,7 +10016,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "02000000000101f4cd4fb47d5b0174369f70d6115e99b7643ed759c5c659348d6b5fd362c8c4ca000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000316a2f075edb58bf3db1ab50a9c6bb65a6a85960683ae765e0df2cf477be4d5beca548f282f766804b86d79bf87e278f1b7a0bb9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101d055ad22ca012b79a7b21f28c5101c0b484e50c860489e5b24d878e10904308a00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000316a2f45fff5afa31ddae4de001178dbf6561175449fcd1c44031bcae733a0c8e0ab5998b675e952da51340912869bf294550bb9052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9996,7 +10055,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address that will be minting the asset + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -10057,14 +10116,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10076,7 +10135,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "020000000001011923f19e1932dacb8dcfd9167e7b5e8cad538ed0353dbd7b0ab7d702c0895a5b000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000166a144c2fabbba2484964b34b5a693b6d1ad64605217f3ebf052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101ca655859d2252c21a86ac1e41cd236d0605eb03fd58dd45dd6aa97f425ef20f100000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000166a141623b5fe1027835dde092f141613d3f6b636c4463ebf052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10095,10 +10154,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: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address from which the assets are attached + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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: `cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1` (str, optional) - The utxo to attach the assets to + + destination: `c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10157,27 +10216,27 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:3", "asset": "XCP", "quantity": 1000, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c636437353937303835633463336333303233396135623031336465363233366537366533653438373137653465313337646236656536666137636338646639333a317c5843507c31303030", + "data": "434e5452505254596462637274317134333267647132673930717571646b376a6672377a7963687a306575616a6b36746d716173397c633161623463393137663537343165613936343164343239396265333437373036343437656263303539343165366130663165333665626164333036616130343a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "02000000000106db945b92cfb2eca1800dded27810d809fc4a988ffb62acd10e413458d3c56737000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffde697e1109acfb31633a911a588b2000ff5839f3b4f41ea6578910f0c959f94d000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffd4922256cf5cc82dafdc5fc9e6cb053c9a30bee05d974526a60e688436de0394000000001600147f6fe9665382ab7ab49540720d8ea14679793823fffffffff7201a9db60784431f9a353aad7fa7ea8298d26c3b020b7948c423c252d132a9000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffb647d0bf7b905b7e54e3bd58defd71de535aa86456fa6285c8131cac8256dab8000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff54f6f9a87dab4870666e9d5d1ba0a9d3ed0c62a981be56a74dfbc6cc06a358c4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff04e803000000000000695121030817c07da58a3f44629992fe360746cc3c84f9d75cc0ecdcb262f504594be42f2103df65c402c74eeb9545ca5a2d77f15c42fc7e6c38b51b2858bba562f5386f768221027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121030817c07da58a3f4462c5c5fe701044de3fd5a3d30fc4b3d0f161f2080819af612103d834d1508046aac40195086928fe1f57bf23626ab2572641eea734f7623b7e0c21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121022217c07da58a3f44629996a4774946c154a6c19c0795b682c150c16c6d2f9da52103eb02b467b62399a135ad3f581f9b2b328e10550ed0614324d8c155c00158466b21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aebf6c22fc060000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106328283aac99f8382a6f5e40c2ccf28a3926db07250648ff4a4b2c0a333f0ae8400000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff7384d6f91b6b0eaeaf2cc5de73373d94e3120e1c65ebec3b3e14ff1c7ea1cb6e00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff5fcaafb0edf9f61c84047c938ec7f2348550987874e5e3547757d7685073a1dd00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff5ba3e055d0b2cb52edc8855c236f2a640040dc008df38d606711b2dcc0c7982c00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffffddb9ca9f8a179fd8bfd06aa0e6dace54cb866a3f9daa5e3dc64f4cc0afde726100000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffffe45ddcf9b48c602a24419fad2094d1361c5d5b10ebf34eafe6479db71d2de6c600000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff04e80300000000000069512102d739612aa9727ba04ae3bdf64ccf6e3a3a392ab9b4da9ea982fe0cd868ebe3ba2103c542e9e172646bc80e038efdd40a7100543c311909faff908df4100360d410962102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512103d739612aa9727ba04ab6e8f30b8c6b7a6b6b21e8e49ac8fa89f744cf7cbcbcbe2102c51fbfa5712a25ce041a8ead985f2a0e54296c0e59ecf5da8ba7100567871fbc2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512102fd39612aa9727ba04ae6bea50a816c37564948a2e19b9cfebbce7dad198f88432102f2288f93451e12ab6679be98a16b1b6b62485c686889c6eceec5716154b729062102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aebf6c22fc06000000160014ac548681482bc1c036de9247e1131713f3cecada02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10194,8 +10253,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: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to detach the assets to + + utxo: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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 @@ -10255,27 +10314,27 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964326130633638623263323639346433653764666334306336636239333631653835636534343964613664366633343238663938636636383836343062633833353a307c626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c5843507c31303030", + "data": "434e54525052545964363633323531323339393632363433663031366234353963366665303934333766643236366262363135653439623936313662396361353437633530343534373a307c62637274317134333267647132673930717571646b376a6672377a7963687a306575616a6b36746d716173397c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "02000000000103a21bc50f5cdd8b65aab1bad1f613bfff5b753d39e679f0fc363d632bdcd257b5010000001600141e3b253faedc160b8e01feea12afc01591194e93fffffffff09f234b4df5e2c9e152a8c34a34ead74e21d3ba11df52df88b7fe2eecb9d189000000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff6d8be49447adf2412d1ab0ee7159f4eaaaf04b6f065aecbfd3ce3a76d7793002010000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff04e80300000000000069512103a0082e44e6e7afb58e468b1d708015939b5ac17c3ff1c3964812460df6fc1184210254ba92e43dfebb13e8caea9174b38b0525ff8d8fc35d9dd3f35d49a1acc1d9352102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee80300000000000069512102a0082e44e6e7afb58e448f4478d5179b9b0b9a7d3cf2c78e1914031da1ee1504210305b193ed3aade656eb9bba9073af8b566cfe9dd4d55f8b87a21a19ade289c89f2102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee803000000000000695121028a082e44e6e7afb58e4c804a259948d7a12bf23238f8c7c27b777169909f2510210364d9a4875fc78825d9afd2a417d6bf311c9becb9a76bfbe0c76f71c795f9bab42102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53ae76770b27010000001600141e3b253faedc160b8e01feea12afc01591194e9302000002000002000000000000", + "rawtransaction": "0200000000010359e56caaa042fec5eabbd39cc8d5f2cfd20895e5912ed834a232772be5adb5bb01000000160014da8b86c979d7e5c1a329404a33455e7621f355dcffffffff7f9cf311bdf044b7f8a00b3d5ecc1aba73841cb5840c0602ccdabb5b837ddbf600000000160014da8b86c979d7e5c1a329404a33455e7621f355dcffffffff81b479d373890e3cf17030a847e789b5a4d6d7e4a889b905973ceb079c07868b01000000160014da8b86c979d7e5c1a329404a33455e7621f355dcffffffff04e8030000000000006951210287d83d959001cc4540cbe1c6060e87b0b2c89aeaadb530e0bbb4756a8e8008952103901ea790028c280eba95db65c5d90cd7a31f8f2c12d621e59e236c583521fcd021020df5a4ec59c64560bb56dc6dca7c65cd5c4a7f7a4e6ae74f11bb607d2f3f3a4f53aee8030000000000006951210287d83d959001cc4540ccb6c5010bd1b4b0cf96e7acbd36a8eab1372f8993082c21029615a3c215db7f0ebed79972c5800d8ba70f8e675ed07da6cc7f2f086928f3fa21020df5a4ec59c64560bb56dc6dca7c65cd5c4a7f7a4e6ae74f11bb607d2f3f3a4f53aee80300000000000069512102add83d959001cc4540dbba81544f8bfdd8b8f3afaab736e488d2455bb8e23cde2103a527c4a664e918378ea6ec03a1eb3ae1c17db91d27b315dcfc1a5a690343c50521020df5a4ec59c64560bb56dc6dca7c65cd5c4a7f7a4e6ae74f11bb607d2f3f3a4f53ae76770b2701000000160014da8b86c979d7e5c1a329404a33455e7621f355dc02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10344,8 +10403,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -10353,16 +10412,16 @@ Returns the valid assets "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", - "owner": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "issuer": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", + "owner": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "divisible": true, "locked": false, "supply": 100000000000, @@ -10370,16 +10429,16 @@ Returns the valid assets "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730815264, - "last_issuance_block_time": 1730815264, + "first_issuance_block_time": 1730900801, + "last_issuance_block_time": 1730900801, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -10387,16 +10446,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "owner": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "issuer": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "owner": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "divisible": true, "locked": false, "supply": 100000000000, @@ -10404,16 +10463,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730815086, - "last_issuance_block_time": 1730815086, + "first_issuance_block_time": 1730900621, + "last_issuance_block_time": 1730900621, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -10421,8 +10480,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" } ], @@ -10450,8 +10509,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -10459,8 +10518,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730814927, - "last_issuance_block_time": 1730814938, + "first_issuance_block_time": 1730900454, + "last_issuance_block_time": 1730900466, "supply_normalized": "100.00000000" } } @@ -10491,7 +10550,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10499,14 +10558,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10514,7 +10573,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10532,7 +10591,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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. @@ -10544,17 +10603,17 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "826.49944000" } @@ -10598,9 +10657,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10617,13 +10676,13 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -10645,9 +10704,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10664,13 +10723,13 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -10692,9 +10751,9 @@ Returns the orders of an asset }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10711,13 +10770,13 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -10739,9 +10798,9 @@ Returns the orders of an asset }, { "tx_index": 60, - "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10758,13 +10817,13 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -10786,9 +10845,9 @@ Returns the orders of an asset }, { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10805,13 +10864,13 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -10869,13 +10928,13 @@ Returns the orders of an asset { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10889,13 +10948,13 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -10909,13 +10968,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 52, - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10929,13 +10988,13 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -10949,13 +11008,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "id": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5_b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", "tx0_index": 49, - "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 50, - "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10969,13 +11028,13 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -10989,13 +11048,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11009,13 +11068,13 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -11029,13 +11088,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -11049,7 +11108,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11058,11 +11117,11 @@ Returns the orders of an asset "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", @@ -11129,20 +11188,20 @@ Returns the credits of an asset "result": [ { "block_index": 195, - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "event": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11150,20 +11209,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", + "event": "179010f31aad78ecbb3480c724113178302665e7a52ca5155c5db8ff32e811b6", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11171,20 +11230,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "event": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11192,20 +11251,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "event": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11217,16 +11276,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "event": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11286,102 +11345,102 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, { "block_index": 209, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "event": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, { "block_index": 208, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "event": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 207, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "event": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 206, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "event": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -11455,14 +11514,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", + "tx_hash": "179010f31aad78ecbb3480c724113178302665e7a52ca5155c5db8ff32e811b6", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -11477,20 +11536,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "tx_hash": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -11505,20 +11564,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -11533,20 +11592,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -11561,7 +11620,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730814927, + "block_time": 1730900454, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11595,10 +11654,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11606,23 +11665,23 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11630,23 +11689,23 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 74, - "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "tx_hash": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "block_index": 207, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11654,23 +11713,23 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11678,23 +11737,23 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11702,13 +11761,13 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" @@ -11753,9 +11812,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11764,7 +11823,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11775,13 +11834,13 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -11792,9 +11851,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", + "tx_hash": "41d8a373d332c04da51737221ec401f66d183c7de06fa298a3a3b8135235b246", "block_index": 142, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11803,7 +11862,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "origin": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11814,13 +11873,13 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815023, + "block_time": 1730900550, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", @@ -11831,9 +11890,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", + "tx_hash": "0e3006e756353602d5a3f3999734c449dbbff728c7572db3dcd3ba26395f5dd0", "block_index": 150, - "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", + "source": "mfanX2LPYr7FZamgGboJwc9G1VFYpaQHjA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11841,10 +11900,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_hash": "837acca19584e732c6b24d1c0b23e49734c0935f16301ff1bd42cd2f3371602f", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -11853,13 +11912,13 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815057, + "block_time": 1730900592, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -11870,18 +11929,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11892,13 +11951,13 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -11918,7 +11977,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - The address to return + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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` @@ -11931,9 +11990,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11942,7 +12001,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11953,13 +12012,13 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -12004,7 +12063,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12012,7 +12071,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12021,7 +12080,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12029,7 +12088,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12038,7 +12097,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12046,7 +12105,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12055,7 +12114,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12092,27 +12151,27 @@ Returns the dispenses of an asset { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12127,13 +12186,13 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -12141,27 +12200,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", + "tx_hash": "f6db7d835bbbdacc02060c84b51c8473ba1acc5e3d0ba0f8b744f0bd11f39c7f", "block_index": 147, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12176,13 +12235,13 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815044, + "block_time": 1730900579, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" @@ -12190,19 +12249,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12210,7 +12269,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12225,13 +12284,13 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -12239,19 +12298,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12259,7 +12318,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12274,13 +12333,13 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -12348,10 +12407,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12376,7 +12435,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12416,22 +12475,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", + "tx_hash": "179010f31aad78ecbb3480c724113178302665e7a52ca5155c5db8ff32e811b6", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12440,22 +12499,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "tx_hash": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "tx_index": 12, "block_index": 124, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12464,22 +12523,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12498,7 +12557,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta` (str, required) - The address of the mints to return + + address: `bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw` (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` @@ -12517,22 +12576,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -12585,9 +12644,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12604,13 +12663,13 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -12632,9 +12691,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "block_index": 187, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12651,7 +12710,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12660,11 +12719,11 @@ Returns all the orders "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00002000", "get_quantity_normalized": "0.00002000", @@ -12679,9 +12738,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12698,13 +12757,13 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -12726,9 +12785,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12745,13 +12804,13 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -12773,9 +12832,9 @@ Returns all the orders }, { "tx_index": 60, - "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12792,13 +12851,13 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -12829,7 +12888,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4` (str, required) - The hash of the transaction that created the order + + order_hash: `81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d` (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. @@ -12841,9 +12900,9 @@ Returns the information of an order { "result": { "tx_index": 54, - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "block_index": 210, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -12860,7 +12919,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12869,11 +12928,11 @@ Returns the information of an order "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", @@ -12894,7 +12953,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4` (str, required) - The hash of the transaction that created the order + + order_hash: `81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d` (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 @@ -12921,13 +12980,13 @@ Returns the order matches of an order { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12941,13 +13000,13 @@ Returns the order matches of an order "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -12961,13 +13020,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -12981,7 +13040,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12990,24 +13049,24 @@ Returns the order matches of an order "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13021,13 +13080,13 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13051,7 +13110,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663` (str, required) - The hash of the transaction that created the order + + order_hash: `0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4` (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 @@ -13070,15 +13129,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "btc_amount": 2000, - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "status": "valid", "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "btc_amount_normalized": "0.00002000" } ], @@ -13122,9 +13181,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "block_index": 187, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13142,7 +13201,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730815205, + "block_time": 1730900734, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13151,11 +13210,11 @@ Returns the orders to exchange two assets "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00002000", "get_quantity_normalized": "0.00002000", @@ -13168,9 +13227,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "block_index": 210, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -13188,7 +13247,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730815328, + "block_time": 1730900878, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13197,11 +13256,11 @@ Returns the orders to exchange two assets "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", @@ -13214,9 +13273,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13234,13 +13293,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -13260,9 +13319,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13280,13 +13339,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -13306,9 +13365,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13326,13 +13385,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -13389,13 +13448,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13412,13 +13471,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13432,13 +13491,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 52, - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13455,13 +13514,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815205, + "block_time": 1730900734, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13475,13 +13534,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13498,7 +13557,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13507,24 +13566,24 @@ Returns the orders to exchange two assets "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, { - "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "id": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5_b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", "tx0_index": 49, - "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 50, - "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13541,13 +13600,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815126, + "block_time": 1730900661, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13561,13 +13620,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13584,13 +13643,13 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13642,13 +13701,13 @@ Returns all the order matches { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13662,13 +13721,13 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13682,13 +13741,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 52, - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13702,13 +13761,13 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13722,13 +13781,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "id": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5_b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", "tx0_index": 49, - "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 50, - "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13742,13 +13801,13 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13762,13 +13821,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13782,13 +13841,13 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -13802,13 +13861,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -13822,7 +13881,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13831,11 +13890,11 @@ Returns all the order matches "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", @@ -13990,66 +14049,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", + "tx_hash": "2ce50256f747be5c5c5d50f3615f0dc0ea9abfb217166346e93166cfc690fa96", "block_index": 121, - "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", + "source": "bcrt1qw6eahpx7d8036rwyp89hastveh2x94craud9dn", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730814922, + "block_time": 1730900450, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6c5d5de4a45d374a9e7e8b39e7655c5229ef815ea661ad9f71cf4eb8935ae729", + "tx_hash": "d3e3e65353092e147cef1da9a296131bc05cbb1c520add29a2286e104181077a", "block_index": 120, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730814919, + "block_time": 1730900447, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "ab82779227e9a373afa751fbe46629179c0a567c9251bc34a289d75a82383573", + "tx_hash": "dc17e805d849eec89b44760841e93562dfb38ecc9a4e1ed844fa252989822272", "block_index": 119, - "source": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff", + "source": "bcrt1qsu0r7ztj4uc66wc2w4tz7373r0eqm3pmjf4ma3", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730814915, + "block_time": 1730900442, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "b7e759cba65e5066d59edc941bc6a53bde9feae3b1d854ba6ed335fe6a18a528", + "tx_hash": "8dddca64b5590636acdb7bcdd7a00a0649a776156bb65957a41cc1c26020ef8f", "block_index": 118, - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730814911, + "block_time": 1730900439, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d0854e63c8720442ecb862287f6d9f79f569382ec5695f7bf2b557ec2d7e9b6d", + "tx_hash": "b3d23db06b5029db88fe618b4dc4f035661fd12d50ccc36157349765b53ba944", "block_index": 117, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730814907, + "block_time": 1730900435, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -14094,9 +14153,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14105,7 +14164,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14116,13 +14175,13 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -14133,9 +14192,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", + "tx_hash": "41d8a373d332c04da51737221ec401f66d183c7de06fa298a3a3b8135235b246", "block_index": 142, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14144,7 +14203,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "origin": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -14155,13 +14214,13 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815023, + "block_time": 1730900550, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", @@ -14172,9 +14231,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", + "tx_hash": "0e3006e756353602d5a3f3999734c449dbbff728c7572db3dcd3ba26395f5dd0", "block_index": 150, - "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", + "source": "mfanX2LPYr7FZamgGboJwc9G1VFYpaQHjA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14182,10 +14241,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_hash": "837acca19584e732c6b24d1c0b23e49734c0935f16301ff1bd42cd2f3371602f", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -14194,13 +14253,13 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815057, + "block_time": 1730900592, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -14211,9 +14270,9 @@ Returns all dispensers }, { "tx_index": 64, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14222,7 +14281,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14233,11 +14292,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -14250,18 +14309,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14272,13 +14331,13 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -14298,7 +14357,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087` (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. @@ -14310,9 +14369,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14321,7 +14380,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14332,13 +14391,13 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -14355,7 +14414,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c` (str, required) - The hash of the dispenser to return + + dispenser_hash: `61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087` (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 @@ -14375,19 +14434,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14395,7 +14454,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14410,13 +14469,13 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -14424,19 +14483,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14444,7 +14503,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14459,13 +14518,13 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -14501,29 +14560,29 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" @@ -14539,7 +14598,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef` (str, required) - The hash of the dividend to return + + dividend_hash: `edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c` (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. @@ -14551,29 +14610,29 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" @@ -14586,7 +14645,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c` (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 @@ -14609,39 +14668,39 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "event": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "tx_index": 41, - "utxo": "a786ebbcef73d52585b1012e1f21ce6dbef3b78d4e0240e7a15a76fdb84b61de:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "937ae7b1c1381d6341b122d2398f760e25a89e00ca53555e6781c5b85baa106a:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, { "block_index": 154, - "address": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", + "address": "bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "event": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "5.00000000" } @@ -14681,27 +14740,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 694, @@ -14710,27 +14769,27 @@ Returns all events "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 693, @@ -14739,48 +14798,48 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 691, @@ -14808,15 +14867,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } } ``` @@ -14894,28 +14953,28 @@ Returns the events filtered by event name "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 690, @@ -14925,24 +14984,24 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 687, @@ -14952,78 +15011,78 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "event": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00003000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "event": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_time": 1730815312 + "block_time": 1730900865 } ], "next_cursor": 656, @@ -15079,27 +15138,27 @@ Returns all the dispenses { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15114,13 +15173,13 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -15128,19 +15187,19 @@ Returns all the dispenses { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", + "tx_hash": "1b7d30e4bf5db9ccccf1988c2cfed43d70ed988d65bc6fa6e5faa946e7dc2f22", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "dispenser_tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15148,7 +15207,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15163,11 +15222,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -15177,27 +15236,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", + "tx_hash": "f6db7d835bbbdacc02060c84b51c8473ba1acc5e3d0ba0f8b744f0bd11f39c7f", "block_index": 147, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15212,13 +15271,13 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815044, + "block_time": 1730900579, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" @@ -15226,19 +15285,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15246,7 +15305,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15261,13 +15320,13 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -15275,19 +15334,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15295,7 +15354,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15310,13 +15369,13 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -15352,10 +15411,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -15363,23 +15422,23 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -15387,11 +15446,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -15400,10 +15459,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15411,23 +15470,23 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15435,11 +15494,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -15448,10 +15507,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15459,11 +15518,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -15514,14 +15573,14 @@ Returns all the issuances "result": [ { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -15536,20 +15595,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "29bc5c4992ab2801c3ef43e6c67dd0da8c60ff295a174c149f68cd4f2c32fe44", + "tx_hash": "378c91e35ec0eccc27e753fe40737dd0505e0a7009a31405fcfd46ee7c81bfd5", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", - "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", + "issuer": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "transfer": false, "callable": false, "call_date": 0, @@ -15564,20 +15623,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815264, + "block_time": 1730900801, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", + "tx_hash": "8251160a2e10f586c7b1581c6439712e84d4669300bb9a5cb6204706b358a21d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -15592,20 +15651,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815111, + "block_time": 1730900637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", + "tx_hash": "96468e255a09d5e865bbb6bce5b82451123f4a2a88cb91dcac981a448af22352", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -15620,20 +15679,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730815107, + "block_time": 1730900634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", + "tx_hash": "047f91bd33430d27d88fe19c263b682a65061b4d5c2d276962f448eabb2d1dee", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -15648,7 +15707,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815104, + "block_time": 1730900630, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15663,7 +15722,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc` (str, required) - The hash of the transaction to return + + tx_hash: `92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f` (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. @@ -15675,14 +15734,14 @@ Returns the issuances of a block { "result": { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -15697,7 +15756,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15729,16 +15788,16 @@ Returns all sweeps "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -15752,7 +15811,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f` (str, required) - The hash of the transaction to return + + tx_hash: `fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca` (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. @@ -15765,16 +15824,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -15808,9 +15867,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15818,14 +15877,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814999, + "block_time": 1730900524, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", + "tx_hash": "c7b0a9b6bee7d309ab6dc5ae4fc986e4fcd7c1183231e459fb6648d8c2fb8231", "block_index": 137, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15833,7 +15892,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814996, + "block_time": 1730900521, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15847,7 +15906,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b` (str, required) - The hash of the transaction to return + + tx_hash: `25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925` (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. @@ -15859,9 +15918,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15869,7 +15928,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814999, + "block_time": 1730900524, "fee_fraction_int_normalized": "0.00000000" } } @@ -15906,10 +15965,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15934,7 +15993,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15943,10 +16002,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15971,7 +16030,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730814988, + "block_time": 1730900513, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15983,10 +16042,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -16011,7 +16070,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730814962, + "block_time": 1730900487, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -16023,10 +16082,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -16051,7 +16110,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730814958, + "block_time": 1730900483, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16063,10 +16122,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -16091,7 +16150,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -16160,22 +16219,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -16184,22 +16243,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", + "tx_hash": "63df57cbf4953b9c87d8b78c85e3bb25c90f157dd68dcca6aa7ecca96a7120ca", "tx_index": 21, "block_index": 134, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814984, + "block_time": 1730900509, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -16208,22 +16267,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", + "tx_hash": "cbe53304ae4f7b21bcb2513d104690258c2bdb6a96e73d83bd3d8334ff93529c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814971, + "block_time": 1730900505, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -16232,22 +16291,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", + "tx_hash": "589f32021120f9302bfd44f8566adadcd0d7a8d544060ba23b85aca2e880a8b4", "tx_index": 19, "block_index": 132, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814967, + "block_time": 1730900492, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -16256,22 +16315,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "245d76ac2bac5f99c58866cfeb27c8e3571cc13c9e019fd018bb443df46130a3", + "tx_hash": "b3f01120cc3805224b9770dc42c28840f544769e3814b27175fb07b4b5a63828", "tx_index": 17, "block_index": 129, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "fairminter_tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814954, + "block_time": 1730900479, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -16290,7 +16349,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4` (str, required) - The hash of the fairmint to return + + tx_hash: `e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16301,22 +16360,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -16334,7 +16393,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w,bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff` (str, required) - The addresses to search for + + addresses: `bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd,bcrt1qsu0r7ztj4uc66wc2w4tz7373r0eqm3pmjf4ma3` (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. @@ -16348,22 +16407,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b", - "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" + "amount": 5.46e-05, + "txid": "5da6e05259561f091adc53dc41a53a0cd4dde000db2ecf3ec6656a33aaf496ca", + "address": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd" }, { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585", - "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" + "amount": 49.499345, + "txid": "16fdb1bad5fb345360f5a7e184823c3d2391e9a2d3e6042ec531328804c01f7a", + "address": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd" }, { "vout": 2, @@ -16371,8 +16430,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4", - "address": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff" + "txid": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e", + "address": "bcrt1qsu0r7ztj4uc66wc2w4tz7373r0eqm3pmjf4ma3" } ], "next_cursor": null, @@ -16385,7 +16444,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd` (str, required) - The address to search for + + address: `bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4` (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 @@ -16401,31 +16460,31 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1cf93eaecf80fee38f282708e49be0e972b4526e9c5ad72ec822cd570f63eb06" + "tx_hash": "d3557e53fddabc7976909a78cd1aaf0a217b640e4b1e696490f9fe3659e18403" }, { - "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c" + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d" }, { - "tx_hash": "e37f8aa66f2894997ea5795928c5e29bf8d9b94109f97d0d8f28c7cd04598c25" + "tx_hash": "24891e5ec9dce6b61bf73493398c9abb9cfede27a403077c4c63dbc29f0ea94b" }, { - "tx_hash": "561135f903b3cfe5dbd6bc6bf6729eea4268a1075e009865119f0212c704072e" + "tx_hash": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367" }, { - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f" + "tx_hash": "e6a62c306b404e51de3bfda76762aa774d8528527216e6a87236647c56139478" }, { - "tx_hash": "792827d3afb74c45f7a681503c2f51e26c2d12400c0e86eeea745a5bfbf01d5d" + "tx_hash": "eba961ef9907c321a6f027601d48e4d13b7cdcb72479b656c107219c7a8ef59e" }, { - "tx_hash": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8" + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca" }, { - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" + "tx_hash": "f3c8eca1c34b49956dff033a70a7353c636da2bfe53280416d047190c349e3f2" }, { - "tx_hash": "80d23748c8c9e7860f9d0193b861b38c7a820b25f2fb8f606fc7561fb12b96f9" + "tx_hash": "0e2f19639bee99572d6f3686b608029535aa43d16e26eabf092b816d998f77f8" } ], "next_cursor": null, @@ -16438,7 +16497,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2` (str, required) - The address to search for. + + address: `bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn` (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. @@ -16451,8 +16510,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 6, - "tx_hash": "93fa0e493eefe1d4b855ed4e2aa6b6afe1f9261f63fdfe6b53442aee181e223a" + "block_index": 1, + "tx_hash": "ec7c3e26f3e30d2f92d7360a5c3b97595d86ee4de01d676713b2e56009ee54e8" } } ``` @@ -16462,7 +16521,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w` (str, required) - The address to search for + + address: `bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd` (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 @@ -16483,7 +16542,7 @@ Returns a list of unspent outputs for a specific address "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b" + "txid": "16fdb1bad5fb345360f5a7e184823c3d2391e9a2d3e6042ec531328804c01f7a" }, { "vout": 0, @@ -16491,7 +16550,7 @@ Returns a list of unspent outputs for a specific address "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585" + "txid": "5da6e05259561f091adc53dc41a53a0cd4dde000db2ecf3ec6656a33aaf496ca" } ], "next_cursor": null, @@ -16504,7 +16563,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk` (str, required) - Address to get pubkey for. + + address: `bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9` (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. @@ -16516,7 +16575,7 @@ Get pubkey for an address. ``` { - "result": "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" + "result": "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4" } ``` @@ -16525,7 +16584,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835` (str, required) - The transaction hash + + tx_hash: `663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547` (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. @@ -16537,7 +16596,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101b48666cefd466f79a3d15bf814096f990dc492394bad3fc32b9a05bb9485a7770100000000ffffffff03e8030000000000001600141e3b253faedc160b8e01feea12afc01591194e9300000000000000000c6a0af440a74b8610ff8c1f4aeb140927010000001600145d2f62d2b47bd9b2fd83ab8a11e6bd825c54c1430247304402207b3abd99e749c9ad380900801266580250d2cba1d3ab53081f94bdc4b60c134902203f1b636047b9335a4c7355cf8a774e94b7b34e0e0b3cddc53daaea22f21550e7012102266210940cb1609912dc497cd1c1591851135e1fa766e4225851b402b6caf07500000000" + "result": "020000000001013e75acf81a6bafc4323cc045e44de5ca05178f112aa31bc71b03839ac4f907600100000000ffffffff03e803000000000000160014da8b86c979d7e5c1a329404a33455e7621f355dc00000000000000000c6a0a6cf05f8c7a8b021e2c09eb140927010000001600148115db524c577527e5c31523cb3ee82f28849cf10247304402203ec4b83c921b6e73c868a36c75c9f01e8ed161e713c62eb79583189a2bc71c77022043f0aa68413d1d1b85406b21f91bef3b956436d6107059f2c1543faeeaabcfde012102e82059ad0eb091c398e241fe61f647b0474a4207765e05117dc966913684916f00000000" } ``` @@ -16574,6 +16633,72 @@ Proxy to `sendrawtransaction` RPC call. + show_unconfirmed (bool, optional) - Include results from Mempool. + Default: `false` +### Decoderawtransaction [GET /v2/bitcoin/transactions/decode{?rawtx}{&verbose}{&show_unconfirmed}] + +Proxy to `decoderawtransaction` RPC call. + ++ Parameters + + rawtx: `0200000000010199c94580cbea44aead18f429be20552e640804dc3b4808e39115197f1312954d000000001600147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0ffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac70da0a27010000001600147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d002000000000000` (str, required) - The raw transaction hex. + + verbose: `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": { + "txid": "0af935874d4d8c588f4c30a68c39d96906bf20ba20accd4337b8fcfc0196299b", + "hash": "b265ef6af958f89b1c835f0956c5c374761e5f5d3b7910ee0e79e0e08900affd", + "version": 2, + "size": 143, + "vsize": 140, + "weight": 557, + "locktime": 0, + "vin": [ + { + "txid": "4d9512137f191591e308483bdc0408642e5520be29f418adae44eacb8045c999", + "vout": 0, + "scriptSig": { + "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0" + }, + "txinwitness": [ + "", + "" + ], + "sequence": 4294967295 + } + ], + "vout": [ + { + "value": 0.5, + "n": 0, + "scriptPubKey": { + "asm": "OP_DUP OP_HASH160 a11b66a67b3ff69671c8f82254099faf374b800e OP_EQUALVERIFY OP_CHECKSIG", + "desc": "addr(mvCounterpartyXXXXXXXXXXXXXXW24Hef)#3dsuzcep", + "hex": "76a914a11b66a67b3ff69671c8f82254099faf374b800e88ac", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "type": "pubkeyhash" + } + }, + { + "value": 49.4999, + "n": 1, + "scriptPubKey": { + "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "desc": "addr(bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut)#arywlyjk", + "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "address": "bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut", + "type": "witness_v0_keyhash" + } + } + ] + } + } + ``` + ### Get Mempool Info [GET /v2/bitcoin/getmempoolinfo{?verbose}{&show_unconfirmed}] Get the current mempool info. @@ -16632,125 +16757,125 @@ Returns all mempool events { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78 }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "quantity": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "block_index": 210, - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730815333.0180326, + "block_time": 1730900881.524786, "btc_amount": 0, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "destination": "", "fee": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, - "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", + "utxos_info": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -16781,29 +16906,29 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -16816,7 +16941,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58` (str, required) - The hash of the transaction to return + + tx_hash: `3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001` (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 @@ -16836,125 +16961,125 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78 }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "quantity": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "block_index": 210, - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730815333.0180326, + "block_time": 1730900881.524786, "btc_amount": 0, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "destination": "", "fee": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, - "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", + "utxos_info": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index 963190ac32..1532e708fb 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -176,6 +176,7 @@ def get_routes(): "/v2/bitcoin/transactions/": util.get_transaction, "/v2/bitcoin/estimatesmartfee": bitcoind.fee_per_kb, "/v2/bitcoin/transactions": bitcoind.sendrawtransaction, + "/v2/bitcoin/transactions/decode": bitcoind.decoderawtransaction, "/v2/bitcoin/getmempoolinfo": bitcoind.get_mempool_info, ### /mempool ### "/v2/mempool/events": queries.get_all_mempool_events, diff --git a/counterparty-core/counterpartycore/lib/backend/bitcoind.py b/counterparty-core/counterpartycore/lib/backend/bitcoind.py index 367431f3b5..da1744b6a9 100644 --- a/counterparty-core/counterpartycore/lib/backend/bitcoind.py +++ b/counterparty-core/counterpartycore/lib/backend/bitcoind.py @@ -303,3 +303,11 @@ def sendrawtransaction(signedhex: str): :param signedhex: The signed transaction hex. """ return rpc("sendrawtransaction", [signedhex]) + + +def decoderawtransaction(rawtx: str): + """ + Proxy to `decoderawtransaction` RPC call. + :param rawtx: The raw transaction hex. (e.g. 0200000000010199c94580cbea44aead18f429be20552e640804dc3b4808e39115197f1312954d000000001600147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0ffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac70da0a27010000001600147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d002000000000000) + """ + return rpc("decoderawtransaction", [rawtx]) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index e11601163c..55697929c1 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -195,11 +195,11 @@ "fee_required": 900000, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -267,11 +267,11 @@ "tx_index": 492, "block_time": 310491000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -306,11 +306,11 @@ "utxo_address": null, "block_time": 310491000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -344,11 +344,11 @@ "fee_required": 900000, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -438,11 +438,11 @@ "confirmed": true, "block_time": 310491000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" } @@ -918,11 +918,11 @@ "utxo_address": null, "block_time": 310001000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -1054,11 +1054,11 @@ "utxo_address": null, "block_time": 310506000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000200" }, @@ -1081,11 +1081,11 @@ "utxo_address": null, "block_time": 310506000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000200" }, @@ -1184,11 +1184,11 @@ "utxo_address": null, "block_time": 310506000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000200" }, @@ -1588,11 +1588,11 @@ "utxo_address": null, "block_time": 310520000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000200" }, @@ -1682,11 +1682,11 @@ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000100" }, @@ -1832,11 +1832,11 @@ "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "916.75000000" } @@ -1901,11 +1901,11 @@ "confirmed": true, "block_time": 310507000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000100" }, @@ -2006,11 +2006,11 @@ "confirmed": true, "block_time": 310482000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2027,11 +2027,11 @@ "confirmed": true, "block_time": 310102000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000009" }, @@ -2153,11 +2153,11 @@ "confirmed": true, "block_time": 310000000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "930.00000000" } @@ -2201,11 +2201,11 @@ "confirmed": true, "block_time": 310508000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, @@ -2222,11 +2222,11 @@ "confirmed": true, "block_time": 310507000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000100" }, @@ -2243,11 +2243,11 @@ "confirmed": true, "block_time": 310507000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, @@ -2264,11 +2264,11 @@ "confirmed": true, "block_time": 310503000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2285,11 +2285,11 @@ "confirmed": true, "block_time": 310502000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2306,11 +2306,11 @@ "confirmed": true, "block_time": 310500000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2327,11 +2327,11 @@ "confirmed": true, "block_time": 310499000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2348,11 +2348,11 @@ "confirmed": true, "block_time": 310498000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.25000000" }, @@ -2369,11 +2369,11 @@ "confirmed": true, "block_time": 310497000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2390,11 +2390,11 @@ "confirmed": true, "block_time": 310491000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2411,11 +2411,11 @@ "confirmed": true, "block_time": 310481000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2453,11 +2453,11 @@ "confirmed": true, "block_time": 310019000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000009" }, @@ -2474,11 +2474,11 @@ "confirmed": true, "block_time": 310016000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2558,11 +2558,11 @@ "confirmed": true, "block_time": 310012000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "3.00000000" }, @@ -2579,11 +2579,11 @@ "confirmed": true, "block_time": 310010000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2600,11 +2600,11 @@ "confirmed": true, "block_time": 310009000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2621,11 +2621,11 @@ "confirmed": true, "block_time": 310008000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2663,11 +2663,11 @@ "confirmed": true, "block_time": 310006000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000" }, @@ -2684,11 +2684,11 @@ "confirmed": true, "block_time": 310004000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2705,11 +2705,11 @@ "confirmed": true, "block_time": 310003000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2726,11 +2726,11 @@ "confirmed": true, "block_time": 310002000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" }, @@ -2747,11 +2747,11 @@ "confirmed": true, "block_time": 310001000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.50000000" } @@ -2883,11 +2883,11 @@ "confirmed": true, "block_time": 310507000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000100", "fee_paid_normalized": "0.00000010" @@ -2907,11 +2907,11 @@ "confirmed": true, "block_time": 310481000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" @@ -3027,11 +3027,11 @@ "confirmed": true, "block_time": 310012000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "3.00000000", "fee_paid_normalized": "0.00000000" @@ -3051,11 +3051,11 @@ "confirmed": true, "block_time": 310008000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" @@ -3105,11 +3105,11 @@ "confirmed": true, "block_time": 310482000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" @@ -3209,11 +3209,11 @@ "satoshi_price": 100, "block_time": 310107000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000100", "give_remaining_normalized": "0.00000100", @@ -4455,11 +4455,11 @@ "fee_required": 900000, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4509,11 +4509,11 @@ "confirmed": true, "block_time": 310513000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4563,11 +4563,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00666667", "get_quantity_normalized": "1.00000000", @@ -4603,11 +4603,11 @@ "confirmed": true, "block_time": 310010000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4650,11 +4650,11 @@ "confirmed": true, "block_time": 310009000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "asset_longname": null, @@ -4697,11 +4697,11 @@ "confirmed": true, "block_time": 310006000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "asset_longname": null, @@ -5401,11 +5401,11 @@ "satoshi_price": 100, "block_time": 310107000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000100", "give_remaining_normalized": "0.00000100", @@ -5524,11 +5524,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00800000", "get_quantity_normalized": "1.00000000", @@ -5564,11 +5564,11 @@ "confirmed": true, "block_time": 310513000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5618,11 +5618,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00666667", "get_quantity_normalized": "1.00000000", @@ -5658,11 +5658,11 @@ "confirmed": true, "block_time": 310010000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5705,11 +5705,11 @@ "confirmed": true, "block_time": 310009000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "asset_longname": null, @@ -5752,11 +5752,11 @@ "confirmed": true, "block_time": 310006000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "asset_longname": null, @@ -5804,11 +5804,11 @@ "confirmed": true, "block_time": 310513000, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5854,11 +5854,11 @@ "confirmed": true, "block_time": 310513000, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -5915,11 +5915,11 @@ "confirmed": true, "block_time": 310513000, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -6211,11 +6211,11 @@ "satoshi_price": 100, "block_time": 310107000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000100", "give_remaining_normalized": "0.00000100", @@ -6255,11 +6255,11 @@ "satoshi_price": 100, "block_time": 310107000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000100", "give_remaining_normalized": "0.00000100", @@ -6421,11 +6421,11 @@ "utxo_address": null, "block_time": 310588000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000009" }, @@ -6529,11 +6529,11 @@ "utxo_address": null, "block_time": 310520000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000200" }, @@ -6597,11 +6597,11 @@ "confirmed": true, "block_time": 310507000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000100", "fee_paid_normalized": "0.00000010" @@ -6621,11 +6621,11 @@ "confirmed": true, "block_time": 310496000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "929.45878000", "fee_paid_normalized": "0.00000000" @@ -6669,11 +6669,11 @@ "confirmed": true, "block_time": 310482000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" @@ -6693,11 +6693,11 @@ "confirmed": true, "block_time": 310481000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" @@ -6813,11 +6813,11 @@ "confirmed": true, "block_time": 310012000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "3.00000000", "fee_paid_normalized": "0.00000000" @@ -6837,11 +6837,11 @@ "confirmed": true, "block_time": 310008000, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" @@ -17771,6 +17771,32 @@ } ] }, + "/v2/bitcoin/transactions/decode": { + "function": "decoderawtransaction", + "description": "Proxy to `decoderawtransaction` RPC call.", + "args": [ + { + "name": "rawtx", + "required": true, + "type": "str", + "description": "The raw transaction hex. (e.g. 0200000000010199c94580cbea44aead18f429be20552e640804dc3b4808e39115197f1312954d000000001600147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0ffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac70da0a27010000001600147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d002000000000000)" + }, + { + "name": "verbose", + "type": "bool", + "default": "false", + "description": "Include asset and dispenser info and normalized quantities in the response.", + "required": false + }, + { + "name": "show_unconfirmed", + "type": "bool", + "default": "false", + "description": "Include results from Mempool.", + "required": false + } + ] + }, "/v2/bitcoin/getmempoolinfo": { "function": "get_mempool_info", "description": "Get the current mempool info.", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index a8a4a3a73e..58a9bb7253 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": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", "difficulty": 545259519, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "previous_block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "previous_block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", "difficulty": 545259519, - "ledger_hash": "4f8ec7521eb079fc7651868cfb0e091d56cb9a946781741224a0b21045fe3f08", - "txlist_hash": "e5088fbc9436f1733f83b3116d0a90fb8bb0bb4fb592aa6bbbd6b1d6a3959153", - "messages_hash": "305efc93cd4fc24a5f5acbf52cb0a11d74687f4b46a213ce0cc00cd70c251c89", + "ledger_hash": "c5435103093fec63739ae7e8f186daeb67522af7f218db301d0ad8e42adea110", + "txlist_hash": "dda6311d347153d1b6ed118c9599094530cd703c9562b7f39f3111664823d5a2", + "messages_hash": "bf0b43cc24dd36e2a5dcd1f207cedda884164c2c65a451f335ffadbb9b9987e9", "transaction_count": 1, "confirmed": true }, { "block_index": 208, - "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", - "block_time": 1730815312, - "previous_block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", + "block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", + "block_time": 1730900865, + "previous_block_hash": "10c03099ba1f61bfb17cd7625a99a1857ad45e0e0a03bc8d8cd044e12ed3bfb5", "difficulty": 545259519, - "ledger_hash": "ac49b220ad7ebca61cfa89d8e3ad61724cc7b02f449c815f732c05eba38be416", - "txlist_hash": "91e3ce6d6848aee4c67f2a51cec38c4ddfef1927fc06f23aaeba105187d52941", - "messages_hash": "ab230dd234a477a9d8fed8c39f5357e9f7be5cf52dcbb3e3051b7db8b0be0e46", + "ledger_hash": "02608dc643d65e1168301ffe52f55eec69c473ac35ad444ae4ff1ac6deed9117", + "txlist_hash": "c026cdc85f03fe0f4e86ac21e1d7e220ad46f1cd04c92b4628c4da16f8ce94e5", + "messages_hash": "c9a534024d5029fd664b466ab0ed3e517922affec3d2c99ad7ad5d95d0a9a25b", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", - "block_time": 1730815307, - "previous_block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", + "block_hash": "10c03099ba1f61bfb17cd7625a99a1857ad45e0e0a03bc8d8cd044e12ed3bfb5", + "block_time": 1730900861, + "previous_block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", "difficulty": 545259519, - "ledger_hash": "c5a362d8ca3b4e3f105e20edf23add9475523d4b434aa409271b7246fc0c6eaa", - "txlist_hash": "49bb59b65fcab0a3644d337af67945ae3eec864306b3aa1b46979407fc927944", - "messages_hash": "ec1ca9b4459dc9cdcc751a118f641e718f90c6dc8956441b7ce5a24e4a1f0bba", + "ledger_hash": "612b26afc345be9b429c0259c8a43720a25b0f51fd1f3fe388b783b41b38ecf3", + "txlist_hash": "7b06957467fcf6c5a23f6ab494ad96b32a27e3a2f8bf654a47f9e1f170a2b0bc", + "messages_hash": "607a9f22740965d9e5c17eda6c61f22cd9c33a4f9416ed96f6d05a106f981ed4", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", - "block_time": 1730815303, - "previous_block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", + "block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", + "block_time": 1730900857, + "previous_block_hash": "510cdd820aa3171cb24fc0998e6509852ce385b5f4ef12a67bc2dd2fa0e6e09d", "difficulty": 545259519, - "ledger_hash": "cbbf765e3f0de039e1b923d3c657023d20fa8674d7af665ad037520ce65debf3", - "txlist_hash": "35cedfac328fc7f2e6b7c51bf6a774c0be6d0189d5172b86d146a19ebe1d95c1", - "messages_hash": "fb5ce0e3b6ffa98c6199e293927b7145d7f72112365e4493bf728f64d08590c5", + "ledger_hash": "ee4004f819b9420ff4549a5c007391cb9e5208117ed79b88e4b6fc1b667e87cd", + "txlist_hash": "2e953290e92e204bcc2b55042df0095f81369fbb3405779dfccc908800f9e349", + "messages_hash": "addd40a4eba6de83f9d9ff3fea5fec4e83be1d4cbe9d61a09a69f9455bb71a63", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", "difficulty": 545259519, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", "difficulty": 545259519, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 694, @@ -154,25 +154,25 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 693, @@ -181,44 +181,44 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" } ], "next_cursor": 691, @@ -256,26 +256,26 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 690, @@ -285,22 +285,22 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" }, { "event_index": 687, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835" + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547" } ], "next_cursor": null, @@ -335,22 +335,22 @@ "result": [ { "block_index": 210, - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, @@ -360,18 +360,18 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -408,18 +408,18 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "object_id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "block_index": 210, "confirmed": true, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 59, - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "offer_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "status": "valid", "confirmed": true, - "block_time": 1730815238 + "block_time": 1730900775 } ], "next_cursor": null, @@ -481,21 +481,21 @@ "result": [ { "tx_index": 62, - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "block_index": 196, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730815251, + "block_time": 1730900786, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000001" } @@ -507,14 +507,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,23 +552,23 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,13 +631,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -650,16 +650,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -790,11 +790,11 @@ "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -816,18 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3261e18b3eae2ddf8bdea39bd034853a7cbe9bbc4fdbd311e0c5845dc89e3164", + "hash": "87d7cdb2ac8946fa97ded0c25bc6e558ba8e5d0087e7aad5f81db4560edeba39", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "10530046ff47c153d5c02c8d93c82b840f2620bb9df85334c595f2a3a8f13ddb", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "52b9311552dddf187d88d31b5c6efb0f6390f90b1192607c4028b21eefe27d43", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "f7fd7a10bca5545dbaec73c3be9ed0cbde96129e7cc9951457ba3fdf01d4af9e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "a0b03be76ed9459150f613a772ceeddc3bcc1492103f1c108172d3a49662b433", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "b97cdbdd7db82174f01ed608c3979db6a4200c107dcc9983931861988e0d1529", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,69 +871,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a338802082addd0ade1c547e48654fe75eaf429a87839ca41eafed5cf343c4092d7821bc14c42f838aad0eb8cf0dc41cbb7b1a641" + "value": 1000, + "script_pub_key": "512103324818c392c8e8e54c4428df64ca3dbf8a6ef0b067dfb62994784370486f1c0a2103e0890bdecab850d31f0871431f3776ef43bbe9d60efe43d58d5ea08a11ea089c2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae" + }, + { + "value": 1000, + "script_pub_key": "512102324818c392c8e8e54c84906ce0fbce1747ec272b9c51a2e47338d6b2d9bdc24b2103a91a8bb325f9cf7a9a968437d82e4dde7fb3078f4ff26e3850c1ec3d47e65de32102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae" }, { - "value": 4999990000, - "script_pub_key": "00147f6fe9665382ab7ab49540720d8ea14679793823" + "value": 1000, + "script_pub_key": "512103134818c392c8e8e54c4728dce40862a6976cc2a08252b6cf18165eabd979162f2102a91a8bb325f9cf508f23118264e44dde7fb3078f4ff8eb5535ac830ec7e65d582102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014ac548681482bc1c036de9247e1131713f3cecada" } ], "vtxinwit": [ - "3044022013b664bb39a587ae8e8d55da46915fdc453437c1c3d8225433ea8d3a3e5a7f3a02204fe2e9d7af41d973ae853052d4d7ac8140dcf85005e2f266a75288a2c6fa01f901", - "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" + "304402207ed2876c6a71af20421978104ca63c8e10cfdee48c573bc4488d965fff8b259d0220266420b9a751a5a86d3402a5f52dd4657b1108c632fc9834218f798429d0959101", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "304402204b2ba25781b69bb0fef06faf24c1a1d13cf5e2fb84add09e2090e30213487493022005d3f480baa22750c136ae55732f513272db3eda58381f8b150bf6d137823bd601", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "304402202200855e97cd85c9a70e64861c836449985bdd9bbf057f92ed9bee80f32d1b9202206f23058dbcbe5153d00d751c95d81248560e22d78f29b20727efa786cf2b867e01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "3044022027acaf3d6fa65435d8b3c05404abe57ad6127f77e7fea5a8530f83b20f5325d10220256beb949c5f42818d5a2b5abe6805f18dfa2bf0a8abe4169c9d87d4c28b72ee01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "304402204e1bba3ad5de094cd21c5dfa8fd2fe7d3b5dc8881bc61b7e7a4f46e9338574c2022021b1ef69e1a68d701f85e31fd3204b4e0aabc3ad1299c09aebd4eff1d2091fea01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4", + "30440220030bb9735bf0db4cca72a6dd7702a09cb4e5d62b11c150261b6a7f9d0408e7e00220332a68a97e9c016c435bcc1907e0cb66a3dbb4ac83b4014ee0a9e56f049ad6cd01", + "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4" ], "lock_time": 0, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx_id": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93" + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", + "tx_id": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04" }, "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": "MPMASSET", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "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": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "de614bb8fd765aa1e740024e8db7f3be6dce211f2e01b18525d573efbceb86a7", + "hash": "6a10aa5bb8c581675e5553ca009ea8250e768f39d222b141631d38c1b1e77a93", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e90c76a9673d624468a6c4435f080f320b3428ac2189aeec1ea0100851be836f1c342fa2b141e23a1b307844f0395" + "script_pub_key": "6a2e00e407aea1c8119908d1993e5f7c090a5af55788eb3c3a8875db8f391995957be4c93bd0b024c11431941664acf0" }, { "value": 4999970000, - "script_pub_key": "00144a30b7f971594bc6d7dffb1ef3a31b6c60641695" + "script_pub_key": "0014b8f22384d60c55c3b8b004f32cb1d080e58b1e03" } ], "vtxinwit": [ - "3044022024718b8861d1f4af30576aa6fe16d52dd56f58a4c9ce9d609c210dc87bf2089f02203e36d8e85b01a4d909ecbbbd727630045437bdd44f7b949b71ac96a056f1c7a301", - "0342812158a90261b26d3f9549abf087fa115869e7e2156559c056675af21ca08a" + "3044022028f2472f78403a1fb76dfc5e0d06dfe85928f5f071bc2e79674f0f8bd9f725a402203238e7f9e29d4082f6f1cc0eb65d3744f798328f653f0fc589ab8f8e670fc48f01", + "02dbd464e1c397bf575500343e80a62646d0cdb65e6215c319a8f4312dcbfbba9a" ], "lock_time": 0, - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", - "tx_id": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58" + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", + "tx_id": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,14 +988,14 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } @@ -956,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", - "block_time": 1730815328, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", + "block_time": 1730900878, + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 694, @@ -1024,27 +1083,27 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 693, @@ -1053,48 +1112,48 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 691, @@ -1102,26 +1161,26 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "msg_index": 1, "quantity": 1500000000, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", "status": "valid", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 690, @@ -1134,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 694, @@ -1148,27 +1207,27 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 693, @@ -1177,48 +1236,48 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 691, @@ -1226,26 +1285,26 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "msg_index": 1, "quantity": 1500000000, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", "status": "valid", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 690, @@ -1255,10 +1314,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,23 +1325,23 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1310,27 +1369,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,13 +1404,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -1366,28 +1425,28 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 690, @@ -1397,24 +1456,24 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 687, @@ -1424,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": null, @@ -1453,28 +1512,28 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 690, @@ -1484,24 +1543,24 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 687, @@ -1511,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": null, @@ -1541,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1562,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1583,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1604,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1625,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1646,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1670,17 +1729,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1694,11 +1753,11 @@ "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -1716,17 +1775,17 @@ }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_hash": "3bfb5370a9a431a8ed70347b700c8fa804fc511ad42ba6ece3da215f9168ac34", - "block_time": 1730815312, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "block_hash": "169e39673daf18fc224a3078da8dc7ca4f236eb5d4536ed2cb321231dc48849f", + "block_time": 1730900865, + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ac548681482bc1c036de9247e1131713f3cecada806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732:0", + "utxos_info": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1793,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1749,16 +1808,16 @@ }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -1768,17 +1827,17 @@ }, { "tx_index": 74, - "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "tx_hash": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "block_index": 207, - "block_hash": "6f5e65a618e9ef6ba973a86f756d74d4165571bbf065a12bf5c07dce6ed61812", - "block_time": 1730815307, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "block_hash": "10c03099ba1f61bfb17cd7625a99a1857ad45e0e0a03bc8d8cd044e12ed3bfb5", + "block_time": 1730900861, + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807f6fe9665382ab7ab49540720d8ea1467979382380d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c60641695c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ac548681482bc1c036de9247e1131713f3cecada806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e03c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9:0", + "utxos_info": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1845,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1801,16 +1860,16 @@ }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -1820,17 +1879,17 @@ }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", - "block_time": 1730815303, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", + "block_time": 1730900857, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", + "utxos_info": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1897,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1853,16 +1912,16 @@ }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -1872,17 +1931,17 @@ }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", - "block_time": 1730815299, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "510cdd820aa3171cb24fc0998e6509852ce385b5f4ef12a67bc2dd2fa0e6e09d", + "block_time": 1730900842, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", + "utxos_info": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1949,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -1905,16 +1964,16 @@ }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -1938,20 +1997,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 54, - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx1_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -1960,19 +2019,19 @@ "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 675, @@ -1991,17 +2050,17 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "open", - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -2019,36 +2078,36 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 674, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "block_index": 209, - "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "event": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "quantity": 1000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 673, @@ -2060,26 +2119,26 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx0_block_index": 194, "tx0_expiration": 21, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "tx0_index": 60, - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx1_index": 54, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -2092,23 +2151,23 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 670, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "block_time": 1730815315 + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "block_time": 1730900869 }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 668, @@ -2117,115 +2176,115 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "quantity": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "block_index": 210, - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730815333.0180326, + "block_time": 1730900881.524786, "btc_amount": 0, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "destination": "", "fee": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, - "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", + "utxos_info": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -2234,7 +2293,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2242,14 +2301,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2257,14 +2316,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2272,29 +2331,29 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "826.49944000" }, { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2302,7 +2361,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2315,17 +2374,17 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "826.49944000" } @@ -2337,104 +2396,104 @@ "result": [ { "block_index": 209, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "event": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00003000" }, { "block_index": 208, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "event": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 207, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "event": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 207, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "event": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00005000" }, { "block_index": 203, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "event": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2448,62 +2507,62 @@ "result": [ { "block_index": 209, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "event": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, { "block_index": 206, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "event": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 206, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "event": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2511,41 +2570,41 @@ }, { "block_index": 205, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "event": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 205, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "event": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2564,9 +2623,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", + "tx_hash": "c7b0a9b6bee7d309ab6dc5ae4fc986e4fcd7c1183231e459fb6648d8c2fb8231", "block_index": 137, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2574,7 +2633,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814996, + "block_time": 1730900521, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2585,14 +2644,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "7cc5672c094deda5d41dc47ebec6556934227559b084cfdc84dde8ee8a3778b6", + "tx_hash": "fda16f7d49638086a55f4a846e9be0f954408333997f06c37378c33469332528", "block_index": 112, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730814893, + "block_time": 1730900417, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2604,10 +2663,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2615,23 +2674,23 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2639,11 +2698,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2652,10 +2711,10 @@ }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2663,11 +2722,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2676,10 +2735,10 @@ }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2687,23 +2746,23 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2711,11 +2770,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2730,10 +2789,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", + "tx_hash": "002fdac93f23ce31b8aae7ee71dca85a51e70769a27dde00fc63e4459f89f289", "block_index": 151, - "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", - "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", + "source": "d3557e53fddabc7976909a78cd1aaf0a217b640e4b1e696490f9fe3659e18403:0", + "destination": "bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2741,11 +2800,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815061, + "block_time": 1730900596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2760,10 +2819,10 @@ "result": [ { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2771,11 +2830,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2784,10 +2843,10 @@ }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2795,11 +2854,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2808,10 +2867,10 @@ }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2819,11 +2878,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2832,10 +2891,10 @@ }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2843,11 +2902,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2856,10 +2915,10 @@ }, { "tx_index": 71, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2867,11 +2926,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815285, + "block_time": 1730900829, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2891,9 +2950,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2902,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2913,13 +2972,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -2930,9 +2989,9 @@ }, { "tx_index": 64, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2941,7 +3000,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2952,11 +3011,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -2974,9 +3033,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2985,7 +3044,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2996,13 +3055,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -3017,19 +3076,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", + "tx_hash": "1b7d30e4bf5db9ccccf1988c2cfed43d70ed988d65bc6fa6e5faa946e7dc2f22", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "dispenser_tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3037,7 +3096,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3052,11 +3111,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -3066,19 +3125,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3086,7 +3145,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3101,13 +3160,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -3115,19 +3174,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3135,7 +3194,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3150,13 +3209,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -3170,19 +3229,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", + "tx_hash": "1b7d30e4bf5db9ccccf1988c2cfed43d70ed988d65bc6fa6e5faa946e7dc2f22", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "dispenser_tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3190,7 +3249,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3205,11 +3264,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -3219,19 +3278,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3239,7 +3298,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3254,13 +3313,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -3268,19 +3327,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3288,7 +3347,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3303,13 +3362,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -3323,19 +3382,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3343,7 +3402,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3358,13 +3417,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -3372,19 +3431,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3392,7 +3451,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3407,13 +3466,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -3427,19 +3486,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3447,7 +3506,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3462,13 +3521,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -3476,19 +3535,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3496,7 +3555,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3511,13 +3570,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -3530,16 +3589,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -3550,14 +3609,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -3572,20 +3631,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", + "tx_hash": "8251160a2e10f586c7b1581c6439712e84d4669300bb9a5cb6204706b358a21d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -3600,20 +3659,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815111, + "block_time": 1730900637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", + "tx_hash": "96468e255a09d5e865bbb6bce5b82451123f4a2a88cb91dcac981a448af22352", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -3628,20 +3687,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730815107, + "block_time": 1730900634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", + "tx_hash": "047f91bd33430d27d88fe19c263b682a65061b4d5c2d276962f448eabb2d1dee", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -3656,20 +3715,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815104, + "block_time": 1730900630, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "945ce27ed72be9ebd17662ee389fa75a69875f250547ca10f6c4bd85e5ed8f8b", + "tx_hash": "c5bd9cbe4db32a81f335f6cab78eecea3c9c0fc658c680561bddccd92f8b5c99", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -3684,7 +3743,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815090, + "block_time": 1730900625, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3698,8 +3757,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3707,16 +3766,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -3724,16 +3783,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3741,16 +3800,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 40, @@ -3758,16 +3817,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730814988, - "last_issuance_block_time": 1730814993, + "first_issuance_block_time": 1730900513, + "last_issuance_block_time": 1730900518, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 19, @@ -3775,8 +3834,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730814962, - "last_issuance_block_time": 1730814984, + "first_issuance_block_time": 1730900487, + "last_issuance_block_time": 1730900509, "supply_normalized": "0.00000019" } ], @@ -3789,8 +3848,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3798,16 +3857,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -3815,16 +3874,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3832,16 +3891,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 40, @@ -3849,16 +3908,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730814988, - "last_issuance_block_time": 1730814993, + "first_issuance_block_time": 1730900513, + "last_issuance_block_time": 1730900518, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 19, @@ -3866,8 +3925,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730814962, - "last_issuance_block_time": 1730814984, + "first_issuance_block_time": 1730900487, + "last_issuance_block_time": 1730900509, "supply_normalized": "0.00000019" } ], @@ -3880,8 +3939,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3889,16 +3948,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -3906,16 +3965,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -3923,16 +3982,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 40, @@ -3940,16 +3999,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730814988, - "last_issuance_block_time": 1730814993, + "first_issuance_block_time": 1730900513, + "last_issuance_block_time": 1730900518, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 19, @@ -3957,8 +4016,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730814962, - "last_issuance_block_time": 1730814984, + "first_issuance_block_time": 1730900487, + "last_issuance_block_time": 1730900509, "supply_normalized": "0.00000019" } ], @@ -3969,17 +4028,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8", - "block_time": 1730815315, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270", + "block_time": 1730900869, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "utxos_info": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,11 +4052,11 @@ "fee_required": 0, "status": "open", "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4015,17 +4074,17 @@ }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "block_hash": "36f6ebda1c65674078342af8c1bc86fdb834f87308554026f4b2b5f396c30265", - "block_time": 1730815303, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "43ad0a9cb5038488a43debca7bd72109d227ed11b5a1bda79d4bc4a65053418c", + "block_time": 1730900857, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169540000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6:0", + "utxos_info": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4033,14 +4092,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4048,16 +4107,16 @@ }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -4067,17 +4126,17 @@ }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "block_hash": "317ff4c0675339a91421382534acc4b5698bc09a7b160b4f23a1945ba5448d70", - "block_time": 1730815299, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "510cdd820aa3171cb24fc0998e6509852ce385b5f4ef12a67bc2dd2fa0e6e09d", + "block_time": 1730900842, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d533872f3cd762df505e43deb7a9d2734007319d80d7abfc662a7755529bf07fdb8227c9a7b8ed9db4804a30b7f971594bc6d7dffb1ef3a31b6c6064169588746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380c2df191d023210e58d54cde74576a219160a4993806def419f83902b60c17bd33b313c08ee594106a880b8f22384d60c55c3b8b004f32cb1d080e58b1e0388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50:0", + "utxos_info": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4085,14 +4144,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4100,16 +4159,16 @@ }, { "asset": "XCP", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -4119,17 +4178,17 @@ }, { "tx_index": 71, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "block_hash": "0d1d4c85be3f416768380fb66d48e2de59fc107a9dbc4a5ef2e043ce7e0fdedf", - "block_time": 1730815285, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "49d5f3e6b5ea67cce3e690b6b4fd028de33dc8f6ea87b01c412ceb65c58f8048", + "block_time": 1730900829, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", + "data": "02000000178d82231300000000000003e880c2df191d023210e58d54cde74576a219160a4993", "supported": true, - "utxos_info": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba:1", + "utxos_info": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4137,12 +4196,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4153,17 +4212,17 @@ }, { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_hash": "0452ab098a169e2a20d1cfc65d6e096911592556fbd09c39d80a8366d714e40c", - "block_time": 1730815282, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "block_hash": "703bcbabc965b996c228b011b90c38098156977484dc27e3c33635a84a398458", + "block_time": 1730900825, + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc:1", + "utxos_info": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4194,29 +4253,29 @@ "result": [ { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" @@ -4229,9 +4288,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4248,13 +4307,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4276,9 +4335,9 @@ }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4295,13 +4354,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4323,9 +4382,9 @@ }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4342,13 +4401,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4370,9 +4429,9 @@ }, { "tx_index": 60, - "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4389,13 +4448,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4417,9 +4476,9 @@ }, { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4436,13 +4495,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -4469,10 +4528,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4497,7 +4556,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4506,10 +4565,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4534,7 +4593,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730814988, + "block_time": 1730900513, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4546,10 +4605,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4574,7 +4633,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730814962, + "block_time": 1730900487, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4586,10 +4645,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4614,7 +4673,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730814958, + "block_time": 1730900483, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4626,10 +4685,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4654,7 +4713,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4672,22 +4731,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4696,22 +4755,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", + "tx_hash": "63df57cbf4953b9c87d8b78c85e3bb25c90f157dd68dcca6aa7ecca96a7120ca", "tx_index": 21, "block_index": 134, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814984, + "block_time": 1730900509, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4720,22 +4779,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", + "tx_hash": "cbe53304ae4f7b21bcb2513d104690258c2bdb6a96e73d83bd3d8334ff93529c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814971, + "block_time": 1730900505, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4744,22 +4803,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", + "tx_hash": "589f32021120f9302bfd44f8566adadcd0d7a8d544060ba23b85aca2e880a8b4", "tx_index": 19, "block_index": 132, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814967, + "block_time": 1730900492, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4768,22 +4827,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ca0c585abf6677903f74e0c8408a3fae99a12236a94a5be695101c4d4361f3e5", + "tx_hash": "26d6c2d0cab047b8f6fcf91f61ba5be0866f9f4b586e1a2e4c34cf81459b708d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814945, + "block_time": 1730900472, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4792,22 +4851,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4822,22 +4881,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4854,26 +4913,26 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -4889,7 +4948,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4902,7 +4961,7 @@ "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "020000000001018017f02235867208f1c66833e1c43299eb94926bb2c8dfcd8e9b80e5c25ba83f000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a29032e1f027b2812512e7f9e409806f85f57f40343b92b7733cec2338eb75f812661dfd2d1f61d47cd616cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101d5617e46d4a59d46d36fcf4efdebf80740867cf27e3cc7924002855f3f27ff9400000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff0200000000000000002b6a296288c73b2e360b047fb42dc394da407ed55d89ad32a44459ce6131827ac0ae8fa70863197673acb8306cba052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4920,24 +4979,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "order_match_id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "data": "434e5452505254590b81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711defb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980891, "btc_fee": 18109, - "rawtransaction": "020000000001018a40f853ceb837a3fccf0064a9696352222c3c5fcc27415104441b7bcf60dbf3000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e8030000000000001600147f6fe9665382ab7ab49540720d8ea1467979382300000000000000004b6a49e22e8130265b6eb46363c3e3faed6c3c7f6f2022dd3fade405c416d278e5a9ee2914ce52696619dc95ef9cc95ce8358edabe9db89e734eb6efb606f330afd1a7f0e8771d4a5b2759995ba7052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101930dc7fcdb055f75a3518b40621af6394386cdb980ef3d60e8d412fc330b56c500000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff03e803000000000000160014ac548681482bc1c036de9247e1131713f3cecada00000000000000004b6a49acc9507ff541f2b0ea317df48a084ff2c63b16b7db3d006df9df05b2138bd750a16e14c0fdea4f4c10ddf761bc62d9ef8be01adac25f8777a427914d81db909cae90352596ff02212c5ba7052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "order_match_id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "order_match_id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "status": "valid" } } @@ -4946,7 +5005,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4957,28 +5016,28 @@ "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "0200000000010117b149307a2b0e5b12dbd3b350bc4926b7c457a490ca5b9a8ac227204532c824000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000" + "rawtransaction": "02000000000101db46b670c5366537ba3d25bf67be019753e7955b84ef84b2634c2633d7bdf4b800000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "offer_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "data": "434e54525052545946efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985772, "btc_fee": 14228, - "rawtransaction": "0200000000010139ece5a6daf4da1bb92ad80a9479a6a8878990cd5db85893dcf4cacbd546d302000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0200000000000000002b6a2902e55eb492edcd684d3f2eb19fb203f279586b207067f9f56f1f04bd565daabe8125e969c7077d79656cba052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101ba57e6dcfe5fd6e35c4e68352157acf79c85a2b85d34903c2502440ba8f983f200000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff0200000000000000002b6a29498026ced9a9cd70ee8946063ce22b4ff2940f68678e7e0925d5b534a1c0b4d743c6166f2dc1aaa7e16cba052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "offer_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "status": "valid" } } @@ -4987,17 +5046,17 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, @@ -5007,7 +5066,7 @@ "btc_out": 0, "btc_change": 4999986301, "btc_fee": 13699, - "rawtransaction": "02000000000101b2ef7e28271d1b8b49e907b7831834ee719e92d895f9cf497e7810e60a1fa985000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000226a2035ebadb3b7163716017bde9cbeb0ad270926e374140fa16965a835bb925b6c377dbc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "020000000001014ff10575ef00db4a3bd621b0b184b876945e1241921a7a3c1fa815bebc93a0ff00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000226a20edea90033d18ddceb738f9494d7fb762d4758423febd72422f34d0b1e6c812c57dbc052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -5023,7 +5082,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -5033,11 +5092,11 @@ "oracle_address": null, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00001000", "escrow_quantity_normalized": "0.00001000" @@ -5048,7 +5107,7 @@ "btc_out": 0, "btc_change": 4949920213, "btc_fee": 14287, - "rawtransaction": "020000000001013b833b4de8f0d14c0a3c54cac0a8fbe37f6c14a950b5e479e808f3412c1d551e010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25fffffffff0200000000000000002c6a2ab92d97d0e0c4293324fcd7b6d3199d2f287a6d0b3c9b66c212f22d2b2ad4d39a2e2f3f5e31cdbd058c2fd5c90927010000001600141dcbb78d3a105048e1444b538ba2a4d16a3ee25f02000000000000", + "rawtransaction": "020000000001017a1fc004883231c52e04e6d3a2e991233d3c8284e1a7f5605334fbd5bab1fd1601000000160014030911d5fdc714881fa8e952b498af6d61f5ac51ffffffff0200000000000000002c6a2a2f5d0b294a11444f5797033cf9b3852d3f8367344fb787ae88c9d1df0702dd1642e9aeb2eeaa9b737167d5c9092701000000160014030911d5fdc714881fa8e952b498af6d61f5ac5102000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -5070,7 +5129,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5078,16 +5137,16 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "0.00000001" }, @@ -5097,7 +5156,7 @@ "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101cf363810cc6cf64ad6a0a195169a58ce97c56ee9b8a4156167de5c6ffc242349000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a217d9f92a51aaaa4c829a4428ce8e44c744dc359445c322a576f68a725075dcf6a7142bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "0200000000010118aca66593ec2219c453c3849871c53b55711c736416b5f534c40707fb487c5000000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000236a2196dfe092c77d183087ba1628be778cbc2742c81a4fcc93e84b8fe103a81213405f42bc052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5114,10 +5173,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "transfer_destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "lock": false, "reset": false, @@ -5131,7 +5190,7 @@ "btc_out": 546, "btc_change": 4999983697, "btc_fee": 15757, - "rawtransaction": "02000000000101b121b83c5e9404f1e58301f78c2b043ce2d84df8a5ad0a394fe00413ef537ea6000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff0322020000000000001600147f6fe9665382ab7ab49540720d8ea146797938230000000000000000236a21cd226da658352e1dd07e24c038488f30c729adb834b84b660a6a36d42af75f59fc51b2052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "0200000000010172f1071973567309030ea5f066c9bf140d033692b7509deee4b10c4baa6febe800000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff032202000000000000160014ac548681482bc1c036de9247e1131713f3cecada0000000000000000236a21888d7ca85afa3a95deafb239d5257da2862b1b8ced1c5bff4fff1dd89f0388218451b2052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5156,16 +5215,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", 1 ], [ "MPMASSET", - "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", 2 ] ], @@ -5174,26 +5233,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807f6fe9665382ab7ab49540720d8ea1467979382380d533872f3cd762df505e43deb7a9d2734007319d40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280ac548681482bc1c036de9247e1131713f3cecada80c2df191d023210e58d54cde74576a219160a499340000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945318, "btc_fee": 52682, - "rawtransaction": "020000000001045ee860f841c0569f86d19b01ec6711472db5496f858af9132f2eca62ab8ca735000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffee18d5f5ae84c0399fbf792bdbf7ab7fdc510c068c6a40be76f397bf19e7de38000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff2b797c44b8694e7e217a4a8a3accda1b1cb29607a6cd6316b54daacca2a334d4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffea1a5ee27dc8f066819c331881e974659c7334530b016555be43242120b26eb4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff03e80300000000000069512102a04e8f8f6d8383f439d007ef5175c4388cc7fddb7705c0849a41a81e843377e72102680630e59982444e271abadf464e6e1619fa42f46057ce84f4dcfe0adbac6bbe21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee80300000000000069512102bf4e8f8f6d8383f4390307edd10aabd1eab07f700db155c4e84826bfc24a0e0a21025025b130aa056b72f078658f180db0a1b02831b4676653c4f4dcfbe9bb24af5f21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753ae66f216a8040000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000000000000", + "rawtransaction": "02000000000104d65bcc8792c120d77e9a5201d8d2dec413f5d2cbc4eede594acda564f39627bb00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff17f769b391ac1007b8e14ff3012a05cdf7e3a50646ace149f83fc5a99f9bbc1a00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff51bf37e20488a1aebc5c4359f1e6823e11bf0add1cf1cc2128710c5f953976ec00000000160014ac548681482bc1c036de9247e1131713f3cecadafffffffffc8df3047e642a3d3980cdb8da12502561c14c6b98a09a5618d0ac8a6914036500000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff03e80300000000000069512102698df6d31404b2761a75efbd552cec2c10093d0043b215f6e89c6b13ad570e512103d52a2b87ae8349b933de73f6d748722406b62e2ddb71ce07d64e1339c9b9e5722102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512102768df6d31404b2761aa6efbfd580b8aa916516c18384cb64af797804bea4c08f21031ff0aa45719a54bb01ce967b838595617014373bd1385d47d64e16daa931217b2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453ae66f216a804000000160014ac548681482bc1c036de9247e1131713f3cecada02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5205,7 +5264,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5214,16 +5273,16 @@ "fee_required": 100, "skip_validation": false, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5237,7 +5296,7 @@ "btc_out": 0, "btc_change": 4999985184, "btc_fee": 14816, - "rawtransaction": "0200000000010138c342bf395cdf8c26dabf53339062b01c2eb0abea0c0f7a638ff4cc6eaafb4e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000356a33fba79fc250bafb2e30508455e8e114f0b29f929835841b52b97fac7e1d436d1090555e14c254873c72e16a527613fe16a4c0f420b8052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101d80f696e9a7e6de1bc787dfcda446034a0e665919ee0a746efc5f137b85d4ad800000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000356a33585eda4f273ca3c9c1087667c458fcf792c479477eab9a654422dcdb6bfd573bd35d006142c80590481767a8bf0175fe28ec8120b8052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5259,8 +5318,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5268,28 +5327,28 @@ "use_enhanced_send": true, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d533872f3cd762df505e43deb7a9d2734007319d", + "data": "434e54525052545902000000000000000100000000000003e880c2df191d023210e58d54cde74576a219160a4993", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985478, "btc_fee": 14522, - "rawtransaction": "0200000000010147bdd6b0c16e67e6a092697cfe860efefbe5e581c3620e1cb94d46c72f9c0d7e000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000306a2ede34b251d660efae25d706a8b88651654fcd92f3202d50a9989f5f5b866aeee9302e52f4956683764e468ce8f27346b9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101463bf9f4eaa34614708a66e1e17cd53d7fb70729194c67b121b7a61530254df000000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000306a2e28da51ceddf2103ca36461a34558bd299a7c9b669c6f7cea70dc3ee7416e1893d05c3531ae9f52fdf9487054481646b9052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "quantity_normalized": "0.00001000" } @@ -5299,24 +5358,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d533872f3cd762df505e43deb7a9d2734007319d07ffff", + "data": "434e5452505254590480c2df191d023210e58d54cde74576a219160a499307ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101b8c28fb80188921a61ab4a8fea0607c10c7835291682b5e9489d8d3dd14c0344000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000236a214b9f209081dbbe9b89886d4957e05c88aa2332fa5f145b7c022461d03f311fb06742bc052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101e820c0ad0e3faf6497c066d1c838075e988b0563b899327457aeada167cc7be900000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000236a21805a0b040e734216b0a5438e72791428a4c536a00d030b07d09a572ad09673cd4e42bc052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "flags": 7, "memo": "ffff" } @@ -5326,8 +5385,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "quantity": 1000, "skip_validation": false }, @@ -5337,7 +5396,7 @@ "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "0200000000010132673017a967b2e1623fd09aa62e4f037b7eb1ebeedb10949065659f8732619003000000160014d533872f3cd762df505e43deb7a9d2734007319dffffffff03e8030000000000001600144a30b7f971594bc6d7dffb1ef3a31b6c6064169500000000000000000c6a0add3a4bcf7b1a9ea1b1457325082701000000160014d533872f3cd762df505e43deb7a9d2734007319d02000000000000", + "rawtransaction": "02000000000101397f4156c55298b6b6a91babfb845667aee8bc7de79feeb8d2b3fa0e2bcf794203000000160014c2df191d023210e58d54cde74576a219160a4993ffffffff03e803000000000000160014b8f22384d60c55c3b8b004f32cb1d080e58b1e0300000000000000000c6a0a0884065c8041c43e180c7325082701000000160014c2df191d023210e58d54cde74576a219160a499302000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5350,7 +5409,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5382,7 +5441,7 @@ "btc_out": 0, "btc_change": 4999985419, "btc_fee": 14581, - "rawtransaction": "02000000000101f4cd4fb47d5b0174369f70d6115e99b7643ed759c5c659348d6b5fd362c8c4ca000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000316a2f075edb58bf3db1ab50a9c6bb65a6a85960683ae765e0df2cf477be4d5beca548f282f766804b86d79bf87e278f1b7a0bb9052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101d055ad22ca012b79a7b21f28c5101c0b484e50c860489e5b24d878e10904308a00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000316a2f45fff5afa31ddae4de001178dbf6561175449fcd1c44031bcae733a0c8e0ab5998b675e952da51340912869bf294550bb9052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5417,14 +5476,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5436,7 +5495,7 @@ "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "020000000001011923f19e1932dacb8dcfd9167e7b5e8cad538ed0353dbd7b0ab7d702c0895a5b000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff020000000000000000166a144c2fabbba2484964b34b5a693b6d1ad64605217f3ebf052a010000001600147f6fe9665382ab7ab49540720d8ea1467979382302000000000000", + "rawtransaction": "02000000000101ca655859d2252c21a86ac1e41cd236d0605eb03fd58dd45dd6aa97f425ef20f100000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff020000000000000000166a141623b5fe1027835dde092f141613d3f6b636c4463ebf052a01000000160014ac548681482bc1c036de9247e1131713f3cecada02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5451,27 +5510,27 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93:1", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04:3", "asset": "XCP", "quantity": 1000, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c636437353937303835633463336333303233396135623031336465363233366537366533653438373137653465313337646236656536666137636338646639333a317c5843507c31303030", + "data": "434e5452505254596462637274317134333267647132673930717571646b376a6672377a7963687a306575616a6b36746d716173397c633161623463393137663537343165613936343164343239396265333437373036343437656263303539343165366130663165333665626164333036616130343a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918271, "btc_fee": 78729, - "rawtransaction": "02000000000106db945b92cfb2eca1800dded27810d809fc4a988ffb62acd10e413458d3c56737000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffde697e1109acfb31633a911a588b2000ff5839f3b4f41ea6578910f0c959f94d000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffd4922256cf5cc82dafdc5fc9e6cb053c9a30bee05d974526a60e688436de0394000000001600147f6fe9665382ab7ab49540720d8ea14679793823fffffffff7201a9db60784431f9a353aad7fa7ea8298d26c3b020b7948c423c252d132a9000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffffb647d0bf7b905b7e54e3bd58defd71de535aa86456fa6285c8131cac8256dab8000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff54f6f9a87dab4870666e9d5d1ba0a9d3ed0c62a981be56a74dfbc6cc06a358c4000000001600147f6fe9665382ab7ab49540720d8ea14679793823ffffffff04e803000000000000695121030817c07da58a3f44629992fe360746cc3c84f9d75cc0ecdcb262f504594be42f2103df65c402c74eeb9545ca5a2d77f15c42fc7e6c38b51b2858bba562f5386f768221027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121030817c07da58a3f4462c5c5fe701044de3fd5a3d30fc4b3d0f161f2080819af612103d834d1508046aac40195086928fe1f57bf23626ab2572641eea734f7623b7e0c21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aee803000000000000695121022217c07da58a3f44629996a4774946c154a6c19c0795b682c150c16c6d2f9da52103eb02b467b62399a135ad3f581f9b2b328e10550ed0614324d8c155c00158466b21027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e6122753aebf6c22fc060000001600147f6fe9665382ab7ab49540720d8ea1467979382302000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106328283aac99f8382a6f5e40c2ccf28a3926db07250648ff4a4b2c0a333f0ae8400000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff7384d6f91b6b0eaeaf2cc5de73373d94e3120e1c65ebec3b3e14ff1c7ea1cb6e00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff5fcaafb0edf9f61c84047c938ec7f2348550987874e5e3547757d7685073a1dd00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff5ba3e055d0b2cb52edc8855c236f2a640040dc008df38d606711b2dcc0c7982c00000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffffddb9ca9f8a179fd8bfd06aa0e6dace54cb866a3f9daa5e3dc64f4cc0afde726100000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffffe45ddcf9b48c602a24419fad2094d1361c5d5b10ebf34eafe6479db71d2de6c600000000160014ac548681482bc1c036de9247e1131713f3cecadaffffffff04e80300000000000069512102d739612aa9727ba04ae3bdf64ccf6e3a3a392ab9b4da9ea982fe0cd868ebe3ba2103c542e9e172646bc80e038efdd40a7100543c311909faff908df4100360d410962102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512103d739612aa9727ba04ab6e8f30b8c6b7a6b6b21e8e49ac8fa89f744cf7cbcbcbe2102c51fbfa5712a25ce041a8ead985f2a0e54296c0e59ecf5da8ba7100567871fbc2102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aee80300000000000069512102fd39612aa9727ba04ae6bea50a816c37564948a2e19b9cfebbce7dad198f88432102f2288f93451e12ab6679be98a16b1b6b62485c686889c6eceec5716154b729062102200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec453aebf6c22fc06000000160014ac548681482bc1c036de9247e1131713f3cecada02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5484,27 +5543,27 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "skip_validation": false, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964326130633638623263323639346433653764666334306336636239333631653835636534343964613664366633343238663938636636383836343062633833353a307c626372743171306168376a656a6e7332346834647934677065716d723470676575686a7770726e3936657a6b7c5843507c31303030", + "data": "434e54525052545964363633323531323339393632363433663031366234353963366665303934333766643236366262363135653439623936313662396361353437633530343534373a307c62637274317134333267647132673930717571646b376a6672377a7963687a306575616a6b36746d716173397c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030198, "btc_fee": 46802, - "rawtransaction": "02000000000103a21bc50f5cdd8b65aab1bad1f613bfff5b753d39e679f0fc363d632bdcd257b5010000001600141e3b253faedc160b8e01feea12afc01591194e93fffffffff09f234b4df5e2c9e152a8c34a34ead74e21d3ba11df52df88b7fe2eecb9d189000000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff6d8be49447adf2412d1ab0ee7159f4eaaaf04b6f065aecbfd3ce3a76d7793002010000001600141e3b253faedc160b8e01feea12afc01591194e93ffffffff04e80300000000000069512103a0082e44e6e7afb58e468b1d708015939b5ac17c3ff1c3964812460df6fc1184210254ba92e43dfebb13e8caea9174b38b0525ff8d8fc35d9dd3f35d49a1acc1d9352102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee80300000000000069512102a0082e44e6e7afb58e448f4478d5179b9b0b9a7d3cf2c78e1914031da1ee1504210305b193ed3aade656eb9bba9073af8b566cfe9dd4d55f8b87a21a19ade289c89f2102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53aee803000000000000695121028a082e44e6e7afb58e4c804a259948d7a12bf23238f8c7c27b777169909f2510210364d9a4875fc78825d9afd2a417d6bf311c9becb9a76bfbe0c76f71c795f9bab42102034cace7d5c422748ce1c198afbc9da36b577ce5d921f8dd92ff1ca63991b77b53ae76770b27010000001600141e3b253faedc160b8e01feea12afc01591194e9302000002000002000000000000", + "rawtransaction": "0200000000010359e56caaa042fec5eabbd39cc8d5f2cfd20895e5912ed834a232772be5adb5bb01000000160014da8b86c979d7e5c1a329404a33455e7621f355dcffffffff7f9cf311bdf044b7f8a00b3d5ecc1aba73841cb5840c0602ccdabb5b837ddbf600000000160014da8b86c979d7e5c1a329404a33455e7621f355dcffffffff81b479d373890e3cf17030a847e789b5a4d6d7e4a889b905973ceb079c07868b01000000160014da8b86c979d7e5c1a329404a33455e7621f355dcffffffff04e8030000000000006951210287d83d959001cc4540cbe1c6060e87b0b2c89aeaadb530e0bbb4756a8e8008952103901ea790028c280eba95db65c5d90cd7a31f8f2c12d621e59e236c583521fcd021020df5a4ec59c64560bb56dc6dca7c65cd5c4a7f7a4e6ae74f11bb607d2f3f3a4f53aee8030000000000006951210287d83d959001cc4540ccb6c5010bd1b4b0cf96e7acbd36a8eab1372f8993082c21029615a3c215db7f0ebed79972c5800d8ba70f8e675ed07da6cc7f2f086928f3fa21020df5a4ec59c64560bb56dc6dca7c65cd5c4a7f7a4e6ae74f11bb607d2f3f3a4f53aee80300000000000069512102add83d959001cc4540dbba81544f8bfdd8b8f3afaab736e488d2455bb8e23cde2103a527c4a664e918378ea6ec03a1eb3ae1c17db91d27b315dcfc1a5a690343c50521020df5a4ec59c64560bb56dc6dca7c65cd5c4a7f7a4e6ae74f11bb607d2f3f3a4f53ae76770b2701000000160014da8b86c979d7e5c1a329404a33455e7621f355dc02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5520,8 +5579,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -5529,16 +5588,16 @@ "first_issuance_block_index": 203, "last_issuance_block_index": 203, "confirmed": true, - "first_issuance_block_time": 1730815282, - "last_issuance_block_time": 1730815282, + "first_issuance_block_time": 1730900825, + "last_issuance_block_time": 1730900825, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", - "owner": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "issuer": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", + "owner": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "divisible": true, "locked": false, "supply": 100000000000, @@ -5546,16 +5605,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1730815264, - "last_issuance_block_time": 1730815264, + "first_issuance_block_time": 1730900801, + "last_issuance_block_time": 1730900801, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -5563,16 +5622,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730815090, - "last_issuance_block_time": 1730815107, + "first_issuance_block_time": 1730900625, + "last_issuance_block_time": 1730900634, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "owner": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "issuer": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "owner": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "divisible": true, "locked": false, "supply": 100000000000, @@ -5580,16 +5639,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730815086, - "last_issuance_block_time": 1730815086, + "first_issuance_block_time": 1730900621, + "last_issuance_block_time": 1730900621, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 100000000000, @@ -5597,8 +5656,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730815048, - "last_issuance_block_time": 1730815048, + "first_issuance_block_time": 1730900583, + "last_issuance_block_time": 1730900583, "supply_normalized": "1000.00000000" } ], @@ -5610,8 +5669,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "owner": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "owner": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false, "supply": 10000000000, @@ -5619,15 +5678,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730814927, - "last_issuance_block_time": 1730814938, + "first_issuance_block_time": 1730900454, + "last_issuance_block_time": 1730900466, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5635,14 +5694,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5650,7 +5709,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -5663,17 +5722,17 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 82649944196, "utxo": null, "utxo_address": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "826.49944000" } @@ -5685,9 +5744,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5704,13 +5763,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5732,9 +5791,9 @@ }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5751,13 +5810,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5779,9 +5838,9 @@ }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5798,13 +5857,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5826,9 +5885,9 @@ }, { "tx_index": 60, - "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5845,13 +5904,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5873,9 +5932,9 @@ }, { "tx_index": 76, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5892,13 +5951,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -5925,13 +5984,13 @@ "/v2/assets//matches": { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5945,13 +6004,13 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -5965,13 +6024,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 52, - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5985,13 +6044,13 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -6005,13 +6064,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "id": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5_b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", "tx0_index": 49, - "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 50, - "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6025,13 +6084,13 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -6045,13 +6104,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6065,13 +6124,13 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -6085,13 +6144,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -6105,7 +6164,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6114,11 +6173,11 @@ "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", @@ -6132,20 +6191,20 @@ "result": [ { "block_index": 195, - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "event": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6153,20 +6212,20 @@ }, { "block_index": 125, - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", + "event": "179010f31aad78ecbb3480c724113178302665e7a52ca5155c5db8ff32e811b6", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6174,20 +6233,20 @@ }, { "block_index": 124, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "event": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6195,20 +6254,20 @@ }, { "block_index": 124, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "event": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6220,16 +6279,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "event": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6247,102 +6306,102 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, { "block_index": 209, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "event": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00001000" }, { "block_index": 208, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "event": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 207, - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "event": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, { "block_index": 206, - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "event": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" } @@ -6359,14 +6418,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", + "tx_hash": "179010f31aad78ecbb3480c724113178302665e7a52ca5155c5db8ff32e811b6", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6381,20 +6440,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "tx_hash": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6409,20 +6468,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6437,20 +6496,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -6465,7 +6524,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730814927, + "block_time": 1730900454, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6477,10 +6536,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6488,23 +6547,23 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6512,23 +6571,23 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 74, - "tx_hash": "5a4c185555bcf4679b272ed23b9c027c5c70ff3985ab7bd143102c7cddc9d2d9", + "tx_hash": "1457608efd79767bf63ee20242ed96303c431ca20ba2e5332f9e6933b67f3e73", "block_index": 207, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6536,23 +6595,23 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 73, - "tx_hash": "fb792c27e7f41994396777fafc539eed9a4b6a8b69f819322c3c191d9e1821a6", + "tx_hash": "c1ab4c917f5741ea9641d4299be347706447ebc05941e6a0f1e36ebad306aa04", "block_index": 206, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6560,23 +6619,23 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815303, + "block_time": 1730900857, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 72, - "tx_hash": "42cedad237ae927759eb5901d419ad78191605880d9707bd7e96ebb7fa435b50", + "tx_hash": "69dfc69316105beb17b2a3420de1ff00ea564ddcc4d5f4ac30170e3adcbfab41", "block_index": 205, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6584,13 +6643,13 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815299, + "block_time": 1730900842, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" @@ -6603,9 +6662,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6614,7 +6673,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6625,13 +6684,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -6642,9 +6701,9 @@ }, { "tx_index": 29, - "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", + "tx_hash": "41d8a373d332c04da51737221ec401f66d183c7de06fa298a3a3b8135235b246", "block_index": 142, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6653,7 +6712,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "origin": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6664,13 +6723,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815023, + "block_time": 1730900550, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", @@ -6681,9 +6740,9 @@ }, { "tx_index": 30, - "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", + "tx_hash": "0e3006e756353602d5a3f3999734c449dbbff728c7572db3dcd3ba26395f5dd0", "block_index": 150, - "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", + "source": "mfanX2LPYr7FZamgGboJwc9G1VFYpaQHjA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6691,10 +6750,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_hash": "837acca19584e732c6b24d1c0b23e49734c0935f16301ff1bd42cd2f3371602f", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -6703,13 +6762,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815057, + "block_time": 1730900592, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -6720,18 +6779,18 @@ }, { "tx_index": 33, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6742,13 +6801,13 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -6764,9 +6823,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6775,7 +6834,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6786,13 +6845,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -6815,7 +6874,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6823,7 +6882,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6832,7 +6891,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6840,7 +6899,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6849,7 +6908,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6857,7 +6916,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6866,7 +6925,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -6881,27 +6940,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6916,13 +6975,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -6930,27 +6989,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", + "tx_hash": "f6db7d835bbbdacc02060c84b51c8473ba1acc5e3d0ba0f8b744f0bd11f39c7f", "block_index": 147, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6965,13 +7024,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815044, + "block_time": 1730900579, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" @@ -6979,19 +7038,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6999,7 +7058,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7014,13 +7073,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -7028,19 +7087,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7048,7 +7107,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7063,13 +7122,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -7086,10 +7145,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7114,7 +7173,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7132,22 +7191,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "3685d3a8636f8d4b1ac23c1b5995e118891f0dbd2c4ecbd4c2aa52a5681ec929", + "tx_hash": "179010f31aad78ecbb3480c724113178302665e7a52ca5155c5db8ff32e811b6", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7156,22 +7215,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c", + "tx_hash": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367", "tx_index": 12, "block_index": 124, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814933, + "block_time": 1730900461, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7180,22 +7239,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7210,22 +7269,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "46341f342ee81a634ef010382e6c1b4e4db1e084b63fb86d8d0ede04b97361a8", + "tx_hash": "b4bbe0c5270d5b785c4b226a0e9c6534dd8842dbc81b0bf7dc98e916f54c5471", "tx_index": 11, "block_index": 123, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814930, + "block_time": 1730900457, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -7241,9 +7300,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7260,13 +7319,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7288,9 +7347,9 @@ }, { "tx_index": 52, - "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "block_index": 187, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7307,7 +7366,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7316,11 +7375,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00002000", "get_quantity_normalized": "0.00002000", @@ -7335,9 +7394,9 @@ }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7354,13 +7413,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7382,9 +7441,9 @@ }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7401,13 +7460,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7429,9 +7488,9 @@ }, { "tx_index": 60, - "tx_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", + "tx_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", "block_index": 209, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7448,13 +7507,13 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7481,9 +7540,9 @@ "/v2/orders/": { "result": { "tx_index": 54, - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "block_index": 210, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7500,7 +7559,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7509,11 +7568,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", @@ -7530,13 +7589,13 @@ "/v2/orders//matches": { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7550,13 +7609,13 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -7570,13 +7629,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -7590,7 +7649,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7599,24 +7658,24 @@ "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7630,13 +7689,13 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -7657,15 +7716,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "btc_amount": 2000, - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "status": "valid", "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "btc_amount_normalized": "0.00002000" } ], @@ -7676,9 +7735,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "tx_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "block_index": 187, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7696,7 +7755,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730815205, + "block_time": 1730900734, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7705,11 +7764,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00002000", "get_quantity_normalized": "0.00002000", @@ -7722,9 +7781,9 @@ }, { "tx_index": 54, - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "block_index": 210, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 1000, @@ -7742,7 +7801,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730815328, + "block_time": 1730900878, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7751,11 +7810,11 @@ "issuer": null }, "get_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00003000", "get_quantity_normalized": "0.00003000", @@ -7768,9 +7827,9 @@ }, { "tx_index": 49, - "tx_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", + "tx_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", "block_index": 184, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7788,13 +7847,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815126, + "block_time": 1730900661, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7814,9 +7873,9 @@ }, { "tx_index": 51, - "tx_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", + "tx_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", "block_index": 207, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7834,13 +7893,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815307, + "block_time": 1730900861, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7860,9 +7919,9 @@ }, { "tx_index": 58, - "tx_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", + "tx_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", "block_index": 193, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7880,13 +7939,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815238, + "block_time": 1730900775, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -7911,13 +7970,13 @@ "/v2/orders///matches": { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7934,13 +7993,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -7954,13 +8013,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 52, - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7977,13 +8036,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815205, + "block_time": 1730900734, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -7997,13 +8056,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8020,7 +8079,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8029,24 +8088,24 @@ "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, { - "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "id": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5_b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", "tx0_index": 49, - "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 50, - "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8063,13 +8122,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815126, + "block_time": 1730900661, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -8083,13 +8142,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8106,13 +8165,13 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -8132,13 +8191,13 @@ "/v2/order_matches": { "result": [ { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8152,13 +8211,13 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -8172,13 +8231,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", "tx0_index": 51, - "tx0_hash": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 52, - "tx1_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8192,13 +8251,13 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730815205, + "block_time": 1730900734, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -8212,13 +8271,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7_b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", + "id": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5_b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", "tx0_index": 49, - "tx0_hash": "92de3cb1d421b444381564cdd08329c67538de625090124c2617df48f290f0a7", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "bbc2daab596528378caa7797a9492c71ad8e73bb3f7eec63881f9a95df6ce9f5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 50, - "tx1_hash": "b0d8c5a438e34fc03bb31f479866392d292c289fcb1897b5fec5989a7bb87af7", - "tx1_address": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "tx1_hash": "b11a32b59d333a9578cf0d42b83bb27c0f251d9f9b5bf491855ca38939e7751c", + "tx1_address": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8232,13 +8291,13 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730815126, + "block_time": 1730900661, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -8252,13 +8311,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 60, - "tx0_hash": "55aec0b81b79984acd7d5c4c78e0d697ff063744a5ce4684fe18341838a8d1ba", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx0_hash": "6c9e2f2ced2f0d97994f7f368293e42fbcd0988baeef92943b31941a0cee82c5", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_index": 54, - "tx1_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx1_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8272,13 +8331,13 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "backward_asset_info": { "divisible": true, @@ -8292,13 +8351,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx0_index": 54, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx1_index": 76, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "forward_asset": "BTC", "forward_quantity": 1000, "backward_asset": "XCP", @@ -8312,7 +8371,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -8321,11 +8380,11 @@ "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", @@ -8357,66 +8416,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", + "tx_hash": "2ce50256f747be5c5c5d50f3615f0dc0ea9abfb217166346e93166cfc690fa96", "block_index": 121, - "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", + "source": "bcrt1qw6eahpx7d8036rwyp89hastveh2x94craud9dn", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730814922, + "block_time": 1730900450, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "6c5d5de4a45d374a9e7e8b39e7655c5229ef815ea661ad9f71cf4eb8935ae729", + "tx_hash": "d3e3e65353092e147cef1da9a296131bc05cbb1c520add29a2286e104181077a", "block_index": 120, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730814919, + "block_time": 1730900447, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "ab82779227e9a373afa751fbe46629179c0a567c9251bc34a289d75a82383573", + "tx_hash": "dc17e805d849eec89b44760841e93562dfb38ecc9a4e1ed844fa252989822272", "block_index": 119, - "source": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff", + "source": "bcrt1qsu0r7ztj4uc66wc2w4tz7373r0eqm3pmjf4ma3", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730814915, + "block_time": 1730900442, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "b7e759cba65e5066d59edc941bc6a53bde9feae3b1d854ba6ed335fe6a18a528", + "tx_hash": "8dddca64b5590636acdb7bcdd7a00a0649a776156bb65957a41cc1c26020ef8f", "block_index": 118, - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730814911, + "block_time": 1730900439, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d0854e63c8720442ecb862287f6d9f79f569382ec5695f7bf2b557ec2d7e9b6d", + "tx_hash": "b3d23db06b5029db88fe618b4dc4f035661fd12d50ccc36157349765b53ba944", "block_index": 117, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730814907, + "block_time": 1730900435, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8428,9 +8487,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8439,7 +8498,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8450,13 +8509,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -8467,9 +8526,9 @@ }, { "tx_index": 29, - "tx_hash": "5f18a78950d1e5d31cdf8799cd9e045f97e5aa72a3bdf9deb7215f4de219a52a", + "tx_hash": "41d8a373d332c04da51737221ec401f66d183c7de06fa298a3a3b8135235b246", "block_index": 142, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8478,7 +8537,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "origin": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8489,13 +8548,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815023, + "block_time": 1730900550, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", @@ -8506,9 +8565,9 @@ }, { "tx_index": 30, - "tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", + "tx_hash": "0e3006e756353602d5a3f3999734c449dbbff728c7572db3dcd3ba26395f5dd0", "block_index": 150, - "source": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", + "source": "mfanX2LPYr7FZamgGboJwc9G1VFYpaQHjA", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8516,10 +8575,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7d12cfbd11499af0921830ee326c74f4963ea0333b73c59d30bbf9afd625d212", - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_hash": "837acca19584e732c6b24d1c0b23e49734c0935f16301ff1bd42cd2f3371602f", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "last_status_tx_source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -8528,13 +8587,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815057, + "block_time": 1730900592, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -8545,9 +8604,9 @@ }, { "tx_index": 64, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8556,7 +8615,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8567,11 +8626,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -8584,18 +8643,18 @@ }, { "tx_index": 33, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8606,13 +8665,13 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -8628,9 +8687,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8639,7 +8698,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8650,13 +8709,13 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00000000", @@ -8671,19 +8730,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8691,7 +8750,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8706,13 +8765,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -8720,19 +8779,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8740,7 +8799,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8755,13 +8814,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -8774,29 +8833,29 @@ "result": [ { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" @@ -8808,29 +8867,29 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" @@ -8844,39 +8903,39 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "event": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "tx_index": 41, - "utxo": "a786ebbcef73d52585b1012e1f21ce6dbef3b78d4e0240e7a15a76fdb84b61de:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "utxo": "937ae7b1c1381d6341b122d2398f760e25a89e00ca53555e6781c5b85baa106a:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, { "block_index": 154, - "address": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", + "address": "bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "event": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "5.00000000" } @@ -8891,27 +8950,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 695, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 694, @@ -8920,27 +8979,27 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 693, @@ -8949,48 +9008,48 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 691, @@ -9002,15 +9061,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } }, "/v2/events/counts": { @@ -9045,28 +9104,28 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 690, @@ -9076,24 +9135,24 @@ "asset": "XCP", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 687, @@ -9103,78 +9162,78 @@ "asset": "MYASSETA", "block_index": 210, "calling_function": "utxo move", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", - "utxo_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "block_time": 1730815328, + "utxo": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", + "utxo_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 }, { "event_index": 668, "event": "CREDIT", "params": { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "block_index": 209, "calling_function": "order expired", - "event": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "event": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "quantity": 3000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730815315, + "block_time": 1730900869, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00003000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 }, { "event_index": 657, "event": "CREDIT", "params": { - "address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "block_index": 208, "calling_function": "mpma send", - "event": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "event": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "quantity": 10, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_time": 1730815312 + "block_time": 1730900865 } ], "next_cursor": 656, @@ -9191,27 +9250,27 @@ { "tx_index": 77, "dispense_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9226,13 +9285,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" @@ -9240,19 +9299,19 @@ { "tx_index": 65, "dispense_index": 0, - "tx_hash": "f7eb0d76107765f2af78c21425c3f4e9c8895e6389a2e30683ec500529cbd88f", + "tx_hash": "1b7d30e4bf5db9ccccf1988c2cfed43d70ed988d65bc6fa6e5faa946e7dc2f22", "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "dispenser_tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 64, "block_index": 199, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9260,7 +9319,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9275,11 +9334,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815261, + "block_time": 1730900797, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -9289,27 +9348,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "89d1b9ec2efeb788df52df11bad3214ed7ea344ac3a852e1c9e2f54d4b239ff0", + "tx_hash": "f6db7d835bbbdacc02060c84b51c8473ba1acc5e3d0ba0f8b744f0bd11f39c7f", "block_index": 147, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "destination": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "destination": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 210, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "oracle_address": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "last_status_tx_hash": null, - "origin": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "origin": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9324,13 +9383,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730815044, + "block_time": 1730900579, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000666", "btc_amount_normalized": "0.00010000" @@ -9338,19 +9397,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "02472db9f4a089831486bf46dc2e4dcd574414c2e40efabf4cac33eded62933f", + "tx_hash": "e8cbcbad32388f7eca3db6cfe18260c77eaa23e6481a9f122b03dc5c769acb84", "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9358,7 +9417,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9373,13 +9432,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815019, + "block_time": 1730900546, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -9387,19 +9446,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "943aa55298e49ceef30468853e83a95db5fb66accafe04c1162909709758305c", + "tx_hash": "9755c148cec8d126caa65c0b237f301554969f499941f2c3203e5b3d85ed6195", "block_index": 140, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "a14af0ec9de7708677abe993df68b3e5d550a040721921e7fdbe669917e90c0c", + "dispenser_tx_hash": "61811570fa02915009c0440be94d87f2617a1c25c5c1e6d760e47df8a0f51087", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9407,7 +9466,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9422,13 +9481,13 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730815006, + "block_time": 1730900533, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00006000", "btc_amount_normalized": "0.00006000" @@ -9441,10 +9500,10 @@ "result": [ { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9452,23 +9511,23 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 77, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9476,11 +9535,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -9489,10 +9548,10 @@ }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9500,23 +9559,23 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9524,11 +9583,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -9537,10 +9596,10 @@ }, { "tx_index": 75, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9548,11 +9607,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -9567,14 +9626,14 @@ "result": [ { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -9589,20 +9648,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 66, - "tx_hash": "29bc5c4992ab2801c3ef43e6c67dd0da8c60ff295a174c149f68cd4f2c32fe44", + "tx_hash": "378c91e35ec0eccc27e753fe40737dd0505e0a7009a31405fcfd46ee7c81bfd5", "msg_index": 0, "block_index": 200, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", - "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", + "issuer": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "transfer": false, "callable": false, "call_date": 0, @@ -9617,20 +9676,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815264, + "block_time": 1730900801, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ea288ecf98847d39c2502413bed518a6ca01b4591d335a66e8b4d4edbe8f0d4b", + "tx_hash": "8251160a2e10f586c7b1581c6439712e84d4669300bb9a5cb6204706b358a21d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -9645,20 +9704,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815111, + "block_time": 1730900637, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "2011a0a3080034b9a107d65a00473e11eabf1da569a82e140b7fc7eea775d73b", + "tx_hash": "96468e255a09d5e865bbb6bce5b82451123f4a2a88cb91dcac981a448af22352", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -9673,20 +9732,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730815107, + "block_time": 1730900634, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "bab24ff1896958a7a312781110cd6d9cb8a7b74bc1002c8969076082b0c3532a", + "tx_hash": "047f91bd33430d27d88fe19c263b682a65061b4d5c2d276962f448eabb2d1dee", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -9701,7 +9760,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815104, + "block_time": 1730900630, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9712,14 +9771,14 @@ "/v2/issuances/": { "result": { "tx_index": 70, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "msg_index": 0, "block_index": 203, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "transfer": false, "callable": false, "call_date": 0, @@ -9734,7 +9793,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9743,16 +9802,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -9763,16 +9822,16 @@ "result": [ { "tx_index": 61, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" } ], @@ -9783,9 +9842,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9793,14 +9852,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814999, + "block_time": 1730900524, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "01f6c5f4c7b631f0feb74b7e3a87e740096f2bb8dbe1c5222f4006a707fa5315", + "tx_hash": "c7b0a9b6bee7d309ab6dc5ae4fc986e4fcd7c1183231e459fb6648d8c2fb8231", "block_index": 137, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9808,7 +9867,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814996, + "block_time": 1730900521, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9818,9 +9877,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9828,17 +9887,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730814999, + "block_time": 1730900524, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9863,7 +9922,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9872,10 +9931,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9900,7 +9959,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730814988, + "block_time": 1730900513, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9912,10 +9971,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "tx_index": 18, "block_index": 131, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9940,7 +9999,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730814962, + "block_time": 1730900487, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9952,10 +10011,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "tx_index": 14, "block_index": 130, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9980,7 +10039,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730814958, + "block_time": 1730900483, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9992,10 +10051,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "d9ee650595a124bd98570ad2a70cf611c065fe96ddcccff3299b6513d64a190f", + "tx_hash": "0e2abdb7fbab18f709d478d6ffe484c88f07d94fb47020938ae71f0ca4ce3149", "tx_index": 10, "block_index": 125, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -10020,7 +10079,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730814938, + "block_time": 1730900466, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -10038,22 +10097,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10062,22 +10121,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ef47346e9302f205418b2bea8b1ebcbf4c46bbc0ed534684f345d06486755bcc", + "tx_hash": "63df57cbf4953b9c87d8b78c85e3bb25c90f157dd68dcca6aa7ecca96a7120ca", "tx_index": 21, "block_index": 134, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814984, + "block_time": 1730900509, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10086,22 +10145,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "19692c0b05771d3bb039926c9dcd605d0b32ddf8bc0011dfb2340817eb9020ec", + "tx_hash": "cbe53304ae4f7b21bcb2513d104690258c2bdb6a96e73d83bd3d8334ff93529c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814971, + "block_time": 1730900505, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10110,22 +10169,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4abf17e719b028fa29ce0f49bfd3f20927ecf75da40e201269f26cdf9eb7773b", + "tx_hash": "589f32021120f9302bfd44f8566adadcd0d7a8d544060ba23b85aca2e880a8b4", "tx_index": 19, "block_index": 132, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "bc754a69275903b88c0eb2393f4a0f11dde1830c96e4099daf3cc69e2aaa7551", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "537da2b5e37bb68d9123e36853ccea51b1e93d2ce6e9f0414603891f4758a258", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814967, + "block_time": 1730900492, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10134,22 +10193,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "245d76ac2bac5f99c58866cfeb27c8e3571cc13c9e019fd018bb443df46130a3", + "tx_hash": "b3f01120cc3805224b9770dc42c28840f544769e3814b27175fb07b4b5a63828", "tx_index": 17, "block_index": 129, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "fairminter_tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "fairminter_tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814954, + "block_time": 1730900479, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10163,22 +10222,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, "block_index": 136, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -10190,22 +10249,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 202, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b", - "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" + "amount": 5.46e-05, + "txid": "5da6e05259561f091adc53dc41a53a0cd4dde000db2ecf3ec6656a33aaf496ca", + "address": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd" }, { - "vout": 0, + "vout": 1, "height": 202, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585", - "address": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w" + "amount": 49.499345, + "txid": "16fdb1bad5fb345360f5a7e184823c3d2391e9a2d3e6042ec531328804c01f7a", + "address": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd" }, { "vout": 2, @@ -10213,8 +10272,8 @@ "value": 100000, "confirmations": 54, "amount": 0.001, - "txid": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4", - "address": "bcrt1qsvqfey74lwwcrwntjg0ceawrvejjjvh4l8rjff" + "txid": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e", + "address": "bcrt1qsu0r7ztj4uc66wc2w4tz7373r0eqm3pmjf4ma3" } ], "next_cursor": null, @@ -10223,31 +10282,31 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "1cf93eaecf80fee38f282708e49be0e972b4526e9c5ad72ec822cd570f63eb06" + "tx_hash": "d3557e53fddabc7976909a78cd1aaf0a217b640e4b1e696490f9fe3659e18403" }, { - "tx_hash": "2f93d444282f2ff83029ef22437c48a722e188c159000b26b98f977c1e7e070c" + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d" }, { - "tx_hash": "e37f8aa66f2894997ea5795928c5e29bf8d9b94109f97d0d8f28c7cd04598c25" + "tx_hash": "24891e5ec9dce6b61bf73493398c9abb9cfede27a403077c4c63dbc29f0ea94b" }, { - "tx_hash": "561135f903b3cfe5dbd6bc6bf6729eea4268a1075e009865119f0212c704072e" + "tx_hash": "30385aa03c83da8ac76e31253e4ac73d7b5b945e04a5094450a06fcd8d960367" }, { - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f" + "tx_hash": "e6a62c306b404e51de3bfda76762aa774d8528527216e6a87236647c56139478" }, { - "tx_hash": "792827d3afb74c45f7a681503c2f51e26c2d12400c0e86eeea745a5bfbf01d5d" + "tx_hash": "eba961ef9907c321a6f027601d48e4d13b7cdcb72479b656c107219c7a8ef59e" }, { - "tx_hash": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8" + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca" }, { - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" + "tx_hash": "f3c8eca1c34b49956dff033a70a7353c636da2bfe53280416d047190c349e3f2" }, { - "tx_hash": "80d23748c8c9e7860f9d0193b861b38c7a820b25f2fb8f606fc7561fb12b96f9" + "tx_hash": "0e2f19639bee99572d6f3686b608029535aa43d16e26eabf092b816d998f77f8" } ], "next_cursor": null, @@ -10255,8 +10314,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "93fa0e493eefe1d4b855ed4e2aa6b6afe1f9261f63fdfe6b53442aee181e223a" + "block_index": 1, + "tx_hash": "ec7c3e26f3e30d2f92d7360a5c3b97595d86ee4de01d676713b2e56009ee54e8" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -10267,7 +10326,7 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "1e551d2c41f308e879e4b550a9146c7fe3fba8c0ca543c0a4cd1f0e84d3b833b" + "txid": "16fdb1bad5fb345360f5a7e184823c3d2391e9a2d3e6042ec531328804c01f7a" }, { "vout": 0, @@ -10275,21 +10334,71 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "d3f464fa53eb4f692d7cf1759a95fee8c9397360c1c7170e1b82aebcf4d84585" + "txid": "5da6e05259561f091adc53dc41a53a0cd4dde000db2ecf3ec6656a33aaf496ca" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "027e0ba4bf6d7ec968beaac565f8677d359dc3fd6de29b5fcf5e7d91f6e7e61227" + "result": "02200a967ab5036f4d768fe9d9bf3ee392894da589ad5b605318cbfb247690bec4" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101b48666cefd466f79a3d15bf814096f990dc492394bad3fc32b9a05bb9485a7770100000000ffffffff03e8030000000000001600141e3b253faedc160b8e01feea12afc01591194e9300000000000000000c6a0af440a74b8610ff8c1f4aeb140927010000001600145d2f62d2b47bd9b2fd83ab8a11e6bd825c54c1430247304402207b3abd99e749c9ad380900801266580250d2cba1d3ab53081f94bdc4b60c134902203f1b636047b9335a4c7355cf8a774e94b7b34e0e0b3cddc53daaea22f21550e7012102266210940cb1609912dc497cd1c1591851135e1fa766e4225851b402b6caf07500000000" + "result": "020000000001013e75acf81a6bafc4323cc045e44de5ca05178f112aa31bc71b03839ac4f907600100000000ffffffff03e803000000000000160014da8b86c979d7e5c1a329404a33455e7621f355dc00000000000000000c6a0a6cf05f8c7a8b021e2c09eb140927010000001600148115db524c577527e5c31523cb3ee82f28849cf10247304402203ec4b83c921b6e73c868a36c75c9f01e8ed161e713c62eb79583189a2bc71c77022043f0aa68413d1d1b85406b21f91bef3b956436d6107059f2c1543faeeaabcfde012102e82059ad0eb091c398e241fe61f647b0474a4207765e05117dc966913684916f00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58797 }, + "/v2/bitcoin/transactions/decode": { + "result": { + "txid": "0af935874d4d8c588f4c30a68c39d96906bf20ba20accd4337b8fcfc0196299b", + "hash": "b265ef6af958f89b1c835f0956c5c374761e5f5d3b7910ee0e79e0e08900affd", + "version": 2, + "size": 143, + "vsize": 140, + "weight": 557, + "locktime": 0, + "vin": [ + { + "txid": "4d9512137f191591e308483bdc0408642e5520be29f418adae44eacb8045c999", + "vout": 0, + "scriptSig": { + "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0" + }, + "txinwitness": [ + "", + "" + ], + "sequence": 4294967295 + } + ], + "vout": [ + { + "value": 0.5, + "n": 0, + "scriptPubKey": { + "asm": "OP_DUP OP_HASH160 a11b66a67b3ff69671c8f82254099faf374b800e OP_EQUALVERIFY OP_CHECKSIG", + "desc": "addr(mvCounterpartyXXXXXXXXXXXXXXW24Hef)#3dsuzcep", + "hex": "76a914a11b66a67b3ff69671c8f82254099faf374b800e88ac", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "type": "pubkeyhash" + } + }, + { + "value": 49.4999, + "n": 1, + "scriptPubKey": { + "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "desc": "addr(bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut)#arywlyjk", + "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "address": "bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut", + "type": "witness_v0_keyhash" + } + } + ] + } + }, "/v2/bitcoin/getmempoolinfo": { "result": { "loaded": true, @@ -10308,125 +10417,125 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78 }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "quantity": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "block_index": 210, - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730815333.0180326, + "block_time": 1730900881.524786, "btc_amount": 0, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "destination": "", "fee": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, - "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", + "utxos_info": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -10435,29 +10544,29 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -10466,125 +10575,125 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78 }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "destination": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "quantity": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "CREDIT", "params": { - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "asset": "XCP", "block_index": 210, "calling_function": "send", - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "address": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "asset": "XCP", "block_index": 210, - "event": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "event": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "quantity": 10000, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 }, { - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730815333.0180326, + "block_time": 1730900881.524786, "btc_amount": 0, - "data": "020000000000000001000000000000271080d7abfc662a7755529bf07fdb8227c9a7b8ed9db4", + "data": "0200000000000000010000000000002710806def419f83902b60c17bd33b313c08ee594106a8", "destination": "", "fee": 10000, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", - "tx_hash": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", + "tx_hash": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001", "tx_index": 78, - "utxos_info": "b18025c9359527079d84954679026b1ae649a7ccd1b86e934fdb9c51bf3b2c58:1", + "utxos_info": "3da8dd6c13a5423a990e6de1bfe781b9e2de5278e819cfd3fd8293eb02e9b001:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730815333.0180326 + "timestamp": 1730900881.524786 } ], "next_cursor": null, @@ -10606,15 +10715,15 @@ "event_index": 681, "event": "NEW_BLOCK", "params": { - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", "block_index": 210, - "block_time": 1730815328, + "block_time": 1730900878, "difficulty": 545259519, - "previous_block_hash": "0ea633f187f4890abcfad1241c27e592b035ec3f638f2e1ecca15692c36db4d8" + "previous_block_hash": "0069e575f932dd55c99c60d24c4795ddd3fd37479c52e532694d1712a4248270" }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 665, @@ -10626,17 +10735,17 @@ "event_index": 682, "event": "NEW_TRANSACTION", "params": { - "block_hash": "39f5f21310f4ef83ba112d22821a7a65165070c6d59685232dcd27d7e3db1199", + "block_hash": "090ec4c4d6b575ee72ba916f3705a9abda61f548844064b910ddb35deb1d592a", "block_index": 210, - "block_time": 1730815328, + "block_time": 1730900878, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "fee": 0, - "source": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "source": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "utxos_info": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1 2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "utxos_info": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1 663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10646,9 +10755,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 666, @@ -10662,16 +10771,16 @@ "params": { "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "destination": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "out_index": 0, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 567, @@ -10684,15 +10793,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 210, - "ledger_hash": "7170299c80c73e210d9bcdfa54ebb3b35789d4da9de6351912add1f3cba92f85", - "messages_hash": "52603f5b44d336a1651fda3e7362048eb0bad4361d0456b55165ff97b8204484", + "ledger_hash": "11e7108d6e26433873f908900f24a764637c11e8f891492de22046d44aa8486d", + "messages_hash": "58a20853459f83fa4a59766b2caf434d901e5abefeb1793275f89a6aebde4af3", "transaction_count": 1, - "txlist_hash": "bdf5499ea6eff24ef2367f5967fce7491350b3e30ea5febe64e9a2ad4a55304b", - "block_time": 1730815328 + "txlist_hash": "aeeb117f0668ec9be104e1fad4441f7d1d19ef0e31638dbfdf41c9c072a9cd57", + "block_time": 1730900878 }, "tx_hash": null, "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 680, @@ -10705,12 +10814,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 679, @@ -10726,24 +10835,24 @@ "address": null, "asset": "XCP", "block_index": 210, - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 1500000000, "tx_index": 77, - "utxo": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", - "utxo_address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", - "block_time": 1730815328, + "utxo": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", + "utxo_address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 686, @@ -10755,28 +10864,28 @@ "event_index": 692, "event": "CREDIT", "params": { - "address": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "address": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "asset": "XCP", "block_index": 210, "calling_function": "dispense", - "event": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "event": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "quantity": 66, "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 690, @@ -10790,26 +10899,26 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "memo": null, "quantity": 1000, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "tx_index": 71, - "block_time": 1730815285, + "block_time": 1730900829, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b21d1a0dcb97f2ab9fa86740b464111edc17b56ab8d9fec3d60bcca3442862ba", + "tx_hash": "b2ced1e0510eb66351ea0c55d4fe93bef16360606c0cd83d9bc89c4d63a88737", "block_index": 204, - "block_time": 1730815285 + "block_time": 1730900829 } ], "next_cursor": 503, @@ -10823,27 +10932,27 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "status": "valid", - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "tx_index": 75, - "block_time": 1730815312, + "block_time": 1730900865, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "906132879f6565909410dbeeebb17e7b034f2ea69ad03f62e1b267a917306732", + "tx_hash": "4279cf2b0efab3d2b8ee9fe77dbce8ae675684fbab1ba9b6b69852c556417f39", "block_index": 208, - "block_time": 1730815312 + "block_time": 1730900865 } ], "next_cursor": 661, @@ -10866,20 +10975,20 @@ "event": "SWEEP", "params": { "block_index": 195, - "destination": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "destination": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "status": "valid", - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "tx_index": 61, - "block_time": 1730815247, + "block_time": 1730900783, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "52f788ef8323f6de89e73b59d5c4cfc7535be20731537d06019aad41e4ec8a3f", + "tx_hash": "fcce9398777c70717f408388514cd274cc87a7ef3814bc856180572511d041ca", "block_index": 195, - "block_time": 1730815247 + "block_time": 1730900783 } ], "next_cursor": null, @@ -10896,31 +11005,31 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "tx_index": 41, - "block_time": 1730815072, + "block_time": 1730900609, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "dividend_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "1e7846bb1fe1f0461f8e136e611411d349e50c3da36b008473252e61fd1a12ef", + "tx_hash": "edf07d4ea00818cfd712470076f32ddf2bf2b1078a2158a21856f5bf392a437c", "block_index": 154, - "block_time": 1730815072 + "block_time": 1730900609 } ], "next_cursor": null, @@ -10941,11 +11050,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 203, - "block_time": 1730815282 + "block_time": 1730900825 }, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_time": 1730815282 + "block_time": 1730900825 } ], "next_cursor": 576, @@ -10968,22 +11077,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", "transfer": false, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "tx_index": 70, - "block_time": 1730815282, + "block_time": 1730900825, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "f477d19befbb79f83c80fc867d80a2f74c6bb567b71b883df5fcfa77d8d938dc", + "tx_hash": "92b50340b2c5b0e24ef7ed01e5f025870516218eb01a96c3419ec4b70486770f", "block_index": 203, - "block_time": 1730815282 + "block_time": 1730900825 } ], "next_cursor": 577, @@ -10998,24 +11107,24 @@ "asset": "XCP", "block_index": 196, "quantity": 1, - "source": "bcrt1qfgct07t3t99ud47llv008gcmd3sxg954v3sj5s", + "source": "bcrt1qhrez8pxkp32u8w9sqnejevwssrjck8srgwh48u", "status": "valid", "tag": "64657374726f79", - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "tx_index": 62, - "block_time": 1730815251, + "block_time": 1730900786, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "0.00000001" }, - "tx_hash": "016baa2511ea9d0f54a54066e7902e16b56e59e7ad0fb14c021ac16aef3bcc25", + "tx_hash": "1d45a81d19acd9b247f5dc722e568a4d0a0c6fab807b8fe41a149df1da3d7a40", "block_index": 196, - "block_time": 1730815251 + "block_time": 1730900786 } ], "next_cursor": 157, @@ -11040,17 +11149,17 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "open", - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "give_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "get_asset_info": { "divisible": true, @@ -11068,9 +11177,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 534, @@ -11088,20 +11197,20 @@ "fee_paid": 0, "forward_asset": "BTC", "forward_quantity": 1000, - "id": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4_cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "id": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d_efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "match_expire_index": 229, "status": "pending", - "tx0_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", + "tx0_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", "tx0_block_index": 209, "tx0_expiration": 21, - "tx0_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "tx0_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "tx0_index": 54, - "tx1_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "tx1_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "tx1_block_index": 209, "tx1_expiration": 21, - "tx1_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx1_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "tx1_index": 76, - "block_time": 1730815315, + "block_time": 1730900869, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -11110,19 +11219,19 @@ "issuer": null }, "backward_asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 673, @@ -11135,11 +11244,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4" + "tx_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 677, @@ -11152,11 +11261,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0" + "tx_hash": "97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac" }, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "block_time": 1730815205 + "block_time": 1730900734 } ], "next_cursor": null, @@ -11168,13 +11277,13 @@ "event_index": 667, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", + "id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", "status": "expired" }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 481, @@ -11188,18 +11297,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_eaa8034e910e38970ae134d0475e2487fc27282c6f9c8b508eae27e5f13a78e0", - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "destination": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_97cd5809e1cb3bbc8a41e992bdf35158293e470708c68cb815dc30ec815e58ac", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "status": "valid", - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "tx_index": 53, - "block_time": 1730815205, + "block_time": 1730900734, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "8057fa257df034f36a3baa8dd127bec27e8121c6774a12403ab13e1ea0ed56be", + "tx_hash": "09438532dd5c663c56068729376f1ca4fcb632301f6f5e06aa62e68b67663bb0", "block_index": 187, - "block_time": 1730815205 + "block_time": 1730900734 } ], "next_cursor": null, @@ -11212,16 +11321,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 193, - "offer_hash": "d46c6439c881ae3343b40b205c1cd30f2f0a11f317672e15119db507b2553b59", - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "offer_hash": "49956726d795069f50726d96c9b46d8d5c478597404b6fafcaa3438c15293e94", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": "valid", - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "tx_index": 59, - "block_time": 1730815238 + "block_time": 1730900775 }, - "tx_hash": "6ea57f4f3800013c3acfcd0704d957c2443d29dcd95e041efedd0c0aeda6c6d3", + "tx_hash": "7214ad1e6475faad5fbe6c085436788f55842267d9b5cdcb1e14b55d3d0bd4a0", "block_index": 193, - "block_time": 1730815238 + "block_time": 1730900775 } ], "next_cursor": null, @@ -11234,13 +11343,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 210, - "order_hash": "620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "source": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "block_time": 1730815328 + "order_hash": "81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "source": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "block_time": 1730900878 }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 642, @@ -11253,14 +11362,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 209, - "order_match_id": "385d2eff1c7631cb95147f1d553434e12e8426d87f03a54f72ade71a674c4663_620ca5383a36cc256fd649556b830f99bc485cc969b189303204bff62e71dbd4", - "tx0_address": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "tx1_address": "bcrt1q674lce32wa249xls0ldcyf7f57uwm8d53en2dd", - "block_time": 1730815315 + "order_match_id": "0729cd57337e34a142659f479631428b5662ef8f1b31e110640355ed05319dc4_81d0e29959d562b2341697e319cb5d14db82b2c8bb0fde63495af3423047711d", + "tx0_address": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "tx1_address": "bcrt1qdhh5r8urjq4kpstm6vanz0qgaev5zp4gkmsnu4", + "block_time": 1730900869 }, - "tx_hash": "cd7597085c4c3c30239a5b013de6236e76e3e48717e4e137db6ee6fa7cc8df93", + "tx_hash": "efb40ff30e382dffd8248db82bfbc32958b0a5fb6f1bca144b40a1a0d3bdcdbf", "block_index": 209, - "block_time": 1730815315 + "block_time": 1730900869 } ], "next_cursor": 457, @@ -11279,17 +11388,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "origin": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "satoshirate": 1, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "status": 0, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "tx_index": 64, - "block_time": 1730815257, + "block_time": 1730900793, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11298,9 +11407,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "b636af0962a627bc47c02e3e02ae95e5aaf5fe5a95ebced37e63f90bfb98ebf6", + "tx_hash": "584f1753fc86ce565baa2711e0b0e5020a49c590cc001c757751b03ba3dd299d", "block_index": 198, - "block_time": 1730815257 + "block_time": 1730900793 } ], "next_cursor": 272, @@ -11315,21 +11424,21 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": 0, - "tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", + "tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 569, @@ -11343,25 +11452,25 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mmTfDEB4rqZbEvzePcZn2wvFJfzcvGjghS", + "destination": "mfanX2LPYr7FZamgGboJwc9G1VFYpaQHjA", "dispense_quantity": 10, - "dispenser_tx_hash": "4e11984d9624ca5dc158696158d8b19821ccfdeafaf60092037b8ea0570606ce", - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", - "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", + "dispenser_tx_hash": "0e3006e756353602d5a3f3999734c449dbbff728c7572db3dcd3ba26395f5dd0", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", + "tx_hash": "f6ab5235c44c0271e8a417d54923d6409dbc0ae0b81dfeda6a35d616f92a2f9c", "tx_index": 31, - "block_time": 1730815031, + "block_time": 1730900558, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "51bdb0482d7b62c272de15858e6d8c07888e427a056d552fa00177bcd74acf6e", + "tx_hash": "f6ab5235c44c0271e8a417d54923d6409dbc0ae0b81dfeda6a35d616f92a2f9c", "block_index": 144, - "block_time": 1730815031 + "block_time": 1730900558 } ], "next_cursor": null, @@ -11376,27 +11485,27 @@ "asset": "XCP", "block_index": 210, "btc_amount": 1000, - "destination": "bcrt1qt5hk954500vm9lvr4w9pre4asfw9fs2r9aalh2", + "destination": "bcrt1qsy2ak5jv2a6j0ewrz53uk0hg9u5gf8835lpqxn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b557d2dc2b633d36fcf079e6393d755bffbf13f6d1bab1aa658bdd5c0fc51ba2", - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "dispenser_tx_hash": "bbb5ade52b7732a234d82e91e59508d2cff2d5c89cd3bbeac5fe42a0aa6ce559", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 570, @@ -11411,19 +11520,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qrcaj20awmstqhrsplm4p9t7qzkg3jn5nx7e4dh", + "source": "bcrt1qm29cdjte6ljurgefgp9rx327wcslx4wuthkusf", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "tx_index": 25, "value": 66600.0, - "block_time": 1730814999, + "block_time": 1730900524, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "f282de7c2b1d7b533a07705926e60acf0d6c1bdca3648a8af860644bf3fd3b0b", + "tx_hash": "25fd1798e19006669b89bbe1aa9e71d02ee1a2c102367b478394a8364fefd925", "block_index": 138, - "block_time": 1730814999 + "block_time": 1730900524 } ], "next_cursor": 213, @@ -11454,12 +11563,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "source": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "start_block": 0, "status": "open", - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "tx_index": 42, - "block_time": 1730815076, + "block_time": 1730900612, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11467,9 +11576,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "f34e152e7f98ac2eeccf3a07ac7f9ff36b503ee94c6f41e0d5e4b88e28d365d6", + "tx_hash": "fc8b6e3395c1bd9c69a0b6ff53e1f3cf2e9461987954d1df3418a02ebd504ca6", "block_index": 155, - "block_time": 1730815076 + "block_time": 1730900612 } ], "next_cursor": 196, @@ -11482,11 +11591,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "a551ef1f8d1102ec59fa0cca0543fc43ff7f223fe5f56672914302ef843feae0" + "tx_hash": "68ddde4f6fbd6d1137d8271e136019086d045e7fec18d7b211d28c4b996c5e93" }, "tx_hash": null, "block_index": 130, - "block_time": 1730814958 + "block_time": 1730900483 } ], "next_cursor": 110, @@ -11502,17 +11611,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "a0d6d6a158d87774d08aefe2fe66560c347d9dc10b388579e87ae51d0fa185dd", + "fairminter_tx_hash": "3fba6c977185b17d65036e792fcb9c08ef08dbc1c50c9c9c8341545fed2a01e4", "paid_quantity": 34, - "source": "bcrt1q65ecwteu6a3d75z7g00t02wjwdqqwvvazqr5ta", + "source": "bcrt1qct03j8gzxggwtr25ehn52a4zrytq5jvnznj0cw", "status": "valid", - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "tx_index": 23, - "block_time": 1730814993, + "block_time": 1730900518, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, @@ -11520,9 +11629,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "d7bcb5292e58c78d55395d91c63c0bdb0cfd78048465590d56ab73a9d1ce40b4", + "tx_hash": "e4a30900757108291b4ec96dd8e392b1e3b5c5a3171d2afefdccf1ce4401b589", "block_index": 136, - "block_time": 1730814993 + "block_time": 1730900518 } ], "next_cursor": 190, @@ -11536,28 +11645,28 @@ "params": { "asset": "UTXOASSET", "block_index": 201, - "destination": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581:0", + "destination": "8f108eef75e95edc0c3f553f86ce8df869916cd95a7833cfcc31ee8a2652f9b6:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "source": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "status": "valid", - "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", + "tx_hash": "8f108eef75e95edc0c3f553f86ce8df869916cd95a7833cfcc31ee8a2652f9b6", "tx_index": 67, - "block_time": 1730815268, + "block_time": 1730900806, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrh9m0rf6zpgy3c2yfdfchg4y694racjlnjfx9w", + "issuer": "bcrt1qqvy3r40acu2gs8aga9ftfx90d4slttz3dsxmxd", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4dc6fef96f38ba34c15211d3365291a740e3871dcc9af80f3b0393378f1ec581", + "tx_hash": "8f108eef75e95edc0c3f553f86ce8df869916cd95a7833cfcc31ee8a2652f9b6", "block_index": 201, - "block_time": 1730815268 + "block_time": 1730900806 } ], "next_cursor": 319, @@ -11571,28 +11680,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qmyxry27j80cnv97aznl4h3k7ezvawz2pjllhhj", + "destination": "bcrt1qjmk7j3phzm9espcy5av2nxm7gkkue8lejjeswl", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "cdfe50a219bd7b75d27d3b82a6efd84ef9c3497911a671579fb87a1f784e3ac8:0", + "source": "d3557e53fddabc7976909a78cd1aaf0a217b640e4b1e696490f9fe3659e18403:0", "status": "valid", - "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", + "tx_hash": "002fdac93f23ce31b8aae7ee71dca85a51e70769a27dde00fc63e4459f89f289", "tx_index": 38, - "block_time": 1730815061, + "block_time": 1730900596, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ah7jejns24h4dy4gpeqmr4pgeuhjwprn96ezk", + "issuer": "bcrt1q432gdq2g90quqdk7jfr7zychz0euajk6tmqas9", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cf08fcbb95031a043548ae9c970313a5096cb0d5949dba13e9fb366d88096421", + "tx_hash": "002fdac93f23ce31b8aae7ee71dca85a51e70769a27dde00fc63e4459f89f289", "block_index": 151, - "block_time": 1730815061 + "block_time": 1730900596 } ], "next_cursor": null, @@ -11606,26 +11715,26 @@ "params": { "asset": "XCP", "block_index": 210, - "destination": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835:0", + "destination": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547:0", "msg_index": 1, "quantity": 1500000000, - "source": "77a78594bb059a2bc33fad4b3992c40d996f0914f85bd1a3796f46fdce6686b4:1", + "source": "6007f9c49a83031bc71ba32a118f1705cae54de445c03c32c4af6b1af8ac753e:1", "status": "valid", - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "tx_index": 77, - "block_time": 1730815328, + "block_time": 1730900878, "asset_info": { - "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "issuer": null, + "divisible": true, + "locked": true }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2a0c68b2c2694d3e7dfc40c6cb9361e85ce449da6d6f3428f98cf688640bc835", + "tx_hash": "663251239962643f016b459c6fe09437fd266bb615e49b9616b9ca547c504547", "block_index": 210, - "block_time": 1730815328 + "block_time": 1730900878 } ], "next_cursor": 688, @@ -11640,17 +11749,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qv8phgwmpfk3vha6sse7mfp6040c5gqmjtqq4tu", + "source": "bcrt1qw6eahpx7d8036rwyp89hastveh2x94craud9dn", "status": "valid", - "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", + "tx_hash": "2ce50256f747be5c5c5d50f3615f0dc0ea9abfb217166346e93166cfc690fa96", "tx_index": 9, - "block_time": 1730814922, + "block_time": 1730900450, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "528c0865248ce9ccc4b8bae76c3b9a0dcbb1449a667a5f2fda3b5ef1092feb0e", + "tx_hash": "2ce50256f747be5c5c5d50f3615f0dc0ea9abfb217166346e93166cfc690fa96", "block_index": 121, - "block_time": 1730814922 + "block_time": 1730900450 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 4e0b7d605c..715af63435 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -136,6 +136,7 @@ def send_transaction( if return_only_data: return result["result"]["data"] raw_transaction = result["result"]["rawtransaction"] + # print(f"Raw transaction: {raw_transaction}") signed_transaction_json = self.bitcoin_wallet( "signrawtransactionwithwallet", raw_transaction ).strip() diff --git a/dredd.yml b/dredd.yml index e657201046..d115ea6f48 100644 --- a/dredd.yml +++ b/dredd.yml @@ -149,6 +149,7 @@ only: - Bitcoin > Get Transaction > Get Transaction - Bitcoin > Fee Per Kb > Fee Per Kb - Bitcoin > Sendrawtransaction > Sendrawtransaction +- Bitcoin > Decoderawtransaction > Decoderawtransaction - Bitcoin > Get Mempool Info > Get Mempool Info - Mempool > Get All Mempool Events > Get All Mempool Events - Mempool > Get Mempool Events By Name > Get Mempool Events By Name diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 4dba042866..ad5f1eba60 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -21,6 +21,7 @@ - Add sortable `get_price` and `give_price` fields in orders - Add sortable `price` field in dispensers - Fix `locked` in `asset_info` field +- Add `/v2/bitcoin/transaction/decode` route to proxy bitcoin `decoderawtransaction` method ## CLI From a0589621845248451d276fed384bbd2f96f33654 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 15:17:03 +0000 Subject: [PATCH 071/138] better fix; more tests --- apiary.apib | 4772 ++++++++--------- .../lib/messages/fairminter.py | 27 +- .../test/regtest/apidoc/apicache.json | 4336 ++++++++------- .../regtest/scenarios/scenario_18_utxo.py | 1 + .../scenarios/scenario_20_fairminter.py | 172 + 5 files changed, 4666 insertions(+), 4642 deletions(-) diff --git a/apiary.apib b/apiary.apib index b27694cb14..aea05fcd54 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-06 13:13:57.753084. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-06 15:16:14.669437. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 779, + "event_index": 793, "event": "NEW_BLOCK", "params": { - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_index": 223, - "block_time": 1730898820, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_index": 225, + "block_time": 1730906155, "difficulty": 545259519, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388" + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93" }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 773, - "result_count": 123 + "next_cursor": 787, + "result_count": 125 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 780, + "event_index": 794, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_index": 223, - "block_time": 1730898820, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_index": 225, + "block_time": 1730906155, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "fee": 0, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 774, - "result_count": 91 + "next_cursor": 788, + "result_count": 93 } ``` @@ -242,21 +242,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 781, + "event_index": 795, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "out_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": 597, @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 778, - "result_count": 123 + "next_cursor": 792, + "result_count": 125 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 777, - "result_count": 76 + "next_cursor": 791, + "result_count": 78 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 785, + "event_index": 799, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 223, - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 225, + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,12 +343,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 782, + "next_cursor": 796, "result_count": 80 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,12 +381,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 786, + "next_cursor": 800, "result_count": 101 } ``` @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 210, - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "quantity": 1000, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": "valid", - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "tx_index": 77, - "block_time": 1730898744, + "block_time": 1730906070, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_time": 1730898744 + "block_time": 1730906070 } ], "next_cursor": 533, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 214, - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_time": 1730898769 + "block_time": 1730906087 } ], "next_cursor": 715, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 199, - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "status": "valid", - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "tx_index": 65, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "block_time": 1730898695 + "block_time": 1730906012 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": "valid", - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "tx_index": 42, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "block_time": 1730898507 + "block_time": 1730905817 } ], "next_cursor": null, @@ -583,22 +583,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 769, + "event_index": 783, "event": "ASSET_CREATION", "params": { - "asset_id": "95428960586448133", - "asset_longname": "PARENTB.SUBASSETC", - "asset_name": "A95428960586448133", - "block_index": 221, - "block_time": 1730898808 + "asset_id": "95428959531084712", + "asset_longname": "PARENTA.SUBASSETC", + "asset_name": "A95428959531084712", + "block_index": 223, + "block_time": 1730906142 }, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_time": 1730898808 + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_time": 1730906142 } ], - "next_cursor": 746, - "result_count": 18 + "next_cursor": 776, + "result_count": 20 } ``` @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 770, + "event_index": 784, "event": "ASSET_ISSUANCE", "params": { - "asset": "A95428960586448133", + "asset": "A95428959531084712", "asset_events": "open_fairminter", - "asset_longname": "PARENTB.SUBASSETC", - "block_index": 221, + "asset_longname": "PARENTA.SUBASSETC", + "block_index": 223, "call_date": 0, "call_price": 0, "callable": false, @@ -622,26 +622,26 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "fair_minting": true, "fee_paid": 0, - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "status": "valid", "transfer": false, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_time": 1730898808, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_time": 1730898808 + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_time": 1730906142 } ], - "next_cursor": 763, - "result_count": 34 + "next_cursor": 777, + "result_count": 36 } ``` @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 200, "quantity": 1, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", "tag": "64657374726f79", - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "tx_index": 66, - "block_time": 1730898698, + "block_time": 1730906017, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "block_index": 200, - "block_time": 1730898698 + "block_time": 1730906017 } ], "next_cursor": 157, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 776, + "event_index": 790, "event": "OPEN_ORDER", "params": { - "block_index": 222, + "block_index": 224, "expiration": 21, - "expire_index": 243, + "expire_index": 245, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "status": "open", - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "tx_index": 89, - "block_time": 1730898812, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "tx_index": 91, + "block_time": 1730906146, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -734,9 +734,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": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "block_time": 1730898812 + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "block_time": 1730906146 } ], "next_cursor": 564, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "match_expire_index": 233, "status": "pending", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx0_block_index": 198, "tx0_expiration": 21, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "tx0_index": 64, - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "tx1_block_index": 213, "tx1_expiration": 21, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx1_index": 58, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_time": 1730898765 + "block_time": 1730906083 } ], "next_cursor": 521, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a" + "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0" }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 } ], "next_cursor": 707, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca" + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025" }, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "block_time": 1730898646 + "block_time": 1730905961 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 688, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "status": "expired" }, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_time": 1730898765 + "block_time": 1730906083 } ], "next_cursor": 511, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 191, "btc_amount": 2000, - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "tx_index": 57, - "block_time": 1730898646, + "block_time": 1730905961, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "block_time": 1730898646 + "block_time": 1730905961 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 197, - "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": "valid", - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "tx_index": 63, - "block_time": 1730898688 + "block_time": 1730906006 }, - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "block_index": 197, - "block_time": 1730898688 + "block_time": 1730906006 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 220, - "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "block_time": 1730898794 + "order_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "block_time": 1730906120 }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 } ], "next_cursor": 708, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 213, - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "block_time": 1730898765 + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "block_time": 1730906083 }, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_time": 1730898765 + "block_time": 1730906083 } ], "next_cursor": 487, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "satoshirate": 1, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": 0, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "tx_index": 68, - "block_time": 1730898704, + "block_time": 1730906034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 202, - "block_time": 1730898704 + "block_time": 1730906034 } ], "next_cursor": 272, @@ -1027,15 +1027,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": 599, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", + "destination": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", "dispense_quantity": 10, - "dispenser_tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", + "dispenser_tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "tx_hash": "677a178d9a141489737b81ca45aa667a2baef42efbab7405a430d10649e31e32", "tx_index": 31, - "block_time": 1730898458, + "block_time": 1730905773, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", + "tx_hash": "677a178d9a141489737b81ca45aa667a2baef42efbab7405a430d10649e31e32", "block_index": 144, - "block_time": 1730898458 + "block_time": 1730905773 } ], "next_cursor": null, @@ -1098,20 +1098,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": 600, @@ -1146,19 +1146,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": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "tx_index": 25, "value": 66600.0, - "block_time": 1730898417, + "block_time": 1730905738, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "block_time": 1730898417 + "block_time": 1730905738 } ], "next_cursor": 213, @@ -1174,13 +1174,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 768, + "event_index": 782, "event": "NEW_FAIRMINTER", "params": { - "asset": "A95428960586448133", - "asset_longname": "PARENTB.SUBASSETC", - "asset_parent": "PARENTB", - "block_index": 221, + "asset": "A95428959531084712", + "asset_longname": "PARENTA.SUBASSETC", + "asset_parent": "PARENTA", + "block_index": 223, "burn_payment": false, "description": "", "divisible": true, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "start_block": 0, "status": "open", - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_time": 1730898808, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_time": 1730906142, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,13 +1209,13 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_time": 1730898808 + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_time": 1730906142 } ], - "next_cursor": 762, - "result_count": 9 + "next_cursor": 775, + "result_count": 11 } ``` @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4" + "tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f" }, - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "block_index": 159, - "block_time": 1730898523 + "block_time": 1730905842 } ], "next_cursor": 155, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 159, "commission": 0, "earn_quantity": 80, - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "paid_quantity": 0, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "block_index": 159, - "block_time": 1730898523 + "block_time": 1730905842 } ], "next_cursor": 365, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 208, - "destination": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa:0", + "destination": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "status": "valid", - "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", "tx_index": 75, - "block_time": 1730898736, + "block_time": 1730906062, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", "block_index": 208, - "block_time": 1730898736 + "block_time": 1730906062 } ], "next_cursor": 616, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 207, - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "43e7c2c0f317b252725389920e482359189075b03ed94b5f69b61e032d1163e1:0", + "source": "7609339047671397e85abbf2b38a4c0ee63f6005a67007d2d2e672c4929b3716:0", "status": "valid", - "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", "tx_index": 74, - "block_time": 1730898732, + "block_time": 1730906058, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", "block_index": 207, - "block_time": 1730898732 + "block_time": 1730906058 } ], "next_cursor": 311, @@ -1370,19 +1370,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 787, + "event_index": 801, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 223, - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "block_index": 225, + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "msg_index": 1, "quantity": 2000000000, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", "status": "valid", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,12 +1392,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 784, + "next_cursor": 798, "result_count": 11 } ``` @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", + "source": "bcrt1qzycg25f6h3gxwcclpupwd823gc63ckk744hvlq", "status": "valid", - "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", + "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", "tx_index": 9, - "block_time": 1730898343, + "block_time": 1730905672, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", + "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", "block_index": 121, - "block_time": 1730898343 + "block_time": 1730905672 } ], "next_cursor": 65, @@ -1465,7 +1465,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `223` (str, optional) - The index of the most recent block to return + + cursor: `225` (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` @@ -1482,68 +1482,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", "difficulty": 545259519, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, "confirmed": true }, { - "block_index": 222, - "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", - "block_time": 1730898812, - "previous_block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", + "block_index": 224, + "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", + "block_time": 1730906146, + "previous_block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", "difficulty": 545259519, - "ledger_hash": "50b0eb6caea691c2981c7ca1a6781038786c9c763cd7df828aac1a866ce65842", - "txlist_hash": "b60b5bd37d63aae124e8fae2fd3eadaf9d1477056b35dda5abf8f31906ef045b", - "messages_hash": "8a2393350121ebdd03181d86762ce0eac115cea857a0b297fff444cd09933d05", + "ledger_hash": "db8e027dd6b147edebec923946d984e54eef9e9eeffbabfb05ccddd0dbff9d7c", + "txlist_hash": "3afb2af6aaba6eac5e3fab1b35f19fea392f66bc90f6b4e3d585c31efdc59be9", + "messages_hash": "40440a08e5d7b6b9c0dbc7a6c62df54c4c8e0a27fef72e6e30ee53e027e1ed23", "transaction_count": 1, "confirmed": true }, { - "block_index": 221, - "block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", - "block_time": 1730898808, - "previous_block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", + "block_index": 223, + "block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", + "block_time": 1730906142, + "previous_block_hash": "46ce0849603be656d68f46a16a179a155a175ad11a18b255f4672bfbd3f2e9ea", "difficulty": 545259519, - "ledger_hash": "921556d15aa22775a407bdb2ddae1340ba9d05627ba52e68f923d1da8d19dd32", - "txlist_hash": "48b1b772b588d367c6f93a95cf77a01dd2b6522b48ade863da4989ad23f40125", - "messages_hash": "e45f2bb3efd8a2c26d8dea423458b6a5eefbdf97154a6e9e53ab1cf307042e79", + "ledger_hash": "2c4b7d55681e56e5fb275a84f4fa1760baab6163d0f1dc7d80fec7b5f2eae6ce", + "txlist_hash": "36fa529b7a26e7df55dc798b0eed4bb90646cb55b0a2f39ec8592cbcf2e05acb", + "messages_hash": "31854994c766044c9ba5a672cf5a84172949df111aae9c4ebf1058496f5beeaf", "transaction_count": 1, "confirmed": true }, { - "block_index": 220, - "block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", - "block_time": 1730898794, - "previous_block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", + "block_index": 222, + "block_hash": "46ce0849603be656d68f46a16a179a155a175ad11a18b255f4672bfbd3f2e9ea", + "block_time": 1730906129, + "previous_block_hash": "64db2126788c40ef5a1842177fb98f11d026dab4b1514f5bc887eb1fef1cd0de", "difficulty": 545259519, - "ledger_hash": "3a3bcf0fe193fed2da2edbf1249f1e2039a9ff5c42f5800cb0c018478e87bedf", - "txlist_hash": "a46d10f1ded5d41459f29f158547521b309044b50994ff95248225c852c251ac", - "messages_hash": "5c9c6bececd7ca2915376470ba0c216344d4f5649cc9c94703d71fe641b1c889", + "ledger_hash": "e1cfd7ea41bfb2e0aaacc9e776fd577c15083cf1b75fb2146de7982988d38085", + "txlist_hash": "780c39f307acf790a3a5b06d1e9f5bcea84a04d5e9c694847c51f49930dba190", + "messages_hash": "9e68f027f4f324ff79b95920277452a6abf454adfcf10f800b0e33ccb2d61ab0", "transaction_count": 1, "confirmed": true }, { - "block_index": 219, - "block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", - "block_time": 1730898790, - "previous_block_hash": "41debd881d6501feb35a5b16f192e8d6c1ff4bfec922ad9bd666d277685c9aba", + "block_index": 221, + "block_hash": "64db2126788c40ef5a1842177fb98f11d026dab4b1514f5bc887eb1fef1cd0de", + "block_time": 1730906124, + "previous_block_hash": "026f348d19222d397be10059627e2a16d4604b10c9ce5fcae1a750fe92280a1a", "difficulty": 545259519, - "ledger_hash": "12f9cb1cf9633d79cc0121d9cfe50f8652d1fa6f74cc93b8293098c5b0fb928a", - "txlist_hash": "519c1de30fbedf96677528be9dc75d2acff5273e4065a097c8c674b042d437f7", - "messages_hash": "23cb022018309ef70abf974578425962b684da32d2a897ab76a94be5b0c899f9", + "ledger_hash": "27925de3db6f9fb31c4a1460b53b9ee27de5299020dd6039f272fb641aabfc45", + "txlist_hash": "7a4fca92d16865a72cb54f73ea492f060495d4a4db308af3d8d3b4069f8a4a75", + "messages_hash": "db10e59dd4281c7299781c3960cf34ee9d253ea88876ebb6774c15be01374aea", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 218, - "result_count": 123 + "next_cursor": 220, + "result_count": 125 } ``` @@ -1562,7 +1562,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (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. @@ -1573,14 +1573,14 @@ Return the information of a block ``` { "result": { - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", "difficulty": 545259519, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f` (str, required) - The index of the block to return + + block_hash: `5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a` (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,14 +1603,14 @@ Return the information of a block ``` { "result": { - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", "difficulty": 545259519, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, "confirmed": true } @@ -1622,8 +1622,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return - + cursor: `90` (str, optional) - The last transaction index to return + + block_index: `225` (int, required) - The index of the block to return + + cursor: `92` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1640,18 +1640,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1673,10 +1673,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1693,43 +1693,43 @@ Returns the events of a block { "result": [ { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null }, { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1740,18 +1740,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1786,10 +1786,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" } ], - "next_cursor": 787, + "next_cursor": 801, "result_count": 14 } ``` @@ -1799,7 +1799,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (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 @@ -1847,7 +1847,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (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` @@ -1866,19 +1866,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1888,22 +1888,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1913,32 +1913,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" } ], "next_cursor": null, @@ -1951,7 +1951,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2000,17 +2000,17 @@ Returns the credits of a block { "result": [ { - "block_index": 223, - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "block_index": 225, + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2021,17 +2021,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 223, + "block_index": 225, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2042,21 +2042,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 223, + "block_index": 225, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2073,7 +2073,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2111,17 +2111,17 @@ Returns the debits of a block { "result": [ { - "block_index": 223, + "block_index": 225, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2132,21 +2132,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 223, + "block_index": 225, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "object_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "block_index": 220, "confirmed": true, - "block_time": 1730898794 + "block_time": 1730906120 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "status": "valid", "confirmed": true, - "block_time": 1730898688 + "block_time": 1730906006 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 66, - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "block_index": 200, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730898698, + "block_time": 1730906017, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2284,7 +2284,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `221` (int, required) - The index of the block to return + + block_index: `223` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2315,15 +2315,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "block_index": 223, + "asset": "A95428959531084712", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -2331,14 +2331,14 @@ Returns the issuances of a block "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "PARENTA.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -2353,7 +2353,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (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 @@ -2371,11 +2371,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2395,11 +2395,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2429,7 +2429,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `223` (int, required) - The index of the block to return + + block_index: `225` (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 @@ -2447,29 +2447,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -2548,7 +2548,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `221` (int, required) - The block index of the fairminter to return + + block_index: `223` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2573,13 +2573,13 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_index": 223, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428959531084712", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "block_hash": "0b12af3823f4c844f47dcaa84a0c4948e7daf8eb4e56ad2e79a964cd7af20dd8", - "block_time": 1730898417, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_hash": "26b313116086dd6970d8da3c324bbc3aedde08597a09dd700a4e3a00cc23516c", + "block_time": 1730905738, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7:1 2 ", + "utxos_info": " eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "block_hash": "3de2d8917df39ee170e970a5e5b4bb85e365bd6378189dc6078c90b821c12e13", - "block_time": 1730898646, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "1645f6417eeb47b65497a39787fb239b2685c91d8ac95a99841625c3357ff334", + "block_time": 1730905961, + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "btc_amount": 2000, "fee": 10000, - "data": "0b39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "data": "0bf18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af65c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "supported": true, - "utxos_info": " 1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868:0 3 1", + "utxos_info": " 4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "block_index": 197, - "block_hash": "36b3406b8a66106c420de68bb68a4494382fda63649afc5d968528069130fb62", - "block_time": 1730898688, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "5561cc63342f4e2cb11d07988da7bea3a7ec763a169b8f5b3484a348ed0d4075", + "block_time": 1730906006, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "data": "464919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "supported": true, - "utxos_info": " ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89:1 2 ", + "utxos_info": " 728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 66, - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "block_index": 200, - "block_hash": "126e67da545e43c381c275e8c3a925df9c160a2da05635d85699e228982e2c54", - "block_time": 1730898698, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "block_hash": "731f8822149bc38969450bbd3bab9cacb03a4ed099e18f0cc0e99321286ebec0", + "block_time": 1730906017, + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "9cabb396047dd7241313f9131a4b5a7e3f7a7a9213c360840ade79881132ce8c:1 79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 2 ", + "utxos_info": "39f0d0fc72bfcb9e98652999930ff9f115dd25b2f28cfa6464726895a9f1604c:1 450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 202, - "block_hash": "3cefda465642e6950410081f78c82cc5ea312c1db554802d891858b8174c14cf", - "block_time": 1730898704, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "1ed0e83ad32b9e691ec9704d6f4526fa3fe1e1992073d5580873fec49e4c627e", + "block_time": 1730906034, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f:1 2 ", + "utxos_info": " e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2878,18 +2878,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "block_hash": "2c560e60a6794b86a16e39e0cc5dbddfc792a2f8435a9b3a946fbb3fe39f3e5f", - "block_time": 1730898507, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "135bb523e4587f5e584830059a5195e07d01b5213cb6ac72a206809d74aec7a0", + "block_time": 1730905817, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c:1 2 ", + "utxos_info": " baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2956,25 +2956,25 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", - "block_time": 1730898808, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", + "block_time": 1730906142, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "5a5355424153534554437c504152454e54427c307c317c3130307c307c307c307c307c307c307c307c307c307c307c317c", + "data": "5a5355424153534554437c504152454e54417c307c317c3130307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb:1 2 ", + "utxos_info": " c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, "message_data": { "asset": "SUBASSETC", - "asset_parent": "PARENTB", + "asset_parent": "PARENTA", "price": 0, "quantity_by_price": 1, "max_mint_per_tx": 100, @@ -3008,18 +3008,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 89, - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", - "block_time": 1730898812, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "tx_index": 91, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", + "block_time": 1730906146, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096:1 2 ", + "utxos_info": " 2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3035,7 +3035,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -3062,17 +3062,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", - "block_time": 1730898744, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", + "block_time": 1730906070, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "supported": true, - "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", + "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3080,12 +3080,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -3103,17 +3103,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_hash": "3d736d00b47d164c3591fed8490ab8c61ac4853a494cf0deb3773bd0fb8c8abc", - "block_time": 1730898769, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "block_hash": "4315c34905e78101728bca60d0ccafb873ae0b3138df8534a5e8058151daf6df", + "block_time": 1730906087, + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e:0 4 ", + "utxos_info": " 7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3121,14 +3121,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -3136,7 +3136,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3162,23 +3162,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "block_hash": "5f65278abfaf5d60d9df0fd77e984b88e8a8f3a3d80206451cde23cd412d54d8", - "block_time": 1730898695, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "block_hash": "549b622d3dcac1812ea5c8e22dca97da17e79ef850470df51443c491dccf6275", + "block_time": 1730906012, + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480cb84369aaa777801d6d572f0dde4294cbf91d44f017377656570206d7920617373657473", + "data": "0480bedceb28862d85cfa2f543d6e7ef2c932e8006f3017377656570206d7920617373657473", "supported": true, - "utxos_info": " 50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3:1 2 ", + "utxos_info": " 3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "memo": "sweep my assets" } @@ -3194,17 +3194,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", "block_index": 208, - "block_hash": "24e28eb0305c3e0231bfec603863aa5ff3198ba5e2d21915939d86afc6f7f037", - "block_time": 1730898736, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "block_hash": "622ff03df608489d9781dfccfc9d5df437f7c36fb8eb33b4494a30c913576381", + "block_time": 1730906062, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "btc_amount": 546, - "fee": 10000, + "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa:0 3 1", + "utxos_info": " d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3216,7 +3216,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -3234,17 +3234,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", "block_index": 207, - "block_hash": "1371d6e031b8bbef4ccd6180ff2de69497eca7c35765c8f0dfa02f1a111cf662", - "block_time": 1730898732, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "block_hash": "0591938f96d374fcc2d3d125fbe05b20f993bfd40fea862fb2a43933b3db0bbd", + "block_time": 1730906058, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "43e7c2c0f317b252725389920e482359189075b03ed94b5f69b61e032d1163e1:0 fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f:1 2 ", + "utxos_info": "7609339047671397e85abbf2b38a4c0ee63f6005a67007d2d2e672c4929b3716:0 5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3263,7 +3263,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `90` (str, optional) - The index of the most recent transactions to return + + cursor: `92` (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` @@ -3280,18 +3280,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3303,18 +3303,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 89, - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", - "block_time": 1730898812, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "tx_index": 91, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", + "block_time": 1730906146, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096:1 2 ", + "utxos_info": " 2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3330,7 +3330,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -3349,8 +3349,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 88, - "result_count": 91 + "next_cursor": 90, + "result_count": 93 } ``` @@ -3359,7 +3359,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106cd955517616e0c584adfe5bb2a14ea5690f8cd94b6f4165fa3cd8388c8ac85060000000000ffffffffdf544dae99046d52bfe00ee970090a9e5d1b82e902e41e0fa5e6b77dfb6a190d0000000000ffffffff322d7b8bfaa3dddc763da6ccaf27f9ebac18c16f72292051848dea08c729afee0000000000ffffffffa2fedd6847dde20c534d8bf99d1650415de2f4a1a3b3af0deff81f31d01095500000000000ffffffff55efd04385a547c293a24327b5555f2365a0259d4c03af3f17cb00bff0c020600000000000ffffffff151ba7ebe2228badc209400c38bfc61feb4c90769496758ef2cf2b86d7c1d0280000000000ffffffff04e80300000000000069512102eae04b7fae4b06bd25d5ad9737045b679610f802d3a3b7b607a8ac83f0ec5c9a21030d6ce6956533c554e8f0b0830b00fc2a85aba464e355af852411d14d983236442103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953aee80300000000000069512102eae04b7fae4b06bd25d77b41c53760d275ad4bb4fae0aa7c813af1c34e74019a210307d966f155ec99974ed766c88e9341262ea73141660fbf05e5d5e7d732454eb02103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953aee80300000000000069512103c4e04b7fae4b06bd25d6add4b7c7bd365ce1f40d2eaf2208e95fd1ae2b196e21210387d966fa932d881ee6d766c88e9341267ca73141660fbf05ef95e7d732454e232103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae387923fc060000001600148866238a1b690fe23cd7db55f93c555a4c161e320247304402204e78e6c2d67a3f18feb9586c86f41ae654c83a6d9fd405799258b4615cec4ca6022079636bb1c4e9012125cd208ca6400a17ee20cb05c3b6ba74d7b0105b94429bcc012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9024730440220372f18faa11db76488c63d41b0140e7620a87a08f35ae59bb34aea965e2db853022006a41f594f0f55adb737870a5b0db7baad51f98e2e3f399a4af8b7e94a565e46012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f90247304402202ecc1d77c8a97e8bd7f38a50e523d33ea77ddd1f1ae4ffbcf50907f9c1499f6d022076fdcfd3ebfcf9cd48ecb85f05b4cf3a11bb6f4ec6a7c76b048b635e1e332d86012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f902473044022003a165ddb344b3e95ae53cfb2583a04e3f824c541be5925f1b15765a635b26bb02204b614b91b6884ef95e97594637b3150545ef4e8bd5994083878b678c7616fbad012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f90247304402203546a8bea60a68d32dbd0e0d84eaf7665990103b273b88870528d02e5216fb620220497630e159a901a0c8de9303c2cceb85a4ca707941b848b345c9061fedac3ebb012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f90247304402202ee2bbd715c5798e9f4c98e1959922d890ef5e814838c6fd59962792cf65fb830220213a6bd58397f93abe93766a2dd029ea8d4f600ef0ef0ab7b7d4f22bdd5ab60a012103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f900000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001018984181aedc7d948dce288cb8052f8f3c45e5154d46e68a4b253d13cb0d70a450000000000ffffffff020000000000000000306a2e2db78e0c43a874157feee9f8071788af90dc7018bd42008ff81cbdd5e9af401858aff1117a5cf87cd93025ca5350f0ca052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900247304402204016eb416606e8386d75ba2d748caaa9f2c4f8e435bf6216a41d6ddcbb99290e02203df8926228ea55445e5225647cb2b939537acd30c63484c5a9e7e21823f99884012102adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc900000000` (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. @@ -3372,53 +3372,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "cd955517616e0c584adfe5bb2a14ea5690f8cd94b6f4165fa3cd8388c8ac8506", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "df544dae99046d52bfe00ee970090a9e5d1b82e902e41e0fa5e6b77dfb6a190d", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "322d7b8bfaa3dddc763da6ccaf27f9ebac18c16f72292051848dea08c729afee", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a2fedd6847dde20c534d8bf99d1650415de2f4a1a3b3af0deff81f31d0109550", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "55efd04385a547c293a24327b5555f2365a0259d4c03af3f17cb00bff0c02060", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "151ba7ebe2228badc209400c38bfc61feb4c90769496758ef2cf2b86d7c1d028", + "hash": "8984181aedc7d948dce288cb8052f8f3c45e5154d46e68a4b253d13cb0d70a45", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3427,75 +3392,39 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 1000, - "script_pub_key": "512102eae04b7fae4b06bd25d5ad9737045b679610f802d3a3b7b607a8ac83f0ec5c9a21030d6ce6956533c554e8f0b0830b00fc2a85aba464e355af852411d14d983236442103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" - }, - { - "value": 1000, - "script_pub_key": "512102eae04b7fae4b06bd25d77b41c53760d275ad4bb4fae0aa7c813af1c34e74019a210307d966f155ec99974ed766c88e9341262ea73141660fbf05e5d5e7d732454eb02103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" - }, - { - "value": 1000, - "script_pub_key": "512103c4e04b7fae4b06bd25d6add4b7c7bd365ce1f40d2eaf2208e95fd1ae2b196e21210387d966fa932d881ee6d766c88e9341267ca73141660fbf05ef95e7d732454e232103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" + "value": 0, + "script_pub_key": "6a2e2db78e0c43a874157feee9f8071788af90dc7018bd42008ff81cbdd5e9af401858aff1117a5cf87cd93025ca5350" }, { - "value": 29999987000, - "script_pub_key": "00148866238a1b690fe23cd7db55f93c555a4c161e32" + "value": 4999990000, + "script_pub_key": "0014d097e944fad2678d53bd0a94f2f5dfd5a49c4490" } ], "vtxinwit": [ - "304402204e78e6c2d67a3f18feb9586c86f41ae654c83a6d9fd405799258b4615cec4ca6022079636bb1c4e9012125cd208ca6400a17ee20cb05c3b6ba74d7b0105b94429bcc01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "30440220372f18faa11db76488c63d41b0140e7620a87a08f35ae59bb34aea965e2db853022006a41f594f0f55adb737870a5b0db7baad51f98e2e3f399a4af8b7e94a565e4601", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "304402202ecc1d77c8a97e8bd7f38a50e523d33ea77ddd1f1ae4ffbcf50907f9c1499f6d022076fdcfd3ebfcf9cd48ecb85f05b4cf3a11bb6f4ec6a7c76b048b635e1e332d8601", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "3044022003a165ddb344b3e95ae53cfb2583a04e3f824c541be5925f1b15765a635b26bb02204b614b91b6884ef95e97594637b3150545ef4e8bd5994083878b678c7616fbad01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "304402203546a8bea60a68d32dbd0e0d84eaf7665990103b273b88870528d02e5216fb620220497630e159a901a0c8de9303c2cceb85a4ca707941b848b345c9061fedac3ebb01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "304402202ee2bbd715c5798e9f4c98e1959922d890ef5e814838c6fd59962792cf65fb830220213a6bd58397f93abe93766a2dd029ea8d4f600ef0ef0ab7b7d4f22bdd5ab60a01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" + "304402204016eb416606e8386d75ba2d748caaa9f2c4f8e435bf6216a41d6ddcbb99290e02203df8926228ea55445e5225647cb2b939537acd30c63484c5a9e7e21823f9988401", + "02adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc9" ], "lock_time": 0, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", - "tx_id": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8" + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", + "tx_id": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "divisible": true, + "locked": false }, - { - "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] + "quantity_normalized": "0.00001000" + } }, "btc_amount_normalized": "0.00000000" } @@ -3507,7 +3436,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb` (str, required) - Transaction hash + + tx_hash: `2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21` (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. @@ -3518,18 +3447,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6b65f00172eaa1e413172fbfc3e96fdab3b2dd37f5d8be9af578f3582bdde379", + "hash": "68a8bbe346300d7f6d0089492d3bf12ab457f583c566615fc345de4550810b45", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3539,20 +3468,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e802cc64f2ff3672fdfce4c17c8387d39625bf0027ca63ec6e99e7d0bcbe992c6e2d7c870c0bd251acfcbbb9b92dd" + "script_pub_key": "6a2ebb88df87a9fd11e68aeba004e3b85212a967bd23e68a3e5fc8162b62a198e5aa2b496e79a348352cea8c6fd9d119" }, { "value": 4949930546, - "script_pub_key": "0014cb84369aaa777801d6d572f0dde4294cbf91d44f" + "script_pub_key": "0014bedceb28862d85cfa2f543d6e7ef2c932e8006f3" } ], "vtxinwit": [ - "304402200d48445154c4792d883d61c85df920b1c73006420c9dd956f7b5d98b683121aa02201f7a53bb97d9b052905a7baec0ee819893f57090a8302317ff6b8efe959bd7c201", - "028bf1a844374d601cebb7bb76f8534dfc66b13cd6c2ab56ef54ec474c9527acb6" + "304402206c3d516f7075766513142483c9fe2cb08e21b8a4cdc3ad8d012d28136218800902204cda02acf453e6b4dc04aa2e86668d8cd84904dbd7d733e977f1405b30ca2dd201", + "03e4432bd29fd60c4b9082476b3870aca590471ffd5d06ea55d0fad759214ce474" ], "lock_time": 0, - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_id": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb" + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_id": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3560,7 +3489,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -3609,7 +3538,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `90` (int, required) - The index of the transaction + + tx_index: `92` (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. @@ -3620,18 +3549,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3650,7 +3579,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction + + tx_hash: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e` (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. @@ -3661,18 +3590,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3691,7 +3620,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `90` (int, required) - The index of the transaction to return + + tx_index: `92` (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 @@ -3711,32 +3640,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3747,20 +3676,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3770,24 +3699,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3797,24 +3726,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 787, + "event_index": 801, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 223, - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "block_index": 225, + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "msg_index": 1, "quantity": 2000000000, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", "status": "valid", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3824,12 +3753,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 786, + "next_cursor": 800, "result_count": 12 } ``` @@ -3839,10 +3768,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction to return + + tx_hash: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3859,32 +3788,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3895,20 +3824,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3918,24 +3847,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3945,24 +3874,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 787, + "event_index": 801, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 223, - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "block_index": 225, + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "msg_index": 1, "quantity": 2000000000, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", "status": "valid", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3972,12 +3901,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 786, + "next_cursor": 800, "result_count": 12 } ``` @@ -3987,7 +3916,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction to return + + tx_hash: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e` (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 @@ -4005,11 +3934,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4017,7 +3946,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4029,11 +3958,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4041,11 +3970,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4063,7 +3992,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction to return + + tx_hash: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e` (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 @@ -4081,29 +4010,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4118,7 +4047,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4140,9 +4069,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `90` (int, required) - The index of the transaction to return + + tx_index: `92` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4159,19 +4088,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4181,24 +4110,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4208,36 +4137,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": null, @@ -4250,9 +4179,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The hash of the transaction to return + + tx_hash: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4269,19 +4198,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4291,24 +4220,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4318,36 +4247,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": null, @@ -4362,7 +4291,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs,bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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 @@ -4386,7 +4315,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4396,7 +4325,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4407,7 +4336,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4417,7 +4346,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4428,7 +4357,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4438,7 +4367,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4449,7 +4378,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4459,7 +4388,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4470,7 +4399,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4480,7 +4409,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4497,8 +4426,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - Comma separated list of addresses to return - + cursor: `90` (str, optional) - The last transaction index to return + + addresses: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs,bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (str, required) - Comma separated list of addresses to return + + cursor: `92` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4516,17 +4445,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_hash": "3d736d00b47d164c3591fed8490ab8c61ac4853a494cf0deb3773bd0fb8c8abc", - "block_time": 1730898769, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "block_hash": "4315c34905e78101728bca60d0ccafb873ae0b3138df8534a5e8058151daf6df", + "block_time": 1730906087, + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e:0 4 ", + "utxos_info": " 7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4534,14 +4463,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4549,7 +4478,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4568,17 +4497,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_hash": "55ee08d2ac5ed1cc1fe953521fd43be001432636fed97fe117ee619ac3f3ab8b", - "block_time": 1730898765, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "block_hash": "22ea83f1c95fc9e33b70e3f00ee5db5260307113ef32624a93d7a8c8db7c32f7", + "block_time": 1730906083, + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f3c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e:0 4 ", + "utxos_info": " c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4586,14 +4515,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4601,7 +4530,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4620,17 +4549,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", - "block_time": 1730898762, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "6ba7abfdc2740592b3e70e3657b356ee9aa38b6788633ce26480f91bceade822", + "block_time": 1730906079, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", + "utxos_info": " 980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4638,14 +4567,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4653,7 +4582,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4672,17 +4601,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", - "block_time": 1730898757, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "107fbd312058741b650cbd9a974365dfd0b2e06a63d3295400a9f04528856ca0", + "block_time": 1730906074, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", + "utxos_info": " 00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4690,14 +4619,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4705,7 +4634,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4724,17 +4653,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", - "block_time": 1730898744, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", + "block_time": 1730906070, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "supported": true, - "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", + "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4742,12 +4671,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4767,10 +4696,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs,bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4791,28 +4720,28 @@ Returns the events of a list of addresses "event": "ORDER_EXPIRATION", "params": { "block_index": 220, - "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "block_time": 1730898794 + "order_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "block_time": 1730906120 }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 }, { "event_index": 760, "event": "CREDIT", "params": { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "block_index": 220, "calling_function": "cancel order", - "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "event": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730898794, + "block_time": 1730906120, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4822,9 +4751,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 }, { "event_index": 716, @@ -4832,15 +4761,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 214, - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4850,9 +4779,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_time": 1730898769 + "block_time": 1730906087 }, { "event_index": 715, @@ -4860,27 +4789,27 @@ Returns the events of a list of addresses "params": { "asset": "MPMASSET", "block_index": 214, - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_time": 1730898769 + "block_time": 1730906087 } ], "next_cursor": 714, @@ -4893,7 +4822,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz,bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7,bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp` (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 @@ -4909,18 +4838,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "quantity": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4930,22 +4859,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4955,22 +4884,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", - "block_index": 223, - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "block_index": 225, + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4980,30 +4909,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730898824.7521684, + "block_time": 1730906159.3902285, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "destination": "", "fee": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, - "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, + "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -5017,7 +4946,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -5030,7 +4959,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -5050,7 +4979,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5058,14 +4987,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5073,14 +5002,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5088,14 +5017,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -5110,7 +5039,7 @@ Returns the balances of an address "quantity_normalized": "825.99965000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5118,7 +5047,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5135,7 +5064,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -5148,7 +5077,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -5173,7 +5102,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5223,16 +5152,16 @@ Returns the credits of an address "result": [ { "block_index": 214, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "event": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5244,16 +5173,16 @@ Returns the credits of an address }, { "block_index": 213, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "event": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5265,16 +5194,16 @@ Returns the credits of an address }, { "block_index": 213, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "event": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5286,16 +5215,16 @@ Returns the credits of an address }, { "block_index": 211, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "event": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5307,20 +5236,20 @@ Returns the credits of an address }, { "block_index": 209, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", + "event": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898740, + "block_time": 1730906066, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5337,7 +5266,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5376,16 +5305,16 @@ Returns the debits of an address "result": [ { "block_index": 212, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "event": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5397,20 +5326,20 @@ Returns the debits of an address }, { "block_index": 212, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "event": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5418,16 +5347,16 @@ Returns the debits of an address }, { "block_index": 211, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "event": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5439,20 +5368,20 @@ Returns the debits of an address }, { "block_index": 211, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "event": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5460,20 +5389,20 @@ Returns the debits of an address }, { "block_index": 210, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "event": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898744, + "block_time": 1730906070, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5490,7 +5419,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address of the feed + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5525,7 +5454,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -5544,9 +5473,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", + "tx_hash": "5923d6c82239efc9e2bbc657d5f0dda18e8b690ad30674893918fccb97bb500a", "block_index": 137, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5554,7 +5483,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898413, + "block_time": 1730905734, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5568,7 +5497,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -5587,14 +5516,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "8fe6de4ce0b7f483efb269b49c145c96bd129fb037c8c90fdecaa5c597b24b17", + "tx_hash": "b36e7e917e74ea938cfcac1c37dd0355f396d3443e0b1fc7df27af92b50dd670", "block_index": 112, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730898296, + "block_time": 1730905642, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5609,7 +5538,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -5628,10 +5557,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5639,7 +5568,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5652,10 +5581,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5663,11 +5592,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5676,10 +5605,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5687,11 +5616,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5700,10 +5629,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5711,7 +5640,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5724,10 +5653,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5735,11 +5664,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5757,7 +5686,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m` (str, required) - The address to return + + address: `bcrt1qmwfg0570lrsulrlj95j86ujdpwp4tc6gl6vvsq` (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 @@ -5776,10 +5705,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "9cabb396047dd7241313f9131a4b5a7e3f7a7a9213c360840ade79881132ce8c", + "tx_hash": "39f0d0fc72bfcb9e98652999930ff9f115dd25b2f28cfa6464726895a9f1604c", "block_index": 151, - "source": "8816f586e3586a6ffe38bb114f1f022f738630f3f70b7addb798e06d08a9a5ce:0", - "destination": "bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m", + "source": "800249e2b33e671e153852fbf8e12c05e1d164ade16e968d23cfbba4ed3a54d8:0", + "destination": "bcrt1qmwfg0570lrsulrlj95j86ujdpwp4tc6gl6vvsq", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5787,11 +5716,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898493, + "block_time": 1730905800, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5809,7 +5738,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + asset: `FREEFAIRMINT` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5837,7 +5766,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m` (str, required) - The address to return + + address: `bcrt1qmwfg0570lrsulrlj95j86ujdpwp4tc6gl6vvsq` (str, required) - The address to return + asset: `FREEFAIRMINT` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5865,7 +5794,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5894,9 +5823,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5905,7 +5834,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5916,7 +5845,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5933,9 +5862,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5944,7 +5873,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5955,11 +5884,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5981,7 +5910,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -5994,9 +5923,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6005,7 +5934,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6016,7 +5945,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6039,7 +5968,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -6059,19 +5988,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", + "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6079,7 +6008,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6094,11 +6023,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6108,19 +6037,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6128,7 +6057,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6143,7 +6072,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6157,19 +6086,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6177,7 +6106,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6192,7 +6121,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6214,7 +6143,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address to return + + address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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 @@ -6234,19 +6163,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", + "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6183,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6269,11 +6198,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6283,19 +6212,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6303,7 +6232,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6318,7 +6247,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6332,19 +6261,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6352,7 +6281,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6367,7 +6296,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6389,7 +6318,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -6410,19 +6339,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6430,7 +6359,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6445,7 +6374,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6459,19 +6388,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6479,7 +6408,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6494,7 +6423,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6516,7 +6445,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address to return + + address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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` @@ -6537,19 +6466,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6557,7 +6486,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6572,7 +6501,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6586,19 +6515,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6606,7 +6535,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6621,7 +6550,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6643,7 +6572,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz` (str, required) - The address to return + + address: `bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7` (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 @@ -6662,16 +6591,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -6685,7 +6614,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6717,14 +6646,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", + "tx_hash": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", "msg_index": 0, "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6739,20 +6668,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898740, + "block_time": 1730906066, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "5a7af4a1e2d6735e874e2271f8ba9f34cf2ff6b08b43ce63342239cc0eaf7d85", + "tx_hash": "7a840c983808f779b2ddf3adbca3765fe7ece6d67e62d6ccf6b0d42466c4fd3c", "msg_index": 0, "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6767,20 +6696,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898549, + "block_time": 1730905864, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "afc31bab261d3338b6b1168b9682b0d2e012330502e350c8dc90093651ba244b", + "tx_hash": "68f9e4a07c450faf7e324387b98333b51d2a4e3c9a9a912971bfa3149a171481", "msg_index": 0, "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6795,20 +6724,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730898544, + "block_time": 1730905859, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "5df52d08f42b3f10fd555d494df49b6799e67fa12a5d889ad77222366d8dcb56", + "tx_hash": "559b805057fb143b4dfc4aeaba418dbc306507ce6be277966d794acb7103ac5a", "msg_index": 0, "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6823,20 +6752,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898541, + "block_time": 1730905856, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "de3cf70c12d0136d2c4c5abbaf5d5a69ec3b68f2d6861e9531f41ce54e04df22", + "tx_hash": "b6cb783e15faeee05c5749963a0faf709ba8f790441646ee1465290f3272d6cf", "msg_index": 0, "block_index": 162, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6851,7 +6780,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898537, + "block_time": 1730905853, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6866,7 +6795,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The issuer or owner to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6889,8 +6818,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -6898,16 +6827,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -6915,16 +6844,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 180, @@ -6932,16 +6861,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730898516, - "last_issuance_block_time": 1730898523, + "first_issuance_block_time": 1730905825, + "last_issuance_block_time": 1730905842, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -6949,16 +6878,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730898481, - "last_issuance_block_time": 1730898481, + "first_issuance_block_time": 1730905788, + "last_issuance_block_time": 1730905788, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 40, @@ -6966,8 +6895,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730898407, - "last_issuance_block_time": 1730898410, + "first_issuance_block_time": 1730905727, + "last_issuance_block_time": 1730905730, "supply_normalized": "0.00000040" } ], @@ -6981,7 +6910,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The issuer to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -7004,8 +6933,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -7013,16 +6942,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -7030,16 +6959,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 180, @@ -7047,16 +6976,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730898516, - "last_issuance_block_time": 1730898523, + "first_issuance_block_time": 1730905825, + "last_issuance_block_time": 1730905842, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -7064,16 +6993,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730898481, - "last_issuance_block_time": 1730898481, + "first_issuance_block_time": 1730905788, + "last_issuance_block_time": 1730905788, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 40, @@ -7081,8 +7010,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730898407, - "last_issuance_block_time": 1730898410, + "first_issuance_block_time": 1730905727, + "last_issuance_block_time": 1730905730, "supply_normalized": "0.00000040" } ], @@ -7096,7 +7025,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The owner to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7119,8 +7048,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -7128,16 +7057,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -7145,16 +7074,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 180, @@ -7162,16 +7091,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730898516, - "last_issuance_block_time": 1730898523, + "first_issuance_block_time": 1730905825, + "last_issuance_block_time": 1730905842, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -7179,16 +7108,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730898481, - "last_issuance_block_time": 1730898481, + "first_issuance_block_time": 1730905788, + "last_issuance_block_time": 1730905788, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 40, @@ -7196,8 +7125,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730898407, - "last_issuance_block_time": 1730898410, + "first_issuance_block_time": 1730905727, + "last_issuance_block_time": 1730905730, "supply_normalized": "0.00000040" } ], @@ -7211,8 +7140,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return - + cursor: `90` (str, optional) - The last transaction index to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + + cursor: `92` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7230,17 +7159,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", - "block_time": 1730898762, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "6ba7abfdc2740592b3e70e3657b356ee9aa38b6788633ce26480f91bceade822", + "block_time": 1730906079, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", + "utxos_info": " 980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7248,14 +7177,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7263,7 +7192,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7282,17 +7211,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", - "block_time": 1730898757, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "107fbd312058741b650cbd9a974365dfd0b2e06a63d3295400a9f04528856ca0", + "block_time": 1730906074, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", + "utxos_info": " 00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7300,14 +7229,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7315,7 +7244,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7334,17 +7263,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", - "block_time": 1730898744, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", + "block_time": 1730906070, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "supported": true, - "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", + "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7352,12 +7281,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7368,17 +7297,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", + "tx_hash": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", "block_index": 209, - "block_hash": "7c515a6e0922fe0def0d949bf564cfe18c524a326a51d16417e5c82c01f526ca", - "block_time": 1730898740, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "6b2f723cb4f3adaaf624bb7ca9e4de149392645cd8cbcfd379ceaa9b9eac9bfa", + "block_time": 1730906066, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db:1 2 ", + "utxos_info": " ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7403,17 +7332,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 202, - "block_hash": "3cefda465642e6950410081f78c82cc5ea312c1db554802d891858b8174c14cf", - "block_time": 1730898704, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "1ed0e83ad32b9e691ec9704d6f4526fa3fe1e1992073d5580873fec49e4c627e", + "block_time": 1730906034, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f:1 2 ", + "utxos_info": " e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7430,7 +7359,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7451,7 +7380,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -7470,20 +7399,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7508,7 +7437,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7537,9 +7466,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7556,7 +7485,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7584,9 +7513,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7603,7 +7532,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7631,9 +7560,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7650,7 +7579,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7678,9 +7607,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "block_index": 220, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7697,7 +7626,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906120, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7734,7 +7663,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The source of the fairminter to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7759,10 +7688,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "tx_index": 44, "block_index": 159, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7787,7 +7716,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7799,10 +7728,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", + "tx_hash": "a183181fbc3a1bf92bdeae89cbe4434c490e42d423f32540b38874062011b183", "tx_index": 43, "block_index": 156, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7827,7 +7756,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898512, + "block_time": 1730905821, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7836,10 +7765,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", + "tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7864,7 +7793,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730898407, + "block_time": 1730905727, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7876,10 +7805,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7904,7 +7833,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730898381, + "block_time": 1730905713, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7916,10 +7845,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", + "tx_hash": "231d09a91249525f36e1a7d5aa712b5d963589798438f1b0a60677605a178432", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7944,7 +7873,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730898376, + "block_time": 1730905708, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7956,10 +7885,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7984,7 +7913,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8006,7 +7935,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address of the mints to return + + address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8024,22 +7953,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8048,22 +7977,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", + "tx_hash": "f6622f9dcdd08038ac60c485e9967232f532360af5eefb4c3f35d37bd735e9ad", "tx_index": 45, "block_index": 158, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898520, + "block_time": 1730905829, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8072,22 +8001,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", + "tx_hash": "cbff45a7aa63aa0777a4ae531fd5e8e08c28f8634824c9a7e37e69e8887a6446", "tx_index": 23, "block_index": 136, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898410, + "block_time": 1730905730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8096,22 +8025,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", + "tx_hash": "85a0fcffd37dd5eab5fd7e4c72c79225b9716f73abd0eeda868c9da84dc0414f", "tx_index": 21, "block_index": 134, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898402, + "block_time": 1730905723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8120,22 +8049,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", + "tx_hash": "880f43d002cc5360590adf0dab62ff4f00348ed69ce767d6452159b0c36da25d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898388, + "block_time": 1730905720, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8144,22 +8073,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "3ecb5d63127ffd9177a63b61b38c60f2a5565baf6bb30926ee0f3aff7acf59d9", + "tx_hash": "229d81d2a681191c701658b1dd8d55d3bb41ad980940a700373db81216c15142", "tx_index": 19, "block_index": 132, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898385, + "block_time": 1730905716, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8168,22 +8097,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "38d40d2b91efed74d8498647729dc1339a295b593b29133217fe68bbcac63bf4", + "tx_hash": "f72eb630daaca420ea82e20017a6740aa3de688e6b9ba2ca2a6b42d49961b8ed", "tx_index": 15, "block_index": 127, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "231d09a91249525f36e1a7d5aa712b5d963589798438f1b0a60677605a178432", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898364, + "block_time": 1730905697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8192,22 +8121,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8226,7 +8155,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address of the mints to return + + address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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` @@ -8245,22 +8174,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8281,7 +8210,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0` (str, required) - The utxo to return + + utxo: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8301,8 +8230,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8315,12 +8244,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8360,8 +8289,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will make the bet - + feed_address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address that will make the bet + + feed_address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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) @@ -8435,7 +8364,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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) @@ -8497,7 +8426,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8508,9 +8437,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985786, - "btc_fee": 14214, - "rawtransaction": "020000000001011f26920a04a29ce9c43871a74e2cdcd812609941351ae1885cb421f02e60a7d7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0200000000000000002b6a293e05675e09c8cf2a17734419a1ca7604fbd84a4bf747ddeb0fb14b0610cab5f3494f88b803e84338067aba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985793, + "btc_fee": 14207, + "rawtransaction": "02000000000101643786e895b891f625369790abf36a40c891a28e4321c7274bfe80ab2f4136c900000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff0200000000000000002b6a29a35743c4badaa207ebf51c226843d0d75423ebb291ad99d42328daf889de6e2d55e41ffae420b50faf81ba052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8532,8 +8461,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending the payment - + order_match_id: `8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe` (str, required) - The ID of the order match to pay for + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address that will be sending the payment + + order_match_id: `f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a` (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) @@ -8591,24 +8520,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "order_match_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "data": "434e5452505254590bf58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980910, - "btc_fee": 18090, - "rawtransaction": "020000000001018ac98cb5e07e7ebaecd4544792ba69f7520a39081b66cc81e6c7722f8028eb3d000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e8030000000000001600148866238a1b690fe23cd7db55f93c555a4c161e3200000000000000004b6a49bddcaf612bd8e8b982ea2bf027e094462c5e4db35c0426b684e56ded8020b991c4dfb2ed68220c26aa909967ac7ecc446184dd995eda98bf4fd591dd2374ff2b424989c48b1fa803946ea7052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999980918, + "btc_fee": 18082, + "rawtransaction": "020000000001018f031c62d72ae2a0a1f0beb8ceae567c19f378ba0ad8dad50bd0720d689731ce00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff03e803000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449000000000000000004b6a492ee98792b5c75e16eb5f5fc7230f19c53aaf643174fff06697b0ccad477d2bad041faadec789bc80bda2c4c692e525e9374cbda358889b14b5f859c61d4e0010f49c1c9a39e85f229876a7052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "order_match_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "status": "valid" } } @@ -8621,7 +8550,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address with the BTC to burn + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -8682,7 +8611,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8691,9 +8620,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": 4999985785, - "btc_fee": 13215, - "rawtransaction": "0200000000010175505947253fe180015f3d5d2d2bcc88da78d0374f8aeeb63cba417a8b9ab445000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac79ba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000" + "btc_change": 4999985791, + "btc_fee": 13209, + "rawtransaction": "020000000001010df84bfc88e14beed7039f90f5699729aa6b894c57145ef035aa8869677042d500000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac7fba052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000" } } ``` @@ -8703,8 +8632,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: `bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e` (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) @@ -8762,22 +8691,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", - "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", + "offer_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "btc_in": 4949918908, + "data": "434e545250525459462119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "btc_in": 4949928908, "btc_out": 0, - "btc_change": 4949904694, - "btc_fee": 14214, - "rawtransaction": "0200000000010196b010c4f14eb4b263dcc5b2ebd574e1c0a60d0e35ef6004004fe992531ce3a801000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e396ffffffff0200000000000000002b6a2913427da40a73ff22b57560ac1a5e2c647d1ee0fbd909c290fbc80e3f81262db6bd3d29b05e8350f971368d092701000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e39602000000000000", + "btc_change": 4949914701, + "btc_fee": 14207, + "rawtransaction": "020000000001017eed8ea60b92250f5df56d749bf293a3c1922548515645828f02162ee3ae19210100000016001419795ee02143ec444cd5bff9806d199454cf4eadffffffff0200000000000000002b6a2935f41e9bc2049ca7f5eb913d5d2796724e0ea75e7b7b22b5ec2d4c87ce797640eaf6da36cbe2dd03e34db409270100000016001419795ee02143ec444cd5bff9806d199454cf4ead02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "offer_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", "status": "valid" } } @@ -8790,7 +8719,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -8851,7 +8780,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8869,9 +8798,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986315, - "btc_fee": 13685, - "rawtransaction": "0200000000010164ae3656cbb3db3af50bf78b72e4334a948f3fd9ccff761d6f35973063ddffbd000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000226a2041e69f4fdfdb37994a3e4970786c46b606bc0099d6a174cd6af7aed20e774d618bbc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999986321, + "btc_fee": 13679, + "rawtransaction": "02000000000101cda98c819535aed5812c49119b20ce1df8790df125c47a148a6f50bc481663ca00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000226a20334c577374fa112e6149244d1e637103fbefbc01253ec3d4f7f12e8b1988eba491bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8891,7 +8820,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: `bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49` (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) @@ -8958,7 +8887,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8981,9 +8910,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859527, - "btc_fee": 14272, - "rawtransaction": "02000000000101b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f60200000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6fffffffff0200000000000000002c6a2aed10c2a73d16732ffb8c3b160726f88e075a38b11a8621651a41c17968d155492a8c588ccf686e064069c7dc08270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f02000000000000", + "btc_change": 4949859533, + "btc_fee": 14266, + "rawtransaction": "020000000001018e5ce2b73f20a18bde9825745a2d7d969c5817a78635aa614f25c30b2a29cd4a020000001600143047d35450fa1d98208bddb4aa764db473597340ffffffff0200000000000000002c6a2a7ba35826620670ba5277ea1ded9ff8eb086b022551d59351ea19966b5011f4f00f19f3389579037ef667cddc0827010000001600143047d35450fa1d98208bddb4aa764db47359734002000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9009,7 +8938,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (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: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -9070,7 +8999,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9078,7 +9007,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9095,9 +9024,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986256, - "btc_fee": 13744, - "rawtransaction": "0200000000010137ca04a987548ae9224a7b556e3b6b6fe71b779f50029a25e8beb974a1991668000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a21bf85e8640974884939c4ba68a062ab2fe65a5a4b72beee71fde295c91561c1f0fe50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999986262, + "btc_fee": 13738, + "rawtransaction": "02000000000101a17c62cc89fcfab45d83d7bcf00138e9210e1ecffadd0e4ec41d09912ce91e5600000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000236a216674725fd4301c5c548a5c9afef7cb8ee560873547ba591ad60b3b9c9703c2aa1356bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9118,10 +9047,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -9188,10 +9117,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "transfer_destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "lock": false, "reset": false, @@ -9203,9 +9132,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": 4999983713, - "btc_fee": 15741, - "rawtransaction": "0200000000010138cd9ca70f96225144ec6cda7db6239752465c0740b867ea640b4c947bc93105000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000236a21a12053d440562b7c5ca67bbca734003946afed661ae2d7649f9df42fee641b0bb261b2052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999983720, + "btc_fee": 15734, + "rawtransaction": "0200000000010191fd9ad521b1932277ed9853c7f5f1f7f6b349a443561da5dee1f279194f0b9a00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff032202000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900000000000000000236a2187ad0d5c2b8286005ddbe89aa2a92cece2987c6cef41a7a78a3ee4e0315b1d1c8868b2052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9234,9 +9163,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: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FREEFAIRMINT` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8,bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs,bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9303,16 +9232,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", 1 ], [ "FREEFAIRMINT", - "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", 2 ] ], @@ -9321,26 +9250,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002808866238a1b690fe23cd7db55f93c555a4c161e3280c3e651caf10c27fd0c95beeef77d2ddbf5328ab54012737f10d9927d5000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d097e944fad2678d53bd0a94f2f5dfd5a49c449080f3d964d3642161c5d73279548e4e9d5d291663e14012737f10d9927d5000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785267, - "btc_fee": 20733, - "rawtransaction": "020000000001018ed4ff4164d68262c320ae21eef08ee8085683b2f00910c14bb1980c508a3bb803000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab5ffffffff03e803000000000000695121028de71ffdf85c16d2cd5b19121f750f1c9fdcbbce92d5c3560de6fe938ba009fd2102d12779a7e8950e0e379fde6abcf1c98b46520962b36ca56c869d1d2486228cb121032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aee8030000000000006951210292e71ffdf85c16d2cd0819109ffd693f15e3d2c170e9148d581bc2c6d1ec1f282102cf15f8640ec4c4ff3bb82366294f277c3b7fd29781e6102c94ee62345fb0f16721032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aeb3ba072701000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab502000000000000", + "btc_change": 4949785276, + "btc_fee": 20724, + "rawtransaction": "020000000001011dc7c1e41820dbecddc65714694c8356ca56af78f75f007abac72b22c6fa677803000000160014f3d964d3642161c5d73279548e4e9d5d291663e1ffffffff03e8030000000000006951210302f37f8c02b0159e3937aec28b53aacfebae0a50f2eb1546227dbd2a4e96aaec2103b14a593ef296de2a70e1cd12da19a452cb29f62e966367f36829b2314f83d76021028d544179e05f0fe96bb66a5697064c9637b7475a270a9af18a9d06cb9badbcb953aee803000000000000695121031df37f8c02b0159e3964aec00b833d26af70d8377fb8a84cb68b48f59b3236ef2103f5dad8cd2bf20d4e518008c5e860f0dc85b4ab07800086b37a5acd219611aaec21028d544179e05f0fe96bb66a5697064c9637b7475a270a9af18a9d06cb9badbcb953aebcba072701000000160014f3d964d3642161c5d73279548e4e9d5d291663e102000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FREEFAIRMINT", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9356,7 +9285,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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 @@ -9420,7 +9349,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9438,7 +9367,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9450,9 +9379,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985199, - "btc_fee": 14801, - "rawtransaction": "02000000000101c70fc97b78bd7034fe2d3f9004a46d8006a66784a9929d830ee82eaf726f5158000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000356a330cb28c2f88b24650c272ec55edec5b7a31bc88a410b6cc14d45df5529ed60eb94ebbf649de531d141502200b5a32a390bfd6bf2fb8052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985206, + "btc_fee": 14794, + "rawtransaction": "020000000001014f76a135350388948d9f0078677eba5a0ee4a0b152165a197fb26605e3dcdfaa00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000356a33f318d201aabe90b54329d3737d5d657d1b0ebec1a7164673c8c8990f72a92998d750f32dae66c0869dc4b140c265b82d3e78bd36b8052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9478,8 +9407,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address that will be receiving the asset + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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 @@ -9545,8 +9474,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9563,19 +9492,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "434e54525052545902000000000000000100000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985493, - "btc_fee": 14507, - "rawtransaction": "02000000000101275f8f9d807f9d3a3ea26cc21cdb9e8bd02473ef52e2c4510c3944766e6f3cc7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000306a2e4a351f39f607b988bb1084bd9056d04cb3997b670785d105977fbedc43dd615ef56b511ea26d7c6b6803d5dd324455b9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985499, + "btc_fee": 14501, + "rawtransaction": "02000000000101e9c7466dee6d1b01f2ce5d35c6feb2c38c668734e72f370aab05e81e185bc60f00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000306a2e0dcde744809e60c0e8b704dfb32bca1c9135e01fceb4287c08b8ccf09b47838fe88beda0ea4d8f584e3f3cb196a35bb9052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "quantity_normalized": "0.00001000" } @@ -9589,8 +9518,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending - + destination: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address that will be sending + + destination: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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 @@ -9650,24 +9579,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480c3e651caf10c27fd0c95beeef77d2ddbf5328ab507ffff", + "data": "434e5452505254590480f3d964d3642161c5d73279548e4e9d5d291663e107ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986256, - "btc_fee": 13744, - "rawtransaction": "02000000000101d510690fb211173b73d75d0eb18bcd9df309e406eb936e1e226de3f6343ab516000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a216bc35627c64c3bb817cdcdf526daf2eaead0a68d42524cee3058940662f921352d50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999986262, + "btc_fee": 13738, + "rawtransaction": "02000000000101e9cd76c8a64eb792610719f16fb58df7a32083b7354972c21496f9d0ebba7e5e00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000236a2177cd4521950c90d6c0f4e6413a388936cfa89fd8de9feb24106f530bebdd71205c56bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "flags": 7, "memo": "ffff" } @@ -9681,8 +9610,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp` (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` @@ -9741,8 +9670,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "quantity": 1000, "skip_validation": false }, @@ -9750,9 +9679,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984610, - "btc_fee": 14390, - "rawtransaction": "02000000000101568bc9e3a73e1d8eabc6631161efd3d5db9313886eadbbfccb687d15a7afcd95000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e803000000000000160014cb84369aaa777801d6d572f0dde4294cbf91d44f00000000000000000c6a0a75757985319c705349d3e2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999984617, + "btc_fee": 14383, + "rawtransaction": "02000000000101c02f151cf7cacb367f5c77daea1c155aa9b008a592c35cceac61a6deb3bbb4d800000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff03e803000000000000160014bedceb28862d85cfa2f543d6e7ef2c932e8006f300000000000000000c6a0a305e73c2e64800499e6ce9b5052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9769,7 +9698,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be issuing the asset + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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: `` @@ -9860,7 +9789,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9890,9 +9819,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985434, - "btc_fee": 14566, - "rawtransaction": "020000000001015dc2b22cfdd0ff5c24829aaab5c4387acfa517478203f77e9ac07622774977e1000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000316a2fa81466c8bc106f07472813851f995b5088ee75e832b732391e0996feec362ddb8cd22b040e6555b13b2dfccb8d25771ab9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985440, + "btc_fee": 14560, + "rawtransaction": "02000000000101b29564682363ea41ebeff08e55e5855bc5b5d87460f6c69522a4aa0f13ce08a900000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000316a2fed132d16c4e609ddb87b574a6a53c933257e841578fb7e4a98786715e3f32bc44c06c30e4303fc74cf11fc25b6a9fb20b9052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9931,7 +9860,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: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address that will be minting the asset + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -9992,14 +9921,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -10009,9 +9938,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": 4999987020, - "btc_fee": 12980, - "rawtransaction": "02000000000101eb1278f82d60cbb72e82b894b5ba1f723e044daa85b8409e86501c6b10724285000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000166a14741a301b7be4b4adde7275b8b564d45731cbe2234cbf052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999987026, + "btc_fee": 12974, + "rawtransaction": "02000000000101cde7cbd4dfb47767b6610a270fe608e97f817670aa36b7ba6ade629c2712c22300000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000166a144c7cb056b63fd59a01f6a9e1050ffbf962b906fd52bf052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10030,7 +9959,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address from which the assets are attached + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10094,7 +10023,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10112,9 +10041,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984594, - "btc_fee": 14860, - "rawtransaction": "02000000000101a6f8fd141df24a6a7bdc80bc7a998fcd167006e2a8df362810a3f0c9af450815000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000146a128553f23205b8a06d14241944d54f34b58fbdd2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999984601, + "btc_fee": 14853, + "rawtransaction": "0200000000010164e5c85dbf5d037dd85d104a8011952682ab740017d42874e005fc7758fdb33600000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff032202000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900000000000000000146a12467aa0e269da65ab31ed68e5dbe2f7212935d9b5052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10134,8 +10063,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: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10198,22 +10127,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317133706e7a387a736d64793837793078686d64326c6a307a34746678707638336a3875636d6e38", + "data": "434e54525052545966626372743171367a74376a33383636666e6336356161703232303961776c366b6a66633379737936676d6673", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945450, - "btc_fee": 25550, - "rawtransaction": "02000000000102b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f600000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff8507ccc200545adb00db06cf3e1d341d1b00517f5b14121efbaa5840407855cd01000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff020000000000000000376a35ed10c2a73d16732f91ee5864731789bd7634428960f54c028b79f60058a93d27a6be34e6ff125a724211eda463802d049ab645ee1b6a2c0a2701000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c02000002000000000000", + "btc_change": 4949945462, + "btc_fee": 25538, + "rawtransaction": "020000000001028e5ce2b73f20a18bde9825745a2d7d969c5817a78635aa614f25c30b2a29cd4a000000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14fffffffffbc51bdb1cbb93331825a2b1e2607099319b9660c95ec65f3e2596960195d4846010000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14fffffffff020000000000000000376a357ba35826620670ba3815896f99ae89dd731f354f62eda5646477f55d65709583d52bc301f40e6f48f90d0ee6fc341bb80e843a782e762c0a27010000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14f02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8" + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs" } } } @@ -10317,8 +10246,8 @@ Returns the valid assets "asset": "PARENTB", "asset_id": "4641584819", "asset_longname": null, - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "owner": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "divisible": true, "locked": false, "supply": 100000000000, @@ -10326,16 +10255,16 @@ Returns the valid assets "first_issuance_block_index": 217, "last_issuance_block_index": 217, "confirmed": true, - "first_issuance_block_time": 1730898781, - "last_issuance_block_time": 1730898781, + "first_issuance_block_time": 1730906108, + "last_issuance_block_time": 1730906108, "supply_normalized": "1000.00000000" }, { "asset": "PARENTA", "asset_id": "4641584818", "asset_longname": null, - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "owner": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "divisible": true, "locked": false, "supply": 100000000000, @@ -10343,16 +10272,16 @@ Returns the valid assets "first_issuance_block_index": 215, "last_issuance_block_index": 215, "confirmed": true, - "first_issuance_block_time": 1730898773, - "last_issuance_block_time": 1730898773, + "first_issuance_block_time": 1730906092, + "last_issuance_block_time": 1730906092, "supply_normalized": "1000.00000000" }, { "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -10360,16 +10289,16 @@ Returns the valid assets "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", - "owner": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", + "owner": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false, "supply": 100000000000, @@ -10377,16 +10306,16 @@ Returns the valid assets "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730898711, - "last_issuance_block_time": 1730898711, + "first_issuance_block_time": 1730906041, + "last_issuance_block_time": 1730906041, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -10394,8 +10323,8 @@ Returns the valid assets "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" } ], @@ -10423,8 +10352,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -10432,8 +10361,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730898347, - "last_issuance_block_time": 1730898357, + "first_issuance_block_time": 1730905676, + "last_issuance_block_time": 1730905689, "supply_normalized": "100.00000000" } } @@ -10464,7 +10393,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10472,14 +10401,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10487,7 +10416,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -10505,7 +10434,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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. @@ -10517,7 +10446,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -10571,9 +10500,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10590,7 +10519,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10618,9 +10547,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10637,7 +10566,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10665,9 +10594,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10684,7 +10613,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10712,9 +10641,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "block_index": 220, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10731,7 +10660,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906120, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10759,9 +10688,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10778,7 +10707,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10842,13 +10771,13 @@ Returns the orders of an asset { "result": [ { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10862,7 +10791,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10882,13 +10811,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 56, - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10902,7 +10831,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10922,13 +10851,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", "tx0_index": 53, - "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 54, - "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10942,7 +10871,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10962,13 +10891,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10982,7 +10911,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11062,20 +10991,20 @@ Returns the credits of an asset "result": [ { "block_index": 199, - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "event": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "tx_index": 65, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11083,20 +11012,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", + "event": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11104,20 +11033,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "event": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11125,20 +11054,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "event": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11150,16 +11079,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "event": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11214,17 +11143,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 223, + "block_index": 225, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11236,16 +11165,16 @@ Returns the debits of an asset }, { "block_index": 217, - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", + "event": "5703e82bec4eae111000ba07a3989ca1df3c4d0394fbec4770508be013e1304b", "tx_index": 84, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898781, + "block_time": 1730906108, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11257,16 +11186,16 @@ Returns the debits of an asset }, { "block_index": 215, - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "efeb32ad1e798d9117382cdd1d0e9714530e4f27b6d57ca9e6d5b6bc9186b375", + "event": "37ed4f67da4c7daa52ab856851f6f42b4ee4218f07e8bb695f76bfdbaef85ade", "tx_index": 82, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898773, + "block_time": 1730906092, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11278,16 +11207,16 @@ Returns the debits of an asset }, { "block_index": 214, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "event": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11299,16 +11228,16 @@ Returns the debits of an asset }, { "block_index": 213, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "event": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11388,14 +11317,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", + "tx_hash": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -11410,20 +11339,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -11438,20 +11367,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -11466,20 +11395,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -11494,7 +11423,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898347, + "block_time": 1730905676, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11527,11 +11456,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11539,7 +11468,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11552,10 +11481,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11563,7 +11492,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11576,10 +11505,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11587,7 +11516,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11600,10 +11529,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11611,7 +11540,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11624,10 +11553,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11635,7 +11564,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11686,9 +11615,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11697,7 +11626,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11708,7 +11637,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11725,9 +11654,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", + "tx_hash": "1f4dec693bc9df88231d804fd52e5b835a5f35cdae943a51ef12de40235304e1", "block_index": 142, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11736,7 +11665,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "origin": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11747,7 +11676,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898440, + "block_time": 1730905756, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11764,9 +11693,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", + "tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", "block_index": 150, - "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", + "source": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11774,10 +11703,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_hash": "bbd08fcfb665580d196d17a77962c82036f81beba2ef55030a8e82bb6a3cab1f", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -11786,7 +11715,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898490, + "block_time": 1730905795, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11803,18 +11732,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11825,7 +11754,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11851,7 +11780,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - The address to return + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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` @@ -11864,9 +11793,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11875,7 +11804,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11886,7 +11815,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11937,7 +11866,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11945,7 +11874,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11954,7 +11883,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11962,7 +11891,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11971,7 +11900,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11979,7 +11908,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11988,7 +11917,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -12023,29 +11952,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12060,7 +11989,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12074,27 +12003,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", + "tx_hash": "a5f38f2b0bec7778ac4c0756d0b4e74c8d364264d9db634caf1e07142a99f689", "block_index": 147, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12109,7 +12038,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898478, + "block_time": 1730905783, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12123,19 +12052,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12143,7 +12072,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12158,7 +12087,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12172,19 +12101,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12192,7 +12121,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12207,7 +12136,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12250,8 +12179,8 @@ Returns asset subassets "asset": "A95428958968845068", "asset_id": "95428958968845068", "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 0, @@ -12259,8 +12188,8 @@ Returns asset subassets "first_issuance_block_index": 156, "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1730898512, - "last_issuance_block_time": 1730898512, + "first_issuance_block_time": 1730905821, + "last_issuance_block_time": 1730905821, "supply_normalized": "0.00000000" } ], @@ -12299,10 +12228,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12327,7 +12256,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12367,22 +12296,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", + "tx_hash": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", "tx_index": 13, "block_index": 125, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -12391,22 +12320,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -12415,22 +12344,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -12449,7 +12378,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef` (str, required) - The address of the mints to return + + address: `bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq` (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` @@ -12468,22 +12397,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -12536,9 +12465,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12555,7 +12484,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12583,9 +12512,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12602,7 +12531,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12630,9 +12559,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12649,7 +12578,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12677,9 +12606,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12696,7 +12625,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12724,9 +12653,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "block_index": 214, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12743,7 +12672,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12780,7 +12709,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096` (str, required) - The hash of the transaction that created the order + + order_hash: `2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e` (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. @@ -12791,10 +12720,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 89, - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "tx_index": 91, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -12802,7 +12731,7 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 243, + "expire_index": 245, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12811,11 +12740,11 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898812, + "block_time": 1730906146, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -12845,7 +12774,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a` (str, required) - The hash of the transaction that created the order + + order_hash: `f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0` (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 @@ -12872,13 +12801,13 @@ Returns the order matches of an order { "result": [ { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12892,7 +12821,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12922,7 +12851,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518` (str, required) - The hash of the transaction that created the order + + order_hash: `f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6` (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 @@ -12941,15 +12870,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "btc_amount": 2000, - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "status": "valid", "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "btc_amount_normalized": "0.00002000" } ], @@ -12993,9 +12922,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13013,7 +12942,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730898646, + "block_time": 1730905961, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13039,9 +12968,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "block_index": 214, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13059,7 +12988,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730898769, + "block_time": 1730906087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13085,9 +13014,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13105,7 +13034,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13131,9 +13060,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13151,7 +13080,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13177,9 +13106,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13197,7 +13126,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13260,13 +13189,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13283,7 +13212,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13303,13 +13232,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 56, - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13326,7 +13255,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898646, + "block_time": 1730905961, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13346,13 +13275,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", "tx0_index": 53, - "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 54, - "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13369,7 +13298,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898572, + "block_time": 1730905888, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13389,13 +13318,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13412,7 +13341,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13470,13 +13399,13 @@ Returns all the order matches { "result": [ { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13490,7 +13419,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13510,13 +13439,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 56, - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13530,7 +13459,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13550,13 +13479,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", "tx0_index": 53, - "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 54, - "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13570,7 +13499,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13590,13 +13519,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13610,7 +13539,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13778,66 +13707,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", + "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", "block_index": 121, - "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", + "source": "bcrt1qzycg25f6h3gxwcclpupwd823gc63ckk744hvlq", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730898343, + "block_time": 1730905672, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "d04e1815ea01ea320d5bd70e7bcda49e0f042749f91b3116584ff7a4a1a9edd4", + "tx_hash": "88b56a7850b2edba8fe1c5a1f62f1517aaa3dc286314a0409b9e78006b1bbff7", "block_index": 120, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730898340, + "block_time": 1730905669, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "6d6092b5d22a3ad8197e66cd85362be31503d99b5b030532ec9e64756dd21ca0", + "tx_hash": "f9f8b571ff977eb3f91dddff917944b5ffddf1c07b3bcaa1dcc32bb5ee2c478d", "block_index": 119, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730898336, + "block_time": 1730905665, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "5fe912a7879caa5bc0c86788564c5c07c8f9ab632b9dc008845061755b9eb4ed", + "tx_hash": "839a7535bc6d26cf33f2194a22445dee8fc71f3fb714eb59c2036d5d2bb2a0af", "block_index": 118, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730898332, + "block_time": 1730905661, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "14d1b38c8dc9ae9bd3b115f907e94a6a7561124382141848df564e207ab5bfc6", + "tx_hash": "94d0f38f04a5d1a34b41a159fd00b1bca3be5409eb0fdecf0cbbd147fca97faa", "block_index": 117, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730898329, + "block_time": 1730905658, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13882,9 +13811,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13893,7 +13822,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13904,7 +13833,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13921,9 +13850,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", + "tx_hash": "1f4dec693bc9df88231d804fd52e5b835a5f35cdae943a51ef12de40235304e1", "block_index": 142, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13932,7 +13861,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "origin": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13943,7 +13872,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898440, + "block_time": 1730905756, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13960,9 +13889,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", + "tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", "block_index": 150, - "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", + "source": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13970,10 +13899,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_hash": "bbd08fcfb665580d196d17a77962c82036f81beba2ef55030a8e82bb6a3cab1f", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -13982,7 +13911,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898490, + "block_time": 1730905795, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13999,9 +13928,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14010,7 +13939,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14021,11 +13950,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -14038,18 +13967,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14060,7 +13989,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14086,7 +14015,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09` (str, required) - The hash of the dispenser to return + + dispenser_hash: `9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88` (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. @@ -14098,9 +14027,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14109,7 +14038,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14120,7 +14049,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14143,7 +14072,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09` (str, required) - The hash of the dispenser to return + + dispenser_hash: `9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88` (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 @@ -14163,19 +14092,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14183,7 +14112,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14198,7 +14127,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14212,19 +14141,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14232,7 +14161,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14247,7 +14176,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14289,20 +14218,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -14327,7 +14256,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c` (str, required) - The hash of the dividend to return + + dividend_hash: `baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484` (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. @@ -14339,20 +14268,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -14374,7 +14303,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484` (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 @@ -14397,12 +14326,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "event": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "tx_index": 42, - "utxo": "ed49366d20a6a726ce19d702e5991e11d77b163b8b6ee4d78846be58f66ff3ec:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "utxo": "115cd84a869aaf7c20759e1b94387e4d198a1a0daf1e499365d4719de741dee8:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14427,7 +14356,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14444,47 +14373,47 @@ Returns all events { "result": [ { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14495,20 +14424,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14518,24 +14447,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14545,13 +14474,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 787, - "result_count": 793 + "next_cursor": 801, + "result_count": 807 } ``` @@ -14560,7 +14489,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `792` (int, required) - The index of the event to return + + event_index: `806` (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. @@ -14571,19 +14500,19 @@ Returns the event of an index ``` { "result": { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 } } ``` @@ -14615,7 +14544,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 76 + "event_count": 78 }, { "event": "SWEEP", @@ -14641,7 +14570,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `792` (str, optional) - The last event index to return + + cursor: `806` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14658,19 +14587,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14680,24 +14609,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14707,51 +14636,51 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { "event_index": 760, "event": "CREDIT", "params": { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "block_index": 220, "calling_function": "cancel order", - "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "event": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730898794, + "block_time": 1730906120, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14761,36 +14690,36 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000000" }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 }, { "event_index": 748, "event": "CREDIT", "params": { - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "asset": "A95428960545690062", "block_index": 218, "calling_function": "issuance", - "event": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "event": "bb2f2ad4636c8435fc43dac46d8f183da0fde0dfcd26b01b4ded551d05f46c0e", "quantity": 100000000000, "tx_index": 85, "utxo": null, "utxo_address": null, - "block_time": 1730898785, + "block_time": 1730906112, "asset_info": { "asset_longname": "PARENTB.SUBASSETB", "description": "My super subasset SUBASSETB", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, - "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "tx_hash": "bb2f2ad4636c8435fc43dac46d8f183da0fde0dfcd26b01b4ded551d05f46c0e", "block_index": 218, - "block_time": 1730898785 + "block_time": 1730906112 } ], "next_cursor": 740, @@ -14844,29 +14773,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14881,7 +14810,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14895,19 +14824,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", + "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14915,7 +14844,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14930,11 +14859,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -14944,27 +14873,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", + "tx_hash": "a5f38f2b0bec7778ac4c0756d0b4e74c8d364264d9db634caf1e07142a99f689", "block_index": 147, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14979,7 +14908,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898478, + "block_time": 1730905783, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14993,19 +14922,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15013,7 +14942,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15028,7 +14957,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15042,19 +14971,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15062,7 +14991,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15077,7 +15006,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15118,11 +15047,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15130,7 +15059,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15142,11 +15071,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15154,11 +15083,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -15167,10 +15096,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15178,7 +15107,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15191,10 +15120,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15202,11 +15131,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -15215,10 +15144,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15226,11 +15155,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -15280,15 +15209,15 @@ Returns all the issuances { "result": [ { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "block_index": 223, + "asset": "A95428959531084712", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -15296,83 +15225,83 @@ Returns all the issuances "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "PARENTA.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 87, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_index": 89, + "tx_hash": "71a2f6f0722f19cccd53f65e6a8fe131ac9b9b5d7a375cf433558112184bf8d2", "msg_index": 0, - "block_index": 220, - "asset": "A95428960545690062", + "block_index": 222, + "asset": "A95428960428101357", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super subasset SUBASSETB", + "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETB", + "asset_longname": "PARENTA.A95428960545690062", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906129, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 86, - "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", + "tx_index": 88, + "tx_hash": "c77c72d6a3adb9c79649a357d7baf12c96d6dd6498e909df7b125cd32c92f8c8", "msg_index": 0, - "block_index": 219, - "asset": "A95428960939749879", + "block_index": 221, + "asset": "A95428960586448133", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super subasset SUBASSETA", + "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTA.SUBASSETA", + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898790, + "block_time": 1730906124, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 85, - "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "tx_index": 87, + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "msg_index": 0, - "block_index": 218, + "block_index": 220, "asset": "A95428960545690062", - "quantity": 100000000000, + "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -15384,44 +15313,44 @@ Returns all the issuances "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898785, - "quantity_normalized": "1000.00000000", + "block_time": 1730906120, + "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 84, - "tx_hash": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", + "tx_index": 86, + "tx_hash": "7f8171d78535915ecb9b6d3c89a4da643b735ce1c1d3c4498eac8d6e747ea1a3", "msg_index": 0, - "block_index": 217, - "asset": "PARENTB", - "quantity": 100000000000, + "block_index": 219, + "asset": "A95428960939749879", + "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset PARENTB", - "fee_paid": 50000000, + "description": "My super subasset SUBASSETA", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTA.SUBASSETA", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898781, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730906117, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 29, - "result_count": 34 + "next_cursor": 31, + "result_count": 36 } ``` @@ -15430,7 +15359,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb` (str, required) - The hash of the transaction to return + + tx_hash: `c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0` (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. @@ -15441,15 +15370,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "block_index": 223, + "asset": "A95428959531084712", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -15457,14 +15386,14 @@ Returns the issuances of a block "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "PARENTA.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15496,16 +15425,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -15519,7 +15448,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3` (str, required) - The hash of the transaction to return + + tx_hash: `3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385` (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. @@ -15532,16 +15461,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -15575,9 +15504,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15585,14 +15514,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898417, + "block_time": 1730905738, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", + "tx_hash": "5923d6c82239efc9e2bbc657d5f0dda18e8b690ad30674893918fccb97bb500a", "block_index": 137, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15600,7 +15529,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898413, + "block_time": 1730905734, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15614,7 +15543,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7` (str, required) - The hash of the transaction to return + + tx_hash: `eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9` (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. @@ -15626,9 +15555,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15636,7 +15565,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898417, + "block_time": 1730905738, "fee_fraction_int_normalized": "0.00000000" } } @@ -15673,13 +15602,13 @@ Returns all fairminters { "result": [ { - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_index": 223, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428959531084712", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, @@ -15701,7 +15630,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15710,14 +15639,14 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", - "tx_index": 87, - "block_index": 220, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960545690062", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETB", - "description": "My super subasset SUBASSETB", + "tx_hash": "71a2f6f0722f19cccd53f65e6a8fe131ac9b9b5d7a375cf433558112184bf8d2", + "tx_index": 89, + "block_index": 222, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960428101357", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.A95428960545690062", + "description": "", "price": 0, "quantity_by_price": 1, "hard_cap": 0, @@ -15738,7 +15667,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906129, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15747,14 +15676,14 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", - "tx_index": 86, - "block_index": 219, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960939749879", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETA", - "description": "My super subasset SUBASSETA", + "tx_hash": "c77c72d6a3adb9c79649a357d7baf12c96d6dd6498e909df7b125cd32c92f8c8", + "tx_index": 88, + "block_index": 221, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960586448133", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETC", + "description": "", "price": 0, "quantity_by_price": 1, "hard_cap": 0, @@ -15775,7 +15704,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898790, + "block_time": 1730906124, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15784,17 +15713,17 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", - "description": "", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", + "tx_index": 87, + "block_index": 220, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960545690062", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETB", + "description": "My super subasset SUBASSETB", "price": 0, "quantity_by_price": 1, - "hard_cap": 180, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 100, "premint_quantity": 0, @@ -15807,36 +15736,33 @@ Returns all fairminters "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730898523, + "block_time": 1730906120, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, + "tx_hash": "7f8171d78535915ecb9b6d3c89a4da643b735ce1c1d3c4498eac8d6e747ea1a3", + "tx_index": 86, + "block_index": 219, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960939749879", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETA", + "description": "My super subasset SUBASSETA", + "price": 0, + "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -15852,17 +15778,17 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898512, - "price_normalized": "1.0000000000000000", + "block_time": 1730906117, + "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" } ], - "next_cursor": 4, - "result_count": 9 + "next_cursor": 6, + "result_count": 11 } ``` @@ -15918,22 +15844,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -15942,22 +15868,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", + "tx_hash": "f6622f9dcdd08038ac60c485e9967232f532360af5eefb4c3f35d37bd735e9ad", "tx_index": 45, "block_index": 158, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898520, + "block_time": 1730905829, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -15966,22 +15892,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", + "tx_hash": "cbff45a7aa63aa0777a4ae531fd5e8e08c28f8634824c9a7e37e69e8887a6446", "tx_index": 23, "block_index": 136, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898410, + "block_time": 1730905730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -15990,22 +15916,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", + "tx_hash": "85a0fcffd37dd5eab5fd7e4c72c79225b9716f73abd0eeda868c9da84dc0414f", "tx_index": 21, "block_index": 134, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898402, + "block_time": 1730905723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -16014,22 +15940,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", + "tx_hash": "880f43d002cc5360590adf0dab62ff4f00348ed69ce767d6452159b0c36da25d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898388, + "block_time": 1730905720, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -16048,7 +15974,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27` (str, required) - The hash of the fairmint to return + + tx_hash: `b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16059,22 +15985,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -16092,7 +16018,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf,bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4` (str, required) - The addresses to search for + + addresses: `bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20,bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424` (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. @@ -16105,41 +16031,41 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ + { + "vout": 1, + "height": 207, + "value": 546, + "confirmations": 19, + "amount": 5.46e-06, + "txid": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", + "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" + }, { "vout": 0, "height": 208, "value": 546, - "confirmations": 16, + "confirmations": 18, "amount": 5.46e-06, - "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", - "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" + "txid": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", + "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" }, { "vout": 1, - "height": 222, - "value": 4949918908, + "height": 224, + "value": 4949928908, "confirmations": 2, - "amount": 49.49918908, - "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" + "amount": 49.49928908, + "txid": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" }, { "vout": 1, - "height": 207, - "value": 546, - "confirmations": 17, - "amount": 5.46e-06, - "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", - "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" - }, - { - "vout": 1, - "height": 221, - "value": 30000, + "height": 223, + "value": 10000, "confirmations": 3, - "amount": 0.0003, - "txid": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4" + "amount": 0.0001, + "txid": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424" } ], "next_cursor": null, @@ -16152,7 +16078,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz` (str, required) - The address to search for + + address: `bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7` (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 @@ -16168,28 +16094,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "18c8292a8126d912dbb5ab301ae88bb93eb450259b9e7310dfa512bdff233d37" + "tx_hash": "993bd93dc8df10ccbade90167917590b8364e4db37a113e742e81135b754793a" }, { - "tx_hash": "fd2cb81224522fc1415c7317daf6d89c39eb79b79a5431e4c4a13f364715f149" + "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a" }, { - "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe" + "tx_hash": "c4048d9a6a34875942572bfdcc1de4c88de745a291332dfbbb11d5eaee22c368" }, { - "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7" + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385" }, { - "tx_hash": "16526ef5652dfe3b5199019a8acf05a470963dad9093583e05a14abeff52d5ea" + "tx_hash": "eb6f2b41889176f9e807c670aeab66eb81662bcbb034062567e3e8069e97f985" }, { - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3" + "tx_hash": "d7793fbc7b771bcff87a69ebbd3c22924aceb57ddc4ed831bb54c9f4941f5cb5" }, { - "tx_hash": "167369f337dfa88bd51bf20bdeabc28c33c7f4fd43bb835f7d8757dd804fb4f6" + "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb" }, { - "tx_hash": "b19bbad697e8f745b8dd5f084f96a01f8089cdeb2267c8b79dd3e29d759da8fb" + "tx_hash": "40c0ef9ff60ade2ab4ab5bb85fee3e7d7c73dcff5f71a285fb199100fdb7bfc3" } ], "next_cursor": null, @@ -16202,7 +16128,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy` (str, required) - The address to search for. + + address: `bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49` (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. @@ -16215,8 +16141,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 5, - "tx_hash": "a1e1862525e3efd76ea5f0db4d9f4ed15d8f5abd685db9b0cc8d892cb67e620c" + "block_index": 9, + "tx_hash": "bf7efe24df549c48a0e8fed695b6da44541c774d00dfdf4f0f156a633e2ab197" } } ``` @@ -16226,7 +16152,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf` (str, required) - The address to search for + + address: `bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20` (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 @@ -16243,27 +16169,27 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 1, - "height": 222, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096" + "height": 207, + "value": 546, + "confirmations": 19, + "amount": 5.46e-06, + "txid": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0" }, { "vout": 0, "height": 208, "value": 546, - "confirmations": 16, + "confirmations": 18, "amount": 5.46e-06, - "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa" + "txid": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb" }, { "vout": 1, - "height": 207, - "value": 546, - "confirmations": 17, - "amount": 5.46e-06, - "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f" + "height": 224, + "value": 4949928908, + "confirmations": 2, + "amount": 49.49928908, + "txid": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e" } ], "next_cursor": null, @@ -16276,7 +16202,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8` (str, required) - Address to get pubkey for. + + address: `bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs` (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. @@ -16288,7 +16214,7 @@ Get pubkey for an address. ``` { - "result": "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" + "result": "02adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc9" } ``` @@ -16297,7 +16223,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8` (str, required) - The transaction hash + + tx_hash: `4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e` (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. @@ -16309,7 +16235,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101d1d4156b83b56e571f9ba594e9aa65992272697a6de9caaa651a0dc3a6fa7e500100000000ffffffff03e803000000000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c00000000000000000c6a0ad778ef892ea746169a1d871409270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f024730440220464e2423ab3da160e439d44da2eae939911dcd9a54d15ea1f16da79aabd7a3000220088d1fe2f68b6432a34ad4f5cafa2ae74235887042411aadf87ef8f361776f27012103610de3d16a355f04ba4d9fffb79d13cbdb9940e8c6579b04d736f56fb5ac6cbf00000000" + "result": "02000000000101ef2945137ab8e34c569de375989fa10b3d1d868b8428218d856a221056a359c40100000000ffffffff03e8030000000000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14f00000000000000000c6a0a1f303a7afc1a76ba26a187140927010000001600143047d35450fa1d98208bddb4aa764db473597340024730440220523ae340dbce5334d55174e5e1cc99347c38a313a5bf5cc95e5a04751b8fb38302203228b77e36a8f2498669fb932032b95a1588d9c9fcc57b14b6bb449efca14e860121034fe6b16f60e1038c62d66622876ee8c807c3a7147ea58beab78ddc00a23e8bc600000000" } ``` @@ -16331,7 +16257,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58736 + "result": 58710 } ``` @@ -16404,28 +16330,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91 + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93 }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "quantity": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16435,22 +16361,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16460,22 +16386,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", - "block_index": 223, - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "block_index": 225, + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16485,30 +16411,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730898824.7521684, + "block_time": 1730906159.3902285, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "destination": "", "fee": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, - "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, + "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -16522,7 +16448,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -16553,19 +16479,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16575,7 +16501,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -16588,7 +16514,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb` (str, required) - The hash of the transaction to return + + tx_hash: `2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21` (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 @@ -16608,28 +16534,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91 + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93 }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "quantity": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16639,22 +16565,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16664,22 +16590,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", - "block_index": 223, - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "block_index": 225, + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16689,30 +16615,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730898824.7521684, + "block_time": 1730906159.3902285, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "destination": "", "fee": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, - "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, + "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -16726,7 +16652,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 6c6548b3eb..2de9bd65eb 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -128,17 +128,15 @@ def validate( except exceptions.AssetNameError as e: problems.append(f"Invalid asset name: {e}") + existing_asset = ledger.get_asset(db, asset) + if existing_asset and existing_asset["asset_longname"] and asset_parent == "": + asset_parent, asset = existing_asset["asset_longname"].split(".") + # check if asset exists asset_name = asset - existing_asset = ledger.get_asset(db, asset_name) - if existing_asset and existing_asset["asset_longname"]: - asset_name = existing_asset["asset_longname"] - if asset_parent != "": - problems.append("Asset parent cannot be set when using subasset numeric name.") - asset_parent, asset = asset_name.split(".") - elif asset_parent != "": + if asset_parent != "": asset_name = f"{asset_parent}.{asset}" - existing_asset = ledger.get_asset(db, asset_name) + existing_asset = ledger.get_asset(db, asset_name) if existing_asset: # check if a fair minter is already opened for this asset @@ -415,15 +413,16 @@ def parse(db, tx, message): if end_block > 0 and tx["block_index"] > end_block: status = "closed" + existing_asset = ledger.get_asset(db, asset) + if existing_asset and existing_asset["asset_longname"] and asset_parent == "": + asset_parent, asset = existing_asset["asset_longname"].split(".") + # is subasset ? asset_longname = "" - existing_asset = ledger.get_asset(db, asset) - if existing_asset and existing_asset["asset_longname"]: - asset_longname = existing_asset["asset_longname"] - asset_parent, asset = asset_longname.split(".") - elif asset_parent != "": + if asset_parent != "": asset_longname = f"{asset_parent}.{asset}" - existing_asset = ledger.get_asset(db, asset_longname) + + existing_asset = ledger.get_asset(db, asset_longname if asset_longname != "" else asset) fee = 0 asset_name = asset diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 2cb0fdeb38..86be6171a7 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": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", "difficulty": 545259519, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, "confirmed": true }, { - "block_index": 222, - "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", - "block_time": 1730898812, - "previous_block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", + "block_index": 224, + "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", + "block_time": 1730906146, + "previous_block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", "difficulty": 545259519, - "ledger_hash": "50b0eb6caea691c2981c7ca1a6781038786c9c763cd7df828aac1a866ce65842", - "txlist_hash": "b60b5bd37d63aae124e8fae2fd3eadaf9d1477056b35dda5abf8f31906ef045b", - "messages_hash": "8a2393350121ebdd03181d86762ce0eac115cea857a0b297fff444cd09933d05", + "ledger_hash": "db8e027dd6b147edebec923946d984e54eef9e9eeffbabfb05ccddd0dbff9d7c", + "txlist_hash": "3afb2af6aaba6eac5e3fab1b35f19fea392f66bc90f6b4e3d585c31efdc59be9", + "messages_hash": "40440a08e5d7b6b9c0dbc7a6c62df54c4c8e0a27fef72e6e30ee53e027e1ed23", "transaction_count": 1, "confirmed": true }, { - "block_index": 221, - "block_hash": "0bfbc4791c069198e110eb86c3231a9b23fd64b5a56858ea887b287b9ce14c49", - "block_time": 1730898808, - "previous_block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", + "block_index": 223, + "block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", + "block_time": 1730906142, + "previous_block_hash": "46ce0849603be656d68f46a16a179a155a175ad11a18b255f4672bfbd3f2e9ea", "difficulty": 545259519, - "ledger_hash": "921556d15aa22775a407bdb2ddae1340ba9d05627ba52e68f923d1da8d19dd32", - "txlist_hash": "48b1b772b588d367c6f93a95cf77a01dd2b6522b48ade863da4989ad23f40125", - "messages_hash": "e45f2bb3efd8a2c26d8dea423458b6a5eefbdf97154a6e9e53ab1cf307042e79", + "ledger_hash": "2c4b7d55681e56e5fb275a84f4fa1760baab6163d0f1dc7d80fec7b5f2eae6ce", + "txlist_hash": "36fa529b7a26e7df55dc798b0eed4bb90646cb55b0a2f39ec8592cbcf2e05acb", + "messages_hash": "31854994c766044c9ba5a672cf5a84172949df111aae9c4ebf1058496f5beeaf", "transaction_count": 1, "confirmed": true }, { - "block_index": 220, - "block_hash": "09a9ee8c28e83cffcb792e838fe358c983a64d641404ae8289bf93727aadd11c", - "block_time": 1730898794, - "previous_block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", + "block_index": 222, + "block_hash": "46ce0849603be656d68f46a16a179a155a175ad11a18b255f4672bfbd3f2e9ea", + "block_time": 1730906129, + "previous_block_hash": "64db2126788c40ef5a1842177fb98f11d026dab4b1514f5bc887eb1fef1cd0de", "difficulty": 545259519, - "ledger_hash": "3a3bcf0fe193fed2da2edbf1249f1e2039a9ff5c42f5800cb0c018478e87bedf", - "txlist_hash": "a46d10f1ded5d41459f29f158547521b309044b50994ff95248225c852c251ac", - "messages_hash": "5c9c6bececd7ca2915376470ba0c216344d4f5649cc9c94703d71fe641b1c889", + "ledger_hash": "e1cfd7ea41bfb2e0aaacc9e776fd577c15083cf1b75fb2146de7982988d38085", + "txlist_hash": "780c39f307acf790a3a5b06d1e9f5bcea84a04d5e9c694847c51f49930dba190", + "messages_hash": "9e68f027f4f324ff79b95920277452a6abf454adfcf10f800b0e33ccb2d61ab0", "transaction_count": 1, "confirmed": true }, { - "block_index": 219, - "block_hash": "5d155b6ee65f77666688c4b19020bb5bdceae94184bee17d794e6380cffdec68", - "block_time": 1730898790, - "previous_block_hash": "41debd881d6501feb35a5b16f192e8d6c1ff4bfec922ad9bd666d277685c9aba", + "block_index": 221, + "block_hash": "64db2126788c40ef5a1842177fb98f11d026dab4b1514f5bc887eb1fef1cd0de", + "block_time": 1730906124, + "previous_block_hash": "026f348d19222d397be10059627e2a16d4604b10c9ce5fcae1a750fe92280a1a", "difficulty": 545259519, - "ledger_hash": "12f9cb1cf9633d79cc0121d9cfe50f8652d1fa6f74cc93b8293098c5b0fb928a", - "txlist_hash": "519c1de30fbedf96677528be9dc75d2acff5273e4065a097c8c674b042d437f7", - "messages_hash": "23cb022018309ef70abf974578425962b684da32d2a897ab76a94be5b0c899f9", + "ledger_hash": "27925de3db6f9fb31c4a1460b53b9ee27de5299020dd6039f272fb641aabfc45", + "txlist_hash": "7a4fca92d16865a72cb54f73ea492f060495d4a4db308af3d8d3b4069f8a4a75", + "messages_hash": "db10e59dd4281c7299781c3960cf34ee9d253ea88876ebb6774c15be01374aea", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 218, - "result_count": 123 + "next_cursor": 220, + "result_count": 125 }, "/v2/blocks/": { "result": { - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", "difficulty": 545259519, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", "difficulty": 545259519, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null }, { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" } ], - "next_cursor": 787, + "next_cursor": 801, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,32 +300,32 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8" + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 223, - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "block_index": 225, + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 223, + "block_index": 225, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -376,21 +376,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 223, + "block_index": 225, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 223, + "block_index": 225, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -424,21 +424,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 223, + "block_index": 225, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "object_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "block_index": 220, "confirmed": true, - "block_time": 1730898794 + "block_time": 1730906120 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "status": "valid", "confirmed": true, - "block_time": 1730898688 + "block_time": 1730906006 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 66, - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "block_index": 200, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730898698, + "block_time": 1730906017, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -506,15 +506,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "block_index": 223, + "asset": "A95428959531084712", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -522,14 +522,14 @@ "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "PARENTA.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -540,11 +540,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -564,11 +564,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -669,13 +669,13 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_index": 223, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428959531084712", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -742,18 +742,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -765,18 +765,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 89, - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388", - "block_time": 1730898812, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "tx_index": 91, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", + "block_time": 1730906146, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096:1 2 ", + "utxos_info": " 2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -811,58 +811,23 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 88, - "result_count": 91 + "next_cursor": 90, + "result_count": 93 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "cd955517616e0c584adfe5bb2a14ea5690f8cd94b6f4165fa3cd8388c8ac8506", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "df544dae99046d52bfe00ee970090a9e5d1b82e902e41e0fa5e6b77dfb6a190d", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "322d7b8bfaa3dddc763da6ccaf27f9ebac18c16f72292051848dea08c729afee", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "a2fedd6847dde20c534d8bf99d1650415de2f4a1a3b3af0deff81f31d0109550", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "55efd04385a547c293a24327b5555f2365a0259d4c03af3f17cb00bff0c02060", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "151ba7ebe2228badc209400c38bfc61feb4c90769496758ef2cf2b86d7c1d028", + "hash": "8984181aedc7d948dce288cb8052f8f3c45e5154d46e68a4b253d13cb0d70a45", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -871,93 +836,57 @@ ], "vout": [ { - "value": 1000, - "script_pub_key": "512102eae04b7fae4b06bd25d5ad9737045b679610f802d3a3b7b607a8ac83f0ec5c9a21030d6ce6956533c554e8f0b0830b00fc2a85aba464e355af852411d14d983236442103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" - }, - { - "value": 1000, - "script_pub_key": "512102eae04b7fae4b06bd25d77b41c53760d275ad4bb4fae0aa7c813af1c34e74019a210307d966f155ec99974ed766c88e9341262ea73141660fbf05e5d5e7d732454eb02103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" - }, - { - "value": 1000, - "script_pub_key": "512103c4e04b7fae4b06bd25d6add4b7c7bd365ce1f40d2eaf2208e95fd1ae2b196e21210387d966fa932d881ee6d766c88e9341267ca73141660fbf05ef95e7d732454e232103c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f953ae" + "value": 0, + "script_pub_key": "6a2e2db78e0c43a874157feee9f8071788af90dc7018bd42008ff81cbdd5e9af401858aff1117a5cf87cd93025ca5350" }, { - "value": 29999987000, - "script_pub_key": "00148866238a1b690fe23cd7db55f93c555a4c161e32" + "value": 4999990000, + "script_pub_key": "0014d097e944fad2678d53bd0a94f2f5dfd5a49c4490" } ], "vtxinwit": [ - "304402204e78e6c2d67a3f18feb9586c86f41ae654c83a6d9fd405799258b4615cec4ca6022079636bb1c4e9012125cd208ca6400a17ee20cb05c3b6ba74d7b0105b94429bcc01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "30440220372f18faa11db76488c63d41b0140e7620a87a08f35ae59bb34aea965e2db853022006a41f594f0f55adb737870a5b0db7baad51f98e2e3f399a4af8b7e94a565e4601", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "304402202ecc1d77c8a97e8bd7f38a50e523d33ea77ddd1f1ae4ffbcf50907f9c1499f6d022076fdcfd3ebfcf9cd48ecb85f05b4cf3a11bb6f4ec6a7c76b048b635e1e332d8601", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "3044022003a165ddb344b3e95ae53cfb2583a04e3f824c541be5925f1b15765a635b26bb02204b614b91b6884ef95e97594637b3150545ef4e8bd5994083878b678c7616fbad01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "304402203546a8bea60a68d32dbd0e0d84eaf7665990103b273b88870528d02e5216fb620220497630e159a901a0c8de9303c2cceb85a4ca707941b848b345c9061fedac3ebb01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9", - "304402202ee2bbd715c5798e9f4c98e1959922d890ef5e814838c6fd59962792cf65fb830220213a6bd58397f93abe93766a2dd029ea8d4f600ef0ef0ab7b7d4f22bdd5ab60a01", - "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" + "304402204016eb416606e8386d75ba2d748caaa9f2c4f8e435bf6216a41d6ddcbb99290e02203df8926228ea55445e5225647cb2b939537acd30c63484c5a9e7e21823f9988401", + "02adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc9" ], "lock_time": 0, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", - "tx_id": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8" + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", + "tx_id": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "divisible": true, + "locked": false }, - { - "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] + "quantity_normalized": "0.00001000" + } }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6b65f00172eaa1e413172fbfc3e96fdab3b2dd37f5d8be9af578f3582bdde379", + "hash": "68a8bbe346300d7f6d0089492d3bf12ab457f583c566615fc345de4550810b45", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +896,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e802cc64f2ff3672fdfce4c17c8387d39625bf0027ca63ec6e99e7d0bcbe992c6e2d7c870c0bd251acfcbbb9b92dd" + "script_pub_key": "6a2ebb88df87a9fd11e68aeba004e3b85212a967bd23e68a3e5fc8162b62a198e5aa2b496e79a348352cea8c6fd9d119" }, { "value": 4949930546, - "script_pub_key": "0014cb84369aaa777801d6d572f0dde4294cbf91d44f" + "script_pub_key": "0014bedceb28862d85cfa2f543d6e7ef2c932e8006f3" } ], "vtxinwit": [ - "304402200d48445154c4792d883d61c85df920b1c73006420c9dd956f7b5d98b683121aa02201f7a53bb97d9b052905a7baec0ee819893f57090a8302317ff6b8efe959bd7c201", - "028bf1a844374d601cebb7bb76f8534dfc66b13cd6c2ab56ef54ec474c9527acb6" + "304402206c3d516f7075766513142483c9fe2cb08e21b8a4cdc3ad8d012d28136218800902204cda02acf453e6b4dc04aa2e86668d8cd84904dbd7d733e977f1405b30ca2dd201", + "03e4432bd29fd60c4b9082476b3870aca590471ffd5d06ea55d0fad759214ce474" ], "lock_time": 0, - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_id": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb" + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_id": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +917,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -1014,18 +943,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1039,18 +968,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_time": 1730898820, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_time": 1730906155, + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1065,32 +994,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1101,20 +1030,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1124,24 +1053,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1151,24 +1080,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 787, + "event_index": 801, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 223, - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "block_index": 225, + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "msg_index": 1, "quantity": 2000000000, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", "status": "valid", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1178,43 +1107,43 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 786, + "next_cursor": 800, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1225,20 +1154,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1248,24 +1177,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1275,24 +1204,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 787, + "event_index": 801, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 223, - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "block_index": 225, + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "msg_index": 1, "quantity": 2000000000, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", "status": "valid", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1302,22 +1231,22 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 786, + "next_cursor": 800, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1254,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1337,11 +1266,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1278,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1367,29 +1296,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1333,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1422,19 +1351,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1444,24 +1373,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1471,36 +1400,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": null, @@ -1509,19 +1438,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1531,24 +1460,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1558,36 +1487,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": null, @@ -1600,7 +1529,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1539,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1621,7 +1550,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1631,7 +1560,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1642,7 +1571,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1652,7 +1581,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1663,7 +1592,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1673,7 +1602,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1684,7 +1613,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1694,7 +1623,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1708,17 +1637,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_hash": "3d736d00b47d164c3591fed8490ab8c61ac4853a494cf0deb3773bd0fb8c8abc", - "block_time": 1730898769, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "block_hash": "4315c34905e78101728bca60d0ccafb873ae0b3138df8534a5e8058151daf6df", + "block_time": 1730906087, + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e:0 4 ", + "utxos_info": " 7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1726,14 +1655,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1741,7 +1670,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1760,17 +1689,17 @@ }, { "tx_index": 80, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_hash": "55ee08d2ac5ed1cc1fe953521fd43be001432636fed97fe117ee619ac3f3ab8b", - "block_time": 1730898765, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "block_hash": "22ea83f1c95fc9e33b70e3f00ee5db5260307113ef32624a93d7a8c8db7c32f7", + "block_time": 1730906083, + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808866238a1b690fe23cd7db55f93c555a4c161e32806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f3c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e:0 4 ", + "utxos_info": " c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1778,14 +1707,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1793,7 +1722,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1812,17 +1741,17 @@ }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", - "block_time": 1730898762, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "6ba7abfdc2740592b3e70e3657b356ee9aa38b6788633ce26480f91bceade822", + "block_time": 1730906079, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", + "utxos_info": " 980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1830,14 +1759,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1845,7 +1774,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1864,17 +1793,17 @@ }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", - "block_time": 1730898757, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "107fbd312058741b650cbd9a974365dfd0b2e06a63d3295400a9f04528856ca0", + "block_time": 1730906074, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", + "utxos_info": " 00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1882,14 +1811,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1897,7 +1826,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1916,17 +1845,17 @@ }, { "tx_index": 77, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", - "block_time": 1730898744, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", + "block_time": 1730906070, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "supported": true, - "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", + "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1934,12 +1863,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -1959,28 +1888,28 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 220, - "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "block_time": 1730898794 + "order_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "block_time": 1730906120 }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 }, { "event_index": 760, "event": "CREDIT", "params": { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "block_index": 220, "calling_function": "cancel order", - "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "event": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730898794, + "block_time": 1730906120, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1990,9 +1919,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 }, { "event_index": 716, @@ -2000,15 +1929,15 @@ "params": { "asset": "XCP", "block_index": 214, - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2018,9 +1947,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_time": 1730898769 + "block_time": 1730906087 }, { "event_index": 715, @@ -2028,27 +1957,27 @@ "params": { "asset": "MPMASSET", "block_index": 214, - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_time": 1730898769 + "block_time": 1730906087 } ], "next_cursor": 714, @@ -2057,18 +1986,18 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "quantity": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2078,22 +2007,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2103,22 +2032,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", - "block_index": 223, - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "block_index": 225, + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2128,30 +2057,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730898824.7521684, + "block_time": 1730906159.3902285, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "destination": "", "fee": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, - "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, + "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -2165,7 +2094,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -2174,7 +2103,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2182,14 +2111,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2197,14 +2126,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2212,14 +2141,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -2234,7 +2163,7 @@ "quantity_normalized": "825.99965000" }, { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2242,7 +2171,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2255,7 +2184,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -2277,16 +2206,16 @@ "result": [ { "block_index": 214, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "event": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2298,16 +2227,16 @@ }, { "block_index": 213, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "event": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2319,16 +2248,16 @@ }, { "block_index": 213, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "event": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2340,16 +2269,16 @@ }, { "block_index": 211, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "event": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2361,20 +2290,20 @@ }, { "block_index": 209, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", + "event": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898740, + "block_time": 1730906066, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2388,16 +2317,16 @@ "result": [ { "block_index": 212, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "event": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2409,20 +2338,20 @@ }, { "block_index": 212, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "event": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2430,16 +2359,16 @@ }, { "block_index": 211, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "event": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2451,20 +2380,20 @@ }, { "block_index": 211, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "event": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2472,20 +2401,20 @@ }, { "block_index": 210, - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "event": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898744, + "block_time": 1730906070, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2504,9 +2433,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", + "tx_hash": "5923d6c82239efc9e2bbc657d5f0dda18e8b690ad30674893918fccb97bb500a", "block_index": 137, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2514,7 +2443,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898413, + "block_time": 1730905734, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2525,14 +2454,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "8fe6de4ce0b7f483efb269b49c145c96bd129fb037c8c90fdecaa5c597b24b17", + "tx_hash": "b36e7e917e74ea938cfcac1c37dd0355f396d3443e0b1fc7df27af92b50dd670", "block_index": 112, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730898296, + "block_time": 1730905642, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2544,10 +2473,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2555,7 +2484,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2568,10 +2497,10 @@ }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2579,11 +2508,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2592,10 +2521,10 @@ }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2603,11 +2532,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2616,10 +2545,10 @@ }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2627,7 +2556,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2640,10 +2569,10 @@ }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2651,11 +2580,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2670,10 +2599,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "9cabb396047dd7241313f9131a4b5a7e3f7a7a9213c360840ade79881132ce8c", + "tx_hash": "39f0d0fc72bfcb9e98652999930ff9f115dd25b2f28cfa6464726895a9f1604c", "block_index": 151, - "source": "8816f586e3586a6ffe38bb114f1f022f738630f3f70b7addb798e06d08a9a5ce:0", - "destination": "bcrt1qf4myn47pzpqtgdyw8gdzq2l5pk2nrhseazsq8m", + "source": "800249e2b33e671e153852fbf8e12c05e1d164ade16e968d23cfbba4ed3a54d8:0", + "destination": "bcrt1qmwfg0570lrsulrlj95j86ujdpwp4tc6gl6vvsq", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2681,11 +2610,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898493, + "block_time": 1730905800, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2710,9 +2639,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2721,7 +2650,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2732,7 +2661,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2749,9 +2678,9 @@ }, { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2760,7 +2689,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2771,11 +2700,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2793,9 +2722,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2804,7 +2733,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2815,7 +2744,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2836,19 +2765,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", + "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2856,7 +2785,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2871,11 +2800,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -2885,19 +2814,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2905,7 +2834,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2920,7 +2849,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2934,19 +2863,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2954,7 +2883,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2969,7 +2898,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2989,19 +2918,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", + "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3009,7 +2938,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3024,11 +2953,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -3038,19 +2967,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3058,7 +2987,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3073,7 +3002,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3087,19 +3016,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3107,7 +3036,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3122,7 +3051,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3142,19 +3071,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3162,7 +3091,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3177,7 +3106,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3191,19 +3120,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3211,7 +3140,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3226,7 +3155,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3246,19 +3175,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3195,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3210,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3295,19 +3224,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3315,7 +3244,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3330,7 +3259,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3349,16 +3278,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -3369,14 +3298,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", + "tx_hash": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", "msg_index": 0, "block_index": 209, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -3391,20 +3320,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898740, + "block_time": 1730906066, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "5a7af4a1e2d6735e874e2271f8ba9f34cf2ff6b08b43ce63342239cc0eaf7d85", + "tx_hash": "7a840c983808f779b2ddf3adbca3765fe7ece6d67e62d6ccf6b0d42466c4fd3c", "msg_index": 0, "block_index": 165, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -3419,20 +3348,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898549, + "block_time": 1730905864, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "afc31bab261d3338b6b1168b9682b0d2e012330502e350c8dc90093651ba244b", + "tx_hash": "68f9e4a07c450faf7e324387b98333b51d2a4e3c9a9a912971bfa3149a171481", "msg_index": 0, "block_index": 164, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -3447,20 +3376,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730898544, + "block_time": 1730905859, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "5df52d08f42b3f10fd555d494df49b6799e67fa12a5d889ad77222366d8dcb56", + "tx_hash": "559b805057fb143b4dfc4aeaba418dbc306507ce6be277966d794acb7103ac5a", "msg_index": 0, "block_index": 163, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -3475,20 +3404,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898541, + "block_time": 1730905856, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "de3cf70c12d0136d2c4c5abbaf5d5a69ec3b68f2d6861e9531f41ce54e04df22", + "tx_hash": "b6cb783e15faeee05c5749963a0faf709ba8f790441646ee1465290f3272d6cf", "msg_index": 0, "block_index": 162, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -3503,7 +3432,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730898537, + "block_time": 1730905853, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3517,8 +3446,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3526,16 +3455,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -3543,16 +3472,16 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 180, @@ -3560,16 +3489,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730898516, - "last_issuance_block_time": 1730898523, + "first_issuance_block_time": 1730905825, + "last_issuance_block_time": 1730905842, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3577,16 +3506,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730898481, - "last_issuance_block_time": 1730898481, + "first_issuance_block_time": 1730905788, + "last_issuance_block_time": 1730905788, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 40, @@ -3594,8 +3523,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730898407, - "last_issuance_block_time": 1730898410, + "first_issuance_block_time": 1730905727, + "last_issuance_block_time": 1730905730, "supply_normalized": "0.00000040" } ], @@ -3608,8 +3537,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3617,16 +3546,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -3634,16 +3563,16 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 180, @@ -3651,16 +3580,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730898516, - "last_issuance_block_time": 1730898523, + "first_issuance_block_time": 1730905825, + "last_issuance_block_time": 1730905842, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3668,16 +3597,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730898481, - "last_issuance_block_time": 1730898481, + "first_issuance_block_time": 1730905788, + "last_issuance_block_time": 1730905788, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 40, @@ -3685,8 +3614,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730898407, - "last_issuance_block_time": 1730898410, + "first_issuance_block_time": 1730905727, + "last_issuance_block_time": 1730905730, "supply_normalized": "0.00000040" } ], @@ -3699,8 +3628,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3708,16 +3637,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -3725,16 +3654,16 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 180, @@ -3742,16 +3671,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1730898516, - "last_issuance_block_time": 1730898523, + "first_issuance_block_time": 1730905825, + "last_issuance_block_time": 1730905842, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -3759,16 +3688,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730898481, - "last_issuance_block_time": 1730898481, + "first_issuance_block_time": 1730905788, + "last_issuance_block_time": 1730905788, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 40, @@ -3776,8 +3705,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730898407, - "last_issuance_block_time": 1730898410, + "first_issuance_block_time": 1730905727, + "last_issuance_block_time": 1730905730, "supply_normalized": "0.00000040" } ], @@ -3788,17 +3717,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "block_hash": "300434dd4fe311ff079b0670d40ab92e2d43489f9d77819e7e9c52c25831d4a3", - "block_time": 1730898762, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "6ba7abfdc2740592b3e70e3657b356ee9aa38b6788633ce26480f91bceade822", + "block_time": 1730906079, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5:0 4 ", + "utxos_info": " 980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3806,14 +3735,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -3821,7 +3750,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3840,17 +3769,17 @@ }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "block_hash": "63c1b0bcec429bd31bcaf6182bee01d53350b1fc01b068046dae267e9127ff91", - "block_time": 1730898757, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "107fbd312058741b650cbd9a974365dfd0b2e06a63d3295400a9f04528856ca0", + "block_time": 1730906074, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c3e651caf10c27fd0c95beeef77d2ddbf5328ab5806ff61e4d4a0e27d64b8593bd0cf90c9525855a1080cb84369aaa777801d6d572f0dde4294cbf91d44f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8:0 4 ", + "utxos_info": " 00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3858,14 +3787,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -3873,7 +3802,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3892,17 +3821,17 @@ }, { "tx_index": 77, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_hash": "3bd274c6464dac11fae793c158cc12a6a88c15429b3162bb9efcef37bfc5c293", - "block_time": 1730898744, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", + "block_time": 1730906070, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "supported": true, - "utxos_info": " a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf:1 2 ", + "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3910,12 +3839,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -3926,17 +3855,17 @@ }, { "tx_index": 76, - "tx_hash": "23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db", + "tx_hash": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", "block_index": 209, - "block_hash": "7c515a6e0922fe0def0d949bf564cfe18c524a326a51d16417e5c82c01f526ca", - "block_time": 1730898740, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "6b2f723cb4f3adaaf624bb7ca9e4de149392645cd8cbcfd379ceaa9b9eac9bfa", + "block_time": 1730906066, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 23c99d9b587576e6e4e7bd9a020d201e6d4bed4e0cc33a36c8ae371b892f96db:1 2 ", + "utxos_info": " ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3961,17 +3890,17 @@ }, { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 202, - "block_hash": "3cefda465642e6950410081f78c82cc5ea312c1db554802d891858b8174c14cf", - "block_time": 1730898704, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "block_hash": "1ed0e83ad32b9e691ec9704d6f4526fa3fe1e1992073d5580873fec49e4c627e", + "block_time": 1730906034, + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f:1 2 ", + "utxos_info": " e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3988,7 +3917,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4006,20 +3935,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4041,9 +3970,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4060,7 +3989,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4088,9 +4017,9 @@ }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4107,7 +4036,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4135,9 +4064,9 @@ }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4154,7 +4083,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4182,9 +4111,9 @@ }, { "tx_index": 64, - "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "block_index": 220, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4201,7 +4130,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906120, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4234,10 +4163,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "tx_index": 44, "block_index": 159, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4262,7 +4191,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4274,10 +4203,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", + "tx_hash": "a183181fbc3a1bf92bdeae89cbe4434c490e42d423f32540b38874062011b183", "tx_index": 43, "block_index": 156, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4302,7 +4231,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898512, + "block_time": 1730905821, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4311,10 +4240,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", + "tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4339,7 +4268,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730898407, + "block_time": 1730905727, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4351,10 +4280,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4379,7 +4308,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730898381, + "block_time": 1730905713, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4391,10 +4320,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", + "tx_hash": "231d09a91249525f36e1a7d5aa712b5d963589798438f1b0a60677605a178432", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4419,7 +4348,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730898376, + "block_time": 1730905708, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4431,10 +4360,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4459,7 +4388,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4477,22 +4406,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4501,22 +4430,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", + "tx_hash": "f6622f9dcdd08038ac60c485e9967232f532360af5eefb4c3f35d37bd735e9ad", "tx_index": 45, "block_index": 158, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898520, + "block_time": 1730905829, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4525,22 +4454,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", + "tx_hash": "cbff45a7aa63aa0777a4ae531fd5e8e08c28f8634824c9a7e37e69e8887a6446", "tx_index": 23, "block_index": 136, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898410, + "block_time": 1730905730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4549,22 +4478,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", + "tx_hash": "85a0fcffd37dd5eab5fd7e4c72c79225b9716f73abd0eeda868c9da84dc0414f", "tx_index": 21, "block_index": 134, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898402, + "block_time": 1730905723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4573,22 +4502,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", + "tx_hash": "880f43d002cc5360590adf0dab62ff4f00348ed69ce767d6452159b0c36da25d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898388, + "block_time": 1730905720, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4597,22 +4526,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "3ecb5d63127ffd9177a63b61b38c60f2a5565baf6bb30926ee0f3aff7acf59d9", + "tx_hash": "229d81d2a681191c701658b1dd8d55d3bb41ad980940a700373db81216c15142", "tx_index": 19, "block_index": 132, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898385, + "block_time": 1730905716, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4621,22 +4550,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "38d40d2b91efed74d8498647729dc1339a295b593b29133217fe68bbcac63bf4", + "tx_hash": "f72eb630daaca420ea82e20017a6740aa3de688e6b9ba2ca2a6b42d49961b8ed", "tx_index": 15, "block_index": 127, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "3b79ac5ea42c682e7fe86ebcc78a951a133aa8eb1583571777ea996396adfd07", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "231d09a91249525f36e1a7d5aa712b5d963589798438f1b0a60677605a178432", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898364, + "block_time": 1730905697, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4645,22 +4574,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4675,22 +4604,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4707,8 +4636,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4721,12 +4650,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4742,7 +4671,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4753,9 +4682,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985786, - "btc_fee": 14214, - "rawtransaction": "020000000001011f26920a04a29ce9c43871a74e2cdcd812609941351ae1885cb421f02e60a7d7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0200000000000000002b6a293e05675e09c8cf2a17734419a1ca7604fbd84a4bf747ddeb0fb14b0610cab5f3494f88b803e84338067aba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985793, + "btc_fee": 14207, + "rawtransaction": "02000000000101643786e895b891f625369790abf36a40c891a28e4321c7274bfe80ab2f4136c900000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff0200000000000000002b6a29a35743c4badaa207ebf51c226843d0d75423ebb291ad99d42328daf889de6e2d55e41ffae420b50faf81ba052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4773,24 +4702,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "order_match_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "data": "434e5452505254590bf58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980910, - "btc_fee": 18090, - "rawtransaction": "020000000001018ac98cb5e07e7ebaecd4544792ba69f7520a39081b66cc81e6c7722f8028eb3d000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e8030000000000001600148866238a1b690fe23cd7db55f93c555a4c161e3200000000000000004b6a49bddcaf612bd8e8b982ea2bf027e094462c5e4db35c0426b684e56ded8020b991c4dfb2ed68220c26aa909967ac7ecc446184dd995eda98bf4fd591dd2374ff2b424989c48b1fa803946ea7052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999980918, + "btc_fee": 18082, + "rawtransaction": "020000000001018f031c62d72ae2a0a1f0beb8ceae567c19f378ba0ad8dad50bd0720d689731ce00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff03e803000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449000000000000000004b6a492ee98792b5c75e16eb5f5fc7230f19c53aaf643174fff06697b0ccad477d2bad041faadec789bc80bda2c4c692e525e9374cbda358889b14b5f859c61d4e0010f49c1c9a39e85f229876a7052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "order_match_id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "order_match_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "status": "valid" } } @@ -4799,7 +4728,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4808,30 +4737,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985785, - "btc_fee": 13215, - "rawtransaction": "0200000000010175505947253fe180015f3d5d2d2bcc88da78d0374f8aeeb63cba417a8b9ab445000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac79ba052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000" + "btc_change": 4999985791, + "btc_fee": 13209, + "rawtransaction": "020000000001010df84bfc88e14beed7039f90f5699729aa6b894c57145ef035aa8869677042d500000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac7fba052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", - "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", + "offer_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "btc_in": 4949918908, + "data": "434e545250525459462119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "btc_in": 4949928908, "btc_out": 0, - "btc_change": 4949904694, - "btc_fee": 14214, - "rawtransaction": "0200000000010196b010c4f14eb4b263dcc5b2ebd574e1c0a60d0e35ef6004004fe992531ce3a801000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e396ffffffff0200000000000000002b6a2913427da40a73ff22b57560ac1a5e2c647d1ee0fbd909c290fbc80e3f81262db6bd3d29b05e8350f971368d092701000000160014b003b50be64fbaebe393cc9cbc50f41a12e2e39602000000000000", + "btc_change": 4949914701, + "btc_fee": 14207, + "rawtransaction": "020000000001017eed8ea60b92250f5df56d749bf293a3c1922548515645828f02162ee3ae19210100000016001419795ee02143ec444cd5bff9806d199454cf4eadffffffff0200000000000000002b6a2935f41e9bc2049ca7f5eb913d5d2796724e0ea75e7b7b22b5ec2d4c87ce797640eaf6da36cbe2dd03e34db409270100000016001419795ee02143ec444cd5bff9806d199454cf4ead02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", + "offer_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", "status": "valid" } } @@ -4840,7 +4769,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4858,9 +4787,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986315, - "btc_fee": 13685, - "rawtransaction": "0200000000010164ae3656cbb3db3af50bf78b72e4334a948f3fd9ccff761d6f35973063ddffbd000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000226a2041e69f4fdfdb37994a3e4970786c46b606bc0099d6a174cd6af7aed20e774d618bbc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999986321, + "btc_fee": 13679, + "rawtransaction": "02000000000101cda98c819535aed5812c49119b20ce1df8790df125c47a148a6f50bc481663ca00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000226a20334c577374fa112e6149244d1e637103fbefbc01253ec3d4f7f12e8b1988eba491bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4876,7 +4805,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4899,9 +4828,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859527, - "btc_fee": 14272, - "rawtransaction": "02000000000101b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f60200000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6fffffffff0200000000000000002c6a2aed10c2a73d16732ffb8c3b160726f88e075a38b11a8621651a41c17968d155492a8c588ccf686e064069c7dc08270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f02000000000000", + "btc_change": 4949859533, + "btc_fee": 14266, + "rawtransaction": "020000000001018e5ce2b73f20a18bde9825745a2d7d969c5817a78635aa614f25c30b2a29cd4a020000001600143047d35450fa1d98208bddb4aa764db473597340ffffffff0200000000000000002c6a2a7ba35826620670ba5277ea1ded9ff8eb086b022551d59351ea19966b5011f4f00f19f3389579037ef667cddc0827010000001600143047d35450fa1d98208bddb4aa764db47359734002000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4923,7 +4852,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -4931,7 +4860,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -4948,9 +4877,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986256, - "btc_fee": 13744, - "rawtransaction": "0200000000010137ca04a987548ae9224a7b556e3b6b6fe71b779f50029a25e8beb974a1991668000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a21bf85e8640974884939c4ba68a062ab2fe65a5a4b72beee71fde295c91561c1f0fe50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999986262, + "btc_fee": 13738, + "rawtransaction": "02000000000101a17c62cc89fcfab45d83d7bcf00138e9210e1ecffadd0e4ec41d09912ce91e5600000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000236a216674725fd4301c5c548a5c9afef7cb8ee560873547ba591ad60b3b9c9703c2aa1356bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4967,10 +4896,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "transfer_destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "lock": false, "reset": false, @@ -4982,9 +4911,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983713, - "btc_fee": 15741, - "rawtransaction": "0200000000010138cd9ca70f96225144ec6cda7db6239752465c0740b867ea640b4c947bc93105000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000236a21a12053d440562b7c5ca67bbca734003946afed661ae2d7649f9df42fee641b0bb261b2052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999983720, + "btc_fee": 15734, + "rawtransaction": "0200000000010191fd9ad521b1932277ed9853c7f5f1f7f6b349a443561da5dee1f279194f0b9a00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff032202000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900000000000000000236a2187ad0d5c2b8286005ddbe89aa2a92cece2987c6cef41a7a78a3ee4e0315b1d1c8868b2052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5009,16 +4938,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", 1 ], [ "FREEFAIRMINT", - "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", 2 ] ], @@ -5027,26 +4956,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002808866238a1b690fe23cd7db55f93c555a4c161e3280c3e651caf10c27fd0c95beeef77d2ddbf5328ab54012737f10d9927d5000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280d097e944fad2678d53bd0a94f2f5dfd5a49c449080f3d964d3642161c5d73279548e4e9d5d291663e14012737f10d9927d5000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785267, - "btc_fee": 20733, - "rawtransaction": "020000000001018ed4ff4164d68262c320ae21eef08ee8085683b2f00910c14bb1980c508a3bb803000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab5ffffffff03e803000000000000695121028de71ffdf85c16d2cd5b19121f750f1c9fdcbbce92d5c3560de6fe938ba009fd2102d12779a7e8950e0e379fde6abcf1c98b46520962b36ca56c869d1d2486228cb121032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aee8030000000000006951210292e71ffdf85c16d2cd0819109ffd693f15e3d2c170e9148d581bc2c6d1ec1f282102cf15f8640ec4c4ff3bb82366294f277c3b7fd29781e6102c94ee62345fb0f16721032a6ee6d738ffbce888a5021029cdd87c24536c125ab90900658b0a8ddfae76ae53aeb3ba072701000000160014c3e651caf10c27fd0c95beeef77d2ddbf5328ab502000000000000", + "btc_change": 4949785276, + "btc_fee": 20724, + "rawtransaction": "020000000001011dc7c1e41820dbecddc65714694c8356ca56af78f75f007abac72b22c6fa677803000000160014f3d964d3642161c5d73279548e4e9d5d291663e1ffffffff03e8030000000000006951210302f37f8c02b0159e3937aec28b53aacfebae0a50f2eb1546227dbd2a4e96aaec2103b14a593ef296de2a70e1cd12da19a452cb29f62e966367f36829b2314f83d76021028d544179e05f0fe96bb66a5697064c9637b7475a270a9af18a9d06cb9badbcb953aee803000000000000695121031df37f8c02b0159e3964aec00b833d26af70d8377fb8a84cb68b48f59b3236ef2103f5dad8cd2bf20d4e518008c5e860f0dc85b4ab07800086b37a5acd219611aaec21028d544179e05f0fe96bb66a5697064c9637b7475a270a9af18a9d06cb9badbcb953aebcba072701000000160014f3d964d3642161c5d73279548e4e9d5d291663e102000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FREEFAIRMINT", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5058,7 +4987,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5076,7 +5005,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5088,9 +5017,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985199, - "btc_fee": 14801, - "rawtransaction": "02000000000101c70fc97b78bd7034fe2d3f9004a46d8006a66784a9929d830ee82eaf726f5158000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000356a330cb28c2f88b24650c272ec55edec5b7a31bc88a410b6cc14d45df5529ed60eb94ebbf649de531d141502200b5a32a390bfd6bf2fb8052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985206, + "btc_fee": 14794, + "rawtransaction": "020000000001014f76a135350388948d9f0078677eba5a0ee4a0b152165a197fb26605e3dcdfaa00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000356a33f318d201aabe90b54329d3737d5d657d1b0ebec1a7164673c8c8990f72a92998d750f32dae66c0869dc4b140c265b82d3e78bd36b8052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5112,8 +5041,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5130,19 +5059,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c3e651caf10c27fd0c95beeef77d2ddbf5328ab5", + "data": "434e54525052545902000000000000000100000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985493, - "btc_fee": 14507, - "rawtransaction": "02000000000101275f8f9d807f9d3a3ea26cc21cdb9e8bd02473ef52e2c4510c3944766e6f3cc7000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000306a2e4a351f39f607b988bb1084bd9056d04cb3997b670785d105977fbedc43dd615ef56b511ea26d7c6b6803d5dd324455b9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985499, + "btc_fee": 14501, + "rawtransaction": "02000000000101e9c7466dee6d1b01f2ce5d35c6feb2c38c668734e72f370aab05e81e185bc60f00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000306a2e0dcde744809e60c0e8b704dfb32bca1c9135e01fceb4287c08b8ccf09b47838fe88beda0ea4d8f584e3f3cb196a35bb9052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "quantity_normalized": "0.00001000" } @@ -5152,24 +5081,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480c3e651caf10c27fd0c95beeef77d2ddbf5328ab507ffff", + "data": "434e5452505254590480f3d964d3642161c5d73279548e4e9d5d291663e107ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986256, - "btc_fee": 13744, - "rawtransaction": "02000000000101d510690fb211173b73d75d0eb18bcd9df309e406eb936e1e226de3f6343ab516000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000236a216bc35627c64c3bb817cdcdf526daf2eaead0a68d42524cee3058940662f921352d50bc052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999986262, + "btc_fee": 13738, + "rawtransaction": "02000000000101e9cd76c8a64eb792610719f16fb58df7a32083b7354972c21496f9d0ebba7e5e00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000236a2177cd4521950c90d6c0f4e6413a388936cfa89fd8de9feb24106f530bebdd71205c56bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "flags": 7, "memo": "ffff" } @@ -5179,8 +5108,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "quantity": 1000, "skip_validation": false }, @@ -5188,9 +5117,9 @@ "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984610, - "btc_fee": 14390, - "rawtransaction": "02000000000101568bc9e3a73e1d8eabc6631161efd3d5db9313886eadbbfccb687d15a7afcd95000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff03e803000000000000160014cb84369aaa777801d6d572f0dde4294cbf91d44f00000000000000000c6a0a75757985319c705349d3e2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999984617, + "btc_fee": 14383, + "rawtransaction": "02000000000101c02f151cf7cacb367f5c77daea1c155aa9b008a592c35cceac61a6deb3bbb4d800000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff03e803000000000000160014bedceb28862d85cfa2f543d6e7ef2c932e8006f300000000000000000c6a0a305e73c2e64800499e6ce9b5052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5203,7 +5132,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5233,9 +5162,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985434, - "btc_fee": 14566, - "rawtransaction": "020000000001015dc2b22cfdd0ff5c24829aaab5c4387acfa517478203f77e9ac07622774977e1000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000316a2fa81466c8bc106f07472813851f995b5088ee75e832b732391e0996feec362ddb8cd22b040e6555b13b2dfccb8d25771ab9052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999985440, + "btc_fee": 14560, + "rawtransaction": "02000000000101b29564682363ea41ebeff08e55e5855bc5b5d87460f6c69522a4aa0f13ce08a900000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000316a2fed132d16c4e609ddb87b574a6a53c933257e841578fb7e4a98786715e3f32bc44c06c30e4303fc74cf11fc25b6a9fb20b9052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5270,14 +5199,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5287,9 +5216,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987020, - "btc_fee": 12980, - "rawtransaction": "02000000000101eb1278f82d60cbb72e82b894b5ba1f723e044daa85b8409e86501c6b10724285000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff020000000000000000166a14741a301b7be4b4adde7275b8b564d45731cbe2234cbf052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999987026, + "btc_fee": 12974, + "rawtransaction": "02000000000101cde7cbd4dfb47767b6610a270fe608e97f817670aa36b7ba6ade629c2712c22300000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000166a144c7cb056b63fd59a01f6a9e1050ffbf962b906fd52bf052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5304,7 +5233,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5322,9 +5251,9 @@ "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984594, - "btc_fee": 14860, - "rawtransaction": "02000000000101a6f8fd141df24a6a7bdc80bc7a998fcd167006e2a8df362810a3f0c9af450815000000001600148866238a1b690fe23cd7db55f93c555a4c161e32ffffffff0322020000000000001600148866238a1b690fe23cd7db55f93c555a4c161e320000000000000000146a128553f23205b8a06d14241944d54f34b58fbdd2b5052a010000001600148866238a1b690fe23cd7db55f93c555a4c161e3202000000000000", + "btc_change": 4999984601, + "btc_fee": 14853, + "rawtransaction": "0200000000010164e5c85dbf5d037dd85d104a8011952682ab740017d42874e005fc7758fdb33600000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff032202000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900000000000000000146a12467aa0e269da65ab31ed68e5dbe2f7212935d9b5052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5340,22 +5269,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317133706e7a387a736d64793837793078686d64326c6a307a34746678707638336a3875636d6e38", + "data": "434e54525052545966626372743171367a74376a33383636666e6336356161703232303961776c366b6a66633379737936676d6673", "btc_in": 4949971000, "btc_out": 0, - "btc_change": 4949945450, - "btc_fee": 25550, - "rawtransaction": "02000000000102b8a3d912f8c7071eb19553990dadd787809c45d7791d48248554542bcf94e7f600000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff8507ccc200545adb00db06cf3e1d341d1b00517f5b14121efbaa5840407855cd01000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8cffffffff020000000000000000376a35ed10c2a73d16732f91ee5864731789bd7634428960f54c028b79f60058a93d27a6be34e6ff125a724211eda463802d049ab645ee1b6a2c0a2701000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c02000002000000000000", + "btc_change": 4949945462, + "btc_fee": 25538, + "rawtransaction": "020000000001028e5ce2b73f20a18bde9825745a2d7d969c5817a78635aa614f25c30b2a29cd4a000000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14fffffffffbc51bdb1cbb93331825a2b1e2607099319b9660c95ec65f3e2596960195d4846010000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14fffffffff020000000000000000376a357ba35826620670ba3815896f99ae89dd731f354f62eda5646477f55d65709583d52bc301f40e6f48f90d0ee6fc341bb80e843a782e762c0a27010000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14f02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8" + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs" } } } @@ -5366,8 +5295,8 @@ "asset": "PARENTB", "asset_id": "4641584819", "asset_longname": null, - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "owner": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "divisible": true, "locked": false, "supply": 100000000000, @@ -5375,16 +5304,16 @@ "first_issuance_block_index": 217, "last_issuance_block_index": 217, "confirmed": true, - "first_issuance_block_time": 1730898781, - "last_issuance_block_time": 1730898781, + "first_issuance_block_time": 1730906108, + "last_issuance_block_time": 1730906108, "supply_normalized": "1000.00000000" }, { "asset": "PARENTA", "asset_id": "4641584818", "asset_longname": null, - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "owner": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "owner": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "divisible": true, "locked": false, "supply": 100000000000, @@ -5392,16 +5321,16 @@ "first_issuance_block_index": 215, "last_issuance_block_index": 215, "confirmed": true, - "first_issuance_block_time": 1730898773, - "last_issuance_block_time": 1730898773, + "first_issuance_block_time": 1730906092, + "last_issuance_block_time": 1730906092, "supply_normalized": "1000.00000000" }, { "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 100000000000, @@ -5409,16 +5338,16 @@ "first_issuance_block_index": 209, "last_issuance_block_index": 209, "confirmed": true, - "first_issuance_block_time": 1730898740, - "last_issuance_block_time": 1730898740, + "first_issuance_block_time": 1730906066, + "last_issuance_block_time": 1730906066, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", - "owner": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", + "owner": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false, "supply": 100000000000, @@ -5426,16 +5355,16 @@ "first_issuance_block_index": 204, "last_issuance_block_index": 204, "confirmed": true, - "first_issuance_block_time": 1730898711, - "last_issuance_block_time": 1730898711, + "first_issuance_block_time": 1730906041, + "last_issuance_block_time": 1730906041, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -5443,8 +5372,8 @@ "first_issuance_block_index": 162, "last_issuance_block_index": 164, "confirmed": true, - "first_issuance_block_time": 1730898537, - "last_issuance_block_time": 1730898544, + "first_issuance_block_time": 1730905853, + "last_issuance_block_time": 1730905859, "supply_normalized": "100.00000000" } ], @@ -5456,8 +5385,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 10000000000, @@ -5465,15 +5394,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730898347, - "last_issuance_block_time": 1730898357, + "first_issuance_block_time": 1730905676, + "last_issuance_block_time": 1730905689, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5481,14 +5410,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5496,7 +5425,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5509,7 +5438,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 82599965196, "utxo": null, @@ -5531,9 +5460,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5550,7 +5479,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5578,9 +5507,9 @@ }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5597,7 +5526,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5625,9 +5554,9 @@ }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5644,7 +5573,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5672,9 +5601,9 @@ }, { "tx_index": 64, - "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "block_index": 220, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5691,7 +5620,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906120, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5719,9 +5648,9 @@ }, { "tx_index": 56, - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5738,7 +5667,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5771,13 +5700,13 @@ "/v2/assets//matches": { "result": [ { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5791,7 +5720,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5811,13 +5740,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 56, - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5831,7 +5760,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5851,13 +5780,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", "tx0_index": 53, - "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 54, - "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5871,7 +5800,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5891,13 +5820,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5911,7 +5840,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5938,20 +5867,20 @@ "result": [ { "block_index": 199, - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "event": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "tx_index": 65, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5959,20 +5888,20 @@ }, { "block_index": 125, - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", + "event": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -5980,20 +5909,20 @@ }, { "block_index": 124, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "event": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6001,20 +5930,20 @@ }, { "block_index": 124, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "event": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6026,16 +5955,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "event": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6048,17 +5977,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 223, + "block_index": 225, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6070,16 +5999,16 @@ }, { "block_index": 217, - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", + "event": "5703e82bec4eae111000ba07a3989ca1df3c4d0394fbec4770508be013e1304b", "tx_index": 84, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898781, + "block_time": 1730906108, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6091,16 +6020,16 @@ }, { "block_index": 215, - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "efeb32ad1e798d9117382cdd1d0e9714530e4f27b6d57ca9e6d5b6bc9186b375", + "event": "37ed4f67da4c7daa52ab856851f6f42b4ee4218f07e8bb695f76bfdbaef85ade", "tx_index": 82, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898773, + "block_time": 1730906092, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6112,16 +6041,16 @@ }, { "block_index": 214, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "event": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6133,16 +6062,16 @@ }, { "block_index": 213, - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "event": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6165,14 +6094,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", + "tx_hash": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6187,20 +6116,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6215,20 +6144,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6243,20 +6172,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "transfer": false, "callable": false, "call_date": 0, @@ -6271,7 +6200,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898347, + "block_time": 1730905676, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6282,11 +6211,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6294,7 +6223,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6307,10 +6236,10 @@ }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6318,7 +6247,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6331,10 +6260,10 @@ }, { "tx_index": 80, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6342,7 +6271,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6355,10 +6284,10 @@ }, { "tx_index": 79, - "tx_hash": "7f1b405d8474923d7809ec961946b3fcc2c83883a771956b9f80a0d7fa7519b5", + "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", "block_index": 212, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6366,7 +6295,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898762, + "block_time": 1730906079, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6379,10 +6308,10 @@ }, { "tx_index": 78, - "tx_hash": "720cf371c0019349050576c3f8e8e870f685abf2c5001ae2fcbd63f3261396c8", + "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6390,7 +6319,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6409,9 +6338,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6420,7 +6349,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6431,7 +6360,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6448,9 +6377,9 @@ }, { "tx_index": 29, - "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", + "tx_hash": "1f4dec693bc9df88231d804fd52e5b835a5f35cdae943a51ef12de40235304e1", "block_index": 142, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6459,7 +6388,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "origin": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6470,7 +6399,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898440, + "block_time": 1730905756, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6487,9 +6416,9 @@ }, { "tx_index": 30, - "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", + "tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", "block_index": 150, - "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", + "source": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6497,10 +6426,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_hash": "bbd08fcfb665580d196d17a77962c82036f81beba2ef55030a8e82bb6a3cab1f", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -6509,7 +6438,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898490, + "block_time": 1730905795, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6526,18 +6455,18 @@ }, { "tx_index": 33, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6548,7 +6477,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6570,9 +6499,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6581,7 +6510,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6521,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6621,7 +6550,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6629,7 +6558,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6638,7 +6567,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6646,7 +6575,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6655,7 +6584,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6663,7 +6592,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6672,7 +6601,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6685,29 +6614,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6722,7 +6651,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6736,27 +6665,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", + "tx_hash": "a5f38f2b0bec7778ac4c0756d0b4e74c8d364264d9db634caf1e07142a99f689", "block_index": 147, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6771,7 +6700,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898478, + "block_time": 1730905783, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6785,19 +6714,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6805,7 +6734,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6820,7 +6749,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6834,19 +6763,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6854,7 +6783,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6869,7 +6798,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6890,8 +6819,8 @@ "asset": "A95428958968845068", "asset_id": "95428958968845068", "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "owner": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false, "supply": 0, @@ -6899,8 +6828,8 @@ "first_issuance_block_index": 156, "last_issuance_block_index": 156, "confirmed": true, - "first_issuance_block_time": 1730898512, - "last_issuance_block_time": 1730898512, + "first_issuance_block_time": 1730905821, + "last_issuance_block_time": 1730905821, "supply_normalized": "0.00000000" } ], @@ -6910,10 +6839,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6938,7 +6867,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6956,22 +6885,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "055eeb3c40e64dea5be35c00ff490f5c01e58093b9cdf52f5fb0499a7e6cc676", + "tx_hash": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", "tx_index": 13, "block_index": 125, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898357, + "block_time": 1730905689, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -6980,22 +6909,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7", + "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898354, + "block_time": 1730905685, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7004,22 +6933,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7034,22 +6963,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "b6b4b3128c80c92bd0ae4f800d42c1212f8da2e4ccbc57ae0a947a210d4488f9", + "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", "tx_index": 11, "block_index": 123, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2be31c497ea77ec587b751316ec1639253fa439c457bc3032f7d9cfec0f9277d", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898350, + "block_time": 1730905680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -7065,9 +6994,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7084,7 +7013,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7112,9 +7041,9 @@ }, { "tx_index": 56, - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7131,7 +7060,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7159,9 +7088,9 @@ }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7178,7 +7107,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7206,9 +7135,9 @@ }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7225,7 +7154,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7253,9 +7182,9 @@ }, { "tx_index": 58, - "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "block_index": 214, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7272,7 +7201,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7304,10 +7233,10 @@ }, "/v2/orders/": { "result": { - "tx_index": 89, - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "tx_index": 91, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -7315,7 +7244,7 @@ "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 243, + "expire_index": 245, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7324,11 +7253,11 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730898812, + "block_time": 1730906146, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -7354,13 +7283,13 @@ "/v2/orders//matches": { "result": [ { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7374,7 +7303,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7401,15 +7330,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "btc_amount": 2000, - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "status": "valid", "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "btc_amount_normalized": "0.00002000" } ], @@ -7420,9 +7349,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "block_index": 191, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7440,7 +7369,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730898646, + "block_time": 1730905961, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7466,9 +7395,9 @@ }, { "tx_index": 58, - "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "block_index": 214, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7486,7 +7415,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730898769, + "block_time": 1730906087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7512,9 +7441,9 @@ }, { "tx_index": 53, - "tx_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", + "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", "block_index": 188, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7532,7 +7461,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898572, + "block_time": 1730905888, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7558,9 +7487,9 @@ }, { "tx_index": 55, - "tx_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", + "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", "block_index": 211, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7578,7 +7507,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898757, + "block_time": 1730906074, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7604,9 +7533,9 @@ }, { "tx_index": 62, - "tx_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", + "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", "block_index": 197, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7624,7 +7553,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898688, + "block_time": 1730906006, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7655,13 +7584,13 @@ "/v2/orders///matches": { "result": [ { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7678,7 +7607,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7698,13 +7627,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 56, - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7721,7 +7650,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898646, + "block_time": 1730905961, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7741,13 +7670,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", "tx0_index": 53, - "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 54, - "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7764,7 +7693,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898572, + "block_time": 1730905888, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7784,13 +7713,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7807,7 +7736,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7833,13 +7762,13 @@ "/v2/order_matches": { "result": [ { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7853,7 +7782,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7873,13 +7802,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", "tx0_index": 55, - "tx0_hash": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 56, - "tx1_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7893,7 +7822,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730898646, + "block_time": 1730905961, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7913,13 +7842,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba_72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", + "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", "tx0_index": 53, - "tx0_hash": "07d29fbb810d009c4480b5dd6c5533aff2e15f6978c13a3d5850c85f8bc512ba", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 54, - "tx1_hash": "72031dad730feb8015f76750043a2fdb2d484f92e38084f5a5c1ea683bbca79b", - "tx1_address": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", + "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7933,7 +7862,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730898572, + "block_time": 1730905888, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7953,13 +7882,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx0_index": 64, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx1_index": 58, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7973,7 +7902,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8018,66 +7947,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", + "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", "block_index": 121, - "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", + "source": "bcrt1qzycg25f6h3gxwcclpupwd823gc63ckk744hvlq", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730898343, + "block_time": 1730905672, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "d04e1815ea01ea320d5bd70e7bcda49e0f042749f91b3116584ff7a4a1a9edd4", + "tx_hash": "88b56a7850b2edba8fe1c5a1f62f1517aaa3dc286314a0409b9e78006b1bbff7", "block_index": 120, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730898340, + "block_time": 1730905669, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "6d6092b5d22a3ad8197e66cd85362be31503d99b5b030532ec9e64756dd21ca0", + "tx_hash": "f9f8b571ff977eb3f91dddff917944b5ffddf1c07b3bcaa1dcc32bb5ee2c478d", "block_index": 119, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730898336, + "block_time": 1730905665, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "5fe912a7879caa5bc0c86788564c5c07c8f9ab632b9dc008845061755b9eb4ed", + "tx_hash": "839a7535bc6d26cf33f2194a22445dee8fc71f3fb714eb59c2036d5d2bb2a0af", "block_index": 118, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730898332, + "block_time": 1730905661, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "14d1b38c8dc9ae9bd3b115f907e94a6a7561124382141848df564e207ab5bfc6", + "tx_hash": "94d0f38f04a5d1a34b41a159fd00b1bca3be5409eb0fdecf0cbbd147fca97faa", "block_index": 117, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730898329, + "block_time": 1730905658, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8089,9 +8018,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8100,7 +8029,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8111,7 +8040,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8128,9 +8057,9 @@ }, { "tx_index": 29, - "tx_hash": "3dcec434c5f5ab4b9f9db5f889a870c0fb4b5d4a49203d96361d249ca2030eac", + "tx_hash": "1f4dec693bc9df88231d804fd52e5b835a5f35cdae943a51ef12de40235304e1", "block_index": 142, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8139,7 +8068,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "origin": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8150,7 +8079,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898440, + "block_time": 1730905756, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8167,9 +8096,9 @@ }, { "tx_index": 30, - "tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", + "tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", "block_index": 150, - "source": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", + "source": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8177,10 +8106,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a86565402a65066b78ec39300a0ad4af1e6f3bb96e1c25c8522ad5a34f0d3bd3", - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_hash": "bbd08fcfb665580d196d17a77962c82036f81beba2ef55030a8e82bb6a3cab1f", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "last_status_tx_source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -8189,7 +8118,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898490, + "block_time": 1730905795, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8206,9 +8135,9 @@ }, { "tx_index": 68, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8217,7 +8146,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8228,11 +8157,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8245,18 +8174,18 @@ }, { "tx_index": 33, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8267,7 +8196,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8289,9 +8218,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8300,7 +8229,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8311,7 +8240,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8332,19 +8261,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8352,7 +8281,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8367,7 +8296,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8381,19 +8310,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8401,7 +8330,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8416,7 +8345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8435,20 +8364,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8469,20 +8398,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8505,12 +8434,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "event": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "tx_index": 42, - "utxo": "ed49366d20a6a726ce19d702e5991e11d77b163b8b6ee4d78846be58f66ff3ec:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "utxo": "115cd84a869aaf7c20759e1b94387e4d198a1a0daf1e499365d4719de741dee8:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "confirmed": true, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8527,47 +8456,47 @@ "/v2/events": { "result": [ { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8578,20 +8507,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8601,24 +8530,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8628,29 +8557,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 787, - "result_count": 793 + "next_cursor": 801, + "result_count": 807 }, "/v2/events/": { "result": { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 } }, "/v2/events/counts": { @@ -8661,7 +8590,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 76 + "event_count": 78 }, { "event": "SWEEP", @@ -8682,19 +8611,19 @@ "/v2/events/": { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8704,24 +8633,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 786, + "event_index": 800, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8731,51 +8660,51 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { - "event_index": 783, + "event_index": 797, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 223, + "block_index": 225, "calling_function": "utxo move", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", - "utxo_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", + "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 }, { "event_index": 760, "event": "CREDIT", "params": { - "address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "block_index": 220, "calling_function": "cancel order", - "event": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "event": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730898794, + "block_time": 1730906120, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8785,36 +8714,36 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 }, { "event_index": 748, "event": "CREDIT", "params": { - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "asset": "A95428960545690062", "block_index": 218, "calling_function": "issuance", - "event": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "event": "bb2f2ad4636c8435fc43dac46d8f183da0fde0dfcd26b01b4ded551d05f46c0e", "quantity": 100000000000, "tx_index": 85, "utxo": null, "utxo_address": null, - "block_time": 1730898785, + "block_time": 1730906112, "asset_info": { "asset_longname": "PARENTB.SUBASSETB", "description": "My super subasset SUBASSETB", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, - "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "tx_hash": "bb2f2ad4636c8435fc43dac46d8f183da0fde0dfcd26b01b4ded551d05f46c0e", "block_index": 218, - "block_time": 1730898785 + "block_time": 1730906112 } ], "next_cursor": 740, @@ -8829,29 +8758,29 @@ "/v2/dispenses": { "result": [ { - "tx_index": 90, + "tx_index": 92, "dispense_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8866,7 +8795,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8880,19 +8809,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "7537a2d08c8232ec0f3145c8c7d0e08d763b4ce9afcffcc7a76103430fad7040", + "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 203, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8900,7 +8829,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8915,11 +8844,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898708, + "block_time": 1730906037, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -8929,27 +8858,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "706f7b6515dfa84d6b7644ae61962b36e7ee502b9c4d070135bee3fd8e059d7f", + "tx_hash": "a5f38f2b0bec7778ac4c0756d0b4e74c8d364264d9db634caf1e07142a99f689", "block_index": 147, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 223, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "block_index": 225, + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "last_status_tx_hash": null, - "origin": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8964,7 +8893,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730898478, + "block_time": 1730905783, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8978,19 +8907,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "f2540d8c5ab8d31386aad37b79d635c02a235e0eee85dc7c4794bd29fda0998b", + "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8998,7 +8927,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9013,7 +8942,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898437, + "block_time": 1730905751, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9027,19 +8956,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "414133bde1a55e28e5f10144461f1ecb4284e03db091e3c398b2b2e6c4799199", + "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", "block_index": 140, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b84efa50320aec62edb2b6bb5717b6c84d0c3e3c0e15de35d920a379f15afe09", + "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9047,7 +8976,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9062,7 +8991,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730898423, + "block_time": 1730905747, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9080,11 +9009,11 @@ "/v2/sends": { "result": [ { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9092,7 +9021,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9104,11 +9033,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 90, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "tx_index": 92, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9116,11 +9045,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9129,10 +9058,10 @@ }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9140,7 +9069,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9153,10 +9082,10 @@ }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9164,11 +9093,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9177,10 +9106,10 @@ }, { "tx_index": 81, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9188,11 +9117,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9206,15 +9135,15 @@ "/v2/issuances": { "result": [ { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "block_index": 223, + "asset": "A95428959531084712", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -9222,83 +9151,83 @@ "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "PARENTA.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 87, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_index": 89, + "tx_hash": "71a2f6f0722f19cccd53f65e6a8fe131ac9b9b5d7a375cf433558112184bf8d2", "msg_index": 0, - "block_index": 220, - "asset": "A95428960545690062", + "block_index": 222, + "asset": "A95428960428101357", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super subasset SUBASSETB", + "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETB", + "asset_longname": "PARENTA.A95428960545690062", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906129, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 86, - "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", + "tx_index": 88, + "tx_hash": "c77c72d6a3adb9c79649a357d7baf12c96d6dd6498e909df7b125cd32c92f8c8", "msg_index": 0, - "block_index": 219, - "asset": "A95428960939749879", + "block_index": 221, + "asset": "A95428960586448133", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super subasset SUBASSETA", + "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTA.SUBASSETA", + "asset_longname": "PARENTB.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898790, + "block_time": 1730906124, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 85, - "tx_hash": "49a6b4bb5cbff14f34dc08b2fca59674b524f21a62109245c54d0122c5ab2ab1", + "tx_index": 87, + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "msg_index": 0, - "block_index": 218, + "block_index": 220, "asset": "A95428960545690062", - "quantity": 100000000000, + "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -9310,56 +9239,56 @@ "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898785, - "quantity_normalized": "1000.00000000", + "block_time": 1730906120, + "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 84, - "tx_hash": "f2526cf182812ad36f644f74d7eade10025faf7fbd76fd15ff0b448a56c9493f", + "tx_index": 86, + "tx_hash": "7f8171d78535915ecb9b6d3c89a4da643b735ce1c1d3c4498eac8d6e747ea1a3", "msg_index": 0, - "block_index": 217, - "asset": "PARENTB", - "quantity": 100000000000, + "block_index": 219, + "asset": "A95428960939749879", + "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset PARENTB", - "fee_paid": 50000000, + "description": "My super subasset SUBASSETA", + "fee_paid": 0, "status": "valid", - "asset_longname": null, + "asset_longname": "PARENTA.SUBASSETA", "locked": false, "reset": false, "description_locked": false, - "fair_minting": false, - "asset_events": "creation", + "fair_minting": true, + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898781, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" + "block_time": 1730906117, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 29, - "result_count": 34 + "next_cursor": 31, + "result_count": 36 }, "/v2/issuances/": { "result": { - "tx_index": 88, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", + "tx_index": 90, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "block_index": 223, + "asset": "A95428959531084712", "quantity": 0, "divisible": true, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "transfer": false, "callable": false, "call_date": 0, @@ -9367,14 +9296,14 @@ "description": "", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "PARENTA.SUBASSETC", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9383,16 +9312,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -9403,16 +9332,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" } ], @@ -9423,9 +9352,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9433,14 +9362,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898417, + "block_time": 1730905738, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "989a8570f328e51b83db1ced35bc9e13f47fe8752c7e26c820df7cb4c5352fbd", + "tx_hash": "5923d6c82239efc9e2bbc657d5f0dda18e8b690ad30674893918fccb97bb500a", "block_index": 137, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9448,7 +9377,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898413, + "block_time": 1730905734, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9458,9 +9387,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9468,20 +9397,20 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730898417, + "block_time": 1730905738, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_index": 223, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428959531084712", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETC", "description": "", "price": 0, "quantity_by_price": 1, @@ -9503,7 +9432,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898808, + "block_time": 1730906142, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9512,14 +9441,14 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", - "tx_index": 87, - "block_index": 220, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960545690062", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETB", - "description": "My super subasset SUBASSETB", + "tx_hash": "71a2f6f0722f19cccd53f65e6a8fe131ac9b9b5d7a375cf433558112184bf8d2", + "tx_index": 89, + "block_index": 222, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960428101357", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.A95428960545690062", + "description": "", "price": 0, "quantity_by_price": 1, "hard_cap": 0, @@ -9540,7 +9469,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898794, + "block_time": 1730906129, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9549,14 +9478,14 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "1320e2896d791d5fdc2b1c36b5cf58ee157dd09ae48c30b51cecebbe9cb4cfed", - "tx_index": 86, - "block_index": 219, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", - "asset": "A95428960939749879", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETA", - "description": "My super subasset SUBASSETA", + "tx_hash": "c77c72d6a3adb9c79649a357d7baf12c96d6dd6498e909df7b125cd32c92f8c8", + "tx_index": 88, + "block_index": 221, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960586448133", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETC", + "description": "", "price": 0, "quantity_by_price": 1, "hard_cap": 0, @@ -9577,7 +9506,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898790, + "block_time": 1730906124, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9586,17 +9515,17 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", - "description": "", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", + "tx_index": 87, + "block_index": 220, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960545690062", + "asset_parent": "PARENTB", + "asset_longname": "PARENTB.SUBASSETB", + "description": "My super subasset SUBASSETB", "price": 0, "quantity_by_price": 1, - "hard_cap": 180, + "hard_cap": 0, "burn_payment": false, "max_mint_per_tx": 100, "premint_quantity": 0, @@ -9609,36 +9538,33 @@ "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1730898523, + "block_time": 1730906120, "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", + "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "136a79a05a0137071fdfd74745a41cd6aece54dee53a7140dfe75c2595115b39", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, + "tx_hash": "7f8171d78535915ecb9b6d3c89a4da643b735ce1c1d3c4498eac8d6e747ea1a3", + "tx_index": 86, + "block_index": 219, + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", + "asset": "A95428960939749879", + "asset_parent": "PARENTA", + "asset_longname": "PARENTA.SUBASSETA", + "description": "My super subasset SUBASSETA", + "price": 0, + "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 0, + "max_mint_per_tx": 100, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -9654,37 +9580,37 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730898512, - "price_normalized": "1.0000000000000000", + "block_time": 1730906117, + "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" } ], - "next_cursor": 4, - "result_count": 9 + "next_cursor": 6, + "result_count": 11 }, "/v2/fairmints": { "result": [ { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9693,22 +9619,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "747836dc3808b23be2ce6bccf00880a67b4dac42c0565321190a8cb4375c89b9", + "tx_hash": "f6622f9dcdd08038ac60c485e9967232f532360af5eefb4c3f35d37bd735e9ad", "tx_index": 45, "block_index": 158, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898520, + "block_time": 1730905829, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9717,22 +9643,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f73254f6de3154b2c47f23a936279f4a8944c56d8dfb113c84e86b5595dd25c", + "tx_hash": "cbff45a7aa63aa0777a4ae531fd5e8e08c28f8634824c9a7e37e69e8887a6446", "tx_index": 23, "block_index": 136, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "2f51b3bd8ca2f99c19797ef3806e9d088b0b6935d7f2c09864a8340d9bd93f8a", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898410, + "block_time": 1730905730, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9741,22 +9667,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "439f47d5663263d33dc1cf0e004c578723cc08e75f5cbb66ee367b9e576b78b2", + "tx_hash": "85a0fcffd37dd5eab5fd7e4c72c79225b9716f73abd0eeda868c9da84dc0414f", "tx_index": 21, "block_index": 134, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898402, + "block_time": 1730905723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9765,22 +9691,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "be31f3b5933fbde3a0f9bbad01c38fad59842b9f70fd4506416a68b25fb23718", + "tx_hash": "880f43d002cc5360590adf0dab62ff4f00348ed69ce767d6452159b0c36da25d", "tx_index": 20, "block_index": 133, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "bd5b1003d228327b04e66dfd83130f202602c178aa1c99fef82db2e16937738e", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898388, + "block_time": 1730905720, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9794,22 +9720,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, "block_index": 159, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -9820,41 +9746,41 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ + { + "vout": 1, + "height": 207, + "value": 546, + "confirmations": 19, + "amount": 5.46e-06, + "txid": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", + "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" + }, { "vout": 0, "height": 208, "value": 546, - "confirmations": 16, + "confirmations": 18, "amount": 5.46e-06, - "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", - "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" + "txid": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", + "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" }, { "vout": 1, - "height": 222, - "value": 4949918908, + "height": 224, + "value": 4949928908, "confirmations": 2, - "amount": 49.49918908, - "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" - }, - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 17, - "amount": 5.46e-06, - "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", - "address": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf" + "amount": 49.49928908, + "txid": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" }, { "vout": 1, - "height": 221, - "value": 30000, + "height": 223, + "value": 10000, "confirmations": 3, - "amount": 0.0003, - "txid": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "address": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4" + "amount": 0.0001, + "txid": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424" } ], "next_cursor": null, @@ -9863,28 +9789,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "18c8292a8126d912dbb5ab301ae88bb93eb450259b9e7310dfa512bdff233d37" + "tx_hash": "993bd93dc8df10ccbade90167917590b8364e4db37a113e742e81135b754793a" }, { - "tx_hash": "fd2cb81224522fc1415c7317daf6d89c39eb79b79a5431e4c4a13f364715f149" + "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a" }, { - "tx_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe" + "tx_hash": "c4048d9a6a34875942572bfdcc1de4c88de745a291332dfbbb11d5eaee22c368" }, { - "tx_hash": "61152ec1e55d9b747d010dd128e7c2bec8c2d42cb5a9b892dd7c330b582df5e7" + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385" }, { - "tx_hash": "16526ef5652dfe3b5199019a8acf05a470963dad9093583e05a14abeff52d5ea" + "tx_hash": "eb6f2b41889176f9e807c670aeab66eb81662bcbb034062567e3e8069e97f985" }, { - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3" + "tx_hash": "d7793fbc7b771bcff87a69ebbd3c22924aceb57ddc4ed831bb54c9f4941f5cb5" }, { - "tx_hash": "167369f337dfa88bd51bf20bdeabc28c33c7f4fd43bb835f7d8757dd804fb4f6" + "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb" }, { - "tx_hash": "b19bbad697e8f745b8dd5f084f96a01f8089cdeb2267c8b79dd3e29d759da8fb" + "tx_hash": "40c0ef9ff60ade2ab4ab5bb85fee3e7d7c73dcff5f71a285fb199100fdb7bfc3" } ], "next_cursor": null, @@ -9892,48 +9818,48 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 5, - "tx_hash": "a1e1862525e3efd76ea5f0db4d9f4ed15d8f5abd685db9b0cc8d892cb67e620c" + "block_index": 9, + "tx_hash": "bf7efe24df549c48a0e8fed695b6da44541c774d00dfdf4f0f156a633e2ab197" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 1, - "height": 222, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096" + "height": 207, + "value": 546, + "confirmations": 19, + "amount": 5.46e-06, + "txid": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0" }, { "vout": 0, "height": 208, "value": 546, - "confirmations": 16, + "confirmations": 18, "amount": 5.46e-06, - "txid": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa" + "txid": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb" }, { "vout": 1, - "height": 207, - "value": 546, - "confirmations": 17, - "amount": 5.46e-06, - "txid": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f" + "height": 224, + "value": 4949928908, + "confirmations": 2, + "amount": 49.49928908, + "txid": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03c057fdac9c401be8085a327ad6c48a07fa62273b0178e8d56eb19f38d44023f9" + "result": "02adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc9" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101d1d4156b83b56e571f9ba594e9aa65992272697a6de9caaa651a0dc3a6fa7e500100000000ffffffff03e803000000000000160014b75b0e5ae9a948adafb216d384c5d83f49ddaa8c00000000000000000c6a0ad778ef892ea746169a1d871409270100000016001470e8d6235ec3bb1bc82b702e4f288ed48d895c6f024730440220464e2423ab3da160e439d44da2eae939911dcd9a54d15ea1f16da79aabd7a3000220088d1fe2f68b6432a34ad4f5cafa2ae74235887042411aadf87ef8f361776f27012103610de3d16a355f04ba4d9fffb79d13cbdb9940e8c6579b04d736f56fb5ac6cbf00000000" + "result": "02000000000101ef2945137ab8e34c569de375989fa10b3d1d868b8428218d856a221056a359c40100000000ffffffff03e8030000000000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14f00000000000000000c6a0a1f303a7afc1a76ba26a187140927010000001600143047d35450fa1d98208bddb4aa764db473597340024730440220523ae340dbce5334d55174e5e1cc99347c38a313a5bf5cc95e5a04751b8fb38302203228b77e36a8f2498669fb932032b95a1588d9c9fcc57b14b6bb449efca14e860121034fe6b16f60e1038c62d66622876ee8c807c3a7147ea58beab78ddc00a23e8bc600000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58736 + "result": 58710 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9953,28 +9879,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91 + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93 }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "quantity": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9984,22 +9910,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10009,22 +9935,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", - "block_index": 223, - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "block_index": 225, + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10034,30 +9960,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730898824.7521684, + "block_time": 1730906159.3902285, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "destination": "", "fee": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, - "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, + "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -10071,7 +9997,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -10080,19 +10006,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10102,7 +10028,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -10111,28 +10037,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91 + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93 }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "quantity": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10142,22 +10068,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "CREDIT", "params": { - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "send", - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10167,22 +10093,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "asset": "XCP", - "block_index": 223, - "event": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "block_index": 225, + "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "quantity": 10000, - "tx_index": 91, + "tx_index": 93, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10192,30 +10118,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 }, { - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730898824.7521684, + "block_time": 1730906159.3902285, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ff61e4d4a0e27d64b8593bd0cf90c9525855a10", + "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", "destination": "", "fee": 10000, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", - "tx_hash": "b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb", - "tx_index": 91, - "utxos_info": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b:1 b6de5c34312475971415a45848f20af093ac95883361f89a345e8e8eec47ccbb:1 2 ", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", + "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", + "tx_index": 93, + "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "memo": null, "asset_info": { "asset_longname": null, @@ -10229,7 +10155,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730898824.7521684 + "timestamp": 1730906159.3902285 } ], "next_cursor": null, @@ -10248,40 +10174,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 779, + "event_index": 793, "event": "NEW_BLOCK", "params": { - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_index": 223, - "block_time": 1730898820, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_index": 225, + "block_time": 1730906155, "difficulty": 545259519, - "previous_block_hash": "5e1e0bc0c9495106447268d3636c9ee44c427d35adecfef3dbd1104b8a62d388" + "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93" }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 773, - "result_count": 123 + "next_cursor": 787, + "result_count": 125 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 780, + "event_index": 794, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6d5deaa62066e7f4e1963bacb411fcec6d0b74f6018fb14b3cf45706a53cce7f", - "block_index": 223, - "block_time": 1730898820, + "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", + "block_index": 225, + "block_time": 1730906155, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "fee": 0, - "source": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "utxos_info": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1 f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0 3 1", + "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10291,32 +10217,32 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 774, - "result_count": 91 + "next_cursor": 788, + "result_count": 93 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 781, + "event_index": 795, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "out_index": 0, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": 597, @@ -10325,58 +10251,58 @@ "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 792, + "event_index": 806, "event": "BLOCK_PARSED", "params": { - "block_index": 223, - "ledger_hash": "d25c6601bd3ec3ef27c48cb2a2c9dc0055431b477a592ebae824941c218d9718", - "messages_hash": "702924f8f487a49bdcbd5f0fe0b8eb076e0edc07f2c19f7afc4c8983a7243a73", + "block_index": 225, + "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", + "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", "transaction_count": 1, - "txlist_hash": "98ec3236c7bda6b779c66eba7dbc97987175ef6a9c054428176cf583c9d4c651", - "block_time": 1730898820 + "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", + "block_time": 1730906155 }, "tx_hash": null, - "block_index": 223, - "block_time": 1730898820 + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 778, - "result_count": 123 + "next_cursor": 792, + "result_count": 125 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 791, + "event_index": 805, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92 }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 777, - "result_count": 76 + "next_cursor": 791, + "result_count": 78 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 785, + "event_index": 799, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 223, - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "block_index": 225, + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 2000000000, - "tx_index": 90, - "utxo": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", - "utxo_address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", - "block_time": 1730898820, + "tx_index": 92, + "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", + "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10386,30 +10312,30 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 782, + "next_cursor": 796, "result_count": 80 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 788, + "event_index": 802, "event": "CREDIT", "params": { - "address": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "asset": "XCP", - "block_index": 223, + "block_index": 225, "calling_function": "dispense", - "event": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", + "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", "quantity": 66, - "tx_index": 90, + "tx_index": 92, "utxo": null, "utxo_address": null, - "block_time": 1730898820, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10419,12 +10345,12 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 786, + "next_cursor": 800, "result_count": 101 }, "/v2/events/ENHANCED_SEND": { @@ -10435,26 +10361,26 @@ "params": { "asset": "MPMASSET", "block_index": 210, - "destination": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "memo": null, "quantity": 1000, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": "valid", - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "tx_index": 77, - "block_time": 1730898744, + "block_time": 1730906070, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a1da7341c7b2e172bfa6efea1a557829b09a96d7675f3ec4c3c3008bd1fe1ccf", + "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", "block_index": 210, - "block_time": 1730898744 + "block_time": 1730906070 } ], "next_cursor": 533, @@ -10468,15 +10394,15 @@ "params": { "asset": "XCP", "block_index": 214, - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "tx_index": 81, - "block_time": 1730898769, + "block_time": 1730906087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10486,9 +10412,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b83b8a500c98b14bc11009f0b2835608e88ef0ee21ae20c36282d66441ffd48e", + "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", "block_index": 214, - "block_time": 1730898769 + "block_time": 1730906087 } ], "next_cursor": 715, @@ -10511,20 +10437,20 @@ "event": "SWEEP", "params": { "block_index": 199, - "destination": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "status": "valid", - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "tx_index": 65, - "block_time": 1730898695, + "block_time": 1730906012, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "50a28e00b2b2c2be0d1224414b461f64c86b78c551ecbd1f86f3acd279391bf3", + "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", "block_index": 199, - "block_time": 1730898695 + "block_time": 1730906012 } ], "next_cursor": null, @@ -10541,15 +10467,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": "valid", - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "tx_index": 42, - "block_time": 1730898507, + "block_time": 1730905817, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -10563,9 +10489,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "65c7b4980dbc50413a1fdd08d393fa21f529c62239e2b1c6280976e5ace7706c", + "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", "block_index": 155, - "block_time": 1730898507 + "block_time": 1730905817 } ], "next_cursor": null, @@ -10579,33 +10505,33 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 769, + "event_index": 783, "event": "ASSET_CREATION", "params": { - "asset_id": "95428960586448133", - "asset_longname": "PARENTB.SUBASSETC", - "asset_name": "A95428960586448133", - "block_index": 221, - "block_time": 1730898808 + "asset_id": "95428959531084712", + "asset_longname": "PARENTA.SUBASSETC", + "asset_name": "A95428959531084712", + "block_index": 223, + "block_time": 1730906142 }, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_time": 1730898808 + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_time": 1730906142 } ], - "next_cursor": 746, - "result_count": 18 + "next_cursor": 776, + "result_count": 20 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 770, + "event_index": 784, "event": "ASSET_ISSUANCE", "params": { - "asset": "A95428960586448133", + "asset": "A95428959531084712", "asset_events": "open_fairminter", - "asset_longname": "PARENTB.SUBASSETC", - "block_index": 221, + "asset_longname": "PARENTA.SUBASSETC", + "block_index": 223, "call_date": 0, "call_price": 0, "callable": false, @@ -10613,26 +10539,26 @@ "divisible": true, "fair_minting": true, "fee_paid": 0, - "issuer": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "status": "valid", "transfer": false, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_time": 1730898808, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_time": 1730906142, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_time": 1730898808 + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_time": 1730906142 } ], - "next_cursor": 763, - "result_count": 34 + "next_cursor": 777, + "result_count": 36 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ @@ -10643,12 +10569,12 @@ "asset": "XCP", "block_index": 200, "quantity": 1, - "source": "bcrt1qewzrdx42wauqr4k4wtcdmepffjler4z0x5nmzq", + "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", "status": "valid", "tag": "64657374726f79", - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "tx_index": 66, - "block_time": 1730898698, + "block_time": 1730906017, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10658,9 +10584,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "79e3dd2b58f378f59abed8f537ddb2b3da6fe9c3bf2f1713e4a1ea7201f0656b", + "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", "block_index": 200, - "block_time": 1730898698 + "block_time": 1730906017 } ], "next_cursor": 157, @@ -10669,12 +10595,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 776, + "event_index": 790, "event": "OPEN_ORDER", "params": { - "block_index": 222, + "block_index": 224, "expiration": 21, - "expire_index": 243, + "expire_index": 245, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10685,15 +10611,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "status": "open", - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "tx_index": 89, - "block_time": 1730898812, + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "tx_index": 91, + "block_time": 1730906146, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, @@ -10713,9 +10639,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a8e31c5392e94f000460ef350e0da6c0e174d5ebb2c5dc63b2b44ef1c410b096", - "block_index": 222, - "block_time": 1730898812 + "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", + "block_index": 224, + "block_time": 1730906146 } ], "next_cursor": 564, @@ -10733,20 +10659,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "match_expire_index": 233, "status": "pending", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "tx0_block_index": 198, "tx0_expiration": 21, - "tx0_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", + "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", "tx0_index": 64, - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", "tx1_block_index": 213, "tx1_expiration": 21, - "tx1_hash": "6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "tx1_index": 58, - "block_time": 1730898765, + "block_time": 1730906083, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10765,9 +10691,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_time": 1730898765 + "block_time": 1730906083 } ], "next_cursor": 521, @@ -10780,11 +10706,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a" + "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0" }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 } ], "next_cursor": 707, @@ -10797,11 +10723,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca" + "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025" }, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "block_time": 1730898646 + "block_time": 1730905961 } ], "next_cursor": null, @@ -10813,13 +10739,13 @@ "event_index": 688, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", + "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", "status": "expired" }, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_time": 1730898765 + "block_time": 1730906083 } ], "next_cursor": 511, @@ -10833,18 +10759,18 @@ "params": { "block_index": 191, "btc_amount": 2000, - "destination": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_b42184d202d22d1eef96e815285dc06d3136c6918d7a623ccb56780eee86f9ca", - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "tx_index": 57, - "block_time": 1730898646, + "block_time": 1730905961, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1774ad7a8db45931ee1e52ac68c2a181883cd06a00b43abadbf76a4b87e03868", + "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", "block_index": 191, - "block_time": 1730898646 + "block_time": 1730905961 } ], "next_cursor": null, @@ -10857,16 +10783,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 197, - "offer_hash": "512490e52a463c34a7162d19e25e4e9966ee06021cea74f469f52162256e0ec5", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": "valid", - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "tx_index": 63, - "block_time": 1730898688 + "block_time": 1730906006 }, - "tx_hash": "ee7f6a9e0067fa2f7599fbdb0c613d011709beb2ef01f4a012a6970838c4cf89", + "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", "block_index": 197, - "block_time": 1730898688 + "block_time": 1730906006 } ], "next_cursor": null, @@ -10879,13 +10805,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 220, - "order_hash": "8f3cce4fe667a251b6b531523f5d418ea5503190613431da3d70a710d2de490a", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "block_time": 1730898794 + "order_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "block_time": 1730906120 }, - "tx_hash": "8ab830de57d63182b765afe8e9ec6ff01a1a708f1f097c6b7ef7d5461729e0b3", + "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", "block_index": 220, - "block_time": 1730898794 + "block_time": 1730906120 } ], "next_cursor": 708, @@ -10898,14 +10824,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 213, - "order_match_id": "39c9a8c5e1e02e6f8681adcfab9885f822a78b2310925fad0d8107f09e29c518_6e3890ab3185d2976e6ea3ca3f5f69dd1caf4e80592555ffbc8a263989977cbe", - "tx0_address": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "tx1_address": "bcrt1qdlmpun22pcnavju9jw7se7gvj5jc2kss05juxz", - "block_time": 1730898765 + "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", + "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", + "block_time": 1730906083 }, - "tx_hash": "8173df1b21696de0daa614742f6703d962b76c2cc3eaeddfcc3c133d0aa6818e", + "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", "block_index": 213, - "block_time": 1730898765 + "block_time": 1730906083 } ], "next_cursor": 487, @@ -10924,17 +10850,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "satoshirate": 1, - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "status": 0, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "tx_index": 68, - "block_time": 1730898704, + "block_time": 1730906034, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -10943,9 +10869,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "64d10b3aa19a73bb4125bd5b89aeebc08388acd8c57bff66c4bbffe90580576f", + "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", "block_index": 202, - "block_time": 1730898704 + "block_time": 1730906034 } ], "next_cursor": 272, @@ -10954,15 +10880,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 789, + "event_index": 803, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": 0, - "tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", + "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10972,9 +10898,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": 599, @@ -10988,13 +10914,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "msqMsZSy459YcYBfgex6iiPp8v5MMhupKj", + "destination": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", "dispense_quantity": 10, - "dispenser_tx_hash": "8ba26e3a75484df21707c4831005811b7d8f1b739d87ce9eced934fed2021d11", - "source": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", - "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", + "dispenser_tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", + "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", + "tx_hash": "677a178d9a141489737b81ca45aa667a2baef42efbab7405a430d10649e31e32", "tx_index": 31, - "block_time": 1730898458, + "block_time": 1730905773, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11004,9 +10930,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "5036b5d11e56f304cee4090eb8dd3e8ea02c0bda47667c170c709f5a9ca1e9d9", + "tx_hash": "677a178d9a141489737b81ca45aa667a2baef42efbab7405a430d10649e31e32", "block_index": 144, - "block_time": 1730898458 + "block_time": 1730905773 } ], "next_cursor": null, @@ -11015,20 +10941,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 790, + "event_index": 804, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 223, + "block_index": 225, "btc_amount": 1000, - "destination": "bcrt1qwr5dvg67cwa3hjptwqhy72yw6jxcjhr0f3szzy", + "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "cd5578404058aafb1e12145b7f51001b1d341d3ecf06db00db5a5400c2cc0785", - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11039,9 +10965,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], "next_cursor": 600, @@ -11056,19 +10982,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qkadsukhf49y2mtajzmfcf3wc8ayam25v83mphc", + "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "tx_index": 25, "value": 66600.0, - "block_time": 1730898417, + "block_time": 1730905738, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d6bf1e8a8f17a01dc2c789f20712adcb7c1208ca254593e5a7a45f918d18a8d7", + "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", "block_index": 138, - "block_time": 1730898417 + "block_time": 1730905738 } ], "next_cursor": 213, @@ -11077,13 +11003,13 @@ "/v2/events/NEW_FAIRMINTER": { "result": [ { - "event_index": 768, + "event_index": 782, "event": "NEW_FAIRMINTER", "params": { - "asset": "A95428960586448133", - "asset_longname": "PARENTB.SUBASSETC", - "asset_parent": "PARENTB", - "block_index": 221, + "asset": "A95428959531084712", + "asset_longname": "PARENTA.SUBASSETC", + "asset_parent": "PARENTA", + "block_index": 223, "burn_payment": false, "description": "", "divisible": true, @@ -11099,12 +11025,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qtl5075j9d42wrn7wqajavus6lyckuuay85szl4", + "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", "start_block": 0, "status": "open", - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "tx_index": 88, - "block_time": 1730898808, + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "tx_index": 90, + "block_time": 1730906142, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11112,13 +11038,13 @@ "max_mint_per_tx_normalized": "0.00000100", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "3c2fc79486303fc8cb0d6b9a0c789925d2ea1a187366458f397d6143330155eb", - "block_index": 221, - "block_time": 1730898808 + "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", + "block_index": 223, + "block_time": 1730906142 } ], - "next_cursor": 762, - "result_count": 9 + "next_cursor": 775, + "result_count": 11 }, "/v2/events/FAIRMINTER_UPDATE": { "result": [ @@ -11127,11 +11053,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4" + "tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f" }, - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "block_index": 159, - "block_time": 1730898523 + "block_time": 1730905842 } ], "next_cursor": 155, @@ -11147,17 +11073,17 @@ "block_index": 159, "commission": 0, "earn_quantity": 80, - "fairminter_tx_hash": "614bbc9878a74962990a3084f264031abe47c27e272849e8463359b1ccd033e4", + "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", "paid_quantity": 0, - "source": "bcrt1qc0n9rjh3psnl6ry4hmh0wlfdm06n9z44p7v6ef", + "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", "status": "valid", - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "tx_index": 46, - "block_time": 1730898523, + "block_time": 1730905842, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3pnz8zsmdy87y0xhmd2lj0z4tfxpv83j8ucmn8", + "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", "divisible": true, "locked": false }, @@ -11165,9 +11091,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, - "tx_hash": "4c89d1f40abf8959e2d66c9e94dc7a8e9d62bb5b48cb90e0f1e42570858fdd27", + "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", "block_index": 159, - "block_time": 1730898523 + "block_time": 1730905842 } ], "next_cursor": 365, @@ -11181,28 +11107,28 @@ "params": { "asset": "UTXOASSET", "block_index": 208, - "destination": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa:0", + "destination": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "status": "valid", - "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", "tx_index": 75, - "block_time": 1730898736, + "block_time": 1730906062, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3c7d0704f29361293a34b6ab008ede34e30f08716a88d0191101c549dd7d9faa", + "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", "block_index": 208, - "block_time": 1730898736 + "block_time": 1730906062 } ], "next_cursor": 616, @@ -11216,28 +11142,28 @@ "params": { "asset": "UTXOASSET", "block_index": 207, - "destination": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "43e7c2c0f317b252725389920e482359189075b03ed94b5f69b61e032d1163e1:0", + "source": "7609339047671397e85abbf2b38a4c0ee63f6005a67007d2d2e672c4929b3716:0", "status": "valid", - "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", "tx_index": 74, - "block_time": 1730898732, + "block_time": 1730906058, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qkqpm2zlxf7awhcunejwtc585rgfw9cukkshgvf", + "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fc52d66a470bc644ee95f196052a5c7ca1f632c41bd15315d3b3dd3dd428725f", + "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", "block_index": 207, - "block_time": 1730898732 + "block_time": 1730906058 } ], "next_cursor": 311, @@ -11246,19 +11172,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 787, + "event_index": 801, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 223, - "destination": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8:0", + "block_index": 225, + "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", "msg_index": 1, "quantity": 2000000000, - "source": "507efaa6c30d1a65aacae96d7a6972229965aae994a59b1f576eb5836b15d4d1:1", + "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", "status": "valid", - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "tx_index": 90, - "block_time": 1730898820, + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "tx_index": 92, + "block_time": 1730906155, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11268,12 +11194,12 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f6e794cf2b54548524481d79d7459c8087d7ad0d995395b11e07c7f812d9a3b8", - "block_index": 223, - "block_time": 1730898820 + "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", + "block_index": 225, + "block_time": 1730906155 } ], - "next_cursor": 784, + "next_cursor": 798, "result_count": 11 }, "/v2/events/BURN": { @@ -11285,17 +11211,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qxf2kpq9vvwpu3yeqn82v58wsteua6qjxzg4duk", + "source": "bcrt1qzycg25f6h3gxwcclpupwd823gc63ckk744hvlq", "status": "valid", - "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", + "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", "tx_index": 9, - "block_time": 1730898343, + "block_time": 1730905672, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "7bfd1f410cdf73651e0d5d8936ea8975b2c2be84b4c9c5213a33eb2d3a9de65e", + "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", "block_index": 121, - "block_time": 1730898343 + "block_time": 1730905672 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 1a1d6e35fc..be2312de8c 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -419,6 +419,7 @@ "params": { "asset": "UTXOASSET", "quantity": 10 * 10**8, + "exact_fee": 0, }, }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py index 9819fccff5..82a84fbe84 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py @@ -367,4 +367,176 @@ } ], }, + { + "title": "Create fairminter on existing subasset with incorrect parent", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "A95428960545690062", + "asset_parent": "PARENTA", + "max_mint_per_tx": 100, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER,ASSET_CREATION", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "A95428960428101357", + "asset_events": "open_fairminter", + "asset_longname": "PARENTA.A95428960545690062", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "95428960428101357", + "asset_longname": "PARENTA.A95428960545690062", + "asset_name": "A95428960428101357", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "A95428960428101357", + "asset_longname": "PARENTA.A95428960545690062", + "asset_parent": "PARENTA", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 100, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_8", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Create fairminter on existing subasset with incorrect parent 2", + "transaction": "fairminter", + "source": "$ADDRESS_8", + "params": { + "asset": "SUBASSETC", + "asset_parent": "PARENTA", + "max_mint_per_tx": 100, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER,ASSET_CREATION", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "A95428959531084712", + "asset_events": "open_fairminter", + "asset_longname": "PARENTA.SUBASSETC", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "95428959531084712", + "asset_longname": "PARENTA.SUBASSETC", + "asset_name": "A95428959531084712", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "A95428959531084712", + "asset_longname": "PARENTA.SUBASSETC", + "asset_parent": "PARENTA", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 100, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_8", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, ] From 3bc68bf258a489d45260e45a526704dc58a6c3e5 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 15:54:29 +0000 Subject: [PATCH 072/138] migration to fix asset_longname field --- .../0015.fix_asset_longname_field.py | 52 +++++++++++++++++++ .../lib/messages/fairminter.py | 29 +++++++++++ 2 files changed, 81 insertions(+) create mode 100644 counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py b/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py new file mode 100644 index 0000000000..ada66284d9 --- /dev/null +++ b/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py @@ -0,0 +1,52 @@ +# +# file: counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py +# +import logging +import os + +from counterpartycore.lib import config +from yoyo import step + +logger = logging.getLogger(config.LOGGER_NAME) + +CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) + +__depends__ = {"0014.add_index_to_ledger_hash"} + + +def dict_factory(cursor, row): + fields = [column[0] for column in cursor.description] + return {key: value for key, value in zip(fields, row)} + + +def apply(db): + logger.info("Update `asset_longname` field...") + db.row_factory = dict_factory + + cursor = db.cursor() + sql = """ + SELECT + DISTINCT(asset), + (SELECT asset_longname FROM issuances WHERE asset = i.asset ORDER BY rowid ASC LIMIT 1) AS asset_longname + FROM issuances AS i WHERE + asset IN (SELECT DISTINCT(asset) FROM issuances WHERE asset_longname is NOT NULL AND asset_longname != '') + AND (asset_longname is NULL OR asset_longname = '') + AND status='valid' + AND fair_minting = 1; + """ + cursor.execute(sql) + assets = cursor.fetchall() + for asset in assets: + sql = "UPDATE issuances SET asset_longname = ? WHERE asset = ? AND (asset_longname = '' OR asset_longname IS NULL)" + cursor.execute(sql, (asset["asset_longname"], asset["asset"])) + sql = "UPDATE assets_info SET asset_longname = ? WHERE asset = ?" + cursor.execute(sql, (asset["asset_longname"], asset["asset"])) + + logger.info("`asset_longname` field updated...") + + +def rollback(db): + pass + + +steps = [step(apply, rollback)] diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 2de9bd65eb..68a990077e 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -57,6 +57,35 @@ def initialise(db): ], ) + if database.get_config_value(db, "FIX_ISSUANCES_ASSET_LONGNAME_1") is None: + logger.debug("Fixing issuances `asset_longname` field") + with db: + cursor.execute("DROP TRIGGER IF EXISTS block_update_issuances") + sql = """ + SELECT + DISTINCT(asset), + (SELECT asset_longname FROM issuances WHERE asset = i.asset ORDER BY rowid ASC LIMIT 1) AS asset_longname + FROM issuances AS i WHERE + asset IN (SELECT DISTINCT(asset) FROM issuances WHERE asset_longname is NOT NULL AND asset_longname != '') + AND (asset_longname is NULL OR asset_longname = '') + AND status='valid' + AND fair_minting = 1; + """ + cursor.execute(sql) + assets = cursor.fetchall() + for asset in assets: + sql = "UPDATE issuances SET asset_longname = ? WHERE asset = ? AND (asset_longname = '' OR asset_longname IS NULL)" + cursor.execute(sql, (asset["asset_longname"], asset["asset"])) + cursor.execute( + """ + CREATE TRIGGER IF NOT EXISTS block_update_issuances + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; + """ + ) + database.set_config_value(db, "FIX_ISSUANCES_ASSET_LONGNAME_1", True) + def validate( db, From 227e61077468084aefff998ac480e669c56ff011 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 16:24:38 +0000 Subject: [PATCH 073/138] fix migration; Add test --- .../0015.fix_asset_longname_field.py | 3 + .../lib/messages/fairminter.py | 25 +- .../test/regtest/apidoc/apicache.json | 11230 ---------------- .../scenarios/scenario_20_fairminter.py | 80 + 4 files changed, 100 insertions(+), 11238 deletions(-) delete mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py b/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py index ada66284d9..2833f53c40 100644 --- a/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py +++ b/counterparty-core/counterpartycore/lib/api/migrations/0015.fix_asset_longname_field.py @@ -41,6 +41,9 @@ def apply(db): cursor.execute(sql, (asset["asset_longname"], asset["asset"])) sql = "UPDATE assets_info SET asset_longname = ? WHERE asset = ?" cursor.execute(sql, (asset["asset_longname"], asset["asset"])) + asset_parent = asset["asset_longname"].split(".")[0] + sql = "UPDATE fairminters SET asset_longname = ?, asset_parent = ? WHERE asset = ? AND (asset_longname = '' OR asset_longname IS NULL)" + cursor.execute(sql, (asset["asset_longname"], asset_parent, asset["asset"])) logger.info("`asset_longname` field updated...") diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 68a990077e..d5ff4117ac 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -60,7 +60,10 @@ def initialise(db): if database.get_config_value(db, "FIX_ISSUANCES_ASSET_LONGNAME_1") is None: logger.debug("Fixing issuances `asset_longname` field") with db: + # disable triggers cursor.execute("DROP TRIGGER IF EXISTS block_update_issuances") + cursor.execute("DROP TRIGGER IF EXISTS block_update_fairminters") + # get assets with `asset_longname` field not set sql = """ SELECT DISTINCT(asset), @@ -73,17 +76,23 @@ def initialise(db): """ cursor.execute(sql) assets = cursor.fetchall() + # update `asset_longname` field for asset in assets: sql = "UPDATE issuances SET asset_longname = ? WHERE asset = ? AND (asset_longname = '' OR asset_longname IS NULL)" cursor.execute(sql, (asset["asset_longname"], asset["asset"])) - cursor.execute( - """ - CREATE TRIGGER IF NOT EXISTS block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; - """ - ) + asset_parent = asset["asset_longname"].split(".")[0] + sql = "UPDATE fairminters SET asset_longname = ?, asset_parent = ? WHERE asset = ? AND (asset_longname = '' OR asset_longname IS NULL)" + cursor.execute(sql, (asset["asset_longname"], asset_parent, asset["asset"])) + # re-enable triggers + for table in ["issuances", "fairminters"]: + cursor.execute( + f""" + CREATE TRIGGER IF NOT EXISTS block_update_{table} + BEFORE UPDATE ON {table} BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; + """ + ) database.set_config_value(db, "FIX_ISSUANCES_ASSET_LONGNAME_1", True) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json deleted file mode 100644 index 86be6171a7..0000000000 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ /dev/null @@ -1,11230 +0,0 @@ -{ - "/v2/blocks": { - "result": [ - { - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", - "difficulty": 545259519, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 224, - "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", - "block_time": 1730906146, - "previous_block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", - "difficulty": 545259519, - "ledger_hash": "db8e027dd6b147edebec923946d984e54eef9e9eeffbabfb05ccddd0dbff9d7c", - "txlist_hash": "3afb2af6aaba6eac5e3fab1b35f19fea392f66bc90f6b4e3d585c31efdc59be9", - "messages_hash": "40440a08e5d7b6b9c0dbc7a6c62df54c4c8e0a27fef72e6e30ee53e027e1ed23", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 223, - "block_hash": "7328dba937c5883eebb6d723c6e53b53bc41249e7a6bb2d5c07a81343544d1a9", - "block_time": 1730906142, - "previous_block_hash": "46ce0849603be656d68f46a16a179a155a175ad11a18b255f4672bfbd3f2e9ea", - "difficulty": 545259519, - "ledger_hash": "2c4b7d55681e56e5fb275a84f4fa1760baab6163d0f1dc7d80fec7b5f2eae6ce", - "txlist_hash": "36fa529b7a26e7df55dc798b0eed4bb90646cb55b0a2f39ec8592cbcf2e05acb", - "messages_hash": "31854994c766044c9ba5a672cf5a84172949df111aae9c4ebf1058496f5beeaf", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 222, - "block_hash": "46ce0849603be656d68f46a16a179a155a175ad11a18b255f4672bfbd3f2e9ea", - "block_time": 1730906129, - "previous_block_hash": "64db2126788c40ef5a1842177fb98f11d026dab4b1514f5bc887eb1fef1cd0de", - "difficulty": 545259519, - "ledger_hash": "e1cfd7ea41bfb2e0aaacc9e776fd577c15083cf1b75fb2146de7982988d38085", - "txlist_hash": "780c39f307acf790a3a5b06d1e9f5bcea84a04d5e9c694847c51f49930dba190", - "messages_hash": "9e68f027f4f324ff79b95920277452a6abf454adfcf10f800b0e33ccb2d61ab0", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 221, - "block_hash": "64db2126788c40ef5a1842177fb98f11d026dab4b1514f5bc887eb1fef1cd0de", - "block_time": 1730906124, - "previous_block_hash": "026f348d19222d397be10059627e2a16d4604b10c9ce5fcae1a750fe92280a1a", - "difficulty": 545259519, - "ledger_hash": "27925de3db6f9fb31c4a1460b53b9ee27de5299020dd6039f272fb641aabfc45", - "txlist_hash": "7a4fca92d16865a72cb54f73ea492f060495d4a4db308af3d8d3b4069f8a4a75", - "messages_hash": "db10e59dd4281c7299781c3960cf34ee9d253ea88876ebb6774c15be01374aea", - "transaction_count": 1, - "confirmed": true - } - ], - "next_cursor": 220, - "result_count": 125 - }, - "/v2/blocks/": { - "result": { - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", - "difficulty": 545259519, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks/": { - "result": { - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", - "difficulty": 545259519, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks//transactions": { - "result": [ - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//events": { - "result": [ - { - "event_index": 806, - "event": "BLOCK_PARSED", - "params": { - "block_index": 225, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "block_time": 1730906155 - }, - "tx_hash": null - }, - { - "event_index": 805, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92 - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - }, - { - "event_index": 804, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 225, - "btc_amount": 1000, - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - }, - { - "event_index": 803, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "status": 0, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - }, - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - } - ], - "next_cursor": 801, - "result_count": 14 - }, - "/v2/blocks//events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 2 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION_OUTPUT", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION", - "event_count": 1 - }, - { - "event": "NEW_BLOCK", - "event_count": 1 - } - ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 - }, - "/v2/blocks//events/": { - "result": [ - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - }, - { - "event_index": 800, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - }, - { - "event_index": 797, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//credits": { - "result": [ - { - "block_index": 225, - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "quantity": 66, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - { - "block_index": 225, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 225, - "address": null, - "asset": "MYASSETA", - "quantity": 2000000000, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//debits": { - "result": [ - { - "block_index": 225, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "action": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 225, - "address": null, - "asset": "MYASSETA", - "quantity": 2000000000, - "action": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//expirations": { - "result": [ - { - "type": "order", - "object_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "block_index": 220, - "confirmed": true, - "block_time": 1730906120 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//cancels": { - "result": [ - { - "tx_index": 63, - "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", - "block_index": 197, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", - "status": "valid", - "confirmed": true, - "block_time": 1730906006 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//destructions": { - "result": [ - { - "tx_index": 66, - "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", - "block_index": 200, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "status": "valid", - "confirmed": true, - "block_time": 1730906017, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//issuances": { - "result": [ - { - "tx_index": 90, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "msg_index": 0, - "block_index": 223, - "asset": "A95428959531084712", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906142, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sends": { - "result": [ - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//dispenses": { - "result": [ - { - "tx_index": 92, - "dispense_index": 0, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sweeps": { - "result": [ - { - "tx_index": 65, - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "block_index": 199, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730906012, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairminters": { - "result": [ - { - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "tx_index": 90, - "block_index": 223, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428959531084712", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730906142, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairmints": { - "result": [ - { - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905842, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions": { - "result": [ - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 91, - "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "block_index": 224, - "block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93", - "block_time": 1730906146, - "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": " 2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "divisible": true, - "locked": false - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 90, - "result_count": 93 - }, - "/v2/transactions/info": { - "result": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "8984181aedc7d948dce288cb8052f8f3c45e5154d46e68a4b253d13cb0d70a45", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2e2db78e0c43a874157feee9f8071788af90dc7018bd42008ff81cbdd5e9af401858aff1117a5cf87cd93025ca5350" - }, - { - "value": 4999990000, - "script_pub_key": "0014d097e944fad2678d53bd0a94f2f5dfd5a49c4490" - } - ], - "vtxinwit": [ - "304402204016eb416606e8386d75ba2d748caaa9f2c4f8e435bf6216a41d6ddcbb99290e02203df8926228ea55445e5225647cb2b939537acd30c63484c5a9e7e21823f9988401", - "02adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc9" - ], - "lock_time": 0, - "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", - "tx_id": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472" - }, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions//info": { - "result": { - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "68a8bbe346300d7f6d0089492d3bf12ab457f583c566615fc345de4550810b45", - "n": 1, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2ebb88df87a9fd11e68aeba004e3b85212a967bd23e68a3e5fc8162b62a198e5aa2b496e79a348352cea8c6fd9d119" - }, - { - "value": 4949930546, - "script_pub_key": "0014bedceb28862d85cfa2f543d6e7ef2c932e8006f3" - } - ], - "vtxinwit": [ - "304402206c3d516f7075766513142483c9fe2cb08e21b8a4cdc3ad8d012d28136218800902204cda02acf453e6b4dc04aa2e86668d8cd84904dbd7d733e977f1405b30ca2dd201", - "03e4432bd29fd60c4b9082476b3870aca590471ffd5d06ea55d0fad759214ce474" - ], - "lock_time": 0, - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_id": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21" - }, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions/unpack": { - "result": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "error": "memo too long" - } - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_time": 1730906155, - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 805, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92 - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 804, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 225, - "btc_amount": 1000, - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 803, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "status": 0, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 801, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 225, - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "status": "valid", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 800, - "result_count": 12 - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 805, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92 - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 804, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 225, - "btc_amount": 1000, - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 803, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "status": 0, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 801, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 225, - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "status": "valid", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 800, - "result_count": 12 - }, - "/v2/transactions//sends": { - "result": [ - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/transactions//dispenses": { - "result": [ - { - "tx_index": 92, - "dispense_index": 0, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 800, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 797, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 800, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 797, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/balances": { - "result": [ - { - "asset": "A95428956980101314", - "total": 100000000000, - "addresses": [ - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "utxo": null, - "utxo_address": null, - "quantity": 100000000000, - "quantity_normalized": "1000.00000000" - } - ], - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "total_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTA", - "total": 500000000, - "addresses": [ - { - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "utxo": null, - "utxo_address": null, - "quantity": 500000000, - "quantity_normalized": "5.00000000" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "total_normalized": "5.00000000" - }, - { - "asset": "FREEFAIRMINT", - "total": 180, - "addresses": [ - { - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "utxo": null, - "utxo_address": null, - "quantity": 180, - "quantity_normalized": "0.00000180" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000180" - }, - { - "asset": "FAIRMINTD", - "total": 40, - "addresses": [ - { - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "utxo": null, - "utxo_address": null, - "quantity": 40, - "quantity_normalized": "0.00000040" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "total": 19, - "addresses": [ - { - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "utxo": null, - "utxo_address": null, - "quantity": 19, - "quantity_normalized": "0.00000019" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000019" - } - ], - "next_cursor": "MPMASSET", - "result_count": 9 - }, - "/v2/addresses/transactions": { - "result": [ - { - "tx_index": 81, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "block_hash": "4315c34905e78101728bca60d0ccafb873ae0b3138df8534a5e8058151daf6df", - "block_time": 1730906087, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 80, - "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "block_index": 213, - "block_hash": "22ea83f1c95fc9e33b70e3f00ee5db5260307113ef32624a93d7a8c8db7c32f7", - "block_time": 1730906083, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380d097e944fad2678d53bd0a94f2f5dfd5a49c449080c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f3c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 10, - "memo": "746865206d656d6f", - "memo_is_hex": true, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "quantity": 10, - "memo": "746865206d656d6f", - "memo_is_hex": true, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "block_index": 212, - "block_hash": "6ba7abfdc2740592b3e70e3657b356ee9aa38b6788633ce26480f91bceade822", - "block_time": 1730906079, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "block_index": 211, - "block_hash": "107fbd312058741b650cbd9a974365dfd0b2e06a63d3295400a9f04528856ca0", - "block_time": 1730906074, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " 00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 77, - "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", - "block_index": 210, - "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", - "block_time": 1730906070, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", - "supported": true, - "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 76, - "result_count": 49 - }, - "/v2/addresses/events": { - "result": [ - { - "event_index": 761, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 220, - "order_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "block_time": 1730906120 - }, - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "block_index": 220, - "block_time": 1730906120 - }, - { - "event_index": 760, - "event": "CREDIT", - "params": { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "block_index": 220, - "calling_function": "cancel order", - "event": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "quantity": 0, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1730906120, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000000" - }, - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "block_index": 220, - "block_time": 1730906120 - }, - { - "event_index": 716, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "status": "valid", - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "tx_index": 81, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "block_time": 1730906087 - }, - { - "event_index": 715, - "event": "MPMA_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 214, - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "memo": "memo3", - "msg_index": 1, - "quantity": 10, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "status": "valid", - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "tx_index": 81, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "block_time": 1730906087 - } - ], - "next_cursor": 714, - "result_count": 256 - }, - "/v2/addresses/mempool": { - "result": [ - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "quantity": 10000, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "status": "valid", - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "CREDIT", - "params": { - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "XCP", - "block_index": 225, - "calling_function": "send", - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "XCP", - "block_index": 225, - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1730906159.3902285, - "btc_amount": 0, - "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", - "destination": "", - "fee": 10000, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93, - "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1730906159.3902285 - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances": { - "result": [ - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "A95428956980101314", - "quantity": 100000000000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MPMASSET", - "quantity": 99999998960, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "999.99999000" - }, - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MYASSETA", - "quantity": 97999999980, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "980.00000000" - }, - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 82599965196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "825.99965000" - }, - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "TESTLOCKDESC", - "quantity": 9999990000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "99.99990000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/balances/": { - "result": [ - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 82599965196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "825.99965000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/credits": { - "result": [ - { - "block_index": 214, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "calling_function": "mpma send", - "event": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "tx_index": 81, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 213, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "calling_function": "mpma send", - "event": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "tx_index": 80, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906083, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 213, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 3000, - "calling_function": "order expired", - "event": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906083, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00003000" - }, - { - "block_index": 211, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 5000, - "calling_function": "cancel order", - "event": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906074, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00005000" - }, - { - "block_index": 209, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906066, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - } - ], - "next_cursor": 67, - "result_count": 21 - }, - "/v2/addresses/
/debits": { - "result": [ - { - "block_index": 212, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "tx_index": 79, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906079, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 212, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MPMASSET", - "quantity": 20, - "action": "mpma send", - "event": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "tx_index": 79, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906079, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - }, - { - "block_index": 211, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "tx_index": 78, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906074, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 211, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MPMASSET", - "quantity": 20, - "action": "mpma send", - "event": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "tx_index": 78, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906074, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - }, - { - "block_index": 210, - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MPMASSET", - "quantity": 1000, - "action": "send", - "event": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906070, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - ], - "next_cursor": 64, - "result_count": 29 - }, - "/v2/addresses/
/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/broadcasts": { - "result": [ - { - "tx_index": 24, - "tx_hash": "5923d6c82239efc9e2bbc657d5f0dda18e8b690ad30674893918fccb97bb500a", - "block_index": 137, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730905734, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/burns": { - "result": [ - { - "tx_index": 0, - "tx_hash": "b36e7e917e74ea938cfcac1c37dd0355f396d3443e0b1fc7df27af92b50dd670", - "block_index": 112, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "burned": 50000000, - "earned": 74999998167, - "status": "valid", - "confirmed": true, - "block_time": 1730905642, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99998000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends": { - "result": [ - { - "tx_index": 79, - "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "block_index": 212, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906079, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "block_index": 212, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906079, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "block_index": 212, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "memo2", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906079, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906074, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906074, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 23, - "result_count": 12 - }, - "/v2/addresses/
/receives": { - "result": [ - { - "tx_index": 38, - "tx_hash": "39f0d0fc72bfcb9e98652999930ff9f115dd25b2f28cfa6464726895a9f1604c", - "block_index": 151, - "source": "800249e2b33e671e153852fbf8e12c05e1d164ade16e968d23cfbba4ed3a54d8:0", - "destination": "bcrt1qmwfg0570lrsulrlj95j86ujdpwp4tc6gl6vvsq", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730905800, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends/": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/receives/": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 68, - "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730906037, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - }, - "/v2/addresses/
/dispenses/sends": { - "result": [ - { - "tx_index": 69, - "dispense_index": 0, - "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 68, - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730906037, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/receives": { - "result": [ - { - "tx_index": 69, - "dispense_index": 0, - "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 68, - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730906037, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/sends/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispenses/receives/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/sweeps": { - "result": [ - { - "tx_index": 65, - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "block_index": 199, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730906012, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/issuances": { - "result": [ - { - "tx_index": 76, - "tx_hash": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", - "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730906066, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 52, - "tx_hash": "7a840c983808f779b2ddf3adbca3765fe7ece6d67e62d6ccf6b0d42466c4fd3c", - "msg_index": 0, - "block_index": 165, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730905864, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 51, - "tx_hash": "68f9e4a07c450faf7e324387b98333b51d2a4e3c9a9a912971bfa3149a171481", - "msg_index": 0, - "block_index": 164, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1730905859, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 50, - "tx_hash": "559b805057fb143b4dfc4aeaba418dbc306507ce6be277966d794acb7103ac5a", - "msg_index": 0, - "block_index": 163, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730905856, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 49, - "tx_hash": "b6cb783e15faeee05c5749963a0faf709ba8f790441646ee1465290f3272d6cf", - "msg_index": 0, - "block_index": 162, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1730905853, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": 20, - "result_count": 25 - }, - "/v2/addresses/
/assets": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1730906066, - "last_issuance_block_time": 1730906066, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1730905853, - "last_issuance_block_time": 1730905859, - "supply_normalized": "100.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1730905825, - "last_issuance_block_time": 1730905842, - "supply_normalized": "0.00000180" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730905788, - "last_issuance_block_time": 1730905788, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1730905727, - "last_issuance_block_time": 1730905730, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 8 - }, - "/v2/addresses/
/assets/issued": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1730906066, - "last_issuance_block_time": 1730906066, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1730905853, - "last_issuance_block_time": 1730905859, - "supply_normalized": "100.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1730905825, - "last_issuance_block_time": 1730905842, - "supply_normalized": "0.00000180" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730905788, - "last_issuance_block_time": 1730905788, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1730905727, - "last_issuance_block_time": 1730905730, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 8 - }, - "/v2/addresses/
/assets/owned": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1730906066, - "last_issuance_block_time": 1730906066, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1730905853, - "last_issuance_block_time": 1730905859, - "supply_normalized": "100.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1730905825, - "last_issuance_block_time": 1730905842, - "supply_normalized": "0.00000180" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1730905788, - "last_issuance_block_time": 1730905788, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1730905727, - "last_issuance_block_time": 1730905730, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 8 - }, - "/v2/addresses/
/transactions": { - "result": [ - { - "tx_index": 79, - "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "block_index": 212, - "block_hash": "6ba7abfdc2740592b3e70e3657b356ee9aa38b6788633ce26480f91bceade822", - "block_time": 1730906079, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "block_index": 211, - "block_hash": "107fbd312058741b650cbd9a974365dfd0b2e06a63d3295400a9f04528856ca0", - "block_time": 1730906074, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380f3d964d3642161c5d73279548e4e9d5d291663e180c5549f0941476c9f4e6044b95b84cc44efe5d9cf80bedceb28862d85cfa2f543d6e7ef2c932e8006f388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " 00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 77, - "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", - "block_index": 210, - "block_hash": "753c9c113f652b63a40d6e48268242d1434af6a91e3039b405727f0bf6de08aa", - "block_time": 1730906070, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000178d82231300000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", - "supported": true, - "utxos_info": " 855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f", - "block_index": 209, - "block_hash": "6b2f723cb4f3adaaf624bb7ca9e4de149392645cd8cbcfd379ceaa9b9eac9bfa", - "block_time": 1730906066, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", - "supported": true, - "utxos_info": " ae6e953c05c4dbca52f981adafb246319c430c122fe70cb1ee46631bf553603f:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 68, - "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "block_index": 202, - "block_hash": "1ed0e83ad32b9e691ec9704d6f4526fa3fe1e1992073d5580873fec49e4c627e", - "block_time": 1730906034, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": " e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 67, - "result_count": 32 - }, - "/v2/addresses/
/dividends": { - "result": [ - { - "tx_index": 42, - "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", - "block_index": 155, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1730905817, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/orders": { - "result": [ - { - "tx_index": 53, - "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "block_index": 188, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730905888, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 55, - "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906074, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 62, - "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", - "block_index": 197, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906006, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 64, - "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "block_index": 220, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 219, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906120, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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.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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/fairminters": { - "result": [ - { - "tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 180, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, - "confirmed": true, - "block_time": 1730905842, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "a183181fbc3a1bf92bdeae89cbe4434c490e42d423f32540b38874062011b183", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730905821, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1730905727, - "price_normalized": "50.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1730905713, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "231d09a91249525f36e1a7d5aa712b5d963589798438f1b0a60677605a178432", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1730905708, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730905689, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 6 - }, - "/v2/addresses/
/fairmints": { - "result": [ - { - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905842, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "f6622f9dcdd08038ac60c485e9967232f532360af5eefb4c3f35d37bd735e9ad", - "tx_index": 45, - "block_index": 158, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "asset": "FREEFAIRMINT", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905829, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "cbff45a7aa63aa0777a4ae531fd5e8e08c28f8634824c9a7e37e69e8887a6446", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905730, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "85a0fcffd37dd5eab5fd7e4c72c79225b9716f73abd0eeda868c9da84dc0414f", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905723, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "880f43d002cc5360590adf0dab62ff4f00348ed69ce767d6452159b0c36da25d", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905720, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "229d81d2a681191c701658b1dd8d55d3bb41ad980940a700373db81216c15142", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905716, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "f72eb630daaca420ea82e20017a6740aa3de688e6b9ba2ca2a6b42d49961b8ed", - "tx_index": 15, - "block_index": 127, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "231d09a91249525f36e1a7d5aa712b5d963589798438f1b0a60677605a178432", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905697, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - }, - { - "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905680, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 8 - }, - "/v2/addresses/
/fairmints/": { - "result": [ - { - "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905680, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/utxos//balances": { - "result": [ - { - "asset": "XCP", - "quantity": 2000000000, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "asset": "MYASSETA", - "quantity": 2000000000, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/compose/bet": { - "error": "['feed doesn\u2019t exist']" - }, - "/v2/addresses/
/compose/broadcast": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction": 0.05, - "text": "\"Hello, world!\"", - "skip_validation": false - }, - "name": "broadcast", - "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985793, - "btc_fee": 14207, - "rawtransaction": "02000000000101643786e895b891f625369790abf36a40c891a28e4321c7274bfe80ab2f4136c900000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff0200000000000000002b6a29a35743c4badaa207ebf51c226843d0d75423ebb291ad99d42328daf889de6e2d55e41ffae420b50faf81ba052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "broadcast", - "message_type_id": 30, - "message_data": { - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction_int": 5000000, - "text": "\"Hello, world!\"", - "status": "valid", - "fee_fraction_int_normalized": "0.05000000" - } - } - } - }, - "/v2/addresses/
/compose/btcpay": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "order_match_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "skip_validation": false - }, - "name": "btcpay", - "data": "434e5452505254590bf58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999980918, - "btc_fee": 18082, - "rawtransaction": "020000000001018f031c62d72ae2a0a1f0beb8ceae567c19f378ba0ad8dad50bd0720d689731ce00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff03e803000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449000000000000000004b6a492ee98792b5c75e16eb5f5fc7230f19c53aaf643174fff06697b0ccad477d2bad041faadec789bc80bda2c4c692e525e9374cbda358889b14b5f859c61d4e0010f49c1c9a39e85f229876a7052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "order_match_id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/burn": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "quantity": 1000, - "overburn": false, - "skip_validation": false - }, - "name": "burn", - "data": null, - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999985791, - "btc_fee": 13209, - "rawtransaction": "020000000001010df84bfc88e14beed7039f90f5699729aa6b894c57145ef035aa8869677042d500000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac7fba052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000" - } - }, - "/v2/addresses/
/compose/cancel": { - "result": { - "params": { - "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "offer_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "skip_validation": false - }, - "name": "cancel", - "data": "434e545250525459462119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "btc_in": 4949928908, - "btc_out": 0, - "btc_change": 4949914701, - "btc_fee": 14207, - "rawtransaction": "020000000001017eed8ea60b92250f5df56d749bf293a3c1922548515645828f02162ee3ae19210100000016001419795ee02143ec444cd5bff9806d199454cf4eadffffffff0200000000000000002b6a2935f41e9bc2049ca7f5eb913d5d2796724e0ea75e7b7b22b5ec2d4c87ce797640eaf6da36cbe2dd03e34db409270100000016001419795ee02143ec444cd5bff9806d199454cf4ead02000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/destroy": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 1000, - "tag": "\"bugs!\"", - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00001000" - }, - "name": "destroy", - "data": "434e5452505254596e000000000000000100000000000003e822627567732122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986321, - "btc_fee": 13679, - "rawtransaction": "02000000000101cda98c819535aed5812c49119b20ce1df8790df125c47a148a6f50bc481663ca00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000226a20334c577374fa112e6149244d1e637103fbefbc01253ec3d4f7f12e8b1988eba491bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "tag": "22627567732122", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dispenser": { - "result": { - "params": { - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949873799, - "btc_out": 0, - "btc_change": 4949859533, - "btc_fee": 14266, - "rawtransaction": "020000000001018e5ce2b73f20a18bde9825745a2d7d969c5817a78635aa614f25c30b2a29cd4a020000001600143047d35450fa1d98208bddb4aa764db473597340ffffffff0200000000000000002c6a2a7ba35826620670ba5277ea1ded9ff8eb086b022551d59351ea19966b5011f4f00f19f3389579037ef667cddc0827010000001600143047d35450fa1d98208bddb4aa764db47359734002000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dividend": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "quantity_per_unit": 1, - "asset": "FAIRMINTA", - "dividend_asset": "XCP", - "skip_validation": false, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "0.00000001" - }, - "name": "dividend", - "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986262, - "btc_fee": 13738, - "rawtransaction": "02000000000101a17c62cc89fcfab45d83d7bcf00138e9210e1ecffadd0e4ec41d09912ce91e5600000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000236a216674725fd4301c5c548a5c9afef7cb8ee560873547ba591ad60b3b9c9703c2aa1356bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, - "message_data": { - "asset": "FAIRMINTA", - "quantity_per_unit": 1, - "dividend_asset": "XCP", - "status": "valid", - "quantity_per_unit_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/issuance": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCPTEST", - "quantity": 1000, - "transfer_destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "lock": false, - "reset": false, - "description": null, - "skip_validation": false, - "quantity_normalized": "0.00001000" - }, - "name": "issuance", - "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999983720, - "btc_fee": 15734, - "rawtransaction": "0200000000010191fd9ad521b1932277ed9853c7f5f1f7f6b349a443561da5dee1f279194f0b9a00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff032202000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900000000000000000236a2187ad0d5c2b8286005ddbe89aa2a92cece2987c6cef41a7a78a3ee4e0315b1d1c8868b2052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 7136017375, - "asset": "XCPTEST", - "subasset_longname": null, - "quantity": 1000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "status": "valid", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/mpma": { - "result": { - "params": { - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset_dest_quant_list": [ - [ - "XCP", - "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - 1 - ], - [ - "FREEFAIRMINT", - "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - 2 - ] - ], - "memo": null, - "memo_is_hex": false, - "skip_validation": false - }, - "name": "mpma", - "data": "434e54525052545903000280d097e944fad2678d53bd0a94f2f5dfd5a49c449080f3d964d3642161c5d73279548e4e9d5d291663e14012737f10d9927d5000000000000000240000000000000004000000000000000100", - "btc_in": 4949808000, - "btc_out": 2000, - "btc_change": 4949785276, - "btc_fee": 20724, - "rawtransaction": "020000000001011dc7c1e41820dbecddc65714694c8356ca56af78f75f007abac72b22c6fa677803000000160014f3d964d3642161c5d73279548e4e9d5d291663e1ffffffff03e8030000000000006951210302f37f8c02b0159e3937aec28b53aacfebae0a50f2eb1546227dbd2a4e96aaec2103b14a593ef296de2a70e1cd12da19a452cb29f62e966367f36829b2314f83d76021028d544179e05f0fe96bb66a5697064c9637b7475a270a9af18a9d06cb9badbcb953aee803000000000000695121031df37f8c02b0159e3964aec00b833d26af70d8377fb8a84cb68b48f59b3236ef2103f5dad8cd2bf20d4e518008c5e860f0dc85b4ab07800086b37a5acd219611aaec21028d544179e05f0fe96bb66a5697064c9637b7475a270a9af18a9d06cb9badbcb953aebcba072701000000160014f3d964d3642161c5d73279548e4e9d5d291663e102000000000000", - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "FREEFAIRMINT", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "quantity": 2, - "memo": null, - "memo_is_hex": null - }, - { - "asset": "XCP", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "quantity": 1, - "memo": null, - "memo_is_hex": null - } - ] - } - } - }, - "/v2/addresses/
/compose/order": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "skip_validation": false, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "get_asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - }, - "name": "order", - "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985206, - "btc_fee": 14794, - "rawtransaction": "020000000001014f76a135350388948d9f0078677eba5a0ee4a0b152165a197fb26605e3dcdfaa00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000356a33f318d201aabe90b54329d3737d5d657d1b0ebec1a7164673c8c8990f72a92998d750f32dae66c0869dc4b140c265b82d3e78bd36b8052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "status": "open", - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - } - } - } - }, - "/v2/addresses/
/compose/send": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 1000, - "memo": null, - "memo_is_hex": false, - "use_enhanced_send": true, - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00001000" - }, - "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f3d964d3642161c5d73279548e4e9d5d291663e1", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985499, - "btc_fee": 14501, - "rawtransaction": "02000000000101e9c7466dee6d1b01f2ce5d35c6feb2c38c668734e72f370aab05e81e185bc60f00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000306a2e0dcde744809e60c0e8b704dfb32bca1c9135e01fceb4287c08b8ccf09b47838fe88beda0ea4d8f584e3f3cb196a35bb9052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "memo": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/sweep": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "flags": 7, - "memo": "FFFF", - "skip_validation": false - }, - "name": "sweep", - "data": "434e5452505254590480f3d964d3642161c5d73279548e4e9d5d291663e107ffff", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986262, - "btc_fee": 13738, - "rawtransaction": "02000000000101e9cd76c8a64eb792610719f16fb58df7a32083b7354972c21496f9d0ebba7e5e00000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000236a2177cd4521950c90d6c0f4e6413a388936cfa89fd8de9feb24106f530bebdd71205c56bc052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "sweep", - "message_type_id": 4, - "message_data": { - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "flags": 7, - "memo": "ffff" - } - } - } - }, - "/v2/addresses/
/compose/dispense": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "quantity": 1000, - "skip_validation": false - }, - "name": "dispense", - "data": "434e5452505254590d00", - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999984617, - "btc_fee": 14383, - "rawtransaction": "02000000000101c02f151cf7cacb367f5c77daea1c155aa9b008a592c35cceac61a6deb3bbb4d800000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff03e803000000000000160014bedceb28862d85cfa2f543d6e7ef2c932e8006f300000000000000000c6a0a305e73c2e64800499e6ce9b5052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - } - } - }, - "/v2/addresses/
/compose/fairminter": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": 0.0, - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "skip_validation": false, - "price_normalized": "10.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "name": "fairminter", - "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985440, - "btc_fee": 14560, - "rawtransaction": "02000000000101b29564682363ea41ebeff08e55e5855bc5b5d87460f6c69522a4aa0f13ce08a900000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000316a2fed132d16c4e609ddb87b574a6a53c933257e841578fb7e4a98786715e3f32bc44c06c30e4303fc74cf11fc25b6a9fb20b9052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "fairminter", - "message_type_id": 90, - "message_data": { - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": "0.00000000", - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "10.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - } - } - }, - "/v2/addresses/
/compose/fairmint": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FAIRMINTC", - "quantity": 1, - "skip_validation": false, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000001" - }, - "name": "fairmint", - "data": "434e5452505254595b464149524d494e54437c31", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999987026, - "btc_fee": 12974, - "rawtransaction": "02000000000101cde7cbd4dfb47767b6610a270fe608e97f817670aa36b7ba6ade629c2712c22300000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff020000000000000000166a144c7cb056b63fd59a01f6a9e1050ffbf962b906fd52bf052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "fairmint", - "message_type_id": 91, - "message_data": { - "asset": "FAIRMINTC", - "quantity": 1, - "quantity_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/attach": { - "result": { - "params": { - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 1000, - "destination_vout": null, - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00001000" - }, - "name": "attach", - "data": "434e545250525459655843507c313030307c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999984601, - "btc_fee": 14853, - "rawtransaction": "0200000000010164e5c85dbf5d037dd85d104a8011952682ab740017d42874e005fc7758fdb33600000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c4490ffffffff032202000000000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c44900000000000000000146a12467aa0e269da65ab31ed68e5dbe2f7212935d9b5052a01000000160014d097e944fad2678d53bd0a94f2f5dfd5a49c449002000000000000", - "unpacked_data": { - "message_type": "attach", - "message_type_id": 101, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "destination_vout": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/utxos//compose/detach": { - "result": { - "params": { - "source": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "skip_validation": false - }, - "name": "detach", - "data": "434e54525052545966626372743171367a74376a33383636666e6336356161703232303961776c366b6a66633379737936676d6673", - "btc_in": 4949971000, - "btc_out": 0, - "btc_change": 4949945462, - "btc_fee": 25538, - "rawtransaction": "020000000001028e5ce2b73f20a18bde9825745a2d7d969c5817a78635aa614f25c30b2a29cd4a000000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14fffffffffbc51bdb1cbb93331825a2b1e2607099319b9660c95ec65f3e2596960195d4846010000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14fffffffff020000000000000000376a357ba35826620670ba3815896f99ae89dd731f354f62eda5646477f55d65709583d52bc301f40e6f48f90d0ee6fc341bb80e843a782e762c0a27010000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14f02000002000000000000", - "unpacked_data": { - "message_type": "detach", - "message_type_id": 102, - "message_data": { - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs" - } - } - } - }, - "/v2/assets": { - "result": [ - { - "asset": "PARENTB", - "asset_id": "4641584819", - "asset_longname": null, - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "owner": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset PARENTB", - "first_issuance_block_index": 217, - "last_issuance_block_index": 217, - "confirmed": true, - "first_issuance_block_time": 1730906108, - "last_issuance_block_time": 1730906108, - "supply_normalized": "1000.00000000" - }, - { - "asset": "PARENTA", - "asset_id": "4641584818", - "asset_longname": null, - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "owner": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset PARENTA", - "first_issuance_block_index": 215, - "last_issuance_block_index": 215, - "confirmed": true, - "first_issuance_block_time": 1730906092, - "last_issuance_block_time": 1730906092, - "supply_normalized": "1000.00000000" - }, - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1730906066, - "last_issuance_block_time": 1730906066, - "supply_normalized": "1000.00000000" - }, - { - "asset": "UTXOASSET", - "asset_id": "4336417415635", - "asset_longname": null, - "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "owner": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset", - "first_issuance_block_index": 204, - "last_issuance_block_index": 204, - "confirmed": true, - "first_issuance_block_time": 1730906041, - "last_issuance_block_time": 1730906041, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1730905853, - "last_issuance_block_time": 1730905859, - "supply_normalized": "100.00000000" - } - ], - "next_cursor": 9, - "result_count": 13 - }, - "/v2/assets/": { - "result": { - "asset": "FAIRMINTA", - "asset_id": "1046814266082", - "asset_longname": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "", - "first_issuance_block_index": 122, - "last_issuance_block_index": 125, - "confirmed": true, - "first_issuance_block_time": 1730905676, - "last_issuance_block_time": 1730905689, - "supply_normalized": "100.00000000" - } - }, - "/v2/assets//balances": { - "result": [ - { - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 9500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - }, - { - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/assets//balances/
": { - "result": [ - { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 82599965196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "825.99965000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//orders": { - "result": [ - { - "tx_index": 53, - "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "block_index": 188, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730905888, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 55, - "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906074, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 62, - "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", - "block_index": 197, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906006, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 64, - "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "block_index": 220, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 219, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906120, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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.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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 56, - "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "block_index": 191, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 211, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730905961, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - ], - "next_cursor": 58, - "result_count": 7 - }, - "/v2/assets//matches": { - "result": [ - { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 55, - "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 212, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "tx0_index": 55, - "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 56, - "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 210, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1730905961, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", - "tx0_index": 53, - "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 54, - "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", - "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 187, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1730905888, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 64, - "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//credits": { - "result": [ - { - "block_index": 199, - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "sweep", - "event": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906012, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 125, - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "FAIRMINTA", - "quantity": 9000000000, - "calling_function": "fairmint", - "event": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", - "tx_index": 13, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730905689, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "90.00000000" - }, - { - "block_index": 124, - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730905685, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", - "tx_index": 11, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730905685, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "escrowed fairmint", - "event": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730905685, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": 12, - "result_count": 6 - }, - "/v2/assets//debits": { - "result": [ - { - "block_index": 225, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "action": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 217, - "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "XCP", - "quantity": 50000000, - "action": "issuance fee", - "event": "5703e82bec4eae111000ba07a3989ca1df3c4d0394fbec4770508be013e1304b", - "tx_index": 84, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906108, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.50000000" - }, - { - "block_index": 215, - "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "XCP", - "quantity": 50000000, - "action": "issuance fee", - "event": "37ed4f67da4c7daa52ab856851f6f42b4ee4218f07e8bb695f76bfdbaef85ade", - "tx_index": 82, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906092, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.50000000" - }, - { - "block_index": 214, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "tx_index": 81, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 213, - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "tx_index": 80, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1730906083, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ], - "next_cursor": 69, - "result_count": 48 - }, - "/v2/assets//dividends": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/assets//issuances": { - "result": [ - { - "tx_index": 13, - "tx_hash": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", - "msg_index": 0, - "block_index": 125, - "asset": "FAIRMINTA", - "quantity": 9000000000, - "divisible": true, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1730905689, - "quantity_normalized": "90.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 12, - "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", - "msg_index": 0, - "block_index": 124, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1730905685, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 11, - "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", - "msg_index": 0, - "block_index": 123, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1730905680, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 10, - "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "msg_index": 0, - "block_index": 122, - "asset": "FAIRMINTA", - "quantity": 0, - "divisible": true, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730905676, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//sends": { - "result": [ - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 80, - "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "block_index": 213, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "746865206d656d6f", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906083, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "980c667e71aa5bcd4d0314491bfdb13b1a89747149b98e6faf180f1274d94f3e", - "block_index": 212, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906079, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "00d34cb7d55906663604a3160df4573bd1669a4e184935e6e3d06f2ae19f88f1", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906074, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 16, - "result_count": 10 - }, - "/v2/assets//dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 29, - "tx_hash": "1f4dec693bc9df88231d804fd52e5b835a5f35cdae943a51ef12de40235304e1", - "block_index": 142, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905756, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 30, - "tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", - "block_index": 150, - "source": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "bbd08fcfb665580d196d17a77962c82036f81beba2ef55030a8e82bb6a3cab1f", - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "close_block_index": 150, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905795, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 33, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016", - "price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispensers/
": { - "result": { - "tx_index": 26, - "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - }, - "/v2/assets//holders": { - "result": [ - { - "asset": "FAIRMINTA", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_12", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "quantity": 500000000, - "escrow": null, - "cursor_id": "balances_13", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_14", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "quantity": 9500000000, - "escrow": null, - "cursor_id": "balances_15", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispenses": { - "result": [ - { - "tx_index": 92, - "dispense_index": 0, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "a5f38f2b0bec7778ac4c0756d0b4e74c8d364264d9db634caf1e07142a99f689", - "block_index": 147, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730905783, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//subassets": { - "result": [ - { - "asset": "A95428958968845068", - "asset_id": "95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "owner": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 156, - "last_issuance_block_index": 156, - "confirmed": true, - "first_issuance_block_time": 1730905821, - "last_issuance_block_time": 1730905821, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairminters": { - "result": [ - { - "tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1730905689, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairmints": { - "result": [ - { - "tx_hash": "d0a769d0e05b02985ee5826e1ed04718fa86f5165b782319acde6fc1ff72b929", - "tx_index": 13, - "block_index": 125, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "asset": "FAIRMINTA", - "earn_quantity": 9000000000, - "paid_quantity": 9000000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905689, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "90.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "90.00000000" - }, - { - "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb", - "tx_index": 12, - "block_index": 124, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905685, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - }, - { - "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905680, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//fairmints/
": { - "result": [ - { - "tx_hash": "31db2911bd4b10b4b05bffb20c5c9b518ba910d0ad24ed2be5f12b19a1c2b550", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "dda08eb6ed779aba33c05c5d73d987180451526b0c0043bbd15edbbcadb5198a", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905680, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders": { - "result": [ - { - "tx_index": 53, - "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "block_index": 188, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730905888, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 56, - "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "block_index": 191, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 211, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730905961, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 62, - "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", - "block_index": 197, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906006, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 55, - "tx_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906074, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 58, - "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "block_index": 214, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 2000, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 2000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906087, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00002000", - "give_remaining_normalized": "0.00002000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - ], - "next_cursor": 64, - "result_count": 8 - }, - "/v2/orders/": { - "result": { - "tx_index": 91, - "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "block_index": 224, - "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 245, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1730906146, - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "divisible": true, - "locked": false - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - }, - "/v2/orders//matches": { - "result": [ - { - "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 64, - "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//btcpays": { - "result": [ - { - "tx_index": 57, - "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", - "block_index": 191, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "btc_amount": 2000, - "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "status": "valid", - "confirmed": true, - "block_time": 1730905961, - "btc_amount_normalized": "0.00002000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//": { - "result": [ - { - "tx_index": 56, - "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "block_index": 191, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 211, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1730905961, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": 58, - "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "block_index": 214, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 2000, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 2000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1730906087, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00002000", - "give_remaining_normalized": "0.00002000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 53, - "tx_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "block_index": 188, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730905888, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "block_index": 211, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730906074, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": 62, - "tx_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", - "block_index": 197, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "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": 1730906006, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": 64, - "result_count": 7 - }, - "/v2/orders///matches": { - "result": [ - { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 55, - "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 212, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "tx0_index": 55, - "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 56, - "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 210, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730905961, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", - "tx0_index": 53, - "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 54, - "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", - "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 187, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730905888, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 64, - "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/order_matches": { - "result": [ - { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 55, - "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 212, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "tx0_index": 55, - "tx0_hash": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 56, - "tx1_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 210, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1730905961, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de_64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", - "tx0_index": 53, - "tx0_hash": "e9d665d8b7a80022c871c511523250a9c7bd8c3b34a01fa3d435cf098b7bd2de", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 54, - "tx1_hash": "64c70394fc5eae3b7b10660962fed9c9157b27627a5158c7b07cb01e141f6931", - "tx1_address": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 187, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1730905888, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_index": 64, - "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_index": 58, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets/": { - "error": "Not found" - }, - "/v2/bets//matches": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets//resolutions": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/burns": { - "result": [ - { - "tx_index": 9, - "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", - "block_index": 121, - "source": "bcrt1qzycg25f6h3gxwcclpupwd823gc63ckk744hvlq", - "burned": 50000000, - "earned": 74999996667, - "status": "valid", - "confirmed": true, - "block_time": 1730905672, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 8, - "tx_hash": "88b56a7850b2edba8fe1c5a1f62f1517aaa3dc286314a0409b9e78006b1bbff7", - "block_index": 120, - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "burned": 50000000, - "earned": 74999996833, - "status": "valid", - "confirmed": true, - "block_time": 1730905669, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 7, - "tx_hash": "f9f8b571ff977eb3f91dddff917944b5ffddf1c07b3bcaa1dcc32bb5ee2c478d", - "block_index": 119, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "burned": 50000000, - "earned": 74999997000, - "status": "valid", - "confirmed": true, - "block_time": 1730905665, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 6, - "tx_hash": "839a7535bc6d26cf33f2194a22445dee8fc71f3fb714eb59c2036d5d2bb2a0af", - "block_index": 118, - "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "burned": 50000000, - "earned": 74999997167, - "status": "valid", - "confirmed": true, - "block_time": 1730905661, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 5, - "tx_hash": "94d0f38f04a5d1a34b41a159fd00b1bca3be5409eb0fdecf0cbbd147fca97faa", - "block_index": 117, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "burned": 50000000, - "earned": 74999997333, - "status": "valid", - "confirmed": true, - "block_time": 1730905658, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - } - ], - "next_cursor": 4, - "result_count": 10 - }, - "/v2/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 29, - "tx_hash": "1f4dec693bc9df88231d804fd52e5b835a5f35cdae943a51ef12de40235304e1", - "block_index": 142, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905756, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 30, - "tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", - "block_index": 150, - "source": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "bbd08fcfb665580d196d17a77962c82036f81beba2ef55030a8e82bb6a3cab1f", - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "close_block_index": 150, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905795, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 68, - "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730906037, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 33, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016", - "price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - }, - "/v2/dispensers//dispenses": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/dividends": { - "result": [ - { - "tx_index": 42, - "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", - "block_index": 155, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1730905817, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/dividends/": { - "result": { - "tx_index": 42, - "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", - "block_index": 155, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1730905817, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - }, - "/v2/dividends//credits": { - "result": [ - { - "block_index": 155, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "calling_function": "dividend", - "event": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", - "tx_index": 42, - "utxo": "115cd84a869aaf7c20759e1b94387e4d198a1a0daf1e499365d4719de741dee8:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "confirmed": true, - "block_time": 1730905817, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events": { - "result": [ - { - "event_index": 806, - "event": "BLOCK_PARSED", - "params": { - "block_index": 225, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "block_time": 1730906155 - }, - "tx_hash": null, - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 805, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92 - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 804, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 225, - "btc_amount": 1000, - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 803, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "status": 0, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 801, - "result_count": 807 - }, - "/v2/events/": { - "result": { - "event_index": 806, - "event": "BLOCK_PARSED", - "params": { - "block_index": 225, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "block_time": 1730906155 - }, - "tx_hash": null, - "block_index": 225, - "block_time": 1730906155 - } - }, - "/v2/events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 11 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 78 - }, - { - "event": "SWEEP", - "event_count": 1 - }, - { - "event": "REFILL_DISPENSER", - "event_count": 1 - }, - { - "event": "ORDER_UPDATE", - "event_count": 17 - } - ], - "next_cursor": "ORDER_MATCH_UPDATE", - "result_count": 36 - }, - "/v2/events/": { - "result": [ - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 800, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 797, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 225, - "calling_function": "utxo move", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "utxo_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - }, - { - "event_index": 760, - "event": "CREDIT", - "params": { - "address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "block_index": 220, - "calling_function": "cancel order", - "event": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "quantity": 0, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1730906120, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000000" - }, - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "block_index": 220, - "block_time": 1730906120 - }, - { - "event_index": 748, - "event": "CREDIT", - "params": { - "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428960545690062", - "block_index": 218, - "calling_function": "issuance", - "event": "bb2f2ad4636c8435fc43dac46d8f183da0fde0dfcd26b01b4ded551d05f46c0e", - "quantity": 100000000000, - "tx_index": 85, - "utxo": null, - "utxo_address": null, - "block_time": 1730906112, - "asset_info": { - "asset_longname": "PARENTB.SUBASSETB", - "description": "My super subasset SUBASSETB", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - "tx_hash": "bb2f2ad4636c8435fc43dac46d8f183da0fde0dfcd26b01b4ded551d05f46c0e", - "block_index": 218, - "block_time": 1730906112 - } - ], - "next_cursor": 740, - "result_count": 101 - }, - "/v2/events//count": { - "result": { - "event": "CREDIT", - "event_count": 101 - } - }, - "/v2/dispenses": { - "result": [ - { - "tx_index": 92, - "dispense_index": 0, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 69, - "dispense_index": 0, - "tx_hash": "21398c97170685a687f06ed8bb7112263e075c13f153baed9a7d5236ea45adfc", - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 68, - "block_index": 203, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730906037, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "a5f38f2b0bec7778ac4c0756d0b4e74c8d364264d9db634caf1e07142a99f689", - "block_index": 147, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 225, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "last_status_tx_hash": null, - "origin": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1730905783, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "1e5063c28dca7fb417f17ed6ef66c508c7ca7c3446cc5188566b16f04e3affa6", - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905751, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "1e4daa45efd7a7b86bf8d5bba313e3acf2f1f1457ab8b5cc4520d2f123fe8b8d", - "block_index": 140, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "9e538ef9cf636ece285e7d01518a5c010a4f53ac24e6111317db9276d2546c88", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1730905747, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/sends": { - "result": [ - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 92, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 31, - "result_count": 36 - }, - "/v2/issuances": { - "result": [ - { - "tx_index": 90, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "msg_index": 0, - "block_index": 223, - "asset": "A95428959531084712", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906142, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 89, - "tx_hash": "71a2f6f0722f19cccd53f65e6a8fe131ac9b9b5d7a375cf433558112184bf8d2", - "msg_index": 0, - "block_index": 222, - "asset": "A95428960428101357", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.A95428960545690062", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906129, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 88, - "tx_hash": "c77c72d6a3adb9c79649a357d7baf12c96d6dd6498e909df7b125cd32c92f8c8", - "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906124, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 87, - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "msg_index": 0, - "block_index": 220, - "asset": "A95428960545690062", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super subasset SUBASSETB", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTB.SUBASSETB", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906120, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 86, - "tx_hash": "7f8171d78535915ecb9b6d3c89a4da643b735ce1c1d3c4498eac8d6e747ea1a3", - "msg_index": 0, - "block_index": 219, - "asset": "A95428960939749879", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super subasset SUBASSETA", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETA", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906117, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 31, - "result_count": 36 - }, - "/v2/issuances/": { - "result": { - "tx_index": 90, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "msg_index": 0, - "block_index": 223, - "asset": "A95428959531084712", - "quantity": 0, - "divisible": true, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1730906142, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - }, - "/v2/sweeps": { - "result": [ - { - "tx_index": 65, - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "block_index": 199, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730906012, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/sweeps/": { - "result": [ - { - "tx_index": 65, - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "block_index": 199, - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1730906012, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/broadcasts": { - "result": [ - { - "tx_index": 25, - "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", - "block_index": 138, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730905738, - "fee_fraction_int_normalized": "0.00000000" - }, - { - "tx_index": 24, - "tx_hash": "5923d6c82239efc9e2bbc657d5f0dda18e8b690ad30674893918fccb97bb500a", - "block_index": 137, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730905734, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/broadcasts/": { - "result": { - "tx_index": 25, - "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", - "block_index": 138, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1730905738, - "fee_fraction_int_normalized": "0.00000000" - } - }, - "/v2/fairminters": { - "result": [ - { - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "tx_index": 90, - "block_index": 223, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428959531084712", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730906142, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "71a2f6f0722f19cccd53f65e6a8fe131ac9b9b5d7a375cf433558112184bf8d2", - "tx_index": 89, - "block_index": 222, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428960428101357", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.A95428960545690062", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730906129, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "c77c72d6a3adb9c79649a357d7baf12c96d6dd6498e909df7b125cd32c92f8c8", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730906124, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "tx_index": 87, - "block_index": 220, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428960545690062", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETB", - "description": "My super subasset SUBASSETB", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730906120, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "7f8171d78535915ecb9b6d3c89a4da643b735ce1c1d3c4498eac8d6e747ea1a3", - "tx_index": 86, - "block_index": 219, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "asset": "A95428960939749879", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETA", - "description": "My super subasset SUBASSETA", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1730906117, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - } - ], - "next_cursor": 6, - "result_count": 11 - }, - "/v2/fairmints": { - "result": [ - { - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905842, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "f6622f9dcdd08038ac60c485e9967232f532360af5eefb4c3f35d37bd735e9ad", - "tx_index": 45, - "block_index": 158, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "asset": "FREEFAIRMINT", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905829, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "cbff45a7aa63aa0777a4ae531fd5e8e08c28f8634824c9a7e37e69e8887a6446", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "2f3b909857f5677e480b58783163c57529cd0a6f0dd5fdbcb71066653b2e7b80", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905730, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "85a0fcffd37dd5eab5fd7e4c72c79225b9716f73abd0eeda868c9da84dc0414f", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905723, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "880f43d002cc5360590adf0dab62ff4f00348ed69ce767d6452159b0c36da25d", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "09b8db67d4f93e3d24c5be0d5fbda00d715abf8164668656ef924fa72bca0b92", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905720, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - } - ], - "next_cursor": 7, - "result_count": 12 - }, - "/v2/fairmints/": { - "result": { - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1730905842, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - } - }, - "/v2/bitcoin/addresses/utxos": { - "result": [ - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 19, - "amount": 5.46e-06, - "txid": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", - "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" - }, - { - "vout": 0, - "height": 208, - "value": 546, - "confirmations": 18, - "amount": 5.46e-06, - "txid": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", - "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" - }, - { - "vout": 1, - "height": 224, - "value": 4949928908, - "confirmations": 2, - "amount": 49.49928908, - "txid": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "address": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20" - }, - { - "vout": 1, - "height": 223, - "value": 10000, - "confirmations": 3, - "amount": 0.0001, - "txid": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "address": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions": { - "result": [ - { - "tx_hash": "993bd93dc8df10ccbade90167917590b8364e4db37a113e742e81135b754793a" - }, - { - "tx_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a" - }, - { - "tx_hash": "c4048d9a6a34875942572bfdcc1de4c88de745a291332dfbbb11d5eaee22c368" - }, - { - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385" - }, - { - "tx_hash": "eb6f2b41889176f9e807c670aeab66eb81662bcbb034062567e3e8069e97f985" - }, - { - "tx_hash": "d7793fbc7b771bcff87a69ebbd3c22924aceb57ddc4ed831bb54c9f4941f5cb5" - }, - { - "tx_hash": "f84b44c87b44876e002a7dd349f7ccf78f5742934fceccb1e1a5d49fea0bf6bb" - }, - { - "tx_hash": "40c0ef9ff60ade2ab4ab5bb85fee3e7d7c73dcff5f71a285fb199100fdb7bfc3" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions/oldest": { - "result": { - "block_index": 9, - "tx_hash": "bf7efe24df549c48a0e8fed695b6da44541c774d00dfdf4f0f156a633e2ab197" - } - }, - "/v2/bitcoin/addresses/
/utxos": { - "result": [ - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 19, - "amount": 5.46e-06, - "txid": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0" - }, - { - "vout": 0, - "height": 208, - "value": 546, - "confirmations": 18, - "amount": 5.46e-06, - "txid": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb" - }, - { - "vout": 1, - "height": 224, - "value": 4949928908, - "confirmations": 2, - "amount": 49.49928908, - "txid": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/pubkey": { - "result": "02adbbcd6eba49074130c2fa5a006a5e4507848a6137ce3884e2750fcf58d98cc9" - }, - "/v2/bitcoin/transactions/": { - "result": "02000000000101ef2945137ab8e34c569de375989fa10b3d1d868b8428218d856a221056a359c40100000000ffffffff03e8030000000000001600141d2e267a3a01a4e1cc453ebf4801cc1a8f4dd14f00000000000000000c6a0a1f303a7afc1a76ba26a187140927010000001600143047d35450fa1d98208bddb4aa764db473597340024730440220523ae340dbce5334d55174e5e1cc99347c38a313a5bf5cc95e5a04751b8fb38302203228b77e36a8f2498669fb932032b95a1588d9c9fcc57b14b6bb449efca14e860121034fe6b16f60e1038c62d66622876ee8c807c3a7147ea58beab78ddc00a23e8bc600000000" - }, - "/v2/bitcoin/estimatesmartfee": { - "result": 58710 - }, - "/v2/bitcoin/getmempoolinfo": { - "result": { - "loaded": true, - "size": 1, - "bytes": 167, - "usage": 1232, - "total_fee": 0.0001, - "maxmempool": 300000000, - "mempoolminfee": 0.0, - "minrelaytxfee": 0.0, - "incrementalrelayfee": 1e-05, - "unbroadcastcount": 1, - "fullrbf": false - } - }, - "/v2/mempool/events": { - "result": [ - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93 - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "quantity": 10000, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "status": "valid", - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "CREDIT", - "params": { - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "XCP", - "block_index": 225, - "calling_function": "send", - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "XCP", - "block_index": 225, - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1730906159.3902285, - "btc_amount": 0, - "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", - "destination": "", - "fee": 10000, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93, - "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1730906159.3902285 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/mempool/events/": { - "result": [ - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "CREDIT", - "params": { - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "XCP", - "block_index": 225, - "calling_function": "send", - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/mempool/transactions//events": { - "result": [ - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93 - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "quantity": 10000, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "status": "valid", - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "CREDIT", - "params": { - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "asset": "XCP", - "block_index": 225, - "calling_function": "send", - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "asset": "XCP", - "block_index": 225, - "event": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "quantity": 10000, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1730906159.3902285 - }, - { - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1730906159.3902285, - "btc_amount": 0, - "data": "020000000000000001000000000000271080c5549f0941476c9f4e6044b95b84cc44efe5d9cf", - "destination": "", - "fee": 10000, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "tx_hash": "2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21", - "tx_index": 93, - "utxos_info": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868:1 2b3150f3370519ff9a00467e850ecd7633ba87c8d87cb65c324a4afb445d3b21:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1730906159.3902285 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/healthz": { - "result": { - "status": "Healthy" - } - }, - "/healthz": { - "result": { - "status": "Healthy" - } - }, - "/v2/events/NEW_BLOCK": { - "result": [ - { - "event_index": 793, - "event": "NEW_BLOCK", - "params": { - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_index": 225, - "block_time": 1730906155, - "difficulty": 545259519, - "previous_block_hash": "20ec5ae7e2cede0819eac9bd94a662dfb668835195089f1baf9deacc6e512d93" - }, - "tx_hash": null, - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 787, - "result_count": 125 - }, - "/v2/events/NEW_TRANSACTION": { - "result": [ - { - "event_index": 794, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "5de08ae0824c834beac7466339e7aad9a53f5350dc68e067a24bc899085e718a", - "block_index": 225, - "block_time": 1730906155, - "btc_amount": 1000, - "data": "0d00", - "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "fee": 0, - "source": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "utxos_info": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1 4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0 3 1", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 788, - "result_count": 93 - }, - "/v2/events/NEW_TRANSACTION_OUTPUT": { - "result": [ - { - "event_index": 795, - "event": "NEW_TRANSACTION_OUTPUT", - "params": { - "block_index": 225, - "btc_amount": 1000, - "destination": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "out_index": 0, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 597, - "result_count": 5 - }, - "/v2/events/BLOCK_PARSED": { - "result": [ - { - "event_index": 806, - "event": "BLOCK_PARSED", - "params": { - "block_index": 225, - "ledger_hash": "45af8bea41fbbb6ad2015c28487b2cb195802a6ace97967c5365057b7f525954", - "messages_hash": "1baa5042eb49f871cab38b7d7ab40dd7f0a9583fa240775e08b35acb4993005b", - "transaction_count": 1, - "txlist_hash": "04b097a779b9ca81e00f4dc8b2ad0ba43f105c37e5fec66ce6b22aac6772bf4a", - "block_time": 1730906155 - }, - "tx_hash": null, - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 792, - "result_count": 125 - }, - "/v2/events/TRANSACTION_PARSED": { - "result": [ - { - "event_index": 805, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92 - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 791, - "result_count": 78 - }, - "/v2/events/DEBIT": { - "result": [ - { - "event_index": 799, - "event": "DEBIT", - "params": { - "action": "utxo move", - "address": null, - "asset": "XCP", - "block_index": 225, - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 2000000000, - "tx_index": 92, - "utxo": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "utxo_address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 796, - "result_count": 80 - }, - "/v2/events/CREDIT": { - "result": [ - { - "event_index": 802, - "event": "CREDIT", - "params": { - "address": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "asset": "XCP", - "block_index": 225, - "calling_function": "dispense", - "event": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "quantity": 66, - "tx_index": 92, - "utxo": null, - "utxo_address": null, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 800, - "result_count": 101 - }, - "/v2/events/ENHANCED_SEND": { - "result": [ - { - "event_index": 656, - "event": "ENHANCED_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 210, - "destination": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "memo": null, - "quantity": 1000, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "status": "valid", - "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", - "tx_index": 77, - "block_time": 1730906070, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - }, - "tx_hash": "855adaaa4d5d51de70611a1a76fb03ea7304c233799a8c79088abd052a8bb472", - "block_index": 210, - "block_time": 1730906070 - } - ], - "next_cursor": 533, - "result_count": 3 - }, - "/v2/events/MPMA_SEND": { - "result": [ - { - "event_index": 716, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "status": "valid", - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "tx_index": 81, - "block_time": 1730906087, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "7867fac6222bc7ba7a005ff778af56ca56834c691457c6ddecdb2018e4c1c71d", - "block_index": 214, - "block_time": 1730906087 - } - ], - "next_cursor": 715, - "result_count": 15 - }, - "/v2/events/SEND": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_TRANSFER": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/SWEEP": { - "result": [ - { - "event_index": 576, - "event": "SWEEP", - "params": { - "block_index": 199, - "destination": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "fee_paid": 600000, - "flags": 1, - "memo": "sweep my assets", - "source": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "status": "valid", - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "tx_index": 65, - "block_time": 1730906012, - "fee_paid_normalized": "0.00600000" - }, - "tx_hash": "3d89a9f2b0b3cdcb67d52c6f15cc4a358e5e1b8a3c1831e4b251714add8d4385", - "block_index": 199, - "block_time": 1730906012 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ASSET_DIVIDEND": { - "result": [ - { - "event_index": 344, - "event": "ASSET_DIVIDEND", - "params": { - "asset": "MYASSETA", - "block_index": 155, - "dividend_asset": "XCP", - "fee_paid": 20000, - "quantity_per_unit": 100000000, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "status": "valid", - "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", - "tx_index": 42, - "block_time": 1730905817, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - }, - "tx_hash": "baba50bef90f531bd8f704b15677ba5c9a5965e1e1836ca5fef64640e7ca0484", - "block_index": 155, - "block_time": 1730905817 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/RESET_ISSUANCE": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_CREATION": { - "result": [ - { - "event_index": 783, - "event": "ASSET_CREATION", - "params": { - "asset_id": "95428959531084712", - "asset_longname": "PARENTA.SUBASSETC", - "asset_name": "A95428959531084712", - "block_index": 223, - "block_time": 1730906142 - }, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "block_index": 223, - "block_time": 1730906142 - } - ], - "next_cursor": 776, - "result_count": 20 - }, - "/v2/events/ASSET_ISSUANCE": { - "result": [ - { - "event_index": 784, - "event": "ASSET_ISSUANCE", - "params": { - "asset": "A95428959531084712", - "asset_events": "open_fairminter", - "asset_longname": "PARENTA.SUBASSETC", - "block_index": 223, - "call_date": 0, - "call_price": 0, - "callable": false, - "description": "", - "divisible": true, - "fair_minting": true, - "fee_paid": 0, - "issuer": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "locked": false, - "quantity": 0, - "reset": false, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "status": "valid", - "transfer": false, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "tx_index": 90, - "block_time": 1730906142, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "block_index": 223, - "block_time": 1730906142 - } - ], - "next_cursor": 777, - "result_count": 36 - }, - "/v2/events/ASSET_DESTRUCTION": { - "result": [ - { - "event_index": 582, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "XCP", - "block_index": 200, - "quantity": 1, - "source": "bcrt1qhmwwk2yx9kzulgh4g0tw0mevjvhgqphn5smnjp", - "status": "valid", - "tag": "64657374726f79", - "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", - "tx_index": 66, - "block_time": 1730906017, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000001" - }, - "tx_hash": "450b815045de45c35f6166c583f557b42af13b2d4989006d7f0d3046e3bba868", - "block_index": 200, - "block_time": 1730906017 - } - ], - "next_cursor": 157, - "result_count": 2 - }, - "/v2/events/OPEN_ORDER": { - "result": [ - { - "event_index": 790, - "event": "OPEN_ORDER", - "params": { - "block_index": 224, - "expiration": 21, - "expire_index": 245, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "status": "open", - "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "tx_index": 91, - "block_time": 1730906146, - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "divisible": true, - "locked": false - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "2119aee32e16028f82455651482592c1a393f29b746df55d0f25920ba68eed7e", - "block_index": 224, - "block_time": 1730906146 - } - ], - "next_cursor": 564, - "result_count": 8 - }, - "/v2/events/ORDER_MATCH": { - "result": [ - { - "event_index": 694, - "event": "ORDER_MATCH", - "params": { - "backward_asset": "BTC", - "backward_quantity": 1000, - "block_index": 213, - "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 1000, - "id": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "match_expire_index": 233, - "status": "pending", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx0_block_index": 198, - "tx0_expiration": 21, - "tx0_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "tx0_index": 64, - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "tx1_block_index": 213, - "tx1_expiration": 21, - "tx1_hash": "b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx1_index": 58, - "block_time": 1730906083, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "block_index": 213, - "block_time": 1730906083 - } - ], - "next_cursor": 521, - "result_count": 4 - }, - "/v2/events/ORDER_UPDATE": { - "result": [ - { - "event_index": 759, - "event": "ORDER_UPDATE", - "params": { - "status": "expired", - "tx_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0" - }, - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "block_index": 220, - "block_time": 1730906120 - } - ], - "next_cursor": 707, - "result_count": 17 - }, - "/v2/events/ORDER_FILLED": { - "result": [ - { - "event_index": 512, - "event": "ORDER_FILLED", - "params": { - "status": "filled", - "tx_hash": "5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025" - }, - "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", - "block_index": 191, - "block_time": 1730905961 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_MATCH_UPDATE": { - "result": [ - { - "event_index": 688, - "event": "ORDER_MATCH_UPDATE", - "params": { - "id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "status": "expired" - }, - "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "block_index": 213, - "block_time": 1730906083 - } - ], - "next_cursor": 511, - "result_count": 3 - }, - "/v2/events/BTC_PAY": { - "result": [ - { - "event_index": 513, - "event": "BTC_PAY", - "params": { - "block_index": 191, - "btc_amount": 2000, - "destination": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_5c6d1400a604602935e66b0b8cc8f08288e016cdd22ba994bd7e8494ed234025", - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "status": "valid", - "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", - "tx_index": 57, - "block_time": 1730905961, - "btc_amount_normalized": "0.00002000" - }, - "tx_hash": "4c3128574669c308d7e975f864dbb2ded5e45490cd92be79028041be0de18347", - "block_index": 191, - "block_time": 1730905961 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/CANCEL_ORDER": { - "result": [ - { - "event_index": 558, - "event": "CANCEL_ORDER", - "params": { - "block_index": 197, - "offer_hash": "4919c5837cff99c1d0fcb54a6a83118f6776ff2421d98c2934a2c0c9c429d50b", - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "status": "valid", - "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", - "tx_index": 63, - "block_time": 1730906006 - }, - "tx_hash": "728da430d4c494c3e58e5d38665876e24532b48b2fe63ad6f76ba2cbcb31173e", - "block_index": 197, - "block_time": 1730906006 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_EXPIRATION": { - "result": [ - { - "event_index": 761, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 220, - "order_hash": "f58b5758c33a8f7f5ef0e05ce42f767c68320c681c535088d853d765e28da7c0", - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "block_time": 1730906120 - }, - "tx_hash": "0ccf2d64ddd878b0a5f62d14efeb8df2a1d9f04dbfc11c0b91291a774ef085b9", - "block_index": 220, - "block_time": 1730906120 - } - ], - "next_cursor": 708, - "result_count": 5 - }, - "/v2/events/ORDER_MATCH_EXPIRATION": { - "result": [ - { - "event_index": 691, - "event": "ORDER_MATCH_EXPIRATION", - "params": { - "block_index": 213, - "order_match_id": "f18b21d955a779f3ed38f5a8cd67ffb0cf460ed8e943b219e3257ce7fd3a6af6_b078b491280ab4d54ce86fd44a0b6471f54a90cb45350423ad81005fdf3ed65a", - "tx0_address": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx1_address": "bcrt1qc42f7z2pgakf7nnqgju4hpxvgnh7tkw0zkhhk7", - "block_time": 1730906083 - }, - "tx_hash": "c35ee468b3bc9e846b74535fd8c1154f5a9fbb102622d61f5bdf7f82f7c350a2", - "block_index": 213, - "block_time": 1730906083 - } - ], - "next_cursor": 487, - "result_count": 2 - }, - "/v2/events/OPEN_DISPENSER": { - "result": [ - { - "event_index": 592, - "event": "OPEN_DISPENSER", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 202, - "dispense_count": 0, - "escrow_quantity": 10000, - "give_quantity": 1, - "give_remaining": 10000, - "oracle_address": null, - "origin": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "satoshirate": 1, - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "status": 0, - "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "tx_index": 68, - "block_time": 1730906034, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001" - }, - "tx_hash": "e454e784bb835046561afc0675f114637e36467c0a26830d2954318aaeb9a0df", - "block_index": 202, - "block_time": 1730906034 - } - ], - "next_cursor": 272, - "result_count": 5 - }, - "/v2/events/DISPENSER_UPDATE": { - "result": [ - { - "event_index": 803, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "status": 0, - "tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 599, - "result_count": 8 - }, - "/v2/events/REFILL_DISPENSER": { - "result": [ - { - "event_index": 261, - "event": "REFILL_DISPENSER", - "params": { - "asset": "XCP", - "block_index": 144, - "destination": "mqSbvDfqG65DNQzWQTGY7KeK7DhE6gYAk2", - "dispense_quantity": 10, - "dispenser_tx_hash": "4d1e3eec9f42c3d01c1731de61792969c980b13bbb3740b6cc468fdec2369830", - "source": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "tx_hash": "677a178d9a141489737b81ca45aa667a2baef42efbab7405a430d10649e31e32", - "tx_index": 31, - "block_time": 1730905773, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000010" - }, - "tx_hash": "677a178d9a141489737b81ca45aa667a2baef42efbab7405a430d10649e31e32", - "block_index": 144, - "block_time": 1730905773 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/DISPENSE": { - "result": [ - { - "event_index": 804, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 225, - "btc_amount": 1000, - "destination": "bcrt1qxprax4zslgwesgytmk625ajdk3e4ju6qtqyw49", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "46485d19606959e2f365ec950c66b919930907261e2b5a823133b9cbb1bd51bc", - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 600, - "result_count": 5 - }, - "/v2/events/BROADCAST": { - "result": [ - { - "event_index": 218, - "event": "BROADCAST", - "params": { - "block_index": 138, - "fee_fraction_int": 0, - "locked": false, - "source": "bcrt1qr5hzv736qxjwrnz986l5sqwvr285m520kcq7ng", - "status": "valid", - "text": "price-USD", - "timestamp": 4003903983, - "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", - "tx_index": 25, - "value": 66600.0, - "block_time": 1730905738, - "fee_fraction_int_normalized": "0.00000000" - }, - "tx_hash": "eb8d02231423ecbb33c38d5ca6a9f4174e1c5184c223a8a29f49ff38fd5213d9", - "block_index": 138, - "block_time": 1730905738 - } - ], - "next_cursor": 213, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINTER": { - "result": [ - { - "event_index": 782, - "event": "NEW_FAIRMINTER", - "params": { - "asset": "A95428959531084712", - "asset_longname": "PARENTA.SUBASSETC", - "asset_parent": "PARENTA", - "block_index": 223, - "burn_payment": false, - "description": "", - "divisible": true, - "end_block": 0, - "hard_cap": 0, - "lock_description": false, - "lock_quantity": false, - "max_mint_per_tx": 100, - "minted_asset_commission_int": 0, - "pre_minted": false, - "premint_quantity": 0, - "price": 0, - "quantity_by_price": 1, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "bcrt1qx07ywg0ege8pp828ntsz2s5levenep69wv3424", - "start_block": 0, - "status": "open", - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "tx_index": 90, - "block_time": 1730906142, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - "tx_hash": "c6a724af6bb9e7c8e206b00d0fc522799ef30fa65ccb2600aa31f02da20ac2a0", - "block_index": 223, - "block_time": 1730906142 - } - ], - "next_cursor": 775, - "result_count": 11 - }, - "/v2/events/FAIRMINTER_UPDATE": { - "result": [ - { - "event_index": 373, - "event": "FAIRMINTER_UPDATE", - "params": { - "status": "closed", - "tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f" - }, - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "block_index": 159, - "block_time": 1730905842 - } - ], - "next_cursor": 155, - "result_count": 3 - }, - "/v2/events/NEW_FAIRMINT": { - "result": [ - { - "event_index": 372, - "event": "NEW_FAIRMINT", - "params": { - "asset": "FREEFAIRMINT", - "block_index": 159, - "commission": 0, - "earn_quantity": 80, - "fairminter_tx_hash": "136b9e883b2d6bd4cf676d671c40d53e9c6be9c99e7a4c7fbfcdb074c66c490f", - "paid_quantity": 0, - "source": "bcrt1q70vkf5myy9sut4ej092gun5at553vclphg3glq", - "status": "valid", - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "tx_index": 46, - "block_time": 1730905842, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q6zt7j3866fnc65aap2209awl6kjfc3ysy6gmfs", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - "tx_hash": "b53ad4eba832dad4537441fa0843302681a0988d59e0837914d88152a72d8d4e", - "block_index": 159, - "block_time": 1730905842 - } - ], - "next_cursor": 365, - "result_count": 12 - }, - "/v2/events/ATTACH_TO_UTXO": { - "result": [ - { - "event_index": 641, - "event": "ATTACH_TO_UTXO", - "params": { - "asset": "UTXOASSET", - "block_index": 208, - "destination": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb:0", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "status": "valid", - "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", - "tx_index": 75, - "block_time": 1730906062, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "d78a42e5669eeebc6e0284a5ca9b0a7791a42b44441f3db8fa3874b63e61a8fb", - "block_index": 208, - "block_time": 1730906062 - } - ], - "next_cursor": 616, - "result_count": 5 - }, - "/v2/events/DETACH_FROM_UTXO": { - "result": [ - { - "event_index": 633, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "UTXOASSET", - "block_index": 207, - "destination": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "7609339047671397e85abbf2b38a4c0ee63f6005a67007d2d2e672c4929b3716:0", - "status": "valid", - "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", - "tx_index": 74, - "block_time": 1730906058, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qr9u4acppg0kygnx4hlucqmgej32v7n4d69vp20", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "5300b7336d89102f868b41e453d3630954d0a841d21e6a65d47c4ed5672dcef0", - "block_index": 207, - "block_time": 1730906058 - } - ], - "next_cursor": 311, - "result_count": 2 - }, - "/v2/events/UTXO_MOVE": { - "result": [ - { - "event_index": 801, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 225, - "destination": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "c459a35610226a858d2128848b861d3d0ba19f9875e39d564ce3b87a134529ef:1", - "status": "valid", - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "tx_index": 92, - "block_time": 1730906155, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "4acd292a0bc3254f61aa3586a717589c967d2d5a742598de8ba1203fb7e25c8e", - "block_index": 225, - "block_time": 1730906155 - } - ], - "next_cursor": 798, - "result_count": 11 - }, - "/v2/events/BURN": { - "result": [ - { - "event_index": 70, - "event": "BURN", - "params": { - "block_index": 121, - "burned": 50000000, - "earned": 74999996667, - "source": "bcrt1qzycg25f6h3gxwcclpupwd823gc63ckk744hvlq", - "status": "valid", - "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", - "tx_index": 9, - "block_time": 1730905672, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - "tx_hash": "ac8ef30f4d26c50aaad1cf3a9f113864e2f6bfc87cad8fd5f690cf83e2634327", - "block_index": 121, - "block_time": 1730905672 - } - ], - "next_cursor": 65, - "result_count": 10 - } -} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py index 82a84fbe84..8d00666ab3 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_20_fairminter.py @@ -462,6 +462,9 @@ "asset_parent": "PARENTA", "max_mint_per_tx": 100, }, + "set_variables": { + "FREEFAIRMINT_SUBASSETC_TX_HASH": "$TX_HASH", + }, "controls": [ { "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINTER,ASSET_CREATION", @@ -539,4 +542,81 @@ } ], }, + { + "title": "Mint PARENTA.SUBASSETC", + "transaction": "fairmint", + "source": "$ADDRESS_8", + "params": { + "asset": "A95428959531084712", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,NEW_FAIRMINT,CREDIT", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "A95428959531084712", + "asset_events": "fairmint", + "asset_longname": "PARENTA.SUBASSETC", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "", + "description_locked": False, + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_8", + "locked": False, + "msg_index": 0, + "quantity": 100, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINT", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "A95428959531084712", + "block_index": "$BLOCK_INDEX", + "commission": 0, + "earn_quantity": 100, + "fairminter_tx_hash": "$FREEFAIRMINT_SUBASSETC_TX_HASH", + "paid_quantity": 0, + "source": "$ADDRESS_8", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_8", + "asset": "A95428959531084712", + "block_index": "$BLOCK_INDEX", + "calling_function": "fairmint", + "event": "$TX_HASH", + "quantity": 100, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, ] From 5d9708b323da048e80006165cf8447eca861491a Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 5 Nov 2024 12:39:06 -0500 Subject: [PATCH 074/138] Warn when Behind --- counterparty-core/counterpartycore/lib/api/wsgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 6590ada667..2287eb1e27 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -67,11 +67,11 @@ def refresh_backend_height(db, start=False): backend.addrindexrs.clear_raw_transactions_cache() if not is_server_ready(): if BACKEND_HEIGHT > util.CURRENT_BLOCK_INDEX: - logger.debug( + logger.warning( f"Counterparty is currently behind Bitcoin Core. ({util.CURRENT_BLOCK_INDEX} < {BACKEND_HEIGHT})" ) else: - logger.debug( + logger.warning( f"Bitcoin Core is currently behind the network. ({util.CURRENT_BLOCK_INDEX} > {BACKEND_HEIGHT})" ) else: From 08e0a4e6346b126bae6b62b6fb674ba56222b4d4 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 5 Nov 2024 13:04:32 -0500 Subject: [PATCH 075/138] Trace for ZMQ Waiting and Parsing --- counterparty-core/counterpartycore/lib/follow.py | 2 +- counterparty-core/counterpartycore/lib/mempool.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/follow.py b/counterparty-core/counterpartycore/lib/follow.py index f8ad07f786..e328746316 100644 --- a/counterparty-core/counterpartycore/lib/follow.py +++ b/counterparty-core/counterpartycore/lib/follow.py @@ -178,7 +178,7 @@ def receive_sequence(self, body): # reset mempool block self.mempool_block = [] self.mempool_block_hashes = [] - logger.debug("Waiting for new transactions from mempool or new block...") + logger.trace("Waiting for new transactions in the mempool or a new block...") # transaction removed from mempool for non-block inclusion reasons elif label == "R": mempool.clean_transaction_events(self.db, item_hash) diff --git a/counterparty-core/counterpartycore/lib/mempool.py b/counterparty-core/counterpartycore/lib/mempool.py index ede831f82a..7d190e9ac3 100644 --- a/counterparty-core/counterpartycore/lib/mempool.py +++ b/counterparty-core/counterpartycore/lib/mempool.py @@ -9,7 +9,7 @@ def parse_mempool_transactions(db, raw_tx_list, timestamps=None): util.PARSING_MEMPOOL = True - logger.debug(f"Parsing {len(raw_tx_list)} raw transactions from mempool...") + logger.trace(f"Parsing {len(raw_tx_list)} raw transaction(s) from the mempool...") now = time.time() transaction_events = [] cursor = db.cursor() From b664712bbd104d683786f6edc1007ec701d364c2 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Wed, 6 Nov 2024 12:00:45 -0500 Subject: [PATCH 076/138] Release Notes --- release-notes/release-notes-v10.6.2.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 5f9e2b6fef..08b27d485b 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -36,8 +36,11 @@ In addition to resolving the above frontrunning vulnerability, this update bring - For the `compose_detach() endpoint, the `destination`, `asset` and `quantity` parameters are now optional (`asset` and `quantity` will be ignored after the protocol change). - For the `compose_attach()` endpoint, there is now a `destination_vout` parameter (and the `destination` parameter will be ignored after protocol change). + ## CLI +- Change verbosity of log messages related to blockchain following. + # Credits From 65f60d9b0b12a1bc345362100147770e61091bbe Mon Sep 17 00:00:00 2001 From: warrenpuffett Date: Tue, 5 Nov 2024 19:37:24 -0500 Subject: [PATCH 077/138] add flag to only write block indicies when in reorg window --- .../counterpartycore/test/indexer_test.py | 4 +- counterparty-rs/src/indexer/config.rs | 7 ++++ counterparty-rs/src/indexer/handlers/start.rs | 2 +- counterparty-rs/src/indexer/workers/writer.rs | 40 ++++++++++--------- 4 files changed, 33 insertions(+), 20 deletions(-) diff --git a/counterparty-core/counterpartycore/test/indexer_test.py b/counterparty-core/counterpartycore/test/indexer_test.py index 7141d8cd71..80f13c8bd5 100644 --- a/counterparty-core/counterpartycore/test/indexer_test.py +++ b/counterparty-core/counterpartycore/test/indexer_test.py @@ -16,7 +16,9 @@ "log_file": "/Users/wilfred/Desktop/indexer_test.log", "log_level": "debug", "json_format": False, - # "consume_blocks": True, + "consume_blocks": True, + "only_write_in_reorg_window": True, + "start_height": 868900, } diff --git a/counterparty-rs/src/indexer/config.rs b/counterparty-rs/src/indexer/config.rs index ad18c1b2c0..ef1d9516bf 100644 --- a/counterparty-rs/src/indexer/config.rs +++ b/counterparty-rs/src/indexer/config.rs @@ -133,6 +133,7 @@ pub struct Config { pub network: Network, pub heights: Heights, pub json_format: bool, + pub only_write_in_reorg_window: bool, } impl Config { @@ -215,6 +216,11 @@ impl<'source> FromPyObject<'source> for Config { _ => false, }; + let only_write_in_reorg_window = match dict.get_item("only_write_in_reorg_window") { + Ok(Some(item)) => item.extract()?, + _ => false, + }; + let prefix = match dict.get_item("prefix") { Ok(Some(item)) => item.extract::>()?, _ => b"CNTRPRTY".to_vec(), @@ -261,6 +267,7 @@ impl<'source> FromPyObject<'source> for Config { network, heights, json_format, + only_write_in_reorg_window, }) } } diff --git a/counterparty-rs/src/indexer/handlers/start.rs b/counterparty-rs/src/indexer/handlers/start.rs index 8a29d804d0..940cb1f3ee 100644 --- a/counterparty-rs/src/indexer/handlers/start.rs +++ b/counterparty-rs/src/indexer/handlers/start.rs @@ -97,7 +97,7 @@ where rx_c4.clone(), tx_c5.clone(), stopper.clone(), - writer::new(db.clone(), start_height, reorg_window, 1), + writer::new(db.clone(), config.clone(), start_height, reorg_window, 1), )?); handles.append(&mut new_worker_pool( diff --git a/counterparty-rs/src/indexer/workers/writer.rs b/counterparty-rs/src/indexer/workers/writer.rs index 4b64036dab..8320bbfb3b 100644 --- a/counterparty-rs/src/indexer/workers/writer.rs +++ b/counterparty-rs/src/indexer/workers/writer.rs @@ -3,6 +3,7 @@ use std::time::Duration; use tracing::debug; use crate::indexer::{ + config::Config, database::DatabaseOps, stopper::Stopper, types::{ @@ -15,6 +16,7 @@ use crate::indexer::{ pub fn new( db: D, + config: Config, start_height: u32, reorg_window: u32, max_num_entries: usize, @@ -49,25 +51,27 @@ where } if !batch.is_empty() { - debug!( - "Writing batch of length {} with max height {} and target height {}", - batch.len(), - height, - target_height - ); let num_entries = entries.len(); - db.write_batch(|batch| { - db.put_entries( - batch, - if in_reorg_window(height, target_height, reorg_window) { - Some(height - reorg_window) - } else { - None - }, - &entries, - )?; - db.put_max_block_height(batch, height) - })?; + // height + 1 because we need one before to satisfy the check + let in_reorg_window_b = in_reorg_window(height + 1, target_height, reorg_window); + let min_index_height = if in_reorg_window_b { + Some(height - reorg_window) + } else { + None + }; + + if !config.only_write_in_reorg_window || in_reorg_window_b { + debug!( + "Writing batch of length {} with max height {} and target height {}", + batch.len(), + height, + target_height + ); + db.write_batch(|batch| { + db.put_entries(batch, min_index_height, &entries)?; + db.put_max_block_height(batch, height) + })?; + } let pipeline_batch = PipelineDataBatch { batch, num_entries }; if tx.send(Box::new(pipeline_batch)).is_err() { From fd95d8d2b0f5d0d97167489f40fd6b7dc52fc358 Mon Sep 17 00:00:00 2001 From: warrenpuffett Date: Tue, 5 Nov 2024 23:52:30 -0500 Subject: [PATCH 078/138] delete all data below reorg window height --- counterparty-rs/src/indexer/database.rs | 157 ++++++++++++++++++++++-- 1 file changed, 150 insertions(+), 7 deletions(-) diff --git a/counterparty-rs/src/indexer/database.rs b/counterparty-rs/src/indexer/database.rs index 6cc17f54c9..0c184202e8 100644 --- a/counterparty-rs/src/indexer/database.rs +++ b/counterparty-rs/src/indexer/database.rs @@ -9,9 +9,9 @@ use crate::indexer::{constants::CP_HEIGHT, types::entry::BlockAtHeightSpentOutpu use super::types::{ entry::{ - get_cf_index_names, get_cf_names, make_key, to_cf_name, BlockAtHeightHasHash, FromEntry, - ScriptHashHasOutputsInBlockAtHeight, ToEntry, TxidVoutPrefix, CF_INDEX_PREFIX_LENGTHS, - CF_PREFIX_LENGTHS, INDEX_CF_NAME_SUFFIX, + get_cf_index_names, get_cf_names, make_key, to_cf_name, BlockAtHeightHasHash, Entry, + FromEntry, ScriptHashHasOutputsInBlockAtHeight, ToEntry, TxidVoutPrefix, + CF_INDEX_PREFIX_LENGTHS, CF_PREFIX_LENGTHS, INDEX_CF_NAME_SUFFIX, }, error::Error, }; @@ -36,6 +36,7 @@ pub trait DatabaseOps: Clone + Send + 'static { min_index_height: Option, entries: &Vec>, ) -> Result<(), Error>; + #[allow(dead_code)] fn delete_indexes_below_height( &self, cf: &ColumnFamily, @@ -48,6 +49,7 @@ pub trait DatabaseOps: Clone + Send + 'static { ) -> Result<(), Error>; fn block_at_height_has_hash(&self, height: u32) -> Result>, Error>; fn rollback_to_height(&self, batch: &mut WriteBatch, height: u32) -> Result<(), Error>; + fn delete_below_height(&self, batch: &mut WriteBatch, height: u32) -> Result<(), Error>; } #[derive(Clone)] @@ -82,6 +84,26 @@ impl Database { Ok(Database { db }) } + #[allow(dead_code)] + pub fn list_all_values(&self) -> Result)>, Error> { + let mut all_values = Vec::new(); + + for cf_name in get_cf_names().into_iter().chain(get_cf_index_names()) { + let cf_handle = self.cf(cf_name.clone())?; + let iter = self.db.iterator_cf(cf_handle, IteratorMode::Start); + + let mut values = Vec::new(); + for item in iter { + let (key, value) = item?; + values.push((key.to_vec(), value.to_vec())); + } + + all_values.push((cf_name, values)); + } + + Ok(all_values) + } + fn cf(&self, cf_name: String) -> Result<&ColumnFamily, Error> { self.db .cf_handle(&cf_name) @@ -172,9 +194,7 @@ impl DatabaseOps for Database { } if let Some(height) = min_index_height { - for cf_name in get_cf_index_names() { - self.delete_indexes_below_height(self.cf(cf_name)?, batch, height)? - } + self.delete_below_height(batch, height)?; } Ok(()) } @@ -229,6 +249,34 @@ impl DatabaseOps for Database { } self.put_max_block_height(batch, height) } + + fn delete_below_height(&self, batch: &mut WriteBatch, height: u32) -> Result<(), Error> { + for cf_name in get_cf_names() { + let entry_cf = self.cf(cf_name.clone())?; + let index_cf = self.cf(cf_name + INDEX_CF_NAME_SUFFIX)?; + + let index_iter = self.db.iterator_cf(index_cf, IteratorMode::Start); + for entry in index_iter { + let (index_key, _) = entry.or(Err(Error::RocksDBIter( + "Encounted unwrappable entry in delete below iter".into(), + )))?; + let block_height = + u32::from_be_bytes(index_key[0..4].try_into().map_err(|_| { + Error::U32Conversion("Could not convert index key block height".into()) + })?); + if block_height >= height { + break; + } + batch.delete_cf(index_cf, &index_key); + let mut entry_key = index_key.to_vec(); + if entry_key.len() > 4 { + entry_key = make_key(&[index_key[4..].to_vec(), index_key[0..4].to_vec()]); + } + batch.delete_cf(entry_cf, entry_key) + } + } + Ok(()) + } } #[cfg(test)] @@ -530,7 +578,7 @@ mod tests { fn test_put_entries_some() { let db = new_test_db!().unwrap(); - let min_index_height = 1000; + let min_index_height = 999; let entries_data = [ (test_h160_hash(0), 999), (test_h160_hash(1), 1000), @@ -672,4 +720,99 @@ mod tests { assert_eq!(db.get_max_block_height().unwrap(), 2); } + + #[test] + fn test_delete_below_height() { + let db = new_test_db!().unwrap(); + + let pre_reorg_entries: Vec> = vec![ + Box::new(ScriptHashHasOutputsInBlockAtHeight { + script_hash: test_h160_hash(1), + height: 1, + }), + Box::new(BlockAtHeightSpentOutputInTx { + txid: test_sha256_hash(2), + vout: 1, + height: 2, + }), + Box::new(TxInBlockAtHeight { + txid: test_sha256_hash(5), + height: 2, + }), + Box::new(BlockAtHeightHasHash { + height: 2, + hash: test_sha256_hash(6), + }), + ]; + + let post_reorg_entries: Vec> = vec![ + Box::new(ScriptHashHasOutputsInBlockAtHeight { + script_hash: test_h160_hash(3), + height: 3, + }), + Box::new(BlockAtHeightSpentOutputInTx { + txid: test_sha256_hash(4), + vout: 2, + height: 4, + }), + Box::new(TxInBlockAtHeight { + txid: test_sha256_hash(7), + height: 5, + }), + Box::new(BlockAtHeightHasHash { + height: 5, + hash: test_sha256_hash(8), + }), + ]; + + let entries = pre_reorg_entries + .into_iter() + .chain(post_reorg_entries) + .collect(); + let height = 3; + db.write_batch(|batch| db.put_entries(batch, Some(0), &entries)) + .unwrap(); + + db.write_batch(|batch| db.delete_below_height(batch, height)) + .unwrap(); + + for entry in entries { + if entry.height() < height { + assert!( + db.db + .get_cf(db.cf(entry.cf_name()).unwrap(), entry.to_entry().0) + .unwrap() + .is_none(), + "Entry should not exist" + ); + } else { + assert!( + db.db + .get_cf(db.cf(entry.cf_name()).unwrap(), entry.to_entry().0) + .unwrap() + .is_some(), + "Entry should exist" + ); + } + } + } + + #[test] + #[ignore] + pub fn test_pretty_print_all_values() { + let db = Database::new("/tmp/counterparty_test_db".to_string()).unwrap(); + let all_values = db.list_all_values().unwrap(); + for (cf_name, entries) in all_values { + println!("Column Family: {}", cf_name); + for (i, (key, value)) in entries.iter().enumerate() { + println!(" Entry {}:", i + 1); + println!( + " Key: {:?}", + u32::from_be_bytes(key[0..4].try_into().unwrap()) + ); + println!(" Value: {:?}", value); + } + println!("---------------------------------------------"); + } + } } From 4317603edfa279a7d02563d5c8027aa3e39cf08a Mon Sep 17 00:00:00 2001 From: warrenpuffett Date: Wed, 6 Nov 2024 10:46:09 -0500 Subject: [PATCH 079/138] reporter worker now recognizes rollbacks --- counterparty-rs/src/indexer/workers/reporter.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/counterparty-rs/src/indexer/workers/reporter.rs b/counterparty-rs/src/indexer/workers/reporter.rs index f30e6cbb2e..6aa5da29c4 100644 --- a/counterparty-rs/src/indexer/workers/reporter.rs +++ b/counterparty-rs/src/indexer/workers/reporter.rs @@ -56,6 +56,9 @@ where let mut height = prev_height; for item in data.batch.into_iter() { let block_height = item.get_height(); + if let Some(rollback_height) = item.get_rollback_height() { + height = rollback_height; + } if block_height != height + 1 { return Err(Error::OrderInvariant(height, item.get_height())); } From 2903e90bcb0a96f8088595014aa31236b18a189d Mon Sep 17 00:00:00 2001 From: warrenpuffett Date: Wed, 6 Nov 2024 13:12:18 -0500 Subject: [PATCH 080/138] Reset rust fetcher database on service start --- .../counterpartycore/lib/backend/rsfetcher.py | 7 +++++++ counterparty-core/counterpartycore/lib/blocks.py | 12 ++++++++---- counterparty-core/counterpartycore/server.py | 3 +++ release-notes/release-notes-v10.6.2.md | 6 ++++++ 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 1e2f9ee66f..f81ff55cf3 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -4,6 +4,7 @@ import os import queue import random +import shutil import threading import time from concurrent.futures import ThreadPoolExecutor @@ -18,6 +19,12 @@ PREFETCH_QUEUE_SIZE = 20 +def delete_database_directory(): + if os.path.isdir(config.FETCHER_DB): + shutil.rmtree(config.FETCHER_DB) + logger.debug(f"RSFetcher - Reset database at {config.FETCHER_DB}") + + class RSFetcher(metaclass=util.SingletonMeta): thread_index_counter = 0 # Add a thread index counter diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 5889462d0c..80f567d257 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -373,7 +373,7 @@ def parse_block( update_block_query = """ UPDATE blocks - SET + SET txlist_hash=:txlist_hash, ledger_hash=:ledger_hash, messages_hash=:messages_hash, @@ -475,7 +475,7 @@ def initialise(db): cursor.execute("""ALTER TABLE blocks ADD COLUMN transaction_count INTEGER""") cursor.execute( """ - UPDATE blocks SET + UPDATE blocks SET transaction_count = ( SELECT COUNT(*) FROM transactions @@ -1114,8 +1114,8 @@ def reparse(db, block_index=0): step = "Recalculating consensus hashes..." with log.Spinner("Recalculating consensus hashes..."): query = """ - UPDATE blocks - SET ledger_hash=NULL, txlist_hash=NULL, messages_hash=NULL + UPDATE blocks + SET ledger_hash=NULL, txlist_hash=NULL, messages_hash=NULL WHERE block_index >= ? """ cursor.execute(query, (block_index,)) @@ -1386,3 +1386,7 @@ def catch_up(db, check_asset_conservation=True): catch_up(db, check_asset_conservation=False) logger.info("Catch up complete.") + + +def reset_rust_fetcher_database(): + rsfetcher.delete_database_directory() diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index dc46ec1108..e10f1044d2 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -780,6 +780,9 @@ def handle_interrupt_signal(signum, frame): asset_conservation_checker = AssetConservationChecker() asset_conservation_checker.start() + # Reset (delete) rust fetcher database + blocks.reset_rust_fetcher_database() + # catch up blocks.catch_up(db) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index ad5f1eba60..90da1e90d4 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -8,8 +8,14 @@ ## Protocol Changes +## Improvements + +- Rust fetcher will now only store entries in its database required for Bitcoin reorganization checks. This greatly reduces the size of the database and significantly increases the speed of the catch-up process. + ## Bugfixes +- Rust fetcher "reporter" worker now takes `rollback_height` into account in its block height ordering check. + ## Codebase From 32db891d6c7d95e05a4ccfef187b03497c852824 Mon Sep 17 00:00:00 2001 From: warrenpuffett Date: Wed, 6 Nov 2024 15:20:15 -0500 Subject: [PATCH 081/138] use cache dir for ephemeral rust fetcher database --- .../counterpartycore/lib/backend/rsfetcher.py | 4 ++++ counterparty-core/counterpartycore/server.py | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index f81ff55cf3..7e948c3f35 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -20,6 +20,10 @@ def delete_database_directory(): + if os.path.isdir(config.FETCHER_DB_OLD): + shutil.rmtree(config.FETCHER_DB_OLD) + logger.debug(f"RSFetcher - Deleted old database at {config.FETCHER_DB_OLD}") + if os.path.isdir(config.FETCHER_DB): shutil.rmtree(config.FETCHER_DB) logger.debug(f"RSFetcher - Reset database at {config.FETCHER_DB}") diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index e10f1044d2..2e929f4f0e 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -239,7 +239,12 @@ def initialise_config( filename = f"{config.APP_NAME}{network}.db" config.DATABASE = os.path.join(data_dir, filename) - config.FETCHER_DB = os.path.join(os.path.dirname(config.DATABASE), f"fetcherdb{network}") + config.FETCHER_DB_OLD = os.path.join(os.path.dirname(config.DATABASE), f"fetcherdb{network}") + config.FETCHER_DB = os.path.join( + appdirs.user_cache_dir(appauthor=config.XCP_NAME, appname=config.APP_NAME), + f"fetcherdb{network}", + ) + config.API_DATABASE = config.DATABASE.replace(".db", ".api.db") config.API_LIMIT_ROWS = api_limit_rows From 86202e825e887a7ebc0e1a980ca3d6eabdb2685a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 6 Nov 2024 21:00:02 +0000 Subject: [PATCH 082/138] fix fixtures --- .../test/fixtures/scenarios/multisig_1_of_2.log | 1 + .../test/fixtures/scenarios/multisig_1_of_2.sql | 12 ++++++------ .../test/fixtures/scenarios/multisig_1_of_3.log | 1 + .../test/fixtures/scenarios/multisig_1_of_3.sql | 12 ++++++------ .../test/fixtures/scenarios/multisig_2_of_2.log | 1 + .../test/fixtures/scenarios/multisig_2_of_2.sql | 12 ++++++------ .../test/fixtures/scenarios/multisig_2_of_3.log | 1 + .../test/fixtures/scenarios/multisig_2_of_3.sql | 12 ++++++------ .../test/fixtures/scenarios/multisig_3_of_3.log | 1 + .../test/fixtures/scenarios/multisig_3_of_3.sql | 12 ++++++------ .../scenarios/parseblock_unittest_fixture.log | 1 + .../scenarios/parseblock_unittest_fixture.sql | 12 ++++++------ .../test/fixtures/scenarios/simplesig.log | 1 + .../test/fixtures/scenarios/simplesig.sql | 12 ++++++------ .../test/fixtures/scenarios/unittest_fixture.log | 1 + .../test/fixtures/scenarios/unittest_fixture.sql | 12 ++++++------ 16 files changed, 56 insertions(+), 48 deletions(-) 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 6086a2845b..d073d85d03 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql index 0c15573128..aed96881ce 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960f INSERT INTO issuances VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) 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 0905756c33..cd1ea3ee28 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql index 44b0e4bca4..5250a15d97 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f INSERT INTO issuances VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) 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 6d59d40092..7e7d413903 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql index 197166e5e1..49e43585e6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd INSERT INTO issuances VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) 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 b7c07ead64..f00a21fbcd 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql index a1c0d42156..6c7e18ef2b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa95 INSERT INTO issuances VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) 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 f671822078..2dabe7a315 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql index 0e50076cb6..4ddc1eba33 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931 INSERT INTO issuances VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',0,310006,'BBBC',100000,0,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) 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 a29d841dba..f1b7763e9b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 73b49442d1..4067a09c13 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -3685,9 +3685,9 @@ INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8 INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -4244,9 +4244,9 @@ INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f4 INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log index bb50e0d223..a77f1bd177 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql index 67ad083bae..87debfac1e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6 INSERT INTO issuances VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',0,310006,'BBBC',100000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index 005432f66f..63e8985451 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -1,4 +1,5 @@ Initializing database... +Fixing issuances `asset_longname` field Initialising asset cache... Asset cache initialised in 0.00 seconds Initialising asset cache... diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index ddf12ae30b..0d714c2a3d 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -3683,9 +3683,9 @@ INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8 INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -4242,9 +4242,9 @@ INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f4 INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) From 2b5aad697365c44e9371fe69611ccf8edec2477b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 09:53:09 +0000 Subject: [PATCH 083/138] force_inputs_set --- .../counterpartycore/lib/transaction.py | 1 + .../transaction_helper/transaction_inputs.py | 85 +++++++++++++------ 2 files changed, 60 insertions(+), 26 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 8a0ff8dd02..8e7b386235 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -196,6 +196,7 @@ def construct( p2sh_pretx_txid=None, use_utxos_with_balances=False, exclude_utxos_with_balances=False, + force_inputs_set=False, ): # Extract tx_info (address_or_utxo, destinations, data) = tx_info diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index a42fd2da8a..9e12221b0a 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -168,6 +168,63 @@ def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): return unspent +def prepare_inputs_set(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: + str_input_split = str_input.split(":") + amount = None + + if len(str_input_split) == 3: + utxo = f"{str_input_split[0]}:{str_input_split[1]}" + try: + amount = int(str_input_split[2]) + except ValueError as e: + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e + elif len(str_input_split) == 2: + utxo = str_input + + if not util.is_utxo_format(utxo): + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") + + txid, vout = str_input_split[0], int(str_input_split[1]) + + if amount is None: + try: + amount = backend.bitcoind.get_tx_out_amount(txid, vout) + except Exception as e: + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e + + new_inputs_set.append( + { + "txid": txid, + "vout": amount, + "amount": amount, + } + ) + return new_inputs_set + + +def use_inputs_set(inputs, destination_btc_out, data_btc_out, exact_fee): + if exact_fee is None: + raise exceptions.ComposeError("`exact_fee` must be specified when using `force_inputs_set`") + + btc_out = destination_btc_out + data_btc_out + btc_in = 0 + for tx_input in inputs: + btc_in += tx_input["amount"] + + change_quantity = btc_in - btc_out - exact_fee + + final_inputs = script.ensure_script_pub_key_for_inputs(inputs) + + return final_inputs, change_quantity, btc_in, exact_fee + + def construct_coin_selection( db, size_for_fee, @@ -193,29 +250,7 @@ def construct_coin_selection( ): 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 + use_inputs = unspent = prepare_inputs_set(inputs_set) elif isinstance(inputs_set, list): use_inputs = unspent = inputs_set else: @@ -444,7 +479,7 @@ def prepare_inputs( 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( + inputs, change_quantity, btc_in, final_fee = construct_coin_selection( db, size_for_fee, encoding, @@ -467,8 +502,6 @@ def prepare_inputs( exclude_utxos_with_balances, force_utxo, ) - 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 From 9a86a695c83663125d89e3a8685fa789f1058461 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 10:28:41 +0000 Subject: [PATCH 084/138] Add 'force_inputs_set' parameter and support 'txid:vout:amount' format for UTXO in 'inputs_set' --- .../counterpartycore/lib/transaction.py | 1 + .../transaction_helper/transaction_inputs.py | 82 +++++++++++++------ 2 files changed, 56 insertions(+), 27 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 8e7b386235..327a3bc936 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -275,6 +275,7 @@ def construct( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, + force_inputs_set, ) """Finish""" diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 9e12221b0a..93bf07a5ed 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -168,7 +168,7 @@ def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): return unspent -def prepare_inputs_set(inputs_set): +def prepare_inputs_set(inputs_set, force_inputs_set=False): new_inputs_set = [] utxos_list = inputs_set.split(",") if len(utxos_list) > MAX_INPUTS_SET: @@ -183,6 +183,7 @@ def prepare_inputs_set(inputs_set): utxo = f"{str_input_split[0]}:{str_input_split[1]}" try: amount = int(str_input_split[2]) + amount = amount / config.UNIT except ValueError as e: raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e elif len(str_input_split) == 2: @@ -197,6 +198,10 @@ def prepare_inputs_set(inputs_set): try: amount = backend.bitcoind.get_tx_out_amount(txid, vout) except Exception as e: + if force_inputs_set: + raise exceptions.ComposeError( + f"Amount not found for `{str_input}`, you must provide it" + ) from e raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e new_inputs_set.append( @@ -209,20 +214,60 @@ def prepare_inputs_set(inputs_set): return new_inputs_set -def use_inputs_set(inputs, destination_btc_out, data_btc_out, exact_fee): +def use_inputs_set(inputs_set, destination_btc_out, data_btc_out, exact_fee, force_utxo): + if not inputs_set: + raise exceptions.ComposeError( + "`inputs_set` must be specified when using `force_inputs_set`" + ) if exact_fee is None: raise exceptions.ComposeError("`exact_fee` must be specified when using `force_inputs_set`") + inputs = prepare_inputs_set(inputs_set, force_inputs_set=True) + inputs = insert_force_utxo(inputs, force_utxo, force_inputs_set=True) + btc_out = destination_btc_out + data_btc_out btc_in = 0 for tx_input in inputs: btc_in += tx_input["amount"] change_quantity = btc_in - btc_out - exact_fee + if change_quantity < 0: + raise exceptions.ComposeError("Insufficient funds in provided `inputs_set`") + + inputs = script.ensure_script_pub_key_for_inputs(inputs) - final_inputs = script.ensure_script_pub_key_for_inputs(inputs) + return inputs, change_quantity, btc_in, exact_fee - return final_inputs, change_quantity, btc_in, exact_fee + +def insert_force_utxo(unspent, force_utxo, force_inputs_set=False): + if force_utxo is None: + return unspent + + # we want force_utxo to be the first input in unspent list + txid, vout = force_utxo.split(":") + included_pos = None + for i, v in enumerate(unspent): + if v["txid"] == txid and v["vout"] == int(vout): + included_pos = i + break + if included_pos is None: + if force_inputs_set: + raise exceptions.ComposeError(f"`{force_utxo}` not found in `inputs_set`") + try: + amount = backend.bitcoind.get_tx_out_amount(txid, int(vout)) + except Exception as e: + raise exceptions.ComposeError(f"invalid UTXO: {txid}:{vout}") from e + unspent.insert( + 0, + { + "txid": txid, + "vout": int(vout), + "amount": amount, + }, + ) + elif included_pos != 0: + unspent.insert(0, unspent.pop(included_pos)) + return unspent def construct_coin_selection( @@ -247,7 +292,10 @@ def construct_coin_selection( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, + force_inputs_set, ): + if force_inputs_set: + return use_inputs_set(inputs_set, destination_btc_out, data_btc_out, exact_fee, force_utxo) if inputs_set: if isinstance(inputs_set, str): use_inputs = unspent = prepare_inputs_set(inputs_set) @@ -299,29 +347,7 @@ def construct_coin_selection( use_inputs = unspent # we want force_utxo to be the first input in unspent list - if force_utxo is not None: - txid, vout = force_utxo.split(":") - included_pos = None - for i, v in enumerate(unspent): - if v["txid"] == txid and v["vout"] == int(vout): - included_pos = i - break - if included_pos is None: - try: - amount = backend.bitcoind.get_tx_out_amount(txid, int(vout)) - except Exception as e: - raise exceptions.ComposeError(f"invalid UTXO: {txid}:{vout}") from e - unspent.insert( - 0, - { - "txid": txid, - "vout": int(vout), - "amount": amount, - }, - ) - elif included_pos != 0: - unspent.insert(0, unspent.pop(included_pos)) - use_inputs = unspent + use_inputs = unspent = insert_force_utxo(unspent, force_utxo) # dont override fee_per_kb if specified estimate_fee_per_kb = None @@ -450,6 +476,7 @@ def prepare_inputs( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, + force_inputs_set, ): btc_in = 0 final_fee = 0 @@ -501,6 +528,7 @@ def prepare_inputs( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, + force_inputs_set, ) else: # when encoding is P2SH and the pretx txid is passed we can skip coinselection From 500e0896b5ba593677cf4d7c811718d327ff6efd Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 11:12:33 +0000 Subject: [PATCH 085/138] fix typo --- .../lib/transaction_helper/transaction_inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 93bf07a5ed..ac625504ee 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -207,7 +207,7 @@ def prepare_inputs_set(inputs_set, force_inputs_set=False): new_inputs_set.append( { "txid": txid, - "vout": amount, + "vout": vout, "amount": amount, } ) From 0056a182efed6056f1fd4edca5c8bddfdf06f0c4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 15:07:28 +0000 Subject: [PATCH 086/138] test transaction chaining --- apiary.apib | 3826 ++++++++--------- .../counterpartycore/lib/transaction.py | 6 +- .../transaction_helper/transaction_inputs.py | 23 +- .../test/regtest/apidoc/apicache.json | 3462 +++++++-------- .../test/regtest/regtestnode.py | 85 + 5 files changed, 3746 insertions(+), 3656 deletions(-) diff --git a/apiary.apib b/apiary.apib index 801147a65c..9904a98c58 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-06 16:34:01.748260. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-07 11:09:10.599141. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "NEW_BLOCK", "params": { - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", "block_index": 213, - "block_time": 1730910820, + "block_time": 1730977733, "difficulty": 545259519, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686" + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99" }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 696, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 703, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", "block_index": 213, - "block_time": 1730910820, + "block_time": 1730977733, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "fee": 0, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 697, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "out_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 574, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 701, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 700, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 213, - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "block_time": 1730910820, + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 705, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 709, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 207, - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "quantity": 1000, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "tx_index": 74, - "block_time": 1730910778, + "block_time": 1730977696, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_time": 1730910778 + "block_time": 1730977696 } ], "next_cursor": 510, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 692, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 196, - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "status": "valid", - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "tx_index": 62, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "block_time": 1730910725 + "block_time": 1730977625 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "tx_index": 42, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "block_time": 1730910573 + "block_time": 1730977457 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 206, - "block_time": 1730910773 + "block_time": 1730977691 }, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_time": 1730910773 + "block_time": 1730977691 } ], "next_cursor": 583, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", "transfer": false, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "tx_index": 73, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_time": 1730910773 + "block_time": 1730977691 } ], "next_cursor": 584, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 197, "quantity": 1, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", "tag": "64657374726f79", - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "tx_index": 63, - "block_time": 1730910730, + "block_time": 1730977629, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "block_index": 197, - "block_time": 1730910730 + "block_time": 1730977629 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "status": "open", - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "tx_index": 79, - "block_time": 1730910807, + "block_time": 1730977725, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -734,9 +734,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": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "block_time": 1730910807 + "block_time": 1730977725 } ], "next_cursor": 541, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx0_block_index": 195, "tx0_expiration": 21, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "tx0_index": 61, - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx1_index": 55, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_time": 1730910799 + "block_time": 1730977716 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60" + "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 670, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf" + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae" }, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "block_time": 1730910696 + "block_time": 1730977585 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 665, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "status": "expired" }, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_time": 1730910799 + "block_time": 1730977716 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "tx_index": 54, - "block_time": 1730910696, + "block_time": 1730977585, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "block_time": 1730910696 + "block_time": 1730977585 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 194, - "offer_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "tx_index": 60, - "block_time": 1730910718 + "block_time": 1730977618 }, - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "block_index": 194, - "block_time": 1730910718 + "block_time": 1730977618 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "block_time": 1730910803 + "order_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "block_time": 1730977721 }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 640, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "block_time": 1730910799 + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "block_time": 1730977716 }, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_time": 1730910799 + "block_time": 1730977716 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "satoshirate": 1, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": 0, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "tx_index": 65, - "block_time": 1730910737, + "block_time": 1730977647, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 199, - "block_time": 1730910737 + "block_time": 1730977647 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 576, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mgfCkp2bexoY8bqX4Z6PHNhsAkSPUQTqUm", + "destination": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", "dispense_quantity": 10, - "dispenser_tx_hash": "eef1730a299542c77403b22b8a733340eff92d4f9bdf9d2649dbdaeb3df99a4a", - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "tx_hash": "de22ee16a61548915fbb39b6a5150b20da6bd6bb6c695105d70be259c806bdb3", + "dispenser_tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", "tx_index": 31, - "block_time": 1730910528, + "block_time": 1730977417, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "de22ee16a61548915fbb39b6a5150b20da6bd6bb6c695105d70be259c806bdb3", + "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", "block_index": 144, - "block_time": 1730910528 + "block_time": 1730977417 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 577, @@ -1146,19 +1146,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": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "tx_index": 25, "value": 66600.0, - "block_time": 1730910506, + "block_time": 1730977385, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "block_time": 1730910506 + "block_time": 1730977385 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "start_block": 0, "status": "open", - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "block_index": 156, - "block_time": 1730910576 + "block_time": 1730977462 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445" + "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075" }, "tx_hash": null, "block_index": 130, - "block_time": 1730910468 + "block_time": 1730977353 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "paid_quantity": 34, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "block_index": 136, - "block_time": 1730910499 + "block_time": 1730977378 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 205, - "destination": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c:0", + "destination": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "status": "valid", - "tx_hash": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", + "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", "tx_index": 72, - "block_time": 1730910770, + "block_time": 1730977688, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", + "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", "block_index": 205, - "block_time": 1730910770 + "block_time": 1730977688 } ], "next_cursor": 593, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 204, - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "5b2d6622d9f315622865c3c7e05e4e6b62b9d326256192d0e39d6d12182baec1:0", + "source": "953a2098614ca254d4b7b537d48b1e72c8534cd8cd3ac8dc860b082d5664d15a:0", "status": "valid", - "tx_hash": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", + "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", "tx_index": 71, - "block_time": 1730910767, + "block_time": 1730977685, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", + "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", "block_index": 204, - "block_time": 1730910767 + "block_time": 1730977685 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 213, - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "msg_index": 1, "quantity": 2000000000, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", "status": "valid", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 707, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qscvx65qxrwg8vur6l9vw4h7fsv594s09d3r6a6", + "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", "status": "valid", - "tx_hash": "0a9521b19c433242f528db9d924350cd09e9b12753e4a476999a3c4adac9975e", + "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", "tx_index": 9, - "block_time": 1730910432, + "block_time": 1730977320, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "0a9521b19c433242f528db9d924350cd09e9b12753e4a476999a3c4adac9975e", + "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", "block_index": 121, - "block_time": 1730910432 + "block_time": 1730977320 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", "difficulty": 545259519, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, "confirmed": true }, { "block_index": 212, - "block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", - "block_time": 1730910807, - "previous_block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", + "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_time": 1730977725, + "previous_block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", "difficulty": 545259519, - "ledger_hash": "937e77f03796b4be84072fe455d75279d3f971d46574ce2dc8df4643a0f05874", - "txlist_hash": "e411afa5648244ba16161d1a5f2420ee3ccab3ad76df99c5504a5e1078c14725", - "messages_hash": "db6e4bf8e6cc4091e5fe8ce47a1db186a227668ce181b9d359bea0f1ee95a408", + "ledger_hash": "9ed5f78a1a6fa6851bb1d3126d805206b4f7e4c9e2bb8479dabfbc8f57c667db", + "txlist_hash": "dc52eec0da5fc57349225a1454d5b3e207a8381386a3c0e497ad3f7096202633", + "messages_hash": "2b26b6fa9199fb8565492a38bd36db5adf4fb8712132057a21c1a05f94623aeb", "transaction_count": 1, "confirmed": true }, { "block_index": 211, - "block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", - "block_time": 1730910803, - "previous_block_hash": "639bd2350bd2381fe7b14309c56cb5c4b7d81bc250632cdd34c42929f6f336f4", + "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_time": 1730977721, + "previous_block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", "difficulty": 545259519, - "ledger_hash": "551ee1ccbbe1be01ff21603b47ee82b2948d0f7c372a7a26bc4d16e6784621fe", - "txlist_hash": "acff179c388634ff4b097689be53ce8a77217c764e1cd3a7376ce021a6b028b7", - "messages_hash": "71807aeafe67928af6f5955cb3cfc0a643b5252b1f7fce6dd93cae5b22200fbe", + "ledger_hash": "dae697981536c17e68bf8a06bfd95b41eebb9feb0f798609c6f5aded80c758dc", + "txlist_hash": "07a4879a9bb15e79600c077e150484d234db27a42f3d69c61de105791cca773b", + "messages_hash": "0854d1a229de1890b5fa4bd1e84e19b16937ab92965169a0f5b6755e6f7ae4e8", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "639bd2350bd2381fe7b14309c56cb5c4b7d81bc250632cdd34c42929f6f336f4", - "block_time": 1730910799, - "previous_block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", + "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", + "block_time": 1730977716, + "previous_block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", "difficulty": 545259519, - "ledger_hash": "80ecb847900f5ffe21c8204594249a2332dbace564f863a29c54b54d8170bf92", - "txlist_hash": "d52258ca6cb3442ed7e8b12e2a26af2e5a0d1860a81950476c9dcb684e8b1ee2", - "messages_hash": "7b4223f9792d654b047acf667d844aca92588c53ec7063ba11984d4d968b2bb4", + "ledger_hash": "615a78711f0afe0b44ad569d8f1b55d592569cb2bc96d1824521658e0c4e05e0", + "txlist_hash": "3995bd597d9721bf37d03728e829eefedbf3ed4e12478f452b8ac56dba5d9af9", + "messages_hash": "e11ff10b3b7efd34994c46b6cbc448929bac846f49673914c885d31ced8b62cb", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", - "block_time": 1730910794, - "previous_block_hash": "176a647717731b18164076a79450ad56414b60bdf40c7f9d599c7f128ee47bb1", + "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_time": 1730977712, + "previous_block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", "difficulty": 545259519, - "ledger_hash": "4221359bfdae0a2a6b774a5746d1febcb0dcd043729dff54acc98f124c853d09", - "txlist_hash": "d8cd4e291bb316ea7077e2b8ad4c5ade4318625a9c334c286c34fbc841bd994b", - "messages_hash": "3c66f739a8f4d3b9389ed612a7c9876de6c8416b5ccfe499a8d28862bdbe5542", + "ledger_hash": "337d09c20a6694183c8781b44a2e784c933c0421e04417f2e16e40afbe7bb327", + "txlist_hash": "bb2ff16dccefeeef0de464895bf5424e478d9f79930537785f7203cc6694a871", + "messages_hash": "4a821282bb3aa24455f8a651d619323954ee7bb46f6666b30ebfd7fba3c7b0ba", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", "difficulty": 545259519, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24` (str, required) - The index of the block to return + + block_hash: `124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", "difficulty": 545259519, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 713, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 712, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" } ], "next_cursor": 710, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 709, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 706, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 213, - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "object_id": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "block_index": 211, "confirmed": true, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 60, - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "offer_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "status": "valid", "confirmed": true, - "block_time": 1730910718 + "block_time": 1730977618 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 63, - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "block_index": 197, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730910730, + "block_time": 1730977629, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "block_hash": "5c1b7a69ccaa8909a76fdbec148ac8a4d6860620e2b6b0f5881987a4f4202768", - "block_time": 1730910506, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "221f45f6db92fc83fd89a0ea448f5d6073dc6d506100f2e287f10ff871e7902c", + "block_time": 1730977385, + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac:1 2 ", + "utxos_info": " 418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "block_hash": "0acb91abfa11e12581103e98cf763354b04aba07571eae9ef0034f8cd5051580", - "block_time": 1730910696, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "2677189c8dbfbb269c64934e7f0bb9051d86958311b154c2ece94d9507dc39c9", + "block_time": 1730977585, + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "btc_amount": 2000, "fee": 10000, - "data": "0b653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "data": "0bbd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "supported": true, - "utxos_info": " 0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791:0 3 1", + "utxos_info": " d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "block_index": 194, - "block_hash": "2960944d1415d3d1297d73ed4dc3b5bdea8c0e99b384c5b0a7ed03439589e77f", - "block_time": 1730910718, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "5d554ba1428fa3a9584cf71cd45d1f794d3016a1c93031bab141fd392327ed43", + "block_time": 1730977618, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "461be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "data": "46b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "supported": true, - "utxos_info": " 47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a:1 2 ", + "utxos_info": " 485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "block_index": 197, - "block_hash": "3544375fe47b7c17915af74db7c6d4d544e9ac9bf994890ed619ecf474eb5e33", - "block_time": 1730910730, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "block_hash": "3837c9715cb4af37d17055e5110b7ec72b6f8d5523afaf1582dee5baa24c4167", + "block_time": 1730977629, + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "bc1fb6b2c8f2c8793fe11bcdf9e588b70dac18d0a2e35cc8f8652621c0f65f9b:1 94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 2 ", + "utxos_info": "73934ba7bb254b84d853cf5e30149bd1e8b98e8b0fe256aad3c963b6a35271b7:1 cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 199, - "block_hash": "305e6a104fc597b886fa1cdf8c9276651d285a4daa27780a6a348d4b80af81c1", - "block_time": 1730910737, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "00639b2a2a9fc6eda899e9a6f5b903034d943a43a30e64789011fe3b4a005761", + "block_time": 1730977647, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2:1 2 ", + "utxos_info": " 9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "block_hash": "1658c28dce061ff60630b3c8f7873573d2e19c0a3d38649eadc6adedd70f07d0", - "block_time": 1730910573, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "370ef209ac7a69b3a18b350ed2fe6128fb1b629a545d91740a5fa8435bb95bf8", + "block_time": 1730977457, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227:1 2 ", + "utxos_info": " 8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_hash": "35b053d0584ef60bb9522c2dd2845700cda4a89527f1b2c78369b9aa980421e0", - "block_time": 1730910773, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "37bc44a99f26fbd26b4b14d64ea8dab4699df6d48eb5e9108cdf9ffbcd39439f", + "block_time": 1730977691, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c:1 2 ", + "utxos_info": " 71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 79, - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", - "block_time": 1730910807, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_time": 1730977725, + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a:1 2 ", + "utxos_info": " 59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_hash": "6dcba0ec0db5de53a5587115b141f3fcd267a886f4aac60d125beac94edef021", - "block_time": 1730910778, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", + "block_time": 1730977696, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "supported": true, - "utxos_info": " 1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e:1 2 ", + "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", - "block_time": 1730910803, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_time": 1730977721, + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511:0 4 ", + "utxos_info": " 1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "block_hash": "2094602905f05a70dce0e2008ba7d8387506c734ff3d717a123a441cf4151ebb", - "block_time": 1730910725, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "block_hash": "4cb544f773c24f36506c1c970d85b2d5069693d53cb4ac8d0689f0fe81dd1274", + "block_time": 1730977625, + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04806f39181fc575a9ce988820bf086df2f28876f18e017377656570206d7920617373657473", + "data": "04802f17c5b300d912108769616091ec2d7d53c91a73017377656570206d7920617373657473", "supported": true, - "utxos_info": " 98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53:1 2 ", + "utxos_info": " 27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", + "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", "block_index": 205, - "block_hash": "40d72f2835f3c97f0f9238ab3ebdf5852f3ba21dedfd4c62491f95f3149f6d67", - "block_time": 1730910770, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "block_hash": "3fdc6a12b6d441e9759e29c5d5429cec81e389c72d43cdc62d5571e9ce72e501", + "block_time": 1730977688, + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c:0 3 1", + "utxos_info": " 551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", + "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", "block_index": 204, - "block_hash": "61e91ab660b39fee9188beb2ff20b9cbb47e59210f406654e1654a68032dd862", - "block_time": 1730910767, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "block_hash": "6ecf107fbda986bcd3edb67bbe8fc1f10d8e2d22182b1b4a4c355ea95b25c630", + "block_time": 1730977685, + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "5b2d6622d9f315622865c3c7e05e4e6b62b9d326256192d0e39d6d12182baec1:0 7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788:1 2 ", + "utxos_info": "953a2098614ca254d4b7b537d48b1e72c8534cd8cd3ac8dc860b082d5664d15a:0 fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 79, - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", - "block_time": 1730910807, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_time": 1730977725, + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a:1 2 ", + "utxos_info": " 59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001066839ffd8b62ed444953997332cf54b9931964ac5c344d111aae66d7a1a31ffbc0000000000fffffffff8d7ed08f274a16885c77aa7b3cc27a1dfefc937ff3c1254b33277dd5c202eba0000000000ffffffff6cc6b1c447c156b87acc256824cbc40c92256a468c28f7ddc7e4a9af0aace4050000000000ffffffff51f95427eff8532cb16af96db6a45427de6040a7aa5412f6dae1bd3988b60d770000000000ffffffffc644961810bd7cf6fd27c61000b76026356ca06d0d2a114328b94b69acc311e60000000000fffffffff47b5985434ad5ca3875ccc32d571146883b6f12e92b1a494d3a1bdb1c12f6ab0000000000ffffffff04e8030000000000006951210286f657b4727243bb1f630d295dc167a18f2491ac50df36000f7e763bbf0db1bb21032a08c118a8775c79466ceeb427e6f9b515ca26c56924710b642eb860248b2b982102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653aee8030000000000006951210386f657b4727243bb1fae95a2fdbc10f7c66ae274cae39713c3cee4a84515be762103b0e241762bc78cfe97a75d1e354dffd40b5dca428135ebe66e7acf4c61fe820d2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653aee80300000000000069512103a7f657b4727243bb1f600d2add03989a34986a023b6d8338a8e06cb145d16a772102b0e241762bc78cd48212c8ab8987ffd40b5dca42813f6e8b0b17a07fe1fe827d2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae387923fc06000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d0247304402202e643f06944051b767825cf78f515b2b29bc39d49117c5990944e1d4cebad15a022030168dffcf26b60e87c3b329dc2e43af0f3e49e75830d08216e9faa61dc4948c012102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c73960247304402200fbcf7fc5e816978d94588813cc152e76286e8196df1bfb97f5c03884eb1c70802207759b5d1e4e22e3a8a3c383b82c71a843045a0cfcf503dd577a54f823923f15d012102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739602473044022069c0acfbd7492934c434bbae257e5a350c795f05cbc86c0a306c2ad08a614f940220043add9a97586d503943b68e51592213cff75f50159ff53c2f91517961baa687012102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c73960247304402205284d9a7b4679b1c50d5331465f195260b44147d4b1eb06fe37cbfe1cb1e12ae022041e6022e54961d10dcd15fec4e3b0b3b659f3664a1ed060e177576ea1686404e012102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739602473044022063135cb41fab8e6d424388b0918bd2ab75f04f89d256aa91d5c128066703a7f7022065beec359e9b44be39a32a527f4944b8309e4a7ca797daaa45510707596109c3012102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c73960247304402203feb07134a699051f22de015336f5487c5c9476b59a8f8b601c34690f80296a8022051365b16f6cc94fd219f74388f55b2ae2be81ff366abb7b81c763ef0e60c0db3012102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739600000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106fcb80e4b4f2aaae5340b9f140d9d9d6a0136b57285457954589c4ffd83361a410000000000ffffffff85f5509c5971278b70fb63428435be30fc0e66c5ba0acadd0ac961161be66fd20000000000ffffffff5d04725264be05273520a69b7d3e6f42bd3d1f41bcd093d84e4dfbf7861f8ded0000000000ffffffff045f8d3c477964f1b51743ce58df5dd0d8700837bb490f7a1851ed79cadb3a620000000000ffffffff6a0b37a10585ab1c21a6afad5d4ef309c216ed6a4b161489243a47c28b54bf790000000000ffffffff441d58f6e4540565a64bb080dfbdc8a62127d60dfafa1f5a1a92bf0d4cb6830b0000000000ffffffff04e80300000000000069512102a576ddf1130eeaede45676a39a54a042c2ec3624d2e84d493e35c624841e5c0b21031451b99c8139acc9d3a0b0b7b0940b99add4d78605ef546454d5c3e0401adebd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee80300000000000069512103a576ddf1130eeaede445f1c97b9aca3d0aa01bd3b35952f49d7de369c56f23de2102641639b092b28394bcb9abf5fd2c88d83ebe8e92f37b34891eaf6960c0c3ccb621023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee803000000000000695121038476ddf1130eeaede45576a01afadbd127dd481aa92a46dff6536b70c5abf7a22103641639b092b283bea90c3e4041e688d83ebe8e92f371b1e47bc2065340c3cc5f21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae387923fc06000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0247304402203485144733f1824530da59622db88f614c34468ed717b5ef67fd062791e78d5c0220215dadc4f4754f66835b2b047a3f1c48c87c877b443ddf6241fbc24f892b715a0121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72024730440220246a9dc6f8bb8671e4a7ae06a6192faf92d83744a5e366b07c8c93a1205da47f02201da75cbc12426fa26feae74ebd31794cc8c2d18ebcd64c55903643c16e11f0e90121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e720247304402204b48ff6a9417ef1e82126dad83aac46fa9140ea6575df9d97952438d73d421fa022018f708ecfa289fe1f57de28ba1627f17ee7b062a8b491a9b5c50569853c1dc190121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7202473044022036d69e24a5d3d4084d31f0d2fcb0dcb40075e635078958b7783823347c49283d022060653bb0dfce8e0fe36d2452e0f141290078ff24a526113fbe53b9af36455b5e0121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e720247304402204872ba18b969b5bed604d6ada62279c47fa7eac105fd488222a4e70cd2699cd702203825599d13c9e66162cf3f6ecfd1871477945c82d6de543ac4235a34824b89820121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7202473044022061c5ae08ef065dba17d2e93baf083d63287351cd806c8df307164c423e549c3e02202dc41850b5de66f69ff40b29c6e7f8127730e8b95838da3d09d6d549f775eacf0121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7200000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6839ffd8b62ed444953997332cf54b9931964ac5c344d111aae66d7a1a31ffbc", + "hash": "fcb80e4b4f2aaae5340b9f140d9d9d6a0136b57285457954589c4ffd83361a41", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f8d7ed08f274a16885c77aa7b3cc27a1dfefc937ff3c1254b33277dd5c202eba", + "hash": "85f5509c5971278b70fb63428435be30fc0e66c5ba0acadd0ac961161be66fd2", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6cc6b1c447c156b87acc256824cbc40c92256a468c28f7ddc7e4a9af0aace405", + "hash": "5d04725264be05273520a69b7d3e6f42bd3d1f41bcd093d84e4dfbf7861f8ded", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "51f95427eff8532cb16af96db6a45427de6040a7aa5412f6dae1bd3988b60d77", + "hash": "045f8d3c477964f1b51743ce58df5dd0d8700837bb490f7a1851ed79cadb3a62", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c644961810bd7cf6fd27c61000b76026356ca06d0d2a114328b94b69acc311e6", + "hash": "6a0b37a10585ab1c21a6afad5d4ef309c216ed6a4b161489243a47c28b54bf79", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f47b5985434ad5ca3875ccc32d571146883b6f12e92b1a494d3a1bdb1c12f6ab", + "hash": "441d58f6e4540565a64bb080dfbdc8a62127d60dfafa1f5a1a92bf0d4cb6830b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "51210286f657b4727243bb1f630d295dc167a18f2491ac50df36000f7e763bbf0db1bb21032a08c118a8775c79466ceeb427e6f9b515ca26c56924710b642eb860248b2b982102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae" + "script_pub_key": "512102a576ddf1130eeaede45676a39a54a042c2ec3624d2e84d493e35c624841e5c0b21031451b99c8139acc9d3a0b0b7b0940b99add4d78605ef546454d5c3e0401adebd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" }, { "value": 1000, - "script_pub_key": "51210386f657b4727243bb1fae95a2fdbc10f7c66ae274cae39713c3cee4a84515be762103b0e241762bc78cfe97a75d1e354dffd40b5dca428135ebe66e7acf4c61fe820d2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae" + "script_pub_key": "512103a576ddf1130eeaede445f1c97b9aca3d0aa01bd3b35952f49d7de369c56f23de2102641639b092b28394bcb9abf5fd2c88d83ebe8e92f37b34891eaf6960c0c3ccb621023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" }, { "value": 1000, - "script_pub_key": "512103a7f657b4727243bb1f600d2add03989a34986a023b6d8338a8e06cb145d16a772102b0e241762bc78cd48212c8ab8987ffd40b5dca42813f6e8b0b17a07fe1fe827d2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae" + "script_pub_key": "5121038476ddf1130eeaede45576a01afadbd127dd481aa92a46dff6536b70c5abf7a22103641639b092b283bea90c3e4041e688d83ebe8e92f371b1e47bc2065340c3cc5f21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" }, { "value": 29999987000, - "script_pub_key": "0014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d" + "script_pub_key": "0014a975b369ecb27bd04f92e9f3456b9270f93c1b6b" } ], "vtxinwit": [ - "304402202e643f06944051b767825cf78f515b2b29bc39d49117c5990944e1d4cebad15a022030168dffcf26b60e87c3b329dc2e43af0f3e49e75830d08216e9faa61dc4948c01", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "304402200fbcf7fc5e816978d94588813cc152e76286e8196df1bfb97f5c03884eb1c70802207759b5d1e4e22e3a8a3c383b82c71a843045a0cfcf503dd577a54f823923f15d01", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "3044022069c0acfbd7492934c434bbae257e5a350c795f05cbc86c0a306c2ad08a614f940220043add9a97586d503943b68e51592213cff75f50159ff53c2f91517961baa68701", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "304402205284d9a7b4679b1c50d5331465f195260b44147d4b1eb06fe37cbfe1cb1e12ae022041e6022e54961d10dcd15fec4e3b0b3b659f3664a1ed060e177576ea1686404e01", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "3044022063135cb41fab8e6d424388b0918bd2ab75f04f89d256aa91d5c128066703a7f7022065beec359e9b44be39a32a527f4944b8309e4a7ca797daaa45510707596109c301", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "304402203feb07134a699051f22de015336f5487c5c9476b59a8f8b601c34690f80296a8022051365b16f6cc94fd219f74388f55b2ae2be81ff366abb7b81c763ef0e60c0db301", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396" + "304402203485144733f1824530da59622db88f614c34468ed717b5ef67fd062791e78d5c0220215dadc4f4754f66835b2b047a3f1c48c87c877b443ddf6241fbc24f892b715a01", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "30440220246a9dc6f8bb8671e4a7ae06a6192faf92d83744a5e366b07c8c93a1205da47f02201da75cbc12426fa26feae74ebd31794cc8c2d18ebcd64c55903643c16e11f0e901", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "304402204b48ff6a9417ef1e82126dad83aac46fa9140ea6575df9d97952438d73d421fa022018f708ecfa289fe1f57de28ba1627f17ee7b062a8b491a9b5c50569853c1dc1901", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "3044022036d69e24a5d3d4084d31f0d2fcb0dcb40075e635078958b7783823347c49283d022060653bb0dfce8e0fe36d2452e0f141290078ff24a526113fbe53b9af36455b5e01", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "304402204872ba18b969b5bed604d6ada62279c47fa7eac105fd488222a4e70cd2699cd702203825599d13c9e66162cf3f6ecfd1871477945c82d6de543ac4235a34824b898201", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "3044022061c5ae08ef065dba17d2e93baf083d63287351cd806c8df307164c423e549c3e02202dc41850b5de66f69ff40b29c6e7f8127730e8b95838da3d09d6d549f775eacf01", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" ], "lock_time": 0, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", - "tx_id": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143" + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_id": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -3472,7 +3472,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c` (str, required) - Transaction hash + + tx_hash: `49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "44cc463e071f1f44bf86723e3c57a5ef93d2fc6d3e15e7460a093eda901fae94", + "hash": "d5a3d729312d3abe8dedf46966c31dc2cc31e10b3265e70144d09d67e87d11cf", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2efeaad1af03cb3fdc535ed32a2246222bc2a21f24efb79302af771bc7945ca930438f92934152772e59bbd192caf9" + "script_pub_key": "6a2e192c9ea723d0209741794735d6fd4e1dcbfe150c64859968ba76773d68419a760e9d5530faede7c0356fec43aa45" }, { "value": 4949930546, - "script_pub_key": "00146f39181fc575a9ce988820bf086df2f28876f18e" + "script_pub_key": "00142f17c5b300d912108769616091ec2d7d53c91a73" } ], "vtxinwit": [ - "30440220175a5b04dfef096bbdb5514556dc661879a847938c2e906767f86eea3fe4db1e0220615e1163932cc67523ab998b338d2586c4bb3536ba91ffb01213a25a7a4a46d901", - "029876b55e1a6e3f2158812d12e92b9e16d591fdc60e690025006f83ed8c3523ef" + "30440220265878f34bd61da70af7568f3386ca5ace2dfffc834494289ae2340aaecd6b3302203fbc8982fbf9bdfc0705f97bc3fe3758edab34dea77f27426b9436266e5e282c01", + "02b6527bd925a27be267b6d0029274d1b083d226181f44cf9d6b2a040d8418605b" ], "lock_time": 0, - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", - "tx_id": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c" + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_id": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -3611,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4` (str, required) - The hash of the transaction + + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (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. @@ -3652,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 713, @@ -3719,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3737,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 712, @@ -3748,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3787,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 710, @@ -3797,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 213, - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "msg_index": 1, "quantity": 2000000000, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", "status": "valid", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3814,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 709, @@ -3829,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4` (str, required) - The hash of the transaction to return + + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `715` (str, optional) - The last event index to return @@ -3853,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 713, @@ -3867,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3885,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 712, @@ -3896,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3935,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 710, @@ -3945,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 213, - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "msg_index": 1, "quantity": 2000000000, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", "status": "valid", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3962,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 709, @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4` (str, required) - The hash of the transaction to return + + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (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 @@ -3996,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4020,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4` (str, required) - The hash of the transaction to return + + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (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 @@ -4073,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4152,16 +4152,16 @@ Returns the events of a transaction "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4171,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 709, @@ -4183,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4198,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 706, @@ -4210,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": null, @@ -4240,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4` (str, required) - The hash of the transaction to return + + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `715` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4262,16 @@ Returns the events of a transaction "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4281,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 709, @@ -4293,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4308,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 706, @@ -4320,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7,bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4508,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7,bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - Comma separated list of addresses to return + cursor: `80` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", - "block_time": 1730910803, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_time": 1730977721, + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511:0 4 ", + "utxos_info": " 1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4545,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4560,7 +4560,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4579,17 +4579,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_hash": "639bd2350bd2381fe7b14309c56cb5c4b7d81bc250632cdd34c42929f6f336f4", - "block_time": 1730910799, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", + "block_time": 1730977716, + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18ec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a73c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3:0 4 ", + "utxos_info": " 4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4612,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4631,17 +4631,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", - "block_time": 1730910794, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_time": 1730977712, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143:0 4 ", + "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4664,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4683,17 +4683,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "block_hash": "176a647717731b18164076a79450ad56414b60bdf40c7f9d599c7f128ee47bb1", - "block_time": 1730910781, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", + "block_time": 1730977699, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c:0 4 ", + "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4716,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4735,17 +4735,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_hash": "6dcba0ec0db5de53a5587115b141f3fcd267a886f4aac60d125beac94edef021", - "block_time": 1730910778, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", + "block_time": 1730977696, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "supported": true, - "utxos_info": " 1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e:1 2 ", + "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4753,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4778,7 +4778,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7,bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `715` (str, optional) - The last event index to return @@ -4803,15 +4803,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4821,9 +4821,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 692, @@ -4831,27 +4831,27 @@ Returns the events of a list of addresses "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 691, @@ -4859,42 +4859,42 @@ Returns the events of a list of addresses "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 690, "event": "DEBIT", "params": { "action": "mpma send", - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "block_index": 211, - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4904,9 +4904,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 689, @@ -4919,7 +4919,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l,bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy,bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x` (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 @@ -4935,17 +4935,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "quantity": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -4956,22 +4956,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4981,22 +4981,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "block_index": 213, - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5006,30 +5006,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730910824.0825016, + "block_time": 1730977737.9578004, "btc_amount": 0, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "destination": "", "fee": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, - "utxos_info": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c:1 2 ", + "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -5043,7 +5043,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -5056,7 +5056,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -5076,7 +5076,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5084,14 +5084,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5099,14 +5099,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5114,14 +5114,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5136,7 +5136,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5144,7 +5144,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5161,7 +5161,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -5174,7 +5174,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5199,7 +5199,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5249,16 +5249,16 @@ Returns the credits of an address "result": [ { "block_index": 211, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5270,16 +5270,16 @@ Returns the credits of an address }, { "block_index": 210, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5291,16 +5291,16 @@ Returns the credits of an address }, { "block_index": 210, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5312,16 +5312,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5333,20 +5333,20 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "event": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5363,7 +5363,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5402,16 +5402,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5423,20 +5423,20 @@ Returns the debits of an address }, { "block_index": 209, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5444,16 +5444,16 @@ Returns the debits of an address }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5465,20 +5465,20 @@ Returns the debits of an address }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5486,20 +5486,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "event": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910778, + "block_time": 1730977696, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5516,7 +5516,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address of the feed + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5551,7 +5551,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -5570,9 +5570,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "36c357d7e1d0a2e769b2fc03ed8a9fd93c47d4a23ce089cccaf5385afb712981", + "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", "block_index": 137, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5580,7 +5580,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910503, + "block_time": 1730977381, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5594,7 +5594,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -5613,14 +5613,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "f8fae0bb5b5b7129f90608f864e3542de55ec5dfc07e45723c520012c09ea813", + "tx_hash": "9338289b6df5af85664673ef663dda3aff22cf63613ac17518ed936657c8e187", "block_index": 112, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730910399, + "block_time": 1730977287, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5635,7 +5635,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -5654,10 +5654,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5665,7 +5665,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5678,10 +5678,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5689,11 +5689,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5702,10 +5702,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5713,11 +5713,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5726,10 +5726,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5737,7 +5737,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5750,10 +5750,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5761,11 +5761,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5783,7 +5783,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qeg2h6zgsgesvmphj87pmfds0k4c3y3c083wssk` (str, required) - The address to return + + address: `bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6` (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 @@ -5802,10 +5802,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "bc1fb6b2c8f2c8793fe11bcdf9e588b70dac18d0a2e35cc8f8652621c0f65f9b", + "tx_hash": "73934ba7bb254b84d853cf5e30149bd1e8b98e8b0fe256aad3c963b6a35271b7", "block_index": 151, - "source": "7e7ce9bc387a5e46c78bb053b5c3535cadaea27ea50722b08e67587d19fd1961:0", - "destination": "bcrt1qeg2h6zgsgesvmphj87pmfds0k4c3y3c083wssk", + "source": "1244595298ba8bc22f6e62a5ff74f93b0fb7ac8af574550bb9879062dc586a9b:0", + "destination": "bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5813,11 +5813,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910556, + "block_time": 1730977441, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5835,7 +5835,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5855,10 +5855,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5866,11 +5866,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5879,10 +5879,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5890,11 +5890,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5903,10 +5903,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5914,11 +5914,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5927,10 +5927,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5938,11 +5938,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5951,10 +5951,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5962,11 +5962,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910778, + "block_time": 1730977696, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5984,7 +5984,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qeg2h6zgsgesvmphj87pmfds0k4c3y3c083wssk` (str, required) - The address to return + + address: `bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6012,7 +6012,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6041,9 +6041,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6052,7 +6052,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6063,7 +6063,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6080,9 +6080,9 @@ Returns the dispensers of an address }, { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6091,7 +6091,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6102,11 +6102,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6128,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -6141,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6163,7 +6163,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6186,7 +6186,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -6206,19 +6206,19 @@ Returns the dispenses of a source { "tx_index": 66, "dispense_index": 0, - "tx_hash": "4130679c71ec8784d5e9c7fd2a1b07f697bc681c55aff9a001649d9d855eb7e5", + "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6226,7 +6226,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6241,11 +6241,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6255,19 +6255,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6275,7 +6275,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6290,7 +6290,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6304,19 +6304,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6324,7 +6324,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6339,7 +6339,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6361,7 +6361,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address to return + + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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 @@ -6381,19 +6381,19 @@ Returns the dispenses of a destination { "tx_index": 66, "dispense_index": 0, - "tx_hash": "4130679c71ec8784d5e9c7fd2a1b07f697bc681c55aff9a001649d9d855eb7e5", + "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6401,7 +6401,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6416,11 +6416,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6430,19 +6430,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6450,7 +6450,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6465,7 +6465,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6479,19 +6479,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6499,7 +6499,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6514,7 +6514,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6536,7 +6536,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -6557,19 +6557,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6577,7 +6577,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6592,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6606,19 +6606,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6626,7 +6626,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6641,7 +6641,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6663,7 +6663,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address to return + + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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` @@ -6684,19 +6684,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6704,7 +6704,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6719,7 +6719,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6733,19 +6733,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6753,7 +6753,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6768,7 +6768,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6790,7 +6790,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l` (str, required) - The address to return + + address: `bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy` (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 @@ -6809,16 +6809,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -6832,7 +6832,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6864,14 +6864,14 @@ Returns the issuances of an address "result": [ { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6886,20 +6886,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c61a766eeabb62caef929b472a8daba6d93bdb0c24817154f276039630297cd1", + "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6914,20 +6914,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910608, + "block_time": 1730977496, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "ad684a9a35e5af8a00954ac4fbec373e053a6495909f686129ef357afe82c719", + "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6942,20 +6942,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730910605, + "block_time": 1730977492, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "552f035bafa1bee5d90f6d55985eacbd1883829e7130070ae383963b57b70683", + "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6970,20 +6970,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910591, + "block_time": 1730977478, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "04c42025f6bdb16978697cd06a04950af6dc2203ee95ddd44a7c1b10e1501ee4", + "tx_hash": "6b026e21935f51c6de8a8490834fefe1c74f80f5d347abc80481b3a9f67cfea7", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6998,7 +6998,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910586, + "block_time": 1730977474, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7013,7 +7013,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The issuer or owner to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7036,8 +7036,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -7045,16 +7045,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -7062,16 +7062,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -7079,16 +7079,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 40, @@ -7096,16 +7096,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730910495, - "last_issuance_block_time": 1730910499, + "first_issuance_block_time": 1730977375, + "last_issuance_block_time": 1730977378, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 19, @@ -7113,8 +7113,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730910471, - "last_issuance_block_time": 1730910492, + "first_issuance_block_time": 1730977358, + "last_issuance_block_time": 1730977370, "supply_normalized": "0.00000019" } ], @@ -7128,7 +7128,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The issuer to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -7151,8 +7151,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -7160,16 +7160,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -7177,16 +7177,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -7194,16 +7194,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 40, @@ -7211,16 +7211,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730910495, - "last_issuance_block_time": 1730910499, + "first_issuance_block_time": 1730977375, + "last_issuance_block_time": 1730977378, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 19, @@ -7228,8 +7228,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730910471, - "last_issuance_block_time": 1730910492, + "first_issuance_block_time": 1730977358, + "last_issuance_block_time": 1730977370, "supply_normalized": "0.00000019" } ], @@ -7243,7 +7243,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The owner to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7266,8 +7266,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -7275,16 +7275,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -7292,16 +7292,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -7309,16 +7309,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 40, @@ -7326,16 +7326,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730910495, - "last_issuance_block_time": 1730910499, + "first_issuance_block_time": 1730977375, + "last_issuance_block_time": 1730977378, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 19, @@ -7343,8 +7343,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730910471, - "last_issuance_block_time": 1730910492, + "first_issuance_block_time": 1730977358, + "last_issuance_block_time": 1730977370, "supply_normalized": "0.00000019" } ], @@ -7358,7 +7358,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + cursor: `80` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7377,17 +7377,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", - "block_time": 1730910794, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_time": 1730977712, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143:0 4 ", + "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7395,14 +7395,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7410,7 +7410,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7429,17 +7429,17 @@ Returns the transactions of an address }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "block_hash": "176a647717731b18164076a79450ad56414b60bdf40c7f9d599c7f128ee47bb1", - "block_time": 1730910781, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", + "block_time": 1730977699, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c:0 4 ", + "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7447,14 +7447,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7462,7 +7462,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7481,17 +7481,17 @@ Returns the transactions of an address }, { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_hash": "6dcba0ec0db5de53a5587115b141f3fcd267a886f4aac60d125beac94edef021", - "block_time": 1730910778, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", + "block_time": 1730977696, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "supported": true, - "utxos_info": " 1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e:1 2 ", + "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7499,12 +7499,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7515,17 +7515,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_hash": "35b053d0584ef60bb9522c2dd2845700cda4a89527f1b2c78369b9aa980421e0", - "block_time": 1730910773, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "37bc44a99f26fbd26b4b14d64ea8dab4699df6d48eb5e9108cdf9ffbcd39439f", + "block_time": 1730977691, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c:1 2 ", + "utxos_info": " 71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7550,17 +7550,17 @@ Returns the transactions of an address }, { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 199, - "block_hash": "305e6a104fc597b886fa1cdf8c9276651d285a4daa27780a6a348d4b80af81c1", - "block_time": 1730910737, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "00639b2a2a9fc6eda899e9a6f5b903034d943a43a30e64789011fe3b4a005761", + "block_time": 1730977647, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2:1 2 ", + "utxos_info": " 9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7577,7 +7577,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7598,7 +7598,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -7617,20 +7617,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7655,7 +7655,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7684,9 +7684,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7703,7 +7703,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7731,9 +7731,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7750,7 +7750,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7778,9 +7778,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7797,7 +7797,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7825,9 +7825,9 @@ Returns the orders of an address }, { "tx_index": 61, - "tx_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "block_index": 210, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7844,7 +7844,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7881,7 +7881,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The source of the fairminter to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7906,10 +7906,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7934,7 +7934,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7943,10 +7943,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7971,7 +7971,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730910495, + "block_time": 1730977375, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7983,10 +7983,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8011,7 +8011,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730910471, + "block_time": 1730977358, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8023,10 +8023,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8051,7 +8051,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730910468, + "block_time": 1730977353, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8063,10 +8063,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8091,7 +8091,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8113,7 +8113,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address of the mints to return + + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8131,22 +8131,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8155,22 +8155,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1cec802154e9a56a03db6997744d3c9313fc07accec76f6f3fd347834b137f63", + "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910492, + "block_time": 1730977370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8179,22 +8179,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "51f7e9ca2473857a754cc3f88077bc63de5c7d481055d124fa1cac4e70d17e61", + "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910489, + "block_time": 1730977366, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8203,22 +8203,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "89a16fee2fcda5975a75adba15c36eda58a497a897e23e7eda9a55688b95793e", + "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910475, + "block_time": 1730977362, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8227,22 +8227,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aa1fc443481552ae6ca4a043e6fb939dc625eb0ae0c5ffda0224ffd6a68de59f", + "tx_hash": "9c1ce9680f0043f68b449f91e332e914fbbda1f815b93638da08c6901354ff60", "tx_index": 15, "block_index": 127, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910456, + "block_time": 1730977344, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8251,22 +8251,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8285,7 +8285,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address of the mints to return + + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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` @@ -8304,22 +8304,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8340,7 +8340,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0` (str, required) - The utxo to return + + utxo: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8360,8 +8360,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8374,12 +8374,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8419,8 +8419,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will make the bet - + feed_address: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will make the bet + + feed_address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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) @@ -8494,7 +8494,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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) @@ -8556,7 +8556,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8569,7 +8569,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985771, "btc_fee": 14229, - "rawtransaction": "0200000000010172c4f4156a259dea3f3a710a82eea7a0b8ec1bcc6bfba5c08284965891cbc75e00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff0200000000000000002b6a29209690385f01807806ff5b956dfc5ae4042aa03f917b08f5cee1a7d7855df22f8086872111331865816bba052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101c158f0eff2350f861b62cf558dc0e3ef5dbc4f943fba24378588c5f84545108d00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff0200000000000000002b6a29f3dfe7e96c5baf4576771d1d6ea133724796a07a4ed01d6bcd9766d9c19d16527dd356d14bf25031486bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8591,8 +8591,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be sending the payment - + order_match_id: `4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60` (str, required) - The ID of the order match to pay for + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending the payment + + order_match_id: `aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc` (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) @@ -8650,24 +8650,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "order_match_id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "data": "434e5452505254590baebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980890, "btc_fee": 18110, - "rawtransaction": "0200000000010117ba16c9f7c9fe9f394cf6323bdf3404656f1e6a2aebf8b1fedf75649dcf1e1f00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff03e803000000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d00000000000000004b6a49a43d7df89758ca5aa871805d9904f330f0abee07829ce861ad8fd9a8def919802ee3ce4a11cd44ceb24d3a9dcff48271edde5144ef9268a155f7535580602b8f1d4b99ee0b4d6c36a45aa7052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "020000000001012d58a19d1cedccbcdbd8ef8fff318dfd2e5cd28f390e154c3a45932ef76329cb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e803000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b00000000000000004b6a4909d2dd0c2007d43911c8aea7cb28b1079c0205b6cd2e9a74055b419b3b654595ff11f46c29e676fe6014b94ee75906c9ea1455c033bd1502673c080a2582beb5f597c315f4d4931cb65aa7052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "order_match_id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "status": "valid" } } @@ -8680,7 +8680,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address with the BTC to burn + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -8741,7 +8741,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8752,7 +8752,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "020000000001019cbbe1f00127aa538ece4e3cbca015bf5ef5cd626e251d74cb8f0798bb833c8200000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000" + "rawtransaction": "020000000001014e868381a6790213502baa07d4980cadf9a3c5ce2e71c47bc48ebb4793b2b7e200000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000" } } ``` @@ -8762,8 +8762,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: `bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3` (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) @@ -8821,22 +8821,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "offer_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "data": "434e5452505254594659e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904679, "btc_fee": 14229, - "rawtransaction": "020000000001018a95035c54653982ba9dd49b0359d998ebbd05031ee00ffc04d6fa7acd66712301000000160014b4fb2b0f61918b8154a9164c4fbc8c40c6ff4f19ffffffff0200000000000000002b6a29f0a8efaa3e8cf8513f3571414808371490950073301852c55746ee992a41c9ec370d77fb6b81f3492d278d092701000000160014b4fb2b0f61918b8154a9164c4fbc8c40c6ff4f1902000000000000", + "rawtransaction": "02000000000101f3a3f2abf660a05264628a5eba5c06cfb731652e97a6b70e1a4e7ed97a46e959010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dffffffffff0200000000000000002b6a2927fcbf4eb3cff3769830b7339ecf1ab04935ef3c83db0128f93e55c7ada85efa5bc0bacc73b308982c278d0927010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dff02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "status": "valid" } } @@ -8849,7 +8849,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -8910,7 +8910,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8930,7 +8930,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986300, "btc_fee": 13700, - "rawtransaction": "02000000000101d0d12ef275fa2b0a24593018355de95bfcd1fbdc07783303f6ac968a27c1011b00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000226a20a0891d2a88e2dd3d3f733469c4a9fb5fb583d83c4f24c209224a0e6a7a5991577cbc052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101a43e72f572060f4876a971b5312d46dec47a79c5791f8967bbfd9f3fce81819600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000226a207af07edddbfb3964ea2050bb90ea1af854d3a450d8f523a63b8a582a6153305d7cbc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8950,7 +8950,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: `bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a` (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) @@ -9017,7 +9017,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9042,7 +9042,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859611, "btc_fee": 14288, - "rawtransaction": "02000000000101a499ae4b2770a2581421dae8e8008efbadf910e9290d1bd1ec4ef68ee9558d10020000001600140e1eba78449b7f8e4a249524a9607a698bc917b8ffffffff0200000000000000002c6a2abac12bab090fff40bdceca7ad478092e6a60b990dc317529208b81830faa708af557b69436ae930646791bdd0827010000001600140e1eba78449b7f8e4a249524a9607a698bc917b802000000000000", + "rawtransaction": "02000000000101bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf50200000016001427db96e897929853c6ebe6127d77a4882445084bffffffff0200000000000000002c6a2a3c8c8fb35dbad902c9ff6bf4dd47ad2937e001f890554e3b57ce5bf6a2b2df98d4f05ed72ba3670efb3d1bdd08270100000016001427db96e897929853c6ebe6127d77a4882445084b02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9068,7 +9068,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -9129,7 +9129,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9137,7 +9137,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9156,7 +9156,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "020000000001011f549b8f5b56341e78a7e99fdc0b4866d19ef8cf83acd8e3934d6505430f311900000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000236a212c11305a18b003f87dfe90f61788e8627b8551f24da4200e5aac55a7c58657e33042bc052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101668815b074db819426b51ae36179f9fafc4803f48bd6420713f67ca1e61da61800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219f95843f5dda7681968fe685f1fe39f327ae9215be39b171de5c34f1f02c3334b642bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9177,10 +9177,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -9247,10 +9247,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "transfer_destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "lock": false, "reset": false, @@ -9264,7 +9264,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983696, "btc_fee": 15758, - "rawtransaction": "02000000000101b48ea933a9f8fae5409881878a3ab46a6944278d8b2c0188a08a481bf2121e9700000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff032202000000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d0000000000000000236a2148f8acd5e44372a1ba60aa7fd7f78c2a75ee4c7fd12b91fa21769b42846a31aa6550b2052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101b554c2e655bc234e4aff2d8274030dcde31ff5760d10ee8bc61f415e63514e9e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000236a21efc368468f681c93cad7e47914392488a41d48dca0f7c6e47d39c76644f194349750b2052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9293,9 +9293,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7,bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9362,16 +9362,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", 1 ], [ "MPMASSET", - "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", 2 ] ], @@ -9380,26 +9380,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d80c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a975b369ecb27bd04f92e9f3456b9270f93c1b6b80aefb93e5317e3e7bc25fbda34dc62dc9b5ab704740000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945317, "btc_fee": 52683, - "rawtransaction": "02000000000104cbdbf440b190888caf7ef7aaaf2c3370487979f0589c07b6988ee6f4bfe45c0100000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff66e20019ce32a740a86d30dec79427b98b4802d3579efa56b95a1928081baa0f00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dfffffffff1d6ad9747cbf0ae2df95dcbd98065c75a6ea73b9b55ff4d9e1ee16a0633786e00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff277e231a8cb333280c7b5ee1b5f53372c987942b5944c728870059df4b9a051100000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff03e80300000000000069512103640551fb2e247928d7acecb0468519aed62c725b1010be2101afd82695fae4ba2103c75dd7e258729941bfc7e0fb2c0192720fd7bb40c6c7b698c41a34f4fb285fdd2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653aee803000000000000695121027b0551fb2e247928d77fecb2c622e5d83da779bb9c6e494453e1e56b37a1fbc3210331305620274922fd44698b49cd125ec77e24c99c1d5d5cd8c41a31179ba09b0e2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae65f216a804000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000002000002000002000000000000", + "rawtransaction": "02000000000104f983b24cdaf7fd05960f39fc7ffc3c91db6e09e76165925358a6a9ef98378c8800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffffefee148baf747bebe0180349e1f8122493253ec497bed9b169c78a476caa1afb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff71514a9311b573428fa6df525d18dacfb6079c6f70543794ca948f381f28039f00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff08aff0edc5140d16dc62fe19734437c5960ee379b8ba626e26dcadd1d5d516a400000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e8030000000000006951210301ec4ed558c01cdbf3d9f8601f6f83700bdc93a6b1d072e446441f48a84ba0ad2102f7448423b0eb6b21ea6d028c31753ebef198d3a8a1f7c68907a8f7627490cd5e21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee803000000000000695121031eec4ed558c01cdbf30af8629fc6f6c3621421dd619fe00db50574dad8b29cff2102ec2f058d4b788e109453794e6ec89df337b51a1d0a8781c907a8f281141809bd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae65f216a804000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9415,7 +9415,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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 @@ -9479,7 +9479,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9497,7 +9497,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9511,7 +9511,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985183, "btc_fee": 14817, - "rawtransaction": "0200000000010193c64e48caccd8ec22c743983a7f526b5c922bb06b2cd3e4eb7742a6f21047e100000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000356a33ebde0a2f23f6fa9fc2fe455d8c9be6f73b5bebbfc78af8564545779067111ca40b448ddb5cb76f634709ea0987d145f4ed67f61fb8052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101a4880f217851d5755e542253fc0c0a843e1e4c11f68e6fb98333a783c78dc58800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000356a337b6b94a943206ff17006fde5b3e508b3bba1015d06c8afda1764d188fda077b659183f217c333c42fa085e6bfc76cc36e2c5fb1fb8052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9537,8 +9537,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address that will be receiving the asset + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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 @@ -9604,8 +9604,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9622,19 +9622,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "434e54525052545902000000000000000100000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985477, "btc_fee": 14523, - "rawtransaction": "020000000001013b17947f4689ac144d6fb5949a7c4835ae5209d76ffa49b55f58fac93057d4a600000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000306a2e5c58f37e677705deee23e32efc2606c9c60e0b326b5ad776228445f547a14f0c6f485f7bde414538250c6382d04545b9052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "0200000000010177151862c1be96e7dc0ccb5e585d8cb3caf28441a6f219358b05b5d84aa2afe600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000306a2ef312b061dfba1b217147ac2ecbc5f331390c118609b7ef84fa4bb7b755642aa42e84fe4b752630ef949f6740e34645b9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "quantity_normalized": "0.00001000" } @@ -9648,8 +9648,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be sending - + destination: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending + + destination: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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 @@ -9709,24 +9709,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea07ffff", + "data": "434e5452505254590480aefb93e5317e3e7bc25fbda34dc62dc9b5ab704707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "020000000001014f0a42ccdc5b483f1c0095bbe4ac13e528b5132e9a714a866314df7d1254e5ff00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000236a21dddce9c9e1ea2bf92f3afbaeddd35df6b776bd3513312f8c9e0ffea765941b7d5242bc052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "020000000001019fb504094c0ff9b4e9927e1e274fa80896c6ab19c482aafe32a9284296b06e5e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219fb4153f246ef01c1e700548290790380e9ec14961ffb1dfb46d3c00d7b1f049db42bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "flags": 7, "memo": "ffff" } @@ -9740,8 +9740,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: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x` (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` @@ -9800,8 +9800,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "quantity": 1000, "skip_validation": false }, @@ -9811,7 +9811,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "0200000000010111852f7b1d110bd52e4cd306b49a98783491c5e88efb855b8649159d28ee340703000000160014c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aeaffffffff03e8030000000000001600146f39181fc575a9ce988820bf086df2f28876f18e00000000000000000c6a0ae7a3a2fcb43cf8c3bca07325082701000000160014c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea02000000000000", + "rawtransaction": "02000000000101331ef5cb6ae373cad9ece34c1260099b40e4656b3aa416f0744ab33f8dd7f01f03000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047ffffffff03e8030000000000001600142f17c5b300d912108769616091ec2d7d53c91a7300000000000000000c6a0add8bd88dfa16b908ac7f7325082701000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab704702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9828,7 +9828,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be issuing the asset + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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: `` @@ -9919,7 +9919,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9951,7 +9951,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985418, "btc_fee": 14582, - "rawtransaction": "02000000000101188c2fcd49f3694ac14747f66ab56484a4c3be291292524ceaa2b8bb0b0d8e0700000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000316a2f3f8f1f16864fde4916f5f7303fc2d715a21bf590da14413b823429e034e425d5ed02b2a6cd00dfbf6557b5cb9a970a0ab9052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101dfb1a602f3b4593d3b34f7cc1b1966b846363ab5dc7387583085b0bbf08e1f2e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000316a2f98ab04bad4ae1a5de48266cd6ba2e87537608a600e3c4f5e4c33fa61eb35867704ef27500b0d56da43787d36d882330ab9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9990,7 +9990,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: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address that will be minting the asset + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -10051,14 +10051,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -10070,7 +10070,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "02000000000101fdb038f1fdcc78c9efc3f681086475f3ad9c21bf18267b92d98c3b8335268dc300000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000166a14a3340067d33ec7f0f863d7d07201e65d7f1c8f743ebf052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "0200000000010139b307b9db1b8871639834a69b77f2b9efbdab54b392e6f5878bb9fcf56525f800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000166a141407fa2a8cb7beb8d113f685fe4c5a3c30b6434a3ebf052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10089,7 +10089,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address from which the assets are attached + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10153,7 +10153,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10173,7 +10173,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984578, "btc_fee": 14876, - "rawtransaction": "02000000000101de33a385003b94030e0d9cdb26d46321a6f5dd5af9b14a0d7cf9206cc8c781d000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff032202000000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d0000000000000000146a12cb1f0cab0b8a589bb8716c572b037f3e1dbbc2b5052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101d83020d40a6509ae7d3e019823c4563737756c35d661b0f19b3cd578c87fcac100000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000146a123111edb1f3347cfe5c50900a4daf6b148754c2b5052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10193,8 +10193,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: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10257,22 +10257,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171356c37386436613070307367636c68687634667935303264356664336c616e6436396e647937", + "data": "434e545250525459666263727431713439366d783630766b666161716e756a613865353236756a7772756e63786d74386333797a36", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945423, "btc_fee": 25577, - "rawtransaction": "02000000000102a499ae4b2770a2581421dae8e8008efbadf910e9290d1bd1ec4ef68ee9558d10000000001600144a31c801448088baeea42a665a19a7652de88028ffffffff4a23d7dfbf3bd7a0dcd1f4db0acfe4857949f1130b1623ac9f4686878404cb86010000001600144a31c801448088baeea42a665a19a7652de88028ffffffff020000000000000000376a35bac12bab090fff40d7aca908a049781b075781f4ea50455af8f8e6e063c218ff2931cfa1069cf733441dc25755890e3ae2b66465654f2c0a27010000001600144a31c801448088baeea42a665a19a7652de8802802000002000000000000", + "rawtransaction": "02000000000102bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf5000000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffffbb54ed2e6fc9c8665821c316af1cff5dba90c2be589b5062355140e4597df20e010000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffff020000000000000000376a353c8c8fb35dbad902a39d0886a976dc1d0fd66c80a6653853d9af3a87ccc7b5fa04956be51dd60d79ed48c69476d401b6a9f31583064f2c0a27010000001600149e334aaca9774527f019ba31459ddc70b7bfa49c02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7" + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6" } } } @@ -10376,8 +10376,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -10385,16 +10385,16 @@ Returns the valid assets "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "owner": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "owner": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false, "supply": 100000000000, @@ -10402,16 +10402,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730910745, - "last_issuance_block_time": 1730910745, + "first_issuance_block_time": 1730977654, + "last_issuance_block_time": 1730977654, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -10419,16 +10419,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "owner": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "issuer": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "owner": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "divisible": true, "locked": false, "supply": 100000000000, @@ -10436,16 +10436,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730910583, - "last_issuance_block_time": 1730910583, + "first_issuance_block_time": 1730977471, + "last_issuance_block_time": 1730977471, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -10453,8 +10453,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" } ], @@ -10482,8 +10482,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -10491,8 +10491,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730910436, - "last_issuance_block_time": 1730910447, + "first_issuance_block_time": 1730977324, + "last_issuance_block_time": 1730977336, "supply_normalized": "100.00000000" } } @@ -10523,7 +10523,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10531,14 +10531,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10546,7 +10546,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -10564,7 +10564,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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. @@ -10576,7 +10576,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10630,9 +10630,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10649,7 +10649,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10677,9 +10677,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10696,7 +10696,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10724,9 +10724,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10743,7 +10743,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10771,9 +10771,9 @@ Returns the orders of an asset }, { "tx_index": 61, - "tx_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "block_index": 210, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10790,7 +10790,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10818,9 +10818,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10837,7 +10837,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10901,13 +10901,13 @@ Returns the orders of an asset { "result": [ { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10921,7 +10921,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10941,13 +10941,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 53, - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10961,7 +10961,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10981,13 +10981,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff_586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", + "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", "tx0_index": 50, - "tx0_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 51, - "tx1_hash": "586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11001,7 +11001,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11021,13 +11021,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11041,7 +11041,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11121,20 +11121,20 @@ Returns the credits of an asset "result": [ { "block_index": 196, - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "event": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11142,20 +11142,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f3ec0f15f897d91e5d97ddbef3fa6b759cc99ee55164a40aa053f37b7fc91a16", + "event": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11163,20 +11163,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11184,20 +11184,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "event": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11209,16 +11209,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11278,12 +11278,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11295,16 +11295,16 @@ Returns the debits of an asset }, { "block_index": 211, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11316,16 +11316,16 @@ Returns the debits of an asset }, { "block_index": 210, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11337,16 +11337,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11358,16 +11358,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11447,14 +11447,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f3ec0f15f897d91e5d97ddbef3fa6b759cc99ee55164a40aa053f37b7fc91a16", + "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -11469,20 +11469,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -11497,20 +11497,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -11525,20 +11525,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -11553,7 +11553,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730910436, + "block_time": 1730977324, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11587,10 +11587,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11598,7 +11598,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11611,10 +11611,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11622,7 +11622,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11635,10 +11635,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 77, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11646,7 +11646,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11659,10 +11659,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11670,7 +11670,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11683,10 +11683,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11694,7 +11694,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11745,9 +11745,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11756,7 +11756,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11767,7 +11767,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11784,9 +11784,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "6a620ed7bf9ad992dd13733145a4266051f97cbc9ce7dbd20e300e03e710f002", + "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", "block_index": 142, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11795,7 +11795,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11806,7 +11806,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910521, + "block_time": 1730977400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11823,9 +11823,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "eef1730a299542c77403b22b8a733340eff92d4f9bdf9d2649dbdaeb3df99a4a", + "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", "block_index": 150, - "source": "mgfCkp2bexoY8bqX4Z6PHNhsAkSPUQTqUm", + "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11833,10 +11833,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5a68d3399a016910d765b83b2d65451be27edf4063a6e401d711d0f2a98005dc", - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -11845,7 +11845,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910551, + "block_time": 1730977438, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11862,18 +11862,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11884,7 +11884,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11910,7 +11910,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - The address to return + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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` @@ -11923,9 +11923,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11934,7 +11934,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11945,7 +11945,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11996,7 +11996,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12004,7 +12004,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12013,7 +12013,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12021,7 +12021,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12030,7 +12030,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12038,7 +12038,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12047,7 +12047,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12084,27 +12084,27 @@ Returns the dispenses of an asset { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12119,7 +12119,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12133,27 +12133,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "0b2dbbd56fa23e808a119d0236c4a50cedcf23b47dd0869367ad563cbe35cbed", + "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", "block_index": 147, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12168,7 +12168,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910539, + "block_time": 1730977428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12182,19 +12182,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12202,7 +12202,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12217,7 +12217,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12231,19 +12231,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12251,7 +12251,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12266,7 +12266,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12340,10 +12340,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12368,7 +12368,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12408,22 +12408,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f3ec0f15f897d91e5d97ddbef3fa6b759cc99ee55164a40aa053f37b7fc91a16", + "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", "tx_index": 13, "block_index": 125, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12432,22 +12432,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "tx_index": 12, "block_index": 124, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12456,22 +12456,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12490,7 +12490,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4` (str, required) - The address of the mints to return + + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (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` @@ -12509,22 +12509,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -12577,9 +12577,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12596,7 +12596,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12624,9 +12624,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12643,7 +12643,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12671,9 +12671,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12690,7 +12690,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12718,9 +12718,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12737,7 +12737,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12765,9 +12765,9 @@ Returns all the orders }, { "tx_index": 61, - "tx_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "block_index": 210, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12784,7 +12784,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12821,7 +12821,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a` (str, required) - The hash of the transaction that created the order + + order_hash: `59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3` (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. @@ -12833,9 +12833,9 @@ Returns the information of an order { "result": { "tx_index": 79, - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -12852,11 +12852,11 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910807, + "block_time": 1730977725, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -12886,7 +12886,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f` (str, required) - The hash of the transaction that created the order + + order_hash: `aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178` (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 @@ -12913,13 +12913,13 @@ Returns the order matches of an order { "result": [ { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12933,7 +12933,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12963,7 +12963,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b` (str, required) - The hash of the transaction that created the order + + order_hash: `bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba` (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 @@ -12982,15 +12982,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "btc_amount": 2000, - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "status": "valid", "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "btc_amount_normalized": "0.00002000" } ], @@ -13034,9 +13034,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13054,7 +13054,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730910696, + "block_time": 1730977585, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13080,9 +13080,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "block_index": 211, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13100,7 +13100,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730910803, + "block_time": 1730977721, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13126,9 +13126,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13146,7 +13146,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13172,9 +13172,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13192,7 +13192,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13218,9 +13218,9 @@ Returns the orders to exchange two assets }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13238,7 +13238,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13301,13 +13301,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13324,7 +13324,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13344,13 +13344,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 53, - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13367,7 +13367,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910696, + "block_time": 1730977585, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13387,13 +13387,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff_586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", + "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", "tx0_index": 50, - "tx0_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 51, - "tx1_hash": "586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13410,7 +13410,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910623, + "block_time": 1730977511, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13430,13 +13430,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13453,7 +13453,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13511,13 +13511,13 @@ Returns all the order matches { "result": [ { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13531,7 +13531,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13551,13 +13551,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 53, - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13571,7 +13571,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13591,13 +13591,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff_586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", + "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", "tx0_index": 50, - "tx0_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 51, - "tx1_hash": "586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13611,7 +13611,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13631,13 +13631,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13651,7 +13651,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13819,66 +13819,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "0a9521b19c433242f528db9d924350cd09e9b12753e4a476999a3c4adac9975e", + "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", "block_index": 121, - "source": "bcrt1qscvx65qxrwg8vur6l9vw4h7fsv594s09d3r6a6", + "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730910432, + "block_time": 1730977320, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "3390add011b140e3a7df83f596f7ccd27392a4b1654279d585d09cfb74a75d13", + "tx_hash": "53f7f14701b0a6eeca9a78bd8815650adfeb66f546be001daf5f851dbf9b817d", "block_index": 120, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730910428, + "block_time": 1730977317, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "89935beeb3abcfc78481c30f1ef13ea07c0281b6a8f592128ee97bbcc24f6d8a", + "tx_hash": "92749a25d45e1f8045e905e14c23aa5a850c93b179ccee536aea18c335f3cd56", "block_index": 119, - "source": "bcrt1qmg6q8zgntqdrfzgnseles8ttnugkry5m4n2j70", + "source": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730910424, + "block_time": 1730977314, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "70d07de658c0238244fc14acb237c66186b3f3cd28e62a3955ac66480c677fe7", + "tx_hash": "ec533a9c92446574419824d1eca1b41716eaaa81aa4371b0e7bd5d71ed714f9c", "block_index": 118, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730910420, + "block_time": 1730977310, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d380602e2b33f7dcd604c85e5e65af09b68b688739b02af12fd526eebf26fde4", + "tx_hash": "10894d687d5f3cbda58d8c8d0cbef0daf82fbb5bc2f492bab4c6dee8d215a173", "block_index": 117, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730910417, + "block_time": 1730977306, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13923,9 +13923,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13934,7 +13934,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13945,7 +13945,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13962,9 +13962,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "6a620ed7bf9ad992dd13733145a4266051f97cbc9ce7dbd20e300e03e710f002", + "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", "block_index": 142, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13973,7 +13973,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13984,7 +13984,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910521, + "block_time": 1730977400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14001,9 +14001,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "eef1730a299542c77403b22b8a733340eff92d4f9bdf9d2649dbdaeb3df99a4a", + "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", "block_index": 150, - "source": "mgfCkp2bexoY8bqX4Z6PHNhsAkSPUQTqUm", + "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14011,10 +14011,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5a68d3399a016910d765b83b2d65451be27edf4063a6e401d711d0f2a98005dc", - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -14023,7 +14023,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910551, + "block_time": 1730977438, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14040,9 +14040,9 @@ Returns all dispensers }, { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14051,7 +14051,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14062,11 +14062,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -14079,18 +14079,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14101,7 +14101,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14127,7 +14127,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae` (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. @@ -14139,9 +14139,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14150,7 +14150,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14161,7 +14161,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14184,7 +14184,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671` (str, required) - The hash of the dispenser to return + + dispenser_hash: `c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae` (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 @@ -14204,19 +14204,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14224,7 +14224,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14239,7 +14239,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14253,19 +14253,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14273,7 +14273,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14288,7 +14288,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14330,20 +14330,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -14368,7 +14368,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227` (str, required) - The hash of the dividend to return + + dividend_hash: `8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb` (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. @@ -14380,20 +14380,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -14415,7 +14415,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb` (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 @@ -14438,12 +14438,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "event": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "tx_index": 42, - "utxo": "caa2bee50c1f311c9aa2d23c9787adf2c2b31bc7c517b1b703ccbd4e8942d5b0:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "e250eb1d2f9fed96de5b384fbc6891852d5c5ba40f67a488be3b7e9d1d58ee07:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14489,27 +14489,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 714, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 713, @@ -14518,14 +14518,14 @@ Returns all events "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14536,9 +14536,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 712, @@ -14547,9 +14547,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14559,24 +14559,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14586,9 +14586,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 710, @@ -14616,15 +14616,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } } ``` @@ -14702,16 +14702,16 @@ Returns the events filtered by event name "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14721,9 +14721,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 709, @@ -14733,12 +14733,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14748,9 +14748,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 706, @@ -14760,39 +14760,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 688, "event": "CREDIT", "params": { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "block_index": 211, "calling_function": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14802,36 +14802,36 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 687, "event": "CREDIT", "params": { - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "block_index": 211, "calling_function": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 686, @@ -14887,27 +14887,27 @@ Returns all the dispenses { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14922,7 +14922,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14936,19 +14936,19 @@ Returns all the dispenses { "tx_index": 66, "dispense_index": 0, - "tx_hash": "4130679c71ec8784d5e9c7fd2a1b07f697bc681c55aff9a001649d9d855eb7e5", + "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14956,7 +14956,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14971,11 +14971,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -14985,27 +14985,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "0b2dbbd56fa23e808a119d0236c4a50cedcf23b47dd0869367ad563cbe35cbed", + "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", "block_index": 147, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15020,7 +15020,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910539, + "block_time": 1730977428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15034,19 +15034,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15054,7 +15054,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15069,7 +15069,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15083,19 +15083,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15103,7 +15103,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15118,7 +15118,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15160,10 +15160,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15171,7 +15171,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15184,10 +15184,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15195,11 +15195,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -15208,10 +15208,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15219,7 +15219,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15232,10 +15232,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15243,11 +15243,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -15256,10 +15256,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15267,11 +15267,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -15322,14 +15322,14 @@ Returns all the issuances "result": [ { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -15344,20 +15344,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 67, - "tx_hash": "464602a66d5d923a283a486a252d975bab6bc48c79c9174cba8b1534c45e2ace", + "tx_hash": "3dfafdb89f45576b25adc2371da0ffb782acf19f28b77b73ee1181a91122725e", "msg_index": 0, "block_index": 201, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "transfer": false, "callable": false, "call_date": 0, @@ -15372,20 +15372,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910745, + "block_time": 1730977654, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c61a766eeabb62caef929b472a8daba6d93bdb0c24817154f276039630297cd1", + "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -15400,20 +15400,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910608, + "block_time": 1730977496, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "ad684a9a35e5af8a00954ac4fbec373e053a6495909f686129ef357afe82c719", + "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -15428,20 +15428,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730910605, + "block_time": 1730977492, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "552f035bafa1bee5d90f6d55985eacbd1883829e7130070ae383963b57b70683", + "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -15456,7 +15456,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910591, + "block_time": 1730977478, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15471,7 +15471,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c` (str, required) - The hash of the transaction to return + + tx_hash: `71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817` (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. @@ -15483,14 +15483,14 @@ Returns the issuances of a block { "result": { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -15505,7 +15505,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15537,16 +15537,16 @@ Returns all sweeps "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -15560,7 +15560,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53` (str, required) - The hash of the transaction to return + + tx_hash: `27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848` (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. @@ -15573,16 +15573,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -15616,9 +15616,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15626,14 +15626,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910506, + "block_time": 1730977385, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "36c357d7e1d0a2e769b2fc03ed8a9fd93c47d4a23ce089cccaf5385afb712981", + "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", "block_index": 137, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15641,7 +15641,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910503, + "block_time": 1730977381, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15655,7 +15655,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac` (str, required) - The hash of the transaction to return + + tx_hash: `418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd` (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. @@ -15667,9 +15667,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15677,7 +15677,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910506, + "block_time": 1730977385, "fee_fraction_int_normalized": "0.00000000" } } @@ -15714,10 +15714,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15742,7 +15742,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15751,10 +15751,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15779,7 +15779,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730910495, + "block_time": 1730977375, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15791,10 +15791,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15819,7 +15819,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730910471, + "block_time": 1730977358, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15831,10 +15831,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15859,7 +15859,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730910468, + "block_time": 1730977353, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15871,10 +15871,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15899,7 +15899,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15968,22 +15968,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -15992,22 +15992,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1cec802154e9a56a03db6997744d3c9313fc07accec76f6f3fd347834b137f63", + "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910492, + "block_time": 1730977370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -16016,22 +16016,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "51f7e9ca2473857a754cc3f88077bc63de5c7d481055d124fa1cac4e70d17e61", + "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910489, + "block_time": 1730977366, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -16040,22 +16040,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "89a16fee2fcda5975a75adba15c36eda58a497a897e23e7eda9a55688b95793e", + "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910475, + "block_time": 1730977362, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -16064,22 +16064,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "bc4dcf245eea410e49b6ce6b34b4c9a7efa878a3d0d3dc1bac0435cc24474a88", + "tx_hash": "d2f268607a9892328d11b14102180ad3cebf5bcd9e34070a2a69b27a987add11", "tx_index": 17, "block_index": 129, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "fairminter_tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910465, + "block_time": 1730977350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -16098,7 +16098,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e` (str, required) - The hash of the fairmint to return + + tx_hash: `9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16109,22 +16109,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -16142,7 +16142,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk,bcrt1qmg6q8zgntqdrfzgnseles8ttnugkry5m4n2j70` (str, required) - The addresses to search for + + addresses: `bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0,bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d` (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. @@ -16155,23 +16155,23 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ - { - "vout": 1, - "height": 204, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", - "address": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk" - }, { "vout": 1, "height": 212, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", - "address": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk" + "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" + }, + { + "vout": 1, + "height": 204, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" }, { "vout": 0, @@ -16179,8 +16179,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", - "address": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk" + "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" }, { "vout": 2, @@ -16188,8 +16188,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 56, "amount": 0.001, - "txid": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84", - "address": "bcrt1qmg6q8zgntqdrfzgnseles8ttnugkry5m4n2j70" + "txid": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf", + "address": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d" } ], "next_cursor": null, @@ -16202,7 +16202,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l` (str, required) - The address to search for + + address: `bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy` (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 @@ -16218,28 +16218,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "517e1db54446be269b3301f33212bab4845592d570c1f0125ee470cac52f2e07" + "tx_hash": "9d90d9487ddfc264d17c73a515f423e5c429b6d83cf24de8997eaddfc4866609" }, { - "tx_hash": "d357bb299d18b322b59583ba8e57afd45b77ac7c21c0c9e208fcebad4b6e9c08" + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848" }, { - "tx_hash": "be7a8c0909cc12258059e612c4c0e6a7ad2a5bef16b5123454d0fe54b02d694e" + "tx_hash": "2c2867cdde9bb0e5b8f16167ed9d07fdcfdbe216aae37df2b41856496ac4a256" }, { - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53" + "tx_hash": "ded24090770fef8bbf19d80fedab6fc8918e12089762f99aa3163f184ae8ac68" }, { - "tx_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60" + "tx_hash": "d683a7fc6db9a494fbcaefbef7e73441f62bc7f920b54af9ca52431c4d45a069" }, { - "tx_hash": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2" + "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786" }, { - "tx_hash": "a9a38734d0ec1a4b7928125a669b8928d806c3ab81e43160a4b82e8fe5e740f9" + "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" }, { - "tx_hash": "096504cf1bf62d6c52bc881aab5585a189027b352a7f6c5ccc9076da3acb8cfb" + "tx_hash": "c48dc9784c8a741e26bf22ae348030fc3a4fba16648ac854436eacd77c5bb6ff" } ], "next_cursor": null, @@ -16252,7 +16252,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h` (str, required) - The address to search for. + + address: `bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a` (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. @@ -16265,8 +16265,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "e6a31f225e3e87704558d0e73bd86f58e9cd011cdbc7aebda2a5087cf184a240" + "block_index": 6, + "tx_hash": "86fc31efdc88265b5d9499910af6267be60fdb887f26e0adf7a1bb4b1401635c" } } ``` @@ -16276,7 +16276,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk` (str, required) - The address to search for + + address: `bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0` (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 @@ -16291,13 +16291,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ + { + "vout": 1, + "height": 212, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3" + }, { "vout": 0, "height": 205, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c" + "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e" }, { "vout": 1, @@ -16305,15 +16313,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788" - }, - { - "vout": 1, - "height": 212, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a" + "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468" } ], "next_cursor": null, @@ -16326,7 +16326,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7` (str, required) - Address to get pubkey for. + + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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. @@ -16338,7 +16338,7 @@ Get pubkey for an address. ``` { - "result": "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396" + "result": "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" } ``` @@ -16347,7 +16347,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4` (str, required) - The transaction hash + + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (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. @@ -16359,7 +16359,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010184df859eec23e5ee96fab73d348361acca76d358bf7d21d1e12abb6f266a4c2f0100000000ffffffff03e8030000000000001600144a31c801448088baeea42a665a19a7652de8802800000000000000000c6a0a25469f1f26afd427fbdbeb140927010000001600140e1eba78449b7f8e4a249524a9607a698bc917b80247304402205f12f8b0129aa382e1575c7f2dff706657475fb23abbcf30ab5908cc59df3a7102203e6831898378bdd13ac8d7247af8e2fe733383f8b76f71465cb4313296e25c86012102912def327031838ce3950474602a43cb1afb4e3beb2f83af28e3f9e8ee0e1c8c00000000" + "result": "02000000000101cf99ffa01b328dcc71e0510f408fd86a64ddba305cd220fc8d76e384a369d0fb0100000000ffffffff03e8030000000000001600149e334aaca9774527f019ba31459ddc70b7bfa49c00000000000000000c6a0a4ac5dc7bc2aedaafabd9eb1409270100000016001427db96e897929853c6ebe6127d77a4882445084b02473044022052ba8f627dbc0b34c52de9fc109a013af3336e4a50a7751fab9c1a7739780f140220398102c0a431b0a6ca15a48e372203a97dcaf87242fbabaefb2d90396ca728e2012103e21ae08d90338d2b62676917df2ead4d354022b419fcf01f82d7534aea7f65d900000000" } ``` @@ -16520,27 +16520,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81 }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "quantity": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -16551,22 +16551,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16576,22 +16576,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "block_index": 213, - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16601,30 +16601,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730910824.0825016, + "block_time": 1730977737.9578004, "btc_amount": 0, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "destination": "", "fee": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, - "utxos_info": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c:1 2 ", + "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -16638,7 +16638,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -16669,19 +16669,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16691,7 +16691,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -16704,7 +16704,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c` (str, required) - The hash of the transaction to return + + tx_hash: `49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8` (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 @@ -16724,27 +16724,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81 }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "quantity": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -16755,22 +16755,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16780,22 +16780,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "block_index": 213, - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16805,30 +16805,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730910824.0825016, + "block_time": 1730977737.9578004, "btc_amount": 0, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "destination": "", "fee": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, - "utxos_info": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c:1 2 ", + "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -16842,7 +16842,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 327a3bc936..95eb053531 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -197,6 +197,7 @@ def construct( use_utxos_with_balances=False, exclude_utxos_with_balances=False, force_inputs_set=False, + skip_validation=False, ): # Extract tx_info (address_or_utxo, destinations, data) = tx_info @@ -226,7 +227,6 @@ def construct( encoding = determine_encoding(data, encoding, op_return_max_size) """Outputs""" - ( destination_outputs, destination_btc_out, @@ -247,7 +247,6 @@ def construct( exact_fee, fee_per_kb, ) - """Inputs""" (inputs, change_output, btc_in, final_fee) = transaction_inputs.prepare_inputs( @@ -298,7 +297,7 @@ def construct( """Sanity Check""" - if (encoding == "p2sh" and pretx_txid) or encoding != "p2sh": + if ((encoding == "p2sh" and pretx_txid) or encoding != "p2sh") and not skip_validation: check_transaction_sanity(db, source, tx_info, unsigned_tx_hex, encoding, inputs) logger.debug("TX Construct - Transaction constructed.") @@ -348,5 +347,6 @@ def compose_transaction(db, name, params, accept_missing_params=False, **constru """Create and return a transaction.""" skip_validation = not construct_kwargs.pop("validate", True) tx_info = compose_data(db, name, params, accept_missing_params, skip_validation) + construct_kwargs["skip_validation"] = skip_validation transaction_info = construct(db, tx_info, **construct_kwargs) return transaction_info diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index ac625504ee..62f0b3f6eb 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -179,13 +179,16 @@ def prepare_inputs_set(inputs_set, force_inputs_set=False): str_input_split = str_input.split(":") amount = None - if len(str_input_split) == 3: + script_pub_key = None + if len(str_input_split) > 2: utxo = f"{str_input_split[0]}:{str_input_split[1]}" try: amount = int(str_input_split[2]) amount = amount / config.UNIT except ValueError as e: raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e + if len(str_input_split) > 3: + script_pub_key = str_input_split[3] elif len(str_input_split) == 2: utxo = str_input @@ -204,13 +207,14 @@ def prepare_inputs_set(inputs_set, force_inputs_set=False): ) from e raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e - new_inputs_set.append( - { - "txid": txid, - "vout": vout, - "amount": amount, - } - ) + new_input = { + "txid": txid, + "vout": vout, + "amount": amount, + } + if script_pub_key is not None: + new_input["script_pub_key"] = script_pub_key + new_inputs_set.append(new_input) return new_inputs_set @@ -330,7 +334,8 @@ def construct_coin_selection( use_inputs = unspent # remove locked UTXOs - unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) + if not disable_utxo_locks: + unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) # remove UTXOs with balances if not specified if not use_utxos_with_balances: diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index b89d08511e..23a4238163 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": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", "difficulty": 545259519, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, "confirmed": true }, { "block_index": 212, - "block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", - "block_time": 1730910807, - "previous_block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", + "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_time": 1730977725, + "previous_block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", "difficulty": 545259519, - "ledger_hash": "937e77f03796b4be84072fe455d75279d3f971d46574ce2dc8df4643a0f05874", - "txlist_hash": "e411afa5648244ba16161d1a5f2420ee3ccab3ad76df99c5504a5e1078c14725", - "messages_hash": "db6e4bf8e6cc4091e5fe8ce47a1db186a227668ce181b9d359bea0f1ee95a408", + "ledger_hash": "9ed5f78a1a6fa6851bb1d3126d805206b4f7e4c9e2bb8479dabfbc8f57c667db", + "txlist_hash": "dc52eec0da5fc57349225a1454d5b3e207a8381386a3c0e497ad3f7096202633", + "messages_hash": "2b26b6fa9199fb8565492a38bd36db5adf4fb8712132057a21c1a05f94623aeb", "transaction_count": 1, "confirmed": true }, { "block_index": 211, - "block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", - "block_time": 1730910803, - "previous_block_hash": "639bd2350bd2381fe7b14309c56cb5c4b7d81bc250632cdd34c42929f6f336f4", + "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_time": 1730977721, + "previous_block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", "difficulty": 545259519, - "ledger_hash": "551ee1ccbbe1be01ff21603b47ee82b2948d0f7c372a7a26bc4d16e6784621fe", - "txlist_hash": "acff179c388634ff4b097689be53ce8a77217c764e1cd3a7376ce021a6b028b7", - "messages_hash": "71807aeafe67928af6f5955cb3cfc0a643b5252b1f7fce6dd93cae5b22200fbe", + "ledger_hash": "dae697981536c17e68bf8a06bfd95b41eebb9feb0f798609c6f5aded80c758dc", + "txlist_hash": "07a4879a9bb15e79600c077e150484d234db27a42f3d69c61de105791cca773b", + "messages_hash": "0854d1a229de1890b5fa4bd1e84e19b16937ab92965169a0f5b6755e6f7ae4e8", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "639bd2350bd2381fe7b14309c56cb5c4b7d81bc250632cdd34c42929f6f336f4", - "block_time": 1730910799, - "previous_block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", + "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", + "block_time": 1730977716, + "previous_block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", "difficulty": 545259519, - "ledger_hash": "80ecb847900f5ffe21c8204594249a2332dbace564f863a29c54b54d8170bf92", - "txlist_hash": "d52258ca6cb3442ed7e8b12e2a26af2e5a0d1860a81950476c9dcb684e8b1ee2", - "messages_hash": "7b4223f9792d654b047acf667d844aca92588c53ec7063ba11984d4d968b2bb4", + "ledger_hash": "615a78711f0afe0b44ad569d8f1b55d592569cb2bc96d1824521658e0c4e05e0", + "txlist_hash": "3995bd597d9721bf37d03728e829eefedbf3ed4e12478f452b8ac56dba5d9af9", + "messages_hash": "e11ff10b3b7efd34994c46b6cbc448929bac846f49673914c885d31ced8b62cb", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", - "block_time": 1730910794, - "previous_block_hash": "176a647717731b18164076a79450ad56414b60bdf40c7f9d599c7f128ee47bb1", + "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_time": 1730977712, + "previous_block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", "difficulty": 545259519, - "ledger_hash": "4221359bfdae0a2a6b774a5746d1febcb0dcd043729dff54acc98f124c853d09", - "txlist_hash": "d8cd4e291bb316ea7077e2b8ad4c5ade4318625a9c334c286c34fbc841bd994b", - "messages_hash": "3c66f739a8f4d3b9389ed612a7c9876de6c8416b5ccfe499a8d28862bdbe5542", + "ledger_hash": "337d09c20a6694183c8781b44a2e784c933c0421e04417f2e16e40afbe7bb327", + "txlist_hash": "bb2ff16dccefeeef0de464895bf5424e478d9f79930537785f7203cc6694a871", + "messages_hash": "4a821282bb3aa24455f8a651d619323954ee7bb46f6666b30ebfd7fba3c7b0ba", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", "difficulty": 545259519, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", "difficulty": 545259519, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 713, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 712, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" } ], "next_cursor": 710, @@ -256,16 +256,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 709, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" }, { "event_index": 706, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4" + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 213, - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "object_id": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "block_index": 211, "confirmed": true, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 60, - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "offer_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "status": "valid", "confirmed": true, - "block_time": 1730910718 + "block_time": 1730977618 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 63, - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "block_index": 197, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730910730, + "block_time": 1730977629, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -507,14 +507,14 @@ "result": [ { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -565,10 +565,10 @@ }, { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 79, - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686", - "block_time": 1730910807, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_time": 1730977725, + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a:1 2 ", + "utxos_info": " 59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -816,53 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6839ffd8b62ed444953997332cf54b9931964ac5c344d111aae66d7a1a31ffbc", + "hash": "fcb80e4b4f2aaae5340b9f140d9d9d6a0136b57285457954589c4ffd83361a41", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f8d7ed08f274a16885c77aa7b3cc27a1dfefc937ff3c1254b33277dd5c202eba", + "hash": "85f5509c5971278b70fb63428435be30fc0e66c5ba0acadd0ac961161be66fd2", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6cc6b1c447c156b87acc256824cbc40c92256a468c28f7ddc7e4a9af0aace405", + "hash": "5d04725264be05273520a69b7d3e6f42bd3d1f41bcd093d84e4dfbf7861f8ded", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "51f95427eff8532cb16af96db6a45427de6040a7aa5412f6dae1bd3988b60d77", + "hash": "045f8d3c477964f1b51743ce58df5dd0d8700837bb490f7a1851ed79cadb3a62", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c644961810bd7cf6fd27c61000b76026356ca06d0d2a114328b94b69acc311e6", + "hash": "6a0b37a10585ab1c21a6afad5d4ef309c216ed6a4b161489243a47c28b54bf79", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f47b5985434ad5ca3875ccc32d571146883b6f12e92b1a494d3a1bdb1c12f6ab", + "hash": "441d58f6e4540565a64bb080dfbdc8a62127d60dfafa1f5a1a92bf0d4cb6830b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "51210286f657b4727243bb1f630d295dc167a18f2491ac50df36000f7e763bbf0db1bb21032a08c118a8775c79466ceeb427e6f9b515ca26c56924710b642eb860248b2b982102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae" + "script_pub_key": "512102a576ddf1130eeaede45676a39a54a042c2ec3624d2e84d493e35c624841e5c0b21031451b99c8139acc9d3a0b0b7b0940b99add4d78605ef546454d5c3e0401adebd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" }, { "value": 1000, - "script_pub_key": "51210386f657b4727243bb1fae95a2fdbc10f7c66ae274cae39713c3cee4a84515be762103b0e241762bc78cfe97a75d1e354dffd40b5dca428135ebe66e7acf4c61fe820d2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae" + "script_pub_key": "512103a576ddf1130eeaede445f1c97b9aca3d0aa01bd3b35952f49d7de369c56f23de2102641639b092b28394bcb9abf5fd2c88d83ebe8e92f37b34891eaf6960c0c3ccb621023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" }, { "value": 1000, - "script_pub_key": "512103a7f657b4727243bb1f600d2add03989a34986a023b6d8338a8e06cb145d16a772102b0e241762bc78cd48212c8ab8987ffd40b5dca42813f6e8b0b17a07fe1fe827d2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae" + "script_pub_key": "5121038476ddf1130eeaede45576a01afadbd127dd481aa92a46dff6536b70c5abf7a22103641639b092b283bea90c3e4041e688d83ebe8e92f371b1e47bc2065340c3cc5f21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" }, { "value": 29999987000, - "script_pub_key": "0014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d" + "script_pub_key": "0014a975b369ecb27bd04f92e9f3456b9270f93c1b6b" } ], "vtxinwit": [ - "304402202e643f06944051b767825cf78f515b2b29bc39d49117c5990944e1d4cebad15a022030168dffcf26b60e87c3b329dc2e43af0f3e49e75830d08216e9faa61dc4948c01", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "304402200fbcf7fc5e816978d94588813cc152e76286e8196df1bfb97f5c03884eb1c70802207759b5d1e4e22e3a8a3c383b82c71a843045a0cfcf503dd577a54f823923f15d01", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "3044022069c0acfbd7492934c434bbae257e5a350c795f05cbc86c0a306c2ad08a614f940220043add9a97586d503943b68e51592213cff75f50159ff53c2f91517961baa68701", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "304402205284d9a7b4679b1c50d5331465f195260b44147d4b1eb06fe37cbfe1cb1e12ae022041e6022e54961d10dcd15fec4e3b0b3b659f3664a1ed060e177576ea1686404e01", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "3044022063135cb41fab8e6d424388b0918bd2ab75f04f89d256aa91d5c128066703a7f7022065beec359e9b44be39a32a527f4944b8309e4a7ca797daaa45510707596109c301", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396", - "304402203feb07134a699051f22de015336f5487c5c9476b59a8f8b601c34690f80296a8022051365b16f6cc94fd219f74388f55b2ae2be81ff366abb7b81c763ef0e60c0db301", - "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396" + "304402203485144733f1824530da59622db88f614c34468ed717b5ef67fd062791e78d5c0220215dadc4f4754f66835b2b047a3f1c48c87c877b443ddf6241fbc24f892b715a01", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "30440220246a9dc6f8bb8671e4a7ae06a6192faf92d83744a5e366b07c8c93a1205da47f02201da75cbc12426fa26feae74ebd31794cc8c2d18ebcd64c55903643c16e11f0e901", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "304402204b48ff6a9417ef1e82126dad83aac46fa9140ea6575df9d97952438d73d421fa022018f708ecfa289fe1f57de28ba1627f17ee7b062a8b491a9b5c50569853c1dc1901", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "3044022036d69e24a5d3d4084d31f0d2fcb0dcb40075e635078958b7783823347c49283d022060653bb0dfce8e0fe36d2452e0f141290078ff24a526113fbe53b9af36455b5e01", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "304402204872ba18b969b5bed604d6ada62279c47fa7eac105fd488222a4e70cd2699cd702203825599d13c9e66162cf3f6ecfd1871477945c82d6de543ac4235a34824b898201", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", + "3044022061c5ae08ef065dba17d2e93baf083d63287351cd806c8df307164c423e549c3e02202dc41850b5de66f69ff40b29c6e7f8127730e8b95838da3d09d6d549f775eacf01", + "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" ], "lock_time": 0, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", - "tx_id": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143" + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_id": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -926,7 +926,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -946,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "44cc463e071f1f44bf86723e3c57a5ef93d2fc6d3e15e7460a093eda901fae94", + "hash": "d5a3d729312d3abe8dedf46966c31dc2cc31e10b3265e70144d09d67e87d11cf", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2efeaad1af03cb3fdc535ed32a2246222bc2a21f24efb79302af771bc7945ca930438f92934152772e59bbd192caf9" + "script_pub_key": "6a2e192c9ea723d0209741794735d6fd4e1dcbfe150c64859968ba76773d68419a760e9d5530faede7c0356fec43aa45" }, { "value": 4949930546, - "script_pub_key": "00146f39181fc575a9ce988820bf086df2f28876f18e" + "script_pub_key": "00142f17c5b300d912108769616091ec2d7d53c91a73" } ], "vtxinwit": [ - "30440220175a5b04dfef096bbdb5514556dc661879a847938c2e906767f86eea3fe4db1e0220615e1163932cc67523ab998b338d2586c4bb3536ba91ffb01213a25a7a4a46d901", - "029876b55e1a6e3f2158812d12e92b9e16d591fdc60e690025006f83ed8c3523ef" + "30440220265878f34bd61da70af7568f3386ca5ace2dfffc834494289ae2340aaecd6b3302203fbc8982fbf9bdfc0705f97bc3fe3758edab34dea77f27426b9436266e5e282c01", + "02b6527bd925a27be267b6d0029274d1b083d226181f44cf9d6b2a040d8418605b" ], "lock_time": 0, - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", - "tx_id": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c" + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_id": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -1015,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", - "block_time": 1730910820, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_time": 1730977733, + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 713, @@ -1083,14 +1083,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1101,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 712, @@ -1112,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1124,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1151,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 710, @@ -1161,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 213, - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "msg_index": 1, "quantity": 2000000000, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", "status": "valid", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1178,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 709, @@ -1193,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 713, @@ -1207,14 +1207,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1225,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 712, @@ -1236,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1248,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1275,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 710, @@ -1285,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 213, - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "msg_index": 1, "quantity": 2000000000, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", "status": "valid", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1302,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 709, @@ -1314,10 +1314,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1338,10 +1338,10 @@ }, { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1369,27 +1369,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1425,16 +1425,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1444,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 709, @@ -1456,12 +1456,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1471,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 706, @@ -1483,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": null, @@ -1512,16 +1512,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1531,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 709, @@ -1543,12 +1543,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1558,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 706, @@ -1570,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": null, @@ -1600,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1621,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1642,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1663,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1684,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1705,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1729,17 +1729,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_hash": "081602a7fd48032dd86d348b23ad1b7fc7d3b159d59e98d66cc1063a6e95d8ff", - "block_time": 1730910803, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_time": 1730977721, + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511:0 4 ", + "utxos_info": " 1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1762,7 +1762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1781,17 +1781,17 @@ }, { "tx_index": 77, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_hash": "639bd2350bd2381fe7b14309c56cb5c4b7d81bc250632cdd34c42929f6f336f4", - "block_time": 1730910799, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", + "block_time": 1730977716, + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18ec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a73c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3:0 4 ", + "utxos_info": " 4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1814,7 +1814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1833,17 +1833,17 @@ }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", - "block_time": 1730910794, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_time": 1730977712, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143:0 4 ", + "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1851,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1866,7 +1866,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1885,17 +1885,17 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "block_hash": "176a647717731b18164076a79450ad56414b60bdf40c7f9d599c7f128ee47bb1", - "block_time": 1730910781, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", + "block_time": 1730977699, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c:0 4 ", + "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1903,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1918,7 +1918,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1937,17 +1937,17 @@ }, { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_hash": "6dcba0ec0db5de53a5587115b141f3fcd267a886f4aac60d125beac94edef021", - "block_time": 1730910778, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", + "block_time": 1730977696, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "supported": true, - "utxos_info": " 1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e:1 2 ", + "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1955,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -1981,15 +1981,15 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1999,9 +1999,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 692, @@ -2009,27 +2009,27 @@ "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 691, @@ -2037,42 +2037,42 @@ "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 690, "event": "DEBIT", "params": { "action": "mpma send", - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "block_index": 211, - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2082,9 +2082,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 689, @@ -2093,17 +2093,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "quantity": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -2114,22 +2114,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2139,22 +2139,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "block_index": 213, - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2164,30 +2164,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730910824.0825016, + "block_time": 1730977737.9578004, "btc_amount": 0, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "destination": "", "fee": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, - "utxos_info": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c:1 2 ", + "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -2201,7 +2201,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -2210,7 +2210,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2218,14 +2218,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2233,14 +2233,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2248,14 +2248,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2270,7 +2270,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2278,7 +2278,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2291,7 +2291,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2313,16 +2313,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2334,16 +2334,16 @@ }, { "block_index": 210, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2355,16 +2355,16 @@ }, { "block_index": 210, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2376,16 +2376,16 @@ }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2397,20 +2397,20 @@ }, { "block_index": 206, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "event": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2424,16 +2424,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2445,20 +2445,20 @@ }, { "block_index": 209, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2466,16 +2466,16 @@ }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2487,20 +2487,20 @@ }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2508,20 +2508,20 @@ }, { "block_index": 207, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "event": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910778, + "block_time": 1730977696, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2540,9 +2540,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "36c357d7e1d0a2e769b2fc03ed8a9fd93c47d4a23ce089cccaf5385afb712981", + "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", "block_index": 137, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2550,7 +2550,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910503, + "block_time": 1730977381, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2561,14 +2561,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "f8fae0bb5b5b7129f90608f864e3542de55ec5dfc07e45723c520012c09ea813", + "tx_hash": "9338289b6df5af85664673ef663dda3aff22cf63613ac17518ed936657c8e187", "block_index": 112, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730910399, + "block_time": 1730977287, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2580,10 +2580,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2591,7 +2591,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2604,10 +2604,10 @@ }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2615,11 +2615,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2628,10 +2628,10 @@ }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2639,11 +2639,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2652,10 +2652,10 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2663,7 +2663,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2676,10 +2676,10 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2687,11 +2687,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2706,10 +2706,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "bc1fb6b2c8f2c8793fe11bcdf9e588b70dac18d0a2e35cc8f8652621c0f65f9b", + "tx_hash": "73934ba7bb254b84d853cf5e30149bd1e8b98e8b0fe256aad3c963b6a35271b7", "block_index": 151, - "source": "7e7ce9bc387a5e46c78bb053b5c3535cadaea27ea50722b08e67587d19fd1961:0", - "destination": "bcrt1qeg2h6zgsgesvmphj87pmfds0k4c3y3c083wssk", + "source": "1244595298ba8bc22f6e62a5ff74f93b0fb7ac8af574550bb9879062dc586a9b:0", + "destination": "bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2717,11 +2717,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910556, + "block_time": 1730977441, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2736,10 +2736,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2747,11 +2747,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2760,10 +2760,10 @@ }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2771,11 +2771,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2784,10 +2784,10 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2795,11 +2795,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2808,10 +2808,10 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2819,11 +2819,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2832,10 +2832,10 @@ }, { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2843,11 +2843,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910778, + "block_time": 1730977696, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2867,9 +2867,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2878,7 +2878,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2889,7 +2889,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2906,9 +2906,9 @@ }, { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2917,7 +2917,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2928,11 +2928,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -2950,9 +2950,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2972,7 +2972,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2993,19 +2993,19 @@ { "tx_index": 66, "dispense_index": 0, - "tx_hash": "4130679c71ec8784d5e9c7fd2a1b07f697bc681c55aff9a001649d9d855eb7e5", + "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3013,7 +3013,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3028,11 +3028,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -3042,19 +3042,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3062,7 +3062,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3077,7 +3077,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3091,19 +3091,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3111,7 +3111,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3126,7 +3126,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3146,19 +3146,19 @@ { "tx_index": 66, "dispense_index": 0, - "tx_hash": "4130679c71ec8784d5e9c7fd2a1b07f697bc681c55aff9a001649d9d855eb7e5", + "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3166,7 +3166,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3181,11 +3181,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -3195,19 +3195,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3215,7 +3215,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3230,7 +3230,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3244,19 +3244,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3264,7 +3264,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3279,7 +3279,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3299,19 +3299,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3319,7 +3319,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3334,7 +3334,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3348,19 +3348,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3368,7 +3368,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3383,7 +3383,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3403,19 +3403,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3423,7 +3423,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3438,7 +3438,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3452,19 +3452,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3472,7 +3472,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3487,7 +3487,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3506,16 +3506,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -3526,14 +3526,14 @@ "result": [ { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -3548,20 +3548,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c61a766eeabb62caef929b472a8daba6d93bdb0c24817154f276039630297cd1", + "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -3576,20 +3576,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910608, + "block_time": 1730977496, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "ad684a9a35e5af8a00954ac4fbec373e053a6495909f686129ef357afe82c719", + "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -3604,20 +3604,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730910605, + "block_time": 1730977492, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "552f035bafa1bee5d90f6d55985eacbd1883829e7130070ae383963b57b70683", + "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -3632,20 +3632,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910591, + "block_time": 1730977478, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "04c42025f6bdb16978697cd06a04950af6dc2203ee95ddd44a7c1b10e1501ee4", + "tx_hash": "6b026e21935f51c6de8a8490834fefe1c74f80f5d347abc80481b3a9f67cfea7", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -3660,7 +3660,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910586, + "block_time": 1730977474, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3674,8 +3674,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -3683,16 +3683,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -3700,16 +3700,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -3717,16 +3717,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 40, @@ -3734,16 +3734,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730910495, - "last_issuance_block_time": 1730910499, + "first_issuance_block_time": 1730977375, + "last_issuance_block_time": 1730977378, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 19, @@ -3751,8 +3751,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730910471, - "last_issuance_block_time": 1730910492, + "first_issuance_block_time": 1730977358, + "last_issuance_block_time": 1730977370, "supply_normalized": "0.00000019" } ], @@ -3765,8 +3765,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -3774,16 +3774,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -3791,16 +3791,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -3808,16 +3808,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 40, @@ -3825,16 +3825,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730910495, - "last_issuance_block_time": 1730910499, + "first_issuance_block_time": 1730977375, + "last_issuance_block_time": 1730977378, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 19, @@ -3842,8 +3842,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730910471, - "last_issuance_block_time": 1730910492, + "first_issuance_block_time": 1730977358, + "last_issuance_block_time": 1730977370, "supply_normalized": "0.00000019" } ], @@ -3856,8 +3856,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -3865,16 +3865,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -3882,16 +3882,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -3899,16 +3899,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 40, @@ -3916,16 +3916,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730910495, - "last_issuance_block_time": 1730910499, + "first_issuance_block_time": 1730977375, + "last_issuance_block_time": 1730977378, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 19, @@ -3933,8 +3933,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730910471, - "last_issuance_block_time": 1730910492, + "first_issuance_block_time": 1730977358, + "last_issuance_block_time": 1730977370, "supply_normalized": "0.00000019" } ], @@ -3945,17 +3945,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "block_hash": "18c63449351b770c4091406c771053da5f713ccff6ad904e047813806d4fcb60", - "block_time": 1730910794, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_time": 1730977712, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143:0 4 ", + "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3963,14 +3963,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -3978,7 +3978,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3997,17 +3997,17 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "block_hash": "176a647717731b18164076a79450ad56414b60bdf40c7f9d599c7f128ee47bb1", - "block_time": 1730910781, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", + "block_time": 1730977699, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea806e83b0d0adc47e261fae6106611e97ec87e81b1f806f39181fc575a9ce988820bf086df2f28876f18e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c:0 4 ", + "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4015,14 +4015,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4030,7 +4030,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4049,17 +4049,17 @@ }, { "tx_index": 74, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_hash": "6dcba0ec0db5de53a5587115b141f3fcd267a886f4aac60d125beac94edef021", - "block_time": 1730910778, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", + "block_time": 1730977696, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "supported": true, - "utxos_info": " 1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e:1 2 ", + "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4067,12 +4067,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4083,17 +4083,17 @@ }, { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_hash": "35b053d0584ef60bb9522c2dd2845700cda4a89527f1b2c78369b9aa980421e0", - "block_time": 1730910773, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "37bc44a99f26fbd26b4b14d64ea8dab4699df6d48eb5e9108cdf9ffbcd39439f", + "block_time": 1730977691, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c:1 2 ", + "utxos_info": " 71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4118,17 +4118,17 @@ }, { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 199, - "block_hash": "305e6a104fc597b886fa1cdf8c9276651d285a4daa27780a6a348d4b80af81c1", - "block_time": 1730910737, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "block_hash": "00639b2a2a9fc6eda899e9a6f5b903034d943a43a30e64789011fe3b4a005761", + "block_time": 1730977647, + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2:1 2 ", + "utxos_info": " 9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4145,7 +4145,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4163,20 +4163,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4198,9 +4198,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4217,7 +4217,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4245,9 +4245,9 @@ }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4264,7 +4264,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4292,9 +4292,9 @@ }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4311,7 +4311,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4339,9 +4339,9 @@ }, { "tx_index": 61, - "tx_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "block_index": 210, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4358,7 +4358,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4391,10 +4391,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4419,7 +4419,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4428,10 +4428,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4456,7 +4456,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730910495, + "block_time": 1730977375, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4468,10 +4468,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4496,7 +4496,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730910471, + "block_time": 1730977358, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4508,10 +4508,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4536,7 +4536,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730910468, + "block_time": 1730977353, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4548,10 +4548,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4576,7 +4576,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4594,22 +4594,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4618,22 +4618,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1cec802154e9a56a03db6997744d3c9313fc07accec76f6f3fd347834b137f63", + "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910492, + "block_time": 1730977370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4642,22 +4642,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "51f7e9ca2473857a754cc3f88077bc63de5c7d481055d124fa1cac4e70d17e61", + "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910489, + "block_time": 1730977366, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4666,22 +4666,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "89a16fee2fcda5975a75adba15c36eda58a497a897e23e7eda9a55688b95793e", + "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910475, + "block_time": 1730977362, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4690,22 +4690,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aa1fc443481552ae6ca4a043e6fb939dc625eb0ae0c5ffda0224ffd6a68de59f", + "tx_hash": "9c1ce9680f0043f68b449f91e332e914fbbda1f815b93638da08c6901354ff60", "tx_index": 15, "block_index": 127, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910456, + "block_time": 1730977344, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4714,22 +4714,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4744,22 +4744,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4776,8 +4776,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4790,12 +4790,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -4811,7 +4811,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4824,7 +4824,7 @@ "btc_out": 0, "btc_change": 4999985771, "btc_fee": 14229, - "rawtransaction": "0200000000010172c4f4156a259dea3f3a710a82eea7a0b8ec1bcc6bfba5c08284965891cbc75e00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff0200000000000000002b6a29209690385f01807806ff5b956dfc5ae4042aa03f917b08f5cee1a7d7855df22f8086872111331865816bba052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101c158f0eff2350f861b62cf558dc0e3ef5dbc4f943fba24378588c5f84545108d00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff0200000000000000002b6a29f3dfe7e96c5baf4576771d1d6ea133724796a07a4ed01d6bcd9766d9c19d16527dd356d14bf25031486bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4842,24 +4842,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "order_match_id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "data": "434e5452505254590baebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980890, "btc_fee": 18110, - "rawtransaction": "0200000000010117ba16c9f7c9fe9f394cf6323bdf3404656f1e6a2aebf8b1fedf75649dcf1e1f00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff03e803000000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d00000000000000004b6a49a43d7df89758ca5aa871805d9904f330f0abee07829ce861ad8fd9a8def919802ee3ce4a11cd44ceb24d3a9dcff48271edde5144ef9268a155f7535580602b8f1d4b99ee0b4d6c36a45aa7052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "020000000001012d58a19d1cedccbcdbd8ef8fff318dfd2e5cd28f390e154c3a45932ef76329cb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e803000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b00000000000000004b6a4909d2dd0c2007d43911c8aea7cb28b1079c0205b6cd2e9a74055b419b3b654595ff11f46c29e676fe6014b94ee75906c9ea1455c033bd1502673c080a2582beb5f597c315f4d4931cb65aa7052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "order_match_id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "status": "valid" } } @@ -4868,7 +4868,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4879,28 +4879,28 @@ "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "020000000001019cbbe1f00127aa538ece4e3cbca015bf5ef5cd626e251d74cb8f0798bb833c8200000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000" + "rawtransaction": "020000000001014e868381a6790213502baa07d4980cadf9a3c5ce2e71c47bc48ebb4793b2b7e200000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "offer_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "data": "434e5452505254594659e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904679, "btc_fee": 14229, - "rawtransaction": "020000000001018a95035c54653982ba9dd49b0359d998ebbd05031ee00ffc04d6fa7acd66712301000000160014b4fb2b0f61918b8154a9164c4fbc8c40c6ff4f19ffffffff0200000000000000002b6a29f0a8efaa3e8cf8513f3571414808371490950073301852c55746ee992a41c9ec370d77fb6b81f3492d278d092701000000160014b4fb2b0f61918b8154a9164c4fbc8c40c6ff4f1902000000000000", + "rawtransaction": "02000000000101f3a3f2abf660a05264628a5eba5c06cfb731652e97a6b70e1a4e7ed97a46e959010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dffffffffff0200000000000000002b6a2927fcbf4eb3cff3769830b7339ecf1ab04935ef3c83db0128f93e55c7ada85efa5bc0bacc73b308982c278d0927010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dff02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "status": "valid" } } @@ -4909,7 +4909,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4929,7 +4929,7 @@ "btc_out": 0, "btc_change": 4999986300, "btc_fee": 13700, - "rawtransaction": "02000000000101d0d12ef275fa2b0a24593018355de95bfcd1fbdc07783303f6ac968a27c1011b00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000226a20a0891d2a88e2dd3d3f733469c4a9fb5fb583d83c4f24c209224a0e6a7a5991577cbc052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101a43e72f572060f4876a971b5312d46dec47a79c5791f8967bbfd9f3fce81819600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000226a207af07edddbfb3964ea2050bb90ea1af854d3a450d8f523a63b8a582a6153305d7cbc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4945,7 +4945,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4970,7 +4970,7 @@ "btc_out": 0, "btc_change": 4949859611, "btc_fee": 14288, - "rawtransaction": "02000000000101a499ae4b2770a2581421dae8e8008efbadf910e9290d1bd1ec4ef68ee9558d10020000001600140e1eba78449b7f8e4a249524a9607a698bc917b8ffffffff0200000000000000002c6a2abac12bab090fff40bdceca7ad478092e6a60b990dc317529208b81830faa708af557b69436ae930646791bdd0827010000001600140e1eba78449b7f8e4a249524a9607a698bc917b802000000000000", + "rawtransaction": "02000000000101bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf50200000016001427db96e897929853c6ebe6127d77a4882445084bffffffff0200000000000000002c6a2a3c8c8fb35dbad902c9ff6bf4dd47ad2937e001f890554e3b57ce5bf6a2b2df98d4f05ed72ba3670efb3d1bdd08270100000016001427db96e897929853c6ebe6127d77a4882445084b02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4992,7 +4992,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5000,7 +5000,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5019,7 +5019,7 @@ "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "020000000001011f549b8f5b56341e78a7e99fdc0b4866d19ef8cf83acd8e3934d6505430f311900000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000236a212c11305a18b003f87dfe90f61788e8627b8551f24da4200e5aac55a7c58657e33042bc052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101668815b074db819426b51ae36179f9fafc4803f48bd6420713f67ca1e61da61800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219f95843f5dda7681968fe685f1fe39f327ae9215be39b171de5c34f1f02c3334b642bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5036,10 +5036,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "transfer_destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "lock": false, "reset": false, @@ -5053,7 +5053,7 @@ "btc_out": 546, "btc_change": 4999983696, "btc_fee": 15758, - "rawtransaction": "02000000000101b48ea933a9f8fae5409881878a3ab46a6944278d8b2c0188a08a481bf2121e9700000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff032202000000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d0000000000000000236a2148f8acd5e44372a1ba60aa7fd7f78c2a75ee4c7fd12b91fa21769b42846a31aa6550b2052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101b554c2e655bc234e4aff2d8274030dcde31ff5760d10ee8bc61f415e63514e9e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000236a21efc368468f681c93cad7e47914392488a41d48dca0f7c6e47d39c76644f194349750b2052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5078,16 +5078,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", 1 ], [ "MPMASSET", - "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", 2 ] ], @@ -5096,26 +5096,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d80c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a975b369ecb27bd04f92e9f3456b9270f93c1b6b80aefb93e5317e3e7bc25fbda34dc62dc9b5ab704740000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945317, "btc_fee": 52683, - "rawtransaction": "02000000000104cbdbf440b190888caf7ef7aaaf2c3370487979f0589c07b6988ee6f4bfe45c0100000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff66e20019ce32a740a86d30dec79427b98b4802d3579efa56b95a1928081baa0f00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dfffffffff1d6ad9747cbf0ae2df95dcbd98065c75a6ea73b9b55ff4d9e1ee16a0633786e00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff277e231a8cb333280c7b5ee1b5f53372c987942b5944c728870059df4b9a051100000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff03e80300000000000069512103640551fb2e247928d7acecb0468519aed62c725b1010be2101afd82695fae4ba2103c75dd7e258729941bfc7e0fb2c0192720fd7bb40c6c7b698c41a34f4fb285fdd2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653aee803000000000000695121027b0551fb2e247928d77fecb2c622e5d83da779bb9c6e494453e1e56b37a1fbc3210331305620274922fd44698b49cd125ec77e24c99c1d5d5cd8c41a31179ba09b0e2102de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c739653ae65f216a804000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000002000002000002000000000000", + "rawtransaction": "02000000000104f983b24cdaf7fd05960f39fc7ffc3c91db6e09e76165925358a6a9ef98378c8800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffffefee148baf747bebe0180349e1f8122493253ec497bed9b169c78a476caa1afb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff71514a9311b573428fa6df525d18dacfb6079c6f70543794ca948f381f28039f00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff08aff0edc5140d16dc62fe19734437c5960ee379b8ba626e26dcadd1d5d516a400000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e8030000000000006951210301ec4ed558c01cdbf3d9f8601f6f83700bdc93a6b1d072e446441f48a84ba0ad2102f7448423b0eb6b21ea6d028c31753ebef198d3a8a1f7c68907a8f7627490cd5e21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee803000000000000695121031eec4ed558c01cdbf30af8629fc6f6c3621421dd619fe00db50574dad8b29cff2102ec2f058d4b788e109453794e6ec89df337b51a1d0a8781c907a8f281141809bd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae65f216a804000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5127,7 +5127,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5145,7 +5145,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5159,7 +5159,7 @@ "btc_out": 0, "btc_change": 4999985183, "btc_fee": 14817, - "rawtransaction": "0200000000010193c64e48caccd8ec22c743983a7f526b5c922bb06b2cd3e4eb7742a6f21047e100000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000356a33ebde0a2f23f6fa9fc2fe455d8c9be6f73b5bebbfc78af8564545779067111ca40b448ddb5cb76f634709ea0987d145f4ed67f61fb8052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101a4880f217851d5755e542253fc0c0a843e1e4c11f68e6fb98333a783c78dc58800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000356a337b6b94a943206ff17006fde5b3e508b3bba1015d06c8afda1764d188fda077b659183f217c333c42fa085e6bfc76cc36e2c5fb1fb8052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5181,8 +5181,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5199,19 +5199,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea", + "data": "434e54525052545902000000000000000100000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985477, "btc_fee": 14523, - "rawtransaction": "020000000001013b17947f4689ac144d6fb5949a7c4835ae5209d76ffa49b55f58fac93057d4a600000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000306a2e5c58f37e677705deee23e32efc2606c9c60e0b326b5ad776228445f547a14f0c6f485f7bde414538250c6382d04545b9052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "0200000000010177151862c1be96e7dc0ccb5e585d8cb3caf28441a6f219358b05b5d84aa2afe600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000306a2ef312b061dfba1b217147ac2ecbc5f331390c118609b7ef84fa4bb7b755642aa42e84fe4b752630ef949f6740e34645b9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "quantity_normalized": "0.00001000" } @@ -5221,24 +5221,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea07ffff", + "data": "434e5452505254590480aefb93e5317e3e7bc25fbda34dc62dc9b5ab704707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "020000000001014f0a42ccdc5b483f1c0095bbe4ac13e528b5132e9a714a866314df7d1254e5ff00000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000236a21dddce9c9e1ea2bf92f3afbaeddd35df6b776bd3513312f8c9e0ffea765941b7d5242bc052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "020000000001019fb504094c0ff9b4e9927e1e274fa80896c6ab19c482aafe32a9284296b06e5e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219fb4153f246ef01c1e700548290790380e9ec14961ffb1dfb46d3c00d7b1f049db42bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "flags": 7, "memo": "ffff" } @@ -5248,8 +5248,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "quantity": 1000, "skip_validation": false }, @@ -5259,7 +5259,7 @@ "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "0200000000010111852f7b1d110bd52e4cd306b49a98783491c5e88efb855b8649159d28ee340703000000160014c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aeaffffffff03e8030000000000001600146f39181fc575a9ce988820bf086df2f28876f18e00000000000000000c6a0ae7a3a2fcb43cf8c3bca07325082701000000160014c27f3bbbbcfbae6bb2e113ccb571f372dcdb9aea02000000000000", + "rawtransaction": "02000000000101331ef5cb6ae373cad9ece34c1260099b40e4656b3aa416f0744ab33f8dd7f01f03000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047ffffffff03e8030000000000001600142f17c5b300d912108769616091ec2d7d53c91a7300000000000000000c6a0add8bd88dfa16b908ac7f7325082701000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab704702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5272,7 +5272,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5304,7 +5304,7 @@ "btc_out": 0, "btc_change": 4999985418, "btc_fee": 14582, - "rawtransaction": "02000000000101188c2fcd49f3694ac14747f66ab56484a4c3be291292524ceaa2b8bb0b0d8e0700000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000316a2f3f8f1f16864fde4916f5f7303fc2d715a21bf590da14413b823429e034e425d5ed02b2a6cd00dfbf6557b5cb9a970a0ab9052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101dfb1a602f3b4593d3b34f7cc1b1966b846363ab5dc7387583085b0bbf08e1f2e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000316a2f98ab04bad4ae1a5de48266cd6ba2e87537608a600e3c4f5e4c33fa61eb35867704ef27500b0d56da43787d36d882330ab9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5339,14 +5339,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5358,7 +5358,7 @@ "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "02000000000101fdb038f1fdcc78c9efc3f681086475f3ad9c21bf18267b92d98c3b8335268dc300000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff020000000000000000166a14a3340067d33ec7f0f863d7d07201e65d7f1c8f743ebf052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "0200000000010139b307b9db1b8871639834a69b77f2b9efbdab54b392e6f5878bb9fcf56525f800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000166a141407fa2a8cb7beb8d113f685fe4c5a3c30b6434a3ebf052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5373,7 +5373,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5393,7 +5393,7 @@ "btc_out": 546, "btc_change": 4999984578, "btc_fee": 14876, - "rawtransaction": "02000000000101de33a385003b94030e0d9cdb26d46321a6f5dd5af9b14a0d7cf9206cc8c781d000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66dffffffff032202000000000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d0000000000000000146a12cb1f0cab0b8a589bb8716c572b037f3e1dbbc2b5052a01000000160014a7fc76ebaf0be08c7ef765524a3d4da25b1ff66d02000000000000", + "rawtransaction": "02000000000101d83020d40a6509ae7d3e019823c4563737756c35d661b0f19b3cd578c87fcac100000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000146a123111edb1f3347cfe5c50900a4daf6b148754c2b5052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5409,22 +5409,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171356c37386436613070307367636c68687634667935303264356664336c616e6436396e647937", + "data": "434e545250525459666263727431713439366d783630766b666161716e756a613865353236756a7772756e63786d74386333797a36", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945423, "btc_fee": 25577, - "rawtransaction": "02000000000102a499ae4b2770a2581421dae8e8008efbadf910e9290d1bd1ec4ef68ee9558d10000000001600144a31c801448088baeea42a665a19a7652de88028ffffffff4a23d7dfbf3bd7a0dcd1f4db0acfe4857949f1130b1623ac9f4686878404cb86010000001600144a31c801448088baeea42a665a19a7652de88028ffffffff020000000000000000376a35bac12bab090fff40d7aca908a049781b075781f4ea50455af8f8e6e063c218ff2931cfa1069cf733441dc25755890e3ae2b66465654f2c0a27010000001600144a31c801448088baeea42a665a19a7652de8802802000002000000000000", + "rawtransaction": "02000000000102bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf5000000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffffbb54ed2e6fc9c8665821c316af1cff5dba90c2be589b5062355140e4597df20e010000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffff020000000000000000376a353c8c8fb35dbad902a39d0886a976dc1d0fd66c80a6653853d9af3a87ccc7b5fa04956be51dd60d79ed48c69476d401b6a9f31583064f2c0a27010000001600149e334aaca9774527f019ba31459ddc70b7bfa49c02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7" + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6" } } } @@ -5435,8 +5435,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -5444,16 +5444,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730910773, - "last_issuance_block_time": 1730910773, + "first_issuance_block_time": 1730977691, + "last_issuance_block_time": 1730977691, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "owner": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "owner": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false, "supply": 100000000000, @@ -5461,16 +5461,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730910745, - "last_issuance_block_time": 1730910745, + "first_issuance_block_time": 1730977654, + "last_issuance_block_time": 1730977654, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -5478,16 +5478,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730910586, - "last_issuance_block_time": 1730910605, + "first_issuance_block_time": 1730977474, + "last_issuance_block_time": 1730977492, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "owner": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "issuer": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "owner": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "divisible": true, "locked": false, "supply": 100000000000, @@ -5495,16 +5495,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730910583, - "last_issuance_block_time": 1730910583, + "first_issuance_block_time": 1730977471, + "last_issuance_block_time": 1730977471, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 100000000000, @@ -5512,8 +5512,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730910543, - "last_issuance_block_time": 1730910543, + "first_issuance_block_time": 1730977431, + "last_issuance_block_time": 1730977431, "supply_normalized": "1000.00000000" } ], @@ -5525,8 +5525,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "owner": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false, "supply": 10000000000, @@ -5534,15 +5534,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730910436, - "last_issuance_block_time": 1730910447, + "first_issuance_block_time": 1730977324, + "last_issuance_block_time": 1730977336, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5550,14 +5550,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5565,7 +5565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -5578,7 +5578,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5600,9 +5600,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5619,7 +5619,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5647,9 +5647,9 @@ }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5666,7 +5666,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5694,9 +5694,9 @@ }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5713,7 +5713,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5741,9 +5741,9 @@ }, { "tx_index": 61, - "tx_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "block_index": 210, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5760,7 +5760,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5788,9 +5788,9 @@ }, { "tx_index": 53, - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5807,7 +5807,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5840,13 +5840,13 @@ "/v2/assets//matches": { "result": [ { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5860,7 +5860,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5880,13 +5880,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 53, - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5900,7 +5900,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5920,13 +5920,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff_586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", + "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", "tx0_index": 50, - "tx0_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 51, - "tx1_hash": "586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5940,7 +5940,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5960,13 +5960,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5980,7 +5980,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6007,20 +6007,20 @@ "result": [ { "block_index": 196, - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "event": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6028,20 +6028,20 @@ }, { "block_index": 125, - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f3ec0f15f897d91e5d97ddbef3fa6b759cc99ee55164a40aa053f37b7fc91a16", + "event": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6049,20 +6049,20 @@ }, { "block_index": 124, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6070,20 +6070,20 @@ }, { "block_index": 124, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "event": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6095,16 +6095,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6122,12 +6122,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6139,16 +6139,16 @@ }, { "block_index": 211, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6160,16 +6160,16 @@ }, { "block_index": 210, - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6181,16 +6181,16 @@ }, { "block_index": 209, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6202,16 +6202,16 @@ }, { "block_index": 208, - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6234,14 +6234,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f3ec0f15f897d91e5d97ddbef3fa6b759cc99ee55164a40aa053f37b7fc91a16", + "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6256,20 +6256,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6284,20 +6284,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6312,20 +6312,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -6340,7 +6340,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730910436, + "block_time": 1730977324, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6352,10 +6352,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6363,7 +6363,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6376,10 +6376,10 @@ }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6387,7 +6387,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6400,10 +6400,10 @@ }, { "tx_index": 77, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6411,7 +6411,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6424,10 +6424,10 @@ }, { "tx_index": 76, - "tx_hash": "63188dc5ddff51178deed719b188f17645f43d77dd5d178f37fe3a32ddf19143", + "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", "block_index": 209, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6435,7 +6435,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910794, + "block_time": 1730977712, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6448,10 +6448,10 @@ }, { "tx_index": 75, - "tx_hash": "214f5fa536e6c9133314674ecb5537a7956eed520a0c97e57758d18548191f8c", + "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6459,7 +6459,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6478,9 +6478,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6489,7 +6489,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6500,7 +6500,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6517,9 +6517,9 @@ }, { "tx_index": 29, - "tx_hash": "6a620ed7bf9ad992dd13733145a4266051f97cbc9ce7dbd20e300e03e710f002", + "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", "block_index": 142, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6528,7 +6528,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6539,7 +6539,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910521, + "block_time": 1730977400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6556,9 +6556,9 @@ }, { "tx_index": 30, - "tx_hash": "eef1730a299542c77403b22b8a733340eff92d4f9bdf9d2649dbdaeb3df99a4a", + "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", "block_index": 150, - "source": "mgfCkp2bexoY8bqX4Z6PHNhsAkSPUQTqUm", + "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6566,10 +6566,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5a68d3399a016910d765b83b2d65451be27edf4063a6e401d711d0f2a98005dc", - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -6578,7 +6578,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910551, + "block_time": 1730977438, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6595,18 +6595,18 @@ }, { "tx_index": 33, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6617,7 +6617,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6639,9 +6639,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6650,7 +6650,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6661,7 +6661,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6690,7 +6690,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6698,7 +6698,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6707,7 +6707,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6715,7 +6715,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6724,7 +6724,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6732,7 +6732,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6741,7 +6741,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -6756,27 +6756,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6791,7 +6791,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6805,27 +6805,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "0b2dbbd56fa23e808a119d0236c4a50cedcf23b47dd0869367ad563cbe35cbed", + "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", "block_index": 147, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6840,7 +6840,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910539, + "block_time": 1730977428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6854,19 +6854,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6874,7 +6874,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6889,7 +6889,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6903,19 +6903,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6923,7 +6923,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6938,7 +6938,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6961,10 +6961,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6989,7 +6989,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7007,22 +7007,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f3ec0f15f897d91e5d97ddbef3fa6b759cc99ee55164a40aa053f37b7fc91a16", + "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", "tx_index": 13, "block_index": 125, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7031,22 +7031,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2", + "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", "tx_index": 12, "block_index": 124, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910444, + "block_time": 1730977332, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7055,22 +7055,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7085,22 +7085,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "ca5295c79f40c013ad7694ecc6fe53ead342a90c72ec5f1de65c38f8f2936ed6", + "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910440, + "block_time": 1730977327, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -7116,9 +7116,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7135,7 +7135,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7163,9 +7163,9 @@ }, { "tx_index": 53, - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7182,7 +7182,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7210,9 +7210,9 @@ }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7229,7 +7229,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7257,9 +7257,9 @@ }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7276,7 +7276,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7304,9 +7304,9 @@ }, { "tx_index": 61, - "tx_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "block_index": 210, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7323,7 +7323,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7356,9 +7356,9 @@ "/v2/orders/": { "result": { "tx_index": 79, - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -7375,11 +7375,11 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730910807, + "block_time": 1730977725, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -7405,13 +7405,13 @@ "/v2/orders//matches": { "result": [ { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7425,7 +7425,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7452,15 +7452,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "btc_amount": 2000, - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "status": "valid", "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "btc_amount_normalized": "0.00002000" } ], @@ -7471,9 +7471,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "block_index": 188, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7491,7 +7491,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730910696, + "block_time": 1730977585, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7517,9 +7517,9 @@ }, { "tx_index": 55, - "tx_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "block_index": 211, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7537,7 +7537,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730910803, + "block_time": 1730977721, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7563,9 +7563,9 @@ }, { "tx_index": 50, - "tx_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", + "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", "block_index": 185, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7583,7 +7583,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910623, + "block_time": 1730977511, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7609,9 +7609,9 @@ }, { "tx_index": 52, - "tx_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", + "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", "block_index": 208, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7629,7 +7629,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910781, + "block_time": 1730977699, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7655,9 +7655,9 @@ }, { "tx_index": 59, - "tx_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", + "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", "block_index": 194, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7675,7 +7675,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910718, + "block_time": 1730977618, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7706,13 +7706,13 @@ "/v2/orders///matches": { "result": [ { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7729,7 +7729,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7749,13 +7749,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 53, - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7772,7 +7772,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910696, + "block_time": 1730977585, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7792,13 +7792,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff_586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", + "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", "tx0_index": 50, - "tx0_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 51, - "tx1_hash": "586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7815,7 +7815,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910623, + "block_time": 1730977511, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7835,13 +7835,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7858,7 +7858,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7884,13 +7884,13 @@ "/v2/order_matches": { "result": [ { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7904,7 +7904,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7924,13 +7924,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", "tx0_index": 52, - "tx0_hash": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 53, - "tx1_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7944,7 +7944,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730910696, + "block_time": 1730977585, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7964,13 +7964,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff_586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", + "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", "tx0_index": 50, - "tx0_hash": "1810d8ef786885d52ff5354423b927bdb408df99e2259879f0b67c7af58a83ff", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 51, - "tx1_hash": "586fd65c3389d1e116bb581d373bd6c71e60d223e963d3530f7ca87d612b4331", - "tx1_address": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7984,7 +7984,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730910623, + "block_time": 1730977511, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8004,13 +8004,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx0_index": 61, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx1_index": 55, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8024,7 +8024,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8069,66 +8069,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "0a9521b19c433242f528db9d924350cd09e9b12753e4a476999a3c4adac9975e", + "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", "block_index": 121, - "source": "bcrt1qscvx65qxrwg8vur6l9vw4h7fsv594s09d3r6a6", + "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730910432, + "block_time": 1730977320, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "3390add011b140e3a7df83f596f7ccd27392a4b1654279d585d09cfb74a75d13", + "tx_hash": "53f7f14701b0a6eeca9a78bd8815650adfeb66f546be001daf5f851dbf9b817d", "block_index": 120, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730910428, + "block_time": 1730977317, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "89935beeb3abcfc78481c30f1ef13ea07c0281b6a8f592128ee97bbcc24f6d8a", + "tx_hash": "92749a25d45e1f8045e905e14c23aa5a850c93b179ccee536aea18c335f3cd56", "block_index": 119, - "source": "bcrt1qmg6q8zgntqdrfzgnseles8ttnugkry5m4n2j70", + "source": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730910424, + "block_time": 1730977314, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "70d07de658c0238244fc14acb237c66186b3f3cd28e62a3955ac66480c677fe7", + "tx_hash": "ec533a9c92446574419824d1eca1b41716eaaa81aa4371b0e7bd5d71ed714f9c", "block_index": 118, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730910420, + "block_time": 1730977310, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d380602e2b33f7dcd604c85e5e65af09b68b688739b02af12fd526eebf26fde4", + "tx_hash": "10894d687d5f3cbda58d8c8d0cbef0daf82fbb5bc2f492bab4c6dee8d215a173", "block_index": 117, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730910417, + "block_time": 1730977306, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8140,9 +8140,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8151,7 +8151,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8162,7 +8162,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8179,9 +8179,9 @@ }, { "tx_index": 29, - "tx_hash": "6a620ed7bf9ad992dd13733145a4266051f97cbc9ce7dbd20e300e03e710f002", + "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", "block_index": 142, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8190,7 +8190,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8201,7 +8201,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910521, + "block_time": 1730977400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8218,9 +8218,9 @@ }, { "tx_index": 30, - "tx_hash": "eef1730a299542c77403b22b8a733340eff92d4f9bdf9d2649dbdaeb3df99a4a", + "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", "block_index": 150, - "source": "mgfCkp2bexoY8bqX4Z6PHNhsAkSPUQTqUm", + "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8228,10 +8228,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "5a68d3399a016910d765b83b2d65451be27edf4063a6e401d711d0f2a98005dc", - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -8240,7 +8240,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910551, + "block_time": 1730977438, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8257,9 +8257,9 @@ }, { "tx_index": 65, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8268,7 +8268,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8279,11 +8279,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8296,18 +8296,18 @@ }, { "tx_index": 33, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8318,7 +8318,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8340,9 +8340,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8351,7 +8351,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8362,7 +8362,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8383,19 +8383,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8403,7 +8403,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8418,7 +8418,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8432,19 +8432,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8452,7 +8452,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8467,7 +8467,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8486,20 +8486,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8520,20 +8520,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8556,12 +8556,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "event": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "tx_index": 42, - "utxo": "caa2bee50c1f311c9aa2d23c9787adf2c2b31bc7c517b1b703ccbd4e8942d5b0:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "utxo": "e250eb1d2f9fed96de5b384fbc6891852d5c5ba40f67a488be3b7e9d1d58ee07:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "confirmed": true, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8582,27 +8582,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 714, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 713, @@ -8611,14 +8611,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8629,9 +8629,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 712, @@ -8640,9 +8640,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8652,24 +8652,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8679,9 +8679,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 710, @@ -8693,15 +8693,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } }, "/v2/events/counts": { @@ -8736,16 +8736,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8755,9 +8755,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 709, @@ -8767,12 +8767,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8782,9 +8782,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 706, @@ -8794,39 +8794,39 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", - "utxo_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "block_time": 1730910820, + "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 }, { "event_index": 688, "event": "CREDIT", "params": { - "address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "block_index": 211, "calling_function": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8836,36 +8836,36 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 }, { "event_index": 687, "event": "CREDIT", "params": { - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "block_index": 211, "calling_function": "mpma send", - "event": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 686, @@ -8882,27 +8882,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8917,7 +8917,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8931,19 +8931,19 @@ { "tx_index": 66, "dispense_index": 0, - "tx_hash": "4130679c71ec8784d5e9c7fd2a1b07f697bc681c55aff9a001649d9d855eb7e5", + "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8951,7 +8951,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8966,11 +8966,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910741, + "block_time": 1730977650, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -8980,27 +8980,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "0b2dbbd56fa23e808a119d0236c4a50cedcf23b47dd0869367ad563cbe35cbed", + "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", "block_index": 147, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "last_status_tx_hash": null, - "origin": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9015,7 +9015,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730910539, + "block_time": 1730977428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9029,19 +9029,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "8fafb47f1eb33c715d17135626ccd782500773fc2527d5897edadaff7b111d52", + "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9049,7 +9049,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9064,7 +9064,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910517, + "block_time": 1730977396, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9078,19 +9078,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "679c3017df2bbd81ded612cf1852ef800d4b1e3fa6e8b669a485bbfcde121683", + "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", "block_index": 140, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bd4aa8d58d64b15ea85a2d760e3d384356aa9ea97a848eaffa09adb73c93d671", + "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9098,7 +9098,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9113,7 +9113,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730910514, + "block_time": 1730977392, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9132,10 +9132,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9143,7 +9143,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9156,10 +9156,10 @@ }, { "tx_index": 80, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9167,11 +9167,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9180,10 +9180,10 @@ }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9191,7 +9191,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9204,10 +9204,10 @@ }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9215,11 +9215,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9228,10 +9228,10 @@ }, { "tx_index": 78, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9239,11 +9239,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9258,14 +9258,14 @@ "result": [ { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -9280,20 +9280,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 67, - "tx_hash": "464602a66d5d923a283a486a252d975bab6bc48c79c9174cba8b1534c45e2ace", + "tx_hash": "3dfafdb89f45576b25adc2371da0ffb782acf19f28b77b73ee1181a91122725e", "msg_index": 0, "block_index": 201, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "transfer": false, "callable": false, "call_date": 0, @@ -9308,20 +9308,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910745, + "block_time": 1730977654, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "c61a766eeabb62caef929b472a8daba6d93bdb0c24817154f276039630297cd1", + "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -9336,20 +9336,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910608, + "block_time": 1730977496, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "ad684a9a35e5af8a00954ac4fbec373e053a6495909f686129ef357afe82c719", + "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -9364,20 +9364,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730910605, + "block_time": 1730977492, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "552f035bafa1bee5d90f6d55985eacbd1883829e7130070ae383963b57b70683", + "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -9392,7 +9392,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910591, + "block_time": 1730977478, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9403,14 +9403,14 @@ "/v2/issuances/": { "result": { "tx_index": 73, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "transfer": false, "callable": false, "call_date": 0, @@ -9425,7 +9425,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9434,16 +9434,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -9454,16 +9454,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" } ], @@ -9474,9 +9474,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9484,14 +9484,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910506, + "block_time": 1730977385, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "36c357d7e1d0a2e769b2fc03ed8a9fd93c47d4a23ce089cccaf5385afb712981", + "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", "block_index": 137, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9499,7 +9499,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910503, + "block_time": 1730977381, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9509,9 +9509,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9519,17 +9519,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730910506, + "block_time": 1730977385, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, "block_index": 156, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9554,7 +9554,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9563,10 +9563,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9591,7 +9591,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730910495, + "block_time": 1730977375, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9603,10 +9603,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9631,7 +9631,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730910471, + "block_time": 1730977358, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9643,10 +9643,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9671,7 +9671,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730910468, + "block_time": 1730977353, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9683,10 +9683,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "ecfba00014c558babd14be5eb90e3694569dfc433126aa059f067a294465e5df", + "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9711,7 +9711,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730910447, + "block_time": 1730977336, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9729,22 +9729,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9753,22 +9753,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1cec802154e9a56a03db6997744d3c9313fc07accec76f6f3fd347834b137f63", + "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", "tx_index": 21, "block_index": 134, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910492, + "block_time": 1730977370, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9777,22 +9777,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "51f7e9ca2473857a754cc3f88077bc63de5c7d481055d124fa1cac4e70d17e61", + "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", "tx_index": 20, "block_index": 133, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910489, + "block_time": 1730977366, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9801,22 +9801,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "89a16fee2fcda5975a75adba15c36eda58a497a897e23e7eda9a55688b95793e", + "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", "tx_index": 19, "block_index": 132, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "4af0e4df85fad9b930af5e5f1b54c834dc4aa4d2edf587a4b8603b78bdbe46c1", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910475, + "block_time": 1730977362, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9825,22 +9825,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "bc4dcf245eea410e49b6ce6b34b4c9a7efa878a3d0d3dc1bac0435cc24474a88", + "tx_hash": "d2f268607a9892328d11b14102180ad3cebf5bcd9e34070a2a69b27a987add11", "tx_index": 17, "block_index": 129, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "fairminter_tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910465, + "block_time": 1730977350, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9854,22 +9854,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, "block_index": 136, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -9880,23 +9880,23 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ - { - "vout": 1, - "height": 204, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", - "address": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk" - }, { "vout": 1, "height": 212, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", - "address": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk" + "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" + }, + { + "vout": 1, + "height": 204, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" }, { "vout": 0, @@ -9904,8 +9904,8 @@ "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", - "address": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk" + "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" }, { "vout": 2, @@ -9913,8 +9913,8 @@ "value": 100000, "confirmations": 56, "amount": 0.001, - "txid": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84", - "address": "bcrt1qmg6q8zgntqdrfzgnseles8ttnugkry5m4n2j70" + "txid": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf", + "address": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d" } ], "next_cursor": null, @@ -9923,28 +9923,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "517e1db54446be269b3301f33212bab4845592d570c1f0125ee470cac52f2e07" + "tx_hash": "9d90d9487ddfc264d17c73a515f423e5c429b6d83cf24de8997eaddfc4866609" }, { - "tx_hash": "d357bb299d18b322b59583ba8e57afd45b77ac7c21c0c9e208fcebad4b6e9c08" + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848" }, { - "tx_hash": "be7a8c0909cc12258059e612c4c0e6a7ad2a5bef16b5123454d0fe54b02d694e" + "tx_hash": "2c2867cdde9bb0e5b8f16167ed9d07fdcfdbe216aae37df2b41856496ac4a256" }, { - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53" + "tx_hash": "ded24090770fef8bbf19d80fedab6fc8918e12089762f99aa3163f184ae8ac68" }, { - "tx_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60" + "tx_hash": "d683a7fc6db9a494fbcaefbef7e73441f62bc7f920b54af9ca52431c4d45a069" }, { - "tx_hash": "4121310fc0fe794dda09f3e8c9ba6ac614eff8cddff46466a2b71da5371ec9c2" + "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786" }, { - "tx_hash": "a9a38734d0ec1a4b7928125a669b8928d806c3ab81e43160a4b82e8fe5e740f9" + "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" }, { - "tx_hash": "096504cf1bf62d6c52bc881aab5585a189027b352a7f6c5ccc9076da3acb8cfb" + "tx_hash": "c48dc9784c8a741e26bf22ae348030fc3a4fba16648ac854436eacd77c5bb6ff" } ], "next_cursor": null, @@ -9952,19 +9952,27 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "e6a31f225e3e87704558d0e73bd86f58e9cd011cdbc7aebda2a5087cf184a240" + "block_index": 6, + "tx_hash": "86fc31efdc88265b5d9499910af6267be60fdb887f26e0adf7a1bb4b1401635c" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ + { + "vout": 1, + "height": 212, + "value": 4949918908, + "confirmations": 2, + "amount": 49.49918908, + "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3" + }, { "vout": 0, "height": 205, "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c" + "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e" }, { "vout": 1, @@ -9972,25 +9980,17 @@ "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788" - }, - { - "vout": 1, - "height": 212, - "value": 4949918908, - "confirmations": 2, - "amount": 49.49918908, - "txid": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a" + "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02de4f3c7a8e9d513f527fbeb84b8231701767eb75c809f183e71922a53d5c7396" + "result": "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010184df859eec23e5ee96fab73d348361acca76d358bf7d21d1e12abb6f266a4c2f0100000000ffffffff03e8030000000000001600144a31c801448088baeea42a665a19a7652de8802800000000000000000c6a0a25469f1f26afd427fbdbeb140927010000001600140e1eba78449b7f8e4a249524a9607a698bc917b80247304402205f12f8b0129aa382e1575c7f2dff706657475fb23abbcf30ab5908cc59df3a7102203e6831898378bdd13ac8d7247af8e2fe733383f8b76f71465cb4313296e25c86012102912def327031838ce3950474602a43cb1afb4e3beb2f83af28e3f9e8ee0e1c8c00000000" + "result": "02000000000101cf99ffa01b328dcc71e0510f408fd86a64ddba305cd220fc8d76e384a369d0fb0100000000ffffffff03e8030000000000001600149e334aaca9774527f019ba31459ddc70b7bfa49c00000000000000000c6a0a4ac5dc7bc2aedaafabd9eb1409270100000016001427db96e897929853c6ebe6127d77a4882445084b02473044022052ba8f627dbc0b34c52de9fc109a013af3336e4a50a7751fab9c1a7739780f140220398102c0a431b0a6ca15a48e372203a97dcaf87242fbabaefb2d90396ca728e2012103e21ae08d90338d2b62676917df2ead4d354022b419fcf01f82d7534aea7f65d900000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58799 @@ -10063,27 +10063,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81 }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "quantity": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -10094,22 +10094,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10119,22 +10119,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "block_index": 213, - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10144,30 +10144,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730910824.0825016, + "block_time": 1730977737.9578004, "btc_amount": 0, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "destination": "", "fee": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, - "utxos_info": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c:1 2 ", + "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -10181,7 +10181,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -10190,19 +10190,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10212,7 +10212,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -10221,27 +10221,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81 }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "quantity": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -10252,22 +10252,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "CREDIT", "params": { - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10277,22 +10277,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "asset": "XCP", "block_index": 213, - "event": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10302,30 +10302,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 }, { - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730910824.0825016, + "block_time": 1730977737.9578004, "btc_amount": 0, - "data": "0200000000000000010000000000002710806e83b0d0adc47e261fae6106611e97ec87e81b1f", + "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", "destination": "", "fee": 10000, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", - "tx_hash": "d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", "tx_index": 81, - "utxos_info": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44:1 d3f002266d966cd338ebf043c3d5ff5456cf043ee18fdf8822834d13bf87c05c:1 2 ", + "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "memo": null, "asset_info": { "asset_longname": null, @@ -10339,7 +10339,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730910824.0825016 + "timestamp": 1730977737.9578004 } ], "next_cursor": null, @@ -10361,15 +10361,15 @@ "event_index": 702, "event": "NEW_BLOCK", "params": { - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", "block_index": 213, - "block_time": 1730910820, + "block_time": 1730977733, "difficulty": 545259519, - "previous_block_hash": "348078ecb9526853838d9c292a435f39b181cc052801c2da03ce1b2d60732686" + "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99" }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 696, @@ -10381,17 +10381,17 @@ "event_index": 703, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0c6e8339c5d5d0513f3255d4db71fe819e2819368f6d2bd3ca869ea27ac52e24", + "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", "block_index": 213, - "block_time": 1730910820, + "block_time": 1730977733, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "fee": 0, - "source": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "utxos_info": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1 108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0 3 1", + "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10401,9 +10401,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 697, @@ -10417,16 +10417,16 @@ "params": { "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "out_index": 0, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 574, @@ -10439,15 +10439,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "a79889ceb289bfd264c516f1781382f2ab069c167c0d49f79fbcf2765e40fdfc", - "messages_hash": "1a7fa8c5e185fe1bf78091c62aba7371b1f086731f8a3181e3ae1f3b8f78b427", + "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", + "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", "transaction_count": 1, - "txlist_hash": "0a5019409613ab07b0c1889ccc217ee7a3a10b7e1840f73a4dbe3164b1dcf3d3", - "block_time": 1730910820 + "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", + "block_time": 1730977733 }, "tx_hash": null, "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 701, @@ -10460,12 +10460,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80 }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 700, @@ -10481,12 +10481,12 @@ "address": null, "asset": "XCP", "block_index": 213, - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 2000000000, "tx_index": 80, - "utxo": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", - "utxo_address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", - "block_time": 1730910820, + "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10496,9 +10496,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 705, @@ -10510,16 +10510,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10529,9 +10529,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 709, @@ -10545,26 +10545,26 @@ "params": { "asset": "MPMASSET", "block_index": 207, - "destination": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "memo": null, "quantity": 1000, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "tx_index": 74, - "block_time": 1730910778, + "block_time": 1730977696, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1e4cbe134a03c50a4a4ca6db02b313cea7f4986f87f251dbb5abd9206ace7e2e", + "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", "block_index": 207, - "block_time": 1730910778 + "block_time": 1730977696 } ], "next_cursor": 510, @@ -10578,15 +10578,15 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "tx_index": 78, - "block_time": 1730910803, + "block_time": 1730977721, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10596,9 +10596,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 692, @@ -10621,20 +10621,20 @@ "event": "SWEEP", "params": { "block_index": 196, - "destination": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "status": "valid", - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "tx_index": 62, - "block_time": 1730910725, + "block_time": 1730977625, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "98c6019ba03b602273d85485b827ea930d84067c4169c0d1a3c663c27c7cad53", + "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", "block_index": 196, - "block_time": 1730910725 + "block_time": 1730977625 } ], "next_cursor": null, @@ -10651,15 +10651,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "tx_index": 42, - "block_time": 1730910573, + "block_time": 1730977457, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -10673,9 +10673,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "4f720206f28c0198408b4e233bf562039f28fa69423a70c73d935346a127b227", + "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", "block_index": 155, - "block_time": 1730910573 + "block_time": 1730977457 } ], "next_cursor": null, @@ -10696,11 +10696,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 206, - "block_time": 1730910773 + "block_time": 1730977691 }, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_time": 1730910773 + "block_time": 1730977691 } ], "next_cursor": 583, @@ -10723,22 +10723,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", "transfer": false, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "tx_index": 73, - "block_time": 1730910773, + "block_time": 1730977691, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "53031c76e4c096cbf7b2600c45706399ec91718a2082441038457b5547beda7c", + "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", "block_index": 206, - "block_time": 1730910773 + "block_time": 1730977691 } ], "next_cursor": 584, @@ -10753,12 +10753,12 @@ "asset": "XCP", "block_index": 197, "quantity": 1, - "source": "bcrt1qduu3s879wk5uaxygyzlssm0j72y8duvw5z6ge6", + "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", "status": "valid", "tag": "64657374726f79", - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "tx_index": 63, - "block_time": 1730910730, + "block_time": 1730977629, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10768,9 +10768,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "94ae1f90da3e090a46e7153e6dfcd293efa5573c3e7286bf441f1f073e46cc44", + "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", "block_index": 197, - "block_time": 1730910730 + "block_time": 1730977629 } ], "next_cursor": 157, @@ -10795,15 +10795,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "status": "open", - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "tx_index": 79, - "block_time": 1730910807, + "block_time": 1730977725, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, @@ -10823,9 +10823,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "237166cd7afad604fc0fe01e0305bdeb98d959039bd49dba823965545c03958a", + "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", "block_index": 212, - "block_time": 1730910807 + "block_time": 1730977725 } ], "next_cursor": 541, @@ -10843,20 +10843,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "tx0_block_index": 195, "tx0_expiration": 21, - "tx0_hash": "4b3ad55f1c257fbd257ca0446a06fa262abe8f5187a42d838a18cc2b61bb655f", + "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", "tx0_index": 61, - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "tx1_index": 55, - "block_time": 1730910799, + "block_time": 1730977716, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10875,9 +10875,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_time": 1730910799 + "block_time": 1730977716 } ], "next_cursor": 498, @@ -10890,11 +10890,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60" + "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 670, @@ -10907,11 +10907,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf" + "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae" }, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "block_time": 1730910696 + "block_time": 1730977585 } ], "next_cursor": null, @@ -10923,13 +10923,13 @@ "event_index": 665, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", + "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", "status": "expired" }, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_time": 1730910799 + "block_time": 1730977716 } ], "next_cursor": 488, @@ -10943,18 +10943,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_70b2554130fa1621915ebf1d3062e984c9523fd08512f8ac60a6ed21f3632abf", - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "tx_index": 54, - "block_time": 1730910696, + "block_time": 1730977585, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0ee3250b6157aaadbad6b96cbd952866d1228bd649245a8739dfe09f25370791", + "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", "block_index": 188, - "block_time": 1730910696 + "block_time": 1730977585 } ], "next_cursor": null, @@ -10967,16 +10967,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 194, - "offer_hash": "1be86e0c637999ddf1559ac1a91e176fb494983f54cf11f9849aa4df1db4b8dd", - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": "valid", - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "tx_index": 60, - "block_time": 1730910718 + "block_time": 1730977618 }, - "tx_hash": "47f1be5e8cb90701b5b909958ed354b0667edf406947c60000463ee921bc9a8a", + "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", "block_index": 194, - "block_time": 1730910718 + "block_time": 1730977618 } ], "next_cursor": null, @@ -10989,13 +10989,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "source": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "block_time": 1730910803 + "order_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "block_time": 1730977721 }, - "tx_hash": "0734ee289d1549865b85fb8ee8c5913478989ab406d34c2ed50b111d7b2f8511", + "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", "block_index": 211, - "block_time": 1730910803 + "block_time": 1730977721 } ], "next_cursor": 640, @@ -11008,14 +11008,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "653c1c373992a508efa84ac692ab305731fd73d70a4870987f97d567a0787d5b_01330eaf103b510893c96aab1f3d625f1fe730c5ec27ff1e4c9babc250fadd60", - "tx0_address": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "tx1_address": "bcrt1qd6pmp59dc3lzv8awvyrxz85hajr7sxclqrsd4l", - "block_time": 1730910799 + "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "block_time": 1730977716 }, - "tx_hash": "ca5fb8e7e601d010efd459bcc98f4621d14cf66a1c8e2b603b3267e43587bbe3", + "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", "block_index": 210, - "block_time": 1730910799 + "block_time": 1730977716 } ], "next_cursor": 464, @@ -11034,17 +11034,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "satoshirate": 1, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "status": 0, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "tx_index": 65, - "block_time": 1730910737, + "block_time": 1730977647, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11053,9 +11053,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "74745c11132ff1c04fc543d276e14f2284d82a1c22b71da0914796ade68612b2", + "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", "block_index": 199, - "block_time": 1730910737 + "block_time": 1730977647 } ], "next_cursor": 272, @@ -11070,9 +11070,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": 0, - "tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", + "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11082,9 +11082,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 576, @@ -11098,13 +11098,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mgfCkp2bexoY8bqX4Z6PHNhsAkSPUQTqUm", + "destination": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", "dispense_quantity": 10, - "dispenser_tx_hash": "eef1730a299542c77403b22b8a733340eff92d4f9bdf9d2649dbdaeb3df99a4a", - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", - "tx_hash": "de22ee16a61548915fbb39b6a5150b20da6bd6bb6c695105d70be259c806bdb3", + "dispenser_tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", "tx_index": 31, - "block_time": 1730910528, + "block_time": 1730977417, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11114,9 +11114,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "de22ee16a61548915fbb39b6a5150b20da6bd6bb6c695105d70be259c806bdb3", + "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", "block_index": 144, - "block_time": 1730910528 + "block_time": 1730977417 } ], "next_cursor": null, @@ -11131,14 +11131,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qpc0t57zyndlcuj3yj5j2jcr6dx9uj9aczynz9h", + "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "86cb04848786469fac23160b13f1497985e4cf0adbf4d1dca0d73bbfdfd7234a", - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11149,9 +11149,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 577, @@ -11166,19 +11166,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qfgcusq2yszyt4m4y9fn95xd8v5k73qpgllvjpp", + "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "tx_index": 25, "value": 66600.0, - "block_time": 1730910506, + "block_time": 1730977385, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e55c112cdea43074f28cb6c781e606075d825157d66791e9167211a1467ad1ac", + "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", "block_index": 138, - "block_time": 1730910506 + "block_time": 1730977385 } ], "next_cursor": 213, @@ -11209,12 +11209,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "start_block": 0, "status": "open", - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "tx_index": 43, - "block_time": 1730910576, + "block_time": 1730977462, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11222,9 +11222,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "3703c9746ff5033ce3429fdabc3b7b90054a535ec4611d7c547a3fcba1eac32f", + "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", "block_index": 156, - "block_time": 1730910576 + "block_time": 1730977462 } ], "next_cursor": 196, @@ -11237,11 +11237,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "b00dc5b4b7b2194084d0e026d0d1bc830912abdca6cc213221cb8cfde20ab445" + "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075" }, "tx_hash": null, "block_index": 130, - "block_time": 1730910468 + "block_time": 1730977353 } ], "next_cursor": 110, @@ -11257,17 +11257,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "75cb115513d99479f530152a112f08db5899ceff1543393c7d596932d14339cc", + "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", "paid_quantity": 34, - "source": "bcrt1qcflnhwaulwhxhvhpz0xt2u0nwtwdhxh2dalfl4", + "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", "status": "valid", - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "tx_index": 23, - "block_time": 1730910499, + "block_time": 1730977378, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5l78d6a0p0sgclhhv4fy502d5fd3land69ndy7", + "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", "divisible": true, "locked": false }, @@ -11275,9 +11275,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ce461efe2322b143fda5458449624e5686453e1fcbe03090ce7ff9c88a54e30e", + "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", "block_index": 136, - "block_time": 1730910499 + "block_time": 1730977378 } ], "next_cursor": 190, @@ -11291,28 +11291,28 @@ "params": { "asset": "UTXOASSET", "block_index": 205, - "destination": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c:0", + "destination": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "status": "valid", - "tx_hash": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", + "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", "tx_index": 72, - "block_time": 1730910770, + "block_time": 1730977688, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6b78aeddfebd217722627e660cb02764a129f9f09dc0295018ea6fb054bc670c", + "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", "block_index": 205, - "block_time": 1730910770 + "block_time": 1730977688 } ], "next_cursor": 593, @@ -11326,28 +11326,28 @@ "params": { "asset": "UTXOASSET", "block_index": 204, - "destination": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "5b2d6622d9f315622865c3c7e05e4e6b62b9d326256192d0e39d6d12182baec1:0", + "source": "953a2098614ca254d4b7b537d48b1e72c8534cd8cd3ac8dc860b082d5664d15a:0", "status": "valid", - "tx_hash": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", + "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", "tx_index": 71, - "block_time": 1730910767, + "block_time": 1730977685, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qknajkrmpjx9cz49fzexyl0yvgrr07nce72e3gk", + "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7e7f8fbacbec7d20f52ac8ef05de8d24d622dfff12c916e2efbdcbf47d3c2788", + "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", "block_index": 204, - "block_time": 1730910767 + "block_time": 1730977685 } ], "next_cursor": 311, @@ -11361,14 +11361,14 @@ "params": { "asset": "XCP", "block_index": 213, - "destination": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4:0", + "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", "msg_index": 1, "quantity": 2000000000, - "source": "2f4c6a266fbb2ae1d1217dbf58d376caac6183343db7fa96eee523ec9e85df84:1", + "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", "status": "valid", - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "tx_index": 80, - "block_time": 1730910820, + "block_time": 1730977733, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11378,9 +11378,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "108d55e98ef64eecd11b0d29e910f9adfb8e00e8e8da211458a270274bae99a4", + "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", "block_index": 213, - "block_time": 1730910820 + "block_time": 1730977733 } ], "next_cursor": 707, @@ -11395,17 +11395,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qscvx65qxrwg8vur6l9vw4h7fsv594s09d3r6a6", + "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", "status": "valid", - "tx_hash": "0a9521b19c433242f528db9d924350cd09e9b12753e4a476999a3c4adac9975e", + "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", "tx_index": 9, - "block_time": 1730910432, + "block_time": 1730977320, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "0a9521b19c433242f528db9d924350cd09e9b12753e4a476999a3c4adac9975e", + "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", "block_index": 121, - "block_time": 1730910432 + "block_time": 1730977320 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 13219a065d..a7c90c6415 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -358,6 +358,8 @@ def start(self): print("Regtest node ready") self.ready = True + self.test_transaction_chaining() + if self.show_output: printed_line_count = 0 print("Server ready, ctrl-c to stop.") @@ -412,6 +414,7 @@ def stop_addrindexrs(self): pass def stop(self): + print(self.server_out.getvalue()) print("Stopping bitcoin node 1...") self.stop_bitcoin_node() print("Stopping bitcoin node 2...") @@ -654,6 +657,88 @@ def test_invalid_detach(self): print("Detach with a single OP_RETURN output transaction test successful") + def test_transaction_chaining(self): + source_address = self.addresses[0] + address_info = json.loads(self.bitcoin_wallet("getaddressinfo", source_address).strip()) + pubkey_source = address_info["scriptPubKey"] + print(f"pubkey_source: {pubkey_source}") + + new_address = self.bitcoin_wallet("getnewaddress", WALLET_NAME, "bech32").strip() + address_info = json.loads(self.bitcoin_wallet("getaddressinfo", new_address).strip()) + pubkey_new_address = address_info["scriptPubKey"] + print(f"pubkey_new_address: {pubkey_new_address}") + + # send XCP to new address + api_call_url = f"addresses/{source_address}/compose/send?destination={new_address}&quantity=100&asset=XCP" + print(api_call_url) + result = self.api_call(api_call_url) + raw_transaction_1 = result["result"]["rawtransaction"] + signed_transaction_1 = json.loads( + self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_1).strip() + )["hex"] + print(f"Raw transaction 1: {signed_transaction_1}") + + # get utxo info from the first transaction + decoded_transaction_1 = json.loads( + self.bitcoin_cli("decoderawtransaction", signed_transaction_1).strip() + ) + print(json.dumps(decoded_transaction_1, indent=4)) + txid_1 = decoded_transaction_1["txid"] + vout_1 = len(decoded_transaction_1["vout"]) - 1 # last vout is the change + value_1 = int(decoded_transaction_1["vout"][vout_1]["value"] * 1e8) + print(f"TXID 1: {txid_1}") + + # send BTC to new address using the change from the previous transaction + api_call_url = f"addresses/{source_address}/compose/send?destination={new_address}&quantity=10000&asset=BTC" + api_call_url += f"&inputs_set={txid_1}:{vout_1}:{value_1}:{pubkey_source}" + api_call_url += "&disable_utxo_locks=true" + api_call_url += "&validate=false" + result = self.api_call(api_call_url) + raw_transaction_2 = result["result"]["rawtransaction"] + signed_transaction_2 = json.loads( + self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_2).strip() + )["hex"] + print(f"Raw transaction 2: {signed_transaction_2}") + + # get utxo info from the second transaction + decoded_transaction_2 = json.loads( + self.bitcoin_cli("decoderawtransaction", signed_transaction_2).strip() + ) + print(json.dumps(decoded_transaction_2, indent=4)) + txid_2 = decoded_transaction_2["txid"] + vout_2 = 0 # first vout is the 10000 sats from the previous transaction + value_2 = int(decoded_transaction_2["vout"][vout_2]["value"] * 1e8) + assert value_2 == 10000 + print(f"TXID 2: {txid_2}") + + # use the BTC and the XCP from the first transaction to create a dispenser + api_call_url = f"addresses/{new_address}/compose/dispenser?" + api_call_url += "asset=XCP&give_quantity=1&escrow_quantity=2&mainchainrate=1&status=0" + api_call_url += f"&inputs_set={txid_2}:0:{value_2}:{pubkey_new_address}" + api_call_url += "&disable_utxo_locks=true" + api_call_url += "&validate=false" + result = self.api_call(api_call_url) + raw_transaction_3 = result["result"]["rawtransaction"] + signed_transaction_3 = json.loads( + self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_3).strip() + )["hex"] + print(f"Raw transaction 3: {signed_transaction_3}") + + tx_hash, block_hash, block_time = self.broadcast_transaction( + signed_transaction_1, no_confirmation=True, dont_wait_mempool=True + ) + print(f"Transaction 1 sent: {tx_hash}") + tx_hash, block_hash, block_time = self.broadcast_transaction( + signed_transaction_2, no_confirmation=True, dont_wait_mempool=True + ) + print(f"Transaction 2 sent: {tx_hash}") + tx_hash, block_hash, block_time = self.broadcast_transaction( + signed_transaction_3, no_confirmation=True, dont_wait_mempool=True + ) + print(f"Transaction 3 sent: {tx_hash}") + self.mine_blocks(1) + self.wait_for_counterparty_server() + class RegtestNodeThread(threading.Thread): def __init__(self, wsgi_server="waitress", burn_in_one_block=False): From 7c00606383569aa17d1bffb16491b66de5bec42d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 16:20:03 +0000 Subject: [PATCH 087/138] fix transaction chaining --- .../test/regtest/regtestnode.py | 70 +++++++++++++------ .../test/regtest/testscenarios.py | 1 + 2 files changed, 51 insertions(+), 20 deletions(-) diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index a7c90c6415..64ee3610e1 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -358,8 +358,6 @@ def start(self): print("Regtest node ready") self.ready = True - self.test_transaction_chaining() - if self.show_output: printed_line_count = 0 print("Server ready, ctrl-c to stop.") @@ -658,60 +656,74 @@ def test_invalid_detach(self): print("Detach with a single OP_RETURN output transaction test successful") def test_transaction_chaining(self): + # source address source_address = self.addresses[0] address_info = json.loads(self.bitcoin_wallet("getaddressinfo", source_address).strip()) pubkey_source = address_info["scriptPubKey"] - print(f"pubkey_source: {pubkey_source}") + # new empty address new_address = self.bitcoin_wallet("getnewaddress", WALLET_NAME, "bech32").strip() address_info = json.loads(self.bitcoin_wallet("getaddressinfo", new_address).strip()) pubkey_new_address = address_info["scriptPubKey"] - print(f"pubkey_new_address: {pubkey_new_address}") - # send XCP to new address + ##### Send XCP to new address ##### + + # prepare transaction + # send 100 sats XCP to a new empty address api_call_url = f"addresses/{source_address}/compose/send?destination={new_address}&quantity=100&asset=XCP" - print(api_call_url) result = self.api_call(api_call_url) raw_transaction_1 = result["result"]["rawtransaction"] + + # sign transaction signed_transaction_1 = json.loads( self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_1).strip() )["hex"] - print(f"Raw transaction 1: {signed_transaction_1}") - # get utxo info from the first transaction + # get utxo info from the transaction decoded_transaction_1 = json.loads( self.bitcoin_cli("decoderawtransaction", signed_transaction_1).strip() ) - print(json.dumps(decoded_transaction_1, indent=4)) txid_1 = decoded_transaction_1["txid"] vout_1 = len(decoded_transaction_1["vout"]) - 1 # last vout is the change value_1 = int(decoded_transaction_1["vout"][vout_1]["value"] * 1e8) - print(f"TXID 1: {txid_1}") - # send BTC to new address using the change from the previous transaction + ##### Send BTC to new address using the change from the previous transaction ##### + + # prepare transaction + # send 10000 sats to the new address + # we are using the last output of the previous transaction as input + # this output is the change from the previous transaction api_call_url = f"addresses/{source_address}/compose/send?destination={new_address}&quantity=10000&asset=BTC" api_call_url += f"&inputs_set={txid_1}:{vout_1}:{value_1}:{pubkey_source}" api_call_url += "&disable_utxo_locks=true" api_call_url += "&validate=false" result = self.api_call(api_call_url) raw_transaction_2 = result["result"]["rawtransaction"] - signed_transaction_2 = json.loads( - self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_2).strip() - )["hex"] - print(f"Raw transaction 2: {signed_transaction_2}") + + # sign transaction + prevtx = [ + {"txid": txid_1, "vout": vout_1, "scriptPubKey": pubkey_source, "amount": value_1 / 1e8} + ] + prevtx = json.dumps(prevtx) + signed_transaction_2_json = json.loads( + self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_2, prevtx).strip() + ) + signed_transaction_2 = signed_transaction_2_json["hex"] # get utxo info from the second transaction decoded_transaction_2 = json.loads( self.bitcoin_cli("decoderawtransaction", signed_transaction_2).strip() ) - print(json.dumps(decoded_transaction_2, indent=4)) txid_2 = decoded_transaction_2["txid"] vout_2 = 0 # first vout is the 10000 sats from the previous transaction value_2 = int(decoded_transaction_2["vout"][vout_2]["value"] * 1e8) assert value_2 == 10000 - print(f"TXID 2: {txid_2}") - # use the BTC and the XCP from the first transaction to create a dispenser + ##### Create a dispenser using the BTC received from the second transactions ##### + + # prepare transaction + # we are using the first output of the previous transaction as input + # this output must contain the 10000 sats api_call_url = f"addresses/{new_address}/compose/dispenser?" api_call_url += "asset=XCP&give_quantity=1&escrow_quantity=2&mainchainrate=1&status=0" api_call_url += f"&inputs_set={txid_2}:0:{value_2}:{pubkey_new_address}" @@ -719,11 +731,17 @@ def test_transaction_chaining(self): api_call_url += "&validate=false" result = self.api_call(api_call_url) raw_transaction_3 = result["result"]["rawtransaction"] + + # sign transaction + prevtx = [ + {"txid": txid_2, "vout": 0, "scriptPubKey": pubkey_new_address, "amount": value_2 / 1e8} + ] + prevtx = json.dumps(prevtx) signed_transaction_3 = json.loads( - self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_3).strip() + self.bitcoin_wallet("signrawtransactionwithwallet", raw_transaction_3, prevtx).strip() )["hex"] - print(f"Raw transaction 3: {signed_transaction_3}") + # broadcast the three transactions tx_hash, block_hash, block_time = self.broadcast_transaction( signed_transaction_1, no_confirmation=True, dont_wait_mempool=True ) @@ -736,9 +754,21 @@ def test_transaction_chaining(self): signed_transaction_3, no_confirmation=True, dont_wait_mempool=True ) print(f"Transaction 3 sent: {tx_hash}") + + # mine a block self.mine_blocks(1) self.wait_for_counterparty_server() + # check the dispenser is created + dispensers = self.api_call(f"addresses/{new_address}/dispensers")["result"] + assert len(dispensers) == 1 + assert dispensers[0]["give_quantity"] == 1 + assert dispensers[0]["escrow_quantity"] == 2 + assert dispensers[0]["status"] == 0 + assert dispensers[0]["asset"] == "XCP" + + print("Dispenser created") + class RegtestNodeThread(threading.Thread): def __init__(self, wsgi_server="waitress", burn_in_one_block=False): diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index c5cae90bfd..044ff02a1e 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -389,6 +389,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): sh.dredd(_cwd=BASE_DIR, _out=sys.stdout, _err_to_out=True) regtest_node_thread.node.test_invalid_detach() + regtest_node_thread.node.test_transaction_chaining() print("Tesing reparse...") regtest_node_thread.node.reparse() From 463353ad686b4b2961238c587df6d978f7eb5ea3 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 18:27:13 +0000 Subject: [PATCH 088/138] remove 'force_input_set' argument --- .../counterpartycore/lib/transaction.py | 2 - .../transaction_helper/transaction_inputs.py | 40 +------------------ 2 files changed, 2 insertions(+), 40 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 95eb053531..5b67126ba8 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -196,7 +196,6 @@ def construct( p2sh_pretx_txid=None, use_utxos_with_balances=False, exclude_utxos_with_balances=False, - force_inputs_set=False, skip_validation=False, ): # Extract tx_info @@ -274,7 +273,6 @@ def construct( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, - force_inputs_set, ) """Finish""" diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 62f0b3f6eb..4b1fc8b2ce 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -168,7 +168,7 @@ def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): return unspent -def prepare_inputs_set(inputs_set, force_inputs_set=False): +def prepare_inputs_set(inputs_set): new_inputs_set = [] utxos_list = inputs_set.split(",") if len(utxos_list) > MAX_INPUTS_SET: @@ -201,10 +201,6 @@ def prepare_inputs_set(inputs_set, force_inputs_set=False): try: amount = backend.bitcoind.get_tx_out_amount(txid, vout) except Exception as e: - if force_inputs_set: - raise exceptions.ComposeError( - f"Amount not found for `{str_input}`, you must provide it" - ) from e raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e new_input = { @@ -218,32 +214,7 @@ def prepare_inputs_set(inputs_set, force_inputs_set=False): return new_inputs_set -def use_inputs_set(inputs_set, destination_btc_out, data_btc_out, exact_fee, force_utxo): - if not inputs_set: - raise exceptions.ComposeError( - "`inputs_set` must be specified when using `force_inputs_set`" - ) - if exact_fee is None: - raise exceptions.ComposeError("`exact_fee` must be specified when using `force_inputs_set`") - - inputs = prepare_inputs_set(inputs_set, force_inputs_set=True) - inputs = insert_force_utxo(inputs, force_utxo, force_inputs_set=True) - - btc_out = destination_btc_out + data_btc_out - btc_in = 0 - for tx_input in inputs: - btc_in += tx_input["amount"] - - change_quantity = btc_in - btc_out - exact_fee - if change_quantity < 0: - raise exceptions.ComposeError("Insufficient funds in provided `inputs_set`") - - inputs = script.ensure_script_pub_key_for_inputs(inputs) - - return inputs, change_quantity, btc_in, exact_fee - - -def insert_force_utxo(unspent, force_utxo, force_inputs_set=False): +def insert_force_utxo(unspent, force_utxo): if force_utxo is None: return unspent @@ -255,8 +226,6 @@ def insert_force_utxo(unspent, force_utxo, force_inputs_set=False): included_pos = i break if included_pos is None: - if force_inputs_set: - raise exceptions.ComposeError(f"`{force_utxo}` not found in `inputs_set`") try: amount = backend.bitcoind.get_tx_out_amount(txid, int(vout)) except Exception as e: @@ -296,10 +265,7 @@ def construct_coin_selection( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, - force_inputs_set, ): - if force_inputs_set: - return use_inputs_set(inputs_set, destination_btc_out, data_btc_out, exact_fee, force_utxo) if inputs_set: if isinstance(inputs_set, str): use_inputs = unspent = prepare_inputs_set(inputs_set) @@ -481,7 +447,6 @@ def prepare_inputs( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, - force_inputs_set, ): btc_in = 0 final_fee = 0 @@ -533,7 +498,6 @@ def prepare_inputs( use_utxos_with_balances, exclude_utxos_with_balances, force_utxo, - force_inputs_set, ) else: # when encoding is P2SH and the pretx txid is passed we can skip coinselection From eb6913c9695c560fd7839cc35b2a9458c9d63364 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 18:36:35 +0000 Subject: [PATCH 089/138] tweaks --- counterparty-core/counterpartycore/test/regtest/regtestnode.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 64ee3610e1..c05d505772 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -656,6 +656,7 @@ def test_invalid_detach(self): print("Detach with a single OP_RETURN output transaction test successful") def test_transaction_chaining(self): + print("Test transaction chaining...") # source address source_address = self.addresses[0] address_info = json.loads(self.bitcoin_wallet("getaddressinfo", source_address).strip()) @@ -697,6 +698,7 @@ def test_transaction_chaining(self): api_call_url += f"&inputs_set={txid_1}:{vout_1}:{value_1}:{pubkey_source}" api_call_url += "&disable_utxo_locks=true" api_call_url += "&validate=false" + api_call_url += "&exact_fee=1000" result = self.api_call(api_call_url) raw_transaction_2 = result["result"]["rawtransaction"] @@ -727,6 +729,7 @@ def test_transaction_chaining(self): api_call_url = f"addresses/{new_address}/compose/dispenser?" api_call_url += "asset=XCP&give_quantity=1&escrow_quantity=2&mainchainrate=1&status=0" api_call_url += f"&inputs_set={txid_2}:0:{value_2}:{pubkey_new_address}" + api_call_url += "&exact_fee=1000" api_call_url += "&disable_utxo_locks=true" api_call_url += "&validate=false" result = self.api_call(api_call_url) From 08943a5c7fdad92805092edc0e9543cb83dc7087 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 18:48:07 +0000 Subject: [PATCH 090/138] tweaks, update release notes --- apiary.apib | 3826 ++++++++--------- .../transaction_helper/transaction_inputs.py | 3 +- .../test/regtest/apidoc/apicache.json | 3462 +++++++-------- .../test/regtest/regtestnode.py | 1 - release-notes/release-notes-v10.6.2.md | 4 +- 5 files changed, 3648 insertions(+), 3648 deletions(-) diff --git a/apiary.apib b/apiary.apib index 9904a98c58..31c69fbd78 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-07 11:09:10.599141. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-07 18:44:45.169936. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 702, "event": "NEW_BLOCK", "params": { - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", "block_index": 213, - "block_time": 1730977733, + "block_time": 1731005068, "difficulty": 545259519, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99" + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61" }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 696, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 703, "event": "NEW_TRANSACTION", "params": { - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", "block_index": 213, - "block_time": 1730977733, + "block_time": 1731005068, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "fee": 0, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 697, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "out_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 574, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 701, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 700, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 213, - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "block_time": 1730977733, + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 705, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 709, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 207, - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "quantity": 1000, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "tx_index": 74, - "block_time": 1730977696, + "block_time": 1731005031, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_time": 1730977696 + "block_time": 1731005031 } ], "next_cursor": 510, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 692, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 196, - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "status": "valid", - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "tx_index": 62, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "block_time": 1730977625 + "block_time": 1731004981 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "tx_index": 42, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "block_time": 1730977457 + "block_time": 1731004816 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 206, - "block_time": 1730977691 + "block_time": 1731005027 }, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_time": 1730977691 + "block_time": 1731005027 } ], "next_cursor": 583, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", "transfer": false, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "tx_index": 73, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_time": 1730977691 + "block_time": 1731005027 } ], "next_cursor": 584, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 197, "quantity": 1, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", "tag": "64657374726f79", - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "tx_index": 63, - "block_time": 1730977629, + "block_time": 1731004985, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "block_index": 197, - "block_time": 1730977629 + "block_time": 1731004985 } ], "next_cursor": 157, @@ -706,15 +706,15 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "status": "open", - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "tx_index": 79, - "block_time": 1730977725, + "block_time": 1731005059, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -734,9 +734,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": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "block_time": 1730977725 + "block_time": 1731005059 } ], "next_cursor": 541, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx0_block_index": 195, "tx0_expiration": 21, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "tx0_index": 61, - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx1_index": 55, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_time": 1730977716 + "block_time": 1731005052 } ], "next_cursor": 498, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" + "tx_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 670, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae" + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f" }, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "block_time": 1730977585 + "block_time": 1731004940 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 665, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "status": "expired" }, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_time": 1730977716 + "block_time": 1731005052 } ], "next_cursor": 488, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "tx_index": 54, - "block_time": 1730977585, + "block_time": 1731004940, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "block_time": 1730977585 + "block_time": 1731004940 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 194, - "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "offer_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "tx_index": 60, - "block_time": 1730977618 + "block_time": 1731004973 }, - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "block_index": 194, - "block_time": 1730977618 + "block_time": 1731004973 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "block_time": 1730977721 + "order_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "block_time": 1731005056 }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 640, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "block_time": 1730977716 + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "block_time": 1731005052 }, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_time": 1730977716 + "block_time": 1731005052 } ], "next_cursor": 464, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "satoshirate": 1, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": 0, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "tx_index": 65, - "block_time": 1730977647, + "block_time": 1731004994, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1011,9 +1011,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": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 199, - "block_time": 1730977647 + "block_time": 1731004994 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 576, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", + "destination": "mk9JptUdbhD7gMNvk7Fpr3eATPagvbznyS", "dispense_quantity": 10, - "dispenser_tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", + "dispenser_tx_hash": "57dfa4e14d877cc85b465f5745f70d9e2dffc0c13f13aa357a09f6fc8c33d5c9", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "tx_hash": "c1c2be71dace1a67d5c30047f530b280828abed83487b40bd21e70383c867432", "tx_index": 31, - "block_time": 1730977417, + "block_time": 1731004765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", + "tx_hash": "c1c2be71dace1a67d5c30047f530b280828abed83487b40bd21e70383c867432", "block_index": 144, - "block_time": 1730977417 + "block_time": 1731004765 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 577, @@ -1146,19 +1146,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": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "tx_index": 25, "value": 66600.0, - "block_time": 1730977385, + "block_time": 1731004731, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "block_time": 1730977385 + "block_time": 1731004731 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "start_block": 0, "status": "open", - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "block_index": 156, - "block_time": 1730977462 + "block_time": 1731004820 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075" + "tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2" }, "tx_hash": null, "block_index": 130, - "block_time": 1730977353 + "block_time": 1731004698 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "paid_quantity": 34, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "block_index": 136, - "block_time": 1730977378 + "block_time": 1731004723 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 205, - "destination": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e:0", + "destination": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "status": "valid", - "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "tx_hash": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", "tx_index": 72, - "block_time": 1730977688, + "block_time": 1731005023, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "tx_hash": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", "block_index": 205, - "block_time": 1730977688 + "block_time": 1731005023 } ], "next_cursor": 593, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 204, - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "953a2098614ca254d4b7b537d48b1e72c8534cd8cd3ac8dc860b082d5664d15a:0", + "source": "b59e6b35f1a59ed5c8d2723fb4952bdc9bc437afc26576a670b4ebb5d011a5d9:0", "status": "valid", - "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "tx_hash": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", "tx_index": 71, - "block_time": 1730977685, + "block_time": 1731005019, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "tx_hash": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", "block_index": 204, - "block_time": 1730977685 + "block_time": 1731005019 } ], "next_cursor": 311, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 213, - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "msg_index": 1, "quantity": 2000000000, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", "status": "valid", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 707, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", + "source": "bcrt1qxzcjteau2lnp7ksjsqakf8xzxz6x9hvzxjva8p", "status": "valid", - "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", + "tx_hash": "b860cd8e7531ff7771a9bf0984b7824c178d84d98b36a2740c8a646041a7cd2d", "tx_index": 9, - "block_time": 1730977320, + "block_time": 1731004662, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", + "tx_hash": "b860cd8e7531ff7771a9bf0984b7824c178d84d98b36a2740c8a646041a7cd2d", "block_index": 121, - "block_time": 1730977320 + "block_time": 1731004662 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", "difficulty": 545259519, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, "confirmed": true }, { "block_index": 212, - "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", - "block_time": 1730977725, - "previous_block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", + "block_time": 1731005059, + "previous_block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", "difficulty": 545259519, - "ledger_hash": "9ed5f78a1a6fa6851bb1d3126d805206b4f7e4c9e2bb8479dabfbc8f57c667db", - "txlist_hash": "dc52eec0da5fc57349225a1454d5b3e207a8381386a3c0e497ad3f7096202633", - "messages_hash": "2b26b6fa9199fb8565492a38bd36db5adf4fb8712132057a21c1a05f94623aeb", + "ledger_hash": "40b14a3a021c4ac3657f7d18966e31a94f77719285feaad96495b4e962fa89d7", + "txlist_hash": "c83632068c2feb78a97b6216cf926e4e86efaccc307d93cd6605cd119e3c3281", + "messages_hash": "bc74594bf456c1162dcbccf7252481182333202a525f818bab56edc2e69365ed", "transaction_count": 1, "confirmed": true }, { "block_index": 211, - "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", - "block_time": 1730977721, - "previous_block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", + "block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", + "block_time": 1731005056, + "previous_block_hash": "138c522ae39dd5c6ea53e393613ad25264950d114a95a46289c26ee246a996ca", "difficulty": 545259519, - "ledger_hash": "dae697981536c17e68bf8a06bfd95b41eebb9feb0f798609c6f5aded80c758dc", - "txlist_hash": "07a4879a9bb15e79600c077e150484d234db27a42f3d69c61de105791cca773b", - "messages_hash": "0854d1a229de1890b5fa4bd1e84e19b16937ab92965169a0f5b6755e6f7ae4e8", + "ledger_hash": "c92bf27824948e4809cf4e741082e0ec88b4ef42179d7af22270df752bd2f48f", + "txlist_hash": "e7d69b5670370e107b28c2595486cb641b9c9d83c2056ee9f70f630e0016a67b", + "messages_hash": "fb8a449d6892715b4beb32a9fd0a2365c860420068c857390ef2f015e1ed6951", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", - "block_time": 1730977716, - "previous_block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_hash": "138c522ae39dd5c6ea53e393613ad25264950d114a95a46289c26ee246a996ca", + "block_time": 1731005052, + "previous_block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", "difficulty": 545259519, - "ledger_hash": "615a78711f0afe0b44ad569d8f1b55d592569cb2bc96d1824521658e0c4e05e0", - "txlist_hash": "3995bd597d9721bf37d03728e829eefedbf3ed4e12478f452b8ac56dba5d9af9", - "messages_hash": "e11ff10b3b7efd34994c46b6cbc448929bac846f49673914c885d31ced8b62cb", + "ledger_hash": "ff00e31d52443c10219812938b1400c4305b9386253c3c4e42853f85d9b4aa50", + "txlist_hash": "d641a4e72cf260a33ad79820c081a42590781e58d4278175b8bedcfd48e5b220", + "messages_hash": "e0974a968e812c799c9f44f766efb73a955fd8dfaa7b2f862d7974ed633da999", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", - "block_time": 1730977712, - "previous_block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", + "block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", + "block_time": 1731005049, + "previous_block_hash": "7e2c5b73f3c13602ea8db85c1c3cf060306038c7a1ee79afb01ee93730912f86", "difficulty": 545259519, - "ledger_hash": "337d09c20a6694183c8781b44a2e784c933c0421e04417f2e16e40afbe7bb327", - "txlist_hash": "bb2ff16dccefeeef0de464895bf5424e478d9f79930537785f7203cc6694a871", - "messages_hash": "4a821282bb3aa24455f8a651d619323954ee7bb46f6666b30ebfd7fba3c7b0ba", + "ledger_hash": "93f64b3f54298b18ba043ab8c22e8443c7087b8bd63f686087a1e3c631cc737f", + "txlist_hash": "bf8c0fc2e57dcfa5698f7ea9e903830acc34afdb58200275affea17c655c9cde", + "messages_hash": "be947519cbe7660eaa7e4b7e344acfbc3200ea30e17199e68e7c1ecf8d720b66", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", "difficulty": 545259519, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc` (str, required) - The index of the block to return + + block_hash: `4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb` (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. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", "difficulty": 545259519, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 713, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 712, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" } ], "next_cursor": 710, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 709, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 706, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 213, - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "object_id": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "block_index": 211, "confirmed": true, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 60, - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "offer_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "status": "valid", "confirmed": true, - "block_time": 1730977618 + "block_time": 1731004973 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 63, - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "block_index": 197, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730977629, + "block_time": 1731004985, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, "block_index": 156, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2694,17 +2694,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "block_hash": "221f45f6db92fc83fd89a0ea448f5d6073dc6d506100f2e287f10ff871e7902c", - "block_time": 1730977385, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "46f91062f7cfb22668e54b0865a8865ba54e41caa5951fc57ac3e5e409c32463", + "block_time": 1731004731, + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd:1 2 ", + "utxos_info": " 5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2729,25 +2729,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 54, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "block_hash": "2677189c8dbfbb269c64934e7f0bb9051d86958311b154c2ece94d9507dc39c9", - "block_time": 1730977585, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "1d2f8d55f0b23b2311e6d3aed12cedc0040a9bb5451412fffa035bbe0967e56d", + "block_time": 1731004940, + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "btc_amount": 2000, "fee": 10000, - "data": "0bbd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "data": "0b7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "supported": true, - "utxos_info": " d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7:0 3 1", + "utxos_info": " d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "status": "valid" } }, @@ -2762,23 +2762,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "block_index": 194, - "block_hash": "5d554ba1428fa3a9584cf71cd45d1f794d3016a1c93031bab141fd392327ed43", - "block_time": 1730977618, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "436c22cdce94ec2f150e61e9446139c7b83d6dbebaaccae1e7027689fdd781a3", + "block_time": 1731004973, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "data": "46e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "supported": true, - "utxos_info": " 485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084:1 2 ", + "utxos_info": " b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "offer_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "status": "valid" } }, @@ -2793,17 +2793,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "block_index": 197, - "block_hash": "3837c9715cb4af37d17055e5110b7ec72b6f8d5523afaf1582dee5baa24c4167", - "block_time": 1730977629, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "block_hash": "1d69be3ee9e3944039a2325018cb4f72b0ceacb4a2af96e0a7b0da9bfb172264", + "block_time": 1731004985, + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "73934ba7bb254b84d853cf5e30149bd1e8b98e8b0fe256aad3c963b6a35271b7:1 cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 2 ", + "utxos_info": "dbd95a4d916fbf45a807b143ce8578e5fc982642d323efd53f8ea1ad1f1f487a:1 14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2833,17 +2833,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 199, - "block_hash": "00639b2a2a9fc6eda899e9a6f5b903034d943a43a30e64789011fe3b4a005761", - "block_time": 1730977647, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "5fda15078f1dcb6b20cf62c76cf1738475dd960aaeb2deb55be151573622a5f7", + "block_time": 1731004994, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760:1 2 ", + "utxos_info": " 7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2860,7 +2860,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2879,17 +2879,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2909,17 +2909,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "block_hash": "370ef209ac7a69b3a18b350ed2fe6128fb1b629a545d91740a5fa8435bb95bf8", - "block_time": 1730977457, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "60f8914b0b0987bf43f61df1a257dea07005fcfc27607fe50c08d93ea564d7de", + "block_time": 1731004816, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb:1 2 ", + "utxos_info": " 4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2932,7 +2932,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2957,17 +2957,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_hash": "37bc44a99f26fbd26b4b14d64ea8dab4699df6d48eb5e9108cdf9ffbcd39439f", - "block_time": 1730977691, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0c3e005657d62b355cc288f8d8344392457e21adb604c121777bc238ee6d26e2", + "block_time": 1731005027, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817:1 2 ", + "utxos_info": " 30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2999,17 +2999,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 79, - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", - "block_time": 1730977725, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", + "block_time": 1731005059, + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3:1 2 ", + "utxos_info": " f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3025,7 +3025,7 @@ Here is sample API output for each of these transactions: "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -3052,17 +3052,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", - "block_time": 1730977696, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0cbaf035c6c8c71ee818229bb956e4502a6f0adbc5a38bbca6da885b1a425cd7", + "block_time": 1731005031, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "02000000178d82231300000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "supported": true, - "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", + "utxos_info": " 22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3070,12 +3070,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -3093,17 +3093,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", - "block_time": 1730977721, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", + "block_time": 1731005056, + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802aabde3f5bb7bac2d273f85e71e76054d261e32d804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33:0 4 ", + "utxos_info": " ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3111,14 +3111,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -3126,7 +3126,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3152,23 +3152,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "block_hash": "4cb544f773c24f36506c1c970d85b2d5069693d53cb4ac8d0689f0fe81dd1274", - "block_time": 1730977625, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "block_hash": "7565a2961515f71e69c285a9000aff203f39c0e1f1faf266baeb384700a7d177", + "block_time": 1731004981, + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802f17c5b300d912108769616091ec2d7d53c91a73017377656570206d7920617373657473", + "data": "0480b91d6ec2cda019cd3c3b579855a86fbeadc4046f017377656570206d7920617373657473", "supported": true, - "utxos_info": " 27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848:1 2 ", + "utxos_info": " 353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "memo": "sweep my assets" } @@ -3184,17 +3184,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 72, - "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "tx_hash": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", "block_index": 205, - "block_hash": "3fdc6a12b6d441e9759e29c5d5429cec81e389c72d43cdc62d5571e9ce72e501", - "block_time": 1730977688, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "block_hash": "0e0001b70c40276206db481dc3bd787969cec5add19d68e22d0449cadfb68fe0", + "block_time": 1731005023, + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "btc_amount": 546, "fee": 10000, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e:0 3 1", + "utxos_info": " 0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3206,7 +3206,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -3224,17 +3224,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 71, - "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "tx_hash": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", "block_index": 204, - "block_hash": "6ecf107fbda986bcd3edb67bbe8fc1f10d8e2d22182b1b4a4c355ea95b25c630", - "block_time": 1730977685, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "block_hash": "70ac017bcc018a8601cb7ce5babf18682dea4c5f88eb790ff5ea1c79e4854696", + "block_time": 1731005019, + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "953a2098614ca254d4b7b537d48b1e72c8534cd8cd3ac8dc860b082d5664d15a:0 fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468:1 2 ", + "utxos_info": "b59e6b35f1a59ed5c8d2723fb4952bdc9bc437afc26576a670b4ebb5d011a5d9:0 5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3271,17 +3271,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3294,17 +3294,17 @@ Returns the list of the last ten transactions }, { "tx_index": 79, - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", - "block_time": 1730977725, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", + "block_time": 1731005059, + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3:1 2 ", + "utxos_info": " f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3320,7 +3320,7 @@ Returns the list of the last ten transactions "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -3349,7 +3349,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106fcb80e4b4f2aaae5340b9f140d9d9d6a0136b57285457954589c4ffd83361a410000000000ffffffff85f5509c5971278b70fb63428435be30fc0e66c5ba0acadd0ac961161be66fd20000000000ffffffff5d04725264be05273520a69b7d3e6f42bd3d1f41bcd093d84e4dfbf7861f8ded0000000000ffffffff045f8d3c477964f1b51743ce58df5dd0d8700837bb490f7a1851ed79cadb3a620000000000ffffffff6a0b37a10585ab1c21a6afad5d4ef309c216ed6a4b161489243a47c28b54bf790000000000ffffffff441d58f6e4540565a64bb080dfbdc8a62127d60dfafa1f5a1a92bf0d4cb6830b0000000000ffffffff04e80300000000000069512102a576ddf1130eeaede45676a39a54a042c2ec3624d2e84d493e35c624841e5c0b21031451b99c8139acc9d3a0b0b7b0940b99add4d78605ef546454d5c3e0401adebd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee80300000000000069512103a576ddf1130eeaede445f1c97b9aca3d0aa01bd3b35952f49d7de369c56f23de2102641639b092b28394bcb9abf5fd2c88d83ebe8e92f37b34891eaf6960c0c3ccb621023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee803000000000000695121038476ddf1130eeaede45576a01afadbd127dd481aa92a46dff6536b70c5abf7a22103641639b092b283bea90c3e4041e688d83ebe8e92f371b1e47bc2065340c3cc5f21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae387923fc06000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0247304402203485144733f1824530da59622db88f614c34468ed717b5ef67fd062791e78d5c0220215dadc4f4754f66835b2b047a3f1c48c87c877b443ddf6241fbc24f892b715a0121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72024730440220246a9dc6f8bb8671e4a7ae06a6192faf92d83744a5e366b07c8c93a1205da47f02201da75cbc12426fa26feae74ebd31794cc8c2d18ebcd64c55903643c16e11f0e90121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e720247304402204b48ff6a9417ef1e82126dad83aac46fa9140ea6575df9d97952438d73d421fa022018f708ecfa289fe1f57de28ba1627f17ee7b062a8b491a9b5c50569853c1dc190121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7202473044022036d69e24a5d3d4084d31f0d2fcb0dcb40075e635078958b7783823347c49283d022060653bb0dfce8e0fe36d2452e0f141290078ff24a526113fbe53b9af36455b5e0121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e720247304402204872ba18b969b5bed604d6ada62279c47fa7eac105fd488222a4e70cd2699cd702203825599d13c9e66162cf3f6ecfd1871477945c82d6de543ac4235a34824b89820121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7202473044022061c5ae08ef065dba17d2e93baf083d63287351cd806c8df307164c423e549c3e02202dc41850b5de66f69ff40b29c6e7f8127730e8b95838da3d09d6d549f775eacf0121023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106cda45e2e18ac77a195849b23f92c8e9652ba9dea1024cbe12e473f3d31dc06400000000000ffffffff620383ad985e1df76c4a32ecc500cbd34fe1780a4b80a68e2853c419f3dc05720000000000ffffffffc33607e522c1a974c601fb65b3e923dd9bd63fb04a3bd07439685470289da9bf0000000000ffffffffebcf554ce7a2c7a0460421fdb1eea80ef75aef96f71a3623388d462ecefa7b5c0000000000ffffffffec0023647dcf8984abe580d892ae170b2cc4bcc497c8672551343c4273e96f3f0000000000ffffffff1643a441d4ee69e4ed815bade2f385305f074aca65e76b4a7ac50a1a28a73c7b0000000000ffffffff04e80300000000000069512103d4dc74675c4a84ef52087246deef92ca699abcf721f1d8750f7e4a7f9e1f20a221024bdb6eeccdff66444a4c78d9fbbe3ab96ce6eab87797173338e3209709804981210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453aee80300000000000069512103d4dc74675c4a84ef52c64e7e091881a70a43b6728538bae10d89b98af2d169ad2103dba5eea35a7d42b917e8ce21b833da55b7928fa141b243dee49321664420506a210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453aee80300000000000069512103f5dc74675c4a84ef520b72455e80540f65fd1bb68157aeca66a73193f215bd6d2103dba5eea35a7d4293025d5b9404f9da55b7928fa141b8c6b381fe4e55c42050dc210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae387923fc060000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02473044022018de9de984695822131ab231f0f4be1b4591491c6a89cae1bc89d08f0756b30602206bdeaafe6d223a2c13345694e070c7bb9eb2a5a925123fe1d2bae21aadaa124f01210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634024730440220062f9cc1191622a8ff3d863703da23fcaa74abf5b261b605eaff789b61446a9b02202eb504a905841788128c651f4ccf27a8b33e94886218f562f6f022eb7558089601210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b6498346340247304402206c3f94a761a6b73c08f4b5bdb68cd70898ba2f9d94a20f3475da3cd4b7b53d4302205f7f9283157293d4cfb3bdbc7f5b41768cb5a34708f4ed303fbecdbb3ad6843f01210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463402473044022043917c66d7cdd861f7b21ef41e856e7c97416d116f3b527de4aa3cc9d868b28702206c1cda4245ff958a6ce8165ddb833d2e1ac478bb66d75009e2feeb2a01cc925501210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634024730440220068c5a74572ffde103475779d1f55bffe05b370992104557aae7ee1c5eb6867402206156ab3961d9fa628c8712b02108bc3f184f5d49ea84bc146eb115b330d4eed401210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634024730440220735c65df526a4a177442b59927ccca977311359937436f831db66cad391a8a8202205df557461d309204078f37a5176adf315ae688038d5a6d266ccf4a451518af5f01210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463400000000` (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. @@ -3362,53 +3362,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "fcb80e4b4f2aaae5340b9f140d9d9d6a0136b57285457954589c4ffd83361a41", + "hash": "cda45e2e18ac77a195849b23f92c8e9652ba9dea1024cbe12e473f3d31dc0640", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "85f5509c5971278b70fb63428435be30fc0e66c5ba0acadd0ac961161be66fd2", + "hash": "620383ad985e1df76c4a32ecc500cbd34fe1780a4b80a68e2853c419f3dc0572", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5d04725264be05273520a69b7d3e6f42bd3d1f41bcd093d84e4dfbf7861f8ded", + "hash": "c33607e522c1a974c601fb65b3e923dd9bd63fb04a3bd07439685470289da9bf", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "045f8d3c477964f1b51743ce58df5dd0d8700837bb490f7a1851ed79cadb3a62", + "hash": "ebcf554ce7a2c7a0460421fdb1eea80ef75aef96f71a3623388d462ecefa7b5c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6a0b37a10585ab1c21a6afad5d4ef309c216ed6a4b161489243a47c28b54bf79", + "hash": "ec0023647dcf8984abe580d892ae170b2cc4bcc497c8672551343c4273e96f3f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "441d58f6e4540565a64bb080dfbdc8a62127d60dfafa1f5a1a92bf0d4cb6830b", + "hash": "1643a441d4ee69e4ed815bade2f385305f074aca65e76b4a7ac50a1a28a73c7b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3418,38 +3418,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512102a576ddf1130eeaede45676a39a54a042c2ec3624d2e84d493e35c624841e5c0b21031451b99c8139acc9d3a0b0b7b0940b99add4d78605ef546454d5c3e0401adebd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" + "script_pub_key": "512103d4dc74675c4a84ef52087246deef92ca699abcf721f1d8750f7e4a7f9e1f20a221024bdb6eeccdff66444a4c78d9fbbe3ab96ce6eab87797173338e3209709804981210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae" }, { "value": 1000, - "script_pub_key": "512103a576ddf1130eeaede445f1c97b9aca3d0aa01bd3b35952f49d7de369c56f23de2102641639b092b28394bcb9abf5fd2c88d83ebe8e92f37b34891eaf6960c0c3ccb621023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" + "script_pub_key": "512103d4dc74675c4a84ef52c64e7e091881a70a43b6728538bae10d89b98af2d169ad2103dba5eea35a7d42b917e8ce21b833da55b7928fa141b243dee49321664420506a210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae" }, { "value": 1000, - "script_pub_key": "5121038476ddf1130eeaede45576a01afadbd127dd481aa92a46dff6536b70c5abf7a22103641639b092b283bea90c3e4041e688d83ebe8e92f371b1e47bc2065340c3cc5f21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" + "script_pub_key": "512103f5dc74675c4a84ef520b72455e80540f65fd1bb68157aeca66a73193f215bd6d2103dba5eea35a7d4293025d5b9404f9da55b7928fa141b8c6b381fe4e55c42050dc210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae" }, { "value": 29999987000, - "script_pub_key": "0014a975b369ecb27bd04f92e9f3456b9270f93c1b6b" + "script_pub_key": "00142aabde3f5bb7bac2d273f85e71e76054d261e32d" } ], "vtxinwit": [ - "304402203485144733f1824530da59622db88f614c34468ed717b5ef67fd062791e78d5c0220215dadc4f4754f66835b2b047a3f1c48c87c877b443ddf6241fbc24f892b715a01", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "30440220246a9dc6f8bb8671e4a7ae06a6192faf92d83744a5e366b07c8c93a1205da47f02201da75cbc12426fa26feae74ebd31794cc8c2d18ebcd64c55903643c16e11f0e901", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "304402204b48ff6a9417ef1e82126dad83aac46fa9140ea6575df9d97952438d73d421fa022018f708ecfa289fe1f57de28ba1627f17ee7b062a8b491a9b5c50569853c1dc1901", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "3044022036d69e24a5d3d4084d31f0d2fcb0dcb40075e635078958b7783823347c49283d022060653bb0dfce8e0fe36d2452e0f141290078ff24a526113fbe53b9af36455b5e01", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "304402204872ba18b969b5bed604d6ada62279c47fa7eac105fd488222a4e70cd2699cd702203825599d13c9e66162cf3f6ecfd1871477945c82d6de543ac4235a34824b898201", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "3044022061c5ae08ef065dba17d2e93baf083d63287351cd806c8df307164c423e549c3e02202dc41850b5de66f69ff40b29c6e7f8127730e8b95838da3d09d6d549f775eacf01", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" + "3044022018de9de984695822131ab231f0f4be1b4591491c6a89cae1bc89d08f0756b30602206bdeaafe6d223a2c13345694e070c7bb9eb2a5a925123fe1d2bae21aadaa124f01", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "30440220062f9cc1191622a8ff3d863703da23fcaa74abf5b261b605eaff789b61446a9b02202eb504a905841788128c651f4ccf27a8b33e94886218f562f6f022eb7558089601", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "304402206c3f94a761a6b73c08f4b5bdb68cd70898ba2f9d94a20f3475da3cd4b7b53d4302205f7f9283157293d4cfb3bdbc7f5b41768cb5a34708f4ed303fbecdbb3ad6843f01", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "3044022043917c66d7cdd861f7b21ef41e856e7c97416d116f3b527de4aa3cc9d868b28702206c1cda4245ff958a6ce8165ddb833d2e1ac478bb66d75009e2feeb2a01cc925501", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "30440220068c5a74572ffde103475779d1f55bffe05b370992104557aae7ee1c5eb6867402206156ab3961d9fa628c8712b02108bc3f184f5d49ea84bc146eb115b330d4eed401", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "30440220735c65df526a4a177442b59927ccca977311359937436f831db66cad391a8a8202205df557461d309204078f37a5176adf315ae688038d5a6d266ccf4a451518af5f01", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634" ], "lock_time": 0, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", - "tx_id": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7" + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", + "tx_id": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b" }, "unpacked_data": { "message_type": "mpma_send", @@ -3457,14 +3457,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -3472,7 +3472,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3497,7 +3497,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8` (str, required) - Transaction hash + + tx_hash: `adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5` (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. @@ -3508,18 +3508,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d5a3d729312d3abe8dedf46966c31dc2cc31e10b3265e70144d09d67e87d11cf", + "hash": "29549c08b268308114c6a6de6c0f8d24fd700993994e3e4fb54a74df253bec14", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3529,20 +3529,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e192c9ea723d0209741794735d6fd4e1dcbfe150c64859968ba76773d68419a760e9d5530faede7c0356fec43aa45" + "script_pub_key": "6a2e0dee8919d3e2a244e311162e16879ac36bdaaf2597f43e716c168a9b2e3adcd8c79890c4b133da4e027628985755" }, { "value": 4949930546, - "script_pub_key": "00142f17c5b300d912108769616091ec2d7d53c91a73" + "script_pub_key": "0014b91d6ec2cda019cd3c3b579855a86fbeadc4046f" } ], "vtxinwit": [ - "30440220265878f34bd61da70af7568f3386ca5ace2dfffc834494289ae2340aaecd6b3302203fbc8982fbf9bdfc0705f97bc3fe3758edab34dea77f27426b9436266e5e282c01", - "02b6527bd925a27be267b6d0029274d1b083d226181f44cf9d6b2a040d8418605b" + "3044022013a86cf6238f8fae6436a6102b726523d9cfafc914d111b7c9a40edcac3874fe022032354d509d9ef1b5dd2cdf75d927dea5264455629e7cd36feaa57d4e35e12d6701", + "026c53391b32afdf7b71bdad0c91431b464545bc26fdcaed72cb11f39c0d7f480d" ], "lock_time": 0, - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", - "tx_id": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8" + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", + "tx_id": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3550,7 +3550,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -3611,17 +3611,17 @@ Returns a transaction by its index. { "result": { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3640,7 +3640,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction + + tx_hash: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf` (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. @@ -3652,17 +3652,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3705,12 +3705,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 713, @@ -3719,14 +3719,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3737,9 +3737,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 712, @@ -3748,9 +3748,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3760,24 +3760,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3787,9 +3787,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 710, @@ -3797,14 +3797,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 213, - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "msg_index": 1, "quantity": 2000000000, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", "status": "valid", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3814,9 +3814,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 709, @@ -3829,7 +3829,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction to return + + tx_hash: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `715` (str, optional) - The last event index to return @@ -3853,12 +3853,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 713, @@ -3867,14 +3867,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3885,9 +3885,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 712, @@ -3896,9 +3896,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3908,24 +3908,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3935,9 +3935,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 710, @@ -3945,14 +3945,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 213, - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "msg_index": 1, "quantity": 2000000000, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", "status": "valid", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3962,9 +3962,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 709, @@ -3977,7 +3977,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction to return + + tx_hash: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf` (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 @@ -3996,10 +3996,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4007,7 +4007,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4020,10 +4020,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4031,11 +4031,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4053,7 +4053,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction to return + + tx_hash: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf` (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 @@ -4073,27 +4073,27 @@ Returns the dispenses of a block { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4108,7 +4108,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4152,16 +4152,16 @@ Returns the events of a transaction "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4171,9 +4171,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 709, @@ -4183,12 +4183,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4198,9 +4198,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 706, @@ -4210,24 +4210,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": null, @@ -4240,7 +4240,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The hash of the transaction to return + + tx_hash: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `715` (str, optional) - The last event index to return + Default: `None` @@ -4262,16 +4262,16 @@ Returns the events of a transaction "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4281,9 +4281,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 709, @@ -4293,12 +4293,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4308,9 +4308,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 706, @@ -4320,24 +4320,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": null, @@ -4352,7 +4352,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g,bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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 @@ -4376,7 +4376,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4397,7 +4397,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4418,7 +4418,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4439,7 +4439,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4460,7 +4460,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4470,7 +4470,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4481,7 +4481,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4491,7 +4491,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4508,7 +4508,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g,bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (str, required) - Comma separated list of addresses to return + cursor: `80` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4527,17 +4527,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", - "block_time": 1730977721, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", + "block_time": 1731005056, + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802aabde3f5bb7bac2d273f85e71e76054d261e32d804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33:0 4 ", + "utxos_info": " ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4545,14 +4545,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4560,7 +4560,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4579,17 +4579,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", - "block_time": 1730977716, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "block_hash": "138c522ae39dd5c6ea53e393613ad25264950d114a95a46289c26ee246a996ca", + "block_time": 1731005052, + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a73c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802aabde3f5bb7bac2d273f85e71e76054d261e32d804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59:0 4 ", + "utxos_info": " 52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4597,14 +4597,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4612,7 +4612,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4631,17 +4631,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", - "block_time": 1730977712, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", + "block_time": 1731005049, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", + "utxos_info": " 7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4649,14 +4649,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4664,7 +4664,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4683,17 +4683,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", - "block_time": 1730977699, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7e2c5b73f3c13602ea8db85c1c3cf060306038c7a1ee79afb01ee93730912f86", + "block_time": 1731005044, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", + "utxos_info": " 23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4701,14 +4701,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4716,7 +4716,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4735,17 +4735,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", - "block_time": 1730977696, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0cbaf035c6c8c71ee818229bb956e4502a6f0adbc5a38bbca6da885b1a425cd7", + "block_time": 1731005031, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "02000000178d82231300000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "supported": true, - "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", + "utxos_info": " 22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4753,12 +4753,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4778,7 +4778,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g,bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `715` (str, optional) - The last event index to return @@ -4803,15 +4803,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4821,9 +4821,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 692, @@ -4831,27 +4831,27 @@ Returns the events of a list of addresses "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 691, @@ -4859,42 +4859,42 @@ Returns the events of a list of addresses "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 690, "event": "DEBIT", "params": { "action": "mpma send", - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "block_index": 211, - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4904,9 +4904,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 689, @@ -4919,7 +4919,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy,bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd,bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d` (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 @@ -4935,17 +4935,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "quantity": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -4956,22 +4956,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4981,22 +4981,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "block_index": 213, - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5006,30 +5006,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730977737.9578004, + "block_time": 1731005072.5467687, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "destination": "", "fee": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, - "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", + "utxos_info": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -5043,7 +5043,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -5056,7 +5056,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -5076,7 +5076,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5084,14 +5084,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5099,14 +5099,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5114,14 +5114,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5136,7 +5136,7 @@ Returns the balances of an address "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5144,7 +5144,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5161,7 +5161,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -5174,7 +5174,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5199,7 +5199,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5249,16 +5249,16 @@ Returns the credits of an address "result": [ { "block_index": 211, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5270,16 +5270,16 @@ Returns the credits of an address }, { "block_index": 210, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "event": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5291,16 +5291,16 @@ Returns the credits of an address }, { "block_index": 210, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "event": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5312,16 +5312,16 @@ Returns the credits of an address }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "event": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5333,20 +5333,20 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "event": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5363,7 +5363,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5402,16 +5402,16 @@ Returns the debits of an address "result": [ { "block_index": 209, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "event": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5423,20 +5423,20 @@ Returns the debits of an address }, { "block_index": 209, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "event": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5444,16 +5444,16 @@ Returns the debits of an address }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "event": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5465,20 +5465,20 @@ Returns the debits of an address }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "event": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5486,20 +5486,20 @@ Returns the debits of an address }, { "block_index": 207, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "event": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977696, + "block_time": 1731005031, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5516,7 +5516,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address of the feed + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5551,7 +5551,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -5570,9 +5570,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", + "tx_hash": "f1a31df1d65b7242d6634a0d7cc7b9551dc08db83cb38862c860ae9886f9e999", "block_index": 137, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5580,7 +5580,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977381, + "block_time": 1731004727, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5594,7 +5594,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -5613,14 +5613,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "9338289b6df5af85664673ef663dda3aff22cf63613ac17518ed936657c8e187", + "tx_hash": "ea9940498345da2f40710a2ef65b4716598906d147af978a3074d6ce75d8fece", "block_index": 112, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730977287, + "block_time": 1731004633, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5635,7 +5635,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -5654,10 +5654,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5665,7 +5665,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5678,10 +5678,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5689,11 +5689,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5702,10 +5702,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5713,11 +5713,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5726,10 +5726,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5737,7 +5737,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5750,10 +5750,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5761,11 +5761,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5783,7 +5783,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6` (str, required) - The address to return + + address: `bcrt1qlzf8fguk4ukzt33tqpsrmfr5te4h4x0je0ju2c` (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 @@ -5802,10 +5802,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "73934ba7bb254b84d853cf5e30149bd1e8b98e8b0fe256aad3c963b6a35271b7", + "tx_hash": "dbd95a4d916fbf45a807b143ce8578e5fc982642d323efd53f8ea1ad1f1f487a", "block_index": 151, - "source": "1244595298ba8bc22f6e62a5ff74f93b0fb7ac8af574550bb9879062dc586a9b:0", - "destination": "bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6", + "source": "c84e5ce605f310f5a321cc1e00b01fb0dd9d56b417a91b189504fc53d926aa26:0", + "destination": "bcrt1qlzf8fguk4ukzt33tqpsrmfr5te4h4x0je0ju2c", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5813,11 +5813,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977441, + "block_time": 1731004801, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5835,7 +5835,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5855,10 +5855,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5866,11 +5866,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5879,10 +5879,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5890,11 +5890,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5903,10 +5903,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5914,11 +5914,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5927,10 +5927,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5938,11 +5938,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5951,10 +5951,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5962,11 +5962,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977696, + "block_time": 1731005031, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5984,7 +5984,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6` (str, required) - The address to return + + address: `bcrt1qlzf8fguk4ukzt33tqpsrmfr5te4h4x0je0ju2c` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6012,7 +6012,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6041,9 +6041,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6052,7 +6052,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6063,7 +6063,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6080,9 +6080,9 @@ Returns the dispensers of an address }, { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6091,7 +6091,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6102,11 +6102,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6128,7 +6128,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -6141,9 +6141,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6152,7 +6152,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6163,7 +6163,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6186,7 +6186,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -6206,19 +6206,19 @@ Returns the dispenses of a source { "tx_index": 66, "dispense_index": 0, - "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", + "tx_hash": "99fc4b7582bc12cc4cc468f8287401bca2da6f9b1937fa4e7a2f95ebca1686e9", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "dispenser_tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6226,7 +6226,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6241,11 +6241,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6255,19 +6255,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6275,7 +6275,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6290,7 +6290,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6304,19 +6304,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6324,7 +6324,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6339,7 +6339,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6361,7 +6361,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address to return + + address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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 @@ -6381,19 +6381,19 @@ Returns the dispenses of a destination { "tx_index": 66, "dispense_index": 0, - "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", + "tx_hash": "99fc4b7582bc12cc4cc468f8287401bca2da6f9b1937fa4e7a2f95ebca1686e9", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "dispenser_tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6401,7 +6401,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6416,11 +6416,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6430,19 +6430,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6450,7 +6450,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6465,7 +6465,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6479,19 +6479,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6499,7 +6499,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6514,7 +6514,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6536,7 +6536,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -6557,19 +6557,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6577,7 +6577,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6592,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6606,19 +6606,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6626,7 +6626,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6641,7 +6641,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6663,7 +6663,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address to return + + address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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` @@ -6684,19 +6684,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6704,7 +6704,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6719,7 +6719,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6733,19 +6733,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6753,7 +6753,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6768,7 +6768,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6790,7 +6790,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy` (str, required) - The address to return + + address: `bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd` (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 @@ -6809,16 +6809,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -6832,7 +6832,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6864,14 +6864,14 @@ Returns the issuances of an address "result": [ { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6886,20 +6886,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", + "tx_hash": "febdb63d7289b3d483a34f1a9b06d1c324fc0577093297c7682d4a3ab4210572", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6914,20 +6914,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977496, + "block_time": 1731004845, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", + "tx_hash": "46064999fa67a4fbd94100e0f2522b5f03ebec9fb7c3637595fd23f45263e2e5", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6942,20 +6942,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730977492, + "block_time": 1731004841, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", + "tx_hash": "8dd954472faf0bc7d9ff7c2f746b8d8ea76894c87126b3dbfbda38cfcef91c08", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6970,20 +6970,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977478, + "block_time": 1731004836, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6b026e21935f51c6de8a8490834fefe1c74f80f5d347abc80481b3a9f67cfea7", + "tx_hash": "190c045f3efb735d1d169f5d23bf0989437bc5b55c721af87f4129b47a71b638", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6998,7 +6998,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977474, + "block_time": 1731004832, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7013,7 +7013,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The issuer or owner to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7036,8 +7036,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -7045,16 +7045,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -7062,16 +7062,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -7079,16 +7079,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 40, @@ -7096,16 +7096,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730977375, - "last_issuance_block_time": 1730977378, + "first_issuance_block_time": 1731004719, + "last_issuance_block_time": 1731004723, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 19, @@ -7113,8 +7113,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730977358, - "last_issuance_block_time": 1730977370, + "first_issuance_block_time": 1731004703, + "last_issuance_block_time": 1731004714, "supply_normalized": "0.00000019" } ], @@ -7128,7 +7128,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The issuer to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -7151,8 +7151,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -7160,16 +7160,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -7177,16 +7177,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -7194,16 +7194,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 40, @@ -7211,16 +7211,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730977375, - "last_issuance_block_time": 1730977378, + "first_issuance_block_time": 1731004719, + "last_issuance_block_time": 1731004723, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 19, @@ -7228,8 +7228,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730977358, - "last_issuance_block_time": 1730977370, + "first_issuance_block_time": 1731004703, + "last_issuance_block_time": 1731004714, "supply_normalized": "0.00000019" } ], @@ -7243,7 +7243,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The owner to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7266,8 +7266,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -7275,16 +7275,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -7292,16 +7292,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -7309,16 +7309,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 40, @@ -7326,16 +7326,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730977375, - "last_issuance_block_time": 1730977378, + "first_issuance_block_time": 1731004719, + "last_issuance_block_time": 1731004723, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 19, @@ -7343,8 +7343,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730977358, - "last_issuance_block_time": 1730977370, + "first_issuance_block_time": 1731004703, + "last_issuance_block_time": 1731004714, "supply_normalized": "0.00000019" } ], @@ -7358,7 +7358,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + cursor: `80` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7377,17 +7377,17 @@ Returns the transactions of an address "result": [ { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", - "block_time": 1730977712, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", + "block_time": 1731005049, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", + "utxos_info": " 7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7395,14 +7395,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7410,7 +7410,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7429,17 +7429,17 @@ Returns the transactions of an address }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", - "block_time": 1730977699, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7e2c5b73f3c13602ea8db85c1c3cf060306038c7a1ee79afb01ee93730912f86", + "block_time": 1731005044, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", + "utxos_info": " 23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7447,14 +7447,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7462,7 +7462,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7481,17 +7481,17 @@ Returns the transactions of an address }, { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", - "block_time": 1730977696, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0cbaf035c6c8c71ee818229bb956e4502a6f0adbc5a38bbca6da885b1a425cd7", + "block_time": 1731005031, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "02000000178d82231300000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "supported": true, - "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", + "utxos_info": " 22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7499,12 +7499,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7515,17 +7515,17 @@ Returns the transactions of an address }, { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_hash": "37bc44a99f26fbd26b4b14d64ea8dab4699df6d48eb5e9108cdf9ffbcd39439f", - "block_time": 1730977691, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0c3e005657d62b355cc288f8d8344392457e21adb604c121777bc238ee6d26e2", + "block_time": 1731005027, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817:1 2 ", + "utxos_info": " 30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7550,17 +7550,17 @@ Returns the transactions of an address }, { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 199, - "block_hash": "00639b2a2a9fc6eda899e9a6f5b903034d943a43a30e64789011fe3b4a005761", - "block_time": 1730977647, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "5fda15078f1dcb6b20cf62c76cf1738475dd960aaeb2deb55be151573622a5f7", + "block_time": 1731004994, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760:1 2 ", + "utxos_info": " 7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7577,7 +7577,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7598,7 +7598,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -7617,20 +7617,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7655,7 +7655,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7684,9 +7684,9 @@ Returns the orders of an address "result": [ { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7703,7 +7703,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7731,9 +7731,9 @@ Returns the orders of an address }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7750,7 +7750,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7778,9 +7778,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7797,7 +7797,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7825,9 +7825,9 @@ Returns the orders of an address }, { "tx_index": 61, - "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "block_index": 210, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7844,7 +7844,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7881,7 +7881,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The source of the fairminter to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7906,10 +7906,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, "block_index": 156, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7934,7 +7934,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7943,10 +7943,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "tx_index": 22, "block_index": 135, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7971,7 +7971,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730977375, + "block_time": 1731004719, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7983,10 +7983,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "tx_index": 18, "block_index": 131, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8011,7 +8011,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730977358, + "block_time": 1731004703, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8023,10 +8023,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "tx_index": 14, "block_index": 130, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8051,7 +8051,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730977353, + "block_time": 1731004698, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8063,10 +8063,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "tx_index": 10, "block_index": 125, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8091,7 +8091,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8113,7 +8113,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address of the mints to return + + address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8131,22 +8131,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8155,22 +8155,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", + "tx_hash": "30cb75f423b21b61efa45caa47385dc64add668e904ea611d9bca486b4e3a5e5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977370, + "block_time": 1731004714, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8179,22 +8179,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", + "tx_hash": "38159f9eb395d2e45b54e163b6c44f2552e865676df332f340045cbca90e27e7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977366, + "block_time": 1731004710, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8203,22 +8203,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", + "tx_hash": "13c1eec8c6aa75ef56245a19ddae307006789ea855ac87dff2d0db0c7d27bf5a", "tx_index": 19, "block_index": 132, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977362, + "block_time": 1731004707, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8227,22 +8227,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9c1ce9680f0043f68b449f91e332e914fbbda1f815b93638da08c6901354ff60", + "tx_hash": "82e272b1696162e7df85a6af2281a559ef26df43ca918dd31f963dbee291a424", "tx_index": 15, "block_index": 127, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977344, + "block_time": 1731004688, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8251,22 +8251,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8285,7 +8285,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address of the mints to return + + address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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` @@ -8304,22 +8304,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8340,7 +8340,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0` (str, required) - The utxo to return + + utxo: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8360,8 +8360,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8374,12 +8374,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8419,8 +8419,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will make the bet - + feed_address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address that will make the bet + + feed_address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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) @@ -8494,7 +8494,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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) @@ -8556,7 +8556,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8569,7 +8569,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985771, "btc_fee": 14229, - "rawtransaction": "02000000000101c158f0eff2350f861b62cf558dc0e3ef5dbc4f943fba24378588c5f84545108d00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff0200000000000000002b6a29f3dfe7e96c5baf4576771d1d6ea133724796a07a4ed01d6bcd9766d9c19d16527dd356d14bf25031486bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001015067c9650b1681d97bf6a912b2bf5bf56f323dbde3ac65caf9f9f66a5e08cb1e000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff0200000000000000002b6a295ea75ef93e8f2ad585dfbc79b8d9437f1118ba83224a6307fa831ad21b40ef846abecbbdd84b49c3b06bba052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8591,8 +8591,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending the payment - + order_match_id: `aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc` (str, required) - The ID of the order match to pay for + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address that will be sending the payment + + order_match_id: `492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42` (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) @@ -8650,24 +8650,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "order_match_id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590baebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "data": "434e5452505254590b492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e27373e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980890, "btc_fee": 18110, - "rawtransaction": "020000000001012d58a19d1cedccbcdbd8ef8fff318dfd2e5cd28f390e154c3a45932ef76329cb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e803000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b00000000000000004b6a4909d2dd0c2007d43911c8aea7cb28b1079c0205b6cd2e9a74055b419b3b654595ff11f46c29e676fe6014b94ee75906c9ea1455c033bd1502673c080a2582beb5f597c315f4d4931cb65aa7052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001013590c8257e1da84e7b376e072a8b66f6bb6bf0ec21e001011dfa0b1e869515df000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff03e8030000000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d00000000000000004b6a4958c7a0205354b94862ce5897b4a42fc18f58ecf3e7865913887f5fc0d0b67434d8c8057713ad1744ce7a72c481eeac797d3d4051d41598ebddde445be6ba01fff8589286da7f17c2c25aa7052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "order_match_id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "status": "valid" } } @@ -8680,7 +8680,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address with the BTC to burn + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -8741,7 +8741,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8752,7 +8752,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "020000000001014e868381a6790213502baa07d4980cadf9a3c5ce2e71c47bc48ebb4793b2b7e200000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000" + "rawtransaction": "0200000000010107a943d58bdf28f31c24b07591808a1969fe67fed7097cb0945f7e3a69a71fda000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000" } } ``` @@ -8762,8 +8762,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: `bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6` (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) @@ -8821,22 +8821,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "offer_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594659e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "data": "434e54525052545946f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904679, "btc_fee": 14229, - "rawtransaction": "02000000000101f3a3f2abf660a05264628a5eba5c06cfb731652e97a6b70e1a4e7ed97a46e959010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dffffffffff0200000000000000002b6a2927fcbf4eb3cff3769830b7339ecf1ab04935ef3c83db0128f93e55c7ada85efa5bc0bacc73b308982c278d0927010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dff02000000000000", + "rawtransaction": "02000000000101e6aea6fbc852bf6421ead13eaa182b394e01cdc2f0f8505c728a7e1158ade2f5010000001600149ed1bed8deca0d3b06c336364bf33d2a8c20dfdbffffffff0200000000000000002b6a29ecc7e1d22ed204c27630d537a2fb4091306f89422c9a01c650a83f08679b4af32333b7fc462cc3aeb9278d0927010000001600149ed1bed8deca0d3b06c336364bf33d2a8c20dfdb02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "offer_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "status": "valid" } } @@ -8849,7 +8849,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -8910,7 +8910,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8930,7 +8930,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986300, "btc_fee": 13700, - "rawtransaction": "02000000000101a43e72f572060f4876a971b5312d46dec47a79c5791f8967bbfd9f3fce81819600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000226a207af07edddbfb3964ea2050bb90ea1af854d3a450d8f523a63b8a582a6153305d7cbc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001015fdb11fb46c974b6fd3194c9375f64611e91e212efe5dd220f01f5d254d4bdbd000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000226a20443839676f40ffc1d8d9c9e5f45e90f5ee18a48fee4a6a2c47a18b130d3a8a7d7cbc052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8950,7 +8950,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: `bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce` (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) @@ -9017,7 +9017,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -9042,7 +9042,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859611, "btc_fee": 14288, - "rawtransaction": "02000000000101bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf50200000016001427db96e897929853c6ebe6127d77a4882445084bffffffff0200000000000000002c6a2a3c8c8fb35dbad902c9ff6bf4dd47ad2937e001f890554e3b57ce5bf6a2b2df98d4f05ed72ba3670efb3d1bdd08270100000016001427db96e897929853c6ebe6127d77a4882445084b02000000000000", + "rawtransaction": "02000000000101bffcf652a57630f954bf4ca2ef879c0e1837e39d6de150bab5b878010d8b36c402000000160014345cb3cfff90bbca05480ee884ccfc20c475bb08ffffffff0200000000000000002c6a2a1ab2d36e13d22556baa70954fe378309f84d13ecf06a2156baac7579398b9964bf9423f62e8281ab0fcf1bdd082701000000160014345cb3cfff90bbca05480ee884ccfc20c475bb0802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9068,7 +9068,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (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: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -9129,7 +9129,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -9137,7 +9137,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9156,7 +9156,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101668815b074db819426b51ae36179f9fafc4803f48bd6420713f67ca1e61da61800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219f95843f5dda7681968fe685f1fe39f327ae9215be39b171de5c34f1f02c3334b642bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001011312daef6ebe4e8d09a80f5d6535b42e2b2da3ddfdaa051debd7ae669a27839b000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000236a217800be11ee7d23aba24960b67199f2008c8cb41c5ea0653128e54ffb9ec43af60042bc052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9177,10 +9177,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -9247,10 +9247,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "transfer_destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "lock": false, "reset": false, @@ -9264,7 +9264,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983696, "btc_fee": 15758, - "rawtransaction": "02000000000101b554c2e655bc234e4aff2d8274030dcde31ff5760d10ee8bc61f415e63514e9e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000236a21efc368468f681c93cad7e47914392488a41d48dca0f7c6e47d39c76644f194349750b2052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "0200000000010115fb76796a4d45e7d162a46ab23386de6dc665cd1eb5e939469d9fa0995dce73000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff0322020000000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d0000000000000000236a2177b5d0dff59a5977372ad6903da36f635690857d7fa9d50965cc5b842af013efa150b2052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9293,9 +9293,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6,bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g,bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9362,16 +9362,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", 1 ], [ "MPMASSET", - "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", 2 ] ], @@ -9380,26 +9380,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280a975b369ecb27bd04f92e9f3456b9270f93c1b6b80aefb93e5317e3e7bc25fbda34dc62dc9b5ab704740000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002802aabde3f5bb7bac2d273f85e71e76054d261e32d806f46c50c67a741a0a6229402f21095e40a9d907e40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945317, "btc_fee": 52683, - "rawtransaction": "02000000000104f983b24cdaf7fd05960f39fc7ffc3c91db6e09e76165925358a6a9ef98378c8800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffffefee148baf747bebe0180349e1f8122493253ec497bed9b169c78a476caa1afb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff71514a9311b573428fa6df525d18dacfb6079c6f70543794ca948f381f28039f00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff08aff0edc5140d16dc62fe19734437c5960ee379b8ba626e26dcadd1d5d516a400000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e8030000000000006951210301ec4ed558c01cdbf3d9f8601f6f83700bdc93a6b1d072e446441f48a84ba0ad2102f7448423b0eb6b21ea6d028c31753ebef198d3a8a1f7c68907a8f7627490cd5e21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee803000000000000695121031eec4ed558c01cdbf30af8629fc6f6c3621421dd619fe00db50574dad8b29cff2102ec2f058d4b788e109453794e6ec89df337b51a1d0a8781c907a8f281141809bd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae65f216a804000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000002000002000002000000000000", + "rawtransaction": "02000000000104cda46946d1630a836c4e60da984a6ad27e11432f1d03cbcafc6bbae8b1ce5c56000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffffd08a3f97ec3ec42ff630e7a3e20eacd54e18b7c700ab04e49822bd274ca451cb000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff4c611a1313b6f74f8bea264b48f64034b3446e1ad745b1db01e164eb330509b1000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff4c88f109a7e24d22b62d124bfe091aee51aa4e50d45dacfee64ccab30a64afba000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff03e8030000000000006951210369c535184f5dc416389e0b4ac4ab20253bdb2f4c3817c9986aea3cb54b291e7b21024075b7383512fe64eabe4cc7d6b850479c16cedd1a084170ff045808309ed563210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453aee8030000000000006951210376c535184f5dc416384d0b4844818bfb04a498f6fac5ba60349fdbd51ffb7f3e2102a358365773d7f2034dffec61f42c52b58c832ad787983f30ff045deb501611d8210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae65f216a8040000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9415,7 +9415,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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 @@ -9479,7 +9479,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9497,7 +9497,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9511,7 +9511,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985183, "btc_fee": 14817, - "rawtransaction": "02000000000101a4880f217851d5755e542253fc0c0a843e1e4c11f68e6fb98333a783c78dc58800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000356a337b6b94a943206ff17006fde5b3e508b3bba1015d06c8afda1764d188fda077b659183f217c333c42fa085e6bfc76cc36e2c5fb1fb8052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "02000000000101535fafd067122c5f71c64cb929d3cb90fb891fec412eb78d6de5b77138c39083000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000356a331d9fc52675910cc74f5c869d06d7666af2d3bf2f5c71577bb6f9fe2bcf7362b7e9b28de5a110d444d971c251fe628507876c781fb8052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9537,8 +9537,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address that will be receiving the asset + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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 @@ -9604,8 +9604,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9622,19 +9622,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "434e54525052545902000000000000000100000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985477, "btc_fee": 14523, - "rawtransaction": "0200000000010177151862c1be96e7dc0ccb5e585d8cb3caf28441a6f219358b05b5d84aa2afe600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000306a2ef312b061dfba1b217147ac2ecbc5f331390c118609b7ef84fa4bb7b755642aa42e84fe4b752630ef949f6740e34645b9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "0200000000010140038d2dabd5867eb6514d62fda11c8b235b3bc79da707cfa43cf14dfe8cd3d0000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000306a2e9f7b491616e6b06f9d6f83b2f28f0c1a036e18e7f7c7ab12be55eced5476525c9fe97e5d418d3d656740b2c3339f45b9052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "quantity_normalized": "0.00001000" } @@ -9648,8 +9648,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be sending - + destination: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address that will be sending + + destination: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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 @@ -9709,24 +9709,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480aefb93e5317e3e7bc25fbda34dc62dc9b5ab704707ffff", + "data": "434e54525052545904806f46c50c67a741a0a6229402f21095e40a9d907e07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "020000000001019fb504094c0ff9b4e9927e1e274fa80896c6ab19c482aafe32a9284296b06e5e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219fb4153f246ef01c1e700548290790380e9ec14961ffb1dfb46d3c00d7b1f049db42bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001013e85f11526f4a8281182b691b03136c64ec3c51e197904e1d7bd0387d77120f9000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000236a2148c7683eb21226dfaa8a370ee0a1a68781ef51e5d992e3ff9be625feeabb753bc242bc052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "flags": 7, "memo": "ffff" } @@ -9740,8 +9740,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: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d` (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` @@ -9800,8 +9800,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "quantity": 1000, "skip_validation": false }, @@ -9811,7 +9811,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "02000000000101331ef5cb6ae373cad9ece34c1260099b40e4656b3aa416f0744ab33f8dd7f01f03000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047ffffffff03e8030000000000001600142f17c5b300d912108769616091ec2d7d53c91a7300000000000000000c6a0add8bd88dfa16b908ac7f7325082701000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab704702000000000000", + "rawtransaction": "02000000000101311f750cfc72661c705c5ef80f8dc04bd6c33db0ac80edd55b3070b29b50abff030000001600146f46c50c67a741a0a6229402f21095e40a9d907effffffff03e803000000000000160014b91d6ec2cda019cd3c3b579855a86fbeadc4046f00000000000000000c6a0abc9318a1652142f4f2ad73250827010000001600146f46c50c67a741a0a6229402f21095e40a9d907e02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9828,7 +9828,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be issuing the asset + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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: `` @@ -9919,7 +9919,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9951,7 +9951,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985418, "btc_fee": 14582, - "rawtransaction": "02000000000101dfb1a602f3b4593d3b34f7cc1b1966b846363ab5dc7387583085b0bbf08e1f2e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000316a2f98ab04bad4ae1a5de48266cd6ba2e87537608a600e3c4f5e4c33fa61eb35867704ef27500b0d56da43787d36d882330ab9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001010a62ae7e6e49d5ec358a57df5f85e1dd56971d9eee41b09ce9682c96722679db000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000316a2f902be6ac0c81db7129f9b8456fc6164aff7259d28b9190e7b6ff9e1297b698d1de4280db064eff593f4c125a36bfbe0ab9052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9990,7 +9990,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: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address that will be minting the asset + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -10051,14 +10051,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -10070,7 +10070,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "0200000000010139b307b9db1b8871639834a69b77f2b9efbdab54b392e6f5878bb9fcf56525f800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000166a141407fa2a8cb7beb8d113f685fe4c5a3c30b6434a3ebf052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "02000000000101172fbf95caa23c876e50850b0431bc767e1bd1cdcd7bc832b893059bd6667693000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000166a14f09485789a8e206799d0f52fb7ffa52891bed63a3ebf052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10089,7 +10089,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address from which the assets are attached + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10153,7 +10153,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10173,7 +10173,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984578, "btc_fee": 14876, - "rawtransaction": "02000000000101d83020d40a6509ae7d3e019823c4563737756c35d661b0f19b3cd578c87fcac100000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000146a123111edb1f3347cfe5c50900a4daf6b148754c2b5052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "0200000000010122d3a8c283666adb095b00f66b361881079881a597e3566f33b8623235a68583000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff0322020000000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d0000000000000000146a125275fe26b0b784b5d1b06602ffc143748288c2b5052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10193,8 +10193,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: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10257,22 +10257,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713439366d783630766b666161716e756a613865353236756a7772756e63786d74386333797a36", + "data": "434e54525052545966626372743171393234617530366d6b37617639356e6e6c70303872656d71326e6678726365646b6639793467", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945423, "btc_fee": 25577, - "rawtransaction": "02000000000102bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf5000000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffffbb54ed2e6fc9c8665821c316af1cff5dba90c2be589b5062355140e4597df20e010000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffff020000000000000000376a353c8c8fb35dbad902a39d0886a976dc1d0fd66c80a6653853d9af3a87ccc7b5fa04956be51dd60d79ed48c69476d401b6a9f31583064f2c0a27010000001600149e334aaca9774527f019ba31459ddc70b7bfa49c02000002000000000000", + "rawtransaction": "02000000000102bffcf652a57630f954bf4ca2ef879c0e1837e39d6de150bab5b878010d8b36c400000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddcfffffffffa0a6362b39501bd0a63ffc8df248cfde74f856b4142be28f8ba04a7c60c986901000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddcffffffff020000000000000000376a351ab2d36e13d22556d0c56a268a06f230cb797299c05c4c3e65cd03400ce5f70b27a41b844beff09905a944811bd277e49a205309224f2c0a2701000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddc02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6" + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g" } } } @@ -10376,8 +10376,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -10385,16 +10385,16 @@ Returns the valid assets "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "owner": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "owner": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false, "supply": 100000000000, @@ -10402,16 +10402,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730977654, - "last_issuance_block_time": 1730977654, + "first_issuance_block_time": 1731005002, + "last_issuance_block_time": 1731005002, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -10419,16 +10419,16 @@ Returns the valid assets "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "owner": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "issuer": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "owner": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "divisible": true, "locked": false, "supply": 100000000000, @@ -10436,16 +10436,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730977471, - "last_issuance_block_time": 1730977471, + "first_issuance_block_time": 1731004829, + "last_issuance_block_time": 1731004829, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -10453,8 +10453,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" } ], @@ -10482,8 +10482,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -10491,8 +10491,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730977324, - "last_issuance_block_time": 1730977336, + "first_issuance_block_time": 1731004667, + "last_issuance_block_time": 1731004680, "supply_normalized": "100.00000000" } } @@ -10523,7 +10523,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10531,14 +10531,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10546,7 +10546,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -10564,7 +10564,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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. @@ -10576,7 +10576,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -10630,9 +10630,9 @@ Returns the orders of an asset "result": [ { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10649,7 +10649,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10677,9 +10677,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10696,7 +10696,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10724,9 +10724,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10743,7 +10743,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10771,9 +10771,9 @@ Returns the orders of an asset }, { "tx_index": 61, - "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "block_index": 210, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10790,7 +10790,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10818,9 +10818,9 @@ Returns the orders of an asset }, { "tx_index": 53, - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10837,7 +10837,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10901,13 +10901,13 @@ Returns the orders of an asset { "result": [ { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10921,7 +10921,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10941,13 +10941,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 53, - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10961,7 +10961,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10981,13 +10981,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "id": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28_d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", "tx0_index": 50, - "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 51, - "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11001,7 +11001,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11021,13 +11021,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -11041,7 +11041,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11121,20 +11121,20 @@ Returns the credits of an asset "result": [ { "block_index": 196, - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "event": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11142,20 +11142,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", + "event": "5771c1ad1546b58948dff99e92c3c6a5ce2d6e0e2aaa01280c9612712acccb59", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11163,20 +11163,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "event": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11184,20 +11184,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "event": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11209,16 +11209,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "event": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11278,12 +11278,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11295,16 +11295,16 @@ Returns the debits of an asset }, { "block_index": 211, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11316,16 +11316,16 @@ Returns the debits of an asset }, { "block_index": 210, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "event": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11337,16 +11337,16 @@ Returns the debits of an asset }, { "block_index": 209, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "event": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11358,16 +11358,16 @@ Returns the debits of an asset }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "event": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11447,14 +11447,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", + "tx_hash": "5771c1ad1546b58948dff99e92c3c6a5ce2d6e0e2aaa01280c9612712acccb59", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -11469,20 +11469,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "tx_hash": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -11497,20 +11497,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -11525,20 +11525,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -11553,7 +11553,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730977324, + "block_time": 1731004667, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11587,10 +11587,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11598,7 +11598,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11611,10 +11611,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11622,7 +11622,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11635,10 +11635,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 77, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11646,7 +11646,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11659,10 +11659,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11670,7 +11670,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11683,10 +11683,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11694,7 +11694,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11745,9 +11745,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11756,7 +11756,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11767,7 +11767,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11784,9 +11784,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", + "tx_hash": "7f351bf02cdc8305d848fbe20924e2341d8f19295ae1d05cc139aa96706e8790", "block_index": 142, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11795,7 +11795,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "origin": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11806,7 +11806,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977400, + "block_time": 1731004757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11823,9 +11823,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", + "tx_hash": "57dfa4e14d877cc85b465f5745f70d9e2dffc0c13f13aa357a09f6fc8c33d5c9", "block_index": 150, - "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", + "source": "mk9JptUdbhD7gMNvk7Fpr3eATPagvbznyS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11833,10 +11833,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_hash": "c0e12c7e75c6b8beb667aea53bd4864bfe2914ca9c29f5de0f3e1082d3749432", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 0, - "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -11845,7 +11845,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977438, + "block_time": 1731004797, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11862,18 +11862,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11884,7 +11884,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11910,7 +11910,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - The address to return + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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` @@ -11923,9 +11923,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11934,7 +11934,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11945,7 +11945,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11996,7 +11996,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12004,7 +12004,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -12013,7 +12013,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12021,7 +12021,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -12030,7 +12030,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12038,7 +12038,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -12047,7 +12047,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12084,27 +12084,27 @@ Returns the dispenses of an asset { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12119,7 +12119,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12133,27 +12133,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", + "tx_hash": "ebd7af9f1fc3beddb28148f511b725623a3638c8865c3bf22cc5ecda0cb60b70", "block_index": 147, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12168,7 +12168,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977428, + "block_time": 1731004785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12182,19 +12182,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12202,7 +12202,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12217,7 +12217,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12231,19 +12231,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12251,7 +12251,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12266,7 +12266,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12340,10 +12340,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "tx_index": 10, "block_index": 125, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12368,7 +12368,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12408,22 +12408,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", + "tx_hash": "5771c1ad1546b58948dff99e92c3c6a5ce2d6e0e2aaa01280c9612712acccb59", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12432,22 +12432,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "tx_hash": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12456,22 +12456,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12490,7 +12490,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3` (str, required) - The address of the mints to return + + address: `bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l` (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` @@ -12509,22 +12509,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -12577,9 +12577,9 @@ Returns all the orders "result": [ { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12596,7 +12596,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12624,9 +12624,9 @@ Returns all the orders }, { "tx_index": 53, - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12643,7 +12643,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12671,9 +12671,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12690,7 +12690,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12718,9 +12718,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12737,7 +12737,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12765,9 +12765,9 @@ Returns all the orders }, { "tx_index": 61, - "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "block_index": 210, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12784,7 +12784,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12821,7 +12821,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3` (str, required) - The hash of the transaction that created the order + + order_hash: `f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6` (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. @@ -12833,9 +12833,9 @@ Returns the information of an order { "result": { "tx_index": 79, - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -12852,11 +12852,11 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977725, + "block_time": 1731005059, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -12886,7 +12886,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178` (str, required) - The hash of the transaction that created the order + + order_hash: `492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273` (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 @@ -12913,13 +12913,13 @@ Returns the order matches of an order { "result": [ { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12933,7 +12933,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12963,7 +12963,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba` (str, required) - The hash of the transaction that created the order + + order_hash: `7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23` (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 @@ -12982,15 +12982,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 54, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "btc_amount": 2000, - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "status": "valid", "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "btc_amount_normalized": "0.00002000" } ], @@ -13034,9 +13034,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 53, - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13054,7 +13054,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730977585, + "block_time": 1731004940, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13080,9 +13080,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "block_index": 211, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13100,7 +13100,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730977721, + "block_time": 1731005056, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13126,9 +13126,9 @@ Returns the orders to exchange two assets }, { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13146,7 +13146,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13172,9 +13172,9 @@ Returns the orders to exchange two assets }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13192,7 +13192,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13218,9 +13218,9 @@ Returns the orders to exchange two assets }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13238,7 +13238,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13301,13 +13301,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13324,7 +13324,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13344,13 +13344,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 53, - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13367,7 +13367,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977585, + "block_time": 1731004940, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13387,13 +13387,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "id": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28_d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", "tx0_index": 50, - "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 51, - "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13410,7 +13410,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977511, + "block_time": 1731004868, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13430,13 +13430,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13453,7 +13453,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13511,13 +13511,13 @@ Returns all the order matches { "result": [ { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13531,7 +13531,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13551,13 +13551,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 53, - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13571,7 +13571,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13591,13 +13591,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "id": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28_d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", "tx0_index": 50, - "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 51, - "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13611,7 +13611,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13631,13 +13631,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13651,7 +13651,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13819,66 +13819,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", + "tx_hash": "b860cd8e7531ff7771a9bf0984b7824c178d84d98b36a2740c8a646041a7cd2d", "block_index": 121, - "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", + "source": "bcrt1qxzcjteau2lnp7ksjsqakf8xzxz6x9hvzxjva8p", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730977320, + "block_time": 1731004662, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "53f7f14701b0a6eeca9a78bd8815650adfeb66f546be001daf5f851dbf9b817d", + "tx_hash": "b34e8ef4b7739a44b3a7f4f4b7067c062dcfddc7e1f1d2dedd8f00674191042c", "block_index": 120, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730977317, + "block_time": 1731004659, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "92749a25d45e1f8045e905e14c23aa5a850c93b179ccee536aea18c335f3cd56", + "tx_hash": "ba5d9046a0666a200f7bbb08d2ddbecd758fd4c5284ce0a9b87601bcf1d06766", "block_index": 119, - "source": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d", + "source": "bcrt1qsr86fx9tt89hm6glnd4c0reuq4wsux6gd2mu0g", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730977314, + "block_time": 1731004656, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "ec533a9c92446574419824d1eca1b41716eaaa81aa4371b0e7bd5d71ed714f9c", + "tx_hash": "cbb293484287c2c07e22f4c5b99d9cb4d0f425387ddfc1a73ed8325dd86765be", "block_index": 118, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730977310, + "block_time": 1731004652, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "10894d687d5f3cbda58d8c8d0cbef0daf82fbb5bc2f492bab4c6dee8d215a173", + "tx_hash": "f958b6a321d1c97afd59b6c06a552bfda2e3354fd5e3a03460b2526543ef2747", "block_index": 117, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730977306, + "block_time": 1731004649, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13923,9 +13923,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13934,7 +13934,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13945,7 +13945,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13962,9 +13962,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", + "tx_hash": "7f351bf02cdc8305d848fbe20924e2341d8f19295ae1d05cc139aa96706e8790", "block_index": 142, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13973,7 +13973,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "origin": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13984,7 +13984,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977400, + "block_time": 1731004757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14001,9 +14001,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", + "tx_hash": "57dfa4e14d877cc85b465f5745f70d9e2dffc0c13f13aa357a09f6fc8c33d5c9", "block_index": 150, - "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", + "source": "mk9JptUdbhD7gMNvk7Fpr3eATPagvbznyS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -14011,10 +14011,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_hash": "c0e12c7e75c6b8beb667aea53bd4864bfe2914ca9c29f5de0f3e1082d3749432", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 0, - "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -14023,7 +14023,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977438, + "block_time": 1731004797, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14040,9 +14040,9 @@ Returns all dispensers }, { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14051,7 +14051,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14062,11 +14062,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -14079,18 +14079,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14101,7 +14101,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14127,7 +14127,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae` (str, required) - The hash of the dispenser to return + + dispenser_hash: `cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44` (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. @@ -14139,9 +14139,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14150,7 +14150,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14161,7 +14161,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14184,7 +14184,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae` (str, required) - The hash of the dispenser to return + + dispenser_hash: `cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44` (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 @@ -14204,19 +14204,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14224,7 +14224,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14239,7 +14239,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14253,19 +14253,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14273,7 +14273,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14288,7 +14288,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14330,20 +14330,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -14368,7 +14368,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb` (str, required) - The hash of the dividend to return + + dividend_hash: `4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371` (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. @@ -14380,20 +14380,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -14415,7 +14415,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371` (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 @@ -14438,12 +14438,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "event": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "tx_index": 42, - "utxo": "e250eb1d2f9fed96de5b384fbc6891852d5c5ba40f67a488be3b7e9d1d58ee07:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "635661906d228468be7ede3b8261394218fd5aa7992808263cb8fe1280354ccc:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14489,27 +14489,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 714, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 713, @@ -14518,14 +14518,14 @@ Returns all events "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14536,9 +14536,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 712, @@ -14547,9 +14547,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14559,24 +14559,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14586,9 +14586,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 710, @@ -14616,15 +14616,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } } ``` @@ -14702,16 +14702,16 @@ Returns the events filtered by event name "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14721,9 +14721,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 709, @@ -14733,12 +14733,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14748,9 +14748,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 706, @@ -14760,39 +14760,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 688, "event": "CREDIT", "params": { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "block_index": 211, "calling_function": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14802,36 +14802,36 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 687, "event": "CREDIT", "params": { - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "block_index": 211, "calling_function": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 686, @@ -14887,27 +14887,27 @@ Returns all the dispenses { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14922,7 +14922,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14936,19 +14936,19 @@ Returns all the dispenses { "tx_index": 66, "dispense_index": 0, - "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", + "tx_hash": "99fc4b7582bc12cc4cc468f8287401bca2da6f9b1937fa4e7a2f95ebca1686e9", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "dispenser_tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14956,7 +14956,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14971,11 +14971,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -14985,27 +14985,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", + "tx_hash": "ebd7af9f1fc3beddb28148f511b725623a3638c8865c3bf22cc5ecda0cb60b70", "block_index": 147, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15020,7 +15020,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977428, + "block_time": 1731004785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15034,19 +15034,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15054,7 +15054,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15069,7 +15069,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15083,19 +15083,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15103,7 +15103,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15118,7 +15118,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15160,10 +15160,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15171,7 +15171,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15184,10 +15184,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15195,11 +15195,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -15208,10 +15208,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15219,7 +15219,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15232,10 +15232,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15243,11 +15243,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -15256,10 +15256,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15267,11 +15267,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -15322,14 +15322,14 @@ Returns all the issuances "result": [ { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -15344,20 +15344,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 67, - "tx_hash": "3dfafdb89f45576b25adc2371da0ffb782acf19f28b77b73ee1181a91122725e", + "tx_hash": "f13027cef6de29d237426950beef6947d2935732272bebe3d5932f7996b699ff", "msg_index": 0, "block_index": 201, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "transfer": false, "callable": false, "call_date": 0, @@ -15372,20 +15372,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977654, + "block_time": 1731005002, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", + "tx_hash": "febdb63d7289b3d483a34f1a9b06d1c324fc0577093297c7682d4a3ab4210572", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -15400,20 +15400,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977496, + "block_time": 1731004845, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", + "tx_hash": "46064999fa67a4fbd94100e0f2522b5f03ebec9fb7c3637595fd23f45263e2e5", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -15428,20 +15428,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730977492, + "block_time": 1731004841, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", + "tx_hash": "8dd954472faf0bc7d9ff7c2f746b8d8ea76894c87126b3dbfbda38cfcef91c08", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -15456,7 +15456,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977478, + "block_time": 1731004836, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15471,7 +15471,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817` (str, required) - The hash of the transaction to return + + tx_hash: `30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04` (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. @@ -15483,14 +15483,14 @@ Returns the issuances of a block { "result": { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -15505,7 +15505,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15537,16 +15537,16 @@ Returns all sweeps "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -15560,7 +15560,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848` (str, required) - The hash of the transaction to return + + tx_hash: `353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4` (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. @@ -15573,16 +15573,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -15616,9 +15616,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15626,14 +15626,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977385, + "block_time": 1731004731, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", + "tx_hash": "f1a31df1d65b7242d6634a0d7cc7b9551dc08db83cb38862c860ae9886f9e999", "block_index": 137, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15641,7 +15641,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977381, + "block_time": 1731004727, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15655,7 +15655,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd` (str, required) - The hash of the transaction to return + + tx_hash: `5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355` (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. @@ -15667,9 +15667,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15677,7 +15677,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977385, + "block_time": 1731004731, "fee_fraction_int_normalized": "0.00000000" } } @@ -15714,10 +15714,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, "block_index": 156, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15742,7 +15742,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15751,10 +15751,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "tx_index": 22, "block_index": 135, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15779,7 +15779,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730977375, + "block_time": 1731004719, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15791,10 +15791,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "tx_index": 18, "block_index": 131, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15819,7 +15819,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730977358, + "block_time": 1731004703, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15831,10 +15831,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "tx_index": 14, "block_index": 130, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15859,7 +15859,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730977353, + "block_time": 1731004698, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15871,10 +15871,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "tx_index": 10, "block_index": 125, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15899,7 +15899,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15968,22 +15968,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -15992,22 +15992,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", + "tx_hash": "30cb75f423b21b61efa45caa47385dc64add668e904ea611d9bca486b4e3a5e5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977370, + "block_time": 1731004714, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -16016,22 +16016,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", + "tx_hash": "38159f9eb395d2e45b54e163b6c44f2552e865676df332f340045cbca90e27e7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977366, + "block_time": 1731004710, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -16040,22 +16040,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", + "tx_hash": "13c1eec8c6aa75ef56245a19ddae307006789ea855ac87dff2d0db0c7d27bf5a", "tx_index": 19, "block_index": 132, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977362, + "block_time": 1731004707, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -16064,22 +16064,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d2f268607a9892328d11b14102180ad3cebf5bcd9e34070a2a69b27a987add11", + "tx_hash": "7f14a349fa22c7733b7ebee8f0aa99105bece282d2ddfe80a0525a3ae99a344a", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "fairminter_tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977350, + "block_time": 1731004694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -16098,7 +16098,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff` (str, required) - The hash of the fairmint to return + + tx_hash: `22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16109,22 +16109,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -16142,7 +16142,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0,bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d` (str, required) - The addresses to search for + + addresses: `bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy,bcrt1qsr86fx9tt89hm6glnd4c0reuq4wsux6gd2mu0g` (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. @@ -16155,14 +16155,23 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ + { + "vout": 0, + "height": 205, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", + "address": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy" + }, { "vout": 1, "height": 212, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", - "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" + "txid": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", + "address": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy" }, { "vout": 1, @@ -16170,17 +16179,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", - "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" - }, - { - "vout": 0, - "height": 205, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", - "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" + "txid": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", + "address": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy" }, { "vout": 2, @@ -16188,8 +16188,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 56, "amount": 0.001, - "txid": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf", - "address": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d" + "txid": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776", + "address": "bcrt1qsr86fx9tt89hm6glnd4c0reuq4wsux6gd2mu0g" } ], "next_cursor": null, @@ -16202,7 +16202,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy` (str, required) - The address to search for + + address: `bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd` (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 @@ -16218,28 +16218,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "9d90d9487ddfc264d17c73a515f423e5c429b6d83cf24de8997eaddfc4866609" + "tx_hash": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924" }, { - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848" + "tx_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42" }, { - "tx_hash": "2c2867cdde9bb0e5b8f16167ed9d07fdcfdbe216aae37df2b41856496ac4a256" + "tx_hash": "9c1f5ce94cf8ceebb2ac86dcbb046a7238813b63eeb35584da0d2fcce6d7d84f" }, { - "tx_hash": "ded24090770fef8bbf19d80fedab6fc8918e12089762f99aa3163f184ae8ac68" + "tx_hash": "115921477df7bd8e85c41f680ba0acc9adeb53a3ec0cb09aa64e1bc254dd0164" }, { - "tx_hash": "d683a7fc6db9a494fbcaefbef7e73441f62bc7f920b54af9ca52431c4d45a069" + "tx_hash": "c8b356d41e34244cbba0f28328b94991b1f37febe35673e010de2c19dc818f69" }, { - "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786" + "tx_hash": "739db2a1580c5e88f6cc6a681e686eeec10d89ef12c119b0f5d7ba0f93a56388" }, { - "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4" }, { - "tx_hash": "c48dc9784c8a741e26bf22ae348030fc3a4fba16648ac854436eacd77c5bb6ff" + "tx_hash": "89067b9865526cbb800cd71868db05ba49c38e9be68db9d2406d64b66c6013c0" } ], "next_cursor": null, @@ -16252,7 +16252,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a` (str, required) - The address to search for. + + address: `bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce` (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. @@ -16265,8 +16265,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 6, - "tx_hash": "86fc31efdc88265b5d9499910af6267be60fdb887f26e0adf7a1bb4b1401635c" + "block_index": 3, + "tx_hash": "1974910fd2379e9276b2494b07d4a33c8605aa17b55e938bd8a0524c6796f715" } } ``` @@ -16276,7 +16276,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0` (str, required) - The address to search for + + address: `bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy` (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 @@ -16291,13 +16291,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ + { + "vout": 1, + "height": 204, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0" + }, { "vout": 1, "height": 212, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3" + "txid": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6" }, { "vout": 0, @@ -16305,15 +16313,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e" - }, - { - "vout": 1, - "height": 204, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468" + "txid": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194" } ], "next_cursor": null, @@ -16326,7 +16326,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6` (str, required) - Address to get pubkey for. + + address: `bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g` (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. @@ -16338,7 +16338,7 @@ Get pubkey for an address. ``` { - "result": "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" + "result": "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634" } ``` @@ -16347,7 +16347,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc` (str, required) - The transaction hash + + tx_hash: `c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf` (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. @@ -16359,7 +16359,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101cf99ffa01b328dcc71e0510f408fd86a64ddba305cd220fc8d76e384a369d0fb0100000000ffffffff03e8030000000000001600149e334aaca9774527f019ba31459ddc70b7bfa49c00000000000000000c6a0a4ac5dc7bc2aedaafabd9eb1409270100000016001427db96e897929853c6ebe6127d77a4882445084b02473044022052ba8f627dbc0b34c52de9fc109a013af3336e4a50a7751fab9c1a7739780f140220398102c0a431b0a6ca15a48e372203a97dcaf87242fbabaefb2d90396ca728e2012103e21ae08d90338d2b62676917df2ead4d354022b419fcf01f82d7534aea7f65d900000000" + "result": "0200000000010176e7f9634ca53283196f704e68ed798f17d0d18eac60e5994af29787cd77a0a80100000000ffffffff03e803000000000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddc00000000000000000c6a0a5e73f2711da3d5ad76f8eb14092701000000160014345cb3cfff90bbca05480ee884ccfc20c475bb080247304402207b12124b46613f95c796094254ea1e4e865312163e0c826a564018e1bcbfa5a702204bf874a0ed20b966fbf3a4a5c8c60036abcb29e8fdf541b671ba45836aebb5c301210272ccae0425e7102acddc1371c7348e9654440f218a185dea7cb90fafa906ae8d00000000" } ``` @@ -16520,27 +16520,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81 }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "quantity": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -16551,22 +16551,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16576,22 +16576,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "block_index": 213, - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16601,30 +16601,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730977737.9578004, + "block_time": 1731005072.5467687, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "destination": "", "fee": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, - "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", + "utxos_info": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -16638,7 +16638,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -16669,19 +16669,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16691,7 +16691,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -16704,7 +16704,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8` (str, required) - The hash of the transaction to return + + tx_hash: `adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5` (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 @@ -16724,27 +16724,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81 }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "quantity": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -16755,22 +16755,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16780,22 +16780,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "block_index": 213, - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16805,30 +16805,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730977737.9578004, + "block_time": 1731005072.5467687, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "destination": "", "fee": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, - "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", + "utxos_info": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -16842,7 +16842,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 4b1fc8b2ce..0cf27b407b 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -180,6 +180,7 @@ def prepare_inputs_set(inputs_set): amount = None script_pub_key = None + utxo = str_input if len(str_input_split) > 2: utxo = f"{str_input_split[0]}:{str_input_split[1]}" try: @@ -189,8 +190,6 @@ def prepare_inputs_set(inputs_set): raise exceptions.ComposeError(f"invalid UTXO: {str_input}") from e if len(str_input_split) > 3: script_pub_key = str_input_split[3] - elif len(str_input_split) == 2: - utxo = str_input if not util.is_utxo_format(utxo): raise exceptions.ComposeError(f"invalid UTXO: {str_input}") diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 23a4238163..2e00ce9d63 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": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", "difficulty": 545259519, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, "confirmed": true }, { "block_index": 212, - "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", - "block_time": 1730977725, - "previous_block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", + "block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", + "block_time": 1731005059, + "previous_block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", "difficulty": 545259519, - "ledger_hash": "9ed5f78a1a6fa6851bb1d3126d805206b4f7e4c9e2bb8479dabfbc8f57c667db", - "txlist_hash": "dc52eec0da5fc57349225a1454d5b3e207a8381386a3c0e497ad3f7096202633", - "messages_hash": "2b26b6fa9199fb8565492a38bd36db5adf4fb8712132057a21c1a05f94623aeb", + "ledger_hash": "40b14a3a021c4ac3657f7d18966e31a94f77719285feaad96495b4e962fa89d7", + "txlist_hash": "c83632068c2feb78a97b6216cf926e4e86efaccc307d93cd6605cd119e3c3281", + "messages_hash": "bc74594bf456c1162dcbccf7252481182333202a525f818bab56edc2e69365ed", "transaction_count": 1, "confirmed": true }, { "block_index": 211, - "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", - "block_time": 1730977721, - "previous_block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", + "block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", + "block_time": 1731005056, + "previous_block_hash": "138c522ae39dd5c6ea53e393613ad25264950d114a95a46289c26ee246a996ca", "difficulty": 545259519, - "ledger_hash": "dae697981536c17e68bf8a06bfd95b41eebb9feb0f798609c6f5aded80c758dc", - "txlist_hash": "07a4879a9bb15e79600c077e150484d234db27a42f3d69c61de105791cca773b", - "messages_hash": "0854d1a229de1890b5fa4bd1e84e19b16937ab92965169a0f5b6755e6f7ae4e8", + "ledger_hash": "c92bf27824948e4809cf4e741082e0ec88b4ef42179d7af22270df752bd2f48f", + "txlist_hash": "e7d69b5670370e107b28c2595486cb641b9c9d83c2056ee9f70f630e0016a67b", + "messages_hash": "fb8a449d6892715b4beb32a9fd0a2365c860420068c857390ef2f015e1ed6951", "transaction_count": 1, "confirmed": true }, { "block_index": 210, - "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", - "block_time": 1730977716, - "previous_block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", + "block_hash": "138c522ae39dd5c6ea53e393613ad25264950d114a95a46289c26ee246a996ca", + "block_time": 1731005052, + "previous_block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", "difficulty": 545259519, - "ledger_hash": "615a78711f0afe0b44ad569d8f1b55d592569cb2bc96d1824521658e0c4e05e0", - "txlist_hash": "3995bd597d9721bf37d03728e829eefedbf3ed4e12478f452b8ac56dba5d9af9", - "messages_hash": "e11ff10b3b7efd34994c46b6cbc448929bac846f49673914c885d31ced8b62cb", + "ledger_hash": "ff00e31d52443c10219812938b1400c4305b9386253c3c4e42853f85d9b4aa50", + "txlist_hash": "d641a4e72cf260a33ad79820c081a42590781e58d4278175b8bedcfd48e5b220", + "messages_hash": "e0974a968e812c799c9f44f766efb73a955fd8dfaa7b2f862d7974ed633da999", "transaction_count": 1, "confirmed": true }, { "block_index": 209, - "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", - "block_time": 1730977712, - "previous_block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", + "block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", + "block_time": 1731005049, + "previous_block_hash": "7e2c5b73f3c13602ea8db85c1c3cf060306038c7a1ee79afb01ee93730912f86", "difficulty": 545259519, - "ledger_hash": "337d09c20a6694183c8781b44a2e784c933c0421e04417f2e16e40afbe7bb327", - "txlist_hash": "bb2ff16dccefeeef0de464895bf5424e478d9f79930537785f7203cc6694a871", - "messages_hash": "4a821282bb3aa24455f8a651d619323954ee7bb46f6666b30ebfd7fba3c7b0ba", + "ledger_hash": "93f64b3f54298b18ba043ab8c22e8443c7087b8bd63f686087a1e3c631cc737f", + "txlist_hash": "bf8c0fc2e57dcfa5698f7ea9e903830acc34afdb58200275affea17c655c9cde", + "messages_hash": "be947519cbe7660eaa7e4b7e344acfbc3200ea30e17199e68e7c1ecf8d720b66", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", "difficulty": 545259519, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", "difficulty": 545259519, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 713, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 712, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" } ], "next_cursor": 710, @@ -256,16 +256,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 709, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" }, { "event_index": 706, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc" + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 213, - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "object_id": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "block_index": 211, "confirmed": true, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 60, - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "offer_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "status": "valid", "confirmed": true, - "block_time": 1730977618 + "block_time": 1731004973 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 63, - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "block_index": 197, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730977629, + "block_time": 1731004985, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -507,14 +507,14 @@ "result": [ { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -565,10 +565,10 @@ }, { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, "block_index": 156, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 79, - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99", - "block_time": 1730977725, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61", + "block_time": 1731005059, + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": " 59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3:1 2 ", + "utxos_info": " f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -792,7 +792,7 @@ "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -816,53 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "fcb80e4b4f2aaae5340b9f140d9d9d6a0136b57285457954589c4ffd83361a41", + "hash": "cda45e2e18ac77a195849b23f92c8e9652ba9dea1024cbe12e473f3d31dc0640", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "85f5509c5971278b70fb63428435be30fc0e66c5ba0acadd0ac961161be66fd2", + "hash": "620383ad985e1df76c4a32ecc500cbd34fe1780a4b80a68e2853c419f3dc0572", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5d04725264be05273520a69b7d3e6f42bd3d1f41bcd093d84e4dfbf7861f8ded", + "hash": "c33607e522c1a974c601fb65b3e923dd9bd63fb04a3bd07439685470289da9bf", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "045f8d3c477964f1b51743ce58df5dd0d8700837bb490f7a1851ed79cadb3a62", + "hash": "ebcf554ce7a2c7a0460421fdb1eea80ef75aef96f71a3623388d462ecefa7b5c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "6a0b37a10585ab1c21a6afad5d4ef309c216ed6a4b161489243a47c28b54bf79", + "hash": "ec0023647dcf8984abe580d892ae170b2cc4bcc497c8672551343c4273e96f3f", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "441d58f6e4540565a64bb080dfbdc8a62127d60dfafa1f5a1a92bf0d4cb6830b", + "hash": "1643a441d4ee69e4ed815bade2f385305f074aca65e76b4a7ac50a1a28a73c7b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -872,38 +872,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512102a576ddf1130eeaede45676a39a54a042c2ec3624d2e84d493e35c624841e5c0b21031451b99c8139acc9d3a0b0b7b0940b99add4d78605ef546454d5c3e0401adebd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" + "script_pub_key": "512103d4dc74675c4a84ef52087246deef92ca699abcf721f1d8750f7e4a7f9e1f20a221024bdb6eeccdff66444a4c78d9fbbe3ab96ce6eab87797173338e3209709804981210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae" }, { "value": 1000, - "script_pub_key": "512103a576ddf1130eeaede445f1c97b9aca3d0aa01bd3b35952f49d7de369c56f23de2102641639b092b28394bcb9abf5fd2c88d83ebe8e92f37b34891eaf6960c0c3ccb621023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" + "script_pub_key": "512103d4dc74675c4a84ef52c64e7e091881a70a43b6728538bae10d89b98af2d169ad2103dba5eea35a7d42b917e8ce21b833da55b7928fa141b243dee49321664420506a210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae" }, { "value": 1000, - "script_pub_key": "5121038476ddf1130eeaede45576a01afadbd127dd481aa92a46dff6536b70c5abf7a22103641639b092b283bea90c3e4041e688d83ebe8e92f371b1e47bc2065340c3cc5f21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae" + "script_pub_key": "512103f5dc74675c4a84ef520b72455e80540f65fd1bb68157aeca66a73193f215bd6d2103dba5eea35a7d4293025d5b9404f9da55b7928fa141b8c6b381fe4e55c42050dc210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae" }, { "value": 29999987000, - "script_pub_key": "0014a975b369ecb27bd04f92e9f3456b9270f93c1b6b" + "script_pub_key": "00142aabde3f5bb7bac2d273f85e71e76054d261e32d" } ], "vtxinwit": [ - "304402203485144733f1824530da59622db88f614c34468ed717b5ef67fd062791e78d5c0220215dadc4f4754f66835b2b047a3f1c48c87c877b443ddf6241fbc24f892b715a01", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "30440220246a9dc6f8bb8671e4a7ae06a6192faf92d83744a5e366b07c8c93a1205da47f02201da75cbc12426fa26feae74ebd31794cc8c2d18ebcd64c55903643c16e11f0e901", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "304402204b48ff6a9417ef1e82126dad83aac46fa9140ea6575df9d97952438d73d421fa022018f708ecfa289fe1f57de28ba1627f17ee7b062a8b491a9b5c50569853c1dc1901", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "3044022036d69e24a5d3d4084d31f0d2fcb0dcb40075e635078958b7783823347c49283d022060653bb0dfce8e0fe36d2452e0f141290078ff24a526113fbe53b9af36455b5e01", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "304402204872ba18b969b5bed604d6ada62279c47fa7eac105fd488222a4e70cd2699cd702203825599d13c9e66162cf3f6ecfd1871477945c82d6de543ac4235a34824b898201", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72", - "3044022061c5ae08ef065dba17d2e93baf083d63287351cd806c8df307164c423e549c3e02202dc41850b5de66f69ff40b29c6e7f8127730e8b95838da3d09d6d549f775eacf01", - "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" + "3044022018de9de984695822131ab231f0f4be1b4591491c6a89cae1bc89d08f0756b30602206bdeaafe6d223a2c13345694e070c7bb9eb2a5a925123fe1d2bae21aadaa124f01", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "30440220062f9cc1191622a8ff3d863703da23fcaa74abf5b261b605eaff789b61446a9b02202eb504a905841788128c651f4ccf27a8b33e94886218f562f6f022eb7558089601", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "304402206c3f94a761a6b73c08f4b5bdb68cd70898ba2f9d94a20f3475da3cd4b7b53d4302205f7f9283157293d4cfb3bdbc7f5b41768cb5a34708f4ed303fbecdbb3ad6843f01", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "3044022043917c66d7cdd861f7b21ef41e856e7c97416d116f3b527de4aa3cc9d868b28702206c1cda4245ff958a6ce8165ddb833d2e1ac478bb66d75009e2feeb2a01cc925501", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "30440220068c5a74572ffde103475779d1f55bffe05b370992104557aae7ee1c5eb6867402206156ab3961d9fa628c8712b02108bc3f184f5d49ea84bc146eb115b330d4eed401", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634", + "30440220735c65df526a4a177442b59927ccca977311359937436f831db66cad391a8a8202205df557461d309204078f37a5176adf315ae688038d5a6d266ccf4a451518af5f01", + "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634" ], "lock_time": 0, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", - "tx_id": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7" + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", + "tx_id": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b" }, "unpacked_data": { "message_type": "mpma_send", @@ -911,14 +911,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -926,7 +926,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -946,18 +946,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d5a3d729312d3abe8dedf46966c31dc2cc31e10b3265e70144d09d67e87d11cf", + "hash": "29549c08b268308114c6a6de6c0f8d24fd700993994e3e4fb54a74df253bec14", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e192c9ea723d0209741794735d6fd4e1dcbfe150c64859968ba76773d68419a760e9d5530faede7c0356fec43aa45" + "script_pub_key": "6a2e0dee8919d3e2a244e311162e16879ac36bdaaf2597f43e716c168a9b2e3adcd8c79890c4b133da4e027628985755" }, { "value": 4949930546, - "script_pub_key": "00142f17c5b300d912108769616091ec2d7d53c91a73" + "script_pub_key": "0014b91d6ec2cda019cd3c3b579855a86fbeadc4046f" } ], "vtxinwit": [ - "30440220265878f34bd61da70af7568f3386ca5ace2dfffc834494289ae2340aaecd6b3302203fbc8982fbf9bdfc0705f97bc3fe3758edab34dea77f27426b9436266e5e282c01", - "02b6527bd925a27be267b6d0029274d1b083d226181f44cf9d6b2a040d8418605b" + "3044022013a86cf6238f8fae6436a6102b726523d9cfafc914d111b7c9a40edcac3874fe022032354d509d9ef1b5dd2cdf75d927dea5264455629e7cd36feaa57d4e35e12d6701", + "026c53391b32afdf7b71bdad0c91431b464545bc26fdcaed72cb11f39c0d7f480d" ], "lock_time": 0, - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", - "tx_id": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8" + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", + "tx_id": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -1015,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", - "block_time": 1730977733, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", + "block_time": 1731005068, + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 713, @@ -1083,14 +1083,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1101,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 712, @@ -1112,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1124,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1151,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 710, @@ -1161,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 213, - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "msg_index": 1, "quantity": 2000000000, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", "status": "valid", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1178,9 +1178,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 709, @@ -1193,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 713, @@ -1207,14 +1207,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1225,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 712, @@ -1236,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1248,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1275,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 710, @@ -1285,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 213, - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "msg_index": 1, "quantity": 2000000000, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", "status": "valid", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1302,9 +1302,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 709, @@ -1314,10 +1314,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1325,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1338,10 +1338,10 @@ }, { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1349,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1369,27 +1369,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1425,16 +1425,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1444,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 709, @@ -1456,12 +1456,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1471,9 +1471,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 706, @@ -1483,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": null, @@ -1512,16 +1512,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1531,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 709, @@ -1543,12 +1543,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1558,9 +1558,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 706, @@ -1570,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": null, @@ -1600,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1621,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1642,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1663,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1684,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1705,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1729,17 +1729,17 @@ "result": [ { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_hash": "4a9114be3ed57d43103d3e9d5b9a003165ce553c0fea7bfea009194d86682cf4", - "block_time": 1730977721, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "block_hash": "01c1096e2177fabc58984d02715c98ecc706d2e3b838e8f851a765e8bbed7ae8", + "block_time": 1731005056, + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802aabde3f5bb7bac2d273f85e71e76054d261e32d804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33:0 4 ", + "utxos_info": " ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1747,14 +1747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1762,7 +1762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1781,17 +1781,17 @@ }, { "tx_index": 77, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_hash": "1533ee34b4fa0e8ff806d8949349f9cad6b6d63c9cc6e51b855811cd56b09191", - "block_time": 1730977716, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "block_hash": "138c522ae39dd5c6ea53e393613ad25264950d114a95a46289c26ee246a996ca", + "block_time": 1731005052, + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a975b369ecb27bd04f92e9f3456b9270f93c1b6b802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a73c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802aabde3f5bb7bac2d273f85e71e76054d261e32d804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59:0 4 ", + "utxos_info": " 52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1799,14 +1799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1814,7 +1814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1833,17 +1833,17 @@ }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", - "block_time": 1730977712, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", + "block_time": 1731005049, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", + "utxos_info": " 7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1851,14 +1851,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1866,7 +1866,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1885,17 +1885,17 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", - "block_time": 1730977699, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7e2c5b73f3c13602ea8db85c1c3cf060306038c7a1ee79afb01ee93730912f86", + "block_time": 1731005044, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", + "utxos_info": " 23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1903,14 +1903,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1918,7 +1918,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1937,17 +1937,17 @@ }, { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", - "block_time": 1730977696, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0cbaf035c6c8c71ee818229bb956e4502a6f0adbc5a38bbca6da885b1a425cd7", + "block_time": 1731005031, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "02000000178d82231300000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "supported": true, - "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", + "utxos_info": " 22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1955,12 +1955,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -1981,15 +1981,15 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1999,9 +1999,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 692, @@ -2009,27 +2009,27 @@ "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 691, @@ -2037,42 +2037,42 @@ "params": { "asset": "MPMASSET", "block_index": 211, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 690, "event": "DEBIT", "params": { "action": "mpma send", - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "block_index": 211, - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2082,9 +2082,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 689, @@ -2093,17 +2093,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "quantity": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -2114,22 +2114,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2139,22 +2139,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "block_index": 213, - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2164,30 +2164,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730977737.9578004, + "block_time": 1731005072.5467687, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "destination": "", "fee": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, - "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", + "utxos_info": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -2201,7 +2201,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -2210,7 +2210,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2218,14 +2218,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2233,14 +2233,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2248,14 +2248,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2270,7 +2270,7 @@ "quantity_normalized": "826.49965000" }, { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2278,7 +2278,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2291,7 +2291,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -2313,16 +2313,16 @@ "result": [ { "block_index": 211, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2334,16 +2334,16 @@ }, { "block_index": 210, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "event": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2355,16 +2355,16 @@ }, { "block_index": 210, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "event": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2376,16 +2376,16 @@ }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "event": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2397,20 +2397,20 @@ }, { "block_index": 206, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "event": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2424,16 +2424,16 @@ "result": [ { "block_index": 209, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "event": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2445,20 +2445,20 @@ }, { "block_index": 209, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "event": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2466,16 +2466,16 @@ }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "event": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2487,20 +2487,20 @@ }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "event": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2508,20 +2508,20 @@ }, { "block_index": 207, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "event": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977696, + "block_time": 1731005031, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2540,9 +2540,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", + "tx_hash": "f1a31df1d65b7242d6634a0d7cc7b9551dc08db83cb38862c860ae9886f9e999", "block_index": 137, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2550,7 +2550,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977381, + "block_time": 1731004727, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2561,14 +2561,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "9338289b6df5af85664673ef663dda3aff22cf63613ac17518ed936657c8e187", + "tx_hash": "ea9940498345da2f40710a2ef65b4716598906d147af978a3074d6ce75d8fece", "block_index": 112, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730977287, + "block_time": 1731004633, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2580,10 +2580,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2591,7 +2591,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2604,10 +2604,10 @@ }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2615,11 +2615,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2628,10 +2628,10 @@ }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2639,11 +2639,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2652,10 +2652,10 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2663,7 +2663,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2676,10 +2676,10 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2687,11 +2687,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2706,10 +2706,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "73934ba7bb254b84d853cf5e30149bd1e8b98e8b0fe256aad3c963b6a35271b7", + "tx_hash": "dbd95a4d916fbf45a807b143ce8578e5fc982642d323efd53f8ea1ad1f1f487a", "block_index": 151, - "source": "1244595298ba8bc22f6e62a5ff74f93b0fb7ac8af574550bb9879062dc586a9b:0", - "destination": "bcrt1qmf97fw5v33c0jsfshjzqq58ceesl8avyw3lsp6", + "source": "c84e5ce605f310f5a321cc1e00b01fb0dd9d56b417a91b189504fc53d926aa26:0", + "destination": "bcrt1qlzf8fguk4ukzt33tqpsrmfr5te4h4x0je0ju2c", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2717,11 +2717,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977441, + "block_time": 1731004801, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2736,10 +2736,10 @@ "result": [ { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2747,11 +2747,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2760,10 +2760,10 @@ }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2771,11 +2771,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2784,10 +2784,10 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2795,11 +2795,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2808,10 +2808,10 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2819,11 +2819,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2832,10 +2832,10 @@ }, { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2843,11 +2843,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977696, + "block_time": 1731005031, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2867,9 +2867,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2878,7 +2878,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2889,7 +2889,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2906,9 +2906,9 @@ }, { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2917,7 +2917,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2928,11 +2928,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -2950,9 +2950,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2961,7 +2961,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2972,7 +2972,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2993,19 +2993,19 @@ { "tx_index": 66, "dispense_index": 0, - "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", + "tx_hash": "99fc4b7582bc12cc4cc468f8287401bca2da6f9b1937fa4e7a2f95ebca1686e9", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "dispenser_tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3013,7 +3013,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3028,11 +3028,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -3042,19 +3042,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3062,7 +3062,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3077,7 +3077,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3091,19 +3091,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3111,7 +3111,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3126,7 +3126,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3146,19 +3146,19 @@ { "tx_index": 66, "dispense_index": 0, - "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", + "tx_hash": "99fc4b7582bc12cc4cc468f8287401bca2da6f9b1937fa4e7a2f95ebca1686e9", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "dispenser_tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3166,7 +3166,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3181,11 +3181,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -3195,19 +3195,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3215,7 +3215,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3230,7 +3230,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3244,19 +3244,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3264,7 +3264,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3279,7 +3279,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3299,19 +3299,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3319,7 +3319,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3334,7 +3334,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3348,19 +3348,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3368,7 +3368,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3383,7 +3383,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3403,19 +3403,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3423,7 +3423,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3438,7 +3438,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3452,19 +3452,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3472,7 +3472,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3487,7 +3487,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3506,16 +3506,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -3526,14 +3526,14 @@ "result": [ { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -3548,20 +3548,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", + "tx_hash": "febdb63d7289b3d483a34f1a9b06d1c324fc0577093297c7682d4a3ab4210572", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -3576,20 +3576,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977496, + "block_time": 1731004845, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", + "tx_hash": "46064999fa67a4fbd94100e0f2522b5f03ebec9fb7c3637595fd23f45263e2e5", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -3604,20 +3604,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730977492, + "block_time": 1731004841, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", + "tx_hash": "8dd954472faf0bc7d9ff7c2f746b8d8ea76894c87126b3dbfbda38cfcef91c08", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -3632,20 +3632,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977478, + "block_time": 1731004836, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6b026e21935f51c6de8a8490834fefe1c74f80f5d347abc80481b3a9f67cfea7", + "tx_hash": "190c045f3efb735d1d169f5d23bf0989437bc5b55c721af87f4129b47a71b638", "msg_index": 0, "block_index": 159, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -3660,7 +3660,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977474, + "block_time": 1731004832, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3674,8 +3674,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -3683,16 +3683,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -3700,16 +3700,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -3717,16 +3717,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 40, @@ -3734,16 +3734,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730977375, - "last_issuance_block_time": 1730977378, + "first_issuance_block_time": 1731004719, + "last_issuance_block_time": 1731004723, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 19, @@ -3751,8 +3751,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730977358, - "last_issuance_block_time": 1730977370, + "first_issuance_block_time": 1731004703, + "last_issuance_block_time": 1731004714, "supply_normalized": "0.00000019" } ], @@ -3765,8 +3765,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -3774,16 +3774,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -3791,16 +3791,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -3808,16 +3808,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 40, @@ -3825,16 +3825,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730977375, - "last_issuance_block_time": 1730977378, + "first_issuance_block_time": 1731004719, + "last_issuance_block_time": 1731004723, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 19, @@ -3842,8 +3842,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730977358, - "last_issuance_block_time": 1730977370, + "first_issuance_block_time": 1731004703, + "last_issuance_block_time": 1731004714, "supply_normalized": "0.00000019" } ], @@ -3856,8 +3856,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -3865,16 +3865,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -3882,16 +3882,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -3899,16 +3899,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 40, @@ -3916,16 +3916,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730977375, - "last_issuance_block_time": 1730977378, + "first_issuance_block_time": 1731004719, + "last_issuance_block_time": 1731004723, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 19, @@ -3933,8 +3933,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730977358, - "last_issuance_block_time": 1730977370, + "first_issuance_block_time": 1731004703, + "last_issuance_block_time": 1731004714, "supply_normalized": "0.00000019" } ], @@ -3945,17 +3945,17 @@ "result": [ { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "block_hash": "2f792c1d7bf1e38bf5ade0578c24a7ea222a8eb2f02d988062bab9a7a5b3da79", - "block_time": 1730977712, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7740e96ae0a93378faf74eccfd4b9a0027b06e8db7a8bda72169aa4ed30bcc8b", + "block_time": 1731005049, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7:0 4 ", + "utxos_info": " 7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3963,14 +3963,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -3978,7 +3978,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3997,17 +3997,17 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "block_hash": "01a48c254bd67049b38223a25897cd4f83bb18b1452538c2334cf0e33bd1d727", - "block_time": 1730977699, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "7e2c5b73f3c13602ea8db85c1c3cf060306038c7a1ee79afb01ee93730912f86", + "block_time": 1731005044, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047802c138b2f777aac8ef7f1728341936a5914f69ee5802f17c5b300d912108769616091ec2d7d53c91a7388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003806f46c50c67a741a0a6229402f21095e40a9d907e804f978224d74811234dff47e0ecdb746519362fd180b91d6ec2cda019cd3c3b579855a86fbeadc4046f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1:0 4 ", + "utxos_info": " 23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4015,14 +4015,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4030,7 +4030,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4049,17 +4049,17 @@ }, { "tx_index": 74, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_hash": "4a163b76b61a0a1c70a599961a24c66272b0adb3bf103e359e409b3deeed3eb3", - "block_time": 1730977696, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0cbaf035c6c8c71ee818229bb956e4502a6f0adbc5a38bbca6da885b1a425cd7", + "block_time": 1731005031, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "02000000178d82231300000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "supported": true, - "utxos_info": " 26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d:1 2 ", + "utxos_info": " 22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4067,12 +4067,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4083,17 +4083,17 @@ }, { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_hash": "37bc44a99f26fbd26b4b14d64ea8dab4699df6d48eb5e9108cdf9ffbcd39439f", - "block_time": 1730977691, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "0c3e005657d62b355cc288f8d8344392457e21adb604c121777bc238ee6d26e2", + "block_time": 1731005027, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817:1 2 ", + "utxos_info": " 30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4118,17 +4118,17 @@ }, { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 199, - "block_hash": "00639b2a2a9fc6eda899e9a6f5b903034d943a43a30e64789011fe3b4a005761", - "block_time": 1730977647, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "block_hash": "5fda15078f1dcb6b20cf62c76cf1738475dd960aaeb2deb55be151573622a5f7", + "block_time": 1731004994, + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760:1 2 ", + "utxos_info": " 7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4145,7 +4145,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4163,20 +4163,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4198,9 +4198,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4217,7 +4217,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4245,9 +4245,9 @@ }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4264,7 +4264,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4292,9 +4292,9 @@ }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4311,7 +4311,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4339,9 +4339,9 @@ }, { "tx_index": 61, - "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "block_index": 210, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4358,7 +4358,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4391,10 +4391,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, "block_index": 156, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4419,7 +4419,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4428,10 +4428,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "tx_index": 22, "block_index": 135, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4456,7 +4456,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730977375, + "block_time": 1731004719, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4468,10 +4468,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "tx_index": 18, "block_index": 131, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4496,7 +4496,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730977358, + "block_time": 1731004703, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4508,10 +4508,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "tx_index": 14, "block_index": 130, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4536,7 +4536,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730977353, + "block_time": 1731004698, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4548,10 +4548,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "tx_index": 10, "block_index": 125, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4576,7 +4576,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4594,22 +4594,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4618,22 +4618,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", + "tx_hash": "30cb75f423b21b61efa45caa47385dc64add668e904ea611d9bca486b4e3a5e5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977370, + "block_time": 1731004714, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4642,22 +4642,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", + "tx_hash": "38159f9eb395d2e45b54e163b6c44f2552e865676df332f340045cbca90e27e7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977366, + "block_time": 1731004710, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4666,22 +4666,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", + "tx_hash": "13c1eec8c6aa75ef56245a19ddae307006789ea855ac87dff2d0db0c7d27bf5a", "tx_index": 19, "block_index": 132, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977362, + "block_time": 1731004707, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4690,22 +4690,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9c1ce9680f0043f68b449f91e332e914fbbda1f815b93638da08c6901354ff60", + "tx_hash": "82e272b1696162e7df85a6af2281a559ef26df43ca918dd31f963dbee291a424", "tx_index": 15, "block_index": 127, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977344, + "block_time": 1731004688, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4714,22 +4714,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4744,22 +4744,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4776,8 +4776,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4790,12 +4790,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -4811,7 +4811,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4824,7 +4824,7 @@ "btc_out": 0, "btc_change": 4999985771, "btc_fee": 14229, - "rawtransaction": "02000000000101c158f0eff2350f861b62cf558dc0e3ef5dbc4f943fba24378588c5f84545108d00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff0200000000000000002b6a29f3dfe7e96c5baf4576771d1d6ea133724796a07a4ed01d6bcd9766d9c19d16527dd356d14bf25031486bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001015067c9650b1681d97bf6a912b2bf5bf56f323dbde3ac65caf9f9f66a5e08cb1e000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff0200000000000000002b6a295ea75ef93e8f2ad585dfbc79b8d9437f1118ba83224a6307fa831ad21b40ef846abecbbdd84b49c3b06bba052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4842,24 +4842,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "order_match_id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590baebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "data": "434e5452505254590b492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e27373e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980890, "btc_fee": 18110, - "rawtransaction": "020000000001012d58a19d1cedccbcdbd8ef8fff318dfd2e5cd28f390e154c3a45932ef76329cb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e803000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b00000000000000004b6a4909d2dd0c2007d43911c8aea7cb28b1079c0205b6cd2e9a74055b419b3b654595ff11f46c29e676fe6014b94ee75906c9ea1455c033bd1502673c080a2582beb5f597c315f4d4931cb65aa7052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001013590c8257e1da84e7b376e072a8b66f6bb6bf0ec21e001011dfa0b1e869515df000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff03e8030000000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d00000000000000004b6a4958c7a0205354b94862ce5897b4a42fc18f58ecf3e7865913887f5fc0d0b67434d8c8057713ad1744ce7a72c481eeac797d3d4051d41598ebddde445be6ba01fff8589286da7f17c2c25aa7052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "order_match_id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "order_match_id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "status": "valid" } } @@ -4868,7 +4868,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4879,28 +4879,28 @@ "btc_out": 1000, "btc_change": 4999985771, "btc_fee": 13229, - "rawtransaction": "020000000001014e868381a6790213502baa07d4980cadf9a3c5ce2e71c47bc48ebb4793b2b7e200000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000" + "rawtransaction": "0200000000010107a943d58bdf28f31c24b07591808a1969fe67fed7097cb0945f7e3a69a71fda000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac6bba052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "offer_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594659e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "data": "434e54525052545946f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "btc_in": 4949918908, "btc_out": 0, "btc_change": 4949904679, "btc_fee": 14229, - "rawtransaction": "02000000000101f3a3f2abf660a05264628a5eba5c06cfb731652e97a6b70e1a4e7ed97a46e959010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dffffffffff0200000000000000002b6a2927fcbf4eb3cff3769830b7339ecf1ab04935ef3c83db0128f93e55c7ada85efa5bc0bacc73b308982c278d0927010000001600140dcbc88b53ce609bd56eea0d0d084c9373fd2dff02000000000000", + "rawtransaction": "02000000000101e6aea6fbc852bf6421ead13eaa182b394e01cdc2f0f8505c728a7e1158ade2f5010000001600149ed1bed8deca0d3b06c336364bf33d2a8c20dfdbffffffff0200000000000000002b6a29ecc7e1d22ed204c27630d537a2fb4091306f89422c9a01c650a83f08679b4af32333b7fc462cc3aeb9278d0927010000001600149ed1bed8deca0d3b06c336364bf33d2a8c20dfdb02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "offer_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "status": "valid" } } @@ -4909,7 +4909,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4929,7 +4929,7 @@ "btc_out": 0, "btc_change": 4999986300, "btc_fee": 13700, - "rawtransaction": "02000000000101a43e72f572060f4876a971b5312d46dec47a79c5791f8967bbfd9f3fce81819600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000226a207af07edddbfb3964ea2050bb90ea1af854d3a450d8f523a63b8a582a6153305d7cbc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001015fdb11fb46c974b6fd3194c9375f64611e91e212efe5dd220f01f5d254d4bdbd000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000226a20443839676f40ffc1d8d9c9e5f45e90f5ee18a48fee4a6a2c47a18b130d3a8a7d7cbc052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4945,7 +4945,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4970,7 +4970,7 @@ "btc_out": 0, "btc_change": 4949859611, "btc_fee": 14288, - "rawtransaction": "02000000000101bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf50200000016001427db96e897929853c6ebe6127d77a4882445084bffffffff0200000000000000002c6a2a3c8c8fb35dbad902c9ff6bf4dd47ad2937e001f890554e3b57ce5bf6a2b2df98d4f05ed72ba3670efb3d1bdd08270100000016001427db96e897929853c6ebe6127d77a4882445084b02000000000000", + "rawtransaction": "02000000000101bffcf652a57630f954bf4ca2ef879c0e1837e39d6de150bab5b878010d8b36c402000000160014345cb3cfff90bbca05480ee884ccfc20c475bb08ffffffff0200000000000000002c6a2a1ab2d36e13d22556baa70954fe378309f84d13ecf06a2156baac7579398b9964bf9423f62e8281ab0fcf1bdd082701000000160014345cb3cfff90bbca05480ee884ccfc20c475bb0802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4992,7 +4992,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", @@ -5000,7 +5000,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5019,7 +5019,7 @@ "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "02000000000101668815b074db819426b51ae36179f9fafc4803f48bd6420713f67ca1e61da61800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219f95843f5dda7681968fe685f1fe39f327ae9215be39b171de5c34f1f02c3334b642bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001011312daef6ebe4e8d09a80f5d6535b42e2b2da3ddfdaa051debd7ae669a27839b000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000236a217800be11ee7d23aba24960b67199f2008c8cb41c5ea0653128e54ffb9ec43af60042bc052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5036,10 +5036,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "transfer_destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "lock": false, "reset": false, @@ -5053,7 +5053,7 @@ "btc_out": 546, "btc_change": 4999983696, "btc_fee": 15758, - "rawtransaction": "02000000000101b554c2e655bc234e4aff2d8274030dcde31ff5760d10ee8bc61f415e63514e9e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000236a21efc368468f681c93cad7e47914392488a41d48dca0f7c6e47d39c76644f194349750b2052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "0200000000010115fb76796a4d45e7d162a46ab23386de6dc665cd1eb5e939469d9fa0995dce73000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff0322020000000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d0000000000000000236a2177b5d0dff59a5977372ad6903da36f635690857d7fa9d50965cc5b842af013efa150b2052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5078,16 +5078,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", 1 ], [ "MPMASSET", - "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", 2 ] ], @@ -5096,26 +5096,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280a975b369ecb27bd04f92e9f3456b9270f93c1b6b80aefb93e5317e3e7bc25fbda34dc62dc9b5ab704740000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002802aabde3f5bb7bac2d273f85e71e76054d261e32d806f46c50c67a741a0a6229402f21095e40a9d907e40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945317, "btc_fee": 52683, - "rawtransaction": "02000000000104f983b24cdaf7fd05960f39fc7ffc3c91db6e09e76165925358a6a9ef98378c8800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffffefee148baf747bebe0180349e1f8122493253ec497bed9b169c78a476caa1afb00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff71514a9311b573428fa6df525d18dacfb6079c6f70543794ca948f381f28039f00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff08aff0edc5140d16dc62fe19734437c5960ee379b8ba626e26dcadd1d5d516a400000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff03e8030000000000006951210301ec4ed558c01cdbf3d9f8601f6f83700bdc93a6b1d072e446441f48a84ba0ad2102f7448423b0eb6b21ea6d028c31753ebef198d3a8a1f7c68907a8f7627490cd5e21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253aee803000000000000695121031eec4ed558c01cdbf30af8629fc6f6c3621421dd619fe00db50574dad8b29cff2102ec2f058d4b788e109453794e6ec89df337b51a1d0a8781c907a8f281141809bd21023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e7253ae65f216a804000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000002000002000002000000000000", + "rawtransaction": "02000000000104cda46946d1630a836c4e60da984a6ad27e11432f1d03cbcafc6bbae8b1ce5c56000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffffd08a3f97ec3ec42ff630e7a3e20eacd54e18b7c700ab04e49822bd274ca451cb000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff4c611a1313b6f74f8bea264b48f64034b3446e1ad745b1db01e164eb330509b1000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff4c88f109a7e24d22b62d124bfe091aee51aa4e50d45dacfee64ccab30a64afba000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff03e8030000000000006951210369c535184f5dc416389e0b4ac4ab20253bdb2f4c3817c9986aea3cb54b291e7b21024075b7383512fe64eabe4cc7d6b850479c16cedd1a084170ff045808309ed563210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453aee8030000000000006951210376c535184f5dc416384d0b4844818bfb04a498f6fac5ba60349fdbd51ffb7f3e2102a358365773d7f2034dffec61f42c52b58c832ad787983f30ff045deb501611d8210294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b64983463453ae65f216a8040000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5127,7 +5127,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5145,7 +5145,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5159,7 +5159,7 @@ "btc_out": 0, "btc_change": 4999985183, "btc_fee": 14817, - "rawtransaction": "02000000000101a4880f217851d5755e542253fc0c0a843e1e4c11f68e6fb98333a783c78dc58800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000356a337b6b94a943206ff17006fde5b3e508b3bba1015d06c8afda1764d188fda077b659183f217c333c42fa085e6bfc76cc36e2c5fb1fb8052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "02000000000101535fafd067122c5f71c64cb929d3cb90fb891fec412eb78d6de5b77138c39083000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000356a331d9fc52675910cc74f5c869d06d7666af2d3bf2f5c71577bb6f9fe2bcf7362b7e9b28de5a110d444d971c251fe628507876c781fb8052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5181,8 +5181,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5199,19 +5199,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047", + "data": "434e54525052545902000000000000000100000000000003e8806f46c50c67a741a0a6229402f21095e40a9d907e", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985477, "btc_fee": 14523, - "rawtransaction": "0200000000010177151862c1be96e7dc0ccb5e585d8cb3caf28441a6f219358b05b5d84aa2afe600000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000306a2ef312b061dfba1b217147ac2ecbc5f331390c118609b7ef84fa4bb7b755642aa42e84fe4b752630ef949f6740e34645b9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "0200000000010140038d2dabd5867eb6514d62fda11c8b235b3bc79da707cfa43cf14dfe8cd3d0000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000306a2e9f7b491616e6b06f9d6f83b2f28f0c1a036e18e7f7c7ab12be55eced5476525c9fe97e5d418d3d656740b2c3339f45b9052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "quantity_normalized": "0.00001000" } @@ -5221,24 +5221,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480aefb93e5317e3e7bc25fbda34dc62dc9b5ab704707ffff", + "data": "434e54525052545904806f46c50c67a741a0a6229402f21095e40a9d907e07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986242, "btc_fee": 13758, - "rawtransaction": "020000000001019fb504094c0ff9b4e9927e1e274fa80896c6ab19c482aafe32a9284296b06e5e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000236a219fb4153f246ef01c1e700548290790380e9ec14961ffb1dfb46d3c00d7b1f049db42bc052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001013e85f11526f4a8281182b691b03136c64ec3c51e197904e1d7bd0387d77120f9000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000236a2148c7683eb21226dfaa8a370ee0a1a68781ef51e5d992e3ff9be625feeabb753bc242bc052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "flags": 7, "memo": "ffff" } @@ -5248,8 +5248,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "quantity": 1000, "skip_validation": false }, @@ -5259,7 +5259,7 @@ "btc_out": 1000, "btc_change": 4949812595, "btc_fee": 14405, - "rawtransaction": "02000000000101331ef5cb6ae373cad9ece34c1260099b40e4656b3aa416f0744ab33f8dd7f01f03000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab7047ffffffff03e8030000000000001600142f17c5b300d912108769616091ec2d7d53c91a7300000000000000000c6a0add8bd88dfa16b908ac7f7325082701000000160014aefb93e5317e3e7bc25fbda34dc62dc9b5ab704702000000000000", + "rawtransaction": "02000000000101311f750cfc72661c705c5ef80f8dc04bd6c33db0ac80edd55b3070b29b50abff030000001600146f46c50c67a741a0a6229402f21095e40a9d907effffffff03e803000000000000160014b91d6ec2cda019cd3c3b579855a86fbeadc4046f00000000000000000c6a0abc9318a1652142f4f2ad73250827010000001600146f46c50c67a741a0a6229402f21095e40a9d907e02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5272,7 +5272,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5304,7 +5304,7 @@ "btc_out": 0, "btc_change": 4999985418, "btc_fee": 14582, - "rawtransaction": "02000000000101dfb1a602f3b4593d3b34f7cc1b1966b846363ab5dc7387583085b0bbf08e1f2e00000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000316a2f98ab04bad4ae1a5de48266cd6ba2e87537608a600e3c4f5e4c33fa61eb35867704ef27500b0d56da43787d36d882330ab9052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "020000000001010a62ae7e6e49d5ec358a57df5f85e1dd56971d9eee41b09ce9682c96722679db000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000316a2f902be6ac0c81db7129f9b8456fc6164aff7259d28b9190e7b6ff9e1297b698d1de4280db064eff593f4c125a36bfbe0ab9052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5339,14 +5339,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTC", "quantity": 1, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5358,7 +5358,7 @@ "btc_out": 0, "btc_change": 4999987006, "btc_fee": 12994, - "rawtransaction": "0200000000010139b307b9db1b8871639834a69b77f2b9efbdab54b392e6f5878bb9fcf56525f800000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff020000000000000000166a141407fa2a8cb7beb8d113f685fe4c5a3c30b6434a3ebf052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "02000000000101172fbf95caa23c876e50850b0431bc767e1bd1cdcd7bc832b893059bd6667693000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff020000000000000000166a14f09485789a8e206799d0f52fb7ffa52891bed63a3ebf052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5373,7 +5373,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5393,7 +5393,7 @@ "btc_out": 546, "btc_change": 4999984578, "btc_fee": 14876, - "rawtransaction": "02000000000101d83020d40a6509ae7d3e019823c4563737756c35d661b0f19b3cd578c87fcac100000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6bffffffff032202000000000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b0000000000000000146a123111edb1f3347cfe5c50900a4daf6b148754c2b5052a01000000160014a975b369ecb27bd04f92e9f3456b9270f93c1b6b02000000000000", + "rawtransaction": "0200000000010122d3a8c283666adb095b00f66b361881079881a597e3566f33b8623235a68583000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32dffffffff0322020000000000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d0000000000000000146a125275fe26b0b784b5d1b06602ffc143748288c2b5052a010000001600142aabde3f5bb7bac2d273f85e71e76054d261e32d02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5409,22 +5409,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713439366d783630766b666161716e756a613865353236756a7772756e63786d74386333797a36", + "data": "434e54525052545966626372743171393234617530366d6b37617639356e6e6c70303872656d71326e6678726365646b6639793467", "btc_in": 4949971000, "btc_out": 0, "btc_change": 4949945423, "btc_fee": 25577, - "rawtransaction": "02000000000102bc55f4ae5ac843fa0aac99a809a3a6884c4313944232abcecc8755c552fe9bf5000000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffffbb54ed2e6fc9c8665821c316af1cff5dba90c2be589b5062355140e4597df20e010000001600149e334aaca9774527f019ba31459ddc70b7bfa49cffffffff020000000000000000376a353c8c8fb35dbad902a39d0886a976dc1d0fd66c80a6653853d9af3a87ccc7b5fa04956be51dd60d79ed48c69476d401b6a9f31583064f2c0a27010000001600149e334aaca9774527f019ba31459ddc70b7bfa49c02000002000000000000", + "rawtransaction": "02000000000102bffcf652a57630f954bf4ca2ef879c0e1837e39d6de150bab5b878010d8b36c400000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddcfffffffffa0a6362b39501bd0a63ffc8df248cfde74f856b4142be28f8ba04a7c60c986901000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddcffffffff020000000000000000376a351ab2d36e13d22556d0c56a268a06f230cb797299c05c4c3e65cd03400ce5f70b27a41b844beff09905a944811bd277e49a205309224f2c0a2701000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddc02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6" + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g" } } } @@ -5435,8 +5435,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -5444,16 +5444,16 @@ "first_issuance_block_index": 206, "last_issuance_block_index": 206, "confirmed": true, - "first_issuance_block_time": 1730977691, - "last_issuance_block_time": 1730977691, + "first_issuance_block_time": 1731005027, + "last_issuance_block_time": 1731005027, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "owner": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "owner": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false, "supply": 100000000000, @@ -5461,16 +5461,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730977654, - "last_issuance_block_time": 1730977654, + "first_issuance_block_time": 1731005002, + "last_issuance_block_time": 1731005002, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -5478,16 +5478,16 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 161, "confirmed": true, - "first_issuance_block_time": 1730977474, - "last_issuance_block_time": 1730977492, + "first_issuance_block_time": 1731004832, + "last_issuance_block_time": 1731004841, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "owner": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "issuer": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "owner": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "divisible": true, "locked": false, "supply": 100000000000, @@ -5495,16 +5495,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 158, "confirmed": true, - "first_issuance_block_time": 1730977471, - "last_issuance_block_time": 1730977471, + "first_issuance_block_time": 1731004829, + "last_issuance_block_time": 1731004829, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 100000000000, @@ -5512,8 +5512,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730977431, - "last_issuance_block_time": 1730977431, + "first_issuance_block_time": 1731004789, + "last_issuance_block_time": 1731004789, "supply_normalized": "1000.00000000" } ], @@ -5525,8 +5525,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "owner": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "owner": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false, "supply": 10000000000, @@ -5534,15 +5534,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730977324, - "last_issuance_block_time": 1730977336, + "first_issuance_block_time": 1731004667, + "last_issuance_block_time": 1731004680, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5550,14 +5550,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5565,7 +5565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -5578,7 +5578,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 82649965196, "utxo": null, @@ -5600,9 +5600,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5619,7 +5619,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5647,9 +5647,9 @@ }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5666,7 +5666,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5694,9 +5694,9 @@ }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5713,7 +5713,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5741,9 +5741,9 @@ }, { "tx_index": 61, - "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "block_index": 210, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5760,7 +5760,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5788,9 +5788,9 @@ }, { "tx_index": 53, - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5807,7 +5807,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5840,13 +5840,13 @@ "/v2/assets//matches": { "result": [ { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5860,7 +5860,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5880,13 +5880,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 53, - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5900,7 +5900,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5920,13 +5920,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "id": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28_d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", "tx0_index": 50, - "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 51, - "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5940,7 +5940,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5960,13 +5960,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5980,7 +5980,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6007,20 +6007,20 @@ "result": [ { "block_index": 196, - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "event": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6028,20 +6028,20 @@ }, { "block_index": 125, - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", + "event": "5771c1ad1546b58948dff99e92c3c6a5ce2d6e0e2aaa01280c9612712acccb59", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6049,20 +6049,20 @@ }, { "block_index": 124, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "event": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6070,20 +6070,20 @@ }, { "block_index": 124, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "event": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6095,16 +6095,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "event": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6122,12 +6122,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6139,16 +6139,16 @@ }, { "block_index": 211, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6160,16 +6160,16 @@ }, { "block_index": 210, - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "event": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6181,16 +6181,16 @@ }, { "block_index": 209, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "event": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "tx_index": 76, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6202,16 +6202,16 @@ }, { "block_index": 208, - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "event": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6234,14 +6234,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", + "tx_hash": "5771c1ad1546b58948dff99e92c3c6a5ce2d6e0e2aaa01280c9612712acccb59", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6256,20 +6256,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "tx_hash": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6284,20 +6284,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6312,20 +6312,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -6340,7 +6340,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730977324, + "block_time": 1731004667, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6352,10 +6352,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6363,7 +6363,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6376,10 +6376,10 @@ }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6387,7 +6387,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6400,10 +6400,10 @@ }, { "tx_index": 77, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6411,7 +6411,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6424,10 +6424,10 @@ }, { "tx_index": 76, - "tx_hash": "67f090cd9330243a3573687e5d4688131ccf56356ef01cfd789d4c747be1b4d7", + "tx_hash": "7d7eb8e697bc1570a3e065edd68d7575fc4d63ee12ffc9d9e8105c744f7d993b", "block_index": 209, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6435,7 +6435,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977712, + "block_time": 1731005049, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6448,10 +6448,10 @@ }, { "tx_index": 75, - "tx_hash": "3afa024619ce444564097d81e0bee5c7fe15a43e10fbafa0f9e4ce1dfee788b1", + "tx_hash": "23a60d3c4174ac064a318a371dffa80105663b33540167c1cbe0132f1ac98503", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6459,7 +6459,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6478,9 +6478,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6489,7 +6489,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6500,7 +6500,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6517,9 +6517,9 @@ }, { "tx_index": 29, - "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", + "tx_hash": "7f351bf02cdc8305d848fbe20924e2341d8f19295ae1d05cc139aa96706e8790", "block_index": 142, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6528,7 +6528,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "origin": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6539,7 +6539,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977400, + "block_time": 1731004757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6556,9 +6556,9 @@ }, { "tx_index": 30, - "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", + "tx_hash": "57dfa4e14d877cc85b465f5745f70d9e2dffc0c13f13aa357a09f6fc8c33d5c9", "block_index": 150, - "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", + "source": "mk9JptUdbhD7gMNvk7Fpr3eATPagvbznyS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6566,10 +6566,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_hash": "c0e12c7e75c6b8beb667aea53bd4864bfe2914ca9c29f5de0f3e1082d3749432", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 0, - "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -6578,7 +6578,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977438, + "block_time": 1731004797, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6595,18 +6595,18 @@ }, { "tx_index": 33, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6617,7 +6617,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6639,9 +6639,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6650,7 +6650,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6661,7 +6661,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6690,7 +6690,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6698,7 +6698,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6707,7 +6707,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6715,7 +6715,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6724,7 +6724,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6732,7 +6732,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6741,7 +6741,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -6756,27 +6756,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6791,7 +6791,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6805,27 +6805,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", + "tx_hash": "ebd7af9f1fc3beddb28148f511b725623a3638c8865c3bf22cc5ecda0cb60b70", "block_index": 147, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6840,7 +6840,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977428, + "block_time": 1731004785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6854,19 +6854,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6874,7 +6874,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6889,7 +6889,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6903,19 +6903,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6923,7 +6923,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6938,7 +6938,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6961,10 +6961,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "tx_index": 10, "block_index": 125, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6989,7 +6989,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7007,22 +7007,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "e39804b8af162113602b2a5addeaf174565beca8fcf1aaba752a4a20a73e8c7d", + "tx_hash": "5771c1ad1546b58948dff99e92c3c6a5ce2d6e0e2aaa01280c9612712acccb59", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7031,22 +7031,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786", + "tx_hash": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977332, + "block_time": 1731004676, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7055,22 +7055,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7085,22 +7085,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "0bdc424d8632ea3e5d8a7e0556a4fb2e121860a1fa7387fe318887810731c9b8", + "tx_hash": "f555f8d43da944444bf30415165c347348972ae7970f8b1aa7776b8a01173f86", "tx_index": 11, "block_index": 123, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977327, + "block_time": 1731004672, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -7116,9 +7116,9 @@ "result": [ { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7135,7 +7135,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7163,9 +7163,9 @@ }, { "tx_index": 53, - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7182,7 +7182,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7210,9 +7210,9 @@ }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7229,7 +7229,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7257,9 +7257,9 @@ }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7276,7 +7276,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7304,9 +7304,9 @@ }, { "tx_index": 61, - "tx_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "block_index": 210, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7323,7 +7323,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7356,9 +7356,9 @@ "/v2/orders/": { "result": { "tx_index": 79, - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, @@ -7375,11 +7375,11 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1730977725, + "block_time": 1731005059, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -7405,13 +7405,13 @@ "/v2/orders//matches": { "result": [ { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7425,7 +7425,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7452,15 +7452,15 @@ "result": [ { "tx_index": 54, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "btc_amount": 2000, - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "status": "valid", "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "btc_amount_normalized": "0.00002000" } ], @@ -7471,9 +7471,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "block_index": 188, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7491,7 +7491,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730977585, + "block_time": 1731004940, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7517,9 +7517,9 @@ }, { "tx_index": 55, - "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "block_index": 211, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7537,7 +7537,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730977721, + "block_time": 1731005056, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7563,9 +7563,9 @@ }, { "tx_index": 50, - "tx_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", + "tx_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", "block_index": 185, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7583,7 +7583,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977511, + "block_time": 1731004868, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7609,9 +7609,9 @@ }, { "tx_index": 52, - "tx_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", + "tx_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", "block_index": 208, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7629,7 +7629,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977699, + "block_time": 1731005044, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7655,9 +7655,9 @@ }, { "tx_index": 59, - "tx_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", + "tx_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", "block_index": 194, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7675,7 +7675,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977618, + "block_time": 1731004973, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7706,13 +7706,13 @@ "/v2/orders///matches": { "result": [ { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7729,7 +7729,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7749,13 +7749,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 53, - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7772,7 +7772,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977585, + "block_time": 1731004940, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7792,13 +7792,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "id": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28_d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", "tx0_index": 50, - "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 51, - "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7815,7 +7815,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977511, + "block_time": 1731004868, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7835,13 +7835,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7858,7 +7858,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7884,13 +7884,13 @@ "/v2/order_matches": { "result": [ { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7904,7 +7904,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7924,13 +7924,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", "tx0_index": 52, - "tx0_hash": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 53, - "tx1_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7944,7 +7944,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730977585, + "block_time": 1731004940, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7964,13 +7964,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263_5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", + "id": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28_d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", "tx0_index": 50, - "tx0_hash": "476b7c7f77e4f316f7f5ad9b49c70e6c1b9e9d6da1f6f74fc30532428fc28263", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "eb72cdbbe869c2c752723dfcff194d7c19895b143db37399b003485b4f858b28", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 51, - "tx1_hash": "5bde27a4dd46ea34e86f49f2210083a28f60ebf24f3fd26cb0a7e20d31967f94", - "tx1_address": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "tx1_hash": "d0df559dc0944937aa33b62cca5665ed981d5c969ebfaff47d556a849648f7bc", + "tx1_address": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7984,7 +7984,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730977511, + "block_time": 1731004868, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8004,13 +8004,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx0_index": 61, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx1_index": 55, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8024,7 +8024,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8069,66 +8069,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", + "tx_hash": "b860cd8e7531ff7771a9bf0984b7824c178d84d98b36a2740c8a646041a7cd2d", "block_index": 121, - "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", + "source": "bcrt1qxzcjteau2lnp7ksjsqakf8xzxz6x9hvzxjva8p", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730977320, + "block_time": 1731004662, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "53f7f14701b0a6eeca9a78bd8815650adfeb66f546be001daf5f851dbf9b817d", + "tx_hash": "b34e8ef4b7739a44b3a7f4f4b7067c062dcfddc7e1f1d2dedd8f00674191042c", "block_index": 120, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730977317, + "block_time": 1731004659, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "92749a25d45e1f8045e905e14c23aa5a850c93b179ccee536aea18c335f3cd56", + "tx_hash": "ba5d9046a0666a200f7bbb08d2ddbecd758fd4c5284ce0a9b87601bcf1d06766", "block_index": 119, - "source": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d", + "source": "bcrt1qsr86fx9tt89hm6glnd4c0reuq4wsux6gd2mu0g", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730977314, + "block_time": 1731004656, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "ec533a9c92446574419824d1eca1b41716eaaa81aa4371b0e7bd5d71ed714f9c", + "tx_hash": "cbb293484287c2c07e22f4c5b99d9cb4d0f425387ddfc1a73ed8325dd86765be", "block_index": 118, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730977310, + "block_time": 1731004652, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "10894d687d5f3cbda58d8c8d0cbef0daf82fbb5bc2f492bab4c6dee8d215a173", + "tx_hash": "f958b6a321d1c97afd59b6c06a552bfda2e3354fd5e3a03460b2526543ef2747", "block_index": 117, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730977306, + "block_time": 1731004649, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8140,9 +8140,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8151,7 +8151,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8162,7 +8162,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8179,9 +8179,9 @@ }, { "tx_index": 29, - "tx_hash": "1300b375e644120da0b088e49cbade4ce5eb6dc92de4d2542d40de765f0a592d", + "tx_hash": "7f351bf02cdc8305d848fbe20924e2341d8f19295ae1d05cc139aa96706e8790", "block_index": 142, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8190,7 +8190,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "origin": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8201,7 +8201,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977400, + "block_time": 1731004757, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8218,9 +8218,9 @@ }, { "tx_index": 30, - "tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", + "tx_hash": "57dfa4e14d877cc85b465f5745f70d9e2dffc0c13f13aa357a09f6fc8c33d5c9", "block_index": 150, - "source": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", + "source": "mk9JptUdbhD7gMNvk7Fpr3eATPagvbznyS", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8228,10 +8228,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "689c58929b64b7a5822a18b397f95d6597fd2f19ae0038723dc0693f6d258758", - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_hash": "c0e12c7e75c6b8beb667aea53bd4864bfe2914ca9c29f5de0f3e1082d3749432", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 0, - "last_status_tx_source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "last_status_tx_source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "close_block_index": 150, "price": 1.0, "confirmed": true, @@ -8240,7 +8240,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977438, + "block_time": 1731004797, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8257,9 +8257,9 @@ }, { "tx_index": 65, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8268,7 +8268,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8279,11 +8279,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8296,18 +8296,18 @@ }, { "tx_index": 33, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8318,7 +8318,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8340,9 +8340,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8351,7 +8351,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8362,7 +8362,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8383,19 +8383,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8403,7 +8403,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8418,7 +8418,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8432,19 +8432,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8452,7 +8452,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8467,7 +8467,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8486,20 +8486,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8520,20 +8520,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8556,12 +8556,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "event": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "tx_index": 42, - "utxo": "e250eb1d2f9fed96de5b384fbc6891852d5c5ba40f67a488be3b7e9d1d58ee07:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "utxo": "635661906d228468be7ede3b8261394218fd5aa7992808263cb8fe1280354ccc:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "confirmed": true, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8582,27 +8582,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 714, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 713, @@ -8611,14 +8611,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8629,9 +8629,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 712, @@ -8640,9 +8640,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8652,24 +8652,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8679,9 +8679,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 710, @@ -8693,15 +8693,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } }, "/v2/events/counts": { @@ -8736,16 +8736,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8755,9 +8755,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 709, @@ -8767,12 +8767,12 @@ "asset": "XCP", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8782,9 +8782,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 706, @@ -8794,39 +8794,39 @@ "asset": "MYASSETA", "block_index": 213, "calling_function": "utxo move", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", - "utxo_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "block_time": 1730977733, + "utxo": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", + "utxo_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 }, { "event_index": 688, "event": "CREDIT", "params": { - "address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "block_index": 211, "calling_function": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8836,36 +8836,36 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 }, { "event_index": 687, "event": "CREDIT", "params": { - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "block_index": 211, "calling_function": "mpma send", - "event": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "event": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "quantity": 10, "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 686, @@ -8882,27 +8882,27 @@ { "tx_index": 80, "dispense_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8917,7 +8917,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8931,19 +8931,19 @@ { "tx_index": 66, "dispense_index": 0, - "tx_hash": "15bde5fbbeda6b9c3c463c6b01541d3fa7995f7ecb2dd8014aeec0a19767ed42", + "tx_hash": "99fc4b7582bc12cc4cc468f8287401bca2da6f9b1937fa4e7a2f95ebca1686e9", "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "dispenser_tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 65, "block_index": 200, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8951,7 +8951,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8966,11 +8966,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977650, + "block_time": 1731004998, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -8980,27 +8980,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "4ec946bd3d80754e0e6bb78891a8d43e4cfd7a5527f54fb3a4d1c3c4e957a5b7", + "tx_hash": "ebd7af9f1fc3beddb28148f511b725623a3638c8865c3bf22cc5ecda0cb60b70", "block_index": 147, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 213, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "oracle_address": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "last_status_tx_hash": null, - "origin": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "origin": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9015,7 +9015,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730977428, + "block_time": 1731004785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9029,19 +9029,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d5f8ea3b24282d043110783e0fc6725a40b3073daf93b1266ce02c1b13084f40", + "tx_hash": "0b9d5a675573e2fd6a94fbfab7f84eba4e3353f46e421bf672bb14e272979455", "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9049,7 +9049,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9064,7 +9064,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977396, + "block_time": 1731004753, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9078,19 +9078,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "1ec40d27e47a484c3e56cfac0525451c95a24cc113a7cab6bfa377481348ede1", + "tx_hash": "ba1a8329614aab4f89a7cfa829be7885c0a727902a0f3351bdd0db9b2e1a3b9d", "block_index": 140, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c1ddd506f90bcc50b5268e4297b8327a8e7c7483589145e3757b3a88377a57ae", + "dispenser_tx_hash": "cd4671d6d6727102f29b4fbdf0408188f5d0e22b1fb7f3e129e7671b755f5c44", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9098,7 +9098,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9113,7 +9113,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730977392, + "block_time": 1731004739, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9132,10 +9132,10 @@ "result": [ { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -9143,7 +9143,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9156,10 +9156,10 @@ }, { "tx_index": 80, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -9167,11 +9167,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9180,10 +9180,10 @@ }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9191,7 +9191,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9204,10 +9204,10 @@ }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9215,11 +9215,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9228,10 +9228,10 @@ }, { "tx_index": 78, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9239,11 +9239,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9258,14 +9258,14 @@ "result": [ { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -9280,20 +9280,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 67, - "tx_hash": "3dfafdb89f45576b25adc2371da0ffb782acf19f28b77b73ee1181a91122725e", + "tx_hash": "f13027cef6de29d237426950beef6947d2935732272bebe3d5932f7996b699ff", "msg_index": 0, "block_index": 201, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "transfer": false, "callable": false, "call_date": 0, @@ -9308,20 +9308,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977654, + "block_time": 1731005002, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 49, - "tx_hash": "db4bf050db2c07a8ea8de7480b06a75f8bf0add6802728658acaf9b360bf6ee2", + "tx_hash": "febdb63d7289b3d483a34f1a9b06d1c324fc0577093297c7682d4a3ab4210572", "msg_index": 0, "block_index": 162, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -9336,20 +9336,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977496, + "block_time": 1731004845, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 48, - "tx_hash": "1a961c25a902cb55a44c3a4c79680edf25f9f4df83495106671f7feca9fab4b1", + "tx_hash": "46064999fa67a4fbd94100e0f2522b5f03ebec9fb7c3637595fd23f45263e2e5", "msg_index": 0, "block_index": 161, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -9364,20 +9364,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730977492, + "block_time": 1731004841, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "deed2285181821b9f02c6b10930973f7c7b75a8917163333cb60115487f0132c", + "tx_hash": "8dd954472faf0bc7d9ff7c2f746b8d8ea76894c87126b3dbfbda38cfcef91c08", "msg_index": 0, "block_index": 160, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -9392,7 +9392,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977478, + "block_time": 1731004836, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9403,14 +9403,14 @@ "/v2/issuances/": { "result": { "tx_index": 73, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "msg_index": 0, "block_index": 206, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "transfer": false, "callable": false, "call_date": 0, @@ -9425,7 +9425,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9434,16 +9434,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -9454,16 +9454,16 @@ "result": [ { "tx_index": 62, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" } ], @@ -9474,9 +9474,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9484,14 +9484,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977385, + "block_time": 1731004731, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "f37dcb25c3d39b50faf416fb1024915434004d6f732b51857243ac97da59060c", + "tx_hash": "f1a31df1d65b7242d6634a0d7cc7b9551dc08db83cb38862c860ae9886f9e999", "block_index": 137, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9499,7 +9499,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977381, + "block_time": 1731004727, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9509,9 +9509,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9519,17 +9519,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730977385, + "block_time": 1731004731, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, "block_index": 156, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9554,7 +9554,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9563,10 +9563,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "tx_index": 22, "block_index": 135, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9591,7 +9591,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730977375, + "block_time": 1731004719, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9603,10 +9603,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "tx_index": 18, "block_index": 131, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9631,7 +9631,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730977358, + "block_time": 1731004703, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9643,10 +9643,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "tx_index": 14, "block_index": 130, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9671,7 +9671,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730977353, + "block_time": 1731004698, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9683,10 +9683,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "9b26a50421cd689b00656af7efcdf40da462800b20cd82bc1088eb70f77ba700", + "tx_hash": "c75ae2fef16111483084617db409a27e227d829f437cfd039d32c8fe2a8384de", "tx_index": 10, "block_index": 125, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9711,7 +9711,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730977336, + "block_time": 1731004680, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9729,22 +9729,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9753,22 +9753,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1af04fe60bb400fd8edc2fdde540216226ba1f011153f39818ae6e8288a622e8", + "tx_hash": "30cb75f423b21b61efa45caa47385dc64add668e904ea611d9bca486b4e3a5e5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977370, + "block_time": 1731004714, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9777,22 +9777,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "07abb7d32dcd573555033cde6700dcffc28460675033a81ccf6cbde1acb9c64f", + "tx_hash": "38159f9eb395d2e45b54e163b6c44f2552e865676df332f340045cbca90e27e7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977366, + "block_time": 1731004710, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9801,22 +9801,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2388babdddb82dfb2a292f8c0bb2ed55c416c7419fc67c383efcf362c97cc6af", + "tx_hash": "13c1eec8c6aa75ef56245a19ddae307006789ea855ac87dff2d0db0c7d27bf5a", "tx_index": 19, "block_index": 132, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "a67538eb9bd47056def05bf26eb6ec27b101d90c61f4a2b9a6df9d0c2c5535b8", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "4624020f779c23f732c7bc66e8b73374395d05f9ce0350412a28ee96b36e4981", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977362, + "block_time": 1731004707, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9825,22 +9825,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d2f268607a9892328d11b14102180ad3cebf5bcd9e34070a2a69b27a987add11", + "tx_hash": "7f14a349fa22c7733b7ebee8f0aa99105bece282d2ddfe80a0525a3ae99a344a", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "fairminter_tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "fairminter_tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977350, + "block_time": 1731004694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9854,22 +9854,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -9880,14 +9880,23 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ + { + "vout": 0, + "height": 205, + "value": 546, + "confirmations": 9, + "amount": 5.46e-06, + "txid": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", + "address": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy" + }, { "vout": 1, "height": 212, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", - "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" + "txid": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", + "address": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy" }, { "vout": 1, @@ -9895,17 +9904,8 @@ "value": 546, "confirmations": 10, "amount": 5.46e-06, - "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", - "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" - }, - { - "vout": 0, - "height": 205, - "value": 546, - "confirmations": 9, - "amount": 5.46e-06, - "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", - "address": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0" + "txid": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", + "address": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy" }, { "vout": 2, @@ -9913,8 +9913,8 @@ "value": 100000, "confirmations": 56, "amount": 0.001, - "txid": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf", - "address": "bcrt1qq80uq7q02qmvtqxk5m0zetxr3g53wnvfhy4h5d" + "txid": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776", + "address": "bcrt1qsr86fx9tt89hm6glnd4c0reuq4wsux6gd2mu0g" } ], "next_cursor": null, @@ -9923,28 +9923,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "9d90d9487ddfc264d17c73a515f423e5c429b6d83cf24de8997eaddfc4866609" + "tx_hash": "2de449ab251c02583bb5c8a2d783f5fd33dc91fd9d06df5b596c0ce134561924" }, { - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848" + "tx_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42" }, { - "tx_hash": "2c2867cdde9bb0e5b8f16167ed9d07fdcfdbe216aae37df2b41856496ac4a256" + "tx_hash": "9c1f5ce94cf8ceebb2ac86dcbb046a7238813b63eeb35584da0d2fcce6d7d84f" }, { - "tx_hash": "ded24090770fef8bbf19d80fedab6fc8918e12089762f99aa3163f184ae8ac68" + "tx_hash": "115921477df7bd8e85c41f680ba0acc9adeb53a3ec0cb09aa64e1bc254dd0164" }, { - "tx_hash": "d683a7fc6db9a494fbcaefbef7e73441f62bc7f920b54af9ca52431c4d45a069" + "tx_hash": "c8b356d41e34244cbba0f28328b94991b1f37febe35673e010de2c19dc818f69" }, { - "tx_hash": "ef3ce4a0747b0f9d855171e3753f67e1e45fe9f1c7d13df968d3ce7dab0bd786" + "tx_hash": "739db2a1580c5e88f6cc6a681e686eeec10d89ef12c119b0f5d7ba0f93a56388" }, { - "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4" }, { - "tx_hash": "c48dc9784c8a741e26bf22ae348030fc3a4fba16648ac854436eacd77c5bb6ff" + "tx_hash": "89067b9865526cbb800cd71868db05ba49c38e9be68db9d2406d64b66c6013c0" } ], "next_cursor": null, @@ -9952,19 +9952,27 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "86fc31efdc88265b5d9499910af6267be60fdb887f26e0adf7a1bb4b1401635c" + "block_index": 3, + "tx_hash": "1974910fd2379e9276b2494b07d4a33c8605aa17b55e938bd8a0524c6796f715" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ + { + "vout": 1, + "height": 204, + "value": 546, + "confirmations": 10, + "amount": 5.46e-06, + "txid": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0" + }, { "vout": 1, "height": 212, "value": 4949918908, "confirmations": 2, "amount": 49.49918908, - "txid": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3" + "txid": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6" }, { "vout": 0, @@ -9972,25 +9980,17 @@ "value": 546, "confirmations": 9, "amount": 5.46e-06, - "txid": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e" - }, - { - "vout": 1, - "height": 204, - "value": 546, - "confirmations": 10, - "amount": 5.46e-06, - "txid": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468" + "txid": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "023637ea1a69e0a9e4c15b835c25420869de22d7d49f3ee17bb82567bd879a5e72" + "result": "0294252e64a1730e18892d8417f0bcd964186b8edf16e65ad606b0c6b649834634" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101cf99ffa01b328dcc71e0510f408fd86a64ddba305cd220fc8d76e384a369d0fb0100000000ffffffff03e8030000000000001600149e334aaca9774527f019ba31459ddc70b7bfa49c00000000000000000c6a0a4ac5dc7bc2aedaafabd9eb1409270100000016001427db96e897929853c6ebe6127d77a4882445084b02473044022052ba8f627dbc0b34c52de9fc109a013af3336e4a50a7751fab9c1a7739780f140220398102c0a431b0a6ca15a48e372203a97dcaf87242fbabaefb2d90396ca728e2012103e21ae08d90338d2b62676917df2ead4d354022b419fcf01f82d7534aea7f65d900000000" + "result": "0200000000010176e7f9634ca53283196f704e68ed798f17d0d18eac60e5994af29787cd77a0a80100000000ffffffff03e803000000000000160014dc46baa3685e9c70734862107bc3d1ca4c20fddc00000000000000000c6a0a5e73f2711da3d5ad76f8eb14092701000000160014345cb3cfff90bbca05480ee884ccfc20c475bb080247304402207b12124b46613f95c796094254ea1e4e865312163e0c826a564018e1bcbfa5a702204bf874a0ed20b966fbf3a4a5c8c60036abcb29e8fdf541b671ba45836aebb5c301210272ccae0425e7102acddc1371c7348e9654440f218a185dea7cb90fafa906ae8d00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58799 @@ -10063,27 +10063,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81 }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "quantity": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -10094,22 +10094,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10119,22 +10119,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "block_index": 213, - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10144,30 +10144,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730977737.9578004, + "block_time": 1731005072.5467687, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "destination": "", "fee": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, - "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", + "utxos_info": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -10181,7 +10181,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -10190,19 +10190,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10212,7 +10212,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -10221,27 +10221,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81 }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "destination": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "quantity": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, "asset_info": { "asset_longname": null, @@ -10252,22 +10252,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "CREDIT", "params": { - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "asset": "XCP", "block_index": 213, "calling_function": "send", - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10277,22 +10277,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "address": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "asset": "XCP", "block_index": 213, - "event": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "event": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "quantity": 10000, "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10302,30 +10302,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 }, { - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730977737.9578004, + "block_time": 1731005072.5467687, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c138b2f777aac8ef7f1728341936a5914f69ee5", + "data": "0200000000000000010000000000002710804f978224d74811234dff47e0ecdb746519362fd1", "destination": "", "fee": 10000, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", - "tx_hash": "49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", + "tx_hash": "adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5", "tx_index": 81, - "utxos_info": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5:1 49f17bd4792c1ca9066a7fadc3bc7a51e1f0f75d1672f66b80fee13afe7517e8:1 2 ", + "utxos_info": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429:1 adc5f7b35b68dde42a78ed1e5ba443c727b5793257db1aade271c1a75a7f95e5:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "memo": null, "asset_info": { "asset_longname": null, @@ -10339,7 +10339,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730977737.9578004 + "timestamp": 1731005072.5467687 } ], "next_cursor": null, @@ -10361,15 +10361,15 @@ "event_index": 702, "event": "NEW_BLOCK", "params": { - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", "block_index": 213, - "block_time": 1730977733, + "block_time": 1731005068, "difficulty": 545259519, - "previous_block_hash": "10a66fc834e8e53adf50bede93133665b6fadcf75eb19b69da56ba2ba52e0b99" + "previous_block_hash": "415b48224698e2735fc2c426a0b941a6ccebd280a0ea4fa552584822d4436f61" }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 696, @@ -10381,17 +10381,17 @@ "event_index": 703, "event": "NEW_TRANSACTION", "params": { - "block_hash": "124bfd41a31615eac95c623c8ff09c798065861a08298a405255e5d9cecef1bc", + "block_hash": "4d704e15357b319e2bf4004beefdb3f473c3de4e5ac8ac137504553c0719d6fb", "block_index": 213, - "block_time": 1730977733, + "block_time": 1731005068, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "fee": 0, - "source": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "source": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "utxos_info": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1 f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0 3 1", + "utxos_info": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1 c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10401,9 +10401,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 697, @@ -10417,16 +10417,16 @@ "params": { "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "destination": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "out_index": 0, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 574, @@ -10439,15 +10439,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 213, - "ledger_hash": "8470daf9abd91d46c507e7dcb843f7c3ba1bbe20f937e6174d49c846b48b0ea6", - "messages_hash": "74cc39312e17b975092c0e592ce26a01a2fa653e6088f2711a162ccc2ecefcbc", + "ledger_hash": "44e06aa6e94f95e94f8f64a7ed06026c4ac4506f6e173aa764ef69603a489788", + "messages_hash": "04d43191292bd5321be362fa7b69f395813c32d4a3016eb5daba7abb019b922b", "transaction_count": 1, - "txlist_hash": "53e73592f145cd87beca3fd17bd66bf3da4376999360456e9c7d1fa21a389a02", - "block_time": 1730977733 + "txlist_hash": "33d27b81a62ac74ea7607507a104f657ab51f3f922a86948e578df4da64c60d4", + "block_time": 1731005068 }, "tx_hash": null, "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 701, @@ -10460,12 +10460,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80 }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 700, @@ -10481,12 +10481,12 @@ "address": null, "asset": "XCP", "block_index": 213, - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 2000000000, "tx_index": 80, - "utxo": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", - "utxo_address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", - "block_time": 1730977733, + "utxo": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", + "utxo_address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10496,9 +10496,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 705, @@ -10510,16 +10510,16 @@ "event_index": 711, "event": "CREDIT", "params": { - "address": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "address": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "asset": "XCP", "block_index": 213, "calling_function": "dispense", - "event": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "event": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "quantity": 66, "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10529,9 +10529,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 709, @@ -10545,26 +10545,26 @@ "params": { "asset": "MPMASSET", "block_index": 207, - "destination": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "memo": null, "quantity": 1000, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "tx_index": 74, - "block_time": 1730977696, + "block_time": 1731005031, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "26ea6027450fd48169cefaaba803db73b8675b2ca2ef54adc63bf25e534bac7d", + "tx_hash": "22f7f138fad5e44c3ff0b34a5035be5718dfa772ccb3e9e2303a93ca8ffac054", "block_index": 207, - "block_time": 1730977696 + "block_time": 1731005031 } ], "next_cursor": 510, @@ -10578,15 +10578,15 @@ "params": { "asset": "XCP", "block_index": 211, - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "tx_index": 78, - "block_time": 1730977721, + "block_time": 1731005056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10596,9 +10596,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 692, @@ -10621,20 +10621,20 @@ "event": "SWEEP", "params": { "block_index": 196, - "destination": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "destination": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "status": "valid", - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "tx_index": 62, - "block_time": 1730977625, + "block_time": 1731004981, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "27ca07eb1a71103e5d6b84e143e374b5583c6f309dc931f8fb3fd74be4339848", + "tx_hash": "353a1bbc4ea5f51a7565b700040c4436beeef1aeaa305b7717241f7057d4a3a4", "block_index": 196, - "block_time": 1730977625 + "block_time": 1731004981 } ], "next_cursor": null, @@ -10651,15 +10651,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "tx_index": 42, - "block_time": 1730977457, + "block_time": 1731004816, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -10673,9 +10673,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "8b6c093ed5e54241f8bb6603bb1e3861235de3def177d311367c929696e69dbb", + "tx_hash": "4393e9ca4d78a2e36b729f25fba447ad3caeb439142af279cc43df1192ad3371", "block_index": 155, - "block_time": 1730977457 + "block_time": 1731004816 } ], "next_cursor": null, @@ -10696,11 +10696,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 206, - "block_time": 1730977691 + "block_time": 1731005027 }, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_time": 1730977691 + "block_time": 1731005027 } ], "next_cursor": 583, @@ -10723,22 +10723,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", "transfer": false, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "tx_index": 73, - "block_time": 1730977691, + "block_time": 1731005027, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "71498cfd590fd99e2eb926141bf23caf4d1b4747419da9ab2a45ffbdc7ac3817", + "tx_hash": "30bbfad8f42b15884aeb675dd1d88006d55f085c9f4710b2170a7b11871c9f04", "block_index": 206, - "block_time": 1730977691 + "block_time": 1731005027 } ], "next_cursor": 584, @@ -10753,12 +10753,12 @@ "asset": "XCP", "block_index": 197, "quantity": 1, - "source": "bcrt1q9ututvcqmyfpppmfv9sfrmpd04fujxnnfkt06x", + "source": "bcrt1qhywkaskd5qvu60pm27v9t2r0h6kugpr02mcq6d", "status": "valid", "tag": "64657374726f79", - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "tx_index": 63, - "block_time": 1730977629, + "block_time": 1731004985, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10768,9 +10768,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "cf117de8679dd04401e765320be131ccc21dc36669f4ed8dbe3a2d3129d7a3d5", + "tx_hash": "14ec3b25df744ab54f3e4e99930970fd248d0f6cdea6c614813068b2089c5429", "block_index": 197, - "block_time": 1730977629 + "block_time": 1731004985 } ], "next_cursor": 157, @@ -10795,15 +10795,15 @@ "give_asset": "UTXOASSET", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "status": "open", - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "tx_index": 79, - "block_time": 1730977725, + "block_time": 1731005059, "give_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, @@ -10823,9 +10823,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "59e9467ad97e4e1a0eb7a6972e6531b7cf065cba5e8a626452a060f6abf2a3f3", + "tx_hash": "f5e2ad58117e8a725c50f8f0c2cd014e392b18aa3ed1ea2164bf52c8fba6aee6", "block_index": 212, - "block_time": 1730977725 + "block_time": 1731005059 } ], "next_cursor": 541, @@ -10843,20 +10843,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "match_expire_index": 230, "status": "pending", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "tx0_block_index": 195, "tx0_expiration": 21, - "tx0_hash": "aebc5ef6f4d35b7405f3df2fb16e0e5c3aabe2c814cd8dabb07af4c47cdc1178", + "tx0_hash": "492f8466b69a40d4f93f8ca151b16a5e417d4ecd16b5009b08de67315944e273", "tx0_index": 61, - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", "tx1_block_index": 210, "tx1_expiration": 21, - "tx1_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "tx1_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "tx1_index": 55, - "block_time": 1730977716, + "block_time": 1731005052, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10875,9 +10875,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_time": 1730977716 + "block_time": 1731005052 } ], "next_cursor": 498, @@ -10890,11 +10890,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc" + "tx_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42" }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 670, @@ -10907,11 +10907,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae" + "tx_hash": "771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f" }, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "block_time": 1730977585 + "block_time": 1731004940 } ], "next_cursor": null, @@ -10923,13 +10923,13 @@ "event_index": 665, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", + "id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", "status": "expired" }, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_time": 1730977716 + "block_time": 1731005052 } ], "next_cursor": 488, @@ -10943,18 +10943,18 @@ "params": { "block_index": 188, "btc_amount": 2000, - "destination": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_0173b061fc8470b8d3f66ad93456e99191cd71a98c30f0dda06c4edc315a4aae", - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "destination": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_771a8013deb16e46c74a47566b982fe3e3bb923d5b6113fa67941c9e10e51d5f", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "tx_index": 54, - "block_time": 1730977585, + "block_time": 1731004940, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d6badf01faa23f78b835da155f9d9b633827f06a172d1d1007d7e398532fcde7", + "tx_hash": "d2ec3c9a933ff1f5aa9f1e97b1dd7a4d4f923f4e7ff01f6de132a93cb6ba2cb7", "block_index": 188, - "block_time": 1730977585 + "block_time": 1731004940 } ], "next_cursor": null, @@ -10967,16 +10967,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 194, - "offer_hash": "b9f9d592d6405704c585a83cf20b95035f6cbeced4dfdc288cdb6372b24c3983", - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "offer_hash": "e840f225d4efcd99fcc78aade26001bbd5ba2bf97ca01738e122b21aa32dc525", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": "valid", - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "tx_index": 60, - "block_time": 1730977618 + "block_time": 1731004973 }, - "tx_hash": "485eacbdef282474dabf88795d4e2604a14584745f93ddf6686536529923a084", + "tx_hash": "b07802af2f4c65f4d745dfa01ca227042cb65f61c8bfbaacfe3b804c0f0795a9", "block_index": 194, - "block_time": 1730977618 + "block_time": 1731004973 } ], "next_cursor": null, @@ -10989,13 +10989,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "source": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "block_time": 1730977721 + "order_hash": "73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "source": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "block_time": 1731005056 }, - "tx_hash": "1ff0d78d3fb34a74f016a43a6b65e4409b0960124ce3ecd9ca73e36acbf51e33", + "tx_hash": "ffab509bb270305bd5ed80acb03dc3d64bc08d0ff85e5c701c6672fc0c751f31", "block_index": 211, - "block_time": 1730977721 + "block_time": 1731005056 } ], "next_cursor": 640, @@ -11008,14 +11008,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 210, - "order_match_id": "bd545b00134ce357758d8b3bd054aa0ee92bdf81b0fd6033359edd8ceb7d06ba_863710bc426263866dcad8cd7a3d917e000b6ea08a096fe56d72d772e3c1badc", - "tx0_address": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "tx1_address": "bcrt1q9sfcktmh02kgaal3w2p5rym2ty20d8h90dnwmy", - "block_time": 1730977716 + "order_match_id": "7b1358c661d1a77f9579a7e8b697aa9195070bc354e705477e8ef67100407b23_73e4022cac63eeebac73e1d690f89d035506e4012cf75781eac9d5b72fc3fd42", + "tx0_address": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "tx1_address": "bcrt1qf7tcyfxhfqgjxn0lglswekm5v5vnvt7343fdjd", + "block_time": 1731005052 }, - "tx_hash": "4b73c099c8adbac04ade977610d90e9fd0e40502742caae6165373ab637a7b59", + "tx_hash": "52dd85dd01e061a6afab75040b85e19bc76da7cc96752023488d2abc68f0dfd0", "block_index": 210, - "block_time": 1730977716 + "block_time": 1731005052 } ], "next_cursor": 464, @@ -11034,17 +11034,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "origin": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "satoshirate": 1, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "status": 0, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "tx_index": 65, - "block_time": 1730977647, + "block_time": 1731004994, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11053,9 +11053,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "9919830d4ec532ad9e20f0bca82875e64d66da6650e84da4469c40e77f155760", + "tx_hash": "7367769ebb8fcbefed132d8c6c179489bc26d58238f3cf42611f145be9911358", "block_index": 199, - "block_time": 1730977647 + "block_time": 1731004994 } ], "next_cursor": 272, @@ -11070,9 +11070,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": 0, - "tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", + "tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11082,9 +11082,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 576, @@ -11098,13 +11098,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mhVXWaX2wYczo3Ls7zirWuK5qcVN16XZNo", + "destination": "mk9JptUdbhD7gMNvk7Fpr3eATPagvbznyS", "dispense_quantity": 10, - "dispenser_tx_hash": "25d0d2ee94719a7c9f3f8e7ab1111a231e0f78af17b015ea53827710a65dc666", - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", - "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", + "dispenser_tx_hash": "57dfa4e14d877cc85b465f5745f70d9e2dffc0c13f13aa357a09f6fc8c33d5c9", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", + "tx_hash": "c1c2be71dace1a67d5c30047f530b280828abed83487b40bd21e70383c867432", "tx_index": 31, - "block_time": 1730977417, + "block_time": 1731004765, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11114,9 +11114,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "d15637cc0874e726bcf64eac1ceba1950d123c2a811e997deda668c97c64a9e5", + "tx_hash": "c1c2be71dace1a67d5c30047f530b280828abed83487b40bd21e70383c867432", "block_index": 144, - "block_time": 1730977417 + "block_time": 1731004765 } ], "next_cursor": null, @@ -11131,14 +11131,14 @@ "asset": "XCP", "block_index": 213, "btc_amount": 1000, - "destination": "bcrt1qylded6yhj2v983htucf86aay3qjy2zztde094a", + "destination": "bcrt1qx3wt8nlljzau5p2gpm5gfn8uyrz8twcgu9hpce", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0ef27d59e440513562509b58bec290ba5dff1caf16c3215866c8c96f2eed54bb", - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "dispenser_tx_hash": "69980cc6a704baf828be42416b854fe7fd8c24dfc8ff630abd0195b362630afa", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11149,9 +11149,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 577, @@ -11166,19 +11166,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnce54t9fwazj0uqehgc5t8wuwzmmlfyuh6yfzl", + "source": "bcrt1qm3rt4gmgt6w8qu6gvgg8hs73efxzplwu3wupf4", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "tx_index": 25, "value": 66600.0, - "block_time": 1730977385, + "block_time": 1731004731, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "418eb66d306413844e14c3ac933c7da5430988488e6c34e57a30e8f2b4b957bd", + "tx_hash": "5ff95be43e4bf627257bf2f18705f1b13cecfe43c57e111f1f8545484d521355", "block_index": 138, - "block_time": 1730977385 + "block_time": 1731004731 } ], "next_cursor": 213, @@ -11209,12 +11209,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "source": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "start_block": 0, "status": "open", - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "tx_index": 43, - "block_time": 1730977462, + "block_time": 1731004820, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11222,9 +11222,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "15ca31d048c17364bf155585d871cde3a77d41d534ed8021372134b1aba7fe42", + "tx_hash": "585c7073a37076c3588c2321fdba4e4bb1cc827bf7f5d899e31dea072071f6c7", "block_index": 156, - "block_time": 1730977462 + "block_time": 1731004820 } ], "next_cursor": 196, @@ -11237,11 +11237,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ad03d5f185323075676f1d37ec4ca0645b63e761b5b87cdc841eabde30b03075" + "tx_hash": "9caf41370324742cc29436deda36c41ef43cc508ee6ebc958934b60073d4a4b2" }, "tx_hash": null, "block_index": 130, - "block_time": 1730977353 + "block_time": 1731004698 } ], "next_cursor": 110, @@ -11257,17 +11257,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "0aa21d71eda38f15546406885baad998ed0576e0d04fe2b2b2857eeb12d9eceb", + "fairminter_tx_hash": "0bb894d9868067b745b0128d0e99e5e7be240e4d5d58343c1989e1c3d5be0119", "paid_quantity": 34, - "source": "bcrt1q4mae8ef30cl8hsjlhk35m33dex66kuz8l6dlt3", + "source": "bcrt1qdarv2rr85aq6pf3zjsp0yyy4us9fmyr7x6st4l", "status": "valid", - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "tx_index": 23, - "block_time": 1730977378, + "block_time": 1731004723, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q496mx60vkfaaqnuja8e526ujwruncxmt8c3yz6", + "issuer": "bcrt1q924au06mk7av95nnlp08remq2nfxrcedkf9y4g", "divisible": true, "locked": false }, @@ -11275,9 +11275,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "9b6eda7356cc78cfeab9344048711050e34b7d3236879248bc9dbf25925d1bff", + "tx_hash": "22d61dc8d3fe532d4bff64aa277d60ee9ea6888a908fb65a971099f3d0b59bb2", "block_index": 136, - "block_time": 1730977378 + "block_time": 1731004723 } ], "next_cursor": 190, @@ -11291,28 +11291,28 @@ "params": { "asset": "UTXOASSET", "block_index": 205, - "destination": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e:0", + "destination": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "source": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "status": "valid", - "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "tx_hash": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", "tx_index": 72, - "block_time": 1730977688, + "block_time": 1731005023, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "551c6b92e58da1a3932e4567c8a5e9acdd038176303b2d82877566aa439feb6e", + "tx_hash": "0ef0d10032889ad534f5c3e3b2d368e4ab43eca4b391aa73a7e45d78389bf194", "block_index": 205, - "block_time": 1730977688 + "block_time": 1731005023 } ], "next_cursor": 593, @@ -11326,28 +11326,28 @@ "params": { "asset": "UTXOASSET", "block_index": 204, - "destination": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "destination": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "953a2098614ca254d4b7b537d48b1e72c8534cd8cd3ac8dc860b082d5664d15a:0", + "source": "b59e6b35f1a59ed5c8d2723fb4952bdc9bc437afc26576a670b4ebb5d011a5d9:0", "status": "valid", - "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "tx_hash": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", "tx_index": 71, - "block_time": 1730977685, + "block_time": 1731005019, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qph9u3z6neesfh4twagxs6zzvjdel6t0l9703h0", + "issuer": "bcrt1qnmgmakx7egxnkpkrxcmyhuea92xzph7mwkglcy", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fb723c07e7f0ff3d8cb3388c896a5e804b64580842c317c7e1772e96a2e97468", + "tx_hash": "5cb6e85691c25cb39caba7473fb46c9b8369a7fa57e93bf8aea84a8d6e1c28d0", "block_index": 204, - "block_time": 1730977685 + "block_time": 1731005019 } ], "next_cursor": 311, @@ -11361,14 +11361,14 @@ "params": { "asset": "XCP", "block_index": 213, - "destination": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc:0", + "destination": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf:0", "msg_index": 1, "quantity": 2000000000, - "source": "fbd069a384e3768dfc20d25c30badd646ad88f400f51e071cc8d321ba0ff99cf:1", + "source": "a8a077cd8797f24a99e560ac8ed1d0178f79ed684e706f198332a54c63f9e776:1", "status": "valid", - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "tx_index": 80, - "block_time": 1730977733, + "block_time": 1731005068, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11378,9 +11378,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "f59bfe52c55587ccceab32429413434c88a6a309a899ac0afa43c85aaef455bc", + "tx_hash": "c4368b0d0178b8b5ba50e16d9de337180e9c87efa24cbf54f93076a552f6fcbf", "block_index": 213, - "block_time": 1730977733 + "block_time": 1731005068 } ], "next_cursor": 707, @@ -11395,17 +11395,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzcdpuhme6ghd8kr3q8mcym46r0qsf5vsm3spa5", + "source": "bcrt1qxzcjteau2lnp7ksjsqakf8xzxz6x9hvzxjva8p", "status": "valid", - "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", + "tx_hash": "b860cd8e7531ff7771a9bf0984b7824c178d84d98b36a2740c8a646041a7cd2d", "tx_index": 9, - "block_time": 1730977320, + "block_time": 1731004662, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "2105329aa9aec7bbfb79413c008ca1edb4cf56512d56adbf33059fd30a26dfff", + "tx_hash": "b860cd8e7531ff7771a9bf0984b7824c178d84d98b36a2740c8a646041a7cd2d", "block_index": 121, - "block_time": 1730977320 + "block_time": 1731004662 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index c05d505772..3fbca7c52d 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -412,7 +412,6 @@ def stop_addrindexrs(self): pass def stop(self): - print(self.server_out.getvalue()) print("Stopping bitcoin node 1...") self.stop_bitcoin_node() print("Stopping bitcoin node 2...") diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index ec236776db..0ad5c8bf3d 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -24,7 +24,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring ## Bugfixes - +- Fix `disable_utxo_locks` parameter ## Codebase @@ -41,6 +41,8 @@ In addition to resolving the above frontrunning vulnerability, this update bring - Add sortable `price` field in dispensers - Fix `locked` in `asset_info` field - Add `/v2/bitcoin/transaction/decode` route to proxy bitcoin `decoderawtransaction` method +- `inputs_set` now supports UTXOs in the format `:::` +- Skip transaction sanity check when `validate=false` ## CLI From cd44e32b1d20afa1563cb62b9c8393d13a820199 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 19:40:20 +0000 Subject: [PATCH 091/138] tweaks --- .../counterpartycore/lib/blocks.py | 10 +++------- .../counterpartycore/lib/database.py | 18 ++++++++++++++++-- .../lib/messages/fairminter.py | 13 +++---------- release-notes/release-notes-v10.6.2.md | 2 +- 4 files changed, 23 insertions(+), 20 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index a107f4cfd6..6f45f4f0ca 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -820,17 +820,13 @@ def initialise(db): if "event" not in columns: cursor.execute("""ALTER TABLE mempool ADD COLUMN event TEXT""") + database.init_config_table(db) + create_views(db) # Lock UPDATE on all tables for table in TABLES: - cursor.execute( - f"""CREATE TRIGGER IF NOT EXISTS block_update_{table} - BEFORE UPDATE ON {table} BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; - """ - ) + database.lock_update(db, table) cursor.close() diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index e5661b1151..498995c78f 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -227,13 +227,11 @@ def init_config_table(db): def set_config_value(db, name, value): - init_config_table(db) cursor = db.cursor() cursor.execute("INSERT OR REPLACE INTO config (name, value) VALUES (?, ?)", (name, value)) def get_config_value(db, name): - init_config_table(db) cursor = db.cursor() cursor.execute("SELECT value FROM config WHERE name = ?", (name,)) rows = cursor.fetchall() @@ -324,3 +322,19 @@ def table_exists(cursor, table): f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table}'" # nosec B608 # noqa: S608 ).fetchone() return table_name is not None + + +def lock_update(db, table): + cursor = db.cursor() + cursor.execute( + f"""CREATE TRIGGER IF NOT EXISTS block_update_{table} + BEFORE UPDATE ON {table} BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; + """ + ) + + +def unlock_update(db, table): + cursor = db.cursor() + cursor.execute(f"DROP TRIGGER IF EXISTS block_update_{table}") diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index d5ff4117ac..6982bb0aff 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -61,8 +61,8 @@ def initialise(db): logger.debug("Fixing issuances `asset_longname` field") with db: # disable triggers - cursor.execute("DROP TRIGGER IF EXISTS block_update_issuances") - cursor.execute("DROP TRIGGER IF EXISTS block_update_fairminters") + for table in ["issuances", "fairminters"]: + database.unlock_update(db, table) # get assets with `asset_longname` field not set sql = """ SELECT @@ -85,14 +85,7 @@ def initialise(db): cursor.execute(sql, (asset["asset_longname"], asset_parent, asset["asset"])) # re-enable triggers for table in ["issuances", "fairminters"]: - cursor.execute( - f""" - CREATE TRIGGER IF NOT EXISTS block_update_{table} - BEFORE UPDATE ON {table} BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; - """ - ) + database.lock_update(db, table) database.set_config_value(db, "FIX_ISSUANCES_ASSET_LONGNAME_1", True) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index d66e59ea10..f0a6bfa7f5 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -31,7 +31,7 @@ When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminte ## Bugfixes - Rust fetcher "reporter" worker now takes `rollback_height` into account in its block height ordering check. -- Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified +- Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified and `asset_parent` is not specified. ## Codebase From 03c663074e543ef3b590b6edc23da20a04d57405 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 7 Nov 2024 19:56:03 +0000 Subject: [PATCH 092/138] fix tests --- .../counterpartycore/lib/blocks.py | 2 - .../counterpartycore/lib/database.py | 2 + .../fixtures/scenarios/multisig_1_of_2.sql | 216 +++++++++--------- .../fixtures/scenarios/multisig_1_of_3.sql | 216 +++++++++--------- .../fixtures/scenarios/multisig_2_of_2.sql | 216 +++++++++--------- .../fixtures/scenarios/multisig_2_of_3.sql | 216 +++++++++--------- .../fixtures/scenarios/multisig_3_of_3.sql | 216 +++++++++--------- .../scenarios/parseblock_unittest_fixture.sql | 216 +++++++++--------- .../test/fixtures/scenarios/simplesig.sql | 216 +++++++++--------- .../fixtures/scenarios/unittest_fixture.sql | 216 +++++++++--------- 10 files changed, 866 insertions(+), 866 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 6f45f4f0ca..414e9f31d4 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -820,8 +820,6 @@ def initialise(db): if "event" not in columns: cursor.execute("""ALTER TABLE mempool ADD COLUMN event TEXT""") - database.init_config_table(db) - create_views(db) # Lock UPDATE on all tables diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 498995c78f..c30c835ff5 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -227,11 +227,13 @@ def init_config_table(db): def set_config_value(db, name, value): + init_config_table(db) cursor = db.cursor() cursor.execute("INSERT OR REPLACE INTO config (name, value) VALUES (?, ?)", (name, value)) def get_config_value(db, name): + init_config_table(db) cursor = db.cursor() cursor.execute("SELECT value FROM config WHERE name = ?", (name,)) rows = cursor.fetchall() diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql index aed96881ce..c75aad3317 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql @@ -284,9 +284,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -362,9 +362,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -412,9 +412,9 @@ INSERT INTO credits VALUES(310023,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaS INSERT INTO credits VALUES(310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'cancel order','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -470,9 +470,9 @@ INSERT INTO debits VALUES(310021,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSf INSERT INTO debits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',24,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -861,9 +861,9 @@ INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"3694724 INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4","messages_hash":"a3d2dc1289f5cd52adfa75e7f081e22c9358e7509f9932e897ee6a062f3485fe","transaction_count":0,"txlist_hash":"e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5"}',0,'BLOCK_PARSED',NULL,'006703e18f4caa3b4a378acec2894bfbaa35a36bf371ccbe6ff5ff8279eacda8'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -895,9 +895,9 @@ CREATE TABLE order_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -939,9 +939,9 @@ INSERT INTO order_matches VALUES('332b030da57b9565324df01414778b1eafbee6c52343fe INSERT INTO order_matches VALUES('332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',3,'332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',4,'f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BTC',50000000,'XCP',100000000,310002,310003,310004,10,10,310023,857142,'completed'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -983,9 +983,9 @@ INSERT INTO order_expirations VALUES('f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0 INSERT INTO order_expirations VALUES('6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',310032); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -1029,9 +1029,9 @@ INSERT INTO orders VALUES(22,'6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abd INSERT INTO orders VALUES(22,'6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,50000000,'XCP',50000000,50000000,10,310031,0,0,6800,6800,'expired'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -1077,9 +1077,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1136,9 +1136,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1166,9 +1166,9 @@ INSERT INTO bet_match_resolutions VALUES('2066b9a6b8913412384a0401ef57bfc604e7c5 INSERT INTO bet_match_resolutions VALUES('94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',5,310020,'NotEqual',NULL,NULL,NULL,1330000000,70000000); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1193,9 +1193,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1254,9 +1254,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1286,9 +1286,9 @@ INSERT INTO broadcasts VALUES(20,'dccbd8852c8d489d32f87be0c86a631b63ec50202b0109 INSERT INTO broadcasts VALUES(21,'457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1388000201,2.0,5000000,'Unit Test',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -1321,9 +1321,9 @@ CREATE TABLE btcpays( INSERT INTO btcpays VALUES(5,'ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',310004,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,'332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','valid'); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -1354,9 +1354,9 @@ INSERT INTO burns VALUES(1,'9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb1 INSERT INTO burns VALUES(23,'c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',310022,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',38000000,56999887262,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -1382,9 +1382,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -1415,9 +1415,9 @@ INSERT INTO dividends VALUES(10,'7881c1fe7881a590d09302dde67cfd888a74154888e0c31 INSERT INTO dividends VALUES(11,'c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC','XCP',800,20000,'valid'); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960f INSERT INTO issuances VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1513,9 +1513,9 @@ INSERT INTO sends VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf05 INSERT INTO sends VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -1545,9 +1545,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -1573,9 +1573,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -1603,9 +1603,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -1644,9 +1644,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -1681,9 +1681,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -1721,9 +1721,9 @@ CREATE TABLE destructions( ); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -1756,9 +1756,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1779,9 +1779,9 @@ CREATE TABLE addresses( CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1806,9 +1806,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -1847,9 +1847,9 @@ CREATE TABLE dispensers( close_block_index INTEGER); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -1901,9 +1901,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -1943,9 +1943,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -2031,9 +2031,9 @@ CREATE TABLE fairmints ( ); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -2063,9 +2063,9 @@ CREATE TABLE transaction_count( count INTEGER); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql index 5250a15d97..5f1a838bd6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql @@ -284,9 +284,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -362,9 +362,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -412,9 +412,9 @@ INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmdd INSERT INTO credits VALUES(310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -470,9 +470,9 @@ INSERT INTO debits VALUES(310021,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddV INSERT INTO debits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',24,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -861,9 +861,9 @@ INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"3694724 INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667","messages_hash":"8d97e6692ae1488109eb75f96eaec5cc775f8aa9fcc1ef1bbd0a95a46e2264f7","transaction_count":0,"txlist_hash":"b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1"}',0,'BLOCK_PARSED',NULL,'aae5387ca31765ab627da5ecf381aadba61fb8d50dbc01193209b4b2663a6c44'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -895,9 +895,9 @@ CREATE TABLE order_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -939,9 +939,9 @@ INSERT INTO order_matches VALUES('04d5809f0085bf2655c500a8c65d6d8b42dd373160fb43 INSERT INTO order_matches VALUES('04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',3,'04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',4,'98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BTC',50000000,'XCP',100000000,310002,310003,310004,10,10,310023,857142,'completed'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -983,9 +983,9 @@ INSERT INTO order_expirations VALUES('98ef3d31d1777ad18801e94eef03d4314911ac03d7 INSERT INTO order_expirations VALUES('cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',310032); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -1029,9 +1029,9 @@ INSERT INTO orders VALUES(22,'cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e INSERT INTO orders VALUES(22,'cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,50000000,'XCP',50000000,50000000,10,310031,0,0,6800,6800,'expired'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -1077,9 +1077,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1136,9 +1136,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1166,9 +1166,9 @@ INSERT INTO bet_match_resolutions VALUES('040e03dfdef2df24411a077cfe5f90f3311bbb INSERT INTO bet_match_resolutions VALUES('578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',5,310020,'NotEqual',NULL,NULL,NULL,1330000000,70000000); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1193,9 +1193,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1254,9 +1254,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1286,9 +1286,9 @@ INSERT INTO broadcasts VALUES(20,'65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a INSERT INTO broadcasts VALUES(21,'43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1388000201,2.0,5000000,'Unit Test',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -1321,9 +1321,9 @@ CREATE TABLE btcpays( INSERT INTO btcpays VALUES(5,'90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',310004,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,'04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','valid'); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -1354,9 +1354,9 @@ INSERT INTO burns VALUES(1,'63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d INSERT INTO burns VALUES(23,'ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',310022,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',38000000,56999887262,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -1382,9 +1382,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -1415,9 +1415,9 @@ INSERT INTO dividends VALUES(10,'f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec3424 INSERT INTO dividends VALUES(11,'15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC','XCP',800,20000,'valid'); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f INSERT INTO issuances VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1513,9 +1513,9 @@ INSERT INTO sends VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab743789 INSERT INTO sends VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -1545,9 +1545,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -1573,9 +1573,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -1603,9 +1603,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -1644,9 +1644,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -1681,9 +1681,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -1721,9 +1721,9 @@ CREATE TABLE destructions( ); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -1756,9 +1756,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1779,9 +1779,9 @@ CREATE TABLE addresses( CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1806,9 +1806,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -1847,9 +1847,9 @@ CREATE TABLE dispensers( close_block_index INTEGER); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -1901,9 +1901,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -1943,9 +1943,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -2031,9 +2031,9 @@ CREATE TABLE fairmints ( ); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -2063,9 +2063,9 @@ CREATE TABLE transaction_count( count INTEGER); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql index 49e43585e6..de46c8a4a6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql @@ -284,9 +284,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -362,9 +362,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -412,9 +412,9 @@ INSERT INTO credits VALUES(310023,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaS INSERT INTO credits VALUES(310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'cancel order','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -470,9 +470,9 @@ INSERT INTO debits VALUES(310021,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSf INSERT INTO debits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',24,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -861,9 +861,9 @@ INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"3694724 INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f","messages_hash":"d37c9a6017c79571efd424729624af5c2bca215c2215fdbcf718de863ea10f89","transaction_count":0,"txlist_hash":"7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e"}',0,'BLOCK_PARSED',NULL,'2ca6799089f26a4eb4f56bc2d9610252cce500a02a15c837b1c7ec280d1a9abc'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -895,9 +895,9 @@ CREATE TABLE order_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -939,9 +939,9 @@ INSERT INTO order_matches VALUES('025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef INSERT INTO order_matches VALUES('025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',3,'025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',4,'c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BTC',50000000,'XCP',100000000,310002,310003,310004,10,10,310023,857142,'completed'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -983,9 +983,9 @@ INSERT INTO order_expirations VALUES('c6881f7505bd7fe0742c2ce50490e21431705bf2df INSERT INTO order_expirations VALUES('6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',310032); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -1029,9 +1029,9 @@ INSERT INTO orders VALUES(22,'6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553 INSERT INTO orders VALUES(22,'6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,50000000,'XCP',50000000,50000000,10,310031,0,0,6800,6800,'expired'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -1077,9 +1077,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1136,9 +1136,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1166,9 +1166,9 @@ INSERT INTO bet_match_resolutions VALUES('a5a1927a83521144a5aa751f61065b530c9447 INSERT INTO bet_match_resolutions VALUES('91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',5,310020,'NotEqual',NULL,NULL,NULL,1330000000,70000000); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1193,9 +1193,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1254,9 +1254,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1286,9 +1286,9 @@ INSERT INTO broadcasts VALUES(20,'c9388ea12ab42ec1502dbb54e2da81beca5adee6056777 INSERT INTO broadcasts VALUES(21,'54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1388000201,2.0,5000000,'Unit Test',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -1321,9 +1321,9 @@ CREATE TABLE btcpays( INSERT INTO btcpays VALUES(5,'b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',310004,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,'025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','valid'); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -1354,9 +1354,9 @@ INSERT INTO burns VALUES(1,'5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2 INSERT INTO burns VALUES(23,'df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',310022,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',38000000,56999887262,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -1382,9 +1382,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -1415,9 +1415,9 @@ INSERT INTO dividends VALUES(10,'cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f INSERT INTO dividends VALUES(11,'c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC','XCP',800,20000,'valid'); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd INSERT INTO issuances VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1513,9 +1513,9 @@ INSERT INTO sends VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb0 INSERT INTO sends VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -1545,9 +1545,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -1573,9 +1573,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -1603,9 +1603,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -1644,9 +1644,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -1681,9 +1681,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -1721,9 +1721,9 @@ CREATE TABLE destructions( ); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -1756,9 +1756,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1779,9 +1779,9 @@ CREATE TABLE addresses( CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1806,9 +1806,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -1847,9 +1847,9 @@ CREATE TABLE dispensers( close_block_index INTEGER); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -1901,9 +1901,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -1943,9 +1943,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -2031,9 +2031,9 @@ CREATE TABLE fairmints ( ); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -2063,9 +2063,9 @@ CREATE TABLE transaction_count( count INTEGER); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql index 6c7e18ef2b..ddb6a8fede 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql @@ -284,9 +284,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -362,9 +362,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -412,9 +412,9 @@ INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmdd INSERT INTO credits VALUES(310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -470,9 +470,9 @@ INSERT INTO debits VALUES(310021,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddV INSERT INTO debits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',24,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -861,9 +861,9 @@ INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"3694724 INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030","messages_hash":"53165a6a7eb5bef338ac5509678ec395a1821a1db21de30d49ddaffa33c58abb","transaction_count":0,"txlist_hash":"6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce"}',0,'BLOCK_PARSED',NULL,'d8885d24b56356c412def933f079b1ed9561a8dddf509738c7127269400b7602'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -895,9 +895,9 @@ CREATE TABLE order_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -939,9 +939,9 @@ INSERT INTO order_matches VALUES('c953eb18873ce8aed42456df0ece8e4678e13282d99179 INSERT INTO order_matches VALUES('c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',3,'c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',4,'89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BTC',50000000,'XCP',100000000,310002,310003,310004,10,10,310023,857142,'completed'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -983,9 +983,9 @@ INSERT INTO order_expirations VALUES('89a44a3314b298a83d5d14c8646900a5122b8a1e8f INSERT INTO order_expirations VALUES('4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',310032); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -1029,9 +1029,9 @@ INSERT INTO orders VALUES(22,'4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3 INSERT INTO orders VALUES(22,'4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,50000000,'XCP',50000000,50000000,10,310031,0,0,6800,6800,'expired'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -1077,9 +1077,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1136,9 +1136,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1166,9 +1166,9 @@ INSERT INTO bet_match_resolutions VALUES('6722884208180367a60c5c96ae86865dad3c63 INSERT INTO bet_match_resolutions VALUES('caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',5,310020,'NotEqual',NULL,NULL,NULL,1330000000,70000000); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1193,9 +1193,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1254,9 +1254,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1286,9 +1286,9 @@ INSERT INTO broadcasts VALUES(20,'1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd INSERT INTO broadcasts VALUES(21,'dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1388000201,2.0,5000000,'Unit Test',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -1321,9 +1321,9 @@ CREATE TABLE btcpays( INSERT INTO btcpays VALUES(5,'f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',310004,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,'c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','valid'); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -1354,9 +1354,9 @@ INSERT INTO burns VALUES(1,'15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf INSERT INTO burns VALUES(23,'181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',310022,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',38000000,56999887262,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -1382,9 +1382,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -1415,9 +1415,9 @@ INSERT INTO dividends VALUES(10,'f2f6db13d6bda4def4f1bd759b603c64c962f8201732905 INSERT INTO dividends VALUES(11,'a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC','XCP',800,20000,'valid'); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa95 INSERT INTO issuances VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1513,9 +1513,9 @@ INSERT INTO sends VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b INSERT INTO sends VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -1545,9 +1545,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -1573,9 +1573,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -1603,9 +1603,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -1644,9 +1644,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -1681,9 +1681,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -1721,9 +1721,9 @@ CREATE TABLE destructions( ); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -1756,9 +1756,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1779,9 +1779,9 @@ CREATE TABLE addresses( CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1806,9 +1806,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -1847,9 +1847,9 @@ CREATE TABLE dispensers( close_block_index INTEGER); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -1901,9 +1901,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -1943,9 +1943,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -2031,9 +2031,9 @@ CREATE TABLE fairmints ( ); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -2063,9 +2063,9 @@ CREATE TABLE transaction_count( count INTEGER); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql index 4ddc1eba33..509c224e73 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql @@ -284,9 +284,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -362,9 +362,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -412,9 +412,9 @@ INSERT INTO credits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmdd INSERT INTO credits VALUES(310032,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -470,9 +470,9 @@ INSERT INTO debits VALUES(310021,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddV INSERT INTO debits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',24,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -861,9 +861,9 @@ INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"3694724 INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4","messages_hash":"1b2b42ed277c3eccf500db635ee0cedbe6ecd9226db87a8e1ec54b94865652c3","transaction_count":0,"txlist_hash":"e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30"}',0,'BLOCK_PARSED',NULL,'7d6b8d048b6776fa3f4da195a88c2147e83b6e8170cd7f91f3ed6b16896963ce'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -895,9 +895,9 @@ CREATE TABLE order_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -939,9 +939,9 @@ INSERT INTO order_matches VALUES('1385519ca199f1b39bb89caac062fe3a342f18e393d301 INSERT INTO order_matches VALUES('1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',3,'1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',4,'a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BTC',50000000,'XCP',100000000,310002,310003,310004,10,10,310023,857142,'completed'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -983,9 +983,9 @@ INSERT INTO order_expirations VALUES('a2e93083b871e68cb89e216f9a99c4c6aea1eb92cb INSERT INTO order_expirations VALUES('19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',310032); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -1029,9 +1029,9 @@ INSERT INTO orders VALUES(22,'19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec8 INSERT INTO orders VALUES(22,'19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',310032,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,50000000,'XCP',50000000,50000000,10,310031,0,0,6800,6800,'expired'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -1077,9 +1077,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1136,9 +1136,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1166,9 +1166,9 @@ INSERT INTO bet_match_resolutions VALUES('33fdca6b108f99ffb56d590f55f9d19c7d16fe INSERT INTO bet_match_resolutions VALUES('5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',5,310020,'NotEqual',NULL,NULL,NULL,1330000000,70000000); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1193,9 +1193,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1254,9 +1254,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1286,9 +1286,9 @@ INSERT INTO broadcasts VALUES(20,'0baab7280b14d7d8597dc5f570682654fac0453b0b4c37 INSERT INTO broadcasts VALUES(21,'2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',310020,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1388000201,2.0,5000000,'Unit Test',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -1321,9 +1321,9 @@ CREATE TABLE btcpays( INSERT INTO btcpays VALUES(5,'06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',310004,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,'1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','valid'); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -1354,9 +1354,9 @@ INSERT INTO burns VALUES(1,'c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7 INSERT INTO burns VALUES(23,'3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',310022,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',38000000,56999887262,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -1382,9 +1382,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -1415,9 +1415,9 @@ INSERT INTO dividends VALUES(10,'6aa6c552e5a302b056768aed88aa8da6e9f78def669d520 INSERT INTO dividends VALUES(11,'8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC','XCP',800,20000,'valid'); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931 INSERT INTO issuances VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',0,310006,'BBBC',100000,0,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1513,9 +1513,9 @@ INSERT INTO sends VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de INSERT INTO sends VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -1545,9 +1545,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -1573,9 +1573,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -1603,9 +1603,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -1644,9 +1644,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -1681,9 +1681,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -1721,9 +1721,9 @@ CREATE TABLE destructions( ); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -1756,9 +1756,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1779,9 +1779,9 @@ CREATE TABLE addresses( CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1806,9 +1806,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -1847,9 +1847,9 @@ CREATE TABLE dispensers( close_block_index INTEGER); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -1901,9 +1901,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -1943,9 +1943,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -2031,9 +2031,9 @@ CREATE TABLE fairmints ( ); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -2063,9 +2063,9 @@ CREATE TABLE transaction_count( count INTEGER); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 4067a09c13..5042d41fdb 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -984,9 +984,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1119,9 +1119,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1196,9 +1196,9 @@ INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A1603612 INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -1284,9 +1284,9 @@ INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A16036128 INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -3066,9 +3066,9 @@ INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703, INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00a6caa3aa991496c607f0babe7d83a0c070aac2df5f1a2dc6cae699ab24029d'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -3101,9 +3101,9 @@ CREATE TABLE order_match_expirations( INSERT INTO order_match_expirations VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',310513); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -3145,9 +3145,9 @@ INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'BTC',800000,310491,310492,310513,2000,2000,310512,7200,'expired'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -3186,9 +3186,9 @@ CREATE TABLE order_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -3234,9 +3234,9 @@ INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef318 INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310513,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,800000,'XCP',100000000,100000000,2000,312492,0,0,1000000,992800,'open'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -3282,9 +3282,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3337,9 +3337,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3365,9 +3365,9 @@ CREATE TABLE bet_match_resolutions( INSERT INTO bet_match_resolutions VALUES('2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',1,310102,NULL,1,9,9,NULL,0); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3392,9 +3392,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3448,9 +3448,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3484,9 +3484,9 @@ INSERT INTO broadcasts VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6 INSERT INTO broadcasts VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',1388000004,1.0,0,'options 1',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -3518,9 +3518,9 @@ CREATE TABLE btcpays( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -3557,9 +3557,9 @@ INSERT INTO burns VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f38 INSERT INTO burns VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH',62000000,92995878046,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -3585,9 +3585,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -3616,9 +3616,9 @@ CREATE TABLE dividends( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -3685,9 +3685,9 @@ INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8 INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -3743,9 +3743,9 @@ INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074 INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,10); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -3775,9 +3775,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -3803,9 +3803,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -3833,9 +3833,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -3874,9 +3874,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -3911,9 +3911,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -3953,9 +3953,9 @@ INSERT INTO destructions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f92806 INSERT INTO destructions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -4002,9 +4002,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -4027,9 +4027,9 @@ INSERT INTO addresses VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',1,310490); CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -4054,9 +4054,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -4097,9 +4097,9 @@ INSERT INTO dispensers VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb914 INSERT INTO dispensers VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,100,100,0,100,NULL,NULL,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,NULL,NULL); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -4151,9 +4151,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -4193,9 +4193,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -4244,9 +4244,9 @@ INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f4 INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -4289,9 +4289,9 @@ INSERT INTO fairmints VALUES('6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf8 INSERT INTO fairmints VALUES('ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','A160361285792733729',14,200,6,'valid'); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -4323,9 +4323,9 @@ INSERT INTO transaction_count VALUES(310507,101,1); INSERT INTO transaction_count VALUES(310508,101,2); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql index 87debfac1e..bdad051c26 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql @@ -284,9 +284,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -362,9 +362,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -412,9 +412,9 @@ INSERT INTO credits VALUES(310023,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10 INSERT INTO credits VALUES(310032,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',50000000,'cancel order','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -470,9 +470,9 @@ INSERT INTO debits VALUES(310021,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',500 INSERT INTO debits VALUES(310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',10000,'send','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',24,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -861,9 +861,9 @@ INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"3694724 INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d","messages_hash":"a2c1bad71d57d8cbf740a32e9d614704befad2c39be157e202d6d6c852eee51a","transaction_count":0,"txlist_hash":"4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c"}',0,'BLOCK_PARSED',NULL,'70f954d2262baeac91870775d2e8df45c10f930e6442692e86d935fb63cb47db'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -895,9 +895,9 @@ CREATE TABLE order_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -939,9 +939,9 @@ INSERT INTO order_matches VALUES('6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c INSERT INTO order_matches VALUES('6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',3,'6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',4,'36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BTC',50000000,'XCP',100000000,310002,310003,310004,10,10,310023,857142,'completed'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -983,9 +983,9 @@ INSERT INTO order_expirations VALUES('36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a9 INSERT INTO order_expirations VALUES('eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',310032); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -1029,9 +1029,9 @@ INSERT INTO orders VALUES(22,'eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef21114 INSERT INTO orders VALUES(22,'eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',310032,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',50000000,50000000,'XCP',50000000,50000000,10,310031,0,0,6800,6800,'expired'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -1077,9 +1077,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1136,9 +1136,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1166,9 +1166,9 @@ INSERT INTO bet_match_resolutions VALUES('3d3ae119aa3891770b7ae1e1ce34062b7a8505 INSERT INTO bet_match_resolutions VALUES('194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',5,310020,'NotEqual',NULL,NULL,NULL,1330000000,70000000); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1193,9 +1193,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1254,9 +1254,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1286,9 +1286,9 @@ INSERT INTO broadcasts VALUES(20,'7cc015005c559686a8e10294015ca1773c0bcd9f4d7d97 INSERT INTO broadcasts VALUES(21,'0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',1388000201,2.0,5000000,'Unit Test',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -1321,9 +1321,9 @@ CREATE TABLE btcpays( INSERT INTO btcpays VALUES(5,'843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',50000000,'6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','valid'); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -1354,9 +1354,9 @@ INSERT INTO burns VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b INSERT INTO burns VALUES(23,'c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',310022,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',38000000,56999887262,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -1382,9 +1382,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -1415,9 +1415,9 @@ INSERT INTO dividends VALUES(10,'42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf9 INSERT INTO dividends VALUES(11,'201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC','XCP',800,20000,'valid'); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -1464,9 +1464,9 @@ INSERT INTO issuances VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6 INSERT INTO issuances VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',0,310006,'BBBC',100000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -1513,9 +1513,9 @@ INSERT INTO sends VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef158 INSERT INTO sends VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10000,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -1545,9 +1545,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -1573,9 +1573,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -1603,9 +1603,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -1644,9 +1644,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -1681,9 +1681,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -1721,9 +1721,9 @@ CREATE TABLE destructions( ); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -1756,9 +1756,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1779,9 +1779,9 @@ CREATE TABLE addresses( CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1806,9 +1806,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -1847,9 +1847,9 @@ CREATE TABLE dispensers( close_block_index INTEGER); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -1901,9 +1901,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -1943,9 +1943,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -1989,9 +1989,9 @@ CREATE TABLE fairminters ( ); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -2031,9 +2031,9 @@ CREATE TABLE fairmints ( ); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -2063,9 +2063,9 @@ CREATE TABLE transaction_count( count INTEGER); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index 0d714c2a3d..e59a39c91b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -983,9 +983,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1118,9 +1118,9 @@ CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances - BEFORE UPDATE ON balances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON balances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -1195,9 +1195,9 @@ INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A1603612 INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits - BEFORE UPDATE ON credits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON credits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX credits_address_idx ON credits (address) ; CREATE INDEX credits_asset_idx ON credits (asset) @@ -1283,9 +1283,9 @@ INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A16036128 INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits - BEFORE UPDATE ON debits BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON debits BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX debits_action_idx ON debits (action) ; CREATE INDEX debits_address_idx ON debits (address) @@ -3064,9 +3064,9 @@ INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21a INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages - BEFORE UPDATE ON messages BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON messages BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX messages_block_index_event_idx ON messages (block_index, event) ; CREATE INDEX messages_block_index_idx ON messages (block_index) @@ -3099,9 +3099,9 @@ CREATE TABLE order_match_expirations( INSERT INTO order_match_expirations VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',310513); -- Triggers and indices on order_match_expirations CREATE TRIGGER block_update_order_match_expirations - BEFORE UPDATE ON order_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_match_expirations_block_index_idx ON order_match_expirations (block_index) ; CREATE INDEX order_match_expirations_tx0_address_idx ON order_match_expirations (tx0_address) @@ -3143,9 +3143,9 @@ INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'BTC',800000,310491,310492,310513,2000,2000,310512,7200,'expired'); -- Triggers and indices on order_matches CREATE TRIGGER block_update_order_matches - BEFORE UPDATE ON order_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_matches_backward_asset_idx ON order_matches (backward_asset) ; CREATE INDEX order_matches_block_index_idx ON order_matches (block_index) @@ -3184,9 +3184,9 @@ CREATE TABLE order_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on order_expirations CREATE TRIGGER block_update_order_expirations - BEFORE UPDATE ON order_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON order_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX order_expirations_block_index_idx ON order_expirations (block_index) ; CREATE INDEX order_expirations_source_idx ON order_expirations (source) @@ -3232,9 +3232,9 @@ INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef318 INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310513,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,800000,'XCP',100000000,100000000,2000,312492,0,0,1000000,992800,'open'); -- Triggers and indices on orders CREATE TRIGGER block_update_orders - BEFORE UPDATE ON orders BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON orders BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX orders_block_index_idx ON orders (block_index) ; CREATE INDEX orders_expire_index_idx ON orders (expire_index) @@ -3280,9 +3280,9 @@ CREATE INDEX bet_match_expirations_tx0_address_idx ON bet_match_expirations (tx0 CREATE INDEX bet_match_expirations_tx1_address_idx ON bet_match_expirations (tx1_address) ; CREATE TRIGGER block_update_bet_match_expirations - BEFORE UPDATE ON bet_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3335,9 +3335,9 @@ CREATE INDEX bet_matches_tx0_address_idx ON bet_matches (tx0_address) CREATE INDEX bet_matches_tx1_address_idx ON bet_matches (tx1_address) ; CREATE TRIGGER block_update_bet_matches - BEFORE UPDATE ON bet_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3363,9 +3363,9 @@ CREATE TABLE bet_match_resolutions( INSERT INTO bet_match_resolutions VALUES('2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',1,310102,NULL,1,9,9,NULL,0); -- Triggers and indices on bet_match_resolutions CREATE TRIGGER block_update_bet_match_resolutions - BEFORE UPDATE ON bet_match_resolutions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_match_resolutions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3390,9 +3390,9 @@ CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index) CREATE INDEX bet_expirations_source_idx ON bet_expirations (source) ; CREATE TRIGGER block_update_bet_expirations - BEFORE UPDATE ON bet_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bet_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3446,9 +3446,9 @@ CREATE INDEX bets_tx_hash_idx ON bets (tx_hash) CREATE INDEX bets_tx_index_tx_hash_idx ON bets (tx_index, tx_hash) ; CREATE TRIGGER block_update_bets - BEFORE UPDATE ON bets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON bets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -3482,9 +3482,9 @@ INSERT INTO broadcasts VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6 INSERT INTO broadcasts VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',1388000004,1.0,0,'options 1',0,'valid'); -- Triggers and indices on broadcasts CREATE TRIGGER block_update_broadcasts - BEFORE UPDATE ON broadcasts BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON broadcasts BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX broadcasts_block_index_idx ON broadcasts (block_index) ; CREATE INDEX broadcasts_status_source_idx ON broadcasts (status, source) @@ -3516,9 +3516,9 @@ CREATE TABLE btcpays( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on btcpays CREATE TRIGGER block_update_btcpays - BEFORE UPDATE ON btcpays BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON btcpays BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX btcpays_block_index_idx ON btcpays (block_index) ; CREATE INDEX btcpays_destination_idx ON btcpays (destination) @@ -3555,9 +3555,9 @@ INSERT INTO burns VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f38 INSERT INTO burns VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH',62000000,92995878046,'valid'); -- Triggers and indices on burns CREATE TRIGGER block_update_burns - BEFORE UPDATE ON burns BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON burns BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX burns_source_idx ON burns (source) ; CREATE INDEX burns_status_idx ON burns (status) @@ -3583,9 +3583,9 @@ CREATE TABLE cancels( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on cancels CREATE TRIGGER block_update_cancels - BEFORE UPDATE ON cancels BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON cancels BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX cancels_block_index_idx ON cancels (block_index) ; CREATE INDEX cancels_source_idx ON cancels (source) @@ -3614,9 +3614,9 @@ CREATE TABLE dividends( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dividends CREATE TRIGGER block_update_dividends - BEFORE UPDATE ON dividends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dividends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dividends_asset_idx ON dividends (asset) ; CREATE INDEX dividends_block_index_idx ON dividends (block_index) @@ -3683,9 +3683,9 @@ INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8 INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances - BEFORE UPDATE ON issuances BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON issuances BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX issuances_asset_longname_idx ON issuances (asset_longname) ; CREATE INDEX issuances_asset_status_idx ON issuances (asset, status) @@ -3741,9 +3741,9 @@ INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074 INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,10); -- Triggers and indices on sends CREATE TRIGGER block_update_sends - BEFORE UPDATE ON sends BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sends BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sends_asset_idx ON sends (asset) ; CREATE INDEX sends_block_index_idx ON sends (block_index) @@ -3773,9 +3773,9 @@ CREATE TABLE rps_match_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_match_expirations CREATE TRIGGER block_update_rps_match_expirations - BEFORE UPDATE ON rps_match_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_match_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_match_expirations_block_index_idx ON rps_match_expirations (block_index) ; CREATE INDEX rps_match_expirations_tx0_address_idx ON rps_match_expirations (tx0_address) @@ -3801,9 +3801,9 @@ CREATE TABLE rps_expirations( FOREIGN KEY (block_index) REFERENCES blocks(block_index)); -- Triggers and indices on rps_expirations CREATE TRIGGER block_update_rps_expirations - BEFORE UPDATE ON rps_expirations BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_expirations BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expirations_block_index_idx ON rps_expirations (block_index) ; CREATE INDEX rps_expirations_source_idx ON rps_expirations (source) @@ -3831,9 +3831,9 @@ CREATE TABLE rpsresolves( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on rpsresolves CREATE TRIGGER block_update_rpsresolves - BEFORE UPDATE ON rpsresolves BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rpsresolves BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rpsresolves_block_index_idx ON rpsresolves (block_index) ; CREATE INDEX rpsresolves_rps_match_id_idx ON rpsresolves (rps_match_id) @@ -3872,9 +3872,9 @@ CREATE TABLE rps_matches( status TEXT); -- Triggers and indices on rps_matches CREATE TRIGGER block_update_rps_matches - BEFORE UPDATE ON rps_matches BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps_matches BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_matches_id_idx ON rps_matches (id) ; CREATE INDEX rps_matches_match_expire_index_idx ON rps_matches (match_expire_index) @@ -3909,9 +3909,9 @@ CREATE TABLE rps( status TEXT); -- Triggers and indices on rps CREATE TRIGGER block_update_rps - BEFORE UPDATE ON rps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON rps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX rps_expire_index_idx ON rps (expire_index) ; CREATE INDEX rps_source_idx ON rps (source) @@ -3951,9 +3951,9 @@ INSERT INTO destructions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f92806 INSERT INTO destructions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions - BEFORE UPDATE ON destructions BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON destructions BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX destructions_source_idx ON destructions (source) ; CREATE INDEX destructions_status_idx ON destructions (status) @@ -4000,9 +4000,9 @@ CREATE UNIQUE INDEX assets_asset_longname_idx ON assets (asset_longname) CREATE INDEX assets_asset_name_idx ON assets (asset_name) ; CREATE TRIGGER block_update_assets - BEFORE UPDATE ON assets BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON assets BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -4025,9 +4025,9 @@ INSERT INTO addresses VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',1,310490); CREATE INDEX addresses_address_idx ON addresses (address) ; CREATE TRIGGER block_update_addresses - BEFORE UPDATE ON addresses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON addresses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; COMMIT TRANSACTION; PRAGMA page_size=4096; @@ -4052,9 +4052,9 @@ CREATE TABLE sweeps( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on sweeps CREATE TRIGGER block_update_sweeps - BEFORE UPDATE ON sweeps BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON sweeps BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX sweeps_block_index_idx ON sweeps (block_index) ; CREATE INDEX sweeps_destination_idx ON sweeps (destination) @@ -4095,9 +4095,9 @@ INSERT INTO dispensers VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb914 INSERT INTO dispensers VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,100,100,0,100,NULL,NULL,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,NULL,NULL); -- Triggers and indices on dispensers CREATE TRIGGER block_update_dispensers - BEFORE UPDATE ON dispensers BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispensers BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispensers_asset_idx ON dispensers (asset) ; CREATE INDEX dispensers_block_index_idx ON dispensers (block_index) @@ -4149,9 +4149,9 @@ CREATE TABLE dispenses ( FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenses CREATE TRIGGER block_update_dispenses - BEFORE UPDATE ON dispenses BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenses BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenses_asset_idx ON dispenses (asset) ; CREATE INDEX dispenses_block_index_idx ON dispenses (block_index) @@ -4191,9 +4191,9 @@ CREATE TABLE dispenser_refills( REFERENCES transactions(tx_index, tx_hash, block_index)); -- Triggers and indices on dispenser_refills CREATE TRIGGER block_update_dispenser_refills - BEFORE UPDATE ON dispenser_refills BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON dispenser_refills BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX dispenser_refills_block_index_idx ON dispenser_refills (block_index) ; CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash) @@ -4242,9 +4242,9 @@ INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f4 INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters - BEFORE UPDATE ON fairminters BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairminters BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairminters_asset_idx ON fairminters (asset) ; CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname) @@ -4287,9 +4287,9 @@ INSERT INTO fairmints VALUES('6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf8 INSERT INTO fairmints VALUES('ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','A160361285792733729',14,200,6,'valid'); -- Triggers and indices on fairmints CREATE TRIGGER block_update_fairmints - BEFORE UPDATE ON fairmints BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON fairmints BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX fairmints_asset_idx ON fairmints (asset) ; CREATE INDEX fairmints_block_index_idx ON fairmints (block_index) @@ -4321,9 +4321,9 @@ INSERT INTO transaction_count VALUES(310507,101,1); INSERT INTO transaction_count VALUES(310508,101,2); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count - BEFORE UPDATE ON transaction_count BEGIN - SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); - END; + BEFORE UPDATE ON transaction_count BEGIN + SELECT RAISE(FAIL, "UPDATES NOT ALLOWED"); + END; CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id) ; From a394ac8a16831aba7b7a326cf91cb744ab699707 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 8 Nov 2024 11:15:42 +0000 Subject: [PATCH 093/138] fix asset cache initialization --- counterparty-core/counterpartycore/lib/ledger.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index fe995646fc..f76f5361c2 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -43,10 +43,13 @@ def insert_record(db, table_name, record, event, event_info={}): # noqa: B006 f"SELECT * FROM {table_name} WHERE rowid = ?", # noqa: S608 (inserted_rowid,), ).fetchone() - if table_name == "issuances": - AssetCache(db).add_issuance(new_record) - elif table_name == "destructions": - AssetCache(db).add_destroyed(new_record) + if AssetCache in AssetCache._instances: + if table_name == "issuances": + AssetCache(db).add_issuance(new_record) + elif table_name == "destructions": + AssetCache(db).add_destroyed(new_record) + else: + AssetCache(db) # initialization will add just created record to cache add_to_journal(db, util.CURRENT_BLOCK_INDEX, "insert", table_name, event, record | event_info) From 189bf8f54f5944024a19a84fabea22b3c4baf80b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 8 Nov 2024 11:16:28 +0000 Subject: [PATCH 094/138] More regtest tests for fairminter --- .../scenarios/scenario_21_fairminter.py | 229 ++++++++++++++++++ 1 file changed, 229 insertions(+) create mode 100644 counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py new file mode 100644 index 0000000000..bb7ead6657 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -0,0 +1,229 @@ +SCENARIO = [ + { + "title": "Create asset LOCKDESC", + "transaction": "issuance", + "source": "$ADDRESS_9", + "params": { + "asset": "LOCKDESC", + "quantity": 10 * 10**8, + "divisible": True, + "description": "My super asset LOCKDESC", + }, + "controls": [], + }, + { + "title": "Lock description of LOCKDESC", + "transaction": "issuance", + "source": "$ADDRESS_9", + "params": { + "asset": "LOCKDESC", + "quantity": 0, + "description": "lock_description", + }, + "controls": [], + }, + { + "title": "Create fairminter on LOCKDESC", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "LOCKDESC", + "max_mint_per_tx": 10 * 10**8, + "premint_quantity": 100 * 10**8, + "minted_asset_commission": 0.2, + "description": "My super fairminter", + }, + "expected_error": ["Description of asset `LOCKDESC` is locked."], + }, + { + "title": "Create fairminter on LOCKDESC", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "LOCKDESC", + "max_mint_per_tx": 10 * 10**8, + "premint_quantity": 100 * 10**8, + "minted_asset_commission": 0.2, + "description": "My super asset LOCKDESC", + "hard_cap": 120 * 10**8, # 10 issuances, 100 premint, 10 for one mint + "lock_quantity": True, + }, + "set_variables": { + "FAIRMINTER_LOCKDESC_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINTER,ASSET_ISSUANCE,CREDIT", + "result": [ + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_9", + "asset": "LOCKDESC", + "block_index": "$BLOCK_INDEX", + "calling_function": "premint", + "event": "$TX_HASH", + "quantity": 10000000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "LOCKDESC", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "My super asset LOCKDESC", + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_9", + "locked": False, + "quantity": 10000000000, + "reset": False, + "source": "$ADDRESS_9", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "LOCKDESC", + "asset_longname": "", + "asset_parent": "", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "My super asset LOCKDESC", + "divisible": True, + "end_block": 0, + "hard_cap": 12000000000, + "lock_description": False, + "lock_quantity": True, + "max_mint_per_tx": 1000000000, + "minted_asset_commission_int": 20000000, + "pre_minted": True, + "premint_quantity": 10000000000, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_9", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Mint LOCKDESC", + "transaction": "fairmint", + "source": "$ADDRESS_8", + "params": { + "asset": "LOCKDESC", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINT,ASSET_ISSUANCE,CREDIT", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "LOCKDESC", + "asset_events": "fairmint", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "My super asset LOCKDESC", + "description_locked": False, + "divisible": True, + "fair_minting": True, + "fee_paid": 0, + "issuer": "$ADDRESS_9", + "locked": False, + "msg_index": 0, + "quantity": 1000000000, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINT", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "LOCKDESC", + "block_index": "$BLOCK_INDEX", + "commission": 200000000, + "earn_quantity": 800000000, + "fairminter_tx_hash": "$FAIRMINTER_LOCKDESC_HASH", + "paid_quantity": 0, + "source": "$ADDRESS_8", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_9", + "asset": "LOCKDESC", + "block_index": "$BLOCK_INDEX", + "calling_function": "fairmint commission", + "event": "$TX_HASH", + "quantity": 200000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_8", + "asset": "LOCKDESC", + "block_index": "$BLOCK_INDEX", + "calling_function": "fairmint", + "event": "$TX_HASH", + "quantity": 800000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, +] From 42502984b9abff70264af9461962d3e72716c50c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 8 Nov 2024 11:40:30 +0000 Subject: [PATCH 095/138] Takes into account the commission to check if the hard cap is reached --- .../counterpartycore/lib/messages/fairmint.py | 5 ++++- .../scenarios/scenario_21_fairminter.py | 18 ++++++++++++------ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index 934fba8b3a..6e6833d001 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -301,7 +301,10 @@ def parse(db, tx, message): # we check if the hard cap is reached and in this case... if fairminter["hard_cap"] > 0: asset_supply = ledger.asset_supply(db, fairminter["asset"]) - if asset_supply + earn_quantity == fairminter["hard_cap"]: + alredy_minted = asset_supply + earn_quantity + if util.enabled("partial_mint_to_reach_hard_cap"): + alredy_minted += commission + if alredy_minted == fairminter["hard_cap"]: # ...we unlock the issuances for this assets bindings["fair_minting"] = False # we check if we need to lock the assets diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index bb7ead6657..45ad8fc91d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -41,7 +41,7 @@ "source": "$ADDRESS_9", "params": { "asset": "LOCKDESC", - "max_mint_per_tx": 10 * 10**8, + "max_mint_per_tx": 11 * 10**8, "premint_quantity": 100 * 10**8, "minted_asset_commission": 0.2, "description": "My super asset LOCKDESC", @@ -113,7 +113,7 @@ "hard_cap": 12000000000, "lock_description": False, "lock_quantity": True, - "max_mint_per_tx": 1000000000, + "max_mint_per_tx": 1100000000, "minted_asset_commission_int": 20000000, "pre_minted": True, "premint_quantity": 10000000000, @@ -142,11 +142,11 @@ }, "controls": [ { - "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINT,ASSET_ISSUANCE,CREDIT", + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINT,CREDIT,FAIRMINTER_UPDATE,ASSET_ISSUANCE", "result": [ { "event": "ASSET_ISSUANCE", - "event_index": "$EVENT_INDEX_6", + "event_index": "$EVENT_INDEX_7", "params": { "asset": "LOCKDESC", "asset_events": "fairmint", @@ -158,10 +158,10 @@ "description": "My super asset LOCKDESC", "description_locked": False, "divisible": True, - "fair_minting": True, + "fair_minting": False, "fee_paid": 0, "issuer": "$ADDRESS_9", - "locked": False, + "locked": True, "msg_index": 0, "quantity": 1000000000, "reset": False, @@ -173,6 +173,12 @@ }, "tx_hash": "$TX_HASH", }, + { + "event": "FAIRMINTER_UPDATE", + "event_index": "$EVENT_INDEX_6", + "params": {"status": "closed", "tx_hash": "$FAIRMINTER_LOCKDESC_HASH"}, + "tx_hash": "$TX_HASH", + }, { "event": "NEW_FAIRMINT", "event_index": "$EVENT_INDEX_5", From aa2b10a25bac549aad79d3d6d2da425e6dd2788b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 8 Nov 2024 12:25:30 +0000 Subject: [PATCH 096/138] more fairminters tests --- .../scenarios/scenario_21_fairminter.py | 241 ++++++++++++++++++ 1 file changed, 241 insertions(+) diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index 45ad8fc91d..55ac9e62d3 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -232,4 +232,245 @@ } ], }, + { + "title": "Create fairminter BURNER", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "BURNER", + "price": 1, + "minted_asset_commission": 0.2, + "description": "let's burn it", + "hard_cap": 1 * 10**8, + "lock_description": True, + "lock_quantity": True, + "burn_payment": True, + }, + "set_variables": { + "FAIRMINTER_BURNER_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINTER,ASSET_CREATION,ASSET_ISSUANCE,DEBIT", + "result": [ + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "fairminter fee", + "address": "$ADDRESS_9", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 50000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "BURNER", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "let's burn it", + "divisible": True, + "fair_minting": True, + "fee_paid": 50000000.0, + "issuer": "$ADDRESS_9", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_9", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "21328597", + "asset_longname": None, + "asset_name": "BURNER", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "BURNER", + "asset_longname": "", + "asset_parent": "", + "block_index": "$BLOCK_INDEX", + "burn_payment": True, + "description": "let's burn it", + "divisible": True, + "end_block": 0, + "hard_cap": 100000000, + "lock_description": True, + "lock_quantity": True, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 20000000, + "pre_minted": False, + "premint_quantity": 0, + "price": 1, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_9", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Mint BURNER", + "transaction": "fairmint", + "source": "$ADDRESS_8", + "params": { + "asset": "BURNER", + "quantity": 1 * 10**8, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINT,CREDIT,FAIRMINTER_UPDATE,ASSET_ISSUANCE,DEBIT,ASSET_DESTRUCTION", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "BURNER", + "asset_events": "fairmint", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "let's burn it", + "description_locked": True, + "divisible": True, + "fair_minting": False, + "fee_paid": 0, + "issuer": "$ADDRESS_9", + "locked": True, + "msg_index": 0, + "quantity": 100000000, + "reset": False, + "source": "$ADDRESS_8", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "FAIRMINTER_UPDATE", + "event_index": "$EVENT_INDEX_8", + "params": {"status": "closed", "tx_hash": "$FAIRMINTER_BURNER_HASH"}, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINT", + "event_index": "$EVENT_INDEX_7", + "params": { + "asset": "BURNER", + "block_index": "$BLOCK_INDEX", + "commission": 20000000, + "earn_quantity": 80000000, + "fairminter_tx_hash": "$FAIRMINTER_BURNER_HASH", + "paid_quantity": 100000000, + "source": "$ADDRESS_8", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "address": "$ADDRESS_9", + "asset": "BURNER", + "block_index": "$BLOCK_INDEX", + "calling_function": "fairmint commission", + "event": "$TX_HASH", + "quantity": 20000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_8", + "asset": "BURNER", + "block_index": 118, + "calling_function": "fairmint", + "event": "$TX_HASH", + "quantity": 80000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_DESTRUCTION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "quantity": 100000000, + "source": "$ADDRESS_8", + "status": "valid", + "tag": "burn fairmint payment", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "action": "burn fairmint payment", + "address": "$ADDRESS_8", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 100000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, ] From b1739b19e761348f12ac7d5b6e79b0694d5d4109 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 8 Nov 2024 13:24:48 +0000 Subject: [PATCH 097/138] more tests --- .../scenarios/scenario_21_fairminter.py | 177 ++++++++++++++++++ 1 file changed, 177 insertions(+) diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index 55ac9e62d3..f130c50157 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -473,4 +473,181 @@ } ], }, + { + "title": "Create fairminter EXPANSIVE", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "EXPANSIVE", + "price": 999 * 10**8, + "description": "too expensive for you", + "end_block": "$CURRENT_BLOCK + 2", + }, + "set_variables": { + "FAIRMINTER_EXPANSIVE_HASH": "$TX_HASH", + "FAIRMINTER_EXPANSIVE_TX_INDEX": "$TX_INDEX", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINTER,ASSET_CREATION,ASSET_ISSUANCE,DEBIT", + "result": [ + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "fairminter fee", + "address": "$ADDRESS_9", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 50000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "EXPANSIVE", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "too expensive for you", + "divisible": True, + "fair_minting": True, + "fee_paid": 50000000.0, + "issuer": "$ADDRESS_9", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_9", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "1024679892006", + "asset_longname": None, + "asset_name": "EXPANSIVE", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "EXPANSIVE", + "asset_longname": "", + "asset_parent": "", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "too expensive for you", + "divisible": True, + "end_block": "$BLOCK_INDEX + 1", + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 99900000000, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "$ADDRESS_9", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Mint EXPANSIVE", + "transaction": "fairmint", + "source": "$ADDRESS_8", + "params": { + "asset": "EXPANSIVE", + "quantity": 1 * 10**8, + }, + "expected_error": ["insufficient XCP balance"], + }, + { + "title": "mint empty block to trigger close of fairminters", + "transaction": "mine_blocks", + "params": {"blocks": 1}, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=FAIRMINTER_UPDATE,ASSET_ISSUANCE", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "EXPANSIVE", + "asset_events": "close_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "too expensive for you", + "description_locked": False, + "divisible": True, + "fair_minting": False, + "fee_paid": 50000000, + "issuer": "$ADDRESS_9", + "locked": False, + "msg_index": 1, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_9", + "status": "valid", + "transfer": False, + "tx_hash": "$FAIRMINTER_EXPANSIVE_HASH", + "tx_index": "$FAIRMINTER_EXPANSIVE_TX_INDEX", + }, + "tx_hash": None, + }, + { + "event": "FAIRMINTER_UPDATE", + "event_index": "$EVENT_INDEX_2", + "params": {"status": "closed", "tx_hash": "$FAIRMINTER_EXPANSIVE_HASH"}, + "tx_hash": None, + }, + ], + } + ], + }, + { + "title": "Mint EXPANSIVE", + "transaction": "fairmint", + "source": "$ADDRESS_8", + "params": { + "asset": "EXPANSIVE", + "quantity": 1 * 10**8, + }, + "expected_error": [ + "fairminter is not open for asset: `EXPANSIVE`", + "insufficient XCP balance", + ], + }, ] From 79cde59cc639c814ddbb1f14089e4bb2128920cd Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 8 Nov 2024 16:32:58 +0000 Subject: [PATCH 098/138] Soft cap deadline block must be > start block --- .../counterpartycore/lib/ledger.py | 4 +- .../lib/messages/fairminter.py | 56 +- .../test/regtest/apidoc/apicache.json | 11350 ---------------- .../test/regtest/regtestnode.py | 4 +- .../scenarios/scenario_21_fairminter.py | 200 + .../test/regtest/testscenarios.py | 22 +- 6 files changed, 257 insertions(+), 11379 deletions(-) delete mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index f76f5361c2..3c09517ffe 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -2125,8 +2125,8 @@ def get_fairmint_quantities(db, fairminter_tx_hash): cursor.execute(query, bindings) sums = cursor.fetchone() if not sums: - return None, None - return sums["quantity"] + sums["commission"], sums["paid_quantity"] + return 0, 0 + return (sums["quantity"] or 0) + (sums["commission"] or 0), (sums["paid_quantity"] or 0) def get_soft_caped_fairminters(db, block_index): diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 6982bb0aff..6a1a5fdb11 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -223,6 +223,11 @@ def validate( problems.append("Soft cap deadline block must be specified if soft cap is specified.") elif soft_cap_deadline_block >= end_block > 0: problems.append("Soft cap deadline block must be < end block.") + elif ( + util.enabled("partial_mint_to_reach_hard_cap") + and soft_cap_deadline_block <= start_block + ): + problems.append("Soft cap deadline block must be > start block.") return problems @@ -423,6 +428,13 @@ def parse(db, tx, message): description, ) + if ( + util.enabled("partial_mint_to_reach_hard_cap") + and soft_cap > 0 + and soft_cap_deadline_block <= tx["block_index"] + ): + problems.append("Soft cap deadline block must be > start block.") + # if problems, insert into fairminters table with status invalid and return if problems: status = "invalid: " + "; ".join(problems) @@ -655,15 +667,16 @@ def check_fairminter_soft_cap(db, fairminter, block_index): fairmints = ledger.get_valid_fairmints(db, fairminter["tx_hash"]) # we start by unescrow all the assets and payments for this fairminter... - ledger.debit( - db, - config.UNSPENDABLE, - fairminter["asset"], - fairminter_supply, - 0, # tx_index=0 for block actions - action="unescrowed fairmint", - event=fairminter["tx_hash"], - ) + if fairminter_supply > 0 or not util.enabled("partial_mint_to_reach_hard_cap"): + ledger.debit( + db, + config.UNSPENDABLE, + fairminter["asset"], + fairminter_supply, + 0, # tx_index=0 for block actions + action="unescrowed fairmint", + event=fairminter["tx_hash"], + ) if paid_quantity > 0: ledger.debit( db, @@ -759,18 +772,19 @@ def check_fairminter_soft_cap(db, fairminter, block_index): # fairminter and destroy all the assets at once if fairmint_quantity < fairminter["soft_cap"]: close_fairminter(db, fairminter, block_index) - # destroy assets - bindings = { - "tx_index": fairminter["tx_index"], - "tx_hash": fairminter["tx_hash"], - "block_index": block_index, - "source": fairminter["source"], - "asset": fairminter["asset"], - "quantity": fairminter_supply, - "tag": "soft cap not reached", - "status": "valid", - } - ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION") + if fairminter_supply > 0 or not util.enabled("partial_mint_to_reach_hard_cap"): + # destroy assets + bindings = { + "tx_index": fairminter["tx_index"], + "tx_hash": fairminter["tx_hash"], + "block_index": block_index, + "source": fairminter["source"], + "asset": fairminter["asset"], + "quantity": fairminter_supply, + "tag": "soft cap not reached", + "status": "valid", + } + ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION") def check_soft_cap(db, block_index): diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json deleted file mode 100644 index 59de380d8d..0000000000 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ /dev/null @@ -1,11350 +0,0 @@ -{ - "/v2/blocks": { - "result": [ - { - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "difficulty": 545259519, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 225, - "block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "block_time": 1731013334, - "previous_block_hash": "167c891a8b5bd8e6aace420c0a4141774c5cb5815db1930c644bb0d889250ab9", - "difficulty": 545259519, - "ledger_hash": "07f344560f8e3cc09cc87480d57507c9763e7e7654392b7c32f1e5c70ad05b17", - "txlist_hash": "d59931d03a651f130054608fffa3feda233756e7dd993e8528639e4aa17c741a", - "messages_hash": "8e291b7e59f2a3b521906e37aaafde3015639e4e6a4fa84279db80f8cb9859d6", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 224, - "block_hash": "167c891a8b5bd8e6aace420c0a4141774c5cb5815db1930c644bb0d889250ab9", - "block_time": 1731013330, - "previous_block_hash": "05088b437c85572807241ea7d6d62c990e0ad64c16f4e1408c16074999f623ae", - "difficulty": 545259519, - "ledger_hash": "714220a359b05c1c4a8751522b4aa735a7892aecf724d273a2ee4eee0f77f272", - "txlist_hash": "1111b5a30c61b412b65af312c5a69ed4f9cf4caa213052c98753ca5551681b71", - "messages_hash": "aa4c6eca069e32d453407bc917c84fe65c8486a2cad354a2faf8f02bb4245f68", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 223, - "block_hash": "05088b437c85572807241ea7d6d62c990e0ad64c16f4e1408c16074999f623ae", - "block_time": 1731013317, - "previous_block_hash": "369922049120505950cd8c31fed381810ecdf5333073d9f9a2376e9adcba12e5", - "difficulty": 545259519, - "ledger_hash": "5da98c682805ed3b76f550a8c1305e11f8b1fed9a7925b4dd1b99935882e5358", - "txlist_hash": "2e16028bb4e1f00a32cdf8844de675f248f2680b614c2e3e6b67e66c6a1ee4df", - "messages_hash": "484e30c3e94215bd6f9ec674cb4ea77955857b91016e01516705fa0781a8badc", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 222, - "block_hash": "369922049120505950cd8c31fed381810ecdf5333073d9f9a2376e9adcba12e5", - "block_time": 1731013312, - "previous_block_hash": "6897327d3bfbe2866a4ad35cb640f88638c6885c5f5504032cb49df090d5ceb4", - "difficulty": 545259519, - "ledger_hash": "e44add2f928713ae4dea675a534f7995a66c1fd0f2f45c3e08409eddbd057b21", - "txlist_hash": "f3199bb36b2c039f3ce8d1b2a6499fbaf531e7b1abf63f5ede95aa94abea406f", - "messages_hash": "5ace9e1621c8cf808791f0b7c4d8272c1a8e252190cee3dbcb7df55f184f7821", - "transaction_count": 1, - "confirmed": true - } - ], - "next_cursor": 221, - "result_count": 126 - }, - "/v2/blocks/": { - "result": { - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "difficulty": 545259519, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks/": { - "result": { - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "difficulty": 545259519, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks//transactions": { - "result": [ - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//events": { - "result": [ - { - "event_index": 813, - "event": "BLOCK_PARSED", - "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 - }, - "tx_hash": null - }, - { - "event_index": 812, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - }, - { - "event_index": 811, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 226, - "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - }, - { - "event_index": 810, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - }, - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - } - ], - "next_cursor": 808, - "result_count": 14 - }, - "/v2/blocks//events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 2 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION_OUTPUT", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION", - "event_count": 1 - }, - { - "event": "NEW_BLOCK", - "event_count": 1 - } - ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 - }, - "/v2/blocks//events/": { - "result": [ - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - }, - { - "event_index": 807, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - }, - { - "event_index": 804, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//credits": { - "result": [ - { - "block_index": 226, - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "quantity": 66, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - { - "block_index": 226, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 226, - "address": null, - "asset": "MYASSETA", - "quantity": 2000000000, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//debits": { - "result": [ - { - "block_index": 226, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "action": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 226, - "address": null, - "asset": "MYASSETA", - "quantity": 2000000000, - "action": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//expirations": { - "result": [ - { - "type": "order", - "object_id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "block_index": 220, - "confirmed": true, - "block_time": 1731013306 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//cancels": { - "result": [ - { - "tx_index": 63, - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "offer_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "status": "valid", - "confirmed": true, - "block_time": 1731013161 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//destructions": { - "result": [ - { - "tx_index": 66, - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "block_index": 200, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "status": "valid", - "confirmed": true, - "block_time": 1731013183, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//issuances": { - "result": [ - { - "tx_index": 91, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "msg_index": 0, - "block_index": 224, - "asset": "A95428959531084712", - "quantity": 100, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sends": { - "result": [ - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//dispenses": { - "result": [ - { - "tx_index": 93, - "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sweeps": { - "result": [ - { - "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1731013178, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairminters": { - "result": [ - { - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "tx_index": 90, - "block_index": 223, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428959531084712", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 100, - "commission": 0, - "paid_quantity": 0, - "confirmed": true, - "block_time": 1731013317, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairmints": { - "result": [ - { - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_index": 224, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "asset": "A95428959531084712", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731013330, - "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions": { - "result": [ - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 92, - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "block_time": 1731013334, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": " 72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 91, - "result_count": 94 - }, - "/v2/transactions/info": { - "result": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "6ef00168559b26d1b50506d3720a75cb2ead17502ad6e34fd59466785a4ee128", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "734777d0ffb16ebbf6b1b5cbde51b476624900b84c90111baa064f3aa68be978", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "7d8812cd99f4b53a950926d214bfdf04d4c8e5a39924debadf04b5603de0b5a4", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "10dfef6e7978b6109de23cf5e0db0e401c16ecdc61c9926e6a1e1937fe961b85", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "78ea9c7c3e15876a6741ab98aff173a4c9654dfc74e557ebd9934d9e80ca9728", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "3754ee1f9828a7109088187cc21a35ea81a9cfe32c7b61b464752187c844a9ce", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 1000, - "script_pub_key": "512102f6dc0029129a311519140b00c963b61ba14cf16971de7d3d6b344b73851cf239210234214a0d4d349f0cc08e4104891c8e4ac043b24dbf3623f39b0d3356fe4516fd21026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae" - }, - { - "value": 1000, - "script_pub_key": "512102f6dc0029129a311519e7497b415255fde1efb1963d26b8117ecddf6012d3e65c2102979eca62b3cdb8f80f1b53d07c11a2b4a228b4d8b64d531e41f12f068c389ea521026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae" - }, - { - "value": 1000, - "script_pub_key": "512103d7dc0029129a311519170b034949f1afdd889bfd2c1eac3a15e35779121732642102979eca62b3cdb8d21aaec665c0dba2b4a228b4d8b647d673249c40350c389e6121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae" - }, - { - "value": 29999987000, - "script_pub_key": "00145716fa7773ad7157f8cb99c7fa6fc18b2e00d484" - } - ], - "vtxinwit": [ - "3044022029a2bcac1449e37185f11237fc6cf834013b41680c3cba3ae56c9af3a7c976d50220654dfc7b7a054d291d9fa7a76f64030b631ff5722747eab7d903b454642ff9dc01", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "304402200e28e5a0e4f6f6728b636b400fd6b55ccbb3c6350c5e58a750c015af0a9fce8a02201601b9cb8e6b82af93c34c72375b28a1f72261392a8dfe76f19cdd9c9123077601", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "304402201180a96115cc613cd7bec94a28a4b9c37c2208260324febbd0ee64888b39346d02204f8d46b54419f122233353bb066903c52a471aa3420d885e611e510b45cbe7c501", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "3044022049c91e7c188a99993b84497d52933bee374c868bfc5a53a4d924577971723852022065529c5dfede2fb18328071e1429e3eec7d2458b0756f96bf882d9aa7829766f01", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "3044022038ed6a19dfc05925c063f499643d810ebdbd3d53ac4a2cc9f315a9894c3e93ef02204806e7601e97f6275f97c7ba2d10f57ca7acf3ed3ed04155c441bd3d69420dc701", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "304402204b82eb46994fef6af06100b07b4a181af5f73e29e26a518a5d9f86ec813cbdd202200439ef43b11ab21224bd7e18a61e3a64000d4f3febab11c5fa1f4ec10e0e554f01", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533" - ], - "lock_time": 0, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "tx_id": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442" - }, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions//info": { - "result": { - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "79495952683886a91ce41ed2ef3bfb6f85584f8dc5bdd7137ab1990e11f42ed1", - "n": 1, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2eb153b5f93e8c266730aa9ac0f31baf0127814a457ec55bd2c0c405b01da26efaf63ba861a7b7c82cb956e04098bd" - }, - { - "value": 4949930546, - "script_pub_key": "0014bf917363f27d88f04278081b24523c672a6b1138" - } - ], - "vtxinwit": [ - "304402203c3c7fb81cd2b3a750da609d46f3b87f25fb1b06d77cceaf4a4f86d22c9060d00220278653ff2eafb67bb20e9791ce2a99b9f989e6f05deaa30af8bce7ff8d328d9701", - "03ab51e57d7dbdde835e1a3f53c2be5426e2c3609293ce0fd03a2dfdb8fbc3d2be" - ], - "lock_time": 0, - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_id": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d" - }, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions/unpack": { - "result": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "error": "memo too long" - } - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 812, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 811, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 226, - "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 810, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 808, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 226, - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "status": "valid", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 807, - "result_count": 12 - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 812, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 811, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 226, - "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 810, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 808, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 226, - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "status": "valid", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 807, - "result_count": 12 - }, - "/v2/transactions//sends": { - "result": [ - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/transactions//dispenses": { - "result": [ - { - "tx_index": 93, - "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 807, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 804, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 807, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 804, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/balances": { - "result": [ - { - "asset": "A95428956980101314", - "total": 100000000000, - "addresses": [ - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "utxo": null, - "utxo_address": null, - "quantity": 100000000000, - "quantity_normalized": "1000.00000000" - } - ], - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "total_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTA", - "total": 500000000, - "addresses": [ - { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "utxo": null, - "utxo_address": null, - "quantity": 500000000, - "quantity_normalized": "5.00000000" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "total_normalized": "5.00000000" - }, - { - "asset": "FREEFAIRMINT", - "total": 180, - "addresses": [ - { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "utxo": null, - "utxo_address": null, - "quantity": 180, - "quantity_normalized": "0.00000180" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000180" - }, - { - "asset": "FAIRMINTD", - "total": 40, - "addresses": [ - { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "utxo": null, - "utxo_address": null, - "quantity": 40, - "quantity_normalized": "0.00000040" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "total": 19, - "addresses": [ - { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "utxo": null, - "utxo_address": null, - "quantity": 19, - "quantity_normalized": "0.00000019" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000019" - } - ], - "next_cursor": "MPMASSET", - "result_count": 9 - }, - "/v2/addresses/transactions": { - "result": [ - { - "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_hash": "2675f7b2c20083916b5d9cbe2c93537deab1a25e3f3fbddcd513388c0b286e7b", - "block_time": 1731013262, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003805716fa7773ad7157f8cb99c7fa6fc18b2e00d484806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 80, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_hash": "6515927bb3e1b0997dd9e22fd996622c98a1206933246c001dbe5ed2f51206b5", - "block_time": 1731013258, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003805716fa7773ad7157f8cb99c7fa6fc18b2e00d484806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b1138c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "746865206d656d6f", - "memo_is_hex": true, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "quantity": 10, - "memo": "746865206d656d6f", - "memo_is_hex": true, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "block_hash": "5d868954d16a8defbc6c8f7e5b73cd358ad194460cb090ae51ccc81d2d4bd072", - "block_time": 1731013254, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "block_hash": "2ef74365b4eb94d290c814798626705fe96d90b0d4b69e8abde4c3c03f7a8047", - "block_time": 1731013241, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 77, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_hash": "14e1c7aff3bcb67e385c5bb5d44d7c86d976db5f16b586eacca97b1c2ff188af", - "block_time": 1731013238, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000178d82231300000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", - "supported": true, - "utxos_info": " 836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 76, - "result_count": 49 - }, - "/v2/addresses/events": { - "result": [ - { - "event_index": 761, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 220, - "order_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "block_time": 1731013306 - }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 - }, - { - "event_index": 760, - "event": "CREDIT", - "params": { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "block_index": 220, - "calling_function": "cancel order", - "event": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "quantity": 0, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1731013306, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000000" - }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 - }, - { - "event_index": 716, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "status": "valid", - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_time": 1731013262 - }, - { - "event_index": 715, - "event": "MPMA_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 214, - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "memo": "memo3", - "msg_index": 1, - "quantity": 10, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "status": "valid", - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_time": 1731013262 - } - ], - "next_cursor": 714, - "result_count": 256 - }, - "/v2/addresses/mempool": { - "result": [ - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "quantity": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "status": "valid", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "CREDIT", - "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "XCP", - "block_index": 226, - "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "XCP", - "block_index": 226, - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1731013347.1804786, - "btc_amount": 0, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", - "destination": "", - "fee": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "utxos_info": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1731013347.1804786 - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances": { - "result": [ - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "A95428956980101314", - "quantity": 100000000000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MPMASSET", - "quantity": 99999998960, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "999.99999000" - }, - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MYASSETA", - "quantity": 97999999980, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "980.00000000" - }, - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 82599965196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "825.99965000" - }, - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "TESTLOCKDESC", - "quantity": 9999990000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "99.99990000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/balances/": { - "result": [ - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 82599965196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "825.99965000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/credits": { - "result": [ - { - "block_index": 214, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "calling_function": "mpma send", - "event": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 213, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "calling_function": "mpma send", - "event": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "tx_index": 80, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013258, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 213, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 3000, - "calling_function": "order expired", - "event": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013258, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00003000" - }, - { - "block_index": 211, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 5000, - "calling_function": "cancel order", - "event": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013241, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00005000" - }, - { - "block_index": 209, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe", - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013233, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - } - ], - "next_cursor": 67, - "result_count": 21 - }, - "/v2/addresses/
/debits": { - "result": [ - { - "block_index": 212, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "tx_index": 79, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013254, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 212, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MPMASSET", - "quantity": 20, - "action": "mpma send", - "event": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "tx_index": 79, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013254, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - }, - { - "block_index": 211, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "tx_index": 78, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013241, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 211, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MPMASSET", - "quantity": 20, - "action": "mpma send", - "event": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "tx_index": 78, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013241, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - }, - { - "block_index": 210, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MPMASSET", - "quantity": 1000, - "action": "send", - "event": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "tx_index": 77, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013238, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - ], - "next_cursor": 64, - "result_count": 29 - }, - "/v2/addresses/
/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/broadcasts": { - "result": [ - { - "tx_index": 24, - "tx_hash": "d3dc005570f40d90bd51eeeede95c4582735448274c01ed97d245ec63b6bd7e0", - "block_index": 137, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1731012904, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/burns": { - "result": [ - { - "tx_index": 0, - "tx_hash": "3b8a1b84157ca94382e24aa8a8beb09c5bfd871593bbdc50897753fc0ac00fad", - "block_index": 112, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "burned": 50000000, - "earned": 74999998167, - "status": "valid", - "confirmed": true, - "block_time": 1731012809, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99998000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends": { - "result": [ - { - "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013254, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013254, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "memo2", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013254, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013241, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013241, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 23, - "result_count": 12 - }, - "/v2/addresses/
/receives": { - "result": [ - { - "tx_index": 38, - "tx_hash": "285fc49189236963902413e01e49d880fa7b06f82c929ca888633c5dd10a0abd", - "block_index": 151, - "source": "620ccb8556c34bd0ce2790ce44834108fa2549b82984d489ebb4c66f6035d154:0", - "destination": "bcrt1qhvervgkjk5qkxkss2zralr4fklv0qjx09u9xxe", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731012957, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends/": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/receives/": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731013205, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - }, - "/v2/addresses/
/dispenses/sends": { - "result": [ - { - "tx_index": 69, - "dispense_index": 0, - "tx_hash": "8b51574d7a2ef789369c96bd0dfaca9a239aeea7d2fa8ebea5bed8f015933ffc", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 68, - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731013205, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/receives": { - "result": [ - { - "tx_index": 69, - "dispense_index": 0, - "tx_hash": "8b51574d7a2ef789369c96bd0dfaca9a239aeea7d2fa8ebea5bed8f015933ffc", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 68, - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731013205, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/sends/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispenses/receives/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/sweeps": { - "result": [ - { - "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1731013178, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/issuances": { - "result": [ - { - "tx_index": 76, - "tx_hash": "18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe", - "msg_index": 0, - "block_index": 209, - "asset": "MPMASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1731013233, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 52, - "tx_hash": "3af3d0c46083c23f8219c94c95136f3308e810480f908705f409792bd7ca855a", - "msg_index": 0, - "block_index": 165, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1731013030, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 51, - "tx_hash": "977834a3bfb69a1ced43bb3c36f0711fc974ae77ea20875f6a5b15dcb219e856", - "msg_index": 0, - "block_index": 164, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1731013016, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 50, - "tx_hash": "860c427d1a726c07bc4475e0c2ac848676f9bbd1da5739c3f06dc706cb4aa5b1", - "msg_index": 0, - "block_index": 163, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1731013011, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 49, - "tx_hash": "73e0b7574235e2e68fd016f6281511ceb94010109abe0e01f4cde2ffa9e3909e", - "msg_index": 0, - "block_index": 162, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1731013008, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": 20, - "result_count": 25 - }, - "/v2/addresses/
/assets": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, - "supply_normalized": "100.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1731012990, - "last_issuance_block_time": 1731012996, - "supply_normalized": "0.00000180" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1731012945, - "last_issuance_block_time": 1731012945, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1731012896, - "last_issuance_block_time": 1731012900, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 8 - }, - "/v2/addresses/
/assets/issued": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, - "supply_normalized": "100.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1731012990, - "last_issuance_block_time": 1731012996, - "supply_normalized": "0.00000180" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1731012945, - "last_issuance_block_time": 1731012945, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1731012896, - "last_issuance_block_time": 1731012900, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 8 - }, - "/v2/addresses/
/assets/owned": { - "result": [ - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, - "supply_normalized": "100.00000000" - }, - { - "asset": "FREEFAIRMINT", - "asset_id": "20774156646107637", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 180, - "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1731012990, - "last_issuance_block_time": 1731012996, - "supply_normalized": "0.00000180" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1731012945, - "last_issuance_block_time": 1731012945, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1731012896, - "last_issuance_block_time": 1731012900, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 8 - }, - "/v2/addresses/
/transactions": { - "result": [ - { - "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "block_hash": "5d868954d16a8defbc6c8f7e5b73cd358ad194460cb090ae51ccc81d2d4bd072", - "block_time": 1731013254, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", - "supported": true, - "utxos_info": " 612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "block_hash": "2ef74365b4eb94d290c814798626705fe96d90b0d4b69e8abde4c3c03f7a8047", - "block_time": 1731013241, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", - "supported": true, - "utxos_info": " fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8:0 4 ", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 77, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_hash": "14e1c7aff3bcb67e385c5bb5d44d7c86d976db5f16b586eacca97b1c2ff188af", - "block_time": 1731013238, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000178d82231300000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", - "supported": true, - "utxos_info": " 836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 76, - "tx_hash": "18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe", - "block_index": 209, - "block_hash": "6bb6ef82a8ae08022ced89d45fed4727f2f3c8321e31642dced027052c310bb5", - "block_time": 1731013233, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", - "supported": true, - "utxos_info": " 18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 202, - "block_hash": "0d615f5ae3216aa42f0beb4d241aad95cd8105c965c2cca7c46839a24eb2740b", - "block_time": 1731013200, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": " bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7:1 2 ", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 67, - "result_count": 32 - }, - "/v2/addresses/
/dividends": { - "result": [ - { - "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1731012971, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/orders": { - "result": [ - { - "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013046, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013241, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013161, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 64, - "tx_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "block_index": 220, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 219, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013306, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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.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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/fairminters": { - "result": [ - { - "tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "tx_index": 44, - "block_index": 159, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FREEFAIRMINT", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 180, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 180, - "commission": 0, - "paid_quantity": 0, - "confirmed": true, - "block_time": 1731012996, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000180", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000180", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "4b247175490cd0174b710fa4689fb653ec473d6c473d0cba3f121eac866d59fe", - "tx_index": 43, - "block_index": 156, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1731012975, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "b7a19fb3d0e07ac1d7f875a48825c16bd693ce37c21cef7cb57b5f474c01af0b", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1731012896, - "price_normalized": "50.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1731012881, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "d8b1188f7079a7a70d3813bc5012d52a051cecfcc35d6d809b1cd4b02e88b27d", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1731012877, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1731012858, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 6 - }, - "/v2/addresses/
/fairmints": { - "result": [ - { - "tx_hash": "330bcdc1efb0f0eefb82b43e33edd493447f183534cbf1b2b8e0528d36758ae8", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012996, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "8da06ad9553f8287728bd48694be0ab4fcfdf7ddfc15e0a891c0c81fffbfe69a", - "tx_index": 45, - "block_index": 158, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "asset": "FREEFAIRMINT", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012993, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "630805fffd087574a7a1d8b1a599c2d2897e31e2729acf5680ea8c59bdc9ae7a", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "b7a19fb3d0e07ac1d7f875a48825c16bd693ce37c21cef7cb57b5f474c01af0b", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012900, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "0b3a3e5ed490567007b0ae405c334ccb3483786b9d6aa87b451c579478c87a95", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012892, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "578a4a05f4abfcf75e7441f1c38f50c2549ee3e0de7363da5fbc6c01fca47880", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012889, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "cd49d318d005ac85b84a0df5523b095236288f969bd69eeb6c0b37a2300bbec5", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012884, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "5b1bd226ff632de44a31943112c16b9815f6adcaf773d5a1cf74353cad6dbf97", - "tx_index": 15, - "block_index": 127, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d8b1188f7079a7a70d3813bc5012d52a051cecfcc35d6d809b1cd4b02e88b27d", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012865, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - }, - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012851, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 8 - }, - "/v2/addresses/
/fairmints/": { - "result": [ - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012851, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/utxos//balances": { - "result": [ - { - "asset": "XCP", - "quantity": 2000000000, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "asset": "MYASSETA", - "quantity": 2000000000, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/compose/bet": { - "error": "['feed doesn\u2019t exist']" - }, - "/v2/addresses/
/compose/broadcast": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction": 0.05, - "text": "\"Hello, world!\"", - "skip_validation": false - }, - "name": "broadcast", - "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985799, - "btc_fee": 14201, - "rawtransaction": "020000000001017c40f487ee7591d6ed5240a4d0e2120cdf46549758a5952b78e087e974546d9a000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff0200000000000000002b6a29b5a97bdf510b1b8b1cb52e302245145834dafaef77e6858ac3d0371d23f275020011ef2676c5b1b67887ba052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "broadcast", - "message_type_id": 30, - "message_data": { - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction_int": 5000000, - "text": "\"Hello, world!\"", - "status": "valid", - "fee_fraction_int_normalized": "0.05000000" - } - } - } - }, - "/v2/addresses/
/compose/btcpay": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "order_match_id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "skip_validation": false - }, - "name": "btcpay", - "data": "434e5452505254590b2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339caee20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999980926, - "btc_fee": 18074, - "rawtransaction": "0200000000010138089ed6cb3f4571847253295ddcd3f41dea7cf41b96d7854193976f29a325ce000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff03e8030000000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48400000000000000004b6a499842ef56d7e961e85b8fb6a2f547307ec5fda80d4d02119294b3b5f5a35a09abc0f3190a9d9e69633cb49899070fe9209b61535c525eeca000591249de669a8a39a65ea4b44ea96e4a7ea7052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "order_match_id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/burn": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "quantity": 1000, - "overburn": false, - "skip_validation": false - }, - "name": "burn", - "data": null, - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999985797, - "btc_fee": 13203, - "rawtransaction": "02000000000101e0b2f6e979240ed52d91c4e03053f3dfa875fd6c2a70c45b970183ae898137e9000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac85ba052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000" - } - }, - "/v2/addresses/
/compose/cancel": { - "result": { - "params": { - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "offer_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "skip_validation": false - }, - "name": "cancel", - "data": "434e5452505254594672d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "btc_in": 4949928908, - "btc_out": 0, - "btc_change": 4949914707, - "btc_fee": 14201, - "rawtransaction": "020000000001010215889cc84aed5f8eb07e97cb32d12de72f3a9a012954e96d2a1487ae85d97201000000160014587d7804256964c8fe4e659481a556d8251b385effffffff0200000000000000002b6a2973e6c365931ff65490813f7d566ff1433a47c0ddd0c6518379bc2fb360bbef68b926f97fa972a867fe53b4092701000000160014587d7804256964c8fe4e659481a556d8251b385e02000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/destroy": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 1000, - "tag": "\"bugs!\"", - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00001000" - }, - "name": "destroy", - "data": "434e5452505254596e000000000000000100000000000003e822627567732122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986327, - "btc_fee": 13673, - "rawtransaction": "02000000000101a3b0cdfd378531e9df9c157e6d81f126966b4b297ffb186ddca17dd17edc4c96000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000226a203c504548c45de13f4cd1baffc025e408e2532cf5fe9fda7c0043fcbb7471e08a97bc052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "tag": "22627567732122", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dispenser": { - "result": { - "params": { - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949873799, - "btc_out": 0, - "btc_change": 4949859539, - "btc_fee": 14260, - "rawtransaction": "02000000000101b70849e7d81a4963afecfd603aec0f1c93c4d63c8436369ff3978cfc9ac577b902000000160014e758594e9089d0b318d0b4045c4517ccd0604a18ffffffff0200000000000000002c6a2ae7c4b3240e4f1639da4514e096b8409e770a997d44b3627d85e201dc3391da3bb4e628fb40f7241682b2d3dc082701000000160014e758594e9089d0b318d0b4045c4517ccd0604a1802000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dividend": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "quantity_per_unit": 1, - "asset": "FAIRMINTA", - "dividend_asset": "XCP", - "skip_validation": false, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "0.00000001" - }, - "name": "dividend", - "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986268, - "btc_fee": 13732, - "rawtransaction": "0200000000010183636c67580884f5cd278b86d297c2975be75ea94811b302946f2e44fc44cf12000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000236a2164d5c7631fd202f68d301b2262c5e0f3c9584b14201851eabd5e806a9d5b5481bc5cbc052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, - "message_data": { - "asset": "FAIRMINTA", - "quantity_per_unit": 1, - "dividend_asset": "XCP", - "status": "valid", - "quantity_per_unit_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/issuance": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCPTEST", - "quantity": 1000, - "transfer_destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "lock": false, - "reset": false, - "description": null, - "skip_validation": false, - "quantity_normalized": "0.00001000" - }, - "name": "issuance", - "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999983727, - "btc_fee": 15727, - "rawtransaction": "02000000000101017006842bb51272e87ad0e28340636dccb054255fb54c1687967d078cb79e7c000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff0322020000000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d4840000000000000000236a216230f4618f894d3b76e526c417f309db263f319416b5896dc29ca30a5216c4e91e6fb2052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 7136017375, - "asset": "XCPTEST", - "subasset_longname": null, - "quantity": 1000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "status": "valid", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/mpma": { - "result": { - "params": { - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset_dest_quant_list": [ - [ - "XCP", - "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - 1 - ], - [ - "FREEFAIRMINT", - "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - 2 - ] - ], - "memo": null, - "memo_is_hex": false, - "skip_validation": false - }, - "name": "mpma", - "data": "434e545250525459030002805716fa7773ad7157f8cb99c7fa6fc18b2e00d484802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf4012737f10d9927d5000000000000000240000000000000004000000000000000100", - "btc_in": 4949808000, - "btc_out": 2000, - "btc_change": 4949785285, - "btc_fee": 20715, - "rawtransaction": "0200000000010160c6c2f8d3a4a69a12666c62748632d9dd757eb3914dfb2ebe6f60ae3d09dd92030000001600142ac7b47cc46a945dc0852c15fc77731f0bc0a3bfffffffff03e80300000000000069512103dacff35195b3a79499799f63a8acdbe050b8921d99d334f8dddf82cc1fc801bc21022506508b212f0ed983fef4239b5a5e35a0a5ce3f795ccb3d13cacd5d810e224d21025a62613c797bda3b979c588607e996d9d183f2480f95cfc4dd4f8ac46d9102b953aee80300000000000069512103c5cff35195b3a794992a9f6128fbcd1a27ef3f6cce2bff611a21ed0d94e601632103f182d1a1e69b721de96aa9e31e764bc9d7d6d134b9ff747d01b9b24d589c5f9a21025a62613c797bda3b979c588607e996d9d183f2480f95cfc4dd4f8ac46d9102b953aec5ba0727010000001600142ac7b47cc46a945dc0852c15fc77731f0bc0a3bf02000000000000", - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "FREEFAIRMINT", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 2, - "memo": null, - "memo_is_hex": null - }, - { - "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "quantity": 1, - "memo": null, - "memo_is_hex": null - } - ] - } - } - }, - "/v2/addresses/
/compose/order": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "skip_validation": false, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "get_asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - }, - "name": "order", - "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985212, - "btc_fee": 14788, - "rawtransaction": "020000000001016b06ddcdbc3161c2820dc9f92f2639d7351044912b4ab676f5430ade7ebb0f4e000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000356a33e677fe1d2baf99939d7ff0e4d0d8e05fb54064e457893727cd72e48f2025b514a88725468f5990c7234e99e44f7a731aebd9723cb8052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "status": "open", - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - } - } - } - }, - "/v2/addresses/
/compose/send": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 1000, - "memo": null, - "memo_is_hex": false, - "use_enhanced_send": true, - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00001000" - }, - "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985506, - "btc_fee": 14494, - "rawtransaction": "020000000001015d94036115866a6ea90eab9bf2802fb6aba949dca8b670c35f0bb8e54c7c80ce000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000306a2e81f259139255c54b9d79dd0da3fcbbffc17116838eaa76ab120e35ac953b4ac403880761ba4cf5f1db95af96c0bd62b9052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "memo": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/sweep": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "flags": 7, - "memo": "FFFF", - "skip_validation": false - }, - "name": "sweep", - "data": "434e54525052545904802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf07ffff", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986268, - "btc_fee": 13732, - "rawtransaction": "0200000000010134d6150ae2d48ae2329d3b923635126c5f07d02638f4684611dad3f63110dea0000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000236a2107f73d39809f4230e6b2d60f74dd3df17dc8e095019175c7d590efc1c017bfb1d25cbc052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "sweep", - "message_type_id": 4, - "message_data": { - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "flags": 7, - "memo": "ffff" - } - } - } - }, - "/v2/addresses/
/compose/dispense": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "quantity": 1000, - "skip_validation": false - }, - "name": "dispense", - "data": "434e5452505254590d00", - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999984623, - "btc_fee": 14377, - "rawtransaction": "0200000000010193df50380287354be66126fed2dd3b665bfdfcfc5999652b69b473a4ca31561b000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff03e803000000000000160014bf917363f27d88f04278081b24523c672a6b113800000000000000000c6a0a0843f9e51469108c9077efb5052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - } - } - }, - "/v2/addresses/
/compose/fairminter": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": 0.0, - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "skip_validation": false, - "price_normalized": "10.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "name": "fairminter", - "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985447, - "btc_fee": 14553, - "rawtransaction": "02000000000101be74e7715620f1e17d8368032de3492bc421e6080ca9094c75c2c02f5bfaf3a8000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000316a2fb0bdabb63b2ec48b31fdad92e8a50c8af40cf1ab41f4785dc4c9b51ee841759a7310bd0221ab30212b21f936615bd027b9052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "fairminter", - "message_type_id": 90, - "message_data": { - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": "0.00000000", - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "10.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - } - } - }, - "/v2/addresses/
/compose/fairmint": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTC", - "quantity": 1, - "skip_validation": false, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000001" - }, - "name": "fairmint", - "data": "434e5452505254595b464149524d494e54437c31", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999987031, - "btc_fee": 12969, - "rawtransaction": "02000000000101306fec4cef25eaf92fa3d503585980f510f0cca7e80214e119a1c72644a4f92a000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000166a145be04859e9e05d47558e16b846684e988afbed0457bf052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "fairmint", - "message_type_id": 91, - "message_data": { - "asset": "FAIRMINTC", - "quantity": 1, - "quantity_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/attach": { - "result": { - "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 1000, - "destination_vout": null, - "skip_validation": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00001000" - }, - "name": "attach", - "data": "434e545250525459655843507c313030307c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999984607, - "btc_fee": 14847, - "rawtransaction": "02000000000101700a60f7988b60b84f6b78b36d454f3a40127f9c64bf9854f07ae032be7a176b000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff0322020000000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d4840000000000000000146a12badc599733a5def3a31b5c2f9a16515d07cddfb5052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", - "unpacked_data": { - "message_type": "attach", - "message_type_id": 101, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "destination_vout": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/utxos//compose/detach": { - "result": { - "params": { - "source": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "skip_validation": false - }, - "name": "detach", - "data": "434e545250525459666263727431713275743035616d6e34346334303778746e38726c356d377033766871703479797a3478323876", - "btc_in": 4949971000, - "btc_out": 0, - "btc_change": 4949945473, - "btc_fee": 25527, - "rawtransaction": "02000000000102b70849e7d81a4963afecfd603aec0f1c93c4d63c8436369ff3978cfc9ac577b9000000001600149755319bc2231accd1b895e0999b1cfdb799800affffffff96933340837429b4dd2c043af4faaedf4696586540f73864ec73398de84ece41010000001600149755319bc2231accd1b895e0999b1cfdb799800affffffff020000000000000000376a35e7c4b3240e4f1639b0277792e28931ac037ea94825de0c4a598135ec04e9ae56649444ce2dc0542590dad0ffce7a74b4a99add0068812c0a27010000001600149755319bc2231accd1b895e0999b1cfdb799800a02000002000000000000", - "unpacked_data": { - "message_type": "detach", - "message_type_id": 102, - "message_data": { - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v" - } - } - } - }, - "/v2/assets": { - "result": [ - { - "asset": "PARENTB", - "asset_id": "4641584819", - "asset_longname": null, - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "owner": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset PARENTB", - "first_issuance_block_index": 217, - "last_issuance_block_index": 217, - "confirmed": true, - "first_issuance_block_time": 1731013284, - "last_issuance_block_time": 1731013284, - "supply_normalized": "1000.00000000" - }, - { - "asset": "PARENTA", - "asset_id": "4641584818", - "asset_longname": null, - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "owner": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset PARENTA", - "first_issuance_block_index": 215, - "last_issuance_block_index": 215, - "confirmed": true, - "first_issuance_block_time": 1731013266, - "last_issuance_block_time": 1731013266, - "supply_normalized": "1000.00000000" - }, - { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, - "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, - "supply_normalized": "1000.00000000" - }, - { - "asset": "UTXOASSET", - "asset_id": "4336417415635", - "asset_longname": null, - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "owner": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset", - "first_issuance_block_index": 204, - "last_issuance_block_index": 204, - "confirmed": true, - "first_issuance_block_time": 1731013209, - "last_issuance_block_time": 1731013209, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, - "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, - "supply_normalized": "100.00000000" - } - ], - "next_cursor": 9, - "result_count": 13 - }, - "/v2/assets/": { - "result": { - "asset": "FAIRMINTA", - "asset_id": "1046814266082", - "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "", - "first_issuance_block_index": 122, - "last_issuance_block_index": 125, - "confirmed": true, - "first_issuance_block_time": 1731012846, - "last_issuance_block_time": 1731012858, - "supply_normalized": "100.00000000" - } - }, - "/v2/assets//balances": { - "result": [ - { - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 9500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - }, - { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/assets//balances/
": { - "result": [ - { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 82599965196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "825.99965000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//orders": { - "result": [ - { - "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013046, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013241, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013161, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 64, - "tx_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "block_index": 220, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 219, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013306, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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.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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 56, - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 211, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013119, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - ], - "next_cursor": 58, - "result_count": 7 - }, - "/v2/assets//matches": { - "result": [ - { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 212, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 56, - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 210, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1731013119, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4_9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx0_index": 53, - "tx0_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 54, - "tx1_hash": "9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 187, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1731013046, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//credits": { - "result": [ - { - "block_index": 199, - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "sweep", - "event": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013178, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 125, - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "FAIRMINTA", - "quantity": 9000000000, - "calling_function": "fairmint", - "event": "171d3f3e491026217b6016f00d63b4b4a6ff451e56ed482e2e84cfdb7de0874d", - "tx_index": 13, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012858, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "90.00000000" - }, - { - "block_index": 124, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "escrowed fairmint", - "event": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": 12, - "result_count": 6 - }, - "/v2/assets//debits": { - "result": [ - { - "block_index": 226, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "action": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - { - "block_index": 217, - "address": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "XCP", - "quantity": 50000000, - "action": "issuance fee", - "event": "9b7da8431490abc3a01e42e9309afaa1c2bfb314f8f1c9fd6836274abd584535", - "tx_index": 84, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013284, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.50000000" - }, - { - "block_index": 215, - "address": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "XCP", - "quantity": 50000000, - "action": "issuance fee", - "event": "ec296ef575d4b032f288b5abd6b7cb183edb50c6fc64e11ae2cf51c52c425ffa", - "tx_index": 82, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013266, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.50000000" - }, - { - "block_index": 214, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 213, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "tx_index": 80, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013258, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ], - "next_cursor": 69, - "result_count": 48 - }, - "/v2/assets//dividends": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/assets//issuances": { - "result": [ - { - "tx_index": 13, - "tx_hash": "171d3f3e491026217b6016f00d63b4b4a6ff451e56ed482e2e84cfdb7de0874d", - "msg_index": 0, - "block_index": 125, - "asset": "FAIRMINTA", - "quantity": 9000000000, - "divisible": true, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731012858, - "quantity_normalized": "90.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 12, - "tx_hash": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "msg_index": 0, - "block_index": 124, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731012854, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 11, - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "msg_index": 0, - "block_index": 123, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731012851, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 10, - "tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "msg_index": 0, - "block_index": 122, - "asset": "FAIRMINTA", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731012846, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//sends": { - "result": [ - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 80, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "746865206d656d6f", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013258, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013254, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013241, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 16, - "result_count": 10 - }, - "/v2/assets//dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 29, - "tx_hash": "41e672432e226a30765f1431190a6c7d09beded14a933374bbf2d8970369b86a", - "block_index": 142, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012921, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 30, - "tx_hash": "75b889823e84b7a7059780a1c71629f21476260dba9f397c1331e672b58251be", - "block_index": 150, - "source": "mxxwriDwLVdP4YkzH5eeeTKQfHvT9TVNvz", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "cad07be6ac8dc4518c73f77014f86efa2439d835da6b836d2cfc798b62572baf", - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "close_block_index": 150, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012953, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 33, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016", - "price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispensers/
": { - "result": { - "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - }, - "/v2/assets//holders": { - "result": [ - { - "asset": "FAIRMINTA", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_12", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 500000000, - "escrow": null, - "cursor_id": "balances_13", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_14", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "quantity": 9500000000, - "escrow": null, - "cursor_id": "balances_15", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispenses": { - "result": [ - { - "tx_index": 93, - "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "d2a2f1aeab4cc291bda068c60d70fdc43f151a5d777dfb199b19b1b7df63f8b8", - "block_index": 147, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1731012941, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//subassets": { - "result": [ - { - "asset": "A95428958968845068", - "asset_id": "95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 156, - "last_issuance_block_index": 156, - "confirmed": true, - "first_issuance_block_time": 1731012975, - "last_issuance_block_time": 1731012975, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairminters": { - "result": [ - { - "tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1731012858, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairmints": { - "result": [ - { - "tx_hash": "171d3f3e491026217b6016f00d63b4b4a6ff451e56ed482e2e84cfdb7de0874d", - "tx_index": 13, - "block_index": 125, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 9000000000, - "paid_quantity": 9000000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012858, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "90.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "90.00000000" - }, - { - "tx_hash": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "tx_index": 12, - "block_index": 124, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - }, - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012851, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//fairmints/
": { - "result": [ - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012851, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders": { - "result": [ - { - "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013046, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 56, - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 211, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013119, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013161, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013241, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - }, - { - "tx_index": 58, - "tx_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "block_index": 214, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 2000, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 2000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013262, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00002000", - "give_remaining_normalized": "0.00002000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - ], - "next_cursor": 64, - "result_count": 8 - }, - "/v2/orders/": { - "result": { - "tx_index": 92, - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 246, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "give_price": 1.0, - "get_price": 1.0, - "confirmed": true, - "block_time": 1731013334, - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "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", - "give_price_normalized": "1.0000000000000000", - "get_price_normalized": "1.0000000000000000" - } - }, - "/v2/orders//matches": { - "result": [ - { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//btcpays": { - "result": [ - { - "tx_index": 57, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "btc_amount": 2000, - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "status": "valid", - "confirmed": true, - "block_time": 1731013119, - "btc_amount_normalized": "0.00002000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//": { - "result": [ - { - "tx_index": 56, - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 211, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1731013119, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": 58, - "tx_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "block_index": 214, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 2000, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 2000, - "expiration": 21, - "expire_index": 213, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1731013262, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00002000", - "give_remaining_normalized": "0.00002000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 187, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1731013046, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 210, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1731013241, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 217, - "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": 1731013161, - "give_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "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": 64, - "result_count": 7 - }, - "/v2/orders///matches": { - "result": [ - { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 212, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 56, - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 210, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1731013119, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4_9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx0_index": 53, - "tx0_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 54, - "tx1_hash": "9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 187, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1731013046, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/order_matches": { - "result": [ - { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 212, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 56, - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 210, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1731013119, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4_9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx0_index": 53, - "tx0_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 54, - "tx1_hash": "9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 187, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1731013046, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 233, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets/": { - "error": "Not found" - }, - "/v2/bets//matches": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets//resolutions": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/burns": { - "result": [ - { - "tx_index": 9, - "tx_hash": "82ef10e34331f7ca41e6849f885b411185c92f405db3ae3ec71879e57cee14a2", - "block_index": 121, - "source": "bcrt1qx5k7pe38scuhulhq5alf5kn7ls690mrkfl20cw", - "burned": 50000000, - "earned": 74999996667, - "status": "valid", - "confirmed": true, - "block_time": 1731012843, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 8, - "tx_hash": "9d87662145da09d8627f6a8746078fb89b0ac5582bad3d8552426d34efa6cff8", - "block_index": 120, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "burned": 50000000, - "earned": 74999996833, - "status": "valid", - "confirmed": true, - "block_time": 1731012839, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 7, - "tx_hash": "bb9c9d90ed91581771792e32793a5b497366608d64f0e8ce6ed66c4ddb56b4bc", - "block_index": 119, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "burned": 50000000, - "earned": 74999997000, - "status": "valid", - "confirmed": true, - "block_time": 1731012834, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 6, - "tx_hash": "defc829c85487147c6e648542945afc9eaa4a1e3292cda8505a1175702243afa", - "block_index": 118, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "burned": 50000000, - "earned": 74999997167, - "status": "valid", - "confirmed": true, - "block_time": 1731012830, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 5, - "tx_hash": "59c02e273b2b013d84868241daf75161da8f78f3a40c0909a8f83000dc7f023d", - "block_index": 117, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "burned": 50000000, - "earned": 74999997333, - "status": "valid", - "confirmed": true, - "block_time": 1731012827, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - } - ], - "next_cursor": 4, - "result_count": 10 - }, - "/v2/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 29, - "tx_hash": "41e672432e226a30765f1431190a6c7d09beded14a933374bbf2d8970369b86a", - "block_index": 142, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012921, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 30, - "tx_hash": "75b889823e84b7a7059780a1c71629f21476260dba9f397c1331e672b58251be", - "block_index": 150, - "source": "mxxwriDwLVdP4YkzH5eeeTKQfHvT9TVNvz", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "cad07be6ac8dc4518c73f77014f86efa2439d835da6b836d2cfc798b62572baf", - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "close_block_index": 150, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012953, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731013205, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - }, - { - "tx_index": 33, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016", - "price_normalized": "1.0000000000000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "price": 1.0, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001", - "price_normalized": "1.0000000000000000" - } - }, - "/v2/dispensers//dispenses": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/dividends": { - "result": [ - { - "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1731012971, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/dividends/": { - "result": { - "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 20000, - "status": "valid", - "confirmed": true, - "block_time": 1731012971, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - } - }, - "/v2/dividends//credits": { - "result": [ - { - "block_index": 155, - "address": null, - "asset": "XCP", - "quantity": 2000000000, - "calling_function": "dividend", - "event": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "tx_index": 42, - "utxo": "b1c3fb62a65aa5d38fe8b26a4f114dc2bccebbc712bd85dd78382890338632dd:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "confirmed": true, - "block_time": 1731012971, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events": { - "result": [ - { - "event_index": 813, - "event": "BLOCK_PARSED", - "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 - }, - "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 812, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 811, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 226, - "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 810, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 808, - "result_count": 814 - }, - "/v2/events/": { - "result": { - "event_index": 813, - "event": "BLOCK_PARSED", - "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 - }, - "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 - } - }, - "/v2/events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 11 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 79 - }, - { - "event": "SWEEP", - "event_count": 1 - }, - { - "event": "REFILL_DISPENSER", - "event_count": 1 - }, - { - "event": "ORDER_UPDATE", - "event_count": 17 - } - ], - "next_cursor": "ORDER_MATCH_UPDATE", - "result_count": 36 - }, - "/v2/events/": { - "result": [ - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 807, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 804, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 226, - "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - }, - { - "event_index": 789, - "event": "CREDIT", - "params": { - "address": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428959531084712", - "block_index": 224, - "calling_function": "fairmint", - "event": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "quantity": 100, - "tx_index": 91, - "utxo": null, - "utxo_address": null, - "block_time": 1731013330, - "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000100" - }, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "block_index": 224, - "block_time": 1731013330 - }, - { - "event_index": 760, - "event": "CREDIT", - "params": { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "block_index": 220, - "calling_function": "cancel order", - "event": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "quantity": 0, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 1731013306, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000000" - }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 - } - ], - "next_cursor": 748, - "result_count": 102 - }, - "/v2/events//count": { - "result": { - "event": "CREDIT", - "event_count": 102 - } - }, - "/v2/dispenses": { - "result": [ - { - "tx_index": 93, - "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 69, - "dispense_index": 0, - "tx_hash": "8b51574d7a2ef789369c96bd0dfaca9a239aeea7d2fa8ebea5bed8f015933ffc", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 68, - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731013205, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "d2a2f1aeab4cc291bda068c60d70fdc43f151a5d777dfb199b19b1b7df63f8b8", - "block_index": 147, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1731012941, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012917, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1731012914, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/sends": { - "result": [ - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "XCP", - "quantity": 2000000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "asset": "MYASSETA", - "quantity": 2000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "20.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": "memo1", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": "memo3", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "MPMASSET", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": "the memo", - "fee_paid": 0, - "confirmed": true, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 31, - "result_count": 36 - }, - "/v2/issuances": { - "result": [ - { - "tx_index": 91, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "msg_index": 0, - "block_index": 224, - "asset": "A95428959531084712", - "quantity": 100, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 90, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "msg_index": 0, - "block_index": 223, - "asset": "A95428959531084712", - "quantity": 0, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731013317, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 89, - "tx_hash": "31ddbede4e5359e8287b5215be2e74bef6de1c95a61d9b17bf0ed6c772684213", - "msg_index": 0, - "block_index": 222, - "asset": "A95428960428101357", - "quantity": 0, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.A95428960545690062", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731013312, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 88, - "tx_hash": "82fa09aa8d3a514ae27162cf0c3243fdfda5a5f7194d7f116b5bc8205c74560b", - "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", - "quantity": 0, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731013309, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 87, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "msg_index": 0, - "block_index": 220, - "asset": "A95428960545690062", - "quantity": 0, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super subasset SUBASSETB", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTB.SUBASSETB", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731013306, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 32, - "result_count": 37 - }, - "/v2/issuances/": { - "result": { - "tx_index": 91, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "msg_index": 0, - "block_index": 224, - "asset": "A95428959531084712", - "quantity": 100, - "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" - } - }, - "/v2/sweeps": { - "result": [ - { - "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1731013178, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/sweeps/": { - "result": [ - { - "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1731013178, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/broadcasts": { - "result": [ - { - "tx_index": 25, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1731012907, - "fee_fraction_int_normalized": "0.00000000" - }, - { - "tx_index": 24, - "tx_hash": "d3dc005570f40d90bd51eeeede95c4582735448274c01ed97d245ec63b6bd7e0", - "block_index": 137, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1731012904, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/broadcasts/": { - "result": { - "tx_index": 25, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1731012907, - "fee_fraction_int_normalized": "0.00000000" - } - }, - "/v2/fairminters": { - "result": [ - { - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "tx_index": 90, - "block_index": 223, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428959531084712", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 100, - "commission": 0, - "paid_quantity": 0, - "confirmed": true, - "block_time": 1731013317, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "31ddbede4e5359e8287b5215be2e74bef6de1c95a61d9b17bf0ed6c772684213", - "tx_index": 89, - "block_index": 222, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960428101357", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.A95428960545690062", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1731013312, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "82fa09aa8d3a514ae27162cf0c3243fdfda5a5f7194d7f116b5bc8205c74560b", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1731013309, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "tx_index": 87, - "block_index": 220, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960545690062", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETB", - "description": "My super subasset SUBASSETB", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1731013306, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "55f8e6194deca2dcbb67d91ac22adfce047874568bf939770b04a70870eae9ca", - "tx_index": 86, - "block_index": 219, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960939749879", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETA", - "description": "My super subasset SUBASSETA", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1731013291, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - } - ], - "next_cursor": 6, - "result_count": 11 - }, - "/v2/fairmints": { - "result": [ - { - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_index": 224, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "asset": "A95428959531084712", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731013330, - "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "330bcdc1efb0f0eefb82b43e33edd493447f183534cbf1b2b8e0528d36758ae8", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012996, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "8da06ad9553f8287728bd48694be0ab4fcfdf7ddfc15e0a891c0c81fffbfe69a", - "tx_index": 45, - "block_index": 158, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "asset": "FREEFAIRMINT", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012993, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "630805fffd087574a7a1d8b1a599c2d2897e31e2729acf5680ea8c59bdc9ae7a", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "b7a19fb3d0e07ac1d7f875a48825c16bd693ce37c21cef7cb57b5f474c01af0b", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012900, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "0b3a3e5ed490567007b0ae405c334ccb3483786b9d6aa87b451c579478c87a95", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012892, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - } - ], - "next_cursor": 8, - "result_count": 13 - }, - "/v2/fairmints/": { - "result": { - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_index": 224, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "asset": "A95428959531084712", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731013330, - "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - } - }, - "/v2/bitcoin/addresses/utxos": { - "result": [ - { - "vout": 0, - "height": 208, - "value": 546, - "confirmations": 19, - "amount": 5.46e-06, - "txid": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", - "address": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll" - }, - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 20, - "amount": 5.46e-06, - "txid": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", - "address": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll" - }, - { - "vout": 1, - "height": 225, - "value": 4949928908, - "confirmations": 2, - "amount": 49.49928908, - "txid": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "address": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions": { - "result": [ - { - "tx_hash": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01" - }, - { - "tx_hash": "0efd475340fb2efc5992dadcb14517e50208eb016cbb274ad07c3b39576b3a0f" - }, - { - "tx_hash": "07e4d477484d8b240e79187661b2b17ace7bca834f56f0dcd3deacd6463f5511" - }, - { - "tx_hash": "222b5841b172092e2fc121d5ad18699ad686f5a735b74cc7d4f038df90a87e29" - }, - { - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878" - }, - { - "tx_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d" - }, - { - "tx_hash": "ac82d1dd20f4b92b81ce49d329adaff15eafbdb92691e09b2fb79f636a1bf8a7" - }, - { - "tx_hash": "217add47cf071a49296dc90d567f1d3628d040f5525223a29ca2c530f78bbde8" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions/oldest": { - "result": { - "block_index": 7, - "tx_hash": "130aa6db9a383fd4d0a1f09af358313c9c93fb0723b51c4926a23829207b2a82" - } - }, - "/v2/bitcoin/addresses/
/utxos": { - "result": [ - { - "vout": 0, - "height": 208, - "value": 546, - "confirmations": 19, - "amount": 5.46e-06, - "txid": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2" - }, - { - "vout": 1, - "height": 207, - "value": 546, - "confirmations": 20, - "amount": 5.46e-06, - "txid": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f" - }, - { - "vout": 1, - "height": 225, - "value": 4949928908, - "confirmations": 2, - "amount": 49.49928908, - "txid": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/pubkey": { - "result": "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533" - }, - "/v2/bitcoin/transactions/": { - "result": "02000000000101c90652e50b110ffbebfec866ff24260878ea1adece4ae47af2ca7e8529f7ea0e0100000000ffffffff03e8030000000000001600149755319bc2231accd1b895e0999b1cfdb799800a00000000000000000c6a0ac34cc6f951e32c0b41868714092701000000160014e758594e9089d0b318d0b4045c4517ccd0604a18024730440220498b1517be5b2cbf902ef3f66c92297888e16f1ed0290850638bcf05be885f4902204c819a73ea7a24c475d5a3fcf22c04fcfc476bd6e41cd663b54a124aece0e30701210390fcebb83db8eae04b42d9574b060b1baaa2b2606b6a5e643eeef5084620bbeb00000000" - }, - "/v2/bitcoin/estimatesmartfee": { - "result": 58684 - }, - "/v2/bitcoin/transactions/decode": { - "result": { - "txid": "0af935874d4d8c588f4c30a68c39d96906bf20ba20accd4337b8fcfc0196299b", - "hash": "b265ef6af958f89b1c835f0956c5c374761e5f5d3b7910ee0e79e0e08900affd", - "version": 2, - "size": 143, - "vsize": 140, - "weight": 557, - "locktime": 0, - "vin": [ - { - "txid": "4d9512137f191591e308483bdc0408642e5520be29f418adae44eacb8045c999", - "vout": 0, - "scriptSig": { - "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", - "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0" - }, - "txinwitness": [ - "", - "" - ], - "sequence": 4294967295 - } - ], - "vout": [ - { - "value": 0.5, - "n": 0, - "scriptPubKey": { - "asm": "OP_DUP OP_HASH160 a11b66a67b3ff69671c8f82254099faf374b800e OP_EQUALVERIFY OP_CHECKSIG", - "desc": "addr(mvCounterpartyXXXXXXXXXXXXXXW24Hef)#3dsuzcep", - "hex": "76a914a11b66a67b3ff69671c8f82254099faf374b800e88ac", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "type": "pubkeyhash" - } - }, - { - "value": 49.4999, - "n": 1, - "scriptPubKey": { - "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", - "desc": "addr(bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut)#arywlyjk", - "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", - "address": "bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut", - "type": "witness_v0_keyhash" - } - } - ] - } - }, - "/v2/bitcoin/getmempoolinfo": { - "result": { - "loaded": true, - "size": 1, - "bytes": 167, - "usage": 1232, - "total_fee": 0.0001, - "maxmempool": 300000000, - "mempoolminfee": 0.0, - "minrelaytxfee": 0.0, - "incrementalrelayfee": 1e-05, - "unbroadcastcount": 1, - "fullrbf": false - } - }, - "/v2/mempool/events": { - "result": [ - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94 - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "quantity": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "status": "valid", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "CREDIT", - "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "XCP", - "block_index": 226, - "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "XCP", - "block_index": 226, - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1731013347.1804786, - "btc_amount": 0, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", - "destination": "", - "fee": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "utxos_info": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1731013347.1804786 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/mempool/events/": { - "result": [ - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "CREDIT", - "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "XCP", - "block_index": 226, - "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/mempool/transactions//events": { - "result": [ - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94 - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "quantity": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "status": "valid", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "CREDIT", - "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "XCP", - "block_index": 226, - "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "XCP", - "block_index": 226, - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "quantity": 10000, - "tx_index": 94, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1731013347.1804786 - }, - { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1731013347.1804786, - "btc_amount": 0, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", - "destination": "", - "fee": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "utxos_info": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d:1 2 ", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1731013347.1804786 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/healthz": { - "result": { - "status": "Healthy" - } - }, - "/healthz": { - "result": { - "status": "Healthy" - } - }, - "/v2/events/NEW_BLOCK": { - "result": [ - { - "event_index": 800, - "event": "NEW_BLOCK", - "params": { - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_index": 226, - "block_time": 1731013342, - "difficulty": 545259519, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897" - }, - "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 794, - "result_count": 126 - }, - "/v2/events/NEW_TRANSACTION": { - "result": [ - { - "event_index": 801, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_index": 226, - "block_time": 1731013342, - "btc_amount": 1000, - "data": "0d00", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "fee": 0, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 795, - "result_count": 94 - }, - "/v2/events/NEW_TRANSACTION_OUTPUT": { - "result": [ - { - "event_index": 802, - "event": "NEW_TRANSACTION_OUTPUT", - "params": { - "block_index": 226, - "btc_amount": 1000, - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "out_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 597, - "result_count": 5 - }, - "/v2/events/BLOCK_PARSED": { - "result": [ - { - "event_index": 813, - "event": "BLOCK_PARSED", - "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", - "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 - }, - "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 799, - "result_count": 126 - }, - "/v2/events/TRANSACTION_PARSED": { - "result": [ - { - "event_index": 812, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 798, - "result_count": 79 - }, - "/v2/events/DEBIT": { - "result": [ - { - "event_index": 806, - "event": "DEBIT", - "params": { - "action": "utxo move", - "address": null, - "asset": "XCP", - "block_index": 226, - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 2000000000, - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 803, - "result_count": 80 - }, - "/v2/events/CREDIT": { - "result": [ - { - "event_index": 809, - "event": "CREDIT", - "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "asset": "XCP", - "block_index": 226, - "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "quantity": 66, - "tx_index": 93, - "utxo": null, - "utxo_address": null, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 807, - "result_count": 102 - }, - "/v2/events/ENHANCED_SEND": { - "result": [ - { - "event_index": 656, - "event": "ENHANCED_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 210, - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "memo": null, - "quantity": 1000, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "status": "valid", - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "tx_index": 77, - "block_time": 1731013238, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" - }, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_time": 1731013238 - } - ], - "next_cursor": 533, - "result_count": 3 - }, - "/v2/events/MPMA_SEND": { - "result": [ - { - "event_index": 716, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "status": "valid", - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, - "block_time": 1731013262, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_time": 1731013262 - } - ], - "next_cursor": 715, - "result_count": 15 - }, - "/v2/events/SEND": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_TRANSFER": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/SWEEP": { - "result": [ - { - "event_index": 576, - "event": "SWEEP", - "params": { - "block_index": 199, - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "fee_paid": 600000, - "flags": 1, - "memo": "sweep my assets", - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "status": "valid", - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "tx_index": 65, - "block_time": 1731013178, - "fee_paid_normalized": "0.00600000" - }, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "block_time": 1731013178 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ASSET_DIVIDEND": { - "result": [ - { - "event_index": 344, - "event": "ASSET_DIVIDEND", - "params": { - "asset": "MYASSETA", - "block_index": 155, - "dividend_asset": "XCP", - "fee_paid": 20000, - "quantity_per_unit": 100000000, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "status": "valid", - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "tx_index": 42, - "block_time": 1731012971, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - }, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "block_time": 1731012971 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/RESET_ISSUANCE": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_CREATION": { - "result": [ - { - "event_index": 783, - "event": "ASSET_CREATION", - "params": { - "asset_id": "95428959531084712", - "asset_longname": "PARENTA.SUBASSETC", - "asset_name": "A95428959531084712", - "block_index": 223, - "block_time": 1731013317 - }, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "block_index": 223, - "block_time": 1731013317 - } - ], - "next_cursor": 776, - "result_count": 20 - }, - "/v2/events/ASSET_ISSUANCE": { - "result": [ - { - "event_index": 791, - "event": "ASSET_ISSUANCE", - "params": { - "asset": "A95428959531084712", - "asset_events": "fairmint", - "asset_longname": "PARENTA.SUBASSETC", - "block_index": 224, - "call_date": 0, - "call_price": 0.0, - "callable": false, - "description": "", - "description_locked": false, - "divisible": true, - "fair_minting": true, - "fee_paid": 0, - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "locked": false, - "msg_index": 0, - "quantity": 100, - "reset": false, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "status": "valid", - "transfer": false, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "block_index": 224, - "block_time": 1731013330 - } - ], - "next_cursor": 784, - "result_count": 37 - }, - "/v2/events/ASSET_DESTRUCTION": { - "result": [ - { - "event_index": 582, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "XCP", - "block_index": 200, - "quantity": 1, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "status": "valid", - "tag": "64657374726f79", - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "tx_index": 66, - "block_time": 1731013183, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000001" - }, - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "block_index": 200, - "block_time": 1731013183 - } - ], - "next_cursor": 157, - "result_count": 2 - }, - "/v2/events/OPEN_ORDER": { - "result": [ - { - "event_index": 797, - "event": "OPEN_ORDER", - "params": { - "block_index": 225, - "expiration": 21, - "expire_index": 246, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "status": "open", - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "tx_index": 92, - "block_time": 1731013334, - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "block_time": 1731013334 - } - ], - "next_cursor": 564, - "result_count": 8 - }, - "/v2/events/ORDER_MATCH": { - "result": [ - { - "event_index": 694, - "event": "ORDER_MATCH", - "params": { - "backward_asset": "BTC", - "backward_quantity": 1000, - "block_index": 213, - "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 1000, - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "match_expire_index": 233, - "status": "pending", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx0_block_index": 198, - "tx0_expiration": 21, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_index": 64, - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "tx1_block_index": 213, - "tx1_expiration": 21, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_index": 58, - "block_time": 1731013258, - "forward_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_time": 1731013258 - } - ], - "next_cursor": 521, - "result_count": 4 - }, - "/v2/events/ORDER_UPDATE": { - "result": [ - { - "event_index": 759, - "event": "ORDER_UPDATE", - "params": { - "status": "expired", - "tx_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae" - }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 - } - ], - "next_cursor": 707, - "result_count": 17 - }, - "/v2/events/ORDER_FILLED": { - "result": [ - { - "event_index": 512, - "event": "ORDER_FILLED", - "params": { - "status": "filled", - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d" - }, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "block_time": 1731013119 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_MATCH_UPDATE": { - "result": [ - { - "event_index": 688, - "event": "ORDER_MATCH_UPDATE", - "params": { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "status": "expired" - }, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_time": 1731013258 - } - ], - "next_cursor": 511, - "result_count": 3 - }, - "/v2/events/BTC_PAY": { - "result": [ - { - "event_index": 513, - "event": "BTC_PAY", - "params": { - "block_index": 191, - "btc_amount": 2000, - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "status": "valid", - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "tx_index": 57, - "block_time": 1731013119, - "btc_amount_normalized": "0.00002000" - }, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "block_time": 1731013119 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/CANCEL_ORDER": { - "result": [ - { - "event_index": 558, - "event": "CANCEL_ORDER", - "params": { - "block_index": 197, - "offer_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "status": "valid", - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", - "tx_index": 63, - "block_time": 1731013161 - }, - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", - "block_index": 197, - "block_time": 1731013161 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_EXPIRATION": { - "result": [ - { - "event_index": 761, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 220, - "order_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "block_time": 1731013306 - }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 - } - ], - "next_cursor": 708, - "result_count": 5 - }, - "/v2/events/ORDER_MATCH_EXPIRATION": { - "result": [ - { - "event_index": 691, - "event": "ORDER_MATCH_EXPIRATION", - "params": { - "block_index": 213, - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "block_time": 1731013258 - }, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_time": 1731013258 - } - ], - "next_cursor": 487, - "result_count": 2 - }, - "/v2/events/OPEN_DISPENSER": { - "result": [ - { - "event_index": 592, - "event": "OPEN_DISPENSER", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 202, - "dispense_count": 0, - "escrow_quantity": 10000, - "give_quantity": 1, - "give_remaining": 10000, - "oracle_address": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "satoshirate": 1, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "status": 0, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "tx_index": 68, - "block_time": 1731013200, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001" - }, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 202, - "block_time": 1731013200 - } - ], - "next_cursor": 272, - "result_count": 5 - }, - "/v2/events/DISPENSER_UPDATE": { - "result": [ - { - "event_index": 810, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 599, - "result_count": 8 - }, - "/v2/events/REFILL_DISPENSER": { - "result": [ - { - "event_index": 261, - "event": "REFILL_DISPENSER", - "params": { - "asset": "XCP", - "block_index": 144, - "destination": "mxxwriDwLVdP4YkzH5eeeTKQfHvT9TVNvz", - "dispense_quantity": 10, - "dispenser_tx_hash": "75b889823e84b7a7059780a1c71629f21476260dba9f397c1331e672b58251be", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx_hash": "63f793d9d267bb69c77bcfb84f11d36a03bc7a7301dc15e28b29b2de3cf7236d", - "tx_index": 31, - "block_time": 1731012929, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000010" - }, - "tx_hash": "63f793d9d267bb69c77bcfb84f11d36a03bc7a7301dc15e28b29b2de3cf7236d", - "block_index": 144, - "block_time": 1731012929 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/DISPENSE": { - "result": [ - { - "event_index": 811, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 226, - "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 600, - "result_count": 5 - }, - "/v2/events/BROADCAST": { - "result": [ - { - "event_index": 218, - "event": "BROADCAST", - "params": { - "block_index": 138, - "fee_fraction_int": 0, - "locked": false, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "status": "valid", - "text": "price-USD", - "timestamp": 4003903983, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "tx_index": 25, - "value": 66600.0, - "block_time": 1731012907, - "fee_fraction_int_normalized": "0.00000000" - }, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "block_time": 1731012907 - } - ], - "next_cursor": 213, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINTER": { - "result": [ - { - "event_index": 782, - "event": "NEW_FAIRMINTER", - "params": { - "asset": "A95428959531084712", - "asset_longname": "PARENTA.SUBASSETC", - "asset_parent": "PARENTA", - "block_index": 223, - "burn_payment": false, - "description": "", - "divisible": true, - "end_block": 0, - "hard_cap": 0, - "lock_description": false, - "lock_quantity": false, - "max_mint_per_tx": 100, - "minted_asset_commission_int": 0, - "pre_minted": false, - "premint_quantity": 0, - "price": 0, - "quantity_by_price": 1, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "start_block": 0, - "status": "open", - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "tx_index": 90, - "block_time": 1731013317, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" - }, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "block_index": 223, - "block_time": 1731013317 - } - ], - "next_cursor": 775, - "result_count": 11 - }, - "/v2/events/FAIRMINTER_UPDATE": { - "result": [ - { - "event_index": 373, - "event": "FAIRMINTER_UPDATE", - "params": { - "status": "closed", - "tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a" - }, - "tx_hash": "330bcdc1efb0f0eefb82b43e33edd493447f183534cbf1b2b8e0528d36758ae8", - "block_index": 159, - "block_time": 1731012996 - } - ], - "next_cursor": 155, - "result_count": 3 - }, - "/v2/events/NEW_FAIRMINT": { - "result": [ - { - "event_index": 790, - "event": "NEW_FAIRMINT", - "params": { - "asset": "A95428959531084712", - "block_index": 224, - "commission": 0, - "earn_quantity": 100, - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "paid_quantity": 0, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "status": "valid", - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_time": 1731013330, - "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" - }, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "block_index": 224, - "block_time": 1731013330 - } - ], - "next_cursor": 372, - "result_count": 13 - }, - "/v2/events/ATTACH_TO_UTXO": { - "result": [ - { - "event_index": 641, - "event": "ATTACH_TO_UTXO", - "params": { - "asset": "UTXOASSET", - "block_index": 208, - "destination": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2:0", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "status": "valid", - "tx_hash": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", - "tx_index": 75, - "block_time": 1731013229, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", - "block_index": 208, - "block_time": 1731013229 - } - ], - "next_cursor": 616, - "result_count": 5 - }, - "/v2/events/DETACH_FROM_UTXO": { - "result": [ - { - "event_index": 633, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "UTXOASSET", - "block_index": 207, - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "6fb402df4100568b5a3d27acd2a41884f072a9a52dba62ac9ada144ced9d2557:0", - "status": "valid", - "tx_hash": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", - "tx_index": 74, - "block_time": 1731013226, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", - "block_index": 207, - "block_time": 1731013226 - } - ], - "next_cursor": 311, - "result_count": 2 - }, - "/v2/events/UTXO_MOVE": { - "result": [ - { - "event_index": 808, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 226, - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "msg_index": 1, - "quantity": 2000000000, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "status": "valid", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 - } - ], - "next_cursor": 805, - "result_count": 11 - }, - "/v2/events/BURN": { - "result": [ - { - "event_index": 70, - "event": "BURN", - "params": { - "block_index": 121, - "burned": 50000000, - "earned": 74999996667, - "source": "bcrt1qx5k7pe38scuhulhq5alf5kn7ls690mrkfl20cw", - "status": "valid", - "tx_hash": "82ef10e34331f7ca41e6849f885b411185c92f405db3ae3ec71879e57cee14a2", - "tx_index": 9, - "block_time": 1731012843, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - "tx_hash": "82ef10e34331f7ca41e6849f885b411185c92f405db3ae3ec71879e57cee14a2", - "block_index": 121, - "block_time": 1731012843 - } - ], - "next_cursor": 65, - "result_count": 10 - } -} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 3fbca7c52d..9f8d6ddc21 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -251,7 +251,7 @@ def generate_addresses_with_btc(self): self.mine_blocks(101) def generate_xcp(self): - print("Generating XCP...") + print("Generating XCP...", self.burn_in_one_block) for address in self.addresses[0:10]: self.send_transaction( address, @@ -773,7 +773,7 @@ def test_transaction_chaining(self): class RegtestNodeThread(threading.Thread): - def __init__(self, wsgi_server="waitress", burn_in_one_block=False): + def __init__(self, wsgi_server="waitress", burn_in_one_block=True): threading.Thread.__init__(self) self.wsgi_server = wsgi_server self.burn_in_one_block = burn_in_one_block diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index f130c50157..3ccaab5365 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -650,4 +650,204 @@ "insufficient XCP balance", ], }, + { + "title": "Create fairminter STARTNOW", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "STARTNOW", + "price": 1, + "description": "let's start now", + "start_block": "$CURRENT_BLOCK + 1", + "soft_cap": 100, + "soft_cap_deadline_block": "$CURRENT_BLOCK", + }, + "expected_error": ["Soft cap deadline block must be > start block."], + }, + { + "title": "Create fairminter STARTNOW", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "STARTNOW", + "price": 1, + "description": "let's start now", + "soft_cap": 100, + "soft_cap_deadline_block": "$CURRENT_BLOCK + 1", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINTER,ASSET_ISSUANCE,CREDIT,DEBIT", + "result": [ + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "block_index": "$BLOCK_INDEX", + "source": "$ADDRESS_9", + "status": "invalid: Soft cap deadline block must be > start block.", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Create fairminter STARTNOW", + "transaction": "fairminter", + "source": "$ADDRESS_9", + "params": { + "asset": "STARTNOW", + "price": 1, + "description": "let's start now", + "soft_cap": 100, + "soft_cap_deadline_block": "$CURRENT_BLOCK + 2", + }, + "set_variables": { + "FAIRMINTER_STARTNOW_HASH": "$TX_HASH", + "FAIRMINTER_STARTNOW_TX_INDEX": "$TX_INDEX", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINTER,ASSET_CREATION,ASSET_ISSUANCE,DEBIT", + "result": [ + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "fairminter fee", + "address": "$ADDRESS_9", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 50000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "STARTNOW", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "let's start now", + "divisible": True, + "fair_minting": True, + "fee_paid": 50000000.0, + "issuer": "$ADDRESS_9", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_9", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "150450094622", + "asset_longname": None, + "asset_name": "STARTNOW", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "STARTNOW", + "asset_longname": "", + "asset_parent": "", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "let's start now", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 0, + "price": 1, + "quantity_by_price": 1, + "soft_cap": 100, + "soft_cap_deadline_block": "$BLOCK_INDEX + 1", + "source": "$ADDRESS_9", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "mint empty block to trigger close of fairminters", + "transaction": "mine_blocks", + "params": {"blocks": 1}, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=FAIRMINTER_UPDATE,ASSET_ISSUANCE", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "STARTNOW", + "asset_events": "close_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "let's start now", + "description_locked": False, + "divisible": True, + "fair_minting": False, + "fee_paid": 50000000, + "issuer": "$ADDRESS_9", + "locked": False, + "msg_index": 1, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_9", + "status": "valid", + "transfer": False, + "tx_hash": "$FAIRMINTER_STARTNOW_HASH", + "tx_index": "$FAIRMINTER_STARTNOW_TX_INDEX", + }, + "tx_hash": None, + }, + { + "event": "FAIRMINTER_UPDATE", + "event_index": "$EVENT_INDEX_2", + "params": {"status": "closed", "tx_hash": "$FAIRMINTER_STARTNOW_HASH"}, + "tx_hash": None, + }, + ], + } + ], + }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 778c5c815e..fc8f860701 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -30,6 +30,7 @@ scenario_18_utxo, scenario_19_mpma, scenario_20_fairminter, + scenario_21_fairminter, scenario_last_mempool, ) from termcolor import colored @@ -55,13 +56,14 @@ SCENARIOS += scenario_18_utxo.SCENARIO SCENARIOS += scenario_19_mpma.SCENARIO SCENARIOS += scenario_20_fairminter.SCENARIO +SCENARIOS += scenario_21_fairminter.SCENARIO # more scenarios before this one SCENARIOS += scenario_last_mempool.SCENARIO CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = scenario_20_fairminter.SCENARIO +SCENARIOS = scenario_21_fairminter.SCENARIO def compare_strings(string1, string2): @@ -87,6 +89,15 @@ def prepare_item(item, node, context): for key in item["params"]: if isinstance(item["params"][key], str): item["params"][key] = item["params"][key].replace(f"${name}", value) + for key in item["params"]: + if isinstance(item["params"][key], str): + item["params"][key] = ( + item["params"][key] + .replace("$CURRENT_BLOCK + 1", str(node.block_count + 1)) + .replace("$CURRENT_BLOCK + 2", str(node.block_count + 2)) + .replace("$CURRENT_BLOCK + 3", str(node.block_count + 3)) + .replace("$CURRENT_BLOCK", str(node.block_count)) + ) return item @@ -153,6 +164,7 @@ def control_result( json.dumps(expected_result) .replace("$TX_HASH", tx_hash) .replace("$BLOCK_HASH", block_hash) + .replace('"$BLOCK_INDEX + 1"', str(block_index + 1)) .replace('"$BLOCK_INDEX"', str(block_index)) .replace('"$TX_INDEX"', str(tx_index)) .replace('"$TX_INDEX - 1"', str(tx_index - 1)) @@ -194,14 +206,14 @@ def control_result( try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError as e: + except AssertionError: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - raise e from e + # raise e from e def run_item(node, item, context): @@ -294,6 +306,8 @@ def run_item(node, item, context): value.replace("$TX_HASH", tx_hash) .replace("$BLOCK_HASH", block_hash) .replace("$TX_INDEX", str(tx_index)) + .replace("$BLOCK_INDEX + 1", str(node.block_count + 1)) + .replace("$BLOCK_INDEX + 2", str(node.block_count + 2)) .replace("$BLOCK_INDEX + 20", str(node.block_count + 20)) .replace("$BLOCK_INDEX + 21", str(node.block_count + 21)) # TODO: make it more generic .replace("$BLOCK_INDEX", str(node.block_count)) @@ -406,7 +420,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From f5b35fe55966c34336c21b63e9f6caf38c649688 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 9 Nov 2024 11:07:06 +0000 Subject: [PATCH 099/138] fix fee_paid field --- .../counterpartycore/lib/messages/fairminter.py | 1 + .../test/regtest/scenarios/scenario_21_fairminter.py | 4 ++-- .../counterpartycore/test/regtest/testscenarios.py | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 6a1a5fdb11..9df094d009 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -644,6 +644,7 @@ def close_fairminter(db, fairminter, block_index): last_issuance["fair_minting"] = False last_issuance["block_index"] = block_index last_issuance["msg_index"] += 1 # (tx_index, msg_index) and (tx_hash, msg_index) are unique + last_issuance["fee_paid"] = 0 if fairminter["lock_quantity"]: last_issuance["locked"] = True if fairminter["lock_description"]: diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index 3ccaab5365..71d1487b79 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -613,7 +613,7 @@ "description_locked": False, "divisible": True, "fair_minting": False, - "fee_paid": 50000000, + "fee_paid": 0, "issuer": "$ADDRESS_9", "locked": False, "msg_index": 1, @@ -826,7 +826,7 @@ "description_locked": False, "divisible": True, "fair_minting": False, - "fee_paid": 50000000, + "fee_paid": 0, "issuer": "$ADDRESS_9", "locked": False, "msg_index": 1, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index fc8f860701..918d5c847e 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -63,7 +63,7 @@ CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -SCENARIOS = scenario_21_fairminter.SCENARIO +# SCENARIOS = scenario_21_fairminter.SCENARIO def compare_strings(string1, string2): @@ -206,14 +206,14 @@ def control_result( try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as e: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - # raise e from e + raise e from e def run_item(node, item, context): From 0c57493417056d3f1d5e24f292915f72987dedc4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 9 Nov 2024 12:42:08 +0000 Subject: [PATCH 100/138] fix regtest; fix utxos_info parsing in utxo.py --- .../counterpartycore/lib/messages/utxo.py | 2 +- .../test/regtest/scenarios/scenario_14_sweep.py | 4 ++-- .../regtest/scenarios/scenario_1_fairminter.py | 13 +++++++------ .../regtest/scenarios/scenario_2_fairminter.py | 4 ++-- .../test/regtest/scenarios/scenario_6_dispenser.py | 4 ++-- .../test/regtest/scenarios/scenario_7_utxo.py | 10 +++++----- .../counterpartycore/test/regtest/testscenarios.py | 14 ++++++++++---- 7 files changed, 29 insertions(+), 22 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index 16f0c11400..6d8feb974c 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -160,7 +160,7 @@ def parse(db, tx, message): # if no destination, we assume the destination is the first non-OP_RETURN output # that's mean the last element of the UTXOs info in `transactions` table if not recipient: - recipient = tx["utxos_info"].split(" ")[-1] + recipient = util.get_destination_from_utxos_info(tx["utxos_info"]) # detach if source is a UTXO if util.is_utxo_format(source): diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_14_sweep.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_14_sweep.py index 1ea89d3d60..be98d02daf 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_14_sweep.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_14_sweep.py @@ -40,7 +40,7 @@ "block_index": "$BLOCK_INDEX", "calling_function": "sweep", "event": "$TX_HASH", - "quantity": 74499387833, + "quantity": 74499388167, "tx_index": "$TX_INDEX", "utxo": None, "utxo_address": None, @@ -56,7 +56,7 @@ "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", - "quantity": 74499387833, + "quantity": 74499388167, "tx_index": "$TX_INDEX", "utxo": None, "utxo_address": None, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py index 8a1e6d2376..50e30caf0f 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py @@ -9,10 +9,11 @@ "price": 1, "hard_cap": 100 * 10**8, "soft_cap": 10 * 10**8, - "soft_cap_deadline_block": 124, + "soft_cap_deadline_block": "$CURRENT_BLOCK + 3", }, "set_variables": { "FAIRMINTA_TX_HASH": "$TX_HASH", + "FAIRMINTA_BLOCK_INDEX": "$BLOCK_INDEX", }, "controls": [ { @@ -37,7 +38,7 @@ "end_block": 0, "minted_asset_commission_int": 0, "soft_cap": 10 * 10**8, - "soft_cap_deadline_block": 124, + "soft_cap_deadline_block": "$BLOCK_INDEX + 2", "lock_description": False, "lock_quantity": False, "divisible": True, @@ -143,7 +144,7 @@ "price": 1, "quantity_by_price": 1, "soft_cap": 10 * 10**8, - "soft_cap_deadline_block": 124, + "soft_cap_deadline_block": "$BLOCK_INDEX + 2", "source": "$ADDRESS_1", "start_block": 0, "status": "open", @@ -161,7 +162,7 @@ "block_index": "$BLOCK_INDEX", "block_time": "$BLOCK_TIME", "btc_amount": 0, - "data": "5a464149524d494e54417c7c317c317c307c31303030303030303030307c307c307c307c313030303030303030307c3132347c307c307c307c307c317c", + "data": "5a464149524d494e54417c7c317c317c307c31303030303030303030307c307c307c307c313030303030303030307c3131357c307c307c307c307c317c", "destination": "", "fee": 10000, "source": "$ADDRESS_1", @@ -654,9 +655,9 @@ "confirmed": True, "description": "", "divisible": True, - "first_issuance_block_index": 122, + "first_issuance_block_index": "$FAIRMINTA_BLOCK_INDEX", "issuer": "$ADDRESS_1", - "last_issuance_block_index": 125, + "last_issuance_block_index": "$BLOCK_INDEX", "locked": False, "owner": "$ADDRESS_1", "supply": 100 * 10**8, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py index 0d99a5fa48..22c91eb036 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_2_fairminter.py @@ -9,7 +9,7 @@ "price": 1, "hard_cap": 100 * 10**8, "soft_cap": 10 * 10**8, - "soft_cap_deadline_block": 130, + "soft_cap_deadline_block": "$CURRENT_BLOCK + 5", }, "set_variables": { "FAIRMINTB_TX_HASH": "$TX_HASH", @@ -38,7 +38,7 @@ "end_block": 0, "minted_asset_commission_int": 0, "soft_cap": 10 * 10**8, - "soft_cap_deadline_block": 130, + "soft_cap_deadline_block": "$BLOCK_INDEX + 4", "lock_description": False, "lock_quantity": False, "divisible": True, 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 d17a82d5bb..2c8471e1a2 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_6_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_6_dispenser.py @@ -234,10 +234,10 @@ "result": [ { "event": "DISPENSER_UPDATE", - "event_index": 266, + "event_index": "$EVENT_INDEX_3", "params": { "asset": "XCP", - "close_block_index": 150, + "close_block_index": "$BLOCK_INDEX + 5", "last_status_tx_hash": "$TX_HASH", "last_status_tx_source": "$ADDRESS_1", "source": "$ADDRESS_1", 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 d9e38cb28d..a829c74771 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -246,7 +246,7 @@ "params": { "address": "$ADDRESS_1", "asset": "XCP", - "block_index": 150, + "block_index": "$BLOCK_INDEX", "calling_function": "close dispenser", "event": "$DISPENSER_4_CLOSE_TX_HASH", "quantity": 20, @@ -665,7 +665,7 @@ { "address": "$ADDRESS_6", "asset": "XCP", - "quantity": 74999987333, + "quantity": 74999988167, "utxo": None, "utxo_address": None, }, @@ -702,19 +702,19 @@ }, { "address": "$ADDRESS_5", - "quantity": 74999997500, + "quantity": 74999998167, "utxo": None, "utxo_address": None, }, { "address": "$ADDRESS_6", - "quantity": 74999987333, + "quantity": 74999988167, "utxo": None, "utxo_address": None, }, ], "asset": "XCP", - "total": 234749973039, + "total": 234749974540, }, ], }, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 918d5c847e..7e5d083944 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -96,6 +96,8 @@ def prepare_item(item, node, context): .replace("$CURRENT_BLOCK + 1", str(node.block_count + 1)) .replace("$CURRENT_BLOCK + 2", str(node.block_count + 2)) .replace("$CURRENT_BLOCK + 3", str(node.block_count + 3)) + .replace("$CURRENT_BLOCK + 4", str(node.block_count + 4)) + .replace("$CURRENT_BLOCK + 5", str(node.block_count + 5)) .replace("$CURRENT_BLOCK", str(node.block_count)) ) return item @@ -165,6 +167,10 @@ def control_result( .replace("$TX_HASH", tx_hash) .replace("$BLOCK_HASH", block_hash) .replace('"$BLOCK_INDEX + 1"', str(block_index + 1)) + .replace('"$BLOCK_INDEX + 2"', str(block_index + 2)) + .replace('"$BLOCK_INDEX + 3"', str(block_index + 3)) + .replace('"$BLOCK_INDEX + 4"', str(block_index + 4)) + .replace('"$BLOCK_INDEX + 5"', str(block_index + 5)) .replace('"$BLOCK_INDEX"', str(block_index)) .replace('"$TX_INDEX"', str(tx_index)) .replace('"$TX_INDEX - 1"', str(tx_index - 1)) @@ -206,14 +212,14 @@ def control_result( try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError as e: + except AssertionError: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - raise e from e + # raise e from e def run_item(node, item, context): @@ -306,10 +312,10 @@ def run_item(node, item, context): value.replace("$TX_HASH", tx_hash) .replace("$BLOCK_HASH", block_hash) .replace("$TX_INDEX", str(tx_index)) - .replace("$BLOCK_INDEX + 1", str(node.block_count + 1)) - .replace("$BLOCK_INDEX + 2", str(node.block_count + 2)) .replace("$BLOCK_INDEX + 20", str(node.block_count + 20)) .replace("$BLOCK_INDEX + 21", str(node.block_count + 21)) # TODO: make it more generic + .replace("$BLOCK_INDEX + 1", str(node.block_count + 1)) + .replace("$BLOCK_INDEX + 2", str(node.block_count + 2)) .replace("$BLOCK_INDEX", str(node.block_count)) ) print(f"Set variable {name} to {context[name]}") From 4e1bfd14f92ad20772f5fd815a1ffaeca42cb544 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 9 Nov 2024 13:58:35 +0000 Subject: [PATCH 101/138] fix regtest --- .../scenarios/scenario_21_fairminter.py | 68 +++++++++---------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index 71d1487b79..6010a51ccf 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -2,7 +2,7 @@ { "title": "Create asset LOCKDESC", "transaction": "issuance", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "LOCKDESC", "quantity": 10 * 10**8, @@ -14,7 +14,7 @@ { "title": "Lock description of LOCKDESC", "transaction": "issuance", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "LOCKDESC", "quantity": 0, @@ -25,7 +25,7 @@ { "title": "Create fairminter on LOCKDESC", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "LOCKDESC", "max_mint_per_tx": 10 * 10**8, @@ -38,7 +38,7 @@ { "title": "Create fairminter on LOCKDESC", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "LOCKDESC", "max_mint_per_tx": 11 * 10**8, @@ -59,7 +59,7 @@ "event": "CREDIT", "event_index": "$EVENT_INDEX_5", "params": { - "address": "$ADDRESS_9", + "address": "$ADDRESS_10", "asset": "LOCKDESC", "block_index": "$BLOCK_INDEX", "calling_function": "premint", @@ -86,11 +86,11 @@ "divisible": True, "fair_minting": True, "fee_paid": 0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": False, "quantity": 10000000000, "reset": False, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", @@ -121,7 +121,7 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "start_block": 0, "status": "open", "tx_hash": "$TX_HASH", @@ -160,7 +160,7 @@ "divisible": True, "fair_minting": False, "fee_paid": 0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": True, "msg_index": 0, "quantity": 1000000000, @@ -200,7 +200,7 @@ "event": "CREDIT", "event_index": "$EVENT_INDEX_4", "params": { - "address": "$ADDRESS_9", + "address": "$ADDRESS_10", "asset": "LOCKDESC", "block_index": "$BLOCK_INDEX", "calling_function": "fairmint commission", @@ -235,7 +235,7 @@ { "title": "Create fairminter BURNER", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "BURNER", "price": 1, @@ -258,7 +258,7 @@ "event_index": "$EVENT_INDEX_6", "params": { "action": "fairminter fee", - "address": "$ADDRESS_9", + "address": "$ADDRESS_10", "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", @@ -284,11 +284,11 @@ "divisible": True, "fair_minting": True, "fee_paid": 50000000.0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": False, "quantity": 0, "reset": False, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", @@ -330,7 +330,7 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "start_block": 0, "status": "open", "tx_hash": "$TX_HASH", @@ -370,7 +370,7 @@ "divisible": True, "fair_minting": False, "fee_paid": 0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": True, "msg_index": 0, "quantity": 100000000, @@ -410,7 +410,7 @@ "event": "CREDIT", "event_index": "$EVENT_INDEX_6", "params": { - "address": "$ADDRESS_9", + "address": "$ADDRESS_10", "asset": "BURNER", "block_index": "$BLOCK_INDEX", "calling_function": "fairmint commission", @@ -476,7 +476,7 @@ { "title": "Create fairminter EXPANSIVE", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "EXPANSIVE", "price": 999 * 10**8, @@ -496,7 +496,7 @@ "event_index": "$EVENT_INDEX_6", "params": { "action": "fairminter fee", - "address": "$ADDRESS_9", + "address": "$ADDRESS_10", "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", @@ -522,11 +522,11 @@ "divisible": True, "fair_minting": True, "fee_paid": 50000000.0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": False, "quantity": 0, "reset": False, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", @@ -568,7 +568,7 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "start_block": 0, "status": "open", "tx_hash": "$TX_HASH", @@ -614,12 +614,12 @@ "divisible": True, "fair_minting": False, "fee_paid": 0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": False, "msg_index": 1, "quantity": 0, "reset": False, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "valid", "transfer": False, "tx_hash": "$FAIRMINTER_EXPANSIVE_HASH", @@ -653,7 +653,7 @@ { "title": "Create fairminter STARTNOW", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "STARTNOW", "price": 1, @@ -667,7 +667,7 @@ { "title": "Create fairminter STARTNOW", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "STARTNOW", "price": 1, @@ -684,7 +684,7 @@ "event_index": "$EVENT_INDEX_3", "params": { "block_index": "$BLOCK_INDEX", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "invalid: Soft cap deadline block must be > start block.", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -698,7 +698,7 @@ { "title": "Create fairminter STARTNOW", "transaction": "fairminter", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "params": { "asset": "STARTNOW", "price": 1, @@ -719,7 +719,7 @@ "event_index": "$EVENT_INDEX_6", "params": { "action": "fairminter fee", - "address": "$ADDRESS_9", + "address": "$ADDRESS_10", "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", @@ -745,11 +745,11 @@ "divisible": True, "fair_minting": True, "fee_paid": 50000000.0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": False, "quantity": 0, "reset": False, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", @@ -791,7 +791,7 @@ "quantity_by_price": 1, "soft_cap": 100, "soft_cap_deadline_block": "$BLOCK_INDEX + 1", - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "start_block": 0, "status": "open", "tx_hash": "$TX_HASH", @@ -827,12 +827,12 @@ "divisible": True, "fair_minting": False, "fee_paid": 0, - "issuer": "$ADDRESS_9", + "issuer": "$ADDRESS_10", "locked": False, "msg_index": 1, "quantity": 0, "reset": False, - "source": "$ADDRESS_9", + "source": "$ADDRESS_10", "status": "valid", "transfer": False, "tx_hash": "$FAIRMINTER_STARTNOW_HASH", From cf9d230e22398a5cce225b8aeb6d18a921164d08 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 9 Nov 2024 16:48:26 +0000 Subject: [PATCH 102/138] finally fix regtest; Tweak fairminter code --- apiary.apib | 6789 +++++----- .../counterpartycore/lib/api/compose.py | 8 +- .../counterpartycore/lib/ledger.py | 2 +- .../counterpartycore/lib/messages/fairmint.py | 4 +- .../lib/messages/fairminter.py | 162 +- .../test/regtest/apidoc/apicache.json | 11050 ++++++++++++++++ .../test/regtest/genapidoc.py | 5 + .../test/regtest/regtestnode.py | 13 + .../scenarios/scenario_21_fairminter.py | 34 +- .../scenarios/scenario_last_mempool.py | 24 + .../test/regtest/testscenarios.py | 6 +- 11 files changed, 14449 insertions(+), 3648 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/apiary.apib b/apiary.apib index adf7e8e7f4..f4270f879e 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-07 21:02:40.205171. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-09 16:44:40.980816. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 800, + "event_index": 879, "event": "NEW_BLOCK", "params": { - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_index": 226, - "block_time": 1731013342, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_index": 230, + "block_time": 1731170663, "difficulty": 545259519, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897" + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592" }, "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 794, - "result_count": 126 + "next_cursor": 871, + "result_count": 130 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 801, + "event_index": 880, "event": "NEW_TRANSACTION", "params": { - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_index": 226, - "block_time": 1731013342, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_index": 230, + "block_time": 1731170663, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "fee": 0, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 795, - "result_count": 94 + "next_cursor": 872, + "result_count": 105 } ``` @@ -242,24 +242,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 802, + "event_index": 881, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 226, + "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "out_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 597, + "next_cursor": 579, "result_count": 5 } ``` @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 813, + "event_index": 892, "event": "BLOCK_PARSED", "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 }, "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 799, - "result_count": 126 + "next_cursor": 878, + "result_count": 130 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 812, + "event_index": 891, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 798, - "result_count": 79 + "next_cursor": 877, + "result_count": 90 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 806, + "event_index": 885, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 226, - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "block_index": 230, + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,13 +343,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 803, - "result_count": 80 + "next_cursor": 882, + "result_count": 87 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,13 +381,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 807, - "result_count": 102 + "next_cursor": 886, + "result_count": 109 } ``` @@ -397,34 +397,34 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 656, + "event_index": 638, "event": "ENHANCED_SEND", "params": { "asset": "MPMASSET", - "block_index": 210, - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "block_index": 201, + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "memo": null, "quantity": 1000, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "status": "valid", - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", "tx_index": 77, - "block_time": 1731013238, + "block_time": 1731170518, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_time": 1731013238 + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_time": 1731170518 } ], - "next_cursor": 533, + "next_cursor": 515, "result_count": 3 } ``` @@ -435,20 +435,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 716, + "event_index": 698, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 205, + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "status": "valid", - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", "tx_index": 81, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,12 +458,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_time": 1731013262 + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_time": 1731170544 } ], - "next_cursor": 715, + "next_cursor": 697, "result_count": 15 } ``` @@ -494,24 +494,24 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 576, + "event_index": 558, "event": "SWEEP", "params": { - "block_index": 199, - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "block_index": 190, + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "status": "valid", - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", "tx_index": 65, - "block_time": 1731013178, + "block_time": 1731170466, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "block_time": 1731013178 + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "block_time": 1731170466 } ], "next_cursor": null, @@ -525,23 +525,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 344, + "event_index": 326, "event": "ASSET_DIVIDEND", "params": { "asset": "MYASSETA", - "block_index": 155, + "block_index": 146, "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "status": "valid", - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", "tx_index": 42, - "block_time": 1731012971, + "block_time": 1731170290, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "block_time": 1731012971 + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "block_time": 1731170290 } ], "next_cursor": null, @@ -583,22 +583,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 783, + "event_index": 874, "event": "ASSET_CREATION", "params": { - "asset_id": "95428959531084712", - "asset_longname": "PARENTA.SUBASSETC", - "asset_name": "A95428959531084712", - "block_index": 223, - "block_time": 1731013317 + "asset_id": "117132633401", + "asset_longname": null, + "asset_name": "OPENFAIR", + "block_index": 229, + "block_time": 1731170650 }, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "block_index": 223, - "block_time": 1731013317 + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_time": 1731170650 } ], - "next_cursor": 776, - "result_count": 20 + "next_cursor": 848, + "result_count": 25 } ``` @@ -608,42 +608,40 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 791, + "event_index": 875, "event": "ASSET_ISSUANCE", "params": { - "asset": "A95428959531084712", - "asset_events": "fairmint", - "asset_longname": "PARENTA.SUBASSETC", - "block_index": 224, + "asset": "OPENFAIR", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": 229, "call_date": 0, - "call_price": 0.0, + "call_price": 0, "callable": false, "description": "", - "description_locked": false, "divisible": true, "fair_minting": true, - "fee_paid": 0, - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "fee_paid": 50000000.0, + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "locked": false, - "msg_index": 0, - "quantity": 100, + "quantity": 0, "reset": false, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": "valid", "transfer": false, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" }, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "block_index": 224, - "block_time": 1731013330 + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_time": 1731170650 } ], - "next_cursor": 784, - "result_count": 37 + "next_cursor": 855, + "result_count": 48 } ``` @@ -653,18 +651,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 582, + "event_index": 817, "event": "ASSET_DESTRUCTION", "params": { "asset": "XCP", - "block_index": 200, - "quantity": 1, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "block_index": 221, + "quantity": 100000000, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": "valid", - "tag": "64657374726f79", - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "tx_index": 66, - "block_time": 1731013183, + "tag": "burn fairmint payment", + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_time": 1731170622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -672,15 +670,15 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "locked": true }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "1.00000000" }, - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "block_index": 200, - "block_time": 1731013183 + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_time": 1731170622 } ], - "next_cursor": 157, - "result_count": 2 + "next_cursor": 564, + "result_count": 3 } ``` @@ -692,41 +690,41 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 797, + "event_index": 865, "event": "OPEN_ORDER", "params": { - "block_index": 225, + "block_index": 228, "expiration": 21, - "expire_index": 246, + "expire_index": 249, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, "fee_required_remaining": 0, - "get_asset": "BTC", + "get_asset": "UTXOASSET", "get_quantity": 1000, "get_remaining": 1000, - "give_asset": "UTXOASSET", + "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": "open", - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "tx_index": 92, - "block_time": 1731013334, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_index": 102, + "block_time": 1731170647, "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "get_asset_info": { "divisible": true, "asset_longname": null, "description": "The Bitcoin cryptocurrency", "locked": false, "issuer": null }, + "get_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", "get_remaining_normalized": "0.00001000", @@ -736,13 +734,13 @@ 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": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "block_time": 1731013334 + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_time": 1731170647 } ], - "next_cursor": 564, - "result_count": 8 + "next_cursor": 860, + "result_count": 9 } ``` @@ -752,35 +750,35 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 694, + "event_index": 868, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 213, + "block_index": 228, "fee_paid": 0, - "forward_asset": "XCP", + "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "match_expire_index": 233, + "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "match_expire_index": 248, "status": "pending", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx0_block_index": 198, + "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx0_block_index": 227, "tx0_expiration": 21, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_index": 64, - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "tx1_block_index": 213, + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_index": 101, + "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx1_block_index": 228, "tx1_expiration": 21, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_index": 58, - "block_time": 1731013258, + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_index": 102, + "block_time": 1731170647, "forward_asset_info": { "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "divisible": true, - "locked": true + "locked": false }, "backward_asset_info": { "divisible": true, @@ -793,13 +791,13 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_time": 1731013258 + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_time": 1731170647 } ], - "next_cursor": 521, - "result_count": 4 + "next_cursor": 676, + "result_count": 5 } ``` @@ -809,19 +807,25 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 759, + "event_index": 867, "event": "ORDER_UPDATE", "params": { - "status": "expired", - "tx_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae" + "fee_provided_remaining": 10000, + "fee_required_remaining": 0, + "get_remaining": 0, + "give_remaining": 0, + "status": "open", + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_time": 1731170647 } ], - "next_cursor": 707, - "result_count": 17 + "next_cursor": 866, + "result_count": 19 } ``` @@ -831,15 +835,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 512, + "event_index": 494, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d" + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f" }, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "block_time": 1731013119 + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "block_time": 1731170429 } ], "next_cursor": null, @@ -853,20 +857,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 688, + "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "status": "expired" }, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_time": 1731013258 + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 } ], - "next_cursor": 511, - "result_count": 3 + "next_cursor": 670, + "result_count": 4 } ``` @@ -876,23 +880,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 513, + "event_index": 495, "event": "BTC_PAY", "params": { - "block_index": 191, + "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "status": "valid", - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", "tx_index": 57, - "block_time": 1731013119, + "block_time": 1731170429, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "block_time": 1731013119 + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "block_time": 1731170429 } ], "next_cursor": null, @@ -906,20 +910,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 558, + "event_index": 540, "event": "CANCEL_ORDER", "params": { - "block_index": 197, - "offer_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 188, + "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "status": "valid", - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", "tx_index": 63, - "block_time": 1731013161 + "block_time": 1731170449 }, - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", - "block_index": 197, - "block_time": 1731013161 + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "block_index": 188, + "block_time": 1731170449 } ], "next_cursor": null, @@ -933,20 +937,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 761, + "event_index": 743, "event": "ORDER_EXPIRATION", "params": { - "block_index": 220, - "order_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "block_time": 1731013306 + "block_index": 211, + "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_time": 1731170575 }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 + "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "block_index": 211, + "block_time": 1731170575 } ], - "next_cursor": 708, + "next_cursor": 690, "result_count": 5 } ``` @@ -957,22 +961,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 691, + "event_index": 846, "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 213, - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "block_time": 1731013258 + "block_index": 225, + "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "block_time": 1731170636 }, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_time": 1731013258 + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 } ], - "next_cursor": 487, - "result_count": 2 + "next_cursor": 673, + "result_count": 3 } ``` @@ -984,27 +988,27 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 592, + "event_index": 574, "event": "OPEN_DISPENSER", "params": { "asset": "TESTLOCKDESC", - "block_index": 202, + "block_index": 193, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "satoshirate": 1, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "status": 0, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", "tx_index": 68, - "block_time": 1731013200, + "block_time": 1731170479, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -1013,12 +1017,12 @@ 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": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 202, - "block_time": 1731013200 + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 193, + "block_time": 1731170479 } ], - "next_cursor": 272, + "next_cursor": 254, "result_count": 5 } ``` @@ -1029,15 +1033,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 810, + "event_index": 889, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1047,12 +1051,12 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 599, + "next_cursor": 581, "result_count": 8 } ``` @@ -1063,18 +1067,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 261, + "event_index": 243, "event": "REFILL_DISPENSER", "params": { "asset": "XCP", - "block_index": 144, - "destination": "mxxwriDwLVdP4YkzH5eeeTKQfHvT9TVNvz", + "block_index": 135, + "destination": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", "dispense_quantity": 10, - "dispenser_tx_hash": "75b889823e84b7a7059780a1c71629f21476260dba9f397c1331e672b58251be", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx_hash": "63f793d9d267bb69c77bcfb84f11d36a03bc7a7301dc15e28b29b2de3cf7236d", + "dispenser_tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", "tx_index": 31, - "block_time": 1731012929, + "block_time": 1731170239, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1084,9 +1088,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "63f793d9d267bb69c77bcfb84f11d36a03bc7a7301dc15e28b29b2de3cf7236d", - "block_index": 144, - "block_time": 1731012929 + "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "block_index": 135, + "block_time": 1731170239 } ], "next_cursor": null, @@ -1100,20 +1104,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 811, + "event_index": 890, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 226, + "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1124,12 +1128,12 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 600, + "next_cursor": 582, "result_count": 5 } ``` @@ -1142,28 +1146,28 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 218, + "event_index": 200, "event": "BROADCAST", "params": { - "block_index": 138, + "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", "tx_index": 25, "value": 66600.0, - "block_time": 1731012907, + "block_time": 1731170218, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "block_time": 1731012907 + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "block_time": 1731170218 } ], - "next_cursor": 213, + "next_cursor": 195, "result_count": 2 } ``` @@ -1176,13 +1180,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 782, + "event_index": 873, "event": "NEW_FAIRMINTER", "params": { - "asset": "A95428959531084712", - "asset_longname": "PARENTA.SUBASSETC", - "asset_parent": "PARENTA", - "block_index": 223, + "asset": "OPENFAIR", + "asset_longname": "", + "asset_parent": "", + "block_index": 229, "burn_payment": false, "description": "", "divisible": true, @@ -1190,7 +1194,7 @@ Here is a list of events classified by theme and for each an example response: "hard_cap": 0, "lock_description": false, "lock_quantity": false, - "max_mint_per_tx": 100, + "max_mint_per_tx": 10, "minted_asset_commission_int": 0, "pre_minted": false, "premint_quantity": 0, @@ -1198,26 +1202,26 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "start_block": 0, "status": "open", - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "tx_index": 90, - "block_time": 1731013317, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_time": 1731170650, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", + "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "block_index": 223, - "block_time": 1731013317 + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_time": 1731170650 } ], - "next_cursor": 775, - "result_count": 11 + "next_cursor": 847, + "result_count": 17 } ``` @@ -1227,19 +1231,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 373, + "event_index": 854, "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a" + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2" }, - "tx_hash": "330bcdc1efb0f0eefb82b43e33edd493447f183534cbf1b2b8e0528d36758ae8", - "block_index": 159, - "block_time": 1731012996 + "tx_hash": null, + "block_index": 226, + "block_time": 1731170640 } ], - "next_cursor": 155, - "result_count": 3 + "next_cursor": 834, + "result_count": 7 } ``` @@ -1249,38 +1253,38 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 790, + "event_index": 820, "event": "NEW_FAIRMINT", "params": { - "asset": "A95428959531084712", - "block_index": 224, - "commission": 0, - "earn_quantity": 100, - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "paid_quantity": 0, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset": "BURNER", + "block_index": 221, + "commission": 20000000, + "earn_quantity": 80000000, + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "paid_quantity": 100000000, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": "valid", - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_time": 1731013330, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_time": 1731170622, "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "block_index": 224, - "block_time": 1731013330 + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_time": 1731170622 } ], - "next_cursor": 372, - "result_count": 13 + "next_cursor": 801, + "result_count": 15 } ``` @@ -1292,36 +1296,36 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 641, + "event_index": 623, "event": "ATTACH_TO_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 208, - "destination": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2:0", + "block_index": 199, + "destination": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "status": "valid", - "tx_hash": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", + "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", "tx_index": 75, - "block_time": 1731013229, + "block_time": 1731170511, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", - "block_index": 208, - "block_time": 1731013229 + "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "block_index": 199, + "block_time": 1731170511 } ], - "next_cursor": 616, + "next_cursor": 598, "result_count": 5 } ``` @@ -1332,36 +1336,36 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 633, + "event_index": 615, "event": "DETACH_FROM_UTXO", "params": { "asset": "UTXOASSET", - "block_index": 207, - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "block_index": 198, + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "6fb402df4100568b5a3d27acd2a41884f072a9a52dba62ac9ada144ced9d2557:0", + "source": "bd0cc61333f0c591a8faeb275cd4145f6a3b7f6f13450abe8ae7f1615eccb027:0", "status": "valid", - "tx_hash": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", + "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", "tx_index": 74, - "block_time": 1731013226, + "block_time": 1731170508, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", - "block_index": 207, - "block_time": 1731013226 + "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "block_index": 198, + "block_time": 1731170508 } ], - "next_cursor": 311, + "next_cursor": 293, "result_count": 2 } ``` @@ -1372,19 +1376,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 808, + "event_index": 887, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 226, - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "block_index": 230, + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "msg_index": 1, "quantity": 2000000000, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", "status": "valid", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1394,12 +1398,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 805, + "next_cursor": 884, "result_count": 11 } ``` @@ -1412,26 +1416,26 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 70, + "event_index": 52, "event": "BURN", "params": { - "block_index": 121, + "block_index": 112, "burned": 50000000, - "earned": 74999996667, - "source": "bcrt1qx5k7pe38scuhulhq5alf5kn7ls690mrkfl20cw", + "earned": 74999998167, + "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", "status": "valid", - "tx_hash": "82ef10e34331f7ca41e6849f885b411185c92f405db3ae3ec71879e57cee14a2", + "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", "tx_index": 9, - "block_time": 1731012843, + "block_time": 1731170152, "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" + "earned_normalized": "749.99998000" }, - "tx_hash": "82ef10e34331f7ca41e6849f885b411185c92f405db3ae3ec71879e57cee14a2", - "block_index": 121, - "block_time": 1731012843 + "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "block_index": 112, + "block_time": 1731170152 } ], - "next_cursor": 65, + "next_cursor": 50, "result_count": 10 } ``` @@ -1467,7 +1471,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `226` (str, optional) - The index of the most recent block to return + + cursor: `230` (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` @@ -1484,68 +1488,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", "difficulty": 545259519, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, "confirmed": true }, { - "block_index": 225, - "block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "block_time": 1731013334, - "previous_block_hash": "167c891a8b5bd8e6aace420c0a4141774c5cb5815db1930c644bb0d889250ab9", + "block_index": 229, + "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_time": 1731170650, + "previous_block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", "difficulty": 545259519, - "ledger_hash": "07f344560f8e3cc09cc87480d57507c9763e7e7654392b7c32f1e5c70ad05b17", - "txlist_hash": "d59931d03a651f130054608fffa3feda233756e7dd993e8528639e4aa17c741a", - "messages_hash": "8e291b7e59f2a3b521906e37aaafde3015639e4e6a4fa84279db80f8cb9859d6", + "ledger_hash": "32c5289ae300409d32353a02ab854732618437b376437ebcf7d91c70b91bd3d1", + "txlist_hash": "23d786f098b22a10781ba3ab8c728fd8dab73e55d938cf07700d8de478760ffc", + "messages_hash": "c0a95fee33e382a7ba4396f55d9ccc9f3e098f709c2484483056cbff90689a96", "transaction_count": 1, "confirmed": true }, { - "block_index": 224, - "block_hash": "167c891a8b5bd8e6aace420c0a4141774c5cb5815db1930c644bb0d889250ab9", - "block_time": 1731013330, - "previous_block_hash": "05088b437c85572807241ea7d6d62c990e0ad64c16f4e1408c16074999f623ae", + "block_index": 228, + "block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", + "block_time": 1731170647, + "previous_block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", "difficulty": 545259519, - "ledger_hash": "714220a359b05c1c4a8751522b4aa735a7892aecf724d273a2ee4eee0f77f272", - "txlist_hash": "1111b5a30c61b412b65af312c5a69ed4f9cf4caa213052c98753ca5551681b71", - "messages_hash": "aa4c6eca069e32d453407bc917c84fe65c8486a2cad354a2faf8f02bb4245f68", + "ledger_hash": "5a67140674a9f6c9a2f402026d5aefac8ff787e6c233434b7cebb02eec73fc07", + "txlist_hash": "ff3364ca977db1535cd7fdbcafd65d4562c34d6b752b5e77453d11093e249c1b", + "messages_hash": "e2f8cbdf4f0a902472c6afefe743027f74a97d6083200432030dc9586f820496", "transaction_count": 1, "confirmed": true }, { - "block_index": 223, - "block_hash": "05088b437c85572807241ea7d6d62c990e0ad64c16f4e1408c16074999f623ae", - "block_time": 1731013317, - "previous_block_hash": "369922049120505950cd8c31fed381810ecdf5333073d9f9a2376e9adcba12e5", + "block_index": 227, + "block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", + "block_time": 1731170643, + "previous_block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", "difficulty": 545259519, - "ledger_hash": "5da98c682805ed3b76f550a8c1305e11f8b1fed9a7925b4dd1b99935882e5358", - "txlist_hash": "2e16028bb4e1f00a32cdf8844de675f248f2680b614c2e3e6b67e66c6a1ee4df", - "messages_hash": "484e30c3e94215bd6f9ec674cb4ea77955857b91016e01516705fa0781a8badc", + "ledger_hash": "3d9b41f0993456731de33261bcd12748cbf82067b9087429f5b9e3d7c89818fc", + "txlist_hash": "32a8bc1b0dfff09a5a6192118c13fd973e95a5232871daa8226aafb3110a2000", + "messages_hash": "335496001ebd01792ec65dfd35289334e3e529c2a91a5f80f0a045eaf5760d53", "transaction_count": 1, "confirmed": true }, { - "block_index": 222, - "block_hash": "369922049120505950cd8c31fed381810ecdf5333073d9f9a2376e9adcba12e5", - "block_time": 1731013312, - "previous_block_hash": "6897327d3bfbe2866a4ad35cb640f88638c6885c5f5504032cb49df090d5ceb4", + "block_index": 226, + "block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", + "block_time": 1731170640, + "previous_block_hash": "677bf845c77de7b1c5b35eb12bf407e9745cdc6f9880fdecd9e825401143514a", "difficulty": 545259519, - "ledger_hash": "e44add2f928713ae4dea675a534f7995a66c1fd0f2f45c3e08409eddbd057b21", - "txlist_hash": "f3199bb36b2c039f3ce8d1b2a6499fbaf531e7b1abf63f5ede95aa94abea406f", - "messages_hash": "5ace9e1621c8cf808791f0b7c4d8272c1a8e252190cee3dbcb7df55f184f7821", - "transaction_count": 1, + "ledger_hash": "991680aee66b9ae5f47476ee9ea87809c07fd990cc92adc8003fed80a81fce49", + "txlist_hash": "385f901119a108d6d6fff88f760b0e42575bcf3647b8d3f5fc744d115c6b90f3", + "messages_hash": "05699d13631a94dcbe06a47dec6b64bd0115ab9e9bcc0daa787d6c6547d7bbd6", + "transaction_count": 0, "confirmed": true } ], - "next_cursor": 221, - "result_count": 126 + "next_cursor": 225, + "result_count": 130 } ``` @@ -1564,7 +1568,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (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. @@ -1575,14 +1579,14 @@ Return the information of a block ``` { "result": { - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", "difficulty": 545259519, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, "confirmed": true } @@ -1594,7 +1598,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e` (str, required) - The index of the block to return + + block_hash: `738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865` (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. @@ -1605,14 +1609,14 @@ Return the information of a block ``` { "result": { - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "previous_block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", "difficulty": 545259519, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, "confirmed": true } @@ -1624,8 +1628,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return - + cursor: `93` (str, optional) - The last transaction index to return + + block_index: `230` (int, required) - The index of the block to return + + cursor: `104` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1642,18 +1646,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1675,10 +1679,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1695,43 +1699,43 @@ Returns the events of a block { "result": [ { - "event_index": 813, + "event_index": 892, "event": "BLOCK_PARSED", "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 }, "tx_hash": null }, { - "event_index": 812, + "event_index": 891, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" }, { - "event_index": 811, + "event_index": 890, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 226, + "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1742,18 +1746,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" }, { - "event_index": 810, + "event_index": 889, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1763,22 +1767,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" }, { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1788,10 +1792,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" } ], - "next_cursor": 808, + "next_cursor": 887, "result_count": 14 } ``` @@ -1801,7 +1805,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (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 @@ -1849,7 +1853,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (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` @@ -1868,19 +1872,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1890,22 +1894,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" }, { - "event_index": 807, + "event_index": 886, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1915,32 +1919,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" }, { - "event_index": 804, + "event_index": 883, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7" + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" } ], "next_cursor": null, @@ -1953,7 +1957,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2002,17 +2006,17 @@ Returns the credits of a block { "result": [ { - "block_index": 226, - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "block_index": 230, + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2023,17 +2027,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 226, + "block_index": 230, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2044,21 +2048,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 226, + "block_index": 230, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -2075,7 +2079,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2113,17 +2117,17 @@ Returns the debits of a block { "result": [ { - "block_index": 226, + "block_index": 230, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2134,21 +2138,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 226, + "block_index": 230, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -2165,7 +2169,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `220` (int, required) - The index of the block to return + + block_index: `211` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the expirations to return + Default: `None` + limit: `5` (int, optional) - The maximum number of expirations to return @@ -2184,10 +2188,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "block_index": 220, + "object_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "block_index": 211, "confirmed": true, - "block_time": 1731013306 + "block_time": 1731170575 } ], "next_cursor": null, @@ -2200,7 +2204,7 @@ Returns the expirations of a block Returns the cancels of a block + Parameters - + block_index: `197` (int, required) - The index of the block to return + + block_index: `188` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the cancels to return + Default: `None` + limit: `5` (int, optional) - The maximum number of cancels to return @@ -2219,13 +2223,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "offer_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", "status": "valid", "confirmed": true, - "block_time": 1731013161 + "block_time": 1731170449 } ], "next_cursor": null, @@ -2238,7 +2242,7 @@ Returns the cancels of a block Returns the destructions of a block + Parameters - + block_index: `200` (int, required) - The index of the block to return + + block_index: `221` (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 @@ -2256,16 +2260,16 @@ Returns the destructions of a block { "result": [ { - "tx_index": 66, - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "block_index": 200, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_index": 97, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", + "quantity": 100000000, + "tag": "burn fairmint payment", "status": "valid", "confirmed": true, - "block_time": 1731013183, + "block_time": 1731170622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2273,7 +2277,7 @@ Returns the destructions of a block "divisible": true, "locked": true }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "1.00000000" } ], "next_cursor": null, @@ -2286,7 +2290,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `224` (int, required) - The index of the block to return + + block_index: `229` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2317,32 +2321,32 @@ Returns the issuances of a block { "result": [ { - "tx_index": 91, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", "msg_index": 0, - "block_index": 224, - "asset": "A95428959531084712", - "quantity": 100, + "block_index": 229, + "asset": "OPENFAIR", + "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, "description": "", - "fee_paid": 0, + "fee_paid": 50000000, "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, - "asset_events": "fairmint", + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" } ], "next_cursor": null, @@ -2355,7 +2359,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (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 @@ -2373,11 +2377,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2385,7 +2389,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2397,11 +2401,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2409,11 +2413,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -2431,7 +2435,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `226` (int, required) - The index of the block to return + + block_index: `230` (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 @@ -2449,36 +2453,36 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 93, + "tx_index": 104, "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -2486,7 +2490,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2508,7 +2512,7 @@ Returns the dispenses of a block Returns the sweeps of a block + Parameters - + block_index: `199` (int, required) - The index of the block to return + + block_index: `190` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -2527,16 +2531,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731013178, + "block_time": 1731170466, "fee_paid_normalized": "0.00600000" } ], @@ -2550,7 +2554,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `223` (int, required) - The block index of the fairminter to return + + block_index: `229` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2575,19 +2579,19 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "tx_index": 90, - "block_index": 223, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428959531084712", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETC", + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_index": 229, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "OPENFAIR", + "asset_parent": "", + "asset_longname": "", "description": "", "price": 0, "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 100, + "max_mint_per_tx": 10, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -2599,20 +2603,17 @@ Returns the fairminters by its block index "divisible": true, "pre_minted": false, "status": "open", - "earned_quantity": 100, - "commission": 0, - "paid_quantity": 0, + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1731013317, + "block_time": 1731170650, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" } ], "next_cursor": null, @@ -2625,7 +2626,7 @@ Returns the fairminters by its block index Returns the fairmints by its block index + Parameters - + block_index: `224` (int, required) - The block index of the fairmint to return + + block_index: `221` (int, required) - The block index of the fairmint to return + cursor (str, optional) - The last index of the fairmint to return + Default: `None` + limit: `5` (int, optional) - The maximum number of fairmint to return @@ -2643,28 +2644,28 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_index": 224, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "asset": "A95428959531084712", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731013330, + "block_time": 1731170622, "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" } ], "next_cursor": null, @@ -2699,17 +2700,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "block_hash": "4cccbd802c0d995dea9b96b75154013db9b740cfc4fcd620990ffe9350da32d0", - "block_time": 1731012907, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "block_hash": "20c3ad15e2a8865e2b02130bce34cdea8a02e9ad183c626d451918ecb7f5c92d", + "block_time": 1731170218, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725:1 2 ", + "utxos_info": " 4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2734,25 +2735,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "block_hash": "4ea812a36acef8431b584274b0c9f1a668dc8a2abbd6895f5607540cdd36d0f3", - "block_time": 1731013119, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "block_hash": "44c475b3713cc4de360b19432c807585bcee061a70090a914cac9ee6933b316a", + "block_time": 1731170429, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "btc_amount": 2000, "fee": 10000, - "data": "0be9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", + "data": "0b12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f9281cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", "supported": true, - "utxos_info": " d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7:0 3 1", + "utxos_info": " 1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", "status": "valid" } }, @@ -2767,23 +2768,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b", - "block_index": 197, - "block_hash": "761e20b75b6f2b53bbc7ee08caecb00729dd2ca32c706ea5c022de9b51de43c4", - "block_time": 1731013161, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "block_index": 188, + "block_hash": "2ec047b0fd009ecc649faae7f9e14bd85864bdf68a2d7735e5a6af327a4075cf", + "block_time": 1731170449, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4675f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", + "data": "465e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", "supported": true, - "utxos_info": " 6f7bbc7c10e2b40b68c535009dc9b5f82a0660ca3e29aa9c9c1c490f292d111b:1 2 ", + "utxos_info": " f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", + "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", "status": "valid" } }, @@ -2797,34 +2798,33 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 66, - "tx_hash": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979", - "block_index": 200, - "block_hash": "6039431e125ed586c408004e7bce425d9a3aa585beceb180e8f3805116b70e35", - "block_time": 1731013183, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_index": 97, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_hash": "56dbc4280fd6d40003fcc8b3ee2e3390f3e322a1b276c23ece0e056fc848dbeb", + "block_time": 1731170622, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "6e0000000000000001000000000000000164657374726f79", + "data": "5b4255524e45527c313030303030303030", "supported": true, - "utxos_info": "285fc49189236963902413e01e49d880fa7b06f82c929ca888633c5dd10a0abd:1 d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 2 ", + "utxos_info": " 1 ", "confirmed": true, "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, + "message_type": "fairmint", + "message_type_id": 91, "message_data": { - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", + "asset": "BURNER", + "quantity": 100000000, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, "locked": true }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "1.00000000" } }, "btc_amount_normalized": "0.00000000" @@ -2838,17 +2838,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 202, - "block_hash": "0d615f5ae3216aa42f0beb4d241aad95cd8105c965c2cca7c46839a24eb2740b", - "block_time": 1731013200, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 193, + "block_hash": "56c1d87bcfdd97eb2dba765d3361ef15de96af711da1ad831d4e0923d23b3de5", + "block_time": 1731170479, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7:1 2 ", + "utxos_info": " 35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2865,7 +2865,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -2883,18 +2883,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2914,17 +2914,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "block_hash": "2c094d20ef4c4a4cf6c5f23e43ca1e82f23ca304ea92e8e95b6d09b42881f51d", - "block_time": 1731012971, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "block_hash": "1096cab37349821d534a6e833449d019f7111989180bcea20b02a2eaa7c67639", + "block_time": 1731170290, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035:1 2 ", + "utxos_info": " 330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2937,7 +2937,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -2961,28 +2961,28 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 90, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "block_index": 223, - "block_hash": "05088b437c85572807241ea7d6d62c990e0ad64c16f4e1408c16074999f623ae", - "block_time": 1731013317, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_time": 1731170650, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "5a5355424153534554437c504152454e54417c307c317c3130307c307c307c307c307c307c307c307c307c307c307c317c", + "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff:1 2 ", + "utxos_info": " cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, "message_data": { - "asset": "SUBASSETC", - "asset_parent": "PARENTA", + "asset": "OPENFAIR", + "asset_parent": "", "price": 0, "quantity_by_price": 1, - "max_mint_per_tx": 100, + "max_mint_per_tx": 10, "hard_cap": 0, "premint_quantity": 0, "start_block": 0, @@ -2999,7 +2999,7 @@ Here is sample API output for each of these transactions: "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", + "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" } }, @@ -3013,44 +3013,44 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 92, - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "block_time": 1731013334, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_index": 102, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", + "block_time": 1731170647, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502:1 2 ", + "utxos_info": " d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", "message_type_id": 10, "message_data": { - "give_asset": "UTXOASSET", + "give_asset": "BTC", "give_quantity": 1000, - "get_asset": "BTC", + "get_asset": "UTXOASSET", "get_quantity": 1000, "expiration": 21, "fee_required": 0, "status": "open", "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "get_asset_info": { "divisible": true, "asset_longname": null, "description": "The Bitcoin cryptocurrency", "locked": false, "issuer": null }, + "get_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", "fee_required_normalized": "0.00000000" @@ -3067,17 +3067,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_hash": "14e1c7aff3bcb67e385c5bb5d44d7c86d976db5f16b586eacca97b1c2ff188af", - "block_time": 1731013238, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", + "block_time": 1731170518, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", + "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", "supported": true, - "utxos_info": " 836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77:1 2 ", + "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3085,12 +3085,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -3108,17 +3108,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_hash": "2675f7b2c20083916b5d9cbe2c93537deab1a25e3f3fbddcd513388c0b286e7b", - "block_time": 1731013262, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_hash": "0875bcd1d65735f4c430150bf636f213c96b402d65725c27d597adedfb2f7128", + "block_time": 1731170544, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805716fa7773ad7157f8cb99c7fa6fc18b2e00d484806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660:0 4 ", + "utxos_info": " e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3126,14 +3126,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -3141,7 +3141,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3167,23 +3167,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "block_hash": "71d50349f5d7991a40340b558bdfb89a602d39f07c865d6b1bc8a80bfe8c7db7", - "block_time": 1731013178, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "block_hash": "7071a3803aa9b7e876bc8f10d398d7b13a0d4dbb874a14358afcb823bff6973a", + "block_time": 1731170466, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480bf917363f27d88f04278081b24523c672a6b1138017377656570206d7920617373657473", + "data": "0480ff54853ee2276b9aab2abefe1f5b88979b11ba53017377656570206d7920617373657473", "supported": true, - "utxos_info": " 0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878:1 2 ", + "utxos_info": " 99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", - "block_index": 208, - "block_hash": "7f3222980245b29d3e91ad006230b6863811daf07383cf60880aed1fd0b5daef", - "block_time": 1731013229, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "block_index": 199, + "block_hash": "6ae23632b87c9a15421d1daa0919ce058dc585bebb723a5586045939c1575299", + "block_time": 1731170511, + "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "btc_amount": 546, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2:0 3 1", + "utxos_info": " fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3221,7 +3221,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "divisible": true, "locked": false }, @@ -3239,17 +3239,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", - "block_index": 207, - "block_hash": "6c5a16bfdb507be4be2d097d75941f9ab70378daa6243babedd8bee5dccf5308", - "block_time": 1731013226, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "block_index": 198, + "block_hash": "2a2570ef2e4d8459191f51e7cf91b784ce991c3e18902d5c135bd9eedb07c497", + "block_time": 1731170508, + "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "6fb402df4100568b5a3d27acd2a41884f072a9a52dba62ac9ada144ced9d2557:0 4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f:1 2 ", + "utxos_info": "bd0cc61333f0c591a8faeb275cd4145f6a3b7f6f13450abe8ae7f1615eccb027:0 cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3268,7 +3268,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `93` (str, optional) - The index of the most recent transactions to return + + cursor: `104` (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` @@ -3285,18 +3285,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3308,54 +3308,53 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 92, - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "block_hash": "18c5ee1a9286b6a5806a3c35f57d028ffb87844ddab78db1159fade748372897", - "block_time": 1731013334, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_time": 1731170650, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000003f1a69ea1d300000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502:1 2 ", + "utxos_info": " cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b:1 2 ", "confirmed": true, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "fairminter", + "message_type_id": 90, "message_data": { - "give_asset": "UTXOASSET", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "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" + "asset": "OPENFAIR", + "asset_parent": "", + "price": 0, + "quantity_by_price": 1, + "max_mint_per_tx": 10, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" } }, "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 91, - "result_count": 94 + "next_cursor": 102, + "result_count": 105 } ``` @@ -3364,7 +3363,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001066ef00168559b26d1b50506d3720a75cb2ead17502ad6e34fd59466785a4ee1280000000000ffffffff734777d0ffb16ebbf6b1b5cbde51b476624900b84c90111baa064f3aa68be9780000000000ffffffff7d8812cd99f4b53a950926d214bfdf04d4c8e5a39924debadf04b5603de0b5a40000000000ffffffff10dfef6e7978b6109de23cf5e0db0e401c16ecdc61c9926e6a1e1937fe961b850000000000ffffffff78ea9c7c3e15876a6741ab98aff173a4c9654dfc74e557ebd9934d9e80ca97280000000000ffffffff3754ee1f9828a7109088187cc21a35ea81a9cfe32c7b61b464752187c844a9ce0000000000ffffffff04e80300000000000069512102f6dc0029129a311519140b00c963b61ba14cf16971de7d3d6b344b73851cf239210234214a0d4d349f0cc08e4104891c8e4ac043b24dbf3623f39b0d3356fe4516fd21026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353aee80300000000000069512102f6dc0029129a311519e7497b415255fde1efb1963d26b8117ecddf6012d3e65c2102979eca62b3cdb8f80f1b53d07c11a2b4a228b4d8b64d531e41f12f068c389ea521026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353aee80300000000000069512103d7dc0029129a311519170b034949f1afdd889bfd2c1eac3a15e35779121732642102979eca62b3cdb8d21aaec665c0dba2b4a228b4d8b647d673249c40350c389e6121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae387923fc060000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402473044022029a2bcac1449e37185f11237fc6cf834013b41680c3cba3ae56c9af3a7c976d50220654dfc7b7a054d291d9fa7a76f64030b631ff5722747eab7d903b454642ff9dc0121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c993005330247304402200e28e5a0e4f6f6728b636b400fd6b55ccbb3c6350c5e58a750c015af0a9fce8a02201601b9cb8e6b82af93c34c72375b28a1f72261392a8dfe76f19cdd9c912307760121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c993005330247304402201180a96115cc613cd7bec94a28a4b9c37c2208260324febbd0ee64888b39346d02204f8d46b54419f122233353bb066903c52a471aa3420d885e611e510b45cbe7c50121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053302473044022049c91e7c188a99993b84497d52933bee374c868bfc5a53a4d924577971723852022065529c5dfede2fb18328071e1429e3eec7d2458b0756f96bf882d9aa7829766f0121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053302473044022038ed6a19dfc05925c063f499643d810ebdbd3d53ac4a2cc9f315a9894c3e93ef02204806e7601e97f6275f97c7ba2d10f57ca7acf3ed3ed04155c441bd3d69420dc70121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c993005330247304402204b82eb46994fef6af06100b07b4a181af5f73e29e26a518a5d9f86ec813cbdd202200439ef43b11ab21224bd7e18a61e3a64000d4f3febab11c5fa1f4ec10e0e554f0121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053300000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101e148e13a70831719a19e7c485ef19a93f9bda09975af28469eb7b2477bb641170200000000ffffffff03a00f0000000000001600144e4bc3d832d60b7da913935414c5286ed1499d4200000000000000000c6a0a812fe4983caf30a4cf0c10790827010000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9a0247304402206515b9e8cfc343744b440cfd68798631bf751a3b5d71da0eb5c9e6bd7b4ef43c02201a6feebd2ba1ab29d785a071e9139ca468c342db565da9edcba733092f589a17012102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25200000000` (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. @@ -3377,54 +3376,19 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6ef00168559b26d1b50506d3720a75cb2ead17502ad6e34fd59466785a4ee128", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "734777d0ffb16ebbf6b1b5cbde51b476624900b84c90111baa064f3aa68be978", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "7d8812cd99f4b53a950926d214bfdf04d4c8e5a39924debadf04b5603de0b5a4", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "10dfef6e7978b6109de23cf5e0db0e401c16ecdc61c9926e6a1e1937fe961b85", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "78ea9c7c3e15876a6741ab98aff173a4c9654dfc74e557ebd9934d9e80ca9728", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "3754ee1f9828a7109088187cc21a35ea81a9cfe32c7b61b464752187c844a9ce", - "n": 0, + "hash": "e148e13a70831719a19e7c485ef19a93f9bda09975af28469eb7b2477bb64117", + "n": 2, "script_sig": "", "sequence": 4294967295, "coinbase": false @@ -3432,77 +3396,34 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 1000, - "script_pub_key": "512102f6dc0029129a311519140b00c963b61ba14cf16971de7d3d6b344b73851cf239210234214a0d4d349f0cc08e4104891c8e4ac043b24dbf3623f39b0d3356fe4516fd21026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae" - }, - { - "value": 1000, - "script_pub_key": "512102f6dc0029129a311519e7497b415255fde1efb1963d26b8117ecddf6012d3e65c2102979eca62b3cdb8f80f1b53d07c11a2b4a228b4d8b64d531e41f12f068c389ea521026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae" + "value": 4000, + "script_pub_key": "00144e4bc3d832d60b7da913935414c5286ed1499d42" }, { - "value": 1000, - "script_pub_key": "512103d7dc0029129a311519170b034949f1afdd889bfd2c1eac3a15e35779121732642102979eca62b3cdb8d21aaec665c0dba2b4a228b4d8b647d673249c40350c389e6121026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c9930053353ae" + "value": 0, + "script_pub_key": "6a0a812fe4983caf30a4cf0c" }, { - "value": 29999987000, - "script_pub_key": "00145716fa7773ad7157f8cb99c7fa6fc18b2e00d484" + "value": 4949834000, + "script_pub_key": "00144758f71d04423d2fbee14cb3ef2cfce5166e4c9a" } ], "vtxinwit": [ - "3044022029a2bcac1449e37185f11237fc6cf834013b41680c3cba3ae56c9af3a7c976d50220654dfc7b7a054d291d9fa7a76f64030b631ff5722747eab7d903b454642ff9dc01", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "304402200e28e5a0e4f6f6728b636b400fd6b55ccbb3c6350c5e58a750c015af0a9fce8a02201601b9cb8e6b82af93c34c72375b28a1f72261392a8dfe76f19cdd9c9123077601", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "304402201180a96115cc613cd7bec94a28a4b9c37c2208260324febbd0ee64888b39346d02204f8d46b54419f122233353bb066903c52a471aa3420d885e611e510b45cbe7c501", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "3044022049c91e7c188a99993b84497d52933bee374c868bfc5a53a4d924577971723852022065529c5dfede2fb18328071e1429e3eec7d2458b0756f96bf882d9aa7829766f01", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "3044022038ed6a19dfc05925c063f499643d810ebdbd3d53ac4a2cc9f315a9894c3e93ef02204806e7601e97f6275f97c7ba2d10f57ca7acf3ed3ed04155c441bd3d69420dc701", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533", - "304402204b82eb46994fef6af06100b07b4a181af5f73e29e26a518a5d9f86ec813cbdd202200439ef43b11ab21224bd7e18a61e3a64000d4f3febab11c5fa1f4ec10e0e554f01", - "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533" + "304402206515b9e8cfc343744b440cfd68798631bf751a3b5d71da0eb5c9e6bd7b4ef43c02201a6feebd2ba1ab29d785a071e9139ca468c342db565da9edcba733092f589a1701", + "02b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df252" ], "lock_time": 0, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "tx_id": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442" + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_id": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - } - ] + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00004000" } } ``` @@ -3512,7 +3433,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d` (str, required) - Transaction hash + + tx_hash: `7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a` (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. @@ -3523,18 +3444,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "79495952683886a91ce41ed2ef3bfb6f85584f8dc5bdd7137ab1990e11f42ed1", + "hash": "12f012dc7a950f11fd70ef9e00310c5c2814e462b87ab9babd103777af031bc4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3544,20 +3465,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eb153b5f93e8c266730aa9ac0f31baf0127814a457ec55bd2c0c405b01da26efaf63ba861a7b7c82cb956e04098bd" + "script_pub_key": "6a2ea996c4de30bb2373c6ac1c2eb8e8e56f90b5cbdc35cf5b567e6ae0f360f5fe8ea9812ac7e05cbb274cc107587ed1" }, { "value": 4949930546, - "script_pub_key": "0014bf917363f27d88f04278081b24523c672a6b1138" + "script_pub_key": "0014ff54853ee2276b9aab2abefe1f5b88979b11ba53" } ], "vtxinwit": [ - "304402203c3c7fb81cd2b3a750da609d46f3b87f25fb1b06d77cceaf4a4f86d22c9060d00220278653ff2eafb67bb20e9791ce2a99b9f989e6f05deaa30af8bce7ff8d328d9701", - "03ab51e57d7dbdde835e1a3f53c2be5426e2c3609293ce0fd03a2dfdb8fbc3d2be" + "3044022020e11abc63eebaf69f7d797d6cc2dcffc37d4bdd11f9c61a0cf43620a463155702206f7e110fbbea233620107ca48b75af07f415e53b475bc141e4062eb036de8a1b01", + "03c99dce59b1923a0d4ff2a9129768ca42f7289d48bfb4a553469453b9d7f0cc62" ], "lock_time": 0, - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_id": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d" + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_id": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3565,7 +3486,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "asset_info": { "asset_longname": null, @@ -3614,7 +3535,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `93` (int, required) - The index of the transaction + + tx_index: `104` (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. @@ -3625,18 +3546,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3655,7 +3576,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7` (str, required) - The hash of the transaction + + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (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. @@ -3666,18 +3587,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_hash": "47fdbdb52d082162f91af03624390213d11e8ec1c92bcf08401c48f63fab389e", - "block_time": 1731013342, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", - "destination": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1 b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0 3 1", + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3696,7 +3617,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `93` (int, required) - The index of the transaction to return + + tx_index: `104` (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 @@ -3716,32 +3637,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 812, + "event_index": 891, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 811, + "event_index": 890, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 226, + "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3752,20 +3673,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 810, + "event_index": 889, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3775,24 +3696,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3802,24 +3723,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 808, + "event_index": 887, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 226, - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "block_index": 230, + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "msg_index": 1, "quantity": 2000000000, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", "status": "valid", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3829,12 +3750,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 807, + "next_cursor": 886, "result_count": 12 } ``` @@ -3844,10 +3765,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7` (str, required) - The hash of the transaction to return + + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3864,32 +3785,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 812, + "event_index": 891, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 811, + "event_index": 890, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 226, + "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3900,20 +3821,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 810, + "event_index": 889, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3923,24 +3844,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3950,24 +3871,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 808, + "event_index": 887, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 226, - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "block_index": 230, + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "msg_index": 1, "quantity": 2000000000, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", "status": "valid", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3977,12 +3898,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 807, + "next_cursor": 886, "result_count": 12 } ``` @@ -3992,7 +3913,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7` (str, required) - The hash of the transaction to return + + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (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 @@ -4010,11 +3931,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4022,7 +3943,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4034,11 +3955,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4046,11 +3967,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4068,7 +3989,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7` (str, required) - The hash of the transaction to return + + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (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 @@ -4086,36 +4007,36 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 93, + "tx_index": 104, "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -4123,7 +4044,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4145,9 +4066,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `93` (int, required) - The index of the transaction to return + + tx_index: `104` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4164,19 +4085,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4186,24 +4107,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 807, + "event_index": 886, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4213,36 +4134,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 804, + "event_index": 883, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], "next_cursor": null, @@ -4255,9 +4176,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7` (str, required) - The hash of the transaction to return + + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4274,19 +4195,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4296,24 +4217,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 807, + "event_index": 886, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4323,36 +4244,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 804, + "event_index": 883, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], "next_cursor": null, @@ -4367,7 +4288,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v,bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - Comma separated list of addresses + + addresses: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (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 @@ -4391,7 +4312,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4401,7 +4322,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4412,7 +4333,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4422,7 +4343,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4433,7 +4354,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4443,7 +4364,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4454,7 +4375,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4464,7 +4385,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4475,7 +4396,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4485,7 +4406,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4502,8 +4423,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v,bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - Comma separated list of addresses to return - + cursor: `93` (str, optional) - The last transaction index to return + + addresses: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - Comma separated list of addresses to return + + cursor: `104` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4521,17 +4442,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_hash": "2675f7b2c20083916b5d9cbe2c93537deab1a25e3f3fbddcd513388c0b286e7b", - "block_time": 1731013262, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_hash": "0875bcd1d65735f4c430150bf636f213c96b402d65725c27d597adedfb2f7128", + "block_time": 1731170544, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805716fa7773ad7157f8cb99c7fa6fc18b2e00d484806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660:0 4 ", + "utxos_info": " e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4539,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4554,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4573,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "block_hash": "6515927bb3e1b0997dd9e22fd996622c98a1206933246c001dbe5ed2f51206b5", - "block_time": 1731013258, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "block_index": 204, + "block_hash": "05042a0c11331c5d8dafd5e3027de505d8dbf7f971f39e4f64d1a3f24069aa89", + "block_time": 1731170539, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003805716fa7773ad7157f8cb99c7fa6fc18b2e00d484806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b1138c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba53c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03:0 4 ", + "utxos_info": " 62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4591,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4606,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4625,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "block_hash": "5d868954d16a8defbc6c8f7e5b73cd358ad194460cb090ae51ccc81d2d4bd072", - "block_time": 1731013254, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", + "block_time": 1731170536, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442:0 4 ", + "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4643,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4658,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4677,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "block_hash": "2ef74365b4eb94d290c814798626705fe96d90b0d4b69e8abde4c3c03f7a8047", - "block_time": 1731013241, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", + "block_time": 1731170533, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8:0 4 ", + "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4695,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4710,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4729,17 +4650,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_hash": "14e1c7aff3bcb67e385c5bb5d44d7c86d976db5f16b586eacca97b1c2ff188af", - "block_time": 1731013238, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", + "block_time": 1731170518, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", + "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", "supported": true, - "utxos_info": " 836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77:1 2 ", + "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4747,12 +4668,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -4772,10 +4693,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v,bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4792,32 +4713,33 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 761, - "event": "ORDER_EXPIRATION", + "event_index": 846, + "event": "ORDER_MATCH_EXPIRATION", "params": { - "block_index": 220, - "order_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "block_time": 1731013306 + "block_index": 225, + "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "block_time": 1731170636 }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 }, { - "event_index": 760, + "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", - "block_index": 220, - "calling_function": "cancel order", - "event": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "quantity": 0, + "block_index": 225, + "calling_function": "order expired", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731013306, + "block_time": 1731170636, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4825,27 +4747,39 @@ Returns the events of a list of addresses "divisible": true, "locked": true }, - "quantity_normalized": "0.00000000" + "quantity_normalized": "0.00001000" }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 }, { - "event_index": 716, - "event": "MPMA_SEND", + "event_index": 743, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 211, + "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_time": 1731170575 + }, + "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "block_index": 211, + "block_time": 1731170575 + }, + { + "event_index": 742, + "event": "CREDIT", "params": { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", - "block_index": 214, - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "status": "valid", - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, - "block_time": 1731013262, + "block_index": 211, + "calling_function": "cancel order", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "quantity": 0, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1731170575, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4853,43 +4787,43 @@ Returns the events of a list of addresses "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000000" }, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_time": 1731013262 + "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "block_index": 211, + "block_time": 1731170575 }, { - "event_index": 715, + "event_index": 698, "event": "MPMA_SEND", "params": { - "asset": "MPMASSET", - "block_index": 214, - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "memo": "memo3", - "msg_index": 1, + "asset": "XCP", + "block_index": 205, + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "memo": "memo1", + "msg_index": 2, "quantity": 10, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "status": "valid", - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", "tx_index": 81, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, "quantity_normalized": "0.00000010" }, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "block_time": 1731013262 + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_time": 1731170544 } ], - "next_cursor": 714, - "result_count": 256 + "next_cursor": 698, + "result_count": 258 } ``` @@ -4898,7 +4832,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg,bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs,bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4` (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 @@ -4914,18 +4848,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "quantity": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "status": "valid", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4935,22 +4869,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "CREDIT", "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4960,22 +4894,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "XCP", - "block_index": 226, - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "block_index": 230, + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4985,30 +4919,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731013347.1804786, + "block_time": 1731170667.9059134, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", "destination": "", "fee": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "utxos_info": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d:1 2 ", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "asset_info": { "asset_longname": null, @@ -5022,7 +4956,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 } ], "next_cursor": null, @@ -5035,7 +4969,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -5055,7 +4989,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5063,14 +4997,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5078,14 +5012,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5093,16 +5027,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", - "quantity": 82599965196, + "quantity": 82599966196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5112,10 +5046,10 @@ Returns the balances of an address "divisible": true, "locked": true }, - "quantity_normalized": "825.99965000" + "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5123,7 +5057,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5140,7 +5074,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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` @@ -5153,9 +5087,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", - "quantity": 82599965196, + "quantity": 82599966196, "utxo": null, "utxo_address": null, "asset_info": { @@ -5165,7 +5099,7 @@ Returns the balances of an address and asset "divisible": true, "locked": true }, - "quantity_normalized": "825.99965000" + "quantity_normalized": "825.99966000" } ], "next_cursor": null, @@ -5178,7 +5112,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5227,17 +5161,38 @@ Returns the credits of an address { "result": [ { - "block_index": 214, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 225, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 1000, + "calling_function": "order expired", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170636, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 205, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", + "event": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5248,17 +5203,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 213, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 204, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", + "event": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170539, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5269,17 +5224,17 @@ Returns the credits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 213, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 204, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170539, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5290,17 +5245,17 @@ Returns the credits of an address "quantity_normalized": "0.00003000" }, { - "block_index": 211, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 202, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", + "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5309,31 +5264,10 @@ Returns the credits of an address "locked": true }, "quantity_normalized": "0.00005000" - }, - { - "block_index": 209, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "MPMASSET", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe", - "tx_index": 76, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731013233, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" } ], - "next_cursor": 67, - "result_count": 21 + "next_cursor": 78, + "result_count": 22 } ``` @@ -5342,7 +5276,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5380,17 +5314,17 @@ Returns the debits of an address { "result": [ { - "block_index": 212, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 203, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", + "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013254, + "block_time": 1731170536, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5401,38 +5335,38 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 212, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 203, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", + "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013254, + "block_time": 1731170536, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 211, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 202, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", + "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5443,42 +5377,42 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 211, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 202, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", + "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" }, { - "block_index": 210, - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 201, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", + "event": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013238, + "block_time": 1731170518, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5495,7 +5429,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address of the feed + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5530,7 +5464,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -5549,9 +5483,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "d3dc005570f40d90bd51eeeede95c4582735448274c01ed97d245ec63b6bd7e0", - "block_index": 137, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "block_index": 128, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5559,7 +5493,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731012904, + "block_time": 1731170214, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5573,7 +5507,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -5591,15 +5525,15 @@ Returns the burns of an address { "result": [ { - "tx_index": 0, - "tx_hash": "3b8a1b84157ca94382e24aa8a8beb09c5bfd871593bbdc50897753fc0ac00fad", + "tx_index": 4, + "tx_hash": "1bd3739c207a8b8c18ebd0916916fdc4c313fc4def9f40c126a7abbd2d94f096", "block_index": 112, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731012809, + "block_time": 1731170152, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5614,7 +5548,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -5633,10 +5567,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5644,7 +5578,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731013254, + "block_time": 1731170536, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5657,10 +5591,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5668,11 +5602,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731013254, + "block_time": 1731170536, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5681,10 +5615,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5692,11 +5626,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731013254, + "block_time": 1731170536, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5705,10 +5639,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5716,7 +5650,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5729,10 +5663,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5740,11 +5674,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5762,7 +5696,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qhvervgkjk5qkxkss2zralr4fklv0qjx09u9xxe` (str, required) - The address to return + + address: `bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu` (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 @@ -5781,10 +5715,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "285fc49189236963902413e01e49d880fa7b06f82c929ca888633c5dd10a0abd", - "block_index": 151, - "source": "620ccb8556c34bd0ce2790ce44834108fa2549b82984d489ebb4c66f6035d154:0", - "destination": "bcrt1qhvervgkjk5qkxkss2zralr4fklv0qjx09u9xxe", + "tx_hash": "033aa589f258248ddced4d4a5d793c4c8a44de6ebb135edd815fc3991500252c", + "block_index": 142, + "source": "8b2027b4c4d61b834fee8bae342105a458b540c2dc260624b8245acf939c8140:0", + "destination": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5792,11 +5726,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731012957, + "block_time": 1731170276, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5814,8 +5748,8 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return - + asset: `FREEFAIRMINT` (str, required) - The asset to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + asset: `FAIRMINTC` (str, required) - The asset 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 @@ -5842,8 +5776,8 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qhvervgkjk5qkxkss2zralr4fklv0qjx09u9xxe` (str, required) - The address to return - + asset: `FREEFAIRMINT` (str, required) - The asset to return + + address: `bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu` (str, required) - The address to return + + asset: `FAIRMINTC` (str, required) - The asset 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 @@ -5870,7 +5804,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5899,9 +5833,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5910,7 +5844,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5921,7 +5855,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5938,9 +5872,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5949,7 +5883,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5960,11 +5894,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731013205, + "block_time": 1731170483, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -5986,7 +5920,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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` @@ -5999,9 +5933,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6010,7 +5944,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6021,7 +5955,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6044,7 +5978,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -6064,19 +5998,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "8b51574d7a2ef789369c96bd0dfaca9a239aeea7d2fa8ebea5bed8f015933ffc", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", + "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6084,7 +6018,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6099,11 +6033,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731013205, + "block_time": 1731170483, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -6113,19 +6047,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6133,7 +6067,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6148,7 +6082,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6162,19 +6096,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6182,7 +6116,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6197,7 +6131,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6219,7 +6153,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address to return + + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (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 @@ -6239,19 +6173,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "8b51574d7a2ef789369c96bd0dfaca9a239aeea7d2fa8ebea5bed8f015933ffc", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", + "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6259,7 +6193,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6274,11 +6208,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731013205, + "block_time": 1731170483, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -6288,19 +6222,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6308,7 +6242,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6323,7 +6257,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6337,19 +6271,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6357,7 +6291,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6372,7 +6306,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6394,7 +6328,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6415,19 +6349,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6435,7 +6369,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6450,7 +6384,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6464,19 +6398,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6484,7 +6418,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6499,7 +6433,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6521,7 +6455,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address to return + + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (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` @@ -6542,19 +6476,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6562,7 +6496,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6577,7 +6511,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6591,19 +6525,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6611,7 +6545,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6626,7 +6560,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6648,7 +6582,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg` (str, required) - The address to return + + address: `bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs` (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 @@ -6667,16 +6601,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731013178, + "block_time": 1731170466, "fee_paid_normalized": "0.00600000" } ], @@ -6690,7 +6624,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6722,14 +6656,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe", + "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", "msg_index": 0, - "block_index": 209, + "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "transfer": false, "callable": false, "call_date": 0, @@ -6744,20 +6678,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731013233, + "block_time": 1731170514, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "3af3d0c46083c23f8219c94c95136f3308e810480f908705f409792bd7ca855a", + "tx_hash": "898f1ee358d4109fb7b56a881aaf518415135f010fced4832ae4e88a4d230f2a", "msg_index": 0, - "block_index": 165, + "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "transfer": false, "callable": false, "call_date": 0, @@ -6772,20 +6706,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731013030, + "block_time": 1731170347, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "977834a3bfb69a1ced43bb3c36f0711fc974ae77ea20875f6a5b15dcb219e856", + "tx_hash": "beb53e2e4a8a4684689abd407587695d4162896ceed78b280eb32706ebe4796c", "msg_index": 0, - "block_index": 164, + "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "transfer": false, "callable": false, "call_date": 0, @@ -6800,20 +6734,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731013016, + "block_time": 1731170333, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "860c427d1a726c07bc4475e0c2ac848676f9bbd1da5739c3f06dc706cb4aa5b1", + "tx_hash": "e2116b0c6b33229a263154ae3ea785b23718ec97dc4e8653f198d661d750cf74", "msg_index": 0, - "block_index": 163, + "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "transfer": false, "callable": false, "call_date": 0, @@ -6828,20 +6762,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731013011, + "block_time": 1731170319, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "73e0b7574235e2e68fd016f6281511ceb94010109abe0e01f4cde2ffa9e3909e", + "tx_hash": "0b60ca17b01332221c75e2c5c8cdfe77ec23b7208985e8da9478582aa95941e6", "msg_index": 0, - "block_index": 162, + "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "transfer": false, "callable": false, "call_date": 0, @@ -6856,7 +6790,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731013008, + "block_time": 1731170316, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6871,7 +6805,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The issuer or owner to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6894,85 +6828,85 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, + "first_issuance_block_time": 1731170514, + "last_issuance_block_time": 1731170514, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, + "first_issuance_block_index": 153, + "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, + "first_issuance_block_time": 1731170316, + "last_issuance_block_time": 1731170333, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 180, "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, + "first_issuance_block_index": 148, + "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731012990, - "last_issuance_block_time": 1731012996, + "first_issuance_block_time": 1731170298, + "last_issuance_block_time": 1731170305, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, + "first_issuance_block_index": 139, + "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731012945, - "last_issuance_block_time": 1731012945, + "first_issuance_block_time": 1731170264, + "last_issuance_block_time": 1731170264, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 40, "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, + "first_issuance_block_index": 126, + "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731012896, - "last_issuance_block_time": 1731012900, + "first_issuance_block_time": 1731170207, + "last_issuance_block_time": 1731170210, "supply_normalized": "0.00000040" } ], @@ -6986,7 +6920,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The issuer to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -7009,85 +6943,85 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, + "first_issuance_block_time": 1731170514, + "last_issuance_block_time": 1731170514, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, + "first_issuance_block_index": 153, + "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, + "first_issuance_block_time": 1731170316, + "last_issuance_block_time": 1731170333, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 180, "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, + "first_issuance_block_index": 148, + "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731012990, - "last_issuance_block_time": 1731012996, + "first_issuance_block_time": 1731170298, + "last_issuance_block_time": 1731170305, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, + "first_issuance_block_index": 139, + "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731012945, - "last_issuance_block_time": 1731012945, + "first_issuance_block_time": 1731170264, + "last_issuance_block_time": 1731170264, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 40, "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, + "first_issuance_block_index": 126, + "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731012896, - "last_issuance_block_time": 1731012900, + "first_issuance_block_time": 1731170207, + "last_issuance_block_time": 1731170210, "supply_normalized": "0.00000040" } ], @@ -7101,7 +7035,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The owner to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7124,85 +7058,85 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, + "first_issuance_block_time": 1731170514, + "last_issuance_block_time": 1731170514, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 10000000000, "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, + "first_issuance_block_index": 153, + "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, + "first_issuance_block_time": 1731170316, + "last_issuance_block_time": 1731170333, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 180, "description": "", - "first_issuance_block_index": 157, - "last_issuance_block_index": 159, + "first_issuance_block_index": 148, + "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731012990, - "last_issuance_block_time": 1731012996, + "first_issuance_block_time": 1731170298, + "last_issuance_block_time": 1731170305, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 100000000000, "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, + "first_issuance_block_index": 139, + "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731012945, - "last_issuance_block_time": 1731012945, + "first_issuance_block_time": 1731170264, + "last_issuance_block_time": 1731170264, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false, "supply": 40, "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, + "first_issuance_block_index": 126, + "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731012896, - "last_issuance_block_time": 1731012900, + "first_issuance_block_time": 1731170207, + "last_issuance_block_time": 1731170210, "supply_normalized": "0.00000040" } ], @@ -7216,8 +7150,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return - + cursor: `93` (str, optional) - The last transaction index to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + cursor: `104` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7235,17 +7169,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "block_hash": "5d868954d16a8defbc6c8f7e5b73cd358ad194460cb090ae51ccc81d2d4bd072", - "block_time": 1731013254, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", + "block_time": 1731170536, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442:0 4 ", + "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7253,14 +7187,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -7268,7 +7202,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7287,17 +7221,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "block_hash": "2ef74365b4eb94d290c814798626705fe96d90b0d4b69e8abde4c3c03f7a8047", - "block_time": 1731013241, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", + "block_time": 1731170533, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf806ffef927deda20876149c72cfe626b06950971f580bf917363f27d88f04278081b24523c672a6b113888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8:0 4 ", + "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7305,14 +7239,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -7320,7 +7254,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7339,17 +7273,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77", - "block_index": 210, - "block_hash": "14e1c7aff3bcb67e385c5bb5d44d7c86d976db5f16b586eacca97b1c2ff188af", - "block_time": 1731013238, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", + "block_time": 1731170518, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", + "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", "supported": true, - "utxos_info": " 836aeef9d874b05456646ae29d6637d5431958ce362c8e513c5e4c42d5c9fb77:1 2 ", + "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7357,12 +7291,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -7373,17 +7307,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe", - "block_index": 209, - "block_hash": "6bb6ef82a8ae08022ced89d45fed4727f2f3c8321e31642dced027052c310bb5", - "block_time": 1731013233, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "block_index": 200, + "block_hash": "43715cb7b6b7030567444d219f200645d5d8e38b21dde265287af7f152f1dd1a", + "block_time": 1731170514, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 18379cd456242851480cf771f7b9133cf6301562a8651def5c2e95505954abbe:1 2 ", + "utxos_info": " 4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7408,17 +7342,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 202, - "block_hash": "0d615f5ae3216aa42f0beb4d241aad95cd8105c965c2cca7c46839a24eb2740b", - "block_time": 1731013200, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 193, + "block_hash": "56c1d87bcfdd97eb2dba765d3361ef15de96af711da1ad831d4e0923d23b3de5", + "block_time": 1731170479, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7:1 2 ", + "utxos_info": " 35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7435,7 +7369,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -7456,7 +7390,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -7475,20 +7409,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731012971, + "block_time": 1731170290, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -7513,7 +7447,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7542,9 +7476,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7552,7 +7486,7 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 187, + "expire_index": 178, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7561,7 +7495,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013046, + "block_time": 1731170360, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7589,9 +7523,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7599,7 +7533,7 @@ Returns the orders of an address "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 210, + "expire_index": 201, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7608,7 +7542,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7636,9 +7570,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7646,7 +7580,7 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 217, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7655,7 +7589,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013161, + "block_time": 1731170449, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7683,9 +7617,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "block_index": 220, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "block_index": 211, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7693,7 +7627,7 @@ Returns the orders of an address "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 219, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7702,7 +7636,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013306, + "block_time": 1731170575, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7739,7 +7673,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The source of the fairminter to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7764,10 +7698,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", + "tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", "tx_index": 44, - "block_index": 159, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 150, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7792,7 +7726,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731012996, + "block_time": 1731170305, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7804,10 +7738,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4b247175490cd0174b710fa4689fb653ec473d6c473d0cba3f121eac866d59fe", + "tx_hash": "ae593135beae4b46d0fdb476ae66ceb855d2a50fce46976303bb3a77c2f53656", "tx_index": 43, - "block_index": 156, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 147, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7832,7 +7766,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731012975, + "block_time": 1731170294, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7841,10 +7775,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b7a19fb3d0e07ac1d7f875a48825c16bd693ce37c21cef7cb57b5f474c01af0b", + "tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", "tx_index": 22, - "block_index": 135, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 126, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7869,7 +7803,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731012896, + "block_time": 1731170207, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7881,10 +7815,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", + "tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", "tx_index": 18, - "block_index": 131, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 122, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7909,7 +7843,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731012881, + "block_time": 1731170192, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7921,10 +7855,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d8b1188f7079a7a70d3813bc5012d52a051cecfcc35d6d809b1cd4b02e88b27d", + "tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", "tx_index": 14, - "block_index": 130, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 121, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7939,7 +7873,7 @@ Returns the fairminter by its source "end_block": 0, "minted_asset_commission_int": 0, "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, + "soft_cap_deadline_block": 121, "lock_description": false, "lock_quantity": false, "divisible": true, @@ -7949,7 +7883,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731012877, + "block_time": 1731170189, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7961,10 +7895,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", + "tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 116, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7979,7 +7913,7 @@ Returns the fairminter by its source "end_block": 0, "minted_asset_commission_int": 0, "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, + "soft_cap_deadline_block": 115, "lock_description": false, "lock_quantity": false, "divisible": true, @@ -7989,7 +7923,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731012858, + "block_time": 1731170167, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8011,7 +7945,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address of the mints to return + + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8029,22 +7963,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "330bcdc1efb0f0eefb82b43e33edd493447f183534cbf1b2b8e0528d36758ae8", + "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", "tx_index": 46, - "block_index": 159, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", + "block_index": 150, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012996, + "block_time": 1731170305, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8053,22 +7987,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "8da06ad9553f8287728bd48694be0ab4fcfdf7ddfc15e0a891c0c81fffbfe69a", + "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", "tx_index": 45, - "block_index": 158, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", + "block_index": 149, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012993, + "block_time": 1731170302, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8077,22 +8011,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "630805fffd087574a7a1d8b1a599c2d2897e31e2729acf5680ea8c59bdc9ae7a", + "tx_hash": "4bc3569c295bfedde7a66ef3c900bd97229008dc410bfb3eff9f558248010e5c", "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "b7a19fb3d0e07ac1d7f875a48825c16bd693ce37c21cef7cb57b5f474c01af0b", + "block_index": 127, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012900, + "block_time": 1731170210, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8101,22 +8035,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0b3a3e5ed490567007b0ae405c334ccb3483786b9d6aa87b451c579478c87a95", + "tx_hash": "3a9aacc479c7d9e032a16939748fe6fdc24e9d13925e80ed4b5b614d2e056002", "tx_index": 21, - "block_index": 134, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", + "block_index": 125, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012892, + "block_time": 1731170203, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8125,22 +8059,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "578a4a05f4abfcf75e7441f1c38f50c2549ee3e0de7363da5fbc6c01fca47880", + "tx_hash": "e9b68933db2315a40fc88eff0cd58a525383a511a4c3e16dc87a6895156329c3", "tx_index": 20, - "block_index": 133, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", + "block_index": 124, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012889, + "block_time": 1731170200, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8149,22 +8083,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cd49d318d005ac85b84a0df5523b095236288f969bd69eeb6c0b37a2300bbec5", + "tx_hash": "dc5aa9aadf9bf60e60e6e7af44a09b0ddab117a618156df07a99f5740c41c44a", "tx_index": 19, - "block_index": 132, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", + "block_index": 123, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012884, + "block_time": 1731170195, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8173,22 +8107,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5b1bd226ff632de44a31943112c16b9815f6adcaf773d5a1cf74353cad6dbf97", + "tx_hash": "6611dc30ff8ceb23e5b7766a48c082f8dc0137afa5ccad1664574c3888ceeda5", "tx_index": 15, - "block_index": 127, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d8b1188f7079a7a70d3813bc5012d52a051cecfcc35d6d809b1cd4b02e88b27d", + "block_index": 118, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012865, + "block_time": 1731170176, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8197,22 +8131,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", + "tx_hash": "533c4fd19985128219ca1ec26f89d940039ded67956e1865af304ea38a4ffc7d", "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", + "block_index": 114, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012851, + "block_time": 1731170160, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8231,8 +8165,8 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address of the mints to return - + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address of the mints to return + + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8248,34 +8182,9 @@ Returns the mints by address and asset ``` { - "result": [ - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012851, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], + "result": [], "next_cursor": null, - "result_count": 1 + "result_count": 0 } ``` @@ -8286,7 +8195,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0` (str, required) - The utxo to return + + utxo: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8306,8 +8215,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8320,12 +8229,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -8365,8 +8274,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will make the bet - + feed_address: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will make the bet + + feed_address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (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) @@ -8440,7 +8349,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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) @@ -8502,7 +8411,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8513,9 +8422,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985799, - "btc_fee": 14201, - "rawtransaction": "020000000001017c40f487ee7591d6ed5240a4d0e2120cdf46549758a5952b78e087e974546d9a000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff0200000000000000002b6a29b5a97bdf510b1b8b1cb52e302245145834dafaef77e6858ac3d0371d23f275020011ef2676c5b1b67887ba052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999985820, + "btc_fee": 14180, + "rawtransaction": "02000000000101bfee7098df7420bc4477e97cb8d03304251bf8d345a0a0aece617008405f5a82000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0200000000000000002b6a29153fa4f19fb5624870279bb0c0319f6e3c666f1dfc3684cf4845164e5c6d6b712af3daefc846bc541f9cba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8537,8 +8446,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be sending the payment - + order_match_id: `2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d` (str, required) - The ID of the order match to pay for + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending the payment + + order_match_id: `ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf` (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) @@ -8596,24 +8505,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "order_match_id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339caee20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "data": "434e5452505254590bce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980926, - "btc_fee": 18074, - "rawtransaction": "0200000000010138089ed6cb3f4571847253295ddcd3f41dea7cf41b96d7854193976f29a325ce000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff03e8030000000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48400000000000000004b6a499842ef56d7e961e85b8fb6a2f547307ec5fda80d4d02119294b3b5f5a35a09abc0f3190a9d9e69633cb49899070fe9209b61535c525eeca000591249de669a8a39a65ea4b44ea96e4a7ea7052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999980952, + "btc_fee": 18048, + "rawtransaction": "020000000001019c42e80ac9905b24a3b5629751017ff65c41c3fecac30370fd7b8d236966c774000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014da72629f3f1d10098a9b361907ebb25dd30bce5000000000000000004b6a4963221fd105f5289f4dff09e56eea2171c5d220868f09be84be35b2784ff4cc880fd2accea8cf33b7dfc599f826069b92dcb2bdc174b1ffef5add43c08dcac95b22393fa5369e22462298a7052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "order_match_id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", "status": "valid" } } @@ -8626,7 +8535,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address with the BTC to burn + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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` @@ -8687,7 +8596,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8696,9 +8605,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": 4999985797, - "btc_fee": 13203, - "rawtransaction": "02000000000101e0b2f6e979240ed52d91c4e03053f3dfa875fd6c2a70c45b970183ae898137e9000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac85ba052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000" + "btc_change": 4999985816, + "btc_fee": 13184, + "rawtransaction": "02000000000101fd05507774960dc10c40e09c1a042e82b1ae9821263593410a104310de82c561000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac98ba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000" } } ``` @@ -8708,8 +8617,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: `bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf` (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) @@ -8767,22 +8676,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "offer_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594672d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "btc_in": 4949928908, + "data": "434e54525052545946d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "btc_in": 90000, "btc_out": 0, - "btc_change": 4949914707, - "btc_fee": 14201, - "rawtransaction": "020000000001010215889cc84aed5f8eb07e97cb32d12de72f3a9a012954e96d2a1487ae85d97201000000160014587d7804256964c8fe4e659481a556d8251b385effffffff0200000000000000002b6a2973e6c365931ff65490813f7d566ff1433a47c0ddd0c6518379bc2fb360bbef68b926f97fa972a867fe53b4092701000000160014587d7804256964c8fe4e659481a556d8251b385e02000000000000", + "btc_change": 75820, + "btc_fee": 14180, + "rawtransaction": "02000000000101bfa686073b117ddf825e714b1f0f13130a33f6d38c3bf25743ca1a47c96bdad301000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff0200000000000000002b6a2931ee62339020c25acf99c9a5132a46a21f25946e48378e717a6a761a0de60aafb90fe3abfe05f70f2b2c28010000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", + "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", "status": "valid" } } @@ -8795,7 +8704,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 @@ -8856,7 +8765,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8874,9 +8783,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986327, - "btc_fee": 13673, - "rawtransaction": "02000000000101a3b0cdfd378531e9df9c157e6d81f126966b4b297ffb186ddca17dd17edc4c96000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000226a203c504548c45de13f4cd1baffc025e408e2532cf5fe9fda7c0043fcbb7471e08a97bc052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999986347, + "btc_fee": 13653, + "rawtransaction": "020000000001017ecb325e74aa440c4351c6a7ec6851f2c434fe4a08f0036ae64c59664453a0d4000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000226a2027391a43d611203c585ffe2b582f8e606b935ecfb891cc0e08ce6a85a22f1ee6abbc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8896,7 +8805,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: `bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f` (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) @@ -8963,7 +8872,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8986,9 +8895,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859539, - "btc_fee": 14260, - "rawtransaction": "02000000000101b70849e7d81a4963afecfd603aec0f1c93c4d63c8436369ff3978cfc9ac577b902000000160014e758594e9089d0b318d0b4045c4517ccd0604a18ffffffff0200000000000000002c6a2ae7c4b3240e4f1639da4514e096b8409e770a997d44b3627d85e201dc3391da3bb4e628fb40f7241682b2d3dc082701000000160014e758594e9089d0b318d0b4045c4517ccd0604a1802000000000000", + "btc_change": 4949859560, + "btc_fee": 14239, + "rawtransaction": "02000000000101924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a020000001600140144834ef3388923cb712f4700e69943a3dc6e8effffffff0200000000000000002c6a2a2819ad062ec48fa59c7aa4938a8400826287365ea27e3a74dc0c32aa601b2829bdf5635469f54e570d59e8dc0827010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9014,9 +8923,9 @@ 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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 + + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9075,15 +8984,15 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "quantity_per_unit": 1, - "asset": "FAIRMINTA", + "asset": "MYASSETA", "dividend_asset": "XCP", "skip_validation": false, "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -9097,17 +9006,17 @@ Composes a transaction to issue a dividend to holders of a given asset. "quantity_per_unit_normalized": "0.00000001" }, "name": "dividend", - "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986268, - "btc_fee": 13732, - "rawtransaction": "0200000000010183636c67580884f5cd278b86d297c2975be75ea94811b302946f2e44fc44cf12000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000236a2164d5c7631fd202f68d301b2262c5e0f3c9584b14201851eabd5e806a9d5b5481bc5cbc052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999986288, + "btc_fee": 13712, + "rawtransaction": "020000000001014d6a88e54696e169e7aac1d204615391e6047e7ca812ae7b05d8f970d4231ab6000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a219dd2bc1102b247bd84b5da1c68d0321d536ed176265b5259caa347ff966c0fac5570bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, "message_data": { - "asset": "FAIRMINTA", + "asset": "MYASSETA", "quantity_per_unit": 1, "dividend_asset": "XCP", "status": "valid", @@ -9123,10 +9032,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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` @@ -9193,10 +9102,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "transfer_destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "lock": false, "reset": false, @@ -9208,9 +9117,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": 4999983727, - "btc_fee": 15727, - "rawtransaction": "02000000000101017006842bb51272e87ad0e28340636dccb054255fb54c1687967d078cb79e7c000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff0322020000000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d4840000000000000000236a216230f4618f894d3b76e526c417f309db263f319416b5896dc29ca30a5216c4e91e6fb2052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999983750, + "btc_fee": 15704, + "rawtransaction": "0200000000010159cef7239026579c37c4618d1e73ad3012848ddd8091df35e50d094489e1bd3c000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000236a219df90a78aabe9bc7f229189673b56dea26021278a258b3e75a2a78a28d727f36fe86b2052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9239,9 +9148,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: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + assets: `XCP,FREEFAIRMINT` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v,bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - comma-separated list of addresses to send to + + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send + + destinations: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9308,16 +9217,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", 1 ], [ - "FREEFAIRMINT", - "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "FAIRMINTC", + "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", 2 ] ], @@ -9326,26 +9235,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002805716fa7773ad7157f8cb99c7fa6fc18b2e00d484802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf4012737f10d9927d5000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002804e4bc3d832d60b7da913935414c5286ed1499d42804758f71d04423d2fbee14cb3ef2cfce5166e4c9a4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785285, - "btc_fee": 20715, - "rawtransaction": "0200000000010160c6c2f8d3a4a69a12666c62748632d9dd757eb3914dfb2ebe6f60ae3d09dd92030000001600142ac7b47cc46a945dc0852c15fc77731f0bc0a3bfffffffff03e80300000000000069512103dacff35195b3a79499799f63a8acdbe050b8921d99d334f8dddf82cc1fc801bc21022506508b212f0ed983fef4239b5a5e35a0a5ce3f795ccb3d13cacd5d810e224d21025a62613c797bda3b979c588607e996d9d183f2480f95cfc4dd4f8ac46d9102b953aee80300000000000069512103c5cff35195b3a794992a9f6128fbcd1a27ef3f6cce2bff611a21ed0d94e601632103f182d1a1e69b721de96aa9e31e764bc9d7d6d134b9ff747d01b9b24d589c5f9a21025a62613c797bda3b979c588607e996d9d183f2480f95cfc4dd4f8ac46d9102b953aec5ba0727010000001600142ac7b47cc46a945dc0852c15fc77731f0bc0a3bf02000000000000", + "btc_change": 4949785315, + "btc_fee": 20685, + "rawtransaction": "02000000000101e2bc8d7c192736a471c479589924132fd95e2f5ffff13a20dcb4d06f065e45e9030000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9affffffff03e8030000000000006951210397521797391f280eac53efc384c9002bf7310b8b0c5e4d806b2fe6abf04b15e121025932764086d2c54956c09f2c74d7a0b11794e59690c37c855b6f35c00967612c2102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee8030000000000006951210288521797391f280eac40efc104874be82f27dd8071f75e133f3f23839e9a5c362102c470f707de25d84d14fdb092959b135e3b680080fe8fe6c55b6f092eb6e3d8422102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee3ba0727010000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9a02000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { - "asset": "FREEFAIRMINT", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "asset": "FAIRMINTC", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9361,10 +9270,10 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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 + + get_asset: `BURNER` (str, required) - The asset that will be received in the trade + get_quantity: `1000` (int, required) - The quantity of the asset that will be received (in satoshis, hence integer) + expiration: `100` (int, required) - The number of blocks for which the order should be valid + fee_required: `100` (int, 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) @@ -9425,10 +9334,10 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, - "get_asset": "FAIRMINTA", + "get_asset": "BURNER", "get_quantity": 1000, "expiration": 100, "fee_required": 100, @@ -9442,29 +9351,29 @@ Composes a transaction to place an order on the distributed exchange. }, "get_asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", "fee_required_normalized": "0.00000100" }, "name": "order", - "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985212, - "btc_fee": 14788, - "rawtransaction": "020000000001016b06ddcdbc3161c2820dc9f92f2639d7351044912b4ab676f5430ade7ebb0f4e000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000356a33e677fe1d2baf99939d7ff0e4d0d8e05fb54064e457893727cd72e48f2025b514a88725468f5990c7234e99e44f7a731aebd9723cb8052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999985234, + "btc_fee": 14766, + "rawtransaction": "02000000000101e7ff4293e00a0d5a8ca1a44f8826fccf9413794997140e79d06b16278cbbff8e000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000356a3376a0f45518e049d18ba51813dd2fe07276e22f8ff4b75ce8db23b86f38081debafa46bc7b8f6f7c4376bc750f8560291e6962e52b8052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, "message_data": { "give_asset": "XCP", "give_quantity": 1000, - "get_asset": "FAIRMINTA", + "get_asset": "BURNER", "get_quantity": 1000, "expiration": 100, "fee_required": 100, @@ -9483,8 +9392,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address that will be receiving the asset + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (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 @@ -9550,8 +9459,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9568,19 +9477,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf", + "data": "434e54525052545902000000000000000100000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985506, - "btc_fee": 14494, - "rawtransaction": "020000000001015d94036115866a6ea90eab9bf2802fb6aba949dca8b670c35f0bb8e54c7c80ce000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000306a2e81f259139255c54b9d79dd0da3fcbbffc17116838eaa76ab120e35ac953b4ac403880761ba4cf5f1db95af96c0bd62b9052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999985527, + "btc_fee": 14473, + "rawtransaction": "02000000000101201943fc76756fc834f82c62c6d7ba41d0447b751a6d92bbb11cc2a56c748a4f000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000306a2e98532bb7bb38012efe7abfe9882db000bf5e081706b43e26fbb15ab8cc00bcc55853515537469239b697ee3a04c777b9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "memo": null, "quantity_normalized": "0.00001000" } @@ -9594,8 +9503,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be sending - + destination: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending + + destination: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (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 @@ -9655,24 +9564,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904802ac7b47cc46a945dc0852c15fc77731f0bc0a3bf07ffff", + "data": "434e54525052545904804758f71d04423d2fbee14cb3ef2cfce5166e4c9a07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986268, - "btc_fee": 13732, - "rawtransaction": "0200000000010134d6150ae2d48ae2329d3b923635126c5f07d02638f4684611dad3f63110dea0000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000236a2107f73d39809f4230e6b2d60f74dd3df17dc8e095019175c7d590efc1c017bfb1d25cbc052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999986288, + "btc_fee": 13712, + "rawtransaction": "020000000001012585efa30fccd74f23785f8fd5bf77cbf9284efedbe763348591c0ab5505ef33000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a21bf695bf0554eabd45b0c504007c4168277d37da0676fe09caf5fbd4d9feaef7a9d70bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "flags": 7, "memo": "ffff" } @@ -9686,8 +9595,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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4` (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` @@ -9746,8 +9655,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "quantity": 1000, "skip_validation": false }, @@ -9755,9 +9664,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984623, - "btc_fee": 14377, - "rawtransaction": "0200000000010193df50380287354be66126fed2dd3b665bfdfcfc5999652b69b473a4ca31561b000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff03e803000000000000160014bf917363f27d88f04278081b24523c672a6b113800000000000000000c6a0a0843f9e51469108c9077efb5052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999984644, + "btc_fee": 14356, + "rawtransaction": "02000000000101f02c497cb84c7081763cd99d52da00f3a19d0f1e75ee45992ee2e7632d149627000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014ff54853ee2276b9aab2abefe1f5b88979b11ba5300000000000000000c6a0ab84562355795aca39de004b6052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9774,7 +9683,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address that will be issuing the asset + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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: `` @@ -9865,7 +9774,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9895,9 +9804,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985447, - "btc_fee": 14553, - "rawtransaction": "02000000000101be74e7715620f1e17d8368032de3492bc421e6080ca9094c75c2c02f5bfaf3a8000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000316a2fb0bdabb63b2ec48b31fdad92e8a50c8af40cf1ab41f4785dc4c9b51ee841759a7310bd0221ab30212b21f936615bd027b9052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999985468, + "btc_fee": 14532, + "rawtransaction": "020000000001018593d758a6d891a8daea3703f8937e5ab0e2bda4c76b1951ab8d6295cc4256a5000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000316a2f4c4f9c10060bfba9ffdbcf2fbaec4223b2b3e3315b23c9ddb098fc69bac9b0e10a810eb844f50c28ed2c9454de30ac3cb9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9936,9 +9845,9 @@ 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: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (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) + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be minting the asset + + asset: `OPENFAIR` (str, required) - The asset to mint + + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9997,33 +9906,33 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTC", - "quantity": 1, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "OPENFAIR", + "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "0.00000000" }, "name": "fairmint", - "data": "434e5452505254595b464149524d494e54437c31", + "data": "434e5452505254595b4f50454e464149527c30", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987031, - "btc_fee": 12969, - "rawtransaction": "02000000000101306fec4cef25eaf92fa3d503585980f510f0cca7e80214e119a1c72644a4f92a000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff020000000000000000166a145be04859e9e05d47558e16b846684e988afbed0457bf052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999987109, + "btc_fee": 12891, + "rawtransaction": "020000000001013127650871802a0d89c909503c6dc08d1701fe7b7fe0e31953c45c474ce8c269000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000156a13560f9484fa6e1b39bfd269f7768748fc359ae7a5bf052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, "message_data": { - "asset": "FAIRMINTC", - "quantity": 1, - "quantity_normalized": "0.00000001" + "asset": "OPENFAIR", + "quantity": 0, + "quantity_normalized": "0.00000000" } } } @@ -10035,7 +9944,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address from which the assets are attached + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10099,7 +10008,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10117,9 +10026,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984607, - "btc_fee": 14847, - "rawtransaction": "02000000000101700a60f7988b60b84f6b78b36d454f3a40127f9c64bf9854f07ae032be7a176b000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d484ffffffff0322020000000000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d4840000000000000000146a12badc599733a5def3a31b5c2f9a16515d07cddfb5052a010000001600145716fa7773ad7157f8cb99c7fa6fc18b2e00d48402000000000000", + "btc_change": 4999984629, + "btc_fee": 14825, + "rawtransaction": "020000000001018ba4bf916f7ab6e1480f2829b82fea1816ab1d2a33177cb6f58d97ff40f059e8000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000146a1295def032c14a60f762adbb2cfc68434b412df5b5052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10139,8 +10048,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: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10203,22 +10112,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713275743035616d6e34346334303778746e38726c356d377033766871703479797a3478323876", - "btc_in": 4949971000, + "data": "434e5452505254596662637274317166653975386b706a366339686d32676e6a64327066336667646d67356e38327a73366d346e78", + "btc_in": 4949951000, "btc_out": 0, - "btc_change": 4949945473, - "btc_fee": 25527, - "rawtransaction": "02000000000102b70849e7d81a4963afecfd603aec0f1c93c4d63c8436369ff3978cfc9ac577b9000000001600149755319bc2231accd1b895e0999b1cfdb799800affffffff96933340837429b4dd2c043af4faaedf4696586540f73864ec73398de84ece41010000001600149755319bc2231accd1b895e0999b1cfdb799800affffffff020000000000000000376a35e7c4b3240e4f1639b0277792e28931ac037ea94825de0c4a598135ec04e9ae56649444ce2dc0542590dad0ffce7a74b4a99add0068812c0a27010000001600149755319bc2231accd1b895e0999b1cfdb799800a02000002000000000000", + "btc_change": 4949925510, + "btc_fee": 25490, + "rawtransaction": "02000000000102924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a00000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff2b6f2a5ecf4d388e0f2a3124c49a5e15a0e2abe42167866125309aca5b4808cd01000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff020000000000000000376a352819ad062ec48fa5f618c7e1feb571e406be4366c90e504157355ac7527c464031c713325a932933043e626f60b2f06275f3f5bd7486de092701000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v" + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx" } } } @@ -10319,93 +10228,93 @@ Returns the valid assets { "result": [ { - "asset": "PARENTB", - "asset_id": "4641584819", - "asset_longname": null, - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "owner": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset": "OPENFAIR", + "asset_id": "117132633401", + "asset_longname": "", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "owner": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "divisible": true, "locked": false, - "supply": 100000000000, - "description": "My super asset PARENTB", - "first_issuance_block_index": 217, - "last_issuance_block_index": 217, + "supply": 0, + "description": "", + "first_issuance_block_index": 229, + "last_issuance_block_index": 229, "confirmed": true, - "first_issuance_block_time": 1731013284, - "last_issuance_block_time": 1731013284, - "supply_normalized": "1000.00000000" + "first_issuance_block_time": 1731170650, + "last_issuance_block_time": 1731170650, + "supply_normalized": "0.00000000" }, { - "asset": "PARENTA", - "asset_id": "4641584818", - "asset_longname": null, - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "owner": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset": "STARTNOW", + "asset_id": "150450094622", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, "locked": false, - "supply": 100000000000, - "description": "My super asset PARENTA", - "first_issuance_block_index": 215, - "last_issuance_block_index": 215, + "supply": 0, + "description": "let's start now", + "first_issuance_block_index": 225, + "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731013266, - "last_issuance_block_time": 1731013266, - "supply_normalized": "1000.00000000" + "first_issuance_block_time": 1731170636, + "last_issuance_block_time": 1731170640, + "supply_normalized": "0.00000000" }, { - "asset": "MPMASSET", - "asset_id": "101158363923", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "asset": "EXPANSIVE", + "asset_id": "1024679892006", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 209, - "last_issuance_block_index": 209, + "supply": 0, + "description": "too expensive for you", + "first_issuance_block_index": 222, + "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731013233, - "last_issuance_block_time": 1731013233, - "supply_normalized": "1000.00000000" + "first_issuance_block_time": 1731170625, + "last_issuance_block_time": 1731170628, + "supply_normalized": "0.00000000" }, { - "asset": "UTXOASSET", - "asset_id": "4336417415635", - "asset_longname": null, - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "owner": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "asset": "BURNER", + "asset_id": "21328597", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset", - "first_issuance_block_index": 204, - "last_issuance_block_index": 204, + "locked": true, + "supply": 100000000, + "description": "let's burn it", + "first_issuance_block_index": 220, + "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731013209, - "last_issuance_block_time": 1731013209, - "supply_normalized": "1000.00000000" + "first_issuance_block_time": 1731170619, + "last_issuance_block_time": 1731170622, + "supply_normalized": "1.00000000" }, { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "asset": "LOCKDESC", + "asset_id": "92703121214", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 162, - "last_issuance_block_index": 164, + "locked": true, + "supply": 12000000000, + "description": "My super asset LOCKDESC", + "first_issuance_block_index": 216, + "last_issuance_block_index": 219, "confirmed": true, - "first_issuance_block_time": 1731013008, - "last_issuance_block_time": 1731013016, - "supply_normalized": "100.00000000" + "first_issuance_block_time": 1731170603, + "last_issuance_block_time": 1731170614, + "supply_normalized": "120.00000000" } ], - "next_cursor": 9, - "result_count": 13 + "next_cursor": 17, + "result_count": 18 } ``` @@ -10414,7 +10323,7 @@ Returns the valid assets Returns an asset by its name + Parameters - + asset: `FAIRMINTA` (str, required) - The name of the asset to return + + asset: `BURNER` (str, required) - The name of the asset 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. @@ -10425,21 +10334,21 @@ Returns an asset by its name ``` { "result": { - "asset": "FAIRMINTA", - "asset_id": "1046814266082", + "asset": "BURNER", + "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "", - "first_issuance_block_index": 122, - "last_issuance_block_index": 125, + "locked": true, + "supply": 100000000, + "description": "let's burn it", + "first_issuance_block_index": 220, + "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731012846, - "last_issuance_block_time": 1731012858, - "supply_normalized": "100.00000000" + "first_issuance_block_time": 1731170619, + "last_issuance_block_time": 1731170622, + "supply_normalized": "1.00000000" } } ``` @@ -10449,7 +10358,7 @@ Returns an asset by its name Returns the asset balances + Parameters - + asset: `FAIRMINTA` (str, required) - The asset to return + + asset: `BURNER` (str, required) - The asset 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 @@ -10469,34 +10378,34 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "utxo": null, "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 9500000000, + "asset": "BURNER", + "quantity": 80000000, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "95.00000000" + "quantity_normalized": "0.80000000" }, { - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "utxo": null, "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 500000000, + "asset": "BURNER", + "quantity": 20000000, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "5.00000000" + "quantity_normalized": "0.20000000" } ], "next_cursor": null, @@ -10510,7 +10419,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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. @@ -10522,9 +10431,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", - "quantity": 82599965196, + "quantity": 82599966196, "utxo": null, "utxo_address": null, "asset_info": { @@ -10534,7 +10443,7 @@ Returns the balances of an address and asset "divisible": true, "locked": true }, - "quantity_normalized": "825.99965000" + "quantity_normalized": "825.99966000" } ], "next_cursor": null, @@ -10576,9 +10485,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10586,7 +10495,7 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 187, + "expire_index": 178, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10595,7 +10504,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013046, + "block_time": 1731170360, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10623,9 +10532,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10633,7 +10542,7 @@ Returns the orders of an asset "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 210, + "expire_index": 201, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10642,7 +10551,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10670,9 +10579,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10680,7 +10589,7 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 217, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10689,7 +10598,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013161, + "block_time": 1731170449, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10717,9 +10626,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "block_index": 220, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "block_index": 211, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10727,7 +10636,7 @@ Returns the orders of an asset "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 219, + "expire_index": 210, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10736,7 +10645,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013306, + "block_time": 1731170575, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10764,9 +10673,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10774,7 +10683,7 @@ Returns the orders of an asset "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 211, + "expire_index": 202, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -10783,7 +10692,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013119, + "block_time": 1731170429, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10847,27 +10756,27 @@ Returns the orders of an asset { "result": [ { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, + "tx0_block_index": 181, + "tx1_block_index": 183, + "block_index": 204, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 212, + "match_expire_index": 203, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170539, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10887,27 +10796,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 56, - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, + "tx0_block_index": 180, + "tx1_block_index": 181, + "block_index": 182, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 210, + "match_expire_index": 201, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731013119, + "block_time": 1731170429, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10927,27 +10836,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4_9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", + "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", "tx0_index": 53, - "tx0_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 54, - "tx1_hash": "9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, + "tx0_block_index": 157, + "tx1_block_index": 158, + "block_index": 179, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 187, + "match_expire_index": 178, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731013046, + "block_time": 1731170360, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10967,27 +10876,27 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, + "tx0_block_index": 189, + "tx1_block_index": 204, + "block_index": 225, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 233, + "match_expire_index": 224, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170636, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11017,7 +10926,7 @@ Returns the orders of an asset Returns the credits of an asset + Parameters - + asset: `FAIRMINTA` (str, required) - The asset to return + + asset: `BURNER` (str, required) - The asset to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -11066,113 +10975,50 @@ Returns the credits of an asset { "result": [ { - "block_index": 199, - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "sweep", - "event": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "tx_index": 65, + "block_index": 221, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "quantity": 20000000, + "calling_function": "fairmint commission", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013178, + "block_time": 1731170622, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "5.00000000" + "quantity_normalized": "0.20000000" }, { - "block_index": 125, - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "asset": "FAIRMINTA", - "quantity": 9000000000, + "block_index": 221, + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "BURNER", + "quantity": 80000000, "calling_function": "fairmint", - "event": "171d3f3e491026217b6016f00d63b4b4a6ff451e56ed482e2e84cfdb7de0874d", - "tx_index": 13, + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731012858, + "block_time": 1731170622, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "90.00000000" - }, - { - "block_index": 124, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "escrowed fairmint", - "event": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" + "quantity_normalized": "0.80000000" } ], - "next_cursor": 12, - "result_count": 6 + "next_cursor": null, + "result_count": 2 } ``` @@ -11219,17 +11065,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 226, + "block_index": 230, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "utxo": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "utxo_address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11240,17 +11086,17 @@ Returns the debits of an asset "quantity_normalized": "20.00000000" }, { - "block_index": 217, - "address": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "block_index": 229, + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset": "XCP", "quantity": 50000000, - "action": "issuance fee", - "event": "9b7da8431490abc3a01e42e9309afaa1c2bfb314f8f1c9fd6836274abd584535", - "tx_index": 84, + "action": "fairminter fee", + "event": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013284, + "block_time": 1731170650, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11261,17 +11107,17 @@ Returns the debits of an asset "quantity_normalized": "0.50000000" }, { - "block_index": 215, - "address": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "block_index": 225, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "asset": "XCP", "quantity": 50000000, - "action": "issuance fee", - "event": "ec296ef575d4b032f288b5abd6b7cb183edb50c6fc64e11ae2cf51c52c425ffa", - "tx_index": 82, + "action": "fairminter fee", + "event": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013266, + "block_time": 1731170636, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11282,17 +11128,17 @@ Returns the debits of an asset "quantity_normalized": "0.50000000" }, { - "block_index": 214, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "block_index": 222, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "tx_index": 81, + "quantity": 50000000, + "action": "fairminter fee", + "event": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170625, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11300,20 +11146,20 @@ Returns the debits of an asset "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.50000000" }, { - "block_index": 213, - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "block_index": 221, + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "tx_index": 80, + "quantity": 100000000, + "action": "burn fairmint payment", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11321,11 +11167,11 @@ Returns the debits of an asset "divisible": true, "locked": true }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "1.00000000" } ], - "next_cursor": 69, - "result_count": 48 + "next_cursor": 80, + "result_count": 54 } ``` @@ -11334,7 +11180,7 @@ Returns the debits of an asset Returns the dividends of an asset + Parameters - + asset: `FREEFAIRMINT` (str, required) - The asset to return + + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the dividend to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dividend to return @@ -11361,7 +11207,7 @@ Returns the dividends of an asset Returns the issuances of an asset + Parameters - + asset: `FAIRMINTA` (str, required) - The asset to return + + asset: `BURNER` (str, required) - The asset to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -11392,104 +11238,48 @@ Returns the issuances of an asset { "result": [ { - "tx_index": 13, - "tx_hash": "171d3f3e491026217b6016f00d63b4b4a6ff451e56ed482e2e84cfdb7de0874d", + "tx_index": 97, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", "msg_index": 0, - "block_index": 125, - "asset": "FAIRMINTA", - "quantity": 9000000000, + "block_index": 221, + "asset": "BURNER", + "quantity": 100000000, "divisible": true, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "", + "description": "let's burn it", "fee_paid": 0, "status": "valid", "asset_longname": "", - "locked": false, + "locked": true, "reset": false, - "description_locked": false, + "description_locked": true, "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731012858, - "quantity_normalized": "90.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 12, - "tx_hash": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "msg_index": 0, - "block_index": 124, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731012854, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 11, - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "msg_index": 0, - "block_index": 123, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1731012851, - "quantity_normalized": "5.00000000", + "block_time": 1731170622, + "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 10, - "tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", + "tx_index": 96, + "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", "msg_index": 0, - "block_index": 122, - "asset": "FAIRMINTA", + "block_index": 220, + "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "", + "description": "let's burn it", "fee_paid": 50000000, "status": "valid", "asset_longname": "", @@ -11499,13 +11289,13 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731012846, + "block_time": 1731170619, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } ], "next_cursor": null, - "result_count": 4 + "result_count": 2 } ``` @@ -11532,11 +11322,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11544,7 +11334,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11557,10 +11347,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11568,7 +11358,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11581,10 +11371,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "d5dbe61456d35a8a53c936528cd307770b2f628d2de3e396608c20b2d2badf03", - "block_index": 213, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "block_index": 204, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11592,7 +11382,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170539, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11605,10 +11395,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "612dd867a95008ca3b2a4f67e82ab253446a292dc6bc3f6aeb98925fc269a442", - "block_index": 212, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11616,7 +11406,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731013254, + "block_time": 1731170536, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11629,10 +11419,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "fb267f8a38d0c179cab8fcb9c1e3f9ba898786984d012a8783916ffe9415eae8", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11640,7 +11430,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11691,9 +11481,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11702,7 +11492,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11713,7 +11503,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11730,9 +11520,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "41e672432e226a30765f1431190a6c7d09beded14a933374bbf2d8970369b86a", - "block_index": 142, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "block_index": 133, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11741,7 +11531,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11752,7 +11542,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012921, + "block_time": 1731170232, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11769,9 +11559,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "75b889823e84b7a7059780a1c71629f21476260dba9f397c1331e672b58251be", - "block_index": 150, - "source": "mxxwriDwLVdP4YkzH5eeeTKQfHvT9TVNvz", + "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "block_index": 141, + "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11779,11 +11569,11 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "cad07be6ac8dc4518c73f77014f86efa2439d835da6b836d2cfc798b62572baf", - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "close_block_index": 150, + "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "close_block_index": 141, "price": 1.0, "confirmed": true, "fiat_price": null, @@ -11791,7 +11581,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012953, + "block_time": 1731170271, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11808,18 +11598,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11828,9 +11618,9 @@ Returns the dispensers of an asset "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11856,7 +11646,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - The address to return + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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` @@ -11869,9 +11659,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11880,7 +11670,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11891,7 +11681,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11914,7 +11704,7 @@ Returns the dispenser of an address and an asset Returns the holders of an asset + Parameters - + asset: `FAIRMINTA` (str, required) - The asset to return + + asset: `BURNER` (str, required) - The asset to return + cursor (str, optional) - The last index of the holder to return + Default: `None` + limit: `5` (int, optional) - The maximum number of holders to return @@ -11932,76 +11722,42 @@ Returns the holders of an asset { "result": [ { - "asset": "FAIRMINTA", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_12", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "quantity": 500000000, - "escrow": null, - "cursor_id": "balances_13", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "quantity": 0, + "asset": "BURNER", + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "quantity": 80000000, "escrow": null, - "cursor_id": "balances_14", + "cursor_id": "balances_55", "holding_type": "balances", "status": null, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "0.00000000" + "quantity_normalized": "0.80000000" }, { - "asset": "FAIRMINTA", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "quantity": 9500000000, + "asset": "BURNER", + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "quantity": 20000000, "escrow": null, - "cursor_id": "balances_15", + "cursor_id": "balances_56", "holding_type": "balances", "status": null, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "95.00000000" + "quantity_normalized": "0.20000000" } ], "next_cursor": null, - "result_count": 4 + "result_count": 2 } ``` @@ -12028,36 +11784,36 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 93, + "tx_index": 104, "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -12065,7 +11821,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12079,34 +11835,34 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2a2f1aeab4cc291bda068c60d70fdc43f151a5d777dfb199b19b1b7df63f8b8", - "block_index": 147, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "block_index": 138, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -12114,7 +11870,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731012941, + "block_time": 1731170260, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12128,19 +11884,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12148,7 +11904,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12163,7 +11919,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12177,19 +11933,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12197,7 +11953,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12212,7 +11968,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12234,7 +11990,7 @@ Returns the dispenses of an asset Returns asset subassets + Parameters - + asset: `MYASSETA` (str, required) - The name of the asset to return + + asset: `FREEFAIRMINT` (str, required) - The name of the asset 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 @@ -12250,27 +12006,9 @@ Returns asset subassets ``` { - "result": [ - { - "asset": "A95428958968845068", - "asset_id": "95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "owner": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 156, - "last_issuance_block_index": 156, - "confirmed": true, - "first_issuance_block_time": 1731012975, - "last_issuance_block_time": 1731012975, - "supply_normalized": "0.00000000" - } - ], + "result": [], "next_cursor": null, - "result_count": 1 + "result_count": 0 } ``` @@ -12279,7 +12017,7 @@ Returns asset subassets Returns the fairminter by its asset + Parameters - + asset: `FAIRMINTA` (str, required) - The asset of the fairminter to return + + asset: `BURNER` (str, required) - The asset of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -12304,44 +12042,44 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "FAIRMINTA", + "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_index": 96, + "block_index": 221, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", "asset_parent": "", "asset_longname": "", - "description": "", + "description": "let's burn it", "price": 1, "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, + "hard_cap": 100000000, + "burn_payment": true, "max_mint_per_tx": 0, "premint_quantity": 0, "start_block": 0, "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, + "minted_asset_commission_int": 20000000, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": true, + "lock_quantity": true, "divisible": true, "pre_minted": false, "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, + "earned_quantity": 80000000, + "commission": 20000000, + "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731012858, + "block_time": 1731170622, "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", + "hard_cap_normalized": "1.00000000", + "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" + "earned_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" } ], "next_cursor": null, @@ -12354,7 +12092,7 @@ Returns the fairminter by its asset Returns the mints by asset + Parameters - + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -12372,80 +12110,32 @@ Returns the mints by asset { "result": [ { - "tx_hash": "171d3f3e491026217b6016f00d63b4b4a6ff451e56ed482e2e84cfdb7de0874d", - "tx_index": 13, - "block_index": 125, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 9000000000, - "paid_quantity": 9000000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012858, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "90.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "90.00000000" - }, - { - "tx_hash": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01", - "tx_index": 12, - "block_index": 124, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012854, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - }, - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731012851, + "block_time": 1731170622, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" } ], "next_cursor": null, - "result_count": 3 + "result_count": 1 } ``` @@ -12454,8 +12144,8 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4` (str, required) - The address of the mints to return - + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address of the mints to return + + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -12471,34 +12161,9 @@ Returns the mints by address and asset ``` { - "result": [ - { - "tx_hash": "6ff1d72d5d666f9f88f62c17a75be6b5e5dc07830f9e238f48e8560d46a134d9", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "50de3f22c2be9f9cb0fc40e3fe35e4deb7eadd892fa90049a16b9fb90effd0ec", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1731012851, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], + "result": [], "next_cursor": null, - "result_count": 1 + "result_count": 0 } ``` @@ -12541,9 +12206,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12551,7 +12216,7 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 187, + "expire_index": 178, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12560,7 +12225,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013046, + "block_time": 1731170360, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12588,9 +12253,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12598,7 +12263,7 @@ Returns all the orders "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 211, + "expire_index": 202, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12607,7 +12272,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013119, + "block_time": 1731170429, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12635,9 +12300,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12645,7 +12310,7 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 217, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12654,7 +12319,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013161, + "block_time": 1731170449, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12682,9 +12347,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12692,7 +12357,7 @@ Returns all the orders "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 210, + "expire_index": 201, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12701,7 +12366,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013241, + "block_time": 1731170533, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12729,9 +12394,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "block_index": 214, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "block_index": 205, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12739,7 +12404,7 @@ Returns all the orders "get_quantity": 3000, "get_remaining": 2000, "expiration": 21, - "expire_index": 213, + "expire_index": 204, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12748,7 +12413,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12776,7 +12441,7 @@ Returns all the orders } ], "next_cursor": 64, - "result_count": 8 + "result_count": 9 } ``` @@ -12785,7 +12450,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502` (str, required) - The hash of the transaction that created the order + + order_hash: `d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf` (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. @@ -12796,18 +12461,18 @@ Returns the information of an order ``` { "result": { - "tx_index": 92, - "tx_hash": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "block_index": 225, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "give_asset": "UTXOASSET", + "tx_index": 102, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_asset": "BTC", "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", + "give_remaining": 0, + "get_asset": "UTXOASSET", "get_quantity": 1000, - "get_remaining": 1000, + "get_remaining": 0, "expiration": 21, - "expire_index": 246, + "expire_index": 249, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12816,25 +12481,25 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731013334, + "block_time": 1731170647, "give_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", - "divisible": true, - "locked": false - }, - "get_asset_info": { "divisible": true, "asset_longname": null, "description": "The Bitcoin cryptocurrency", "locked": false, "issuer": null }, + "get_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", + "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", @@ -12850,7 +12515,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae` (str, required) - The hash of the transaction that created the order + + order_hash: `ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5` (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 @@ -12877,33 +12542,33 @@ Returns the order matches of an order { "result": [ { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "forward_asset": "XCP", + "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx0_index": 101, + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx1_index": 102, + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, + "tx0_block_index": 227, + "tx1_block_index": 228, + "block_index": 228, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 233, + "match_expire_index": 248, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170647, "forward_asset_info": { "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "divisible": true, - "locked": true + "locked": false }, "backward_asset_info": { "divisible": true, @@ -12927,7 +12592,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324` (str, required) - The hash of the transaction that created the order + + order_hash: `12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92` (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 @@ -12946,15 +12611,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "d500bfbb1dcc35c17193bf10f0d1cc64c92693ebe3975e58b01c3e403dc153f7", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "btc_amount": 2000, - "order_match_id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", + "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", "status": "valid", "confirmed": true, - "block_time": 1731013119, + "block_time": 1731170429, "btc_amount_normalized": "0.00002000" } ], @@ -12998,9 +12663,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "block_index": 191, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -13008,7 +12673,7 @@ Returns the orders to exchange two assets "get_quantity": 2000, "get_remaining": 0, "expiration": 21, - "expire_index": 211, + "expire_index": 202, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13018,7 +12683,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731013119, + "block_time": 1731170429, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13044,9 +12709,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "block_index": 214, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "block_index": 205, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -13054,7 +12719,7 @@ Returns the orders to exchange two assets "get_quantity": 3000, "get_remaining": 2000, "expiration": 21, - "expire_index": 213, + "expire_index": 204, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13064,7 +12729,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731013262, + "block_time": 1731170544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13090,9 +12755,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "block_index": 188, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13100,7 +12765,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 187, + "expire_index": 178, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13110,7 +12775,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013046, + "block_time": 1731170360, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13136,9 +12801,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "block_index": 211, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13146,7 +12811,7 @@ Returns the orders to exchange two assets "get_quantity": 10000, "get_remaining": 5000, "expiration": 21, - "expire_index": 210, + "expire_index": 201, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13156,7 +12821,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013241, + "block_time": 1731170533, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13182,9 +12847,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "75f7042df71c889764f2a517bb4c549b13487db723602c9bc6e2c49422dafb2f", - "block_index": 197, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13192,7 +12857,7 @@ Returns the orders to exchange two assets "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 217, + "expire_index": 208, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -13202,7 +12867,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013161, + "block_time": 1731170449, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13265,30 +12930,30 @@ Returns the orders to exchange two assets { "result": [ { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, + "tx0_block_index": 181, + "tx1_block_index": 183, + "block_index": 204, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 212, + "match_expire_index": 203, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013258, + "block_time": 1731170539, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13308,30 +12973,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 56, - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, + "tx0_block_index": 180, + "tx1_block_index": 181, + "block_index": 182, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 210, + "match_expire_index": 201, "fee_paid": 0, "status": "completed", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013119, + "block_time": 1731170429, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13351,30 +13016,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4_9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", + "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", "tx0_index": 53, - "tx0_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 54, - "tx1_hash": "9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, + "tx0_block_index": 157, + "tx1_block_index": 158, + "block_index": 179, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 187, + "match_expire_index": 178, "fee_paid": 0, "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013046, + "block_time": 1731170360, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13394,30 +13059,30 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, + "tx0_block_index": 189, + "tx1_block_index": 204, + "block_index": 225, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 233, + "match_expire_index": 224, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731013258, + "block_time": 1731170636, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13475,27 +13140,27 @@ Returns all the order matches { "result": [ { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", "backward_quantity": 3000, - "tx0_block_index": 190, - "tx1_block_index": 192, - "block_index": 213, + "tx0_block_index": 181, + "tx1_block_index": 183, + "block_index": 204, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 212, + "match_expire_index": 203, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170539, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13515,27 +13180,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324_f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", "tx0_index": 55, - "tx0_hash": "e9ad32d99e84b40bb4dfb95b72bf854aaa90bdc8727fabcfeb831a4b29259324", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 56, - "tx1_hash": "f1738fd172ec403ed0e8d68615a71ac5b43d1a37e670204f6bedee4e0757a97d", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", "backward_quantity": 2000, - "tx0_block_index": 189, - "tx1_block_index": 190, - "block_index": 191, + "tx0_block_index": 180, + "tx1_block_index": 181, + "block_index": 182, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 210, + "match_expire_index": 201, "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731013119, + "block_time": 1731170429, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13555,27 +13220,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4_9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", + "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", "tx0_index": 53, - "tx0_hash": "17fe5394ae4226c048b58cf45c16497971603ecbf14a8053507403ef19b017e4", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 54, - "tx1_hash": "9171d2dfd1d45387431d5a10b2eed091cc49820bb0e1ecbed6e531d175cce48f", - "tx1_address": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 166, - "tx1_block_index": 167, - "block_index": 188, + "tx0_block_index": 157, + "tx1_block_index": 158, + "block_index": 179, "tx0_expiration": 21, "tx1_expiration": 20, - "match_expire_index": 187, + "match_expire_index": 178, "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731013046, + "block_time": 1731170360, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13595,27 +13260,27 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae_e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", "tx0_index": 64, - "tx0_hash": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "tx0_address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "tx1_index": 58, - "tx1_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d", - "tx1_address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 198, - "tx1_block_index": 213, - "block_index": 213, + "tx0_block_index": 189, + "tx1_block_index": 204, + "block_index": 225, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 233, + "match_expire_index": 224, "fee_paid": 0, - "status": "pending", + "status": "expired", "confirmed": true, - "block_time": 1731013258, + "block_time": 1731170636, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13633,10 +13298,50 @@ Returns all the order matches "forward_quantity_normalized": "0.00001000", "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" + }, + { + "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx0_index": 101, + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx1_index": 102, + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "forward_asset": "UTXOASSET", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 227, + "tx1_block_index": 228, + "block_index": 228, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 248, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1731170647, + "forward_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 } ``` @@ -13783,68 +13488,68 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "82ef10e34331f7ca41e6849f885b411185c92f405db3ae3ec71879e57cee14a2", - "block_index": 121, - "source": "bcrt1qx5k7pe38scuhulhq5alf5kn7ls690mrkfl20cw", + "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "block_index": 112, + "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", "burned": 50000000, - "earned": 74999996667, + "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731012843, + "block_time": 1731170152, "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" + "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "9d87662145da09d8627f6a8746078fb89b0ac5582bad3d8552426d34efa6cff8", - "block_index": 120, - "source": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "tx_hash": "066d80c64761f400fbd18d3dd8391224f704cf42dcb1c6d15e54a7f15a33b4bf", + "block_index": 112, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "burned": 50000000, - "earned": 74999996833, + "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731012839, + "block_time": 1731170152, "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" + "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "bb9c9d90ed91581771792e32793a5b497366608d64f0e8ce6ed66c4ddb56b4bc", - "block_index": 119, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "tx_hash": "b9395e3e3844138cef8fde9ff888415580c116bd8e9975c4dc35ec2951407cbc", + "block_index": 112, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "burned": 50000000, - "earned": 74999997000, + "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731012834, + "block_time": 1731170152, "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" + "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "defc829c85487147c6e648542945afc9eaa4a1e3292cda8505a1175702243afa", - "block_index": 118, - "source": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_hash": "5de79a3135089187a07fd2bf9c34f179132a515b883664c868d1e4ace39d8db2", + "block_index": 112, + "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "burned": 50000000, - "earned": 74999997167, + "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731012830, + "block_time": 1731170152, "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" + "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "59c02e273b2b013d84868241daf75161da8f78f3a40c0909a8f83000dc7f023d", - "block_index": 117, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_hash": "125f74f34ac583ba6169908c267879d6ad522539f64f6c21948910511133bea8", + "block_index": 112, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "burned": 50000000, - "earned": 74999997333, + "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731012827, + "block_time": 1731170152, "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" + "earned_normalized": "749.99998000" } ], "next_cursor": 4, @@ -13887,9 +13592,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13898,7 +13603,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13909,7 +13614,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13926,9 +13631,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "41e672432e226a30765f1431190a6c7d09beded14a933374bbf2d8970369b86a", - "block_index": 142, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "block_index": 133, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13937,7 +13642,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13948,7 +13653,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012921, + "block_time": 1731170232, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13965,9 +13670,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "75b889823e84b7a7059780a1c71629f21476260dba9f397c1331e672b58251be", - "block_index": 150, - "source": "mxxwriDwLVdP4YkzH5eeeTKQfHvT9TVNvz", + "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "block_index": 141, + "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13975,11 +13680,11 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "cad07be6ac8dc4518c73f77014f86efa2439d835da6b836d2cfc798b62572baf", - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "close_block_index": 150, + "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "close_block_index": 141, "price": 1.0, "confirmed": true, "fiat_price": null, @@ -13987,7 +13692,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012953, + "block_time": 1731170271, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14004,9 +13709,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -14015,7 +13720,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14026,11 +13731,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731013205, + "block_time": 1731170483, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -14043,18 +13748,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14063,9 +13768,9 @@ Returns all dispensers "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14091,7 +13796,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb` (str, required) - The hash of the dispenser to return + + dispenser_hash: `08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d` (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. @@ -14103,9 +13808,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -14114,7 +13819,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14125,7 +13830,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14148,7 +13853,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb` (str, required) - The hash of the dispenser to return + + dispenser_hash: `08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d` (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 @@ -14168,19 +13873,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14188,7 +13893,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14203,7 +13908,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14217,19 +13922,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14237,7 +13942,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14252,7 +13957,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14294,20 +13999,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731012971, + "block_time": 1731170290, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -14332,7 +14037,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035` (str, required) - The hash of the dividend to return + + dividend_hash: `330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd` (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. @@ -14344,20 +14049,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", - "block_index": 155, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731012971, + "block_time": 1731170290, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -14379,7 +14084,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd` (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 @@ -14397,17 +14102,17 @@ Returns a dividend distribution by its hash { "result": [ { - "block_index": 155, + "block_index": 146, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "93f3a4ca0c0ef3ddf26d164122c59af80183959cecb5433bac6469499da66035", + "event": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", "tx_index": 42, - "utxo": "b1c3fb62a65aa5d38fe8b26a4f114dc2bccebbc712bd85dd78382890338632dd:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "utxo": "973027356bbd74d850e93cfc1e2b096632d95c4d57f7171600fadc09699dfa21:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "confirmed": true, - "block_time": 1731012971, + "block_time": 1731170290, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14432,7 +14137,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14449,47 +14154,47 @@ Returns all events { "result": [ { - "event_index": 813, + "event_index": 892, "event": "BLOCK_PARSED", "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 }, "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 812, + "event_index": 891, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 811, + "event_index": 890, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 226, + "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "tx_index": 93, - "block_time": 1731013342, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14500,20 +14205,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 810, + "event_index": 889, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "status": 0, - "tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14523,24 +14228,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14550,13 +14255,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 } ], - "next_cursor": 808, - "result_count": 814 + "next_cursor": 887, + "result_count": 893 } ``` @@ -14565,7 +14270,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `813` (int, required) - The index of the event to return + + event_index: `892` (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. @@ -14576,19 +14281,19 @@ Returns the event of an index ``` { "result": { - "event_index": 813, + "event_index": 892, "event": "BLOCK_PARSED", "params": { - "block_index": 226, - "ledger_hash": "75a13502ec6dddfb8d8786c2ac745d814a6eafb6f38df514163ed06b225d8622", - "messages_hash": "0a5dfc802bd751413965014a245818f0c80171e64dc0ccdb1bd4c62e3528ef7f", + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", "transaction_count": 1, - "txlist_hash": "98c94942807e941405b1599bc52083371bda30286b826d9dba048ee57889f41e", - "block_time": 1731013342 + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 }, "tx_hash": null, - "block_index": 226, - "block_time": 1731013342 + "block_index": 230, + "block_time": 1731170663 } } ``` @@ -14620,7 +14325,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 79 + "event_count": 90 }, { "event": "SWEEP", @@ -14632,7 +14337,7 @@ Returns the event counts of all blocks }, { "event": "ORDER_UPDATE", - "event_count": 17 + "event_count": 19 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -14646,7 +14351,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `813` (str, optional) - The last event index to return + + cursor: `892` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14663,19 +14368,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 809, + "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "dispense", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 66, - "tx_index": 93, + "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14685,24 +14390,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 807, + "event_index": 886, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14712,94 +14417,94 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 804, + "event_index": 883, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 226, + "block_index": 230, "calling_function": "utxo move", - "event": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", "quantity": 2000000000, - "tx_index": 93, - "utxo": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", - "utxo_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "block_time": 1731013342, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "block_time": 1731013342 + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 }, { - "event_index": 789, + "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428959531084712", - "block_index": 224, - "calling_function": "fairmint", - "event": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "quantity": 100, - "tx_index": 91, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "block_index": 225, + "calling_function": "order expired", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "quantity": 1000, + "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731013330, + "block_time": 1731170636, "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "0.00000100" + "quantity_normalized": "0.00001000" }, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "block_index": 224, - "block_time": 1731013330 + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 }, { - "event_index": 760, + "event_index": 819, "event": "CREDIT", "params": { - "address": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "asset": "XCP", - "block_index": 220, - "calling_function": "cancel order", - "event": "2eadf42a2982b1495bf96b929e9d44873c02a849878799237caacafd5d339cae", - "quantity": 0, - "tx_index": 0, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "block_index": 221, + "calling_function": "fairmint commission", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "quantity": 20000000, + "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1731013306, + "block_time": 1731170622, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, "locked": true }, - "quantity_normalized": "0.00000000" + "quantity_normalized": "0.20000000" }, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "block_index": 220, - "block_time": 1731013306 + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_time": 1731170622 } ], - "next_cursor": 748, - "result_count": 102 + "next_cursor": 818, + "result_count": 109 } ``` @@ -14820,7 +14525,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 102 + "event_count": 109 } } ``` @@ -14849,36 +14554,36 @@ Returns all the dispenses { "result": [ { - "tx_index": 93, + "tx_index": 104, "dispense_index": 0, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -14886,7 +14591,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14900,19 +14605,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "8b51574d7a2ef789369c96bd0dfaca9a239aeea7d2fa8ebea5bed8f015933ffc", - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "bb419e35027b21a1fe9bf603295db2f98d7574e16e6ec7881e03df1a4faba8d7", + "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, - "block_index": 203, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14920,7 +14625,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14935,11 +14640,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731013205, + "block_time": 1731170483, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -14949,34 +14654,34 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2a2f1aeab4cc291bda068c60d70fdc43f151a5d777dfb199b19b1b7df63f8b8", - "block_index": 147, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", - "destination": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll", + "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "block_index": 138, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "41ce4ee88d3973ec6438f74065589646dfaefaf43a042cddb429748340339396", + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 226, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "last_status_tx_hash": null, - "origin": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, "fiat_price": 0.01, "oracle_price": 66600.0, "fiat_unit": "USD", - "oracle_price_last_updated": 138, + "oracle_price_last_updated": 129, "satoshi_price": 16, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00009268", @@ -14984,7 +14689,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731012941, + "block_time": 1731170260, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14998,19 +14703,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c7a2126a86f25f62a8fb301d4c14f032121488daacccea71138a6270802eac64", - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15018,7 +14723,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15033,7 +14738,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012917, + "block_time": 1731170228, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15047,19 +14752,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5e85dde7b328f28b46f200af72a6dd467114ba02544eb3a021aedeaf6b16cd7a", - "block_index": 140, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", - "destination": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "bf4bbb52fe7d29f67e35c2db9834f1be90c67b5977008dc3bd805e19d40d07fb", + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15067,7 +14772,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15082,7 +14787,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731012914, + "block_time": 1731170225, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15123,11 +14828,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -15135,7 +14840,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15147,11 +14852,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 93, - "tx_hash": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7", - "block_index": 226, - "source": "0eeaf729857ecaf27ae44acede1aea78082624ff66c8feebfb0f110be55206c9:1", - "destination": "b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7:0", + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -15159,11 +14864,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -15172,10 +14877,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -15183,7 +14888,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15196,10 +14901,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15207,11 +14912,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -15220,10 +14925,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "92dd093dae606fbe2efb4d91b37e75ddd9328674626c66129aa6a4d3f8c2c660", - "block_index": 214, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15231,11 +14936,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731013262, + "block_time": 1731170544, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, @@ -15285,148 +14990,148 @@ Returns all the issuances { "result": [ { - "tx_index": 91, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", "msg_index": 0, - "block_index": 224, - "asset": "A95428959531084712", - "quantity": 100, + "block_index": 229, + "asset": "OPENFAIR", + "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, "description": "", - "fee_paid": 0, + "fee_paid": 50000000, "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, - "asset_events": "fairmint", + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" }, { - "tx_index": 90, - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "msg_index": 0, - "block_index": 223, - "asset": "A95428959531084712", + "tx_index": 100, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "msg_index": 1, + "block_index": 226, + "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "", + "description": "let's start now", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", + "fair_minting": false, + "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731013317, + "block_time": 1731170640, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 89, - "tx_hash": "31ddbede4e5359e8287b5215be2e74bef6de1c95a61d9b17bf0ed6c772684213", + "tx_index": 100, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", "msg_index": 0, - "block_index": 222, - "asset": "A95428960428101357", + "block_index": 225, + "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "", - "fee_paid": 0, + "description": "let's start now", + "fee_paid": 50000000, "status": "valid", - "asset_longname": "PARENTA.A95428960545690062", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731013312, + "block_time": 1731170636, "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" + "fee_paid_normalized": "0.50000000" }, { - "tx_index": 88, - "tx_hash": "82fa09aa8d3a514ae27162cf0c3243fdfda5a5f7194d7f116b5bc8205c74560b", - "msg_index": 0, - "block_index": 221, - "asset": "A95428960586448133", + "tx_index": 98, + "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "msg_index": 1, + "block_index": 223, + "asset": "EXPANSIVE", "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "", + "description": "too expensive for you", "fee_paid": 0, "status": "valid", - "asset_longname": "PARENTB.SUBASSETC", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", + "fair_minting": false, + "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731013309, + "block_time": 1731170628, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 87, - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", + "tx_index": 98, + "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", "msg_index": 0, - "block_index": 220, - "asset": "A95428960545690062", + "block_index": 222, + "asset": "EXPANSIVE", "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super subasset SUBASSETB", - "fee_paid": 0, + "description": "too expensive for you", + "fee_paid": 50000000, "status": "valid", - "asset_longname": "PARENTB.SUBASSETB", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731013306, + "block_time": 1731170625, "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" + "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 32, - "result_count": 37 + "next_cursor": 43, + "result_count": 48 } ``` @@ -15435,7 +15140,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060` (str, required) - The hash of the transaction to return + + tx_hash: `cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b` (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. @@ -15446,32 +15151,32 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 91, - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", "msg_index": 0, - "block_index": 224, - "asset": "A95428959531084712", - "quantity": 100, + "block_index": 229, + "asset": "OPENFAIR", + "quantity": 0, "divisible": true, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, "description": "", - "fee_paid": 0, + "fee_paid": 50000000, "status": "valid", - "asset_longname": "PARENTA.SUBASSETC", + "asset_longname": "", "locked": false, "reset": false, "description_locked": false, "fair_minting": true, - "asset_events": "fairmint", + "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731013330, - "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000000" + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" } } ``` @@ -15501,16 +15206,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731013178, + "block_time": 1731170466, "fee_paid_normalized": "0.00600000" } ], @@ -15524,7 +15229,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878` (str, required) - The hash of the transaction to return + + tx_hash: `99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec` (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. @@ -15537,16 +15242,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878", - "block_index": 199, - "source": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", - "destination": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731013178, + "block_time": 1731170466, "fee_paid_normalized": "0.00600000" } ], @@ -15580,9 +15285,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15590,14 +15295,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731012907, + "block_time": 1731170218, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "d3dc005570f40d90bd51eeeede95c4582735448274c01ed97d245ec63b6bd7e0", - "block_index": 137, - "source": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "block_index": 128, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15605,7 +15310,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731012904, + "block_time": 1731170214, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15619,7 +15324,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725` (str, required) - The hash of the transaction to return + + tx_hash: `4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc` (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. @@ -15631,9 +15336,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "2e3b84d74dc7787a5769e2860334259e3647ab851128d6ee5a09f492a8749725", - "block_index": 138, - "source": "bcrt1qja2nrx7zyvdve5dcjhsfnxculkmenqq205urum", + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15641,7 +15346,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731012907, + "block_time": 1731170218, "fee_fraction_int_normalized": "0.00000000" } } @@ -15678,19 +15383,19 @@ Returns all fairminters { "result": [ { - "tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "tx_index": 90, - "block_index": 223, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428959531084712", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETC", + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_index": 229, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "OPENFAIR", + "asset_parent": "", + "asset_longname": "", "description": "", "price": 0, "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 100, + "max_mint_per_tx": 10, "premint_quantity": 0, "start_block": 0, "end_block": 0, @@ -15702,112 +15407,103 @@ Returns all fairminters "divisible": true, "pre_minted": false, "status": "open", - "earned_quantity": 100, - "commission": 0, - "paid_quantity": 0, + "earned_quantity": null, + "commission": null, + "paid_quantity": null, "confirmed": true, - "block_time": 1731013317, + "block_time": 1731170650, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "31ddbede4e5359e8287b5215be2e74bef6de1c95a61d9b17bf0ed6c772684213", - "tx_index": 89, - "block_index": 222, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960428101357", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.A95428960545690062", - "description": "", - "price": 0, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_index": 100, + "block_index": 226, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "STARTNOW", + "asset_parent": "", + "asset_longname": "", + "description": "let's start now", + "price": 1, "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 100, + "max_mint_per_tx": 0, "premint_quantity": 0, "start_block": 0, "end_block": 0, "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, + "soft_cap": 100, + "soft_cap_deadline_block": 226, "lock_description": false, "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "open", + "status": "closed", "earned_quantity": null, "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731013312, - "price_normalized": "0.0000000000000000", + "block_time": 1731170640, + "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000100", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", + "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "82fa09aa8d3a514ae27162cf0c3243fdfda5a5f7194d7f116b5bc8205c74560b", - "tx_index": 88, - "block_index": 221, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960586448133", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETC", - "description": "", - "price": 0, - "quantity_by_price": 1, - "hard_cap": 0, + "tx_hash": "83dad9e0f67433410f51a09a3eb31ae0a0ef8733cd3fb92e06bc49a06467fe94", + "tx_index": 99, + "block_index": 224, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": null, + "asset_parent": null, + "asset_longname": null, + "description": null, + "price": null, + "quantity_by_price": null, + "hard_cap": null, "burn_payment": false, - "max_mint_per_tx": 100, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, + "max_mint_per_tx": null, + "premint_quantity": null, + "start_block": null, + "end_block": null, + "minted_asset_commission_int": null, + "soft_cap": null, + "soft_cap_deadline_block": null, "lock_description": false, "lock_quantity": false, - "divisible": true, + "divisible": false, "pre_minted": false, - "status": "open", + "status": "invalid: Soft cap deadline block must be > start block.", "earned_quantity": null, "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731013309, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" + "block_time": 1731170632 }, { - "tx_hash": "73288271c2ca85830044b3033c0ff787ff35a45c420ebde19a3cec8d1a53caae", - "tx_index": 87, - "block_index": 220, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960545690062", - "asset_parent": "PARENTB", - "asset_longname": "PARENTB.SUBASSETB", - "description": "My super subasset SUBASSETB", - "price": 0, + "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_index": 98, + "block_index": 223, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "EXPANSIVE", + "asset_parent": "", + "asset_longname": "", + "description": "too expensive for you", + "price": 99900000000, "quantity_by_price": 1, "hard_cap": 0, "burn_payment": false, - "max_mint_per_tx": 100, + "max_mint_per_tx": 0, "premint_quantity": 0, "start_block": 0, - "end_block": 0, + "end_block": 223, "minted_asset_commission_int": 0, "soft_cap": 0, "soft_cap_deadline_block": 0, @@ -15815,59 +15511,62 @@ Returns all fairminters "lock_quantity": false, "divisible": true, "pre_minted": false, - "status": "open", + "status": "closed", "earned_quantity": null, "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731013306, - "price_normalized": "0.0000000000000000", + "block_time": 1731170628, + "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", + "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "55f8e6194deca2dcbb67d91ac22adfce047874568bf939770b04a70870eae9ca", - "tx_index": 86, - "block_index": 219, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "asset": "A95428960939749879", - "asset_parent": "PARENTA", - "asset_longname": "PARENTA.SUBASSETA", - "description": "My super subasset SUBASSETA", - "price": 0, + "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_index": 96, + "block_index": 221, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "asset_parent": "", + "asset_longname": "", + "description": "let's burn it", + "price": 1, "quantity_by_price": 1, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 100, + "hard_cap": 100000000, + "burn_payment": true, + "max_mint_per_tx": 0, "premint_quantity": 0, "start_block": 0, "end_block": 0, - "minted_asset_commission_int": 0, + "minted_asset_commission_int": 20000000, "soft_cap": 0, "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, + "lock_description": true, + "lock_quantity": true, "divisible": true, "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, + "status": "closed", + "earned_quantity": 80000000, + "commission": 20000000, + "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731013291, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", + "block_time": 1731170622, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000100", - "premint_quantity_normalized": "0.00000000" + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" } ], - "next_cursor": 6, - "result_count": 11 + "next_cursor": 12, + "result_count": 17 } ``` @@ -15923,70 +15622,70 @@ Returns all fairmints { "result": [ { - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_index": 224, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "asset": "A95428959531084712", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731013330, + "block_time": 1731170622, "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "330bcdc1efb0f0eefb82b43e33edd493447f183534cbf1b2b8e0528d36758ae8", - "tx_index": 46, - "block_index": 159, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "asset": "FREEFAIRMINT", - "earn_quantity": 80, + "tx_hash": "89b149181a13432241a8e3f0f6465ec229b2a09932fcf20080773f9e030cca79", + "tx_index": 95, + "block_index": 219, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "c30019918840eca693210b073dc91af4dd54ada153b5df1534a8832f110c826f", + "asset": "LOCKDESC", + "earn_quantity": 800000000, "paid_quantity": 0, - "commission": 0, + "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731012996, + "block_time": 1731170614, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "description": "My super asset LOCKDESC", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "earn_quantity_normalized": "0.00000080", - "commission_normalized": "0.00000000", + "earn_quantity_normalized": "8.00000000", + "commission_normalized": "2.00000000", "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "8da06ad9553f8287728bd48694be0ab4fcfdf7ddfc15e0a891c0c81fffbfe69a", - "tx_index": 45, - "block_index": 158, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "de877907fcfd941810401f043978f8afc5dae5fecbde73b9893fb1a65ef62d4a", - "asset": "FREEFAIRMINT", + "tx_hash": "5fec3930302d55b34a4132ec3b63f1c6ea09aab5a3536e8bbdf8d9fab6116876", + "tx_index": 91, + "block_index": 215, + "source": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", + "fairminter_tx_hash": "e2b84426cfb1ea1576c187edfca5cefa7d67b07e7e49cbbd3748bf5403878247", + "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012993, + "block_time": 1731170599, "asset_info": { - "asset_longname": "", + "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", "divisible": true, "locked": false }, @@ -15995,56 +15694,56 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "630805fffd087574a7a1d8b1a599c2d2897e31e2729acf5680ea8c59bdc9ae7a", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "b7a19fb3d0e07ac1d7f875a48825c16bd693ce37c21cef7cb57b5f474c01af0b", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, + "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_index": 46, + "block_index": 150, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012900, + "block_time": 1731170305, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000040", + "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" + "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0b3a3e5ed490567007b0ae405c334ccb3483786b9d6aa87b451c579478c87a95", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q9trmglxyd229msy99s2lcamnru9upgalcur6q4", - "fairminter_tx_hash": "d29fcd5186d429809b167318fe7eb190d0b308855c7c421e4a8ea97a75e62888", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, + "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_index": 45, + "block_index": 149, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731012892, + "block_time": 1731170302, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", "divisible": true, "locked": false }, - "earn_quantity_normalized": "0.00000011", + "earn_quantity_normalized": "0.00000100", "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" + "paid_quantity_normalized": "0.00000000" } ], - "next_cursor": 8, - "result_count": 13 + "next_cursor": 10, + "result_count": 15 } ``` @@ -16053,7 +15752,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060` (str, required) - The hash of the fairmint to return + + tx_hash: `ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -16064,28 +15763,28 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "514e3496b9ec4539b343834dabd5019c87401d1d2afed5586fc35147785c2060", - "tx_index": 91, - "block_index": 224, - "source": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", - "fairminter_tx_hash": "f0dbc8971273b8a58bd9fc64edac5d14771f48b325bf2ae91a3e3ebf91e4a0ff", - "asset": "A95428959531084712", - "earn_quantity": 100, - "paid_quantity": 0, - "commission": 0, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731013330, + "block_time": 1731170622, "asset_info": { - "asset_longname": "PARENTA.SUBASSETC", - "description": "", - "issuer": "bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4", + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", "divisible": true, - "locked": false + "locked": true }, - "earn_quantity_normalized": "0.00000100", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000000" + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" } } ``` @@ -16097,7 +15796,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll,bcrt1qtxz4nqx4kxs99t86ksz3zrwp7m0uteamz2gnc4` (str, required) - The addresses to search for + + addresses: `bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e,bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg` (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. @@ -16112,30 +15811,30 @@ Returns a list of unspent outputs for a list of addresses "result": [ { "vout": 0, - "height": 208, + "height": 199, "value": 546, - "confirmations": 19, + "confirmations": 32, "amount": 5.46e-06, - "txid": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2", - "address": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll" + "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" }, { "vout": 1, - "height": 207, - "value": 546, - "confirmations": 20, - "amount": 5.46e-06, - "txid": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f", - "address": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll" + "height": 227, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" }, { "vout": 1, - "height": 225, - "value": 4949928908, - "confirmations": 2, - "amount": 49.49928908, - "txid": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502", - "address": "bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll" + "height": 198, + "value": 546, + "confirmations": 33, + "amount": 5.46e-06, + "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" } ], "next_cursor": null, @@ -16148,7 +15847,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg` (str, required) - The address to search for + + address: `bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs` (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 @@ -16164,28 +15863,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "0c883b9c7505309b7c686711357a52208c04537591d34e4b253baa3785d99a01" + "tx_hash": "e3ba39e262ceecf19f7f7295c0f92c32556299c11d948843f6da11234899982f" }, { - "tx_hash": "0efd475340fb2efc5992dadcb14517e50208eb016cbb274ad07c3b39576b3a0f" + "tx_hash": "1e50f98538eecc438b03f6b9bc1dae08458e8d47b28130534159d7baade7cc3f" }, { - "tx_hash": "07e4d477484d8b240e79187661b2b17ace7bca834f56f0dcd3deacd6463f5511" + "tx_hash": "2538d489ac3ac90056075a8a6bd4837cc4a7ed6cf91a3758477c9fc0a17eed51" }, { - "tx_hash": "222b5841b172092e2fc121d5ad18699ad686f5a735b74cc7d4f038df90a87e29" + "tx_hash": "719811047c545b70953af18cc2c80250bba101633e6cbe65f3d4e2223122625e" }, { - "tx_hash": "0c29d9d735a0ab6abafbcdd3c3935c66b6e6044dfd2758d6f84c4a6b9bc5c878" + "tx_hash": "23a7f701c1df14bf518de33ac90d9eaf44009337cb1a3f2944d62d3d73758c97" }, { - "tx_hash": "e20fbcc3f570a9a1630fb62f6e24d61a51d43a1c39b34f19f07c0f597c29817d" + "tx_hash": "e9b349735d606e273a170b4dda85d9e3b3fa0f2c531c9f79be5efcf7008179be" }, { - "tx_hash": "ac82d1dd20f4b92b81ce49d329adaff15eafbdb92691e09b2fb79f636a1bf8a7" + "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9" }, { - "tx_hash": "217add47cf071a49296dc90d567f1d3628d040f5525223a29ca2c530f78bbde8" + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec" } ], "next_cursor": null, @@ -16198,7 +15897,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1quav9jn5s38gtxxxsksz9c3ghengxqjscks04sn` (str, required) - The address to search for. + + address: `bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f` (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. @@ -16211,8 +15910,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 7, - "tx_hash": "130aa6db9a383fd4d0a1f09af358313c9c93fb0723b51c4926a23829207b2a82" + "block_index": 5, + "tx_hash": "479462b26e5f85ac335d4d06ab696ac8669871b195403d270cb0102963a8f89a" } } ``` @@ -16222,7 +15921,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qtp7hspp9d9jv3ljwvk2grf2kmqj3kwz7q6m0ll` (str, required) - The address to search for + + address: `bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e` (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 @@ -16237,29 +15936,29 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ + { + "vout": 1, + "height": 227, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5" + }, { "vout": 0, - "height": 208, + "height": 199, "value": 546, - "confirmations": 19, + "confirmations": 32, "amount": 5.46e-06, - "txid": "be46724a86c1f8290c554286c06cc1afb3a3c4fa40cc2aadef5dffb66208dfd2" + "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa" }, { "vout": 1, - "height": 207, + "height": 198, "value": 546, - "confirmations": 20, + "confirmations": 33, "amount": 5.46e-06, - "txid": "4ca82a8e701351e864e012b89fc071b54a06c61db3d7ac68c677f4c62ff6022f" - }, - { - "vout": 1, - "height": 225, - "value": 4949928908, - "confirmations": 2, - "amount": 49.49928908, - "txid": "72d985ae87142a6de95429019a3a2fe72dd132cb977eb08e5fed4ac89c881502" + "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990" } ], "next_cursor": null, @@ -16272,7 +15971,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2ut05amn44c407xtn8rl5m7p3vhqp4yyz4x28v` (str, required) - Address to get pubkey for. + + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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. @@ -16284,7 +15983,7 @@ Get pubkey for an address. ``` { - "result": "026ce22e6f1a47b8392a4402c23f760d6ead9f8c715aad27de641b172c99300533" + "result": "02135319573953ed1c2bf25b1090361ccc0d22a07a4ad7da30f70d20b6122caec1" } ``` @@ -16293,7 +15992,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `b977c59afc8c97f39f3636843cd6c4931c0fec3a60fdecaf63491ad8e74908b7` (str, required) - The transaction hash + + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (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. @@ -16305,7 +16004,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101c90652e50b110ffbebfec866ff24260878ea1adece4ae47af2ca7e8529f7ea0e0100000000ffffffff03e8030000000000001600149755319bc2231accd1b895e0999b1cfdb799800a00000000000000000c6a0ac34cc6f951e32c0b41868714092701000000160014e758594e9089d0b318d0b4045c4517ccd0604a18024730440220498b1517be5b2cbf902ef3f66c92297888e16f1ed0290850638bcf05be885f4902204c819a73ea7a24c475d5a3fcf22c04fcfc476bd6e41cd663b54a124aece0e30701210390fcebb83db8eae04b42d9574b060b1baaa2b2606b6a5e643eeef5084620bbeb00000000" + "result": "02000000000101af9bcc1b71467e4d65843e4562bc08b342b1e137baf2bf93237640feb88efe020100000000ffffffff03e803000000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9800000000000000000c6a0a3f2dfb5f8ca138b91a9187140927010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02473044022072809e2f0ec4bda6c61043ac47256b4a7905b24b0077c5a796d125078c72bf84022029aa325da060c1982f0ceb349f839053ea4961e2ac74c1c3a7b27ac0325802d4012103819efb4d3b85d2bfe5704481a2f7296bea0cdf3a494f280af7d8943de7bad43800000000" } ``` @@ -16327,7 +16026,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58684 + "result": 58599 } ``` @@ -16466,28 +16165,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94 + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105 }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "quantity": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "status": "valid", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16497,22 +16196,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "CREDIT", "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16522,22 +16221,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "XCP", - "block_index": 226, - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "block_index": 230, + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16547,30 +16246,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731013347.1804786, + "block_time": 1731170667.9059134, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", "destination": "", "fee": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "utxos_info": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d:1 2 ", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "asset_info": { "asset_longname": null, @@ -16584,7 +16283,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 } ], "next_cursor": null, @@ -16615,19 +16314,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "CREDIT", "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16637,7 +16336,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 } ], "next_cursor": null, @@ -16650,7 +16349,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d` (str, required) - The hash of the transaction to return + + tx_hash: `7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a` (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 @@ -16670,28 +16369,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94 + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105 }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "quantity": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "status": "valid", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16701,22 +16400,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "CREDIT", "params": { - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "asset": "XCP", - "block_index": 226, + "block_index": 230, "calling_function": "send", - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16726,22 +16425,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", + "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", "asset": "XCP", - "block_index": 226, - "event": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "block_index": 230, + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "quantity": 10000, - "tx_index": 94, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731013342, + "block_time": 1731170663, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16751,30 +16450,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 }, { - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731013347.1804786, + "block_time": 1731170667.9059134, "btc_amount": 0, - "data": "0200000000000000010000000000002710806ffef927deda20876149c72cfe626b06950971f5", + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", "destination": "", "fee": 10000, - "source": "bcrt1qh7ghxclj0ky0qsncpqdjg53uvu4xkyfc5wm6yz", - "tx_hash": "3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d", - "tx_index": 94, - "utxos_info": "d12ef4110e99b17a13d7bdc58d4f58856ffb3befd21ee41ca986386852594979:1 3fcd27361c73789a97bd598d6a3a735fc48d30fba387ee73a81650fd4776ab1d:1 2 ", + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdll0jf77mgsgwc2fcuk0ucntq62sju04xk93qg", + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", "memo": null, "asset_info": { "asset_longname": null, @@ -16788,7 +16487,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731013347.1804786 + "timestamp": 1731170667.9059134 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 0f37d8c9ed..6ffb4fa048 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -282,7 +282,7 @@ def compose_burn(db, address: str, quantity: int, overburn: bool = False, **cons 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_7) + :param address: The address that placed the order/bet to be cancelled (e.g. $ADDRESS_6) :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_OPEN_ORDER_TX_HASH) """ params = {"source": address, "offer_hash": offer_hash} @@ -344,7 +344,7 @@ def compose_dividend( 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 asset: The asset or subasset that the dividends are being rewarded on (e.g. MYASSETA) :param dividend_asset: The asset or subasset that the dividends are paid in (e.g. XCP) """ params = { @@ -626,8 +626,8 @@ def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construc """ 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) + :param asset: The asset to mint (e.g. OPENFAIR) + :param quantity: The quantity of the asset to mint (in satoshis, hence integer) """ params = {"source": address, "asset": asset, "quantity": quantity} return compose(db, "fairmint", params, **construct_args) diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index 3c09517ffe..b69a6d8419 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -2129,7 +2129,7 @@ def get_fairmint_quantities(db, fairminter_tx_hash): return (sums["quantity"] or 0) + (sums["commission"] or 0), (sums["paid_quantity"] or 0) -def get_soft_caped_fairminters(db, block_index): +def get_fairminters_by_soft_cap_deadline(db, block_index): cursor = db.cursor() query = """ SELECT * FROM ( diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index 6e6833d001..b209196a78 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -175,7 +175,7 @@ def parse(db, tx, message): asset_destination = tx["source"] # if the soft cap is not reached we escrow the assets and payments - # which will be distributed in the `fairminters.check_soft_cap()` function. + # which will be distributed in the `fairminters.perform_soft_cap_operations()` function. if soft_cap_not_reached: xcp_action = "escrowed fairmint" xcp_destination = config.UNSPENDABLE @@ -317,7 +317,7 @@ def parse(db, tx, message): fairminter["soft_cap"] > 0 and fairminter["soft_cap_deadline_block"] >= tx["block_index"] ): - fairminter_mod.check_fairminter_soft_cap(db, fairminter, tx["block_index"]) + fairminter_mod.soft_cap_deadline_reached(db, fairminter, tx["block_index"]) ledger.update_fairminter(db, fairminter["tx_hash"], {"status": "closed"}) # we insert the new issuance diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 9df094d009..3b1dad4388 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -662,11 +662,86 @@ def close_fairminters(db, block_index): close_fairminter(db, fairminter, block_index) -def check_fairminter_soft_cap(db, fairminter, block_index): +def perform_fairmint_soft_cap_operations(db, fairmint, fairminter, fairmint_quantity, block_index): + # is the fairmint paid ? + if fairmint["paid_quantity"] > 0: + # soft cap not reached + if fairmint_quantity < fairminter["soft_cap"]: + # reimburse paid quantity to minter + xcp_destination = fairmint["source"] + xcp_action = "fairmint refund" + # soft cap reached but payment is burned + elif fairminter["burn_payment"]: + # burn paid quantity + xcp_destination = None + xcp_action = "burned fairmint payment" + # soft cap reached and payment sent to issuer + else: + # send funds to issuer + xcp_destination = fairminter["source"] + xcp_action = "fairmint payment" + # credit paid quantity to issuer or minter... + if xcp_destination: + ledger.credit( + db, + xcp_destination, + config.XCP, + fairmint["paid_quantity"], + fairmint["tx_index"], + action=xcp_action, + event=fairmint["tx_hash"], + ) + # ...or destroy it + else: + bindings = { + "tx_index": fairmint["tx_index"], + "tx_hash": fairmint["tx_hash"], + "block_index": block_index, + "source": fairmint["source"], + "asset": config.XCP, + "quantity": fairmint["paid_quantity"], + "tag": xcp_action, + "status": "valid", + } + ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION") + + # the soft cap is reached: + # - the assets are distributed to the miner, + # - the commissions to the issuer, + if fairmint_quantity >= fairminter["soft_cap"]: + # send assets to minter + ledger.credit( + db, + fairmint["source"], + fairminter["asset"], + fairmint["earn_quantity"], + fairmint["tx_index"], + action="unescrowed fairmint", + event=fairmint["tx_hash"], + ) + # send commission to issuer + if fairmint["commission"] > 0: + ledger.credit( + db, + fairminter["source"], + fairminter["asset"], + fairmint["commission"], + fairmint["tx_index"], + action="fairmint commission", + event=fairmint["tx_hash"], + ) + + +def soft_cap_deadline_reached(db, fairminter, block_index): + """ + Performs necessary operations for a fairminter whose soft cap deadline has been reached. + """ fairmint_quantity, paid_quantity = ledger.get_fairmint_quantities(db, fairminter["tx_hash"]) fairminter_supply = fairmint_quantity + fairminter["premint_quantity"] fairmints = ledger.get_valid_fairmints(db, fairminter["tx_hash"]) + # until the soft cap is reached, payments, commissions and assets + # are escrowed at the config.UNSPENDABLE address. When the soft cap deadline is reached, # we start by unescrow all the assets and payments for this fairminter... if fairminter_supply > 0 or not util.enabled("partial_mint_to_reach_hard_cap"): ledger.debit( @@ -691,74 +766,11 @@ def check_fairminter_soft_cap(db, fairminter, block_index): # ...and then we loop on the fairmints to decide how # to distribute the assets and payments for fairmint in fairmints: - # is the fairmint paid ? - if fairmint["paid_quantity"] > 0: - # soft cap not reached - if fairmint_quantity < fairminter["soft_cap"]: - # reimburse paid quantity to minter - xcp_destination = fairmint["source"] - xcp_action = "fairmint refund" - # soft cap reached but payment is burned - elif fairminter["burn_payment"]: - # burn paid quantity - xcp_destination = None - xcp_action = "burned fairmint payment" - # soft cap reached and payment sent to issuer - else: - # send funds to issuer - xcp_destination = fairminter["source"] - xcp_action = "fairmint payment" - # credit paid quantity to issuer or minter... - if xcp_destination: - ledger.credit( - db, - xcp_destination, - config.XCP, - fairmint["paid_quantity"], - fairmint["tx_index"], - action=xcp_action, - event=fairmint["tx_hash"], - ) - # ...or destroy it - else: - bindings = { - "tx_index": fairmint["tx_index"], - "tx_hash": fairmint["tx_hash"], - "block_index": block_index, - "source": fairmint["source"], - "asset": config.XCP, - "quantity": fairmint["paid_quantity"], - "tag": xcp_action, - "status": "valid", - } - ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION") - - # the soft cap is reached: - # - the assets are distributed to the miner, - # - the commissions to the issuer, - # - the premint is unescrowed - if fairmint_quantity >= fairminter["soft_cap"]: - # send assets to minter - ledger.credit( - db, - fairmint["source"], - fairminter["asset"], - fairmint["earn_quantity"], - fairmint["tx_index"], - action="unescrowed fairmint", - event=fairmint["tx_hash"], - ) - # send commission to issuer - if fairmint["commission"] > 0: - ledger.credit( - db, - fairminter["source"], - fairminter["asset"], - fairmint["commission"], - fairmint["tx_index"], - action="fairmint commission", - event=fairmint["tx_hash"], - ) + perform_fairmint_soft_cap_operations( + db, fairmint, fairminter, fairmint_quantity, block_index + ) + + # - the premint is unescrowed if fairminter["premint_quantity"] > 0: ledger.credit( db, @@ -769,6 +781,7 @@ def check_fairminter_soft_cap(db, fairminter, block_index): action="premint", event=fairminter["tx_hash"], ) + # the soft cap is not reached, we close the # fairminter and destroy all the assets at once if fairmint_quantity < fairminter["soft_cap"]: @@ -788,15 +801,12 @@ def check_fairminter_soft_cap(db, fairminter, block_index): ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION") -def check_soft_cap(db, block_index): +def perform_fairminter_soft_cap_operations(db, block_index): # get fairminters with `soft_cap_deadline_block` equal to `block_index` - fairminters = ledger.get_soft_caped_fairminters(db, block_index) + fairminters = ledger.get_fairminters_by_soft_cap_deadline(db, block_index) - # we loop on the fairminters to check if the soft cap is reached. - # If it is reached we transfer the assets to the minters and the payments - # to the issuer. If not we refund the payments and destroy the assets. for fairminter in fairminters: - check_fairminter_soft_cap(db, fairminter, block_index) + soft_cap_deadline_reached(db, fairminter, block_index) # This function is called on each block BEFORE parsing the transactions @@ -806,5 +816,5 @@ def before_block(db, block_index): # This function is called on each block AFTER parsing the transactions def after_block(db, block_index): - check_soft_cap(db, block_index) + perform_fairminter_soft_cap_operations(db, block_index) close_fairminters(db, block_index) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json new file mode 100644 index 0000000000..7ac0810906 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -0,0 +1,11050 @@ +{ + "/v2/blocks": { + "result": [ + { + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "difficulty": 545259519, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 229, + "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_time": 1731170650, + "previous_block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", + "difficulty": 545259519, + "ledger_hash": "32c5289ae300409d32353a02ab854732618437b376437ebcf7d91c70b91bd3d1", + "txlist_hash": "23d786f098b22a10781ba3ab8c728fd8dab73e55d938cf07700d8de478760ffc", + "messages_hash": "c0a95fee33e382a7ba4396f55d9ccc9f3e098f709c2484483056cbff90689a96", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 228, + "block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", + "block_time": 1731170647, + "previous_block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", + "difficulty": 545259519, + "ledger_hash": "5a67140674a9f6c9a2f402026d5aefac8ff787e6c233434b7cebb02eec73fc07", + "txlist_hash": "ff3364ca977db1535cd7fdbcafd65d4562c34d6b752b5e77453d11093e249c1b", + "messages_hash": "e2f8cbdf4f0a902472c6afefe743027f74a97d6083200432030dc9586f820496", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 227, + "block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", + "block_time": 1731170643, + "previous_block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", + "difficulty": 545259519, + "ledger_hash": "3d9b41f0993456731de33261bcd12748cbf82067b9087429f5b9e3d7c89818fc", + "txlist_hash": "32a8bc1b0dfff09a5a6192118c13fd973e95a5232871daa8226aafb3110a2000", + "messages_hash": "335496001ebd01792ec65dfd35289334e3e529c2a91a5f80f0a045eaf5760d53", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 226, + "block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", + "block_time": 1731170640, + "previous_block_hash": "677bf845c77de7b1c5b35eb12bf407e9745cdc6f9880fdecd9e825401143514a", + "difficulty": 545259519, + "ledger_hash": "991680aee66b9ae5f47476ee9ea87809c07fd990cc92adc8003fed80a81fce49", + "txlist_hash": "385f901119a108d6d6fff88f760b0e42575bcf3647b8d3f5fc744d115c6b90f3", + "messages_hash": "05699d13631a94dcbe06a47dec6b64bd0115ab9e9bcc0daa787d6c6547d7bbd6", + "transaction_count": 0, + "confirmed": true + } + ], + "next_cursor": 225, + "result_count": 130 + }, + "/v2/blocks/": { + "result": { + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "difficulty": 545259519, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks/": { + "result": { + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "difficulty": 545259519, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks//transactions": { + "result": [ + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//events": { + "result": [ + { + "event_index": 892, + "event": "BLOCK_PARSED", + "params": { + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 + }, + "tx_hash": null + }, + { + "event_index": 891, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + }, + { + "event_index": 890, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 230, + "btc_amount": 1000, + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + }, + { + "event_index": 889, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": 0, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + }, + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + } + ], + "next_cursor": 887, + "result_count": 14 + }, + "/v2/blocks//events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 2 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION_OUTPUT", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION", + "event_count": 1 + }, + { + "event": "NEW_BLOCK", + "event_count": 1 + } + ], + "next_cursor": "DISPENSER_UPDATE", + "result_count": 10 + }, + "/v2/blocks//events/": { + "result": [ + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + }, + { + "event_index": 886, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + }, + { + "event_index": 883, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//credits": { + "result": [ + { + "block_index": 230, + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "quantity": 66, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + { + "block_index": 230, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + { + "block_index": 230, + "address": null, + "asset": "MYASSETA", + "quantity": 2000000000, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//debits": { + "result": [ + { + "block_index": 230, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "action": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + { + "block_index": 230, + "address": null, + "asset": "MYASSETA", + "quantity": 2000000000, + "action": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//expirations": { + "result": [ + { + "type": "order", + "object_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "block_index": 211, + "confirmed": true, + "block_time": 1731170575 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//cancels": { + "result": [ + { + "tx_index": 63, + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "status": "valid", + "confirmed": true, + "block_time": 1731170449 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//destructions": { + "result": [ + { + "tx_index": 97, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "XCP", + "quantity": 100000000, + "tag": "burn fairmint payment", + "status": "valid", + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "1.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//issuances": { + "result": [ + { + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "msg_index": 0, + "block_index": 229, + "asset": "OPENFAIR", + "quantity": 0, + "divisible": true, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sends": { + "result": [ + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "MYASSETA", + "quantity": 2000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//dispenses": { + "result": [ + { + "tx_index": 104, + "dispense_index": 0, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sweeps": { + "result": [ + { + "tx_index": 65, + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1731170466, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairminters": { + "result": [ + { + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_index": 229, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "OPENFAIR", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 10, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731170650, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairmints": { + "result": [ + { + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, + "status": "valid", + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions": { + "result": [ + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_time": 1731170650, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", + "supported": true, + "utxos_info": " cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "fairminter", + "message_type_id": 90, + "message_data": { + "asset": "OPENFAIR", + "asset_parent": "", + "price": 0, + "quantity_by_price": 1, + "max_mint_per_tx": 10, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 102, + "result_count": 105 + }, + "/v2/transactions/info": { + "result": { + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "e148e13a70831719a19e7c485ef19a93f9bda09975af28469eb7b2477bb64117", + "n": 2, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 4000, + "script_pub_key": "00144e4bc3d832d60b7da913935414c5286ed1499d42" + }, + { + "value": 0, + "script_pub_key": "6a0a812fe4983caf30a4cf0c" + }, + { + "value": 4949834000, + "script_pub_key": "00144758f71d04423d2fbee14cb3ef2cfce5166e4c9a" + } + ], + "vtxinwit": [ + "304402206515b9e8cfc343744b440cfd68798631bf751a3b5d71da0eb5c9e6bd7b4ef43c02201a6feebd2ba1ab29d785a071e9139ca468c342db565da9edcba733092f589a1701", + "02b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df252" + ], + "lock_time": 0, + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_id": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d" + }, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" + } + }, + "/v2/transactions//info": { + "result": { + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "12f012dc7a950f11fd70ef9e00310c5c2814e462b87ab9babd103777af031bc4", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2ea996c4de30bb2373c6ac1c2eb8e8e56f90b5cbdc35cf5b567e6ae0f360f5fe8ea9812ac7e05cbb274cc107587ed1" + }, + { + "value": 4949930546, + "script_pub_key": "0014ff54853ee2276b9aab2abefe1f5b88979b11ba53" + } + ], + "vtxinwit": [ + "3044022020e11abc63eebaf69f7d797d6cc2dcffc37d4bdd11f9c61a0cf43620a463155702206f7e110fbbea233620107ca48b75af07f415e53b475bc141e4062eb036de8a1b01", + "03c99dce59b1923a0d4ff2a9129768ca42f7289d48bfb4a553469453b9d7f0cc62" + ], + "lock_time": 0, + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_id": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a" + }, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions/unpack": { + "result": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "error": "memo too long" + } + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_time": 1731170663, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 891, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 890, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 230, + "btc_amount": 1000, + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 889, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": 0, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 887, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 230, + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "msg_index": 1, + "quantity": 2000000000, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "status": "valid", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 886, + "result_count": 12 + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 891, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 890, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 230, + "btc_amount": 1000, + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 889, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": 0, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 887, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 230, + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "msg_index": 1, + "quantity": 2000000000, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "status": "valid", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 886, + "result_count": 12 + }, + "/v2/transactions//sends": { + "result": [ + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "MYASSETA", + "quantity": 2000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/transactions//dispenses": { + "result": [ + { + "tx_index": 104, + "dispense_index": 0, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 886, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 883, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 886, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 883, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/balances": { + "result": [ + { + "asset": "A95428956980101314", + "total": 100000000000, + "addresses": [ + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "utxo": null, + "utxo_address": null, + "quantity": 100000000000, + "quantity_normalized": "1000.00000000" + } + ], + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "total_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTA", + "total": 500000000, + "addresses": [ + { + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "utxo": null, + "utxo_address": null, + "quantity": 500000000, + "quantity_normalized": "5.00000000" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "total_normalized": "5.00000000" + }, + { + "asset": "FREEFAIRMINT", + "total": 180, + "addresses": [ + { + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "utxo": null, + "utxo_address": null, + "quantity": 180, + "quantity_normalized": "0.00000180" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000180" + }, + { + "asset": "FAIRMINTD", + "total": 40, + "addresses": [ + { + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "utxo": null, + "utxo_address": null, + "quantity": 40, + "quantity_normalized": "0.00000040" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "total": 19, + "addresses": [ + { + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "utxo": null, + "utxo_address": null, + "quantity": 19, + "quantity_normalized": "0.00000019" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000019" + } + ], + "next_cursor": "MPMASSET", + "result_count": 9 + }, + "/v2/addresses/transactions": { + "result": [ + { + "tx_index": 81, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_hash": "0875bcd1d65735f4c430150bf636f213c96b402d65725c27d597adedfb2f7128", + "block_time": 1731170544, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": " e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 80, + "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "block_index": 204, + "block_hash": "05042a0c11331c5d8dafd5e3027de505d8dbf7f971f39e4f64d1a3f24069aa89", + "block_time": 1731170539, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba53c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": " 62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 79, + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", + "block_time": 1731170536, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", + "block_time": 1731170533, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 77, + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", + "block_time": 1731170518, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "supported": true, + "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 76, + "result_count": 49 + }, + "/v2/addresses/events": { + "result": [ + { + "event_index": 846, + "event": "ORDER_MATCH_EXPIRATION", + "params": { + "block_index": 225, + "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "block_time": 1731170636 + }, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 + }, + { + "event_index": 845, + "event": "CREDIT", + "params": { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "block_index": 225, + "calling_function": "order expired", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "quantity": 1000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1731170636, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 + }, + { + "event_index": 743, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 211, + "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_time": 1731170575 + }, + "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "block_index": 211, + "block_time": 1731170575 + }, + { + "event_index": 742, + "event": "CREDIT", + "params": { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "block_index": 211, + "calling_function": "cancel order", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "quantity": 0, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1731170575, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000000" + }, + "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "block_index": 211, + "block_time": 1731170575 + }, + { + "event_index": 698, + "event": "MPMA_SEND", + "params": { + "asset": "XCP", + "block_index": 205, + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "status": "valid", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_index": 81, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_time": 1731170544 + } + ], + "next_cursor": 698, + "result_count": 258 + }, + "/v2/addresses/mempool": { + "result": [ + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "quantity": 10000, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "status": "valid", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "CREDIT", + "params": { + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "asset": "XCP", + "block_index": 230, + "calling_function": "send", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "XCP", + "block_index": 230, + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1731170667.9059134, + "btc_amount": 0, + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "destination": "", + "fee": 10000, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1731170667.9059134 + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/balances": { + "result": [ + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "A95428956980101314", + "quantity": 100000000000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MPMASSET", + "quantity": 99999998960, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "999.99999000" + }, + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MYASSETA", + "quantity": 97999999980, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "980.00000000" + }, + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 82599966196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "825.99966000" + }, + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "TESTLOCKDESC", + "quantity": 9999990000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "99.99990000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/balances/": { + "result": [ + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 82599966196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "825.99966000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/credits": { + "result": [ + { + "block_index": 225, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 1000, + "calling_function": "order expired", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170636, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 205, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_index": 81, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 204, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "tx_index": 80, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170539, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 204, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 3000, + "calling_function": "order expired", + "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170539, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00003000" + }, + { + "block_index": 202, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 5000, + "calling_function": "cancel order", + "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170533, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00005000" + } + ], + "next_cursor": 78, + "result_count": 22 + }, + "/v2/addresses/
/debits": { + "result": [ + { + "block_index": 203, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170536, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 203, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_index": 79, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170536, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + }, + { + "block_index": 202, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170533, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 202, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_index": 78, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170533, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + }, + { + "block_index": 201, + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MPMASSET", + "quantity": 1000, + "action": "send", + "event": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_index": 77, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170518, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + ], + "next_cursor": 64, + "result_count": 29 + }, + "/v2/addresses/
/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/broadcasts": { + "result": [ + { + "tx_index": 24, + "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "block_index": 128, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1731170214, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/burns": { + "result": [ + { + "tx_index": 4, + "tx_hash": "1bd3739c207a8b8c18ebd0916916fdc4c313fc4def9f40c126a7abbd2d94f096", + "block_index": 112, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends": { + "result": [ + { + "tx_index": 79, + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170536, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 79, + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170536, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 79, + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "memo2", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170536, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170533, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170533, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 23, + "result_count": 12 + }, + "/v2/addresses/
/receives": { + "result": [ + { + "tx_index": 38, + "tx_hash": "033aa589f258248ddced4d4a5d793c4c8a44de6ebb135edd815fc3991500252c", + "block_index": 142, + "source": "8b2027b4c4d61b834fee8bae342105a458b540c2dc260624b8245acf939c8140:0", + "destination": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "asset": "MYASSETA", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170276, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends/": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/receives/": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 68, + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170483, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + } + }, + "/v2/addresses/
/dispenses/sends": { + "result": [ + { + "tx_index": 69, + "dispense_index": 0, + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 68, + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170483, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/receives": { + "result": [ + { + "tx_index": 69, + "dispense_index": 0, + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 68, + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170483, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/sends/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispenses/receives/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/sweeps": { + "result": [ + { + "tx_index": 65, + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1731170466, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/issuances": { + "result": [ + { + "tx_index": 76, + "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "msg_index": 0, + "block_index": 200, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1731170514, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 52, + "tx_hash": "898f1ee358d4109fb7b56a881aaf518415135f010fced4832ae4e88a4d230f2a", + "msg_index": 0, + "block_index": 156, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1731170347, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 51, + "tx_hash": "beb53e2e4a8a4684689abd407587695d4162896ceed78b280eb32706ebe4796c", + "msg_index": 0, + "block_index": 155, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1731170333, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 50, + "tx_hash": "e2116b0c6b33229a263154ae3ea785b23718ec97dc4e8653f198d661d750cf74", + "msg_index": 0, + "block_index": 154, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1731170319, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 49, + "tx_hash": "0b60ca17b01332221c75e2c5c8cdfe77ec23b7208985e8da9478582aa95941e6", + "msg_index": 0, + "block_index": 153, + "asset": "TESTLOCKDESC", + "quantity": 10000000000, + "divisible": true, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1731170316, + "quantity_normalized": "100.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": 20, + "result_count": 25 + }, + "/v2/addresses/
/assets": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, + "confirmed": true, + "first_issuance_block_time": 1731170514, + "last_issuance_block_time": 1731170514, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 153, + "last_issuance_block_index": 155, + "confirmed": true, + "first_issuance_block_time": 1731170316, + "last_issuance_block_time": 1731170333, + "supply_normalized": "100.00000000" + }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 148, + "last_issuance_block_index": 150, + "confirmed": true, + "first_issuance_block_time": 1731170298, + "last_issuance_block_time": 1731170305, + "supply_normalized": "0.00000180" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 139, + "last_issuance_block_index": 139, + "confirmed": true, + "first_issuance_block_time": 1731170264, + "last_issuance_block_time": 1731170264, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 126, + "last_issuance_block_index": 127, + "confirmed": true, + "first_issuance_block_time": 1731170207, + "last_issuance_block_time": 1731170210, + "supply_normalized": "0.00000040" + } + ], + "next_cursor": 4, + "result_count": 8 + }, + "/v2/addresses/
/assets/issued": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, + "confirmed": true, + "first_issuance_block_time": 1731170514, + "last_issuance_block_time": 1731170514, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 153, + "last_issuance_block_index": 155, + "confirmed": true, + "first_issuance_block_time": 1731170316, + "last_issuance_block_time": 1731170333, + "supply_normalized": "100.00000000" + }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 148, + "last_issuance_block_index": 150, + "confirmed": true, + "first_issuance_block_time": 1731170298, + "last_issuance_block_time": 1731170305, + "supply_normalized": "0.00000180" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 139, + "last_issuance_block_index": 139, + "confirmed": true, + "first_issuance_block_time": 1731170264, + "last_issuance_block_time": 1731170264, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 126, + "last_issuance_block_index": 127, + "confirmed": true, + "first_issuance_block_time": 1731170207, + "last_issuance_block_time": 1731170210, + "supply_normalized": "0.00000040" + } + ], + "next_cursor": 4, + "result_count": 8 + }, + "/v2/addresses/
/assets/owned": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 200, + "last_issuance_block_index": 200, + "confirmed": true, + "first_issuance_block_time": 1731170514, + "last_issuance_block_time": 1731170514, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 153, + "last_issuance_block_index": 155, + "confirmed": true, + "first_issuance_block_time": 1731170316, + "last_issuance_block_time": 1731170333, + "supply_normalized": "100.00000000" + }, + { + "asset": "FREEFAIRMINT", + "asset_id": "20774156646107637", + "asset_longname": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 180, + "description": "", + "first_issuance_block_index": 148, + "last_issuance_block_index": 150, + "confirmed": true, + "first_issuance_block_time": 1731170298, + "last_issuance_block_time": 1731170305, + "supply_normalized": "0.00000180" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 139, + "last_issuance_block_index": 139, + "confirmed": true, + "first_issuance_block_time": 1731170264, + "last_issuance_block_time": 1731170264, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 126, + "last_issuance_block_index": 127, + "confirmed": true, + "first_issuance_block_time": 1731170207, + "last_issuance_block_time": 1731170210, + "supply_normalized": "0.00000040" + } + ], + "next_cursor": 4, + "result_count": 8 + }, + "/v2/addresses/
/transactions": { + "result": [ + { + "tx_index": 79, + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", + "block_time": 1731170536, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", + "block_time": 1731170533, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 77, + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", + "block_time": 1731170518, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "supported": true, + "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 76, + "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "block_index": 200, + "block_hash": "43715cb7b6b7030567444d219f200645d5d8e38b21dde265287af7f152f1dd1a", + "block_time": 1731170514, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "supported": true, + "utxos_info": " 4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 68, + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 193, + "block_hash": "56c1d87bcfdd97eb2dba765d3361ef15de96af711da1ad831d4e0923d23b3de5", + "block_time": 1731170479, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": " 35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1:1 2 ", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 67, + "result_count": 32 + }, + "/v2/addresses/
/dividends": { + "result": [ + { + "tx_index": 42, + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 20000, + "status": "valid", + "confirmed": true, + "block_time": 1731170290, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/orders": { + "result": [ + { + "tx_index": 53, + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 178, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170360, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 55, + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 201, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170533, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 62, + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 208, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170449, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 64, + "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "block_index": 211, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 210, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170575, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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.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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/fairminters": { + "result": [ + { + "tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "tx_index": 44, + "block_index": 150, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "FREEFAIRMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 180, + "burn_payment": false, + "max_mint_per_tx": 100, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 180, + "commission": 0, + "paid_quantity": 0, + "confirmed": true, + "block_time": 1731170305, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000180", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000100", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000180", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "ae593135beae4b46d0fdb476ae66ceb855d2a50fce46976303bb3a77c2f53656", + "tx_index": 43, + "block_index": 147, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731170294, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", + "tx_index": 22, + "block_index": 126, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1731170207, + "price_normalized": "50.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "tx_index": 18, + "block_index": 122, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1731170192, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", + "tx_index": 14, + "block_index": 121, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 121, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1731170189, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", + "tx_index": 10, + "block_index": 116, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 115, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1731170167, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 6 + }, + "/v2/addresses/
/fairmints": { + "result": [ + { + "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_index": 46, + "block_index": 150, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170305, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000080", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_index": 45, + "block_index": 149, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170302, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000100", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "4bc3569c295bfedde7a66ef3c900bd97229008dc410bfb3eff9f558248010e5c", + "tx_index": 23, + "block_index": 127, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170210, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "3a9aacc479c7d9e032a16939748fe6fdc24e9d13925e80ed4b5b614d2e056002", + "tx_index": 21, + "block_index": 125, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170203, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "e9b68933db2315a40fc88eff0cd58a525383a511a4c3e16dc87a6895156329c3", + "tx_index": 20, + "block_index": 124, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170200, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "dc5aa9aadf9bf60e60e6e7af44a09b0ddab117a618156df07a99f5740c41c44a", + "tx_index": 19, + "block_index": 123, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170195, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "6611dc30ff8ceb23e5b7766a48c082f8dc0137afa5ccad1664574c3888ceeda5", + "tx_index": 15, + "block_index": 118, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170176, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + }, + { + "tx_hash": "533c4fd19985128219ca1ec26f89d940039ded67956e1865af304ea38a4ffc7d", + "tx_index": 11, + "block_index": 114, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170160, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 8 + }, + "/v2/addresses/
/fairmints/": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/utxos//balances": { + "result": [ + { + "asset": "XCP", + "quantity": 2000000000, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + { + "asset": "MYASSETA", + "quantity": 2000000000, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/compose/bet": { + "error": "['feed doesn\u2019t exist']" + }, + "/v2/addresses/
/compose/broadcast": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction": 0.05, + "text": "\"Hello, world!\"", + "skip_validation": false + }, + "name": "broadcast", + "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985820, + "btc_fee": 14180, + "rawtransaction": "02000000000101bfee7098df7420bc4477e97cb8d03304251bf8d345a0a0aece617008405f5a82000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0200000000000000002b6a29153fa4f19fb5624870279bb0c0319f6e3c666f1dfc3684cf4845164e5c6d6b712af3daefc846bc541f9cba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "broadcast", + "message_type_id": 30, + "message_data": { + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction_int": 5000000, + "text": "\"Hello, world!\"", + "status": "valid", + "fee_fraction_int_normalized": "0.05000000" + } + } + } + }, + "/v2/addresses/
/compose/btcpay": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "skip_validation": false + }, + "name": "btcpay", + "data": "434e5452505254590bce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999980952, + "btc_fee": 18048, + "rawtransaction": "020000000001019c42e80ac9905b24a3b5629751017ff65c41c3fecac30370fd7b8d236966c774000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014da72629f3f1d10098a9b361907ebb25dd30bce5000000000000000004b6a4963221fd105f5289f4dff09e56eea2171c5d220868f09be84be35b2784ff4cc880fd2accea8cf33b7dfc599f826069b92dcb2bdc174b1ffef5add43c08dcac95b22393fa5369e22462298a7052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "btcpay", + "message_type_id": 11, + "message_data": { + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/burn": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "quantity": 1000, + "overburn": false, + "skip_validation": false + }, + "name": "burn", + "data": null, + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999985816, + "btc_fee": 13184, + "rawtransaction": "02000000000101fd05507774960dc10c40e09c1a042e82b1ae9821263593410a104310de82c561000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac98ba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000" + } + }, + "/v2/addresses/
/compose/cancel": { + "result": { + "params": { + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "skip_validation": false + }, + "name": "cancel", + "data": "434e54525052545946d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "btc_in": 90000, + "btc_out": 0, + "btc_change": 75820, + "btc_fee": 14180, + "rawtransaction": "02000000000101bfa686073b117ddf825e714b1f0f13130a33f6d38c3bf25743ca1a47c96bdad301000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff0200000000000000002b6a2931ee62339020c25acf99c9a5132a46a21f25946e48378e717a6a761a0de60aafb90fe3abfe05f70f2b2c28010000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000000000000", + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/destroy": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 1000, + "tag": "\"bugs!\"", + "skip_validation": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + "name": "destroy", + "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986347, + "btc_fee": 13653, + "rawtransaction": "020000000001017ecb325e74aa440c4351c6a7ec6851f2c434fe4a08f0036ae64c59664453a0d4000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000226a2027391a43d611203c585ffe2b582f8e606b935ecfb891cc0e08ce6a85a22f1ee6abbc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "destroy", + "message_type_id": 110, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "tag": "22627567732122", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dispenser": { + "result": { + "params": { + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "status": 0, + "open_address": null, + "oracle_address": null, + "skip_validation": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + }, + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949873799, + "btc_out": 0, + "btc_change": 4949859560, + "btc_fee": 14239, + "rawtransaction": "02000000000101924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a020000001600140144834ef3388923cb712f4700e69943a3dc6e8effffffff0200000000000000002c6a2a2819ad062ec48fa59c7aa4938a8400826287365ea27e3a74dc0c32aa601b2829bdf5635469f54e570d59e8dc0827010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02000000000000", + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dividend": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "quantity_per_unit": 1, + "asset": "MYASSETA", + "dividend_asset": "XCP", + "skip_validation": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_per_unit_normalized": "0.00000001" + }, + "name": "dividend", + "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986288, + "btc_fee": 13712, + "rawtransaction": "020000000001014d6a88e54696e169e7aac1d204615391e6047e7ca812ae7b05d8f970d4231ab6000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a219dd2bc1102b247bd84b5da1c68d0321d536ed176265b5259caa347ff966c0fac5570bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "dividend", + "message_type_id": 50, + "message_data": { + "asset": "MYASSETA", + "quantity_per_unit": 1, + "dividend_asset": "XCP", + "status": "valid", + "quantity_per_unit_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/issuance": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCPTEST", + "quantity": 1000, + "transfer_destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "lock": false, + "reset": false, + "description": null, + "skip_validation": false, + "quantity_normalized": "0.00001000" + }, + "name": "issuance", + "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999983750, + "btc_fee": 15704, + "rawtransaction": "0200000000010159cef7239026579c37c4618d1e73ad3012848ddd8091df35e50d094489e1bd3c000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000236a219df90a78aabe9bc7f229189673b56dea26021278a258b3e75a2a78a28d727f36fe86b2052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 7136017375, + "asset": "XCPTEST", + "subasset_longname": null, + "quantity": 1000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "status": "valid", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/mpma": { + "result": { + "params": { + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset_dest_quant_list": [ + [ + "XCP", + "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + 1 + ], + [ + "FAIRMINTC", + "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + 2 + ] + ], + "memo": null, + "memo_is_hex": false, + "skip_validation": false + }, + "name": "mpma", + "data": "434e545250525459030002804e4bc3d832d60b7da913935414c5286ed1499d42804758f71d04423d2fbee14cb3ef2cfce5166e4c9a4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "btc_in": 4949808000, + "btc_out": 2000, + "btc_change": 4949785315, + "btc_fee": 20685, + "rawtransaction": "02000000000101e2bc8d7c192736a471c479589924132fd95e2f5ffff13a20dcb4d06f065e45e9030000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9affffffff03e8030000000000006951210397521797391f280eac53efc384c9002bf7310b8b0c5e4d806b2fe6abf04b15e121025932764086d2c54956c09f2c74d7a0b11794e59690c37c855b6f35c00967612c2102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee8030000000000006951210288521797391f280eac40efc104874be82f27dd8071f75e133f3f23839e9a5c362102c470f707de25d84d14fdb092959b135e3b680080fe8fe6c55b6f092eb6e3d8422102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee3ba0727010000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9a02000000000000", + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "FAIRMINTC", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "quantity": 2, + "memo": null, + "memo_is_hex": null + }, + { + "asset": "XCP", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "quantity": 1, + "memo": null, + "memo_is_hex": null + } + ] + } + } + }, + "/v2/addresses/
/compose/order": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BURNER", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "skip_validation": false, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "get_asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + }, + "name": "order", + "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985234, + "btc_fee": 14766, + "rawtransaction": "02000000000101e7ff4293e00a0d5a8ca1a44f8826fccf9413794997140e79d06b16278cbbff8e000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000356a3376a0f45518e049d18ba51813dd2fe07276e22f8ff4b75ce8db23b86f38081debafa46bc7b8f6f7c4376bc750f8560291e6962e52b8052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BURNER", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "status": "open", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + } + } + } + }, + "/v2/addresses/
/compose/send": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "quantity": 1000, + "memo": null, + "memo_is_hex": false, + "use_enhanced_send": true, + "skip_validation": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + "name": "send", + "data": "434e54525052545902000000000000000100000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985527, + "btc_fee": 14473, + "rawtransaction": "02000000000101201943fc76756fc834f82c62c6d7ba41d0447b751a6d92bbb11cc2a56c748a4f000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000306a2e98532bb7bb38012efe7abfe9882db000bf5e081706b43e26fbb15ab8cc00bcc55853515537469239b697ee3a04c777b9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "memo": null, + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/sweep": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "flags": 7, + "memo": "FFFF", + "skip_validation": false + }, + "name": "sweep", + "data": "434e54525052545904804758f71d04423d2fbee14cb3ef2cfce5166e4c9a07ffff", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986288, + "btc_fee": 13712, + "rawtransaction": "020000000001012585efa30fccd74f23785f8fd5bf77cbf9284efedbe763348591c0ab5505ef33000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a21bf695bf0554eabd45b0c504007c4168277d37da0676fe09caf5fbd4d9feaef7a9d70bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "sweep", + "message_type_id": 4, + "message_data": { + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "flags": 7, + "memo": "ffff" + } + } + } + }, + "/v2/addresses/
/compose/dispense": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "quantity": 1000, + "skip_validation": false + }, + "name": "dispense", + "data": "434e5452505254590d00", + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999984644, + "btc_fee": 14356, + "rawtransaction": "02000000000101f02c497cb84c7081763cd99d52da00f3a19d0f1e75ee45992ee2e7632d149627000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014ff54853ee2276b9aab2abefe1f5b88979b11ba5300000000000000000c6a0ab84562355795aca39de004b6052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + } + } + }, + "/v2/addresses/
/compose/fairminter": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": 0.0, + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "skip_validation": false, + "price_normalized": "10.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "name": "fairminter", + "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985468, + "btc_fee": 14532, + "rawtransaction": "020000000001018593d758a6d891a8daea3703f8937e5ab0e2bda4c76b1951ab8d6295cc4256a5000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000316a2f4c4f9c10060bfba9ffdbcf2fbaec4223b2b3e3315b23c9ddb098fc69bac9b0e10a810eb844f50c28ed2c9454de30ac3cb9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "fairminter", + "message_type_id": 90, + "message_data": { + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "10.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + } + } + }, + "/v2/addresses/
/compose/fairmint": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "OPENFAIR", + "quantity": 0, + "skip_validation": false, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + "name": "fairmint", + "data": "434e5452505254595b4f50454e464149527c30", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999987109, + "btc_fee": 12891, + "rawtransaction": "020000000001013127650871802a0d89c909503c6dc08d1701fe7b7fe0e31953c45c474ce8c269000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000156a13560f9484fa6e1b39bfd269f7768748fc359ae7a5bf052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "fairmint", + "message_type_id": 91, + "message_data": { + "asset": "OPENFAIR", + "quantity": 0, + "quantity_normalized": "0.00000000" + } + } + } + }, + "/v2/addresses/
/compose/attach": { + "result": { + "params": { + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 1000, + "destination_vout": null, + "skip_validation": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + "name": "attach", + "data": "434e545250525459655843507c313030307c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999984629, + "btc_fee": 14825, + "rawtransaction": "020000000001018ba4bf916f7ab6e1480f2829b82fea1816ab1d2a33177cb6f58d97ff40f059e8000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000146a1295def032c14a60f762adbb2cfc68434b412df5b5052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "unpacked_data": { + "message_type": "attach", + "message_type_id": 101, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "destination_vout": null, + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/utxos//compose/detach": { + "result": { + "params": { + "source": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "skip_validation": false + }, + "name": "detach", + "data": "434e5452505254596662637274317166653975386b706a366339686d32676e6a64327066336667646d67356e38327a73366d346e78", + "btc_in": 4949951000, + "btc_out": 0, + "btc_change": 4949925510, + "btc_fee": 25490, + "rawtransaction": "02000000000102924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a00000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff2b6f2a5ecf4d388e0f2a3124c49a5e15a0e2abe42167866125309aca5b4808cd01000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff020000000000000000376a352819ad062ec48fa5f618c7e1feb571e406be4366c90e504157355ac7527c464031c713325a932933043e626f60b2f06275f3f5bd7486de092701000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000002000000000000", + "unpacked_data": { + "message_type": "detach", + "message_type_id": 102, + "message_data": { + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx" + } + } + } + }, + "/v2/assets": { + "result": [ + { + "asset": "OPENFAIR", + "asset_id": "117132633401", + "asset_longname": "", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "owner": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 229, + "last_issuance_block_index": 229, + "confirmed": true, + "first_issuance_block_time": 1731170650, + "last_issuance_block_time": 1731170650, + "supply_normalized": "0.00000000" + }, + { + "asset": "STARTNOW", + "asset_id": "150450094622", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": false, + "supply": 0, + "description": "let's start now", + "first_issuance_block_index": 225, + "last_issuance_block_index": 226, + "confirmed": true, + "first_issuance_block_time": 1731170636, + "last_issuance_block_time": 1731170640, + "supply_normalized": "0.00000000" + }, + { + "asset": "EXPANSIVE", + "asset_id": "1024679892006", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": false, + "supply": 0, + "description": "too expensive for you", + "first_issuance_block_index": 222, + "last_issuance_block_index": 223, + "confirmed": true, + "first_issuance_block_time": 1731170625, + "last_issuance_block_time": 1731170628, + "supply_normalized": "0.00000000" + }, + { + "asset": "BURNER", + "asset_id": "21328597", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true, + "supply": 100000000, + "description": "let's burn it", + "first_issuance_block_index": 220, + "last_issuance_block_index": 221, + "confirmed": true, + "first_issuance_block_time": 1731170619, + "last_issuance_block_time": 1731170622, + "supply_normalized": "1.00000000" + }, + { + "asset": "LOCKDESC", + "asset_id": "92703121214", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true, + "supply": 12000000000, + "description": "My super asset LOCKDESC", + "first_issuance_block_index": 216, + "last_issuance_block_index": 219, + "confirmed": true, + "first_issuance_block_time": 1731170603, + "last_issuance_block_time": 1731170614, + "supply_normalized": "120.00000000" + } + ], + "next_cursor": 17, + "result_count": 18 + }, + "/v2/assets/": { + "result": { + "asset": "BURNER", + "asset_id": "21328597", + "asset_longname": "", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true, + "supply": 100000000, + "description": "let's burn it", + "first_issuance_block_index": 220, + "last_issuance_block_index": 221, + "confirmed": true, + "first_issuance_block_time": 1731170619, + "last_issuance_block_time": 1731170622, + "supply_normalized": "1.00000000" + } + }, + "/v2/assets//balances": { + "result": [ + { + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": null, + "utxo_address": null, + "asset": "BURNER", + "quantity": 80000000, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.80000000" + }, + { + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "utxo": null, + "utxo_address": null, + "asset": "BURNER", + "quantity": 20000000, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.20000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//balances/
": { + "result": [ + { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 82599966196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "825.99966000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//orders": { + "result": [ + { + "tx_index": 53, + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 178, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170360, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 55, + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 201, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170533, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 62, + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 208, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170449, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 64, + "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "block_index": 211, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 210, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170575, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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.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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 56, + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 202, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170429, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + } + ], + "next_cursor": 58, + "result_count": 7 + }, + "/v2/assets//matches": { + "result": [ + { + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_index": 55, + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 58, + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 181, + "tx1_block_index": 183, + "block_index": 204, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 203, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1731170539, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx0_index": 55, + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 56, + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 180, + "tx1_block_index": 181, + "block_index": 182, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 201, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1731170429, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx0_index": 53, + "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 54, + "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 157, + "tx1_block_index": 158, + "block_index": 179, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 178, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1731170360, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_index": 64, + "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 58, + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 189, + "tx1_block_index": 204, + "block_index": 225, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 224, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1731170636, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//credits": { + "result": [ + { + "block_index": 221, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "quantity": 20000000, + "calling_function": "fairmint commission", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.20000000" + }, + { + "block_index": 221, + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "BURNER", + "quantity": 80000000, + "calling_function": "fairmint", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.80000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//debits": { + "result": [ + { + "block_index": 230, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "action": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + { + "block_index": 229, + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "XCP", + "quantity": 50000000, + "action": "fairminter fee", + "event": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170650, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.50000000" + }, + { + "block_index": 225, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "XCP", + "quantity": 50000000, + "action": "fairminter fee", + "event": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_index": 100, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170636, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.50000000" + }, + { + "block_index": 222, + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "XCP", + "quantity": 50000000, + "action": "fairminter fee", + "event": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_index": 98, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170625, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.50000000" + }, + { + "block_index": 221, + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "XCP", + "quantity": 100000000, + "action": "burn fairmint payment", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "1.00000000" + } + ], + "next_cursor": 80, + "result_count": 54 + }, + "/v2/assets//dividends": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/assets//issuances": { + "result": [ + { + "tx_index": 97, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "msg_index": 0, + "block_index": 221, + "asset": "BURNER", + "quantity": 100000000, + "divisible": true, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "let's burn it", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": true, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1731170622, + "quantity_normalized": "1.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 96, + "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "msg_index": 0, + "block_index": 220, + "asset": "BURNER", + "quantity": 0, + "divisible": true, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "let's burn it", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1731170619, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//sends": { + "result": [ + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 81, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 80, + "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "block_index": 204, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "746865206d656d6f", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170539, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 79, + "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "block_index": 203, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170536, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 78, + "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170533, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 16, + "result_count": 10 + }, + "/v2/assets//dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 29, + "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "block_index": 133, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "dispense_count": 0, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170232, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 30, + "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "block_index": 141, + "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 0, + "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "close_block_index": 141, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170271, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 33, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016", + "price_normalized": "1.0000000000000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispensers/
": { + "result": { + "tx_index": 26, + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + } + }, + "/v2/assets//holders": { + "result": [ + { + "asset": "BURNER", + "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "quantity": 80000000, + "escrow": null, + "cursor_id": "balances_55", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.80000000" + }, + { + "asset": "BURNER", + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "quantity": 20000000, + "escrow": null, + "cursor_id": "balances_56", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.20000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//dispenses": { + "result": [ + { + "tx_index": 104, + "dispense_index": 0, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "block_index": 138, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1731170260, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//subassets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/assets//fairminters": { + "result": [ + { + "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_index": 96, + "block_index": 221, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "asset_parent": "", + "asset_longname": "", + "description": "let's burn it", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 100000000, + "burn_payment": true, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 20000000, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": true, + "lock_quantity": true, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 80000000, + "commission": 20000000, + "paid_quantity": 100000000, + "confirmed": true, + "block_time": 1731170622, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "1.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//fairmints": { + "result": [ + { + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, + "status": "valid", + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//fairmints/
": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/orders": { + "result": [ + { + "tx_index": 53, + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 178, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170360, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 56, + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 202, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170429, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 62, + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 208, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170449, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 55, + "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 201, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170533, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + }, + { + "tx_index": 58, + "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "block_index": 205, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, + "expiration": 21, + "expire_index": 204, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170544, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + } + ], + "next_cursor": 64, + "result_count": 9 + }, + "/v2/orders/": { + "result": { + "tx_index": 102, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_asset": "BTC", + "give_quantity": 1000, + "give_remaining": 0, + "get_asset": "UTXOASSET", + "get_quantity": 1000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 249, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "give_price": 1.0, + "get_price": 1.0, + "confirmed": true, + "block_time": 1731170647, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "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", + "give_price_normalized": "1.0000000000000000", + "get_price_normalized": "1.0000000000000000" + } + }, + "/v2/orders//matches": { + "result": [ + { + "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx0_index": 101, + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx1_index": 102, + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "forward_asset": "UTXOASSET", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 227, + "tx1_block_index": 228, + "block_index": 228, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 248, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1731170647, + "forward_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders//btcpays": { + "result": [ + { + "tx_index": 57, + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "btc_amount": 2000, + "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "status": "valid", + "confirmed": true, + "block_time": 1731170429, + "btc_amount_normalized": "0.00002000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders//": { + "result": [ + { + "tx_index": 56, + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "block_index": 182, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 202, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1731170429, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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": 58, + "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "block_index": 205, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 2000, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 2000, + "expiration": 21, + "expire_index": 204, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1731170544, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00002000", + "give_remaining_normalized": "0.00002000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 53, + "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "block_index": 179, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 178, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1731170360, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "block_index": 202, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 201, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1731170533, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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": 62, + "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "block_index": 188, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 208, + "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": 1731170449, + "give_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "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": 64, + "result_count": 7 + }, + "/v2/orders///matches": { + "result": [ + { + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_index": 55, + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 58, + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 181, + "tx1_block_index": 183, + "block_index": 204, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 203, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1731170539, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx0_index": 55, + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 56, + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 180, + "tx1_block_index": 181, + "block_index": 182, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 201, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1731170429, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx0_index": 53, + "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 54, + "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 157, + "tx1_block_index": 158, + "block_index": 179, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 178, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1731170360, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_index": 64, + "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 58, + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 189, + "tx1_block_index": 204, + "block_index": 225, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 224, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1731170636, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/order_matches": { + "result": [ + { + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_index": 55, + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 58, + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 181, + "tx1_block_index": 183, + "block_index": 204, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 203, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1731170539, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx0_index": 55, + "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 56, + "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 180, + "tx1_block_index": 181, + "block_index": 182, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 201, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1731170429, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx0_index": 53, + "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 54, + "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 157, + "tx1_block_index": 158, + "block_index": 179, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 178, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1731170360, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_index": 64, + "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_index": 58, + "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 189, + "tx1_block_index": 204, + "block_index": 225, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 224, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1731170636, + "forward_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx0_index": 101, + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx1_index": 102, + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "forward_asset": "UTXOASSET", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 227, + "tx1_block_index": 228, + "block_index": 228, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 248, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1731170647, + "forward_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets/": { + "error": "Not found" + }, + "/v2/bets//matches": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets//resolutions": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/burns": { + "result": [ + { + "tx_index": 9, + "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "block_index": 112, + "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + }, + { + "tx_index": 8, + "tx_hash": "066d80c64761f400fbd18d3dd8391224f704cf42dcb1c6d15e54a7f15a33b4bf", + "block_index": 112, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + }, + { + "tx_index": 7, + "tx_hash": "b9395e3e3844138cef8fde9ff888415580c116bd8e9975c4dc35ec2951407cbc", + "block_index": 112, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + }, + { + "tx_index": 6, + "tx_hash": "5de79a3135089187a07fd2bf9c34f179132a515b883664c868d1e4ace39d8db2", + "block_index": 112, + "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + }, + { + "tx_index": 5, + "tx_hash": "125f74f34ac583ba6169908c267879d6ad522539f64f6c21948910511133bea8", + "block_index": 112, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + } + ], + "next_cursor": 4, + "result_count": 10 + }, + "/v2/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 29, + "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "block_index": 133, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "dispense_count": 0, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170232, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 30, + "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "block_index": 141, + "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 0, + "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "close_block_index": 141, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170271, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 68, + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170483, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + }, + { + "tx_index": 33, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016", + "price_normalized": "1.0000000000000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "price": 1.0, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001", + "price_normalized": "1.0000000000000000" + } + }, + "/v2/dispensers//dispenses": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/dividends": { + "result": [ + { + "tx_index": 42, + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 20000, + "status": "valid", + "confirmed": true, + "block_time": 1731170290, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/dividends/": { + "result": { + "tx_index": 42, + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 20000, + "status": "valid", + "confirmed": true, + "block_time": 1731170290, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + } + }, + "/v2/dividends//credits": { + "result": [ + { + "block_index": 146, + "address": null, + "asset": "XCP", + "quantity": 2000000000, + "calling_function": "dividend", + "event": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_index": 42, + "utxo": "973027356bbd74d850e93cfc1e2b096632d95c4d57f7171600fadc09699dfa21:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "confirmed": true, + "block_time": 1731170290, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events": { + "result": [ + { + "event_index": 892, + "event": "BLOCK_PARSED", + "params": { + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 + }, + "tx_hash": null, + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 891, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 890, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 230, + "btc_amount": 1000, + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 889, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": 0, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 887, + "result_count": 893 + }, + "/v2/events/": { + "result": { + "event_index": 892, + "event": "BLOCK_PARSED", + "params": { + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 + }, + "tx_hash": null, + "block_index": 230, + "block_time": 1731170663 + } + }, + "/v2/events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 11 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 90 + }, + { + "event": "SWEEP", + "event_count": 1 + }, + { + "event": "REFILL_DISPENSER", + "event_count": 1 + }, + { + "event": "ORDER_UPDATE", + "event_count": 19 + } + ], + "next_cursor": "ORDER_MATCH_UPDATE", + "result_count": 36 + }, + "/v2/events/": { + "result": [ + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 886, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 883, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 230, + "calling_function": "utxo move", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + }, + { + "event_index": 845, + "event": "CREDIT", + "params": { + "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "block_index": 225, + "calling_function": "order expired", + "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "quantity": 1000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1731170636, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00001000" + }, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 + }, + { + "event_index": 819, + "event": "CREDIT", + "params": { + "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "block_index": 221, + "calling_function": "fairmint commission", + "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "quantity": 20000000, + "tx_index": 97, + "utxo": null, + "utxo_address": null, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.20000000" + }, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_time": 1731170622 + } + ], + "next_cursor": 818, + "result_count": 109 + }, + "/v2/events//count": { + "result": { + "event": "CREDIT", + "event_count": 109 + } + }, + "/v2/dispenses": { + "result": [ + { + "tx_index": 104, + "dispense_index": 0, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 69, + "dispense_index": 0, + "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 68, + "block_index": 194, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170483, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "block_index": 138, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 230, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "last_status_tx_hash": null, + "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 129, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1731170260, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170228, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "block_index": 131, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 132, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1731170225, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/sends": { + "result": [ + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "XCP", + "quantity": 2000000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 104, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "asset": "MYASSETA", + "quantity": 2000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "20.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 81, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 81, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 81, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 31, + "result_count": 36 + }, + "/v2/issuances": { + "result": [ + { + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "msg_index": 0, + "block_index": 229, + "asset": "OPENFAIR", + "quantity": 0, + "divisible": true, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 100, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "msg_index": 1, + "block_index": 226, + "asset": "STARTNOW", + "quantity": 0, + "divisible": true, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "let's start now", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "close_fairminter", + "confirmed": true, + "block_time": 1731170640, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 100, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "msg_index": 0, + "block_index": 225, + "asset": "STARTNOW", + "quantity": 0, + "divisible": true, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "let's start now", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1731170636, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 98, + "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "msg_index": 1, + "block_index": 223, + "asset": "EXPANSIVE", + "quantity": 0, + "divisible": true, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "too expensive for you", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "close_fairminter", + "confirmed": true, + "block_time": 1731170628, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 98, + "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "msg_index": 0, + "block_index": 222, + "asset": "EXPANSIVE", + "quantity": 0, + "divisible": true, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "too expensive for you", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1731170625, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": 43, + "result_count": 48 + }, + "/v2/issuances/": { + "result": { + "tx_index": 103, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "msg_index": 0, + "block_index": 229, + "asset": "OPENFAIR", + "quantity": 0, + "divisible": true, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + }, + "/v2/sweeps": { + "result": [ + { + "tx_index": 65, + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1731170466, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/sweeps/": { + "result": [ + { + "tx_index": 65, + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1731170466, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/broadcasts": { + "result": [ + { + "tx_index": 25, + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1731170218, + "fee_fraction_int_normalized": "0.00000000" + }, + { + "tx_index": 24, + "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "block_index": 128, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1731170214, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/broadcasts/": { + "result": { + "tx_index": 25, + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1731170218, + "fee_fraction_int_normalized": "0.00000000" + } + }, + "/v2/fairminters": { + "result": [ + { + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_index": 229, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "OPENFAIR", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 0, + "quantity_by_price": 1, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 10, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731170650, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_index": 100, + "block_index": 226, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "STARTNOW", + "asset_parent": "", + "asset_longname": "", + "description": "let's start now", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 100, + "soft_cap_deadline_block": 226, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731170640, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000100", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "83dad9e0f67433410f51a09a3eb31ae0a0ef8733cd3fb92e06bc49a06467fe94", + "tx_index": 99, + "block_index": 224, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": null, + "asset_parent": null, + "asset_longname": null, + "description": null, + "price": null, + "quantity_by_price": null, + "hard_cap": null, + "burn_payment": false, + "max_mint_per_tx": null, + "premint_quantity": null, + "start_block": null, + "end_block": null, + "minted_asset_commission_int": null, + "soft_cap": null, + "soft_cap_deadline_block": null, + "lock_description": false, + "lock_quantity": false, + "divisible": false, + "pre_minted": false, + "status": "invalid: Soft cap deadline block must be > start block.", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731170632 + }, + { + "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_index": 98, + "block_index": 223, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "EXPANSIVE", + "asset_parent": "", + "asset_longname": "", + "description": "too expensive for you", + "price": 99900000000, + "quantity_by_price": 1, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 223, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731170628, + "price_normalized": "99900000000.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_index": 96, + "block_index": 221, + "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "asset": "BURNER", + "asset_parent": "", + "asset_longname": "", + "description": "let's burn it", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 100000000, + "burn_payment": true, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 20000000, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": true, + "lock_quantity": true, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 80000000, + "commission": 20000000, + "paid_quantity": 100000000, + "confirmed": true, + "block_time": 1731170622, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "1.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": 12, + "result_count": 17 + }, + "/v2/fairmints": { + "result": [ + { + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, + "status": "valid", + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + }, + { + "tx_hash": "89b149181a13432241a8e3f0f6465ec229b2a09932fcf20080773f9e030cca79", + "tx_index": 95, + "block_index": 219, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "c30019918840eca693210b073dc91af4dd54ada153b5df1534a8832f110c826f", + "asset": "LOCKDESC", + "earn_quantity": 800000000, + "paid_quantity": 0, + "commission": 200000000, + "status": "valid", + "confirmed": true, + "block_time": 1731170614, + "asset_info": { + "asset_longname": "", + "description": "My super asset LOCKDESC", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "earn_quantity_normalized": "8.00000000", + "commission_normalized": "2.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "5fec3930302d55b34a4132ec3b63f1c6ea09aab5a3536e8bbdf8d9fab6116876", + "tx_index": 91, + "block_index": 215, + "source": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", + "fairminter_tx_hash": "e2b84426cfb1ea1576c187edfca5cefa7d67b07e7e49cbbd3748bf5403878247", + "asset": "A95428959531084712", + "earn_quantity": 100, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170599, + "asset_info": { + "asset_longname": "PARENTA.SUBASSETC", + "description": "", + "issuer": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000100", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_index": 46, + "block_index": 150, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "asset": "FREEFAIRMINT", + "earn_quantity": 80, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170305, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000080", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_index": 45, + "block_index": 149, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "asset": "FREEFAIRMINT", + "earn_quantity": 100, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1731170302, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000100", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000000" + } + ], + "next_cursor": 10, + "result_count": 15 + }, + "/v2/fairmints/": { + "result": { + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_index": 221, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "asset": "BURNER", + "earn_quantity": 80000000, + "paid_quantity": 100000000, + "commission": 20000000, + "status": "valid", + "confirmed": true, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + } + }, + "/v2/bitcoin/addresses/utxos": { + "result": [ + { + "vout": 0, + "height": 199, + "value": 546, + "confirmations": 32, + "amount": 5.46e-06, + "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + }, + { + "vout": 1, + "height": 227, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + }, + { + "vout": 1, + "height": 198, + "value": 546, + "confirmations": 33, + "amount": 5.46e-06, + "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions": { + "result": [ + { + "tx_hash": "e3ba39e262ceecf19f7f7295c0f92c32556299c11d948843f6da11234899982f" + }, + { + "tx_hash": "1e50f98538eecc438b03f6b9bc1dae08458e8d47b28130534159d7baade7cc3f" + }, + { + "tx_hash": "2538d489ac3ac90056075a8a6bd4837cc4a7ed6cf91a3758477c9fc0a17eed51" + }, + { + "tx_hash": "719811047c545b70953af18cc2c80250bba101633e6cbe65f3d4e2223122625e" + }, + { + "tx_hash": "23a7f701c1df14bf518de33ac90d9eaf44009337cb1a3f2944d62d3d73758c97" + }, + { + "tx_hash": "e9b349735d606e273a170b4dda85d9e3b3fa0f2c531c9f79be5efcf7008179be" + }, + { + "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9" + }, + { + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions/oldest": { + "result": { + "block_index": 5, + "tx_hash": "479462b26e5f85ac335d4d06ab696ac8669871b195403d270cb0102963a8f89a" + } + }, + "/v2/bitcoin/addresses/
/utxos": { + "result": [ + { + "vout": 1, + "height": 227, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5" + }, + { + "vout": 0, + "height": 199, + "value": 546, + "confirmations": 32, + "amount": 5.46e-06, + "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa" + }, + { + "vout": 1, + "height": 198, + "value": 546, + "confirmations": 33, + "amount": 5.46e-06, + "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/pubkey": { + "result": "02135319573953ed1c2bf25b1090361ccc0d22a07a4ad7da30f70d20b6122caec1" + }, + "/v2/bitcoin/transactions/": { + "result": "02000000000101af9bcc1b71467e4d65843e4562bc08b342b1e137baf2bf93237640feb88efe020100000000ffffffff03e803000000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9800000000000000000c6a0a3f2dfb5f8ca138b91a9187140927010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02473044022072809e2f0ec4bda6c61043ac47256b4a7905b24b0077c5a796d125078c72bf84022029aa325da060c1982f0ceb349f839053ea4961e2ac74c1c3a7b27ac0325802d4012103819efb4d3b85d2bfe5704481a2f7296bea0cdf3a494f280af7d8943de7bad43800000000" + }, + "/v2/bitcoin/estimatesmartfee": { + "result": 58599 + }, + "/v2/bitcoin/transactions/decode": { + "result": { + "txid": "0af935874d4d8c588f4c30a68c39d96906bf20ba20accd4337b8fcfc0196299b", + "hash": "b265ef6af958f89b1c835f0956c5c374761e5f5d3b7910ee0e79e0e08900affd", + "version": 2, + "size": 143, + "vsize": 140, + "weight": 557, + "locktime": 0, + "vin": [ + { + "txid": "4d9512137f191591e308483bdc0408642e5520be29f418adae44eacb8045c999", + "vout": 0, + "scriptSig": { + "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0" + }, + "txinwitness": [ + "", + "" + ], + "sequence": 4294967295 + } + ], + "vout": [ + { + "value": 0.5, + "n": 0, + "scriptPubKey": { + "asm": "OP_DUP OP_HASH160 a11b66a67b3ff69671c8f82254099faf374b800e OP_EQUALVERIFY OP_CHECKSIG", + "desc": "addr(mvCounterpartyXXXXXXXXXXXXXXW24Hef)#3dsuzcep", + "hex": "76a914a11b66a67b3ff69671c8f82254099faf374b800e88ac", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "type": "pubkeyhash" + } + }, + { + "value": 49.4999, + "n": 1, + "scriptPubKey": { + "asm": "0 7c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "desc": "addr(bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut)#arywlyjk", + "hex": "00147c6b1112ed7bc76fd03af8b91d02fd6942c5a8d0", + "address": "bcrt1q0343zyhd00rkl5p6lzu36qhad9pvt2xsad2aut", + "type": "witness_v0_keyhash" + } + } + ] + } + }, + "/v2/bitcoin/getmempoolinfo": { + "result": { + "loaded": true, + "size": 1, + "bytes": 167, + "usage": 1232, + "total_fee": 0.0001, + "maxmempool": 300000000, + "mempoolminfee": 0.0, + "minrelaytxfee": 0.0, + "incrementalrelayfee": 1e-05, + "unbroadcastcount": 1, + "fullrbf": false + } + }, + "/v2/mempool/events": { + "result": [ + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105 + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "quantity": 10000, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "status": "valid", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "CREDIT", + "params": { + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "asset": "XCP", + "block_index": 230, + "calling_function": "send", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "XCP", + "block_index": 230, + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1731170667.9059134, + "btc_amount": 0, + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "destination": "", + "fee": 10000, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1731170667.9059134 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/mempool/events/": { + "result": [ + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "CREDIT", + "params": { + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "asset": "XCP", + "block_index": 230, + "calling_function": "send", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/mempool/transactions//events": { + "result": [ + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105 + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "quantity": 10000, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "status": "valid", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "CREDIT", + "params": { + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "asset": "XCP", + "block_index": 230, + "calling_function": "send", + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "asset": "XCP", + "block_index": 230, + "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "quantity": 10000, + "tx_index": 105, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1731170667.9059134 + }, + { + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1731170667.9059134, + "btc_amount": 0, + "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "destination": "", + "fee": 10000, + "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_index": 105, + "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1731170667.9059134 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/healthz": { + "result": { + "status": "Healthy" + } + }, + "/healthz": { + "result": { + "status": "Healthy" + } + }, + "/v2/events/NEW_BLOCK": { + "result": [ + { + "event_index": 879, + "event": "NEW_BLOCK", + "params": { + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_index": 230, + "block_time": 1731170663, + "difficulty": 545259519, + "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592" + }, + "tx_hash": null, + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 871, + "result_count": 130 + }, + "/v2/events/NEW_TRANSACTION": { + "result": [ + { + "event_index": 880, + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_index": 230, + "block_time": 1731170663, + "btc_amount": 1000, + "data": "0d00", + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "fee": 0, + "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 872, + "result_count": 105 + }, + "/v2/events/NEW_TRANSACTION_OUTPUT": { + "result": [ + { + "event_index": 881, + "event": "NEW_TRANSACTION_OUTPUT", + "params": { + "block_index": 230, + "btc_amount": 1000, + "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "out_index": 0, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 579, + "result_count": 5 + }, + "/v2/events/BLOCK_PARSED": { + "result": [ + { + "event_index": 892, + "event": "BLOCK_PARSED", + "params": { + "block_index": 230, + "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", + "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "transaction_count": 1, + "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", + "block_time": 1731170663 + }, + "tx_hash": null, + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 878, + "result_count": 130 + }, + "/v2/events/TRANSACTION_PARSED": { + "result": [ + { + "event_index": 891, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104 + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 877, + "result_count": 90 + }, + "/v2/events/DEBIT": { + "result": [ + { + "event_index": 885, + "event": "DEBIT", + "params": { + "action": "utxo move", + "address": null, + "asset": "XCP", + "block_index": 230, + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 2000000000, + "tx_index": 104, + "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 882, + "result_count": 87 + }, + "/v2/events/CREDIT": { + "result": [ + { + "event_index": 888, + "event": "CREDIT", + "params": { + "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "asset": "XCP", + "block_index": 230, + "calling_function": "dispense", + "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "quantity": 66, + "tx_index": 104, + "utxo": null, + "utxo_address": null, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 886, + "result_count": 109 + }, + "/v2/events/ENHANCED_SEND": { + "result": [ + { + "event_index": 638, + "event": "ENHANCED_SEND", + "params": { + "asset": "MPMASSET", + "block_index": 201, + "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "memo": null, + "quantity": 1000, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "status": "valid", + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_index": 77, + "block_time": 1731170518, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + }, + "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "block_index": 201, + "block_time": 1731170518 + } + ], + "next_cursor": 515, + "result_count": 3 + }, + "/v2/events/MPMA_SEND": { + "result": [ + { + "event_index": 698, + "event": "MPMA_SEND", + "params": { + "asset": "XCP", + "block_index": 205, + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "status": "valid", + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_index": 81, + "block_time": 1731170544, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "block_index": 205, + "block_time": 1731170544 + } + ], + "next_cursor": 697, + "result_count": 15 + }, + "/v2/events/SEND": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_TRANSFER": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/SWEEP": { + "result": [ + { + "event_index": 558, + "event": "SWEEP", + "params": { + "block_index": 190, + "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "fee_paid": 600000, + "flags": 1, + "memo": "sweep my assets", + "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "status": "valid", + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_index": 65, + "block_time": 1731170466, + "fee_paid_normalized": "0.00600000" + }, + "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "block_index": 190, + "block_time": 1731170466 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ASSET_DIVIDEND": { + "result": [ + { + "event_index": 326, + "event": "ASSET_DIVIDEND", + "params": { + "asset": "MYASSETA", + "block_index": 146, + "dividend_asset": "XCP", + "fee_paid": 20000, + "quantity_per_unit": 100000000, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "status": "valid", + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_index": 42, + "block_time": 1731170290, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00020000" + }, + "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "block_index": 146, + "block_time": 1731170290 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/RESET_ISSUANCE": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_CREATION": { + "result": [ + { + "event_index": 874, + "event": "ASSET_CREATION", + "params": { + "asset_id": "117132633401", + "asset_longname": null, + "asset_name": "OPENFAIR", + "block_index": 229, + "block_time": 1731170650 + }, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_time": 1731170650 + } + ], + "next_cursor": 848, + "result_count": 25 + }, + "/v2/events/ASSET_ISSUANCE": { + "result": [ + { + "event_index": 875, + "event": "ASSET_ISSUANCE", + "params": { + "asset": "OPENFAIR", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": 229, + "call_date": 0, + "call_price": 0, + "callable": false, + "description": "", + "divisible": true, + "fair_minting": true, + "fee_paid": 50000000.0, + "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "locked": false, + "quantity": 0, + "reset": false, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": "valid", + "transfer": false, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_time": 1731170650, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + }, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_time": 1731170650 + } + ], + "next_cursor": 855, + "result_count": 48 + }, + "/v2/events/ASSET_DESTRUCTION": { + "result": [ + { + "event_index": 817, + "event": "ASSET_DESTRUCTION", + "params": { + "asset": "XCP", + "block_index": 221, + "quantity": 100000000, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": "valid", + "tag": "burn fairmint payment", + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_time": 1731170622, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "1.00000000" + }, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_time": 1731170622 + } + ], + "next_cursor": 564, + "result_count": 3 + }, + "/v2/events/OPEN_ORDER": { + "result": [ + { + "event_index": 865, + "event": "OPEN_ORDER", + "params": { + "block_index": 228, + "expiration": 21, + "expire_index": 249, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "UTXOASSET", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "BTC", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": "open", + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_index": 102, + "block_time": 1731170647, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_time": 1731170647 + } + ], + "next_cursor": 860, + "result_count": 9 + }, + "/v2/events/ORDER_MATCH": { + "result": [ + { + "event_index": 868, + "event": "ORDER_MATCH", + "params": { + "backward_asset": "BTC", + "backward_quantity": 1000, + "block_index": 228, + "fee_paid": 0, + "forward_asset": "UTXOASSET", + "forward_quantity": 1000, + "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "match_expire_index": 248, + "status": "pending", + "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx0_block_index": 227, + "tx0_expiration": 21, + "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_index": 101, + "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx1_block_index": 228, + "tx1_expiration": 21, + "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_index": 102, + "block_time": 1731170647, + "forward_asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_time": 1731170647 + } + ], + "next_cursor": 676, + "result_count": 5 + }, + "/v2/events/ORDER_UPDATE": { + "result": [ + { + "event_index": 867, + "event": "ORDER_UPDATE", + "params": { + "fee_provided_remaining": 10000, + "fee_required_remaining": 0, + "get_remaining": 0, + "give_remaining": 0, + "status": "open", + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "block_index": 228, + "block_time": 1731170647 + } + ], + "next_cursor": 866, + "result_count": 19 + }, + "/v2/events/ORDER_FILLED": { + "result": [ + { + "event_index": 494, + "event": "ORDER_FILLED", + "params": { + "status": "filled", + "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f" + }, + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "block_time": 1731170429 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_MATCH_UPDATE": { + "result": [ + { + "event_index": 844, + "event": "ORDER_MATCH_UPDATE", + "params": { + "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "status": "expired" + }, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 + } + ], + "next_cursor": 670, + "result_count": 4 + }, + "/v2/events/BTC_PAY": { + "result": [ + { + "event_index": 495, + "event": "BTC_PAY", + "params": { + "block_index": 182, + "btc_amount": 2000, + "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "status": "valid", + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_index": 57, + "block_time": 1731170429, + "btc_amount_normalized": "0.00002000" + }, + "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "block_index": 182, + "block_time": 1731170429 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/CANCEL_ORDER": { + "result": [ + { + "event_index": 540, + "event": "CANCEL_ORDER", + "params": { + "block_index": 188, + "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "status": "valid", + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_index": 63, + "block_time": 1731170449 + }, + "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "block_index": 188, + "block_time": 1731170449 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_EXPIRATION": { + "result": [ + { + "event_index": 743, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 211, + "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_time": 1731170575 + }, + "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "block_index": 211, + "block_time": 1731170575 + } + ], + "next_cursor": 690, + "result_count": 5 + }, + "/v2/events/ORDER_MATCH_EXPIRATION": { + "result": [ + { + "event_index": 846, + "event": "ORDER_MATCH_EXPIRATION", + "params": { + "block_index": 225, + "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "block_time": 1731170636 + }, + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "block_index": 225, + "block_time": 1731170636 + } + ], + "next_cursor": 673, + "result_count": 3 + }, + "/v2/events/OPEN_DISPENSER": { + "result": [ + { + "event_index": 574, + "event": "OPEN_DISPENSER", + "params": { + "asset": "TESTLOCKDESC", + "block_index": 193, + "dispense_count": 0, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 10000, + "oracle_address": null, + "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "satoshirate": 1, + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "status": 0, + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_index": 68, + "block_time": 1731170479, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001" + }, + "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "block_index": 193, + "block_time": 1731170479 + } + ], + "next_cursor": 254, + "result_count": 5 + }, + "/v2/events/DISPENSER_UPDATE": { + "result": [ + { + "event_index": 889, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": 0, + "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 581, + "result_count": 8 + }, + "/v2/events/REFILL_DISPENSER": { + "result": [ + { + "event_index": 243, + "event": "REFILL_DISPENSER", + "params": { + "asset": "XCP", + "block_index": 135, + "destination": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "dispense_quantity": 10, + "dispenser_tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "tx_index": 31, + "block_time": 1731170239, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000010" + }, + "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "block_index": 135, + "block_time": 1731170239 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/DISPENSE": { + "result": [ + { + "event_index": 890, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 230, + "btc_amount": 1000, + "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 582, + "result_count": 5 + }, + "/v2/events/BROADCAST": { + "result": [ + { + "event_index": 200, + "event": "BROADCAST", + "params": { + "block_index": 129, + "fee_fraction_int": 0, + "locked": false, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": "valid", + "text": "price-USD", + "timestamp": 4003903983, + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_index": 25, + "value": 66600.0, + "block_time": 1731170218, + "fee_fraction_int_normalized": "0.00000000" + }, + "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "block_index": 129, + "block_time": 1731170218 + } + ], + "next_cursor": 195, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINTER": { + "result": [ + { + "event_index": 873, + "event": "NEW_FAIRMINTER", + "params": { + "asset": "OPENFAIR", + "asset_longname": "", + "asset_parent": "", + "block_index": 229, + "burn_payment": false, + "description": "", + "divisible": true, + "end_block": 0, + "hard_cap": 0, + "lock_description": false, + "lock_quantity": false, + "max_mint_per_tx": 10, + "minted_asset_commission_int": 0, + "pre_minted": false, + "premint_quantity": 0, + "price": 0, + "quantity_by_price": 1, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "start_block": 0, + "status": "open", + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 103, + "block_time": 1731170650, + "price_normalized": "0.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000010", + "premint_quantity_normalized": "0.00000000" + }, + "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "block_index": 229, + "block_time": 1731170650 + } + ], + "next_cursor": 847, + "result_count": 17 + }, + "/v2/events/FAIRMINTER_UPDATE": { + "result": [ + { + "event_index": 854, + "event": "FAIRMINTER_UPDATE", + "params": { + "status": "closed", + "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2" + }, + "tx_hash": null, + "block_index": 226, + "block_time": 1731170640 + } + ], + "next_cursor": 834, + "result_count": 7 + }, + "/v2/events/NEW_FAIRMINT": { + "result": [ + { + "event_index": 820, + "event": "NEW_FAIRMINT", + "params": { + "asset": "BURNER", + "block_index": 221, + "commission": 20000000, + "earn_quantity": 80000000, + "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "paid_quantity": 100000000, + "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "status": "valid", + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_index": 97, + "block_time": 1731170622, + "asset_info": { + "asset_longname": "", + "description": "let's burn it", + "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "divisible": true, + "locked": true + }, + "earn_quantity_normalized": "0.80000000", + "commission_normalized": "0.20000000", + "paid_quantity_normalized": "1.00000000" + }, + "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "block_index": 221, + "block_time": 1731170622 + } + ], + "next_cursor": 801, + "result_count": 15 + }, + "/v2/events/ATTACH_TO_UTXO": { + "result": [ + { + "event_index": 623, + "event": "ATTACH_TO_UTXO", + "params": { + "asset": "UTXOASSET", + "block_index": 199, + "destination": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa:0", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "status": "valid", + "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "tx_index": 75, + "block_time": 1731170511, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "block_index": 199, + "block_time": 1731170511 + } + ], + "next_cursor": 598, + "result_count": 5 + }, + "/v2/events/DETACH_FROM_UTXO": { + "result": [ + { + "event_index": 615, + "event": "DETACH_FROM_UTXO", + "params": { + "asset": "UTXOASSET", + "block_index": 198, + "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "bd0cc61333f0c591a8faeb275cd4145f6a3b7f6f13450abe8ae7f1615eccb027:0", + "status": "valid", + "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "tx_index": 74, + "block_time": 1731170508, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "block_index": 198, + "block_time": 1731170508 + } + ], + "next_cursor": 293, + "result_count": 2 + }, + "/v2/events/UTXO_MOVE": { + "result": [ + { + "event_index": 887, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 230, + "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "msg_index": 1, + "quantity": 2000000000, + "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "status": "valid", + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_index": 104, + "block_time": 1731170663, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "20.00000000" + }, + "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 230, + "block_time": 1731170663 + } + ], + "next_cursor": 884, + "result_count": 11 + }, + "/v2/events/BURN": { + "result": [ + { + "event_index": 52, + "event": "BURN", + "params": { + "block_index": 112, + "burned": 50000000, + "earned": 74999998167, + "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "status": "valid", + "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_index": 9, + "block_time": 1731170152, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + }, + "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "block_index": 112, + "block_time": 1731170152 + } + ], + "next_cursor": 50, + "result_count": 10 + } +} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 27ef1d5ca6..b672016244 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -508,6 +508,11 @@ def generate_regtest_fixtures(db): regtest_fixtures["$LAST_FAIRMINT_BLOCK"] = row["block_index"] regtest_fixtures["$LAST_FAIRMINT_TX_HASH"] = row["tx_hash"] + # open fairminter asset + cursor.execute("SELECT asset FROM fairminters WHERE status='open' ORDER BY rowid DESC LIMIT 1") + row = cursor.fetchone() + regtest_fixtures["$OPEN_FAIRMINTER_ASSET"] = row["asset"] + # get utxo from bitcoin-cli utxo = json.loads( bitcoin_cli( diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 9f8d6ddc21..06eeb65214 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -128,6 +128,9 @@ def send_transaction( params["return_only_data"] = True if "exact_fee" not in params: params["exact_fee"] = 10000 # fixed fee + # if "inputs_set" not in params and len(source.split(":")) == 1: + # params["inputs_set"] = self.get_inputs_set(source) + # print("Inputs set:", params["inputs_set"]) query_string = [] for key, value in params.items(): @@ -264,6 +267,16 @@ def generate_xcp(self): self.mine_blocks(1) self.wait_for_counterparty_server() + def get_inputs_set(self, address): + list_unspent = json.loads( + self.bitcoin_cli("listunspent", 0, 9999999, json.dumps([address])).strip() + ) + sorted(list_unspent, key=lambda x: -x["amount"]) + inputs = [] + for utxo in list_unspent: + inputs.append(f"{utxo['txid']}:{utxo['vout']}") + return ",".join(inputs) + def start_bitcoin_node(self): self.bitcoind_process = sh.bitcoind( "-regtest", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index 6010a51ccf..3ff3d46f01 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -136,7 +136,7 @@ { "title": "Mint LOCKDESC", "transaction": "fairmint", - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "params": { "asset": "LOCKDESC", }, @@ -165,7 +165,7 @@ "msg_index": 0, "quantity": 1000000000, "reset": False, - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", @@ -189,7 +189,7 @@ "earn_quantity": 800000000, "fairminter_tx_hash": "$FAIRMINTER_LOCKDESC_HASH", "paid_quantity": 0, - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "status": "valid", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -216,7 +216,7 @@ "event": "CREDIT", "event_index": "$EVENT_INDEX_3", "params": { - "address": "$ADDRESS_8", + "address": "$ADDRESS_6", "asset": "LOCKDESC", "block_index": "$BLOCK_INDEX", "calling_function": "fairmint", @@ -345,7 +345,7 @@ { "title": "Mint BURNER", "transaction": "fairmint", - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "params": { "asset": "BURNER", "quantity": 1 * 10**8, @@ -375,7 +375,7 @@ "msg_index": 0, "quantity": 100000000, "reset": False, - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "status": "valid", "transfer": False, "tx_hash": "$TX_HASH", @@ -399,7 +399,7 @@ "earn_quantity": 80000000, "fairminter_tx_hash": "$FAIRMINTER_BURNER_HASH", "paid_quantity": 100000000, - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "status": "valid", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -426,9 +426,9 @@ "event": "CREDIT", "event_index": "$EVENT_INDEX_5", "params": { - "address": "$ADDRESS_8", + "address": "$ADDRESS_6", "asset": "BURNER", - "block_index": 118, + "block_index": "$BLOCK_INDEX", "calling_function": "fairmint", "event": "$TX_HASH", "quantity": 80000000, @@ -445,7 +445,7 @@ "asset": "XCP", "block_index": "$BLOCK_INDEX", "quantity": 100000000, - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "status": "valid", "tag": "burn fairmint payment", "tx_hash": "$TX_HASH", @@ -458,7 +458,7 @@ "event_index": "$EVENT_INDEX_3", "params": { "action": "burn fairmint payment", - "address": "$ADDRESS_8", + "address": "$ADDRESS_6", "asset": "XCP", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", @@ -583,7 +583,7 @@ { "title": "Mint EXPANSIVE", "transaction": "fairmint", - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "params": { "asset": "EXPANSIVE", "quantity": 1 * 10**8, @@ -640,7 +640,7 @@ { "title": "Mint EXPANSIVE", "transaction": "fairmint", - "source": "$ADDRESS_8", + "source": "$ADDRESS_6", "params": { "asset": "EXPANSIVE", "quantity": 1 * 10**8, @@ -716,7 +716,7 @@ "result": [ { "event": "DEBIT", - "event_index": "$EVENT_INDEX_6", + "event_index": "$EVENT_INDEX_9", "params": { "action": "fairminter fee", "address": "$ADDRESS_10", @@ -732,7 +732,7 @@ }, { "event": "ASSET_ISSUANCE", - "event_index": "$EVENT_INDEX_5", + "event_index": "$EVENT_INDEX_8", "params": { "asset": "STARTNOW", "asset_events": "open_fairminter", @@ -759,7 +759,7 @@ }, { "event": "ASSET_CREATION", - "event_index": "$EVENT_INDEX_4", + "event_index": "$EVENT_INDEX_7", "params": { "asset_id": "150450094622", "asset_longname": None, @@ -770,7 +770,7 @@ }, { "event": "NEW_FAIRMINTER", - "event_index": "$EVENT_INDEX_3", + "event_index": "$EVENT_INDEX_6", "params": { "asset": "STARTNOW", "asset_longname": "", 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 249b0a8676..3881947fe4 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -13,6 +13,30 @@ "fee_required": 0, }, }, + # order match for dredd test + { + "title": "Open Sell UTXOASSET for BTC order", + "transaction": "order", + "source": "$ADDRESS_6", + "params": { + "give_asset": "BTC", + "give_quantity": 1000, + "get_asset": "UTXOASSET", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + }, + }, + # fairmint for dredd test + { + "title": "Create fairminter OPENFAIR", + "transaction": "fairminter", + "source": "$ADDRESS_6", + "params": { + "asset": "OPENFAIR", + "max_mint_per_tx": 10, + }, + }, { "title": "Dispense in mempool with UTXO with balances", "transaction": "dispense", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 7e5d083944..426a8cae7f 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -212,14 +212,14 @@ def control_result( try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as e: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - # raise e from e + raise e from e def run_item(node, item, context): @@ -426,7 +426,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From 6bd304611f36c10cf73eaead7d0911f2c30ab417 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 9 Nov 2024 19:01:18 +0000 Subject: [PATCH 103/138] fix pytest --- .../test/fixtures/api_v2_fixtures.json | 8 +- .../test/regtest/apidoc/apicache.json | 3345 +++++++++-------- 2 files changed, 1680 insertions(+), 1673 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 40db214793..53bc65f10f 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11779,7 +11779,7 @@ "name": "address", "required": true, "type": "str", - "description": "The address that placed the order/bet to be cancelled (e.g. $ADDRESS_7)" + "description": "The address that placed the order/bet to be cancelled (e.g. $ADDRESS_6)" }, { "name": "offer_hash", @@ -12420,7 +12420,7 @@ "name": "asset", "required": true, "type": "str", - "description": "The asset or subasset that the dividends are being rewarded on (e.g. $ASSET_1)" + "description": "The asset or subasset that the dividends are being rewarded on (e.g. MYASSETA)" }, { "name": "dividend_asset", @@ -14244,14 +14244,14 @@ "name": "asset", "required": true, "type": "str", - "description": "The asset to mint (e.g. $ASSET_3)" + "description": "The asset to mint (e.g. OPENFAIR)" }, { "name": "quantity", "default": 0, "required": false, "type": "int", - "description": "The quantity of the asset to mint (in satoshis, hence integer) (e.g. 1)" + "description": "The quantity of the asset to mint (in satoshis, hence integer)" }, { "name": "encoding", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 7ac0810906..fd403b6484 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": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", "difficulty": 545259519, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", - "block_time": 1731170650, - "previous_block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", + "block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", + "block_time": 1731176547, + "previous_block_hash": "1aee1efd56625b83a7f0347445bdca11803b3ee49dbb78d0bda442c637cf539b", "difficulty": 545259519, - "ledger_hash": "32c5289ae300409d32353a02ab854732618437b376437ebcf7d91c70b91bd3d1", - "txlist_hash": "23d786f098b22a10781ba3ab8c728fd8dab73e55d938cf07700d8de478760ffc", - "messages_hash": "c0a95fee33e382a7ba4396f55d9ccc9f3e098f709c2484483056cbff90689a96", + "ledger_hash": "a547e4ed55c8efd4137eb230b037ac05d30efa3515b28b2e7554f2c963f4b54c", + "txlist_hash": "80bf3d6c03b6513656d8f94bdcc91afa0514ebeaf39e2444cf6c6a73be7aeaab", + "messages_hash": "c992c82810f347acb2eb9bc2b853de29c985dda2cd93000023e09f45cab2169b", "transaction_count": 1, "confirmed": true }, { "block_index": 228, - "block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", - "block_time": 1731170647, - "previous_block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", + "block_hash": "1aee1efd56625b83a7f0347445bdca11803b3ee49dbb78d0bda442c637cf539b", + "block_time": 1731176544, + "previous_block_hash": "33727772fce10330a472df1b7a999b8fe768ba15f6935ecdc2bb4e0d4dd868fc", "difficulty": 545259519, - "ledger_hash": "5a67140674a9f6c9a2f402026d5aefac8ff787e6c233434b7cebb02eec73fc07", - "txlist_hash": "ff3364ca977db1535cd7fdbcafd65d4562c34d6b752b5e77453d11093e249c1b", - "messages_hash": "e2f8cbdf4f0a902472c6afefe743027f74a97d6083200432030dc9586f820496", + "ledger_hash": "0a57f4172395e5b8e576ac6a68bb6da668db787f6458a144c8ce94d322ab6cfb", + "txlist_hash": "9415dce7a9aec8418f137c90651c19d7960a929ba7ef01e4856478f527acc999", + "messages_hash": "164c16bc43a823bfc5750d11201383b564ec7af02cb62bebba119b364fc58980", "transaction_count": 1, "confirmed": true }, { "block_index": 227, - "block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", - "block_time": 1731170643, - "previous_block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", + "block_hash": "33727772fce10330a472df1b7a999b8fe768ba15f6935ecdc2bb4e0d4dd868fc", + "block_time": 1731176541, + "previous_block_hash": "2349df5728b4d04a89f9a10785648618b83ce83a20b3ea91dcba3ea5ea6c9ee1", "difficulty": 545259519, - "ledger_hash": "3d9b41f0993456731de33261bcd12748cbf82067b9087429f5b9e3d7c89818fc", - "txlist_hash": "32a8bc1b0dfff09a5a6192118c13fd973e95a5232871daa8226aafb3110a2000", - "messages_hash": "335496001ebd01792ec65dfd35289334e3e529c2a91a5f80f0a045eaf5760d53", + "ledger_hash": "1471f943acc9e2fe0881815128fc9f801759b27280932041e692acc3a0d4549c", + "txlist_hash": "763610c5043f6083addb5ac57809aca639bea260063445d67b3b7a6b03fdec29", + "messages_hash": "7277ec1001c8756de66804f0e2e1241e7fd900a6a24ca445de9594b1efc44473", "transaction_count": 1, "confirmed": true }, { "block_index": 226, - "block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", - "block_time": 1731170640, - "previous_block_hash": "677bf845c77de7b1c5b35eb12bf407e9745cdc6f9880fdecd9e825401143514a", + "block_hash": "2349df5728b4d04a89f9a10785648618b83ce83a20b3ea91dcba3ea5ea6c9ee1", + "block_time": 1731176538, + "previous_block_hash": "02ba32120ab558607e5c523954629b7b8bab47726bd1d26227185e8defbf9710", "difficulty": 545259519, - "ledger_hash": "991680aee66b9ae5f47476ee9ea87809c07fd990cc92adc8003fed80a81fce49", - "txlist_hash": "385f901119a108d6d6fff88f760b0e42575bcf3647b8d3f5fc744d115c6b90f3", - "messages_hash": "05699d13631a94dcbe06a47dec6b64bd0115ab9e9bcc0daa787d6c6547d7bbd6", + "ledger_hash": "c1372e5d69d4ff7f479168108dccf23a755b28eff2da7410f46dabc9af2bc199", + "txlist_hash": "d0e8962b853b6141ea6ed4affad896a7246e39867757e60dad5f6616e1a48e44", + "messages_hash": "cae90a81a2e442e65f0467d54e796ee194e931d5a89b80ab059a78e7659cfadf", "transaction_count": 0, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", "difficulty": 545259519, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", "difficulty": 545259519, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "block_time": 1731176557 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" }, { "event_index": 890, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" }, { "event_index": 889, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" }, { "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" } ], "next_cursor": 887, @@ -256,16 +256,16 @@ "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" }, { "event_index": 886, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" }, { "event_index": 883, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 230, - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "object_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", "block_index": 211, "confirmed": true, - "block_time": 1731170575 + "block_time": 1731176470 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "ed6f1301d3ff4dc65f2a49a54460e0dabfb830d4c8b4e97034fc1e770838bb6d", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "offer_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", "status": "valid", "confirmed": true, - "block_time": 1731170449 + "block_time": 1731176349 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 97, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "XCP", "quantity": 100000000, "tag": "burn fairmint payment", "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -507,14 +507,14 @@ "result": [ { "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "msg_index": 0, "block_index": 229, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170650, + "block_time": 1731176547, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -565,10 +565,10 @@ }, { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 104, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731176356, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "tx_index": 103, "block_index": 229, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170650, + "block_time": 1731176547, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "block_index": 229, - "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", - "block_time": 1731170650, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", + "block_time": 1731176547, + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b:1 2 ", + "utxos_info": " 9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -815,70 +815,77 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "e148e13a70831719a19e7c485ef19a93f9bda09975af28469eb7b2477bb64117", - "n": 2, + "hash": "3986b41e5eda926e5af6bf93dd592d6198c8239fa21651c9dac95b315eda43e5", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 4000, - "script_pub_key": "00144e4bc3d832d60b7da913935414c5286ed1499d42" - }, { "value": 0, - "script_pub_key": "6a0a812fe4983caf30a4cf0c" + "script_pub_key": "6a2e4b9ef24b8a1d5bd5f52ecef6e797e3b2fab5d9bd5aa0eda36c118c81379ecb8bbbc220263a4aa8c7645b9664caf9" }, { - "value": 4949834000, - "script_pub_key": "00144758f71d04423d2fbee14cb3ef2cfce5166e4c9a" + "value": 4999990000, + "script_pub_key": "001478fbe8f7f6290d745bd2043cefd830b078836c1e" } ], "vtxinwit": [ - "304402206515b9e8cfc343744b440cfd68798631bf751a3b5d71da0eb5c9e6bd7b4ef43c02201a6feebd2ba1ab29d785a071e9139ca468c342db565da9edcba733092f589a1701", - "02b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df252" + "304402205a3bb4f19d65490b0ed0f18fd82b90a8ebeb2adc4628848c6a82bd8876937028022078560c0a2bab5d16eb4a5d08cc00b5faa931a6b5d4645aa14f028155e117f78c01", + "029275eeeaf08440682fdc96a6f24c2ddef147cb8391da8606d024562c09a20c49" ], "lock_time": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", - "tx_id": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d" + "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", + "tx_id": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042" }, "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, + "message_type": "enhanced_send", + "message_type_id": 2, "message_data": { - "data": "00" + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" } }, - "btc_amount_normalized": "0.00004000" + "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "12f012dc7a950f11fd70ef9e00310c5c2814e462b87ab9babd103777af031bc4", + "hash": "f54bf63a342099ee256ceedca53c6e83692d8fbaf1a5d53b412ea7e4f25d9061", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -888,20 +895,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ea996c4de30bb2373c6ac1c2eb8e8e56f90b5cbdc35cf5b567e6ae0f360f5fe8ea9812ac7e05cbb274cc107587ed1" + "script_pub_key": "6a2ec38656cbd3a40998704aa2ee2b97f43c66c2883939333f18d209671221b44c0fd0a22cf2737b67d4c3b2f81048be" }, { "value": 4949930546, - "script_pub_key": "0014ff54853ee2276b9aab2abefe1f5b88979b11ba53" + "script_pub_key": "00144a10106dd819b4a98d0dd44f3e05c2218a76e3fd" } ], "vtxinwit": [ - "3044022020e11abc63eebaf69f7d797d6cc2dcffc37d4bdd11f9c61a0cf43620a463155702206f7e110fbbea233620107ca48b75af07f415e53b475bc141e4062eb036de8a1b01", - "03c99dce59b1923a0d4ff2a9129768ca42f7289d48bfb4a553469453b9d7f0cc62" + "3044022014473224ccdc1921c494e0563f554ccfaeefdec37f9894ae4f7fec59fc289b5a02205e638b37952da8cff4821ce452a25128a9e205ea887d9221eb0e44d08861778d01", + "03b5c242964ff77a72e8718015ddf5b77afbd72d9e0c558fe6294e1691af732d1b" ], "lock_time": 0, - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_id": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a" + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_id": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd" }, "unpacked_data": { "message_type": "enhanced_send", @@ -909,7 +916,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "asset_info": { "asset_longname": null, @@ -936,17 +943,17 @@ "/v2/transactions/": { "result": { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -961,17 +968,17 @@ "/v2/transactions/": { "result": { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", + "block_time": 1731176557, + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -990,12 +997,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 890, @@ -1004,14 +1011,14 @@ "asset": "XCP", "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1022,9 +1029,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 889, @@ -1033,9 +1040,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,24 +1052,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1072,9 +1079,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 887, @@ -1082,14 +1089,14 @@ "params": { "asset": "XCP", "block_index": 230, - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "msg_index": 1, "quantity": 2000000000, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", "status": "valid", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1099,9 +1106,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 886, @@ -1114,12 +1121,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 890, @@ -1128,14 +1135,14 @@ "asset": "XCP", "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1146,9 +1153,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 889, @@ -1157,9 +1164,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1169,24 +1176,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1196,9 +1203,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 887, @@ -1206,14 +1213,14 @@ "params": { "asset": "XCP", "block_index": 230, - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "msg_index": 1, "quantity": 2000000000, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", "status": "valid", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1223,9 +1230,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 886, @@ -1235,10 +1242,10 @@ "result": [ { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1246,7 +1253,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1259,10 +1266,10 @@ }, { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1270,11 +1277,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1290,27 +1297,27 @@ { "tx_index": 104, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1325,7 +1332,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1346,16 +1353,16 @@ "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1365,9 +1372,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 886, @@ -1377,12 +1384,12 @@ "asset": "XCP", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,9 +1399,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 883, @@ -1404,24 +1411,24 @@ "asset": "MYASSETA", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": null, @@ -1433,16 +1440,16 @@ "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1452,9 +1459,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 886, @@ -1464,12 +1471,12 @@ "asset": "XCP", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1479,9 +1486,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 883, @@ -1491,24 +1498,24 @@ "asset": "MYASSETA", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": null, @@ -1521,7 +1528,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1531,7 +1538,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1542,7 +1549,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1552,7 +1559,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1563,7 +1570,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1573,7 +1580,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1584,7 +1591,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1594,7 +1601,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1605,7 +1612,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1615,7 +1622,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1629,17 +1636,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "block_hash": "0875bcd1d65735f4c430150bf636f213c96b402d65725c27d597adedfb2f7128", - "block_time": 1731170544, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "block_hash": "7bafd23160b55e3e29d35c2214deecde61589e5c7a371573e9dbc393488f8c6a", + "block_time": 1731176428, + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038078fbe8f7f6290d745bd2043cefd830b078836c1e80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2:0 4 ", + "utxos_info": " b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1647,14 +1654,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1662,7 +1669,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1681,17 +1688,17 @@ }, { "tx_index": 80, - "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "tx_hash": "6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c", "block_index": 204, - "block_hash": "05042a0c11331c5d8dafd5e3027de505d8dbf7f971f39e4f64d1a3f24069aa89", - "block_time": 1731170539, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "block_hash": "352b35141cdbbef98f698b294d682b990a4bd969858009884fbb2d53a3346818", + "block_time": 1731176425, + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba53c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038078fbe8f7f6290d745bd2043cefd830b078836c1e80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fdc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989:0 4 ", + "utxos_info": " 6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1699,14 +1706,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1714,7 +1721,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1733,17 +1740,17 @@ }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "block_index": 203, - "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", - "block_time": 1731170536, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "1900569dcfe5c6565fe56c1d41589f566df8829f59ca3408caa357df6505ccbc", + "block_time": 1731176420, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", + "utxos_info": " b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1751,14 +1758,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1766,7 +1773,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1785,17 +1792,17 @@ }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "block_index": 202, - "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", - "block_time": 1731170533, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "7f0bfd25f4a893fc37c3e19193dd8c41b9a33802dae04e8ca23b38f1c0c24e73", + "block_time": 1731176407, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", + "utxos_info": " 563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1803,14 +1810,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1818,7 +1825,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1837,17 +1844,17 @@ }, { "tx_index": 77, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", "block_index": 201, - "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", - "block_time": 1731170518, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "022e81e0bd799b7848a7c4cc9de25ee9d9dfe1abbed9f411f4d6ecbf3f049b1e", + "block_time": 1731176404, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "02000000178d82231300000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", "supported": true, - "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "utxos_info": " bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1855,12 +1862,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -1880,29 +1887,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "block_time": 1731170636 + "order_match_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "block_time": 1731176533 }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731176533 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731170636, + "block_time": 1731176533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1912,37 +1919,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731176533 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "block_time": 1731170575 + "order_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_time": 1731176470 }, - "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "tx_hash": "0ce5805af7adfcac6f6bd2dd791389167543337e1673266a8b7feec927b73b60", "block_index": 211, - "block_time": 1731170575 + "block_time": 1731176470 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731170575, + "block_time": 1731176470, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1952,9 +1959,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "tx_hash": "0ce5805af7adfcac6f6bd2dd791389167543337e1673266a8b7feec927b73b60", "block_index": 211, - "block_time": 1731170575 + "block_time": 1731176470 }, { "event_index": 698, @@ -1962,15 +1969,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "status": "valid", - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "tx_index": 81, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1980,9 +1987,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "block_time": 1731170544 + "block_time": 1731176428 } ], "next_cursor": 698, @@ -1991,17 +1998,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "quantity": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "status": "valid", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105, "asset_info": { "asset_longname": null, @@ -2012,22 +2019,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "asset": "XCP", "block_index": 230, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2037,22 +2044,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "address": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "XCP", "block_index": 230, - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2062,30 +2069,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731170667.9059134, + "block_time": 1731176561.3852592, "btc_amount": 0, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", "destination": "", "fee": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105, - "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "utxos_info": "61905df2e4a72e413bd5a5f1ba8f2d69836e3ca5dcee6c25ee9920343af64bf5:1 b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "asset_info": { "asset_longname": null, @@ -2099,7 +2106,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 } ], "next_cursor": null, @@ -2108,7 +2115,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2123,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2131,14 +2138,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2146,14 +2153,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2168,7 +2175,7 @@ "quantity_normalized": "825.99966000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2176,7 +2183,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2189,7 +2196,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2211,16 +2218,16 @@ "result": [ { "block_index": 225, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170636, + "block_time": 1731176533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2232,16 +2239,16 @@ }, { "block_index": 205, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "event": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2253,16 +2260,16 @@ }, { "block_index": 204, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "event": "6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170539, + "block_time": 1731176425, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2274,16 +2281,16 @@ }, { "block_index": 204, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170539, + "block_time": 1731176425, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2295,16 +2302,16 @@ }, { "block_index": 202, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "event": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2322,16 +2329,16 @@ "result": [ { "block_index": 203, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "event": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731176420, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2343,20 +2350,20 @@ }, { "block_index": 203, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "event": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731176420, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2364,16 +2371,16 @@ }, { "block_index": 202, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "event": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2385,20 +2392,20 @@ }, { "block_index": 202, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "event": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2406,20 +2413,20 @@ }, { "block_index": 201, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "event": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170518, + "block_time": 1731176404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2438,9 +2445,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "tx_hash": "e67122031fbe6ca54f201857a06cd400bd560b3289b874b314f60c0268d3c979", "block_index": 128, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2448,7 +2455,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170214, + "block_time": 1731176099, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2458,15 +2465,15 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 4, - "tx_hash": "1bd3739c207a8b8c18ebd0916916fdc4c313fc4def9f40c126a7abbd2d94f096", + "tx_index": 6, + "tx_hash": "4869a671921aae27de72f611a5bea4bb101af56c5cec3b57d1f0275ae40108ba", "block_index": 112, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2478,10 +2485,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2489,7 +2496,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731176420, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2502,10 +2509,10 @@ }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2513,11 +2520,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731176420, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2526,10 +2533,10 @@ }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2537,11 +2544,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731176420, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2550,10 +2557,10 @@ }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2561,7 +2568,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2574,10 +2581,10 @@ }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2585,11 +2592,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2604,10 +2611,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "033aa589f258248ddced4d4a5d793c4c8a44de6ebb135edd815fc3991500252c", + "tx_hash": "3530bba2e2c336db38ee7580eb430255b366920148b82e4df929badd1738ac4a", "block_index": 142, - "source": "8b2027b4c4d61b834fee8bae342105a458b540c2dc260624b8245acf939c8140:0", - "destination": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "source": "0fe948759ec401143466b6bfd5dd7e25603172dc5b6f15672c783060a565c8c9:0", + "destination": "bcrt1qhl427cv9dyqktga2ama0lqgcaudp2ldmfsrggs", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2615,11 +2622,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170276, + "block_time": 1731176150, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2644,9 +2651,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2655,7 +2662,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2666,7 +2673,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2683,9 +2690,9 @@ }, { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2694,7 +2701,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2705,11 +2712,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170483, + "block_time": 1731176371, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2727,9 +2734,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2738,7 +2745,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2749,7 +2756,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2770,19 +2777,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_hash": "86285e6a31480551680eb77488bc321d874e7e2bd4c107c24f28413141926c8b", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "dispenser_tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2790,7 +2797,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2805,11 +2812,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170483, + "block_time": 1731176371, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2819,19 +2826,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2839,7 +2846,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2854,7 +2861,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2868,19 +2875,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2888,7 +2895,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2903,7 +2910,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2923,19 +2930,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_hash": "86285e6a31480551680eb77488bc321d874e7e2bd4c107c24f28413141926c8b", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "dispenser_tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2943,7 +2950,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2958,11 +2965,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170483, + "block_time": 1731176371, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -2972,19 +2979,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2992,7 +2999,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3007,7 +3014,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3021,19 +3028,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3041,7 +3048,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3056,7 +3063,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3076,19 +3083,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3096,7 +3103,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3111,7 +3118,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3125,19 +3132,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3145,7 +3152,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3160,7 +3167,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3180,19 +3187,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3200,7 +3207,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3215,7 +3222,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3229,19 +3236,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3249,7 +3256,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3264,7 +3271,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3283,16 +3290,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731176356, "fee_paid_normalized": "0.00600000" } ], @@ -3303,14 +3310,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "tx_hash": "b845201bcb1d1b13ffa1f15f70a01bad4bb2fe4b71c6bf094fed2aec41b3beeb", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "transfer": false, "callable": false, "call_date": 0, @@ -3325,20 +3332,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170514, + "block_time": 1731176400, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "898f1ee358d4109fb7b56a881aaf518415135f010fced4832ae4e88a4d230f2a", + "tx_hash": "69726b6a91268bd621c4ea1d55a0d24865fcf5d24985d7fc731581f19d7065e2", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "transfer": false, "callable": false, "call_date": 0, @@ -3353,20 +3360,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170347, + "block_time": 1731176218, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "beb53e2e4a8a4684689abd407587695d4162896ceed78b280eb32706ebe4796c", + "tx_hash": "5d42952fb34a86e3f942b4119e943cdcf4ed5072cf159de79202551b5cd673c9", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "transfer": false, "callable": false, "call_date": 0, @@ -3381,20 +3388,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731170333, + "block_time": 1731176215, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "e2116b0c6b33229a263154ae3ea785b23718ec97dc4e8653f198d661d750cf74", + "tx_hash": "d3177739041dabef0b86a6905b55f6076dab9c6b15a7f49053b258776cf254e0", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "transfer": false, "callable": false, "call_date": 0, @@ -3409,20 +3416,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170319, + "block_time": 1731176201, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "0b60ca17b01332221c75e2c5c8cdfe77ec23b7208985e8da9478582aa95941e6", + "tx_hash": "4afe3ac27a7ba05dd11a71ca2043c84a1badc43ba1999826931a07b9284db1aa", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "transfer": false, "callable": false, "call_date": 0, @@ -3437,7 +3444,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170316, + "block_time": 1731176196, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3451,8 +3458,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 100000000000, @@ -3460,16 +3467,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731170514, - "last_issuance_block_time": 1731170514, + "first_issuance_block_time": 1731176400, + "last_issuance_block_time": 1731176400, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 10000000000, @@ -3477,16 +3484,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731170316, - "last_issuance_block_time": 1731170333, + "first_issuance_block_time": 1731176196, + "last_issuance_block_time": 1731176215, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 180, @@ -3494,16 +3501,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731170298, - "last_issuance_block_time": 1731170305, + "first_issuance_block_time": 1731176176, + "last_issuance_block_time": 1731176184, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 100000000000, @@ -3511,16 +3518,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731170264, - "last_issuance_block_time": 1731170264, + "first_issuance_block_time": 1731176138, + "last_issuance_block_time": 1731176138, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 40, @@ -3528,8 +3535,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731170207, - "last_issuance_block_time": 1731170210, + "first_issuance_block_time": 1731176091, + "last_issuance_block_time": 1731176094, "supply_normalized": "0.00000040" } ], @@ -3542,8 +3549,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 100000000000, @@ -3551,16 +3558,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731170514, - "last_issuance_block_time": 1731170514, + "first_issuance_block_time": 1731176400, + "last_issuance_block_time": 1731176400, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 10000000000, @@ -3568,16 +3575,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731170316, - "last_issuance_block_time": 1731170333, + "first_issuance_block_time": 1731176196, + "last_issuance_block_time": 1731176215, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 180, @@ -3585,16 +3592,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731170298, - "last_issuance_block_time": 1731170305, + "first_issuance_block_time": 1731176176, + "last_issuance_block_time": 1731176184, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 100000000000, @@ -3602,16 +3609,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731170264, - "last_issuance_block_time": 1731170264, + "first_issuance_block_time": 1731176138, + "last_issuance_block_time": 1731176138, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 40, @@ -3619,8 +3626,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731170207, - "last_issuance_block_time": 1731170210, + "first_issuance_block_time": 1731176091, + "last_issuance_block_time": 1731176094, "supply_normalized": "0.00000040" } ], @@ -3633,8 +3640,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 100000000000, @@ -3642,16 +3649,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731170514, - "last_issuance_block_time": 1731170514, + "first_issuance_block_time": 1731176400, + "last_issuance_block_time": 1731176400, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 10000000000, @@ -3659,16 +3666,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731170316, - "last_issuance_block_time": 1731170333, + "first_issuance_block_time": 1731176196, + "last_issuance_block_time": 1731176215, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 180, @@ -3676,16 +3683,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731170298, - "last_issuance_block_time": 1731170305, + "first_issuance_block_time": 1731176176, + "last_issuance_block_time": 1731176184, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 100000000000, @@ -3693,16 +3700,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731170264, - "last_issuance_block_time": 1731170264, + "first_issuance_block_time": 1731176138, + "last_issuance_block_time": 1731176138, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false, "supply": 40, @@ -3710,8 +3717,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731170207, - "last_issuance_block_time": 1731170210, + "first_issuance_block_time": 1731176091, + "last_issuance_block_time": 1731176094, "supply_normalized": "0.00000040" } ], @@ -3722,17 +3729,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "block_index": 203, - "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", - "block_time": 1731170536, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "1900569dcfe5c6565fe56c1d41589f566df8829f59ca3408caa357df6505ccbc", + "block_time": 1731176420, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", + "utxos_info": " b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3740,14 +3747,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -3755,7 +3762,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3774,17 +3781,17 @@ }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "block_index": 202, - "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", - "block_time": 1731170533, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "7f0bfd25f4a893fc37c3e19193dd8c41b9a33802dae04e8ca23b38f1c0c24e73", + "block_time": 1731176407, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", + "utxos_info": " 563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3792,14 +3799,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -3807,7 +3814,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3826,17 +3833,17 @@ }, { "tx_index": 77, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", "block_index": 201, - "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", - "block_time": 1731170518, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "022e81e0bd799b7848a7c4cc9de25ee9d9dfe1abbed9f411f4d6ecbf3f049b1e", + "block_time": 1731176404, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "02000000178d82231300000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", "supported": true, - "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "utxos_info": " bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3844,12 +3851,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -3860,17 +3867,17 @@ }, { "tx_index": 76, - "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "tx_hash": "b845201bcb1d1b13ffa1f15f70a01bad4bb2fe4b71c6bf094fed2aec41b3beeb", "block_index": 200, - "block_hash": "43715cb7b6b7030567444d219f200645d5d8e38b21dde265287af7f152f1dd1a", - "block_time": 1731170514, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "1b78e3a6638da5c8a97046fa67947f4a6d87582e21079b4f24d7f2c2973a2af4", + "block_time": 1731176400, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba:1 2 ", + "utxos_info": " b845201bcb1d1b13ffa1f15f70a01bad4bb2fe4b71c6bf094fed2aec41b3beeb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3895,17 +3902,17 @@ }, { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "block_index": 193, - "block_hash": "56c1d87bcfdd97eb2dba765d3361ef15de96af711da1ad831d4e0923d23b3de5", - "block_time": 1731170479, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "3ecded8a2f0da49d2d2557915bac70bbb8e6efcb91a3a2c987ae3f9d2f65020d", + "block_time": 1731176367, + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1:1 2 ", + "utxos_info": " 5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3922,7 +3929,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -3940,20 +3947,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", "block_index": 146, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731176167, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -3975,9 +3982,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3994,7 +4001,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170360, + "block_time": 1731176232, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4022,9 +4029,9 @@ }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4041,7 +4048,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4069,9 +4076,9 @@ }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4088,7 +4095,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170449, + "block_time": 1731176349, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4116,9 +4123,9 @@ }, { "tx_index": 64, - "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", "block_index": 211, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4135,7 +4142,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170575, + "block_time": 1731176470, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4168,10 +4175,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", "tx_index": 44, "block_index": 150, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4196,7 +4203,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731170305, + "block_time": 1731176184, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4208,10 +4215,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "ae593135beae4b46d0fdb476ae66ceb855d2a50fce46976303bb3a77c2f53656", + "tx_hash": "6d694293e0f0e4d171b0ae784f3e75967aa88e4c4b87296efc425679c3c7117e", "tx_index": 43, "block_index": 147, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4236,7 +4243,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170294, + "block_time": 1731176171, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4245,10 +4252,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", + "tx_hash": "6b3ce83ab8a74fcbc8b2e0c2b3a3616052e1e020fcb855d0ae4d62c92282e704", "tx_index": 22, "block_index": 126, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4273,7 +4280,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731170207, + "block_time": 1731176091, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4285,10 +4292,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", "tx_index": 18, "block_index": 122, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4313,7 +4320,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731170192, + "block_time": 1731176074, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4325,10 +4332,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", + "tx_hash": "790a591f0d1dcbf55f73052ba3cff7ca201940efc5b2d3a3b443f74833c1b319", "tx_index": 14, "block_index": 121, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4353,7 +4360,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731170189, + "block_time": 1731176069, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4365,10 +4372,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", + "tx_hash": "4a3545d52af7007e7db3383069921174622ea6383ae3d7d14e7789924d2c2684", "tx_index": 10, "block_index": 116, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4393,7 +4400,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731170167, + "block_time": 1731176051, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4411,22 +4418,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_hash": "02a7ad5cd4f2057d0ec24af7af821c1e62c968fe2ec1f00505b80530e2b782c5", "tx_index": 46, "block_index": 150, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170305, + "block_time": 1731176184, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4435,22 +4442,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_hash": "90b6adcd471de4bc8de7de6e1b76ed03e3e948d7fad39e91b6c7373c16da56b6", "tx_index": 45, "block_index": 149, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170302, + "block_time": 1731176180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4459,22 +4466,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4bc3569c295bfedde7a66ef3c900bd97229008dc410bfb3eff9f558248010e5c", + "tx_hash": "0e7e0c7203f598c1861cc672aa2ffb73216fefe46fd0bc5279acdf021a3cc3ab", "tx_index": 23, "block_index": 127, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "6b3ce83ab8a74fcbc8b2e0c2b3a3616052e1e020fcb855d0ae4d62c92282e704", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170210, + "block_time": 1731176094, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4483,22 +4490,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3a9aacc479c7d9e032a16939748fe6fdc24e9d13925e80ed4b5b614d2e056002", + "tx_hash": "9037b85471f131bd57babb97e5093cd48e596df78dd6ecb36aac3fa11dc25a54", "tx_index": 21, "block_index": 125, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170203, + "block_time": 1731176087, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4507,22 +4514,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e9b68933db2315a40fc88eff0cd58a525383a511a4c3e16dc87a6895156329c3", + "tx_hash": "b477578b3afa070d2af2fb34efacacd0a191da7ef93237867df443349418ddf5", "tx_index": 20, "block_index": 124, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170200, + "block_time": 1731176082, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4531,22 +4538,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "dc5aa9aadf9bf60e60e6e7af44a09b0ddab117a618156df07a99f5740c41c44a", + "tx_hash": "46e8b0ff1d5226d613493293a2dd0fb820f1b0a62a65c4f1b819a9ac1bd3556e", "tx_index": 19, "block_index": 123, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170195, + "block_time": 1731176078, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4555,22 +4562,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6611dc30ff8ceb23e5b7766a48c082f8dc0137afa5ccad1664574c3888ceeda5", + "tx_hash": "5fb535e872b78984f5095828a799131c9ca90e491283d393393364743aaabcc6", "tx_index": 15, "block_index": 118, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "790a591f0d1dcbf55f73052ba3cff7ca201940efc5b2d3a3b443f74833c1b319", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170176, + "block_time": 1731176060, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4579,22 +4586,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "533c4fd19985128219ca1ec26f89d940039ded67956e1865af304ea38a4ffc7d", + "tx_hash": "7df71cdfaab301eecf66dad1886b51833bd6404c2bdd55ff258b78048b5f1ca9", "tx_index": 11, "block_index": 114, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "4a3545d52af7007e7db3383069921174622ea6383ae3d7d14e7789924d2c2684", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170160, + "block_time": 1731176044, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4616,8 +4623,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4630,12 +4637,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4651,7 +4658,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4664,7 +4671,7 @@ "btc_out": 0, "btc_change": 4999985820, "btc_fee": 14180, - "rawtransaction": "02000000000101bfee7098df7420bc4477e97cb8d03304251bf8d345a0a0aece617008405f5a82000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0200000000000000002b6a29153fa4f19fb5624870279bb0c0319f6e3c666f1dfc3684cf4845164e5c6d6b712af3daefc846bc541f9cba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "0200000000010166603a5c44ee9063f80ddefd3fd0e08b3769876e14b4b5aabdbc4b04bc0ad53a0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff0200000000000000002b6a29e2b1191893275660f4e37bef02f79d058f14611525ad08a4e091fe1c39b753f6e898955399fd8a136a9cba052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4682,24 +4689,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "order_match_id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "data": "434e5452505254590b7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980952, "btc_fee": 18048, - "rawtransaction": "020000000001019c42e80ac9905b24a3b5629751017ff65c41c3fecac30370fd7b8d236966c774000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014da72629f3f1d10098a9b361907ebb25dd30bce5000000000000000004b6a4963221fd105f5289f4dff09e56eea2171c5d220868f09be84be35b2784ff4cc880fd2accea8cf33b7dfc599f826069b92dcb2bdc174b1ffef5add43c08dcac95b22393fa5369e22462298a7052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "02000000000101e8dec2eea75a1fc0d986cdca8dbbcf5432fdbf8e6c4d8af2ad125314d8be3bdb0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03e803000000000000160014b28cbfb1716940138dec1c2d0ec5625354b6bbd300000000000000004b6a49da28870a5e217c262eaf3cfd4314cc91ea730f6385ae96980fde8cb510874f32bf471036517602d6fa8101b15432796a3ba6f6ad0a5e008e373e101fd288b2d84972f0048404070baa98a7052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", + "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "order_match_id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "status": "valid" } } @@ -4708,7 +4715,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4719,28 +4726,28 @@ "btc_out": 1000, "btc_change": 4999985816, "btc_fee": 13184, - "rawtransaction": "02000000000101fd05507774960dc10c40e09c1a042e82b1ae9821263593410a104310de82c561000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac98ba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000" + "rawtransaction": "02000000000101530583b58f7aea0416f5f57699bc358b975642973d1ae36ed2e4a841e13752b60000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac98ba052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "offer_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "data": "434e54525052545946562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "btc_in": 90000, "btc_out": 0, "btc_change": 75820, "btc_fee": 14180, - "rawtransaction": "02000000000101bfa686073b117ddf825e714b1f0f13130a33f6d38c3bf25743ca1a47c96bdad301000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff0200000000000000002b6a2931ee62339020c25acf99c9a5132a46a21f25946e48378e717a6a761a0de60aafb90fe3abfe05f70f2b2c28010000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000000000000", + "rawtransaction": "0200000000010100bead1e39fc4e1ba3ccda52684c0565c0cdfcfe0669e8640b27d03d14452a5601000000160014904e18f762fc9bf9003dee31476e8bc70b13cc38ffffffff0200000000000000002b6a29e8712d1292926a1884dabe07bbe144f0fafddf9414b63a69ba6e68ac186586d5a686d3695a8cbdab8c2c28010000000000160014904e18f762fc9bf9003dee31476e8bc70b13cc3802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "offer_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "status": "valid" } } @@ -4749,7 +4756,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4769,7 +4776,7 @@ "btc_out": 0, "btc_change": 4999986347, "btc_fee": 13653, - "rawtransaction": "020000000001017ecb325e74aa440c4351c6a7ec6851f2c434fe4a08f0036ae64c59664453a0d4000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000226a2027391a43d611203c585ffe2b582f8e606b935ecfb891cc0e08ce6a85a22f1ee6abbc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "02000000000101ddc92681fdf9092e401c2bc83869a7a24dd81de88ba1c1703171a5b951121f3c0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000226a203485e19a93814559465f788e51d1c3a2f250ac6f832a22e3f9598164e100015eabbc052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4785,7 +4792,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4810,7 +4817,7 @@ "btc_out": 0, "btc_change": 4949859560, "btc_fee": 14239, - "rawtransaction": "02000000000101924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a020000001600140144834ef3388923cb712f4700e69943a3dc6e8effffffff0200000000000000002c6a2a2819ad062ec48fa59c7aa4938a8400826287365ea27e3a74dc0c32aa601b2829bdf5635469f54e570d59e8dc0827010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02000000000000", + "rawtransaction": "020000000001012fa17907628d087df7da2c789250c0e2b5e46d49759a9feea36236cb7731d4d10200000016001431337e2f48ce3009bd627f9499c594f65f547f41ffffffff0200000000000000002c6a2a4cd6bf00df4177693133bc44eb4999ccb63d3f54e58953b19c1965a296a01cffc0c0de5731ab29bc58b1e8dc08270100000016001431337e2f48ce3009bd627f9499c594f65f547f4102000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4832,7 +4839,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -4840,7 +4847,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -4859,7 +4866,7 @@ "btc_out": 0, "btc_change": 4999986288, "btc_fee": 13712, - "rawtransaction": "020000000001014d6a88e54696e169e7aac1d204615391e6047e7ca812ae7b05d8f970d4231ab6000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a219dd2bc1102b247bd84b5da1c68d0321d536ed176265b5259caa347ff966c0fac5570bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "02000000000101516aa60816d12cb783ede6ea76c010e42e69f76533c46fd14522ce2e0e0579520000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000236a217df7f2e36740768eb0496412e5f7802233b87e23fe354430b77cc895cdf440255470bc052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4876,10 +4883,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer_destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "lock": false, "reset": false, @@ -4893,7 +4900,7 @@ "btc_out": 546, "btc_change": 4999983750, "btc_fee": 15704, - "rawtransaction": "0200000000010159cef7239026579c37c4618d1e73ad3012848ddd8091df35e50d094489e1bd3c000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000236a219df90a78aabe9bc7f229189673b56dea26021278a258b3e75a2a78a28d727f36fe86b2052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "02000000000101b9c6bd2be54f1d543f224b5dc83bc03a2790d6eb01e52d99ccc0dbd7067b1f380000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03220200000000000016001478fbe8f7f6290d745bd2043cefd830b078836c1e0000000000000000236a2186dd2f50434d5506ec30cd9476e1a30f8bfc24b139672fe6161dd8daf02d1d90ff86b2052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4918,16 +4925,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset_dest_quant_list": [ [ "XCP", - "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", 1 ], [ "FAIRMINTC", - "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", 2 ] ], @@ -4936,26 +4943,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002804e4bc3d832d60b7da913935414c5286ed1499d42804758f71d04423d2fbee14cb3ef2cfce5166e4c9a4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028078fbe8f7f6290d745bd2043cefd830b078836c1e803fb9a93e4416c1a3e2893e4aab0a99776e32808a4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949785315, "btc_fee": 20685, - "rawtransaction": "02000000000101e2bc8d7c192736a471c479589924132fd95e2f5ffff13a20dcb4d06f065e45e9030000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9affffffff03e8030000000000006951210397521797391f280eac53efc384c9002bf7310b8b0c5e4d806b2fe6abf04b15e121025932764086d2c54956c09f2c74d7a0b11794e59690c37c855b6f35c00967612c2102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee8030000000000006951210288521797391f280eac40efc104874be82f27dd8071f75e133f3f23839e9a5c362102c470f707de25d84d14fdb092959b135e3b680080fe8fe6c55b6f092eb6e3d8422102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee3ba0727010000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9a02000000000000", + "rawtransaction": "02000000000101a831e0e4fbfab8eea8630f9aca132d8ce8a6587f92796dbb268a5d5096c90bb1030000001600143fb9a93e4416c1a3e2893e4aab0a99776e32808affffffff03e803000000000000695121027694bc257794953e93f579e7106e648f302952745961e6d101df929449e13ebe2103df49a7618ebd3574e9523ebfaf1afc385b5a7f6f6fce711f8468cba4e9aaf2262102832f10849f50b8ebea0c95ce824845185d2982552b1b53ac9cc5c10746d16b2e53aee803000000000000695121036994bc257794953e93e679e590169f67c7fb7b792d3a34d53d344aa4f999bd752103b357265e37140b30ff939d5d2624b69351c308015d4efb5f8468f74a562e4b9b2102832f10849f50b8ebea0c95ce824845185d2982552b1b53ac9cc5c10746d16b2e53aee3ba0727010000001600143fb9a93e4416c1a3e2893e4aab0a99776e32808a02000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "quantity": 1, "memo": null, "memo_is_hex": null @@ -4967,7 +4974,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -4985,7 +4992,7 @@ "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -4999,7 +5006,7 @@ "btc_out": 0, "btc_change": 4999985234, "btc_fee": 14766, - "rawtransaction": "02000000000101e7ff4293e00a0d5a8ca1a44f8826fccf9413794997140e79d06b16278cbbff8e000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000356a3376a0f45518e049d18ba51813dd2fe07276e22f8ff4b75ce8db23b86f38081debafa46bc7b8f6f7c4376bc750f8560291e6962e52b8052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "020000000001015d87c28303295966d0221573d44d52e3f843f356ec25eb47c6f3a62086e233740000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000356a33b24a1ffebe856c47a3098e53caf957b9e78269558bff9c1ce56bab5c52802e9b7bf39931899b74a7abf2e563342d9bb744c1c752b8052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5021,8 +5028,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5039,19 +5046,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "434e54525052545902000000000000000100000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985527, "btc_fee": 14473, - "rawtransaction": "02000000000101201943fc76756fc834f82c62c6d7ba41d0447b751a6d92bbb11cc2a56c748a4f000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000306a2e98532bb7bb38012efe7abfe9882db000bf5e081706b43e26fbb15ab8cc00bcc55853515537469239b697ee3a04c777b9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "020000000001017feb6a0aa9a9ad90efc14ad31ac130524a769e8335b729bd8c589fac9008706a0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000306a2e27bde0b7b94be7d482dc68625bedd6672b207cafd96396cacb44b020c066b74d6d08321c68bcea6f238b87efef7677b9052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "memo": null, "quantity_normalized": "0.00001000" } @@ -5061,24 +5068,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904804758f71d04423d2fbee14cb3ef2cfce5166e4c9a07ffff", + "data": "434e54525052545904803fb9a93e4416c1a3e2893e4aab0a99776e32808a07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986288, "btc_fee": 13712, - "rawtransaction": "020000000001012585efa30fccd74f23785f8fd5bf77cbf9284efedbe763348591c0ab5505ef33000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a21bf695bf0554eabd45b0c504007c4168277d37da0676fe09caf5fbd4d9feaef7a9d70bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "0200000000010127b8e6b115217126f5fc9cdf8272b29da141c97b90609279764bc7eafd744f230000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000236a21fb5e725e430291571375525a9476262f76e869ce392a2944fb6a24fcfe757fb81970bc052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "flags": 7, "memo": "ffff" } @@ -5088,8 +5095,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "quantity": 1000, "skip_validation": false }, @@ -5099,7 +5106,7 @@ "btc_out": 1000, "btc_change": 4999984644, "btc_fee": 14356, - "rawtransaction": "02000000000101f02c497cb84c7081763cd99d52da00f3a19d0f1e75ee45992ee2e7632d149627000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014ff54853ee2276b9aab2abefe1f5b88979b11ba5300000000000000000c6a0ab84562355795aca39de004b6052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "0200000000010183fd9883d9ca8af48976cf69eccf5f44a5217497e4e9b1fda9b8ce2ddabad40c0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03e8030000000000001600144a10106dd819b4a98d0dd44f3e05c2218a76e3fd00000000000000000c6a0a105a7a4ada860998d27604b6052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5112,7 +5119,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5144,7 +5151,7 @@ "btc_out": 0, "btc_change": 4999985468, "btc_fee": 14532, - "rawtransaction": "020000000001018593d758a6d891a8daea3703f8937e5ab0e2bda4c76b1951ab8d6295cc4256a5000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000316a2f4c4f9c10060bfba9ffdbcf2fbaec4223b2b3e3315b23c9ddb098fc69bac9b0e10a810eb844f50c28ed2c9454de30ac3cb9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "020000000001018d834039f4e65b7f2e27ed688aea81e32e647779fcfb49422e30157bf42a77360000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000316a2f34ed454b25170b162e2c470a6fb0f12e5b3ff0e649f0f2be2279afd40228ba6d79e7c6646287e9efe95ff892772a133cb9052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5179,14 +5186,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "divisible": true, "locked": false }, @@ -5198,7 +5205,7 @@ "btc_out": 0, "btc_change": 4999987109, "btc_fee": 12891, - "rawtransaction": "020000000001013127650871802a0d89c909503c6dc08d1701fe7b7fe0e31953c45c474ce8c269000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000156a13560f9484fa6e1b39bfd269f7768748fc359ae7a5bf052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "020000000001012cee1995c87b76fce294ee4d72a669909b30a417af1ff6641deb5e8b4d3caa800000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000156a13ff553fe9b87d0ae14de8a0aecc49ffcaaefcd7a5bf052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5213,7 +5220,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5233,7 +5240,7 @@ "btc_out": 546, "btc_change": 4999984629, "btc_fee": 14825, - "rawtransaction": "020000000001018ba4bf916f7ab6e1480f2829b82fea1816ab1d2a33177cb6f58d97ff40f059e8000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000146a1295def032c14a60f762adbb2cfc68434b412df5b5052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "rawtransaction": "020000000001012742d5f999ff562898b5d3b764fba925594a826a3827c7dce3ca46031035e9b60000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03220200000000000016001478fbe8f7f6290d745bd2043cefd830b078836c1e0000000000000000146a12ea5ac724947ec31e8ed7c8b9ae94db14e0fef5b5052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5249,22 +5256,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317166653975386b706a366339686d32676e6a64327066336667646d67356e38327a73366d346e78", + "data": "434e545250525459666263727431713072613733616c6b39797868676b376a717337776c6b70736b707567786d71377364756a7571", "btc_in": 4949951000, "btc_out": 0, "btc_change": 4949925510, "btc_fee": 25490, - "rawtransaction": "02000000000102924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a00000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff2b6f2a5ecf4d388e0f2a3124c49a5e15a0e2abe42167866125309aca5b4808cd01000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff020000000000000000376a352819ad062ec48fa5f618c7e1feb571e406be4366c90e504157355ac7527c464031c713325a932933043e626f60b2f06275f3f5bd7486de092701000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000002000000000000", + "rawtransaction": "020000000001022fa17907628d087df7da2c789250c0e2b5e46d49759a9feea36236cb7731d4d100000000160014904e18f762fc9bf9003dee31476e8bc70b13cc38ffffffffbb3a423c7cf4b50e362701bc0a201595a5dedb3cec9f20a4a9b7745dd437bb9f01000000160014904e18f762fc9bf9003dee31476e8bc70b13cc38ffffffff020000000000000000376a354cd6bf00df4177695b51df369f78e8fcc55c086784e5388b0d610dc5fd97768d5bf7a93b5adb5ad74cc48b9dc1925799c37be1b44686de092701000000160014904e18f762fc9bf9003dee31476e8bc70b13cc3802000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx" + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq" } } } @@ -5275,8 +5282,8 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "owner": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "owner": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "divisible": true, "locked": false, "supply": 0, @@ -5284,16 +5291,16 @@ "first_issuance_block_index": 229, "last_issuance_block_index": 229, "confirmed": true, - "first_issuance_block_time": 1731170650, - "last_issuance_block_time": 1731170650, + "first_issuance_block_time": 1731176547, + "last_issuance_block_time": 1731176547, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": false, "supply": 0, @@ -5301,16 +5308,16 @@ "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731170636, - "last_issuance_block_time": 1731170640, + "first_issuance_block_time": 1731176533, + "last_issuance_block_time": 1731176538, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": false, "supply": 0, @@ -5318,16 +5325,16 @@ "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731170625, - "last_issuance_block_time": 1731170628, + "first_issuance_block_time": 1731176523, + "last_issuance_block_time": 1731176527, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true, "supply": 100000000, @@ -5335,16 +5342,16 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731170619, - "last_issuance_block_time": 1731170622, + "first_issuance_block_time": 1731176515, + "last_issuance_block_time": 1731176518, "supply_normalized": "1.00000000" }, { "asset": "LOCKDESC", "asset_id": "92703121214", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true, "supply": 12000000000, @@ -5352,8 +5359,8 @@ "first_issuance_block_index": 216, "last_issuance_block_index": 219, "confirmed": true, - "first_issuance_block_time": 1731170603, - "last_issuance_block_time": 1731170614, + "first_issuance_block_time": 1731176500, + "last_issuance_block_time": 1731176511, "supply_normalized": "120.00000000" } ], @@ -5365,8 +5372,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true, "supply": 100000000, @@ -5374,15 +5381,15 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731170619, - "last_issuance_block_time": 1731170622, + "first_issuance_block_time": 1731176515, + "last_issuance_block_time": 1731176518, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5390,14 +5397,14 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5405,7 +5412,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -5418,7 +5425,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5440,9 +5447,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5459,7 +5466,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170360, + "block_time": 1731176232, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5487,9 +5494,9 @@ }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5506,7 +5513,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5534,9 +5541,9 @@ }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5553,7 +5560,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170449, + "block_time": 1731176349, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5581,9 +5588,9 @@ }, { "tx_index": 64, - "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", "block_index": 211, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5600,7 +5607,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170575, + "block_time": 1731176470, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5628,9 +5635,9 @@ }, { "tx_index": 56, - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5647,7 +5654,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170429, + "block_time": 1731176315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5680,13 +5687,13 @@ "/v2/assets//matches": { "result": [ { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5700,7 +5707,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170539, + "block_time": 1731176425, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5720,13 +5727,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 56, - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5740,7 +5747,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731170429, + "block_time": 1731176315, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5760,13 +5767,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "id": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3_e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", "tx0_index": 53, - "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 54, - "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", + "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5780,7 +5787,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170360, + "block_time": 1731176232, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5800,13 +5807,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx0_index": 64, - "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5820,7 +5827,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170636, + "block_time": 1731176533, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5847,20 +5854,20 @@ "result": [ { "block_index": 221, - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -5868,20 +5875,20 @@ }, { "block_index": 221, - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -5899,12 +5906,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5916,16 +5923,16 @@ }, { "block_index": 229, - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "event": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "tx_index": 103, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170650, + "block_time": 1731176547, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5937,16 +5944,16 @@ }, { "block_index": 225, - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "event": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170636, + "block_time": 1731176533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5958,16 +5965,16 @@ }, { "block_index": 222, - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "event": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170625, + "block_time": 1731176523, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5979,16 +5986,16 @@ }, { "block_index": 221, - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "XCP", "quantity": 100000000, "action": "burn fairmint payment", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6011,14 +6018,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "transfer": false, "callable": false, "call_date": 0, @@ -6033,20 +6040,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "transfer": false, "callable": false, "call_date": 0, @@ -6061,7 +6068,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170619, + "block_time": 1731176515, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6073,10 +6080,10 @@ "result": [ { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6084,7 +6091,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6097,10 +6104,10 @@ }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6108,7 +6115,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6121,10 +6128,10 @@ }, { "tx_index": 80, - "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "tx_hash": "6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c", "block_index": 204, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6132,7 +6139,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731170539, + "block_time": 1731176425, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6145,10 +6152,10 @@ }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6156,7 +6163,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731176420, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6169,10 +6176,10 @@ }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6180,7 +6187,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6199,9 +6206,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6210,7 +6217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6221,7 +6228,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6238,9 +6245,9 @@ }, { "tx_index": 29, - "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "tx_hash": "9cab91f61aff6e4597656af7b4a14ec3b204354aa2bfc73a0a5dbcd24baf79bb", "block_index": 133, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6249,7 +6256,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "origin": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6260,7 +6267,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170232, + "block_time": 1731176115, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6277,9 +6284,9 @@ }, { "tx_index": 30, - "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "tx_hash": "e0f3547fff4c8c32e793e4655e3ad19291ea0523e3f4f2453bd06ff757092f14", "block_index": 141, - "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "source": "mqZAbVvuhp3pLr44GVZo8GTSZmHMphpnQX", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6287,10 +6294,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_hash": "c0a105c0ea4c80b165c4b635bc6fd1ca600b0865cf563d0f1b3b27d4827e0905", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 0, - "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -6299,7 +6306,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170271, + "block_time": 1731176145, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6316,18 +6323,18 @@ }, { "tx_index": 33, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6338,7 +6345,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6360,9 +6367,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6371,7 +6378,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6382,7 +6389,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6402,7 +6409,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -6411,7 +6418,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -6419,7 +6426,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -6428,7 +6435,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -6443,27 +6450,27 @@ { "tx_index": 104, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6478,7 +6485,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6492,27 +6499,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "tx_hash": "e36f4e5741211eed3fb0532f8c01cdd0fd09859bb4663b220f95bb425b054882", "block_index": 138, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6527,7 +6534,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170260, + "block_time": 1731176135, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6541,19 +6548,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6561,7 +6568,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6576,7 +6583,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6590,19 +6597,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6610,7 +6617,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6625,7 +6632,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6648,10 +6655,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "tx_index": 96, "block_index": 221, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -6676,7 +6683,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -6694,22 +6701,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -6730,9 +6737,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6749,7 +6756,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170360, + "block_time": 1731176232, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6777,9 +6784,9 @@ }, { "tx_index": 56, - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6796,7 +6803,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170429, + "block_time": 1731176315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6824,9 +6831,9 @@ }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6843,7 +6850,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170449, + "block_time": 1731176349, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6871,9 +6878,9 @@ }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6890,7 +6897,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731176407, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6918,9 +6925,9 @@ }, { "tx_index": 58, - "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "block_index": 205, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -6937,7 +6944,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731176428, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6970,9 +6977,9 @@ "/v2/orders/": { "result": { "tx_index": 102, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "block_index": 228, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -6989,7 +6996,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170647, + "block_time": 1731176544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7000,7 +7007,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, @@ -7019,13 +7026,13 @@ "/v2/orders//matches": { "result": [ { - "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "tx0_index": 101, - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", + "tx0_address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "tx1_index": 102, - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "tx1_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7039,11 +7046,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731170647, + "block_time": 1731176544, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, @@ -7066,15 +7073,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "btc_amount": 2000, - "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "order_match_id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "status": "valid", "confirmed": true, - "block_time": 1731170429, + "block_time": 1731176315, "btc_amount_normalized": "0.00002000" } ], @@ -7085,9 +7092,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7105,7 +7112,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731170429, + "block_time": 1731176315, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7131,9 +7138,9 @@ }, { "tx_index": 58, - "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "block_index": 205, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7151,7 +7158,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731170544, + "block_time": 1731176428, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7177,9 +7184,9 @@ }, { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7197,7 +7204,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170360, + "block_time": 1731176232, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7223,9 +7230,9 @@ }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7243,7 +7250,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170533, + "block_time": 1731176407, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7269,9 +7276,9 @@ }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7289,7 +7296,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170449, + "block_time": 1731176349, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7320,13 +7327,13 @@ "/v2/orders///matches": { "result": [ { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7343,7 +7350,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170539, + "block_time": 1731176425, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7363,13 +7370,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 56, - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7386,7 +7393,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170429, + "block_time": 1731176315, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7406,13 +7413,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "id": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3_e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", "tx0_index": 53, - "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 54, - "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", + "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7429,7 +7436,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170360, + "block_time": 1731176232, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7449,13 +7456,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx0_index": 64, - "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7472,7 +7479,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170636, + "block_time": 1731176533, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7498,13 +7505,13 @@ "/v2/order_matches": { "result": [ { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7518,7 +7525,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170539, + "block_time": 1731176425, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7538,13 +7545,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 56, - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7558,7 +7565,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731170429, + "block_time": 1731176315, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7578,13 +7585,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "id": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3_e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", "tx0_index": 53, - "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 54, - "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", + "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7598,7 +7605,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170360, + "block_time": 1731176232, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7618,13 +7625,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "tx0_index": 64, - "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7638,7 +7645,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170636, + "block_time": 1731176533, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7658,13 +7665,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "tx0_index": 101, - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", + "tx0_address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "tx1_index": 102, - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "tx1_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7678,11 +7685,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731170647, + "block_time": 1731176544, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, @@ -7723,66 +7730,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_hash": "44b42e7fc7f7aa23010b6baf65980908ad57b95dd9f7d64485140f260a3229ed", "block_index": 112, - "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "066d80c64761f400fbd18d3dd8391224f704cf42dcb1c6d15e54a7f15a33b4bf", + "tx_hash": "5d6b605b445ac7fecd89a3b95bfd4c5546ed7cba9242d0832478ab3315f022e3", "block_index": 112, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "b9395e3e3844138cef8fde9ff888415580c116bd8e9975c4dc35ec2951407cbc", + "tx_hash": "6406a977bbef3a29d24dcba5bcd69f06ec5e12101ff62dc1694c43e4c3ea7dbb", "block_index": 112, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "5de79a3135089187a07fd2bf9c34f179132a515b883664c868d1e4ace39d8db2", + "tx_hash": "4869a671921aae27de72f611a5bea4bb101af56c5cec3b57d1f0275ae40108ba", "block_index": 112, - "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "125f74f34ac583ba6169908c267879d6ad522539f64f6c21948910511133bea8", + "tx_hash": "424ee7d4dbb13622b18223794840a1daa4a0dbeb17b496f138aab32347706fa4", "block_index": 112, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -7794,9 +7801,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7805,7 +7812,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7816,7 +7823,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7833,9 +7840,9 @@ }, { "tx_index": 29, - "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "tx_hash": "9cab91f61aff6e4597656af7b4a14ec3b204354aa2bfc73a0a5dbcd24baf79bb", "block_index": 133, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7844,7 +7851,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "origin": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7855,7 +7862,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170232, + "block_time": 1731176115, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7872,9 +7879,9 @@ }, { "tx_index": 30, - "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "tx_hash": "e0f3547fff4c8c32e793e4655e3ad19291ea0523e3f4f2453bd06ff757092f14", "block_index": 141, - "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "source": "mqZAbVvuhp3pLr44GVZo8GTSZmHMphpnQX", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7882,10 +7889,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_hash": "c0a105c0ea4c80b165c4b635bc6fd1ca600b0865cf563d0f1b3b27d4827e0905", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 0, - "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -7894,7 +7901,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170271, + "block_time": 1731176145, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7911,9 +7918,9 @@ }, { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7922,7 +7929,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7933,11 +7940,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170483, + "block_time": 1731176371, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -7950,18 +7957,18 @@ }, { "tx_index": 33, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7972,7 +7979,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7994,9 +8001,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8005,7 +8012,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8016,7 +8023,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8037,19 +8044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8057,7 +8064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8072,7 +8079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8086,19 +8093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8106,7 +8113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8121,7 +8128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8140,20 +8147,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", "block_index": 146, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731176167, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -8174,20 +8181,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", "block_index": 146, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731176167, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -8210,12 +8217,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "event": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", "tx_index": 42, - "utxo": "973027356bbd74d850e93cfc1e2b096632d95c4d57f7171600fadc09699dfa21:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "281f93f92f5857799800c5fe2e3117ab5d5a9848eb59940f2b3c07463442b1f6:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731176167, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8236,27 +8243,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "block_time": 1731176557 }, "tx_hash": null, "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 891, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 890, @@ -8265,14 +8272,14 @@ "asset": "XCP", "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8283,9 +8290,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 889, @@ -8294,9 +8301,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8306,24 +8313,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8333,9 +8340,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 887, @@ -8347,15 +8354,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "block_time": 1731176557 }, "tx_hash": null, "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } }, "/v2/events/counts": { @@ -8390,16 +8397,16 @@ "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8409,9 +8416,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 886, @@ -8421,12 +8428,12 @@ "asset": "XCP", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8436,9 +8443,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 883, @@ -8448,39 +8455,39 @@ "asset": "MYASSETA", "block_index": 230, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731170636, + "block_time": 1731176533, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8490,36 +8497,36 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731176533 }, { "event_index": 819, "event": "CREDIT", "params": { - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "BURNER", "block_index": 221, "calling_function": "fairmint commission", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "quantity": 20000000, "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, "quantity_normalized": "0.20000000" }, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "block_index": 221, - "block_time": 1731170622 + "block_time": 1731176518 } ], "next_cursor": 818, @@ -8536,27 +8543,27 @@ { "tx_index": 104, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8571,7 +8578,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8585,19 +8592,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_hash": "86285e6a31480551680eb77488bc321d874e7e2bd4c107c24f28413141926c8b", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "dispenser_tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8605,7 +8612,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8620,11 +8627,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170483, + "block_time": 1731176371, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -8634,27 +8641,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "tx_hash": "e36f4e5741211eed3fb0532f8c01cdd0fd09859bb4663b220f95bb425b054882", "block_index": 138, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8669,7 +8676,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170260, + "block_time": 1731176135, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8683,19 +8690,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8703,7 +8710,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8718,7 +8725,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731176112, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8732,19 +8739,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8752,7 +8759,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8767,7 +8774,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731176109, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8786,10 +8793,10 @@ "result": [ { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8797,7 +8804,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8810,10 +8817,10 @@ }, { "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8821,11 +8828,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -8834,10 +8841,10 @@ }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8845,7 +8852,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8858,10 +8865,10 @@ }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8869,11 +8876,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -8882,10 +8889,10 @@ }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8893,11 +8900,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -8912,14 +8919,14 @@ "result": [ { "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "msg_index": 0, "block_index": 229, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "transfer": false, "callable": false, "call_date": 0, @@ -8934,20 +8941,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170650, + "block_time": 1731176547, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "transfer": false, "callable": false, "call_date": 0, @@ -8962,20 +8969,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731170640, + "block_time": 1731176538, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 100, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "msg_index": 0, "block_index": 225, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "transfer": false, "callable": false, "call_date": 0, @@ -8990,20 +8997,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170636, + "block_time": 1731176533, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 98, - "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_hash": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", "msg_index": 1, "block_index": 223, "asset": "EXPANSIVE", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "transfer": false, "callable": false, "call_date": 0, @@ -9018,20 +9025,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731170628, + "block_time": 1731176527, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 98, - "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_hash": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", "msg_index": 0, "block_index": 222, "asset": "EXPANSIVE", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "transfer": false, "callable": false, "call_date": 0, @@ -9046,7 +9053,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170625, + "block_time": 1731176523, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9057,14 +9064,14 @@ "/v2/issuances/": { "result": { "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "msg_index": 0, "block_index": 229, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "transfer": false, "callable": false, "call_date": 0, @@ -9079,7 +9086,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170650, + "block_time": 1731176547, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9088,16 +9095,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731176356, "fee_paid_normalized": "0.00600000" } ], @@ -9108,16 +9115,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731176356, "fee_paid_normalized": "0.00600000" } ], @@ -9128,9 +9135,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", "block_index": 129, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9138,14 +9145,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170218, + "block_time": 1731176102, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "tx_hash": "e67122031fbe6ca54f201857a06cd400bd560b3289b874b314f60c0268d3c979", "block_index": 128, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9153,7 +9160,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170214, + "block_time": 1731176099, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9163,9 +9170,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", "block_index": 129, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9173,17 +9180,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170218, + "block_time": 1731176102, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "tx_index": 103, "block_index": 229, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -9208,7 +9215,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170650, + "block_time": 1731176547, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9217,10 +9224,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "tx_index": 100, "block_index": 226, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -9245,7 +9252,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170640, + "block_time": 1731176538, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9254,10 +9261,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "83dad9e0f67433410f51a09a3eb31ae0a0ef8733cd3fb92e06bc49a06467fe94", + "tx_hash": "7527ee902ece9964369c8c3556dcf9af241ce335018dcf8b9760f3407687083e", "tx_index": 99, "block_index": 224, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": null, "asset_parent": null, "asset_longname": null, @@ -9282,13 +9289,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170632 + "block_time": 1731176530 }, { - "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_hash": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", "tx_index": 98, "block_index": 223, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -9313,7 +9320,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170628, + "block_time": 1731176527, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9322,10 +9329,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "tx_index": 96, "block_index": 221, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -9350,7 +9357,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -9368,22 +9375,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -9392,22 +9399,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "89b149181a13432241a8e3f0f6465ec229b2a09932fcf20080773f9e030cca79", + "tx_hash": "04d142d0643e9e03f35bb4c973be70ea2a613bf4b612dcee169e3d3fa240a2fc", "tx_index": 95, "block_index": 219, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "c30019918840eca693210b073dc91af4dd54ada153b5df1534a8832f110c826f", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "fairminter_tx_hash": "366b3bc9eac646841b87394d9de44b33c8614457a2ef368859ab3abbbcd6c9fc", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731170614, + "block_time": 1731176511, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -9416,22 +9423,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "5fec3930302d55b34a4132ec3b63f1c6ea09aab5a3536e8bbdf8d9fab6116876", + "tx_hash": "6bbb882372629a026808b92b6efafb0b693b2b9a57120ca6b7876041679fe1c4", "tx_index": 91, "block_index": 215, - "source": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", - "fairminter_tx_hash": "e2b84426cfb1ea1576c187edfca5cefa7d67b07e7e49cbbd3748bf5403878247", + "source": "bcrt1qm2mgntz68f63lj9yefaq3keskpwt9la352g6tk", + "fairminter_tx_hash": "dd82ddf40b0d1fbb9787f929b480480290c93be93c95ae953a2dcdc3271b3a7a", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170599, + "block_time": 1731176496, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", + "issuer": "bcrt1qm2mgntz68f63lj9yefaq3keskpwt9la352g6tk", "divisible": true, "locked": false }, @@ -9440,22 +9447,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_hash": "02a7ad5cd4f2057d0ec24af7af821c1e62c968fe2ec1f00505b80530e2b782c5", "tx_index": 46, "block_index": 150, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170305, + "block_time": 1731176184, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -9464,22 +9471,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_hash": "90b6adcd471de4bc8de7de6e1b76ed03e3e948d7fad39e91b6c7373c16da56b6", "tx_index": 45, "block_index": 149, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170302, + "block_time": 1731176180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -9493,22 +9500,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -9525,17 +9532,8 @@ "value": 546, "confirmations": 32, "amount": 5.46e-06, - "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", - "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" - }, - { - "vout": 1, - "height": 227, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + "txid": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8", + "address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm" }, { "vout": 1, @@ -9543,8 +9541,17 @@ "value": 546, "confirmations": 33, "amount": 5.46e-06, - "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", - "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + "txid": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182", + "address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm" + }, + { + "vout": 1, + "height": 227, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", + "address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm" } ], "next_cursor": null, @@ -9553,28 +9560,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "e3ba39e262ceecf19f7f7295c0f92c32556299c11d948843f6da11234899982f" + "tx_hash": "30dc5aefa130bf131447c0cd2b7b7aaf671c48c6e92ee7ee4a1b42f625aa1632" }, { - "tx_hash": "1e50f98538eecc438b03f6b9bc1dae08458e8d47b28130534159d7baade7cc3f" + "tx_hash": "2444a712d41fc5248a4dc5591caecfd6b6788c255070bb91895f375d2cfaf944" }, { - "tx_hash": "2538d489ac3ac90056075a8a6bd4837cc4a7ed6cf91a3758477c9fc0a17eed51" + "tx_hash": "09e4266508371bcf74f9a16827c826495dbcdf581d4c61835dec82f19727b070" }, { - "tx_hash": "719811047c545b70953af18cc2c80250bba101633e6cbe65f3d4e2223122625e" + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976" }, { - "tx_hash": "23a7f701c1df14bf518de33ac90d9eaf44009337cb1a3f2944d62d3d73758c97" + "tx_hash": "921fe92a5ade26fdb9d52de1cfbb4bc68cc3ac2b64efd25b946ae8a11c7ee78a" }, { - "tx_hash": "e9b349735d606e273a170b4dda85d9e3b3fa0f2c531c9f79be5efcf7008179be" + "tx_hash": "9fce5e0119fcf340235ec0027caaf21c7f4a54646f5b04494f9e2cdeb7b807c3" }, { - "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9" + "tx_hash": "fa4113c3140d0af0a640155881b7a3f5142e16f9369281b71d484504675c1fc3" }, { - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec" + "tx_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef" } ], "next_cursor": null, @@ -9582,8 +9589,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 5, - "tx_hash": "479462b26e5f85ac335d4d06ab696ac8669871b195403d270cb0102963a8f89a" + "block_index": 9, + "tx_hash": "da238ef7e2985a08346ede71358629610b849801b91c66526bf0c8271eebfe6d" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9594,7 +9601,7 @@ "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5" + "txid": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82" }, { "vout": 0, @@ -9602,7 +9609,7 @@ "value": 546, "confirmations": 32, "amount": 5.46e-06, - "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa" + "txid": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8" }, { "vout": 1, @@ -9610,17 +9617,17 @@ "value": 546, "confirmations": 33, "amount": 5.46e-06, - "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990" + "txid": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02135319573953ed1c2bf25b1090361ccc0d22a07a4ad7da30f70d20b6122caec1" + "result": "029275eeeaf08440682fdc96a6f24c2ddef147cb8391da8606d024562c09a20c49" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101af9bcc1b71467e4d65843e4562bc08b342b1e137baf2bf93237640feb88efe020100000000ffffffff03e803000000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9800000000000000000c6a0a3f2dfb5f8ca138b91a9187140927010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02473044022072809e2f0ec4bda6c61043ac47256b4a7905b24b0077c5a796d125078c72bf84022029aa325da060c1982f0ceb349f839053ea4961e2ac74c1c3a7b27ac0325802d4012103819efb4d3b85d2bfe5704481a2f7296bea0cdf3a494f280af7d8943de7bad43800000000" + "result": "020000000001010de974fc3864ecd94259300eb059a5e3391cca9fd48f485ae58900a4ef57e09f0100000000ffffffff03e803000000000000160014904e18f762fc9bf9003dee31476e8bc70b13cc3800000000000000000c6a0a6b06857eb51ec88cec33871409270100000016001431337e2f48ce3009bd627f9499c594f65f547f410247304402200f0a4cbf72ac0f79f549f8f66a980f44e27ea86767b2b74df577459c24ff15970220500d6d163bb115f618a601ca138b4d59285ae2c5b70382ca1360f5eba95de477012102c4b5cda3b700288bf99a66fd3edeecbfdc0dd4483b52d4dec5859cdfbc749d7100000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58599 @@ -9693,27 +9700,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105 }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "quantity": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "status": "valid", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105, "asset_info": { "asset_longname": null, @@ -9724,22 +9731,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "asset": "XCP", "block_index": 230, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9749,22 +9756,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "address": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "XCP", "block_index": 230, - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9774,30 +9781,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731170667.9059134, + "block_time": 1731176561.3852592, "btc_amount": 0, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", "destination": "", "fee": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105, - "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "utxos_info": "61905df2e4a72e413bd5a5f1ba8f2d69836e3ca5dcee6c25ee9920343af64bf5:1 b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "asset_info": { "asset_longname": null, @@ -9811,7 +9818,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 } ], "next_cursor": null, @@ -9820,19 +9827,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "asset": "XCP", "block_index": 230, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9842,7 +9849,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 } ], "next_cursor": null, @@ -9851,27 +9858,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105 }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "quantity": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "status": "valid", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105, "asset_info": { "asset_longname": null, @@ -9882,22 +9889,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "asset": "XCP", "block_index": 230, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9907,22 +9914,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "address": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "asset": "XCP", "block_index": 230, - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "quantity": 10000, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9932,30 +9939,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731170667.9059134, + "block_time": 1731176561.3852592, "btc_amount": 0, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", "destination": "", "fee": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", "tx_index": 105, - "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "utxos_info": "61905df2e4a72e413bd5a5f1ba8f2d69836e3ca5dcee6c25ee9920343af64bf5:1 b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "memo": null, "asset_info": { "asset_longname": null, @@ -9969,7 +9976,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731176561.3852592 } ], "next_cursor": null, @@ -9991,15 +9998,15 @@ "event_index": 879, "event": "NEW_BLOCK", "params": { - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", "block_index": 230, - "block_time": 1731170663, + "block_time": 1731176557, "difficulty": 545259519, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592" + "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1" }, "tx_hash": null, "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 871, @@ -10011,17 +10018,17 @@ "event_index": 880, "event": "NEW_TRANSACTION", "params": { - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", + "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", "block_index": 230, - "block_time": 1731170663, + "block_time": 1731176557, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "fee": 0, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10031,9 +10038,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 872, @@ -10047,16 +10054,16 @@ "params": { "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "out_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 579, @@ -10069,15 +10076,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", + "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", + "block_time": 1731176557 }, "tx_hash": null, "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 878, @@ -10090,12 +10097,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 877, @@ -10111,12 +10118,12 @@ "address": null, "asset": "XCP", "block_index": 230, - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 2000000000, "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "block_time": 1731170663, + "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10126,9 +10133,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 882, @@ -10140,16 +10147,16 @@ "event_index": 888, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "asset": "XCP", "block_index": 230, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "quantity": 66, "tx_index": 104, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10159,9 +10166,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 886, @@ -10175,26 +10182,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "memo": null, "quantity": 1000, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "status": "valid", - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", "tx_index": 77, - "block_time": 1731170518, + "block_time": 1731176404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", "block_index": 201, - "block_time": 1731170518 + "block_time": 1731176404 } ], "next_cursor": 515, @@ -10208,15 +10215,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "status": "valid", - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "tx_index": 81, - "block_time": 1731170544, + "block_time": 1731176428, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10226,9 +10233,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", "block_index": 205, - "block_time": 1731170544 + "block_time": 1731176428 } ], "next_cursor": 697, @@ -10251,20 +10258,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", "status": "valid", - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", "tx_index": 65, - "block_time": 1731170466, + "block_time": 1731176356, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", "block_index": 190, - "block_time": 1731170466 + "block_time": 1731176356 } ], "next_cursor": null, @@ -10281,15 +10288,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "status": "valid", - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", "tx_index": 42, - "block_time": 1731170290, + "block_time": 1731176167, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -10303,9 +10310,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", "block_index": 146, - "block_time": 1731170290 + "block_time": 1731176167 } ], "next_cursor": null, @@ -10326,11 +10333,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 229, - "block_time": 1731170650 + "block_time": 1731176547 }, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "block_index": 229, - "block_time": 1731170650 + "block_time": 1731176547 } ], "next_cursor": 848, @@ -10353,22 +10360,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": "valid", "transfer": false, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "tx_index": 103, - "block_time": 1731170650, + "block_time": 1731176547, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "block_index": 229, - "block_time": 1731170650 + "block_time": 1731176547 } ], "next_cursor": 855, @@ -10383,12 +10390,12 @@ "asset": "XCP", "block_index": 221, "quantity": 100000000, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": "valid", "tag": "burn fairmint payment", - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10398,9 +10405,9 @@ }, "quantity_normalized": "1.00000000" }, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "block_index": 221, - "block_time": 1731170622 + "block_time": 1731176518 } ], "next_cursor": 564, @@ -10425,11 +10432,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": "open", - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "tx_index": 102, - "block_time": 1731170647, + "block_time": 1731176544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10440,7 +10447,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, @@ -10453,9 +10460,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "block_index": 228, - "block_time": 1731170647 + "block_time": 1731176544 } ], "next_cursor": 860, @@ -10473,24 +10480,24 @@ "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "match_expire_index": 248, "status": "pending", - "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "tx0_address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "tx0_block_index": 227, "tx0_expiration": 21, - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", + "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", "tx0_index": 101, - "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx1_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "tx1_block_index": 228, "tx1_expiration": 21, - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "tx1_index": 102, - "block_time": 1731170647, + "block_time": 1731176544, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, @@ -10505,9 +10512,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "block_index": 228, - "block_time": 1731170647 + "block_time": 1731176544 } ], "next_cursor": 676, @@ -10524,13 +10531,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", "block_index": 228, - "block_time": 1731170647 + "block_time": 1731176544 } ], "next_cursor": 866, @@ -10543,11 +10550,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f" + "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265" }, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", "block_index": 182, - "block_time": 1731170429 + "block_time": 1731176315 } ], "next_cursor": null, @@ -10559,13 +10566,13 @@ "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "order_match_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", "status": "expired" }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731176533 } ], "next_cursor": 670, @@ -10579,18 +10586,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "order_match_id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", "status": "valid", - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", "tx_index": 57, - "block_time": 1731170429, + "block_time": 1731176315, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", "block_index": 182, - "block_time": 1731170429 + "block_time": 1731176315 } ], "next_cursor": null, @@ -10603,16 +10610,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "offer_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "status": "valid", - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "ed6f1301d3ff4dc65f2a49a54460e0dabfb830d4c8b4e97034fc1e770838bb6d", "tx_index": 63, - "block_time": 1731170449 + "block_time": 1731176349 }, - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "ed6f1301d3ff4dc65f2a49a54460e0dabfb830d4c8b4e97034fc1e770838bb6d", "block_index": 188, - "block_time": 1731170449 + "block_time": 1731176349 } ], "next_cursor": null, @@ -10625,13 +10632,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "block_time": 1731170575 + "order_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_time": 1731176470 }, - "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "tx_hash": "0ce5805af7adfcac6f6bd2dd791389167543337e1673266a8b7feec927b73b60", "block_index": 211, - "block_time": 1731170575 + "block_time": 1731176470 } ], "next_cursor": 690, @@ -10644,14 +10651,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "block_time": 1731170636 + "order_match_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "block_time": 1731176533 }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731176533 } ], "next_cursor": 673, @@ -10670,17 +10677,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "satoshirate": 1, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "status": 0, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "tx_index": 68, - "block_time": 1731170479, + "block_time": 1731176367, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", "divisible": true, "locked": false }, @@ -10689,9 +10696,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", "block_index": 193, - "block_time": 1731170479 + "block_time": 1731176367 } ], "next_cursor": 254, @@ -10706,9 +10713,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10718,9 +10725,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 581, @@ -10734,13 +10741,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "destination": "mqZAbVvuhp3pLr44GVZo8GTSZmHMphpnQX", "dispense_quantity": 10, - "dispenser_tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "dispenser_tx_hash": "e0f3547fff4c8c32e793e4655e3ad19291ea0523e3f4f2453bd06ff757092f14", + "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx_hash": "e0620cf2e69561466b71b3396d485faeacf8eb327a18915abc50e989956e0973", "tx_index": 31, - "block_time": 1731170239, + "block_time": 1731176123, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10750,9 +10757,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "tx_hash": "e0620cf2e69561466b71b3396d485faeacf8eb327a18915abc50e989956e0973", "block_index": 135, - "block_time": 1731170239 + "block_time": 1731176123 } ], "next_cursor": null, @@ -10767,14 +10774,14 @@ "asset": "XCP", "block_index": 230, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10785,9 +10792,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 582, @@ -10802,19 +10809,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", "tx_index": 25, "value": 66600.0, - "block_time": 1731170218, + "block_time": 1731176102, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", "block_index": 129, - "block_time": 1731170218 + "block_time": 1731176102 } ], "next_cursor": 195, @@ -10845,12 +10852,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "start_block": 0, "status": "open", - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "tx_index": 103, - "block_time": 1731170650, + "block_time": 1731176547, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10858,9 +10865,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", "block_index": 229, - "block_time": 1731170650 + "block_time": 1731176547 } ], "next_cursor": 847, @@ -10873,11 +10880,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2" + "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7" }, "tx_hash": null, "block_index": 226, - "block_time": 1731170640 + "block_time": 1731176538 } ], "next_cursor": 834, @@ -10893,17 +10900,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", "paid_quantity": 100000000, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": "valid", - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "tx_index": 97, - "block_time": 1731170622, + "block_time": 1731176518, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", "divisible": true, "locked": true }, @@ -10911,9 +10918,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", "block_index": 221, - "block_time": 1731170622 + "block_time": 1731176518 } ], "next_cursor": 801, @@ -10927,28 +10934,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa:0", + "destination": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "status": "valid", - "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "tx_hash": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8", "tx_index": 75, - "block_time": 1731170511, + "block_time": 1731176396, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "tx_hash": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8", "block_index": 199, - "block_time": 1731170511 + "block_time": 1731176396 } ], "next_cursor": 598, @@ -10962,28 +10969,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "destination": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bd0cc61333f0c591a8faeb275cd4145f6a3b7f6f13450abe8ae7f1615eccb027:0", + "source": "764ba66cb4ae44637eadbbfd043eb791429e308e90f62c3143cb18f5d29db356:0", "status": "valid", - "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "tx_hash": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182", "tx_index": 74, - "block_time": 1731170508, + "block_time": 1731176392, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "tx_hash": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182", "block_index": 198, - "block_time": 1731170508 + "block_time": 1731176392 } ], "next_cursor": 293, @@ -10997,14 +11004,14 @@ "params": { "asset": "XCP", "block_index": 230, - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", "msg_index": 1, "quantity": 2000000000, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", "status": "valid", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "tx_index": 104, - "block_time": 1731170663, + "block_time": 1731176557, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11014,9 +11021,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", "block_index": 230, - "block_time": 1731170663 + "block_time": 1731176557 } ], "next_cursor": 884, @@ -11031,17 +11038,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", "status": "valid", - "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_hash": "44b42e7fc7f7aa23010b6baf65980908ad57b95dd9f7d64485140f260a3229ed", "tx_index": 9, - "block_time": 1731170152, + "block_time": 1731176035, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_hash": "44b42e7fc7f7aa23010b6baf65980908ad57b95dd9f7d64485140f260a3229ed", "block_index": 112, - "block_time": 1731170152 + "block_time": 1731176035 } ], "next_cursor": 50, From 4886ec2f82c6dcd55170e5c957b0a312c06bd33d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 9 Nov 2024 20:44:24 +0000 Subject: [PATCH 104/138] More tests; more fixes; cleaning; add test for asset conservation checking --- apiary.apib | 4786 ++++++++--------- .../counterpartycore/lib/messages/fairmint.py | 4 +- .../lib/messages/fairminter.py | 42 +- .../test/regtest/apidoc/apicache.json | 4312 ++++++++------- .../test/regtest/regtestnode.py | 25 +- .../scenarios/scenario_21_fairminter.py | 202 + .../test/regtest/testscenarios.py | 9 +- 7 files changed, 4781 insertions(+), 4599 deletions(-) diff --git a/apiary.apib b/apiary.apib index f4270f879e..73005a9106 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-09 16:44:40.980816. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-09 20:35:08.806330. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 879, + "event_index": 894, "event": "NEW_BLOCK", "params": { - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_index": 230, - "block_time": 1731170663, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_index": 232, + "block_time": 1731184491, "difficulty": 545259519, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592" + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4" }, "tx_hash": null, - "block_index": 230, - "block_time": 1731170663 + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 871, - "result_count": 130 + "next_cursor": 886, + "result_count": 132 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 880, + "event_index": 895, "event": "NEW_TRANSACTION", "params": { - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_index": 230, - "block_time": 1731170663, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_index": 232, + "block_time": 1731184491, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "fee": 0, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 872, - "result_count": 105 + "next_cursor": 887, + "result_count": 106 } ``` @@ -242,21 +242,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 881, + "event_index": 896, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "out_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": 579, @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null, - "block_index": 230, - "block_time": 1731170663 + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 878, - "result_count": 130 + "next_cursor": 893, + "result_count": 132 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 877, - "result_count": 90 + "next_cursor": 892, + "result_count": 91 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 885, + "event_index": 900, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 230, - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "block_index": 232, + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,13 +343,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 882, - "result_count": 87 + "next_cursor": 897, + "result_count": 89 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,13 +381,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 886, - "result_count": 109 + "next_cursor": 901, + "result_count": 110 } ``` @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "quantity": 1000, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": "valid", - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "tx_index": 77, - "block_time": 1731170518, + "block_time": 1731184339, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_time": 1731170518 + "block_time": 1731184339 } ], "next_cursor": 515, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "status": "valid", - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "tx_index": 81, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_time": 1731170544 + "block_time": 1731184355 } ], "next_cursor": 697, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "status": "valid", - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "tx_index": 65, - "block_time": 1731170466, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "block_time": 1731170466 + "block_time": 1731184276 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": "valid", - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "tx_index": 42, - "block_time": 1731170290, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "block_time": 1731170290 + "block_time": 1731184098 } ], "next_cursor": null, @@ -583,22 +583,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 874, + "event_index": 889, "event": "ASSET_CREATION", "params": { "asset_id": "117132633401", "asset_longname": null, "asset_name": "OPENFAIR", - "block_index": 229, - "block_time": 1731170650 + "block_index": 231, + "block_time": 1731184482 }, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "block_index": 229, - "block_time": 1731170650 + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_time": 1731184482 } ], - "next_cursor": 848, - "result_count": 25 + "next_cursor": 860, + "result_count": 26 } ``` @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 875, + "event_index": 890, "event": "ASSET_ISSUANCE", "params": { "asset": "OPENFAIR", "asset_events": "open_fairminter", "asset_longname": "", - "block_index": 229, + "block_index": 231, "call_date": 0, "call_price": 0, "callable": false, @@ -622,26 +622,26 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "valid", "transfer": false, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "tx_index": 103, - "block_time": 1731170650, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "block_index": 229, - "block_time": 1731170650 + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_time": 1731184482 } ], - "next_cursor": 855, - "result_count": 48 + "next_cursor": 869, + "result_count": 50 } ``` @@ -651,34 +651,34 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 817, + "event_index": 870, "event": "ASSET_DESTRUCTION", "params": { - "asset": "XCP", - "block_index": 221, - "quantity": 100000000, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "asset": "PREMINT", + "block_index": 228, + "quantity": 50, + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "status": "valid", - "tag": "burn fairmint payment", - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "tx_index": 97, - "block_time": 1731170622, + "tag": "soft cap not reached", + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_index": 101, + "block_time": 1731184472, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, - "locked": true + "locked": false }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.00000050" }, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "block_index": 221, - "block_time": 1731170622 + "tx_hash": null, + "block_index": 228, + "block_time": 1731184472 } ], - "next_cursor": 564, - "result_count": 3 + "next_cursor": 817, + "result_count": 4 } ``` @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 865, + "event_index": 880, "event": "OPEN_ORDER", "params": { - "block_index": 228, + "block_index": 230, "expiration": 21, - "expire_index": 249, + "expire_index": 251, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "open", - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx_index": 102, - "block_time": 1731170647, + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_index": 103, + "block_time": 1731184478, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -721,7 +721,7 @@ Here is a list of events classified by theme and for each an example response: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -734,12 +734,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": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "block_index": 228, - "block_time": 1731170647 + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_time": 1731184478 } ], - "next_cursor": 860, + "next_cursor": 875, "result_count": 9 } ``` @@ -750,33 +750,33 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 868, + "event_index": 883, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 228, + "block_index": 230, "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "match_expire_index": 248, + "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "match_expire_index": 250, "status": "pending", - "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", - "tx0_block_index": 227, + "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_block_index": 229, "tx0_expiration": 21, - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx0_index": 101, - "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx1_block_index": 228, + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_index": 102, + "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_block_index": 230, "tx1_expiration": 21, - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx1_index": 102, - "block_time": 1731170647, + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_index": 103, + "block_time": 1731184478, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "block_index": 228, - "block_time": 1731170647 + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_time": 1731184478 } ], "next_cursor": 676, @@ -807,7 +807,7 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 867, + "event_index": 882, "event": "ORDER_UPDATE", "params": { "fee_provided_remaining": 10000, @@ -815,16 +815,16 @@ Here is a list of events classified by theme and for each an example response: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "block_index": 228, - "block_time": 1731170647 + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_time": 1731184478 } ], - "next_cursor": 866, + "next_cursor": 881, "result_count": 19 } ``` @@ -839,11 +839,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f" + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83" }, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "block_time": 1731170429 + "block_time": 1731184235 } ], "next_cursor": null, @@ -860,13 +860,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "status": "expired" }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731184461 } ], "next_cursor": 670, @@ -885,18 +885,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "status": "valid", - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "tx_index": 57, - "block_time": 1731170429, + "block_time": 1731184235, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "block_time": 1731170429 + "block_time": 1731184235 } ], "next_cursor": null, @@ -914,16 +914,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": "valid", - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "tx_index": 63, - "block_time": 1731170449 + "block_time": 1731184268 }, - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "block_index": 188, - "block_time": 1731170449 + "block_time": 1731184268 } ], "next_cursor": null, @@ -941,13 +941,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "block_time": 1731170575 + "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_time": 1731184399 }, - "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", "block_index": 211, - "block_time": 1731170575 + "block_time": 1731184399 } ], "next_cursor": 690, @@ -965,14 +965,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "block_time": 1731170636 + "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "block_time": 1731184461 }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731184461 } ], "next_cursor": 673, @@ -998,17 +998,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "satoshirate": 1, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": 0, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "tx_index": 68, - "block_time": 1731170479, + "block_time": 1731184286, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1017,9 +1017,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": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 193, - "block_time": 1731170479 + "block_time": 1731184286 } ], "next_cursor": 254, @@ -1033,15 +1033,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1051,9 +1051,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": 581, @@ -1072,13 +1072,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "destination": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", "dispense_quantity": 10, - "dispenser_tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "dispenser_tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", "tx_index": 31, - "block_time": 1731170239, + "block_time": 1731184035, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1088,9 +1088,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "373e22ac53e8bcf1b455c9a0bb2d876c911497cdc5537691029ae6e7f82b7a75", + "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", "block_index": 135, - "block_time": 1731170239 + "block_time": 1731184035 } ], "next_cursor": null, @@ -1104,20 +1104,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1128,9 +1128,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": 582, @@ -1152,19 +1152,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "tx_index": 25, "value": 66600.0, - "block_time": 1731170218, + "block_time": 1731184014, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "block_time": 1731170218 + "block_time": 1731184014 } ], "next_cursor": 195, @@ -1180,13 +1180,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 873, + "event_index": 888, "event": "NEW_FAIRMINTER", "params": { "asset": "OPENFAIR", "asset_longname": "", "asset_parent": "", - "block_index": 229, + "block_index": 231, "burn_payment": false, "description": "", "divisible": true, @@ -1202,12 +1202,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "start_block": 0, "status": "open", - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "tx_index": 103, - "block_time": 1731170650, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_time": 1731184482, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1215,13 +1215,13 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "block_index": 229, - "block_time": 1731170650 + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_time": 1731184482 } ], - "next_cursor": 847, - "result_count": 17 + "next_cursor": 859, + "result_count": 18 } ``` @@ -1231,19 +1231,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 854, + "event_index": 868, "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2" + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60" }, "tx_hash": null, - "block_index": 226, - "block_time": 1731170640 + "block_index": 228, + "block_time": 1731184472 } ], - "next_cursor": 834, - "result_count": 7 + "next_cursor": 854, + "result_count": 8 } ``` @@ -1260,17 +1260,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "paid_quantity": 100000000, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "valid", - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -1278,9 +1278,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "block_index": 221, - "block_time": 1731170622 + "block_time": 1731184447 } ], "next_cursor": 801, @@ -1301,28 +1301,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa:0", + "destination": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "status": "valid", - "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", "tx_index": 75, - "block_time": 1731170511, + "block_time": 1731184320, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", "block_index": 199, - "block_time": 1731170511 + "block_time": 1731184320 } ], "next_cursor": 598, @@ -1341,28 +1341,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bd0cc61333f0c591a8faeb275cd4145f6a3b7f6f13450abe8ae7f1615eccb027:0", + "source": "1e7a09d1d3861bc0e2a1943e7a07a1d2d126b0545a3e6e70c9bd6da05f26adfb:0", "status": "valid", - "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", "tx_index": 74, - "block_time": 1731170508, + "block_time": 1731184316, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", "block_index": 198, - "block_time": 1731170508 + "block_time": 1731184316 } ], "next_cursor": 293, @@ -1376,19 +1376,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 887, + "event_index": 902, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 230, - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "block_index": 232, + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "msg_index": 1, "quantity": 2000000000, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", "status": "valid", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1398,12 +1398,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 884, + "next_cursor": 899, "result_count": 11 } ``` @@ -1422,17 +1422,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "status": "valid", - "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", "tx_index": 9, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", "block_index": 112, - "block_time": 1731170152 + "block_time": 1731183938 } ], "next_cursor": 50, @@ -1471,7 +1471,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `230` (str, optional) - The index of the most recent block to return + + cursor: `232` (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` @@ -1488,68 +1488,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", "difficulty": 545259519, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, "confirmed": true }, { - "block_index": 229, - "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", - "block_time": 1731170650, - "previous_block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", + "block_index": 231, + "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_time": 1731184482, + "previous_block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", "difficulty": 545259519, - "ledger_hash": "32c5289ae300409d32353a02ab854732618437b376437ebcf7d91c70b91bd3d1", - "txlist_hash": "23d786f098b22a10781ba3ab8c728fd8dab73e55d938cf07700d8de478760ffc", - "messages_hash": "c0a95fee33e382a7ba4396f55d9ccc9f3e098f709c2484483056cbff90689a96", + "ledger_hash": "11c246ed523078cd7e8965a824d0119efdf29a8804bd33d33ca62c2403a0b882", + "txlist_hash": "3fbc589ba1d4b539ac24986e9d9bff9df88e645a9c769cd1e29d75344774cdbd", + "messages_hash": "36f6a025cfc80555529f8caec4676afdb16cd570da5a581240de2f0a99bf9ab0", "transaction_count": 1, "confirmed": true }, { - "block_index": 228, - "block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", - "block_time": 1731170647, - "previous_block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", + "block_index": 230, + "block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", + "block_time": 1731184478, + "previous_block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", "difficulty": 545259519, - "ledger_hash": "5a67140674a9f6c9a2f402026d5aefac8ff787e6c233434b7cebb02eec73fc07", - "txlist_hash": "ff3364ca977db1535cd7fdbcafd65d4562c34d6b752b5e77453d11093e249c1b", - "messages_hash": "e2f8cbdf4f0a902472c6afefe743027f74a97d6083200432030dc9586f820496", + "ledger_hash": "33fdcc74ca292b56bd8e71f64e3369e2b792b9e972243b85ac0af8e0bf054a70", + "txlist_hash": "365ae250857a91e801ee6966be0b44f668ad99d044717e3869fd3831e38178fa", + "messages_hash": "1d5c798b9f942996c52e60a9a6e43d95591b20fed7580c248773db61984177c5", "transaction_count": 1, "confirmed": true }, { - "block_index": 227, - "block_hash": "1e2e6b61e079cef77a5370b021c52f12b28161a3d39a880042bfa69c5c8c0fed", - "block_time": 1731170643, - "previous_block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", + "block_index": 229, + "block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", + "block_time": 1731184475, + "previous_block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", "difficulty": 545259519, - "ledger_hash": "3d9b41f0993456731de33261bcd12748cbf82067b9087429f5b9e3d7c89818fc", - "txlist_hash": "32a8bc1b0dfff09a5a6192118c13fd973e95a5232871daa8226aafb3110a2000", - "messages_hash": "335496001ebd01792ec65dfd35289334e3e529c2a91a5f80f0a045eaf5760d53", + "ledger_hash": "15ec1959f8dc3168ab10b11d8a2deec8823aa3351391fa98241fad3d7a34efc8", + "txlist_hash": "77f626356011bb7d0ccfe8c2dc08cad94edec18db47b3386f6b85fbef123fa55", + "messages_hash": "903edeb4afd0c90a0008385340fa0e35c9cc51bd2688780d7422a75d73cc30e4", "transaction_count": 1, "confirmed": true }, { - "block_index": 226, - "block_hash": "5f03689b7d0c7e9ff1506825b4fd81c01c6a9cf37ca9d7268d56e837db37a979", - "block_time": 1731170640, - "previous_block_hash": "677bf845c77de7b1c5b35eb12bf407e9745cdc6f9880fdecd9e825401143514a", + "block_index": 228, + "block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", + "block_time": 1731184472, + "previous_block_hash": "3ede6bbb2adee6e46b5a265dee848ffec70661bcd0efdd955bf516519eac20be", "difficulty": 545259519, - "ledger_hash": "991680aee66b9ae5f47476ee9ea87809c07fd990cc92adc8003fed80a81fce49", - "txlist_hash": "385f901119a108d6d6fff88f760b0e42575bcf3647b8d3f5fc744d115c6b90f3", - "messages_hash": "05699d13631a94dcbe06a47dec6b64bd0115ab9e9bcc0daa787d6c6547d7bbd6", + "ledger_hash": "aa118d35ee0a7751beb9ef7f012cb0d66a39cc29ce75712ebb989d622fff1546", + "txlist_hash": "b522056a36d1ca482065c99a9f13e8268804089c904a901d45aae0f8801f2e2a", + "messages_hash": "ca2e57717c1dbbb76a793c25e740cd6d09f30a7777a9bd845087762013636a8d", "transaction_count": 0, "confirmed": true } ], - "next_cursor": 225, - "result_count": 130 + "next_cursor": 227, + "result_count": 132 } ``` @@ -1568,7 +1568,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (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. @@ -1579,14 +1579,14 @@ Return the information of a block ``` { "result": { - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", "difficulty": 545259519, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, "confirmed": true } @@ -1598,7 +1598,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865` (str, required) - The index of the block to return + + block_hash: `2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd` (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. @@ -1609,14 +1609,14 @@ Return the information of a block ``` { "result": { - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "previous_block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", "difficulty": 545259519, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, "confirmed": true } @@ -1628,8 +1628,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return - + cursor: `104` (str, optional) - The last transaction index to return + + block_index: `232` (int, required) - The index of the block to return + + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1646,18 +1646,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1679,10 +1679,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1699,43 +1699,43 @@ Returns the events of a block { "result": [ { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null }, { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1746,18 +1746,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1767,22 +1767,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1792,10 +1792,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" } ], - "next_cursor": 887, + "next_cursor": 902, "result_count": 14 } ``` @@ -1805,7 +1805,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (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 @@ -1853,7 +1853,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (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` @@ -1872,19 +1872,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1894,22 +1894,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1919,32 +1919,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" } ], "next_cursor": null, @@ -1957,7 +1957,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2006,17 +2006,17 @@ Returns the credits of a block { "result": [ { - "block_index": 230, - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "block_index": 232, + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2027,17 +2027,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 230, + "block_index": 232, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2048,21 +2048,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 230, + "block_index": 232, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2079,7 +2079,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2117,17 +2117,17 @@ Returns the debits of a block { "result": [ { - "block_index": 230, + "block_index": 232, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2138,21 +2138,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 230, + "block_index": 232, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2188,10 +2188,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "object_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "block_index": 211, "confirmed": true, - "block_time": 1731170575 + "block_time": 1731184399 } ], "next_cursor": null, @@ -2223,13 +2223,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "status": "valid", "confirmed": true, - "block_time": 1731170449 + "block_time": 1731184268 } ], "next_cursor": null, @@ -2242,7 +2242,7 @@ Returns the cancels of a block Returns the destructions of a block + Parameters - + block_index: `221` (int, required) - The index of the block to return + + block_index: `228` (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 @@ -2260,24 +2260,24 @@ Returns the destructions of a block { "result": [ { - "tx_index": 97, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "asset": "XCP", - "quantity": 100000000, - "tag": "burn fairmint payment", + "tx_index": 101, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "block_index": 228, + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "asset": "PREMINT", + "quantity": 50, + "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184472, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, - "locked": true + "locked": false }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.00000050" } ], "next_cursor": null, @@ -2290,7 +2290,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `229` (int, required) - The index of the block to return + + block_index: `231` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2321,15 +2321,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", "msg_index": 0, - "block_index": 229, + "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "transfer": false, "callable": false, "call_date": 0, @@ -2344,7 +2344,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170650, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2359,7 +2359,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (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 @@ -2377,11 +2377,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2389,7 +2389,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2401,11 +2401,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2413,11 +2413,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2435,7 +2435,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `230` (int, required) - The index of the block to return + + block_index: `232` (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 @@ -2453,29 +2453,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2490,7 +2490,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2531,16 +2531,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -2554,7 +2554,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `229` (int, required) - The block index of the fairminter to return + + block_index: `231` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2579,10 +2579,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "tx_index": 103, - "block_index": 229, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_index": 231, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -2607,7 +2607,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170650, + "block_time": 1731184482, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2644,22 +2644,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -2700,17 +2700,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "block_hash": "20c3ad15e2a8865e2b02130bce34cdea8a02e9ad183c626d451918ecb7f5c92d", - "block_time": 1731170218, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_hash": "61f3017eaec7edc68c202ca65b851ad153134e3d18edf1adb7f0b09d31ffca96", + "block_time": 1731184014, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc:1 2 ", + "utxos_info": " aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2735,25 +2735,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "block_hash": "44c475b3713cc4de360b19432c807585bcee061a70090a914cac9ee6933b316a", - "block_time": 1731170429, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "3134950ef76da87375e99ad71c40ba9964ea3d3a2b1e3ea4bdfe361c1162a705", + "block_time": 1731184235, + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "btc_amount": 2000, "fee": 10000, - "data": "0b12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f9281cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "data": "0bace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f22433404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "supported": true, - "utxos_info": " 1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1:0 3 1", + "utxos_info": " a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "status": "valid" } }, @@ -2768,23 +2768,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "block_index": 188, - "block_hash": "2ec047b0fd009ecc649faae7f9e14bd85864bdf68a2d7735e5a6af327a4075cf", - "block_time": 1731170449, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "41d3a5fdf8dcce77e5fdf1b605d428555b1969f3eb7165e4d65235f066b91a89", + "block_time": 1731184268, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "465e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "data": "460a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "supported": true, - "utxos_info": " f39398fcb5da38a8cd3bd79a19fc7000c8ceb947acf52e01c7b7321fbe702d20:1 2 ", + "utxos_info": " 9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "status": "valid" } }, @@ -2797,38 +2797,7 @@ Here is sample API output for each of these transactions: ``` { - "result": { - "tx_index": 97, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "block_index": 221, - "block_hash": "56dbc4280fd6d40003fcc8b3ee2e3390f3e322a1b276c23ece0e056fc848dbeb", - "block_time": 1731170622, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "5b4255524e45527c313030303030303030", - "supported": true, - "utxos_info": " 1 ", - "confirmed": true, - "unpacked_data": { - "message_type": "fairmint", - "message_type_id": 91, - "message_data": { - "asset": "BURNER", - "quantity": 100000000, - "asset_info": { - "asset_longname": "", - "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "divisible": true, - "locked": true - }, - "quantity_normalized": "1.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } + "error": "Not found" } ``` @@ -2838,17 +2807,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 193, - "block_hash": "56c1d87bcfdd97eb2dba765d3361ef15de96af711da1ad831d4e0923d23b3de5", - "block_time": 1731170479, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "5b3366fe7b95aa0e86fe3b4b08c1fe46718c09b32bafa885c3d77e5f3177e65f", + "block_time": 1731184286, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1:1 2 ", + "utxos_info": " 71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2865,7 +2834,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2883,18 +2852,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2914,17 +2883,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "block_hash": "1096cab37349821d534a6e833449d019f7111989180bcea20b02a2eaa7c67639", - "block_time": 1731170290, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "1d6d8268317cc9b5bc7426132ac3554c97dfdb7b7c4e96d287bbc2b19cbfb261", + "block_time": 1731184098, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd:1 2 ", + "utxos_info": " fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2937,7 +2906,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2961,18 +2930,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "block_index": 229, - "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", - "block_time": 1731170650, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_time": 1731184482, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b:1 2 ", + "utxos_info": " 84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -3013,18 +2982,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 102, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "block_index": 228, - "block_hash": "0cc2414c98b009d2629694b77a014797f0bc82783b1f0e1efb229190c5f90cd3", - "block_time": 1731170647, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 103, + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", + "block_time": 1731184478, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf:1 2 ", + "utxos_info": " 839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3047,7 +3016,7 @@ Here is sample API output for each of these transactions: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -3067,17 +3036,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", - "block_time": 1731170518, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", + "block_time": 1731184339, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "supported": true, - "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3085,12 +3054,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3108,17 +3077,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_hash": "0875bcd1d65735f4c430150bf636f213c96b402d65725c27d597adedfb2f7128", - "block_time": 1731170544, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "block_hash": "7cb69028b1a5d53ee798c7800f6d84796d833751ddecbd7cdffae070149851b6", + "block_time": 1731184355, + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2:0 4 ", + "utxos_info": " adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3126,14 +3095,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3141,7 +3110,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3167,23 +3136,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "block_hash": "7071a3803aa9b7e876bc8f10d398d7b13a0d4dbb874a14358afcb823bff6973a", - "block_time": 1731170466, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "block_hash": "71836830bf09c311d2a49df0a6587770c5567e277e4e5309acd80fe240c5f4ae", + "block_time": 1731184276, + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ff54853ee2276b9aab2abefe1f5b88979b11ba53017377656570206d7920617373657473", + "data": "048096548f3528bf80e16d1280561f950636bb3078d9017377656570206d7920617373657473", "supported": true, - "utxos_info": " 99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec:1 2 ", + "utxos_info": " 37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3168,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", + "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", "block_index": 199, - "block_hash": "6ae23632b87c9a15421d1daa0919ce058dc585bebb723a5586045939c1575299", - "block_time": 1731170511, - "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "block_hash": "66fc7cb0e2a0d3c84b68a44513f35ff5c9df00cf74dfdaef354a8025fe6a05c6", + "block_time": 1731184320, + "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "btc_amount": 546, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa:0 3 1", + "utxos_info": " d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3221,7 +3190,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -3239,17 +3208,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", + "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", "block_index": 198, - "block_hash": "2a2570ef2e4d8459191f51e7cf91b784ce991c3e18902d5c135bd9eedb07c497", - "block_time": 1731170508, - "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "block_hash": "1ec734bca73a79f03b2c812f11cf3868b3c6324733057074ef88db7ac486f469", + "block_time": 1731184316, + "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "bd0cc61333f0c591a8faeb275cd4145f6a3b7f6f13450abe8ae7f1615eccb027:0 cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990:1 2 ", + "utxos_info": "1e7a09d1d3861bc0e2a1943e7a07a1d2d126b0545a3e6e70c9bd6da05f26adfb:0 02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3268,7 +3237,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `104` (str, optional) - The index of the most recent transactions to return + + cursor: `105` (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` @@ -3285,18 +3254,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3308,18 +3277,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "block_index": 229, - "block_hash": "5c72080a6b22f67fe0afd022654f041de1c3de2cbde610155a3fb70b80fa6592", - "block_time": 1731170650, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_time": 1731184482, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b:1 2 ", + "utxos_info": " 84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -3353,8 +3322,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 102, - "result_count": 105 + "next_cursor": 103, + "result_count": 106 } ``` @@ -3363,7 +3332,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101e148e13a70831719a19e7c485ef19a93f9bda09975af28469eb7b2477bb641170200000000ffffffff03a00f0000000000001600144e4bc3d832d60b7da913935414c5286ed1499d4200000000000000000c6a0a812fe4983caf30a4cf0c10790827010000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9a0247304402206515b9e8cfc343744b440cfd68798631bf751a3b5d71da0eb5c9e6bd7b4ef43c02201a6feebd2ba1ab29d785a071e9139ca468c342db565da9edcba733092f589a17012102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001012e505dc63ab82a07e0134e27ee3e181ad2fa0c76fca87c1399c81e925af58b900000000000ffffffff0200000000000000002e6a2cbe28aca0dafb17ce1f352590c02cf3a41b87ddd104da458fa211f15fb259be15ef10631daeefe49bc63a67ecf0ca052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0247304402201efe949f5a57603f18b8f3364124342f4d944bf586d6c123567cb68e7282681c022074a79d6208049aceb10e3b4b95572f41c362f867a97c85ede1573777b9529ead012103c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d9400000000` (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. @@ -3376,54 +3345,62 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "e148e13a70831719a19e7c485ef19a93f9bda09975af28469eb7b2477bb64117", - "n": 2, + "hash": "2e505dc63ab82a07e0134e27ee3e181ad2fa0c76fca87c1399c81e925af58b90", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 4000, - "script_pub_key": "00144e4bc3d832d60b7da913935414c5286ed1499d42" - }, { "value": 0, - "script_pub_key": "6a0a812fe4983caf30a4cf0c" + "script_pub_key": "6a2cbe28aca0dafb17ce1f352590c02cf3a41b87ddd104da458fa211f15fb259be15ef10631daeefe49bc63a67ec" }, { - "value": 4949834000, - "script_pub_key": "00144758f71d04423d2fbee14cb3ef2cfce5166e4c9a" + "value": 4999990000, + "script_pub_key": "001479eb4f94974a9b1861dd9e7d28a893892d6e30ed" } ], "vtxinwit": [ - "304402206515b9e8cfc343744b440cfd68798631bf751a3b5d71da0eb5c9e6bd7b4ef43c02201a6feebd2ba1ab29d785a071e9139ca468c342db565da9edcba733092f589a1701", - "02b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df252" + "304402201efe949f5a57603f18b8f3364124342f4d944bf586d6c123567cb68e7282681c022074a79d6208049aceb10e3b4b95572f41c362f867a97c85ede1573777b9529ead01", + "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" ], "lock_time": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", - "tx_id": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d" + "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", + "tx_id": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4" }, "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, + "message_type": "issuance", + "message_type_id": 22, "message_data": { - "data": "00" + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" } }, - "btc_amount_normalized": "0.00004000" + "btc_amount_normalized": "0.00000000" } } ``` @@ -3433,7 +3410,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a` (str, required) - Transaction hash + + tx_hash: `e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2` (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. @@ -3444,18 +3421,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "12f012dc7a950f11fd70ef9e00310c5c2814e462b87ab9babd103777af031bc4", + "hash": "88a4f9b6979aaa04d89bb5045fcc3e503b4ee53a928cb8d18ff84aa25913b7bb", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3465,20 +3442,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ea996c4de30bb2373c6ac1c2eb8e8e56f90b5cbdc35cf5b567e6ae0f360f5fe8ea9812ac7e05cbb274cc107587ed1" + "script_pub_key": "6a2e8dfc30a1336d8a0b0589e56c79393ca3e528fe19c786b28f17a4a13023d3a0a6b94ff71b237f9be8de6c4da1cc4e" }, { "value": 4949930546, - "script_pub_key": "0014ff54853ee2276b9aab2abefe1f5b88979b11ba53" + "script_pub_key": "001496548f3528bf80e16d1280561f950636bb3078d9" } ], "vtxinwit": [ - "3044022020e11abc63eebaf69f7d797d6cc2dcffc37d4bdd11f9c61a0cf43620a463155702206f7e110fbbea233620107ca48b75af07f415e53b475bc141e4062eb036de8a1b01", - "03c99dce59b1923a0d4ff2a9129768ca42f7289d48bfb4a553469453b9d7f0cc62" + "304402202494c4d20fcab8e5a787c4baccf0781f09e202d2b1069fa8bd4ae505cb42042b0220578c6e05c8202a060c0c3e7d8d949a7d1d20ad21ce55f3886e97491bd5bbbeb001", + "02d6b428bff40e29aa065eb0bedfdc0f23953ba2300678c8811de551c15c226f8f" ], "lock_time": 0, - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_id": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a" + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_id": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3486,7 +3463,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -3535,7 +3512,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `104` (int, required) - The index of the transaction + + tx_index: `105` (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. @@ -3546,18 +3523,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3576,7 +3553,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction + + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (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. @@ -3587,18 +3564,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_hash": "738ac8309a15018acc126fa9c678fe5a03dd4b707a1244e660e0ea3003cd4865", - "block_time": 1731170663, - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", - "destination": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1 4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3617,7 +3594,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `104` (int, required) - The index of the transaction to return + + tx_index: `105` (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 @@ -3637,32 +3614,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3673,20 +3650,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3696,24 +3673,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3723,24 +3700,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 887, + "event_index": 902, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 230, - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "block_index": 232, + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "msg_index": 1, "quantity": 2000000000, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", "status": "valid", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3750,12 +3727,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 886, + "next_cursor": 901, "result_count": 12 } ``` @@ -3765,10 +3742,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction to return + + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3785,32 +3762,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3821,20 +3798,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3844,24 +3821,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3871,24 +3848,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 887, + "event_index": 902, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 230, - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "block_index": 232, + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "msg_index": 1, "quantity": 2000000000, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", "status": "valid", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3898,12 +3875,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 886, + "next_cursor": 901, "result_count": 12 } ``` @@ -3913,7 +3890,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction to return + + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (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 @@ -3931,11 +3908,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3943,7 +3920,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3955,11 +3932,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3967,11 +3944,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3989,7 +3966,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction to return + + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (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 @@ -4007,29 +3984,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4044,7 +4021,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4066,9 +4043,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `104` (int, required) - The index of the transaction to return + + tx_index: `105` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4085,19 +4062,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4107,24 +4084,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4134,36 +4111,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": null, @@ -4176,9 +4153,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The hash of the transaction to return + + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4195,19 +4172,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4217,24 +4194,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4244,36 +4221,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": null, @@ -4288,7 +4265,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (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 @@ -4312,7 +4289,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4322,7 +4299,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4333,7 +4310,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4343,7 +4320,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4354,7 +4331,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4364,7 +4341,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4375,7 +4352,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4385,7 +4362,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4396,7 +4373,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4406,7 +4383,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4423,8 +4400,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - Comma separated list of addresses to return - + cursor: `104` (str, optional) - The last transaction index to return + + addresses: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - Comma separated list of addresses to return + + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4442,17 +4419,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_hash": "0875bcd1d65735f4c430150bf636f213c96b402d65725c27d597adedfb2f7128", - "block_time": 1731170544, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "block_hash": "7cb69028b1a5d53ee798c7800f6d84796d833751ddecbd7cdffae070149851b6", + "block_time": 1731184355, + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2:0 4 ", + "utxos_info": " adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4437,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4475,7 +4452,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4471,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", "block_index": 204, - "block_hash": "05042a0c11331c5d8dafd5e3027de505d8dbf7f971f39e4f64d1a3f24069aa89", - "block_time": 1731170539, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "block_hash": "3f4feca9e0eb15fc2f0c0bdf2f1ebf3bc073809798605bf05451a8e233d121d7", + "block_time": 1731184351, + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804e4bc3d832d60b7da913935414c5286ed1499d4280fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba53c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989:0 4 ", + "utxos_info": " 035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4489,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4527,7 +4504,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4523,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", - "block_time": 1731170536, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", + "block_time": 1731184347, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", + "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4541,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4579,7 +4556,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4575,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", - "block_time": 1731170533, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", + "block_time": 1731184342, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", + "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4593,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4631,7 +4608,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4650,17 +4627,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", - "block_time": 1731170518, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", + "block_time": 1731184339, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "supported": true, - "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4668,12 +4645,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4693,10 +4670,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4717,29 +4694,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "block_time": 1731170636 + "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "block_time": 1731184461 }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731184461 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731170636, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4749,37 +4726,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731170636 + "block_time": 1731184461 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "block_time": 1731170575 + "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_time": 1731184399 }, - "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", "block_index": 211, - "block_time": 1731170575 + "block_time": 1731184399 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731170575, + "block_time": 1731184399, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4789,9 +4766,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "856a3f4dd3f8655ca25d21bf895c5d5dae508202e411ce569d10736d4480a90c", + "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", "block_index": 211, - "block_time": 1731170575 + "block_time": 1731184399 }, { "event_index": 698, @@ -4799,15 +4776,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "status": "valid", - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "tx_index": 81, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4817,9 +4794,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_time": 1731170544 + "block_time": 1731184355 } ], "next_cursor": 698, @@ -4832,7 +4809,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs,bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt,bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c` (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 @@ -4848,18 +4825,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "quantity": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "status": "valid", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105, + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4869,22 +4846,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4894,22 +4871,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", - "block_index": 230, - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "block_index": 232, + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4919,30 +4896,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731170667.9059134, + "block_time": 1731184495.3943753, "btc_amount": 0, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "destination": "", "fee": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105, - "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, + "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -4956,7 +4933,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -4969,7 +4946,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -4989,7 +4966,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4997,14 +4974,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5012,14 +4989,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5027,14 +5004,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5049,7 +5026,7 @@ Returns the balances of an address "quantity_normalized": "825.99966000" }, { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5057,7 +5034,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5074,7 +5051,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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` @@ -5087,7 +5064,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5112,7 +5089,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5162,16 +5139,16 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170636, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5183,16 +5160,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "event": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5204,16 +5181,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "event": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170539, + "block_time": 1731184351, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5225,16 +5202,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170539, + "block_time": 1731184351, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5246,16 +5223,16 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5276,7 +5253,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5315,16 +5292,16 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5336,20 +5313,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5357,16 +5334,16 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5378,20 +5355,20 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5399,20 +5376,20 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "event": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170518, + "block_time": 1731184339, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5429,7 +5406,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address of the feed + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5464,7 +5441,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -5483,9 +5460,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", "block_index": 128, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5493,7 +5470,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170214, + "block_time": 1731184010, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5507,7 +5484,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -5525,15 +5502,15 @@ Returns the burns of an address { "result": [ { - "tx_index": 4, - "tx_hash": "1bd3739c207a8b8c18ebd0916916fdc4c313fc4def9f40c126a7abbd2d94f096", + "tx_index": 7, + "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", "block_index": 112, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5548,7 +5525,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -5567,10 +5544,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5578,7 +5555,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5591,10 +5568,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5602,11 +5579,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5615,10 +5592,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5626,11 +5603,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5639,10 +5616,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5650,7 +5627,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5663,10 +5640,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5674,11 +5651,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5696,7 +5673,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu` (str, required) - The address to return + + address: `bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8` (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 @@ -5715,10 +5692,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "033aa589f258248ddced4d4a5d793c4c8a44de6ebb135edd815fc3991500252c", + "tx_hash": "cfab684ec8edd380be6c9db2ca32fc6dbe63b99b299031523dc692ab1206395f", "block_index": 142, - "source": "8b2027b4c4d61b834fee8bae342105a458b540c2dc260624b8245acf939c8140:0", - "destination": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "source": "7dc2e6130fd69aba3e5d5ad0d0dad43d1b6432f92a1ebeda31dca29605af0b5e:0", + "destination": "bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5726,11 +5703,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170276, + "block_time": 1731184082, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5748,7 +5725,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5776,7 +5753,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu` (str, required) - The address to return + + address: `bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5804,7 +5781,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5833,9 +5810,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5844,7 +5821,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5855,7 +5832,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5872,9 +5849,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5883,7 +5860,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5894,11 +5871,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170483, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -5920,7 +5897,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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` @@ -5933,9 +5910,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5944,7 +5921,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5955,7 +5932,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5978,7 +5955,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -5998,19 +5975,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6018,7 +5995,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6033,11 +6010,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170483, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -6047,19 +6024,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6067,7 +6044,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6082,7 +6059,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6096,19 +6073,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6116,7 +6093,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6131,7 +6108,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6153,7 +6130,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address to return + + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (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 @@ -6173,19 +6150,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6193,7 +6170,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6208,11 +6185,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170483, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -6222,19 +6199,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6242,7 +6219,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6257,7 +6234,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6271,19 +6248,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6291,7 +6268,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6306,7 +6283,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6328,7 +6305,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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` @@ -6349,19 +6326,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6369,7 +6346,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6384,7 +6361,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6398,19 +6375,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6418,7 +6395,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6433,7 +6410,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6455,7 +6432,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address to return + + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (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` @@ -6476,19 +6453,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6496,7 +6473,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6511,7 +6488,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6525,19 +6502,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6545,7 +6522,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6560,7 +6537,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6582,7 +6559,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs` (str, required) - The address to return + + address: `bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt` (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 @@ -6601,16 +6578,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -6624,7 +6601,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6656,14 +6633,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -6678,20 +6655,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170514, + "block_time": 1731184325, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "898f1ee358d4109fb7b56a881aaf518415135f010fced4832ae4e88a4d230f2a", + "tx_hash": "b2dc06d29e525017a11adcde012b34a5068a242556928012dc3728a2b6d2a718", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -6706,20 +6683,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170347, + "block_time": 1731184154, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "beb53e2e4a8a4684689abd407587695d4162896ceed78b280eb32706ebe4796c", + "tx_hash": "9c7807985defc6a3735e70993a5ce53e92fda09421b10a2c13252d7e4446d2f7", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -6734,20 +6711,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731170333, + "block_time": 1731184140, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "e2116b0c6b33229a263154ae3ea785b23718ec97dc4e8653f198d661d750cf74", + "tx_hash": "75b01e8e818dff557e67c2b88e6daa0b01f41bf2cc67aa060f3c5b44cce93a28", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -6762,20 +6739,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170319, + "block_time": 1731184137, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "0b60ca17b01332221c75e2c5c8cdfe77ec23b7208985e8da9478582aa95941e6", + "tx_hash": "ff2ebb8c2298f81c37ccd43530558b91b6e2610eb6f80ca58bd160e34dde91dd", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -6790,7 +6767,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731170316, + "block_time": 1731184133, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6805,7 +6782,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The issuer or owner to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6828,8 +6805,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -6837,16 +6814,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731170514, - "last_issuance_block_time": 1731170514, + "first_issuance_block_time": 1731184325, + "last_issuance_block_time": 1731184325, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 10000000000, @@ -6854,16 +6831,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731170316, - "last_issuance_block_time": 1731170333, + "first_issuance_block_time": 1731184133, + "last_issuance_block_time": 1731184140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 180, @@ -6871,16 +6848,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731170298, - "last_issuance_block_time": 1731170305, + "first_issuance_block_time": 1731184105, + "last_issuance_block_time": 1731184122, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -6888,16 +6865,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731170264, - "last_issuance_block_time": 1731170264, + "first_issuance_block_time": 1731184060, + "last_issuance_block_time": 1731184060, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 40, @@ -6905,8 +6882,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731170207, - "last_issuance_block_time": 1731170210, + "first_issuance_block_time": 1731184002, + "last_issuance_block_time": 1731184005, "supply_normalized": "0.00000040" } ], @@ -6920,7 +6897,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The issuer to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -6943,8 +6920,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -6952,16 +6929,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731170514, - "last_issuance_block_time": 1731170514, + "first_issuance_block_time": 1731184325, + "last_issuance_block_time": 1731184325, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 10000000000, @@ -6969,16 +6946,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731170316, - "last_issuance_block_time": 1731170333, + "first_issuance_block_time": 1731184133, + "last_issuance_block_time": 1731184140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 180, @@ -6986,16 +6963,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731170298, - "last_issuance_block_time": 1731170305, + "first_issuance_block_time": 1731184105, + "last_issuance_block_time": 1731184122, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7003,16 +6980,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731170264, - "last_issuance_block_time": 1731170264, + "first_issuance_block_time": 1731184060, + "last_issuance_block_time": 1731184060, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 40, @@ -7020,8 +6997,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731170207, - "last_issuance_block_time": 1731170210, + "first_issuance_block_time": 1731184002, + "last_issuance_block_time": 1731184005, "supply_normalized": "0.00000040" } ], @@ -7035,7 +7012,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The owner to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7058,8 +7035,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7067,16 +7044,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731170514, - "last_issuance_block_time": 1731170514, + "first_issuance_block_time": 1731184325, + "last_issuance_block_time": 1731184325, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 10000000000, @@ -7084,16 +7061,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731170316, - "last_issuance_block_time": 1731170333, + "first_issuance_block_time": 1731184133, + "last_issuance_block_time": 1731184140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 180, @@ -7101,16 +7078,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731170298, - "last_issuance_block_time": 1731170305, + "first_issuance_block_time": 1731184105, + "last_issuance_block_time": 1731184122, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -7118,16 +7095,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731170264, - "last_issuance_block_time": 1731170264, + "first_issuance_block_time": 1731184060, + "last_issuance_block_time": 1731184060, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "owner": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 40, @@ -7135,8 +7112,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731170207, - "last_issuance_block_time": 1731170210, + "first_issuance_block_time": 1731184002, + "last_issuance_block_time": 1731184005, "supply_normalized": "0.00000040" } ], @@ -7150,8 +7127,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return - + cursor: `104` (str, optional) - The last transaction index to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7169,17 +7146,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "block_hash": "6b22040334a381991d2160b764c3a604c6cb72e563f844027916424e81b2f1e8", - "block_time": 1731170536, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", + "block_time": 1731184347, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5340000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b:0 4 ", + "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7187,14 +7164,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7202,7 +7179,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7221,17 +7198,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "block_hash": "3a5fd9ffe1ffcd1f15f851506d4a88ba22fb12e7f97a45d7f1f136ac1638cf30", - "block_time": 1731170533, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", + "block_time": 1731184342, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003804758f71d04423d2fbee14cb3ef2cfce5166e4c9a80fc656e8059e25484326048e503836a61ef12844780ff54853ee2276b9aab2abefe1f5b88979b11ba5388746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d:0 4 ", + "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7239,14 +7216,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7254,7 +7231,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7273,17 +7250,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_hash": "020f5fffae5936bf2327b5c291838d9909f4254830bbdc09bb565035215f709d", - "block_time": 1731170518, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", + "block_time": 1731184339, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "supported": true, - "utxos_info": " 353ebb28e6ed3bc36baf0ae981e0bc409deb855958590f6a9009104917a9365c:1 2 ", + "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7291,12 +7268,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7307,17 +7284,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba", + "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", "block_index": 200, - "block_hash": "43715cb7b6b7030567444d219f200645d5d8e38b21dde265287af7f152f1dd1a", - "block_time": 1731170514, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "4c8cea3b940509277a1a9e82b7a70c941056f55d8a6bd5477c298117af4ebbe6", + "block_time": 1731184325, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 4beab588028474aa1f2562cde97149380151c59769c89a6a90e9c1ec5c7389ba:1 2 ", + "utxos_info": " e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7342,17 +7319,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 193, - "block_hash": "56c1d87bcfdd97eb2dba765d3361ef15de96af711da1ad831d4e0923d23b3de5", - "block_time": 1731170479, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "block_hash": "5b3366fe7b95aa0e86fe3b4b08c1fe46718c09b32bafa885c3d77e5f3177e65f", + "block_time": 1731184286, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1:1 2 ", + "utxos_info": " 71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7369,7 +7346,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7390,7 +7367,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -7409,20 +7386,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7447,7 +7424,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7476,9 +7453,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7495,7 +7472,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170360, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7523,9 +7500,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7542,7 +7519,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7570,9 +7547,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7589,7 +7566,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170449, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7617,9 +7594,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "block_index": 211, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7636,7 +7613,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170575, + "block_time": 1731184399, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7673,7 +7650,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The source of the fairminter to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7698,10 +7675,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "tx_index": 44, "block_index": 150, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7726,7 +7703,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731170305, + "block_time": 1731184122, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7738,10 +7715,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "ae593135beae4b46d0fdb476ae66ceb855d2a50fce46976303bb3a77c2f53656", + "tx_hash": "b9b130610d358f7e938ae03918b97c1a36f23f1db5f80c318bf053f98fd24519", "tx_index": 43, "block_index": 147, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7766,7 +7743,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170294, + "block_time": 1731184101, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7775,10 +7752,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", + "tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", "tx_index": 22, "block_index": 126, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7803,7 +7780,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731170207, + "block_time": 1731184002, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7815,10 +7792,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "tx_index": 18, "block_index": 122, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7843,7 +7820,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731170192, + "block_time": 1731183977, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7855,10 +7832,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", + "tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", "tx_index": 14, "block_index": 121, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7883,7 +7860,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731170189, + "block_time": 1731183973, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7895,10 +7872,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", + "tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", "tx_index": 10, "block_index": 116, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7923,7 +7900,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731170167, + "block_time": 1731183954, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7945,7 +7922,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address of the mints to return + + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7963,22 +7940,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", "tx_index": 46, "block_index": 150, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170305, + "block_time": 1731184122, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7987,22 +7964,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", "tx_index": 45, "block_index": 149, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170302, + "block_time": 1731184109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8011,22 +7988,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4bc3569c295bfedde7a66ef3c900bd97229008dc410bfb3eff9f558248010e5c", + "tx_hash": "e6484d6b5cb8c94f8d0efa3846edc38d87ab2d67b204a9eee1a1f83ce7e24292", "tx_index": 23, "block_index": 127, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "df065a8bc06a7319bb5a4b38ad281754b2d79cac6fae1f2d960f4b65d955af42", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170210, + "block_time": 1731184005, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8035,22 +8012,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3a9aacc479c7d9e032a16939748fe6fdc24e9d13925e80ed4b5b614d2e056002", + "tx_hash": "1ee7360c16457de587ecf59bcaf00b8dde0e96c6586d9b9876190df06d62e44e", "tx_index": 21, "block_index": 125, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170203, + "block_time": 1731183998, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8059,22 +8036,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e9b68933db2315a40fc88eff0cd58a525383a511a4c3e16dc87a6895156329c3", + "tx_hash": "2a06b74afa4de1bc90cee21083b7eb8b99e1d48531098f54aa821b6ab90f29ef", "tx_index": 20, "block_index": 124, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170200, + "block_time": 1731183984, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8083,22 +8060,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "dc5aa9aadf9bf60e60e6e7af44a09b0ddab117a618156df07a99f5740c41c44a", + "tx_hash": "526c23a46822cd2319f2638275c18ea14cd971d10ca25858803a942310dff1df", "tx_index": 19, "block_index": 123, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "4a194d37e8afcf6466654683bea5c73c73da06899d891e1e102f70fe1cc62922", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170195, + "block_time": 1731183980, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8107,22 +8084,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6611dc30ff8ceb23e5b7766a48c082f8dc0137afa5ccad1664574c3888ceeda5", + "tx_hash": "de5fc8839ab448caf4def319fb2df69bce81e22b850593c9dfb68c59db536b08", "tx_index": 15, "block_index": 118, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "64618eaa0b693b515e949fee9872c2ba10dd6d50e6487f8185a0e4b28eec79ec", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170176, + "block_time": 1731183961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8131,22 +8108,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "533c4fd19985128219ca1ec26f89d940039ded67956e1865af304ea38a4ffc7d", + "tx_hash": "c3892e408177e1ce4876e4311684edccf20a98c32cbc221510b6261bbfb26fb1", "tx_index": 11, "block_index": 114, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "bf19c80047a90e002adc1cbce5fded34588556b1a492fbbfab9e4dda113fc865", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170160, + "block_time": 1731183947, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8165,7 +8142,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address of the mints to return + + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8195,7 +8172,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0` (str, required) - The utxo to return + + utxo: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8215,8 +8192,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8229,12 +8206,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8274,8 +8251,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will make the bet - + feed_address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (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) @@ -8349,7 +8326,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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) @@ -8411,7 +8388,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8422,9 +8399,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985820, - "btc_fee": 14180, - "rawtransaction": "02000000000101bfee7098df7420bc4477e97cb8d03304251bf8d345a0a0aece617008405f5a82000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0200000000000000002b6a29153fa4f19fb5624870279bb0c0319f6e3c666f1dfc3684cf4845164e5c6d6b712af3daefc846bc541f9cba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999985834, + "btc_fee": 14166, + "rawtransaction": "02000000000101d0c4dbf092d67451d649c384eafc573ab03e1757ddb22d301dd4d00692586c070000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff0200000000000000002b6a291fce192764c745e2b5b2882bed667a20ede8e9fe94b03e50e2c23ef6fd6144a06139b6b6409aff0cd6aaba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8446,8 +8423,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending the payment - + order_match_id: `ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending the payment + + order_match_id: `92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e` (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) @@ -8505,24 +8482,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "data": "434e5452505254590b92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980952, - "btc_fee": 18048, - "rawtransaction": "020000000001019c42e80ac9905b24a3b5629751017ff65c41c3fecac30370fd7b8d236966c774000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014da72629f3f1d10098a9b361907ebb25dd30bce5000000000000000004b6a4963221fd105f5289f4dff09e56eea2171c5d220868f09be84be35b2784ff4cc880fd2accea8cf33b7dfc599f826069b92dcb2bdc174b1ffef5add43c08dcac95b22393fa5369e22462298a7052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999980970, + "btc_fee": 18030, + "rawtransaction": "020000000001014725a87e98d663a7c98177e322a63e6b456c4197f75cade8f6619172041ba72a0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e803000000000000160014182c7db9515d58f42e8845e4f48551a47d2133a300000000000000004b6a493794b54a590c6913a5bc9267bd5e71985e1fde5d1917deba48aa332154182c89458618af63d1359e0f956fe83e397a72a3734d0284f026fd512f0a34c9ef353093b9af53cb5188ce79aaa7052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "order_match_id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "status": "valid" } } @@ -8535,7 +8512,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address with the BTC to burn + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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` @@ -8596,7 +8573,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8605,9 +8582,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": 4999985816, - "btc_fee": 13184, - "rawtransaction": "02000000000101fd05507774960dc10c40e09c1a042e82b1ae9821263593410a104310de82c561000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac98ba052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000" + "btc_change": 4999985829, + "btc_fee": 13171, + "rawtransaction": "02000000000101ae0cf26a54ef9a3eec94975f8edafdf18d655c8fede60897c4d99d11b0ec50270000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000" } } ``` @@ -8617,8 +8594,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: `bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e` (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) @@ -8676,22 +8653,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "data": "434e54525052545946839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "btc_in": 90000, "btc_out": 0, - "btc_change": 75820, - "btc_fee": 14180, - "rawtransaction": "02000000000101bfa686073b117ddf825e714b1f0f13130a33f6d38c3bf25743ca1a47c96bdad301000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff0200000000000000002b6a2931ee62339020c25acf99c9a5132a46a21f25946e48378e717a6a761a0de60aafb90fe3abfe05f70f2b2c28010000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000000000000", + "btc_change": 75834, + "btc_fee": 14166, + "rawtransaction": "020000000001017e40b79857bd52d2941ca388273c9d20781ca8fd4f28b841f4854e167e949b8301000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff0200000000000000002b6a29e73c36a562e34b4ebd6b6b0be35e9c9184449dc02db5dfbd9b27c8723d4347f8b6f86fca57a49a337b3a28010000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", + "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "status": "valid" } } @@ -8704,7 +8681,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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 @@ -8765,7 +8742,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8783,9 +8760,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986347, - "btc_fee": 13653, - "rawtransaction": "020000000001017ecb325e74aa440c4351c6a7ec6851f2c434fe4a08f0036ae64c59664453a0d4000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000226a2027391a43d611203c585ffe2b582f8e606b935ecfb891cc0e08ce6a85a22f1ee6abbc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999986361, + "btc_fee": 13639, + "rawtransaction": "0200000000010136e49fa9c46cf51e4e2ad56bc06a814bf25b8f8c58b25778e1e10a1886aa6e920000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000226a2052b752b0985fc771a3b2c8df4d14f2d4e3b41f0a207383180baea634897708abb9bc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8805,7 +8782,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: `bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh` (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) @@ -8872,7 +8849,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8895,9 +8872,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859560, - "btc_fee": 14239, - "rawtransaction": "02000000000101924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a020000001600140144834ef3388923cb712f4700e69943a3dc6e8effffffff0200000000000000002c6a2a2819ad062ec48fa59c7aa4938a8400826287365ea27e3a74dc0c32aa601b2829bdf5635469f54e570d59e8dc0827010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02000000000000", + "btc_change": 4949859575, + "btc_fee": 14224, + "rawtransaction": "02000000000101fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a0200000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebbffffffff0200000000000000002c6a2abfc115f234dec38bd383f5495613c732f45285bdda1d459c9bb46e258e37a4a13265c3182110f19181aff7dc08270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8923,7 +8900,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8984,7 +8961,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -8992,7 +8969,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -9009,9 +8986,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986288, - "btc_fee": 13712, - "rawtransaction": "020000000001014d6a88e54696e169e7aac1d204615391e6047e7ca812ae7b05d8f970d4231ab6000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a219dd2bc1102b247bd84b5da1c68d0321d536ed176265b5259caa347ff966c0fac5570bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999986302, + "btc_fee": 13698, + "rawtransaction": "020000000001016fb8ead5a29d3287b486fd926db8f12677885e6e0fa73c28218a3f9e5f6400d10000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a213561528d9bd0516b8eb3391a4f9e11c7b185425279854713e2cdcd82cdeafbdda17ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9032,10 +9009,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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` @@ -9102,10 +9079,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "transfer_destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "lock": false, "reset": false, @@ -9117,9 +9094,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": 4999983750, - "btc_fee": 15704, - "rawtransaction": "0200000000010159cef7239026579c37c4618d1e73ad3012848ddd8091df35e50d094489e1bd3c000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000236a219df90a78aabe9bc7f229189673b56dea26021278a258b3e75a2a78a28d727f36fe86b2052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999983766, + "btc_fee": 15688, + "rawtransaction": "0200000000010147f23f61d2264f07a84e3102b2fd6629925a487361cc07adb16cfc05ba73ffcd0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000236a21281ae8b29a0bd2a503135a3408b6b3aa2b2d2c3cbbb150fe59418b35848f470dfa96b2052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9148,9 +9125,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: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx,bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9217,16 +9194,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset_dest_quant_list": [ [ "XCP", - "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", 1 ], [ "FAIRMINTC", - "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", 2 ] ], @@ -9235,26 +9212,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002804e4bc3d832d60b7da913935414c5286ed1499d42804758f71d04423d2fbee14cb3ef2cfce5166e4c9a4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028079eb4f94974a9b1861dd9e7d28a893892d6e30ed8088cd42138cc08788c42bd1c85f4510c0b80fe1964000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785315, - "btc_fee": 20685, - "rawtransaction": "02000000000101e2bc8d7c192736a471c479589924132fd95e2f5ffff13a20dcb4d06f065e45e9030000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9affffffff03e8030000000000006951210397521797391f280eac53efc384c9002bf7310b8b0c5e4d806b2fe6abf04b15e121025932764086d2c54956c09f2c74d7a0b11794e59690c37c855b6f35c00967612c2102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee8030000000000006951210288521797391f280eac40efc104874be82f27dd8071f75e133f3f23839e9a5c362102c470f707de25d84d14fdb092959b135e3b680080fe8fe6c55b6f092eb6e3d8422102b1863b70a4c49bbffab7e9adaf0505804242f2da5579649450b748b05b6df25253aee3ba0727010000001600144758f71d04423d2fbee14cb3ef2cfce5166e4c9a02000000000000", + "btc_change": 4949785336, + "btc_fee": 20664, + "rawtransaction": "02000000000101295775dc45471111320bc32fd52bb96312a1fdc28458f7b31f7b0f874180bbad0300000016001488cd42138cc08788c42bd1c85f4510c0b80fe196ffffffff03e80300000000000069512102a003a408e37f096d5b795d6dad457a132dccc88cc52bf92c12b7c977ebf512b22103d0d4fe874d78904c81c173b2a0917401c689a20a1f5c679f92c5e13483f58124210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aee80300000000000069512102bf03a408e37f096d5b6a5d6f2d3c915cb97f8217dd4a24b26f9b61e462d87c502102e0397f0f803a83c04146fb768b40bc5e839962b210bdf1df92c5ddda3c7138e2210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aef8ba07270100000016001488cd42138cc08788c42bd1c85f4510c0b80fe19602000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9270,7 +9247,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `BURNER` (str, required) - The asset that will be received in the trade @@ -9334,7 +9311,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -9352,7 +9329,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -9364,9 +9341,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985234, - "btc_fee": 14766, - "rawtransaction": "02000000000101e7ff4293e00a0d5a8ca1a44f8826fccf9413794997140e79d06b16278cbbff8e000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000356a3376a0f45518e049d18ba51813dd2fe07276e22f8ff4b75ce8db23b86f38081debafa46bc7b8f6f7c4376bc750f8560291e6962e52b8052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999985249, + "btc_fee": 14751, + "rawtransaction": "020000000001011848af13e7d7484551083a2a8d0618191a4d9a2024e27e6dc5448121489e5dd00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000356a33af4443a35a08c71f78fbbfd7c224ff10eb0cc24bbf795462a769cb419fef2b4cee8a763ddfe9c5d9acf9502da0afa70b73726361b8052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9392,8 +9369,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (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 @@ -9459,8 +9436,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9477,19 +9454,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8804758f71d04423d2fbee14cb3ef2cfce5166e4c9a", + "data": "434e54525052545902000000000000000100000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985527, - "btc_fee": 14473, - "rawtransaction": "02000000000101201943fc76756fc834f82c62c6d7ba41d0447b751a6d92bbb11cc2a56c748a4f000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000306a2e98532bb7bb38012efe7abfe9882db000bf5e081706b43e26fbb15ab8cc00bcc55853515537469239b697ee3a04c777b9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999985541, + "btc_fee": 14459, + "rawtransaction": "020000000001019d83119f77d6ac6db1637aa1fac5a5a7bc1471cdb2324fdb41efbc826b8a56d00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000306a2e51240f9fe445df5d27175afea6740bc38ce3acaa19f39b65b4632910ab4c39536d53f4d5c009886fbe0b6e363b3085b9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "quantity_normalized": "0.00001000" } @@ -9503,8 +9480,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending - + destination: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending + + destination: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (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 @@ -9564,24 +9541,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904804758f71d04423d2fbee14cb3ef2cfce5166e4c9a07ffff", + "data": "434e545250525459048088cd42138cc08788c42bd1c85f4510c0b80fe19607ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986288, - "btc_fee": 13712, - "rawtransaction": "020000000001012585efa30fccd74f23785f8fd5bf77cbf9284efedbe763348591c0ab5505ef33000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000236a21bf695bf0554eabd45b0c504007c4168277d37da0676fe09caf5fbd4d9feaef7a9d70bc052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999986302, + "btc_fee": 13698, + "rawtransaction": "020000000001010b460e916325477555b7f4c1282f3c45fb2adcc8de67feb46ca4cd8319856b5d0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a21ac2ad83593e7fed0f54ee561a82a2e68c4df691b7ee9b09af1832476d1698cbe437ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "flags": 7, "memo": "ffff" } @@ -9595,8 +9572,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c` (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` @@ -9655,8 +9632,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "quantity": 1000, "skip_validation": false }, @@ -9664,9 +9641,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984644, - "btc_fee": 14356, - "rawtransaction": "02000000000101f02c497cb84c7081763cd99d52da00f3a19d0f1e75ee45992ee2e7632d149627000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff03e803000000000000160014ff54853ee2276b9aab2abefe1f5b88979b11ba5300000000000000000c6a0ab84562355795aca39de004b6052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999984658, + "btc_fee": 14342, + "rawtransaction": "020000000001018182b8cc2135d5f3054535fd5fb35010a4b31af243ccf5328d283fdefa16792c0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e80300000000000016001496548f3528bf80e16d1280561f950636bb3078d900000000000000000c6a0aa1c90e5caab448e7696312b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9683,7 +9660,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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: `` @@ -9774,7 +9751,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9804,9 +9781,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985468, - "btc_fee": 14532, - "rawtransaction": "020000000001018593d758a6d891a8daea3703f8937e5ab0e2bda4c76b1951ab8d6295cc4256a5000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000316a2f4c4f9c10060bfba9ffdbcf2fbaec4223b2b3e3315b23c9ddb098fc69bac9b0e10a810eb844f50c28ed2c9454de30ac3cb9052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999985483, + "btc_fee": 14517, + "rawtransaction": "020000000001016d2bb7c88ee92d38fbbc7ebc5716368d636d2047bd9f6cf79fbec8b5ddab0fd30000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000316a2fa45af45f5e42fd69f25e66baec8c7c0cb97594befdbb0f4068c6e1d2362d3dc65fc83f6799fbc8c7a65d9a5fa31d044bb9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9845,7 +9822,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: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address that will be minting the asset + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be minting the asset + asset: `OPENFAIR` (str, required) - The asset to mint + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9906,14 +9883,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "divisible": true, "locked": false }, @@ -9923,9 +9900,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "data": "434e5452505254595b4f50454e464149527c30", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987109, - "btc_fee": 12891, - "rawtransaction": "020000000001013127650871802a0d89c909503c6dc08d1701fe7b7fe0e31953c45c474ce8c269000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff020000000000000000156a13560f9484fa6e1b39bfd269f7768748fc359ae7a5bf052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999987122, + "btc_fee": 12878, + "rawtransaction": "020000000001010b1f49707b92e5db73657e44477b6ec5f3814884f7d2f4cde664e611993592dc0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000156a13ed2c2f1f171bd7f5768602e818848ab51ca9f2b2bf052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9944,7 +9921,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address from which the assets are attached + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -10008,7 +9985,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10026,9 +10003,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984629, - "btc_fee": 14825, - "rawtransaction": "020000000001018ba4bf916f7ab6e1480f2829b82fea1816ab1d2a33177cb6f58d97ff40f059e8000000001600144e4bc3d832d60b7da913935414c5286ed1499d42ffffffff0322020000000000001600144e4bc3d832d60b7da913935414c5286ed1499d420000000000000000146a1295def032c14a60f762adbb2cfc68434b412df5b5052a010000001600144e4bc3d832d60b7da913935414c5286ed1499d4202000000000000", + "btc_change": 4999984644, + "btc_fee": 14810, + "rawtransaction": "020000000001017b72faaf54326ad3b64950353e6ad2f78e4dc55c73599c0abb9728b9c70ae7e90000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000146a122973211cb8798b3a75f6d7592cacab38b90104b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10048,8 +10025,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: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10112,22 +10089,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317166653975386b706a366339686d32676e6a64327066336667646d67356e38327a73366d346e78", + "data": "434e54525052545966626372743171303834356c39796866326433736377616e65376a3332796e33796b6b7576386439306d396a37", "btc_in": 4949951000, "btc_out": 0, - "btc_change": 4949925510, - "btc_fee": 25490, - "rawtransaction": "02000000000102924c0f3dad8f7ba03838e3a9e88aadd9aebce99d59c35d3ed5c078740ea8064a00000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff2b6f2a5ecf4d388e0f2a3124c49a5e15a0e2abe42167866125309aca5b4808cd01000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f98ffffffff020000000000000000376a352819ad062ec48fa5f618c7e1feb571e406be4366c90e504157355ac7527c464031c713325a932933043e626f60b2f06275f3f5bd7486de092701000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9802000002000000000000", + "btc_change": 4949925536, + "btc_fee": 25464, + "rawtransaction": "02000000000102fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a00000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffffe7054d66d51d4e23e49a966bb359c4ddadb80b254c2ee09570395343745fb38401000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff020000000000000000376a35bfc115f234dec38bb9e1963b2222b602cd66b0d1e3642df941d05d56ed40c5ccbf52a92b13699fa29cc4c19d61fe5194348c9c1da3a0de092701000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx" + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7" } } } @@ -10231,25 +10208,42 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "owner": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "owner": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 231, + "last_issuance_block_index": 231, + "confirmed": true, + "first_issuance_block_time": 1731184482, + "last_issuance_block_time": 1731184482, + "supply_normalized": "0.00000000" + }, + { + "asset": "PREMINT", + "asset_id": "4837764613", + "asset_longname": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": false, "supply": 0, "description": "", - "first_issuance_block_index": 229, - "last_issuance_block_index": 229, + "first_issuance_block_index": 227, + "last_issuance_block_index": 228, "confirmed": true, - "first_issuance_block_time": 1731170650, - "last_issuance_block_time": 1731170650, + "first_issuance_block_time": 1731184468, + "last_issuance_block_time": 1731184472, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": false, "supply": 0, @@ -10257,16 +10251,16 @@ Returns the valid assets "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731170636, - "last_issuance_block_time": 1731170640, + "first_issuance_block_time": 1731184461, + "last_issuance_block_time": 1731184464, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": false, "supply": 0, @@ -10274,16 +10268,16 @@ Returns the valid assets "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731170625, - "last_issuance_block_time": 1731170628, + "first_issuance_block_time": 1731184450, + "last_issuance_block_time": 1731184453, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true, "supply": 100000000, @@ -10291,30 +10285,13 @@ Returns the valid assets "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731170619, - "last_issuance_block_time": 1731170622, + "first_issuance_block_time": 1731184444, + "last_issuance_block_time": 1731184447, "supply_normalized": "1.00000000" - }, - { - "asset": "LOCKDESC", - "asset_id": "92703121214", - "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "divisible": true, - "locked": true, - "supply": 12000000000, - "description": "My super asset LOCKDESC", - "first_issuance_block_index": 216, - "last_issuance_block_index": 219, - "confirmed": true, - "first_issuance_block_time": 1731170603, - "last_issuance_block_time": 1731170614, - "supply_normalized": "120.00000000" } ], - "next_cursor": 17, - "result_count": 18 + "next_cursor": 22, + "result_count": 19 } ``` @@ -10337,8 +10314,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "owner": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true, "supply": 100000000, @@ -10346,8 +10323,8 @@ Returns an asset by its name "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731170619, - "last_issuance_block_time": 1731170622, + "first_issuance_block_time": 1731184444, + "last_issuance_block_time": 1731184447, "supply_normalized": "1.00000000" } } @@ -10378,7 +10355,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10386,14 +10363,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10401,7 +10378,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -10419,7 +10396,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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. @@ -10431,7 +10408,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -10485,9 +10462,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10504,7 +10481,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170360, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10532,9 +10509,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10551,7 +10528,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10579,9 +10556,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10598,7 +10575,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170449, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10626,9 +10603,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", + "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "block_index": 211, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10645,7 +10622,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170575, + "block_time": 1731184399, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10673,9 +10650,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10692,7 +10669,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170429, + "block_time": 1731184235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10756,13 +10733,13 @@ Returns the orders of an asset { "result": [ { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10776,7 +10753,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170539, + "block_time": 1731184351, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10796,13 +10773,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 56, - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10816,7 +10793,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731170429, + "block_time": 1731184235, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10836,13 +10813,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", "tx0_index": 53, - "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 54, - "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10856,7 +10833,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170360, + "block_time": 1731184167, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10876,13 +10853,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 64, - "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10896,7 +10873,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170636, + "block_time": 1731184461, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10976,20 +10953,20 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -10997,20 +10974,20 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -11065,17 +11042,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 230, + "block_index": 232, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "utxo": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "utxo_address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11086,17 +11063,17 @@ Returns the debits of an asset "quantity_normalized": "20.00000000" }, { - "block_index": 229, - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 231, + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "tx_index": 103, + "event": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170650, + "block_time": 1731184482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11107,17 +11084,17 @@ Returns the debits of an asset "quantity_normalized": "0.50000000" }, { - "block_index": 225, - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "block_index": 227, + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", - "tx_index": 100, + "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170636, + "block_time": 1731184468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11128,17 +11105,17 @@ Returns the debits of an asset "quantity_normalized": "0.50000000" }, { - "block_index": 222, - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "block_index": 225, + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", - "tx_index": 98, + "event": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170625, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11149,17 +11126,17 @@ Returns the debits of an asset "quantity_normalized": "0.50000000" }, { - "block_index": 221, - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 222, + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "XCP", - "quantity": 100000000, - "action": "burn fairmint payment", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "tx_index": 97, + "quantity": 50000000, + "action": "fairminter fee", + "event": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", + "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184450, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11167,11 +11144,11 @@ Returns the debits of an asset "divisible": true, "locked": true }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.50000000" } ], - "next_cursor": 80, - "result_count": 54 + "next_cursor": 81, + "result_count": 55 } ``` @@ -11239,14 +11216,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, @@ -11261,20 +11238,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, @@ -11289,7 +11266,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170619, + "block_time": 1731184444, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11322,11 +11299,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11334,7 +11311,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11347,10 +11324,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11358,7 +11335,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11371,10 +11348,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "62ce28de19503587a7bc249159f4d044e271cdbcbfe9d40e8ba437865e2eb989", + "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", "block_index": 204, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11382,7 +11359,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731170539, + "block_time": 1731184351, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11395,10 +11372,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "e9a6df02b89167552c16d382c56b2e7fd25a6b68430ccd73b527c9f93401c50b", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11406,7 +11383,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170536, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11419,10 +11396,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "933a59ae9f2a558d45a054183c9fe87a7acfe1aedd09bf1bdac9cae9b9364b5d", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11430,7 +11407,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11481,9 +11458,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11492,7 +11469,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11503,7 +11480,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11520,9 +11497,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", "block_index": 133, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11531,7 +11508,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11542,7 +11519,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170232, + "block_time": 1731184028, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11559,9 +11536,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", "block_index": 141, - "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11569,10 +11546,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 0, - "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -11581,7 +11558,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170271, + "block_time": 1731184078, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11598,18 +11575,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11620,7 +11597,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11646,7 +11623,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - The address to return + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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` @@ -11659,9 +11636,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11670,7 +11647,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11681,7 +11658,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11723,7 +11700,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -11732,7 +11709,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -11740,7 +11717,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -11749,7 +11726,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -11784,29 +11761,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11821,7 +11798,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11835,27 +11812,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", "block_index": 138, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11870,7 +11847,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170260, + "block_time": 1731184056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11884,19 +11861,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11904,7 +11881,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11919,7 +11896,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11933,19 +11910,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11953,7 +11930,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11968,7 +11945,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12042,10 +12019,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "tx_index": 96, "block_index": 221, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -12070,7 +12047,7 @@ Returns the fairminter by its asset "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -12110,22 +12087,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -12144,7 +12121,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q` (str, required) - The address of the mints to return + + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12206,9 +12183,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12225,7 +12202,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170360, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12253,9 +12230,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12272,7 +12249,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170429, + "block_time": 1731184235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12300,9 +12277,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12319,7 +12296,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170449, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12347,9 +12324,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12366,7 +12343,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170533, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12394,9 +12371,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "block_index": 205, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12413,7 +12390,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731184355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12450,7 +12427,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf` (str, required) - The hash of the transaction that created the order + + order_hash: `839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e` (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. @@ -12461,10 +12438,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 102, - "tx_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "block_index": 228, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_index": 103, + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -12472,7 +12449,7 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 249, + "expire_index": 251, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12481,7 +12458,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731170647, + "block_time": 1731184478, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12492,7 +12469,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -12515,7 +12492,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5` (str, required) - The hash of the transaction that created the order + + order_hash: `92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace` (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 @@ -12542,31 +12519,31 @@ Returns the order matches of an order { "result": [ { - "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx0_index": 101, - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", - "tx1_index": 102, - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx0_index": 102, + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx1_index": 103, + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 227, - "tx1_block_index": 228, - "block_index": 228, + "tx0_block_index": 229, + "tx1_block_index": 230, + "block_index": 230, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 248, + "match_expire_index": 250, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731170647, + "block_time": 1731184478, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -12592,7 +12569,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92` (str, required) - The hash of the transaction that created the order + + order_hash: `ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243` (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 @@ -12611,15 +12588,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "1741b67b47b2b79e4628af7599a0bdf9939af15e487c9ea1191783703ae148e1", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "btc_amount": 2000, - "order_match_id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "status": "valid", "confirmed": true, - "block_time": 1731170429, + "block_time": 1731184235, "btc_amount_normalized": "0.00002000" } ], @@ -12663,9 +12640,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "block_index": 182, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12683,7 +12660,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731170429, + "block_time": 1731184235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12709,9 +12686,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "block_index": 205, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12729,7 +12706,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731170544, + "block_time": 1731184355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12755,9 +12732,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12775,7 +12752,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170360, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12801,9 +12778,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12821,7 +12798,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170533, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12847,9 +12824,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "5e94d0a093e582e21430b7ace8b73d272addb85609053515149f448ad9e8d945", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12867,7 +12844,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170449, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12930,13 +12907,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12953,7 +12930,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170539, + "block_time": 1731184351, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12973,13 +12950,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 56, - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12996,7 +12973,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170429, + "block_time": 1731184235, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13016,13 +12993,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", "tx0_index": 53, - "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 54, - "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13039,7 +13016,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170360, + "block_time": 1731184167, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13059,13 +13036,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 64, - "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13082,7 +13059,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731170636, + "block_time": 1731184461, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13140,13 +13117,13 @@ Returns all the order matches { "result": [ { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13160,7 +13137,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170539, + "block_time": 1731184351, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13180,13 +13157,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92_81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "tx0_index": 55, - "tx0_hash": "12eec3169f20153b79f58d369ab0f8dec98fcab18b8695807c2dc3f3ec4a9f92", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 56, - "tx1_hash": "81cdd69a0c7600e2c8fd68aa449152c4725c344454ed2e3f714875ce56f6718f", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13200,7 +13177,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731170429, + "block_time": 1731184235, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13220,13 +13197,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7_b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", + "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", "tx0_index": 53, - "tx0_hash": "3ac64f35387467f4885e3884a386cf1d5694b690c888766a4b9563a1044d76b7", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 54, - "tx1_hash": "b6446bbfeedaeb40d726a668bac410de71537044709f66850c8cff3ba31eba7e", - "tx1_address": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13240,7 +13217,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170360, + "block_time": 1731184167, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13260,13 +13237,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 64, - "tx0_hash": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c", - "tx0_address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", - "tx1_address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13280,7 +13257,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731170636, + "block_time": 1731184461, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13300,31 +13277,31 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5_d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx0_index": 101, - "tx0_hash": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "tx0_address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", - "tx1_index": 102, - "tx1_hash": "d3da6bc9471aca4357f23b8cd3f6330a13130f1f4b715e82df7d113b0786a6bf", - "tx1_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx0_index": 102, + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx1_index": 103, + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 227, - "tx1_block_index": 228, - "block_index": 228, + "tx0_block_index": 229, + "tx1_block_index": 230, + "block_index": 230, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 248, + "match_expire_index": 250, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731170647, + "block_time": 1731184478, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -13488,66 +13465,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "a3e4351a1d3b88845be8a2f581452d0e3e9dbb7f3dbe92d839d6b18e7171c1d6", + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", "block_index": 112, - "source": "bcrt1qlhafuj278j4ve7gjfyzt3q4u2l7gjqcg3y39wu", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "066d80c64761f400fbd18d3dd8391224f704cf42dcb1c6d15e54a7f15a33b4bf", + "tx_hash": "845c8eae056aeebef44dd69ef729f94434381f53b1e9ac7e2168ac7964d6aedf", "block_index": 112, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "b9395e3e3844138cef8fde9ff888415580c116bd8e9975c4dc35ec2951407cbc", + "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", "block_index": 112, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "5de79a3135089187a07fd2bf9c34f179132a515b883664c868d1e4ace39d8db2", + "tx_hash": "53658830d3bf2ea6c3fd4d207a7afe89708568c60172b9e64672b0ebe58638a2", "block_index": 112, - "source": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "125f74f34ac583ba6169908c267879d6ad522539f64f6c21948910511133bea8", + "tx_hash": "40b63103484fc2e9b8bf8df6f3177faa056140a6a6b02f6bc198c02c3b2ca388", "block_index": 112, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731170152, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -13592,9 +13569,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13603,7 +13580,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13614,7 +13591,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13631,9 +13608,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "1496bff8068878958ab49203945f43f69997ccc8209dda412e58b15ef6ee6831", + "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", "block_index": 133, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13642,7 +13619,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13653,7 +13630,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170232, + "block_time": 1731184028, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13670,9 +13647,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "4cbc4c3e8bdbf716997567aa14569d33ae4bf69454cf0f80a229b22513629b3f", + "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", "block_index": 141, - "source": "mzZjvqdNbVosx4gy6XDY3vcDhv2KYGNScL", + "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13680,10 +13657,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "ca7de95006f5006ce685cd35f38a34cc99e2c5bc0317d695f542ad0977c34a6e", - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 0, - "last_status_tx_source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -13692,7 +13669,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170271, + "block_time": 1731184078, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13709,9 +13686,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13720,7 +13697,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13731,11 +13708,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170483, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -13748,18 +13725,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13770,7 +13747,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13796,7 +13773,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8` (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. @@ -13808,9 +13785,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13819,7 +13796,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13830,7 +13807,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13853,7 +13830,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8` (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 @@ -13873,19 +13850,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13893,7 +13870,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13908,7 +13885,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13922,19 +13899,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13942,7 +13919,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13957,7 +13934,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13999,20 +13976,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -14037,7 +14014,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd` (str, required) - The hash of the dividend to return + + dividend_hash: `fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043` (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. @@ -14049,20 +14026,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -14084,7 +14061,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043` (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 @@ -14107,12 +14084,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "330c73bb159658b81537e0d53a441b2ab991c35891865cec27de8234f22e48bd", + "event": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "tx_index": 42, - "utxo": "973027356bbd74d850e93cfc1e2b096632d95c4d57f7171600fadc09699dfa21:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "utxo": "c524ab280f3557da911bb4d383891166c505314f418dc721724b9d368b2f0962:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "confirmed": true, - "block_time": 1731170290, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14137,7 +14114,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14154,47 +14131,47 @@ Returns all events { "result": [ { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null, - "block_index": 230, - "block_time": 1731170663 + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "tx_index": 104, - "block_time": 1731170663, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14205,20 +14182,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14228,24 +14205,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14255,13 +14232,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 887, - "result_count": 893 + "next_cursor": 902, + "result_count": 908 } ``` @@ -14270,7 +14247,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `892` (int, required) - The index of the event to return + + event_index: `907` (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. @@ -14281,19 +14258,19 @@ Returns the event of an index ``` { "result": { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "33678d12a74813725e3a9a13c991ffb8118be7b7e1ec856327c1f58f79da5412", - "messages_hash": "fd1b3ef9f2254f02a324b09e6af7fce0a0ae71a6182e3e827339c92e1dbc306c", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "188a521f6265221f7b433a3562413abeee94dcab3f60271f340587100c7b6a0f", - "block_time": 1731170663 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null, - "block_index": 230, - "block_time": 1731170663 + "block_index": 232, + "block_time": 1731184491 } } ``` @@ -14325,7 +14302,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 90 + "event_count": 91 }, { "event": "SWEEP", @@ -14351,7 +14328,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `892` (str, optional) - The last event index to return + + cursor: `907` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14368,19 +14345,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14390,24 +14367,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14417,51 +14394,78 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", - "utxo_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "block_time": 1731170663, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "block_time": 1731170663 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 + }, + { + "event_index": 862, + "event": "CREDIT", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "PREMINT", + "block_index": 227, + "calling_function": "escrowed premint", + "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "quantity": 50, + "tx_index": 101, + "utxo": null, + "utxo_address": null, + "block_time": 1731184468, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000050" + }, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "block_index": 227, + "block_time": 1731184468 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "30e469ad2e7bb34b3a81124e6ff10848859677fac5946d75e2bb9ac408391c3c_f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731170636, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14471,40 +14475,13 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731170636 - }, - { - "event_index": 819, - "event": "CREDIT", - "params": { - "address": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "asset": "BURNER", - "block_index": 221, - "calling_function": "fairmint commission", - "event": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "quantity": 20000000, - "tx_index": 97, - "utxo": null, - "utxo_address": null, - "block_time": 1731170622, - "asset_info": { - "asset_longname": "", - "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.20000000" - }, - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", - "block_index": 221, - "block_time": 1731170622 + "block_time": 1731184461 } ], - "next_cursor": 818, - "result_count": 109 + "next_cursor": 819, + "result_count": 110 } ``` @@ -14525,7 +14502,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 109 + "event_count": 110 } } ``` @@ -14554,29 +14531,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14591,7 +14568,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14605,19 +14582,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "703296bd58ef8f55c4772d8a3bb3d7b6000dd54abd6efadfecdab5976f1a6a2d", + "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "35e24dc80f7fa978d00d76c1a80c2b50a9812729b30fdd941132ecf94f71add1", + "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14625,7 +14602,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14640,11 +14617,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170483, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -14654,27 +14631,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "8d11400dad006348af0fd256b0ad7faee1a4a03fea810d249ee840636712306e", + "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", "block_index": 138, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "destination": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b2dcdbce3ab0cf2ff2cd4b8e020b33798f6b80db7d30064f27c111aabefa84da", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14689,7 +14666,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731170260, + "block_time": 1731184056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14703,19 +14680,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d2b38bbaba6788489b49df1537d498670833201375191e9ba2b0640609d8e8a5", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14723,7 +14700,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14738,7 +14715,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170228, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14752,19 +14729,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "33c6acb9e02d9b0956fa3992ad5e619b7b4484e47ba90b0a0fc048df753444e6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", - "destination": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "08b59c6c376a1a4e6d81f1a8e6863479b2704b9b74f50f3d16b189676345e82d", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14772,7 +14749,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14787,7 +14764,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731170225, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14828,11 +14805,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14840,7 +14817,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14852,11 +14829,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 104, - "tx_hash": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92", - "block_index": 230, - "source": "02fe8eb8fe40762393bff2ba37e1b142b308bc62453e84654d7e46711bcc9baf:1", - "destination": "4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14864,11 +14841,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -14877,10 +14854,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14888,7 +14865,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14901,10 +14878,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14912,11 +14889,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -14925,10 +14902,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "e9455e066fd0b4dc203af1ff5f2f5ed92f1324995879c471a43627197c8dbce2", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14936,11 +14913,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731170544, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -14990,15 +14967,15 @@ Returns all the issuances { "result": [ { - "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", "msg_index": 0, - "block_index": 229, + "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "transfer": false, "callable": false, "call_date": 0, @@ -15013,25 +14990,25 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170650, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 100, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_index": 101, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", "msg_index": 1, - "block_index": 226, - "asset": "STARTNOW", + "block_index": 228, + "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "let's start now", + "description": "", "fee_paid": 0, "status": "valid", "asset_longname": "", @@ -15041,25 +15018,25 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731170640, + "block_time": 1731184472, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 100, - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_index": 101, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", "msg_index": 0, - "block_index": 225, - "asset": "STARTNOW", - "quantity": 0, + "block_index": 227, + "asset": "PREMINT", + "quantity": 50, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "let's start now", + "description": "", "fee_paid": 50000000, "status": "valid", "asset_longname": "", @@ -15069,25 +15046,25 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170636, - "quantity_normalized": "0.00000000", + "block_time": 1731184468, + "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 98, - "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_index": 100, + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "msg_index": 1, - "block_index": 223, - "asset": "EXPANSIVE", + "block_index": 226, + "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "too expensive for you", + "description": "let's start now", "fee_paid": 0, "status": "valid", "asset_longname": "", @@ -15097,25 +15074,25 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731170628, + "block_time": 1731184464, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 98, - "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_index": 100, + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "msg_index": 0, - "block_index": 222, - "asset": "EXPANSIVE", + "block_index": 225, + "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "too expensive for you", + "description": "let's start now", "fee_paid": 50000000, "status": "valid", "asset_longname": "", @@ -15125,13 +15102,13 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170625, + "block_time": 1731184461, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 43, - "result_count": 48 + "next_cursor": 45, + "result_count": 50 } ``` @@ -15140,7 +15117,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b` (str, required) - The hash of the transaction to return + + tx_hash: `84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7` (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. @@ -15151,15 +15128,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 103, - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", "msg_index": 0, - "block_index": 229, + "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "issuer": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "transfer": false, "callable": false, "call_date": 0, @@ -15174,7 +15151,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731170650, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15206,16 +15183,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -15229,7 +15206,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec` (str, required) - The hash of the transaction to return + + tx_hash: `37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf` (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. @@ -15242,16 +15219,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", - "destination": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731170466, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -15285,9 +15262,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15295,14 +15272,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170218, + "block_time": 1731184014, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "4476f6cb9db52c5b0396b1b6c3fad635c5a6f5236340d84a8928d58b4549c93d", + "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", "block_index": 128, - "source": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15310,7 +15287,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170214, + "block_time": 1731184010, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15324,7 +15301,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc` (str, required) - The hash of the transaction to return + + tx_hash: `aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6` (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. @@ -15336,9 +15313,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "4507be5a1d5aab950a947a7bedd4ee22c7502633f43234ceb5c6671f65af6bdc", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15346,7 +15323,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731170218, + "block_time": 1731184014, "fee_fraction_int_normalized": "0.00000000" } } @@ -15383,10 +15360,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "cd08485bca9a302561866721e4abe2a0155e9ac424312a0f8e384dcf5e2a6f2b", - "tx_index": 103, - "block_index": 229, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_index": 231, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -15411,7 +15388,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170650, + "block_time": 1731184482, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15420,10 +15397,47 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8ebe4cf1a999ce60865182d67e197778408866302dcb40346928525a2d350fd2", + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_index": 101, + "block_index": 228, + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "asset": "PREMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 50, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 100, + "soft_cap_deadline_block": 228, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731184472, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000100", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000050" + }, + { + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "tx_index": 100, "block_index": 226, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -15448,7 +15462,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170640, + "block_time": 1731184464, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15457,10 +15471,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "83dad9e0f67433410f51a09a3eb31ae0a0ef8733cd3fb92e06bc49a06467fe94", + "tx_hash": "b0dbe18ebce8aec91e284552354df1de0b0b19ed93c0ced5d338a3458e4a17d5", "tx_index": 99, "block_index": 224, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": null, "asset_parent": null, "asset_longname": null, @@ -15485,13 +15499,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170632 + "block_time": 1731184458 }, { - "tx_hash": "86ec150ab425056a1e607cbd4e1c71887a4dc42eade1cf2d2f31bc887cf50da1", + "tx_hash": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", "tx_index": 98, "block_index": 223, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -15516,57 +15530,17 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731170628, + "block_time": 1731184453, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", - "tx_index": 96, - "block_index": 221, - "source": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", - "asset": "BURNER", - "asset_parent": "", - "asset_longname": "", - "description": "let's burn it", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 100000000, - "burn_payment": true, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 20000000, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": true, - "lock_quantity": true, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 80000000, - "commission": 20000000, - "paid_quantity": 100000000, - "confirmed": true, - "block_time": 1731170622, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "1.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.80000000", - "commission_normalized": "0.20000000", - "paid_quantity_normalized": "1.00000000" } ], - "next_cursor": 12, - "result_count": 17 + "next_cursor": 13, + "result_count": 18 } ``` @@ -15622,22 +15596,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -15646,22 +15620,22 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "89b149181a13432241a8e3f0f6465ec229b2a09932fcf20080773f9e030cca79", + "tx_hash": "0e2e7af8d6364fd2dbc2af36470ac9bece72a387782748c46f7034b855cf630c", "tx_index": 95, "block_index": 219, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "c30019918840eca693210b073dc91af4dd54ada153b5df1534a8832f110c826f", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "d9e559c3c71883aa0881d99340a00535329d8a56438aeeb8ed5a8a41664b10d9", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731170614, + "block_time": 1731184439, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -15670,22 +15644,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "5fec3930302d55b34a4132ec3b63f1c6ea09aab5a3536e8bbdf8d9fab6116876", + "tx_hash": "bb3be0baf4f12b3ecb670cceb6dd695791b3a3fd2d93e1a527be91e39bd36e11", "tx_index": 91, "block_index": 215, - "source": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", - "fairminter_tx_hash": "e2b84426cfb1ea1576c187edfca5cefa7d67b07e7e49cbbd3748bf5403878247", + "source": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", + "fairminter_tx_hash": "efc92f92c79bff1b745a7d8a3daa096d8c1c545c927ff41b84c9c12c07360570", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170599, + "block_time": 1731184424, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg", + "issuer": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", "divisible": true, "locked": false }, @@ -15694,22 +15668,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "090f51767923da0a93a8d858f4756b92e89c1918252af6d5de9c3b65753473d2", + "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", "tx_index": 46, "block_index": 150, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170305, + "block_time": 1731184122, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -15718,22 +15692,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "2b25582b961abce90ecfd9a3e204b0b0e411f5ef460df364bdf0045053ebe5f8", + "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", "tx_index": 45, "block_index": 149, - "source": "bcrt1qgav0w8gygg7jl0hpfje77t8uu5txuny65au27q", - "fairminter_tx_hash": "c619e2460c5001558bd45432194d43ea6874483fbf08186c9810fb2934bd0dfc", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731170302, + "block_time": 1731184109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -15752,7 +15726,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23` (str, required) - The hash of the fairmint to return + + tx_hash: `5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15763,22 +15737,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ab1e70f77936e7ff7695071c96fb8256f699446e959f18416ce7a54ec2ea9d23", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qm33vghauhul24epua06nzsm5l237xnucswgtu7", - "fairminter_tx_hash": "db016211af2a4b7588b4aeec6964646f19d5d8b907ac1706f20b74f698573e6d", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731170622, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qshtftpmv2h6nfehkexj5nddkf6eq6yd36tlm58", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -15796,7 +15770,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e,bcrt1qmpmhav9kd0a34yt03lykeeedfmn20kwprk2tcg` (str, required) - The addresses to search for + + addresses: `bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz,bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn` (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. @@ -15813,28 +15787,28 @@ Returns a list of unspent outputs for a list of addresses "vout": 0, "height": 199, "value": 546, - "confirmations": 32, + "confirmations": 34, "amount": 5.46e-06, - "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa", - "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" - }, - { - "vout": 1, - "height": 227, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5", - "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" }, { "vout": 1, "height": 198, "value": 546, - "confirmations": 33, + "confirmations": 35, "amount": 5.46e-06, - "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990", - "address": "bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e" + "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + }, + { + "vout": 1, + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" } ], "next_cursor": null, @@ -15847,7 +15821,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs` (str, required) - The address to search for + + address: `bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt` (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 @@ -15863,28 +15837,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "e3ba39e262ceecf19f7f7295c0f92c32556299c11d948843f6da11234899982f" + "tx_hash": "c6174dbb4c086be948f57802f799e3c85d6489e73d1f48ba9c422a3b2d57e244" }, { - "tx_hash": "1e50f98538eecc438b03f6b9bc1dae08458e8d47b28130534159d7baade7cc3f" + "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60" }, { - "tx_hash": "2538d489ac3ac90056075a8a6bd4837cc4a7ed6cf91a3758477c9fc0a17eed51" + "tx_hash": "48493c64b68af363b97d2a826ea265c33621f9e904c7697bda80b3a8ad655063" }, { - "tx_hash": "719811047c545b70953af18cc2c80250bba101633e6cbe65f3d4e2223122625e" + "tx_hash": "a017e1df8d7d0610178651cea0fef58d16a2a25c5cf850c77a8d2db4e093ad8f" }, { - "tx_hash": "23a7f701c1df14bf518de33ac90d9eaf44009337cb1a3f2944d62d3d73758c97" + "tx_hash": "bc060d4f7ca525678122e0dcf3529d4d8e95a253162e026c383638df72f772b6" }, { - "tx_hash": "e9b349735d606e273a170b4dda85d9e3b3fa0f2c531c9f79be5efcf7008179be" + "tx_hash": "190a666b58e5defbc083e3efc7f2a126ccfd28b477edeb8e667655edf48d06c6" }, { - "tx_hash": "f2da48091ad24ad790b340ae033801aed9bbc2e555d33ed223645b1a3eebd9d9" + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf" }, { - "tx_hash": "99f96d6347f28bfa2410a19b6ecb6ca7196b3258f3b418b73231a83a231455ec" + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6" } ], "next_cursor": null, @@ -15897,7 +15871,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qq9zgxnhn8zyj8jm39arspe5egw3acm5weg9z5f` (str, required) - The address to search for. + + address: `bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh` (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. @@ -15910,8 +15884,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 5, - "tx_hash": "479462b26e5f85ac335d4d06ab696ac8669871b195403d270cb0102963a8f89a" + "block_index": 10, + "tx_hash": "d42ec7f16fd340abe06ed758e8adadcd576ec9361509eb0ee2e46742529b9675" } } ``` @@ -15921,7 +15895,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmfex98elr5gqnz5mxcvs06ajthfshnjsthqk9e` (str, required) - The address to search for + + address: `bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz` (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 @@ -15938,27 +15912,27 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 1, - "height": 227, + "height": 198, + "value": 546, + "confirmations": 35, + "amount": 5.46e-06, + "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4" + }, + { + "vout": 1, + "height": 229, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "ce7f8deb87ccf8025fed261615c8dcfcfe781d1a7647b275d9aefd7ddb6ff7a5" + "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace" }, { "vout": 0, "height": 199, "value": 546, - "confirmations": 32, - "amount": 5.46e-06, - "txid": "fb5d0bd4338b829f06aabb5f0823ba4bc80a4e3514b7844453c9762dbbb8fdfa" - }, - { - "vout": 1, - "height": 198, - "value": 546, - "confirmations": 33, + "confirmations": 34, "amount": 5.46e-06, - "txid": "cd93675152022d50132783c90e80a6f52615ec6529bee01416eb1520be471990" + "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039" } ], "next_cursor": null, @@ -15971,7 +15945,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1qfe9u8kpj6c9hm2gnjd2pf3fgdmg5n82zs6m4nx` (str, required) - Address to get pubkey for. + + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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. @@ -15983,7 +15957,7 @@ Get pubkey for an address. ``` { - "result": "02135319573953ed1c2bf25b1090361ccc0d22a07a4ad7da30f70d20b6122caec1" + "result": "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" } ``` @@ -15992,7 +15966,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `4a06a80e7478c0d53e5dc3599de9bcaed9ad8ae8a9e33838a07b8fad3d0f4c92` (str, required) - The transaction hash + + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (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. @@ -16004,7 +15978,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101af9bcc1b71467e4d65843e4562bc08b342b1e137baf2bf93237640feb88efe020100000000ffffffff03e803000000000000160014dc62c45fbcbf3eaae43cebf5314374faa3e34f9800000000000000000c6a0a3f2dfb5f8ca138b91a9187140927010000001600140144834ef3388923cb712f4700e69943a3dc6e8e02473044022072809e2f0ec4bda6c61043ac47256b4a7905b24b0077c5a796d125078c72bf84022029aa325da060c1982f0ceb349f839053ea4961e2ac74c1c3a7b27ac0325802d4012103819efb4d3b85d2bfe5704481a2f7296bea0cdf3a494f280af7d8943de7bad43800000000" + "result": "020000000001011264f625f000f949743679dd19865b50e5b132f88dcaba8b5e48858c7d778be00100000000ffffffff03e803000000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae00000000000000000c6a0acae81e7d80a724af2f26871409270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb024730440220368071587c81d5722a1686ab3ec5fd7193e76a687bea4562f14c6c2e35b6226b0220264468e7ee300e431f01c97a81cbcf02acf4e1278824f773a4b384592d5e3130012103207dd49acd21039f8d2203a73c89671845fb09742bd47c6efacaa8592f20964d00000000" } ``` @@ -16026,7 +16000,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58599 + "result": 58539 } ``` @@ -16165,28 +16139,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105 + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106 }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "quantity": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "status": "valid", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105, + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16196,22 +16170,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16221,22 +16195,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", - "block_index": 230, - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "block_index": 232, + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16246,30 +16220,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731170667.9059134, + "block_time": 1731184495.3943753, "btc_amount": 0, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "destination": "", "fee": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105, - "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, + "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -16283,7 +16257,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -16314,19 +16288,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16336,7 +16310,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -16349,7 +16323,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a` (str, required) - The hash of the transaction to return + + tx_hash: `e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2` (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 @@ -16369,28 +16343,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105 + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106 }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "quantity": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "status": "valid", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105, + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16400,22 +16374,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16425,22 +16399,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", + "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", - "block_index": 230, - "event": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "block_index": 232, + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731170663, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16450,30 +16424,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731170667.9059134, + "block_time": 1731184495.3943753, "btc_amount": 0, - "data": "020000000000000001000000000000271080fc656e8059e25484326048e503836a61ef128447", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "destination": "", "fee": 10000, - "source": "bcrt1qla2g20hzya4e42e2hmlp7kugj7d3rwjnp3q3x4", - "tx_hash": "7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a", - "tx_index": 105, - "utxos_info": "c41b03af773710bdbab97ab862e414285c0c31009eef70fd110f957adc12f012:1 7943ca6f58a24c537657f05a46d2de8a13e045bf34e7cd975cb6978ff4bfb06a:1 2 ", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, + "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1ql3jkaqzeuf2ggvnqfrjs8qm2v8h39pz80r2qfs", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -16487,7 +16461,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731170667.9059134 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index b209196a78..57292f1a0c 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -301,9 +301,7 @@ def parse(db, tx, message): # we check if the hard cap is reached and in this case... if fairminter["hard_cap"] > 0: asset_supply = ledger.asset_supply(db, fairminter["asset"]) - alredy_minted = asset_supply + earn_quantity - if util.enabled("partial_mint_to_reach_hard_cap"): - alredy_minted += commission + alredy_minted = asset_supply + earn_quantity + commission if alredy_minted == fairminter["hard_cap"]: # ...we unlock the issuances for this assets bindings["fair_minting"] = False diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index 3b1dad4388..21e15d8b6b 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -192,7 +192,11 @@ def validate( if existing_asset["divisible"] != divisible: problems.append(f"Divisibility of asset `{asset_name}` is different.") else: - if premint_quantity > 0 and premint_quantity >= hard_cap: + if ( + premint_quantity > 0 + and premint_quantity >= hard_cap + and (hard_cap > 0 or not util.enabled("partial_mint_to_reach_hard_cap")) + ): problems.append("Premint quantity must be < hard cap.") if existing_asset is None: @@ -223,10 +227,7 @@ def validate( problems.append("Soft cap deadline block must be specified if soft cap is specified.") elif soft_cap_deadline_block >= end_block > 0: problems.append("Soft cap deadline block must be < end block.") - elif ( - util.enabled("partial_mint_to_reach_hard_cap") - and soft_cap_deadline_block <= start_block - ): + elif soft_cap_deadline_block <= start_block: problems.append("Soft cap deadline block must be > start block.") return problems @@ -428,11 +429,7 @@ def parse(db, tx, message): description, ) - if ( - util.enabled("partial_mint_to_reach_hard_cap") - and soft_cap > 0 - and soft_cap_deadline_block <= tx["block_index"] - ): + if soft_cap > 0 and soft_cap_deadline_block <= tx["block_index"]: problems.append("Soft cap deadline block must be > start block.") # if problems, insert into fairminters table with status invalid and return @@ -708,6 +705,7 @@ def perform_fairmint_soft_cap_operations(db, fairmint, fairminter, fairmint_quan # the soft cap is reached: # - the assets are distributed to the miner, # - the commissions to the issuer, + # if not reached asset will be destroyed in `soft_cap_deadline_reached()` if fairmint_quantity >= fairminter["soft_cap"]: # send assets to minter ledger.credit( @@ -770,20 +768,9 @@ def soft_cap_deadline_reached(db, fairminter, block_index): db, fairmint, fairminter, fairmint_quantity, block_index ) - # - the premint is unescrowed - if fairminter["premint_quantity"] > 0: - ledger.credit( - db, - fairminter["source"], - fairminter["asset"], - fairminter["premint_quantity"], - 0, # tx_index=0 for block actions - action="premint", - event=fairminter["tx_hash"], - ) - # the soft cap is not reached, we close the # fairminter and destroy all the assets at once + # if the soft cap is reached, the assets are distributed in `perform_fairmint_soft_cap_operations()` if fairmint_quantity < fairminter["soft_cap"]: close_fairminter(db, fairminter, block_index) if fairminter_supply > 0 or not util.enabled("partial_mint_to_reach_hard_cap"): @@ -799,6 +786,17 @@ def soft_cap_deadline_reached(db, fairminter, block_index): "status": "valid", } ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION") + elif fairminter["premint_quantity"] > 0: + # the premint is sent to the issuer + ledger.credit( + db, + fairminter["source"], + fairminter["asset"], + fairminter["premint_quantity"], + 0, # tx_index=0 for block actions + action="premint", + event=fairminter["tx_hash"], + ) def perform_fairminter_soft_cap_operations(db, block_index): diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index fd403b6484..aace606794 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": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", "difficulty": 545259519, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, "confirmed": true }, { - "block_index": 229, - "block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", - "block_time": 1731176547, - "previous_block_hash": "1aee1efd56625b83a7f0347445bdca11803b3ee49dbb78d0bda442c637cf539b", + "block_index": 231, + "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_time": 1731184482, + "previous_block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", "difficulty": 545259519, - "ledger_hash": "a547e4ed55c8efd4137eb230b037ac05d30efa3515b28b2e7554f2c963f4b54c", - "txlist_hash": "80bf3d6c03b6513656d8f94bdcc91afa0514ebeaf39e2444cf6c6a73be7aeaab", - "messages_hash": "c992c82810f347acb2eb9bc2b853de29c985dda2cd93000023e09f45cab2169b", + "ledger_hash": "11c246ed523078cd7e8965a824d0119efdf29a8804bd33d33ca62c2403a0b882", + "txlist_hash": "3fbc589ba1d4b539ac24986e9d9bff9df88e645a9c769cd1e29d75344774cdbd", + "messages_hash": "36f6a025cfc80555529f8caec4676afdb16cd570da5a581240de2f0a99bf9ab0", "transaction_count": 1, "confirmed": true }, { - "block_index": 228, - "block_hash": "1aee1efd56625b83a7f0347445bdca11803b3ee49dbb78d0bda442c637cf539b", - "block_time": 1731176544, - "previous_block_hash": "33727772fce10330a472df1b7a999b8fe768ba15f6935ecdc2bb4e0d4dd868fc", + "block_index": 230, + "block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", + "block_time": 1731184478, + "previous_block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", "difficulty": 545259519, - "ledger_hash": "0a57f4172395e5b8e576ac6a68bb6da668db787f6458a144c8ce94d322ab6cfb", - "txlist_hash": "9415dce7a9aec8418f137c90651c19d7960a929ba7ef01e4856478f527acc999", - "messages_hash": "164c16bc43a823bfc5750d11201383b564ec7af02cb62bebba119b364fc58980", + "ledger_hash": "33fdcc74ca292b56bd8e71f64e3369e2b792b9e972243b85ac0af8e0bf054a70", + "txlist_hash": "365ae250857a91e801ee6966be0b44f668ad99d044717e3869fd3831e38178fa", + "messages_hash": "1d5c798b9f942996c52e60a9a6e43d95591b20fed7580c248773db61984177c5", "transaction_count": 1, "confirmed": true }, { - "block_index": 227, - "block_hash": "33727772fce10330a472df1b7a999b8fe768ba15f6935ecdc2bb4e0d4dd868fc", - "block_time": 1731176541, - "previous_block_hash": "2349df5728b4d04a89f9a10785648618b83ce83a20b3ea91dcba3ea5ea6c9ee1", + "block_index": 229, + "block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", + "block_time": 1731184475, + "previous_block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", "difficulty": 545259519, - "ledger_hash": "1471f943acc9e2fe0881815128fc9f801759b27280932041e692acc3a0d4549c", - "txlist_hash": "763610c5043f6083addb5ac57809aca639bea260063445d67b3b7a6b03fdec29", - "messages_hash": "7277ec1001c8756de66804f0e2e1241e7fd900a6a24ca445de9594b1efc44473", + "ledger_hash": "15ec1959f8dc3168ab10b11d8a2deec8823aa3351391fa98241fad3d7a34efc8", + "txlist_hash": "77f626356011bb7d0ccfe8c2dc08cad94edec18db47b3386f6b85fbef123fa55", + "messages_hash": "903edeb4afd0c90a0008385340fa0e35c9cc51bd2688780d7422a75d73cc30e4", "transaction_count": 1, "confirmed": true }, { - "block_index": 226, - "block_hash": "2349df5728b4d04a89f9a10785648618b83ce83a20b3ea91dcba3ea5ea6c9ee1", - "block_time": 1731176538, - "previous_block_hash": "02ba32120ab558607e5c523954629b7b8bab47726bd1d26227185e8defbf9710", + "block_index": 228, + "block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", + "block_time": 1731184472, + "previous_block_hash": "3ede6bbb2adee6e46b5a265dee848ffec70661bcd0efdd955bf516519eac20be", "difficulty": 545259519, - "ledger_hash": "c1372e5d69d4ff7f479168108dccf23a755b28eff2da7410f46dabc9af2bc199", - "txlist_hash": "d0e8962b853b6141ea6ed4affad896a7246e39867757e60dad5f6616e1a48e44", - "messages_hash": "cae90a81a2e442e65f0467d54e796ee194e931d5a89b80ab059a78e7659cfadf", + "ledger_hash": "aa118d35ee0a7751beb9ef7f012cb0d66a39cc29ce75712ebb989d622fff1546", + "txlist_hash": "b522056a36d1ca482065c99a9f13e8268804089c904a901d45aae0f8801f2e2a", + "messages_hash": "ca2e57717c1dbbb76a793c25e740cd6d09f30a7777a9bd845087762013636a8d", "transaction_count": 0, "confirmed": true } ], - "next_cursor": 225, - "result_count": 130 + "next_cursor": 227, + "result_count": 132 }, "/v2/blocks/": { "result": { - "block_index": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", "difficulty": 545259519, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", "difficulty": 545259519, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", - "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "block_time": 1731176557 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null }, { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" } ], - "next_cursor": 887, + "next_cursor": 902, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,32 +300,32 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f" + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 230, - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "block_index": 232, + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 230, + "block_index": 232, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -376,21 +376,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 230, + "block_index": 232, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 230, + "block_index": 232, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -424,21 +424,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 230, + "block_index": 232, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "object_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "block_index": 211, "confirmed": true, - "block_time": 1731176470 + "block_time": 1731184399 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "ed6f1301d3ff4dc65f2a49a54460e0dabfb830d4c8b4e97034fc1e770838bb6d", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "block_index": 188, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "offer_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "status": "valid", "confirmed": true, - "block_time": 1731176349 + "block_time": 1731184268 } ], "next_cursor": null, @@ -480,24 +480,24 @@ "/v2/blocks//destructions": { "result": [ { - "tx_index": 97, - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", - "block_index": 221, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "asset": "XCP", - "quantity": 100000000, - "tag": "burn fairmint payment", + "tx_index": 101, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "block_index": 228, + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "asset": "PREMINT", + "quantity": 50, + "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184472, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, - "locked": true + "locked": false }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.00000050" } ], "next_cursor": null, @@ -506,15 +506,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 103, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", "msg_index": 0, - "block_index": 229, + "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731176547, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -540,11 +540,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -564,11 +564,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731176356, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "tx_index": 103, - "block_index": 229, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_index": 231, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731176547, + "block_time": 1731184482, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -742,18 +742,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", - "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -765,18 +765,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 103, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "block_index": 229, - "block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1", - "block_time": 1731176547, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_time": 1731184482, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb:1 2 ", + "utxos_info": " 84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -810,23 +810,23 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 102, - "result_count": 105 + "next_cursor": 103, + "result_count": 106 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3986b41e5eda926e5af6bf93dd592d6198c8239fa21651c9dac95b315eda43e5", + "hash": "2e505dc63ab82a07e0134e27ee3e181ad2fa0c76fca87c1399c81e925af58b90", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,37 +836,38 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e4b9ef24b8a1d5bd5f52ecef6e797e3b2fab5d9bd5aa0eda36c118c81379ecb8bbbc220263a4aa8c7645b9664caf9" + "script_pub_key": "6a2cbe28aca0dafb17ce1f352590c02cf3a41b87ddd104da458fa211f15fb259be15ef10631daeefe49bc63a67ec" }, { "value": 4999990000, - "script_pub_key": "001478fbe8f7f6290d745bd2043cefd830b078836c1e" + "script_pub_key": "001479eb4f94974a9b1861dd9e7d28a893892d6e30ed" } ], "vtxinwit": [ - "304402205a3bb4f19d65490b0ed0f18fd82b90a8ebeb2adc4628848c6a82bd8876937028022078560c0a2bab5d16eb4a5d08cc00b5faa931a6b5d4645aa14f028155e117f78c01", - "029275eeeaf08440682fdc96a6f24c2ddef147cb8391da8606d024562c09a20c49" + "304402201efe949f5a57603f18b8f3364124342f4d944bf586d6c123567cb68e7282681c022074a79d6208049aceb10e3b4b95572f41c362f867a97c85ede1573777b9529ead01", + "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" ], "lock_time": 0, - "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", - "tx_id": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042" + "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", + "tx_id": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4" }, "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, + "message_type": "issuance", + "message_type_id": 22, "message_data": { + "asset_id": 101158363923, "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00001000" + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" } }, "btc_amount_normalized": "0.00000000" @@ -874,18 +875,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "f54bf63a342099ee256ceedca53c6e83692d8fbaf1a5d53b412ea7e4f25d9061", + "hash": "88a4f9b6979aaa04d89bb5045fcc3e503b4ee53a928cb8d18ff84aa25913b7bb", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -895,20 +896,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ec38656cbd3a40998704aa2ee2b97f43c66c2883939333f18d209671221b44c0fd0a22cf2737b67d4c3b2f81048be" + "script_pub_key": "6a2e8dfc30a1336d8a0b0589e56c79393ca3e528fe19c786b28f17a4a13023d3a0a6b94ff71b237f9be8de6c4da1cc4e" }, { "value": 4949930546, - "script_pub_key": "00144a10106dd819b4a98d0dd44f3e05c2218a76e3fd" + "script_pub_key": "001496548f3528bf80e16d1280561f950636bb3078d9" } ], "vtxinwit": [ - "3044022014473224ccdc1921c494e0563f554ccfaeefdec37f9894ae4f7fec59fc289b5a02205e638b37952da8cff4821ce452a25128a9e205ea887d9221eb0e44d08861778d01", - "03b5c242964ff77a72e8718015ddf5b77afbd72d9e0c558fe6294e1691af732d1b" + "304402202494c4d20fcab8e5a787c4baccf0781f09e202d2b1069fa8bd4ae505cb42042b0220578c6e05c8202a060c0c3e7d8d949a7d1d20ad21ce55f3886e97491bd5bbbeb001", + "02d6b428bff40e29aa065eb0bedfdc0f23953ba2300678c8811de551c15c226f8f" ], "lock_time": 0, - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_id": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd" + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_id": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2" }, "unpacked_data": { "message_type": "enhanced_send", @@ -916,7 +917,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -942,18 +943,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", - "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -967,18 +968,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_time": 1731176557, - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", - "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_time": 1731184491, + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -993,32 +994,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1029,20 +1030,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1052,24 +1053,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1079,24 +1080,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 887, + "event_index": 902, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 230, - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "block_index": 232, + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "msg_index": 1, "quantity": 2000000000, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", "status": "valid", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1106,43 +1107,43 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 886, + "next_cursor": 901, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1153,20 +1154,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1176,24 +1177,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1203,24 +1204,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 887, + "event_index": 902, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 230, - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "block_index": 232, + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "msg_index": 1, "quantity": 2000000000, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", "status": "valid", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1230,22 +1231,22 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 886, + "next_cursor": 901, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1253,7 +1254,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1265,11 +1266,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1277,11 +1278,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1295,29 +1296,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1332,7 +1333,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1350,19 +1351,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1372,24 +1373,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1399,36 +1400,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": null, @@ -1437,19 +1438,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1459,24 +1460,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1486,36 +1487,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": null, @@ -1528,7 +1529,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1538,7 +1539,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1549,7 +1550,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1559,7 +1560,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1570,7 +1571,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1580,7 +1581,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1591,7 +1592,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1601,7 +1602,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1612,7 +1613,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1622,7 +1623,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1636,17 +1637,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_hash": "7bafd23160b55e3e29d35c2214deecde61589e5c7a371573e9dbc393488f8c6a", - "block_time": 1731176428, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "block_hash": "7cb69028b1a5d53ee798c7800f6d84796d833751ddecbd7cdffae070149851b6", + "block_time": 1731184355, + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038078fbe8f7f6290d745bd2043cefd830b078836c1e80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8:0 4 ", + "utxos_info": " adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1654,14 +1655,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1669,7 +1670,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1688,17 +1689,17 @@ }, { "tx_index": 80, - "tx_hash": "6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c", + "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", "block_index": 204, - "block_hash": "352b35141cdbbef98f698b294d682b990a4bd969858009884fbb2d53a3346818", - "block_time": 1731176425, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "block_hash": "3f4feca9e0eb15fc2f0c0bdf2f1ebf3bc073809798605bf05451a8e233d121d7", + "block_time": 1731184351, + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038078fbe8f7f6290d745bd2043cefd830b078836c1e80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fdc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c:0 4 ", + "utxos_info": " 035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1706,14 +1707,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1721,7 +1722,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1740,17 +1741,17 @@ }, { "tx_index": 79, - "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "block_hash": "1900569dcfe5c6565fe56c1d41589f566df8829f59ca3408caa357df6505ccbc", - "block_time": 1731176420, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", + "block_time": 1731184347, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71:0 4 ", + "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1758,14 +1759,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1773,7 +1774,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1792,17 +1793,17 @@ }, { "tx_index": 78, - "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "block_hash": "7f0bfd25f4a893fc37c3e19193dd8c41b9a33802dae04e8ca23b38f1c0c24e73", - "block_time": 1731176407, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", + "block_time": 1731184342, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7:0 4 ", + "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1810,14 +1811,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1825,7 +1826,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1844,17 +1845,17 @@ }, { "tx_index": 77, - "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_hash": "022e81e0bd799b7848a7c4cc9de25ee9d9dfe1abbed9f411f4d6ecbf3f049b1e", - "block_time": 1731176404, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", + "block_time": 1731184339, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", + "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "supported": true, - "utxos_info": " bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042:1 2 ", + "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1862,12 +1863,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -1887,29 +1888,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", - "block_time": 1731176533 + "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "block_time": 1731184461 }, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731176533 + "block_time": 1731184461 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731176533, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1919,37 +1920,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731176533 + "block_time": 1731184461 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "block_time": 1731176470 + "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_time": 1731184399 }, - "tx_hash": "0ce5805af7adfcac6f6bd2dd791389167543337e1673266a8b7feec927b73b60", + "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", "block_index": 211, - "block_time": 1731176470 + "block_time": 1731184399 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731176470, + "block_time": 1731184399, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1959,9 +1960,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "0ce5805af7adfcac6f6bd2dd791389167543337e1673266a8b7feec927b73b60", + "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", "block_index": 211, - "block_time": 1731176470 + "block_time": 1731184399 }, { "event_index": 698, @@ -1969,15 +1970,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "status": "valid", - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "tx_index": 81, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1987,9 +1988,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_time": 1731176428 + "block_time": 1731184355 } ], "next_cursor": 698, @@ -1998,18 +1999,18 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "quantity": 10000, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "status": "valid", - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105, + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2019,22 +2020,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2044,22 +2045,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", - "block_index": 230, - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "block_index": 232, + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2069,30 +2070,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731176561.3852592, + "block_time": 1731184495.3943753, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "destination": "", "fee": 10000, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105, - "utxos_info": "61905df2e4a72e413bd5a5f1ba8f2d69836e3ca5dcee6c25ee9920343af64bf5:1 b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd:1 2 ", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, + "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -2106,7 +2107,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -2115,7 +2116,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2123,14 +2124,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2138,14 +2139,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2153,14 +2154,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2175,7 +2176,7 @@ "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2183,7 +2184,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2196,7 +2197,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2218,16 +2219,16 @@ "result": [ { "block_index": 225, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176533, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2239,16 +2240,16 @@ }, { "block_index": 205, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "event": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2260,16 +2261,16 @@ }, { "block_index": 204, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c", + "event": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176425, + "block_time": 1731184351, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2281,16 +2282,16 @@ }, { "block_index": 204, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176425, + "block_time": 1731184351, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2302,16 +2303,16 @@ }, { "block_index": 202, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2329,16 +2330,16 @@ "result": [ { "block_index": 203, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176420, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2350,20 +2351,20 @@ }, { "block_index": 203, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176420, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2371,16 +2372,16 @@ }, { "block_index": 202, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2392,20 +2393,20 @@ }, { "block_index": 202, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2413,20 +2414,20 @@ }, { "block_index": 201, - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", + "event": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176404, + "block_time": 1731184339, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2445,9 +2446,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "e67122031fbe6ca54f201857a06cd400bd560b3289b874b314f60c0268d3c979", + "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", "block_index": 128, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2455,7 +2456,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731176099, + "block_time": 1731184010, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2465,15 +2466,15 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 6, - "tx_hash": "4869a671921aae27de72f611a5bea4bb101af56c5cec3b57d1f0275ae40108ba", + "tx_index": 7, + "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", "block_index": 112, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2485,10 +2486,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2496,7 +2497,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731176420, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2509,10 +2510,10 @@ }, { "tx_index": 79, - "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2520,11 +2521,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731176420, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2533,10 +2534,10 @@ }, { "tx_index": 79, - "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2544,11 +2545,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731176420, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2557,10 +2558,10 @@ }, { "tx_index": 78, - "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2568,7 +2569,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2581,10 +2582,10 @@ }, { "tx_index": 78, - "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2592,11 +2593,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2611,10 +2612,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "3530bba2e2c336db38ee7580eb430255b366920148b82e4df929badd1738ac4a", + "tx_hash": "cfab684ec8edd380be6c9db2ca32fc6dbe63b99b299031523dc692ab1206395f", "block_index": 142, - "source": "0fe948759ec401143466b6bfd5dd7e25603172dc5b6f15672c783060a565c8c9:0", - "destination": "bcrt1qhl427cv9dyqktga2ama0lqgcaudp2ldmfsrggs", + "source": "7dc2e6130fd69aba3e5d5ad0d0dad43d1b6432f92a1ebeda31dca29605af0b5e:0", + "destination": "bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2622,11 +2623,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176150, + "block_time": 1731184082, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2651,9 +2652,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2662,7 +2663,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2673,7 +2674,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2690,9 +2691,9 @@ }, { "tx_index": 68, - "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2701,7 +2702,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2712,11 +2713,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176371, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2734,9 +2735,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2745,7 +2746,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2756,7 +2757,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2777,19 +2778,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "86285e6a31480551680eb77488bc321d874e7e2bd4c107c24f28413141926c8b", + "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2797,7 +2798,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2812,11 +2813,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176371, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2826,19 +2827,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2846,7 +2847,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2861,7 +2862,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2875,19 +2876,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2895,7 +2896,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2910,7 +2911,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2930,19 +2931,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "86285e6a31480551680eb77488bc321d874e7e2bd4c107c24f28413141926c8b", + "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2950,7 +2951,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2965,11 +2966,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176371, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -2979,19 +2980,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2999,7 +3000,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3014,7 +3015,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3028,19 +3029,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3048,7 +3049,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3063,7 +3064,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3083,19 +3084,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3103,7 +3104,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3118,7 +3119,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3132,19 +3133,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3152,7 +3153,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3167,7 +3168,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3187,19 +3188,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3207,7 +3208,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3222,7 +3223,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3236,19 +3237,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3256,7 +3257,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3271,7 +3272,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3290,16 +3291,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731176356, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -3310,14 +3311,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "b845201bcb1d1b13ffa1f15f70a01bad4bb2fe4b71c6bf094fed2aec41b3beeb", + "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -3332,20 +3333,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731176400, + "block_time": 1731184325, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "69726b6a91268bd621c4ea1d55a0d24865fcf5d24985d7fc731581f19d7065e2", + "tx_hash": "b2dc06d29e525017a11adcde012b34a5068a242556928012dc3728a2b6d2a718", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -3360,20 +3361,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731176218, + "block_time": 1731184154, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "5d42952fb34a86e3f942b4119e943cdcf4ed5072cf159de79202551b5cd673c9", + "tx_hash": "9c7807985defc6a3735e70993a5ce53e92fda09421b10a2c13252d7e4446d2f7", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -3388,20 +3389,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731176215, + "block_time": 1731184140, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "d3177739041dabef0b86a6905b55f6076dab9c6b15a7f49053b258776cf254e0", + "tx_hash": "75b01e8e818dff557e67c2b88e6daa0b01f41bf2cc67aa060f3c5b44cce93a28", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -3416,20 +3417,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731176201, + "block_time": 1731184137, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "4afe3ac27a7ba05dd11a71ca2043c84a1badc43ba1999826931a07b9284db1aa", + "tx_hash": "ff2ebb8c2298f81c37ccd43530558b91b6e2610eb6f80ca58bd160e34dde91dd", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "transfer": false, "callable": false, "call_date": 0, @@ -3444,7 +3445,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731176196, + "block_time": 1731184133, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3458,8 +3459,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -3467,16 +3468,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731176400, - "last_issuance_block_time": 1731176400, + "first_issuance_block_time": 1731184325, + "last_issuance_block_time": 1731184325, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 10000000000, @@ -3484,16 +3485,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731176196, - "last_issuance_block_time": 1731176215, + "first_issuance_block_time": 1731184133, + "last_issuance_block_time": 1731184140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 180, @@ -3501,16 +3502,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731176176, - "last_issuance_block_time": 1731176184, + "first_issuance_block_time": 1731184105, + "last_issuance_block_time": 1731184122, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -3518,16 +3519,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731176138, - "last_issuance_block_time": 1731176138, + "first_issuance_block_time": 1731184060, + "last_issuance_block_time": 1731184060, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 40, @@ -3535,8 +3536,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731176091, - "last_issuance_block_time": 1731176094, + "first_issuance_block_time": 1731184002, + "last_issuance_block_time": 1731184005, "supply_normalized": "0.00000040" } ], @@ -3549,8 +3550,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -3558,16 +3559,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731176400, - "last_issuance_block_time": 1731176400, + "first_issuance_block_time": 1731184325, + "last_issuance_block_time": 1731184325, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 10000000000, @@ -3575,16 +3576,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731176196, - "last_issuance_block_time": 1731176215, + "first_issuance_block_time": 1731184133, + "last_issuance_block_time": 1731184140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 180, @@ -3592,16 +3593,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731176176, - "last_issuance_block_time": 1731176184, + "first_issuance_block_time": 1731184105, + "last_issuance_block_time": 1731184122, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -3609,16 +3610,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731176138, - "last_issuance_block_time": 1731176138, + "first_issuance_block_time": 1731184060, + "last_issuance_block_time": 1731184060, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 40, @@ -3626,8 +3627,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731176091, - "last_issuance_block_time": 1731176094, + "first_issuance_block_time": 1731184002, + "last_issuance_block_time": 1731184005, "supply_normalized": "0.00000040" } ], @@ -3640,8 +3641,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -3649,16 +3650,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731176400, - "last_issuance_block_time": 1731176400, + "first_issuance_block_time": 1731184325, + "last_issuance_block_time": 1731184325, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 10000000000, @@ -3666,16 +3667,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731176196, - "last_issuance_block_time": 1731176215, + "first_issuance_block_time": 1731184133, + "last_issuance_block_time": 1731184140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 180, @@ -3683,16 +3684,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731176176, - "last_issuance_block_time": 1731176184, + "first_issuance_block_time": 1731184105, + "last_issuance_block_time": 1731184122, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 100000000000, @@ -3700,16 +3701,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731176138, - "last_issuance_block_time": 1731176138, + "first_issuance_block_time": 1731184060, + "last_issuance_block_time": 1731184060, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "owner": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false, "supply": 40, @@ -3717,8 +3718,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731176091, - "last_issuance_block_time": 1731176094, + "first_issuance_block_time": 1731184002, + "last_issuance_block_time": 1731184005, "supply_normalized": "0.00000040" } ], @@ -3729,17 +3730,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "block_hash": "1900569dcfe5c6565fe56c1d41589f566df8829f59ca3408caa357df6505ccbc", - "block_time": 1731176420, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", + "block_time": 1731184347, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71:0 4 ", + "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3747,14 +3748,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3762,7 +3763,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3781,17 +3782,17 @@ }, { "tx_index": 78, - "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "block_hash": "7f0bfd25f4a893fc37c3e19193dd8c41b9a33802dae04e8ca23b38f1c0c24e73", - "block_time": 1731176407, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", + "block_time": 1731184342, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803fb9a93e4416c1a3e2893e4aab0a99776e32808a80c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037804a10106dd819b4a98d0dd44f3e05c2218a76e3fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7:0 4 ", + "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3799,14 +3800,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3814,7 +3815,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3833,17 +3834,17 @@ }, { "tx_index": 77, - "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_hash": "022e81e0bd799b7848a7c4cc9de25ee9d9dfe1abbed9f411f4d6ecbf3f049b1e", - "block_time": 1731176404, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", + "block_time": 1731184339, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", + "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "supported": true, - "utxos_info": " bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042:1 2 ", + "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3851,12 +3852,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3867,17 +3868,17 @@ }, { "tx_index": 76, - "tx_hash": "b845201bcb1d1b13ffa1f15f70a01bad4bb2fe4b71c6bf094fed2aec41b3beeb", + "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", "block_index": 200, - "block_hash": "1b78e3a6638da5c8a97046fa67947f4a6d87582e21079b4f24d7f2c2973a2af4", - "block_time": 1731176400, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "4c8cea3b940509277a1a9e82b7a70c941056f55d8a6bd5477c298117af4ebbe6", + "block_time": 1731184325, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " b845201bcb1d1b13ffa1f15f70a01bad4bb2fe4b71c6bf094fed2aec41b3beeb:1 2 ", + "utxos_info": " e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3902,17 +3903,17 @@ }, { "tx_index": 68, - "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 193, - "block_hash": "3ecded8a2f0da49d2d2557915bac70bbb8e6efcb91a3a2c987ae3f9d2f65020d", - "block_time": 1731176367, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "block_hash": "5b3366fe7b95aa0e86fe3b4b08c1fe46718c09b32bafa885c3d77e5f3177e65f", + "block_time": 1731184286, + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6:1 2 ", + "utxos_info": " 71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3929,7 +3930,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3947,20 +3948,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731176167, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -3982,9 +3983,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4001,7 +4002,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176232, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4029,9 +4030,9 @@ }, { "tx_index": 55, - "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4048,7 +4049,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4076,9 +4077,9 @@ }, { "tx_index": 62, - "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4095,7 +4096,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176349, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4123,9 +4124,9 @@ }, { "tx_index": 64, - "tx_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "block_index": 211, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4142,7 +4143,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176470, + "block_time": 1731184399, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4175,10 +4176,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", + "tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4203,7 +4204,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731176184, + "block_time": 1731184122, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4215,10 +4216,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "6d694293e0f0e4d171b0ae784f3e75967aa88e4c4b87296efc425679c3c7117e", + "tx_hash": "b9b130610d358f7e938ae03918b97c1a36f23f1db5f80c318bf053f98fd24519", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4243,7 +4244,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731176171, + "block_time": 1731184101, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4252,10 +4253,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6b3ce83ab8a74fcbc8b2e0c2b3a3616052e1e020fcb855d0ae4d62c92282e704", + "tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4280,7 +4281,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731176091, + "block_time": 1731184002, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4292,10 +4293,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", + "tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4320,7 +4321,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731176074, + "block_time": 1731183977, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4332,10 +4333,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "790a591f0d1dcbf55f73052ba3cff7ca201940efc5b2d3a3b443f74833c1b319", + "tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4360,7 +4361,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731176069, + "block_time": 1731183973, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4372,10 +4373,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "4a3545d52af7007e7db3383069921174622ea6383ae3d7d14e7789924d2c2684", + "tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4400,7 +4401,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731176051, + "block_time": 1731183954, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4418,22 +4419,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "02a7ad5cd4f2057d0ec24af7af821c1e62c968fe2ec1f00505b80530e2b782c5", + "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", "tx_index": 46, "block_index": 150, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176184, + "block_time": 1731184122, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4442,22 +4443,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "90b6adcd471de4bc8de7de6e1b76ed03e3e948d7fad39e91b6c7373c16da56b6", + "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", "tx_index": 45, "block_index": 149, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176180, + "block_time": 1731184109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4466,22 +4467,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0e7e0c7203f598c1861cc672aa2ffb73216fefe46fd0bc5279acdf021a3cc3ab", + "tx_hash": "e6484d6b5cb8c94f8d0efa3846edc38d87ab2d67b204a9eee1a1f83ce7e24292", "tx_index": 23, "block_index": 127, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "6b3ce83ab8a74fcbc8b2e0c2b3a3616052e1e020fcb855d0ae4d62c92282e704", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176094, + "block_time": 1731184005, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4490,22 +4491,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "9037b85471f131bd57babb97e5093cd48e596df78dd6ecb36aac3fa11dc25a54", + "tx_hash": "1ee7360c16457de587ecf59bcaf00b8dde0e96c6586d9b9876190df06d62e44e", "tx_index": 21, "block_index": 125, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176087, + "block_time": 1731183998, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4514,22 +4515,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "b477578b3afa070d2af2fb34efacacd0a191da7ef93237867df443349418ddf5", + "tx_hash": "2a06b74afa4de1bc90cee21083b7eb8b99e1d48531098f54aa821b6ab90f29ef", "tx_index": 20, "block_index": 124, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176082, + "block_time": 1731183984, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4538,22 +4539,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "46e8b0ff1d5226d613493293a2dd0fb820f1b0a62a65c4f1b819a9ac1bd3556e", + "tx_hash": "526c23a46822cd2319f2638275c18ea14cd971d10ca25858803a942310dff1df", "tx_index": 19, "block_index": 123, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "bf243b2baa62d2a06e1ac7f2a0318ba4db05cd096459c8a9531a0e6db469f0ef", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176078, + "block_time": 1731183980, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4562,22 +4563,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fb535e872b78984f5095828a799131c9ca90e491283d393393364743aaabcc6", + "tx_hash": "de5fc8839ab448caf4def319fb2df69bce81e22b850593c9dfb68c59db536b08", "tx_index": 15, "block_index": 118, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "790a591f0d1dcbf55f73052ba3cff7ca201940efc5b2d3a3b443f74833c1b319", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176060, + "block_time": 1731183961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4586,22 +4587,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "7df71cdfaab301eecf66dad1886b51833bd6404c2bdd55ff258b78048b5f1ca9", + "tx_hash": "c3892e408177e1ce4876e4311684edccf20a98c32cbc221510b6261bbfb26fb1", "tx_index": 11, "block_index": 114, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "4a3545d52af7007e7db3383069921174622ea6383ae3d7d14e7789924d2c2684", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176044, + "block_time": 1731183947, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4623,8 +4624,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4637,12 +4638,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4658,7 +4659,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4669,9 +4670,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985820, - "btc_fee": 14180, - "rawtransaction": "0200000000010166603a5c44ee9063f80ddefd3fd0e08b3769876e14b4b5aabdbc4b04bc0ad53a0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff0200000000000000002b6a29e2b1191893275660f4e37bef02f79d058f14611525ad08a4e091fe1c39b753f6e898955399fd8a136a9cba052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999985834, + "btc_fee": 14166, + "rawtransaction": "02000000000101d0c4dbf092d67451d649c384eafc573ab03e1757ddb22d301dd4d00692586c070000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff0200000000000000002b6a291fce192764c745e2b5b2882bed667a20ede8e9fe94b03e50e2c23ef6fd6144a06139b6b6409aff0cd6aaba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4689,24 +4690,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "order_match_id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "data": "434e5452505254590b92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980952, - "btc_fee": 18048, - "rawtransaction": "02000000000101e8dec2eea75a1fc0d986cdca8dbbcf5432fdbf8e6c4d8af2ad125314d8be3bdb0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03e803000000000000160014b28cbfb1716940138dec1c2d0ec5625354b6bbd300000000000000004b6a49da28870a5e217c262eaf3cfd4314cc91ea730f6385ae96980fde8cb510874f32bf471036517602d6fa8101b15432796a3ba6f6ad0a5e008e373e101fd288b2d84972f0048404070baa98a7052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999980970, + "btc_fee": 18030, + "rawtransaction": "020000000001014725a87e98d663a7c98177e322a63e6b456c4197f75cade8f6619172041ba72a0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e803000000000000160014182c7db9515d58f42e8845e4f48551a47d2133a300000000000000004b6a493794b54a590c6913a5bc9267bd5e71985e1fde5d1917deba48aa332154182c89458618af63d1359e0f956fe83e397a72a3734d0284f026fd512f0a34c9ef353093b9af53cb5188ce79aaa7052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", - "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "order_match_id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "status": "valid" } } @@ -4715,7 +4716,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4724,30 +4725,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985816, - "btc_fee": 13184, - "rawtransaction": "02000000000101530583b58f7aea0416f5f57699bc358b975642973d1ae36ed2e4a841e13752b60000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac98ba052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000" + "btc_change": 4999985829, + "btc_fee": 13171, + "rawtransaction": "02000000000101ae0cf26a54ef9a3eec94975f8edafdf18d655c8fede60897c4d99d11b0ec50270000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "offer_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "data": "434e54525052545946839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "btc_in": 90000, "btc_out": 0, - "btc_change": 75820, - "btc_fee": 14180, - "rawtransaction": "0200000000010100bead1e39fc4e1ba3ccda52684c0565c0cdfcfe0669e8640b27d03d14452a5601000000160014904e18f762fc9bf9003dee31476e8bc70b13cc38ffffffff0200000000000000002b6a29e8712d1292926a1884dabe07bbe144f0fafddf9414b63a69ba6e68ac186586d5a686d3695a8cbdab8c2c28010000000000160014904e18f762fc9bf9003dee31476e8bc70b13cc3802000000000000", + "btc_change": 75834, + "btc_fee": 14166, + "rawtransaction": "020000000001017e40b79857bd52d2941ca388273c9d20781ca8fd4f28b841f4854e167e949b8301000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff0200000000000000002b6a29e73c36a562e34b4ebd6b6b0be35e9c9184449dc02db5dfbd9b27c8723d4347f8b6f86fca57a49a337b3a28010000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "status": "valid" } } @@ -4756,7 +4757,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4774,9 +4775,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986347, - "btc_fee": 13653, - "rawtransaction": "02000000000101ddc92681fdf9092e401c2bc83869a7a24dd81de88ba1c1703171a5b951121f3c0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000226a203485e19a93814559465f788e51d1c3a2f250ac6f832a22e3f9598164e100015eabbc052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999986361, + "btc_fee": 13639, + "rawtransaction": "0200000000010136e49fa9c46cf51e4e2ad56bc06a814bf25b8f8c58b25778e1e10a1886aa6e920000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000226a2052b752b0985fc771a3b2c8df4d14f2d4e3b41f0a207383180baea634897708abb9bc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4792,7 +4793,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4815,9 +4816,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859560, - "btc_fee": 14239, - "rawtransaction": "020000000001012fa17907628d087df7da2c789250c0e2b5e46d49759a9feea36236cb7731d4d10200000016001431337e2f48ce3009bd627f9499c594f65f547f41ffffffff0200000000000000002c6a2a4cd6bf00df4177693133bc44eb4999ccb63d3f54e58953b19c1965a296a01cffc0c0de5731ab29bc58b1e8dc08270100000016001431337e2f48ce3009bd627f9499c594f65f547f4102000000000000", + "btc_change": 4949859575, + "btc_fee": 14224, + "rawtransaction": "02000000000101fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a0200000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebbffffffff0200000000000000002c6a2abfc115f234dec38bd383f5495613c732f45285bdda1d459c9bb46e258e37a4a13265c3182110f19181aff7dc08270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4839,7 +4840,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -4847,7 +4848,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -4864,9 +4865,9 @@ "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986288, - "btc_fee": 13712, - "rawtransaction": "02000000000101516aa60816d12cb783ede6ea76c010e42e69f76533c46fd14522ce2e0e0579520000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000236a217df7f2e36740768eb0496412e5f7802233b87e23fe354430b77cc895cdf440255470bc052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999986302, + "btc_fee": 13698, + "rawtransaction": "020000000001016fb8ead5a29d3287b486fd926db8f12677885e6e0fa73c28218a3f9e5f6400d10000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a213561528d9bd0516b8eb3391a4f9e11c7b185425279854713e2cdcd82cdeafbdda17ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4883,10 +4884,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "transfer_destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "lock": false, "reset": false, @@ -4898,9 +4899,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983750, - "btc_fee": 15704, - "rawtransaction": "02000000000101b9c6bd2be54f1d543f224b5dc83bc03a2790d6eb01e52d99ccc0dbd7067b1f380000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03220200000000000016001478fbe8f7f6290d745bd2043cefd830b078836c1e0000000000000000236a2186dd2f50434d5506ec30cd9476e1a30f8bfc24b139672fe6161dd8daf02d1d90ff86b2052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999983766, + "btc_fee": 15688, + "rawtransaction": "0200000000010147f23f61d2264f07a84e3102b2fd6629925a487361cc07adb16cfc05ba73ffcd0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000236a21281ae8b29a0bd2a503135a3408b6b3aa2b2d2c3cbbb150fe59418b35848f470dfa96b2052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4925,16 +4926,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", 1 ], [ "FAIRMINTC", - "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", 2 ] ], @@ -4943,26 +4944,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e5452505254590300028078fbe8f7f6290d745bd2043cefd830b078836c1e803fb9a93e4416c1a3e2893e4aab0a99776e32808a4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028079eb4f94974a9b1861dd9e7d28a893892d6e30ed8088cd42138cc08788c42bd1c85f4510c0b80fe1964000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785315, - "btc_fee": 20685, - "rawtransaction": "02000000000101a831e0e4fbfab8eea8630f9aca132d8ce8a6587f92796dbb268a5d5096c90bb1030000001600143fb9a93e4416c1a3e2893e4aab0a99776e32808affffffff03e803000000000000695121027694bc257794953e93f579e7106e648f302952745961e6d101df929449e13ebe2103df49a7618ebd3574e9523ebfaf1afc385b5a7f6f6fce711f8468cba4e9aaf2262102832f10849f50b8ebea0c95ce824845185d2982552b1b53ac9cc5c10746d16b2e53aee803000000000000695121036994bc257794953e93e679e590169f67c7fb7b792d3a34d53d344aa4f999bd752103b357265e37140b30ff939d5d2624b69351c308015d4efb5f8468f74a562e4b9b2102832f10849f50b8ebea0c95ce824845185d2982552b1b53ac9cc5c10746d16b2e53aee3ba0727010000001600143fb9a93e4416c1a3e2893e4aab0a99776e32808a02000000000000", + "btc_change": 4949785336, + "btc_fee": 20664, + "rawtransaction": "02000000000101295775dc45471111320bc32fd52bb96312a1fdc28458f7b31f7b0f874180bbad0300000016001488cd42138cc08788c42bd1c85f4510c0b80fe196ffffffff03e80300000000000069512102a003a408e37f096d5b795d6dad457a132dccc88cc52bf92c12b7c977ebf512b22103d0d4fe874d78904c81c173b2a0917401c689a20a1f5c679f92c5e13483f58124210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aee80300000000000069512102bf03a408e37f096d5b6a5d6f2d3c915cb97f8217dd4a24b26f9b61e462d87c502102e0397f0f803a83c04146fb768b40bc5e839962b210bdf1df92c5ddda3c7138e2210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aef8ba07270100000016001488cd42138cc08788c42bd1c85f4510c0b80fe19602000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "quantity": 1, "memo": null, "memo_is_hex": null @@ -4974,7 +4975,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -4992,7 +4993,7 @@ "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -5004,9 +5005,9 @@ "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985234, - "btc_fee": 14766, - "rawtransaction": "020000000001015d87c28303295966d0221573d44d52e3f843f356ec25eb47c6f3a62086e233740000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000356a33b24a1ffebe856c47a3098e53caf957b9e78269558bff9c1ce56bab5c52802e9b7bf39931899b74a7abf2e563342d9bb744c1c752b8052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999985249, + "btc_fee": 14751, + "rawtransaction": "020000000001011848af13e7d7484551083a2a8d0618191a4d9a2024e27e6dc5448121489e5dd00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000356a33af4443a35a08c71f78fbbfd7c224ff10eb0cc24bbf795462a769cb419fef2b4cee8a763ddfe9c5d9acf9502da0afa70b73726361b8052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5028,8 +5029,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5046,19 +5047,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8803fb9a93e4416c1a3e2893e4aab0a99776e32808a", + "data": "434e54525052545902000000000000000100000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985527, - "btc_fee": 14473, - "rawtransaction": "020000000001017feb6a0aa9a9ad90efc14ad31ac130524a769e8335b729bd8c589fac9008706a0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000306a2e27bde0b7b94be7d482dc68625bedd6672b207cafd96396cacb44b020c066b74d6d08321c68bcea6f238b87efef7677b9052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999985541, + "btc_fee": 14459, + "rawtransaction": "020000000001019d83119f77d6ac6db1637aa1fac5a5a7bc1471cdb2324fdb41efbc826b8a56d00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000306a2e51240f9fe445df5d27175afea6740bc38ce3acaa19f39b65b4632910ab4c39536d53f4d5c009886fbe0b6e363b3085b9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "quantity_normalized": "0.00001000" } @@ -5068,24 +5069,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e54525052545904803fb9a93e4416c1a3e2893e4aab0a99776e32808a07ffff", + "data": "434e545250525459048088cd42138cc08788c42bd1c85f4510c0b80fe19607ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986288, - "btc_fee": 13712, - "rawtransaction": "0200000000010127b8e6b115217126f5fc9cdf8272b29da141c97b90609279764bc7eafd744f230000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000236a21fb5e725e430291571375525a9476262f76e869ce392a2944fb6a24fcfe757fb81970bc052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999986302, + "btc_fee": 13698, + "rawtransaction": "020000000001010b460e916325477555b7f4c1282f3c45fb2adcc8de67feb46ca4cd8319856b5d0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a21ac2ad83593e7fed0f54ee561a82a2e68c4df691b7ee9b09af1832476d1698cbe437ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "flags": 7, "memo": "ffff" } @@ -5095,8 +5096,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "quantity": 1000, "skip_validation": false }, @@ -5104,9 +5105,9 @@ "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984644, - "btc_fee": 14356, - "rawtransaction": "0200000000010183fd9883d9ca8af48976cf69eccf5f44a5217497e4e9b1fda9b8ce2ddabad40c0000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03e8030000000000001600144a10106dd819b4a98d0dd44f3e05c2218a76e3fd00000000000000000c6a0a105a7a4ada860998d27604b6052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999984658, + "btc_fee": 14342, + "rawtransaction": "020000000001018182b8cc2135d5f3054535fd5fb35010a4b31af243ccf5328d283fdefa16792c0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e80300000000000016001496548f3528bf80e16d1280561f950636bb3078d900000000000000000c6a0aa1c90e5caab448e7696312b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5119,7 +5120,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5149,9 +5150,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985468, - "btc_fee": 14532, - "rawtransaction": "020000000001018d834039f4e65b7f2e27ed688aea81e32e647779fcfb49422e30157bf42a77360000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000316a2f34ed454b25170b162e2c470a6fb0f12e5b3ff0e649f0f2be2279afd40228ba6d79e7c6646287e9efe95ff892772a133cb9052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999985483, + "btc_fee": 14517, + "rawtransaction": "020000000001016d2bb7c88ee92d38fbbc7ebc5716368d636d2047bd9f6cf79fbec8b5ddab0fd30000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000316a2fa45af45f5e42fd69f25e66baec8c7c0cb97594befdbb0f4068c6e1d2362d3dc65fc83f6799fbc8c7a65d9a5fa31d044bb9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5186,14 +5187,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "divisible": true, "locked": false }, @@ -5203,9 +5204,9 @@ "data": "434e5452505254595b4f50454e464149527c30", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987109, - "btc_fee": 12891, - "rawtransaction": "020000000001012cee1995c87b76fce294ee4d72a669909b30a417af1ff6641deb5e8b4d3caa800000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff020000000000000000156a13ff553fe9b87d0ae14de8a0aecc49ffcaaefcd7a5bf052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999987122, + "btc_fee": 12878, + "rawtransaction": "020000000001010b1f49707b92e5db73657e44477b6ec5f3814884f7d2f4cde664e611993592dc0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000156a13ed2c2f1f171bd7f5768602e818848ab51ca9f2b2bf052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5220,7 +5221,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5238,9 +5239,9 @@ "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984629, - "btc_fee": 14825, - "rawtransaction": "020000000001012742d5f999ff562898b5d3b764fba925594a826a3827c7dce3ca46031035e9b60000000016001478fbe8f7f6290d745bd2043cefd830b078836c1effffffff03220200000000000016001478fbe8f7f6290d745bd2043cefd830b078836c1e0000000000000000146a12ea5ac724947ec31e8ed7c8b9ae94db14e0fef5b5052a0100000016001478fbe8f7f6290d745bd2043cefd830b078836c1e02000000000000", + "btc_change": 4999984644, + "btc_fee": 14810, + "rawtransaction": "020000000001017b72faaf54326ad3b64950353e6ad2f78e4dc55c73599c0abb9728b9c70ae7e90000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000146a122973211cb8798b3a75f6d7592cacab38b90104b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5256,22 +5257,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713072613733616c6b39797868676b376a717337776c6b70736b707567786d71377364756a7571", + "data": "434e54525052545966626372743171303834356c39796866326433736377616e65376a3332796e33796b6b7576386439306d396a37", "btc_in": 4949951000, "btc_out": 0, - "btc_change": 4949925510, - "btc_fee": 25490, - "rawtransaction": "020000000001022fa17907628d087df7da2c789250c0e2b5e46d49759a9feea36236cb7731d4d100000000160014904e18f762fc9bf9003dee31476e8bc70b13cc38ffffffffbb3a423c7cf4b50e362701bc0a201595a5dedb3cec9f20a4a9b7745dd437bb9f01000000160014904e18f762fc9bf9003dee31476e8bc70b13cc38ffffffff020000000000000000376a354cd6bf00df4177695b51df369f78e8fcc55c086784e5388b0d610dc5fd97768d5bf7a93b5adb5ad74cc48b9dc1925799c37be1b44686de092701000000160014904e18f762fc9bf9003dee31476e8bc70b13cc3802000002000000000000", + "btc_change": 4949925536, + "btc_fee": 25464, + "rawtransaction": "02000000000102fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a00000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffffe7054d66d51d4e23e49a966bb359c4ddadb80b254c2ee09570395343745fb38401000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff020000000000000000376a35bfc115f234dec38bb9e1963b2222b602cd66b0d1e3642df941d05d56ed40c5ccbf52a92b13699fa29cc4c19d61fe5194348c9c1da3a0de092701000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq" + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7" } } } @@ -5282,25 +5283,42 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "owner": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "owner": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 231, + "last_issuance_block_index": 231, + "confirmed": true, + "first_issuance_block_time": 1731184482, + "last_issuance_block_time": 1731184482, + "supply_normalized": "0.00000000" + }, + { + "asset": "PREMINT", + "asset_id": "4837764613", + "asset_longname": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": false, "supply": 0, "description": "", - "first_issuance_block_index": 229, - "last_issuance_block_index": 229, + "first_issuance_block_index": 227, + "last_issuance_block_index": 228, "confirmed": true, - "first_issuance_block_time": 1731176547, - "last_issuance_block_time": 1731176547, + "first_issuance_block_time": 1731184468, + "last_issuance_block_time": 1731184472, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": false, "supply": 0, @@ -5308,16 +5326,16 @@ "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731176533, - "last_issuance_block_time": 1731176538, + "first_issuance_block_time": 1731184461, + "last_issuance_block_time": 1731184464, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": false, "supply": 0, @@ -5325,16 +5343,16 @@ "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731176523, - "last_issuance_block_time": 1731176527, + "first_issuance_block_time": 1731184450, + "last_issuance_block_time": 1731184453, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true, "supply": 100000000, @@ -5342,38 +5360,21 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731176515, - "last_issuance_block_time": 1731176518, + "first_issuance_block_time": 1731184444, + "last_issuance_block_time": 1731184447, "supply_normalized": "1.00000000" - }, - { - "asset": "LOCKDESC", - "asset_id": "92703121214", - "asset_longname": "", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "divisible": true, - "locked": true, - "supply": 12000000000, - "description": "My super asset LOCKDESC", - "first_issuance_block_index": 216, - "last_issuance_block_index": 219, - "confirmed": true, - "first_issuance_block_time": 1731176500, - "last_issuance_block_time": 1731176511, - "supply_normalized": "120.00000000" } ], - "next_cursor": 17, - "result_count": 18 + "next_cursor": 22, + "result_count": 19 }, "/v2/assets/": { "result": { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "owner": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true, "supply": 100000000, @@ -5381,15 +5382,15 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731176515, - "last_issuance_block_time": 1731176518, + "first_issuance_block_time": 1731184444, + "last_issuance_block_time": 1731184447, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5397,14 +5398,14 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5412,7 +5413,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -5425,7 +5426,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5447,9 +5448,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5466,7 +5467,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176232, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5494,9 +5495,9 @@ }, { "tx_index": 55, - "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5513,7 +5514,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5541,9 +5542,9 @@ }, { "tx_index": 62, - "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5560,7 +5561,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176349, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5588,9 +5589,9 @@ }, { "tx_index": 64, - "tx_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", + "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", "block_index": 211, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5607,7 +5608,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176470, + "block_time": 1731184399, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5635,9 +5636,9 @@ }, { "tx_index": 56, - "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "block_index": 182, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5654,7 +5655,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176315, + "block_time": 1731184235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5687,13 +5688,13 @@ "/v2/assets//matches": { "result": [ { - "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 55, - "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5707,7 +5708,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731176425, + "block_time": 1731184351, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5727,13 +5728,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "tx0_index": 55, - "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 56, - "tx1_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", - "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5747,7 +5748,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731176315, + "block_time": 1731184235, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5767,13 +5768,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3_e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", + "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", "tx0_index": 53, - "tx0_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 54, - "tx1_hash": "e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", - "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5787,7 +5788,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731176232, + "block_time": 1731184167, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5807,13 +5808,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 64, - "tx0_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5827,7 +5828,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731176533, + "block_time": 1731184461, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5854,20 +5855,20 @@ "result": [ { "block_index": 221, - "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -5875,20 +5876,20 @@ }, { "block_index": 221, - "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -5901,17 +5902,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 230, + "block_index": 232, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5922,17 +5923,17 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 229, - "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 231, + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "tx_index": 103, + "event": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176547, + "block_time": 1731184482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5943,17 +5944,17 @@ "quantity_normalized": "0.50000000" }, { - "block_index": 225, - "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "block_index": 227, + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", - "tx_index": 100, + "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176533, + "block_time": 1731184468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5964,17 +5965,17 @@ "quantity_normalized": "0.50000000" }, { - "block_index": 222, - "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "block_index": 225, + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", - "tx_index": 98, + "event": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176523, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5985,17 +5986,17 @@ "quantity_normalized": "0.50000000" }, { - "block_index": 221, - "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 222, + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "XCP", - "quantity": 100000000, - "action": "burn fairmint payment", - "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", - "tx_index": 97, + "quantity": 50000000, + "action": "fairminter fee", + "event": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", + "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184450, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6003,11 +6004,11 @@ "divisible": true, "locked": true }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.50000000" } ], - "next_cursor": 80, - "result_count": 54 + "next_cursor": 81, + "result_count": 55 }, "/v2/assets//dividends": { "result": [], @@ -6018,14 +6019,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, @@ -6040,20 +6041,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, @@ -6068,7 +6069,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731176515, + "block_time": 1731184444, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6079,11 +6080,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6091,7 +6092,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6104,10 +6105,10 @@ }, { "tx_index": 81, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6115,7 +6116,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6128,10 +6129,10 @@ }, { "tx_index": 80, - "tx_hash": "6d985166e10f3e024507eedd81526c2afcfcba8064aafaacf24fcede2dff148c", + "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", "block_index": 204, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6139,7 +6140,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731176425, + "block_time": 1731184351, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6152,10 +6153,10 @@ }, { "tx_index": 79, - "tx_hash": "b296ccbf0bf5228d7a6ae997a050071386589c201960ee93805408cda7539b71", + "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", "block_index": 203, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6163,7 +6164,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731176420, + "block_time": 1731184347, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6176,10 +6177,10 @@ }, { "tx_index": 78, - "tx_hash": "563171800b5c2647b4750275d7ea2ad82919d1e713b7053f1644816376ed8fb7", + "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6187,7 +6188,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6206,9 +6207,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6217,7 +6218,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6228,7 +6229,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6245,9 +6246,9 @@ }, { "tx_index": 29, - "tx_hash": "9cab91f61aff6e4597656af7b4a14ec3b204354aa2bfc73a0a5dbcd24baf79bb", + "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", "block_index": 133, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6256,7 +6257,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6267,7 +6268,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176115, + "block_time": 1731184028, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6284,9 +6285,9 @@ }, { "tx_index": 30, - "tx_hash": "e0f3547fff4c8c32e793e4655e3ad19291ea0523e3f4f2453bd06ff757092f14", + "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", "block_index": 141, - "source": "mqZAbVvuhp3pLr44GVZo8GTSZmHMphpnQX", + "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6294,10 +6295,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c0a105c0ea4c80b165c4b635bc6fd1ca600b0865cf563d0f1b3b27d4827e0905", - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -6306,7 +6307,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176145, + "block_time": 1731184078, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6323,18 +6324,18 @@ }, { "tx_index": 33, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6345,7 +6346,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6367,9 +6368,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6378,7 +6379,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6389,7 +6390,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6409,7 +6410,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -6418,7 +6419,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -6426,7 +6427,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -6435,7 +6436,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -6448,29 +6449,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6485,7 +6486,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6499,27 +6500,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e36f4e5741211eed3fb0532f8c01cdd0fd09859bb4663b220f95bb425b054882", + "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", "block_index": 138, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "destination": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6534,7 +6535,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731176135, + "block_time": 1731184056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6548,19 +6549,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6568,7 +6569,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6583,7 +6584,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6597,19 +6598,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6617,7 +6618,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6632,7 +6633,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6655,10 +6656,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "tx_index": 96, "block_index": 221, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -6683,7 +6684,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -6701,22 +6702,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -6737,9 +6738,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6756,7 +6757,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176232, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6784,9 +6785,9 @@ }, { "tx_index": 56, - "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "block_index": 182, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6803,7 +6804,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176315, + "block_time": 1731184235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6831,9 +6832,9 @@ }, { "tx_index": 62, - "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6850,7 +6851,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176349, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6878,9 +6879,9 @@ }, { "tx_index": 55, - "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6897,7 +6898,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176407, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6925,9 +6926,9 @@ }, { "tx_index": 58, - "tx_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "block_index": 205, - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -6944,7 +6945,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176428, + "block_time": 1731184355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6976,10 +6977,10 @@ }, "/v2/orders/": { "result": { - "tx_index": 102, - "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "block_index": 228, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_index": 103, + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -6987,7 +6988,7 @@ "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 249, + "expire_index": 251, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -6996,7 +6997,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731176544, + "block_time": 1731184478, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7007,7 +7008,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -7026,31 +7027,31 @@ "/v2/orders//matches": { "result": [ { - "id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "tx0_index": 101, - "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", - "tx0_address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", - "tx1_index": 102, - "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "tx1_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx0_index": 102, + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx1_index": 103, + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 227, - "tx1_block_index": 228, - "block_index": 228, + "tx0_block_index": 229, + "tx1_block_index": 230, + "block_index": 230, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 248, + "match_expire_index": 250, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731176544, + "block_time": 1731184478, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -7073,15 +7074,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "btc_amount": 2000, - "order_match_id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "status": "valid", "confirmed": true, - "block_time": 1731176315, + "block_time": 1731184235, "btc_amount_normalized": "0.00002000" } ], @@ -7092,9 +7093,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "block_index": 182, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7112,7 +7113,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731176315, + "block_time": 1731184235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7138,9 +7139,9 @@ }, { "tx_index": 58, - "tx_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "block_index": 205, - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7158,7 +7159,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731176428, + "block_time": 1731184355, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,9 +7185,9 @@ }, { "tx_index": 53, - "tx_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", + "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", "block_index": 179, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7204,7 +7205,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176232, + "block_time": 1731184167, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7230,9 +7231,9 @@ }, { "tx_index": 55, - "tx_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", + "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", "block_index": 202, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7250,7 +7251,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176407, + "block_time": 1731184342, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7276,9 +7277,9 @@ }, { "tx_index": 62, - "tx_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", + "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", "block_index": 188, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7296,7 +7297,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176349, + "block_time": 1731184268, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7327,13 +7328,13 @@ "/v2/orders///matches": { "result": [ { - "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 55, - "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7350,7 +7351,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176425, + "block_time": 1731184351, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7370,13 +7371,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "tx0_index": 55, - "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 56, - "tx1_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", - "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7393,7 +7394,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176315, + "block_time": 1731184235, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7413,13 +7414,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3_e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", + "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", "tx0_index": 53, - "tx0_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 54, - "tx1_hash": "e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", - "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7436,7 +7437,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176232, + "block_time": 1731184167, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7456,13 +7457,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 64, - "tx0_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7479,7 +7480,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731176533, + "block_time": 1731184461, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7505,13 +7506,13 @@ "/v2/order_matches": { "result": [ { - "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 55, - "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7525,7 +7526,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731176425, + "block_time": 1731184351, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7545,13 +7546,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", + "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", "tx0_index": 55, - "tx0_hash": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 56, - "tx1_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", - "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7565,7 +7566,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731176315, + "block_time": 1731184235, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7585,13 +7586,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3_e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", + "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", "tx0_index": 53, - "tx0_hash": "24de69b1ee370eb84e5022c64cb04f28c5443214c72268ebdd048e01916306c3", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 54, - "tx1_hash": "e272d7e84f889870d276e000eab9362b7376ea5e276b67d9414e652d04357b6a", - "tx1_address": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7605,7 +7606,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731176232, + "block_time": 1731184167, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7625,13 +7626,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "tx0_index": 64, - "tx0_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "tx1_index": 58, - "tx1_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7645,7 +7646,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731176533, + "block_time": 1731184461, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7665,31 +7666,31 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "tx0_index": 101, - "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", - "tx0_address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", - "tx1_index": 102, - "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "tx1_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx0_index": 102, + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx1_index": 103, + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 227, - "tx1_block_index": 228, - "block_index": 228, + "tx0_block_index": 229, + "tx1_block_index": 230, + "block_index": 230, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 248, + "match_expire_index": 250, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731176544, + "block_time": 1731184478, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -7730,66 +7731,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "44b42e7fc7f7aa23010b6baf65980908ad57b95dd9f7d64485140f260a3229ed", + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", "block_index": 112, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "5d6b605b445ac7fecd89a3b95bfd4c5546ed7cba9242d0832478ab3315f022e3", + "tx_hash": "845c8eae056aeebef44dd69ef729f94434381f53b1e9ac7e2168ac7964d6aedf", "block_index": 112, - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "6406a977bbef3a29d24dcba5bcd69f06ec5e12101ff62dc1694c43e4c3ea7dbb", + "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", "block_index": 112, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "4869a671921aae27de72f611a5bea4bb101af56c5cec3b57d1f0275ae40108ba", + "tx_hash": "53658830d3bf2ea6c3fd4d207a7afe89708568c60172b9e64672b0ebe58638a2", "block_index": 112, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "424ee7d4dbb13622b18223794840a1daa4a0dbeb17b496f138aab32347706fa4", + "tx_hash": "40b63103484fc2e9b8bf8df6f3177faa056140a6a6b02f6bc198c02c3b2ca388", "block_index": 112, - "source": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -7801,9 +7802,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7812,7 +7813,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7823,7 +7824,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7840,9 +7841,9 @@ }, { "tx_index": 29, - "tx_hash": "9cab91f61aff6e4597656af7b4a14ec3b204354aa2bfc73a0a5dbcd24baf79bb", + "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", "block_index": 133, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7851,7 +7852,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7862,7 +7863,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176115, + "block_time": 1731184028, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7879,9 +7880,9 @@ }, { "tx_index": 30, - "tx_hash": "e0f3547fff4c8c32e793e4655e3ad19291ea0523e3f4f2453bd06ff757092f14", + "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", "block_index": 141, - "source": "mqZAbVvuhp3pLr44GVZo8GTSZmHMphpnQX", + "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7889,10 +7890,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c0a105c0ea4c80b165c4b635bc6fd1ca600b0865cf563d0f1b3b27d4827e0905", - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -7901,7 +7902,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176145, + "block_time": 1731184078, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7918,9 +7919,9 @@ }, { "tx_index": 68, - "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7929,7 +7930,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7940,11 +7941,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176371, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -7957,18 +7958,18 @@ }, { "tx_index": 33, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7979,7 +7980,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8001,9 +8002,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8012,7 +8013,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8023,7 +8024,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8044,19 +8045,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8064,7 +8065,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8079,7 +8080,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8093,19 +8094,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8113,7 +8114,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8128,7 +8129,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8147,20 +8148,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731176167, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8181,20 +8182,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731176167, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8217,12 +8218,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", + "event": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "tx_index": 42, - "utxo": "281f93f92f5857799800c5fe2e3117ab5d5a9848eb59940f2b3c07463442b1f6:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "utxo": "c524ab280f3557da911bb4d383891166c505314f418dc721724b9d368b2f0962:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "confirmed": true, - "block_time": 1731176167, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8239,47 +8240,47 @@ "/v2/events": { "result": [ { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "block_time": 1731176557 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null, - "block_index": 230, - "block_time": 1731176557 + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8290,20 +8291,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8313,24 +8314,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8340,29 +8341,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 887, - "result_count": 893 + "next_cursor": 902, + "result_count": 908 }, "/v2/events/": { "result": { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "block_time": 1731176557 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null, - "block_index": 230, - "block_time": 1731176557 + "block_index": 232, + "block_time": 1731184491 } }, "/v2/events/counts": { @@ -8373,7 +8374,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 90 + "event_count": 91 }, { "event": "SWEEP", @@ -8394,19 +8395,19 @@ "/v2/events/": { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8416,24 +8417,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 886, + "event_index": 901, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8443,51 +8444,78 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 }, { - "event_index": 883, + "event_index": 898, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 230, + "block_index": 232, "calling_function": "utxo move", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", - "utxo_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 + }, + { + "event_index": 862, + "event": "CREDIT", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "PREMINT", + "block_index": 227, + "calling_function": "escrowed premint", + "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "quantity": 50, + "tx_index": 101, + "utxo": null, + "utxo_address": null, + "block_time": 1731184468, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000050" + }, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "block_index": 227, + "block_time": 1731184468 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731176533, + "block_time": 1731184461, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8497,73 +8525,46 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731176533 - }, - { - "event_index": 819, - "event": "CREDIT", - "params": { - "address": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "asset": "BURNER", - "block_index": 221, - "calling_function": "fairmint commission", - "event": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", - "quantity": 20000000, - "tx_index": 97, - "utxo": null, - "utxo_address": null, - "block_time": 1731176518, - "asset_info": { - "asset_longname": "", - "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.20000000" - }, - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", - "block_index": 221, - "block_time": 1731176518 + "block_time": 1731184461 } ], - "next_cursor": 818, - "result_count": 109 + "next_cursor": 819, + "result_count": 110 }, "/v2/events//count": { "result": { "event": "CREDIT", - "event_count": 109 + "event_count": 110 } }, "/v2/dispenses": { "result": [ { - "tx_index": 104, + "tx_index": 105, "dispense_index": 0, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8578,7 +8579,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8592,19 +8593,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "86285e6a31480551680eb77488bc321d874e7e2bd4c107c24f28413141926c8b", + "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8612,7 +8613,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8627,11 +8628,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176371, + "block_time": 1731184291, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8641,27 +8642,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e36f4e5741211eed3fb0532f8c01cdd0fd09859bb4663b220f95bb425b054882", + "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", "block_index": 138, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "destination": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 230, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "block_index": 232, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "last_status_tx_hash": null, - "origin": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8676,7 +8677,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731176135, + "block_time": 1731184056, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8690,19 +8691,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "0bddba20270d58d827b903123408d95593f2717ddadc037a9eae28feb3bb2895", + "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8710,7 +8711,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8725,7 +8726,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176112, + "block_time": 1731184025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8739,19 +8740,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5c4b0e7c98e3538cc7edbfebaf74a574721a7c356d7d20da7bb39ee19446d7c6", + "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", "block_index": 131, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c346be5393b37a994b48034abe4f3fd148d28dfc9a86c2dfea049ba6f2c7e7cb", + "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8759,7 +8760,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8774,7 +8775,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731176109, + "block_time": 1731184022, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8792,11 +8793,11 @@ "/v2/sends": { "result": [ { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8804,7 +8805,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8816,11 +8817,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 104, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "tx_index": 105, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8828,11 +8829,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8841,10 +8842,10 @@ }, { "tx_index": 81, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8852,7 +8853,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8865,10 +8866,10 @@ }, { "tx_index": 81, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8876,11 +8877,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8889,10 +8890,10 @@ }, { "tx_index": 81, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8900,11 +8901,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -8918,15 +8919,15 @@ "/v2/issuances": { "result": [ { - "tx_index": 103, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", "msg_index": 0, - "block_index": 229, + "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "transfer": false, "callable": false, "call_date": 0, @@ -8941,25 +8942,25 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731176547, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 100, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_index": 101, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", "msg_index": 1, - "block_index": 226, - "asset": "STARTNOW", + "block_index": 228, + "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "let's start now", + "description": "", "fee_paid": 0, "status": "valid", "asset_longname": "", @@ -8969,25 +8970,25 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731176538, + "block_time": 1731184472, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 100, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_index": 101, + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", "msg_index": 0, - "block_index": 225, - "asset": "STARTNOW", - "quantity": 0, + "block_index": 227, + "asset": "PREMINT", + "quantity": 50, "divisible": true, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "let's start now", + "description": "", "fee_paid": 50000000, "status": "valid", "asset_longname": "", @@ -8997,25 +8998,25 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731176533, - "quantity_normalized": "0.00000000", + "block_time": 1731184468, + "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { - "tx_index": 98, - "tx_hash": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", + "tx_index": 100, + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "msg_index": 1, - "block_index": 223, - "asset": "EXPANSIVE", + "block_index": 226, + "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "too expensive for you", + "description": "let's start now", "fee_paid": 0, "status": "valid", "asset_longname": "", @@ -9025,25 +9026,25 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731176527, + "block_time": 1731184464, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 98, - "tx_hash": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", + "tx_index": 100, + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "msg_index": 0, - "block_index": 222, - "asset": "EXPANSIVE", + "block_index": 225, + "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "too expensive for you", + "description": "let's start now", "fee_paid": 50000000, "status": "valid", "asset_longname": "", @@ -9053,25 +9054,25 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731176523, + "block_time": 1731184461, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 43, - "result_count": 48 + "next_cursor": 45, + "result_count": 50 }, "/v2/issuances/": { "result": { - "tx_index": 103, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", + "tx_index": 104, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", "msg_index": 0, - "block_index": 229, + "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "transfer": false, "callable": false, "call_date": 0, @@ -9086,7 +9087,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731176547, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9095,16 +9096,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731176356, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -9115,16 +9116,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731176356, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" } ], @@ -9135,9 +9136,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9145,14 +9146,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731176102, + "block_time": 1731184014, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "e67122031fbe6ca54f201857a06cd400bd560b3289b874b314f60c0268d3c979", + "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", "block_index": 128, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9160,7 +9161,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731176099, + "block_time": 1731184010, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9170,9 +9171,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9180,17 +9181,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731176102, + "block_time": 1731184014, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "tx_index": 103, - "block_index": 229, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_index": 231, + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -9215,7 +9216,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731176547, + "block_time": 1731184482, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9224,10 +9225,47 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_index": 101, + "block_index": 228, + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "asset": "PREMINT", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 50, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 100, + "soft_cap_deadline_block": 228, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1731184472, + "price_normalized": "1.0000000000000000", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000100", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000050" + }, + { + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "tx_index": 100, "block_index": 226, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -9252,7 +9290,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731176538, + "block_time": 1731184464, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9261,10 +9299,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7527ee902ece9964369c8c3556dcf9af241ce335018dcf8b9760f3407687083e", + "tx_hash": "b0dbe18ebce8aec91e284552354df1de0b0b19ed93c0ced5d338a3458e4a17d5", "tx_index": 99, "block_index": 224, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": null, "asset_parent": null, "asset_longname": null, @@ -9289,13 +9327,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731176530 + "block_time": 1731184458 }, { - "tx_hash": "3b6608aa782d98d350e0ff05b9aee58e3155300261b9e81365d070a583cea0cf", + "tx_hash": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", "tx_index": 98, "block_index": 223, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -9320,77 +9358,37 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731176527, + "block_time": 1731184453, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", "quantity_by_price_normalized": "0.00000001", "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", - "tx_index": 96, - "block_index": 221, - "source": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", - "asset": "BURNER", - "asset_parent": "", - "asset_longname": "", - "description": "let's burn it", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 100000000, - "burn_payment": true, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 20000000, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": true, - "lock_quantity": true, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 80000000, - "commission": 20000000, - "paid_quantity": 100000000, - "confirmed": true, - "block_time": 1731176518, - "price_normalized": "1.0000000000000000", - "hard_cap_normalized": "1.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.80000000", - "commission_normalized": "0.20000000", - "paid_quantity_normalized": "1.00000000" } ], - "next_cursor": 12, - "result_count": 17 + "next_cursor": 13, + "result_count": 18 }, "/v2/fairmints": { "result": [ { - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -9399,22 +9397,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "04d142d0643e9e03f35bb4c973be70ea2a613bf4b612dcee169e3d3fa240a2fc", + "tx_hash": "0e2e7af8d6364fd2dbc2af36470ac9bece72a387782748c46f7034b855cf630c", "tx_index": 95, "block_index": 219, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "fairminter_tx_hash": "366b3bc9eac646841b87394d9de44b33c8614457a2ef368859ab3abbbcd6c9fc", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "d9e559c3c71883aa0881d99340a00535329d8a56438aeeb8ed5a8a41664b10d9", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731176511, + "block_time": 1731184439, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -9423,22 +9421,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "6bbb882372629a026808b92b6efafb0b693b2b9a57120ca6b7876041679fe1c4", + "tx_hash": "bb3be0baf4f12b3ecb670cceb6dd695791b3a3fd2d93e1a527be91e39bd36e11", "tx_index": 91, "block_index": 215, - "source": "bcrt1qm2mgntz68f63lj9yefaq3keskpwt9la352g6tk", - "fairminter_tx_hash": "dd82ddf40b0d1fbb9787f929b480480290c93be93c95ae953a2dcdc3271b3a7a", + "source": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", + "fairminter_tx_hash": "efc92f92c79bff1b745a7d8a3daa096d8c1c545c927ff41b84c9c12c07360570", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176496, + "block_time": 1731184424, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qm2mgntz68f63lj9yefaq3keskpwt9la352g6tk", + "issuer": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", "divisible": true, "locked": false }, @@ -9447,22 +9445,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "02a7ad5cd4f2057d0ec24af7af821c1e62c968fe2ec1f00505b80530e2b782c5", + "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", "tx_index": 46, "block_index": 150, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176184, + "block_time": 1731184122, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -9471,22 +9469,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "90b6adcd471de4bc8de7de6e1b76ed03e3e948d7fad39e91b6c7373c16da56b6", + "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", "tx_index": 45, "block_index": 149, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", - "fairminter_tx_hash": "b53d11912998dfa34fc46b367c573c4e56cd69699174a86b939cb0369b64205c", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731176180, + "block_time": 1731184109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -9500,22 +9498,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, "block_index": 221, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -9530,28 +9528,28 @@ "vout": 0, "height": 199, "value": 546, - "confirmations": 32, + "confirmations": 34, "amount": 5.46e-06, - "txid": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8", - "address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm" + "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" }, { "vout": 1, "height": 198, "value": 546, - "confirmations": 33, + "confirmations": 35, "amount": 5.46e-06, - "txid": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182", - "address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm" + "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" }, { "vout": 1, - "height": 227, + "height": 229, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", - "address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm" + "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" } ], "next_cursor": null, @@ -9560,28 +9558,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "30dc5aefa130bf131447c0cd2b7b7aaf671c48c6e92ee7ee4a1b42f625aa1632" + "tx_hash": "c6174dbb4c086be948f57802f799e3c85d6489e73d1f48ba9c422a3b2d57e244" }, { - "tx_hash": "2444a712d41fc5248a4dc5591caecfd6b6788c255070bb91895f375d2cfaf944" + "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60" }, { - "tx_hash": "09e4266508371bcf74f9a16827c826495dbcdf581d4c61835dec82f19727b070" + "tx_hash": "48493c64b68af363b97d2a826ea265c33621f9e904c7697bda80b3a8ad655063" }, { - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976" + "tx_hash": "a017e1df8d7d0610178651cea0fef58d16a2a25c5cf850c77a8d2db4e093ad8f" }, { - "tx_hash": "921fe92a5ade26fdb9d52de1cfbb4bc68cc3ac2b64efd25b946ae8a11c7ee78a" + "tx_hash": "bc060d4f7ca525678122e0dcf3529d4d8e95a253162e026c383638df72f772b6" }, { - "tx_hash": "9fce5e0119fcf340235ec0027caaf21c7f4a54646f5b04494f9e2cdeb7b807c3" + "tx_hash": "190a666b58e5defbc083e3efc7f2a126ccfd28b477edeb8e667655edf48d06c6" }, { - "tx_hash": "fa4113c3140d0af0a640155881b7a3f5142e16f9369281b71d484504675c1fc3" + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf" }, { - "tx_hash": "5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef" + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6" } ], "next_cursor": null, @@ -9589,48 +9587,48 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "da238ef7e2985a08346ede71358629610b849801b91c66526bf0c8271eebfe6d" + "block_index": 10, + "tx_hash": "d42ec7f16fd340abe06ed758e8adadcd576ec9361509eb0ee2e46742529b9675" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 1, - "height": 227, + "height": 198, + "value": 546, + "confirmations": 35, + "amount": 5.46e-06, + "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4" + }, + { + "vout": 1, + "height": 229, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82" + "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace" }, { "vout": 0, "height": 199, "value": 546, - "confirmations": 32, + "confirmations": 34, "amount": 5.46e-06, - "txid": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8" - }, - { - "vout": 1, - "height": 198, - "value": 546, - "confirmations": 33, - "amount": 5.46e-06, - "txid": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182" + "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "029275eeeaf08440682fdc96a6f24c2ddef147cb8391da8606d024562c09a20c49" + "result": "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" }, "/v2/bitcoin/transactions/": { - "result": "020000000001010de974fc3864ecd94259300eb059a5e3391cca9fd48f485ae58900a4ef57e09f0100000000ffffffff03e803000000000000160014904e18f762fc9bf9003dee31476e8bc70b13cc3800000000000000000c6a0a6b06857eb51ec88cec33871409270100000016001431337e2f48ce3009bd627f9499c594f65f547f410247304402200f0a4cbf72ac0f79f549f8f66a980f44e27ea86767b2b74df577459c24ff15970220500d6d163bb115f618a601ca138b4d59285ae2c5b70382ca1360f5eba95de477012102c4b5cda3b700288bf99a66fd3edeecbfdc0dd4483b52d4dec5859cdfbc749d7100000000" + "result": "020000000001011264f625f000f949743679dd19865b50e5b132f88dcaba8b5e48858c7d778be00100000000ffffffff03e803000000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae00000000000000000c6a0acae81e7d80a724af2f26871409270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb024730440220368071587c81d5722a1686ab3ec5fd7193e76a687bea4562f14c6c2e35b6226b0220264468e7ee300e431f01c97a81cbcf02acf4e1278824f773a4b384592d5e3130012103207dd49acd21039f8d2203a73c89671845fb09742bd47c6efacaa8592f20964d00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58599 + "result": 58539 }, "/v2/bitcoin/transactions/decode": { "result": { @@ -9700,28 +9698,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105 + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106 }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "quantity": 10000, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "status": "valid", - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105, + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9731,22 +9729,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9756,22 +9754,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", - "block_index": 230, - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "block_index": 232, + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9781,30 +9779,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731176561.3852592, + "block_time": 1731184495.3943753, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "destination": "", "fee": 10000, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105, - "utxos_info": "61905df2e4a72e413bd5a5f1ba8f2d69836e3ca5dcee6c25ee9920343af64bf5:1 b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd:1 2 ", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, + "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -9818,7 +9816,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -9827,19 +9825,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9849,7 +9847,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -9858,28 +9856,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105 + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106 }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "quantity": 10000, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "status": "valid", - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105, + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9889,22 +9887,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "CREDIT", "params": { - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "send", - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9914,22 +9912,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "asset": "XCP", - "block_index": 230, - "event": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "block_index": 232, + "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "quantity": 10000, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9939,30 +9937,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 }, { - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731176561.3852592, + "block_time": 1731184495.3943753, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9cbc8f2ad7ba1c24799a1176a783aa3d4cf8037", + "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", "destination": "", "fee": 10000, - "source": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", - "tx_hash": "b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd", - "tx_index": 105, - "utxos_info": "61905df2e4a72e413bd5a5f1ba8f2d69836e3ca5dcee6c25ee9920343af64bf5:1 b31ae88a863eb8ad0e8359e2873c2057b99a7c4c0714c63e8f7f140d041817cd:1 2 ", + "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_index": 106, + "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "memo": null, "asset_info": { "asset_longname": null, @@ -9976,7 +9974,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731176561.3852592 + "timestamp": 1731184495.3943753 } ], "next_cursor": null, @@ -9995,40 +9993,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 879, + "event_index": 894, "event": "NEW_BLOCK", "params": { - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_index": 230, - "block_time": 1731176557, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_index": 232, + "block_time": 1731184491, "difficulty": 545259519, - "previous_block_hash": "4b9d5fe748ff9111b151d3d984098d5c3aeaf91b746bd49a421b47fd7feb01a1" + "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4" }, "tx_hash": null, - "block_index": 230, - "block_time": 1731176557 + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 871, - "result_count": 130 + "next_cursor": 886, + "result_count": 132 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 880, + "event_index": 895, "event": "NEW_TRANSACTION", "params": { - "block_hash": "240760028b2c28aea1b3f90c612fd598383f213cb2ffda2c0058a85a3dddf1cb", - "block_index": 230, - "block_time": 1731176557, + "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_index": 232, + "block_time": 1731184491, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "fee": 0, - "source": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "utxos_info": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1 d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0 3 1", + "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10038,32 +10036,32 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 872, - "result_count": 105 + "next_cursor": 887, + "result_count": 106 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 881, + "event_index": 896, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "out_index": 0, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": 579, @@ -10072,58 +10070,58 @@ "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 892, + "event_index": 907, "event": "BLOCK_PARSED", "params": { - "block_index": 230, - "ledger_hash": "9b1fbaeada638d09e2de0341d1f12bcc2dbe4965bc218bd6411d4df42925c655", - "messages_hash": "11570155ad7ebaa3ddce559f75624c6d3c36fbe3db0098d57788b05e8115bb85", + "block_index": 232, + "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", + "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", "transaction_count": 1, - "txlist_hash": "0e410c17de2eeef2ce8ad50f75143830ae64bf6604d4e2953677407dd1c5d27d", - "block_time": 1731176557 + "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", + "block_time": 1731184491 }, "tx_hash": null, - "block_index": 230, - "block_time": 1731176557 + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 878, - "result_count": 130 + "next_cursor": 893, + "result_count": 132 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 891, + "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105 }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 877, - "result_count": 90 + "next_cursor": 892, + "result_count": 91 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 885, + "event_index": 900, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 230, - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "block_index": 232, + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 2000000000, - "tx_index": 104, - "utxo": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", - "utxo_address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", - "block_time": 1731176557, + "tx_index": 105, + "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10133,30 +10131,30 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 882, - "result_count": 87 + "next_cursor": 897, + "result_count": 89 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 888, + "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "asset": "XCP", - "block_index": 230, + "block_index": 232, "calling_function": "dispense", - "event": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", + "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", "quantity": 66, - "tx_index": 104, + "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731176557, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10166,13 +10164,13 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 886, - "result_count": 109 + "next_cursor": 901, + "result_count": 110 }, "/v2/events/ENHANCED_SEND": { "result": [ @@ -10182,26 +10180,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "memo": null, "quantity": 1000, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": "valid", - "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "tx_index": 77, - "block_time": 1731176404, + "block_time": 1731184339, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "bb3f7c804f05b699018bc28513f4f4f255300ee90900b3f83ab688e26e611042", + "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", "block_index": 201, - "block_time": 1731176404 + "block_time": 1731184339 } ], "next_cursor": 515, @@ -10215,15 +10213,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "status": "valid", - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "tx_index": 81, - "block_time": 1731176428, + "block_time": 1731184355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10233,9 +10231,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b10bc996505d8a26bb6d79927f58a6e88c2d13ca9a0f63a8eeb8fafbe4e031a8", + "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", "block_index": 205, - "block_time": 1731176428 + "block_time": 1731184355 } ], "next_cursor": 697, @@ -10258,20 +10256,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qfggpqmwcrx62nrgd638nupwzyx98dclaqs78j6", + "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "status": "valid", - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "tx_index": 65, - "block_time": 1731176356, + "block_time": 1731184276, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "84e38434b4ce8028ec400c9a107d66fad1739e22d9a3c5c73970a71867c0f976", + "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", "block_index": 190, - "block_time": 1731176356 + "block_time": 1731184276 } ], "next_cursor": null, @@ -10288,15 +10286,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": "valid", - "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "tx_index": 42, - "block_time": 1731176167, + "block_time": 1731184098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -10310,9 +10308,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "e2969bc6e570e3a571292a645c4e50a48696791e9ff9bd0dd0e14fcb4781d675", + "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", "block_index": 146, - "block_time": 1731176167 + "block_time": 1731184098 } ], "next_cursor": null, @@ -10326,33 +10324,33 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 874, + "event_index": 889, "event": "ASSET_CREATION", "params": { "asset_id": "117132633401", "asset_longname": null, "asset_name": "OPENFAIR", - "block_index": 229, - "block_time": 1731176547 + "block_index": 231, + "block_time": 1731184482 }, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "block_index": 229, - "block_time": 1731176547 + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_time": 1731184482 } ], - "next_cursor": 848, - "result_count": 25 + "next_cursor": 860, + "result_count": 26 }, "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 875, + "event_index": 890, "event": "ASSET_ISSUANCE", "params": { "asset": "OPENFAIR", "asset_events": "open_fairminter", "asset_longname": "", - "block_index": 229, + "block_index": 231, "call_date": 0, "call_price": 0, "callable": false, @@ -10360,68 +10358,68 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "valid", "transfer": false, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "tx_index": 103, - "block_time": 1731176547, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_time": 1731184482, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "block_index": 229, - "block_time": 1731176547 + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_time": 1731184482 } ], - "next_cursor": 855, - "result_count": 48 + "next_cursor": 869, + "result_count": 50 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ { - "event_index": 817, + "event_index": 870, "event": "ASSET_DESTRUCTION", "params": { - "asset": "XCP", - "block_index": 221, - "quantity": 100000000, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "asset": "PREMINT", + "block_index": 228, + "quantity": 50, + "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "status": "valid", - "tag": "burn fairmint payment", - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", - "tx_index": 97, - "block_time": 1731176518, + "tag": "soft cap not reached", + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_index": 101, + "block_time": 1731184472, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, - "locked": true + "locked": false }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.00000050" }, - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", - "block_index": 221, - "block_time": 1731176518 + "tx_hash": null, + "block_index": 228, + "block_time": 1731184472 } ], - "next_cursor": 564, - "result_count": 3 + "next_cursor": 817, + "result_count": 4 }, "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 865, + "event_index": 880, "event": "OPEN_ORDER", "params": { - "block_index": 228, + "block_index": 230, "expiration": 21, - "expire_index": 249, + "expire_index": 251, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10432,11 +10430,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "open", - "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "tx_index": 102, - "block_time": 1731176544, + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_index": 103, + "block_time": 1731184478, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10447,7 +10445,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -10460,44 +10458,44 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "block_index": 228, - "block_time": 1731176544 + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_time": 1731184478 } ], - "next_cursor": 860, + "next_cursor": 875, "result_count": 9 }, "/v2/events/ORDER_MATCH": { "result": [ { - "event_index": 868, + "event_index": 883, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 228, + "block_index": 230, "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82_562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "match_expire_index": 248, + "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "match_expire_index": 250, "status": "pending", - "tx0_address": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", - "tx0_block_index": 227, + "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_block_index": 229, "tx0_expiration": 21, - "tx0_hash": "7642ac5dac021d9708572016d4751fd7035e7d9ee5d1825644194c52f8a18d82", - "tx0_index": 101, - "tx1_address": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "tx1_block_index": 228, + "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_index": 102, + "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_block_index": 230, "tx1_expiration": 21, - "tx1_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "tx1_index": 102, - "block_time": 1731176544, + "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_index": 103, + "block_time": 1731184478, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, @@ -10512,9 +10510,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "block_index": 228, - "block_time": 1731176544 + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_time": 1731184478 } ], "next_cursor": 676, @@ -10523,7 +10521,7 @@ "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 867, + "event_index": 882, "event": "ORDER_UPDATE", "params": { "fee_provided_remaining": 10000, @@ -10531,16 +10529,16 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "562a45143dd0270b64e86906fefccdc065054c6852dacca31b4efc391eadbe00", - "block_index": 228, - "block_time": 1731176544 + "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "block_index": 230, + "block_time": 1731184478 } ], - "next_cursor": 866, + "next_cursor": 881, "result_count": 19 }, "/v2/events/ORDER_FILLED": { @@ -10550,11 +10548,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265" + "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83" }, - "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "block_time": 1731176315 + "block_time": 1731184235 } ], "next_cursor": null, @@ -10566,13 +10564,13 @@ "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "order_match_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", + "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", "status": "expired" }, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731176533 + "block_time": 1731184461 } ], "next_cursor": 670, @@ -10586,18 +10584,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "order_match_id": "43029272ea4872c213cbf2d48256158777b4c8f1da5c033785b12849f2e6e010_263e4fb9b1ef7bbf2222375cb276752d9b97fd00dbd2d67a94c87a3a85f28265", - "source": "bcrt1q87u6j0jyzmq68c5f8e92kz5ewahr9qy2up4yxp", + "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", "status": "valid", - "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "tx_index": 57, - "block_time": 1731176315, + "block_time": 1731184235, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6bace47f4e884c651005968ca1e101ee1061292159237bbc39306d69c95423ac", + "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", "block_index": 182, - "block_time": 1731176315 + "block_time": 1731184235 } ], "next_cursor": null, @@ -10610,16 +10608,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "fe0c836b2610fbcf177ee794c13c8427bd7e42d82e5700253108249169bf213d", - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": "valid", - "tx_hash": "ed6f1301d3ff4dc65f2a49a54460e0dabfb830d4c8b4e97034fc1e770838bb6d", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "tx_index": 63, - "block_time": 1731176349 + "block_time": 1731184268 }, - "tx_hash": "ed6f1301d3ff4dc65f2a49a54460e0dabfb830d4c8b4e97034fc1e770838bb6d", + "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", "block_index": 188, - "block_time": 1731176349 + "block_time": 1731184268 } ], "next_cursor": null, @@ -10632,13 +10630,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf", - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "block_time": 1731176470 + "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_time": 1731184399 }, - "tx_hash": "0ce5805af7adfcac6f6bd2dd791389167543337e1673266a8b7feec927b73b60", + "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", "block_index": 211, - "block_time": 1731176470 + "block_time": 1731184399 } ], "next_cursor": 690, @@ -10651,14 +10649,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "a6e57358526d0c7a3255df6846f99352b65b95b3613d4f3a17f3291a11dbbdcf_5d72ea4eeda14ff28aa4560cd3376ee7a04593f94747640f8e41d05e2882e0ef", - "tx0_address": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "tx1_address": "bcrt1qe89u3u4d0wsuy3ue5ytk57p6502vlqph7f4zxt", - "block_time": 1731176533 + "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "block_time": 1731184461 }, - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7", + "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", "block_index": 225, - "block_time": 1731176533 + "block_time": 1731184461 } ], "next_cursor": 673, @@ -10677,17 +10675,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "satoshirate": 1, - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "status": 0, - "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "tx_index": 68, - "block_time": 1731176367, + "block_time": 1731184286, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", + "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", "divisible": true, "locked": false }, @@ -10696,9 +10694,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5d471a430cc7407e07024bc4a489fbf57c5cf0d8100ad457b631e6dd0a893ca6", + "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", "block_index": 193, - "block_time": 1731176367 + "block_time": 1731184286 } ], "next_cursor": 254, @@ -10707,15 +10705,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 889, + "event_index": 904, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": 0, - "tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", + "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10725,9 +10723,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": 581, @@ -10741,13 +10739,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mqZAbVvuhp3pLr44GVZo8GTSZmHMphpnQX", + "destination": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", "dispense_quantity": 10, - "dispenser_tx_hash": "e0f3547fff4c8c32e793e4655e3ad19291ea0523e3f4f2453bd06ff757092f14", - "source": "bcrt1q0ra73alk9yxhgk7jqs7wlkpskpugxmq7sdujuq", - "tx_hash": "e0620cf2e69561466b71b3396d485faeacf8eb327a18915abc50e989956e0973", + "dispenser_tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", + "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", "tx_index": 31, - "block_time": 1731176123, + "block_time": 1731184035, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10757,9 +10755,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e0620cf2e69561466b71b3396d485faeacf8eb327a18915abc50e989956e0973", + "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", "block_index": 135, - "block_time": 1731176123 + "block_time": 1731184035 } ], "next_cursor": null, @@ -10768,20 +10766,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 890, + "event_index": 905, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 230, + "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qxyehut6geccqn0tz072fn3v57e04gl6pdt7kzn", + "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "4b091d056fab47525bea2c3e676efbbb6089b81ed651ede28cb7299be133bf05", - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10792,9 +10790,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], "next_cursor": 582, @@ -10809,19 +10807,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "tx_index": 25, "value": 66600.0, - "block_time": 1731176102, + "block_time": 1731184014, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "376a48fad190682c22391286bcfaf142e4de6e7b66bb51593b54c7dc29cbe133", + "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", "block_index": 129, - "block_time": 1731176102 + "block_time": 1731184014 } ], "next_cursor": 195, @@ -10830,13 +10828,13 @@ "/v2/events/NEW_FAIRMINTER": { "result": [ { - "event_index": 873, + "event_index": 888, "event": "NEW_FAIRMINTER", "params": { "asset": "OPENFAIR", "asset_longname": "", "asset_parent": "", - "block_index": 229, + "block_index": 231, "burn_payment": false, "description": "", "divisible": true, @@ -10852,12 +10850,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "start_block": 0, "status": "open", - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "tx_index": 103, - "block_time": 1731176547, + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_index": 104, + "block_time": 1731184482, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10865,30 +10863,30 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "9fbb37d45d74b7a9a4209fec3cdbdea59515200abc0127360eb5f47c3c423abb", - "block_index": 229, - "block_time": 1731176547 + "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "block_index": 231, + "block_time": 1731184482 } ], - "next_cursor": 847, - "result_count": 17 + "next_cursor": 859, + "result_count": 18 }, "/v2/events/FAIRMINTER_UPDATE": { "result": [ { - "event_index": 854, + "event_index": 868, "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "a504a266e65ba73bbd4f107469ab9a351500157f548ed5d5cd51b9e0d3b8a1d7" + "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60" }, "tx_hash": null, - "block_index": 226, - "block_time": 1731176538 + "block_index": 228, + "block_time": 1731184472 } ], - "next_cursor": 834, - "result_count": 7 + "next_cursor": 854, + "result_count": 8 }, "/v2/events/NEW_FAIRMINT": { "result": [ @@ -10900,17 +10898,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "96f92c80b357c07402aa3ea18e22248c859d492731e971d48686c2a1c7e76e10", + "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", "paid_quantity": 100000000, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", "status": "valid", - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "tx_index": 97, - "block_time": 1731176518, + "block_time": 1731184447, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qyhnvtnmam4lhdkzrjpxje70lwfas87n6z4nf2k", + "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", "divisible": true, "locked": true }, @@ -10918,9 +10916,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "ac20c429907a3ed7977b611894610a9989ff3eff3044b696f0b9faa512bf3c82", + "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", "block_index": 221, - "block_time": 1731176518 + "block_time": 1731184447 } ], "next_cursor": 801, @@ -10934,28 +10932,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8:0", + "destination": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "status": "valid", - "tx_hash": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8", + "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", "tx_index": 75, - "block_time": 1731176396, + "block_time": 1731184320, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e06932436fa9c8f654e6266338ae466cd3b6b9de6416fd7646f094ecabb6fcc8", + "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", "block_index": 199, - "block_time": 1731176396 + "block_time": 1731184320 } ], "next_cursor": 598, @@ -10969,28 +10967,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "764ba66cb4ae44637eadbbfd043eb791429e308e90f62c3143cb18f5d29db356:0", + "source": "1e7a09d1d3861bc0e2a1943e7a07a1d2d126b0545a3e6e70c9bd6da05f26adfb:0", "status": "valid", - "tx_hash": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182", + "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", "tx_index": 74, - "block_time": 1731176392, + "block_time": 1731184316, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qk2xtlvt3d9qp8r0vrsksa3tz2d2tdw7nu7c3rm", + "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6784a013e3068161e1457b97155e1d56be29063269398b00d250bb1d8a403182", + "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", "block_index": 198, - "block_time": 1731176392 + "block_time": 1731184316 } ], "next_cursor": 293, @@ -10999,19 +10997,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 887, + "event_index": 902, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 230, - "destination": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f:0", + "block_index": 232, + "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", "msg_index": 1, "quantity": 2000000000, - "source": "9fe057efa40089e55a488fd49fca1c39e3a559b00e305942d9ec6438fc74e90d:1", + "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", "status": "valid", - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "tx_index": 104, - "block_time": 1731176557, + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_index": 105, + "block_time": 1731184491, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11021,12 +11019,12 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d1d43177cb3662a3ee9f9a75496de4b5e2c05092782cdaf77d088d620779a12f", - "block_index": 230, - "block_time": 1731176557 + "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "block_index": 232, + "block_time": 1731184491 } ], - "next_cursor": 884, + "next_cursor": 899, "result_count": 11 }, "/v2/events/BURN": { @@ -11038,17 +11036,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qjp8p3amzljdljqpaacc5wm5tcu938npcufjgn2", + "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", "status": "valid", - "tx_hash": "44b42e7fc7f7aa23010b6baf65980908ad57b95dd9f7d64485140f260a3229ed", + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", "tx_index": 9, - "block_time": 1731176035, + "block_time": 1731183938, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "44b42e7fc7f7aa23010b6baf65980908ad57b95dd9f7d64485140f260a3229ed", + "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", "block_index": 112, - "block_time": 1731176035 + "block_time": 1731183938 } ], "next_cursor": 50, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 06eeb65214..991fe0488d 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -467,13 +467,21 @@ def test_command(self, command): state_before = self.get_node_state() self.stop_counterparty_server() print(f"Running `{command}`...") - self.counterparty_server( - command, - 150, # avoid tx using `disable_protocol_changes` params (scenario_6_dispenser.py) - _out=sys.stdout, - _err_to_out=True, - _bg_exc=False, - ) + if command == "check-db": + self.counterparty_server( + command, + _out=sys.stdout, + _err_to_out=True, + _bg_exc=False, + ) + else: + self.counterparty_server( + command, + 150, # avoid tx using `disable_protocol_changes` params (scenario_6_dispenser.py) + _out=sys.stdout, + _err_to_out=True, + _bg_exc=False, + ) self.check_node_state(command, state_before) print(f"`{command}` successful") @@ -784,6 +792,9 @@ def test_transaction_chaining(self): print("Dispenser created") + def test_asset_conservation(self): + self.test_command("check-db") + class RegtestNodeThread(threading.Thread): def __init__(self, wsgi_server="waitress", burn_in_one_block=True): diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index 3ff3d46f01..bdf18200cb 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -850,4 +850,206 @@ } ], }, + { + "title": "Create fairminter PREMINT", + "transaction": "fairminter", + "source": "$ADDRESS_10", + "params": { + "asset": "PREMINT", + "price": 1, + "soft_cap": 100, + "soft_cap_deadline_block": "$CURRENT_BLOCK + 2", + "premint_quantity": 50, + }, + "set_variables": { + "FAIRMINTER_PREMINT_HASH": "$TX_HASH", + "FAIRMINTER_PREMINT_TX_INDEX": "$TX_INDEX", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_FAIRMINTER,ASSET_CREATION,ASSET_ISSUANCE,CREDIT,DEBIT", + "result": [ + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "fairminter fee", + "address": "$ADDRESS_10", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 50000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "PREMINT", + "block_index": "$BLOCK_INDEX", + "calling_function": "escrowed premint", + "event": "$TX_HASH", + "quantity": 50, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "PREMINT", + "asset_events": "open_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0, + "callable": False, + "description": "", + "divisible": True, + "fair_minting": True, + "fee_paid": 50000000.0, + "issuer": "$ADDRESS_10", + "locked": False, + "quantity": 50, + "reset": False, + "source": "$ADDRESS_10", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "4837764613", + "asset_longname": None, + "asset_name": "PREMINT", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "NEW_FAIRMINTER", + "event_index": "$EVENT_INDEX_3", + "params": { + "asset": "PREMINT", + "asset_longname": "", + "asset_parent": "", + "block_index": "$BLOCK_INDEX", + "burn_payment": False, + "description": "", + "divisible": True, + "end_block": 0, + "hard_cap": 0, + "lock_description": False, + "lock_quantity": False, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 0, + "pre_minted": False, + "premint_quantity": 50, + "price": 1, + "quantity_by_price": 1, + "soft_cap": 100, + "soft_cap_deadline_block": "$BLOCK_INDEX + 1", + "source": "$ADDRESS_10", + "start_block": 0, + "status": "open", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "mint empty block to trigger close of fairminters", + "transaction": "mine_blocks", + "params": {"blocks": 1}, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=FAIRMINTER_UPDATE,ASSET_ISSUANCE,CREDIT,DEBIT,ASSET_DESTRUCTION", + "result": [ + { + "event": "ASSET_DESTRUCTION", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "PREMINT", + "block_index": "$BLOCK_INDEX", + "quantity": 50, + "source": "$ADDRESS_10", + "status": "valid", + "tag": "soft cap not reached", + "tx_hash": "$FAIRMINTER_PREMINT_HASH", + "tx_index": "$FAIRMINTER_PREMINT_TX_INDEX", + }, + "tx_hash": None, + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "PREMINT", + "asset_events": "close_fairminter", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "", + "description_locked": False, + "divisible": True, + "fair_minting": False, + "fee_paid": 0, + "issuer": "$ADDRESS_10", + "locked": False, + "msg_index": 1, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_10", + "status": "valid", + "transfer": False, + "tx_hash": "$FAIRMINTER_PREMINT_HASH", + "tx_index": "$FAIRMINTER_PREMINT_TX_INDEX", + }, + "tx_hash": None, + }, + { + "event": "FAIRMINTER_UPDATE", + "event_index": "$EVENT_INDEX_3", + "params": {"status": "closed", "tx_hash": "$FAIRMINTER_PREMINT_HASH"}, + "tx_hash": None, + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_2", + "params": { + "action": "unescrowed fairmint", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "PREMINT", + "block_index": "$BLOCK_INDEX", + "event": "$FAIRMINTER_PREMINT_HASH", + "quantity": 50, + "tx_index": 0, + "utxo": None, + "utxo_address": None, + }, + "tx_hash": None, + }, + ], + } + ], + }, ] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 426a8cae7f..d6b2c8776b 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -397,9 +397,9 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): ) time.sleep(1) else: + print("Generating API documentation...") if os.path.exists(os.path.join(CURR_DIR, "apidoc/apicache.json")): os.unlink(os.path.join(CURR_DIR, "apidoc/apicache.json")) - print("Generating API documentation...") sh.python3( os.path.join(CURR_DIR, "genapidoc.py"), os.path.abspath("regtestnode"), @@ -407,13 +407,14 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): _err_to_out=True, _cwd=CURR_DIR, ) - print("Running Dredd...") sh.dredd(_cwd=BASE_DIR, _out=sys.stdout, _err_to_out=True) - + print("Testing invalid detach...") regtest_node_thread.node.test_invalid_detach() + print("Testing transaction chaining...") regtest_node_thread.node.test_transaction_chaining() - + print("Tesing asset conservation checking...") + regtest_node_thread.node.test_asset_conservation() print("Tesing reparse...") regtest_node_thread.node.reparse() print("Testing rollback...") From 533c665de515c6309e67d211b2c5b8d77df30abb Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 09:41:21 +0000 Subject: [PATCH 105/138] fix pytest --- apiary.apib | 3700 ++++++++--------- .../counterpartycore/lib/ledger.py | 2 +- .../test/fixtures/api_v2_fixtures.json | 926 +++-- .../test/fixtures/contract_vectors/ledger.py | 18 +- .../scenarios/parseblock_unittest_fixture.sql | 1334 +++--- .../fixtures/scenarios/unittest_fixture.sql | 1332 +++--- .../counterpartycore/test/parse_block_test.py | 4 +- .../test/regtest/apidoc/apicache.json | 3346 ++++++++------- 8 files changed, 5527 insertions(+), 5135 deletions(-) diff --git a/apiary.apib b/apiary.apib index 73005a9106..746d06c6d9 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-09 20:35:08.806330. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-09 21:01:55.886643. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 894, "event": "NEW_BLOCK", "params": { - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", "block_index": 232, - "block_time": 1731184491, + "block_time": 1731186098, "difficulty": 545259519, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4" + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2" }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 886, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 895, "event": "NEW_TRANSACTION", "params": { - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", "block_index": 232, - "block_time": 1731184491, + "block_time": 1731186098, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "fee": 0, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 887, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "out_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 579, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 893, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 892, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 232, - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "block_time": 1731184491, + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 897, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 901, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "quantity": 1000, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": "valid", - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "tx_index": 77, - "block_time": 1731184339, + "block_time": 1731185930, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_time": 1731184339 + "block_time": 1731185930 } ], "next_cursor": 515, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "status": "valid", - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "tx_index": 81, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_time": 1731184355 + "block_time": 1731185957 } ], "next_cursor": 697, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "status": "valid", - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "tx_index": 65, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "block_time": 1731184276 + "block_time": 1731185862 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": "valid", - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "tx_index": 42, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "block_time": 1731184098 + "block_time": 1731185665 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 }, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 } ], "next_cursor": 860, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "valid", "transfer": false, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 } ], "next_cursor": 869, @@ -657,16 +657,16 @@ Here is a list of events classified by theme and for each an example response: "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "tx_index": 101, - "block_time": 1731184472, + "block_time": 1731186075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false }, @@ -674,7 +674,7 @@ Here is a list of events classified by theme and for each an example response: }, "tx_hash": null, "block_index": 228, - "block_time": 1731184472 + "block_time": 1731186075 } ], "next_cursor": 817, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "open", - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx_index": 103, - "block_time": 1731184478, + "block_time": 1731186081, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -721,7 +721,7 @@ Here is a list of events classified by theme and for each an example response: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -734,9 +734,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": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_time": 1731184478 + "block_time": 1731186081 } ], "next_cursor": 875, @@ -759,24 +759,24 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "match_expire_index": 250, "status": "pending", - "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "tx0_block_index": 229, "tx0_expiration": 21, - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", "tx0_index": 102, - "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "tx1_block_index": 230, "tx1_expiration": 21, - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx1_index": 103, - "block_time": 1731184478, + "block_time": 1731186081, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_time": 1731184478 + "block_time": 1731186081 } ], "next_cursor": 676, @@ -815,13 +815,13 @@ Here is a list of events classified by theme and for each an example response: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_time": 1731184478 + "block_time": 1731186081 } ], "next_cursor": 881, @@ -839,11 +839,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83" + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305" }, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "block_time": 1731184235 + "block_time": 1731185822 } ], "next_cursor": null, @@ -860,13 +860,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "status": "expired" }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 } ], "next_cursor": 670, @@ -885,18 +885,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "status": "valid", - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "tx_index": 57, - "block_time": 1731184235, + "block_time": 1731185822, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "block_time": 1731184235 + "block_time": 1731185822 } ], "next_cursor": null, @@ -914,16 +914,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": "valid", - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "tx_index": 63, - "block_time": 1731184268 + "block_time": 1731185845 }, - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "block_index": 188, - "block_time": 1731184268 + "block_time": 1731185845 } ], "next_cursor": null, @@ -941,13 +941,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "block_time": 1731184399 + "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_time": 1731185989 }, - "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", + "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", "block_index": 211, - "block_time": 1731184399 + "block_time": 1731185989 } ], "next_cursor": 690, @@ -965,14 +965,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "block_time": 1731184461 + "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "block_time": 1731186064 }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 } ], "next_cursor": 673, @@ -998,17 +998,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "satoshirate": 1, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": 0, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "tx_index": 68, - "block_time": 1731184286, + "block_time": 1731185882, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1017,9 +1017,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": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 193, - "block_time": 1731184286 + "block_time": 1731185882 } ], "next_cursor": 254, @@ -1039,9 +1039,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1051,9 +1051,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 581, @@ -1072,13 +1072,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", + "destination": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", "dispense_quantity": 10, - "dispenser_tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", + "dispenser_tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", "tx_index": 31, - "block_time": 1731184035, + "block_time": 1731185614, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1088,9 +1088,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", + "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", "block_index": 135, - "block_time": 1731184035 + "block_time": 1731185614 } ], "next_cursor": null, @@ -1110,14 +1110,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1128,9 +1128,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 582, @@ -1152,19 +1152,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "tx_index": 25, "value": 66600.0, - "block_time": 1731184014, + "block_time": 1731185592, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "block_time": 1731184014 + "block_time": 1731185592 } ], "next_cursor": 195, @@ -1202,12 +1202,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "start_block": 0, "status": "open", - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, - "block_time": 1731184482, + "block_time": 1731186084, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1215,9 +1215,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 } ], "next_cursor": 859, @@ -1235,11 +1235,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60" + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350" }, "tx_hash": null, "block_index": 228, - "block_time": 1731184472 + "block_time": 1731186075 } ], "next_cursor": 854, @@ -1260,17 +1260,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "paid_quantity": 100000000, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "valid", - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -1278,9 +1278,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "block_index": 221, - "block_time": 1731184447 + "block_time": 1731186048 } ], "next_cursor": 801, @@ -1301,28 +1301,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039:0", + "destination": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "status": "valid", - "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", "tx_index": 75, - "block_time": 1731184320, + "block_time": 1731185922, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", "block_index": 199, - "block_time": 1731184320 + "block_time": 1731185922 } ], "next_cursor": 598, @@ -1341,28 +1341,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "1e7a09d1d3861bc0e2a1943e7a07a1d2d126b0545a3e6e70c9bd6da05f26adfb:0", + "source": "82f7606f9c431d1baa013271caddcf151b1e273357d4df7bd454f771ffd351e9:0", "status": "valid", - "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", "tx_index": 74, - "block_time": 1731184316, + "block_time": 1731185919, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", "block_index": 198, - "block_time": 1731184316 + "block_time": 1731185919 } ], "next_cursor": 293, @@ -1381,14 +1381,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 232, - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "msg_index": 1, "quantity": 2000000000, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", "status": "valid", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1398,9 +1398,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 899, @@ -1422,17 +1422,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "status": "valid", - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", + "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", "tx_index": 9, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", + "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", "block_index": 112, - "block_time": 1731183938 + "block_time": 1731185512 } ], "next_cursor": 50, @@ -1489,61 +1489,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", "difficulty": 545259519, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, "confirmed": true }, { "block_index": 231, - "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", - "block_time": 1731184482, - "previous_block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", + "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_time": 1731186084, + "previous_block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", "difficulty": 545259519, - "ledger_hash": "11c246ed523078cd7e8965a824d0119efdf29a8804bd33d33ca62c2403a0b882", - "txlist_hash": "3fbc589ba1d4b539ac24986e9d9bff9df88e645a9c769cd1e29d75344774cdbd", - "messages_hash": "36f6a025cfc80555529f8caec4676afdb16cd570da5a581240de2f0a99bf9ab0", + "ledger_hash": "ca3c4f7089c52fd9a659c33a8fded7797b922145a91020e5fbfadcdde341890b", + "txlist_hash": "01b00b213394a9828ec789110dea92e962e65602a186d2875b275fa8afae841d", + "messages_hash": "3930ccb9531dc440bf85362b938651073436e07b4e305acc7c3d5b5a40f1963b", "transaction_count": 1, "confirmed": true }, { "block_index": 230, - "block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", - "block_time": 1731184478, - "previous_block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", + "block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", + "block_time": 1731186081, + "previous_block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", "difficulty": 545259519, - "ledger_hash": "33fdcc74ca292b56bd8e71f64e3369e2b792b9e972243b85ac0af8e0bf054a70", - "txlist_hash": "365ae250857a91e801ee6966be0b44f668ad99d044717e3869fd3831e38178fa", - "messages_hash": "1d5c798b9f942996c52e60a9a6e43d95591b20fed7580c248773db61984177c5", + "ledger_hash": "e0bb06557b7720f51532f4e83296ae9c1b8162bc033a2420abad8c7008b9a669", + "txlist_hash": "05061ecef04b7fd693f304243f2efc869585b039461313635eb71aa5ecc15643", + "messages_hash": "396d19e50661f5ef2c4d7e23afbcb72bf20a4331929dface107a43c8ea475e40", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", - "block_time": 1731184475, - "previous_block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", + "block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", + "block_time": 1731186078, + "previous_block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", "difficulty": 545259519, - "ledger_hash": "15ec1959f8dc3168ab10b11d8a2deec8823aa3351391fa98241fad3d7a34efc8", - "txlist_hash": "77f626356011bb7d0ccfe8c2dc08cad94edec18db47b3386f6b85fbef123fa55", - "messages_hash": "903edeb4afd0c90a0008385340fa0e35c9cc51bd2688780d7422a75d73cc30e4", + "ledger_hash": "53704ce85f4da6f74f6dc3d98cf0dc80108e3c5b58a160639742ae6cdafa7477", + "txlist_hash": "d5c28112d85d5dff5d4eaf60427db655207c4ad750e2afe35a07ed13e4df5908", + "messages_hash": "87238fd182eb7c10d2aa871ea400fc6ef01e665a8893cc01bf3aec59fd5b3f81", "transaction_count": 1, "confirmed": true }, { "block_index": 228, - "block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", - "block_time": 1731184472, - "previous_block_hash": "3ede6bbb2adee6e46b5a265dee848ffec70661bcd0efdd955bf516519eac20be", + "block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", + "block_time": 1731186075, + "previous_block_hash": "7e2b281286b3cff670b7fe275673eefd7a0f2f70388387221c63f80886b531d0", "difficulty": 545259519, - "ledger_hash": "aa118d35ee0a7751beb9ef7f012cb0d66a39cc29ce75712ebb989d622fff1546", - "txlist_hash": "b522056a36d1ca482065c99a9f13e8268804089c904a901d45aae0f8801f2e2a", - "messages_hash": "ca2e57717c1dbbb76a793c25e740cd6d09f30a7777a9bd845087762013636a8d", + "ledger_hash": "8ffc99e81909e542bb7b9c974b7eed20fbb2def0e480172186434b2e7f97a0c8", + "txlist_hash": "556668e36b9bd20c541cb93cf0c5f747f7a930674bd28c6c07010b19d56f15b0", + "messages_hash": "2492823aeb0c9fa0b1712cd80029a14e32c8f3d108a72ce2877e1c7570746de7", "transaction_count": 0, "confirmed": true } @@ -1580,13 +1580,13 @@ Return the information of a block { "result": { "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", "difficulty": 545259519, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, "confirmed": true } @@ -1598,7 +1598,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd` (str, required) - The index of the block to return + + block_hash: `777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413` (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. @@ -1610,13 +1610,13 @@ Return the information of a block { "result": { "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", "difficulty": 545259519, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, "confirmed": true } @@ -1647,17 +1647,17 @@ Returns the transactions of a block "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1703,11 +1703,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null }, @@ -1716,10 +1716,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 905, @@ -1728,14 +1728,14 @@ Returns the events of a block "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1746,7 +1746,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 904, @@ -1755,9 +1755,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1767,22 +1767,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1792,7 +1792,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" } ], "next_cursor": 902, @@ -1875,16 +1875,16 @@ Returns the events of a block filtered by event "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1894,7 +1894,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 901, @@ -1904,12 +1904,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1919,7 +1919,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 898, @@ -1929,22 +1929,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" } ], "next_cursor": null, @@ -2007,16 +2007,16 @@ Returns the credits of a block "result": [ { "block_index": 232, - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2032,12 +2032,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2053,16 +2053,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2122,12 +2122,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2143,16 +2143,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2188,10 +2188,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "object_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "block_index": 211, "confirmed": true, - "block_time": 1731184399 + "block_time": 1731185989 } ], "next_cursor": null, @@ -2223,13 +2223,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "status": "valid", "confirmed": true, - "block_time": 1731184268 + "block_time": 1731185845 } ], "next_cursor": null, @@ -2261,19 +2261,19 @@ Returns the destructions of a block "result": [ { "tx_index": 101, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "block_index": 228, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731184472, + "block_time": 1731186075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false }, @@ -2322,14 +2322,14 @@ Returns the issuances of a block "result": [ { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "transfer": false, "callable": false, "call_date": 0, @@ -2344,7 +2344,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2378,10 +2378,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2389,7 +2389,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2402,10 +2402,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2413,11 +2413,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2455,27 +2455,27 @@ Returns the dispenses of a block { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2490,7 +2490,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2531,16 +2531,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -2579,10 +2579,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, "block_index": 231, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -2607,7 +2607,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2644,22 +2644,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -2700,17 +2700,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "block_hash": "61f3017eaec7edc68c202ca65b851ad153134e3d18edf1adb7f0b09d31ffca96", - "block_time": 1731184014, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "667e94f14974a787dabac291bffd945e5aad9800808a585828341d9fb75748fb", + "block_time": 1731185592, + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6:1 2 ", + "utxos_info": " 48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2735,25 +2735,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "block_hash": "3134950ef76da87375e99ad71c40ba9964ea3d3a2b1e3ea4bdfe361c1162a705", - "block_time": 1731184235, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "1cf0bb1f8b53898267b9f39756a384506a0b8ab5b8a0f85079c585c2052c2abb", + "block_time": 1731185822, + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "btc_amount": 2000, "fee": 10000, - "data": "0bace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f22433404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "data": "0bfbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "supported": true, - "utxos_info": " a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f:0 3 1", + "utxos_info": " 9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "status": "valid" } }, @@ -2768,23 +2768,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "block_index": 188, - "block_hash": "41d3a5fdf8dcce77e5fdf1b605d428555b1969f3eb7165e4d65235f066b91a89", - "block_time": 1731184268, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "1b3a5656677394842e155e11f3c8348ce1cfa32fca7e57ea9bf4f44df3fde723", + "block_time": 1731185845, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "data": "46d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "supported": true, - "utxos_info": " 9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61:1 2 ", + "utxos_info": " 51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "status": "valid" } }, @@ -2807,17 +2807,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 193, - "block_hash": "5b3366fe7b95aa0e86fe3b4b08c1fe46718c09b32bafa885c3d77e5f3177e65f", - "block_time": 1731184286, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "34f8199af68420a203f2efb930c4d7b5bdbbb6f7f5704a7dadb1691f4002eae5", + "block_time": 1731185882, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd:1 2 ", + "utxos_info": " 78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2834,7 +2834,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2853,17 +2853,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2883,17 +2883,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "block_hash": "1d6d8268317cc9b5bc7426132ac3554c97dfdb7b7c4e96d287bbc2b19cbfb261", - "block_time": 1731184098, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "287593f337bb0710d6f273783a30e6c5bea7813bf39c35bb7652a966d8ab8da8", + "block_time": 1731185665, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043:1 2 ", + "utxos_info": " 2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2906,7 +2906,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2931,17 +2931,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", - "block_time": 1731184482, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_time": 1731186084, + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7:1 2 ", + "utxos_info": " 5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -2983,17 +2983,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 103, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", - "block_time": 1731184478, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", + "block_time": 1731186081, + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e:1 2 ", + "utxos_info": " 9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3016,7 +3016,7 @@ Here is sample API output for each of these transactions: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -3036,17 +3036,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", - "block_time": 1731184339, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", + "block_time": 1731185930, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "supported": true, - "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", + "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3054,12 +3054,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3077,17 +3077,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_hash": "7cb69028b1a5d53ee798c7800f6d84796d833751ddecbd7cdffae070149851b6", - "block_time": 1731184355, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "block_hash": "0c303fcd060ff510ebae178fd2bce46d747b73a2f7994ed0b4bfb34a8005c4ec", + "block_time": 1731185957, + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729:0 4 ", + "utxos_info": " 11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3095,14 +3095,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3110,7 +3110,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3136,23 +3136,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "block_hash": "71836830bf09c311d2a49df0a6587770c5567e277e4e5309acd80fe240c5f4ae", - "block_time": 1731184276, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "block_hash": "3fe8efb98ff8e56a4ca3b48ee4c24af9c6541464a13378cfbf81f6b33f0ca5fd", + "block_time": 1731185862, + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048096548f3528bf80e16d1280561f950636bb3078d9017377656570206d7920617373657473", + "data": "04804acd4545d8daf86927d7f9b0476f3136db640f72017377656570206d7920617373657473", "supported": true, - "utxos_info": " 37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf:1 2 ", + "utxos_info": " e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "memo": "sweep my assets" } @@ -3168,17 +3168,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", "block_index": 199, - "block_hash": "66fc7cb0e2a0d3c84b68a44513f35ff5c9df00cf74dfdaef354a8025fe6a05c6", - "block_time": 1731184320, - "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "block_hash": "595cfe64299da0832259b6a97322cd2f40d50b253af77bdf4091a75a098f5a62", + "block_time": 1731185922, + "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "btc_amount": 546, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039:0 3 1", + "utxos_info": " 70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3190,7 +3190,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -3208,17 +3208,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", "block_index": 198, - "block_hash": "1ec734bca73a79f03b2c812f11cf3868b3c6324733057074ef88db7ac486f469", - "block_time": 1731184316, - "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "block_hash": "17788cf8e5724259085012003cc0ada5631f12df8d4241185ffffae18df713c1", + "block_time": 1731185919, + "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "1e7a09d1d3861bc0e2a1943e7a07a1d2d126b0545a3e6e70c9bd6da05f26adfb:0 02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4:1 2 ", + "utxos_info": "82f7606f9c431d1baa013271caddcf151b1e273357d4df7bd454f771ffd351e9:0 2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3255,17 +3255,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3278,17 +3278,17 @@ Returns the list of the last ten transactions }, { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", - "block_time": 1731184482, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_time": 1731186084, + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7:1 2 ", + "utxos_info": " 5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -3332,7 +3332,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001012e505dc63ab82a07e0134e27ee3e181ad2fa0c76fca87c1399c81e925af58b900000000000ffffffff0200000000000000002e6a2cbe28aca0dafb17ce1f352590c02cf3a41b87ddd104da458fa211f15fb259be15ef10631daeefe49bc63a67ecf0ca052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0247304402201efe949f5a57603f18b8f3364124342f4d944bf586d6c123567cb68e7282681c022074a79d6208049aceb10e3b4b95572f41c362f867a97c85ede1573777b9529ead012103c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d9400000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101e18b61bacd0649e2505d8b70080199051499127a6fbffd0dae0826a3ffe386930200000000ffffffff03a00f0000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef80800000000000000000c6a0ac6554c8d67f4f43cacdb1079082701000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c0525180247304402203e35c7eaf7728c3986228ba393a4cbc5b70acbe85d7faff2c5d2e5c1352424dc02202cd25cac7de59449c0ed1b15324b802e71bb8c29709d12bf176c785660b0341901210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505500000000` (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. @@ -3345,62 +3345,54 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "2e505dc63ab82a07e0134e27ee3e181ad2fa0c76fca87c1399c81e925af58b90", - "n": 0, + "hash": "e18b61bacd0649e2505d8b70080199051499127a6fbffd0dae0826a3ffe38693", + "n": 2, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ + { + "value": 4000, + "script_pub_key": "00147c2eff327169216a21c7c6d128cf4a981d0ef808" + }, { "value": 0, - "script_pub_key": "6a2cbe28aca0dafb17ce1f352590c02cf3a41b87ddd104da458fa211f15fb259be15ef10631daeefe49bc63a67ec" + "script_pub_key": "6a0ac6554c8d67f4f43cacdb" }, { - "value": 4999990000, - "script_pub_key": "001479eb4f94974a9b1861dd9e7d28a893892d6e30ed" + "value": 4949834000, + "script_pub_key": "0014d1d6cb957f70d439e67ab9c0f75ca54e4c052518" } ], "vtxinwit": [ - "304402201efe949f5a57603f18b8f3364124342f4d944bf586d6c123567cb68e7282681c022074a79d6208049aceb10e3b4b95572f41c362f867a97c85ede1573777b9529ead01", - "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" + "304402203e35c7eaf7728c3986228ba393a4cbc5b70acbe85d7faff2c5d2e5c1352424dc02202cd25cac7de59449c0ed1b15324b802e71bb8c29709d12bf176c785660b0341901", + "0249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc5055" ], "lock_time": 0, - "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", - "tx_id": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4" + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_id": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019" }, "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, + "message_type": "dispense", + "message_type_id": 13, "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" + "data": "00" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00004000" } } ``` @@ -3410,7 +3402,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2` (str, required) - Transaction hash + + tx_hash: `0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927` (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. @@ -3421,18 +3413,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "88a4f9b6979aaa04d89bb5045fcc3e503b4ee53a928cb8d18ff84aa25913b7bb", + "hash": "3ad0b9a2684bc6b78db99630427a5bfd239d43dae592bc3a03a6dd8206afb71b", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3442,20 +3434,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e8dfc30a1336d8a0b0589e56c79393ca3e528fe19c786b28f17a4a13023d3a0a6b94ff71b237f9be8de6c4da1cc4e" + "script_pub_key": "6a2e37300bb519db38b5a92c905ea5156c711b102011d3ab46997e45c53303c290c7f3401218925ac84764dc2b1c7f3a" }, { "value": 4949930546, - "script_pub_key": "001496548f3528bf80e16d1280561f950636bb3078d9" + "script_pub_key": "00144acd4545d8daf86927d7f9b0476f3136db640f72" } ], "vtxinwit": [ - "304402202494c4d20fcab8e5a787c4baccf0781f09e202d2b1069fa8bd4ae505cb42042b0220578c6e05c8202a060c0c3e7d8d949a7d1d20ad21ce55f3886e97491bd5bbbeb001", - "02d6b428bff40e29aa065eb0bedfdc0f23953ba2300678c8811de551c15c226f8f" + "3044022051791c0420151a1f74fdede830ff3d0b5452406ab52010fec3fdb13f3822f771022057cb135e77dd0de1fce640c8743d6c3992e6f9ef8ae54d294c54040960ff5dd501", + "03c097cd32001edf5502b0ef55a1a28c617bd229d511e563b2309e36eac1e9213a" ], "lock_time": 0, - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", - "tx_id": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2" + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_id": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3463,7 +3455,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -3524,17 +3516,17 @@ Returns a transaction by its index. { "result": { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3553,7 +3545,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction + + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (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. @@ -3565,17 +3557,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3618,12 +3610,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 905, @@ -3632,14 +3624,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3650,9 +3642,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 904, @@ -3661,9 +3653,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3673,24 +3665,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3700,9 +3692,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 902, @@ -3710,14 +3702,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 232, - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "msg_index": 1, "quantity": 2000000000, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", "status": "valid", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3727,9 +3719,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 901, @@ -3742,7 +3734,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction to return + + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `907` (str, optional) - The last event index to return @@ -3766,12 +3758,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 905, @@ -3780,14 +3772,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3798,9 +3790,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 904, @@ -3809,9 +3801,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3821,24 +3813,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3848,9 +3840,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 902, @@ -3858,14 +3850,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 232, - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "msg_index": 1, "quantity": 2000000000, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", "status": "valid", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3875,9 +3867,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 901, @@ -3890,7 +3882,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction to return + + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (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 @@ -3909,10 +3901,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3920,7 +3912,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3933,10 +3925,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3944,11 +3936,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3966,7 +3958,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction to return + + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (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 @@ -3986,27 +3978,27 @@ Returns the dispenses of a block { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4021,7 +4013,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4065,16 +4057,16 @@ Returns the events of a transaction "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4084,9 +4076,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 901, @@ -4096,12 +4088,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4111,9 +4103,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 898, @@ -4123,24 +4115,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": null, @@ -4153,7 +4145,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The hash of the transaction to return + + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `907` (str, optional) - The last event index to return + Default: `None` @@ -4175,16 +4167,16 @@ Returns the events of a transaction "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4194,9 +4186,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 901, @@ -4206,12 +4198,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4221,9 +4213,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 898, @@ -4233,24 +4225,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": null, @@ -4265,7 +4257,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (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 @@ -4289,7 +4281,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4299,7 +4291,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4310,7 +4302,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4320,7 +4312,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4331,7 +4323,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4341,7 +4333,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4352,7 +4344,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4362,7 +4354,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4373,7 +4365,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4383,7 +4375,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4400,7 +4392,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - Comma separated list of addresses to return + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4419,17 +4411,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_hash": "7cb69028b1a5d53ee798c7800f6d84796d833751ddecbd7cdffae070149851b6", - "block_time": 1731184355, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "block_hash": "0c303fcd060ff510ebae178fd2bce46d747b73a2f7994ed0b4bfb34a8005c4ec", + "block_time": 1731185957, + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729:0 4 ", + "utxos_info": " 11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4437,14 +4429,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4452,7 +4444,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4471,17 +4463,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", + "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", "block_index": 204, - "block_hash": "3f4feca9e0eb15fc2f0c0bdf2f1ebf3bc073809798605bf05451a8e233d121d7", - "block_time": 1731184351, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "block_hash": "2e6cd1b41572df6efd98a88f5c70314eb0d987ec4b2d763806788f4ade34bca4", + "block_time": 1731185953, + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f72c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319:0 4 ", + "utxos_info": " 582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4489,14 +4481,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4504,7 +4496,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4523,17 +4515,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", - "block_time": 1731184347, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", + "block_time": 1731185949, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", + "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4541,14 +4533,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4556,7 +4548,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4575,17 +4567,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", - "block_time": 1731184342, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", + "block_time": 1731185934, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", + "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4593,14 +4585,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4608,7 +4600,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4627,17 +4619,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", - "block_time": 1731184339, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", + "block_time": 1731185930, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "supported": true, - "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", + "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4645,12 +4637,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4670,7 +4662,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `907` (str, optional) - The last event index to return @@ -4694,29 +4686,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "block_time": 1731184461 + "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "block_time": 1731186064 }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4726,37 +4718,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "block_time": 1731184399 + "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_time": 1731185989 }, - "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", + "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", "block_index": 211, - "block_time": 1731184399 + "block_time": 1731185989 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731184399, + "block_time": 1731185989, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4766,9 +4758,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", + "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", "block_index": 211, - "block_time": 1731184399 + "block_time": 1731185989 }, { "event_index": 698, @@ -4776,15 +4768,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "status": "valid", - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "tx_index": 81, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4794,9 +4786,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_time": 1731184355 + "block_time": 1731185957 } ], "next_cursor": 698, @@ -4809,7 +4801,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt,bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een,bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe` (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 @@ -4825,17 +4817,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "quantity": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "status": "valid", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -4846,22 +4838,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4871,22 +4863,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "block_index": 232, - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4896,30 +4888,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731184495.3943753, + "block_time": 1731186102.4815562, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "destination": "", "fee": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, - "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", + "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -4933,7 +4925,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -4946,7 +4938,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 @@ -4966,7 +4958,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4974,14 +4966,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -4989,14 +4981,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5004,14 +4996,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5026,7 +5018,7 @@ Returns the balances of an address "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5034,7 +5026,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5051,7 +5043,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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` @@ -5064,7 +5056,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5089,7 +5081,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5139,16 +5131,16 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5160,16 +5152,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "event": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5181,16 +5173,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", + "event": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5202,16 +5194,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5223,16 +5215,16 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5253,7 +5245,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5292,16 +5284,16 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5313,20 +5305,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5334,16 +5326,16 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5355,20 +5347,20 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5376,20 +5368,20 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "event": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184339, + "block_time": 1731185930, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5406,7 +5398,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address of the feed + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5441,7 +5433,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 @@ -5460,9 +5452,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", + "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", "block_index": 128, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5470,7 +5462,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184010, + "block_time": 1731185588, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5484,7 +5476,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 @@ -5502,15 +5494,15 @@ Returns the burns of an address { "result": [ { - "tx_index": 7, - "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", + "tx_index": 8, + "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", "block_index": 112, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5525,7 +5517,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 +5536,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5555,7 +5547,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5568,10 +5560,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5579,11 +5571,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5592,10 +5584,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5603,11 +5595,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5616,10 +5608,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5627,7 +5619,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5640,10 +5632,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5651,11 +5643,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5673,7 +5665,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8` (str, required) - The address to return + + address: `bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5` (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 @@ -5692,10 +5684,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "cfab684ec8edd380be6c9db2ca32fc6dbe63b99b299031523dc692ab1206395f", + "tx_hash": "d716473e904fa7dff860001bfc889a533c80bc9cd4a9613c4072acee63c491ef", "block_index": 142, - "source": "7dc2e6130fd69aba3e5d5ad0d0dad43d1b6432f92a1ebeda31dca29605af0b5e:0", - "destination": "bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8", + "source": "c32e3600404ad843d8cbb61a672536529a761e48a9601c3d2a0a2e33755bc398:0", + "destination": "bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5703,11 +5695,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184082, + "block_time": 1731185648, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5725,7 +5717,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5753,7 +5745,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8` (str, required) - The address to return + + address: `bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5781,7 +5773,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5810,9 +5802,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5821,7 +5813,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5832,7 +5824,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5849,9 +5841,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5860,7 +5852,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5871,11 +5863,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -5897,7 +5889,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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` @@ -5910,9 +5902,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5921,7 +5913,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5932,7 +5924,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5955,7 +5947,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -5975,19 +5967,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5995,7 +5987,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6010,11 +6002,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -6024,19 +6016,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6044,7 +6036,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6059,7 +6051,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6073,19 +6065,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6093,7 +6085,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6108,7 +6100,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6130,7 +6122,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address to return + + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (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 @@ -6150,19 +6142,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6170,7 +6162,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6185,11 +6177,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -6199,19 +6191,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6219,7 +6211,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6234,7 +6226,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6248,19 +6240,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6268,7 +6260,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6283,7 +6275,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6305,7 +6297,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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` @@ -6326,19 +6318,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6346,7 +6338,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6361,7 +6353,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6375,19 +6367,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6395,7 +6387,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6410,7 +6402,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6432,7 +6424,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address to return + + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (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` @@ -6453,19 +6445,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6473,7 +6465,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6488,7 +6480,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6502,19 +6494,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6522,7 +6514,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6537,7 +6529,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6559,7 +6551,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt` (str, required) - The address to return + + address: `bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een` (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 @@ -6578,16 +6570,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -6601,7 +6593,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6633,14 +6625,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", + "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -6655,20 +6647,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184325, + "block_time": 1731185927, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "b2dc06d29e525017a11adcde012b34a5068a242556928012dc3728a2b6d2a718", + "tx_hash": "942ff026a95e1761a6f0dada7624e857874fa8de566a675304f81c8148898c00", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -6683,20 +6675,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184154, + "block_time": 1731185723, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "9c7807985defc6a3735e70993a5ce53e92fda09421b10a2c13252d7e4446d2f7", + "tx_hash": "5d8559b8ea714872fec166bc290d687ddb2c145b1e3b8e47524942db750f1610", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -6711,20 +6703,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731184140, + "block_time": 1731185709, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "75b01e8e818dff557e67c2b88e6daa0b01f41bf2cc67aa060f3c5b44cce93a28", + "tx_hash": "ce8ad8a3f3d13aaedf8cbe83bcdea291421aa6877ed5631f19948f42c5de6a87", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -6739,20 +6731,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184137, + "block_time": 1731185704, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "ff2ebb8c2298f81c37ccd43530558b91b6e2610eb6f80ca58bd160e34dde91dd", + "tx_hash": "483971048fdc90f87cc37efcd8ac84bee20a87cd418b69d5a3edc61861d290e7", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -6767,7 +6759,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184133, + "block_time": 1731185700, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6782,7 +6774,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The issuer or owner to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6805,8 +6797,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -6814,16 +6806,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731184325, - "last_issuance_block_time": 1731184325, + "first_issuance_block_time": 1731185927, + "last_issuance_block_time": 1731185927, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 10000000000, @@ -6831,16 +6823,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731184133, - "last_issuance_block_time": 1731184140, + "first_issuance_block_time": 1731185700, + "last_issuance_block_time": 1731185709, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 180, @@ -6848,16 +6840,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731184105, - "last_issuance_block_time": 1731184122, + "first_issuance_block_time": 1731185681, + "last_issuance_block_time": 1731185690, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -6865,16 +6857,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731184060, - "last_issuance_block_time": 1731184060, + "first_issuance_block_time": 1731185637, + "last_issuance_block_time": 1731185637, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 40, @@ -6882,8 +6874,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731184002, - "last_issuance_block_time": 1731184005, + "first_issuance_block_time": 1731185580, + "last_issuance_block_time": 1731185585, "supply_normalized": "0.00000040" } ], @@ -6897,7 +6889,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The issuer to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 @@ -6920,8 +6912,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -6929,16 +6921,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731184325, - "last_issuance_block_time": 1731184325, + "first_issuance_block_time": 1731185927, + "last_issuance_block_time": 1731185927, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 10000000000, @@ -6946,16 +6938,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731184133, - "last_issuance_block_time": 1731184140, + "first_issuance_block_time": 1731185700, + "last_issuance_block_time": 1731185709, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 180, @@ -6963,16 +6955,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731184105, - "last_issuance_block_time": 1731184122, + "first_issuance_block_time": 1731185681, + "last_issuance_block_time": 1731185690, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -6980,16 +6972,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731184060, - "last_issuance_block_time": 1731184060, + "first_issuance_block_time": 1731185637, + "last_issuance_block_time": 1731185637, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 40, @@ -6997,8 +6989,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731184002, - "last_issuance_block_time": 1731184005, + "first_issuance_block_time": 1731185580, + "last_issuance_block_time": 1731185585, "supply_normalized": "0.00000040" } ], @@ -7012,7 +7004,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The owner to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7035,8 +7027,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -7044,16 +7036,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731184325, - "last_issuance_block_time": 1731184325, + "first_issuance_block_time": 1731185927, + "last_issuance_block_time": 1731185927, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 10000000000, @@ -7061,16 +7053,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731184133, - "last_issuance_block_time": 1731184140, + "first_issuance_block_time": 1731185700, + "last_issuance_block_time": 1731185709, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 180, @@ -7078,16 +7070,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731184105, - "last_issuance_block_time": 1731184122, + "first_issuance_block_time": 1731185681, + "last_issuance_block_time": 1731185690, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -7095,16 +7087,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731184060, - "last_issuance_block_time": 1731184060, + "first_issuance_block_time": 1731185637, + "last_issuance_block_time": 1731185637, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 40, @@ -7112,8 +7104,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731184002, - "last_issuance_block_time": 1731184005, + "first_issuance_block_time": 1731185580, + "last_issuance_block_time": 1731185585, "supply_normalized": "0.00000040" } ], @@ -7127,7 +7119,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7146,17 +7138,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", - "block_time": 1731184347, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", + "block_time": 1731185949, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", + "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7164,14 +7156,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7179,7 +7171,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7198,17 +7190,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", - "block_time": 1731184342, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", + "block_time": 1731185934, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", + "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7216,14 +7208,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7231,7 +7223,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7250,17 +7242,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", - "block_time": 1731184339, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", + "block_time": 1731185930, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "supported": true, - "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", + "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7268,12 +7260,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7284,17 +7276,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", + "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", "block_index": 200, - "block_hash": "4c8cea3b940509277a1a9e82b7a70c941056f55d8a6bd5477c298117af4ebbe6", - "block_time": 1731184325, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "325d74a8f97d29fefe1a1abf7b4a614ba04371cf048cd84ec08c61beace74c16", + "block_time": 1731185927, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4:1 2 ", + "utxos_info": " b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7319,17 +7311,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 193, - "block_hash": "5b3366fe7b95aa0e86fe3b4b08c1fe46718c09b32bafa885c3d77e5f3177e65f", - "block_time": 1731184286, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "34f8199af68420a203f2efb930c4d7b5bdbbb6f7f5704a7dadb1691f4002eae5", + "block_time": 1731185882, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd:1 2 ", + "utxos_info": " 78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7346,7 +7338,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7367,7 +7359,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 @@ -7386,20 +7378,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7424,7 +7416,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7453,9 +7445,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7472,7 +7464,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7500,9 +7492,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7519,7 +7511,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7547,9 +7539,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7566,7 +7558,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7594,9 +7586,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "block_index": 211, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7613,7 +7605,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184399, + "block_time": 1731185989, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7650,7 +7642,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The source of the fairminter to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7675,10 +7667,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7703,7 +7695,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731184122, + "block_time": 1731185690, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7715,10 +7707,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "b9b130610d358f7e938ae03918b97c1a36f23f1db5f80c318bf053f98fd24519", + "tx_hash": "09ad63ca98e5eff8a4621ae896e87fb4242738f8b76f8b52ff6a05d8e37c9585", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7743,7 +7735,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184101, + "block_time": 1731185668, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7752,10 +7744,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", + "tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7780,7 +7772,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731184002, + "block_time": 1731185580, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7792,10 +7784,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7820,7 +7812,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731183977, + "block_time": 1731185554, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7832,10 +7824,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", + "tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7860,7 +7852,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731183973, + "block_time": 1731185550, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7872,10 +7864,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", + "tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7900,7 +7892,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731183954, + "block_time": 1731185529, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7922,7 +7914,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address of the mints to return + + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7940,22 +7932,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", + "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", "tx_index": 46, "block_index": 150, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184122, + "block_time": 1731185690, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7964,22 +7956,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", + "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", "tx_index": 45, "block_index": 149, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184109, + "block_time": 1731185686, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7988,22 +7980,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e6484d6b5cb8c94f8d0efa3846edc38d87ab2d67b204a9eee1a1f83ce7e24292", + "tx_hash": "7ba9bbc46e8ae51d75ea8d784d22dddc742cb09b89f195bf458d501508025a2c", "tx_index": 23, "block_index": 127, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184005, + "block_time": 1731185585, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8012,22 +8004,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1ee7360c16457de587ecf59bcaf00b8dde0e96c6586d9b9876190df06d62e44e", + "tx_hash": "1acb763593931ac1b9f83e08bfb8078cab3803743069f1466e30eb84ea9ef7f9", "tx_index": 21, "block_index": 125, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183998, + "block_time": 1731185576, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8036,22 +8028,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "2a06b74afa4de1bc90cee21083b7eb8b99e1d48531098f54aa821b6ab90f29ef", + "tx_hash": "a1ccc4bd919c2c6c97243d1b065f15e5621ce400cfb4c08b9c7c87fc13dc4d22", "tx_index": 20, "block_index": 124, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183984, + "block_time": 1731185563, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8060,22 +8052,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "526c23a46822cd2319f2638275c18ea14cd971d10ca25858803a942310dff1df", + "tx_hash": "16fed96a5dbbb814d4dfc3fc2b131de506089cbd085880fe059048d6aa63f335", "tx_index": 19, "block_index": 123, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183980, + "block_time": 1731185559, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8084,22 +8076,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "de5fc8839ab448caf4def319fb2df69bce81e22b850593c9dfb68c59db536b08", + "tx_hash": "730ffaa535f45046390c9bfe6d6218cfe7c1536ed7a0814d2520f1cdd9871205", "tx_index": 15, "block_index": 118, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183961, + "block_time": 1731185537, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8108,22 +8100,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c3892e408177e1ce4876e4311684edccf20a98c32cbc221510b6261bbfb26fb1", + "tx_hash": "bd2af388db19f0a79f476e3e2961b323cd09f6e425639b755bff532cc92e8bcf", "tx_index": 11, "block_index": 114, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183947, + "block_time": 1731185521, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8142,7 +8134,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address of the mints to return + + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8172,7 +8164,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0` (str, required) - The utxo to return + + utxo: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8192,8 +8184,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8206,12 +8198,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8251,8 +8243,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will make the bet + + feed_address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (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) @@ -8326,7 +8318,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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) @@ -8388,7 +8380,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8401,7 +8393,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985834, "btc_fee": 14166, - "rawtransaction": "02000000000101d0c4dbf092d67451d649c384eafc573ab03e1757ddb22d301dd4d00692586c070000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff0200000000000000002b6a291fce192764c745e2b5b2882bed667a20ede8e9fe94b03e50e2c23ef6fd6144a06139b6b6409aff0cd6aaba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010161db2110e7ed9439b882cca495f4a087f6c49d3eea58d53e1916a5dc46d8663d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0200000000000000002b6a292c0ec151f56e2ae4f7a55dadfe85f55b09ad626591a4a3d882d662cca5ebbc345c7f7f50122b918f65aaba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8423,8 +8415,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending the payment - + order_match_id: `92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending the payment + + order_match_id: `ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb` (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) @@ -8482,24 +8474,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "data": "434e5452505254590bed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980970, "btc_fee": 18030, - "rawtransaction": "020000000001014725a87e98d663a7c98177e322a63e6b456c4197f75cade8f6619172041ba72a0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e803000000000000160014182c7db9515d58f42e8845e4f48551a47d2133a300000000000000004b6a493794b54a590c6913a5bc9267bd5e71985e1fde5d1917deba48aa332154182c89458618af63d1359e0f956fe83e397a72a3734d0284f026fd512f0a34c9ef353093b9af53cb5188ce79aaa7052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010149c3fc2308c1146b0de3469f574cbc8181ba42d12bf9cefca63746a7e9b917c5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600141d5098fbebdfcd42a99dfb2faa4254d26def3cc800000000000000004b6a49ed49ccdc3a30ed21b7e58a3d22d81237e76a1030d4f4af56c2e5550d4949bc90e647832e4723ecc8a9f30d77c9494923fe82c9367f89cc08fe00814d577a4e6e683251fac3b855fc44aaa7052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", - "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "status": "valid" } } @@ -8512,7 +8504,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address with the BTC to burn + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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` @@ -8573,7 +8565,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8584,7 +8576,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985829, "btc_fee": 13171, - "rawtransaction": "02000000000101ae0cf26a54ef9a3eec94975f8edafdf18d655c8fede60897c4d99d11b0ec50270000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000" + "rawtransaction": "0200000000010131b8fb279149cf786245701df6bcce3acce76a38d404563fee047efd2e3a2842000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000" } } ``` @@ -8594,8 +8586,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: `bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb` (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) @@ -8653,22 +8645,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "data": "434e545250525459469ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "btc_in": 90000, "btc_out": 0, "btc_change": 75834, "btc_fee": 14166, - "rawtransaction": "020000000001017e40b79857bd52d2941ca388273c9d20781ca8fd4f28b841f4854e167e949b8301000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff0200000000000000002b6a29e73c36a562e34b4ebd6b6b0be35e9c9184449dc02db5dfbd9b27c8723d4347f8b6f86fca57a49a337b3a28010000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000000000000", + "rawtransaction": "02000000000101cb7cb115b8772e5a127442097f3be2f91f7cdcdeed68908fbfa65c98ba45c09a010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff0200000000000000002b6a298cd0e081b22b4258b97f9c061fea37a8008f1c535b4b6b995aeba4df9b34239649bbd600a2e0ab0a1a3a280100000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "status": "valid" } } @@ -8681,7 +8673,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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 @@ -8742,7 +8734,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8762,7 +8754,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986361, "btc_fee": 13639, - "rawtransaction": "0200000000010136e49fa9c46cf51e4e2ad56bc06a814bf25b8f8c58b25778e1e10a1886aa6e920000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000226a2052b752b0985fc771a3b2c8df4d14f2d4e3b41f0a207383180baea634897708abb9bc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010167c68ed4b96cf794d9489a97a8448e15f57e8eecfbe1022c362743482a7fcb62000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000226a20cd079f16be64b4955ae914b0158fa8c7765b4c32d6988f3f74eea0b072168805b9bc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8782,7 +8774,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: `bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md` (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) @@ -8849,7 +8841,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8874,7 +8866,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859575, "btc_fee": 14224, - "rawtransaction": "02000000000101fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a0200000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebbffffffff0200000000000000002c6a2abfc115f234dec38bd383f5495613c732f45285bdda1d459c9bb46e258e37a4a13265c3182110f19181aff7dc08270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb02000000000000", + "rawtransaction": "02000000000101a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d01502000000160014658b9c2487762c4260cf1ff801a6531c160b0c94ffffffff0200000000000000002c6a2a44920b2ac26fa90b6c93c5d96492139d676e2009feca4b33ea1ffda3092ff4d32a8df7e73f350b696830f7dc082701000000160014658b9c2487762c4260cf1ff801a6531c160b0c9402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8900,7 +8892,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8961,7 +8953,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -8969,7 +8961,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8988,7 +8980,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001016fb8ead5a29d3287b486fd926db8f12677885e6e0fa73c28218a3f9e5f6400d10000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a213561528d9bd0516b8eb3391a4f9e11c7b185425279854713e2cdcd82cdeafbdda17ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "020000000001010e79dd2c22e58474c75b096ac328af25edc0b0f1fd8df88d036b7af47da5e58d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a2182d70eccff8bb21f00cae24466a6463db9711d47cd4dfc9c5a03d2bef8ba536bf77ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9009,10 +9001,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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` @@ -9079,10 +9071,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "transfer_destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "lock": false, "reset": false, @@ -9096,7 +9088,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983766, "btc_fee": 15688, - "rawtransaction": "0200000000010147f23f61d2264f07a84e3102b2fd6629925a487361cc07adb16cfc05ba73ffcd0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000236a21281ae8b29a0bd2a503135a3408b6b3aa2b2d2c3cbbb150fe59418b35848f470dfa96b2052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "02000000000101a4f30ddb6a622b9825c06da68e210300ca06be1e81242dfc88526cf061591a4a000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000236a21e7049a4b3204d6dee973b2d15f1d7a3d89cc53d77ec84c49f61ffacddb32d3930c96b2052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9125,9 +9117,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: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7,bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9194,16 +9186,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", 1 ], [ "FAIRMINTC", - "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", 2 ] ], @@ -9212,26 +9204,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e5452505254590300028079eb4f94974a9b1861dd9e7d28a893892d6e30ed8088cd42138cc08788c42bd1c85f4510c0b80fe1964000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807c2eff327169216a21c7c6d128cf4a981d0ef80880d1d6cb957f70d439e67ab9c0f75ca54e4c0525184000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949785336, "btc_fee": 20664, - "rawtransaction": "02000000000101295775dc45471111320bc32fd52bb96312a1fdc28458f7b31f7b0f874180bbad0300000016001488cd42138cc08788c42bd1c85f4510c0b80fe196ffffffff03e80300000000000069512102a003a408e37f096d5b795d6dad457a132dccc88cc52bf92c12b7c977ebf512b22103d0d4fe874d78904c81c173b2a0917401c689a20a1f5c679f92c5e13483f58124210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aee80300000000000069512102bf03a408e37f096d5b6a5d6f2d3c915cb97f8217dd4a24b26f9b61e462d87c502102e0397f0f803a83c04146fb768b40bc5e839962b210bdf1df92c5ddda3c7138e2210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aef8ba07270100000016001488cd42138cc08788c42bd1c85f4510c0b80fe19602000000000000", + "rawtransaction": "0200000000010189e8cd58809250035f8327b3a866d39d5bd42d10d860178c509b1f2752afd71103000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c052518ffffffff03e80300000000000069512102395dacbf610baff9e75e24b53a0d19b84710ea311e2b3145a74a3fb440906a4b21031d2f25a43873b9c734791011939b0ec2442757f967ed701515c40c5bc46abcfd210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aee80300000000000069512103265dacbf610baff9e74d24b7ba71374775458310740af6837666f0fed88d647b2102e527a475eeb82cb844ad29f7e922ce35188219b562c8685515c430b57bee0504210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aef8ba072701000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c05251802000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9247,7 +9239,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `BURNER` (str, required) - The asset that will be received in the trade @@ -9311,7 +9303,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -9329,7 +9321,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -9343,7 +9335,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985249, "btc_fee": 14751, - "rawtransaction": "020000000001011848af13e7d7484551083a2a8d0618191a4d9a2024e27e6dc5448121489e5dd00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000356a33af4443a35a08c71f78fbbfd7c224ff10eb0cc24bbf795462a769cb419fef2b4cee8a763ddfe9c5d9acf9502da0afa70b73726361b8052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "02000000000101b6643e2d1dd1b7356e9e47b783a012886a1cc0aeb96e69bce7b54e6b8675fdff000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000356a333f5590cc500874de862e7599577aeb4498fecd9b8f851e95c4bb83e3c87ffac00493e33ccb2b4bc39c4f51f90eda349ca8cd2061b8052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9369,8 +9361,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (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 @@ -9436,8 +9428,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9454,19 +9446,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "434e54525052545902000000000000000100000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985541, "btc_fee": 14459, - "rawtransaction": "020000000001019d83119f77d6ac6db1637aa1fac5a5a7bc1471cdb2324fdb41efbc826b8a56d00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000306a2e51240f9fe445df5d27175afea6740bc38ce3acaa19f39b65b4632910ab4c39536d53f4d5c009886fbe0b6e363b3085b9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "020000000001010b664dc457fe5c77dc89496b233a04040505960a1ee866dec8e1af7ac6d113f2000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000306a2e29bf9d1bda0eff3398687aa065d742479b426ec608d8ee3653c8f966953198a7cc1ee90656ad86270497144ab9c985b9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "quantity_normalized": "0.00001000" } @@ -9480,8 +9472,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending - + destination: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending + + destination: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (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 @@ -9541,24 +9533,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e545250525459048088cd42138cc08788c42bd1c85f4510c0b80fe19607ffff", + "data": "434e5452505254590480d1d6cb957f70d439e67ab9c0f75ca54e4c05251807ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001010b460e916325477555b7f4c1282f3c45fb2adcc8de67feb46ca4cd8319856b5d0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a21ac2ad83593e7fed0f54ee561a82a2e68c4df691b7ee9b09af1832476d1698cbe437ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "020000000001019fa6891009e280950fd417390ddbc6609285c1b9cef2ae4e9f70d8b54cb5c88c000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a21a5ba66383c964e21b9c396deaab731fe491546ebb4341084c7ada0fb8387b733047ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "flags": 7, "memo": "ffff" } @@ -9572,8 +9564,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe` (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` @@ -9632,8 +9624,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "quantity": 1000, "skip_validation": false }, @@ -9643,7 +9635,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4999984658, "btc_fee": 14342, - "rawtransaction": "020000000001018182b8cc2135d5f3054535fd5fb35010a4b31af243ccf5328d283fdefa16792c0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e80300000000000016001496548f3528bf80e16d1280561f950636bb3078d900000000000000000c6a0aa1c90e5caab448e7696312b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010192845753da8fde465954e2e1ab267ce7d80b3016257d611766db8ec5279cdba5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600144acd4545d8daf86927d7f9b0476f3136db640f7200000000000000000c6a0a79856f6ea0a09e53222a12b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9660,7 +9652,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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: `` @@ -9751,7 +9743,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9783,7 +9775,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985483, "btc_fee": 14517, - "rawtransaction": "020000000001016d2bb7c88ee92d38fbbc7ebc5716368d636d2047bd9f6cf79fbec8b5ddab0fd30000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000316a2fa45af45f5e42fd69f25e66baec8c7c0cb97594befdbb0f4068c6e1d2362d3dc65fc83f6799fbc8c7a65d9a5fa31d044bb9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010138729dc318569217e89e403da643e9bb4e6116c925addd90b42dfa2fd1c42eca000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000316a2f052fbd739e6623e0a4bb7130f4e260d3da7dde56003aa6bfa0b73e75f3c24f75d552331c757eec594137e2b4e2d54c4bb9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9822,7 +9814,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: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address that will be minting the asset + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be minting the asset + asset: `OPENFAIR` (str, required) - The asset to mint + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9883,14 +9875,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "divisible": true, "locked": false }, @@ -9902,7 +9894,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987122, "btc_fee": 12878, - "rawtransaction": "020000000001010b1f49707b92e5db73657e44477b6ec5f3814884f7d2f4cde664e611993592dc0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000156a13ed2c2f1f171bd7f5768602e818848ab51ca9f2b2bf052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010121f896fa46d9867c0a3882e05f4169502dcb272f6d367c38aa4e4f9238d5cb5e000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000156a13d89edbe4f154db05ae377762f77439ad805793b2bf052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9921,7 +9913,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address from which the assets are attached + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -9985,7 +9977,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10005,7 +9997,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984644, "btc_fee": 14810, - "rawtransaction": "020000000001017b72faaf54326ad3b64950353e6ad2f78e4dc55c73599c0abb9728b9c70ae7e90000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000146a122973211cb8798b3a75f6d7592cacab38b90104b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "02000000000101ef7a12e93dfe55916f6628a871d043e089a251b93dbf12a50399d40cf465618d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000146a12da287c2bf0ed0c35a8a9cfd82e028c551a3204b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10025,8 +10017,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: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10089,22 +10081,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171303834356c39796866326433736377616e65376a3332796e33796b6b7576386439306d396a37", + "data": "434e545250525459666263727431713073683037766e336479736b35677738636d676a336e36326e7177736137716735377472336c", "btc_in": 4949951000, "btc_out": 0, "btc_change": 4949925536, "btc_fee": 25464, - "rawtransaction": "02000000000102fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a00000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffffe7054d66d51d4e23e49a966bb359c4ddadb80b254c2ee09570395343745fb38401000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff020000000000000000376a35bfc115f234dec38bb9e1963b2222b602cd66b0d1e3642df941d05d56ed40c5ccbf52a92b13699fa29cc4c19d61fe5194348c9c1da3a0de092701000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000002000000000000", + "rawtransaction": "02000000000102a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d015000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff1190fe3945d54c388191ed0db2cd98889549f0bc1ff14705fecffee8eef00e5d010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff020000000000000000376a3544920b2ac26fa90b06f1a6ab10a362ad1506103e88a478547b6c96966e58ccb3afea9dd4510339077d47ea4870258ea9c557c20f10a0de0927010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7" + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l" } } } @@ -10208,8 +10200,8 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "owner": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "owner": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "divisible": true, "locked": false, "supply": 0, @@ -10217,16 +10209,16 @@ Returns the valid assets "first_issuance_block_index": 231, "last_issuance_block_index": 231, "confirmed": true, - "first_issuance_block_time": 1731184482, - "last_issuance_block_time": 1731184482, + "first_issuance_block_time": 1731186084, + "last_issuance_block_time": 1731186084, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false, "supply": 0, @@ -10234,16 +10226,16 @@ Returns the valid assets "first_issuance_block_index": 227, "last_issuance_block_index": 228, "confirmed": true, - "first_issuance_block_time": 1731184468, - "last_issuance_block_time": 1731184472, + "first_issuance_block_time": 1731186072, + "last_issuance_block_time": 1731186075, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false, "supply": 0, @@ -10251,16 +10243,16 @@ Returns the valid assets "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731184461, - "last_issuance_block_time": 1731184464, + "first_issuance_block_time": 1731186064, + "last_issuance_block_time": 1731186068, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false, "supply": 0, @@ -10268,16 +10260,16 @@ Returns the valid assets "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731184450, - "last_issuance_block_time": 1731184453, + "first_issuance_block_time": 1731186052, + "last_issuance_block_time": 1731186056, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true, "supply": 100000000, @@ -10285,8 +10277,8 @@ Returns the valid assets "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731184444, - "last_issuance_block_time": 1731184447, + "first_issuance_block_time": 1731186045, + "last_issuance_block_time": 1731186048, "supply_normalized": "1.00000000" } ], @@ -10314,8 +10306,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true, "supply": 100000000, @@ -10323,8 +10315,8 @@ Returns an asset by its name "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731184444, - "last_issuance_block_time": 1731184447, + "first_issuance_block_time": 1731186045, + "last_issuance_block_time": 1731186048, "supply_normalized": "1.00000000" } } @@ -10355,7 +10347,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10363,14 +10355,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10378,7 +10370,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -10396,7 +10388,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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. @@ -10408,7 +10400,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -10462,9 +10454,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10481,7 +10473,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10509,9 +10501,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10528,7 +10520,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10556,9 +10548,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10575,7 +10567,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10603,9 +10595,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "block_index": 211, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10622,7 +10614,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184399, + "block_time": 1731185989, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10650,9 +10642,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10669,7 +10661,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10733,13 +10725,13 @@ Returns the orders of an asset { "result": [ { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10753,7 +10745,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10773,13 +10765,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 56, - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10793,7 +10785,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10813,13 +10805,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", "tx0_index": 53, - "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 54, - "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10833,7 +10825,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10853,13 +10845,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 64, - "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10873,7 +10865,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10953,20 +10945,20 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -10974,20 +10966,20 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -11047,12 +11039,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11064,16 +11056,16 @@ Returns the debits of an asset }, { "block_index": 231, - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "event": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11085,16 +11077,16 @@ Returns the debits of an asset }, { "block_index": 227, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184468, + "block_time": 1731186072, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11106,16 +11098,16 @@ Returns the debits of an asset }, { "block_index": 225, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "event": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11127,16 +11119,16 @@ Returns the debits of an asset }, { "block_index": 222, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", + "event": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184450, + "block_time": 1731186052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11216,14 +11208,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -11238,20 +11230,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -11266,7 +11258,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184444, + "block_time": 1731186045, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11300,10 +11292,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11311,7 +11303,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11324,10 +11316,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11335,7 +11327,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11348,10 +11340,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", + "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", "block_index": 204, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11359,7 +11351,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11372,10 +11364,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11383,7 +11375,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11396,10 +11388,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11407,7 +11399,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11458,9 +11450,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11469,7 +11461,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11480,7 +11472,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11497,9 +11489,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", + "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", "block_index": 133, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11508,7 +11500,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11519,7 +11511,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184028, + "block_time": 1731185606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11536,9 +11528,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", + "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", "block_index": 141, - "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", + "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11546,10 +11538,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -11558,7 +11550,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184078, + "block_time": 1731185645, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11575,18 +11567,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11597,7 +11589,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11623,7 +11615,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - The address to return + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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` @@ -11636,9 +11628,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11647,7 +11639,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11658,7 +11650,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11700,7 +11692,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -11709,7 +11701,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -11717,7 +11709,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -11726,7 +11718,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -11763,27 +11755,27 @@ Returns the dispenses of an asset { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11798,7 +11790,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11812,27 +11804,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", + "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", "block_index": 138, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11847,7 +11839,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184056, + "block_time": 1731185634, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11861,19 +11853,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11881,7 +11873,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11896,7 +11888,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11910,19 +11902,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11930,7 +11922,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11945,7 +11937,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12019,10 +12011,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "tx_index": 96, "block_index": 221, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -12047,7 +12039,7 @@ Returns the fairminter by its asset "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -12087,22 +12079,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -12121,7 +12113,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm` (str, required) - The address of the mints to return + + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12183,9 +12175,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12202,7 +12194,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12230,9 +12222,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12249,7 +12241,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12277,9 +12269,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12296,7 +12288,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12324,9 +12316,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12343,7 +12335,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12371,9 +12363,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "block_index": 205, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12390,7 +12382,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12427,7 +12419,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e` (str, required) - The hash of the transaction that created the order + + order_hash: `9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb` (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. @@ -12439,9 +12431,9 @@ Returns the information of an order { "result": { "tx_index": 103, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -12458,7 +12450,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184478, + "block_time": 1731186081, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12469,7 +12461,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -12492,7 +12484,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace` (str, required) - The hash of the transaction that created the order + + order_hash: `ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec` (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 @@ -12519,13 +12511,13 @@ Returns the order matches of an order { "result": [ { - "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx0_index": 102, - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "tx1_index": 103, - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", - "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12539,11 +12531,11 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731184478, + "block_time": 1731186081, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -12569,7 +12561,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243` (str, required) - The hash of the transaction that created the order + + order_hash: `fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7` (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 @@ -12588,15 +12580,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "btc_amount": 2000, - "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "status": "valid", "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "btc_amount_normalized": "0.00002000" } ], @@ -12640,9 +12632,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12660,7 +12652,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731184235, + "block_time": 1731185822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12686,9 +12678,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "block_index": 205, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12706,7 +12698,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731184355, + "block_time": 1731185957, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,9 +12724,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12752,7 +12744,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12778,9 +12770,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12798,7 +12790,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12824,9 +12816,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12844,7 +12836,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12907,13 +12899,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12930,7 +12922,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184351, + "block_time": 1731185953, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12950,13 +12942,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 56, - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12973,7 +12965,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184235, + "block_time": 1731185822, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12993,13 +12985,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", "tx0_index": 53, - "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 54, - "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13016,7 +13008,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184167, + "block_time": 1731185748, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13036,13 +13028,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 64, - "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13059,7 +13051,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184461, + "block_time": 1731186064, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13117,13 +13109,13 @@ Returns all the order matches { "result": [ { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13137,7 +13129,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13157,13 +13149,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 56, - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13177,7 +13169,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13197,13 +13189,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", "tx0_index": 53, - "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 54, - "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13217,7 +13209,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13237,13 +13229,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 64, - "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13257,7 +13249,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13277,13 +13269,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx0_index": 102, - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "tx1_index": 103, - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", - "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13297,11 +13289,11 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731184478, + "block_time": 1731186081, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -13465,66 +13457,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", + "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", "block_index": 112, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "845c8eae056aeebef44dd69ef729f94434381f53b1e9ac7e2168ac7964d6aedf", + "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", "block_index": 112, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", + "tx_hash": "314ef7d935d922c69d9ebdf4aa8cb37d35b27cbe96f65b2fa09ffe679183a5b5", "block_index": 112, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "53658830d3bf2ea6c3fd4d207a7afe89708568c60172b9e64672b0ebe58638a2", + "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5", "block_index": 112, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "40b63103484fc2e9b8bf8df6f3177faa056140a6a6b02f6bc198c02c3b2ca388", + "tx_hash": "b16c489137d7b0cbd7a281bdadba870a9d1043835d650547980fb339d4f48272", "block_index": 112, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -13569,9 +13561,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13580,7 +13572,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13591,7 +13583,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13608,9 +13600,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", + "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", "block_index": 133, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13619,7 +13611,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13630,7 +13622,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184028, + "block_time": 1731185606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13647,9 +13639,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", + "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", "block_index": 141, - "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", + "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13657,10 +13649,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -13669,7 +13661,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184078, + "block_time": 1731185645, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13686,9 +13678,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13697,7 +13689,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13708,11 +13700,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -13725,18 +13717,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13747,7 +13739,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13773,7 +13765,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8` (str, required) - The hash of the dispenser to return + + dispenser_hash: `7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02` (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. @@ -13785,9 +13777,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13796,7 +13788,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13807,7 +13799,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13830,7 +13822,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8` (str, required) - The hash of the dispenser to return + + dispenser_hash: `7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02` (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 @@ -13850,19 +13842,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13870,7 +13862,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13885,7 +13877,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13899,19 +13891,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13919,7 +13911,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13934,7 +13926,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13976,20 +13968,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -14014,7 +14006,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043` (str, required) - The hash of the dividend to return + + dividend_hash: `2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c` (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. @@ -14026,20 +14018,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -14061,7 +14053,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c` (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 @@ -14084,12 +14076,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "event": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "tx_index": 42, - "utxo": "c524ab280f3557da911bb4d383891166c505314f418dc721724b9d368b2f0962:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "426d796d06af893564296fd9d35d79cc3b7cf1b026ab15e76478d5067b410568:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14135,27 +14127,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 905, @@ -14164,14 +14156,14 @@ Returns all events "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14182,9 +14174,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 904, @@ -14193,9 +14185,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14205,24 +14197,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14232,9 +14224,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 902, @@ -14262,15 +14254,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } } ``` @@ -14348,16 +14340,16 @@ Returns the events filtered by event name "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14367,9 +14359,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 901, @@ -14379,12 +14371,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14394,9 +14386,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 898, @@ -14406,24 +14398,24 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 862, @@ -14433,39 +14425,39 @@ Returns the events filtered by event name "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731184468, + "block_time": 1731186072, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "block_index": 227, - "block_time": 1731184468 + "block_time": 1731186072 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14475,9 +14467,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 } ], "next_cursor": 819, @@ -14533,27 +14525,27 @@ Returns all the dispenses { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14568,7 +14560,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14582,19 +14574,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14602,7 +14594,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14617,11 +14609,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -14631,27 +14623,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", + "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", "block_index": 138, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14666,7 +14658,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184056, + "block_time": 1731185634, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14680,19 +14672,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14700,7 +14692,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14715,7 +14707,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14729,19 +14721,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14749,7 +14741,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14764,7 +14756,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14806,10 +14798,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14817,7 +14809,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14830,10 +14822,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14841,11 +14833,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -14854,10 +14846,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14865,7 +14857,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14878,10 +14870,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14889,11 +14881,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -14902,10 +14894,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14913,11 +14905,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -14968,14 +14960,14 @@ Returns all the issuances "result": [ { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "transfer": false, "callable": false, "call_date": 0, @@ -14990,20 +14982,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 101, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -15018,20 +15010,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731184472, + "block_time": 1731186075, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -15046,20 +15038,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184468, + "block_time": 1731186072, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -15074,20 +15066,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731184464, + "block_time": 1731186068, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 100, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "msg_index": 0, "block_index": 225, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -15102,7 +15094,7 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15117,7 +15109,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7` (str, required) - The hash of the transaction to return + + tx_hash: `5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011` (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. @@ -15129,14 +15121,14 @@ Returns the issuances of a block { "result": { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "transfer": false, "callable": false, "call_date": 0, @@ -15151,7 +15143,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15183,16 +15175,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -15206,7 +15198,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf` (str, required) - The hash of the transaction to return + + tx_hash: `e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0` (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. @@ -15219,16 +15211,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -15262,9 +15254,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15272,14 +15264,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184014, + "block_time": 1731185592, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", + "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", "block_index": 128, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15287,7 +15279,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184010, + "block_time": 1731185588, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15301,7 +15293,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6` (str, required) - The hash of the transaction to return + + tx_hash: `48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460` (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. @@ -15313,9 +15305,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15323,7 +15315,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184014, + "block_time": 1731185592, "fee_fraction_int_normalized": "0.00000000" } } @@ -15360,10 +15352,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, "block_index": 231, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -15388,7 +15380,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15397,10 +15389,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "tx_index": 101, "block_index": 228, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "PREMINT", "asset_parent": "", "asset_longname": "", @@ -15425,7 +15417,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184472, + "block_time": 1731186075, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15434,10 +15426,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "tx_index": 100, "block_index": 226, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -15462,7 +15454,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184464, + "block_time": 1731186068, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15471,10 +15463,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b0dbe18ebce8aec91e284552354df1de0b0b19ed93c0ced5d338a3458e4a17d5", + "tx_hash": "dbc22e66b838256fa269e76efa1d0c806401f7401effa7a3531dffedf84cb420", "tx_index": 99, "block_index": 224, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": null, "asset_parent": null, "asset_longname": null, @@ -15499,13 +15491,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184458 + "block_time": 1731186060 }, { - "tx_hash": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", + "tx_hash": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", "tx_index": 98, "block_index": 223, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -15530,7 +15522,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184453, + "block_time": 1731186056, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15596,22 +15588,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -15620,22 +15612,22 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "0e2e7af8d6364fd2dbc2af36470ac9bece72a387782748c46f7034b855cf630c", + "tx_hash": "573b30e5f5323e21a609b153fd2a297016c92522eba2169970a44457a8f1fe30", "tx_index": 95, "block_index": 219, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "d9e559c3c71883aa0881d99340a00535329d8a56438aeeb8ed5a8a41664b10d9", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "92b08136345613ac4da682987e36d5061ca068fa866c0dec1847c03b6dd1becd", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731184439, + "block_time": 1731186040, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -15644,22 +15636,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "bb3be0baf4f12b3ecb670cceb6dd695791b3a3fd2d93e1a527be91e39bd36e11", + "tx_hash": "4bc584e5451063581fdf0a07219795565623d1d6f0afa8dc5ba1748dace2c01c", "tx_index": 91, "block_index": 215, - "source": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", - "fairminter_tx_hash": "efc92f92c79bff1b745a7d8a3daa096d8c1c545c927ff41b84c9c12c07360570", + "source": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", + "fairminter_tx_hash": "b6f9dc28111884d1395173cf1096b1cb068b4585f3d72b1bc3cefbe5c5d4bc09", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184424, + "block_time": 1731186016, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", + "issuer": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", "divisible": true, "locked": false }, @@ -15668,22 +15660,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", + "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", "tx_index": 46, "block_index": 150, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184122, + "block_time": 1731185690, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -15692,22 +15684,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", + "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", "tx_index": 45, "block_index": 149, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184109, + "block_time": 1731185686, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -15726,7 +15718,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328` (str, required) - The hash of the fairmint to return + + tx_hash: `10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15737,22 +15729,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -15770,7 +15762,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz,bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn` (str, required) - The addresses to search for + + addresses: `bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx,bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze` (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. @@ -15789,8 +15781,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", - "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" }, { "vout": 1, @@ -15798,8 +15790,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", - "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" }, { "vout": 1, @@ -15807,8 +15799,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" } ], "next_cursor": null, @@ -15821,7 +15813,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt` (str, required) - The address to search for + + address: `bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een` (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 @@ -15837,28 +15829,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "c6174dbb4c086be948f57802f799e3c85d6489e73d1f48ba9c422a3b2d57e244" + "tx_hash": "dc3a19065a16bdf04e853baf2dcc42967de399e651c76419d82e5c9236122125" }, { - "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60" + "tx_hash": "7e3f595b0a596ecc6c5bd6815c0047a491d29f48bc55a1b1c0367c993bd3df6b" }, { - "tx_hash": "48493c64b68af363b97d2a826ea265c33621f9e904c7697bda80b3a8ad655063" + "tx_hash": "dfe5a22d561329b5ec3e3953035f902f787570d95d1d0a59ff108e105d9df16d" }, { - "tx_hash": "a017e1df8d7d0610178651cea0fef58d16a2a25c5cf850c77a8d2db4e093ad8f" + "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5" }, { - "tx_hash": "bc060d4f7ca525678122e0dcf3529d4d8e95a253162e026c383638df72f772b6" + "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9" }, { - "tx_hash": "190a666b58e5defbc083e3efc7f2a126ccfd28b477edeb8e667655edf48d06c6" + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0" }, { - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf" + "tx_hash": "88f6928bbf1a3de0cfc385f1478b1a84b8ee8bf69b2240e5d50fb5c890bb70c3" }, { - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6" + "tx_hash": "806db2023f958400084669709d71d3d173b678dbe82d6893f66057e311bd46ed" } ], "next_cursor": null, @@ -15871,7 +15863,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh` (str, required) - The address to search for. + + address: `bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md` (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. @@ -15884,8 +15876,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "d42ec7f16fd340abe06ed758e8adadcd576ec9361509eb0ee2e46742529b9675" + "block_index": 7, + "tx_hash": "052bfcfbf21111eef048884927e94e3374ff6ad6755d0f5ee7c27b950cc1c027" } } ``` @@ -15895,7 +15887,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz` (str, required) - The address to search for + + address: `bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx` (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 @@ -15916,15 +15908,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4" - }, - { - "vout": 1, - "height": 229, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace" + "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d" }, { "vout": 0, @@ -15932,7 +15916,15 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039" + "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4" + }, + { + "vout": 1, + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec" } ], "next_cursor": null, @@ -15945,7 +15937,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7` (str, required) - Address to get pubkey for. + + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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. @@ -15957,7 +15949,7 @@ Get pubkey for an address. ``` { - "result": "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" + "result": "021b19ecc304833d6c1c20bf7dc2385ab0350240f412348c84f16df9b80414e12c" } ``` @@ -15966,7 +15958,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb` (str, required) - The transaction hash + + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (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. @@ -15978,7 +15970,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001011264f625f000f949743679dd19865b50e5b132f88dcaba8b5e48858c7d778be00100000000ffffffff03e803000000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae00000000000000000c6a0acae81e7d80a724af2f26871409270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb024730440220368071587c81d5722a1686ab3ec5fd7193e76a687bea4562f14c6c2e35b6226b0220264468e7ee300e431f01c97a81cbcf02acf4e1278824f773a4b384592d5e3130012103207dd49acd21039f8d2203a73c89671845fb09742bd47c6efacaa8592f20964d00000000" + "result": "02000000000101c11e86910529d8b13915600046d2a87392727fafa718131f198c21050dd1f0700100000000ffffffff03e8030000000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc800000000000000000c6a0a3a8932c5dd4735c525878714092701000000160014658b9c2487762c4260cf1ff801a6531c160b0c940247304402205ac6ce23fecf5d812567a7f0d10e826169d427fe12ddb36dcf9a1cf306b7deff02204992ba92b06c06b88c52f544884bc10e59ce920fe87e1ff2eebc3ae0375bf83801210276c5d73b938ceca6b7f198066f6465e5da5da0dd580b2acf2de04b195be400a900000000" } ``` @@ -16139,27 +16131,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106 }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "quantity": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "status": "valid", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -16170,22 +16162,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16195,22 +16187,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "block_index": 232, - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16220,30 +16212,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731184495.3943753, + "block_time": 1731186102.4815562, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "destination": "", "fee": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, - "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", + "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -16257,7 +16249,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -16288,19 +16280,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16310,7 +16302,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -16323,7 +16315,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2` (str, required) - The hash of the transaction to return + + tx_hash: `0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927` (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 @@ -16343,27 +16335,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106 }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "quantity": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "status": "valid", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -16374,22 +16366,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16399,22 +16391,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "block_index": 232, - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16424,30 +16416,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731184495.3943753, + "block_time": 1731186102.4815562, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "destination": "", "fee": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, - "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", + "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -16461,7 +16453,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index b69a6d8419..519490c287 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -464,7 +464,7 @@ def get_balance(db, address, asset, raise_error_if_no_balance=False, return_list class UTXOBalancesCache(metaclass=util.SingletonMeta): def __init__(self, db): - # logger.debug("Initialising utxo balances cache...") + logger.debug("Initialising utxo balances cache...") sql = "SELECT utxo, asset, quantity, MAX(rowid) FROM balances WHERE utxo IS NOT NULL GROUP BY utxo, asset" cursor = db.cursor() cursor.execute(sql) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 53bc65f10f..810a74a2e7 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -7,9 +7,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15", + "ledger_hash": "641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2", "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", - "messages_hash": "0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4", + "messages_hash": "70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618", "transaction_count": 0, "confirmed": true }, @@ -19,9 +19,9 @@ "block_time": 310702000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75", + "ledger_hash": "854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638", "txlist_hash": "0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f", - "messages_hash": "a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888", + "messages_hash": "a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e", "transaction_count": 0, "confirmed": true }, @@ -31,9 +31,9 @@ "block_time": 310701000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743", + "ledger_hash": "61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5", "txlist_hash": "c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107", - "messages_hash": "84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba", + "messages_hash": "923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb", "transaction_count": 0, "confirmed": true }, @@ -43,9 +43,9 @@ "block_time": 310700000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64", + "ledger_hash": "33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753", "txlist_hash": "64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6", - "messages_hash": "51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a", + "messages_hash": "c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07", "transaction_count": 0, "confirmed": true }, @@ -55,9 +55,9 @@ "block_time": 310699000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75", + "ledger_hash": "47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54", "txlist_hash": "699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b", - "messages_hash": "af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a", + "messages_hash": "9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1", "transaction_count": 0, "confirmed": true }, @@ -67,9 +67,9 @@ "block_time": 310698000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646", + "ledger_hash": "6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96", "txlist_hash": "4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13", - "messages_hash": "359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7", + "messages_hash": "18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf", "transaction_count": 0, "confirmed": true }, @@ -79,9 +79,9 @@ "block_time": 310697000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369", + "ledger_hash": "a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737", "txlist_hash": "88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7", - "messages_hash": "7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b", + "messages_hash": "25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0", "transaction_count": 0, "confirmed": true }, @@ -91,9 +91,9 @@ "block_time": 310696000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f", + "ledger_hash": "aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52", "txlist_hash": "1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376", - "messages_hash": "c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f", + "messages_hash": "7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf", "transaction_count": 0, "confirmed": true }, @@ -103,9 +103,9 @@ "block_time": 310695000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037", + "ledger_hash": "ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516", "txlist_hash": "cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb", - "messages_hash": "80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1", + "messages_hash": "e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192", "transaction_count": 0, "confirmed": true }, @@ -115,9 +115,9 @@ "block_time": 310694000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491", + "ledger_hash": "f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8", "txlist_hash": "cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10", - "messages_hash": "d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2", + "messages_hash": "e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb", "transaction_count": 0, "confirmed": true } @@ -132,9 +132,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15", + "ledger_hash": "641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2", "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", - "messages_hash": "0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4", + "messages_hash": "70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618", "transaction_count": 0, "confirmed": true } @@ -937,7 +937,7 @@ "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/events?verbose=true": { "result": [ { - "event_index": 1301, + "event_index": 1311, "event": "TRANSACTION_PARSED", "params": { "supported": true, @@ -949,7 +949,7 @@ "block_time": 310506000 }, { - "event_index": 1300, + "event_index": 1310, "event": "ASSET_ISSUANCE", "params": { "asset": "A160361285792733729", @@ -960,12 +960,12 @@ "call_price": 0.0, "callable": false, "description": "softcap description", - "description_locked": false, + "description_locked": true, "divisible": true, - "fair_minting": true, + "fair_minting": false, "fee_paid": 0, "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "locked": false, + "locked": true, "msg_index": 0, "quantity": 20, "reset": false, @@ -982,6 +982,260 @@ "block_index": 310506, "block_time": 310506000 }, + { + "event_index": 1309, + "event": "FAIRMINTER_UPDATE", + "params": { + "status": "closed", + "tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1308, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "premint", + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 20, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000020" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1307, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "fairmint commission", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 6, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000006" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1306, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "unescrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 14, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000014" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1305, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "XCP", + "block_index": 310506, + "calling_function": "fairmint payment", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000200" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1304, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "fairmint commission", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 3, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000003" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1303, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "unescrowed fairmint", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 7, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000007" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1302, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "XCP", + "block_index": 310506, + "calling_function": "fairmint payment", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 100, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000100" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1301, + "event": "DEBIT", + "params": { + "action": "unescrowed fairmint payment", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "XCP", + "block_index": 310506, + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 300, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000300" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1300, + "event": "DEBIT", + "params": { + "action": "unescrowed fairmint", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "A160361285792733729", + "block_index": 310506, + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 50, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000050" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, { "event_index": 1299, "event": "NEW_FAIRMINT", @@ -1002,7 +1256,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "earn_quantity_normalized": "0.00000014", "commission_normalized": "0.00000006", @@ -1031,7 +1285,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "quantity_normalized": "0.00000020" }, @@ -1095,7 +1349,7 @@ } ], "next_cursor": null, - "result_count": 6 + "result_count": 16 }, "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/sends?verbose=true": { "result": [], @@ -1122,26 +1376,215 @@ "tx_index": 2, "utxo": null, "utxo_address": null, - "block_time": 310001000, + "block_time": 310001000, + "asset_info": { + "asset_longname": null, + "description": "Divisible asset", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + "tx_hash": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1", + "block_index": 310001, + "block_time": 310001000 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/events/CREDIT?verbose=true": { + "result": [ + { + "event_index": 1308, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "premint", + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 20, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000020" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1307, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "fairmint commission", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 6, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000006" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1306, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "unescrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 14, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000014" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1305, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "XCP", + "block_index": 310506, + "calling_function": "fairmint payment", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000200" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1304, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "fairmint commission", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 3, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000003" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1303, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "unescrowed fairmint", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 7, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000007" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1302, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "XCP", + "block_index": 310506, + "calling_function": "fairmint payment", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 100, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, "asset_info": { "asset_longname": null, - "description": "Divisible asset", - "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "1000.00000000" + "quantity_normalized": "0.00000100" }, - "tx_hash": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1", - "block_index": 310001, - "block_time": 310001000 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/events/CREDIT?verbose=true": { - "result": [ + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, { "event_index": 1298, "event": "CREDIT", @@ -1161,7 +1604,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "quantity_normalized": "0.00000020" }, @@ -1198,7 +1641,7 @@ } ], "next_cursor": null, - "result_count": 2 + "result_count": 9 }, "http://localhost:10009/v2/addresses/balances?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": { "result": [ @@ -1219,7 +1662,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "total_normalized": "0.00000050" }, @@ -1493,100 +1936,59 @@ "http://localhost:10009/v2/addresses/events?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": { "result": [ { - "event_index": 1368, - "event": "CREDIT", - "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "premint", - "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", - "quantity": 20, - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "block_time": 310520000, - "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 - }, - { - "event_index": 1367, - "event": "CREDIT", + "event_index": 1355, + "event": "ORDER_MATCH_EXPIRATION", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "fairmint commission", - "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "quantity": 6, - "tx_index": 507, - "utxo": null, - "utxo_address": null, - "block_time": 310520000, - "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000006" + "block_index": 310513, + "order_match_id": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81", + "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "block_time": 310513000 }, "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "block_index": 310513, + "block_time": 310513000 }, { - "event_index": 1366, - "event": "CREDIT", + "event_index": 1328, + "event": "DEBIT", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "unescrowed fairmint", - "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "quantity": 14, - "tx_index": 507, + "action": "attach to utxo", + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset": "DIVISIBLE", + "block_index": 310508, + "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "quantity": 1, + "tx_index": 509, "utxo": null, "utxo_address": null, - "block_time": 310520000, + "block_time": 310508000, "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset_longname": null, + "description": "Divisible asset", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000014" + "quantity_normalized": "0.00000001" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "block_index": 310508, + "block_time": 310508000 }, { - "event_index": 1365, - "event": "CREDIT", + "event_index": 1326, + "event": "ASSET_DESTRUCTION", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "XCP", - "block_index": 310520, - "calling_function": "fairmint payment", - "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "quantity": 200, - "tx_index": 507, - "utxo": null, - "utxo_address": null, - "block_time": 310520000, + "block_index": 310508, + "quantity": 10, + "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "status": "valid", + "tag": "attach to utxo fee", + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "tx_index": 509, + "block_time": 310508000, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1594,68 +1996,70 @@ "divisible": true, "locked": true }, - "quantity_normalized": "0.00000200" + "quantity_normalized": "0.00000010" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "block_index": 310508, + "block_time": 310508000 }, { - "event_index": 1364, - "event": "CREDIT", + "event_index": 1325, + "event": "DEBIT", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "fairmint commission", - "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", - "quantity": 3, - "tx_index": 506, + "action": "attach to utxo fee", + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset": "XCP", + "block_index": 310508, + "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "quantity": 10, + "tx_index": 509, "utxo": null, "utxo_address": null, - "block_time": 310520000, + "block_time": 310508000, "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "0.00000003" + "quantity_normalized": "0.00000010" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "block_index": 310508, + "block_time": 310508000 }, { - "event_index": 1363, - "event": "CREDIT", + "event_index": 1324, + "event": "NEW_TRANSACTION", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "unescrowed fairmint", - "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", - "quantity": 7, - "tx_index": 506, - "utxo": null, - "utxo_address": null, - "block_time": 310520000, - "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "divisible": true, - "locked": false + "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", + "block_index": 310508, + "block_time": 310508000, + "btc_amount": 5430, + "data": "65444956495349424c457c317c", + "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "fee": 7650, + "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "supported": true, + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "tx_index": 509, + "utxos_info": " 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 ", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 1698974038, + "message_data": { + "error": "Unknown message type" + } }, - "quantity_normalized": "0.00000007" + "btc_amount_normalized": "0.00005430" }, "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "block_index": 310508, + "block_time": 310508000 } ], - "next_cursor": 1362, + "next_cursor": 1324, "result_count": 177 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances?verbose=true": { @@ -4791,7 +5195,7 @@ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "owner": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false, + "locked": true, "supply": 50, "description": "softcap description", "first_issuance_block_index": 310504, @@ -6282,12 +6686,12 @@ "http://localhost:10009/v2/events?limit=5&verbose=true": { "result": [ { - "event_index": 1738, + "event_index": 1739, "event": "BLOCK_PARSED", "params": { "block_index": 310703, - "ledger_hash": "a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15", - "messages_hash": "0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4", + "ledger_hash": "641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2", + "messages_hash": "70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618", "transaction_count": 0, "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", "block_time": 310703000 @@ -6297,7 +6701,7 @@ "block_time": 310703000 }, { - "event_index": 1737, + "event_index": 1738, "event": "NEW_BLOCK", "params": { "block_hash": "b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218", @@ -6313,12 +6717,12 @@ "block_time": 310703000 }, { - "event_index": 1736, + "event_index": 1737, "event": "BLOCK_PARSED", "params": { "block_index": 310702, - "ledger_hash": "fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75", - "messages_hash": "a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888", + "ledger_hash": "854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638", + "messages_hash": "a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e", "transaction_count": 0, "txlist_hash": "0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f", "block_time": 310702000 @@ -6328,7 +6732,7 @@ "block_time": 310702000 }, { - "event_index": 1735, + "event_index": 1736, "event": "NEW_BLOCK", "params": { "block_hash": "69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8", @@ -6344,12 +6748,12 @@ "block_time": 310702000 }, { - "event_index": 1734, + "event_index": 1735, "event": "BLOCK_PARSED", "params": { "block_index": 310701, - "ledger_hash": "b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743", - "messages_hash": "84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba", + "ledger_hash": "61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5", + "messages_hash": "923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb", "transaction_count": 0, "txlist_hash": "c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107", "block_time": 310701000 @@ -6359,8 +6763,8 @@ "block_time": 310701000 } ], - "next_cursor": 1733, - "result_count": 1739 + "next_cursor": 1734, + "result_count": 1740 }, "http://localhost:10009/v2/events/10?limit=5&verbose=true": { "result": { @@ -6402,12 +6806,12 @@ } ], "next_cursor": "ORDER_MATCH", - "result_count": 30 + "result_count": 31 }, "http://localhost:10009/v2/events/CREDIT?limit=5&verbose=true": { "result": [ { - "event_index": 1506, + "event_index": 1507, "event": "CREDIT", "params": { "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM", @@ -6434,115 +6838,115 @@ "block_time": 310588000 }, { - "event_index": 1368, + "event_index": 1338, "event": "CREDIT", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "premint", - "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", - "quantity": 20, - "tx_index": 0, + "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", + "asset": "TESTDISP", + "block_index": 310509, + "calling_function": "issuance", + "event": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1", + "quantity": 1000, + "tx_index": 510, "utxo": null, "utxo_address": null, - "block_time": 310520000, + "block_time": 310509000, "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "divisible": true, + "asset_longname": null, + "description": "Test dispensers asset", + "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", + "divisible": false, "locked": false }, - "quantity_normalized": "0.00000020" + "quantity_normalized": "1000" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1", + "block_index": 310509, + "block_time": 310509000 }, { - "event_index": 1367, + "event_index": 1329, "event": "CREDIT", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "fairmint commission", - "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "quantity": 6, - "tx_index": 507, - "utxo": null, - "utxo_address": null, - "block_time": 310520000, + "address": null, + "asset": "DIVISIBLE", + "block_index": 310508, + "calling_function": "attach to utxo", + "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "quantity": 1, + "tx_index": 509, + "utxo": "74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0", + "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "block_time": 310508000, "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset_longname": null, + "description": "Divisible asset", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000006" + "quantity_normalized": "0.00000001" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "block_index": 310508, + "block_time": 310508000 }, { - "event_index": 1366, + "event_index": 1319, "event": "CREDIT", "params": { - "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310520, - "calling_function": "unescrowed fairmint", - "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "quantity": 14, - "tx_index": 507, - "utxo": null, - "utxo_address": null, - "block_time": 310520000, + "address": null, + "asset": "XCP", + "block_index": 310507, + "calling_function": "attach to utxo", + "event": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", + "quantity": 100, + "tx_index": 508, + "utxo": "e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0", + "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "block_time": 310507000, "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, "divisible": true, - "locked": false + "locked": true }, - "quantity_normalized": "0.00000014" + "quantity_normalized": "0.00000100" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", + "block_index": 310507, + "block_time": 310507000 }, { - "event_index": 1365, + "event_index": 1308, "event": "CREDIT", "params": { "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "XCP", - "block_index": 310520, - "calling_function": "fairmint payment", - "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "quantity": 200, - "tx_index": 507, + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "premint", + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 20, + "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 310520000, + "block_time": 310506000, "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, "locked": true }, - "quantity_normalized": "0.00000200" + "quantity_normalized": "0.00000020" }, - "tx_hash": null, - "block_index": 310520, - "block_time": 310520000 + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 } ], - "next_cursor": 1364, + "next_cursor": 1307, "result_count": 53 }, "http://localhost:10009/v2/events/CREDIT/count?limit=5&verbose=true": { @@ -6922,10 +7326,10 @@ "fee_paid": 0, "status": "valid", "asset_longname": "", - "locked": false, + "locked": true, "reset": false, - "description_locked": false, - "fair_minting": true, + "description_locked": true, + "fair_minting": false, "asset_events": "fairmint", "confirmed": true, "block_time": 310506000, @@ -7697,7 +8101,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "earn_quantity_normalized": "0.00000014", "commission_normalized": "0.00000006", @@ -7721,7 +8125,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "earn_quantity_normalized": "0.00000007", "commission_normalized": "0.00000003", @@ -7774,7 +8178,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": false + "locked": true }, "earn_quantity_normalized": "0.00000014", "commission_normalized": "0.00000006", diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py index 9652676613..90327767a6 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py @@ -55,15 +55,15 @@ { "in": (), "out": { - "message_index": 1738, + "message_index": 1739, "block_index": 310703, "command": "parse", "category": "blocks", - "bindings": '{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}', + "bindings": '{"block_index":310703,"ledger_hash":"641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2","messages_hash":"70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}', "timestamp": 0, "event": "BLOCK_PARSED", "tx_hash": None, - "event_hash": "0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d", + "event_hash": "d44081ef15bc4521ac345a6b37bba2287c806862180e65fa3096c09019ae6b77", }, } ], @@ -438,7 +438,7 @@ "utxo_address": None, }, { - "block_index": 310520, + "block_index": 310506, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 7, @@ -449,7 +449,7 @@ "utxo_address": None, }, { - "block_index": 310520, + "block_index": 310506, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 3, @@ -460,7 +460,7 @@ "utxo_address": None, }, { - "block_index": 310520, + "block_index": 310506, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 14, @@ -471,7 +471,7 @@ "utxo_address": None, }, { - "block_index": 310520, + "block_index": 310506, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 6, @@ -482,7 +482,7 @@ "utxo_address": None, }, { - "block_index": 310520, + "block_index": 310506, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 20, @@ -500,7 +500,7 @@ "in": ("A160361285792733729",), "out": [ { - "block_index": 310520, + "block_index": 310506, "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", "asset": "A160361285792733729", "quantity": 50, diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 5042d41fdb..dceafdfa7e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -525,204 +525,204 @@ INSERT INTO blocks VALUES(310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db','a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2','05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b',NULL,NULL,1); INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); -INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4',NULL,NULL,0); +INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b',NULL,NULL,1); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618',NULL,NULL,0); INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) @@ -949,6 +949,15 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -958,15 +967,6 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1084,6 +1084,15 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -1093,15 +1102,6 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1183,16 +1183,16 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits @@ -1274,14 +1274,14 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); +INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); -INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits BEFORE UPDATE ON debits BEGIN @@ -2624,446 +2624,447 @@ INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed f INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','879a538850b63765067c9a669d9969e56948475b2ea22c9bf460f1a95686d657'); INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a62af59f153a6916e824008d44294c34a5f291c8fb43677f44a57f08bcb26251'); INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','c62f92725bd1efed025e0c602c42b7cffb1e71b7d6f1d506cf90c71bbccd255a'); -INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ff9d69ae83e1bc8385ce7537c22debd85cc78cba7e314400a4369880a49d8aaa'); -INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8f29ca8cbce3da477043fd0161ef4c7e7b63753df6f002767ffa213fb77afa7d'); -INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'1522a2da49e43ac25a10a3bb66f44a5196fac77ce3bd73dafe6e101a971cb016'); -INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eb94c1de6d6c8131c8c33b67733a4a0daacf07e675197efee5830ab514f85e6'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'8bbd1928d51e5c7f0e731c4966d9d10d53396ac913438d598765e0c44289b45a'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3ab7ac624901f0461d6867b48bccc4297f1bc0796420658aa5139e233fe60769'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6ea67f84716a577bec2bf65a5d55d1d56e63cd8d5fc07fb32227c5c0731f6a01'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','aa685b25d3374e6a748cdf2a9e11c5ca01b45e3f25c2093dc52a950a22f8b5a1'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','7ab750f5ee9efbd7be420d7def56619b6f57aede5989422c5796d2a58340b26a'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','89f0c2b7fb8054fcd974ddc4ebdb8c875387c53d38f7e8278c59179640e5bff5'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e84459467ab46c0b763b2ae64e4bf7d64a64cbf3027cc08b853c281340078a8e'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','878126f72f816784b56c45aac2521bf26566fd27b2dffd1d4da5db9e3f0cf2e5'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'9196aa1fe27fb5931fd856afc8cf9072af5a599f828986f29bb88ce041a37cfe'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c507cc77c8a612040eeb4d571c274c370d85e7c740922ed3e038b529ed56d3b'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'500f9839e7b6d853e42569d10438ad11ff87a8b16da069ecf452b3ecb15e0ead'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','16b01a9de86cb5b102e4de911656d8b9e9e8d820add2901a82ec8fd6633f1a04'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5c79d010bf9ca3b7477710252e40bd5f196ae263a7c33d80ccd24d012289575e'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','417d93d2963c6b642e604efc34fe57640de5182f1652174a0289507acd51da9e'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8d8bb15cb5e40a99425528b7a793bd500da1d43171df488e5a81f50d23c9ac75'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','a9987ee249fad8c82a3b7bc2a271258b06552735e5293adb689bebcefff5e848'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3b78b1529b28d03ec7c920e5521c7b391b402dc1384a689a45f9a72cce0f8338'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bf765d3c08a30f5eb84444c60f7e7d6c24e639cfef3b4d879e074df998ff7f0c'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'aac0896e0a5db2da6abf3da4fadb55fd021a5dafa6411af6afd221d3e1048a99'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f5d19dd9bddc1e7e12116f8ac48d4c200155b25acbf6240a03320dd5301d77c'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'201e30a24cc7c8a6d413c0b313e89577c585c55a39eb7a15a54e67f65384ed84'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2387e80b380773bca011dd41dbc960b8ec0cc499c4bc8eb7d9f422bf65c65232'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a6a3545e937d655c4f289612e79704348aaa7058e85476037fd63ce63b5217d2'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','09384d09bb418b8f30bcc4b20357e7914efc9196b50670ee3e6d29c3ee6ff052'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2c14c61711d194f3fa05d7958c5d455d66a06e28ff85c86d85ed75c8df8495cd'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eb6a3e28058eedb1a8626309a845b462dd9ee01249885df7ecc2a0ea59f04d75'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'9927c6eec7548df25426356efeb638e7a6c1c54c2c0c3b2b9ad64c40492eb584'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3216b42a6b7faf80925fd4745f5e94f8cfb2407ce2e3137c4266496740ba2270'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'6d164f30fdf7e0f5aa72eb2b20cc303011678b9c343433175e313a76114bb33a'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9b45a615f6a82addc660fa500d3c50232753028c036867575cfe06a55fa095e'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','d136d881c6d70de346237449f9fe7bca2c48319a986060892795fbf8b4b02dd6'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5fa48999b8a7cf87bd0b3a11c5ec0f53a7bc4807863b8c55015a923eb3cde826'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'8dcf8b59202460f52684fd287b47bace230a5918a022d75c6202a119e83d6b61'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15bc1bc9c6886af02aa235b54cfe80a696d0e210dac126de69bc63659fe9230'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'ca696f540531e3f817213aa12da115a3dba7f9f84fdb13aed2f8cecfd9e7e287'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056ea7b98cf937b7f1752ba9957cc6f8c74ad96e1cee955beb6b7110f58727eb'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'9a5a35e6ac5fe77da2981e3fef5c7a791488e4142be57110b988236a9191f424'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fecaecae0a4d28c4d518dcf9f10ff19782ecc393873824e39d83a86199b2fea3'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'de3ea9b2fd2fe856b785ece9ca32f40f1ebd6217948b58a87939d1cffb29b3bd'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3299c9a5578bd101ccc89a12f003f4f7bb185208b6f2ec8b95080577e2a103a7'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'fae2a3673839c2fb3f640d5988d219fa504a23c1fb635b7f95504584313e3fc1'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'c7472ecdff349e324d7d71a46adb4446a1c36ac17313079930af5b69c0d440b2'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a8e1032519828124e0cf214b9d7f76403cbfa549985f5ac2b9b2135a09111a1b'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ce207d80bcc35089e634f32c17c8ad39aaa3e4adcbe688dd23eecbe00f9ff9b'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'0b1de820dd9f12a42bceac67a2506dbc384fd73ad2fb0da95148824743e01630'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'973a4f6216d7a690800417deee34fd984e86fef7ef72245d93095b80965b0328'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'21666aafe3bdac4443a1ef03ffe76ddd71236d3811938306021956e58b44848b'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c5cb100ba865ef10e02f75dfbb2096f8d47d88dfcbc499401ef830f307563f'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'fc37b0a33f07a8865d4dac1d467c09306cc49ba2d05d76169665739d36fb57c1'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf07b719ccba31e71f5d15858ccb6eb848c698ec5521573ea68b10169d5a734'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'d380576a6b0ac0b96f76521e4a671c7a56d01af66c2d48407dd5bd67caf4e15a'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41bdcc00f3f64eaa3f3d1c90a4e47b737fdad4b308fd1fd0efe56f211f52a01'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'47389191d7b37288eb5cd09c65fe9a05966249162cc9e92b2d97774448f57735'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d2b06d4fdd9af5c14d1ee0fb136a0fa49d42f2a16ad8e6ac2dbef07ce6bf02b'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'f3332cf52d4d0b82289a720a3b3687395548b1143bb7c6ac13c34d901926a2c2'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99d71ae9e0a6d3c5ceb043d18d72017d17edbcc4c8ec86d55735a2877de7859'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'03ff62eff402d36070cba3cf58953b8f4df3642e4264420fdacefe3af2333d5a'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'22d1c9aea1731fe665ceb2439a210dae95d7f9379913dcd415a2dfb6a470712b'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f7f4077b9fa53863f0eb4eb0875ab530e199babbdfc21644baba907cd2c6a03a'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c04246c969bb0b3a60b6c11d1c742a3445166ea89c7ba62efca5fcdb27ecc2b4'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6857cc9218f8fa3fa2e114a9d6c0d4456888659a3d1fa89c50cfe18938b797f4'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'971b12170efbc7f439b65ad7fed47bb897f8391b8a35e06eef857cff67ab57e3'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ffe4967da0574bf9374153e9c1d58a0396188396758d757ae9b1a7eba8e29492'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c3d644eca8664738c388a9862185cbf61b99c17df51eb62eeac52031ec0e2d3f'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dd9853b9d889f56660c2c11b5a0f760d8232a5df7e3a6ee91bb0aadc3fa1bbd'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'d3647332aefb1d70247716d623cd4c2f0b8bbb0cbe00080f59444fc5ed151683'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4675d0eed46375d19ad0bfdfe94cc0bd5cfa89b865205813b20a7c58aa443be'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'faa4585a898c85b7f4a0080bb733f315a2ec920d3db054f319c099786053ba27'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b491f779ef37f66dd6ae7358072f18a76f87b0ccdfc0b8d8b5d43516a15fba73'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'da4e10297558e100beb5a1e77c3f8e432c582226ba7c2266f0bc9e4580cfc925'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d7a6a766579e8034ab0a134e2a23f720ab6e242e6cca763912a6ad6d33f62c0'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'351ddcdee918c4427725c808b90542b69dc4e22c8d902f14e41d6ba56cfb186d'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbefa4c96e7626226135e8c8d8f5f5b03308260638195ec4ca8a6ea8f70a8660'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'57fa7e8f62f2d64ec35a59844ce6785d7233e3e4731905205778965c76d66f18'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2bfc2b0a9ae6969e9211e0da3e6c0b72aa250d008d827bda494e898b219606d'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'bdab2f743faf27e668e7a6f222f91c49ec0ef44469996eb9ae4ec5e94bc2ef16'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a92357fb4131f87849ec0a83880f4adf5e2872b685ea2d13e9103aed57e9f441'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'5c1d69c6c96cb115ec56b930a7848748febb44970433366002fced362da895d6'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d8471a9ea2060e0e642631aa507655909a112e5c7adb108f099290fa47afe34'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'1e629bd226c9475480eface7353a8eac4b044325a22b816dde857f72691aff3c'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6524883199a013d4fd2f0657bc0e3a26666dea0e9e1d48a246c2923e6490da3e'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'2490154ffb2eb4d3e3b4374aa28d3fe19336ddc3c545bfed9b05ef45cc5fa29f'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cc6019b40fad64457115f65f800845222a05017f7ecf87cd17be9b003e67f5'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'0346d34b3923532d201762500f902006be244af1c4c230935d5033083d3bd1da'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e6f5c4a6bda993c08110b0b91de56fa6338c2d3b9df780fb3d4848004e3715'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'47b26c63139312d26ba7c9f18e159f8ac57e4c662572d55377827303ec4fcce6'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c627303ef36b0a084c9a865bc78b1137513e8d0f4f76cc26407edc3ec88b660'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'7db1b0060da32322c52d546d5fb480fd1528cb97c99477afb06e01bd921549e0'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04e2aaa8a98bcad2a4a5be756d5736db0caba7d83f25e2fcee29431e840d9346'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'e3cc92a3a2de4ace4af2b89576c5bddad3c608448cd2955c2a0d5845c908ab11'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a49489f1b42043e88796ddc281259bc76ffb537202bd17f14794e204c507342'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'1d514257f70dd4010c691c2b39590f14ba939d4b1fbaf367fd1a9edcf4f72edd'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0af113e110bffe9546833f5c8e648767c33e6ba1cc12833ebff659d92b222b1'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'8f280bbc14734dbb90efb433c9ecf27c743e9a397b4f1c02e8d62a768b3db812'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbfab615236a424701b109a1761f8eff4da7c9750b18771bb4222c381c2191a5'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'e15792a604245cf8bf9a56f3710ccb9dbd0ff80acf3fecbd8436d36a761e2a7d'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf2942d56a125ba4df21d2227453eb094dc64da545a07172acba05fe529ea543'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'e1b7dcb6567c1fe798b7d6b83e02717827a3091d557b7190cca71034396eca95'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'451ba7ace7769b9abc22148329cc18455e69110ccac397526fe56f500b5812d6'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'bf77ab31eb949ab131656ae485cfbee23c7625293f1b300d2390a689051f46b7'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16f61f491e9a198a104bd706615a5d1a57c5e49df33669d9bfa2e63209a84cfa'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'767d1fe0f370cd64150afff0794a28076c995298f9328afff3eb73a718ae1b6b'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'702083688cc6f9fab90a0c6f88fbd5ed7fc60d9186b1e0ad3a90a017b1047941'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'a056e346b370c1439966d636a07276b339b6a7a958d08d875ae1eb66214ce960'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66912c2e0d3f155ca741040b1d717ae9bfee962a1c5d3bbab51118454842c6'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'d0a18c4c8027fca8c6d0c8f75dca2c25b2507a765fcad47e0df87a224f3c9469'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b91a12f727ffb9d8a45f0f20770c48d0e7d3fb2455d5d4964257028f50ce2186'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'097dcc99658c6185c06a7d19df49e91713644dbf3c917e493938aaa68b558533'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11069822b87eea825b80b9f04780fd6711b403ee89ac39e44350f3f13893c311'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'e6875e165c6e297737fbed98eb1c3513e9f11a58363add80b01eb1114e4503ea'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f3f7a7192fa57c93b7d593212623d9698718178c0a4056fc73da0f95cff4dee'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'0f9b7e0fc21f69f06957559e1cc21286d835c5e498133ed78123d304e8400aa8'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95c9a9bd39e8506b47f72007d5c242c22f1e4425fa62cae177df16afa57c6d4e'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'450ef937e9459d06ffcb7c6c9efb72bb3c95bf98f80c754f7758bf31769f1d65'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d78fcb5c9e1c2cc50561a533f297cdfbb26ce809609ef248d0195bb346509a'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'4d0fb1a91638d85a945d83ec6f64b8685f512113c94096252287bf534a7484f4'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2526a9e10d238cb6a8e2cb7ab5a4daa9d6ec89982adf94795f3d7c99dbda95a4'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'29ef5ef9ea03bb161a003959005f8006c113ea1ae1b6bb522993fdcff9920d48'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec708650f967c7fb0188cc91c831cec1968019d82fbd5602206f24aea2c16a21'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bf05e32c28297112a352054c22cf3cf9d7764da65da5bdda4802af225f541000'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e6aedc80984ba96aa6fb48c43f0ed05f6d630b890db5b54faa98abd295fa016'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'2404f48df03504f9d81ec14473e70e2e102c63ae85d854f068be5c62b56441a5'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7633e13581630a6547b2d53f2f0b93c8e3e983442a99515f6c9a70112179bd01'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'7d3d484812e502a83d23798da488c05e47e6e7c119cb3dc007fe413c210b0003'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e530ce58be23a9bfae82a4e6f7bcf1d40078615d2cdf4e13a041d50ed16ffb4'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'4bbc52e9a29dbbdefe60f4a02ad6d13e053e5f55d4a1072fb208ee90253e7983'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7dc653f621df70effc13bf8aefd48d2a66b77edd5756e8687214259bce58339'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'2f7169298ce6d9cfb364707731bd19a8263fcd2ec9f9f49ba0b5ffd2816523f5'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78514817cea74e0a0d4d6dc9bc723b9109327f3c4f70d7981dcd29b56f858f8a'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'150578e1ebb12b6684364a2269021873b0977496b9053cdff8e9ff3b7c7faf0e'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af024cc5caaaffe8d4c2b659a6d3cb93841d59f3d7087dd643c03383bd23780'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'1faac7cad42651bf41c1dbfbd2cbfcaeddf9514c12ed256e5ec8e2ce9fbc058a'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e80de1c8dc78c243d4a229a146b31c1073961fe8df9978ab906f4267fa394da8'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'d942f4473aa2bc067b0e832ad86648ae2e8fe2e43a06b96406a7b77775abe640'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1991af8ab35a7ca48a26dbeeba3327573bbeecc283bc5abd9641f530f41e8f90'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'f82780241b8b51a0afe6f062ff43c3e1205f73577e280de2c58a902cf62ebb5d'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4f3569186da338cbd2c367b5f5e9e0231807a6d9e49114ec98ac2140f63a531'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'fc5fd87c6f335874ed0a3522396008363b31b6d68139145c08848cb32c263b29'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c449133b4f6901ed862f04a2ec2cf7e30ac37e7440087479ffc8174184868c3a'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'b1a1a446606fd22a2465f05cf55ed7cfebd324d5fefcf81ade8d574af698f6f5'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f0e745414f71cc843c7811608d751a71dcae1447a44117e1637da92fd73aeaf'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'ea35f7e3929ebe6cac740b16512935c44250cf067598a93e9f927aff9eea0cba'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27aa9fc166c7fe896b04a992f8aa1549a5db758fa8731f0f6f088a244ba9c793'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'68a83aa63beb6ae49e02672eb0237325311b464ca76c5a90fc051aac7d462260'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4773706101ef22c42a208cbc49b48b5c5df2353ff6dcf5dc17ad9d34067ae936'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'85807af03fe81bfa2ab0082faeb13b063f624abc9df0d6165a10cd14072821be'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc38aadc11c340a92b88ed824a7201226ba80fa3e28ea5bbddea8ffe58e55c92'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'cb230fb2ceff60fdd4e3b1d6c89ae7517f1ebab8395e1530b664bd4367f59db9'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c035a487172827e0339081f4d7a71f56414f10891e08febb9bfc4da2292fa8bc'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'53b74db7738fed611b21833ea80d88316e4e2c837c9343921d7ddc6c8b0cde11'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'878618b5f919524cf2f3dde678b5cded4797e0c6dfb4311ba1bbe27cc9e314cc'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'4072714b3597934c9cb3ae14ecad352ab9e6741ed25e4b8550dc933d3bf765e7'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9879e933275aa500c1925c64b7d78ff3b655e99efb1ed31397c0e8ad7285b680'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'ab21145384d4739080101d6af0097b391d79f7b9ee5ec0645f96394507acdb16'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e740cc40c2ffd0e69706457fd866b47963520be5b46f0230ad2103583b1b3437'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'6d5776ca4b76057171d38970bc81e4bb0573452a2c20e9c55a19ba320d7478f0'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d3e859b54c21697ab24dfc0a41efcd43663b32ab9268bc844934ccdebea0b7d'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'44278874b296527a10713a3552f3a81d8db9848ad3ef3aa6fd889ab953d2440f'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cb2cae1c526d2f2c2eb1fe991416cefa1daf34a669ee39fc0bdb81ea77fe679'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'af6773846ec130713c14eb237d860c6ad97c57a53c4151a5b64abbc779524072'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'876c2e0c191d24c685dee4e18a855286eaa437d047241e5e070bd077d1d6ad3b'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'cb90d65e7fcaff58faf3ddc125f784ff51b5fd86ff043a62c2b00ba686b86764'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c2b702bf3d7e2bd92a18e7ec8be3c5018087ecfb954272a375f27bdec322a82'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'33c3d6c8f569a90bb80cc8f2f1c2c99bff46628816bd2a933985ada182efb9de'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1104bb88b5bbe589b5a06de3fd4333d3839c71fa708eb4b266ad3457ea56ae52'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'08c286e871803185a4ad58de68ba29e4960da28948962b9c0dbf4ceb9d1e3be7'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a57f8b6974dd68ee98de58523f2eb3ee52a93a0e40971f2fa1e924417b942a7c'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'7af9bca8e46aa001f116e81322717460bb933228d93ebfc750e68a7c563008ad'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0329d57d0dee2b6b10d8d2ae2df03e89fe73a939ab594734ac94df579237035c'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'43b7d1133d045e44a366caa3ac4862d9e9818a92313659a7bd394baed0b9d210'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66022b54f42d93184548d20d36ad03b4b14b844421d562cac54ca8d1bc0de2af'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'376a2c1562d1ec5fcbb181b13961e5aea0ceee7cc7d747637234d81641770945'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11fc0c5b17eece44573879da59dad70f4f7fac15242ceea74dc3717e94b693e4'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'805a4fc6769d1746a374da4db46a8ade1c8971ffa97a1f5920e032053ef21a58'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a13a21a76e95ac472fff45b42062a2906e4b6c2e172e404eabbac2406addacd'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'5e724a720caa6a4b9e69c879dbacbce5e1681d1736de98696ac464d847e7c05a'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e45efa18d0568c202fe32eed9096e89352da2e72911dab7fd782abaae42b270'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'c86948c984f7a63ad411528e29cbba25cb7b47f7ec711e5d72532f8ec4063ff3'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eebc9a3d70d184ce5d14131fb691996925e2ce56b039f0e2c0bd2fa0e87f8404'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'7ae8e46c431271f222001e330c6fa816dfa06a33a7f80576da3ac69f41d392f7'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18e259b30f715988e1005ccbb99e0b44f6df988828e795a6d0565633a0b059b2'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2e9687f06daf05cfeab2348411cc1c967f2d2cf3f699f5b1fdffba6f6b4e4e0e'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7215d40b22efdee1852b6cd0dda68b3752d0ac774a7f1cd73cda806f57c517d4'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'18986f018991288b68a80aa2b7dca9147ecabd716c819991d20955fb7caaebdd'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6b1df36b1a3c2e976cab9978a322fae719dd69c688124675fe3b0a37f36120'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'6d6bf2f213bc24d474edd061f66fba7d7550c54607e1700faefbe469e9228c10'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7d80bd77991024c71baca3a9f0be5c64b95e6aec5d716c7b886fe864f156530'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'a4a745c2baa8f9fd1b1b2bac183f29c235e9a969331a4e6e86f191550e6261d2'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325f7e4e9855a1b391d9cc1e366d440743651395c2ee7fd5313c79989b3b099f'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'37b71bab9d361077fea2d8742a9b0394c8da9c6a4107838c382abb44d27ba31b'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b690de08f0664f6636cde2147626e5770124177b7caee8034eda225df1dd0f'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'b71f1430541b2fe773ce2c1ce41c326a95595a110aeccc886d00036e64ccdec7'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b743e4989657ac694652ce96d56a8bc70e8c35f38838d787b08f554a92f56c5'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'a505d5a0d1992c2728e53c77d643a77b6d907a6bc2912e080fea465efa4e99e8'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f74348b584794caed6fa607ebeb842905ca0afcdc2839b10cc64b7ddbc7d352e'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'de30764a058d4e16671a5a45f257d4d9976fbe281603f924df30ec8e16bbe35a'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2ac256e9c71a8fcde5ec72a100c21b0069cb442bce0ede17ab8a3fa9657baf9'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'ce6713111b7ed117ec8549c9d7c4f8103b6f37db4e042f306660e36c98b41e0c'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46c23876e14e09b830877304e6ac369b77b87f6cb7a0060386c2fa398ef40903'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'3722463479326f86aa6e2efe4df338176a44bf6641c0efa1b587ddafb3efee9f'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6edb4f84873b80bf2538f4c6759a7c62b539885d713ed8c8cbaf8ad21dc10b'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'a38b8466caf0150d422fad3e644152eb2f9d005543601fb23c8268330e9f5311'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f5dcd5b900e191f58304321e6cd009a8e844f627e258d0b4491aa86a66b76a89'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'b4011dedffabf47c59ffcfcdd53eed525910904b6d593444ea6d60c8a8da76a3'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'49972ed97962735b0436fa9ed6788b5b2dd411da974c43e7c1f4012ae1aa47bd'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'659ace90d7758a03459350a8639c7c577d2552ffa926b229fc41f7b48c7d8191'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'bf5ca13faf4fcc8c5ff04a44824358a3aace031402cb73830f15920205b7f2b6'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff94ff89beee24f9b3d2b366cc123e934fcd693eee93b13a1270b488fecfb6e1'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'736236cc34a0f25b09e22a561cf2f93ed31986ccf664a606863211be07507b35'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c49c02dfb3d3c610a93d1f50b68d26073a44b17f69cb01d7cfac94d6328c022e'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'1c04a253c9decf77cf5233bee6ae1d65680734124d1b34f292be3a9472811644'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dda4ad01755b011a570b8542969a79e8e8e66266d3ea8a0175619f618192c31'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'88d551aa68a7a1828893b8515a9b34c6af88676df65e69efafea87ff4e342fae'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff80682570a139c8a3f4f1aeac36080ef2477af3c911136c8cbef0498fec09e9'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'67c6971de9b63ce7f730b4c4b53fd0502535217945e307cc15438f1cd0b54cae'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4935c871292ba39b2c7f5f2f568a7ef90606098c8704cdedacde9dad122dc586'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'519b3a8830af55ff4473d0c0fa6cb54cf5ed2e8761db18ebec7851f6c8545b85'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2b2e7e6d9a564b3a1f45d77172aef430c1b936a7eb3388d6f74266007a87f76'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'17da04f2acdc5e436364158752ec870bd5e847c9871934392fac26fb393635af'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6cf249fb81197908908450b7fe1a456e97322b3dd37855cd5af47f33d923552'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'acb3a85abd0ab17dad654bacb834e49cad01815694665be40d73ae5930079a07'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6a87c0db767c2aec9965a8289d3966afd286f1621bd91150402f0a5bd8098b7'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'960840120deab73844e928f7e969ede652728cb2fb0bb8431d17f652e648c4fc'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6207c5f8dc5f10dc7d20949dc0b9447e5fe1a577fddadab5cfb17bcbfaf33a7'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'30601a6f69907ae98b4dcd16953114282bdfc17bc2d6119d51b2b4118fda62f7'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01db3dba4768c4ddd07af913fa043968ba5a3e93e9caeadd3540232b3de40a0d'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'5321e47d5c7bafb6936e523e2a2442668c4ac3800ed70be5bdfa150e40e904dc'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82b679b96ca4680a56bbc59c6d1a0f4f91aed7a34141a7db147aa8c8b9b3c329'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'5ce612fd0c40c63f2e8270bd682a2e1dea7e1913148520f8f400c40f94dbd13e'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89781f5e6f59406fb2ba0587f78a088cf39059a6489c0203dae13ccda8dce02f'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'83eca14e3fa6bee80adc84bd2b9541cd9df37d09ec37afac09ca4e7457081692'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a526ebe688ca20934c28e005cc99000522788c3fd2b0c884e05295583e9cf43'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'db5c4eb1344fd3ed2e360f0818cefe9d2c3d541fb8bfe6d6205ecb9e3cf27fce'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1719e818b057b67a5109158f0e8cda13a3e81b79bdcbd4b5bf28087562f801d7'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'42f8b730ee765a428356e126488b57d4e1fc230eb3c0b9bae93b637c0b146fdc'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b829da2b859bc657ccf52b81259b4dc003c3ef8a4c33f507555bcc2b9d12da31'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'96bfa4a4255e108839946f207bac4de09585cf69fa08611934044e632d40d7e0'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aebbdfcd6548f74ddab006f899a5e86b1bff3f72ddf7d2171247b43beca9ca3e'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'cac65adab357eeed5b039069ab22a27c2b15d112de392f7e79b69348af974db3'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f51ad4c2d2618cd85bbea7a7e32dd4836c59f27c71f1d1abe76dcaf0e9327ca'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'7cfb3b5e7a5644021c8ef2a1952332c21a266a112f136f8604b68e12deb834c6'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b58f101daed0b6af32be020845a564b5c7889916ac38fac9daefafb8714a29d0'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'4bdfb30e1943dcad12c73dec0ff8deec0f674608e7cb6ff44c163daa0b93a992'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e925a0c5bc3661c52d1bce3b442bea302b1dc427b06c3864bd0c1a7abedd1fe'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'cc3039e8cb1c22e46d7eb8615c50d51e325fddea20e295e505cf0256b62e2298'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea56f07f56f9f210e9dbf41a4c366a8d5aaa7d727d7107d9a8b39856a578ff39'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'bc42acd0f16c301927e3509d65492e509ed067dfa40b93b7281b4567a1250af0'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39f5512236e53449a08b22e5052b5b2419315917f2ed734b8d2f3a86086ddf3'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'b997c2e25af4c78598885b49405024684f53ce86592501dcb1d8b72c5abf389d'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8de2527f78cbf454fbbd40f46e5f6cb04e84c6b0ff82efdaf408558c42041f'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'be0a4d7234bbd1d439eb9460240298d984b2ddd4d24f84ea74a3fe9b3433dae5'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514669e08048f2e1b738ae3ddaa0cc325d6931a6107c7169bb989e81baac265f'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'dd3cac56fa8cad4b1084a5cde0c574792e39d58f89cdbc546662f174c1b50159'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'765af41a408aaeac6cb3ee4be39fa4295aca43483752bac286464f556925a7d2'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'fd6b86c0b0b20c8a732ceabeff4e843a214113182570164dcaee980f500cf413'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d54c0f4f3a5c814ace4ead9ff484d16826d0e9393e2dfaf91a776f49d51b1662'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'6281edc34f67fd429c751d1ca3f1b76ae407b4551469e8098c68857cf3d8379a'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1a1001a8c6597469d7dbd1fd5ee9f012d5f07123a30d7fcf92376eecb6c039a'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'57571e21ad9e1a5f82c1c6f627b4594947a6ef93e97474e514496b52ea0168a8'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d61f0c46773d5898f90bbe4bcbe1167f79d49c5a35f107573cb9c432f4312e5c'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'a726d88ca8575834e7edac45b5df472c9c2b8dcd6bf74745452f2b03938c6dad'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49e10d09aed2b54915fdded5153554513d6a1c0300c9afd1358d9824a90ea3a'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'088e828fc21b789fd920c17ecb0ee7d7c6d10ad4cfb2f135cb1ad544d59cc1f4'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e81b74c549479485d5e02f24815777f8c392734b0c119b8c0ea3257780f5fa09'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'0a870865b9d0aca4cc9c72a9d7daf33f81117d2eab637ace1817f2b8c8483de1'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f817b522158958b8b2882a26bb6f780f6e817477aff16f65994b77cb7399436'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'4f600a8e0fdcf059b1b5aee8cddf76ab96a7cb0b1b41dfbadc243b37a4fa0803'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3dbb2cdd0e306e221bc02c7efd611f46b848fcb35697fa789d0f2fa0a556eff'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'e9b0b97026763185a378cbf441c8d37177603c6057fb5b2f7f95b47ede59610f'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6af2b7396d205097dfe4869cc840343cddd153916d58a620d0aad9703afbfd70'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'9d541d93562989207fdac15fe68a7600fecf68e14237f8c2966a28b2cd44c91f'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96da8dced68f038886926019e884774c4970f7190450625527e61051c13b7846'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'608755cfc131a212d05db0208dff650dc17b78a75b474b1fd50b8d73d80d24ef'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cd00e620d8163a54d7c033b6b895367d7297dbe990ca21ca627709d2a6fdd0'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'d5da52bb790ebf6d3650c21efeb41db153f5dafbd1c0ffd546bde172aebf88f6'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e78694d41f5c51338cd4a743e6d14bf48d6ae6a49ef6b9dc3de7a532f7c7e13'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'bddb79df128c780a9ce39b5acefebb07d82c7ee61b6e54ffda8f7a0bbbf15caa'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0747d159009dd3d782ef5ab4dc37ca56690d19547b6c2e3d0adb660498ab83f4'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'d3433f3781a89ce6ed36786db40efb1edd6117133c3a3b9dcab8e27b50c33e04'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10878e3d8e1d671bb0399e84ff7381adafdfaf812957cefbfb0efced2e14ccc9'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0b2830990630426b0130fd8fc5b1b7110aec5cb047f325d86c575f82528fe594'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d713c43fe4fcfabac92823421994fbbd485a0625e09bd61f279f2e20b3d7e967'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'5a4bd2cc06718bd78b1d5c4769c3f1dcd91688802851150884855ab158ecd9fa'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede54986bcb63b7c25e15d0e463b50548e398f1f1160999116e9733fa4c52e8f'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'d2e9024356696d55acb9301aea3214ae343e23a563800cba92f80928b91724a2'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487e7efc1e302249a8b62de227705dd9b77046967fae3306c1c94f91bcf07bb5'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'8a4afbf9874c7573c8247e7e509b83d0caadd35ccff80488b2b33a39f7b91fea'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb9b3d1231aa3c930e0a7416c26b9fec007c2194eafa28d8766f0e4a5b1fdf1'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'1e0096feca4358129a0488e463ce61c52eef533f884d5c54bc460a99e844deac'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23baf0ecd2a5792db4821206b8d2aedcdde32aa321dd0d725c47b959006262f1'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'538e36ee4fe7fc4d55cb9c6e64707e59d3616b153c05049474e4ec1a63f3642b'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ca8fe95795b87a2c57f984f2b6e0f39aa8d353b73e6715d03836ffe0d895bcd'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'a8b08e891a9d20a6c66dae3f16d2807f7fed0c62d33187d96440efb46ec9d801'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44399c9f7239a03b37c3c34e80c716d343ea58d9474f2ef1a2cf7e0d2a24b0af'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'7eda1fec65c16fa90ff8e3d9458efc627a62f03962a0ce2ee030f2acb6c306d8'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc630b9e4dc2404c2acd3cf2a91454b1ae591e60346c17a3b8c91cb3865c88a'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'252484521fa259de410e90afb9b2f5d9f63bfae782e09f8bff2b64e32a12e94e'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30f91ca5b7d20978e2701b02647a886e1989a1ee134fc38cbd8145d16708ff1b'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'ea37db21934b5bdeced29475b9d264dfe752f34d43dd7e653ddb0fcf5aeb63a7'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ffe9216ab4f82aaee329502c52470ec7326b8067522341683d6a7b4f1dec8c8'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'2771491880141fe357911f0ebbcc1bddb77e40a0fd3caf507302ce81cf71f89c'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29fb680447298a0628363d456f508150781656ddfdffd6e20f99abc5443408e1'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'eebd5e6e2a9de10a30ff86a75702dd8b981cc4486933e501867db03fde1c1851'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'371712950d794ce4b6f0113b809250f15b197bbd096b11a8e4c7e389b2c0d8c1'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'a8ac07ae151f22735f4b368812ea6a8198c28fbb3c3d0caf3c349b00f25a5ad3'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'776ff4b442ab04dcf00c1bc315557a44c041c0d676cf5c5a7756052e42471112'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'14c5d61396ae4f3f7a3d944187e596415d8ca34b2aede89c1ca3be23a326db66'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'193c3103838e94383755419a04da4541666c8995641b09edd7e1da777a4544e7'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'0b842659292055725318f81768aa99dbe84f2f899b4f130bbb8f2d72fdbae982'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c47a7ef5aa162121b9508982e7eb3d3545a36c7865d64cffe4c6842aa627b0d'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'ce9bb2125fdc8dfe42e775e249063d6df0b2b83f6e99e025f9d897dc9c08a566'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc95746e83c0f62e1dac103c0c06c82f400a7fe77f051c73617dfe171498431'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'d9ffe56b2d7d31cce293f3c6c3b0504386c456727a161b840c8797909cfd6098'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7abb21209d8b91f7e6a34ef7f1d3f137e79cf9c07162d35fd3840791f2842175'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'33537815c2daef515d67340b9d878de14567db34f0475bc094ebd34ebf8c2ce3'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2e7eb1809a0ba7d9a2d9d12f62041fd8e5612608733ab2d771734e4bc41b658'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'756cc0468a84e850d68527c8de3430584f550f9168ebb34a56f3cb8a9ccb336c'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1814902ee0613bb55612511cc2198618437c8e6f19f26c7b5b838926eabaa080'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bd0bb09b23e069d5bd8082fea47acc5c94131e391409cf3bea2c5eb35fd0cbc3'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d8281f46b112d028960546b4139bb49a403acd4dbd887716127c20616c4d3a'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'07a27b1c30930b4088e1e08176927ac38fe8f06016e3b015cb4ed0350409737d'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5bd167a8d190beb217058ccdf0da72299e1c650c337edb80c8b870c50d540c5'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'5ffa442ecada154121dc8dd02973ca36b3d2374789f58970b5dd6ca3b4b3da7f'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58cce830e52994bb6c4436f4291817d940d2e75e6944715423ccbcdea745f424'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'3d728ad4aa117e4938fccfa525ff2f5352adfbb373cdeb1b55bb30985c534de4'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1afd76cb12e847f9b77c9670a2b31ce12dd49a513476c21db10b6eac62bc302d'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'5ebeeb2291ec2fac4fe607b1e7bd37b700ea250d5120d4c1af7685f696fb2ef3'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07474e439b2f10d3f93f95945e4ec8d2249682bf191f20955b0a2b2ac833259e'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'110ed58da608f0563c180db4457ce544aad565cde59bf36abc5b4cda3a59c9a5'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad1d667181b4b40de957177dfdb7d88b557c73bce7c5976a659afec8471c1ee8'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'857660746766bd53a6632442f573a2210ad44b59bd06d5fc42c5fe8454774cff'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6da6605f3fdee91eeeb1eedc939ec33c70e14d51693ee179901ae816a83b104'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'631301d580efe6ac7d6e6283203f5038ec17b5c1ec08e95751f3c852eb0fa996'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ad4abef6c2f4d177795c348f48bad3c9af1cd629d55895686dc47e30094bea1'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'47028243ae2c93e5239e484c3397d63ba67021fcde7b0012bd73536d7db823a5'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0184b4f9ba0198c3641b3f870f8bcbc4909918b934dd89730af1298c58c79920'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'4768fe1e0978654d64a9b1e1710a8602ca7b408dde9726fee1f866261656a668'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4954a6d13b60867ffc9bac48c6f6076d84809b0b1e860e18d32e84859dbe3a7'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'1a1a7c3c5d319360a0811688179fa129058993871ace480a5cd3f875c7de3fc9'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'590b552e5584422a3422ff2fe2188ae0635a23d23d50ffd23c4def65f5139c79'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'36d8bed6fd6d10c286b5d6609130f2fced5f33b6b547f5ab4f9421cd618f2b0d'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2c81486f37317aa03614cc3b2e6742f887f565c2108b7a2fc755103f0043ea'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'2b55c4fbeb83f212f3a1b18b9d59cb6b16786768d5786aebe78c7d2d9fd2b72b'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f48d54ac30e7e6268b4c8e23b93348da17ce7844b7b704adb98ddcf1d61cf33a'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'9875dbf062b67f2866951ae3f7aae3ef9d1c089af5c55614ca2a5ae0716046ce'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad7a43daed90a57f46b679e82abfdba3963f283210333e81ba7f4fbb310e457'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'141486061efe9448d8ee0c24d2c529a46e4274baab30aab0b5dcfae9323d390d'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c320f4631b607d88081d1e43bd918b52105393b0584d709490884a98f229761'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'d6459b6f12a1a8e895bdb6068620efde44f762f498d5c0996f13fd27531fe5c8'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d983f7a1736a96e145fa5a8221543131d33a11fc0bf6dcce294cdc75f674afe'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'2906b2c1d6c53bc24a1da55f5038adb67b54a69295a78319d1251a86d318e735'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d5c106edbfe6944862337fb546d96cfd9c254f0ffc8058ee2dc65f9630a36e8'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'87bfe147a51d98214147ac06af121a6d8941deffac7f28a8b7ec26c49c421245'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b81c30086685db259acc4e22b3d5113520f79e0bef3f536451bcb3cf9b06108'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'f2cb1ddf4768cac1bdfe1262cff3ed564afe9ebcc97fde82fef0a5bf66f1e822'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3652bb6ed7ad45e46a6cfefff4f21c98d031af0fe730ac5cab02cfeb376ed29a'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'beecb7d6958f271072388e722fb9f303a4973a2e725aa2fa0436ee80ce7146d9'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a55d4fe16a7df2d03a2c6653601a16a410f20987413700773219e77405a45b73'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'9b7af1117dba09ef09ebf4afc49340d19fc0f691650c334cb4778b0e56e4d634'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a06ace128595e86c16325b19d89991f28b86c8e4c0946464a37ab804a121c0e'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'64a98af86fb4aad4305c4d49ce5fd82a4fdc695e72c7780dadcd9cb1f54f0561'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d251464f83a6078114b84826cf9dbd37b8fc078efa826866210b4a0121d5a2'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'a8302ba4e5bdbbffb8547762c3040b295d59cf9039288bcb4deb8e27f174a188'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59a4bdc497567a15440349e868b96815857865a0377ecce0bc4a131ffa19afdb'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'5736baa88d7501f9b00c354b951dec6a5d095741060369af2693acf29e1841f0'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56fc5dbf396113c1ed234415b68911ab91a3990e55e24a19b67b81b86cb5f7ef'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'f2a1d912f2f6c6ad2856fe457cb3106335222fec1f936d9f3d76e49379bc57b4'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cec066396dc9d17c4d18ff18bd97f7fb1370e3dccff2aa9cd6fdd727534a7827'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'dcd2392b49b108c63afff749be9a27cbbaa1f092662932becd9d457782e9089e'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dd39c2527add7f5804c06727f7f064268889867300f3a7b7a61581c71b2a242'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'4a190f12a16f5639a1018a21358366c8d896a37056c93ee70f6d623b84e83a67'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ed1a6dd2e116c16f27b5dc3d1f027c851fbb1bdc252a5e450e0afcb1c4bd8b9'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'15af2ff0ec46b3c76d0536c6c0074eaa7090d4ce007c032b47e9b5203d127698'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe7cfe8d1f40ebe94ab61c6bf5cc8a45ca25f69012f84f3b52fbc28ebf7c2399'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'e816a482af34fa75060fe9c794e6fa2dcb055a8e7f7946b6b71cfa0eee9c281d'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'274b514f04613bb82f20dd3abd2ce40ec56d799da14aad18b1d1a0a0e1a2086c'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'890df9ef94eb21f83a117eb8d06c1b87864731c556aaf67854466f6327983e27'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bbfe7d32eef643fc015eba7e3181c2fc4e4ed353e3221e3cec2661f9a37217'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'df6d984d076b4fdb2ad7c25f54866277875a4c693887b69743f8106b70b16100'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60362fad69d473c060dd04122874c864ae9c68eabe4bb550a27560f6e11f6d35'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'28f909ff9fd21e4b35866a7c2dfa156e96e2839bf2c4f3af42483b78db8465cb'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056e6119ace40e9563994bcd0270e968e926e694f03d53f93d95761e0072f4f6'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'8842d49b3bbf562f62e81b438b4304906b6e96ebb2fb80f9dcfabb8e77ded09a'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3998991a7d8f16b9d3a0d300abc5f484626ccc454818b7b4e6ead0df990a1133'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'c106a9377b0f6bbf43470a0a56cfbc6996b9afdff081f94ee7008da467ee7ab9'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffbdd952417687bbe7403f98d6e38056c071c7dd65bcda3fbf731aee7aae10de'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'3fc3715d5a6b189be1f396816571cfb605eee2ed06339aeb4fcc0882102e866a'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ea15d0a4916cd1a8684f0eae396246bcd55ca672c151f8c718c213dac17ee2'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'382ff361d3e550a0ceb99ee376c39b5292ad100009d81e9795a080c775c5d6f4'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6397e81b66d138a12279361c1d1098c11e9067e1e72020adb16b8c4de788a6f'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'542403f81e86ad92c04c3a5eebf5cd49786b9e119782bc097c8a259cd6af1c69'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'279c104102b5680f51980394e7a99059ba7db0dc3b617fedbb4c6daabcdbb660'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'223bbd2a74474fed006fac5f83237c42b31a820536c062f63525b5eab917cfd3'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66344b7f7600b971dab42706d1c1cc5c3595282de995dc52690383e599f212b4'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'a047e09ed56e7b889c08553374b300482478849ac7b9d4a639f818553d752d98'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd23b1b5d6e008784409c48c86b4b5fd0883470cb1689d854afaa5d32b156929'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'5d6fdef1e00f2018f53da52d5ed4efe34fabdea07879b5288145f2c527c8a749'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33da6b078016b4946be3e1c34c7fd49099eacb292d3e7721fab568bdc1c3568f'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'fedfa2251a23c316d83bbd16b2ac28d5ed9e85d66b34eca9b9c1fd236569a199'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da1af6a39a4721506dd2f81d2eca52868da3bbabe26925691a8f5f372941dffc'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'6629f41a6c5051d75c64b58e502d35071c2f5d0aa977d64bfcc645ca3d47fe97'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'854b0276247cd25919d0e1fcecc8f72e4ae175c861b0b31013fb288c70e4efbf'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'37033dc811e6b6c5d47b72f9f9a4cea8b2209a04f2d1bc5f7187cfa8cd569046'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14c7b19cf6732c4b5583ae514384c43c1c0012b1fb7d97da1eda9071adf89387'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'869c38e9923d33df8849df6c3fd7c36bdadd2b5469043e312baee2da2cf6052a'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'694575c72048f2af8e2f41a2da3f78cea97c403cace38712b97fff6dfc9c7fc3'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'ba5f9014c770f77193319d764afb4070e76f59c1f9413e0b6fa957101fd1eb77'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad7d96286c7f77cc3f53bd3345fd415f78d670821902b7200d2d96da014ee80b'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'0f95a38595bc80d023f639ef1e1d9bea373b1cd18b32c1db72c353add1fd7dac'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325d88784b46ddc71becfeb3bd0533f4bf502b559c6e8710e657bb7ba4a22bfd'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'b8eeca0e506794b08218d6af3d0f2c40e57fcc5ab826474f4204b6891b85f9fc'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75dbabcd63b9851eb7b2d49b3a3e261473cc573181cc720198ef76fefb81340a'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'07ba25043e2875359fe1ac542cb3170a8966f9dd9db57a6e67e4a2046ceb6440'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12fec734b49a9fced85419c6d55a01d0d9f90cf4bbfb75aa1103ca6925239793'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'cb996c316c487cbbb4051687c8bacd10750e5a997b43fc2fc25bf15eef75fea8'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2314fcb4ec6263206532a3a831636bc77b87f57595b57a6b3648b82b44a5b5a'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'62e31e03d906f526d602bef81acae7ba758d45dc51b3067cbd810c5fc735efef'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb7bf4dab1e1e74cff1ec731ce8dec02e5667e2f944c4a5d56e4a54ff8c7ff2'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'f1233d6a917651cd52f4e898969e183e72d43dcb201d80464103b997831bbe80'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b74c0890f113bdc4b19fae642415d8a3ff020b90897c72175713b50d17b1dcb'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb64801eb836107b66f087a42a71811d6a4df49706bbb528628f5a0159a7658'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134b690ef450197b0f427175bd9ca80127b31a62298a9c117d2b2d142f71ff75'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'96654d3770f057ba5cc35f0d021e07a53e85eafdd5dbc03c0ff50d82e80a15e3'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f19b5d81b8f5cb268cc414ed3e5cb7d379c7ba2e59969487db77a6e85e778fe'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'d4cd8f6ca2cef2a6948568de1e29cce6e0e2e8ecd76d59ea567a98c86fa9fc5c'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a36d05f5ef50ac415d1f15d3506a37be350466764e1f624ad8eb8131484a98d6'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'0f4b0887dabfa67c81b5637224f2d0f827cca03f45f94f743787cc2f5320da8e'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6efb6fe30820cb6844afc3c3031a39004f0f5300618fa68aa047babcd17a4774'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'dd6ebab2b22b86f7e6503d55e4f433858119945558211cfb0a457b21c5e5eb37'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a928b1b1ddb50e534671e4e3491213e09f9a09971757197f799293902226762'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'e7dd99ae77ac7dd3550765e67040350f497b2e05e69a07abf7e6f04aeecf44e7'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ef46dc86fcc0049dcc7cf112c61e313ac518dc854f627a300f74d8b84e88f87'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'8f50c8e6977586472ee10d5ab541d7a7dd023714762e39758c452a81d3aca470'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe14db68ea75741cd31e987f7383830c1f53cb96e69039121960ae55057562b6'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d'); -INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00a6caa3aa991496c607f0babe7d83a0c070aac2df5f1a2dc6cae699ab24029d'); +INSERT INTO messages VALUES(1300,310506,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e450deacc68e8953ddd48ea86d435b59e3272c97aa03123b64b5183f9aba87df'); +INSERT INTO messages VALUES(1301,310506,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','b1342e1bb9d4c6a49cd8a0d39c37bafa71542a7a7320b7405e051173ab21d9a9'); +INSERT INTO messages VALUES(1302,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','01cce1ee5366ca54aecb32e5f60289c246f8256b07d19582833df0fc3c878ad4'); +INSERT INTO messages VALUES(1303,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7a649b58ec646c9d99aa9d3e169cb8481c1e7cee5b8f4ae3703085f16756f4bf'); +INSERT INTO messages VALUES(1304,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f72c8c03a3a556e377844f6e31c77c25add3e2d3c6bfb120beec0b8b4b19289b'); +INSERT INTO messages VALUES(1305,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','01131ee738badf197ba7af3c536762b36da351aae12ba71f82ea34faf1c217a6'); +INSERT INTO messages VALUES(1306,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8464daa5264db14e28ff02b1b222c39f702fafe961a168f5058023b6cd6d027b'); +INSERT INTO messages VALUES(1307,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','d0341eb5cccd62b49ecd84416f4f0ff8acbfcb901743d18576587b9d7c29b5e2'); +INSERT INTO messages VALUES(1308,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','c47b50c7f80aa57b1d9393e578be9c15efc14724de8da16d481b7995b8cf62cd'); +INSERT INTO messages VALUES(1309,310506,'update','fairminters','{"status":"closed","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9"}',0,'FAIRMINTER_UPDATE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','84fe399a8a99f4acd953e7a63cb2ec4f90060ff86b86d8885264f6263bf3840d'); +INSERT INTO messages VALUES(1310,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":true,"divisible":true,"fair_minting":false,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":true,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8ae613a01ed18b346f7f52fac8949d4d0cd32c5a5a39b1bb162d7def077d7637'); +INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','d77e4e4061bc250ce676cad1ba89586a8f9de8079eab1f419998717f8e7cdffb'); +INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'f26f1da057cb3e28c2590257094e6bcaf8a5de01d97c9a4f13353c677db8ee0b'); +INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134dacc503bf7814f9632f55a3acb7225d960280985078a7278332f26277f93f'); +INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'212762325df6d1d3d4cb71b3623ed1505879983d7d83fc55b956c9f7738e91f3'); +INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','d8052b147da603a857298b7d6b47c548aa554131dab7dc244fb792295b207c8e'); +INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','957b9966112007eb63549a762c0bf5876bdcb9335ee126fad415b6d8afb26b4c'); +INSERT INTO messages VALUES(1317,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','15be13c64653eb934d8cff43a9b03c1723c5566b43025c0109e63048afc5d62b'); +INSERT INTO messages VALUES(1318,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','f621d331a0dcd3034d1b1970ad81c8506f13fa3225cbe1c75975ad0c0232ba30'); +INSERT INTO messages VALUES(1319,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','b2117013e345a8ca76387ced8a000862fb30e101c0e921d051c5751c2d7521f7'); +INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a170114679dfc3eca504fc693de892e593b53673f319fbc509c9eaa27df2fb31'); +INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3e4f8153ac5cee861b39bceda2b3e30e26fd818a20d08aff126a669b4f82a125'); +INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535","messages_hash":"5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'44398f07803cf5c8bbd59137e78ea605848eae4bf9db4356d576aa8ddd1c1631'); +INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1717e252c4e0ae0f63516c7980a9bc122761e84b4d19a518d03a8d031233c6b'); +INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'bfca5bb1330c50e22562eb2e8ac8216c15f196e848c10d2ac10021b597e56116'); +INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3044ebaf54a6326c423a330fbe46f53121a89b4f2d46d5a26e907021359b01b3'); +INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','cdc62485e579c6d13dc3b9eb9d3c9f313b4d6366ac1c4601aa4dfe4c1c561480'); +INSERT INTO messages VALUES(1327,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3af5388dcc8723f94add83f0bf7d0078281a68ada5586c3f4916b74eed7e28e2'); +INSERT INTO messages VALUES(1328,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5f4c00fcc42daa377260dbeedbb292ad86ba923857740c2ff43774c4b41a836e'); +INSERT INTO messages VALUES(1329,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','7173216f194afa8889814cdd4ba67529a76fb9d00642c4ef96ef4023d72914d5'); +INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','da8697494088b4f1c3ce4a95866173aab6981c83d792a7681206aa3f74bb9ad5'); +INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','0a5be2a2331bfb0008a1ed52fef5eb60236c6720eca2eaf91a8e323d8b0b67e6'); +INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41","messages_hash":"b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'370af4a7cdb7d2e57eb794125afa08eb125b0e646ba7a37eb67574a1f4cab6a4'); +INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80c8e1bb286d53d08a26ea0fec92800f3c9e41150a737f30af9e59ea6968b9f0'); +INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'40f109b5a4abb9e31d2f0082692ed9403815f45b5d14d93f924683a81497cb55'); +INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','27b628d4a2c638e0fb1c24fe2d01ddc45b2e7be5d00525525e20131480073f02'); +INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','26cc8ec52979861196ce043e4c95b2cdb3f65a5800e40407c28a8bd530ad0d5b'); +INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e49b55bc8408995bdd65976ed0f35e6e9ea06a36f71a92982b000d987cc204f8'); +INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','dfca9a2c5ce6fb504766824e79788a141e893ee4bc4a261235782e1436abe3fb'); +INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','55066b8b200ca4f3f769783c130db29f9c1ec24798dd6925371682cc1eddcd25'); +INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91","messages_hash":"d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'da61e65c73bb53f0df000380ae74683457e46bf1c3ede603ee11307f5ef3257b'); +INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a46607ed609244c08418c7eaef58249015f8b5c07507bf2301ed1229dd27eed'); +INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'95ae2ba0a6f446296a561ffbf4e8f3d0d5c0185cff16458d3a9ce17fb2e49f3b'); +INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','b49f7ccc51ad61ee0c25d063336d1e2636822a1f45e8661fc66a2de983ab52c1'); +INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','49589e67a96ffb7c226798947aa141e252710bcb7ada1c7d5321db5d45139272'); +INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','898aca0ce974e21b33e47b0e8a70f5401d9cb0643b16bdbbb7f056c8f1191ffb'); +INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce","messages_hash":"b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'ced947da162e64803474541613fe18188c2f89f73293f02f9f66043eb899086b'); +INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90c7513cc1353612c2688014ac170b149b9ac7ee8b1931733d7dbc4b6b1fd5a9'); +INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0","messages_hash":"ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'41d930c97019fe00cb671ac618679b6c0793aefa20f817d7357c91e9b4b9dd52'); +INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00526a6416cf1e416137f4ce04def1025d0cf3023f5b1a30a5dfaa70ebc95ece'); +INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70","messages_hash":"4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'08cca90db509e3545850343122cd6f0a968377eb844fc21e449e663346e4f2d5'); +INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccc80cde2c6ce5acfdc4a30aa15c6fe6366961b2b26d38d1ee87d04b9570bad4'); +INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'7a3199f94eb3df9b3ed89b7a5f5de87365a9d4b8d7c938471fde7505f45cd7ee'); +INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3c1bed39eb008bf2b2626d2c7d4817ef6a79eade4baa1f6f7dee4d986335435e'); +INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'35db31b51a73627c48a11fa9e778aea18fb194b49c869bba26d272e1d1b74b9a'); +INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'13226f8cca228b1894117239b91e28341730d7e44cc072dd0747c5161762eb73'); +INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4","messages_hash":"1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'adff0dbdfad9f26587f9796b096c36ef120421f6c6ac697bcb6c85dafb37e1c9'); +INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd42e18a47568ef328092b6f0b9edfc93d560694cd56cc7f93d42079a8c577ff'); +INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f","messages_hash":"eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'73ab1cf7651d16d4871a2455474e3b73ad88b9fd7b992586d154f4277d3d20b4'); +INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0a15a475b92a2b31416e57c793b677351e7b76e4d912f478b41f0c7bbd9ab2'); +INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5","messages_hash":"9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'015e16bcab036bd7a8d4cf050603dd2be3325e3712dc494b95ad21ebd72c46a2'); +INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3643a42680c6806305eb7b44685a6f410997b7bd657d9db5d7047b22af266acd'); +INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a","messages_hash":"7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'656558841eedae1e0457397487c8f6754e95d377107c57609a9ef5e81462e9a2'); +INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0035b1f778a4aacaa0b491e08b71dc179fb0790819d15c1111e6b96ae386e2f6'); +INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32","messages_hash":"c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'de949371b8947022b5b0fdb28d65b0e44a7bec76db0eb758b12c69eed2aadbc8'); +INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14ba58e791d2ead803f0583026a4ae6d258e141b5dc701dfe4709502a6a04632'); +INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b","messages_hash":"5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'c60245be093865d95a02ba6c196b916a32c50711351fc9c1309b0d9a0bc6ccf2'); +INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'631e432c89f5aac6ce33e9df38fbea8d4a7ea5b91d62cd937f111955ba76b49b'); +INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369","messages_hash":"4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'a6b36a9612ce29aae2026fc6508d8a07233b334bd07b62b16fa5c4eac023ee7f'); +INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ecd32182c772bd62e8a97b5979df146a78dcf0d51d67aefdd01c228fd1ae953'); +INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225","messages_hash":"ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'4789577d16ff45616db17a2bbdac2492d833afeaa6f9e1ef9d586faa8937d6a3'); +INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8bdf4234327b9b798eab5d6f345bf30272c70622babae2655b2d94a0f6ccdd9'); +INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13","messages_hash":"71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'ff2dd1625d92d5ee1032c9c7c626f7b9362352280c5854f12ba3a2a41fc631bd'); +INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b757165cdbb5f6eba00097c4e1f0fa96faec5734da4fc64d9533cfe70420fc9'); +INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4","messages_hash":"bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'6e7c7fe808fae8cc3594cdda800da8a8583020f1c13fa0c80a9ed8fa595692fd'); +INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16234a308f94b8eb7bd603daf528733ec3f9740d87d739db62e909221c343e2e'); +INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0","messages_hash":"ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'ae6758534bace298dc45bde39417a331f498d179694322bc21206fbfdb3448a3'); +INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a6e3d545ffff83c6e3b3bb53665cfad94c2196b29f2b8924ff01b05c097719'); +INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14","messages_hash":"908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'7121a2466a07b5db523ed44dd138a947044e971fa27fa650928d2a46db034ea9'); +INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1949891cd22cb25a12101f549b3896695d547cd6fd51ff0393978f7a4de600bf'); +INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5","messages_hash":"8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'79b4473e384434e79bb85c8f4d6bb2181d9b4f2c7037a16cdca9e6c8d722f7b3'); +INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a81ca0c39a9e94a6fa9105600dd0f6f7b660c8f3d2a8c46f70a2f25ec20b69'); +INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453","messages_hash":"482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'c0ed454600a29ee59929955c88b8f5f9d8976d6a6eb289f7d34fd4af65793aeb'); +INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df3782186d95631204510b0ad9550b9eeefa3de537c7312777eaf5589ec25c48'); +INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c","messages_hash":"81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'c4bf82b5524d5c6f792186310f1c98510e5f437701190352cdba234c577ceb76'); +INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b81c68659a0e0ca6da284b55a21e7bb4844847b8cf8b67f6347e0abc238c4303'); +INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505","messages_hash":"1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'3f9d7b3e81331b10af06ba39ff688ddbcc6fb9a1278f106da99f9f6c0cdc65b9'); +INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5052184df5f346d2f4268aad151ca2941ee4f65951cf17147e0cf92187841962'); +INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd","messages_hash":"13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'f626f017328b0ef054774c88f6b48116141d39d3d86602a7d1118dbcea3643ae'); +INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a080d99b9e345091527194d022b742a2d165b3dd1bc3e6e24f3cab2a4f08f193'); +INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae","messages_hash":"04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'a55f1c589166d49e320b6b72bdf3c261044357d0df83c847913217b3125752ce'); +INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0387cc93ba9cb165ad97f92cf81b0515481e6b7bceb4c222e1a8ddb27763d600'); +INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e","messages_hash":"5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'409496e3df0b7d76f8a09ecd41a454d29d3daa3313859bef2e079d22039504fe'); +INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f97ffaecee0165be64f32940c0c95b2ffd3a1cbcb149136745d9643da54c1c6'); +INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8","messages_hash":"8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'acb7e9b0e09a6c214db673001dedcb87a1e95c2a6c6c0117b39d0494c7c562f6'); +INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa5d615a47cc866952f62b0124da64974c3b68c2dcafe6e89e6e9d61e80b43c'); +INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab","messages_hash":"a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'265f2c90f0d5c91ea72ce3cd56949fc882dce6133d8d90ef9d2d4748f63ef8ee'); +INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d944e2ece54058bccfe228773faa278e06be7d2d9447513e121fdbe0670712'); +INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae","messages_hash":"8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'92be58162c1858350835e59de76b94389837623cdc321073bdaaa52fe10eddf1'); +INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8708f2d8553a04a190f6bae3b4926bf146a6fe1beda98dada3cc9ed09b280a5'); +INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c","messages_hash":"e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'fd6b1ccc6813970c90c23183c855bc07fba9791fa1b4b42a3995fe6f57b571e0'); +INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8e1dbe6dbb2546feffa405c96f0191978772e3de8dbe8c931e15cec1e71a28'); +INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02","messages_hash":"944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'31b9edee24d74ba1b20809f1e5c0122e5a0d0fbd6e8555d2311ea5b6931c2bbe'); +INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfe1863976ece1b0772e9e707d2911d9a67264e762c0f1752e3366183cdc0de7'); +INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f","messages_hash":"53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'e6cdf724e258dd3b368a1abbdf37da6f72d6b72cd47409a5cfa33420def4f280'); +INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f64ef5388e0b7907402f72f03e6b1af142f39c1cea9893b4782749ef8b19582e'); +INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352","messages_hash":"a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'5d30fec452a8d7a6c30e0fabc9470468dbb30189b7dad9634d63206b3958d7fc'); +INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'747096fb7d4999ee38e88e41409843f6d4b855e63b8de79735348b0e658b6954'); +INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987","messages_hash":"34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'fc1f72859561256646d273e853eb2283fd9c6607dd4a06ec0cc6362779b0f5b7'); +INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9af1b411ef2cf6d6503a1221602ad10f90602205ae2937d726306a78e9bfd0bf'); +INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab","messages_hash":"5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'e57ccc2bf469bf83bb2ce90653872ae47fee64d6b53415c0ec5cd324c3d27e35'); +INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d64d79a4120dd5c0f161080349f23fb82b1be1af1f469cde3a5be464cf0cc9c2'); +INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23","messages_hash":"b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'8b6bd6b7c861c5f911d24c606d2acbd5d1b9e0a3ac400f66341fe764a33699e4'); +INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dad85d87af501e4687a82b6be71bd3dc117645e1c80831b83aab825bec3f4bd'); +INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765","messages_hash":"985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'0b11104844c833a2396b65e307f3336c7a5fc055ba028d0343320f6085c0ad7b'); +INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78a625a47c5055cc34bf1a3a3f01425fd0cb11d073267a36e6e0afbd665d6074'); +INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34","messages_hash":"3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'207fbbaf7731f7cd98aa695918c070ce1694209cf775ac297573deb8a9a2faab'); +INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0436a7e3cae912625a5f9d5cc5bffc187a8346cff0b1e68f68f26d6a23d05f50'); +INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8","messages_hash":"d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'68c4d579ea9160481649fcf13f958655f77c6f8c0c01c315166ff7ca368b067c'); +INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e6407cd5180990a594104265130f3e9d12cdb46eed20c0c0e88596a3200d4e6'); +INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc","messages_hash":"34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'7c5908836b9ddabba71d6cf48f683500e87ed3524526e9366c6108f800fb0def'); +INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5858fcad2aac5937fdb8d73a9c003e66f33f5997fbc9ad59cfc67b4138e4d295'); +INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700","messages_hash":"22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'57ffa0342378cd1eccf94e73c8798ac588954d31231b3cbf9228e76ecb280d29'); +INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce3a60eea074f9680e2d4093d263f28faab9cf8a4a4c3bae230e3f4f53640c81'); +INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28","messages_hash":"116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'aab08d582ed8b017916a635b651a9cf99676380c1e7c5a643be26f73df6e7c0a'); +INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9bd3767c3b150a8da56f16e386ff8212218d56bd6b6848555c59c8a3dfb9e4'); +INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc","messages_hash":"3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'6e06018eea45ede6cd1b7025291fa327b84b09080100ee5e2d51c32b17bda626'); +INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c11000838d0b85203b84b9761d01349008d508b68c3d3a3df915c2f2bd8dd2d'); +INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563","messages_hash":"7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'9b12098be4b66c02ce859247ce163fbf8d0862003b414f43a0b5f1b909231e10'); +INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b616840e5750db0dca6aa262b35561946ebfa681a9c10af4bd3902b333eb5ce5'); +INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8","messages_hash":"6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'880214785292c1f323da27a5b480ad7b64fb75cd5f94ff1638d329c1593d4ed3'); +INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aefc687ff40dba6ccf83d7d50ade6c04025daea6fa5c07d83518f2d047885c49'); +INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311","messages_hash":"8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'f60c822cbf705df2468a5800ffb13fcc7dfa64796307879890721b7d02efe285'); +INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64203412d84e4d618d11b6439e5c73f0dc27be53cf5a1dd51a073bad2bd99e1a'); +INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e","messages_hash":"2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'55c741e8c69638127bdae8f01a1d4b167f06e5529650725aa463fa9ab87431df'); +INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75f421d6e32031c24457d14119aad6327b29655e2f761691c86d3ab82aecc425'); +INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf","messages_hash":"25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'af6b7554fcf84b1c0c7027c543f71ec918b122b6da8955c5ab037fa18522c6c6'); +INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab354adc2f93fd174d1de93429a4f0cf7e44c3d0e38a2105e012afe1b89ec31'); +INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914","messages_hash":"bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'f7952321c89324e5848143dd7e53e5d999999be9674bf01901ebd5198896f4f6'); +INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eb73735ce1f88f73bf7ac96d0f2002c67d3c26682d790d73620eead6babbb3f'); +INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be","messages_hash":"1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'324be0a56762de0b16844dc3adfb370faf6b1dc0cf44659eb0ca77814d54b684'); +INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98c50a636fa029076a5dd306bb03e1051deb88f7b752fcc241ead7a009b6da9d'); +INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4","messages_hash":"5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'c57d569d19aad22ce1421255c54b56d81582a853d14009f69cd89f0f30790321'); +INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecf22fcf7a24eab487bbbee49316facddbdb1535279c29fd851ff2459f86aaff'); +INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f","messages_hash":"00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'690af0d9de5e2bcd3aabcc6dd7b4c05c5e5e3d3820881f8c758ec595115ef58a'); +INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af4b3a8a72648a521d8c61bdbbcb713fe728093479be08799aea01f87ae3a36'); +INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9","messages_hash":"a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'bb92564b5c77c30d2d597771a28344c093a69bbe961fd2baafbd3d569ac0b5be'); +INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9032ad61cffcc49f51b664ea8e1335876ebd15b73af513e376410126f9dafb6e'); +INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995","messages_hash":"202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'aa7afeb01329f012fe797ae137dc139b462ea852192579625bd108e0a168d887'); +INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'826013962ebd683d51454be21bab6828f8cbe4bbae344b2da614562f12de5791'); +INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8","messages_hash":"9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'08c8940fe4e0164c895d8a29f3c1247d38ebe48de5d9856788f61be8d988f8ef'); +INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6aae31f8eae1321e112afe1a09f7de7c6e6011e8fac1cdeeb1295af6b550319'); +INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d","messages_hash":"70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'18625cbd8486ba47d8c745d209ab4a570a6faaecb4710278929feb51530629e3'); +INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a78c46048151e6688133e6f17baca0085ee6dc9789d8a31dfc8dd06590cab940'); +INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7","messages_hash":"da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'3ae9271d663eb135e106779c365db6353df9014149c9992e2daa1c6756f84676'); +INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01158dcc7e8afce388415b570202973cf40f0af5a120a7b21bbfaed45e5c6ef'); +INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b","messages_hash":"fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'12020b58b5cf481508c1ee6137a5d640f18ad5957420bf7643fb468b98ea106a'); +INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d767b43743138b3fcd9eb175a7ef3a672058204654c142a358a711a0597a0878'); +INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e","messages_hash":"5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'f9b23bd613483673ed658c489fe3ad026c0f09e9c210a1400e4537c261d03fbd'); +INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7faeba2f59b83e773fca1f97b0813b03c0ea514b6feb4785e4e2adf427a8a0'); +INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595","messages_hash":"139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'c46446aa6b97f55211cb19f4a31fdce0de4dd6347e9bd82eafa6c2599c63bb7c'); +INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95d02f5c1701f251d3667f982f0955aaf39b6f3156364204d66daba5f7097dd9'); +INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e","messages_hash":"78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c09ace57b82de2deb342c6c7b456e1e432b02967294c6c3d649adabd968ea4f4'); +INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4678a42e979c5eb7553613dd48ac5793a030fd685d3a2d1c8f1519e24f1153'); +INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f","messages_hash":"aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'8cb12be266d993750615343a98af8a1baa1a5de22466eca5de86d21ec80b7030'); +INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ba1b28e6125cbe947cdbf25b55731d44d642d2b89ef487b852df3003b07b1d1'); +INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9","messages_hash":"e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'7ff05956741f352f02c264dcefd9f49374d1703cb2220125fd9290132d5c7f66'); +INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5da2460eaf85af6f5e44e13ccb1b006a31b116bb60e948825408fe3865c380fa'); +INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959","messages_hash":"fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'8de960a9eb374f17d6a0c1d5398588cd32ccfac5b051c2792695a5b03795f248'); +INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8860884f470c204c2fb0e717ac92d88dcfa1439f63dbfd04b0ee0a588ad4a9d1'); +INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd","messages_hash":"6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'53cc7af43ca7b16a6603c71b78cc3f7ab82685e49318e1b81ebdb87d736a1eb3'); +INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597b1d3b60b6dd643b0d51c0d1662bbc3ab1e994790f8b4f1ab390f863facea8'); +INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335","messages_hash":"cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'bda0c68a40b0de9cd7455ac537f5fcfbe9b6ce25f96a139c6314925e5d5b2c6f'); +INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'509b0662646181039783e6e7a460854121458d6c9b3ae880442cbf0e3947ca63'); +INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5","messages_hash":"d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'77189298cac81f7503dc5b796276a67feb6933e25216ade72ec89c5bd5986900'); +INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb5d05d52ebf5a5e55e6961fcf309255d298ccfc0f1474fed05b01cc95768520'); +INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0","messages_hash":"ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'6f6400d44daf0018805936ed798abff68386e2e1eb31b78f6f78231a102fb22f'); +INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da396731db0fef52304928d0caff44f1957674e6f58d96512e761c1e60c82507'); +INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c","messages_hash":"00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'85e0bae9cbe33ce693fad66993fe85554ce6e89cc1ce916182a87863f5c85327'); +INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'becb156d0f1e3a54fbbe7105173555879e592ad0361ddc52817670ebe22588ea'); +INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04","messages_hash":"ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'633f39c990949cb975721fbd22cace1c051eaa2d20dfe3018e800246cf17cc71'); +INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9657239b510d14e980c647c7c506d3ec8170cd604f700378b6e6050e392b963a'); +INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43","messages_hash":"f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'dccabb3321048e3b81328e83fac4808ff83cd8d48b5d3a89d5151e2ed642fc5f'); +INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e0f0eb2b48396f942933f61415d40925e7862fc4bfd93405553d94daa98557a'); +INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f","messages_hash":"4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'9d888b67325be4f5f49942e2542f8894b875a43a29b027b79e9fabede56f1b39'); +INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47fe8e26a67aab6be26d9f72925526daaabd0a4c01a2fa7f94414a025ce062de'); +INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e","messages_hash":"c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2c3ce2b9d08d2f86a1dd3166a0726374d01f39198bacf249a2ba307303ba0d36'); +INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e573c9d136639716489f7ab293aa55ea5c831b08ce9650d95d68c614fd9139'); +INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a","messages_hash":"b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'1536cd2bb34e266ba3b6e5a953e55b234545d9b7bb91d05e524731934ffa878e'); +INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d717ad1bdeb372d1dfe22201039a791de7208727625220feb0cf0355ea2a04d'); +INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21","messages_hash":"f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'ea0bac623e62cbf22b6c52a7b456efd0f18d1915f775b12802c014ea9a8092c4'); +INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2df65d9c0589d8ba1886fceb4efaaf72189fd61f3cd01a2ea8359737fccfcac4'); +INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab","messages_hash":"03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'05937308f934af2e0a3475c78ad5ded4e99d72b191c5822aaf0fe31d60d60a92'); +INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cde0b5706e8603c0e150ffea69e9bdcba5b2b720fa6cbaa0c08612497f126c81'); +INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376","messages_hash":"b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'d33400446177a9d199734f7c14f4acf86e31816778182f7da2ac53666ab8caff'); +INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b04d4aaf3d502f83b9414de6adca5dde8d990b5822377ac86c03006195e0fc63'); +INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7","messages_hash":"27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'9085a2f6f9c533918a87a6619c38eee884dec4bc9b5ec3a58cbf680fc59ea528'); +INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06dd3c65fecace80353bdbf2e1bd92889abf7e80133b6285c99fedfe7956b854'); +INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b","messages_hash":"cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'43579deccf1ffddf93072239a9e6ec5f5fe82ef788f4201fc08bb47f706c0aba'); +INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f04329835ed5f284e8c53eb9428f2012573c620cda25c6ba15102d99c8eecae'); +INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524","messages_hash":"84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'fad6a912797b4650eeecedf87eea0d4f49ec37aaf5ca071e783d88d7b0227c2f'); +INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5fe4ccaf943500caac624b7fb6c651ab50c7cd7c412daaefb61cd65dee802a5'); +INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12","messages_hash":"cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'54b290971eea5b05d3b0985adec90b777d3932dc44a648834d13fe43aff850f9'); +INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517bcf2ad0bbf64c92596858ccb7d5c4ffcea5513365f13a825fd8351d1e76d1'); +INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3","messages_hash":"4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'77c297567c4aa0432adbb22c652439e80076dc2a57a4cfd75e5ea89902986979'); +INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e44ac5a2fe122e474125f3ece46309d65bd59bd3a4c1bcef52bceb5b00335cb1'); +INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2f3e5dc5199243ca9a8298e25491966e301ff9ae2bdaa2bb1f0d4c842a20d5e4'); +INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'387736348976b67e9cdac5c3b49862e1d9f6fa8b093694b504af55d2c7eca938'); +INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'40246bb2268e5166bc0878b0c18697ba00021a5992ab91dcec523b105455d041'); +INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e","messages_hash":"b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'41737c0a8408f3a97d298a97be8cfcd41202b63aaa8f588fc07275616b1a1faa'); +INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd18a33ad4b03fa6d2197810ba62a1025e13396dbcb164f0a87fdbe99518c80d'); +INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d","messages_hash":"d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'c587af90c64684cb27673dfb100bf094a293ee00044ee89793c9c0b90001b8c0'); +INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'613043a7fed9064dd53ff61a2c60f8d2a3fcb87c4240ac768b5653282f36cbd8'); +INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7","messages_hash":"9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'de3f1acee0f75e9928cdfdf98109e4932f044c6fd0336d47469184f55f77bd18'); +INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af2c2250b9c952d6885edbbac86c6e67dcd1cf0336bf379b4140d623706576df'); +INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a","messages_hash":"be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'5a5761a971097817fa4fc90924a17343102c4450fa3296904e079300e40fcf7e'); +INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22aa929c2ed55161203dd9c4c5680fa7e3e8c33b87eaf8d1bbeef70e945d1e9c'); +INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34","messages_hash":"1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'e5a1b128b3651793685d1c54310eff64dcd26328c5d893ac36e988b085ea866e'); +INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dd565c78bf8458f95d97ab99043f8a98c94823a6796b06f2e8ca1b522aa4519'); +INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d","messages_hash":"72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'204ef167a933eb64c131e24aea8637c9582709a973add95cd140add82e844305'); +INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbd4e351cbc1a498f2371b930004795e12546c33a0c090eeb6ebe6295c064aa5'); +INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841","messages_hash":"332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'49f0b99f8b4e4b4d8348cb76a3babbdb0ad4654f3a3356b3e86a15e25a17a4cd'); +INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9634f4f755cf9293feaf01262f32ca53570e4c3d02a4ff6289b77e3c373eb50c'); +INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4","messages_hash":"084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'5def3988c11e5841b59aa1551a745f035e47313af2b6b92c281a11ab435ed4e4'); +INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'184dce262ea76e559528e70c41d8d97f99dfea63f23367fb9239964e710239d8'); +INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec","messages_hash":"d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'a30b925e4652a811758a566e086f556af09d0a224cfa4a581bf4699b6d8e8689'); +INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'405fa81e50f086b531b69ffd31f604f81c3f8e9f58238ce987505ad253e4b05d'); +INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8","messages_hash":"48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'ca5658aaf0acf069e2a6af4f0cfbd19a12a9519f809808d98968188f4730c47e'); +INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e1667eee13667ac7e82694cdf36970ef6ecd213ef9fbe27b69c4854a9e410d'); +INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222","messages_hash":"b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'706b846d485c3a2923261f4521f777ab7bf58352206ba5cd54aca2c83ec55969'); +INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aac85213b57d04b2da7a31246d81a871b66834a2f7ebb09e856113e637bf93c7'); +INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c","messages_hash":"c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'22361ff3ef3f4c7faa150e1220ccfebac245bed479b572bb97bfa29ef46dc0ae'); +INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'215edb5cf42fe7cc11bfb57064f92186566f0481756eb42600f23fe52c5ce7be'); +INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab","messages_hash":"0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'7cb5ccf924c7ec6739f8e700b4dfd7911492db3aef2d9664171eddf2005fe09b'); +INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b29bd905cff6298c52f64de24e26adc8e5178c54ce5128361291a0b11454997'); +INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab","messages_hash":"71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'ffb27b2eefc1f85ae234a029fbd9450b79c09ec1951e37abfc0c2b3e28222896'); +INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f983fc8ce7e2ed393a6d140c74c903dfa7323b625fcb6f7d0d872d2ad8cb3820'); +INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8","messages_hash":"3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'c357d6305dfbc8dff126880b2ed394ba45bb1bddaada208f9ef84d71286797cf'); +INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fc17a93669999193beef72a8f3e9777c917703311ce353a7eca3a3925d77f51'); +INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae","messages_hash":"09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'4ebe7346bed736aa2cd8e0d4edb1e6b1ca0a21444f4e83af62dd49814e854af4'); +INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef1d2d4820a402534fcf59a7a1842f8e4525065fa79a19c1e672a143536390c'); +INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3","messages_hash":"d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'b8cb9b4450a5847e4fc8c20c91319200dc345f134c52b66ee4e755050fcc31fc'); +INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d41a18f709317a314d73afad424cba8f8c5c37c47549041293677ad0fe3ada6'); +INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c","messages_hash":"f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'ef37b7b2d9449ef7898f05f039cd1467746e4fb7b55e4c79a2d8c653a48f7a0b'); +INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0129fe0f4a4d6442aadf6a8c46262253d262239f299752ba67b0371ab880f8ce'); +INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7","messages_hash":"d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'14759dd69df8d6070c897b93dd14298627401dff90fed6db119818eacd1b9da1'); +INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9f9a9c62f2d2e5aaa497419ed8e78ba7dd023df1871d919ade00bbc4694f9c'); +INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60","messages_hash":"5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5a9382ee7a0d60ca604abcab1bb06ab7c9039c75ec4f8beab5c0c2bff41831cd'); +INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5c0432816bd0b755e18030b773e6a3a0c305ae2bc8d3adc6b2f101061b590fc'); +INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28","messages_hash":"3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'694bf69012c42d6caf72d12c4b151a3f4bcce5a5631a9814b9b93d353695d2ca'); +INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51fbeb50f80600913d0125eb670c725ffbccf972b01f38e7f88376de7fe10987'); +INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9","messages_hash":"cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'111cb18282d81246d634b89fe72536e4108b8a5bc29195e4e5d483286c036164'); +INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583bf73ffb2783ff2b1f7b3a58ce9566e7bbe7cc1522c33f056787420e48d628'); +INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396","messages_hash":"b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'1092c9dce156f69565d41624c6602b39971996b46f07802236591b1863960cbd'); +INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4045bb786b661ee80b56c3e5080973aa92ecf6660bba222d4d07b6df6b929a87'); +INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562","messages_hash":"85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'3be5dd55a0df300b0864ab090694d6c59a06f13e90d02c0c1cebda16458771ec'); +INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b131d206d49d89e8b886c19ae7d18ee20b5ed4be64dd167a24e131dcb8138eee'); +INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d","messages_hash":"08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'ce9e54857a0c5f046aad095ddc57aab1aaa1a8113d9e03ca6d647564a258bb4b'); +INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'188f30e75e2bda92516514e5b17e4e6210052fac83334d235cf61386bcebcb27'); +INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426","messages_hash":"40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'76e4a447ca9d2b74aa7f7188a73101d129deb1becd4050f51681537240bf7951'); +INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36e39754890667784911ec6e2ca362a4a73a98de205c6bc8d5ece6bf81bfe51e'); +INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c","messages_hash":"eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'5ea6f896ea8be94e4cbda1c9b4ff1518e93279d73eceb6ad12eb5ea56f31d55a'); +INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd4f6549093a5f1642388bbbe5d4f3e94afd2f8c8e3ab2794297478b1b856a1f'); +INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346","messages_hash":"b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'b788fa4ff3bde4114cd889c20ad8d24342b49903cf708fb8670f11c048687745'); +INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d2ddeed60607602ed74ef4d4ad2c59bc434fa148409f1f5472f4a951e4c6424'); +INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335","messages_hash":"e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'d300692dc3a55bae3e924a7b98a3cc6240eedb919087a85a7cdc6eb07c3c1fe4'); +INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca64c5271630a33fc826783947d372ceef8a3194e9e422316828dff27bb716e5'); +INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc","messages_hash":"b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'108a9695eb0b45e0baae7825d04f000fa85416c9cee42e185ec902438cb379f1'); +INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'017ddb54b0d14cf2025a62cf526bdfc1d222011952e1854751486337902bde96'); +INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c","messages_hash":"b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'996b8a660604e3f9b6151be89df66f9fc2c56f8ec249b9c1721e6264f29b52bd'); +INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6001cd3adccd1a1ac86d506e0f4de9648b40a715e2d4f686fdbeaaa2fa23ad7'); +INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83","messages_hash":"5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'b412bbd2ef3552a4c181d97fe545464b70e19950f3e96a585ac7101636b63896'); +INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a75c0899728f1f6153a17c8fa49de46bf134e2a779d5b0dcef37be2fe2e89c1'); +INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157","messages_hash":"d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'f1e66b185ce188620965cba4274541c623258117d043c77abf40310aba4e14cc'); +INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'662b66b1981ecbfa2aad52a2ae77779a8b150f46d4e1477afc674113d0bb556e'); +INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1","messages_hash":"0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'b3198a85a379379e83a9ccf5b32af301b092d028effbb96f5d8d27cb4d5bf29b'); +INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b975a1115afbafe4ae082f622865551c11406da5760f605eb5a08f5e563ac3'); +INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1","messages_hash":"473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'de2bac8c44ff6df19691c481bd7ac38dc731e24e2d6154f01ab2b6d2883eca78'); +INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe70ffa9f5f89f73ed41dfa1470dbfe3d1b4caef1c963b241345441e052f178b'); +INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b","messages_hash":"d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'c7ef8c9d483d44ac997a7bb13817a93e0d92689209208f46e1d3536a522064d6'); +INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2abd796c87f86bdfb6e103d23ec1389113d47ab0cc336664386cf775181c42d0'); +INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88","messages_hash":"a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'f9117614165c9050eb4f229989d5b428b470b1ac9f117ace9605f265439ae6a4'); +INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2f85ff6ceef93b8e31cb2c7c6943877b9b31b4dd77d8d7ca1f4fe9244862b2'); +INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8","messages_hash":"291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'0d7ab385d790812f2e1e32ddcc774fae5510c44af08180f11ab4686c29adc750'); +INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b62f127f05d29e0fbbd897a156d3ebb6e2ebad05e7e235f16961957d0d5711fe'); +INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1","messages_hash":"01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0ec90282ffd6131cb9e63c0d0776f78f7a19ca16a9526225914abd6e6cdb596b'); +INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'372a60762834e9bee181f4034b78d20541e315ea5bad5846f31d7a8d714bf710'); +INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521","messages_hash":"1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'445697f033a16c5b6bfc82cb9adc8e0ed88493f25f7d852d016fddd8ffb6961d'); +INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09c0247e64acdf1f0ee2c85f2ac93e6a5161fcd6c76d8f420aaf19014a676a5d'); +INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade","messages_hash":"93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'84b2474da6d35955b5186fab134df170971259ead384062f06b1e1ef8ab93071'); +INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7b332d949bcfdc5dc0cfdaa1b55f6c279add4565cf82cbb9fb37fde0d63a1c0'); +INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3","messages_hash":"dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'202e2477c97756dcc7883361540fca389f720d9c1a1e57362359bf9f6df8e54a'); +INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2698cca55b9cc31f590f98d4ac4a6af0c41e459fb8c961151a3a889757db4d'); +INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b","messages_hash":"8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'a7c7af1ca268ed5b092d518840d6cc28e8126fa7f2d1c92bd3d17673cf3b511a'); +INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bef2b6887c13b9ade440560aa5d917fc1f5dbd11abc03e924b5a284e3677fa2'); +INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7","messages_hash":"b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'d8d7e3a46a6cb37e383fe76b725dcb625391d04f7df5e84f12e5be0d676b23bf'); +INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62b736719bc303c32eb49e4d58908f9db5fcf89f6e43332ee8e1b146c998d1c6'); +INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a","messages_hash":"ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'9ead95d0db457a3494f2bac0135c6b5bf45b5df4aea2f998799c6d0c000eb76b'); +INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64287e18c5eb8e0b15e9aecdd488f8f218439219edea0fbeeba10fe00968d379'); +INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c","messages_hash":"e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'683d2acec515c1903d7929e24110574ceca1ac922a42a25d6c577b7a5f9c9cbb'); +INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aab3717052ff4dac3776794bf94ac3cbb07104baaac2c031288be5d8e8b7485'); +INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197","messages_hash":"ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'167d8cdd1bd57396fa2edea160219ff8299619ff3ac05f344b32fd70f16c338f'); +INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad615f4c284e4790e006e81970704ec5f659554ae5ba5ab484f68f96e9bc1031'); +INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e","messages_hash":"db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'d9de3b021de4237bbcbecf37ec405e87fef1b811e10f00851b0c3557b1ab8394'); +INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa3e7600cc05d70da40352babbe30fd49fed84e7de024f86a4ccc242fbacf84'); +INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988","messages_hash":"71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'16a990d1a234278eefc99eea448e41907bf2bf767d35fb15b17c7adb75d2a6ff'); +INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9b2eb0f2fe907c280b3cb93a781fcf3433ab9c5fc890edb3a3cc18146695bb'); +INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9","messages_hash":"2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'10adfbaf602ceffd1fd14e915fe8a9f78a3e1bd5a4f5854434de6cb631fb328a'); +INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fd24bc738ce8665657a69647aea63c39bd9aa7d0dc1020722507f5e0e054f30'); +INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9","messages_hash":"57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'c5a84ffdb89731f4197c1689f63d93289f0cb97129c16a17ff0f700189df4144'); +INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a29c0b685272d7a2aff1b643fa69e8427d713130cfc61da60ea35699b8a8cf39'); +INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad","messages_hash":"fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'626b43f67e44360bfb073b91280e80af68ee5c519033d3914cd591b115af7728'); +INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b183a0bb9565ed680a6d746251e06811e53da1552ab7cc6caecfd39104891c37'); +INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b","messages_hash":"24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'e483af697633ee460462b9e42bb6c96ee90a78486e8f5b6965a436f55dc2c772'); +INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecd4dcab71260ca92d524f20906c062f3e9135c12a0489808548d4619c27f497'); +INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37","messages_hash":"061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'1795c0bdec11af30a3792883c6d3be0d374435aff3f3e1e541b8a7f9e628b03c'); +INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8de49e297899ce0e3366e35e881ca85ffa0f6487e3dd75e7d21801e5d4c7c45c'); +INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a","messages_hash":"90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'1f1032fb9ee179093ee9ca0c6d887729e1cd2416f704b66adf900c2b67cb67f2'); +INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e970e4ba33179c01410f01f0ab8320043ee66ff360319237efbdcf6376f461d0'); +INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a","messages_hash":"e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'5a575353b57d7daff09963f5b82002212afc32aed0ce15de493931057f347e97'); +INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'817b0ebb6c87eef9d1ad61fa95c75b70a591146186386fe511c5a3fe05321cb8'); +INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200","messages_hash":"429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'cd4cce3d75c635d6a02ae384a2364db73ebd35403747b88d6c18aba557d5dcb8'); +INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'222d301bc40557334a8cfe805be2a302807a02b672b3e08096cfaea229f13e3b'); +INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0","messages_hash":"41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'a4b51595f94c9b888706ce425113ac376106bc8741b067065abdd7d0ea461959'); +INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7bcdf8b57283ecd71e053341e0b7c7fc845adaadc7cf9bedb219316e76bc76b'); +INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d","messages_hash":"70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'a508cc42c95ee5b2efd5aa9ad254d4e7f2b62fb47f8c89f5a82df017ca62ff3b'); +INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e9db64c6e3d2396a71b5f07f7044332159315a259d8cc8799d4c381a3546ea'); +INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd","messages_hash":"e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'c4ac4123fc0bd2afd6613579154322adb08b951d714f17e8747e1e2e57a1cc4f'); +INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0c426b3f37d127aebd5a7e498b48ed975d783a1137c9983a1bd58332916064a'); +INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a","messages_hash":"a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'c86268cb016c7664a9cc2875a26db52bd5874a7cce5310b6970ff501dfbbdbdd'); +INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f332136c25af9b522ad40d9b96c3826382f37538656d9910ff22e4630dc190b6'); +INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac","messages_hash":"b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'36dbf2ebc40df8cad6101a5340b446eafea1a7dc39e4afc0a91e887a93aac800'); +INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef982cce4008e345d5acff80ddc0bd957d942145dd8bb455367356f7c7ea7134'); +INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038","messages_hash":"5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'5aff51c37d52ab5aa17ab9c9734f901d2ac8bf89188c74cf7d052665cb78dd62'); +INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0370c0364fd34f4e24eee38a034a3375a5f80467effecf36993113d88d153f33'); +INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017","messages_hash":"b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'cd856a886d1f632d3e66eac07b01bbec9445ce395d3cacb895d436634e78c71c'); +INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d420e18416663997825a173c8dd1cbe9cb8f015e3b1a004cbc7718f3e093ee10'); +INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194","messages_hash":"5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'e53586f229fb0cf1bb3ced1158705f1da5b8bb1ed457611a951bf463d297240b'); +INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'950de20726ec5a376f0f14b1b0fab77c6ef916b4e2e815aaeb69ab014bb89186'); +INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577","messages_hash":"8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'d88631ed054c5b06c69ec9a97a7f4e187c3468de557208244576980d21fe3a6d'); +INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5692c02681c7afcf08558728fe9e531953fe561f7ad2801546f805e2ebc33026'); +INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691","messages_hash":"5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'b28e86ec6d514252ca17869a171f866feac183cbeda1cb3b5eaa9f7efd273320'); +INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952c7c9872ebb4f31704d486a7c3b4b1bfa17d7bff0f6611fd947a2740718ef4'); +INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff","messages_hash":"3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'4c94c417beeb79921cab0471420d6a5bfaf15012add29f329afd4ab98124a998'); +INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c64651b0f2de2ca41596e9d3aa98542793e1b80b7fa6d5339ebdcdd6618f3fab'); +INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a","messages_hash":"67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e16be21b8acfebe9cfa9c537210b7dcbda8f8fb8272fa95e3c5eaec00280ac0f'); +INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1be15a98fba27c254d024934d6f0512e69fcfebdf501fb1d1cf16990dff4343'); +INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7","messages_hash":"67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'88e4621228890bb2294d50a20cd68261a4a4c198700ad4017c1d700aa86f1b0e'); +INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e276160a28b350428b1cb01e16b1e36dc430c6a157b01ba9bf5abc9f2279fb1'); +INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f","messages_hash":"8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'355a2cb850ee7d921a132d49af5ae65aafd5a045bbb8e79bfa97a47fd2f8bfde'); +INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06259f6aa2c8af767448068cdeb5da2608843ba21b945fd53eb9706c0a363d66'); +INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654","messages_hash":"0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'3e6c300f7160b62b6707482279eb510334b43cf4d0b6eab1fa2d2c8673f13789'); +INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'478ed82b37cb4f76d5b1a2bcab480a23de7bc1929a055deb151ebc6d0ac68d79'); +INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e","messages_hash":"91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b61e771e9c9108e9dd55752d8a7a3d4a0f5c0b3a3d6e95e7aac64f287093cb5c'); +INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea70bf0cea18c3597f41c408b77413aa66d8167bb639d699b86fa246d78b7bf8'); +INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68","messages_hash":"e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'1e264eddc6408294262e4b14802d31f232e00fcbc305b423a939beb2e1f589f4'); +INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'132a946aa3e8485cef7173a52c1240a3b0b4a2ec1338408fbed0863baffe02b9'); +INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe","messages_hash":"0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'7e0d13d5c5a2b5ea70894fce721f09fc6603d5ab9d91b809106b3a45fc1ff368'); +INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3353b048b62c95de22255293aa23d28ae60da4af72ead47c6946ab7b5461df3f'); +INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c","messages_hash":"b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'0a6d68106b95fe75413aa77ebe58dd97f0f0d87529faeffb3577cf1ac040390e'); +INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6f8c683befc8bb778a6ff70a1c6c4d7cd7ae8391b33f616080f4f3da24edc19'); +INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b","messages_hash":"432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'9e48b1a4d509d61c2e86a45fa1d3ca78c24522355ccdaad4cf8897417a944e13'); +INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'118c84f148d4e4fed2ae954cded5ba8594d4f2bb7692c2601bf1b2d52af136ad'); +INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a","messages_hash":"cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'57def8e387221b04d62d9bb9c4abee4b79db74eef35f59ed08317660f52c1003'); +INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e629b43abb61eb58c991d7b2b45ab91f62adfa4442fd39ef82cdbcf5cf32498'); +INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc","messages_hash":"4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'931d0e816cc4231043126395778ddad88bafefbe973f73519f0259a6403b3717'); +INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb83d95915a55325d7e1a8bbeb97f8ee073bf121fae59ccf20590007dbedcbd4'); +INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a","messages_hash":"2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d3f9749a6053f6e0520d83083ea520217764e791d7b33ce4c250e0578cc4858c'); +INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1df8f1e40369702eabbec71df6d4a3bc33edb9f36d90992de49498bad367b7ea'); +INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b","messages_hash":"e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'ea681c0dcf3c2e3c3e7670f40b9f8de4049d1b5618be78204d8c60bfe8e1ac42'); +INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'519d175aa9edd6cbbf9ab850faedd26ee66a5bed08c94f36f7c1247cbe120025'); +INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca","messages_hash":"7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'89ac515e1f974c4c3f39deb4b1d097789349d9bdf9671b08c421dc67f74fd7be'); +INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e63279103557116d8387c26121fb1fcb198529170d02c9bb9fce3380b9899f5'); +INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9","messages_hash":"a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'666eb9f873cda9efc8e8732a152c0009772e240bc6ca3236dd4441a1812d1d12'); +INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1f507874b2c61283e40da56846fc83355befc7c59b97eab1a2e3e8f8fdf689c'); +INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d","messages_hash":"b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'e9b9bb3782009d86025d4dff05dcae4a02a452abed7d9342de407c5091021b47'); +INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1427316f764e88a7a089addef9e223be1d7f4833305c46d329884c61d2866df'); +INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375","messages_hash":"2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'e4760c483088c656ddf264d6cc9fb6fddb83069d6c2912ebfdb9a48864cc009b'); +INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e4f51f351c4582cb03b661d8266c766047d25735b8db2cc57d466a429b5786c'); +INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68","messages_hash":"032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ddd09a5440c181708dbfa5ab4e28a6e19436161b32be0579ada2d02c8ddc7daf'); +INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9b46d9ed6dfa4fca112ff87dfe924536171c13d2f4b6bc927e74fee25eef594'); +INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384","messages_hash":"4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'59464bc118cf34aee73d6005d6bd1cc644bbaa5e8e5447a5ed8b837faf74b382'); +INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1ba4937818e8cb5ad0c02c86b3b5b498c73e19d4f53cc3b4f348531e773445b'); +INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a","messages_hash":"9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'d58f9ea2899da88eb9eab157b926b54bb7babb86ecb025f79130c7207dc798d4'); +INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fed2fe1008c7a34ba733980db7c807c45b3fcf8432011bca59a5111eae41a47'); +INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea","messages_hash":"5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'8c39418b083f3582d3cd13c5b464f9adfaf9c0930b3bad2a13480c1a8b4ad439'); +INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24c0780a45a570b9fad90df58b6137e2126a2a76f6a2f55008ad05438df2eaac'); +INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087","messages_hash":"8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'0a4078b38c09dd6dd041b5fe6e0b77c92b0a92de286f60c229182869b7aa1cd1'); +INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37ce400d14f4ef3d2c1594b349c2c71ffc8cf74b7d8cf5bfe52cff492c366494'); +INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3","messages_hash":"71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'e52358cad6ec248b95888485e405b020b76d7127f3fbe42cc738253b31604fb1'); +INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cc10c336d5acc6383459c2822dc7e0bc60994c1c17cec8bf63722f879d341b'); +INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737","messages_hash":"de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'375746c4494cb7c73a543643b51e84e688b4db404fab382e59cc5f7dd9ca5f08'); +INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0e536402e71670037a0c2f7693ac9f6b524b81c336e41e3f7ae1c3189a1e3f1'); +INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962","messages_hash":"1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'8cf36dead5a061b843d47227ef1b1d77d8222a8fa61eb78cbf47f726974d341b'); +INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3299a61cc0339d7cf533a2c7b92accf3aa468668605414862b01c5d86037a68b'); +INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875","messages_hash":"2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'f4993217aa15337ca41ad884d99ed5dd4ccc62410033a3d3c54b89d61625a66c'); +INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bd96b166808697265c89975ce33e6cf5aed45fdcd5dd51ebea226e3ec7ea8eb'); +INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9","messages_hash":"04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'c71919001acb896be8c0ef2d10779596f0f503451e9012d1957b812b20872575'); +INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8b3f2950d68a363b4f251a9ef08338c4bef871920fc772b67607385f8b58605'); +INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555","messages_hash":"0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'6dcf595297f7543fdf279c68a8f6158209bda76d0cab56d337175747b683e3dd'); +INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11978d808f0f86f284a7b9ef5f5a31372cef8d745bff8e9bdefdafde4937f98d'); +INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c","messages_hash":"e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'ae35f3fc6526c8b9201e02e9e42c5f07bcd9c559b1aee28d53b02ce59d892198'); +INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'570599e8cff5be22d74ae80dc4a894ce65266922829ec2548835b56450b17611'); +INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f","messages_hash":"f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'884ee050893f771e2ab8171ed1b9bef10071ff02a21859ddc5f9116a72f3d4f8'); +INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7f140d8bcce82d2d3791779c51b81dd0cb4da953c39d9d7d9d37ada50e6889'); +INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce","messages_hash":"775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'af5438893a884a96e0dcaa7cd28e21d9d318feef14c4cd5a19098c7c6691b76c'); +INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e394cfcf8041304ffdabe732ccacf31d0a6ab4a2ce0cf2d47fa9fd7f50b7f3ff'); +INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592","messages_hash":"e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'aff87327c2dc50f2e068eb40a85aa0c3b0445f5df42fa7d4ff48540697799743'); +INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bfc25d2069cc3df6cafd6821e9efc31ccad439b4f425e7159ef56b86026d5b0'); +INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472","messages_hash":"7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'5c36d51d4432badebb205194e03930633327454148be26a3c4cf2180607c00d4'); +INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa323b026571a02673f80fc6f329c677ec886accfb7402e6df7791605407963'); +INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34","messages_hash":"31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'e409cdc8d45913b73999413860ec212f6b88c593c9bff35e72b6373c610a1fa7'); +INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5f4b3ad489407fc5b270518cb57e450c306a430ed9cb883896ce5590325a38e'); +INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f","messages_hash":"891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'08f6cbf421e45c17988ddf1ae48edbfed00b6fd98b3ae2c397efd2eb4442fbf7'); +INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ca74cb9554f057b45021ec12415e58999846f4bf094afbd240d15fec0e7467d'); +INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a","messages_hash":"c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'ad341e6285b38e423cab2a587f9f18113ab1b5b919b31de13d40f026c0f99d55'); +INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e946e5b1414b12dbc980742e823cfbcab61b835731a486e3039bdfaf5941ad32'); +INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3","messages_hash":"d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'b423d04bdd25d14bc80608d0a4bed5607b1ff4efd93ca91d4983636f3f559924'); +INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a6fc423885d3ad5182e23e1499cc5b86a3d5e83f1081802d6519f7ee79e123a'); +INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa","messages_hash":"a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'af041db9cf85811b54e98c267e64c2c7695efeada4e676ea83c4889fa9353106'); +INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'485ee641d2e380495869a947d2cc33b66cf86eb59ee1c09a012847390dbf7fcd'); +INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8","messages_hash":"e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'35ebc398c3e129c1995594f28d38d913781552ff95f56d668e94caedc38ea73b'); +INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1669673a5b93c6fce85bef41cc8796ac9b7a3e37be8f2737f37e074c2759d4b2'); +INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516","messages_hash":"e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'84c9c3c820ead2dc63ad1ac79d92d81265685bf973d8111e59519fcfab479572'); +INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8680a4b6afce64bb8f69ac7b3c678146877a5bd5faf7129baa57b4a6b17586e'); +INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52","messages_hash":"7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb2ed6c24c7e8cabac83108f016701f63e85142c36bb642e13413bd2b0bdd8e'); +INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7c9ac7adb6b3f8e967861500de50b20676bf1f6367ce2e833f416b4afb147b9'); +INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737","messages_hash":"25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'d37bc5033de69b81ec98e3efce5efba37e1b09aa0b4b000741b468799399b08e'); +INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1437345d30a80c61da2eaacc3242745332f339753bbbf6bbeb39e4cda7218726'); +INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96","messages_hash":"18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'2eeb7269ba3b87d9bebf0436ccd58356ce90df5e66d9fa370566594ab79f80a7'); +INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b2d26055f70e0891b490c50fe3b225041370f1d48ac9a152216e5aabb96d4'); +INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54","messages_hash":"9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'ad8348090c4977771cabf0be6aea102878b385644d6b22028bb5432929d5218d'); +INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29744c82886875ebc4d20604e84e1755750d2fc09c4b804f1d969e3a5eeaf8bd'); +INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753","messages_hash":"c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'572614f4437802b5578d52897e07b143ec4f83736db82432482f3fa264532612'); +INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a76ec172abfe7896edfaa6fa36361cc318f693c65a08b2df197151297b5128f'); +INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5","messages_hash":"923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'46497010293ec1f195b396441c3c70fba3c707f12970c77d35f8db09f3cc1990'); +INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b3faafcee1252e532da4f2a65605cdac0c34f24c4b0ec1413903c15e7373990'); +INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638","messages_hash":"a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'b3d5a94902e1186fc12278dbdd1f932c1e4e327e32d8c93264523ad31e34c535'); +INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31742b197f42de272421c351e356d94f6699bb0d5bad00e9142c9fc2df3e72cf'); +INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2","messages_hash":"70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'d44081ef15bc4521ac345a6b37bba2287c806862180e65fa3096c09019ae6b77'); +INSERT INTO messages VALUES(1740,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65810325d87cbdf9a50f55506865a3b940312c639cd8b15ab0072019799f4e85'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3681,7 +3682,7 @@ INSERT INTO issuances VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e554 INSERT INTO issuances VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',0,310503,'QAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,310504,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',0,310505,'A160361285792733729',10,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); -INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); +INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,1,'valid','',0,1,0); INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances @@ -4242,6 +4243,7 @@ INSERT INTO fairminters VALUES('13e642d78db80af715cdce12a9fca81965752bbfb5954934 INSERT INTO fairminters VALUES('9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN','','','',10,1,30,0,10,20,0,0,0,0,0,0,0,1,1,'open'); INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','QAIDFAIRMIN','','','',10,1,50,0,0,20,0,0,50000000,20,400000,0,0,1,0,'open'); INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); +INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'closed'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters BEFORE UPDATE ON fairminters BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index e59a39c91b..41a3d19a25 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -525,204 +525,204 @@ INSERT INTO blocks VALUES(310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db','a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2','05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b',NULL,NULL,1); INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); -INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4',NULL,NULL,0); +INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b',NULL,NULL,1); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618',NULL,NULL,0); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) ; @@ -948,6 +948,15 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -957,15 +966,6 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1083,6 +1083,15 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -1092,15 +1101,6 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1182,16 +1182,16 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits @@ -1273,14 +1273,14 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); +INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); -INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits BEFORE UPDATE ON debits BEGIN @@ -2623,445 +2623,446 @@ INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed f INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','879a538850b63765067c9a669d9969e56948475b2ea22c9bf460f1a95686d657'); INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a62af59f153a6916e824008d44294c34a5f291c8fb43677f44a57f08bcb26251'); INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','c62f92725bd1efed025e0c602c42b7cffb1e71b7d6f1d506cf90c71bbccd255a'); -INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','ff9d69ae83e1bc8385ce7537c22debd85cc78cba7e314400a4369880a49d8aaa'); -INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8f29ca8cbce3da477043fd0161ef4c7e7b63753df6f002767ffa213fb77afa7d'); -INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'1522a2da49e43ac25a10a3bb66f44a5196fac77ce3bd73dafe6e101a971cb016'); -INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eb94c1de6d6c8131c8c33b67733a4a0daacf07e675197efee5830ab514f85e6'); -INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'8bbd1928d51e5c7f0e731c4966d9d10d53396ac913438d598765e0c44289b45a'); -INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3ab7ac624901f0461d6867b48bccc4297f1bc0796420658aa5139e233fe60769'); -INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','6ea67f84716a577bec2bf65a5d55d1d56e63cd8d5fc07fb32227c5c0731f6a01'); -INSERT INTO messages VALUES(1307,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','aa685b25d3374e6a748cdf2a9e11c5ca01b45e3f25c2093dc52a950a22f8b5a1'); -INSERT INTO messages VALUES(1308,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','7ab750f5ee9efbd7be420d7def56619b6f57aede5989422c5796d2a58340b26a'); -INSERT INTO messages VALUES(1309,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','89f0c2b7fb8054fcd974ddc4ebdb8c875387c53d38f7e8278c59179640e5bff5'); -INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','e84459467ab46c0b763b2ae64e4bf7d64a64cbf3027cc08b853c281340078a8e'); -INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','878126f72f816784b56c45aac2521bf26566fd27b2dffd1d4da5db9e3f0cf2e5'); -INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"9c9ff1346e29e9293bad5eba31a0084a62c4445678135648d2b36395edc0559a","messages_hash":"6d8784da5d6c4b7742682ff49a75e81b6a957ed228ec190dd0e3ebcb1f7ba017","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'9196aa1fe27fb5931fd856afc8cf9072af5a599f828986f29bb88ce041a37cfe'); -INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c507cc77c8a612040eeb4d571c274c370d85e7c740922ed3e038b529ed56d3b'); -INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'500f9839e7b6d853e42569d10438ad11ff87a8b16da069ecf452b3ecb15e0ead'); -INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','16b01a9de86cb5b102e4de911656d8b9e9e8d820add2901a82ec8fd6633f1a04'); -INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5c79d010bf9ca3b7477710252e40bd5f196ae263a7c33d80ccd24d012289575e'); -INSERT INTO messages VALUES(1317,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','417d93d2963c6b642e604efc34fe57640de5182f1652174a0289507acd51da9e'); -INSERT INTO messages VALUES(1318,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','8d8bb15cb5e40a99425528b7a793bd500da1d43171df488e5a81f50d23c9ac75'); -INSERT INTO messages VALUES(1319,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','a9987ee249fad8c82a3b7bc2a271258b06552735e5293adb689bebcefff5e848'); -INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3b78b1529b28d03ec7c920e5521c7b391b402dc1384a689a45f9a72cce0f8338'); -INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','bf765d3c08a30f5eb84444c60f7e7d6c24e639cfef3b4d879e074df998ff7f0c'); -INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"3c0091aadf4d9bc9ae3876d5bad581bc4e9f1fd27bac1821558ce96b3fb661c2","messages_hash":"b6dfcac3e7aff336c285f7345a35c5aa637b3c2e4a219c884d125b7abd40a190","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'aac0896e0a5db2da6abf3da4fadb55fd021a5dafa6411af6afd221d3e1048a99'); -INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f5d19dd9bddc1e7e12116f8ac48d4c200155b25acbf6240a03320dd5301d77c'); -INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'201e30a24cc7c8a6d413c0b313e89577c585c55a39eb7a15a54e67f65384ed84'); -INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2387e80b380773bca011dd41dbc960b8ec0cc499c4bc8eb7d9f422bf65c65232'); -INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a6a3545e937d655c4f289612e79704348aaa7058e85476037fd63ce63b5217d2'); -INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','09384d09bb418b8f30bcc4b20357e7914efc9196b50670ee3e6d29c3ee6ff052'); -INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','2c14c61711d194f3fa05d7958c5d455d66a06e28ff85c86d85ed75c8df8495cd'); -INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','eb6a3e28058eedb1a8626309a845b462dd9ee01249885df7ecc2a0ea59f04d75'); -INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"ae4762d0b356a39948888056bab0b729b4e4a6ee481afa4aa1b2373660381824","messages_hash":"1f8bae68d4ee6e85c9144a0eec6fa6ed7d3129535e7c51107287a6803036495f","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'9927c6eec7548df25426356efeb638e7a6c1c54c2c0c3b2b9ad64c40492eb584'); -INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3216b42a6b7faf80925fd4745f5e94f8cfb2407ce2e3137c4266496740ba2270'); -INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'6d164f30fdf7e0f5aa72eb2b20cc303011678b9c343433175e313a76114bb33a'); -INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9b45a615f6a82addc660fa500d3c50232753028c036867575cfe06a55fa095e'); -INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','d136d881c6d70de346237449f9fe7bca2c48319a986060892795fbf8b4b02dd6'); -INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','5fa48999b8a7cf87bd0b3a11c5ec0f53a7bc4807863b8c55015a923eb3cde826'); -INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"6fa602bf49d7dffba6ca0fec636766f1bc2cf00fc0d1e01681496478e18a45a4","messages_hash":"e5e7d074c5d2101d51bc10935f9a03ae12df7dfe7b21b983a64b4de6deadc329","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'8dcf8b59202460f52684fd287b47bace230a5918a022d75c6202a119e83d6b61'); -INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15bc1bc9c6886af02aa235b54cfe80a696d0e210dac126de69bc63659fe9230'); -INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"e534a74e74033091532bb574cfcb9680ad38da1b7215b22a9b761d81ba6eca90","messages_hash":"67678913c2ee7f32357d8e57d5136601b2261c7ca02a8f2cac9ea0bc634f2990","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'ca696f540531e3f817213aa12da115a3dba7f9f84fdb13aed2f8cecfd9e7e287'); -INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056ea7b98cf937b7f1752ba9957cc6f8c74ad96e1cee955beb6b7110f58727eb'); -INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"7322d4192748d1f77fb619838765ae1e978a796b7f9a8b9d2478aac6a08e593e","messages_hash":"ced58e8a0168f38828d6c1ff9ed1cf4e72f8f8c0b54ad4dbd23ae24f46162d20","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'9a5a35e6ac5fe77da2981e3fef5c7a791488e4142be57110b988236a9191f424'); -INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fecaecae0a4d28c4d518dcf9f10ff19782ecc393873824e39d83a86199b2fea3'); -INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'de3ea9b2fd2fe856b785ece9ca32f40f1ebd6217948b58a87939d1cffb29b3bd'); -INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3299c9a5578bd101ccc89a12f003f4f7bb185208b6f2ec8b95080577e2a103a7'); -INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'fae2a3673839c2fb3f640d5988d219fa504a23c1fb635b7f95504584313e3fc1'); -INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'c7472ecdff349e324d7d71a46adb4446a1c36ac17313079930af5b69c0d440b2'); -INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"b67f29ae77435d69e1fc7ba79a95f0ab06a696f312e4cb177e8d4055c900e5eb","messages_hash":"48cabec5e0e2198ad9b2a5180a5e36e14b75adb99d75584b431b9de13766063d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'a8e1032519828124e0cf214b9d7f76403cbfa549985f5ac2b9b2135a09111a1b'); -INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ce207d80bcc35089e634f32c17c8ad39aaa3e4adcbe688dd23eecbe00f9ff9b'); -INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0bd37e5c36863d70d58ad7c6008d07fe69f58bc938ddabd7cf934aadfeded65b","messages_hash":"e7fefbd082979bf4a905e53a668bd71837505cb4cb19818160d41487636b68f0","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'0b1de820dd9f12a42bceac67a2506dbc384fd73ad2fb0da95148824743e01630'); -INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'973a4f6216d7a690800417deee34fd984e86fef7ef72245d93095b80965b0328'); -INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"169df7cfae6c588fb790cd7325504f47dcdac6e4099052abce85ed314366a5dc","messages_hash":"0d0db49bb07b7d3ed059f14ce3721be25ce7923a48d6a943f487f23635e54a05","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'21666aafe3bdac4443a1ef03ffe76ddd71236d3811938306021956e58b44848b'); -INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c5cb100ba865ef10e02f75dfbb2096f8d47d88dfcbc499401ef830f307563f'); -INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"ec6fd4e15f1eb8f805a69960537424de2b206822524ff8724e22bbdbc2495628","messages_hash":"fc5ae55c021a6b3a0b888a733e88a00d9c0cebbb95965f17452a96dc5cb94f4e","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'fc37b0a33f07a8865d4dac1d467c09306cc49ba2d05d76169665739d36fb57c1'); -INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdf07b719ccba31e71f5d15858ccb6eb848c698ec5521573ea68b10169d5a734'); -INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"5dfc53cee98a44238bb660daea095652ffad5207e618a8424d840b811bff6ea1","messages_hash":"6a006f88a41f1fb50cb4c6f64b3f9c025032ff5317af089a43b0d61e29cd32c7","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'d380576a6b0ac0b96f76521e4a671c7a56d01af66c2d48407dd5bd67caf4e15a'); -INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41bdcc00f3f64eaa3f3d1c90a4e47b737fdad4b308fd1fd0efe56f211f52a01'); -INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"a1d7a8526bdad58818106a9c669838e548a3651534d7fde232aa8c0b810686f8","messages_hash":"2ae884e5e6ddc833ebada25d534790af135cfd58995035b0f4ec11a00f8bd552","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'47389191d7b37288eb5cd09c65fe9a05966249162cc9e92b2d97774448f57735'); -INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d2b06d4fdd9af5c14d1ee0fb136a0fa49d42f2a16ad8e6ac2dbef07ce6bf02b'); -INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"6782920123fdd30b27e5fe25cd060555dc0ca2c47bc78e541aca4455ab154fd3","messages_hash":"642d008906570e0b5379a3679eb4b3151b169350f386654b5ea88a690aca6d36","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'f3332cf52d4d0b82289a720a3b3687395548b1143bb7c6ac13c34d901926a2c2'); -INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99d71ae9e0a6d3c5ceb043d18d72017d17edbcc4c8ec86d55735a2877de7859'); -INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'03ff62eff402d36070cba3cf58953b8f4df3642e4264420fdacefe3af2333d5a'); -INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'22d1c9aea1731fe665ceb2439a210dae95d7f9379913dcd415a2dfb6a470712b'); -INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f7f4077b9fa53863f0eb4eb0875ab530e199babbdfc21644baba907cd2c6a03a'); -INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c04246c969bb0b3a60b6c11d1c742a3445166ea89c7ba62efca5fcdb27ecc2b4'); -INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6857cc9218f8fa3fa2e114a9d6c0d4456888659a3d1fa89c50cfe18938b797f4'); -INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'971b12170efbc7f439b65ad7fed47bb897f8391b8a35e06eef857cff67ab57e3'); -INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ffe4967da0574bf9374153e9c1d58a0396188396758d757ae9b1a7eba8e29492'); -INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'c3d644eca8664738c388a9862185cbf61b99c17df51eb62eeac52031ec0e2d3f'); -INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dd9853b9d889f56660c2c11b5a0f760d8232a5df7e3a6ee91bb0aadc3fa1bbd'); -INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"c5c1616c81af29539d9711aa1caeb73f2c8e01e7615f47b466218ae4821d5766","messages_hash":"43fba7eb615956903d5ba8c4f529709db85bc684514399390683f1cdade19bfc","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'d3647332aefb1d70247716d623cd4c2f0b8bbb0cbe00080f59444fc5ed151683'); -INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4675d0eed46375d19ad0bfdfe94cc0bd5cfa89b865205813b20a7c58aa443be'); -INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"f8f61ebff69b6f45ee903f721cdd8eb45e4006b57d6f4edbb199073efa1f5e04","messages_hash":"449b9890f3886ce1f746a246432f9b137b08fa845ab633ba6fdab997e9bc94ff","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'faa4585a898c85b7f4a0080bb733f315a2ec920d3db054f319c099786053ba27'); -INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b491f779ef37f66dd6ae7358072f18a76f87b0ccdfc0b8d8b5d43516a15fba73'); -INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5ba45c3e361f794092162e17adef0c900861ead6f31c8b1f713c19130b776542","messages_hash":"48879852c1a777c647dd6e3078dfb0443ee6552e3988a2f6a29b802e81cb5e59","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'da4e10297558e100beb5a1e77c3f8e432c582226ba7c2266f0bc9e4580cfc925'); -INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d7a6a766579e8034ab0a134e2a23f720ab6e242e6cca763912a6ad6d33f62c0'); -INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"d1b580c78a6fc2d9ade6cc046dd03ff771f2d81b9609a1734e87b350c201172d","messages_hash":"574afda490f3dd8564b11aa5515bb169364eb27ef8eec5da3ef2aed770cf62d9","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'351ddcdee918c4427725c808b90542b69dc4e22c8d902f14e41d6ba56cfb186d'); -INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbefa4c96e7626226135e8c8d8f5f5b03308260638195ec4ca8a6ea8f70a8660'); -INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7c335805166176dd96682eec31b6a132da1ec979677b462fe5bcc9a701a3f16c","messages_hash":"88de748642a6a8f3264702f4811610355bfac0358c6e64343a5fb47aa326c146","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'57fa7e8f62f2d64ec35a59844ce6785d7233e3e4731905205778965c76d66f18'); -INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2bfc2b0a9ae6969e9211e0da3e6c0b72aa250d008d827bda494e898b219606d'); -INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"acb5440035fe6bcad0f35b6890f0b41d2866abd5c22c9a4ec9722c1d8e47e3cd","messages_hash":"fc9dc6465905f41f8870c230c5530242a8a2295357e1fa986badf932a6f85921","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'bdab2f743faf27e668e7a6f222f91c49ec0ef44469996eb9ae4ec5e94bc2ef16'); -INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a92357fb4131f87849ec0a83880f4adf5e2872b685ea2d13e9103aed57e9f441'); -INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"00eb14da3acdde36016fffa8157971ce0452eaf7e3e98222f71f035595c6561a","messages_hash":"3a10d751068477f94f88938c162ac23fd5f2f41a53d4fe34a331b1d20bd6de69","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'5c1d69c6c96cb115ec56b930a7848748febb44970433366002fced362da895d6'); -INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d8471a9ea2060e0e642631aa507655909a112e5c7adb108f099290fa47afe34'); -INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"31c3aecb28a3f50bd7f999be7fa4a0e7c6156ad8b2bcbebfdf3e2171d9d8b44a","messages_hash":"4968b360d16386034799ceb1d60e966c61b6daf636eae24883e6c9fc05bc5ec5","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'1e629bd226c9475480eface7353a8eac4b044325a22b816dde857f72691aff3c'); -INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6524883199a013d4fd2f0657bc0e3a26666dea0e9e1d48a246c2923e6490da3e'); -INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"db881171e0775402b1fba313ec760819dce82235eb32fd55dc995ae78b6886ce","messages_hash":"f4cfcbc786a0d1b4aae4a275ce73442a3b8f4267ad5f0ccacee94e292865f994","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'2490154ffb2eb4d3e3b4374aa28d3fe19336ddc3c545bfed9b05ef45cc5fa29f'); -INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cc6019b40fad64457115f65f800845222a05017f7ecf87cd17be9b003e67f5'); -INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"353b8b5f6b7779c7ce6a145d6f38621728b24f86d8e8ca0c1cd837736b38d8ad","messages_hash":"5e6038ddc5fe514890d386981481be6d3feca7be6becccb8f6a96945dd5a26b5","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'0346d34b3923532d201762500f902006be244af1c4c230935d5033083d3bd1da'); -INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6e6f5c4a6bda993c08110b0b91de56fa6338c2d3b9df780fb3d4848004e3715'); -INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"897aac16c9772e09d6aaa199f4030ef87a0cb66c42eec9726242014a9485024b","messages_hash":"733776dfd2082f0dbaa248622429cde29d5f98d616657f808a8f2859ab838736","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'47b26c63139312d26ba7c9f18e159f8ac57e4c662572d55377827303ec4fcce6'); -INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c627303ef36b0a084c9a865bc78b1137513e8d0f4f76cc26407edc3ec88b660'); -INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"4b7b4a008aaed9ff844d2fb0ff7d198b45218262323614399a3bf198b4fb6220","messages_hash":"662c5f24efbfa77c937bbfe802d7e63c1caf37cf8472ae9fd9a06fe97748265f","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'7db1b0060da32322c52d546d5fb480fd1528cb97c99477afb06e01bd921549e0'); -INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04e2aaa8a98bcad2a4a5be756d5736db0caba7d83f25e2fcee29431e840d9346'); -INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"6f64ff5ff5468b82973669c94a23635a192a916116f376099b30e9f00d63e2c4","messages_hash":"e91a8e0bfcab7151163b7dab7e36affa05aa0bf502a6cb4a0bf17b7df948ea51","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'e3cc92a3a2de4ace4af2b89576c5bddad3c608448cd2955c2a0d5845c908ab11'); -INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a49489f1b42043e88796ddc281259bc76ffb537202bd17f14794e204c507342'); -INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"c072ca62b53acd006fb3eef0c7db33d6a044120f5d3d5ac9ca6d6e08cfadddcd","messages_hash":"d1036ca6334ff5c023430a356d958559c20735e63c4e177207c55e956763b68c","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'1d514257f70dd4010c691c2b39590f14ba939d4b1fbaf367fd1a9edcf4f72edd'); -INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0af113e110bffe9546833f5c8e648767c33e6ba1cc12833ebff659d92b222b1'); -INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"6d3c25f962a929659ff3019edf1fa80d63588a1cee0f1888f184771e0cae33ad","messages_hash":"16a361a9a0c85a31bedf2b5547d1b7f92520bc20d070b93837b7b042f4957677","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'8f280bbc14734dbb90efb433c9ecf27c743e9a397b4f1c02e8d62a768b3db812'); -INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbfab615236a424701b109a1761f8eff4da7c9750b18771bb4222c381c2191a5'); -INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e300f8aa3a18edf15ed2dcb41fd37e2e388bd6269888bfa0a1cb80a1d54aae79","messages_hash":"1ec642f4f355cb32b8fd5679ffd94a43a9f8b6862e143dd558ed85565eeaf8f1","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'e15792a604245cf8bf9a56f3710ccb9dbd0ff80acf3fecbd8436d36a761e2a7d'); -INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf2942d56a125ba4df21d2227453eb094dc64da545a07172acba05fe529ea543'); -INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"bd4d4931e7c7d5e081df78b5487324e17390b712fa35ba5508d46780994b8299","messages_hash":"99ae50a8e742b3cbe186b7ee2b45e2e34a79e8236cf7034d6efff21a679af13c","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'e1b7dcb6567c1fe798b7d6b83e02717827a3091d557b7190cca71034396eca95'); -INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'451ba7ace7769b9abc22148329cc18455e69110ccac397526fe56f500b5812d6'); -INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"78ba028c34551999cdb1e419d8155b9819b39f507ada957d4001056d015fdb5f","messages_hash":"165af9d2ced61569b9a902ac9443cf77b2f0d5b3aefdb6a48535a1e9e068c8a1","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'bf77ab31eb949ab131656ae485cfbee23c7625293f1b300d2390a689051f46b7'); -INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16f61f491e9a198a104bd706615a5d1a57c5e49df33669d9bfa2e63209a84cfa'); -INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"6a5008815f6a13014900f1777619b3c3452a42c341e9bcf0e1d204914fdbf885","messages_hash":"ea949eb39e9c78d8267b3a54a206c8f662720a2eca72190fa72a3c13686d8abe","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'767d1fe0f370cd64150afff0794a28076c995298f9328afff3eb73a718ae1b6b'); -INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'702083688cc6f9fab90a0c6f88fbd5ed7fc60d9186b1e0ad3a90a017b1047941'); -INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4e4be292b51b803c9fb4b612397756e295dca993fe0456e71ad5bd491a923cdd","messages_hash":"192d4f24605b395e71cbf0868f57faea108edbb91bdfca31caa356f3cf830cc1","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'a056e346b370c1439966d636a07276b339b6a7a958d08d875ae1eb66214ce960'); -INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a66912c2e0d3f155ca741040b1d717ae9bfee962a1c5d3bbab51118454842c6'); -INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"a4e9833b77ef85873c4da67d8bd868f02e75fb19062898156bdd935f66bd716a","messages_hash":"a479fd458f5607408296b8b1765602c96695a660ac0efb1b6a776f060ad80da5","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'d0a18c4c8027fca8c6d0c8f75dca2c25b2507a765fcad47e0df87a224f3c9469'); -INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b91a12f727ffb9d8a45f0f20770c48d0e7d3fb2455d5d4964257028f50ce2186'); -INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"ff410c163a775850871c94ca07a96d4ce508f6afd0520f3df97c843681e83df9","messages_hash":"dfe44caeec973def108c0e1d0940beb670cff9d5eff44f9c486c0d0879359b60","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'097dcc99658c6185c06a7d19df49e91713644dbf3c917e493938aaa68b558533'); -INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11069822b87eea825b80b9f04780fd6711b403ee89ac39e44350f3f13893c311'); -INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"e9b941d1f97d8c46734603f156ad32af0cf9b4bc38f04ee1f8994a1aadd7779b","messages_hash":"693edc3dd999dd0c63981b372ce4bf5893b7f50ea852a5a0c5c8efae15185c51","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'e6875e165c6e297737fbed98eb1c3513e9f11a58363add80b01eb1114e4503ea'); -INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f3f7a7192fa57c93b7d593212623d9698718178c0a4056fc73da0f95cff4dee'); -INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"ef615f29a4c2591eaf15381cdb4766e43bddc6b98dc0ec29c58fd2fb2e6e3b08","messages_hash":"bb5864a0bdc7fc668a30566970619c23766e947076f45484e55a17ef916d74cf","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'0f9b7e0fc21f69f06957559e1cc21286d835c5e498133ed78123d304e8400aa8'); -INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95c9a9bd39e8506b47f72007d5c242c22f1e4425fa62cae177df16afa57c6d4e'); -INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"8129020a0cb213517338d5e80951e75bc2f3e6be07092b4f14edaa054f1349f7","messages_hash":"2c58cbdb72f93eb062d56f90b477a1e72e05fec594eb1c818e3b3800beaee6af","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'450ef937e9459d06ffcb7c6c9efb72bb3c95bf98f80c754f7758bf31769f1d65'); -INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46d78fcb5c9e1c2cc50561a533f297cdfbb26ce809609ef248d0195bb346509a'); -INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"fdb84cfe0cd733aa9aa3efcc6a3ee516e81db7ea5b074a64b281f0ac8bfcecfe","messages_hash":"356504cf532df6dc6e76ae0fd77bb23f9f14ac98839e874032f046233a211ce7","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'4d0fb1a91638d85a945d83ec6f64b8685f512113c94096252287bf534a7484f4'); -INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2526a9e10d238cb6a8e2cb7ab5a4daa9d6ec89982adf94795f3d7c99dbda95a4'); -INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"d35194c85e80d6af43010df5974318efd724fb065fd074e69b716c8ee486c695","messages_hash":"92381de092fb9f5e541e9f4f1e480a7678790a362a8f2a467729d12c9533d35e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'29ef5ef9ea03bb161a003959005f8006c113ea1ae1b6bb522993fdcff9920d48'); -INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec708650f967c7fb0188cc91c831cec1968019d82fbd5602206f24aea2c16a21'); -INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"92549e76096053ef9f299a5153df1dce3aec95d308f486ebdac12bf20a1dc4fd","messages_hash":"9fbe2f707a17bcb4a0718dff77bf7dc01cd91fc71e28b9027fc3870e1dab533c","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'bf05e32c28297112a352054c22cf3cf9d7764da65da5bdda4802af225f541000'); -INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e6aedc80984ba96aa6fb48c43f0ed05f6d630b890db5b54faa98abd295fa016'); -INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"a51787af7de172e10d46f63a63baba63168c410900f084be0242cce6c9c6d604","messages_hash":"b81bda021d2aaf40f005ca8dc56c64b4798176bbd5a74f5f6a713ecb51c65158","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'2404f48df03504f9d81ec14473e70e2e102c63ae85d854f068be5c62b56441a5'); -INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7633e13581630a6547b2d53f2f0b93c8e3e983442a99515f6c9a70112179bd01'); -INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"8e511644ecfd360f71cb2f5230eb583238014e9b833e50534126a7f5e8a57062","messages_hash":"2efc4ee76e0ce27d6cb09e3c6bd4cdc4950e4d017814a96b779163c53acb1cb7","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'7d3d484812e502a83d23798da488c05e47e6e7c119cb3dc007fe413c210b0003'); -INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e530ce58be23a9bfae82a4e6f7bcf1d40078615d2cdf4e13a041d50ed16ffb4'); -INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"6ae9111bdf6365946c357090960a574b2a80a559746a8f5454b158d5a10aaa29","messages_hash":"0f7886bda52dd84e8aafb487617c73c9f56e3e770d2ec08dd2b5df6c576d7c25","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'4bbc52e9a29dbbdefe60f4a02ad6d13e053e5f55d4a1072fb208ee90253e7983'); -INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7dc653f621df70effc13bf8aefd48d2a66b77edd5756e8687214259bce58339'); -INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"40c8c6fd11aae5bd4565497a703080cccb4198fdcaf3587ad648965e4a469d11","messages_hash":"f115d549edde949bfe1abf06dbcf3d8c3e63ef790e5fd170983cd2c3379c5fe9","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'2f7169298ce6d9cfb364707731bd19a8263fcd2ec9f9f49ba0b5ffd2816523f5'); -INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78514817cea74e0a0d4d6dc9bc723b9109327f3c4f70d7981dcd29b56f858f8a'); -INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"d8a2d7ea7905c241fc03d6793ca174669988f2dc81562f3162b65a4629d3973a","messages_hash":"94e3ce9f81c35b2df07af3cb0a50214c17b8fd770b82508435b1de7d1bd8ad3e","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'150578e1ebb12b6684364a2269021873b0977496b9053cdff8e9ff3b7c7faf0e'); -INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af024cc5caaaffe8d4c2b659a6d3cb93841d59f3d7087dd643c03383bd23780'); -INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"f9c594c8b1444cc2644211c587caf4982c82734c4808ed3bbc62a650b283cd7c","messages_hash":"86262eb82774204c80d0ee91271cf190ee3c5b11d10946b3a290d3db3d2a76e1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'1faac7cad42651bf41c1dbfbd2cbfcaeddf9514c12ed256e5ec8e2ce9fbc058a'); -INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e80de1c8dc78c243d4a229a146b31c1073961fe8df9978ab906f4267fa394da8'); -INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"7e823ca34307abb74ef052a5283e8be017784afdb17bfa02aa765483641978c0","messages_hash":"f4777fd54229291b20928f21f8018e00498a92eae96b0b99fd679e5613bd36bb","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'d942f4473aa2bc067b0e832ad86648ae2e8fe2e43a06b96406a7b77775abe640'); -INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1991af8ab35a7ca48a26dbeeba3327573bbeecc283bc5abd9641f530f41e8f90'); -INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"e7d7a11bcf7881cc7b77308843eb4172938163ae8dd9f373dbc6d4c904686321","messages_hash":"c9cc1cef3df1b40d6a7c8512291985b60afe8123c1c72390e4b2499e06a5005a","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'f82780241b8b51a0afe6f062ff43c3e1205f73577e280de2c58a902cf62ebb5d'); -INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4f3569186da338cbd2c367b5f5e9e0231807a6d9e49114ec98ac2140f63a531'); -INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"671ec3a84f2b2a190dd1a54d97d909eb851f9b2d68e264de903b7376e0695e94","messages_hash":"1e8b2c416caecee53e7502d0a26b0c7e28ef1b450b85fca11e300ad32f4641b8","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'fc5fd87c6f335874ed0a3522396008363b31b6d68139145c08848cb32c263b29'); -INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c449133b4f6901ed862f04a2ec2cf7e30ac37e7440087479ffc8174184868c3a'); -INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"720c5cff88001322feb076e8f4826c693bbfb4b2c3cb94102e6ad67f9aaa80fe","messages_hash":"1b1d1caf3c2f17e8da69f0f4500313f64ff27bc4717e4c83a6c49baefd0bb6df","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'b1a1a446606fd22a2465f05cf55ed7cfebd324d5fefcf81ade8d574af698f6f5'); -INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f0e745414f71cc843c7811608d751a71dcae1447a44117e1637da92fd73aeaf'); -INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"ff6bdc75101b47c2f54b92647828f9e4bd20542a06b3b2f309c32165992a2cf9","messages_hash":"7fde1734d7e37e3f61c90034489e7f6c2324948709e1a0603443d4811f9ed716","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'ea35f7e3929ebe6cac740b16512935c44250cf067598a93e9f927aff9eea0cba'); -INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27aa9fc166c7fe896b04a992f8aa1549a5db758fa8731f0f6f088a244ba9c793'); -INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"456d5e8cb8827961d6e7cde126ac5d92218f8e2048695bbec17e6a6cf35f4769","messages_hash":"eea1a761ca7a2314a819a62141f9b758708bbc4b4169c0dd5a3626ac5fe9fc65","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'68a83aa63beb6ae49e02672eb0237325311b464ca76c5a90fc051aac7d462260'); -INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4773706101ef22c42a208cbc49b48b5c5df2353ff6dcf5dc17ad9d34067ae936'); -INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"22090cfd91b2c9c900c89b24270b908906425b1ec7d3fbccff8bd016842a175a","messages_hash":"ab5db3fdd22131a5f915e2d7cec614e2b5557666d06667cef3760fcabc71fa08","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'85807af03fe81bfa2ab0082faeb13b063f624abc9df0d6165a10cd14072821be'); -INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc38aadc11c340a92b88ed824a7201226ba80fa3e28ea5bbddea8ffe58e55c92'); -INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"a5e818ebceecbcfa4187cc7c937f402344b5c2521072bd596f48d0810d0fbbab","messages_hash":"a3c11b5532b10bf714158fece3f51ea9b68704f88c5edc1f7af2e5e0e47985cb","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'cb230fb2ceff60fdd4e3b1d6c89ae7517f1ebab8395e1530b664bd4367f59db9'); -INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c035a487172827e0339081f4d7a71f56414f10891e08febb9bfc4da2292fa8bc'); -INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"a8624b915831a110acc6f1a39a41b0f46624221e3e0bade0bde8447a60b59456","messages_hash":"3b18be4faa97479e61ee49568c9e74139aa3399688e87239917746e6a52d224f","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'53b74db7738fed611b21833ea80d88316e4e2c837c9343921d7ddc6c8b0cde11'); -INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'878618b5f919524cf2f3dde678b5cded4797e0c6dfb4311ba1bbe27cc9e314cc'); -INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"1706dd5f95b67f237648fdf18dc24b5752d7daafe95b6c9216f374a93ffd377f","messages_hash":"c6a65ddf4bf20e7dd30ed6b368f481f7e62388c72ad7f44e913756a4a3576d8e","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'4072714b3597934c9cb3ae14ecad352ab9e6741ed25e4b8550dc933d3bf765e7'); -INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9879e933275aa500c1925c64b7d78ff3b655e99efb1ed31397c0e8ad7285b680'); -INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"8d7322b994c11db81ad1765948eeb842ac9d61fa09ca173a9a00a4b7fce83c73","messages_hash":"af265fdd31af0632517b5de2c01e1bdb871707ac959176809d5ecb144ecde8e7","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'ab21145384d4739080101d6af0097b391d79f7b9ee5ec0645f96394507acdb16'); -INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e740cc40c2ffd0e69706457fd866b47963520be5b46f0230ad2103583b1b3437'); -INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f87421ba79a245a55e15a3a36eecc7aad916add418d51537355b9d9c76c2204f","messages_hash":"83c9f6e3e117189932b0c9ed7f391b2fc635a5848c4ad74457141019d03f403e","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'6d5776ca4b76057171d38970bc81e4bb0573452a2c20e9c55a19ba320d7478f0'); -INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d3e859b54c21697ab24dfc0a41efcd43663b32ab9268bc844934ccdebea0b7d'); -INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"f1da9dfe0b3a7c64fa9e936263dcea1a3a5eeff0be034caf1ca13c88dcb7f6cd","messages_hash":"0dca2fecb28f91c2e7495a0d523023b702057e2ad164e94e3590cb5b286fe086","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'44278874b296527a10713a3552f3a81d8db9848ad3ef3aa6fd889ab953d2440f'); -INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cb2cae1c526d2f2c2eb1fe991416cefa1daf34a669ee39fc0bdb81ea77fe679'); -INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebcf7e724d035af7f5719565d720f68e62c9cb99824a4f2e5b1ab695b8993b56","messages_hash":"578735378eaa3063c0a81648440508c67154f4adafd37b4944b0a7ca2bf993ac","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'af6773846ec130713c14eb237d860c6ad97c57a53c4151a5b64abbc779524072'); -INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'876c2e0c191d24c685dee4e18a855286eaa437d047241e5e070bd077d1d6ad3b'); -INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"c777a789aa9f1b40485d78d978f21505c666df2a5885a872b447cdc9172d9cce","messages_hash":"b584e32f28b0387da5156267c066975d5e891d939f66bd5f38dfa080a76e4bc1","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'cb90d65e7fcaff58faf3ddc125f784ff51b5fd86ff043a62c2b00ba686b86764'); -INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c2b702bf3d7e2bd92a18e7ec8be3c5018087ecfb954272a375f27bdec322a82'); -INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"3da8164ea8db440bb86d1e0f94ec287ec3a90b4d211f4333bdb4cbad8f065292","messages_hash":"eb3866a2abdb78142255db1e83bec36bf278a186dd29ad74845e3105b206ad58","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'33c3d6c8f569a90bb80cc8f2f1c2c99bff46628816bd2a933985ada182efb9de'); -INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1104bb88b5bbe589b5a06de3fd4333d3839c71fa708eb4b266ad3457ea56ae52'); -INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"225715db8e6a119a8cfa94d270298721fafb70f5e92ba4f316548844ac92249b","messages_hash":"f2de3ca4f9d5fb1306f888c66fc99860038f2e1f9afe9db99cb6390f97975c54","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'08c286e871803185a4ad58de68ba29e4960da28948962b9c0dbf4ceb9d1e3be7'); -INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a57f8b6974dd68ee98de58523f2eb3ee52a93a0e40971f2fa1e924417b942a7c'); -INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"4e6ff153bf19ed8a06c02a4c220c67b4bb7d53cf24fa0abc7894e4e2bd3309ad","messages_hash":"6b7b3b83c570ee3281d222e83f19e8b2297afef3bed19a0a8e4d69af5fba6346","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'7af9bca8e46aa001f116e81322717460bb933228d93ebfc750e68a7c563008ad'); -INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0329d57d0dee2b6b10d8d2ae2df03e89fe73a939ab594734ac94df579237035c'); -INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"3e5d0859638f77784cd4db0149e87f5e6d4b3df9edd3f12ced5c29c663c69293","messages_hash":"e5c55e81568d737313ff4ae28ad957c87039ae8529f9f7ec0cd26ff98883add4","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'43b7d1133d045e44a366caa3ac4862d9e9818a92313659a7bd394baed0b9d210'); -INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66022b54f42d93184548d20d36ad03b4b14b844421d562cac54ca8d1bc0de2af'); -INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"81de96d5699bf79d43c57d44bb41aa5d8b0a77a3dd15213140741abdd0f08e99","messages_hash":"95cc7b904b039bcc8b3d96f128da7b1c34f154cbb08795c01d400331ee6d1e7b","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'376a2c1562d1ec5fcbb181b13961e5aea0ceee7cc7d747637234d81641770945'); -INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11fc0c5b17eece44573879da59dad70f4f7fac15242ceea74dc3717e94b693e4'); -INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"b1d3d67585f2ee096d7b2b4b42a5505d67823e5593c693a38f7197ce7f7f8260","messages_hash":"ce6d9b3c1308ecbe367fa6b362731480fc5ed3e694e15ae05fc9e11c171178c2","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'805a4fc6769d1746a374da4db46a8ade1c8971ffa97a1f5920e032053ef21a58'); -INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a13a21a76e95ac472fff45b42062a2906e4b6c2e172e404eabbac2406addacd'); -INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"b01825739632868cd82984607612c751e6ea4e04974e4dea9fd7ac58bafe6c74","messages_hash":"afc7f3f32bd49c328e63847726431e7d89286822fe44a09fa006f40295d1667b","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'5e724a720caa6a4b9e69c879dbacbce5e1681d1736de98696ac464d847e7c05a'); -INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e45efa18d0568c202fe32eed9096e89352da2e72911dab7fd782abaae42b270'); -INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"1d337ebc605c14ee6abf6a65bea3b72abfcb0be4ec9c98361320549133671b3c","messages_hash":"8e6ddff86891e535c4a6f6660a6e8078e10e489b4e9fe7cabe4a82e6df17bc8f","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'c86948c984f7a63ad411528e29cbba25cb7b47f7ec711e5d72532f8ec4063ff3'); -INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eebc9a3d70d184ce5d14131fb691996925e2ce56b039f0e2c0bd2fa0e87f8404'); -INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"325be241b6aa1ed232573d8cccacde13203f1fc7abad74c00132a4d7d04e4050","messages_hash":"ce5764da15a91fcfb803226bb16e3da51441e07c69bb54c6f6f7beca5ca6126d","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'7ae8e46c431271f222001e330c6fa816dfa06a33a7f80576da3ac69f41d392f7'); -INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18e259b30f715988e1005ccbb99e0b44f6df988828e795a6d0565633a0b059b2'); -INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"aed316901c822b88153ad907de4a610d463e51151d2ab3ed9ba90ebf8c4a4856","messages_hash":"c6cc8df7400cae56b9e73dd62a543f8a061631ab7f3cd1b8beb5626d5c7b67a0","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2e9687f06daf05cfeab2348411cc1c967f2d2cf3f699f5b1fdffba6f6b4e4e0e'); -INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7215d40b22efdee1852b6cd0dda68b3752d0ac774a7f1cd73cda806f57c517d4'); -INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"569dbede0fa3b788648c8ee0a586b2b26fa9d621a88d471995205d30b72a4d18","messages_hash":"ff30af7d17afdd13551a1b0f5d52df6f3265443f95dfd6c298bf2c97589a27bd","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'18986f018991288b68a80aa2b7dca9147ecabd716c819991d20955fb7caaebdd'); -INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6b1df36b1a3c2e976cab9978a322fae719dd69c688124675fe3b0a37f36120'); -INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"3a71113b83503a283e684dce84a66beca73fbe4185858ebf71789c571f06a37e","messages_hash":"4b9faa49d351dde98f623d4cbf681ff52a790d040007ab31e216d81b07102d78","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'6d6bf2f213bc24d474edd061f66fba7d7550c54607e1700faefbe469e9228c10'); -INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7d80bd77991024c71baca3a9f0be5c64b95e6aec5d716c7b886fe864f156530'); -INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"1c616301352bf46ba61a82a37b7be2c7032758ce876c557c83caff56ddb4b5e4","messages_hash":"691a709496d5a92b2b88e45ee37860ac54ecb195678d059ce71b0d1af75d931e","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'a4a745c2baa8f9fd1b1b2bac183f29c235e9a969331a4e6e86f191550e6261d2'); -INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325f7e4e9855a1b391d9cc1e366d440743651395c2ee7fd5313c79989b3b099f'); -INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"22f03c2d1f3664ce1a870776dfb953b6bb116b915877d464a7c31de5c29fc312","messages_hash":"46d7f6fdcf867ff679817fffbdfd936f6d863e825dca292ccf8b76174766fb70","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'37b71bab9d361077fea2d8742a9b0394c8da9c6a4107838c382abb44d27ba31b'); -INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07b690de08f0664f6636cde2147626e5770124177b7caee8034eda225df1dd0f'); -INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"03c46ba4607ee4224b8b992300714b303e551907548214792e092c3f4308b364","messages_hash":"de4caa76d03f790ff0e5bd33d1f3b0329ac7a8f1dbb65cd692f0cc4c2f9117e6","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'b71f1430541b2fe773ce2c1ce41c326a95595a110aeccc886d00036e64ccdec7'); -INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b743e4989657ac694652ce96d56a8bc70e8c35f38838d787b08f554a92f56c5'); -INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"62ad1f5beb8335d94fe03e38be6e0897a87a166efaca2f3d6ba894cbb48229dc","messages_hash":"0a5db3a7b3a19c52d60961f56a5ecc58c6c27fa668716164992b25f8cbe1f1c5","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'a505d5a0d1992c2728e53c77d643a77b6d907a6bc2912e080fea465efa4e99e8'); -INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f74348b584794caed6fa607ebeb842905ca0afcdc2839b10cc64b7ddbc7d352e'); -INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0936cacf3a813c82dc2d845f9dd05cb1fd67cbdecc74a2b847c89a0e9397c953","messages_hash":"4c717d4d110ec89f31d40fa79eef33aecef9b2a0f0ad42519b560e2ff535458d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'de30764a058d4e16671a5a45f257d4d9976fbe281603f924df30ec8e16bbe35a'); -INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2ac256e9c71a8fcde5ec72a100c21b0069cb442bce0ede17ab8a3fa9657baf9'); -INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"e7af5db562057699d17c80edbe508d1c4729ff8380018768a649264c59828280","messages_hash":"ce7341d9741a59fbcef21168c3ccf9cd3acbfe00430165950e44387b968fdb2c","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'ce6713111b7ed117ec8549c9d7c4f8103b6f37db4e042f306660e36c98b41e0c'); -INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46c23876e14e09b830877304e6ac369b77b87f6cb7a0060386c2fa398ef40903'); -INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"a0c3d44a2ae83efeeb3c0d52cbc766c7d344216b3a8a5ea01919840d8c9e0bdc","messages_hash":"f13cd6b562051691840ee97fb888e62915bffc3721d6143c6d75f87af9684f33","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'3722463479326f86aa6e2efe4df338176a44bf6641c0efa1b587ddafb3efee9f'); -INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d6edb4f84873b80bf2538f4c6759a7c62b539885d713ed8c8cbaf8ad21dc10b'); -INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'a38b8466caf0150d422fad3e644152eb2f9d005543601fb23c8268330e9f5311'); -INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'f5dcd5b900e191f58304321e6cd009a8e844f627e258d0b4491aa86a66b76a89'); -INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'b4011dedffabf47c59ffcfcdd53eed525910904b6d593444ea6d60c8a8da76a3'); -INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"93082686258a0cd941ccd34e8855a2cc4f4335e356abe792ca889b862b83d891","messages_hash":"cbf5141bbcbed99e67f1cc6cd190ebb701c45d7a2dee35d0a843df1e63d8ee0d","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'49972ed97962735b0436fa9ed6788b5b2dd411da974c43e7c1f4012ae1aa47bd'); -INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'659ace90d7758a03459350a8639c7c577d2552ffa926b229fc41f7b48c7d8191'); -INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"c4d63de19684e30a4d0f279247b1890c049ea6d273b22bcd022b8b4ad12916cf","messages_hash":"65c472081138bf890f3931ace128082ac6fb9a4122c2aaaca57427749f095df6","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'bf5ca13faf4fcc8c5ff04a44824358a3aace031402cb73830f15920205b7f2b6'); -INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff94ff89beee24f9b3d2b366cc123e934fcd693eee93b13a1270b488fecfb6e1'); -INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c8338935a3826b573ade0bdd3e25c7ad0bda9d871cf40ddf3e081efb810cf5b4","messages_hash":"7e8545a6e516dbfb2d7d416bf51ecd210d0ef2f6547b80dc7fe944c4bd5ed01b","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'736236cc34a0f25b09e22a561cf2f93ed31986ccf664a606863211be07507b35'); -INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c49c02dfb3d3c610a93d1f50b68d26073a44b17f69cb01d7cfac94d6328c022e'); -INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"1c39ec2bbbfef1d33227c7c7326efea20596f4d97fe324f808bba5c3ff1a4c5a","messages_hash":"a45b1adcfd1b25e7055e51e86eb9380fcc7668589cefc94549df7eae8bc5a7d8","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'1c04a253c9decf77cf5233bee6ae1d65680734124d1b34f292be3a9472811644'); -INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dda4ad01755b011a570b8542969a79e8e8e66266d3ea8a0175619f618192c31'); -INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"d9fac54e6857d51ffcd7fd3209c021b467e66f7572074f2631e54b0f2c8a2710","messages_hash":"cf4ec944b150583cf42c6c59674f890a821b283d60abf1771f91712d9e3402ef","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'88d551aa68a7a1828893b8515a9b34c6af88676df65e69efafea87ff4e342fae'); -INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff80682570a139c8a3f4f1aeac36080ef2477af3c911136c8cbef0498fec09e9'); -INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"ed506d7dcabd39113c35920cdbaf1c0637126b53e553d744c6c3b19786e3abda","messages_hash":"5c8b9b259ea59f36472561550e4d15ab281f6d35b40d0d36000f3a950b8df13c","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'67c6971de9b63ce7f730b4c4b53fd0502535217945e307cc15438f1cd0b54cae'); -INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4935c871292ba39b2c7f5f2f568a7ef90606098c8704cdedacde9dad122dc586'); -INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"de75be97f95c0e1a0b1fb4f51c7524ef44fc52799aaa30045b6553e6eaf840a1","messages_hash":"1723e66f64b9664b07056bdf4d4dafd5ac691eb7f4ead7fc6c102715cd8e1b97","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'519b3a8830af55ff4473d0c0fa6cb54cf5ed2e8761db18ebec7851f6c8545b85'); -INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2b2e7e6d9a564b3a1f45d77172aef430c1b936a7eb3388d6f74266007a87f76'); -INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"649b3ea2632404d96358b13df5fe6827e803e8e50294d22fca651b78ed124841","messages_hash":"69aa6df9b41d674e7a9513c2d9c65e5fe89860218393441bd0a2be7d5c20e4be","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'17da04f2acdc5e436364158752ec870bd5e847c9871934392fac26fb393635af'); -INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6cf249fb81197908908450b7fe1a456e97322b3dd37855cd5af47f33d923552'); -INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"79ee18d3d0a382fa513d3c2920e0ce5e9d75d2592dca967b114f86a9833ac975","messages_hash":"4717480b170d5b28634423fe1db0e236551aa417518e485167739f70f139e4ec","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'acb3a85abd0ab17dad654bacb834e49cad01815694665be40d73ae5930079a07'); -INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6a87c0db767c2aec9965a8289d3966afd286f1621bd91150402f0a5bd8098b7'); -INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"70e185432032336244a0ce5438389d585f0c74bfcefad11ac92044fdb2e3c19c","messages_hash":"0e7a7924e59713acb609c59208beba57d6a0bed8c7c4c92b2e0b0ab23bb3bdaf","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'960840120deab73844e928f7e969ede652728cb2fb0bb8431d17f652e648c4fc'); -INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6207c5f8dc5f10dc7d20949dc0b9447e5fe1a577fddadab5cfb17bcbfaf33a7'); -INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"fe88e1876b73294b7c57c3821e120767cda01add23ffab342efbb2942d760aa0","messages_hash":"28a25107db554849290f7839c7b2f5abc918e430c99ad795220398fb8c9be8c4","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'30601a6f69907ae98b4dcd16953114282bdfc17bc2d6119d51b2b4118fda62f7'); -INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01db3dba4768c4ddd07af913fa043968ba5a3e93e9caeadd3540232b3de40a0d'); -INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"ef53996ac443b94c436db10e80b0d8fa182bc8c6639339eb8da646a828759790","messages_hash":"2b5ab06a6772703b3995b4294d4564b18766f7a803fc33e0b2baa3531788125b","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'5321e47d5c7bafb6936e523e2a2442668c4ac3800ed70be5bdfa150e40e904dc'); -INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82b679b96ca4680a56bbc59c6d1a0f4f91aed7a34141a7db147aa8c8b9b3c329'); -INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"170ede442b73d92977ba65d6d1c6ea92d18916206b8f96cc4b5e64cff35bf76b","messages_hash":"603d9d39553a52feeec137c4871bd850c43bb90196b2666c4a6198de5ca2e44e","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'5ce612fd0c40c63f2e8270bd682a2e1dea7e1913148520f8f400c40f94dbd13e'); -INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89781f5e6f59406fb2ba0587f78a088cf39059a6489c0203dae13ccda8dce02f'); -INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"0e4986d53f1859e2ab9bc2cf6830dc24a36aedd505a9a08367e451de561cd2a0","messages_hash":"bda7f84cd40fb647550e43059970ebc8e66894219e260e71349025daca6469d0","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'83eca14e3fa6bee80adc84bd2b9541cd9df37d09ec37afac09ca4e7457081692'); -INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a526ebe688ca20934c28e005cc99000522788c3fd2b0c884e05295583e9cf43'); -INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"f8d7bbf8dea042a426ddbb7035ca5ef76b56fa8db02b4b2d997faf088429d93a","messages_hash":"8b8e2501f5611663fda6e8d9448546473f1d0a1d8e077c9d2722eb19dc5d110d","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'db5c4eb1344fd3ed2e360f0818cefe9d2c3d541fb8bfe6d6205ecb9e3cf27fce'); -INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1719e818b057b67a5109158f0e8cda13a3e81b79bdcbd4b5bf28087562f801d7'); -INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"e646fc639df3746975049832787ca874e104b12199fb8f5388891ee3fab48c37","messages_hash":"af062a5709a2d0353d2bbc7613e9985282242c2be20d2b1b0160b03692ae5458","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'42f8b730ee765a428356e126488b57d4e1fc230eb3c0b9bae93b637c0b146fdc'); -INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b829da2b859bc657ccf52b81259b4dc003c3ef8a4c33f507555bcc2b9d12da31'); -INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a6e30f34199184aa206e5ef5d30928408393371c7cd755bb0179bb8063993f46","messages_hash":"150ff61613194324b510c0658f55b539c9ee9fe0b83c67170f255fa8bdfc736c","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'96bfa4a4255e108839946f207bac4de09585cf69fa08611934044e632d40d7e0'); -INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aebbdfcd6548f74ddab006f899a5e86b1bff3f72ddf7d2171247b43beca9ca3e'); -INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"a083eb35563459b9b67a5cd671153f9ede656623aee2d09d62a19cfe0500c860","messages_hash":"8f9aa9ab38fcddede951eb4a8fde6aa7017050fcec7d6a8875857e1c31e02e5e","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'cac65adab357eeed5b039069ab22a27c2b15d112de392f7e79b69348af974db3'); -INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f51ad4c2d2618cd85bbea7a7e32dd4836c59f27c71f1d1abe76dcaf0e9327ca'); -INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"6adbb1581d21e7ebedcac6534b1b0b2d5702a766d474be8d47ff89bd87f81337","messages_hash":"772e6cd5fa1b30dae8bd042ea40b3823f7bde2ca8f30655a3a3cf79ba7a4de46","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'7cfb3b5e7a5644021c8ef2a1952332c21a266a112f136f8604b68e12deb834c6'); -INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b58f101daed0b6af32be020845a564b5c7889916ac38fac9daefafb8714a29d0'); -INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"35f7c100279a7812f178be6b9a17fbceb6dd808871c70284b860cbd0ba5d6ba8","messages_hash":"3a68ebab12ea7d283dd6555b22ee56a8cd5590c5bc623cb0120bde3c6c87f657","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'4bdfb30e1943dcad12c73dec0ff8deec0f674608e7cb6ff44c163daa0b93a992'); -INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e925a0c5bc3661c52d1bce3b442bea302b1dc427b06c3864bd0c1a7abedd1fe'); -INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c656ebd9332e92b34eed8569d4c8d706269c01185cc2d8c68679a5b8e1b233e7","messages_hash":"4a36f232509f49d82815d6d1fa0e2cff4eb4597d93818bc0ba19c540a41463bc","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'cc3039e8cb1c22e46d7eb8615c50d51e325fddea20e295e505cf0256b62e2298'); -INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea56f07f56f9f210e9dbf41a4c366a8d5aaa7d727d7107d9a8b39856a578ff39'); -INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"08926eaff1357a61a05c047351906d6b237665709b8dc0e15e50f4937fcb1f92","messages_hash":"2567809b0290322644aaebef8182eedcdb7645e5bb8f337476a1a966c0c9104e","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'bc42acd0f16c301927e3509d65492e509ed067dfa40b93b7281b4567a1250af0'); -INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39f5512236e53449a08b22e5052b5b2419315917f2ed734b8d2f3a86086ddf3'); -INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"91f80b510952a908a3787eb303d07c39fa31d3387fef56b10557c5fef908b0b4","messages_hash":"70837ba7d1b51e01c3c661bdf357bde2fc3a616fcf3be54e732021c1e9ba0128","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'b997c2e25af4c78598885b49405024684f53ce86592501dcb1d8b72c5abf389d'); -INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8de2527f78cbf454fbbd40f46e5f6cb04e84c6b0ff82efdaf408558c42041f'); -INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"06187a3402803c6730a2e06ed501af6c2bc41c6ec7afd5c7f370e6dcee26c2f2","messages_hash":"42d7b391c0b1fb520d18036b028d6a58eb9c8d763aec5ea4bc2c95423c7e1c68","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'be0a4d7234bbd1d439eb9460240298d984b2ddd4d24f84ea74a3fe9b3433dae5'); -INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514669e08048f2e1b738ae3ddaa0cc325d6931a6107c7169bb989e81baac265f'); -INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"ae1408bafd85ff905addb9e2860b771b5e774a27007dc0b960d6b5967de41427","messages_hash":"b5f73ef7ab9aecbbfdf71cfb56dd7d94754d1ec33768862e5be7fe5e7954c320","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'dd3cac56fa8cad4b1084a5cde0c574792e39d58f89cdbc546662f174c1b50159'); -INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'765af41a408aaeac6cb3ee4be39fa4295aca43483752bac286464f556925a7d2'); -INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"98bb1f07c4d25d2ba04082fa439ae38d7f801f25e41b38fa9cf8fc9ae8c4eb9a","messages_hash":"af87cd736d30252c7096e5d8275a2fdc2a064ecd26b83888d42ac6258aee423d","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'fd6b86c0b0b20c8a732ceabeff4e843a214113182570164dcaee980f500cf413'); -INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d54c0f4f3a5c814ace4ead9ff484d16826d0e9393e2dfaf91a776f49d51b1662'); -INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"eecf4354e369a9bcce8ddbbd38fff428b67c88c11cc3841a49aed5a0f1c0e7bb","messages_hash":"05b28bf56a43e0015305982251970bb2fda53fe6a94ab6cbabfe935b2ab667a1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'6281edc34f67fd429c751d1ca3f1b76ae407b4551469e8098c68857cf3d8379a'); -INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1a1001a8c6597469d7dbd1fd5ee9f012d5f07123a30d7fcf92376eecb6c039a'); -INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"f9c3c36ce5bbc78191d60037acfd6e34be40d319743f5d06211e68597b5c882f","messages_hash":"49a78206ea8dd0d168909ec9948e9d9fed2b0057cc19953350c3fa2f61a5ff6e","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'57571e21ad9e1a5f82c1c6f627b4594947a6ef93e97474e514496b52ea0168a8'); -INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d61f0c46773d5898f90bbe4bcbe1167f79d49c5a35f107573cb9c432f4312e5c'); -INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"b3abcbc31c05969844a2c2d49902208ddc5b2037d78140b7a239b54d9e4c5a85","messages_hash":"3adac34cfd07b47889a47079b15372b754fb401d38b80c7ff2a03b8cf80a7747","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'a726d88ca8575834e7edac45b5df472c9c2b8dcd6bf74745452f2b03938c6dad'); -INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49e10d09aed2b54915fdded5153554513d6a1c0300c9afd1358d9824a90ea3a'); -INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"0508cd061d454a440fc276c76553e204743252f18c5701601a661f837d79b6b8","messages_hash":"4d20f17e815114881357d9ce67447438df20eafc1f4ef3628b741692ae89abbc","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'088e828fc21b789fd920c17ecb0ee7d7c6d10ad4cfb2f135cb1ad544d59cc1f4'); -INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e81b74c549479485d5e02f24815777f8c392734b0c119b8c0ea3257780f5fa09'); -INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"daf822fce23df5ed32151a6e46639da2c9e240120f06d7ce1b919eb79bcba765","messages_hash":"ce40c6c56cf49120667499a21de8b8c7248f27829214ad01bb6c7bd6e7a1783f","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'0a870865b9d0aca4cc9c72a9d7daf33f81117d2eab637ace1817f2b8c8483de1'); -INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f817b522158958b8b2882a26bb6f780f6e817477aff16f65994b77cb7399436'); -INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"473682d34faa28c654461f6b3f724c62b3e1249ca032ad8b7b0bd2b438b46265","messages_hash":"c03d52222570b9bdfc8a6e8e891b69927d64bf0544b4ef29126180e399f94d6c","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'4f600a8e0fdcf059b1b5aee8cddf76ab96a7cb0b1b41dfbadc243b37a4fa0803'); -INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3dbb2cdd0e306e221bc02c7efd611f46b848fcb35697fa789d0f2fa0a556eff'); -INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"ad7635b4efa67c7dfca7b6640f4835c6892c778ec942e3dcb7a31706f37e3dac","messages_hash":"07f0e93707a1cf0ffdc1b2aba829102c9b8d51b1149ac10348e36c0166600559","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'e9b0b97026763185a378cbf441c8d37177603c6057fb5b2f7f95b47ede59610f'); -INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6af2b7396d205097dfe4869cc840343cddd153916d58a620d0aad9703afbfd70'); -INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"4a865e2ccc20c4018739a305ba3dc2ece6037b19e593220dd5c4a92ec5d1094f","messages_hash":"fadca60300dab2344ffefb0d896f543fb2ad93d878c26d245c17fe443d083580","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'9d541d93562989207fdac15fe68a7600fecf68e14237f8c2966a28b2cd44c91f'); -INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96da8dced68f038886926019e884774c4970f7190450625527e61051c13b7846'); -INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"6e3420ee8d0c153310233dedf789ca371b301f715884bd591994e1333f5ece6f","messages_hash":"2ac376489f57766a43a7bc5683b7d74ad07fc6f122826a86c63aa54d148b91a8","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'608755cfc131a212d05db0208dff650dc17b78a75b474b1fd50b8d73d80d24ef'); -INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cd00e620d8163a54d7c033b6b895367d7297dbe990ca21ca627709d2a6fdd0'); -INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"8471e6517116f240b952b4e2d3d0ec62443c536783a988dd3eede797a1d2d76c","messages_hash":"55b1853d64e3fc92cc14db74078c6ba570389dbc49db6bf225132d5dbf934bff","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'d5da52bb790ebf6d3650c21efeb41db153f5dafbd1c0ffd546bde172aebf88f6'); -INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e78694d41f5c51338cd4a743e6d14bf48d6ae6a49ef6b9dc3de7a532f7c7e13'); -INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"a94e8b0a8fc01f1c58fb08c9fa90414ccdc3d7d7712a59dd308751900e8c2569","messages_hash":"a099345fe4f1e6cb9e1d33f67c62ed78d137dd9029bd6e132e952e83a818900e","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'bddb79df128c780a9ce39b5acefebb07d82c7ee61b6e54ffda8f7a0bbbf15caa'); -INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0747d159009dd3d782ef5ab4dc37ca56690d19547b6c2e3d0adb660498ab83f4'); -INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"b4fe3e15e99011007d7a94014693d6d3a52c7f1a7677731ceae9305db91e5393","messages_hash":"5ba71809ffb03a8a3762f2be6e7d638a821d39d565f76ef211e17c3c362a6b40","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'d3433f3781a89ce6ed36786db40efb1edd6117133c3a3b9dcab8e27b50c33e04'); -INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10878e3d8e1d671bb0399e84ff7381adafdfaf812957cefbfb0efced2e14ccc9'); -INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"20fded5e1d39a490995d909a240a80f260e1d464781aed65ffdc61f06f9aac2f","messages_hash":"52521e9a17ca3538b1da672d6218d8515d96278e3c2ba6e7afa37b7801fb40a9","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0b2830990630426b0130fd8fc5b1b7110aec5cb047f325d86c575f82528fe594'); -INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d713c43fe4fcfabac92823421994fbbd485a0625e09bd61f279f2e20b3d7e967'); -INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"ba453040cd0cff553185c7ce7b328eca680c443fbda8a98cb95447a3607690be","messages_hash":"204642905108e513c6214526b782c7c20997e22cd7f70f28dc1a1b58c1763465","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'5a4bd2cc06718bd78b1d5c4769c3f1dcd91688802851150884855ab158ecd9fa'); -INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ede54986bcb63b7c25e15d0e463b50548e398f1f1160999116e9733fa4c52e8f'); -INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"8e8f7c4b3bc021c6f82519b7f42561490f1c485ac291bae36bca89ff83ccb787","messages_hash":"8bc6f382389c2c478dae94039c8713a1609c1ce7d8d7b079c391b38001383490","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'d2e9024356696d55acb9301aea3214ae343e23a563800cba92f80928b91724a2'); -INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'487e7efc1e302249a8b62de227705dd9b77046967fae3306c1c94f91bcf07bb5'); -INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ee034779ddf7d6648ca9d9eabea7160e823f6d3e6d103e6da2eb467b8b52578b","messages_hash":"4468339fe08d48f9f87cee55e007c7b84536e9223a638b9feff4829d8e25b4c4","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'8a4afbf9874c7573c8247e7e509b83d0caadd35ccff80488b2b33a39f7b91fea'); -INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb9b3d1231aa3c930e0a7416c26b9fec007c2194eafa28d8766f0e4a5b1fdf1'); -INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"30eec35a6f0ce66bb2847da76c1db8e04bad1e803201ce3b614349e156dcc736","messages_hash":"faa89adddddecacfac4a9f2c4ffe624d63bfdc526d434471aa4a8a9e079429ec","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'1e0096feca4358129a0488e463ce61c52eef533f884d5c54bc460a99e844deac'); -INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23baf0ecd2a5792db4821206b8d2aedcdde32aa321dd0d725c47b959006262f1'); -INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"f1acc40da19500b4c59d7170254baffae1a3cdaf7f35772c40a3ccf98b01e831","messages_hash":"31b67213c54cdd004fc033a7d7413d60c5a06101de6b6e2848306c010a841a33","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'538e36ee4fe7fc4d55cb9c6e64707e59d3616b153c05049474e4ec1a63f3642b'); -INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ca8fe95795b87a2c57f984f2b6e0f39aa8d353b73e6715d03836ffe0d895bcd'); -INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"980679e55d28ac89f00339a3baa3527d70e832f7863f18c73d6b7a78f98e6cfe","messages_hash":"36a256e0d65e45ce7aa82cba05cacd61194ee7251997c3602b617879ba53b9f0","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'a8b08e891a9d20a6c66dae3f16d2807f7fed0c62d33187d96440efb46ec9d801'); -INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44399c9f7239a03b37c3c34e80c716d343ea58d9474f2ef1a2cf7e0d2a24b0af'); -INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"1ecadd2cfc32577b63730df3d35cb7638febaa885e32f92395474475939953f3","messages_hash":"70cbb879f3c021a8f0da4706a104d3753a0eb06ae0c95c6966bae1cd9a0cff4d","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'7eda1fec65c16fa90ff8e3d9458efc627a62f03962a0ce2ee030f2acb6c306d8'); -INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cc630b9e4dc2404c2acd3cf2a91454b1ae591e60346c17a3b8c91cb3865c88a'); -INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"8eb595240609c3388e88718492ecfb4993da14be988d101d28b727c34753bd78","messages_hash":"4e21bd42774938d1f0b89a7dab0065b164e9e397f422c51e6ceaff78f3d3af52","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'252484521fa259de410e90afb9b2f5d9f63bfae782e09f8bff2b64e32a12e94e'); -INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30f91ca5b7d20978e2701b02647a886e1989a1ee134fc38cbd8145d16708ff1b'); -INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"2b0f1cc966b5541d79eda73cdba50adc1d184c4ba50a08cc35e88a6e7429e22b","messages_hash":"81fa4e37865f106abb647c27e97cb746cda6c7109cd03b3da3ea85cba7258f67","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'ea37db21934b5bdeced29475b9d264dfe752f34d43dd7e653ddb0fcf5aeb63a7'); -INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ffe9216ab4f82aaee329502c52470ec7326b8067522341683d6a7b4f1dec8c8'); -INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"e09b8e86068b99d40160647b079fe278e8ad650d7c0d386dc3e461f3470a1243","messages_hash":"1868c8fba30d649ed0785ebe3e963a75f768f84118ea748b816fd276618ee4ca","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'2771491880141fe357911f0ebbcc1bddb77e40a0fd3caf507302ce81cf71f89c'); -INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29fb680447298a0628363d456f508150781656ddfdffd6e20f99abc5443408e1'); -INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"d9af44d5ef29dae8b02e8b75d263409342ec8ae6e8430864b54c7880a7f5c6c3","messages_hash":"b55eb28f40994e9f5774714fd5c294131dd3dd5cabee77e97eb0c806bb64b583","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'eebd5e6e2a9de10a30ff86a75702dd8b981cc4486933e501867db03fde1c1851'); -INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'371712950d794ce4b6f0113b809250f15b197bbd096b11a8e4c7e389b2c0d8c1'); -INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"9dfea74e546e6e2c6f2f7515a806020b8ecfc4641d96ce38c80c92314ff4bab1","messages_hash":"205b85d9e8f7f20a217ebb0c542054b102318399b090e4edd183f76743f25543","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'a8ac07ae151f22735f4b368812ea6a8198c28fbb3c3d0caf3c349b00f25a5ad3'); -INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'776ff4b442ab04dcf00c1bc315557a44c041c0d676cf5c5a7756052e42471112'); -INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"de079bd2525dc61d6e853c64003a1342b2f3fb9787c33e3d35c6094553026154","messages_hash":"f16b69221dfc293ccf07e0c285a71433142c5afebac3b7723b2b07e37577c6c6","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'14c5d61396ae4f3f7a3d944187e596415d8ca34b2aede89c1ca3be23a326db66'); -INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'193c3103838e94383755419a04da4541666c8995641b09edd7e1da777a4544e7'); -INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"fc997ff552a5e76e54aa60bf6eda2a11f487d1411af6e3f3ee663d45f0c256f4","messages_hash":"7212074dc21d188850c12dc0431bf42a56ba38f3b3e4e83dacd7b6d2e6c9ed0d","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'0b842659292055725318f81768aa99dbe84f2f899b4f130bbb8f2d72fdbae982'); -INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c47a7ef5aa162121b9508982e7eb3d3545a36c7865d64cffe4c6842aa627b0d'); -INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"1665453216880fbba4a62d93f083267456082b01e755b5574d4846119b1ed9d2","messages_hash":"ccdcdfabc18f18ebe621152dc545e7c0147a0218a0a1eb166ed9ad1d8d37ca15","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'ce9bb2125fdc8dfe42e775e249063d6df0b2b83f6e99e025f9d897dc9c08a566'); -INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc95746e83c0f62e1dac103c0c06c82f400a7fe77f051c73617dfe171498431'); -INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"a426db725ddefeefd7ef0d944e0f7c18e0cc6d4b7b59c83a588222d227d979f6","messages_hash":"640ec3aab13ff758bc8aa77641e464e062de791f24622481a242cceee7c0a504","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'d9ffe56b2d7d31cce293f3c6c3b0504386c456727a161b840c8797909cfd6098'); -INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7abb21209d8b91f7e6a34ef7f1d3f137e79cf9c07162d35fd3840791f2842175'); -INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1d3840138d386235e5ae18aad84cfc6319e9a0e5b71a589882fa9becab0d267e","messages_hash":"9ccf788f2b2ac01f68a3fa1b8dd15260ff3c0773520beb0c4eeb679909720acb","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'33537815c2daef515d67340b9d878de14567db34f0475bc094ebd34ebf8c2ce3'); -INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2e7eb1809a0ba7d9a2d9d12f62041fd8e5612608733ab2d771734e4bc41b658'); -INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"4b135bb8407b08e16565f7a8bf2eed41399914d25f0ce616ab66e7f041dce2f9","messages_hash":"8ae03e4d7a6f19ff316f8d88289c240b7befd2cbe4804ee42cfdbfad10cd2ef5","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'756cc0468a84e850d68527c8de3430584f550f9168ebb34a56f3cb8a9ccb336c'); -INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1814902ee0613bb55612511cc2198618437c8e6f19f26c7b5b838926eabaa080'); -INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"ce931f2c1628dc6aca317cf4c0b7092f766b65f3dd1d0a297df93a15be2bc7f4","messages_hash":"5d698c7b351745cf976c0b3e8aa6bfcddfae7beaff994c815a24eca9b8ae0bf9","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'bd0bb09b23e069d5bd8082fea47acc5c94131e391409cf3bea2c5eb35fd0cbc3'); -INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d8281f46b112d028960546b4139bb49a403acd4dbd887716127c20616c4d3a'); -INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"7f3fd09382a0eb052fa866321d870a2a309f501a247727ae49dcfc15db01efb9","messages_hash":"c82d21bd980ea512a8e0444ca4fa34a6d2e10362ba7bf955a56f397f02846ba9","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'07a27b1c30930b4088e1e08176927ac38fe8f06016e3b015cb4ed0350409737d'); -INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5bd167a8d190beb217058ccdf0da72299e1c650c337edb80c8b870c50d540c5'); -INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"62dca7de83ed42dcef7925a58a55fb7fd0e550d63b581645b3f6646813e3f2e7","messages_hash":"684ffb2bee28634aaf29b9e65ff1d0673e7c043e06dc3a0b0bed5aa32a2ed626","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'5ffa442ecada154121dc8dd02973ca36b3d2374789f58970b5dd6ca3b4b3da7f'); -INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58cce830e52994bb6c4436f4291817d940d2e75e6944715423ccbcdea745f424'); -INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"64493c4e49c6bef80afdb046f5110af7ef94f51b2583189f4ec956f0400bed33","messages_hash":"832e514e444026ea36f1a03f062862e2dcea6aa3fb0963d8dac13b27a456abf6","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'3d728ad4aa117e4938fccfa525ff2f5352adfbb373cdeb1b55bb30985c534de4'); -INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1afd76cb12e847f9b77c9670a2b31ce12dd49a513476c21db10b6eac62bc302d'); -INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"374144e84e1037bea61433f124e5a561ff22f4a9b3beb0b4b35f332ffc5c1b47","messages_hash":"fbe67a472abdca2d4735dc1ddfc6a74f1eb0be856f6bb8c1212262d10d9b9d89","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'5ebeeb2291ec2fac4fe607b1e7bd37b700ea250d5120d4c1af7685f696fb2ef3'); -INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07474e439b2f10d3f93f95945e4ec8d2249682bf191f20955b0a2b2ac833259e'); -INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"9fd9ca7184fec92ff2c42882dc4910102a902f9f8dc65a06af43d851e7de4c1d","messages_hash":"2f30225b3c1d7d1a1895473ea161f9821a5c9b4547e59d95bae10aefec331f49","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'110ed58da608f0563c180db4457ce544aad565cde59bf36abc5b4cda3a59c9a5'); -INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad1d667181b4b40de957177dfdb7d88b557c73bce7c5976a659afec8471c1ee8'); -INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"adac5790a4ef4b9f11d8dddc7ab0d88fe349d110f70eb37b541dcb322fd518fa","messages_hash":"887682091ee05b459aefcf1a50560bb84fa778d6af81496b4edaf31babde47e0","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'857660746766bd53a6632442f573a2210ad44b59bd06d5fc42c5fe8454774cff'); -INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6da6605f3fdee91eeeb1eedc939ec33c70e14d51693ee179901ae816a83b104'); -INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"fb7e99814e078ce1b13633231e55c53bfa4332db3d0bc4db0931026d35f896a9","messages_hash":"5bf4e31e955883679a9687cce5b4489eb4d3c0ec82b5a5f7a55ab37a1676cccb","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'631301d580efe6ac7d6e6283203f5038ec17b5c1ec08e95751f3c852eb0fa996'); -INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ad4abef6c2f4d177795c348f48bad3c9af1cd629d55895686dc47e30094bea1'); -INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"eea0505c24b724f93e2439e65315335b1187477e92a18bcac5b19f8ac9ef2ae0","messages_hash":"95dc11f26fb7c589962e2c39e3f30833f65bec6f3a06791fde3720661ec5159d","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'47028243ae2c93e5239e484c3397d63ba67021fcde7b0012bd73536d7db823a5'); -INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0184b4f9ba0198c3641b3f870f8bcbc4909918b934dd89730af1298c58c79920'); -INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"387333a8349a35ace438201777dfb24f4da67f8cb04f193bbdb30e4b80437824","messages_hash":"dde2e2b47611823edfd7a8bc11ec3276e10dda785eb9f22f35770907e7bd95f0","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'4768fe1e0978654d64a9b1e1710a8602ca7b408dde9726fee1f866261656a668'); -INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4954a6d13b60867ffc9bac48c6f6076d84809b0b1e860e18d32e84859dbe3a7'); -INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"e377045c6bd52b887c0e940165511d871cfc97b8c6c4d884d873f750f2b49b52","messages_hash":"ab853d91703e95ec75d33798b6cee0ba963c41e182a1d0b088d4d1f06e1dde93","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'1a1a7c3c5d319360a0811688179fa129058993871ace480a5cd3f875c7de3fc9'); -INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'590b552e5584422a3422ff2fe2188ae0635a23d23d50ffd23c4def65f5139c79'); -INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"28cd7147e6985f8a9719bee36a6cecfc02473572383e83e9182694ec227ac883","messages_hash":"c11aa3f88f87829dc2cae15eeb64f18bd6062a79910266affdf2dd194445937b","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'36d8bed6fd6d10c286b5d6609130f2fced5f33b6b547f5ab4f9421cd618f2b0d'); -INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2c81486f37317aa03614cc3b2e6742f887f565c2108b7a2fc755103f0043ea'); -INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"d69e16b5785a1664f86def210208f3104242a4367ab109108f6f995fede73281","messages_hash":"ba1011365ab17e2d3f08bd5c3ffa77902c9ccd67cd6665d625a61454412e6f35","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'2b55c4fbeb83f212f3a1b18b9d59cb6b16786768d5786aebe78c7d2d9fd2b72b'); -INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f48d54ac30e7e6268b4c8e23b93348da17ce7844b7b704adb98ddcf1d61cf33a'); -INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"3f8007041b19c71f4c05d2e9983226fd2055d9a8c3a9f1330395246750053de9","messages_hash":"b2826a500ce979a2b1c845ccb0c9398e795d2f3c75d49c6c2423c0a2c26a1dde","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'9875dbf062b67f2866951ae3f7aae3ef9d1c089af5c55614ca2a5ae0716046ce'); -INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ad7a43daed90a57f46b679e82abfdba3963f283210333e81ba7f4fbb310e457'); -INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"592127376e6605353394d66c4a00ba384701cedd71ff8e4382082417ed25df90","messages_hash":"16d3169c7b2680339f8ed7cf1cf18e30924d981951855cb837b483a449c1d3c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'141486061efe9448d8ee0c24d2c529a46e4274baab30aab0b5dcfae9323d390d'); -INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c320f4631b607d88081d1e43bd918b52105393b0584d709490884a98f229761'); -INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"bd22a75ef6de67eac7091a4ffc032800b2e201ddf437bc603df6514200ac081c","messages_hash":"5efe7db1716e8f25956c4e6c0b31301e8d3294a8526bf2fccdcd95f5b199887e","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'d6459b6f12a1a8e895bdb6068620efde44f762f498d5c0996f13fd27531fe5c8'); -INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d983f7a1736a96e145fa5a8221543131d33a11fc0bf6dcce294cdc75f674afe'); -INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"245895fda6990d365834ff6ac424720dbf6bec821cdc1c1a2f983501e42128b2","messages_hash":"01767344a98664061662ceeb9c6fecbb02dd39f9dedb53a909486c5ecbbe49fa","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'2906b2c1d6c53bc24a1da55f5038adb67b54a69295a78319d1251a86d318e735'); -INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d5c106edbfe6944862337fb546d96cfd9c254f0ffc8058ee2dc65f9630a36e8'); -INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"1a9f8631be73664979bbab6917d85b3a1d3fff298012b0b881bb4e163c68d003","messages_hash":"97049ae93b9c9a0f20eee95a9babfd6a5eed62b5dc8c9c3ed86911cb95e67431","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'87bfe147a51d98214147ac06af121a6d8941deffac7f28a8b7ec26c49c421245'); -INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b81c30086685db259acc4e22b3d5113520f79e0bef3f536451bcb3cf9b06108'); -INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"5879300a2ef086e6d54a7a63ab365a382c3516139e4b40a2e9bd5bee252ae49e","messages_hash":"9ef1b40812a479c3b774efc74c7b59bbf3ff1063b974273bbd0ffba9c2650dc7","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'f2cb1ddf4768cac1bdfe1262cff3ed564afe9ebcc97fde82fef0a5bf66f1e822'); -INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3652bb6ed7ad45e46a6cfefff4f21c98d031af0fe730ac5cab02cfeb376ed29a'); -INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"cf1b0ec4d3658f03619a2e636181a7ace43a0c0278920174a30701fe2a6c34fe","messages_hash":"ec08408a7c7edc2d1d94efc93cd74e7370003ef7c8d8270cea615488108714df","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'beecb7d6958f271072388e722fb9f303a4973a2e725aa2fa0436ee80ce7146d9'); -INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a55d4fe16a7df2d03a2c6653601a16a410f20987413700773219e77405a45b73'); -INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"b1a7cd254ec346b41118f5749cdcd4f5a964a5f5a527eb25e2520381b30bcdf9","messages_hash":"3c7e3e0c0059956e241e080fbac21abcfa7036d372dabd31e8c6e68797b639d5","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'9b7af1117dba09ef09ebf4afc49340d19fc0f691650c334cb4778b0e56e4d634'); -INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a06ace128595e86c16325b19d89991f28b86c8e4c0946464a37ab804a121c0e'); -INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"ace2d5eed01e56073e51162f5713d8a71742f79f89cec9b2359bcb2281f0f9e0","messages_hash":"1024f49151ff82a07fe337b2e3b7cdd4b66302b676bb04fb71483523c71692df","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'64a98af86fb4aad4305c4d49ce5fd82a4fdc695e72c7780dadcd9cb1f54f0561'); -INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85d251464f83a6078114b84826cf9dbd37b8fc078efa826866210b4a0121d5a2'); -INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"4b8aa40c528f31e39a96b675a419aea465d377b43c407014eed137fef821ad15","messages_hash":"5e904d617aa47f4b43718d2d00a461c64474cb286a1b91bb8715589c7cd334d2","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'a8302ba4e5bdbbffb8547762c3040b295d59cf9039288bcb4deb8e27f174a188'); -INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59a4bdc497567a15440349e868b96815857865a0377ecce0bc4a131ffa19afdb'); -INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"9597f98590725e8c735de39f70c3574473334e6316e951171e1779a6db597322","messages_hash":"8cdf72d6b2ebde93938c8c012d1f5a832b7afa90a368384b6dab73665736c48e","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'5736baa88d7501f9b00c354b951dec6a5d095741060369af2693acf29e1841f0'); -INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56fc5dbf396113c1ed234415b68911ab91a3990e55e24a19b67b81b86cb5f7ef'); -INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"f0ac4c1e87157e9916d514fc92b007664bca68c5d8a21a4c306ecb51b5136037","messages_hash":"5d4d5958f04a8dec52ecc31b9c6d820f4b761c39f657c1b11d9e4494c6224289","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'f2a1d912f2f6c6ad2856fe457cb3106335222fec1f936d9f3d76e49379bc57b4'); -INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cec066396dc9d17c4d18ff18bd97f7fb1370e3dccff2aa9cd6fdd727534a7827'); -INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"ec2fbb7be920cdf86b262f59063861c4d96da82ec652ae58106c3dd85f7d9ddb","messages_hash":"59b8776dcf88f59acb79a0b4e590d9ec0aba07d06e3bb8abb776082cb734051c","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'dcd2392b49b108c63afff749be9a27cbbaa1f092662932becd9d457782e9089e'); -INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dd39c2527add7f5804c06727f7f064268889867300f3a7b7a61581c71b2a242'); -INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"6ca89c6105636e23882cf302f30af697645fedae91e7e6f95d44e50743850c9a","messages_hash":"39abb5e2977d785ab7faf6306e31131def0587adffc13eb5745afa0c2a1f1f44","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'4a190f12a16f5639a1018a21358366c8d896a37056c93ee70f6d623b84e83a67'); -INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ed1a6dd2e116c16f27b5dc3d1f027c851fbb1bdc252a5e450e0afcb1c4bd8b9'); -INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"27790803f8ce695103b9c0407ae683b9bf19ea52ef1413598bf6f8e9b4327926","messages_hash":"293fa9c4c9f333e9c9e9f344441d720e54ac6e3863b6959fd59796bfdcc6b069","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'15af2ff0ec46b3c76d0536c6c0074eaa7090d4ce007c032b47e9b5203d127698'); -INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe7cfe8d1f40ebe94ab61c6bf5cc8a45ca25f69012f84f3b52fbc28ebf7c2399'); -INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"4ac731d20f0cd24cd2fe57d3da77ff5be915097f421ff701fde95ca5ffc50bc9","messages_hash":"8506b4e82114c41307385ee8db459a5ff25fd5f9bd99074e3809c1483d9f9675","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'e816a482af34fa75060fe9c794e6fa2dcb055a8e7f7946b6b71cfa0eee9c281d'); -INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'274b514f04613bb82f20dd3abd2ce40ec56d799da14aad18b1d1a0a0e1a2086c'); -INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"19a2e3297758ea4f23281efa44d8539c19f5b8a298cf25e216bae9bcc98d762f","messages_hash":"ad428e50c001eb0b0ab76f94bad122992f1e3a81478533588d309e17cf252993","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'890df9ef94eb21f83a117eb8d06c1b87864731c556aaf67854466f6327983e27'); -INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bbfe7d32eef643fc015eba7e3181c2fc4e4ed353e3221e3cec2661f9a37217'); -INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"87f4224a454bbe33b2b4428ecd185845be0aebe62ea48c45763ba6b5c7961a91","messages_hash":"3fbd20f8055189af9e5666954118371f166297fcea047cc75b9f2dc832ab5a21","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'df6d984d076b4fdb2ad7c25f54866277875a4c693887b69743f8106b70b16100'); -INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60362fad69d473c060dd04122874c864ae9c68eabe4bb550a27560f6e11f6d35'); -INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"7d7fa902df7917f8287497c3ac26be8147cc45eaa5b226a631ea74cd84a55a3b","messages_hash":"74ebbb5f7e7a36e9bad18a3014b884b59c2c8b593596f32b7690660469e5c79a","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'28f909ff9fd21e4b35866a7c2dfa156e96e2839bf2c4f3af42483b78db8465cb'); -INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056e6119ace40e9563994bcd0270e968e926e694f03d53f93d95761e0072f4f6'); -INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3420290781c66427f1efee3a6e4d278221406dcfb5923140b674a096409e20f6","messages_hash":"4338bdfd7088c29dcaa6b87e081f203abf894c4977e9b5ec97c5ffe8555b42bb","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'8842d49b3bbf562f62e81b438b4304906b6e96ebb2fb80f9dcfabb8e77ded09a'); -INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3998991a7d8f16b9d3a0d300abc5f484626ccc454818b7b4e6ead0df990a1133'); -INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"a06a14f65a07611d10fa638c74eeab593cf43d9eb873367e662ed8c26ed1384c","messages_hash":"0189ec9fc4d62406294b3961ffa8b573190724d2034bcc34d2b4fa0838b4adf4","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'c106a9377b0f6bbf43470a0a56cfbc6996b9afdff081f94ee7008da467ee7ab9'); -INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffbdd952417687bbe7403f98d6e38056c071c7dd65bcda3fbf731aee7aae10de'); -INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"4f6214dc778dea72d8341ece8f8899cc7aadf20ee83158059547bca5dbd47daa","messages_hash":"a7e520894a82402efe25240e0f28ac95d30ec37ae2ce031692886eaa3165fd33","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'3fc3715d5a6b189be1f396816571cfb605eee2ed06339aeb4fcc0882102e866a'); -INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ea15d0a4916cd1a8684f0eae396246bcd55ca672c151f8c718c213dac17ee2'); -INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"3546d82dfc53399ddd3e75264979e785fa9edf6cd02017ae6e4238a6f6642814","messages_hash":"31483bef52e3665ae7fe502675f2d299805bfc15db8017fd31bb602a6e0a38c4","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'382ff361d3e550a0ceb99ee376c39b5292ad100009d81e9795a080c775c5d6f4'); -INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6397e81b66d138a12279361c1d1098c11e9067e1e72020adb16b8c4de788a6f'); -INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"e3486d39bfce3ca136fb98cf0444a45c6b3131f1af2d457fefc9e733a5181be7","messages_hash":"dfb709a3b7a24b84d5db377256d54bf8acfb31c0ef474dcea30cd8a8a7fa8220","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'542403f81e86ad92c04c3a5eebf5cd49786b9e119782bc097c8a259cd6af1c69'); -INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'279c104102b5680f51980394e7a99059ba7db0dc3b617fedbb4c6daabcdbb660'); -INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"0df5559e800c5ee7b5ecf96b60c520c54c6449bbc5a9be319657af15306856d6","messages_hash":"c734b11e15b5261097ff51d72b90c1d28c11a7a4451eff04464efe9c048e5439","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'223bbd2a74474fed006fac5f83237c42b31a820536c062f63525b5eab917cfd3'); -INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66344b7f7600b971dab42706d1c1cc5c3595282de995dc52690383e599f212b4'); -INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"ed9a2aa5900909a9d8c4c67d3de558fabcd96d5ea2122bcbfc21472c99079a0a","messages_hash":"87337ee8439ff4677e8bb6f5a5da51b10dfe6858bd2dfda2955028f65ff818b4","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'a047e09ed56e7b889c08553374b300482478849ac7b9d4a639f818553d752d98'); -INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd23b1b5d6e008784409c48c86b4b5fd0883470cb1689d854afaa5d32b156929'); -INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"cd9cc279b140583c16302f0eba2b939180e2815b98ae15d228dc300192c17f5e","messages_hash":"df2c2c7a2ef13183b1c19cc2d3f0deda8ce7edd8db0601fa32f0971944347f86","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'5d6fdef1e00f2018f53da52d5ed4efe34fabdea07879b5288145f2c527c8a749'); -INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33da6b078016b4946be3e1c34c7fd49099eacb292d3e7721fab568bdc1c3568f'); -INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"3c39a332dc80b35d90f1918e39fa09add98e120457d23608cd515699d6404166","messages_hash":"7c3ceb3181cccb85cddf57ceb8936cd9f8445c1ea63b325854ff865492d473a6","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'fedfa2251a23c316d83bbd16b2ac28d5ed9e85d66b34eca9b9c1fd236569a199'); -INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da1af6a39a4721506dd2f81d2eca52868da3bbabe26925691a8f5f372941dffc'); -INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"2430a9f2b219a8dbb0298f9cbe0a55750de545d4c6e57e6ddd84589c189cf018","messages_hash":"ef4a771eb1088abdf6f7ad760ea58195ecb5c426ddc14aff3fc449075b8fc847","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'6629f41a6c5051d75c64b58e502d35071c2f5d0aa977d64bfcc645ca3d47fe97'); -INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'854b0276247cd25919d0e1fcecc8f72e4ae175c861b0b31013fb288c70e4efbf'); -INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"0bea5412de743878a6b93d5dc545610303e0e613372e284e47b44acf18caad8f","messages_hash":"a450b9eeae184f058b46ea0b4b4cacc30a9679ec4539c0ddbfa98e23aba2074b","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'37033dc811e6b6c5d47b72f9f9a4cea8b2209a04f2d1bc5f7187cfa8cd569046'); -INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14c7b19cf6732c4b5583ae514384c43c1c0012b1fb7d97da1eda9071adf89387'); -INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"29ec9b24e05cab6b6ec153a0571890410180d90c635d78a1d51f794e99c6f34b","messages_hash":"b4a5f36a3a4b591596cc35a7bbcaec27996de49cc8a14b364e39494cc8fe3dff","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'869c38e9923d33df8849df6c3fd7c36bdadd2b5469043e312baee2da2cf6052a'); -INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'694575c72048f2af8e2f41a2da3f78cea97c403cace38712b97fff6dfc9c7fc3'); -INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"b5b4d7bd6942a383d8beccd6abd2d3fc04e89061b01eb8aacaba30ba901a3629","messages_hash":"1dd25549d55a38a01b97e005962665ca176eaae497062df59f2c8f13e8199761","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'ba5f9014c770f77193319d764afb4070e76f59c1f9413e0b6fa957101fd1eb77'); -INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad7d96286c7f77cc3f53bd3345fd415f78d670821902b7200d2d96da014ee80b'); -INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"647a079f7aff47da7d93b3e67138b79c4c0727b81b397246a96e4c4b2c2d4c4e","messages_hash":"8ad6692cb925953fbaa3f1260fa83bfd1c45e4b45e182e21d3c4025d8b5a3743","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'0f95a38595bc80d023f639ef1e1d9bea373b1cd18b32c1db72c353add1fd7dac'); -INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'325d88784b46ddc71becfeb3bd0533f4bf502b559c6e8710e657bb7ba4a22bfd'); -INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"fc3e069f902e5237a5027336c75cc4ef188f481f1648c718a8765895ced0c652","messages_hash":"15b59c4838c531e23cc0532bf867d0bfff6fea56987229bc970c1b53c25b8f36","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'b8eeca0e506794b08218d6af3d0f2c40e57fcc5ab826474f4204b6891b85f9fc'); -INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75dbabcd63b9851eb7b2d49b3a3e261473cc573181cc720198ef76fefb81340a'); -INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"b459cd0d0020f02b49237794db3747ed0976dc25feae172ae44bd136c341cdde","messages_hash":"99ad9db5c33f21cfd5adeab03366c04e5043c0c15d48b9d29b6a3763afaa9dd7","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'07ba25043e2875359fe1ac542cb3170a8966f9dd9db57a6e67e4a2046ceb6440'); -INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12fec734b49a9fced85419c6d55a01d0d9f90cf4bbfb75aa1103ca6925239793'); -INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"ecf8ff0df4ade263da6594f9acc7de85ab0eaa6f34b1993ed63a6cdfd7e1f873","messages_hash":"3d26e181364ca71df83be3b7638b38a7615b8d66021c30dd8b6880ffc81ed92e","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'cb996c316c487cbbb4051687c8bacd10750e5a997b43fc2fc25bf15eef75fea8'); -INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2314fcb4ec6263206532a3a831636bc77b87f57595b57a6b3648b82b44a5b5a'); -INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"bbc24eec20ef1e69de813fa5f582b6c6f8992b27bb56334b5182720a700af491","messages_hash":"d119eddd797145ac71e5fffef5922426e3c58f036ca409f4ecac25901694ffe2","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'62e31e03d906f526d602bef81acae7ba758d45dc51b3067cbd810c5fc735efef'); -INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbb7bf4dab1e1e74cff1ec731ce8dec02e5667e2f944c4a5d56e4a54ff8c7ff2'); -INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d1c8d6ebdc20ccf6119cbf1edb324dc888a5a7910a393600a23024c51a8be037","messages_hash":"80b775f4c1670b3183d9b19857c11589881e5d9629b233a152aab3d7944ff3f1","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'f1233d6a917651cd52f4e898969e183e72d43dcb201d80464103b997831bbe80'); -INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b74c0890f113bdc4b19fae642415d8a3ff020b90897c72175713b50d17b1dcb'); -INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"c6d2061d9ec99890ac20d905cc982f49a89fd08c1e5c30fd0465844cd111882f","messages_hash":"c12fbdc22f172389639cd232ad07d547bd93d5b2e489292b5a48239796f23f0f","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb64801eb836107b66f087a42a71811d6a4df49706bbb528628f5a0159a7658'); -INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134b690ef450197b0f427175bd9ca80127b31a62298a9c117d2b2d142f71ff75'); -INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"cd4161f4ef20f75ad8890bf670f6a8b692c4606804d7f70545f23f58ae081369","messages_hash":"7e31270e0c36b8203594e1ecc5425177f034dc0be4a95c9922a9130ccc97586b","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'96654d3770f057ba5cc35f0d021e07a53e85eafdd5dbc03c0ff50d82e80a15e3'); -INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f19b5d81b8f5cb268cc414ed3e5cb7d379c7ba2e59969487db77a6e85e778fe'); -INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6948e25f4bb84859553feced80017b77ca6f9300679ad2b22afbc1dcbbeb2646","messages_hash":"359fb94151573b9c33f5c6bbd30ca86563ce10b40b20f2e3b349356afcdc53b7","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'d4cd8f6ca2cef2a6948568de1e29cce6e0e2e8ecd76d59ea567a98c86fa9fc5c'); -INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a36d05f5ef50ac415d1f15d3506a37be350466764e1f624ad8eb8131484a98d6'); -INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"000238f4e73e1fbb4ac7ade5e2a94fa7e13d3f4cb7a798af660897585aa6af75","messages_hash":"af23fe8b8e766b4eb70954b58d58fa7e0bc95201b21063831bf228d92129b46a","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'0f4b0887dabfa67c81b5637224f2d0f827cca03f45f94f743787cc2f5320da8e'); -INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6efb6fe30820cb6844afc3c3031a39004f0f5300618fa68aa047babcd17a4774'); -INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"4ecf87377e5cf1fbf7020cf30eebc3a4a45b2f5b5e19f3db3ce915e946d98d64","messages_hash":"51b3ddfe78a1c2dcce9bd971ff7e62083dab33c03172226eac80d7973cd58e4a","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'dd6ebab2b22b86f7e6503d55e4f433858119945558211cfb0a457b21c5e5eb37'); -INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a928b1b1ddb50e534671e4e3491213e09f9a09971757197f799293902226762'); -INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"b187e542d718d02cb62ad75d23a75562d474339b3c5bad2b253ed14d6f7ae743","messages_hash":"84fda14346f71b0130dacf8c0884d077c42804d0906eb55503a05f11759135ba","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'e7dd99ae77ac7dd3550765e67040350f497b2e05e69a07abf7e6f04aeecf44e7'); -INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ef46dc86fcc0049dcc7cf112c61e313ac518dc854f627a300f74d8b84e88f87'); -INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"fc10a9dba31fd4976623fb62d5e7e933fcf8bd0e50c5a6733d0a93b2ecbc8b75","messages_hash":"a8c4e86344d454112fd04028555488c18f49072d97584fffd0ea50db0075e888","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'8f50c8e6977586472ee10d5ab541d7a7dd023714762e39758c452a81d3aca470'); -INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe14db68ea75741cd31e987f7383830c1f53cb96e69039121960ae55057562b6'); -INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"a31bf2a11c48612d2ab1fe49d95f65c47ad4cf374a65b38b6473675c3c92df15","messages_hash":"0fd171bb4e999c78222cf6973bb7eba6bffa3f2e0a121f1f5503ce9e372c4da4","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'0a2a4cdaa4a9376fec251367b187c54afa0f623ca89a5f88a1dacbd7fa0fdf3d'); +INSERT INTO messages VALUES(1300,310506,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e450deacc68e8953ddd48ea86d435b59e3272c97aa03123b64b5183f9aba87df'); +INSERT INTO messages VALUES(1301,310506,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','b1342e1bb9d4c6a49cd8a0d39c37bafa71542a7a7320b7405e051173ab21d9a9'); +INSERT INTO messages VALUES(1302,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','01cce1ee5366ca54aecb32e5f60289c246f8256b07d19582833df0fc3c878ad4'); +INSERT INTO messages VALUES(1303,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7a649b58ec646c9d99aa9d3e169cb8481c1e7cee5b8f4ae3703085f16756f4bf'); +INSERT INTO messages VALUES(1304,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f72c8c03a3a556e377844f6e31c77c25add3e2d3c6bfb120beec0b8b4b19289b'); +INSERT INTO messages VALUES(1305,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','01131ee738badf197ba7af3c536762b36da351aae12ba71f82ea34faf1c217a6'); +INSERT INTO messages VALUES(1306,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8464daa5264db14e28ff02b1b222c39f702fafe961a168f5058023b6cd6d027b'); +INSERT INTO messages VALUES(1307,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','d0341eb5cccd62b49ecd84416f4f0ff8acbfcb901743d18576587b9d7c29b5e2'); +INSERT INTO messages VALUES(1308,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','c47b50c7f80aa57b1d9393e578be9c15efc14724de8da16d481b7995b8cf62cd'); +INSERT INTO messages VALUES(1309,310506,'update','fairminters','{"status":"closed","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9"}',0,'FAIRMINTER_UPDATE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','84fe399a8a99f4acd953e7a63cb2ec4f90060ff86b86d8885264f6263bf3840d'); +INSERT INTO messages VALUES(1310,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":true,"divisible":true,"fair_minting":false,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":true,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8ae613a01ed18b346f7f52fac8949d4d0cd32c5a5a39b1bb162d7def077d7637'); +INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','d77e4e4061bc250ce676cad1ba89586a8f9de8079eab1f419998717f8e7cdffb'); +INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'f26f1da057cb3e28c2590257094e6bcaf8a5de01d97c9a4f13353c677db8ee0b'); +INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134dacc503bf7814f9632f55a3acb7225d960280985078a7278332f26277f93f'); +INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'212762325df6d1d3d4cb71b3623ed1505879983d7d83fc55b956c9f7738e91f3'); +INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','d8052b147da603a857298b7d6b47c548aa554131dab7dc244fb792295b207c8e'); +INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','957b9966112007eb63549a762c0bf5876bdcb9335ee126fad415b6d8afb26b4c'); +INSERT INTO messages VALUES(1317,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','15be13c64653eb934d8cff43a9b03c1723c5566b43025c0109e63048afc5d62b'); +INSERT INTO messages VALUES(1318,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','f621d331a0dcd3034d1b1970ad81c8506f13fa3225cbe1c75975ad0c0232ba30'); +INSERT INTO messages VALUES(1319,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','b2117013e345a8ca76387ced8a000862fb30e101c0e921d051c5751c2d7521f7'); +INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a170114679dfc3eca504fc693de892e593b53673f319fbc509c9eaa27df2fb31'); +INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3e4f8153ac5cee861b39bceda2b3e30e26fd818a20d08aff126a669b4f82a125'); +INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535","messages_hash":"5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'44398f07803cf5c8bbd59137e78ea605848eae4bf9db4356d576aa8ddd1c1631'); +INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1717e252c4e0ae0f63516c7980a9bc122761e84b4d19a518d03a8d031233c6b'); +INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'bfca5bb1330c50e22562eb2e8ac8216c15f196e848c10d2ac10021b597e56116'); +INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3044ebaf54a6326c423a330fbe46f53121a89b4f2d46d5a26e907021359b01b3'); +INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','cdc62485e579c6d13dc3b9eb9d3c9f313b4d6366ac1c4601aa4dfe4c1c561480'); +INSERT INTO messages VALUES(1327,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3af5388dcc8723f94add83f0bf7d0078281a68ada5586c3f4916b74eed7e28e2'); +INSERT INTO messages VALUES(1328,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5f4c00fcc42daa377260dbeedbb292ad86ba923857740c2ff43774c4b41a836e'); +INSERT INTO messages VALUES(1329,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','7173216f194afa8889814cdd4ba67529a76fb9d00642c4ef96ef4023d72914d5'); +INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','da8697494088b4f1c3ce4a95866173aab6981c83d792a7681206aa3f74bb9ad5'); +INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','0a5be2a2331bfb0008a1ed52fef5eb60236c6720eca2eaf91a8e323d8b0b67e6'); +INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41","messages_hash":"b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'370af4a7cdb7d2e57eb794125afa08eb125b0e646ba7a37eb67574a1f4cab6a4'); +INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80c8e1bb286d53d08a26ea0fec92800f3c9e41150a737f30af9e59ea6968b9f0'); +INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'40f109b5a4abb9e31d2f0082692ed9403815f45b5d14d93f924683a81497cb55'); +INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','27b628d4a2c638e0fb1c24fe2d01ddc45b2e7be5d00525525e20131480073f02'); +INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','26cc8ec52979861196ce043e4c95b2cdb3f65a5800e40407c28a8bd530ad0d5b'); +INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e49b55bc8408995bdd65976ed0f35e6e9ea06a36f71a92982b000d987cc204f8'); +INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','dfca9a2c5ce6fb504766824e79788a141e893ee4bc4a261235782e1436abe3fb'); +INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','55066b8b200ca4f3f769783c130db29f9c1ec24798dd6925371682cc1eddcd25'); +INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91","messages_hash":"d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'da61e65c73bb53f0df000380ae74683457e46bf1c3ede603ee11307f5ef3257b'); +INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a46607ed609244c08418c7eaef58249015f8b5c07507bf2301ed1229dd27eed'); +INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'95ae2ba0a6f446296a561ffbf4e8f3d0d5c0185cff16458d3a9ce17fb2e49f3b'); +INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','b49f7ccc51ad61ee0c25d063336d1e2636822a1f45e8661fc66a2de983ab52c1'); +INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','49589e67a96ffb7c226798947aa141e252710bcb7ada1c7d5321db5d45139272'); +INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','898aca0ce974e21b33e47b0e8a70f5401d9cb0643b16bdbbb7f056c8f1191ffb'); +INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce","messages_hash":"b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'ced947da162e64803474541613fe18188c2f89f73293f02f9f66043eb899086b'); +INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90c7513cc1353612c2688014ac170b149b9ac7ee8b1931733d7dbc4b6b1fd5a9'); +INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0","messages_hash":"ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'41d930c97019fe00cb671ac618679b6c0793aefa20f817d7357c91e9b4b9dd52'); +INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00526a6416cf1e416137f4ce04def1025d0cf3023f5b1a30a5dfaa70ebc95ece'); +INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70","messages_hash":"4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'08cca90db509e3545850343122cd6f0a968377eb844fc21e449e663346e4f2d5'); +INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccc80cde2c6ce5acfdc4a30aa15c6fe6366961b2b26d38d1ee87d04b9570bad4'); +INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'7a3199f94eb3df9b3ed89b7a5f5de87365a9d4b8d7c938471fde7505f45cd7ee'); +INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3c1bed39eb008bf2b2626d2c7d4817ef6a79eade4baa1f6f7dee4d986335435e'); +INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'35db31b51a73627c48a11fa9e778aea18fb194b49c869bba26d272e1d1b74b9a'); +INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'13226f8cca228b1894117239b91e28341730d7e44cc072dd0747c5161762eb73'); +INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4","messages_hash":"1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'adff0dbdfad9f26587f9796b096c36ef120421f6c6ac697bcb6c85dafb37e1c9'); +INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd42e18a47568ef328092b6f0b9edfc93d560694cd56cc7f93d42079a8c577ff'); +INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f","messages_hash":"eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'73ab1cf7651d16d4871a2455474e3b73ad88b9fd7b992586d154f4277d3d20b4'); +INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0a15a475b92a2b31416e57c793b677351e7b76e4d912f478b41f0c7bbd9ab2'); +INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5","messages_hash":"9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'015e16bcab036bd7a8d4cf050603dd2be3325e3712dc494b95ad21ebd72c46a2'); +INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3643a42680c6806305eb7b44685a6f410997b7bd657d9db5d7047b22af266acd'); +INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a","messages_hash":"7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'656558841eedae1e0457397487c8f6754e95d377107c57609a9ef5e81462e9a2'); +INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0035b1f778a4aacaa0b491e08b71dc179fb0790819d15c1111e6b96ae386e2f6'); +INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32","messages_hash":"c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'de949371b8947022b5b0fdb28d65b0e44a7bec76db0eb758b12c69eed2aadbc8'); +INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14ba58e791d2ead803f0583026a4ae6d258e141b5dc701dfe4709502a6a04632'); +INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b","messages_hash":"5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'c60245be093865d95a02ba6c196b916a32c50711351fc9c1309b0d9a0bc6ccf2'); +INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'631e432c89f5aac6ce33e9df38fbea8d4a7ea5b91d62cd937f111955ba76b49b'); +INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369","messages_hash":"4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'a6b36a9612ce29aae2026fc6508d8a07233b334bd07b62b16fa5c4eac023ee7f'); +INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ecd32182c772bd62e8a97b5979df146a78dcf0d51d67aefdd01c228fd1ae953'); +INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225","messages_hash":"ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'4789577d16ff45616db17a2bbdac2492d833afeaa6f9e1ef9d586faa8937d6a3'); +INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8bdf4234327b9b798eab5d6f345bf30272c70622babae2655b2d94a0f6ccdd9'); +INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13","messages_hash":"71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'ff2dd1625d92d5ee1032c9c7c626f7b9362352280c5854f12ba3a2a41fc631bd'); +INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b757165cdbb5f6eba00097c4e1f0fa96faec5734da4fc64d9533cfe70420fc9'); +INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4","messages_hash":"bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'6e7c7fe808fae8cc3594cdda800da8a8583020f1c13fa0c80a9ed8fa595692fd'); +INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16234a308f94b8eb7bd603daf528733ec3f9740d87d739db62e909221c343e2e'); +INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0","messages_hash":"ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'ae6758534bace298dc45bde39417a331f498d179694322bc21206fbfdb3448a3'); +INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a6e3d545ffff83c6e3b3bb53665cfad94c2196b29f2b8924ff01b05c097719'); +INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14","messages_hash":"908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'7121a2466a07b5db523ed44dd138a947044e971fa27fa650928d2a46db034ea9'); +INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1949891cd22cb25a12101f549b3896695d547cd6fd51ff0393978f7a4de600bf'); +INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5","messages_hash":"8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'79b4473e384434e79bb85c8f4d6bb2181d9b4f2c7037a16cdca9e6c8d722f7b3'); +INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a81ca0c39a9e94a6fa9105600dd0f6f7b660c8f3d2a8c46f70a2f25ec20b69'); +INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453","messages_hash":"482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'c0ed454600a29ee59929955c88b8f5f9d8976d6a6eb289f7d34fd4af65793aeb'); +INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df3782186d95631204510b0ad9550b9eeefa3de537c7312777eaf5589ec25c48'); +INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c","messages_hash":"81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'c4bf82b5524d5c6f792186310f1c98510e5f437701190352cdba234c577ceb76'); +INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b81c68659a0e0ca6da284b55a21e7bb4844847b8cf8b67f6347e0abc238c4303'); +INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505","messages_hash":"1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'3f9d7b3e81331b10af06ba39ff688ddbcc6fb9a1278f106da99f9f6c0cdc65b9'); +INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5052184df5f346d2f4268aad151ca2941ee4f65951cf17147e0cf92187841962'); +INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd","messages_hash":"13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'f626f017328b0ef054774c88f6b48116141d39d3d86602a7d1118dbcea3643ae'); +INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a080d99b9e345091527194d022b742a2d165b3dd1bc3e6e24f3cab2a4f08f193'); +INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae","messages_hash":"04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'a55f1c589166d49e320b6b72bdf3c261044357d0df83c847913217b3125752ce'); +INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0387cc93ba9cb165ad97f92cf81b0515481e6b7bceb4c222e1a8ddb27763d600'); +INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e","messages_hash":"5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'409496e3df0b7d76f8a09ecd41a454d29d3daa3313859bef2e079d22039504fe'); +INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f97ffaecee0165be64f32940c0c95b2ffd3a1cbcb149136745d9643da54c1c6'); +INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8","messages_hash":"8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'acb7e9b0e09a6c214db673001dedcb87a1e95c2a6c6c0117b39d0494c7c562f6'); +INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa5d615a47cc866952f62b0124da64974c3b68c2dcafe6e89e6e9d61e80b43c'); +INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab","messages_hash":"a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'265f2c90f0d5c91ea72ce3cd56949fc882dce6133d8d90ef9d2d4748f63ef8ee'); +INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d944e2ece54058bccfe228773faa278e06be7d2d9447513e121fdbe0670712'); +INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae","messages_hash":"8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'92be58162c1858350835e59de76b94389837623cdc321073bdaaa52fe10eddf1'); +INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8708f2d8553a04a190f6bae3b4926bf146a6fe1beda98dada3cc9ed09b280a5'); +INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c","messages_hash":"e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'fd6b1ccc6813970c90c23183c855bc07fba9791fa1b4b42a3995fe6f57b571e0'); +INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8e1dbe6dbb2546feffa405c96f0191978772e3de8dbe8c931e15cec1e71a28'); +INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02","messages_hash":"944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'31b9edee24d74ba1b20809f1e5c0122e5a0d0fbd6e8555d2311ea5b6931c2bbe'); +INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfe1863976ece1b0772e9e707d2911d9a67264e762c0f1752e3366183cdc0de7'); +INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f","messages_hash":"53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'e6cdf724e258dd3b368a1abbdf37da6f72d6b72cd47409a5cfa33420def4f280'); +INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f64ef5388e0b7907402f72f03e6b1af142f39c1cea9893b4782749ef8b19582e'); +INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352","messages_hash":"a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'5d30fec452a8d7a6c30e0fabc9470468dbb30189b7dad9634d63206b3958d7fc'); +INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'747096fb7d4999ee38e88e41409843f6d4b855e63b8de79735348b0e658b6954'); +INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987","messages_hash":"34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'fc1f72859561256646d273e853eb2283fd9c6607dd4a06ec0cc6362779b0f5b7'); +INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9af1b411ef2cf6d6503a1221602ad10f90602205ae2937d726306a78e9bfd0bf'); +INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab","messages_hash":"5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'e57ccc2bf469bf83bb2ce90653872ae47fee64d6b53415c0ec5cd324c3d27e35'); +INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d64d79a4120dd5c0f161080349f23fb82b1be1af1f469cde3a5be464cf0cc9c2'); +INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23","messages_hash":"b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'8b6bd6b7c861c5f911d24c606d2acbd5d1b9e0a3ac400f66341fe764a33699e4'); +INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dad85d87af501e4687a82b6be71bd3dc117645e1c80831b83aab825bec3f4bd'); +INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765","messages_hash":"985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'0b11104844c833a2396b65e307f3336c7a5fc055ba028d0343320f6085c0ad7b'); +INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78a625a47c5055cc34bf1a3a3f01425fd0cb11d073267a36e6e0afbd665d6074'); +INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34","messages_hash":"3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'207fbbaf7731f7cd98aa695918c070ce1694209cf775ac297573deb8a9a2faab'); +INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0436a7e3cae912625a5f9d5cc5bffc187a8346cff0b1e68f68f26d6a23d05f50'); +INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8","messages_hash":"d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'68c4d579ea9160481649fcf13f958655f77c6f8c0c01c315166ff7ca368b067c'); +INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e6407cd5180990a594104265130f3e9d12cdb46eed20c0c0e88596a3200d4e6'); +INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc","messages_hash":"34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'7c5908836b9ddabba71d6cf48f683500e87ed3524526e9366c6108f800fb0def'); +INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5858fcad2aac5937fdb8d73a9c003e66f33f5997fbc9ad59cfc67b4138e4d295'); +INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700","messages_hash":"22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'57ffa0342378cd1eccf94e73c8798ac588954d31231b3cbf9228e76ecb280d29'); +INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce3a60eea074f9680e2d4093d263f28faab9cf8a4a4c3bae230e3f4f53640c81'); +INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28","messages_hash":"116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'aab08d582ed8b017916a635b651a9cf99676380c1e7c5a643be26f73df6e7c0a'); +INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9bd3767c3b150a8da56f16e386ff8212218d56bd6b6848555c59c8a3dfb9e4'); +INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc","messages_hash":"3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'6e06018eea45ede6cd1b7025291fa327b84b09080100ee5e2d51c32b17bda626'); +INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c11000838d0b85203b84b9761d01349008d508b68c3d3a3df915c2f2bd8dd2d'); +INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563","messages_hash":"7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'9b12098be4b66c02ce859247ce163fbf8d0862003b414f43a0b5f1b909231e10'); +INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b616840e5750db0dca6aa262b35561946ebfa681a9c10af4bd3902b333eb5ce5'); +INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8","messages_hash":"6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'880214785292c1f323da27a5b480ad7b64fb75cd5f94ff1638d329c1593d4ed3'); +INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aefc687ff40dba6ccf83d7d50ade6c04025daea6fa5c07d83518f2d047885c49'); +INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311","messages_hash":"8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'f60c822cbf705df2468a5800ffb13fcc7dfa64796307879890721b7d02efe285'); +INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64203412d84e4d618d11b6439e5c73f0dc27be53cf5a1dd51a073bad2bd99e1a'); +INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e","messages_hash":"2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'55c741e8c69638127bdae8f01a1d4b167f06e5529650725aa463fa9ab87431df'); +INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75f421d6e32031c24457d14119aad6327b29655e2f761691c86d3ab82aecc425'); +INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf","messages_hash":"25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'af6b7554fcf84b1c0c7027c543f71ec918b122b6da8955c5ab037fa18522c6c6'); +INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab354adc2f93fd174d1de93429a4f0cf7e44c3d0e38a2105e012afe1b89ec31'); +INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914","messages_hash":"bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'f7952321c89324e5848143dd7e53e5d999999be9674bf01901ebd5198896f4f6'); +INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eb73735ce1f88f73bf7ac96d0f2002c67d3c26682d790d73620eead6babbb3f'); +INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be","messages_hash":"1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'324be0a56762de0b16844dc3adfb370faf6b1dc0cf44659eb0ca77814d54b684'); +INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98c50a636fa029076a5dd306bb03e1051deb88f7b752fcc241ead7a009b6da9d'); +INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4","messages_hash":"5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'c57d569d19aad22ce1421255c54b56d81582a853d14009f69cd89f0f30790321'); +INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecf22fcf7a24eab487bbbee49316facddbdb1535279c29fd851ff2459f86aaff'); +INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f","messages_hash":"00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'690af0d9de5e2bcd3aabcc6dd7b4c05c5e5e3d3820881f8c758ec595115ef58a'); +INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af4b3a8a72648a521d8c61bdbbcb713fe728093479be08799aea01f87ae3a36'); +INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9","messages_hash":"a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'bb92564b5c77c30d2d597771a28344c093a69bbe961fd2baafbd3d569ac0b5be'); +INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9032ad61cffcc49f51b664ea8e1335876ebd15b73af513e376410126f9dafb6e'); +INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995","messages_hash":"202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'aa7afeb01329f012fe797ae137dc139b462ea852192579625bd108e0a168d887'); +INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'826013962ebd683d51454be21bab6828f8cbe4bbae344b2da614562f12de5791'); +INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8","messages_hash":"9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'08c8940fe4e0164c895d8a29f3c1247d38ebe48de5d9856788f61be8d988f8ef'); +INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6aae31f8eae1321e112afe1a09f7de7c6e6011e8fac1cdeeb1295af6b550319'); +INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d","messages_hash":"70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'18625cbd8486ba47d8c745d209ab4a570a6faaecb4710278929feb51530629e3'); +INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a78c46048151e6688133e6f17baca0085ee6dc9789d8a31dfc8dd06590cab940'); +INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7","messages_hash":"da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'3ae9271d663eb135e106779c365db6353df9014149c9992e2daa1c6756f84676'); +INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01158dcc7e8afce388415b570202973cf40f0af5a120a7b21bbfaed45e5c6ef'); +INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b","messages_hash":"fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'12020b58b5cf481508c1ee6137a5d640f18ad5957420bf7643fb468b98ea106a'); +INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d767b43743138b3fcd9eb175a7ef3a672058204654c142a358a711a0597a0878'); +INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e","messages_hash":"5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'f9b23bd613483673ed658c489fe3ad026c0f09e9c210a1400e4537c261d03fbd'); +INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7faeba2f59b83e773fca1f97b0813b03c0ea514b6feb4785e4e2adf427a8a0'); +INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595","messages_hash":"139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'c46446aa6b97f55211cb19f4a31fdce0de4dd6347e9bd82eafa6c2599c63bb7c'); +INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95d02f5c1701f251d3667f982f0955aaf39b6f3156364204d66daba5f7097dd9'); +INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e","messages_hash":"78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c09ace57b82de2deb342c6c7b456e1e432b02967294c6c3d649adabd968ea4f4'); +INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4678a42e979c5eb7553613dd48ac5793a030fd685d3a2d1c8f1519e24f1153'); +INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f","messages_hash":"aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'8cb12be266d993750615343a98af8a1baa1a5de22466eca5de86d21ec80b7030'); +INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ba1b28e6125cbe947cdbf25b55731d44d642d2b89ef487b852df3003b07b1d1'); +INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9","messages_hash":"e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'7ff05956741f352f02c264dcefd9f49374d1703cb2220125fd9290132d5c7f66'); +INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5da2460eaf85af6f5e44e13ccb1b006a31b116bb60e948825408fe3865c380fa'); +INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959","messages_hash":"fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'8de960a9eb374f17d6a0c1d5398588cd32ccfac5b051c2792695a5b03795f248'); +INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8860884f470c204c2fb0e717ac92d88dcfa1439f63dbfd04b0ee0a588ad4a9d1'); +INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd","messages_hash":"6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'53cc7af43ca7b16a6603c71b78cc3f7ab82685e49318e1b81ebdb87d736a1eb3'); +INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597b1d3b60b6dd643b0d51c0d1662bbc3ab1e994790f8b4f1ab390f863facea8'); +INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335","messages_hash":"cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'bda0c68a40b0de9cd7455ac537f5fcfbe9b6ce25f96a139c6314925e5d5b2c6f'); +INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'509b0662646181039783e6e7a460854121458d6c9b3ae880442cbf0e3947ca63'); +INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5","messages_hash":"d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'77189298cac81f7503dc5b796276a67feb6933e25216ade72ec89c5bd5986900'); +INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb5d05d52ebf5a5e55e6961fcf309255d298ccfc0f1474fed05b01cc95768520'); +INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0","messages_hash":"ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'6f6400d44daf0018805936ed798abff68386e2e1eb31b78f6f78231a102fb22f'); +INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da396731db0fef52304928d0caff44f1957674e6f58d96512e761c1e60c82507'); +INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c","messages_hash":"00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'85e0bae9cbe33ce693fad66993fe85554ce6e89cc1ce916182a87863f5c85327'); +INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'becb156d0f1e3a54fbbe7105173555879e592ad0361ddc52817670ebe22588ea'); +INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04","messages_hash":"ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'633f39c990949cb975721fbd22cace1c051eaa2d20dfe3018e800246cf17cc71'); +INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9657239b510d14e980c647c7c506d3ec8170cd604f700378b6e6050e392b963a'); +INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43","messages_hash":"f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'dccabb3321048e3b81328e83fac4808ff83cd8d48b5d3a89d5151e2ed642fc5f'); +INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e0f0eb2b48396f942933f61415d40925e7862fc4bfd93405553d94daa98557a'); +INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f","messages_hash":"4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'9d888b67325be4f5f49942e2542f8894b875a43a29b027b79e9fabede56f1b39'); +INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47fe8e26a67aab6be26d9f72925526daaabd0a4c01a2fa7f94414a025ce062de'); +INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e","messages_hash":"c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2c3ce2b9d08d2f86a1dd3166a0726374d01f39198bacf249a2ba307303ba0d36'); +INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e573c9d136639716489f7ab293aa55ea5c831b08ce9650d95d68c614fd9139'); +INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a","messages_hash":"b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'1536cd2bb34e266ba3b6e5a953e55b234545d9b7bb91d05e524731934ffa878e'); +INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d717ad1bdeb372d1dfe22201039a791de7208727625220feb0cf0355ea2a04d'); +INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21","messages_hash":"f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'ea0bac623e62cbf22b6c52a7b456efd0f18d1915f775b12802c014ea9a8092c4'); +INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2df65d9c0589d8ba1886fceb4efaaf72189fd61f3cd01a2ea8359737fccfcac4'); +INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab","messages_hash":"03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'05937308f934af2e0a3475c78ad5ded4e99d72b191c5822aaf0fe31d60d60a92'); +INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cde0b5706e8603c0e150ffea69e9bdcba5b2b720fa6cbaa0c08612497f126c81'); +INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376","messages_hash":"b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'d33400446177a9d199734f7c14f4acf86e31816778182f7da2ac53666ab8caff'); +INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b04d4aaf3d502f83b9414de6adca5dde8d990b5822377ac86c03006195e0fc63'); +INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7","messages_hash":"27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'9085a2f6f9c533918a87a6619c38eee884dec4bc9b5ec3a58cbf680fc59ea528'); +INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06dd3c65fecace80353bdbf2e1bd92889abf7e80133b6285c99fedfe7956b854'); +INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b","messages_hash":"cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'43579deccf1ffddf93072239a9e6ec5f5fe82ef788f4201fc08bb47f706c0aba'); +INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f04329835ed5f284e8c53eb9428f2012573c620cda25c6ba15102d99c8eecae'); +INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524","messages_hash":"84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'fad6a912797b4650eeecedf87eea0d4f49ec37aaf5ca071e783d88d7b0227c2f'); +INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5fe4ccaf943500caac624b7fb6c651ab50c7cd7c412daaefb61cd65dee802a5'); +INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12","messages_hash":"cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'54b290971eea5b05d3b0985adec90b777d3932dc44a648834d13fe43aff850f9'); +INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517bcf2ad0bbf64c92596858ccb7d5c4ffcea5513365f13a825fd8351d1e76d1'); +INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3","messages_hash":"4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'77c297567c4aa0432adbb22c652439e80076dc2a57a4cfd75e5ea89902986979'); +INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e44ac5a2fe122e474125f3ece46309d65bd59bd3a4c1bcef52bceb5b00335cb1'); +INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2f3e5dc5199243ca9a8298e25491966e301ff9ae2bdaa2bb1f0d4c842a20d5e4'); +INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'387736348976b67e9cdac5c3b49862e1d9f6fa8b093694b504af55d2c7eca938'); +INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'40246bb2268e5166bc0878b0c18697ba00021a5992ab91dcec523b105455d041'); +INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e","messages_hash":"b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'41737c0a8408f3a97d298a97be8cfcd41202b63aaa8f588fc07275616b1a1faa'); +INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd18a33ad4b03fa6d2197810ba62a1025e13396dbcb164f0a87fdbe99518c80d'); +INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d","messages_hash":"d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'c587af90c64684cb27673dfb100bf094a293ee00044ee89793c9c0b90001b8c0'); +INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'613043a7fed9064dd53ff61a2c60f8d2a3fcb87c4240ac768b5653282f36cbd8'); +INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7","messages_hash":"9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'de3f1acee0f75e9928cdfdf98109e4932f044c6fd0336d47469184f55f77bd18'); +INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af2c2250b9c952d6885edbbac86c6e67dcd1cf0336bf379b4140d623706576df'); +INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a","messages_hash":"be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'5a5761a971097817fa4fc90924a17343102c4450fa3296904e079300e40fcf7e'); +INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22aa929c2ed55161203dd9c4c5680fa7e3e8c33b87eaf8d1bbeef70e945d1e9c'); +INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34","messages_hash":"1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'e5a1b128b3651793685d1c54310eff64dcd26328c5d893ac36e988b085ea866e'); +INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dd565c78bf8458f95d97ab99043f8a98c94823a6796b06f2e8ca1b522aa4519'); +INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d","messages_hash":"72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'204ef167a933eb64c131e24aea8637c9582709a973add95cd140add82e844305'); +INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbd4e351cbc1a498f2371b930004795e12546c33a0c090eeb6ebe6295c064aa5'); +INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841","messages_hash":"332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'49f0b99f8b4e4b4d8348cb76a3babbdb0ad4654f3a3356b3e86a15e25a17a4cd'); +INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9634f4f755cf9293feaf01262f32ca53570e4c3d02a4ff6289b77e3c373eb50c'); +INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4","messages_hash":"084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'5def3988c11e5841b59aa1551a745f035e47313af2b6b92c281a11ab435ed4e4'); +INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'184dce262ea76e559528e70c41d8d97f99dfea63f23367fb9239964e710239d8'); +INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec","messages_hash":"d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'a30b925e4652a811758a566e086f556af09d0a224cfa4a581bf4699b6d8e8689'); +INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'405fa81e50f086b531b69ffd31f604f81c3f8e9f58238ce987505ad253e4b05d'); +INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8","messages_hash":"48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'ca5658aaf0acf069e2a6af4f0cfbd19a12a9519f809808d98968188f4730c47e'); +INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e1667eee13667ac7e82694cdf36970ef6ecd213ef9fbe27b69c4854a9e410d'); +INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222","messages_hash":"b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'706b846d485c3a2923261f4521f777ab7bf58352206ba5cd54aca2c83ec55969'); +INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aac85213b57d04b2da7a31246d81a871b66834a2f7ebb09e856113e637bf93c7'); +INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c","messages_hash":"c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'22361ff3ef3f4c7faa150e1220ccfebac245bed479b572bb97bfa29ef46dc0ae'); +INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'215edb5cf42fe7cc11bfb57064f92186566f0481756eb42600f23fe52c5ce7be'); +INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab","messages_hash":"0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'7cb5ccf924c7ec6739f8e700b4dfd7911492db3aef2d9664171eddf2005fe09b'); +INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b29bd905cff6298c52f64de24e26adc8e5178c54ce5128361291a0b11454997'); +INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab","messages_hash":"71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'ffb27b2eefc1f85ae234a029fbd9450b79c09ec1951e37abfc0c2b3e28222896'); +INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f983fc8ce7e2ed393a6d140c74c903dfa7323b625fcb6f7d0d872d2ad8cb3820'); +INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8","messages_hash":"3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'c357d6305dfbc8dff126880b2ed394ba45bb1bddaada208f9ef84d71286797cf'); +INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fc17a93669999193beef72a8f3e9777c917703311ce353a7eca3a3925d77f51'); +INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae","messages_hash":"09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'4ebe7346bed736aa2cd8e0d4edb1e6b1ca0a21444f4e83af62dd49814e854af4'); +INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef1d2d4820a402534fcf59a7a1842f8e4525065fa79a19c1e672a143536390c'); +INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3","messages_hash":"d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'b8cb9b4450a5847e4fc8c20c91319200dc345f134c52b66ee4e755050fcc31fc'); +INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d41a18f709317a314d73afad424cba8f8c5c37c47549041293677ad0fe3ada6'); +INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c","messages_hash":"f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'ef37b7b2d9449ef7898f05f039cd1467746e4fb7b55e4c79a2d8c653a48f7a0b'); +INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0129fe0f4a4d6442aadf6a8c46262253d262239f299752ba67b0371ab880f8ce'); +INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7","messages_hash":"d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'14759dd69df8d6070c897b93dd14298627401dff90fed6db119818eacd1b9da1'); +INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9f9a9c62f2d2e5aaa497419ed8e78ba7dd023df1871d919ade00bbc4694f9c'); +INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60","messages_hash":"5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5a9382ee7a0d60ca604abcab1bb06ab7c9039c75ec4f8beab5c0c2bff41831cd'); +INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5c0432816bd0b755e18030b773e6a3a0c305ae2bc8d3adc6b2f101061b590fc'); +INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28","messages_hash":"3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'694bf69012c42d6caf72d12c4b151a3f4bcce5a5631a9814b9b93d353695d2ca'); +INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51fbeb50f80600913d0125eb670c725ffbccf972b01f38e7f88376de7fe10987'); +INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9","messages_hash":"cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'111cb18282d81246d634b89fe72536e4108b8a5bc29195e4e5d483286c036164'); +INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583bf73ffb2783ff2b1f7b3a58ce9566e7bbe7cc1522c33f056787420e48d628'); +INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396","messages_hash":"b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'1092c9dce156f69565d41624c6602b39971996b46f07802236591b1863960cbd'); +INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4045bb786b661ee80b56c3e5080973aa92ecf6660bba222d4d07b6df6b929a87'); +INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562","messages_hash":"85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'3be5dd55a0df300b0864ab090694d6c59a06f13e90d02c0c1cebda16458771ec'); +INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b131d206d49d89e8b886c19ae7d18ee20b5ed4be64dd167a24e131dcb8138eee'); +INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d","messages_hash":"08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'ce9e54857a0c5f046aad095ddc57aab1aaa1a8113d9e03ca6d647564a258bb4b'); +INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'188f30e75e2bda92516514e5b17e4e6210052fac83334d235cf61386bcebcb27'); +INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426","messages_hash":"40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'76e4a447ca9d2b74aa7f7188a73101d129deb1becd4050f51681537240bf7951'); +INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36e39754890667784911ec6e2ca362a4a73a98de205c6bc8d5ece6bf81bfe51e'); +INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c","messages_hash":"eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'5ea6f896ea8be94e4cbda1c9b4ff1518e93279d73eceb6ad12eb5ea56f31d55a'); +INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd4f6549093a5f1642388bbbe5d4f3e94afd2f8c8e3ab2794297478b1b856a1f'); +INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346","messages_hash":"b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'b788fa4ff3bde4114cd889c20ad8d24342b49903cf708fb8670f11c048687745'); +INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d2ddeed60607602ed74ef4d4ad2c59bc434fa148409f1f5472f4a951e4c6424'); +INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335","messages_hash":"e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'d300692dc3a55bae3e924a7b98a3cc6240eedb919087a85a7cdc6eb07c3c1fe4'); +INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca64c5271630a33fc826783947d372ceef8a3194e9e422316828dff27bb716e5'); +INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc","messages_hash":"b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'108a9695eb0b45e0baae7825d04f000fa85416c9cee42e185ec902438cb379f1'); +INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'017ddb54b0d14cf2025a62cf526bdfc1d222011952e1854751486337902bde96'); +INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c","messages_hash":"b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'996b8a660604e3f9b6151be89df66f9fc2c56f8ec249b9c1721e6264f29b52bd'); +INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6001cd3adccd1a1ac86d506e0f4de9648b40a715e2d4f686fdbeaaa2fa23ad7'); +INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83","messages_hash":"5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'b412bbd2ef3552a4c181d97fe545464b70e19950f3e96a585ac7101636b63896'); +INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a75c0899728f1f6153a17c8fa49de46bf134e2a779d5b0dcef37be2fe2e89c1'); +INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157","messages_hash":"d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'f1e66b185ce188620965cba4274541c623258117d043c77abf40310aba4e14cc'); +INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'662b66b1981ecbfa2aad52a2ae77779a8b150f46d4e1477afc674113d0bb556e'); +INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1","messages_hash":"0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'b3198a85a379379e83a9ccf5b32af301b092d028effbb96f5d8d27cb4d5bf29b'); +INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b975a1115afbafe4ae082f622865551c11406da5760f605eb5a08f5e563ac3'); +INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1","messages_hash":"473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'de2bac8c44ff6df19691c481bd7ac38dc731e24e2d6154f01ab2b6d2883eca78'); +INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe70ffa9f5f89f73ed41dfa1470dbfe3d1b4caef1c963b241345441e052f178b'); +INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b","messages_hash":"d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'c7ef8c9d483d44ac997a7bb13817a93e0d92689209208f46e1d3536a522064d6'); +INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2abd796c87f86bdfb6e103d23ec1389113d47ab0cc336664386cf775181c42d0'); +INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88","messages_hash":"a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'f9117614165c9050eb4f229989d5b428b470b1ac9f117ace9605f265439ae6a4'); +INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2f85ff6ceef93b8e31cb2c7c6943877b9b31b4dd77d8d7ca1f4fe9244862b2'); +INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8","messages_hash":"291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'0d7ab385d790812f2e1e32ddcc774fae5510c44af08180f11ab4686c29adc750'); +INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b62f127f05d29e0fbbd897a156d3ebb6e2ebad05e7e235f16961957d0d5711fe'); +INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1","messages_hash":"01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0ec90282ffd6131cb9e63c0d0776f78f7a19ca16a9526225914abd6e6cdb596b'); +INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'372a60762834e9bee181f4034b78d20541e315ea5bad5846f31d7a8d714bf710'); +INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521","messages_hash":"1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'445697f033a16c5b6bfc82cb9adc8e0ed88493f25f7d852d016fddd8ffb6961d'); +INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09c0247e64acdf1f0ee2c85f2ac93e6a5161fcd6c76d8f420aaf19014a676a5d'); +INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade","messages_hash":"93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'84b2474da6d35955b5186fab134df170971259ead384062f06b1e1ef8ab93071'); +INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7b332d949bcfdc5dc0cfdaa1b55f6c279add4565cf82cbb9fb37fde0d63a1c0'); +INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3","messages_hash":"dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'202e2477c97756dcc7883361540fca389f720d9c1a1e57362359bf9f6df8e54a'); +INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2698cca55b9cc31f590f98d4ac4a6af0c41e459fb8c961151a3a889757db4d'); +INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b","messages_hash":"8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'a7c7af1ca268ed5b092d518840d6cc28e8126fa7f2d1c92bd3d17673cf3b511a'); +INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bef2b6887c13b9ade440560aa5d917fc1f5dbd11abc03e924b5a284e3677fa2'); +INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7","messages_hash":"b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'d8d7e3a46a6cb37e383fe76b725dcb625391d04f7df5e84f12e5be0d676b23bf'); +INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62b736719bc303c32eb49e4d58908f9db5fcf89f6e43332ee8e1b146c998d1c6'); +INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a","messages_hash":"ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'9ead95d0db457a3494f2bac0135c6b5bf45b5df4aea2f998799c6d0c000eb76b'); +INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64287e18c5eb8e0b15e9aecdd488f8f218439219edea0fbeeba10fe00968d379'); +INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c","messages_hash":"e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'683d2acec515c1903d7929e24110574ceca1ac922a42a25d6c577b7a5f9c9cbb'); +INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aab3717052ff4dac3776794bf94ac3cbb07104baaac2c031288be5d8e8b7485'); +INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197","messages_hash":"ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'167d8cdd1bd57396fa2edea160219ff8299619ff3ac05f344b32fd70f16c338f'); +INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad615f4c284e4790e006e81970704ec5f659554ae5ba5ab484f68f96e9bc1031'); +INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e","messages_hash":"db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'d9de3b021de4237bbcbecf37ec405e87fef1b811e10f00851b0c3557b1ab8394'); +INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa3e7600cc05d70da40352babbe30fd49fed84e7de024f86a4ccc242fbacf84'); +INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988","messages_hash":"71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'16a990d1a234278eefc99eea448e41907bf2bf767d35fb15b17c7adb75d2a6ff'); +INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9b2eb0f2fe907c280b3cb93a781fcf3433ab9c5fc890edb3a3cc18146695bb'); +INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9","messages_hash":"2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'10adfbaf602ceffd1fd14e915fe8a9f78a3e1bd5a4f5854434de6cb631fb328a'); +INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fd24bc738ce8665657a69647aea63c39bd9aa7d0dc1020722507f5e0e054f30'); +INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9","messages_hash":"57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'c5a84ffdb89731f4197c1689f63d93289f0cb97129c16a17ff0f700189df4144'); +INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a29c0b685272d7a2aff1b643fa69e8427d713130cfc61da60ea35699b8a8cf39'); +INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad","messages_hash":"fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'626b43f67e44360bfb073b91280e80af68ee5c519033d3914cd591b115af7728'); +INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b183a0bb9565ed680a6d746251e06811e53da1552ab7cc6caecfd39104891c37'); +INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b","messages_hash":"24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'e483af697633ee460462b9e42bb6c96ee90a78486e8f5b6965a436f55dc2c772'); +INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecd4dcab71260ca92d524f20906c062f3e9135c12a0489808548d4619c27f497'); +INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37","messages_hash":"061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'1795c0bdec11af30a3792883c6d3be0d374435aff3f3e1e541b8a7f9e628b03c'); +INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8de49e297899ce0e3366e35e881ca85ffa0f6487e3dd75e7d21801e5d4c7c45c'); +INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a","messages_hash":"90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'1f1032fb9ee179093ee9ca0c6d887729e1cd2416f704b66adf900c2b67cb67f2'); +INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e970e4ba33179c01410f01f0ab8320043ee66ff360319237efbdcf6376f461d0'); +INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a","messages_hash":"e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'5a575353b57d7daff09963f5b82002212afc32aed0ce15de493931057f347e97'); +INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'817b0ebb6c87eef9d1ad61fa95c75b70a591146186386fe511c5a3fe05321cb8'); +INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200","messages_hash":"429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'cd4cce3d75c635d6a02ae384a2364db73ebd35403747b88d6c18aba557d5dcb8'); +INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'222d301bc40557334a8cfe805be2a302807a02b672b3e08096cfaea229f13e3b'); +INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0","messages_hash":"41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'a4b51595f94c9b888706ce425113ac376106bc8741b067065abdd7d0ea461959'); +INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7bcdf8b57283ecd71e053341e0b7c7fc845adaadc7cf9bedb219316e76bc76b'); +INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d","messages_hash":"70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'a508cc42c95ee5b2efd5aa9ad254d4e7f2b62fb47f8c89f5a82df017ca62ff3b'); +INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e9db64c6e3d2396a71b5f07f7044332159315a259d8cc8799d4c381a3546ea'); +INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd","messages_hash":"e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'c4ac4123fc0bd2afd6613579154322adb08b951d714f17e8747e1e2e57a1cc4f'); +INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0c426b3f37d127aebd5a7e498b48ed975d783a1137c9983a1bd58332916064a'); +INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a","messages_hash":"a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'c86268cb016c7664a9cc2875a26db52bd5874a7cce5310b6970ff501dfbbdbdd'); +INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f332136c25af9b522ad40d9b96c3826382f37538656d9910ff22e4630dc190b6'); +INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac","messages_hash":"b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'36dbf2ebc40df8cad6101a5340b446eafea1a7dc39e4afc0a91e887a93aac800'); +INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef982cce4008e345d5acff80ddc0bd957d942145dd8bb455367356f7c7ea7134'); +INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038","messages_hash":"5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'5aff51c37d52ab5aa17ab9c9734f901d2ac8bf89188c74cf7d052665cb78dd62'); +INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0370c0364fd34f4e24eee38a034a3375a5f80467effecf36993113d88d153f33'); +INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017","messages_hash":"b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'cd856a886d1f632d3e66eac07b01bbec9445ce395d3cacb895d436634e78c71c'); +INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d420e18416663997825a173c8dd1cbe9cb8f015e3b1a004cbc7718f3e093ee10'); +INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194","messages_hash":"5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'e53586f229fb0cf1bb3ced1158705f1da5b8bb1ed457611a951bf463d297240b'); +INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'950de20726ec5a376f0f14b1b0fab77c6ef916b4e2e815aaeb69ab014bb89186'); +INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577","messages_hash":"8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'d88631ed054c5b06c69ec9a97a7f4e187c3468de557208244576980d21fe3a6d'); +INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5692c02681c7afcf08558728fe9e531953fe561f7ad2801546f805e2ebc33026'); +INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691","messages_hash":"5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'b28e86ec6d514252ca17869a171f866feac183cbeda1cb3b5eaa9f7efd273320'); +INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952c7c9872ebb4f31704d486a7c3b4b1bfa17d7bff0f6611fd947a2740718ef4'); +INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff","messages_hash":"3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'4c94c417beeb79921cab0471420d6a5bfaf15012add29f329afd4ab98124a998'); +INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c64651b0f2de2ca41596e9d3aa98542793e1b80b7fa6d5339ebdcdd6618f3fab'); +INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a","messages_hash":"67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e16be21b8acfebe9cfa9c537210b7dcbda8f8fb8272fa95e3c5eaec00280ac0f'); +INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1be15a98fba27c254d024934d6f0512e69fcfebdf501fb1d1cf16990dff4343'); +INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7","messages_hash":"67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'88e4621228890bb2294d50a20cd68261a4a4c198700ad4017c1d700aa86f1b0e'); +INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e276160a28b350428b1cb01e16b1e36dc430c6a157b01ba9bf5abc9f2279fb1'); +INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f","messages_hash":"8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'355a2cb850ee7d921a132d49af5ae65aafd5a045bbb8e79bfa97a47fd2f8bfde'); +INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06259f6aa2c8af767448068cdeb5da2608843ba21b945fd53eb9706c0a363d66'); +INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654","messages_hash":"0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'3e6c300f7160b62b6707482279eb510334b43cf4d0b6eab1fa2d2c8673f13789'); +INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'478ed82b37cb4f76d5b1a2bcab480a23de7bc1929a055deb151ebc6d0ac68d79'); +INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e","messages_hash":"91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b61e771e9c9108e9dd55752d8a7a3d4a0f5c0b3a3d6e95e7aac64f287093cb5c'); +INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea70bf0cea18c3597f41c408b77413aa66d8167bb639d699b86fa246d78b7bf8'); +INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68","messages_hash":"e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'1e264eddc6408294262e4b14802d31f232e00fcbc305b423a939beb2e1f589f4'); +INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'132a946aa3e8485cef7173a52c1240a3b0b4a2ec1338408fbed0863baffe02b9'); +INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe","messages_hash":"0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'7e0d13d5c5a2b5ea70894fce721f09fc6603d5ab9d91b809106b3a45fc1ff368'); +INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3353b048b62c95de22255293aa23d28ae60da4af72ead47c6946ab7b5461df3f'); +INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c","messages_hash":"b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'0a6d68106b95fe75413aa77ebe58dd97f0f0d87529faeffb3577cf1ac040390e'); +INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6f8c683befc8bb778a6ff70a1c6c4d7cd7ae8391b33f616080f4f3da24edc19'); +INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b","messages_hash":"432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'9e48b1a4d509d61c2e86a45fa1d3ca78c24522355ccdaad4cf8897417a944e13'); +INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'118c84f148d4e4fed2ae954cded5ba8594d4f2bb7692c2601bf1b2d52af136ad'); +INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a","messages_hash":"cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'57def8e387221b04d62d9bb9c4abee4b79db74eef35f59ed08317660f52c1003'); +INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e629b43abb61eb58c991d7b2b45ab91f62adfa4442fd39ef82cdbcf5cf32498'); +INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc","messages_hash":"4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'931d0e816cc4231043126395778ddad88bafefbe973f73519f0259a6403b3717'); +INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb83d95915a55325d7e1a8bbeb97f8ee073bf121fae59ccf20590007dbedcbd4'); +INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a","messages_hash":"2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d3f9749a6053f6e0520d83083ea520217764e791d7b33ce4c250e0578cc4858c'); +INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1df8f1e40369702eabbec71df6d4a3bc33edb9f36d90992de49498bad367b7ea'); +INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b","messages_hash":"e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'ea681c0dcf3c2e3c3e7670f40b9f8de4049d1b5618be78204d8c60bfe8e1ac42'); +INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'519d175aa9edd6cbbf9ab850faedd26ee66a5bed08c94f36f7c1247cbe120025'); +INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca","messages_hash":"7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'89ac515e1f974c4c3f39deb4b1d097789349d9bdf9671b08c421dc67f74fd7be'); +INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e63279103557116d8387c26121fb1fcb198529170d02c9bb9fce3380b9899f5'); +INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9","messages_hash":"a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'666eb9f873cda9efc8e8732a152c0009772e240bc6ca3236dd4441a1812d1d12'); +INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1f507874b2c61283e40da56846fc83355befc7c59b97eab1a2e3e8f8fdf689c'); +INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d","messages_hash":"b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'e9b9bb3782009d86025d4dff05dcae4a02a452abed7d9342de407c5091021b47'); +INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1427316f764e88a7a089addef9e223be1d7f4833305c46d329884c61d2866df'); +INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375","messages_hash":"2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'e4760c483088c656ddf264d6cc9fb6fddb83069d6c2912ebfdb9a48864cc009b'); +INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e4f51f351c4582cb03b661d8266c766047d25735b8db2cc57d466a429b5786c'); +INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68","messages_hash":"032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ddd09a5440c181708dbfa5ab4e28a6e19436161b32be0579ada2d02c8ddc7daf'); +INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9b46d9ed6dfa4fca112ff87dfe924536171c13d2f4b6bc927e74fee25eef594'); +INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384","messages_hash":"4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'59464bc118cf34aee73d6005d6bd1cc644bbaa5e8e5447a5ed8b837faf74b382'); +INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1ba4937818e8cb5ad0c02c86b3b5b498c73e19d4f53cc3b4f348531e773445b'); +INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a","messages_hash":"9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'d58f9ea2899da88eb9eab157b926b54bb7babb86ecb025f79130c7207dc798d4'); +INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fed2fe1008c7a34ba733980db7c807c45b3fcf8432011bca59a5111eae41a47'); +INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea","messages_hash":"5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'8c39418b083f3582d3cd13c5b464f9adfaf9c0930b3bad2a13480c1a8b4ad439'); +INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24c0780a45a570b9fad90df58b6137e2126a2a76f6a2f55008ad05438df2eaac'); +INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087","messages_hash":"8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'0a4078b38c09dd6dd041b5fe6e0b77c92b0a92de286f60c229182869b7aa1cd1'); +INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37ce400d14f4ef3d2c1594b349c2c71ffc8cf74b7d8cf5bfe52cff492c366494'); +INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3","messages_hash":"71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'e52358cad6ec248b95888485e405b020b76d7127f3fbe42cc738253b31604fb1'); +INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cc10c336d5acc6383459c2822dc7e0bc60994c1c17cec8bf63722f879d341b'); +INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737","messages_hash":"de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'375746c4494cb7c73a543643b51e84e688b4db404fab382e59cc5f7dd9ca5f08'); +INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0e536402e71670037a0c2f7693ac9f6b524b81c336e41e3f7ae1c3189a1e3f1'); +INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962","messages_hash":"1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'8cf36dead5a061b843d47227ef1b1d77d8222a8fa61eb78cbf47f726974d341b'); +INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3299a61cc0339d7cf533a2c7b92accf3aa468668605414862b01c5d86037a68b'); +INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875","messages_hash":"2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'f4993217aa15337ca41ad884d99ed5dd4ccc62410033a3d3c54b89d61625a66c'); +INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bd96b166808697265c89975ce33e6cf5aed45fdcd5dd51ebea226e3ec7ea8eb'); +INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9","messages_hash":"04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'c71919001acb896be8c0ef2d10779596f0f503451e9012d1957b812b20872575'); +INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8b3f2950d68a363b4f251a9ef08338c4bef871920fc772b67607385f8b58605'); +INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555","messages_hash":"0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'6dcf595297f7543fdf279c68a8f6158209bda76d0cab56d337175747b683e3dd'); +INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11978d808f0f86f284a7b9ef5f5a31372cef8d745bff8e9bdefdafde4937f98d'); +INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c","messages_hash":"e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'ae35f3fc6526c8b9201e02e9e42c5f07bcd9c559b1aee28d53b02ce59d892198'); +INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'570599e8cff5be22d74ae80dc4a894ce65266922829ec2548835b56450b17611'); +INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f","messages_hash":"f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'884ee050893f771e2ab8171ed1b9bef10071ff02a21859ddc5f9116a72f3d4f8'); +INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7f140d8bcce82d2d3791779c51b81dd0cb4da953c39d9d7d9d37ada50e6889'); +INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce","messages_hash":"775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'af5438893a884a96e0dcaa7cd28e21d9d318feef14c4cd5a19098c7c6691b76c'); +INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e394cfcf8041304ffdabe732ccacf31d0a6ab4a2ce0cf2d47fa9fd7f50b7f3ff'); +INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592","messages_hash":"e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'aff87327c2dc50f2e068eb40a85aa0c3b0445f5df42fa7d4ff48540697799743'); +INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bfc25d2069cc3df6cafd6821e9efc31ccad439b4f425e7159ef56b86026d5b0'); +INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472","messages_hash":"7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'5c36d51d4432badebb205194e03930633327454148be26a3c4cf2180607c00d4'); +INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa323b026571a02673f80fc6f329c677ec886accfb7402e6df7791605407963'); +INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34","messages_hash":"31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'e409cdc8d45913b73999413860ec212f6b88c593c9bff35e72b6373c610a1fa7'); +INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5f4b3ad489407fc5b270518cb57e450c306a430ed9cb883896ce5590325a38e'); +INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f","messages_hash":"891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'08f6cbf421e45c17988ddf1ae48edbfed00b6fd98b3ae2c397efd2eb4442fbf7'); +INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ca74cb9554f057b45021ec12415e58999846f4bf094afbd240d15fec0e7467d'); +INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a","messages_hash":"c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'ad341e6285b38e423cab2a587f9f18113ab1b5b919b31de13d40f026c0f99d55'); +INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e946e5b1414b12dbc980742e823cfbcab61b835731a486e3039bdfaf5941ad32'); +INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3","messages_hash":"d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'b423d04bdd25d14bc80608d0a4bed5607b1ff4efd93ca91d4983636f3f559924'); +INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a6fc423885d3ad5182e23e1499cc5b86a3d5e83f1081802d6519f7ee79e123a'); +INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa","messages_hash":"a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'af041db9cf85811b54e98c267e64c2c7695efeada4e676ea83c4889fa9353106'); +INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'485ee641d2e380495869a947d2cc33b66cf86eb59ee1c09a012847390dbf7fcd'); +INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8","messages_hash":"e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'35ebc398c3e129c1995594f28d38d913781552ff95f56d668e94caedc38ea73b'); +INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1669673a5b93c6fce85bef41cc8796ac9b7a3e37be8f2737f37e074c2759d4b2'); +INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516","messages_hash":"e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'84c9c3c820ead2dc63ad1ac79d92d81265685bf973d8111e59519fcfab479572'); +INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8680a4b6afce64bb8f69ac7b3c678146877a5bd5faf7129baa57b4a6b17586e'); +INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52","messages_hash":"7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb2ed6c24c7e8cabac83108f016701f63e85142c36bb642e13413bd2b0bdd8e'); +INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7c9ac7adb6b3f8e967861500de50b20676bf1f6367ce2e833f416b4afb147b9'); +INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737","messages_hash":"25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'d37bc5033de69b81ec98e3efce5efba37e1b09aa0b4b000741b468799399b08e'); +INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1437345d30a80c61da2eaacc3242745332f339753bbbf6bbeb39e4cda7218726'); +INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96","messages_hash":"18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'2eeb7269ba3b87d9bebf0436ccd58356ce90df5e66d9fa370566594ab79f80a7'); +INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b2d26055f70e0891b490c50fe3b225041370f1d48ac9a152216e5aabb96d4'); +INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54","messages_hash":"9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'ad8348090c4977771cabf0be6aea102878b385644d6b22028bb5432929d5218d'); +INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29744c82886875ebc4d20604e84e1755750d2fc09c4b804f1d969e3a5eeaf8bd'); +INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753","messages_hash":"c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'572614f4437802b5578d52897e07b143ec4f83736db82432482f3fa264532612'); +INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a76ec172abfe7896edfaa6fa36361cc318f693c65a08b2df197151297b5128f'); +INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5","messages_hash":"923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'46497010293ec1f195b396441c3c70fba3c707f12970c77d35f8db09f3cc1990'); +INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b3faafcee1252e532da4f2a65605cdac0c34f24c4b0ec1413903c15e7373990'); +INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638","messages_hash":"a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'b3d5a94902e1186fc12278dbdd1f932c1e4e327e32d8c93264523ad31e34c535'); +INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31742b197f42de272421c351e356d94f6699bb0d5bad00e9142c9fc2df3e72cf'); +INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2","messages_hash":"70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'d44081ef15bc4521ac345a6b37bba2287c806862180e65fa3096c09019ae6b77'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3679,7 +3680,7 @@ INSERT INTO issuances VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e554 INSERT INTO issuances VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',0,310503,'QAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,310504,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',0,310505,'A160361285792733729',10,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); -INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); +INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,1,'valid','',0,1,0); INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances @@ -4240,6 +4241,7 @@ INSERT INTO fairminters VALUES('13e642d78db80af715cdce12a9fca81965752bbfb5954934 INSERT INTO fairminters VALUES('9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN','','','',10,1,30,0,10,20,0,0,0,0,0,0,0,1,1,'open'); INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','QAIDFAIRMIN','','','',10,1,50,0,0,20,0,0,50000000,20,400000,0,0,1,0,'open'); INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); +INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'closed'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters BEFORE UPDATE ON fairminters BEGIN diff --git a/counterparty-core/counterpartycore/test/parse_block_test.py b/counterparty-core/counterpartycore/test/parse_block_test.py index 288d56565f..7b30a8f18f 100644 --- a/counterparty-core/counterpartycore/test/parse_block_test.py +++ b/counterparty-core/counterpartycore/test/parse_block_test.py @@ -18,9 +18,9 @@ def test_parse_block(server_db): test_outputs = blocks.parse_block(server_db, DP["default_block_index"], 1420914478) outputs = ( - "0ba95e2123f1bc43538056308e32b84fe47620535b832b43880b33fee6a952a4", + "cb23f8da1133df452987ffae9aecbdf89f4ce7a94aa333a96af866135b86cdda", "37cc718b2f137ebf253df3fda8b687f5d62d7ed14a2e12397792eb0db24f220b", - "c7ab761a931512795fbff5495a87f965fbee2a351052bf1c4a0fb0f6b7c94bad", + "113eb9a87efe0e54e97a4eeec1bbd3a17e14f8f25ac97d9daf435f2b6f30372c", ) try: assert outputs == test_outputs diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index aace606794..a2b5d46a4a 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": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", "difficulty": 545259519, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, "confirmed": true }, { "block_index": 231, - "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", - "block_time": 1731184482, - "previous_block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", + "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_time": 1731186084, + "previous_block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", "difficulty": 545259519, - "ledger_hash": "11c246ed523078cd7e8965a824d0119efdf29a8804bd33d33ca62c2403a0b882", - "txlist_hash": "3fbc589ba1d4b539ac24986e9d9bff9df88e645a9c769cd1e29d75344774cdbd", - "messages_hash": "36f6a025cfc80555529f8caec4676afdb16cd570da5a581240de2f0a99bf9ab0", + "ledger_hash": "ca3c4f7089c52fd9a659c33a8fded7797b922145a91020e5fbfadcdde341890b", + "txlist_hash": "01b00b213394a9828ec789110dea92e962e65602a186d2875b275fa8afae841d", + "messages_hash": "3930ccb9531dc440bf85362b938651073436e07b4e305acc7c3d5b5a40f1963b", "transaction_count": 1, "confirmed": true }, { "block_index": 230, - "block_hash": "306e9e2f00118d4c0400e18e8062a70c27af0322a29b4e5f942e07fa55108f60", - "block_time": 1731184478, - "previous_block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", + "block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", + "block_time": 1731186081, + "previous_block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", "difficulty": 545259519, - "ledger_hash": "33fdcc74ca292b56bd8e71f64e3369e2b792b9e972243b85ac0af8e0bf054a70", - "txlist_hash": "365ae250857a91e801ee6966be0b44f668ad99d044717e3869fd3831e38178fa", - "messages_hash": "1d5c798b9f942996c52e60a9a6e43d95591b20fed7580c248773db61984177c5", + "ledger_hash": "e0bb06557b7720f51532f4e83296ae9c1b8162bc033a2420abad8c7008b9a669", + "txlist_hash": "05061ecef04b7fd693f304243f2efc869585b039461313635eb71aa5ecc15643", + "messages_hash": "396d19e50661f5ef2c4d7e23afbcb72bf20a4331929dface107a43c8ea475e40", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "3e851f1519650f128bde40ac2f25c5efcd612127b2423e469cd5232692c56aaa", - "block_time": 1731184475, - "previous_block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", + "block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", + "block_time": 1731186078, + "previous_block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", "difficulty": 545259519, - "ledger_hash": "15ec1959f8dc3168ab10b11d8a2deec8823aa3351391fa98241fad3d7a34efc8", - "txlist_hash": "77f626356011bb7d0ccfe8c2dc08cad94edec18db47b3386f6b85fbef123fa55", - "messages_hash": "903edeb4afd0c90a0008385340fa0e35c9cc51bd2688780d7422a75d73cc30e4", + "ledger_hash": "53704ce85f4da6f74f6dc3d98cf0dc80108e3c5b58a160639742ae6cdafa7477", + "txlist_hash": "d5c28112d85d5dff5d4eaf60427db655207c4ad750e2afe35a07ed13e4df5908", + "messages_hash": "87238fd182eb7c10d2aa871ea400fc6ef01e665a8893cc01bf3aec59fd5b3f81", "transaction_count": 1, "confirmed": true }, { "block_index": 228, - "block_hash": "1a9d61d11a183b91ea9601b974513933b27cec3b611fdf588f0523812abbb1e0", - "block_time": 1731184472, - "previous_block_hash": "3ede6bbb2adee6e46b5a265dee848ffec70661bcd0efdd955bf516519eac20be", + "block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", + "block_time": 1731186075, + "previous_block_hash": "7e2b281286b3cff670b7fe275673eefd7a0f2f70388387221c63f80886b531d0", "difficulty": 545259519, - "ledger_hash": "aa118d35ee0a7751beb9ef7f012cb0d66a39cc29ce75712ebb989d622fff1546", - "txlist_hash": "b522056a36d1ca482065c99a9f13e8268804089c904a901d45aae0f8801f2e2a", - "messages_hash": "ca2e57717c1dbbb76a793c25e740cd6d09f30a7777a9bd845087762013636a8d", + "ledger_hash": "8ffc99e81909e542bb7b9c974b7eed20fbb2def0e480172186434b2e7f97a0c8", + "txlist_hash": "556668e36b9bd20c541cb93cf0c5f747f7a930674bd28c6c07010b19d56f15b0", + "messages_hash": "2492823aeb0c9fa0b1712cd80029a14e32c8f3d108a72ce2877e1c7570746de7", "transaction_count": 0, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", "difficulty": 545259519, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", "difficulty": 545259519, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 905, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 904, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" } ], "next_cursor": 902, @@ -256,16 +256,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 901, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" }, { "event_index": 898, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb" + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 232, - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "object_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "block_index": 211, "confirmed": true, - "block_time": 1731184399 + "block_time": 1731185989 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "status": "valid", "confirmed": true, - "block_time": 1731184268 + "block_time": 1731185845 } ], "next_cursor": null, @@ -481,19 +481,19 @@ "result": [ { "tx_index": 101, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "block_index": 228, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731184472, + "block_time": 1731186075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false }, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -565,10 +565,10 @@ }, { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, "block_index": 231, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4", - "block_time": 1731184482, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_time": 1731186084, + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7:1 2 ", + "utxos_info": " 5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -815,78 +815,70 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "2e505dc63ab82a07e0134e27ee3e181ad2fa0c76fca87c1399c81e925af58b90", - "n": 0, + "hash": "e18b61bacd0649e2505d8b70080199051499127a6fbffd0dae0826a3ffe38693", + "n": 2, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ + { + "value": 4000, + "script_pub_key": "00147c2eff327169216a21c7c6d128cf4a981d0ef808" + }, { "value": 0, - "script_pub_key": "6a2cbe28aca0dafb17ce1f352590c02cf3a41b87ddd104da458fa211f15fb259be15ef10631daeefe49bc63a67ec" + "script_pub_key": "6a0ac6554c8d67f4f43cacdb" }, { - "value": 4999990000, - "script_pub_key": "001479eb4f94974a9b1861dd9e7d28a893892d6e30ed" + "value": 4949834000, + "script_pub_key": "0014d1d6cb957f70d439e67ab9c0f75ca54e4c052518" } ], "vtxinwit": [ - "304402201efe949f5a57603f18b8f3364124342f4d944bf586d6c123567cb68e7282681c022074a79d6208049aceb10e3b4b95572f41c362f867a97c85ede1573777b9529ead01", - "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" + "304402203e35c7eaf7728c3986228ba393a4cbc5b70acbe85d7faff2c5d2e5c1352424dc02202cd25cac7de59449c0ed1b15324b802e71bb8c29709d12bf176c785660b0341901", + "0249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc5055" ], "lock_time": 0, - "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", - "tx_id": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4" + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_id": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019" }, "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, + "message_type": "dispense", + "message_type_id": 13, "message_data": { - "asset_id": 101158363923, - "asset": "MPMASSET", - "subasset_longname": null, - "quantity": 100000000000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "status": "valid", - "quantity_normalized": "1000.00000000" + "data": "00" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00004000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "88a4f9b6979aaa04d89bb5045fcc3e503b4ee53a928cb8d18ff84aa25913b7bb", + "hash": "3ad0b9a2684bc6b78db99630427a5bfd239d43dae592bc3a03a6dd8206afb71b", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -896,20 +888,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e8dfc30a1336d8a0b0589e56c79393ca3e528fe19c786b28f17a4a13023d3a0a6b94ff71b237f9be8de6c4da1cc4e" + "script_pub_key": "6a2e37300bb519db38b5a92c905ea5156c711b102011d3ab46997e45c53303c290c7f3401218925ac84764dc2b1c7f3a" }, { "value": 4949930546, - "script_pub_key": "001496548f3528bf80e16d1280561f950636bb3078d9" + "script_pub_key": "00144acd4545d8daf86927d7f9b0476f3136db640f72" } ], "vtxinwit": [ - "304402202494c4d20fcab8e5a787c4baccf0781f09e202d2b1069fa8bd4ae505cb42042b0220578c6e05c8202a060c0c3e7d8d949a7d1d20ad21ce55f3886e97491bd5bbbeb001", - "02d6b428bff40e29aa065eb0bedfdc0f23953ba2300678c8811de551c15c226f8f" + "3044022051791c0420151a1f74fdede830ff3d0b5452406ab52010fec3fdb13f3822f771022057cb135e77dd0de1fce640c8743d6c3992e6f9ef8ae54d294c54040960ff5dd501", + "03c097cd32001edf5502b0ef55a1a28c617bd229d511e563b2309e36eac1e9213a" ], "lock_time": 0, - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", - "tx_id": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2" + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_id": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927" }, "unpacked_data": { "message_type": "enhanced_send", @@ -917,7 +909,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -944,17 +936,17 @@ "/v2/transactions/": { "result": { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -969,17 +961,17 @@ "/v2/transactions/": { "result": { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", - "block_time": 1731184491, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_time": 1731186098, + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -998,12 +990,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 905, @@ -1012,14 +1004,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1030,9 +1022,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 904, @@ -1041,9 +1033,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1053,24 +1045,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1080,9 +1072,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 902, @@ -1090,14 +1082,14 @@ "params": { "asset": "XCP", "block_index": 232, - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "msg_index": 1, "quantity": 2000000000, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", "status": "valid", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1107,9 +1099,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 901, @@ -1122,12 +1114,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 905, @@ -1136,14 +1128,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1154,9 +1146,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 904, @@ -1165,9 +1157,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1177,24 +1169,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1204,9 +1196,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 902, @@ -1214,14 +1206,14 @@ "params": { "asset": "XCP", "block_index": 232, - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "msg_index": 1, "quantity": 2000000000, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", "status": "valid", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1231,9 +1223,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 901, @@ -1243,10 +1235,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1254,7 +1246,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1267,10 +1259,10 @@ }, { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1278,11 +1270,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1298,27 +1290,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1333,7 +1325,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1354,16 +1346,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1373,9 +1365,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 901, @@ -1385,12 +1377,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1400,9 +1392,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 898, @@ -1412,24 +1404,24 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": null, @@ -1441,16 +1433,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1460,9 +1452,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 901, @@ -1472,12 +1464,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1487,9 +1479,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 898, @@ -1499,24 +1491,24 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": null, @@ -1529,7 +1521,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1539,7 +1531,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1550,7 +1542,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1560,7 +1552,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1571,7 +1563,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1581,7 +1573,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1592,7 +1584,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1602,7 +1594,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1613,7 +1605,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1623,7 +1615,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1637,17 +1629,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_hash": "7cb69028b1a5d53ee798c7800f6d84796d833751ddecbd7cdffae070149851b6", - "block_time": 1731184355, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "block_hash": "0c303fcd060ff510ebae178fd2bce46d747b73a2f7994ed0b4bfb34a8005c4ec", + "block_time": 1731185957, + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729:0 4 ", + "utxos_info": " 11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1655,14 +1647,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1670,7 +1662,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1689,17 +1681,17 @@ }, { "tx_index": 80, - "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", + "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", "block_index": 204, - "block_hash": "3f4feca9e0eb15fc2f0c0bdf2f1ebf3bc073809798605bf05451a8e233d121d7", - "block_time": 1731184351, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "block_hash": "2e6cd1b41572df6efd98a88f5c70314eb0d987ec4b2d763806788f4ade34bca4", + "block_time": 1731185953, + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038079eb4f94974a9b1861dd9e7d28a893892d6e30ed802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f72c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319:0 4 ", + "utxos_info": " 582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1707,14 +1699,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1722,7 +1714,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1741,17 +1733,17 @@ }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", - "block_time": 1731184347, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", + "block_time": 1731185949, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", + "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1759,14 +1751,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1774,7 +1766,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1793,17 +1785,17 @@ }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", - "block_time": 1731184342, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", + "block_time": 1731185934, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", + "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1811,14 +1803,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1826,7 +1818,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1845,17 +1837,17 @@ }, { "tx_index": 77, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", - "block_time": 1731184339, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", + "block_time": 1731185930, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "supported": true, - "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", + "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1863,12 +1855,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -1888,29 +1880,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "block_time": 1731184461 + "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "block_time": 1731186064 }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1920,37 +1912,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "block_time": 1731184399 + "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_time": 1731185989 }, - "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", + "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", "block_index": 211, - "block_time": 1731184399 + "block_time": 1731185989 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731184399, + "block_time": 1731185989, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1960,9 +1952,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", + "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", "block_index": 211, - "block_time": 1731184399 + "block_time": 1731185989 }, { "event_index": 698, @@ -1970,15 +1962,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "status": "valid", - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "tx_index": 81, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1988,9 +1980,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_time": 1731184355 + "block_time": 1731185957 } ], "next_cursor": 698, @@ -1999,17 +1991,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "quantity": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "status": "valid", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -2020,22 +2012,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2045,22 +2037,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "block_index": 232, - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2070,30 +2062,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731184495.3943753, + "block_time": 1731186102.4815562, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "destination": "", "fee": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, - "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", + "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -2107,7 +2099,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -2116,7 +2108,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2124,14 +2116,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2139,14 +2131,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2154,14 +2146,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2176,7 +2168,7 @@ "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2184,7 +2176,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2197,7 +2189,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2219,16 +2211,16 @@ "result": [ { "block_index": 225, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2240,16 +2232,16 @@ }, { "block_index": 205, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "event": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2261,16 +2253,16 @@ }, { "block_index": 204, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", + "event": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2282,16 +2274,16 @@ }, { "block_index": 204, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2303,16 +2295,16 @@ }, { "block_index": 202, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2330,16 +2322,16 @@ "result": [ { "block_index": 203, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2351,20 +2343,20 @@ }, { "block_index": 203, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2372,16 +2364,16 @@ }, { "block_index": 202, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2393,20 +2385,20 @@ }, { "block_index": 202, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2414,20 +2406,20 @@ }, { "block_index": 201, - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "event": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184339, + "block_time": 1731185930, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2446,9 +2438,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", + "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", "block_index": 128, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2456,7 +2448,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184010, + "block_time": 1731185588, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2466,15 +2458,15 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 7, - "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", + "tx_index": 8, + "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", "block_index": 112, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2486,10 +2478,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2497,7 +2489,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2510,10 +2502,10 @@ }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2521,11 +2513,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2534,10 +2526,10 @@ }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2545,11 +2537,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2558,10 +2550,10 @@ }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2569,7 +2561,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2582,10 +2574,10 @@ }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2593,11 +2585,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2612,10 +2604,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "cfab684ec8edd380be6c9db2ca32fc6dbe63b99b299031523dc692ab1206395f", + "tx_hash": "d716473e904fa7dff860001bfc889a533c80bc9cd4a9613c4072acee63c491ef", "block_index": 142, - "source": "7dc2e6130fd69aba3e5d5ad0d0dad43d1b6432f92a1ebeda31dca29605af0b5e:0", - "destination": "bcrt1qkkxmeav05j5yhqensuga38zsgeqgdj8jl6u4t8", + "source": "c32e3600404ad843d8cbb61a672536529a761e48a9601c3d2a0a2e33755bc398:0", + "destination": "bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2623,11 +2615,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184082, + "block_time": 1731185648, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2652,9 +2644,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2663,7 +2655,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2674,7 +2666,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2691,9 +2683,9 @@ }, { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2702,7 +2694,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2713,11 +2705,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2735,9 +2727,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2746,7 +2738,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2757,7 +2749,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2778,19 +2770,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2798,7 +2790,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2813,11 +2805,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2827,19 +2819,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2847,7 +2839,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2862,7 +2854,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2876,19 +2868,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2896,7 +2888,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2911,7 +2903,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2931,19 +2923,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2951,7 +2943,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2966,11 +2958,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -2980,19 +2972,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3000,7 +2992,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3015,7 +3007,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3029,19 +3021,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3049,7 +3041,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3064,7 +3056,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3084,19 +3076,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3104,7 +3096,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3119,7 +3111,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3133,19 +3125,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3153,7 +3145,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3168,7 +3160,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3188,19 +3180,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3208,7 +3200,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3223,7 +3215,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3237,19 +3229,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3257,7 +3249,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3272,7 +3264,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3291,16 +3283,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -3311,14 +3303,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", + "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -3333,20 +3325,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184325, + "block_time": 1731185927, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "b2dc06d29e525017a11adcde012b34a5068a242556928012dc3728a2b6d2a718", + "tx_hash": "942ff026a95e1761a6f0dada7624e857874fa8de566a675304f81c8148898c00", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -3361,20 +3353,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184154, + "block_time": 1731185723, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "9c7807985defc6a3735e70993a5ce53e92fda09421b10a2c13252d7e4446d2f7", + "tx_hash": "5d8559b8ea714872fec166bc290d687ddb2c145b1e3b8e47524942db750f1610", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -3389,20 +3381,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731184140, + "block_time": 1731185709, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "75b01e8e818dff557e67c2b88e6daa0b01f41bf2cc67aa060f3c5b44cce93a28", + "tx_hash": "ce8ad8a3f3d13aaedf8cbe83bcdea291421aa6877ed5631f19948f42c5de6a87", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -3417,20 +3409,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184137, + "block_time": 1731185704, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "ff2ebb8c2298f81c37ccd43530558b91b6e2610eb6f80ca58bd160e34dde91dd", + "tx_hash": "483971048fdc90f87cc37efcd8ac84bee20a87cd418b69d5a3edc61861d290e7", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "transfer": false, "callable": false, "call_date": 0, @@ -3445,7 +3437,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731184133, + "block_time": 1731185700, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3459,8 +3451,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -3468,16 +3460,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731184325, - "last_issuance_block_time": 1731184325, + "first_issuance_block_time": 1731185927, + "last_issuance_block_time": 1731185927, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 10000000000, @@ -3485,16 +3477,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731184133, - "last_issuance_block_time": 1731184140, + "first_issuance_block_time": 1731185700, + "last_issuance_block_time": 1731185709, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 180, @@ -3502,16 +3494,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731184105, - "last_issuance_block_time": 1731184122, + "first_issuance_block_time": 1731185681, + "last_issuance_block_time": 1731185690, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -3519,16 +3511,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731184060, - "last_issuance_block_time": 1731184060, + "first_issuance_block_time": 1731185637, + "last_issuance_block_time": 1731185637, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 40, @@ -3536,8 +3528,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731184002, - "last_issuance_block_time": 1731184005, + "first_issuance_block_time": 1731185580, + "last_issuance_block_time": 1731185585, "supply_normalized": "0.00000040" } ], @@ -3550,8 +3542,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -3559,16 +3551,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731184325, - "last_issuance_block_time": 1731184325, + "first_issuance_block_time": 1731185927, + "last_issuance_block_time": 1731185927, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 10000000000, @@ -3576,16 +3568,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731184133, - "last_issuance_block_time": 1731184140, + "first_issuance_block_time": 1731185700, + "last_issuance_block_time": 1731185709, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 180, @@ -3593,16 +3585,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731184105, - "last_issuance_block_time": 1731184122, + "first_issuance_block_time": 1731185681, + "last_issuance_block_time": 1731185690, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -3610,16 +3602,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731184060, - "last_issuance_block_time": 1731184060, + "first_issuance_block_time": 1731185637, + "last_issuance_block_time": 1731185637, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 40, @@ -3627,8 +3619,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731184002, - "last_issuance_block_time": 1731184005, + "first_issuance_block_time": 1731185580, + "last_issuance_block_time": 1731185585, "supply_normalized": "0.00000040" } ], @@ -3641,8 +3633,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -3650,16 +3642,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731184325, - "last_issuance_block_time": 1731184325, + "first_issuance_block_time": 1731185927, + "last_issuance_block_time": 1731185927, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 10000000000, @@ -3667,16 +3659,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731184133, - "last_issuance_block_time": 1731184140, + "first_issuance_block_time": 1731185700, + "last_issuance_block_time": 1731185709, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 180, @@ -3684,16 +3676,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731184105, - "last_issuance_block_time": 1731184122, + "first_issuance_block_time": 1731185681, + "last_issuance_block_time": 1731185690, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 100000000000, @@ -3701,16 +3693,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731184060, - "last_issuance_block_time": 1731184060, + "first_issuance_block_time": 1731185637, + "last_issuance_block_time": 1731185637, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "owner": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false, "supply": 40, @@ -3718,8 +3710,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731184002, - "last_issuance_block_time": 1731184005, + "first_issuance_block_time": 1731185580, + "last_issuance_block_time": 1731185585, "supply_normalized": "0.00000040" } ], @@ -3730,17 +3722,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "block_hash": "068b851368c9e1ddbf781a135ee784e6d350c062167b8646d395817ca894b7ec", - "block_time": 1731184347, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", + "block_time": 1731185949, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f:0 4 ", + "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3748,14 +3740,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3763,7 +3755,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3782,17 +3774,17 @@ }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "block_hash": "6f3b24255bf39bd24ae872447881df2ea23fe42a7ac38c3513c0952833def78f", - "block_time": 1731184342, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", + "block_time": 1731185934, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088cd42138cc08788c42bd1c85f4510c0b80fe196802c50c7e8f27a10928fa033de905ce95616cbe4748096548f3528bf80e16d1280561f950636bb3078d988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83:0 4 ", + "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3800,14 +3792,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3815,7 +3807,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3834,17 +3826,17 @@ }, { "tx_index": 77, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_hash": "09a11d54391cac822ac59f5b8221eb4007305dbe328c2869ba75175a8a67186c", - "block_time": 1731184339, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", + "block_time": 1731185930, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "supported": true, - "utxos_info": " d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a:1 2 ", + "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3852,12 +3844,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3868,17 +3860,17 @@ }, { "tx_index": 76, - "tx_hash": "e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4", + "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", "block_index": 200, - "block_hash": "4c8cea3b940509277a1a9e82b7a70c941056f55d8a6bd5477c298117af4ebbe6", - "block_time": 1731184325, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "325d74a8f97d29fefe1a1abf7b4a614ba04371cf048cd84ec08c61beace74c16", + "block_time": 1731185927, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " e2f7223eaf59a3c6374957dcdc18df8777d68689bca28678910a6d9f125af0e4:1 2 ", + "utxos_info": " b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3903,17 +3895,17 @@ }, { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 193, - "block_hash": "5b3366fe7b95aa0e86fe3b4b08c1fe46718c09b32bafa885c3d77e5f3177e65f", - "block_time": 1731184286, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "block_hash": "34f8199af68420a203f2efb930c4d7b5bdbbb6f7f5704a7dadb1691f4002eae5", + "block_time": 1731185882, + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd:1 2 ", + "utxos_info": " 78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3930,7 +3922,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3948,20 +3940,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -3983,9 +3975,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4002,7 +3994,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4030,9 +4022,9 @@ }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4049,7 +4041,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4077,9 +4069,9 @@ }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4096,7 +4088,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4124,9 +4116,9 @@ }, { "tx_index": 64, - "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "block_index": 211, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4143,7 +4135,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184399, + "block_time": 1731185989, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4176,10 +4168,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4204,7 +4196,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731184122, + "block_time": 1731185690, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4216,10 +4208,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "b9b130610d358f7e938ae03918b97c1a36f23f1db5f80c318bf053f98fd24519", + "tx_hash": "09ad63ca98e5eff8a4621ae896e87fb4242738f8b76f8b52ff6a05d8e37c9585", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4244,7 +4236,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184101, + "block_time": 1731185668, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4253,10 +4245,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", + "tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4281,7 +4273,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731184002, + "block_time": 1731185580, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4293,10 +4285,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4321,7 +4313,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731183977, + "block_time": 1731185554, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4333,10 +4325,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", + "tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4361,7 +4353,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731183973, + "block_time": 1731185550, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4373,10 +4365,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", + "tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4401,7 +4393,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731183954, + "block_time": 1731185529, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4419,22 +4411,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", + "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", "tx_index": 46, "block_index": 150, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184122, + "block_time": 1731185690, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4443,22 +4435,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", + "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", "tx_index": 45, "block_index": 149, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184109, + "block_time": 1731185686, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4467,22 +4459,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e6484d6b5cb8c94f8d0efa3846edc38d87ab2d67b204a9eee1a1f83ce7e24292", + "tx_hash": "7ba9bbc46e8ae51d75ea8d784d22dddc742cb09b89f195bf458d501508025a2c", "tx_index": 23, "block_index": 127, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "17bedb411aa032c035f3c155836e80f17088bfecbac96d00bb740676036abf0c", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184005, + "block_time": 1731185585, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4491,22 +4483,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1ee7360c16457de587ecf59bcaf00b8dde0e96c6586d9b9876190df06d62e44e", + "tx_hash": "1acb763593931ac1b9f83e08bfb8078cab3803743069f1466e30eb84ea9ef7f9", "tx_index": 21, "block_index": 125, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183998, + "block_time": 1731185576, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4515,22 +4507,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "2a06b74afa4de1bc90cee21083b7eb8b99e1d48531098f54aa821b6ab90f29ef", + "tx_hash": "a1ccc4bd919c2c6c97243d1b065f15e5621ce400cfb4c08b9c7c87fc13dc4d22", "tx_index": 20, "block_index": 124, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183984, + "block_time": 1731185563, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4539,22 +4531,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "526c23a46822cd2319f2638275c18ea14cd971d10ca25858803a942310dff1df", + "tx_hash": "16fed96a5dbbb814d4dfc3fc2b131de506089cbd085880fe059048d6aa63f335", "tx_index": 19, "block_index": 123, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "ada846df071257c262e57ef3171d3bc2a249f0186be8f46b8308ce8528f958c4", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183980, + "block_time": 1731185559, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4563,22 +4555,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "de5fc8839ab448caf4def319fb2df69bce81e22b850593c9dfb68c59db536b08", + "tx_hash": "730ffaa535f45046390c9bfe6d6218cfe7c1536ed7a0814d2520f1cdd9871205", "tx_index": 15, "block_index": 118, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "0da1cf89bcf652c02fdcef5950e94a006e81cc3f4a623f747a448b7415b322b5", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183961, + "block_time": 1731185537, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4587,22 +4579,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c3892e408177e1ce4876e4311684edccf20a98c32cbc221510b6261bbfb26fb1", + "tx_hash": "bd2af388db19f0a79f476e3e2961b323cd09f6e425639b755bff532cc92e8bcf", "tx_index": 11, "block_index": 114, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "027b13161031b1992751f5b219b0741c3df863c733fd3e0b1f1850a6097039a3", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731183947, + "block_time": 1731185521, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4624,8 +4616,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4638,12 +4630,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4659,7 +4651,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4672,7 +4664,7 @@ "btc_out": 0, "btc_change": 4999985834, "btc_fee": 14166, - "rawtransaction": "02000000000101d0c4dbf092d67451d649c384eafc573ab03e1757ddb22d301dd4d00692586c070000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff0200000000000000002b6a291fce192764c745e2b5b2882bed667a20ede8e9fe94b03e50e2c23ef6fd6144a06139b6b6409aff0cd6aaba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010161db2110e7ed9439b882cca495f4a087f6c49d3eea58d53e1916a5dc46d8663d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0200000000000000002b6a292c0ec151f56e2ae4f7a55dadfe85f55b09ad626591a4a3d882d662cca5ebbc345c7f7f50122b918f65aaba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4690,24 +4682,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "data": "434e5452505254590bed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980970, "btc_fee": 18030, - "rawtransaction": "020000000001014725a87e98d663a7c98177e322a63e6b456c4197f75cade8f6619172041ba72a0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e803000000000000160014182c7db9515d58f42e8845e4f48551a47d2133a300000000000000004b6a493794b54a590c6913a5bc9267bd5e71985e1fde5d1917deba48aa332154182c89458618af63d1359e0f956fe83e397a72a3734d0284f026fd512f0a34c9ef353093b9af53cb5188ce79aaa7052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010149c3fc2308c1146b0de3469f574cbc8181ba42d12bf9cefca63746a7e9b917c5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600141d5098fbebdfcd42a99dfb2faa4254d26def3cc800000000000000004b6a49ed49ccdc3a30ed21b7e58a3d22d81237e76a1030d4f4af56c2e5550d4949bc90e647832e4723ecc8a9f30d77c9494923fe82c9367f89cc08fe00814d577a4e6e683251fac3b855fc44aaa7052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", - "order_match_id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "status": "valid" } } @@ -4716,7 +4708,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4727,28 +4719,28 @@ "btc_out": 1000, "btc_change": 4999985829, "btc_fee": 13171, - "rawtransaction": "02000000000101ae0cf26a54ef9a3eec94975f8edafdf18d655c8fede60897c4d99d11b0ec50270000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000" + "rawtransaction": "0200000000010131b8fb279149cf786245701df6bcce3acce76a38d404563fee047efd2e3a2842000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "data": "434e545250525459469ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "btc_in": 90000, "btc_out": 0, "btc_change": 75834, "btc_fee": 14166, - "rawtransaction": "020000000001017e40b79857bd52d2941ca388273c9d20781ca8fd4f28b841f4854e167e949b8301000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff0200000000000000002b6a29e73c36a562e34b4ebd6b6b0be35e9c9184449dc02db5dfbd9b27c8723d4347f8b6f86fca57a49a337b3a28010000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000000000000", + "rawtransaction": "02000000000101cb7cb115b8772e5a127442097f3be2f91f7cdcdeed68908fbfa65c98ba45c09a010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff0200000000000000002b6a298cd0e081b22b4258b97f9c061fea37a8008f1c535b4b6b995aeba4df9b34239649bbd600a2e0ab0a1a3a280100000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "status": "valid" } } @@ -4757,7 +4749,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4777,7 +4769,7 @@ "btc_out": 0, "btc_change": 4999986361, "btc_fee": 13639, - "rawtransaction": "0200000000010136e49fa9c46cf51e4e2ad56bc06a814bf25b8f8c58b25778e1e10a1886aa6e920000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000226a2052b752b0985fc771a3b2c8df4d14f2d4e3b41f0a207383180baea634897708abb9bc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010167c68ed4b96cf794d9489a97a8448e15f57e8eecfbe1022c362743482a7fcb62000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000226a20cd079f16be64b4955ae914b0158fa8c7765b4c32d6988f3f74eea0b072168805b9bc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4793,7 +4785,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4818,7 +4810,7 @@ "btc_out": 0, "btc_change": 4949859575, "btc_fee": 14224, - "rawtransaction": "02000000000101fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a0200000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebbffffffff0200000000000000002c6a2abfc115f234dec38bd383f5495613c732f45285bdda1d459c9bb46e258e37a4a13265c3182110f19181aff7dc08270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb02000000000000", + "rawtransaction": "02000000000101a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d01502000000160014658b9c2487762c4260cf1ff801a6531c160b0c94ffffffff0200000000000000002c6a2a44920b2ac26fa90b6c93c5d96492139d676e2009feca4b33ea1ffda3092ff4d32a8df7e73f350b696830f7dc082701000000160014658b9c2487762c4260cf1ff801a6531c160b0c9402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4840,7 +4832,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -4848,7 +4840,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -4867,7 +4859,7 @@ "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001016fb8ead5a29d3287b486fd926db8f12677885e6e0fa73c28218a3f9e5f6400d10000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a213561528d9bd0516b8eb3391a4f9e11c7b185425279854713e2cdcd82cdeafbdda17ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "020000000001010e79dd2c22e58474c75b096ac328af25edc0b0f1fd8df88d036b7af47da5e58d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a2182d70eccff8bb21f00cae24466a6463db9711d47cd4dfc9c5a03d2bef8ba536bf77ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4884,10 +4876,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "transfer_destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "lock": false, "reset": false, @@ -4901,7 +4893,7 @@ "btc_out": 546, "btc_change": 4999983766, "btc_fee": 15688, - "rawtransaction": "0200000000010147f23f61d2264f07a84e3102b2fd6629925a487361cc07adb16cfc05ba73ffcd0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000236a21281ae8b29a0bd2a503135a3408b6b3aa2b2d2c3cbbb150fe59418b35848f470dfa96b2052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "02000000000101a4f30ddb6a622b9825c06da68e210300ca06be1e81242dfc88526cf061591a4a000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000236a21e7049a4b3204d6dee973b2d15f1d7a3d89cc53d77ec84c49f61ffacddb32d3930c96b2052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4926,16 +4918,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", 1 ], [ "FAIRMINTC", - "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", 2 ] ], @@ -4944,26 +4936,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e5452505254590300028079eb4f94974a9b1861dd9e7d28a893892d6e30ed8088cd42138cc08788c42bd1c85f4510c0b80fe1964000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807c2eff327169216a21c7c6d128cf4a981d0ef80880d1d6cb957f70d439e67ab9c0f75ca54e4c0525184000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949785336, "btc_fee": 20664, - "rawtransaction": "02000000000101295775dc45471111320bc32fd52bb96312a1fdc28458f7b31f7b0f874180bbad0300000016001488cd42138cc08788c42bd1c85f4510c0b80fe196ffffffff03e80300000000000069512102a003a408e37f096d5b795d6dad457a132dccc88cc52bf92c12b7c977ebf512b22103d0d4fe874d78904c81c173b2a0917401c689a20a1f5c679f92c5e13483f58124210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aee80300000000000069512102bf03a408e37f096d5b6a5d6f2d3c915cb97f8217dd4a24b26f9b61e462d87c502102e0397f0f803a83c04146fb768b40bc5e839962b210bdf1df92c5ddda3c7138e2210374280a76ec4b6ebe209bdd10e9e1898846729eed81129ec320bb4899ff14d81853aef8ba07270100000016001488cd42138cc08788c42bd1c85f4510c0b80fe19602000000000000", + "rawtransaction": "0200000000010189e8cd58809250035f8327b3a866d39d5bd42d10d860178c509b1f2752afd71103000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c052518ffffffff03e80300000000000069512102395dacbf610baff9e75e24b53a0d19b84710ea311e2b3145a74a3fb440906a4b21031d2f25a43873b9c734791011939b0ec2442757f967ed701515c40c5bc46abcfd210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aee80300000000000069512103265dacbf610baff9e74d24b7ba71374775458310740af6837666f0fed88d647b2102e527a475eeb82cb844ad29f7e922ce35188219b562c8685515c430b57bee0504210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aef8ba072701000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c05251802000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "quantity": 1, "memo": null, "memo_is_hex": null @@ -4975,7 +4967,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -4993,7 +4985,7 @@ "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -5007,7 +4999,7 @@ "btc_out": 0, "btc_change": 4999985249, "btc_fee": 14751, - "rawtransaction": "020000000001011848af13e7d7484551083a2a8d0618191a4d9a2024e27e6dc5448121489e5dd00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000356a33af4443a35a08c71f78fbbfd7c224ff10eb0cc24bbf795462a769cb419fef2b4cee8a763ddfe9c5d9acf9502da0afa70b73726361b8052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "02000000000101b6643e2d1dd1b7356e9e47b783a012886a1cc0aeb96e69bce7b54e6b8675fdff000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000356a333f5590cc500874de862e7599577aeb4498fecd9b8f851e95c4bb83e3c87ffac00493e33ccb2b4bc39c4f51f90eda349ca8cd2061b8052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5029,8 +5021,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5047,19 +5039,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88088cd42138cc08788c42bd1c85f4510c0b80fe196", + "data": "434e54525052545902000000000000000100000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985541, "btc_fee": 14459, - "rawtransaction": "020000000001019d83119f77d6ac6db1637aa1fac5a5a7bc1471cdb2324fdb41efbc826b8a56d00000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000306a2e51240f9fe445df5d27175afea6740bc38ce3acaa19f39b65b4632910ab4c39536d53f4d5c009886fbe0b6e363b3085b9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "020000000001010b664dc457fe5c77dc89496b233a04040505960a1ee866dec8e1af7ac6d113f2000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000306a2e29bf9d1bda0eff3398687aa065d742479b426ec608d8ee3653c8f966953198a7cc1ee90656ad86270497144ab9c985b9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "quantity_normalized": "0.00001000" } @@ -5069,24 +5061,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e545250525459048088cd42138cc08788c42bd1c85f4510c0b80fe19607ffff", + "data": "434e5452505254590480d1d6cb957f70d439e67ab9c0f75ca54e4c05251807ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001010b460e916325477555b7f4c1282f3c45fb2adcc8de67feb46ca4cd8319856b5d0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000236a21ac2ad83593e7fed0f54ee561a82a2e68c4df691b7ee9b09af1832476d1698cbe437ebc052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "020000000001019fa6891009e280950fd417390ddbc6609285c1b9cef2ae4e9f70d8b54cb5c88c000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a21a5ba66383c964e21b9c396deaab731fe491546ebb4341084c7ada0fb8387b733047ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "flags": 7, "memo": "ffff" } @@ -5096,8 +5088,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "quantity": 1000, "skip_validation": false }, @@ -5107,7 +5099,7 @@ "btc_out": 1000, "btc_change": 4999984658, "btc_fee": 14342, - "rawtransaction": "020000000001018182b8cc2135d5f3054535fd5fb35010a4b31af243ccf5328d283fdefa16792c0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03e80300000000000016001496548f3528bf80e16d1280561f950636bb3078d900000000000000000c6a0aa1c90e5caab448e7696312b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010192845753da8fde465954e2e1ab267ce7d80b3016257d611766db8ec5279cdba5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600144acd4545d8daf86927d7f9b0476f3136db640f7200000000000000000c6a0a79856f6ea0a09e53222a12b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5120,7 +5112,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5152,7 +5144,7 @@ "btc_out": 0, "btc_change": 4999985483, "btc_fee": 14517, - "rawtransaction": "020000000001016d2bb7c88ee92d38fbbc7ebc5716368d636d2047bd9f6cf79fbec8b5ddab0fd30000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000316a2fa45af45f5e42fd69f25e66baec8c7c0cb97594befdbb0f4068c6e1d2362d3dc65fc83f6799fbc8c7a65d9a5fa31d044bb9052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010138729dc318569217e89e403da643e9bb4e6116c925addd90b42dfa2fd1c42eca000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000316a2f052fbd739e6623e0a4bb7130f4e260d3da7dde56003aa6bfa0b73e75f3c24f75d552331c757eec594137e2b4e2d54c4bb9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5187,14 +5179,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "divisible": true, "locked": false }, @@ -5206,7 +5198,7 @@ "btc_out": 0, "btc_change": 4999987122, "btc_fee": 12878, - "rawtransaction": "020000000001010b1f49707b92e5db73657e44477b6ec5f3814884f7d2f4cde664e611993592dc0000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff020000000000000000156a13ed2c2f1f171bd7f5768602e818848ab51ca9f2b2bf052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "0200000000010121f896fa46d9867c0a3882e05f4169502dcb272f6d367c38aa4e4f9238d5cb5e000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000156a13d89edbe4f154db05ae377762f77439ad805793b2bf052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5221,7 +5213,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5241,7 +5233,7 @@ "btc_out": 546, "btc_change": 4999984644, "btc_fee": 14810, - "rawtransaction": "020000000001017b72faaf54326ad3b64950353e6ad2f78e4dc55c73599c0abb9728b9c70ae7e90000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30edffffffff03220200000000000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed0000000000000000146a122973211cb8798b3a75f6d7592cacab38b90104b6052a0100000016001479eb4f94974a9b1861dd9e7d28a893892d6e30ed02000000000000", + "rawtransaction": "02000000000101ef7a12e93dfe55916f6628a871d043e089a251b93dbf12a50399d40cf465618d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000146a12da287c2bf0ed0c35a8a9cfd82e028c551a3204b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5257,22 +5249,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171303834356c39796866326433736377616e65376a3332796e33796b6b7576386439306d396a37", + "data": "434e545250525459666263727431713073683037766e336479736b35677738636d676a336e36326e7177736137716735377472336c", "btc_in": 4949951000, "btc_out": 0, "btc_change": 4949925536, "btc_fee": 25464, - "rawtransaction": "02000000000102fbaef6e1fe4c08048d3d067ab18d4c538400c864c8504f8d367f49127cb2a51a00000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffffe7054d66d51d4e23e49a966bb359c4ddadb80b254c2ee09570395343745fb38401000000160014de1fe1e4dc0f191e2e8c2424d083048884a719aeffffffff020000000000000000376a35bfc115f234dec38bb9e1963b2222b602cd66b0d1e3642df941d05d56ed40c5ccbf52a92b13699fa29cc4c19d61fe5194348c9c1da3a0de092701000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae02000002000000000000", + "rawtransaction": "02000000000102a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d015000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff1190fe3945d54c388191ed0db2cd98889549f0bc1ff14705fecffee8eef00e5d010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff020000000000000000376a3544920b2ac26fa90b06f1a6ab10a362ad1506103e88a478547b6c96966e58ccb3afea9dd4510339077d47ea4870258ea9c557c20f10a0de0927010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7" + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l" } } } @@ -5283,8 +5275,8 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "owner": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "owner": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "divisible": true, "locked": false, "supply": 0, @@ -5292,16 +5284,16 @@ "first_issuance_block_index": 231, "last_issuance_block_index": 231, "confirmed": true, - "first_issuance_block_time": 1731184482, - "last_issuance_block_time": 1731184482, + "first_issuance_block_time": 1731186084, + "last_issuance_block_time": 1731186084, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false, "supply": 0, @@ -5309,16 +5301,16 @@ "first_issuance_block_index": 227, "last_issuance_block_index": 228, "confirmed": true, - "first_issuance_block_time": 1731184468, - "last_issuance_block_time": 1731184472, + "first_issuance_block_time": 1731186072, + "last_issuance_block_time": 1731186075, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false, "supply": 0, @@ -5326,16 +5318,16 @@ "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731184461, - "last_issuance_block_time": 1731184464, + "first_issuance_block_time": 1731186064, + "last_issuance_block_time": 1731186068, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false, "supply": 0, @@ -5343,16 +5335,16 @@ "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731184450, - "last_issuance_block_time": 1731184453, + "first_issuance_block_time": 1731186052, + "last_issuance_block_time": 1731186056, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true, "supply": 100000000, @@ -5360,8 +5352,8 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731184444, - "last_issuance_block_time": 1731184447, + "first_issuance_block_time": 1731186045, + "last_issuance_block_time": 1731186048, "supply_normalized": "1.00000000" } ], @@ -5373,8 +5365,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "owner": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true, "supply": 100000000, @@ -5382,15 +5374,15 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731184444, - "last_issuance_block_time": 1731184447, + "first_issuance_block_time": 1731186045, + "last_issuance_block_time": 1731186048, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5398,14 +5390,14 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5413,7 +5405,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -5426,7 +5418,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5448,9 +5440,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5467,7 +5459,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5495,9 +5487,9 @@ }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5514,7 +5506,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5542,9 +5534,9 @@ }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5561,7 +5553,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5589,9 +5581,9 @@ }, { "tx_index": 64, - "tx_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", + "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", "block_index": 211, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5608,7 +5600,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184399, + "block_time": 1731185989, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5636,9 +5628,9 @@ }, { "tx_index": 56, - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5655,7 +5647,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5688,13 +5680,13 @@ "/v2/assets//matches": { "result": [ { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5708,7 +5700,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5728,13 +5720,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 56, - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5748,7 +5740,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5768,13 +5760,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", "tx0_index": 53, - "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 54, - "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5788,7 +5780,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5808,13 +5800,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 64, - "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5828,7 +5820,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5855,20 +5847,20 @@ "result": [ { "block_index": 221, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -5876,20 +5868,20 @@ }, { "block_index": 221, - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -5907,12 +5899,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5924,16 +5916,16 @@ }, { "block_index": 231, - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "event": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5945,16 +5937,16 @@ }, { "block_index": 227, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184468, + "block_time": 1731186072, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5966,16 +5958,16 @@ }, { "block_index": 225, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "event": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5987,16 +5979,16 @@ }, { "block_index": 222, - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", + "event": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731184450, + "block_time": 1731186052, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6019,14 +6011,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -6041,20 +6033,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -6069,7 +6061,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184444, + "block_time": 1731186045, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6081,10 +6073,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6092,7 +6084,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6105,10 +6097,10 @@ }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6116,7 +6108,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6129,10 +6121,10 @@ }, { "tx_index": 80, - "tx_hash": "035ea732f137ce89bce078feffac7b5197b4de7af22a273674145890ed94e319", + "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", "block_index": 204, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6140,7 +6132,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6153,10 +6145,10 @@ }, { "tx_index": 79, - "tx_hash": "8bcd3d1f7f57bc73cec2e3fa92c5c9942a03d8f4e1e7bf09ab2b360256b0328f", + "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", "block_index": 203, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6164,7 +6156,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184347, + "block_time": 1731185949, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6177,10 +6169,10 @@ }, { "tx_index": 78, - "tx_hash": "c5c60aad7bfe960fee9027a9017ed2cda3eb8f0950e7ab0fb01075022a551c83", + "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6188,7 +6180,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6207,9 +6199,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6218,7 +6210,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6229,7 +6221,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6246,9 +6238,9 @@ }, { "tx_index": 29, - "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", + "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", "block_index": 133, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6257,7 +6249,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6268,7 +6260,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184028, + "block_time": 1731185606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6285,9 +6277,9 @@ }, { "tx_index": 30, - "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", + "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", "block_index": 141, - "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", + "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6295,10 +6287,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -6307,7 +6299,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184078, + "block_time": 1731185645, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6324,18 +6316,18 @@ }, { "tx_index": 33, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6346,7 +6338,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6368,9 +6360,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6379,7 +6371,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6390,7 +6382,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6410,7 +6402,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -6419,7 +6411,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -6427,7 +6419,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -6436,7 +6428,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -6451,27 +6443,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6486,7 +6478,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6500,27 +6492,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", + "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", "block_index": 138, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6535,7 +6527,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184056, + "block_time": 1731185634, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6549,19 +6541,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6569,7 +6561,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6584,7 +6576,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6598,19 +6590,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6618,7 +6610,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6633,7 +6625,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6656,10 +6648,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "tx_index": 96, "block_index": 221, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -6684,7 +6676,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -6702,22 +6694,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -6738,9 +6730,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6757,7 +6749,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6785,9 +6777,9 @@ }, { "tx_index": 56, - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6804,7 +6796,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6832,9 +6824,9 @@ }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6851,7 +6843,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6879,9 +6871,9 @@ }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6898,7 +6890,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6926,9 +6918,9 @@ }, { "tx_index": 58, - "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "block_index": 205, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -6945,7 +6937,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6978,9 +6970,9 @@ "/v2/orders/": { "result": { "tx_index": 103, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -6997,7 +6989,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731184478, + "block_time": 1731186081, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7008,7 +7000,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -7027,13 +7019,13 @@ "/v2/orders//matches": { "result": [ { - "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx0_index": 102, - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "tx1_index": 103, - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", - "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7047,11 +7039,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731184478, + "block_time": 1731186081, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -7074,15 +7066,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "btc_amount": 2000, - "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "status": "valid", "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "btc_amount_normalized": "0.00002000" } ], @@ -7093,9 +7085,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "block_index": 182, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7113,7 +7105,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731184235, + "block_time": 1731185822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7139,9 +7131,9 @@ }, { "tx_index": 58, - "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "block_index": 205, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7159,7 +7151,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731184355, + "block_time": 1731185957, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7185,9 +7177,9 @@ }, { "tx_index": 53, - "tx_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", + "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", "block_index": 179, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7205,7 +7197,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184167, + "block_time": 1731185748, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7231,9 +7223,9 @@ }, { "tx_index": 55, - "tx_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", + "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", "block_index": 202, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7251,7 +7243,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184342, + "block_time": 1731185934, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7277,9 +7269,9 @@ }, { "tx_index": 62, - "tx_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", + "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", "block_index": 188, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7297,7 +7289,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184268, + "block_time": 1731185845, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7328,13 +7320,13 @@ "/v2/orders///matches": { "result": [ { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7351,7 +7343,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184351, + "block_time": 1731185953, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7371,13 +7363,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 56, - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7394,7 +7386,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184235, + "block_time": 1731185822, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7414,13 +7406,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", "tx0_index": 53, - "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 54, - "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7437,7 +7429,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184167, + "block_time": 1731185748, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7457,13 +7449,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 64, - "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7480,7 +7472,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731184461, + "block_time": 1731186064, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7506,13 +7498,13 @@ "/v2/order_matches": { "result": [ { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7526,7 +7518,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184351, + "block_time": 1731185953, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7546,13 +7538,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", + "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", "tx0_index": 55, - "tx0_hash": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 56, - "tx1_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7566,7 +7558,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731184235, + "block_time": 1731185822, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7586,13 +7578,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c_84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", + "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", "tx0_index": 53, - "tx0_hash": "3e1c535fb798e458f77ac16383cb21573042e5e7185fec9064c4ad09feef761c", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 54, - "tx1_hash": "84b8d7bec3e2668ab4ea844c92d2a11754fc34c13801de1b309785f3c141f143", - "tx1_address": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7606,7 +7598,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184167, + "block_time": 1731185748, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7626,13 +7618,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "tx0_index": 64, - "tx0_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "tx1_index": 58, - "tx1_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7646,7 +7638,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7666,13 +7658,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx0_index": 102, - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "tx1_index": 103, - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", - "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7686,11 +7678,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731184478, + "block_time": 1731186081, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -7731,66 +7723,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", + "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", "block_index": 112, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "845c8eae056aeebef44dd69ef729f94434381f53b1e9ac7e2168ac7964d6aedf", + "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", "block_index": 112, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "23bd7f3b25d68c2d3e153bcb6615df6bf88247f2eed1f605ae66dff9f0989aa8", + "tx_hash": "314ef7d935d922c69d9ebdf4aa8cb37d35b27cbe96f65b2fa09ffe679183a5b5", "block_index": 112, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "53658830d3bf2ea6c3fd4d207a7afe89708568c60172b9e64672b0ebe58638a2", + "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5", "block_index": 112, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "40b63103484fc2e9b8bf8df6f3177faa056140a6a6b02f6bc198c02c3b2ca388", + "tx_hash": "b16c489137d7b0cbd7a281bdadba870a9d1043835d650547980fb339d4f48272", "block_index": 112, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -7802,9 +7794,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7813,7 +7805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7824,7 +7816,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7841,9 +7833,9 @@ }, { "tx_index": 29, - "tx_hash": "17a1ac16f5153a62c503cf3352e2e4e11c4051e9071fe9310dcd4476cf8ba642", + "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", "block_index": 133, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7852,7 +7844,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7863,7 +7855,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184028, + "block_time": 1731185606, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7880,9 +7872,9 @@ }, { "tx_index": 30, - "tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", + "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", "block_index": 141, - "source": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", + "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7890,10 +7882,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c91567a5881eff00a9f9317af0998d748c39ab85690885dca7c6ea9e076f28df", - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -7902,7 +7894,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184078, + "block_time": 1731185645, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7919,9 +7911,9 @@ }, { "tx_index": 68, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7930,7 +7922,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7941,11 +7933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -7958,18 +7950,18 @@ }, { "tx_index": 33, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7980,7 +7972,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8002,9 +7994,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8013,7 +8005,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8024,7 +8016,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8045,19 +8037,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8065,7 +8057,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8080,7 +8072,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8094,19 +8086,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8114,7 +8106,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8129,7 +8121,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8148,20 +8140,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8182,20 +8174,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8218,12 +8210,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "event": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "tx_index": 42, - "utxo": "c524ab280f3557da911bb4d383891166c505314f418dc721724b9d368b2f0962:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "utxo": "426d796d06af893564296fd9d35d79cc3b7cf1b026ab15e76478d5067b410568:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "confirmed": true, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8244,27 +8236,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 905, @@ -8273,14 +8265,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8291,9 +8283,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 904, @@ -8302,9 +8294,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8314,24 +8306,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8341,9 +8333,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 902, @@ -8355,15 +8347,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } }, "/v2/events/counts": { @@ -8398,16 +8390,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8417,9 +8409,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 901, @@ -8429,12 +8421,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8444,9 +8436,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 898, @@ -8456,24 +8448,24 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", - "utxo_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "block_time": 1731184491, + "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 }, { "event_index": 862, @@ -8483,39 +8475,39 @@ "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731184468, + "block_time": 1731186072, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "block_index": 227, - "block_time": 1731184468 + "block_time": 1731186072 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731184461, + "block_time": 1731186064, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8525,9 +8517,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 } ], "next_cursor": 819, @@ -8544,27 +8536,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8579,7 +8571,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8593,19 +8585,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "adabe836fc2b928e52423a41df6140512be04b60dce44c470b76070f5af9b700", + "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8613,7 +8605,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8628,11 +8620,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184291, + "block_time": 1731185886, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8642,27 +8634,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "71db0330b6bf60a9ce5af0748d4f48d2d2ec7ddc687b042538c1752372c295d7", + "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", "block_index": 138, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "last_status_tx_hash": null, - "origin": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8677,7 +8669,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731184056, + "block_time": 1731185634, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8691,19 +8683,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "83303c194ea7f11f68ba0a631bf35bf5303c5684fe635c65f5cceb34c19010c0", + "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8711,7 +8703,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8726,7 +8718,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184025, + "block_time": 1731185603, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8740,19 +8732,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "aa7a5f64bbb12cc118ae23f9c34ddd20b8113e498218b0ee472d4b0f97c47c11", + "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", "block_index": 131, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ddc4a086e8a3a18473b8f96881a90cb5e749716ea030b17dc71be1cfa703e1b8", + "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8760,7 +8752,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8775,7 +8767,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731184022, + "block_time": 1731185600, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8794,10 +8786,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8805,7 +8797,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8818,10 +8810,10 @@ }, { "tx_index": 105, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8829,11 +8821,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8842,10 +8834,10 @@ }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8853,7 +8845,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8866,10 +8858,10 @@ }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8877,11 +8869,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8890,10 +8882,10 @@ }, { "tx_index": 81, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8901,11 +8893,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -8920,14 +8912,14 @@ "result": [ { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "transfer": false, "callable": false, "call_date": 0, @@ -8942,20 +8934,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 101, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -8970,20 +8962,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731184472, + "block_time": 1731186075, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -8998,20 +8990,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184468, + "block_time": 1731186072, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -9026,20 +9018,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731184464, + "block_time": 1731186068, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 100, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "msg_index": 0, "block_index": 225, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "transfer": false, "callable": false, "call_date": 0, @@ -9054,7 +9046,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184461, + "block_time": 1731186064, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9065,14 +9057,14 @@ "/v2/issuances/": { "result": { "tx_index": 104, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "transfer": false, "callable": false, "call_date": 0, @@ -9087,7 +9079,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9096,16 +9088,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -9116,16 +9108,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" } ], @@ -9136,9 +9128,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9146,14 +9138,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184014, + "block_time": 1731185592, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8f50aafaf39dee9c551cdd985b2d4481179d76e44e3a27c2d0b2ccbaa2f9a9c8", + "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", "block_index": 128, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9161,7 +9153,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184010, + "block_time": 1731185588, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9171,9 +9163,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9181,17 +9173,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731184014, + "block_time": 1731185592, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, "block_index": 231, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -9216,7 +9208,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184482, + "block_time": 1731186084, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9225,10 +9217,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "tx_index": 101, "block_index": 228, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "PREMINT", "asset_parent": "", "asset_longname": "", @@ -9253,7 +9245,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184472, + "block_time": 1731186075, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9262,10 +9254,10 @@ "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "tx_index": 100, "block_index": 226, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -9290,7 +9282,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184464, + "block_time": 1731186068, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9299,10 +9291,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b0dbe18ebce8aec91e284552354df1de0b0b19ed93c0ced5d338a3458e4a17d5", + "tx_hash": "dbc22e66b838256fa269e76efa1d0c806401f7401effa7a3531dffedf84cb420", "tx_index": 99, "block_index": 224, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": null, "asset_parent": null, "asset_longname": null, @@ -9327,13 +9319,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184458 + "block_time": 1731186060 }, { - "tx_hash": "ed2acc9b45c9310410a353d1194e30cf3f38b0ecfba38545b4bf0e809f621beb", + "tx_hash": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", "tx_index": 98, "block_index": 223, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -9358,7 +9350,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731184453, + "block_time": 1731186056, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9373,22 +9365,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -9397,22 +9389,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "0e2e7af8d6364fd2dbc2af36470ac9bece72a387782748c46f7034b855cf630c", + "tx_hash": "573b30e5f5323e21a609b153fd2a297016c92522eba2169970a44457a8f1fe30", "tx_index": 95, "block_index": 219, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "d9e559c3c71883aa0881d99340a00535329d8a56438aeeb8ed5a8a41664b10d9", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "92b08136345613ac4da682987e36d5061ca068fa866c0dec1847c03b6dd1becd", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731184439, + "block_time": 1731186040, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -9421,22 +9413,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "bb3be0baf4f12b3ecb670cceb6dd695791b3a3fd2d93e1a527be91e39bd36e11", + "tx_hash": "4bc584e5451063581fdf0a07219795565623d1d6f0afa8dc5ba1748dace2c01c", "tx_index": 91, "block_index": 215, - "source": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", - "fairminter_tx_hash": "efc92f92c79bff1b745a7d8a3daa096d8c1c545c927ff41b84c9c12c07360570", + "source": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", + "fairminter_tx_hash": "b6f9dc28111884d1395173cf1096b1cb068b4585f3d72b1bc3cefbe5c5d4bc09", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184424, + "block_time": 1731186016, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qtcss6vaz3mvx9lu3zgal2dlvu5kqlv6j97v8yn", + "issuer": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", "divisible": true, "locked": false }, @@ -9445,22 +9437,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4383bf9264d063a7991bf78565371c54a9a5cc6b14f019d63bdce51889c8f496", + "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", "tx_index": 46, "block_index": 150, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184122, + "block_time": 1731185690, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -9469,22 +9461,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "77610fe167581810fd3fb46866a59965465eb18488791c3ece9d333179f5e993", + "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", "tx_index": 45, "block_index": 149, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", - "fairminter_tx_hash": "a61ec9491ba7881af74880867fa2ae3c9a299aa4177976f82266364608a5bc3a", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731184109, + "block_time": 1731185686, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -9498,22 +9490,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, "block_index": 221, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -9530,8 +9522,8 @@ "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", - "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" }, { "vout": 1, @@ -9539,8 +9531,8 @@ "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", - "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" }, { "vout": 1, @@ -9548,8 +9540,8 @@ "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", - "address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz" + "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" } ], "next_cursor": null, @@ -9558,28 +9550,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "c6174dbb4c086be948f57802f799e3c85d6489e73d1f48ba9c422a3b2d57e244" + "tx_hash": "dc3a19065a16bdf04e853baf2dcc42967de399e651c76419d82e5c9236122125" }, { - "tx_hash": "a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60" + "tx_hash": "7e3f595b0a596ecc6c5bd6815c0047a491d29f48bc55a1b1c0367c993bd3df6b" }, { - "tx_hash": "48493c64b68af363b97d2a826ea265c33621f9e904c7697bda80b3a8ad655063" + "tx_hash": "dfe5a22d561329b5ec3e3953035f902f787570d95d1d0a59ff108e105d9df16d" }, { - "tx_hash": "a017e1df8d7d0610178651cea0fef58d16a2a25c5cf850c77a8d2db4e093ad8f" + "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5" }, { - "tx_hash": "bc060d4f7ca525678122e0dcf3529d4d8e95a253162e026c383638df72f772b6" + "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9" }, { - "tx_hash": "190a666b58e5defbc083e3efc7f2a126ccfd28b477edeb8e667655edf48d06c6" + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0" }, { - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf" + "tx_hash": "88f6928bbf1a3de0cfc385f1478b1a84b8ee8bf69b2240e5d50fb5c890bb70c3" }, { - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6" + "tx_hash": "806db2023f958400084669709d71d3d173b678dbe82d6893f66057e311bd46ed" } ], "next_cursor": null, @@ -9587,8 +9579,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "d42ec7f16fd340abe06ed758e8adadcd576ec9361509eb0ee2e46742529b9675" + "block_index": 7, + "tx_hash": "052bfcfbf21111eef048884927e94e3374ff6ad6755d0f5ee7c27b950cc1c027" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9599,15 +9591,7 @@ "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4" - }, - { - "vout": 1, - "height": 229, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace" + "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d" }, { "vout": 0, @@ -9615,17 +9599,25 @@ "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039" + "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4" + }, + { + "vout": 1, + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03c20e4b5428392deb1f17acf1f39b367c13c9d41c4ec4d9f25ca0461709b30d94" + "result": "021b19ecc304833d6c1c20bf7dc2385ab0350240f412348c84f16df9b80414e12c" }, "/v2/bitcoin/transactions/": { - "result": "020000000001011264f625f000f949743679dd19865b50e5b132f88dcaba8b5e48858c7d778be00100000000ffffffff03e803000000000000160014de1fe1e4dc0f191e2e8c2424d083048884a719ae00000000000000000c6a0acae81e7d80a724af2f26871409270100000016001461e3399746aa4bdeb68556bcc2a264bc9e797ebb024730440220368071587c81d5722a1686ab3ec5fd7193e76a687bea4562f14c6c2e35b6226b0220264468e7ee300e431f01c97a81cbcf02acf4e1278824f773a4b384592d5e3130012103207dd49acd21039f8d2203a73c89671845fb09742bd47c6efacaa8592f20964d00000000" + "result": "02000000000101c11e86910529d8b13915600046d2a87392727fafa718131f198c21050dd1f0700100000000ffffffff03e8030000000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc800000000000000000c6a0a3a8932c5dd4735c525878714092701000000160014658b9c2487762c4260cf1ff801a6531c160b0c940247304402205ac6ce23fecf5d812567a7f0d10e826169d427fe12ddb36dcf9a1cf306b7deff02204992ba92b06c06b88c52f544884bc10e59ce920fe87e1ff2eebc3ae0375bf83801210276c5d73b938ceca6b7f198066f6465e5da5da0dd580b2acf2de04b195be400a900000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58539 @@ -9698,27 +9690,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106 }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "quantity": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "status": "valid", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -9729,22 +9721,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9754,22 +9746,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "block_index": 232, - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9779,30 +9771,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731184495.3943753, + "block_time": 1731186102.4815562, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "destination": "", "fee": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, - "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", + "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -9816,7 +9808,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -9825,19 +9817,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9847,7 +9839,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -9856,27 +9848,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106 }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "quantity": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "status": "valid", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -9887,22 +9879,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "CREDIT", "params": { - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9912,22 +9904,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "asset": "XCP", "block_index": 232, - "event": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9937,30 +9929,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 }, { - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731184495.3943753, + "block_time": 1731186102.4815562, "btc_amount": 0, - "data": "0200000000000000010000000000002710802c50c7e8f27a10928fa033de905ce95616cbe474", + "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", "destination": "", "fee": 10000, - "source": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", - "tx_hash": "e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2", + "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", "tx_index": 106, - "utxos_info": "bbb71359a24af88fd1b88c923ae54e3b503ecc5f04b59bd804aa9a97b6f9a488:1 e84082e8e63e6861a244806476409d231d316c49ab0b2102568433c194fc69d2:1 2 ", + "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "memo": null, "asset_info": { "asset_longname": null, @@ -9974,7 +9966,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731184495.3943753 + "timestamp": 1731186102.4815562 } ], "next_cursor": null, @@ -9996,15 +9988,15 @@ "event_index": 894, "event": "NEW_BLOCK", "params": { - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", "block_index": 232, - "block_time": 1731184491, + "block_time": 1731186098, "difficulty": 545259519, - "previous_block_hash": "6b92612ac4a613e7d4372d38a6b655824ab7015f6c8ba3ee855f470cf94a22f4" + "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2" }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 886, @@ -10016,17 +10008,17 @@ "event_index": 895, "event": "NEW_TRANSACTION", "params": { - "block_hash": "2c67dd29ef2dcc7232a7bc9fcc8448b1deeaf4d6eeb9dc92a7d3c319be8c0acd", + "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", "block_index": 232, - "block_time": 1731184491, + "block_time": 1731186098, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "fee": 0, - "source": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "utxos_info": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1 1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0 3 1", + "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10036,9 +10028,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 887, @@ -10052,16 +10044,16 @@ "params": { "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "out_index": 0, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 579, @@ -10074,15 +10066,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "2a8d5a47145364e3cb5714e874f6b5e1dabddeed5f10f1b78ebda1601bf63e32", - "messages_hash": "9fc0d9aa1d7ca749e91fe5b5a664ca646890e8ab83c791c4218350bc9102b77e", + "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", + "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", "transaction_count": 1, - "txlist_hash": "728d312df5c9531796dc4f39302d050d0a3936b47f99444f8bd587506734aabd", - "block_time": 1731184491 + "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", + "block_time": 1731186098 }, "tx_hash": null, "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 893, @@ -10095,12 +10087,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105 }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 892, @@ -10116,12 +10108,12 @@ "address": null, "asset": "XCP", "block_index": 232, - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 2000000000, "tx_index": 105, - "utxo": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", - "utxo_address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", - "block_time": 1731184491, + "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10131,9 +10123,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 897, @@ -10145,16 +10137,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10164,9 +10156,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 901, @@ -10180,26 +10172,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "memo": null, "quantity": 1000, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": "valid", - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "tx_index": 77, - "block_time": 1731184339, + "block_time": 1731185930, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d273023418829882368a16b849aefea631be329f7d965d9d4e11eebd25f4e50a", + "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", "block_index": 201, - "block_time": 1731184339 + "block_time": 1731185930 } ], "next_cursor": 515, @@ -10213,15 +10205,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "status": "valid", - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "tx_index": 81, - "block_time": 1731184355, + "block_time": 1731185957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10231,9 +10223,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "adbb8041870f7b1fb3f75884c2fda11263b92bd52fc30b3211114745dc755729", + "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", "block_index": 205, - "block_time": 1731184355 + "block_time": 1731185957 } ], "next_cursor": 697, @@ -10256,20 +10248,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qje2g7dfgh7qwzmgjsptpl9gxx6anq7xe6gq69c", + "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", "status": "valid", - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "tx_index": 65, - "block_time": 1731184276, + "block_time": 1731185862, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "37487c5615b7e5072350d4a276196755c59ed8254c632cd7477601ec4cbe18cf", + "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", "block_index": 190, - "block_time": 1731184276 + "block_time": 1731185862 } ], "next_cursor": null, @@ -10286,15 +10278,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": "valid", - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "tx_index": 42, - "block_time": 1731184098, + "block_time": 1731185665, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -10308,9 +10300,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "fea299425650a40cae1b04e5692902c18637ae973d068b320060d106c5609043", + "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", "block_index": 146, - "block_time": 1731184098 + "block_time": 1731185665 } ], "next_cursor": null, @@ -10331,11 +10323,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 }, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 } ], "next_cursor": 860, @@ -10358,22 +10350,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "valid", "transfer": false, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, - "block_time": 1731184482, + "block_time": 1731186084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 } ], "next_cursor": 869, @@ -10388,16 +10380,16 @@ "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60", + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", "tx_index": 101, - "block_time": 1731184472, + "block_time": 1731186075, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": false }, @@ -10405,7 +10397,7 @@ }, "tx_hash": null, "block_index": 228, - "block_time": 1731184472 + "block_time": 1731186075 } ], "next_cursor": 817, @@ -10430,11 +10422,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "open", - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx_index": 103, - "block_time": 1731184478, + "block_time": 1731186081, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10445,7 +10437,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -10458,9 +10450,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_time": 1731184478 + "block_time": 1731186081 } ], "next_cursor": 875, @@ -10478,24 +10470,24 @@ "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace_839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "match_expire_index": 250, "status": "pending", - "tx0_address": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "tx0_block_index": 229, "tx0_expiration": 21, - "tx0_hash": "92dd2b53b1c52d07548d894472d07ff6e925f26d489fed3c54593d1c1d4d0ace", + "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", "tx0_index": 102, - "tx1_address": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "tx1_block_index": 230, "tx1_expiration": 21, - "tx1_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "tx1_index": 103, - "block_time": 1731184478, + "block_time": 1731186081, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, @@ -10510,9 +10502,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_time": 1731184478 + "block_time": 1731186081 } ], "next_cursor": 676, @@ -10529,13 +10521,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "839b947e164e85f441b8284ffda81c78209d3c2788a31c94d252bd5798b7407e", + "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", "block_index": 230, - "block_time": 1731184478 + "block_time": 1731186081 } ], "next_cursor": 881, @@ -10548,11 +10540,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83" + "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305" }, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "block_time": 1731184235 + "block_time": 1731185822 } ], "next_cursor": null, @@ -10564,13 +10556,13 @@ "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", + "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", "status": "expired" }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 } ], "next_cursor": 670, @@ -10584,18 +10576,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "order_match_id": "ace170d37b126e393e0e2009f7eacdfa2aa8b0c5980c74d20d129e6c832f2243_3404217c4d0c4ed82ea96598c3197c41b034bbffc8fd960072a401af56f92e83", - "source": "bcrt1q3rx5yyuvczrc33pt68y973gsczuqlcvkq30lpm", + "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", "status": "valid", - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "tx_index": 57, - "block_time": 1731184235, + "block_time": 1731185822, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a16ca26bf5a41d44a53d114e88ab28b3c645032284cfee41c9dfd051aa66f59f", + "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", "block_index": 182, - "block_time": 1731184235 + "block_time": 1731185822 } ], "next_cursor": null, @@ -10608,16 +10600,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "0a4a2f3b0c61456620c5376adb906f16c8501d5f952e2e4efcfd763875731092", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": "valid", - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "tx_index": 63, - "block_time": 1731184268 + "block_time": 1731185845 }, - "tx_hash": "9ec80c50d28ab0afc0a91fba3f547968af205e13c7f6aae68d14201d41261a61", + "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", "block_index": 188, - "block_time": 1731184268 + "block_time": 1731185845 } ], "next_cursor": null, @@ -10630,13 +10622,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "block_time": 1731184399 + "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_time": 1731185989 }, - "tx_hash": "436deb238cfb75179945fa0940ecfd5fd6c5a52a8fc4d4fa95dab8d812a3c572", + "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", "block_index": 211, - "block_time": 1731184399 + "block_time": 1731185989 } ], "next_cursor": 690, @@ -10649,14 +10641,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "4d026d3ce168a7cf7753e18b9e13d1c1bdd9ce7fdf2351d9748bac9a535569c4_a2629bcc135b5343c53377d7c3676385551e2e1e263a8120965bdfe88ac5dd60", - "tx0_address": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "tx1_address": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", - "block_time": 1731184461 + "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "block_time": 1731186064 }, - "tx_hash": "db88ce1c76ac6e16b6662efd903869a2976e8592bf863a059884d1b97c7a0d4b", + "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", "block_index": 225, - "block_time": 1731184461 + "block_time": 1731186064 } ], "next_cursor": 673, @@ -10675,17 +10667,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "satoshirate": 1, - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "status": 0, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "tx_index": 68, - "block_time": 1731184286, + "block_time": 1731185882, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", + "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", "divisible": true, "locked": false }, @@ -10694,9 +10686,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "71faf156dbf114776a38df3af01e70eef077d4e8f6064545aee218fff185a3cd", + "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", "block_index": 193, - "block_time": 1731184286 + "block_time": 1731185882 } ], "next_cursor": 254, @@ -10711,9 +10703,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": 0, - "tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", + "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10723,9 +10715,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 581, @@ -10739,13 +10731,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mqgTK8a6qau5T5n8tSFhewKTNy8VkHgGQf", + "destination": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", "dispense_quantity": 10, - "dispenser_tx_hash": "f9f3339cde0e45582707d3797a634bea984eade7061da910c3d6c5409f6b7938", - "source": "bcrt1q0845l9yhf2d3scwane7j32yn3ykkuv8d90m9j7", - "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", + "dispenser_tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", + "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", "tx_index": 31, - "block_time": 1731184035, + "block_time": 1731185614, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10755,9 +10747,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "285cb241d29e59533c413b89508553122bb71641208e454624c79e75a21d19ff", + "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", "block_index": 135, - "block_time": 1731184035 + "block_time": 1731185614 } ], "next_cursor": null, @@ -10772,14 +10764,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qv83nn96x4f9aad59267v9gnyhj08jl4ml0m3mh", + "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "c2a90ced1d55fef72c99f4998f8d19c3f732a56e41eec1c2823c5d832f99f9fb", - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10790,9 +10782,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 582, @@ -10807,19 +10799,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "tx_index": 25, "value": 66600.0, - "block_time": 1731184014, + "block_time": 1731185592, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "aed54648750e0bca3743d805a014f936ec15f0478488a31602c4e1628cca30c6", + "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", "block_index": 129, - "block_time": 1731184014 + "block_time": 1731185592 } ], "next_cursor": 195, @@ -10850,12 +10842,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "start_block": 0, "status": "open", - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "tx_index": 104, - "block_time": 1731184482, + "block_time": 1731186084, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10863,9 +10855,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "84b35f744353397095e02e4c250bb8adddc459b36b969ae4234e1dd5664d05e7", + "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", "block_index": 231, - "block_time": 1731184482 + "block_time": 1731186084 } ], "next_cursor": 859, @@ -10878,11 +10870,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "8f72d401904bc8f164ef463dc0b1739d7878fd582911696a4c36af1767e8fd60" + "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350" }, "tx_hash": null, "block_index": 228, - "block_time": 1731184472 + "block_time": 1731186075 } ], "next_cursor": 854, @@ -10898,17 +10890,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "f65ab579eca70850acba85ce024eeff46cf9dfb87b63402c2d1684fb07a1dfd7", + "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", "paid_quantity": 100000000, - "source": "bcrt1qmc07rexupuv3ut5vysjdpqcy3zz2wxdwsxh584", + "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", "status": "valid", - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "tx_index": 97, - "block_time": 1731184447, + "block_time": 1731186048, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qvt7wvxaqjdhlqrctgwp0spxws66eu8h854czp3", + "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "divisible": true, "locked": true }, @@ -10916,9 +10908,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "5b3e4f713fafb0b5753724d15b7d16291c4a1e3b6eb7027fe2963053e895d328", + "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", "block_index": 221, - "block_time": 1731184447 + "block_time": 1731186048 } ], "next_cursor": 801, @@ -10932,28 +10924,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039:0", + "destination": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "status": "valid", - "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", "tx_index": 75, - "block_time": 1731184320, + "block_time": 1731185922, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d9a907f442787ba793153d49cde610c2ed9fe313dfcd39d36b81a8d7174d9039", + "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", "block_index": 199, - "block_time": 1731184320 + "block_time": 1731185922 } ], "next_cursor": 598, @@ -10967,28 +10959,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "1e7a09d1d3861bc0e2a1943e7a07a1d2d126b0545a3e6e70c9bd6da05f26adfb:0", + "source": "82f7606f9c431d1baa013271caddcf151b1e273357d4df7bd454f771ffd351e9:0", "status": "valid", - "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", "tx_index": 74, - "block_time": 1731184316, + "block_time": 1731185919, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qrqk8mw23t4v0gt5gghj0fp23537jzvarvxg9uz", + "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "02725114f0e766d3e4c57744fca8f7163333346f85885b8aa88ad98add85d7a4", + "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", "block_index": 198, - "block_time": 1731184316 + "block_time": 1731185919 } ], "next_cursor": 293, @@ -11002,14 +10994,14 @@ "params": { "asset": "XCP", "block_index": 232, - "destination": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb:0", + "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", "msg_index": 1, "quantity": 2000000000, - "source": "e08b777d8c85485e8bbaca8df832b1e5505b8619dd79367449f900f025f66412:1", + "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", "status": "valid", - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "tx_index": 105, - "block_time": 1731184491, + "block_time": 1731186098, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11019,9 +11011,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "1aa5b27c12497f368d4f50c864c80084534c8db17a063d8d04084cfee1f6aefb", + "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", "block_index": 232, - "block_time": 1731184491 + "block_time": 1731186098 } ], "next_cursor": 899, @@ -11036,17 +11028,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1q93gv068j0ggf9raqx00fqh8f2ctvher57ls9dt", + "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", "status": "valid", - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", + "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", "tx_index": 9, - "block_time": 1731183938, + "block_time": 1731185512, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "781164631835157c7db5451f44e2f084171762c3be1f5069eddb1a00e129cfe6", + "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", "block_index": 112, - "block_time": 1731183938 + "block_time": 1731185512 } ], "next_cursor": 50, From 04e41b629d58c09f3f65b147e80ea9561a545fc0 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 10:28:00 +0000 Subject: [PATCH 106/138] try to fix pytest --- .github/workflows/build_and_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 12606888e4..154204f02e 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -33,7 +33,7 @@ jobs: - name: Install pytest and build module run: | - python3.10 -m pip install pytest hatch + python3.10 -m pip install pytest hatchling==1.25.0 hatch==1.13.0 python3.10 -m pip install --upgrade build # Build counterparty packages @@ -98,7 +98,7 @@ jobs: - name: Install pytest and build module run: | - pip install pytest hatch + pip install pytest hatchling==1.25.0 hatch==1.13.0 python -m pip install --upgrade build # Build counterparty packages From b2772cc030cbce6c67d1270425265653d0504c4d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 12:00:48 +0000 Subject: [PATCH 107/138] Add tests for gas system; refactor calculate_fee; fix get_transaction_count_for_last_period --- counterparty-core/counterpartycore/lib/gas.py | 74 +++++++++++++++--- .../counterpartycore/test/gas_test.py | 75 +++++++++++++++++++ 2 files changed, 137 insertions(+), 12 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/gas_test.py diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index feb2b30bd7..ba9f308b4e 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -24,24 +24,23 @@ def initialise(db): ) -def get_transaction_count_for_last_period(db, transaction_id, block_index): +def get_transaction_count_by_block(db, transaction_id, block_index): cursor = db.cursor() - count = cursor.execute( - f""" - SELECT count FROM transaction_count - WHERE transaction_id = ? AND block_index >= ? - {PERIOD_DURATION} - ORDER BY rowid DESC - LIMIT 1 - """, # noqa S608 - (transaction_id, block_index), - ).fetchone() + sql = """ + SELECT count FROM transaction_count + WHERE transaction_id = ? AND block_index == ? + ORDER BY rowid DESC + LIMIT 1 + """ # noqa S608 + binding = (transaction_id, block_index) + count = cursor.execute(sql, binding).fetchone() if count is None: return 0 return count["count"] def increment_counter(db, transaction_id, block_index): - current_count = get_transaction_count_for_last_period(db, transaction_id, block_index) + current_count = get_transaction_count_by_block(db, transaction_id, block_index) new_count = current_count + 1 bindings = { @@ -52,10 +51,31 @@ def increment_counter(db, transaction_id, block_index): ledger.insert_record(db, "transaction_count", bindings, "INCREMENT_TRANSACTION_COUNT") -def get_average_transactions(db, transaction_id, block_index): +def get_transaction_count_for_last_period(db, transaction_id, block_index): if block_index < PERIOD_DURATION: return 0 + + cursor = db.cursor() + sql = """ + SELECT SUM(count) as total_count FROM ( + SELECT MAX(rowid) as rowid, block_index, count + FROM transaction_count + WHERE transaction_id = ? + AND block_index >= ? AND block_index < ? + GROUP BY block_index + ) + """ + bindings = (transaction_id, block_index - PERIOD_DURATION, block_index) + transaction_count = cursor.execute(sql, bindings).fetchone() + if transaction_count is None: + return 0 + return transaction_count["total_count"] or 0 + + +def get_average_transactions(db, transaction_id, block_index): transaction_count = get_transaction_count_for_last_period(db, transaction_id, block_index) + if transaction_count == 0: + return 0 # return average number of transactions for the last PERIOD_DURATION blocks return transaction_count // PERIOD_DURATION @@ -85,6 +105,36 @@ def calculate_fee(x, a, b, base_fee, k): base_fee (float): Base fee amount k (float): Sigmoid steepness factor + Returns: + float: Calculated fee + """ + m = 1.5 # Exponent + n = 100 # Exponential Scaling Factor + + def sigmoid(t): + midpoint = (b - a) / 2 + a + return base_fee / (1 + math.exp(-k * (t - midpoint))) + + if x <= a: + return 0 + elif x <= b: + return sigmoid(x) + else: + return base_fee + (((x - b) ** m) / n) + + +def calculate_fee_1(x, a, b, base_fee, k): + """ + Calculate the fee based on the number of transactions per block, + ensuring continuity at the transition point. + + Parameters: + x (float): Number of transactions per period + a (float): Lower threshold (fee is zero below this) + b (float): Upper threshold (transition point to exponential growth) + base_fee (float): Base fee amount + k (float): Sigmoid steepness factor + Returns: float: Calculated fee """ diff --git a/counterparty-core/counterpartycore/test/gas_test.py b/counterparty-core/counterpartycore/test/gas_test.py new file mode 100644 index 0000000000..5af2541124 --- /dev/null +++ b/counterparty-core/counterpartycore/test/gas_test.py @@ -0,0 +1,75 @@ +import tempfile + +import pytest + +from counterpartycore.lib import gas +from counterpartycore.test.fixtures.params import ADDR, DP # noqa: F401 +from counterpartycore.test.util_test import CURR_DIR + +FIXTURE_SQL_FILE = CURR_DIR + "/fixtures/scenarios/unittest_fixture.sql" +FIXTURE_DB = tempfile.gettempdir() + "/fixtures.unittest_fixture.db" + +TRANSACTION_ID = 101 + + +@pytest.mark.usefixtures("server_db") +def test_gas_counter(server_db): + assert gas.get_average_transactions(server_db, 101, 802015) == 0 + + # two transactions by block during 2016 blocks + for i in range(2016): + gas.increment_counter(server_db, TRANSACTION_ID, 800000 + i) + gas.increment_counter(server_db, TRANSACTION_ID, 800000 + i) + + assert gas.get_transaction_count_for_last_period(server_db, TRANSACTION_ID, 802016) == 2016 * 2 + + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 802016) == 2 + + # 2.5 transactions by block during 2016 blocks + for i in range(1008): + gas.increment_counter(server_db, TRANSACTION_ID, 800000 + i) + + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 802016) == 2 + + # 3 transactions by block during 2016 blocks + for i in range(1008): + gas.increment_counter(server_db, TRANSACTION_ID, 800000 + i) + + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 802016) == 3 + + +@pytest.mark.usefixtures("server_db") +def test_gas_counter_2(server_db): + assert gas.get_average_transactions(server_db, 101, 802015) == 0 + + # two transactions by block during 3000 blocks + for i in range(3000): + gas.increment_counter(server_db, TRANSACTION_ID, 800000 + i) + gas.increment_counter(server_db, TRANSACTION_ID, 800000 + i) + + for i in range(802016, 803001): + assert gas.get_transaction_count_for_last_period(server_db, TRANSACTION_ID, i) == 2016 * 2 + assert gas.get_average_transactions(server_db, TRANSACTION_ID, i) == 2 + + # then 4 transactions by block during 1032 blocks + for i in range(1008): + gas.increment_counter(server_db, TRANSACTION_ID, 803000 + i) + gas.increment_counter(server_db, TRANSACTION_ID, 803000 + i) + gas.increment_counter(server_db, TRANSACTION_ID, 803000 + i) + gas.increment_counter(server_db, TRANSACTION_ID, 803000 + i) + + assert ( + gas.get_transaction_count_for_last_period(server_db, TRANSACTION_ID, 804008) + == 1008 * 2 + 1008 * 4 + ) + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008) == 3 + + # then no transaction during 1 block + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804009) == 2 + + # then no transaction during 1008 block + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008 + 1008) == 2 + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008 + 1009) == 1 + # 4 tx by block during 504 blocks, then 0 tx during 1512 blocks (1512 + 504 = 2016) + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008 + 1512) == 1 + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008 + 1513) == 0 From 18480225238842953383902ad5ce4930ce462e11 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 12:42:28 +0000 Subject: [PATCH 108/138] more tests --- counterparty-core/counterpartycore/lib/gas.py | 41 +++---------------- .../counterpartycore/test/conftest.py | 2 +- .../counterpartycore/test/gas_test.py | 26 +++++++++++- 3 files changed, 30 insertions(+), 39 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index ba9f308b4e..e2b8df9c8a 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -81,9 +81,14 @@ def get_average_transactions(db, transaction_id, block_index): def get_transaction_fee(db, transaction_id, block_index): + print("get_transaction_fee") + x = get_average_transactions(db, transaction_id, block_index) fee_params = util.get_value_by_block_index("fee_parameters", block_index) + if fee_params is None: + return 0 + a = fee_params[str(transaction_id)]["fee_lower_threshold"] b = fee_params[str(transaction_id)]["fee_upper_threshold"] base_fee = fee_params[str(transaction_id)]["base_fee"] @@ -121,39 +126,3 @@ def sigmoid(t): return sigmoid(x) else: return base_fee + (((x - b) ** m) / n) - - -def calculate_fee_1(x, a, b, base_fee, k): - """ - Calculate the fee based on the number of transactions per block, - ensuring continuity at the transition point. - - Parameters: - x (float): Number of transactions per period - a (float): Lower threshold (fee is zero below this) - b (float): Upper threshold (transition point to exponential growth) - base_fee (float): Base fee amount - k (float): Sigmoid steepness factor - - Returns: - float: Calculated fee - """ - - def sigmoid(t): - return 1 / (1 + math.exp(-k * (t - 0.5))) - - if x <= a: - return 0 - elif x <= b: - return base_fee * sigmoid((x - a) / (b - a)) - else: - # Calculate sigmoid value and derivative at x = b - sigmoid_at_b = sigmoid(1) - sigmoid_derivative_at_b = k * sigmoid_at_b * (1 - sigmoid_at_b) - - # Calculate parameters for the exponential part - m = sigmoid_derivative_at_b * (b - a) / base_fee - c = math.log(m) - - # Exponential function that matches sigmoid at x = b - return base_fee * sigmoid_at_b * math.exp(c * ((x - b) / (b - a))) diff --git a/counterparty-core/counterpartycore/test/conftest.py b/counterparty-core/counterpartycore/test/conftest.py index a5dad10d2a..485c05afa6 100644 --- a/counterparty-core/counterpartycore/test/conftest.py +++ b/counterparty-core/counterpartycore/test/conftest.py @@ -661,7 +661,7 @@ def determine_encoding( "counterpartycore.lib.ledger.get_matching_orders", ledger.get_matching_orders_no_cache ) - monkeypatch.setattr("counterpartycore.lib.gas.get_transaction_fee", get_transaction_fee) + # monkeypatch.setattr("counterpartycore.lib.gas.get_transaction_fee", get_transaction_fee) monkeypatch.setattr("counterpartycore.lib.transaction.determine_encoding", determine_encoding) monkeypatch.setattr( diff --git a/counterparty-core/counterpartycore/test/gas_test.py b/counterparty-core/counterpartycore/test/gas_test.py index 5af2541124..73da9626b0 100644 --- a/counterparty-core/counterpartycore/test/gas_test.py +++ b/counterparty-core/counterpartycore/test/gas_test.py @@ -14,7 +14,7 @@ @pytest.mark.usefixtures("server_db") def test_gas_counter(server_db): - assert gas.get_average_transactions(server_db, 101, 802015) == 0 + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 800000) == 0 # two transactions by block during 2016 blocks for i in range(2016): @@ -40,7 +40,7 @@ def test_gas_counter(server_db): @pytest.mark.usefixtures("server_db") def test_gas_counter_2(server_db): - assert gas.get_average_transactions(server_db, 101, 802015) == 0 + assert gas.get_average_transactions(server_db, 101, 800000) == 0 # two transactions by block during 3000 blocks for i in range(3000): @@ -73,3 +73,25 @@ def test_gas_counter_2(server_db): # 4 tx by block during 504 blocks, then 0 tx during 1512 blocks (1512 + 504 = 2016) assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008 + 1512) == 1 assert gas.get_average_transactions(server_db, TRANSACTION_ID, 804008 + 1513) == 0 + + +def generate_gas_counter(server_db, block_index, average): + for i in range(2016): + for _ in range(average): + gas.increment_counter(server_db, TRANSACTION_ID, block_index + i) + block_index += 2016 + assert gas.get_average_transactions(server_db, TRANSACTION_ID, block_index) == average + return block_index + + +@pytest.mark.usefixtures("server_db") +def test_calculate_fee(server_db): + assert gas.get_average_transactions(server_db, TRANSACTION_ID, 800000) == 0 + + block_index = 3000000 + + block_index = generate_gas_counter(server_db, block_index, 2) + + fee = gas.get_transaction_fee(server_db, TRANSACTION_ID, block_index) + + assert fee == 0 From 1c85fa2a7e060bd4746cb0816d810defd7fd5741 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 10 Nov 2024 08:50:29 -0500 Subject: [PATCH 109/138] Release Notes for Asset Longname Sorting --- release-notes/release-notes-v10.6.2.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 20b11a2b0a..c3f5e86788 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -51,6 +51,7 @@ When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminte - Add `/v2/bitcoin/transaction/decode` route to proxy bitcoin `decoderawtransaction` method - `inputs_set` now supports UTXOs in the format `:::` - Skip transaction sanity check when `validate=false` +- Take `asset_longname` into consideration when sorting on `asset` field ## CLI From d8433fe609d9c5f4a3646d323a66f2ad37dd45c1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 14:51:25 +0000 Subject: [PATCH 110/138] more tests --- counterparty-core/counterpartycore/lib/gas.py | 2 - .../counterpartycore/test/gas_test.py | 55 +++++++++++++++++-- 2 files changed, 50 insertions(+), 7 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index e2b8df9c8a..969882c925 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -81,8 +81,6 @@ def get_average_transactions(db, transaction_id, block_index): def get_transaction_fee(db, transaction_id, block_index): - print("get_transaction_fee") - x = get_average_transactions(db, transaction_id, block_index) fee_params = util.get_value_by_block_index("fee_parameters", block_index) diff --git a/counterparty-core/counterpartycore/test/gas_test.py b/counterparty-core/counterpartycore/test/gas_test.py index 73da9626b0..5bbe7cfcf4 100644 --- a/counterparty-core/counterpartycore/test/gas_test.py +++ b/counterparty-core/counterpartycore/test/gas_test.py @@ -1,3 +1,4 @@ +import random import tempfile import pytest @@ -11,6 +12,48 @@ TRANSACTION_ID = 101 +FEE_BY_TX_COUNT_PER_PERIOD = { + "2": 0, + "3": 0, + "4": 669285, + "5": 1798620, + "6": 4742587, + "7": 11920292, + "8": 26894142, + "9": 50000000, + "10": 73105857, + "11": 88079707, + "12": 95257412, + "13": 98201379, + "14": 99330714, + "15": 99752737, + "16": 101000000, + "17": 102828427, + "18": 105196152, + "19": 108000000, + "20": 111180339, + "21": 114696938, + "22": 118520259, + "23": 122627416, + "24": 127000000, + "25": 131622776, + "26": 136482872, + "27": 141569219, + "28": 146872166, + "29": 152383203, + "30": 158094750, + "31": 164000000, + "32": 170092795, + "33": 176367532, + "34": 182819079, + "35": 189442719, + "36": 196234089, + "37": 203189146, + "38": 210304125, + "39": 217575507, + "40": 225000000, +} + @pytest.mark.usefixtures("server_db") def test_gas_counter(server_db): @@ -90,8 +133,10 @@ def test_calculate_fee(server_db): block_index = 3000000 - block_index = generate_gas_counter(server_db, block_index, 2) - - fee = gas.get_transaction_fee(server_db, TRANSACTION_ID, block_index) - - assert fee == 0 + # test five random tx count per period between 2 and 40 + for _ in range(5): + tx_count_per_period = random.randint(2, 40) # noqa: S311 + block_index = generate_gas_counter(server_db, block_index, tx_count_per_period) + fee = gas.get_transaction_fee(server_db, TRANSACTION_ID, block_index) + print(f'"{tx_count_per_period}": {fee},') + assert fee == FEE_BY_TX_COUNT_PER_PERIOD[str(tx_count_per_period)] From db1ca8e3865b7f047f8212c77c4cfa646dcf842b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 15:18:26 +0000 Subject: [PATCH 111/138] tweak calculate_fee --- counterparty-core/counterpartycore/lib/gas.py | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index 969882c925..457df68dad 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -87,30 +87,35 @@ def get_transaction_fee(db, transaction_id, block_index): if fee_params is None: return 0 - a = fee_params[str(transaction_id)]["fee_lower_threshold"] - b = fee_params[str(transaction_id)]["fee_upper_threshold"] - base_fee = fee_params[str(transaction_id)]["base_fee"] - k = fee_params[str(transaction_id)]["fee_sigmoid_k"] + a = int(fee_params[str(transaction_id)]["fee_lower_threshold"]) + b = int(fee_params[str(transaction_id)]["fee_upper_threshold"]) + base_fee = int(fee_params[str(transaction_id)]["base_fee"]) + k = int(fee_params[str(transaction_id)]["fee_sigmoid_k"]) fee = calculate_fee(x, a, b, base_fee, k) return int(fee * config.UNIT) -def calculate_fee(x, a, b, base_fee, k): +def calculate_fee(x: int, a: int, b: int, base_fee: int, k: int): """ Calculate the fee based on the number of transactions per block, ensuring continuity at the transition point. Parameters: - x (float): Number of transactions per period - a (float): Lower threshold (fee is zero below this) - b (float): Upper threshold (transition point to exponential growth) - base_fee (float): Base fee amount - k (float): Sigmoid steepness factor + x (int): Number of transactions per period + a (int): Lower threshold (fee is zero below this) + b (int): Upper threshold (transition point to exponential growth) + base_fee (int): Base fee amount + k (int): Sigmoid steepness factor Returns: float: Calculated fee """ + if x < 0 or a < 0 or b < 0 or base_fee < 0 or k < 0: + raise ValueError("All inputs must be non-negative") + if b <= a: + raise ValueError("Upper threshold must be greater than lower threshold") + m = 1.5 # Exponent n = 100 # Exponential Scaling Factor From 4925dc8e20e02cdaa554691499a2dc3be7a6e06b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 15:29:06 +0000 Subject: [PATCH 112/138] Use Decimal in calculate_fee() --- counterparty-core/counterpartycore/lib/gas.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index 457df68dad..f0d833007c 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -1,4 +1,5 @@ import math +from decimal import Decimal as D from counterpartycore.lib import config, database, ledger, util @@ -116,8 +117,10 @@ def calculate_fee(x: int, a: int, b: int, base_fee: int, k: int): if b <= a: raise ValueError("Upper threshold must be greater than lower threshold") - m = 1.5 # Exponent - n = 100 # Exponential Scaling Factor + x, a, b, base_fee, k = map(D, (x, a, b, base_fee, k)) + + m = D(1.5) # Exponent + n = D(100) # Exponential Scaling Factor def sigmoid(t): midpoint = (b - a) / 2 + a From 7bee2a148dbb20fc245716ca106380ea9ed87d14 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 15:35:36 +0000 Subject: [PATCH 113/138] math.exp() returns a float --- counterparty-core/counterpartycore/lib/gas.py | 2 +- .../counterpartycore/test/api_v2_test.py | 4 +- .../test/complex_unit_test.py | 2 +- .../test/fixtures/api_v2_fixtures.json | 234 ++- .../scenarios/parseblock_unittest_fixture.sql | 1260 ++++++++--------- .../fixtures/scenarios/unittest_fixture.sql | 1258 ++++++++-------- .../counterpartycore/test/gas_test.py | 1 + .../counterpartycore/test/parse_block_test.py | 4 +- .../regtest/scenarios/scenario_18_utxo.py | 2 +- .../test/regtest/scenarios/scenario_7_utxo.py | 4 +- 10 files changed, 1340 insertions(+), 1431 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index f0d833007c..d7be5af7bf 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -124,7 +124,7 @@ def calculate_fee(x: int, a: int, b: int, base_fee: int, k: int): def sigmoid(t): midpoint = (b - a) / 2 + a - return base_fee / (1 + math.exp(-k * (t - midpoint))) + return base_fee / (1 + D(math.exp(-k * (t - midpoint)))) if x <= a: return 0 diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py index 35cf05211d..bea32e3db0 100644 --- a/counterparty-core/counterpartycore/test/api_v2_test.py +++ b/counterparty-core/counterpartycore/test/api_v2_test.py @@ -224,7 +224,7 @@ def test_new_get_balances_by_address(): { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "XCP", - "quantity": 91674999880, + "quantity": 91674999900, "utxo": None, "utxo_address": None, }, @@ -245,7 +245,7 @@ def test_new_get_balances_by_asset(): "utxo": None, "utxo_address": None, "asset": "XCP", - "quantity": 91674999880, + "quantity": 91674999900, }, { "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", diff --git a/counterparty-core/counterpartycore/test/complex_unit_test.py b/counterparty-core/counterpartycore/test/complex_unit_test.py index 773266d125..a62741f621 100644 --- a/counterparty-core/counterpartycore/test/complex_unit_test.py +++ b/counterparty-core/counterpartycore/test/complex_unit_test.py @@ -37,7 +37,7 @@ def test_alice_bob(server_db, cp_server, api_server): # balance before send alice_balance = ledger.get_balance(server_db, alice, "XCP") bob_balance = ledger.get_balance(server_db, bob, "XCP") - assert alice_balance == 91674999880 + assert alice_balance == 91674999900 assert bob_balance == 0 # create send diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 810a74a2e7..3708a83975 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -7,9 +7,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2", + "ledger_hash": "94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a", "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", - "messages_hash": "70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618", + "messages_hash": "5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785", "transaction_count": 0, "confirmed": true }, @@ -19,9 +19,9 @@ "block_time": 310702000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638", + "ledger_hash": "572bb86d600d33ec82edac9b1077ec7700d526cb25a69bc2bf2e10953f403e01", "txlist_hash": "0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f", - "messages_hash": "a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e", + "messages_hash": "6ea4ac41326e29e0232ae9d494849ea2b825116e5ff8b76cffe56ea9dfa09997", "transaction_count": 0, "confirmed": true }, @@ -31,9 +31,9 @@ "block_time": 310701000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5", + "ledger_hash": "8bc0f9cfc1b75cdfd6e59f1d41c6b67b790a25a98b6240f7ff5df617f256cb00", "txlist_hash": "c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107", - "messages_hash": "923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb", + "messages_hash": "5397b96551c0a64ab068399907d75384be4291c1cf18cc3abe34cd1ae3c8482d", "transaction_count": 0, "confirmed": true }, @@ -43,9 +43,9 @@ "block_time": 310700000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753", + "ledger_hash": "439c74d2a465996838179517ff57b2cc558d66848b857580be65319363846033", "txlist_hash": "64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6", - "messages_hash": "c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07", + "messages_hash": "3060f01ecd3a6fccc1bd7b34efaee852a4b7d232a8d861626968e4690c5c4e6d", "transaction_count": 0, "confirmed": true }, @@ -55,9 +55,9 @@ "block_time": 310699000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54", + "ledger_hash": "5d0fa0f5c261642712f86c72055a7f19afe078a6c34e5538d77d85bb1b799a94", "txlist_hash": "699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b", - "messages_hash": "9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1", + "messages_hash": "c14011ca0548cc6aa347ebe1fb5249b938a40f7552924230ac9bd0456b173d84", "transaction_count": 0, "confirmed": true }, @@ -67,9 +67,9 @@ "block_time": 310698000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96", + "ledger_hash": "f4f83f7b347792bb4c1336c694a08b2642717ebca900d9a0489bce1a2d994418", "txlist_hash": "4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13", - "messages_hash": "18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf", + "messages_hash": "3a31ecc1c0af51adc95b88dd15ef06b7cd49f90977c3f8bc0931163c77be9218", "transaction_count": 0, "confirmed": true }, @@ -79,9 +79,9 @@ "block_time": 310697000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737", + "ledger_hash": "995f4b278c55bf41f128a3dcc39a0389d4856e4aafab042c915eaaae536e40e2", "txlist_hash": "88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7", - "messages_hash": "25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0", + "messages_hash": "08c75385b4290db3fc39fb503a2a0f3ab7631db44d7ad0eb3d2db9ade975b6a9", "transaction_count": 0, "confirmed": true }, @@ -91,9 +91,9 @@ "block_time": 310696000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52", + "ledger_hash": "d0a47afe3a6d2d2bf01e56643798c4a653d827046991571026345f44b34bac6f", "txlist_hash": "1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376", - "messages_hash": "7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf", + "messages_hash": "f5227bdae94c5ae394110e0690a013955d1e76379ba151b0fa209da444d9781c", "transaction_count": 0, "confirmed": true }, @@ -103,9 +103,9 @@ "block_time": 310695000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516", + "ledger_hash": "819360045a5f9ee7b2696a8b1cd2579371b25a43076e1f4731d948dcb7b14202", "txlist_hash": "cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb", - "messages_hash": "e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192", + "messages_hash": "05967636ad202a361deee96e758fd75be0c2a1b07817c215db206c187125f34b", "transaction_count": 0, "confirmed": true }, @@ -115,9 +115,9 @@ "block_time": 310694000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8", + "ledger_hash": "5b2559a37945f4174c2f651c9315ca9b9c274b40baf87a0e0890615459f7f437", "txlist_hash": "cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10", - "messages_hash": "e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb", + "messages_hash": "263bcb74757322f36cc19e8d722bfcf1c0c045ff6ae40b1ee071f9de4f6a1218", "transaction_count": 0, "confirmed": true } @@ -132,9 +132,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2", + "ledger_hash": "94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a", "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", - "messages_hash": "70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618", + "messages_hash": "5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785", "transaction_count": 0, "confirmed": true } @@ -1936,7 +1936,7 @@ "http://localhost:10009/v2/addresses/events?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": { "result": [ { - "event_index": 1355, + "event_index": 1351, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 310513, @@ -1950,7 +1950,7 @@ "block_time": 310513000 }, { - "event_index": 1328, + "event_index": 1324, "event": "DEBIT", "params": { "action": "attach to utxo", @@ -1977,60 +1977,7 @@ "block_time": 310508000 }, { - "event_index": 1326, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "XCP", - "block_index": 310508, - "quantity": 10, - "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "status": "valid", - "tag": "attach to utxo fee", - "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", - "tx_index": 509, - "block_time": 310508000, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", - "block_index": 310508, - "block_time": 310508000 - }, - { - "event_index": 1325, - "event": "DEBIT", - "params": { - "action": "attach to utxo fee", - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "asset": "XCP", - "block_index": 310508, - "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", - "quantity": 10, - "tx_index": 509, - "utxo": null, - "utxo_address": null, - "block_time": 310508000, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", - "block_index": 310508, - "block_time": 310508000 - }, - { - "event_index": 1324, + "event_index": 1322, "event": "NEW_TRANSACTION", "params": { "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", @@ -2057,10 +2004,37 @@ "tx_hash": null, "block_index": 310508, "block_time": 310508000 + }, + { + "event_index": 1316, + "event": "DEBIT", + "params": { + "action": "attach to utxo", + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset": "XCP", + "block_index": 310507, + "event": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", + "quantity": 100, + "tx_index": 508, + "utxo": null, + "utxo_address": null, + "block_time": 310507000, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000100" + }, + "tx_hash": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", + "block_index": 310507, + "block_time": 310507000 } ], - "next_cursor": 1324, - "result_count": 177 + "next_cursor": 1314, + "result_count": 173 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances?verbose=true": { "result": [ @@ -2232,7 +2206,7 @@ { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "XCP", - "quantity": 91674999880, + "quantity": 91674999900, "utxo": null, "utxo_address": null, "asset_info": { @@ -2592,27 +2566,6 @@ }, "quantity_normalized": "0.00000001" }, - { - "block_index": 310508, - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "asset": "XCP", - "quantity": 10, - "action": "attach to utxo fee", - "event": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", - "tx_index": 509, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 310508000, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, { "block_index": 310507, "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", @@ -2634,27 +2587,6 @@ }, "quantity_normalized": "0.00000100" }, - { - "block_index": 310507, - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "asset": "XCP", - "quantity": 10, - "action": "attach to utxo fee", - "event": "c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02", - "tx_index": 508, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 310507000, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true - }, - "quantity_normalized": "0.00000010" - }, { "block_index": 310503, "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", @@ -3161,7 +3093,7 @@ } ], "next_cursor": null, - "result_count": 28 + "result_count": 26 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/bets?verbose=true": { "result": [ @@ -3259,7 +3191,7 @@ "status": "valid", "msg_index": 0, "memo": null, - "fee_paid": 10, + "fee_paid": 0, "confirmed": true, "block_time": 310508000, "asset_info": { @@ -3270,7 +3202,7 @@ "locked": false }, "quantity_normalized": "0.00000001", - "fee_paid_normalized": "0.00000010" + "fee_paid_normalized": "0.00000000" }, { "tx_index": 508, @@ -3283,7 +3215,7 @@ "status": "valid", "msg_index": 0, "memo": null, - "fee_paid": 10, + "fee_paid": 0, "confirmed": true, "block_time": 310507000, "asset_info": { @@ -3294,7 +3226,7 @@ "locked": true }, "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000010" + "fee_paid_normalized": "0.00000000" }, { "tx_index": 482, @@ -5451,7 +5383,7 @@ "owner": null, "divisible": true, "locked": true, - "supply": 603781847900, + "supply": 603781847920, "description": "The Counterparty protocol native currency", "first_issuance_block_index": 278319, "last_issuance_block_index": 283810, @@ -6686,12 +6618,12 @@ "http://localhost:10009/v2/events?limit=5&verbose=true": { "result": [ { - "event_index": 1739, + "event_index": 1735, "event": "BLOCK_PARSED", "params": { "block_index": 310703, - "ledger_hash": "641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2", - "messages_hash": "70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618", + "ledger_hash": "94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a", + "messages_hash": "5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785", "transaction_count": 0, "txlist_hash": "75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1", "block_time": 310703000 @@ -6701,7 +6633,7 @@ "block_time": 310703000 }, { - "event_index": 1738, + "event_index": 1734, "event": "NEW_BLOCK", "params": { "block_hash": "b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218", @@ -6717,12 +6649,12 @@ "block_time": 310703000 }, { - "event_index": 1737, + "event_index": 1733, "event": "BLOCK_PARSED", "params": { "block_index": 310702, - "ledger_hash": "854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638", - "messages_hash": "a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e", + "ledger_hash": "572bb86d600d33ec82edac9b1077ec7700d526cb25a69bc2bf2e10953f403e01", + "messages_hash": "6ea4ac41326e29e0232ae9d494849ea2b825116e5ff8b76cffe56ea9dfa09997", "transaction_count": 0, "txlist_hash": "0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f", "block_time": 310702000 @@ -6732,7 +6664,7 @@ "block_time": 310702000 }, { - "event_index": 1736, + "event_index": 1732, "event": "NEW_BLOCK", "params": { "block_hash": "69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8", @@ -6748,12 +6680,12 @@ "block_time": 310702000 }, { - "event_index": 1735, + "event_index": 1731, "event": "BLOCK_PARSED", "params": { "block_index": 310701, - "ledger_hash": "61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5", - "messages_hash": "923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb", + "ledger_hash": "8bc0f9cfc1b75cdfd6e59f1d41c6b67b790a25a98b6240f7ff5df617f256cb00", + "messages_hash": "5397b96551c0a64ab068399907d75384be4291c1cf18cc3abe34cd1ae3c8482d", "transaction_count": 0, "txlist_hash": "c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107", "block_time": 310701000 @@ -6763,8 +6695,8 @@ "block_time": 310701000 } ], - "next_cursor": 1734, - "result_count": 1740 + "next_cursor": 1730, + "result_count": 1736 }, "http://localhost:10009/v2/events/10?limit=5&verbose=true": { "result": { @@ -6806,12 +6738,12 @@ } ], "next_cursor": "ORDER_MATCH", - "result_count": 31 + "result_count": 30 }, "http://localhost:10009/v2/events/CREDIT?limit=5&verbose=true": { "result": [ { - "event_index": 1507, + "event_index": 1503, "event": "CREDIT", "params": { "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM", @@ -6838,7 +6770,7 @@ "block_time": 310588000 }, { - "event_index": 1338, + "event_index": 1334, "event": "CREDIT", "params": { "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", @@ -6865,7 +6797,7 @@ "block_time": 310509000 }, { - "event_index": 1329, + "event_index": 1325, "event": "CREDIT", "params": { "address": null, @@ -6892,7 +6824,7 @@ "block_time": 310508000 }, { - "event_index": 1319, + "event_index": 1317, "event": "CREDIT", "params": { "address": null, @@ -6973,7 +6905,7 @@ "status": "valid", "msg_index": 0, "memo": null, - "fee_paid": 10, + "fee_paid": 0, "confirmed": true, "block_time": 310508000, "asset_info": { @@ -6984,7 +6916,7 @@ "locked": false }, "quantity_normalized": "0.00000001", - "fee_paid_normalized": "0.00000010" + "fee_paid_normalized": "0.00000000" }, { "tx_index": 508, @@ -6997,7 +6929,7 @@ "status": "valid", "msg_index": 0, "memo": null, - "fee_paid": 10, + "fee_paid": 0, "confirmed": true, "block_time": 310507000, "asset_info": { @@ -7008,7 +6940,7 @@ "locked": true }, "quantity_normalized": "0.00000100", - "fee_paid_normalized": "0.00000010" + "fee_paid_normalized": "0.00000000" }, { "tx_index": 497, diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index dceafdfa7e..27fd245a2c 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'2da66508b6fcc29c1dbcfaa1d547e2e7fcd32632cdf98f995d161075ab06c3a2','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','542b45c877e2d74120d67e6bab78b783515661bb13ba9bfd72512d07deddc0d2',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'783827f1e82edaf42d45619e7b18e20d544f5d8475f3815a61f1f7de9190aa75','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','81929f0d58e45cf9dd08d4f4b6ec6a133bccff47940383c44adda8a047d94290',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'6d4cd7106c8334cf9ba41c687ca3bf911cea24d66d750e7155ac016ce2315e90','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','757fb88511765ac409322f00f6090a339b6f0087618057aa8756d850d511b0bd',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'d8e13aeca99805e15eb437805f303dde5ab0cb44a0499d7d776f31ee476281bb','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','47785c8e33288cec85899bc3b1c039f35f79df372f5dfe9f327640d1200031fb',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'284e7317e2f651316fc66a70bdf993a6eb03030cde24b2829c8dc1fb3083cb65','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','5a1169dd2825de1dcf0f9bcdf9983a3951bc21fdc2f032c638131317a4d6cd76',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'6700fd71b01d55ffb9abff46f33404f8afdaa244c34d79d1a5597f0a2c925988','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','4f61732e6c4e60802436a1ac7920c368b7e2a96fd8e7f658d26cb22acccaf63d',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'f3ca04116717e4ff65dd65a9ddc1fcba48c77f3576cc7c293a1fefa62d628fbf','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','50fa01c8c581bddeda73dfb82950d3fd6e00dab4cb26bc309607906b2a85050d',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'0a526a36041076d11076786adcb2768eeb214b4aaf61a2370f0f44f1e7fcc15a','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','4b832eebd8655179ccc68b48ff05a7e341fbc93d0f88f04423e21a6df1328504',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'e0997c5e3f5e58120aa263056f9db2671b5ffaaee0eaab92785a3978fa90ba5e','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','4cd488735f3051bec72af179515a2a1dc19842f1bf0b46290e203e8ae0afdbd2',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'3beeb284fed1fe729ba2b994a41e8d7a4da00afbce5cc95fd84b985faa54fd47','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','80cd0467b0d6c1b42efe35523f9de28e11d2adb38c40ccb935275f41f6b3ffca',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'185ec7bd7c0cf4d0a380f0926a1e1dfe0e2d4c9fa572bc4d3a05fc0b2698e584','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','96859ba232437a3c37a8331de1a779fc77eccfdd173372cce8778bbc7e30d88c',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'094da03cdfcd515f0d40be96ea486e97133b0eaeed8e4fb459dc0dc9b3778508','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','21ac12260d40a0931b36ca0b212b5762132e373c3f89091287894248799426e5',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'e1b1593e442ca354f28f9e22510475d6064e973705bc8a17873af3726650a26b','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','774048e2980123c239ce09d67d7fe5d50df6237e257ee7e4fee96fbc7de03296',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'5c975744cf660ca6b01b7bd60efdc3cb42242f7eecc76a450f2a2e4b41d89b06','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','f88c606f8c001c912fe58f170c8df49989dcf5baaee42a2b835ada70f29abfa1',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'b5422d0d0f304eb2cc6c8c4c8c6770b627c6a8865778a802f4039aeafd808329','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','c27d6ac0cbf2755ede3ceb8a3b278c34c66e337500472552371fec3aaead38ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'964ccaaf5d261642ca22d826323c7229854e706b5854851521fc54ae29bafafc','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','ad9c3cc561c0c7627764d9bb03321400e688dd4990366a3547a72d8d6eac2ef6',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'28d40f6211e8881b294e4b934f38c5273b5719b016735950babaeceb6d0e3b8f','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','44df28540641a120fe2702b63a22e57f3f67a3d4bedd6e0e52a5aa6a7148dccd',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'5b6332f599e3dcd85cf2870da51446ceaf39471a995abcc9331790e435bf3b8a','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','4aa60fb5e6797bb907f5c9bcfca19303ac2abf6b46baeaaa542fa233769e4b04',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'41a093d957164251e64603595e5eacbef44ebb1f836606c3034b01ab852bf3ec','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','ddcd10a4a204232c04d62063374e2be4d7deb2a36809a6a8c360fda5bdd184d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'93940adc92c042ca2678fb879fe731f82cb6ab2359a5876d4e38c8326a2b95a7','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','3aadc79a191bb2ea2969254095ae5cc27424756c50beb924fa0bf858f8dba575',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'85c39fccdc3c9229858110f0ee92869349fc8d2c7d07c2cd98778831aca8ac26','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','bfa3707bfc5027103e7fbb6c0bca30dc3889102b6ea70402114ea864b06b6336',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'a07248b82f0a37126fc9e5978ec482c9b4e4e657652b7428870fc302abd50b59','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','c289915af496f6d7f21c7d72d3f062a130b9a0e9e6b96ab6b50fbaeb03eff252',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'d5e23e5eee8e31887b0f92f84e309115e1bd4fdeb4630982b9fd0822bafb8d08','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','4bf82547d08049e18a9e66400b62eb0decfc7132a66c2ebd5e36411e1fce68fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'45b1d42d6184fc6ff41a0c6744198e9ada178a97205dd457c18068d6916f44b0','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','7566d946acb598b3335f18e317e041b05aa07705c796db39f29ec924c003d814',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'9a581ce76795e586d5f691857551aa85593ff647a5a904daedade3406fb188bc','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','eae7370fde489df4ef8c9e16da991c1a2fa60b4cd3c92cd37608a0e6807d5745',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'eabac8937919ff8e56b84ee156fe44bd2d3709b2b6b32d7b06a324d26743d88d','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','48deb40d3714e0efb7f28dfbc9bb8cc9229ebaa602e54c40f6cc6930a1786d84',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'d0c7697fde7509deca83f1811b2ed8e7d08b1a4b44eff65d17631ef81b1e8f5f','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','55f8621a6005016df54522ea56b3c95a916000b144a0bedc502ec3a386b0220b',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'bd0ef7113457907b081d21fee7c3c937e93d1381e33341e87beec52618a92d9d','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','1632445bceab41182eeacb4ad6326dc1534abe20ae1ee97f7eb7a824618b4b9e',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'ecbe27e682c5f7d728a5f8658175c85c78d1a8c5ca859feec9b49e078b82117d','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','5802a8d9a466cf44d31125813c3a23a4a79cf367bf23c02dbc5f950da273132f',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'4a257c3e8a9210069816ebe982e40d7c4e08a791a81dc6acbde99a04201db04e','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','fe58961eda1ef42c57b2467b543c185c010dd183935f3689f04f3a5414dbf21b',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'790fafd9544969763c9f6e3c0c83944d2953be8a981a260c63e223a83464d04f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','447daf32944871005cc2b7394dc99764ffdf90260154e356dd51cae795cac368',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'f55360b861c665536eae661cef294934020cb8a06ac4808a7181794901355803','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','cd50ef38b2a3b2a2b098cd73e98689e6188f6bb76fc23078a3ec36ffbc7284be',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'b2539364321f94dd2b9d1aca0dacd1148d8e0213b966d8feca03222d3bce16fd','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','4fcc618697344dd2eabf342a4077ebab493be32dac8ca10ed8811b60f54d97ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'9922f3174986b70fcc9823a55ad4b84ad31a1c6aa4149e273c8e6c4eec6e5683','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','12f49f9dcc05ced302302960da83b0ccd5a00f1d3d3796f845e05d507f8bf1ac',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'45e6a6a29ac4d1a7ec55a6d857be0f15a7913a8a7abe49a33c4001ccd43f58c5','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','b27378abdc89008ae5d9100e7f9cd5ef4e48ce664d8a8bd7d1c20bbe02f9221b',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'3d699a1ec41c18dfdc59e74e793107a25d4237443d7e401919aac171dd5d0fad','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','1eb4148bf7ffbeb7bf665a358f5777b73924900b810ec9b029b7d55b601b68b6',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'eb2b3a6022accd97e8e50fefa6653996002c19959f9057f5f8ed4f3182130f73','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','63e03ac65fc2b4c8d586fec055106c3f1ca1b20bb6391b83b55948912ef32dce',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'f6f5e8c13f86e75d8f6816b79313a1f36a6f8b2cf31695ecd540f71e4d9d5aef','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','984bf8318534b47144cec9c165149a75ea64370a1ccabe1f707956103cff349b',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'1f20e98bea45b652cdcdce91a8e647eb8d683d4f974d052e0fe1eae55ecf43ec','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','7b924e1283a8444e4a945410be4b50b6f7b13220a8e505e43ca6d7810a141858',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'cd5d82fd6290fa9ede4d05f6e6fa3d73acaca08f8cf75247a9a04635b3f3387a','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','c7872c14dbe1bc8baadc23eaa6513f5f13e92b4163d813f537a67c5ff1ab2f56',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'5f01b4e547ae1e28d4e9bd84608d447949269f20a0fb9fcfb63966a9a34567e6','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','679526fe452c665f90d5d28d0ddf6541139c5169468961404d9436252c0cb111',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'7585ef9b77c458c97116c7ebeb6c5cc3980a3305fc9524902b05179ddca85fe5','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','d664fdd24ff6ce0e912a11366d4eeeb5bf82ff259322a2cac4439e0afda087c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'ce6e70206104dfaba538c59ea43ecb0fea0cc8f8f43d7993448354fefc6e11e9','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','5c48e908ea9c068fa579aa64fb10248320681dcda7dd6e52e4d4cc34236bbacd',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'13c0fe98ed1251f6d2c3d698971687a910c28031e3125d14d6ac66d0e997b049','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','024f02371f0f10f2e926bfb4e0eec4550ef6679aed1dfb8237f11236f37b7bff',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'c1f45c29b8be539a34c198c2277eed443959ab93e12bc09b8c56cb1bdd71ecca','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','94a2aed3cd5157e8fadc9138740d37720bb2069ddd2c05c640d0c9bb9b626557',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'ffbaa155370f8c509f36e6a90d1fa69dda6a4a49c5fb700b98e0dcbec5b98602','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','69bc5f9bcdab0eda2f1e42ea431b0b7591805c2c659cbb2134770aed49e65d6b',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'28df597bdadd29569b927c2fcd267114d443d2e00c6f3e174280720917c205bb','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','71cdffccd5f496d320881eb9f9bfe001fa7246cc1297f176fc58ec78ddc6ce53',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'0e14ff0544d352db226ce1e08033791decf38429dd7a04c1688593a8ae82b4f0','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','4b2be584916f400c716ba2c5b2b712439b04b25a0c4c606fa5c8631093fc6735',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'fcc02e52ce569822cac46b16b925c92c80ecd1694b7af067dcb87d7f45c3653d','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','f5785823cf9a5086cea7f49370832159a867f906386a211fd257885f78bf61fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'cbdcecaae6abc7a4baa4a2de6e8bb5bc47b8d3454e2a3dfe89ae1035de48f3a3','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','87dac23f8af9f53902b74ba449ad588315b516173beae3815f7ab475d5bd1c07',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'2b72a76f9e07c760ef0b04355b25a35f0f41d033bc2334c8556c256fdffe4051','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','5f32cab9f6e38ac11c4b0edda776d5a7257ea76c984780d2a3e27483ca4c7da3',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'bb5c9651a1f7327013069007703d9d27c611becb2fba6660cae8a1dc304d1d5c','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','f6412347e9dcb49b8bb45f2cae9930b4fd56a520d82262cc2c7bdc9ff1c14067',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'6231eee95e4d73b5a27b07ec5c6d13bfa0e8854044d1aacd921eefbe9e48b0a3','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','4ec6988fe13ba0e35b3a9f5f2dddf48852098c5b5cbce8bcd5404ecb04e78bca',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'d73018e8fb5f195d7db4776a55d4de0b92a4a436ea2dade3815d760376faa4a7','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','f7b42726cc54e43c9bd6219b7eedf45dce64df9cf39b6d47e18fe9ac55957f74',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'1a8b92da71abd620911af23b9d9617687da9f4c6167ddbc5af9ef6fd994deb9e','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','d6a06c109fca4ea3bb68be753254f2afb36ef8812ca808f8e284a42c9634b6a3',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'d6a38edb3a3dba9e97711ebc6001e76f7554f144eebbd592fc7fad5b3cb183af','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','f7a20018bcb43f84229f02dec5d4e5be146655518ab749ce1b3bcc4e8693e6bd',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'c763cd35dbaf2c85a287d500fc7077c2d3faad163c40c9a5d6295be67460e74c','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','a254b93e080b0d034d3029b9e556a14932f89b1ef7962e8418d6f8a1d225df9b',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'93923152ff82ff4a5ffac3fd2dc78ad8e39b6a353c82fb9004c32a950cd5ad70','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','3fea1a8d2044e283ba385e06fe3e5f1bd77084497845d3fe1835268aa954b43d',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'c79ac64f3c933540c042d595154c2fa49b52a2f3beff8f1a1b8d899233fd7eca','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','77192376cec16efe7bc960d08a3e8e5269d3fa93f6d2d4979660ae713773434a',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'508d4ca4bb45221a6b5dfcdba9c4399a13e85ede4dc0d55f41d0a34d89e9bd22','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','86fd54f92c5863dfe2661e1019e335cb4e40a445aba5ebf2c3c9cf97e06d1340',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'91eb06b8caa32d73b764fcba9995d63fff5ea4e9773b37d498d645fb8c081ad8','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','6fb2d02924ce14417fe3be64ee2fa98118424d05479249a0147ea19da3eeb4fb',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'f4bfc8b88de2b62f253dede4f6fa4ef3d0c931ddf688beaa3e7de6e30674622f','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','edb229c5de321a385085ac964b0d1ff0d6e6ac56b2d1d1e4efdb9e3e3107cc06',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'34b0e4aecad9b1a4aaca83ab99f47ee37648763618646756f14cf593d99d00f8','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','d11a6dba16d70359340bfb5c6785daa668f8a44092de5f5651ea1d595b6646fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'5cd904e3cd1d9d87ac4e5a9ed4288906690b2945f9f7d70fb264f039987545e9','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','f24ebd297778b77fcd1945048e4155426085d60216e0124067b1514f0b592bce',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'794fe432083e3ed9db5154ed1230b42437a44d012206a769a036f05d227134c8','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','210d93121b06402ab2a9d812e5ab973e9b45d543f643a7f2c9829d14490e264a',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'fdf11aabce275549558778a8c7f4693da40ace20a4409a9d163ce2edd349a713','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','8e068b79955287d1636b7d76e13a2e2008d73e815edb80692cdf1b3a3fa8dc95',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'4ec879ccd015d0b5dd8d2ddf8afb025cd8559effdf45d2984cea2f8e23d80dd2','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','6f1a1909b94951ad828d993c17824bef7b4a88576e5a71e4d2dd13afbc552d20',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'2e78c0a28df27f81257091154d3e6992382bb271372ce59b7209a7419cc9d5f4','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','b24cd35c242657d210ab6c6e25b412b841f710ee17df1683f749af67ac46ff5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'7d2ba3c2c0455d45d11b580bb46d3aca197d69d349553f57f930f85e6b217533','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','6696a560434aa16e68b869cee8651701c59e787817ff7e69edf1e74bddaad664',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'45fe61d07f3565131673018efda70cbce07795e4b969bc400b65a435ce500677','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','5a6c091f753a6c08757b6e01004f578c22de0f86ade021b3b2b7d2e201d4d623',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'cda4977de49bc1abafae2ae4b0ff55eae727e46ca159aab519d1e2318f643ce3','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','c9afe6f4874da8dd0059b2f412adb48bf64ac54489b56b2bb2ae3b04fabd3543',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'931abe28def24b00c8bafbca2e28d15fdd2e28e38d2d2771c64d3c78dd12a52c','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','18cd56c3f23e8315c7757462fb49a27ec3e9f3eb69933fed4bdc92b004b29b29',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'6f110331a1dbad0d121974ed59614c93809bd8faf1fff8931e7c75c19208d794','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','66680cbb67209a95dcf731f1d6243bd323de23df41414bf98e206d99a19da246',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'87b5eb8fd683a52c3811dbd35e1d89bfbd7b5a9f39094115d0d4de712b119787','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','5ab71d4c1c0157c630aae7ce080816aae80c526192c18bfd777c7f9ae8b3c6ca',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'f57ae22e4221e2aa755d86c98ce87022bdcad81b342c6d865f90ba781bb8e183','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','7b00bfea70117b2a1fd80d34b7eb5affb9aa446c7c78882921699a9ab6c64494',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'61fb2f7cfb691f5b459bb69f3b01f87f938cef952d77e05aca35388618a5b1fb','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','f1080961c399ee81d01f0d4994a2bc9b7f2bf2a884f2103c99ac9f6a45ffc970',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'af52fc8612e37b23eac85a42a0c1508066ccd927ffa32871bcfb1d59d0311d44','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','0240c274863c5c0e6d04c148215a6c49e8b6b92897389d88a77daca6a7017c66',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'9088575009ada38214936dbcca419b2c644273aac1e6a6b6189952f82fc57461','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','2e53f65466ec59be2fadb2a001da6bb9e3b0575e99f204732b34d5e84524b74d',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'2fa81bfb5b7e85a127bb660c07e7a77a5e57aea68b1bcafea4a78dc9cccb2444','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','271e4d154428b420d839feb1b9af6fa7d9a19bba35e88990b49bb57a9355ca9d',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'b14d57fd49c1359f5ef030984e9738053a71fc08c2fd2f7de57f1af4f2333da1','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','77c0e25f4d5ea3ea1f672eece81dc4c76aacf658d60458b2125bd3390e1dd775',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'d64d843bd0e217075889567e81a8c5a423ec0157c5bc299255949950a4fc867b','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','ec313bc2d5aa411da861230c6427a67cf01f28cfff5120a4eaa8f737f9825c64',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'9d542339dd7f803151e0956197a706624f5e5ba938ac1ba1d365fd632b72c0d4','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','3917bf0deb4f8e581203de5bcf24f2ec23d84d7172757621759830042e99a279',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'431a454660cdbcb14f4d2b3401f13b2cdfd85bf6bbd9f6da5a6910b43be20cd0','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','74764cd42f4801c7dae33e523e91db2a2087797c295547a4eef0c9743e19a774',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'ad2df931a1c3076b4a385d0e4c0b678ca226ad8a483376d45f333e08c375b08d','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','215873234ca21873b29cdb3db9fc295de5146f6e844317094faf4d87a541455a',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'f404486079e47c058d151bbd246c2bdfd939bde0918b8d542407ee0f2b6d0b0f','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','6550b5b918f15552d0081dbc14079ea1d9dcef4986724a76b3822d64b59bd84f',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'cc47d87f2ee4d9e38d6fe9144815a9457e815cddb62e15432e69d4c6a61d64a8','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','77a665e998cf4fde27d412dea745d697b96a67be6c1df619ec8786b2899c8b15',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'281d55efd1d17a0ea8e61f6e71b4e5e03589c56950bf22ee05f34ccea47efeac','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','b799599306e188b6432f73f51253a6549091281c680175e2c284991c2ee42c93',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'456576f4773f5dbfbe9026e46a631282fe2b3a9721545f8999a572e8e03460c7','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','2145ae04a209733fd7066e847ad67ea7ed6cc55eebd07187d8e5034451e233b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'d8e86913b170d3397d1a43e74480259a4e0bd15166fb775c10784df3e9306fd6','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','16887a8e36af78e12b3d9fd749ad2934cb98c4df89d25dcd69be7e92ec05a918',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'6a844171ef147e80140a7536dd6172744173a3a6b57dbe04ea53f8a1830088af','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','02a4b58ec409c6c9dc7e3a9d97505458aaf762b1dbd6d5701c96d6762bcbfb15',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'86cd60817de901fae021ea2e21f197c27f482eb9cf022ada75e56831002df9dd','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','4061105783c705bd5a5f3a29a83131e589f6954c0d455342e859888af3f08214',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'df2f6f05d8c697050096e9e9b17d2c3710da246b9d659f96af6d47cf940442a9','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','1a4a5d26e574705fe16bfe26f34bbffe21c38e0842211d78fa5459852eec274a',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'690a98a9c3a835f7383124a4a171e58b7a1f17332b5b66d7be095dfb99636e84','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','12e0aaa0a96fad4d154f9531170f2e996620f27c76f63eb4ae18c48779859bb9',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'9067cce032c8e080df48be0a1489479c346d7968f46250619ca64387dfd87001','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','d27caaf2a42242ac5113b6b77c5bdf520d4ffb6d81d78d724b2dfd23f4a29dd8',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'25d922d16e782dac0326e5b15f266eff4ccfa34a8778d1293e25db4e67feb516','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','fc74adb84baac2e99a023df0d4417087c3f806739ddb7df96349fa61606ff5b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'be5e3139d8586e393873fdd17b014929f3916d8a50c959bb75b6aea4db3b6f53','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','4b53b10b901a0f65f43ac18f7ffd99389d66220f01177cb43094ea3d25de0451',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'2353cf09fe846b4166544cf95863258c5f89b432480f71ed08980c08511ce2c7','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','cee3b17bd16807ae4f543daa5a7e78da25cde21d5d0ba2de48766542c2c066fd',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'a9ba0c79327a97a9598073003ae66fc9a472ebedf31a5d4d3512629c59f6f952','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','d787aceb17f32d17854fcf023799effd5d3b9141b4fb00f65b37331c9a8bd141',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'24939be5e74e777849d5ee446483c3667bb9762a2e6b04ccc32f46a13c0625d2','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','f6348e78af0c7bd894ccca2c71d53665b0aebfdd5da3463158af8d2bb08b2cf0',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'77d7cd9e661d7b06c940254fdccef8ba463ec9e4bf07e1a47288aefb10862b62','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','b3b6a9f322d46e0c28a9f600c964a360afc9b31ab1aa5b4152e0c9e4aa23ec91',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'b9b9190c1f33d9ec9d3ef5ab16ab5ae3df37a10aacf44fa36d7d706c6a2dcf92','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','f49d0d7e5d8f32d07706b4053517228ccc41c2e8a0a0ac0f63fdcdd8b8f2a968',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'6106df15c5efce0d238b69286531168e5fd935ec66efe5d99d7024f9a15f2612','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','8963294497e6038f0b0dc8713518dddc34262d48663c5465b2994d7aaa9c521b',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'4cf1aca34358bd858420fddfa75964c6b8400b849d3a0b637baeb902e3d143f8','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','1f517b822b687c346e65a6baf2d46ddf9040c51c4f8455db96ae458c21cf28aa',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'75380e5aec9bb02a0fe134b9ac364bb3217d2faeb8f9ca8d3d045e145a8db004','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','6c8b8da8e04c7f32f126fdbd8dbc42ed7a057a4bc4c5bd4a00dcb16606d144e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'61c6bf541cef555b6e807fefd0c1c4aecf62e35692ece1946effc8d0f0c5e4e7','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','db015975835ff9380fbc479552bee7b5d010b91388224f050d5172dea1ffc83d',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'a9c53f23b3766b394aca7fa4e0e2f4d7bc231f58acca5ec294f1100e51a07609','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','dce089b96049caa2a627a362caf6792f70bdcea48f310ea71e2d088536818350',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'81f9a537145fb937f08947176a73d4655e4bfbc3b0a0c3d16584c9fe31864e93','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','addbdd3d5ee13cabe2310162bb4fc5614fe856007a34314af4bb975c28f1496f',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'f3f90352f7d1b5e8d8301eb351ae038e27e3d8210a9a544d42c67147328532c0','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','09dd2b7628975503f55a34fd0caa19e94e5452728e6f985920fdd14c94af9ca7',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'88d0ebfa193bccacd5a6198fdb5544f7bcbae34d1c6a0b48415f481facfc2227','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','dfaad15d429e7bd317458db76fa63e0520615f5268918d49545b08b278e2e3c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'78dc24332463f1a27e7849813451835eaef944276f5bdec1838c30a3dee453b5','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','b906b21b11cb03e49af9b351312a6807cb39435675e30475dfa60df0d0224bca',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'6f8ce24bb75ab6ffdaefdec9123489c2a7efc94a7e1733637fa668ed5f7aa740','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','c782719a0e23751e1b696dde07c606533eb94d7c1406f170883f75d2ae414078',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'2e0c8075d1d0248881c14b9c3f69ea7f011b6db18c84711bb07b7f68d0099a36','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','045307065bc964157ae784b39e5a0e813918db3848a8c4fc93dff115a61425ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'13e04c93557b86a637a5b7edee007fd30ff4f813d9a3b4299d503383daa94d4c','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','b41cb4556f2dd8fc9a92f531a8666c751cf2650acfb1499ffa0c8de30548015f',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'4a60f0fbbf4d6c5bc0d8ad98cd3f2ec3212d6bb606bd98d1dce345288275c3f6','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','caa7fd46dc35c36837f7a4b7d068e43aa2c6df335aa437c3f4cc3c6caa09af2f',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'785d1a4f88ab690182405388c765098212f522432e69a68ee5b7f471a8164d7e','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','b664efe566c4b69b06f8f491308e904f2ed046ea488b467166826a55040874b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'ea74bf89453deec1c8d391185c8cdbfed0064a9e9b09948eed408d7b560b1982','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','12bf2a6fb2579f8d83cd4ec9d7ed69563b0ac0a46995b4c9a8dc8bc04c5bb887',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'c969c1ab67b3b338989e35568c4fba6bee0278a6fb1fefd9995fe55d316e6843','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','39f903a0642daf5a10df2d143004693602c91ec8ba3a982a8172e85e71ccee30',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'4b3014e7daf07e12ce4f59d0136f75425cf81c46d68c224edee560bdf32c4413','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','ef419ae862ddd4bb6538c0cb81c39185abfca556ba858167498513bc1c42f81b',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'c29903b73d4ce5fae6c20af6dac989ee532d57945f4d286c1552ebbe4829e514','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','98001a57a78b1cfc91b4538c3c622eb215d44f7b8ed349ec874f46760251a234',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'be056a10dfbaac7a217e7f30c5e60f5bac78aea92a16417ca2921d7f3b41e97f','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','7e140144911238d1d8b1dc703ebb84974e67eabf965736e0f26af3885a109245',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'b410bb813654419d23348e4bfcf5ddf41a673358a6a973fc57e3816347bccc8a','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','804fa5a9891318aec6c515d26047d62997195480b8ee44bc0a86b807099062e3',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'5ad3e05ff5f93a90818ff1d4ffb39b8476e2e8c6ca60e88c27f92319d41d8725','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','33813dbe8b795d039ca4625f0b200c6202c5ad0fb3848842185ca616813cbe7f',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'9c5a977c46b99326a92caa9d112b871dcb7160e2c73abfd4a8ed015330a2d032','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','1dcede5740d6e21b72ead44fcad640460fea3432fd36bafe313f3fb4b22ecb63',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'d8fc4c7024781f7f0e4925c28c2eba5c12917e3c69375b286148993c7bc3bbcd','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','5b4519e34fcc185589f2cca0a176b7b058423ef4f2c9d7de130561b5a712bac0',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'c12ab1abd6ade6e559de7801c009ee5862e04e5a84b4b28f012b167a4d70c68b','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','715509548f6641c632ac3cdbbedb92652262ec001dbd23807b8909b994116990',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'03170891d13e894608eb5d74f6134253b910605d4f763807e538bf1817cdb232','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','8da02af404a3f9df6789f40bdac9a5b685e305621fcd55fe4ac81ca5c2e24109',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'77f4e7710ac39bb4686c59eea34ceb696079acb46a8620544e427e2e814949b8','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','b96a33a699a40b2d3fcdfb2afeaace5b2c07b31ea30a7aac1aa8fadceff8799e',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'a31473dfec4fb8d1659024b3b627715c68e7635396dd90c184f66debdff35ed9','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','98381d91331e0c6a0a22041b9809a23a19d548ff437030ce8d5886ce089ec813',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'7f80269260ab4371585202d03b9c56bde5ab731e731a4f5c58f453f3057f637e','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','cb8392e6b0757701ae33cf721c256b67e832f3602477331ad6f53c6d31e52443',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'b6bc49e7852f6017b024ca0bdac9257e0f63109216cf00cfaf7110ca1891f5f6','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','9df15b1a6db5cda5ca7cecd419e75adb97d62d33cd6bd787a51c7bc2b7d64a2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'fb9be635d233ed088a81f6312d9650a8659b5c0d52a815b0f0585293092a14fb','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','3f545a43c629e0a59c99136dccfbb4c04b545935abd71fa9b4c99b63fcd2d825',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'3ac47fe08bcd6b16eed00fe5ed2facd3eaecf50f36d33688f197c5c301eee30c','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','9b3f4c70c7ad4cfc3b25873071b89f7b671815ce46e20cf1de283c917361f1fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'b9dc4ba1d33b9e158c6b82f825748d28403f4c8c01f1362e859b7f2f696f586c','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','561a4780b4f9ce506e5f28bb1183d20a3238b97c88369aea2bbb3b48db8f1068',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'be8b3bcb08364da2ab39827a0d02173c8a6a46da9480b2736d992e90008b8d9c','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','eb7711c83c4077da0326240e4dcc737e0cceaa382be924f30e1599acd902c123',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'8e3e879044b5ad0ee409dd84ca9c07ea523484a3074822396bafbf449580c2d8','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','d0eb6325e6daaacadad4286d7b6ad3bc7fd5c5cebaba2b3269c68448b2447b63',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'04e2dd3cbd7fa5aa973db5a1caa536ae26b385b236f71b4aaf59f230cf0b9d44','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','b72158646ca70e7d58d877da861f61e4913da014e9670d4067323effd75905ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'b7e53c4f80c0e70a0804a9e1ab3649929e914ed111c0998010e78f97adb8b740','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','b3ccce9d8cf5efa252e859aa8f600290666a443c0d8969a4dfd9ad8775124f36',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'f1a26ebe4528f04820f98944a5f54cf0211f3a450358e1a4574903bcb104536c','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','8f1b5f06966712ae1f433a4aa22e56b5e83f1c22d0b8c3ad22125f76235fcd32',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'8ee7cd3754ba2f85467916a695eb2823a89c17bd36707b2f74d5fe489ec39d35','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','389374c7c645ea784e72715749d51e793770d0af6754ce79bc221747be3f441c',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'a93684aea4d0b8177a008a7530f1c5a76aa3a6e0cd5f426fd04562eeed18edfb','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','9097efc88a94df5ba7b671a10f5bf11d9af538e705265dfb55eae51cfb416f10',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'f78e363f21bd326d12513b86ca5bf45412f33a70b140447da87787be0a39c898','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','53feede3e02574d4f4f5729ad8fd69317d2f292c61d9e036f1dea72344a31a81',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'94d14b919e8df7f7a2503baa1ccce1ee54a3f2629288f7e2a54ff23055622eca','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','fa57dacea2480c1df77352e2ccdbace19b0370f6c0d8a5d6eb5315103ff4001b',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'c95bed50e39dc26ec619b22ffcbd6d169f12c46cb58249f5609c200c49584575','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','b08652535254d2e85e77a54c647eba2c1d9b452a7c768908297c014ca3e80d47',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'60a763c963d90886938a2bc1a9e16a8a5fdaae245ca16bedab36852134ccbd1c','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','6db17ecb0f8a8726ba8cfdf12e175befb63ffa0800069e9e7728c173dde8ea38',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'75150fbe2fec5eced262f6f6f049ea1056e2e7fe783d8c16d1147d19135c385d','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','a8084987a147b5898473419bc8eb23214794bd8203f749dbf7bf5137b18ca634',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'bfa94e7f142250e47a9fcc8378b50d857fe8bb5730a456f2030322df7eb343da','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','e2fb6392d52dfdddba1dcea25a8e48e223fba00d9753784d23166eb658b29d7b',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'10fae07894dc8ca060b7a424ed07e1d6b82feba8ac401fcaa441b36114ff3a3d','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','5e72c19ee4de0c6126706e9aee6cd789d6e9656e033d49a25e905e2a716a3448',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'0fbf0b9dae7a4e5ebce6ae53e143ea82acf9063bac539eea2164661066465055','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','1daf00fabead340b654409dcde8dc4f1be575689b53ff2e42b875f630d693edb',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'d0cfe76a174a3e51cb71c8fcd7e24a5fd82a5b5ec90ea2323805cf203eb8bc09','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','5f7326953b5e053be96fb6810d483b11160456bc5e33a9705bd35295335fb677',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'370d05d099f60864284c17b0ec4ce4cad792a564ca17730b788182cc1657d299','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','e82f77b1c2afaa2530de704413a2b8f01fc6e087c8c5dfe29e57e46d04fdc5f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'b5ea3b5825c6ca6f1da1700405ac18f400aeb2381c5b61703a80627411884f30','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','42055e3bc4335246175ee54060a2869f05a2428b4ae5f49ff00408c3dbdd91ef',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'b21e5eadb3c00cc0413da1c9b272fbbcae96a271598852148968f900c4fd4f51','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','9cb15ebdbf9a835e6006ee61c2cd4f6ac6f1be5c69a0c3c376c98a7c53095f70',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'4d65eaebd925803121e3381c9b6b5f358fa14f036707c310614f92df3071183a','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','9eb5c3cbe3e4e8b6f3d29bd139318408eb8691b4954eb4ce406ccfc4165c67c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'8c0fec6c31820e12e92a9be814a0864530ffc01caaa72cd15536d70d0f8225db','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','6c1d217e0f17672670d1b45f608f1e08eb155736348647738db16a459ddb6d77',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'bfc63682a5acbae95d8c8c8af56cdc80f7ac4252be8117df4457fdce678f9d94','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','b70fda191eb7001801346517f7ba1a68619e0ffa4158a7bf0fcf938dbd680b53',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'d995b825b3095462095aa07f204ee8bd02bee7f0021757e0b9acba0aa89a37e7','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','627059029e19496999943d7af5691568eaa4cfd4f22338c3ddede3f4500cd210',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'40a21d7a31b702854f3830189ac21f31659f4ffc4665532113a3864caf6ac548','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','fd658b7d5933180c3de12b5b60f869883f1a6a024c811c15d2e22820d92e1c26',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'75641c467acddfebc824a0313b0cb20fe75ae44babc63c684559b72365c80ce9','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','5de3159ec5887c890d1b130372cc1246b0e6741578f2cafa537aa31f647f1e3c',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'19125e78aedfeeab7cec8532795eaca3219d631cad43b474451faea61a262d02','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','0316003aaf3a993d1284e8d6b1503ceae638c5c726dd5acd3d56e78d02d9ac59',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'b4086ebbbb1ad338c2d41a4f515acdd6991b9128936b170a6c7cfd1c199200cf','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','cad3961ab4e4fcff002a4c5fa70d08420c1bd12ffd006676dd5110262423c0e1',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'002ea3e07d91ba9fd59edccd6ce543ac0c80f3eade4fd9ac6ffe5c470b32ca35','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','c3730a5a4a5661ad447bac2663bac29b8b879e0f881ebd02f2af051ca1f5b749',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'8a7951661175cabfc9c5ec98c84398c69a18b0cc90dc2eadbb4a47217f204d17','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','ee6ed8fa6b995be14d299b4724d00d4b4c95027bf7b699c736fd7432ad81afb7',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'dfda3ea8a3f6b347fa5aaa711facf53d66f4b59b34fe8310d52511b06c5aa90a','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','048090da7c741f830fac5580197c15dfd9069e5b8f6aa250d4bb3d92d13eec29',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'1ab7c81c38eb3bc2f757e232d9235ba8f3b3c775249a31f81b64ea5b744bc446','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','10cf5fb665d0b30d5848f4ac110c65749c611e74a4d65c73ea93614b59fa9f87',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'df56206da793ee3d5a62d8b8204f19b58bd571defa817c5a755942d23984406d','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','07cb16ff67be391fc5442cb46749ad503db59f2a8e656be5801cad9a637a4435',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'1300e495aa348e8955ebc0d1060fcb0fea24197d400304aed07ebbb37f3fff0d','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','7b09e6ed38eae5b767c30ed38ea9ad5bd63cc2b1f9c02d12e0a1f27ff7dcd347',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'80afea7b225a6056f9e93264a4b60bff6150aa41fb06dbdd127834fe7c41e5fa','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','ec916fd31b7fd812e5d8aedae7bb9da7f404374f64c46f9674d4edc697aaf3ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'7a904b662a12891224a26684d2374306a17d12948494cfc2833979083484a9f8','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','69a3fc27bf61f998d9cd94cb8194122bba07ea28ddd22c58ecf4ffc6a9bcff1d',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'73f475db79e082ad33f59135260a81af04c66b1afa05d5faff982edc5c833e62','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','0ba7059cacf287f1535ee1f9c89540d4e70030ae066daa1b1ffda116a7fc1472',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'fe609333c29d872aeb9a2b7a30b02cfc5ad47f581f360e385926e62ed5e35c7a','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','6da370f16f81f88a16e6c5b8479b6f7918ca06b796193eb4029bd1b07c70ac17',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'37c0e6f0723cf44303736e01242f5e98acac4d49c3804957a060710b2304a7b8','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','fc30285d912a0653481bb75ed90c7533885781615af0a385d5e90afd4abe05ce',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'e3121b1b293875664571808b4157d6a25753a9009ac3fd6ae115a641d535f141','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','007bf07fac63f08f5fa4b284ee8604f63226f03cd117b1f1c54a6b7f79cd4f16',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'31e3ed8ed6830e198c02873357b1b86a5f7d034710d6d67121246b354ce01c0f','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','4f535b3b29ab5d7f508b90aeaf8e0306b306995fb1f42b4f20c209abbb52a29f',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'babdd735e0b8176a2fd4b30c00f207e072beee68acb33f382d7be7ca49ddf01b','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','78a8533f1b71600d395568cf68bd0fc235df43b0b32d9bf950a77c1d9bbf7858',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'691591b6f8fb8011eb76f503445c146f91f9a767895af28fbb6b8f371128c331','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','bd57d6e8c212f29dcfc8e4785222ecb0b0c3beeb7416a0421291e2850d1a553a',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'b5a75f28f1675c1d65e5c2eda601b00be193046f8d5455280ce7ce67f590d461','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','d1fd09c87b81c1701f2dfce552a05596b4890e443fd9455861aa20bbaa2dad89',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'96b5e331cbeba83e0959fa7387125e9bda307b2b4d77519efe8fddd8a468a2d0','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','135d6b4dab60c1e4ade976a98ad2932f74ed30607e6b72e00f58f7c272fc5823',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'6d95a405af7dcdfb540e163761b56a827cebde6f067ab7a409b362aa17f86d4d','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','ef464e083b2343511f1168fe17ee6050befcc06d5b505b0544d09285938761bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'399273d936cfd79a23f2ca90a707f66910d34764c05d8bfb868cbb31334d8db1','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','d73c2fae7bbf17a3a0fc9c199d9686a780a3634231cddfe3754e0d4123a612a5',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'9b574b61cf3db517bf6c64d6c9f70006de362f2d4de76734f5ae936482b63374','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','06b7afb139b3e77c96079bf0e786344122cd8b2f02aeed40f2a0b59252a7edbc',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'22f1766a7dbeac8e8cdbc00bef46542b40fbb6984ddcd926eb06d76ba0839e04','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','7b8ce38ac6220a606c4c864af17542b8119eb33a0128d76f78c7d4a2cb04838c',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'baa4ac53fa5848e8cf27695658da8401e616ada94975d73f9f1bbbacec77e18b','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','4799ca6602af5423d8420529299e3124b673fa1b3dbccb8ff6f7d1cf1e2326e8',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'e4791b468628263032d6604e89142b4611d37af0da10f5cea13d77549304f40f','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','f848f8af51c820f2043a9c7106b195861198a9436ccd7498a914fb27c801c399',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'41054373d4269eacc2ca673d8db0daaee399b27fe59286d8a097d542e3f14279','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','c7199fb078bdf61ca0291402a4ddf584d725ab8dfe290278992d1fcee3209c97',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'0e8477a68905ba7a91a17f4067c061d340844a7f9554d01ebd932219e19dc5df','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','d070f453b86791a5470c00c0f66a1f688cbca9146b09ee7b316f1239e101bb75',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'abd4a4de8d76df306fe91202471f04327dfff7330bdf86637732a895f3806b76','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','9671d888ae163b77c30eb288684b2760d15e555bd8d6c6aeafc8815c3521b1df',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'98e8ce36ac3c00bafdd83f5acfdcb6a86865609e322e4c8404bafb7f4efeda21','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','01dac6be9cb9a262bf06738280d85b3ac04fe25949ff17936bb1e458badf0ad2',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'5b2559a37945f4174c2f651c9315ca9b9c274b40baf87a0e0890615459f7f437','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','263bcb74757322f36cc19e8d722bfcf1c0c045ff6ae40b1ee071f9de4f6a1218',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'819360045a5f9ee7b2696a8b1cd2579371b25a43076e1f4731d948dcb7b14202','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','05967636ad202a361deee96e758fd75be0c2a1b07817c215db206c187125f34b',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'d0a47afe3a6d2d2bf01e56643798c4a653d827046991571026345f44b34bac6f','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','f5227bdae94c5ae394110e0690a013955d1e76379ba151b0fa209da444d9781c',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'995f4b278c55bf41f128a3dcc39a0389d4856e4aafab042c915eaaae536e40e2','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','08c75385b4290db3fc39fb503a2a0f3ab7631db44d7ad0eb3d2db9ade975b6a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'f4f83f7b347792bb4c1336c694a08b2642717ebca900d9a0489bce1a2d994418','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','3a31ecc1c0af51adc95b88dd15ef06b7cd49f90977c3f8bc0931163c77be9218',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'5d0fa0f5c261642712f86c72055a7f19afe078a6c34e5538d77d85bb1b799a94','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','c14011ca0548cc6aa347ebe1fb5249b938a40f7552924230ac9bd0456b173d84',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'439c74d2a465996838179517ff57b2cc558d66848b857580be65319363846033','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','3060f01ecd3a6fccc1bd7b34efaee852a4b7d232a8d861626968e4690c5c4e6d',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'8bc0f9cfc1b75cdfd6e59f1d41c6b67b790a25a98b6240f7ff5df617f256cb00','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','5397b96551c0a64ab068399907d75384be4291c1cf18cc3abe34cd1ae3c8482d',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'572bb86d600d33ec82edac9b1077ec7700d526cb25a69bc2bf2e10953f403e01','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','6ea4ac41326e29e0232ae9d494849ea2b825116e5ff8b76cffe56ea9dfa09997',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785',NULL,NULL,0); INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) @@ -958,10 +958,8 @@ INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990, INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); +INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999900,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); @@ -1093,10 +1091,8 @@ INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990, INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); +INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999900,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); @@ -1276,9 +1272,7 @@ INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100, INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); @@ -2639,432 +2633,428 @@ INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":tru INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'f26f1da057cb3e28c2590257094e6bcaf8a5de01d97c9a4f13353c677db8ee0b'); INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134dacc503bf7814f9632f55a3acb7225d960280985078a7278332f26277f93f'); INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'212762325df6d1d3d4cb71b3623ed1505879983d7d83fc55b956c9f7738e91f3'); -INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','d8052b147da603a857298b7d6b47c548aa554131dab7dc244fb792295b207c8e'); -INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','957b9966112007eb63549a762c0bf5876bdcb9335ee126fad415b6d8afb26b4c'); -INSERT INTO messages VALUES(1317,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','15be13c64653eb934d8cff43a9b03c1723c5566b43025c0109e63048afc5d62b'); -INSERT INTO messages VALUES(1318,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','f621d331a0dcd3034d1b1970ad81c8506f13fa3225cbe1c75975ad0c0232ba30'); -INSERT INTO messages VALUES(1319,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','b2117013e345a8ca76387ced8a000862fb30e101c0e921d051c5751c2d7521f7'); -INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a170114679dfc3eca504fc693de892e593b53673f319fbc509c9eaa27df2fb31'); -INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3e4f8153ac5cee861b39bceda2b3e30e26fd818a20d08aff126a669b4f82a125'); -INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535","messages_hash":"5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'44398f07803cf5c8bbd59137e78ea605848eae4bf9db4356d576aa8ddd1c1631'); -INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1717e252c4e0ae0f63516c7980a9bc122761e84b4d19a518d03a8d031233c6b'); -INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'bfca5bb1330c50e22562eb2e8ac8216c15f196e848c10d2ac10021b597e56116'); -INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3044ebaf54a6326c423a330fbe46f53121a89b4f2d46d5a26e907021359b01b3'); -INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','cdc62485e579c6d13dc3b9eb9d3c9f313b4d6366ac1c4601aa4dfe4c1c561480'); -INSERT INTO messages VALUES(1327,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3af5388dcc8723f94add83f0bf7d0078281a68ada5586c3f4916b74eed7e28e2'); -INSERT INTO messages VALUES(1328,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5f4c00fcc42daa377260dbeedbb292ad86ba923857740c2ff43774c4b41a836e'); -INSERT INTO messages VALUES(1329,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','7173216f194afa8889814cdd4ba67529a76fb9d00642c4ef96ef4023d72914d5'); -INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','da8697494088b4f1c3ce4a95866173aab6981c83d792a7681206aa3f74bb9ad5'); -INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','0a5be2a2331bfb0008a1ed52fef5eb60236c6720eca2eaf91a8e323d8b0b67e6'); -INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41","messages_hash":"b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'370af4a7cdb7d2e57eb794125afa08eb125b0e646ba7a37eb67574a1f4cab6a4'); -INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80c8e1bb286d53d08a26ea0fec92800f3c9e41150a737f30af9e59ea6968b9f0'); -INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'40f109b5a4abb9e31d2f0082692ed9403815f45b5d14d93f924683a81497cb55'); -INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','27b628d4a2c638e0fb1c24fe2d01ddc45b2e7be5d00525525e20131480073f02'); -INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','26cc8ec52979861196ce043e4c95b2cdb3f65a5800e40407c28a8bd530ad0d5b'); -INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e49b55bc8408995bdd65976ed0f35e6e9ea06a36f71a92982b000d987cc204f8'); -INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','dfca9a2c5ce6fb504766824e79788a141e893ee4bc4a261235782e1436abe3fb'); -INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','55066b8b200ca4f3f769783c130db29f9c1ec24798dd6925371682cc1eddcd25'); -INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91","messages_hash":"d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'da61e65c73bb53f0df000380ae74683457e46bf1c3ede603ee11307f5ef3257b'); -INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a46607ed609244c08418c7eaef58249015f8b5c07507bf2301ed1229dd27eed'); -INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'95ae2ba0a6f446296a561ffbf4e8f3d0d5c0185cff16458d3a9ce17fb2e49f3b'); -INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','b49f7ccc51ad61ee0c25d063336d1e2636822a1f45e8661fc66a2de983ab52c1'); -INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','49589e67a96ffb7c226798947aa141e252710bcb7ada1c7d5321db5d45139272'); -INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','898aca0ce974e21b33e47b0e8a70f5401d9cb0643b16bdbbb7f056c8f1191ffb'); -INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce","messages_hash":"b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'ced947da162e64803474541613fe18188c2f89f73293f02f9f66043eb899086b'); -INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90c7513cc1353612c2688014ac170b149b9ac7ee8b1931733d7dbc4b6b1fd5a9'); -INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0","messages_hash":"ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'41d930c97019fe00cb671ac618679b6c0793aefa20f817d7357c91e9b4b9dd52'); -INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00526a6416cf1e416137f4ce04def1025d0cf3023f5b1a30a5dfaa70ebc95ece'); -INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70","messages_hash":"4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'08cca90db509e3545850343122cd6f0a968377eb844fc21e449e663346e4f2d5'); -INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccc80cde2c6ce5acfdc4a30aa15c6fe6366961b2b26d38d1ee87d04b9570bad4'); -INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'7a3199f94eb3df9b3ed89b7a5f5de87365a9d4b8d7c938471fde7505f45cd7ee'); -INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3c1bed39eb008bf2b2626d2c7d4817ef6a79eade4baa1f6f7dee4d986335435e'); -INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'35db31b51a73627c48a11fa9e778aea18fb194b49c869bba26d272e1d1b74b9a'); -INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'13226f8cca228b1894117239b91e28341730d7e44cc072dd0747c5161762eb73'); -INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4","messages_hash":"1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'adff0dbdfad9f26587f9796b096c36ef120421f6c6ac697bcb6c85dafb37e1c9'); -INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd42e18a47568ef328092b6f0b9edfc93d560694cd56cc7f93d42079a8c577ff'); -INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f","messages_hash":"eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'73ab1cf7651d16d4871a2455474e3b73ad88b9fd7b992586d154f4277d3d20b4'); -INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0a15a475b92a2b31416e57c793b677351e7b76e4d912f478b41f0c7bbd9ab2'); -INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5","messages_hash":"9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'015e16bcab036bd7a8d4cf050603dd2be3325e3712dc494b95ad21ebd72c46a2'); -INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3643a42680c6806305eb7b44685a6f410997b7bd657d9db5d7047b22af266acd'); -INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a","messages_hash":"7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'656558841eedae1e0457397487c8f6754e95d377107c57609a9ef5e81462e9a2'); -INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0035b1f778a4aacaa0b491e08b71dc179fb0790819d15c1111e6b96ae386e2f6'); -INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32","messages_hash":"c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'de949371b8947022b5b0fdb28d65b0e44a7bec76db0eb758b12c69eed2aadbc8'); -INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14ba58e791d2ead803f0583026a4ae6d258e141b5dc701dfe4709502a6a04632'); -INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b","messages_hash":"5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'c60245be093865d95a02ba6c196b916a32c50711351fc9c1309b0d9a0bc6ccf2'); -INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'631e432c89f5aac6ce33e9df38fbea8d4a7ea5b91d62cd937f111955ba76b49b'); -INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369","messages_hash":"4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'a6b36a9612ce29aae2026fc6508d8a07233b334bd07b62b16fa5c4eac023ee7f'); -INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ecd32182c772bd62e8a97b5979df146a78dcf0d51d67aefdd01c228fd1ae953'); -INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225","messages_hash":"ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'4789577d16ff45616db17a2bbdac2492d833afeaa6f9e1ef9d586faa8937d6a3'); -INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8bdf4234327b9b798eab5d6f345bf30272c70622babae2655b2d94a0f6ccdd9'); -INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13","messages_hash":"71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'ff2dd1625d92d5ee1032c9c7c626f7b9362352280c5854f12ba3a2a41fc631bd'); -INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b757165cdbb5f6eba00097c4e1f0fa96faec5734da4fc64d9533cfe70420fc9'); -INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4","messages_hash":"bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'6e7c7fe808fae8cc3594cdda800da8a8583020f1c13fa0c80a9ed8fa595692fd'); -INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16234a308f94b8eb7bd603daf528733ec3f9740d87d739db62e909221c343e2e'); -INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0","messages_hash":"ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'ae6758534bace298dc45bde39417a331f498d179694322bc21206fbfdb3448a3'); -INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a6e3d545ffff83c6e3b3bb53665cfad94c2196b29f2b8924ff01b05c097719'); -INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14","messages_hash":"908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'7121a2466a07b5db523ed44dd138a947044e971fa27fa650928d2a46db034ea9'); -INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1949891cd22cb25a12101f549b3896695d547cd6fd51ff0393978f7a4de600bf'); -INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5","messages_hash":"8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'79b4473e384434e79bb85c8f4d6bb2181d9b4f2c7037a16cdca9e6c8d722f7b3'); -INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a81ca0c39a9e94a6fa9105600dd0f6f7b660c8f3d2a8c46f70a2f25ec20b69'); -INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453","messages_hash":"482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'c0ed454600a29ee59929955c88b8f5f9d8976d6a6eb289f7d34fd4af65793aeb'); -INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df3782186d95631204510b0ad9550b9eeefa3de537c7312777eaf5589ec25c48'); -INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c","messages_hash":"81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'c4bf82b5524d5c6f792186310f1c98510e5f437701190352cdba234c577ceb76'); -INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b81c68659a0e0ca6da284b55a21e7bb4844847b8cf8b67f6347e0abc238c4303'); -INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505","messages_hash":"1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'3f9d7b3e81331b10af06ba39ff688ddbcc6fb9a1278f106da99f9f6c0cdc65b9'); -INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5052184df5f346d2f4268aad151ca2941ee4f65951cf17147e0cf92187841962'); -INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd","messages_hash":"13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'f626f017328b0ef054774c88f6b48116141d39d3d86602a7d1118dbcea3643ae'); -INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a080d99b9e345091527194d022b742a2d165b3dd1bc3e6e24f3cab2a4f08f193'); -INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae","messages_hash":"04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'a55f1c589166d49e320b6b72bdf3c261044357d0df83c847913217b3125752ce'); -INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0387cc93ba9cb165ad97f92cf81b0515481e6b7bceb4c222e1a8ddb27763d600'); -INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e","messages_hash":"5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'409496e3df0b7d76f8a09ecd41a454d29d3daa3313859bef2e079d22039504fe'); -INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f97ffaecee0165be64f32940c0c95b2ffd3a1cbcb149136745d9643da54c1c6'); -INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8","messages_hash":"8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'acb7e9b0e09a6c214db673001dedcb87a1e95c2a6c6c0117b39d0494c7c562f6'); -INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa5d615a47cc866952f62b0124da64974c3b68c2dcafe6e89e6e9d61e80b43c'); -INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab","messages_hash":"a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'265f2c90f0d5c91ea72ce3cd56949fc882dce6133d8d90ef9d2d4748f63ef8ee'); -INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d944e2ece54058bccfe228773faa278e06be7d2d9447513e121fdbe0670712'); -INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae","messages_hash":"8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'92be58162c1858350835e59de76b94389837623cdc321073bdaaa52fe10eddf1'); -INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8708f2d8553a04a190f6bae3b4926bf146a6fe1beda98dada3cc9ed09b280a5'); -INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c","messages_hash":"e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'fd6b1ccc6813970c90c23183c855bc07fba9791fa1b4b42a3995fe6f57b571e0'); -INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8e1dbe6dbb2546feffa405c96f0191978772e3de8dbe8c931e15cec1e71a28'); -INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02","messages_hash":"944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'31b9edee24d74ba1b20809f1e5c0122e5a0d0fbd6e8555d2311ea5b6931c2bbe'); -INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfe1863976ece1b0772e9e707d2911d9a67264e762c0f1752e3366183cdc0de7'); -INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f","messages_hash":"53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'e6cdf724e258dd3b368a1abbdf37da6f72d6b72cd47409a5cfa33420def4f280'); -INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f64ef5388e0b7907402f72f03e6b1af142f39c1cea9893b4782749ef8b19582e'); -INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352","messages_hash":"a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'5d30fec452a8d7a6c30e0fabc9470468dbb30189b7dad9634d63206b3958d7fc'); -INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'747096fb7d4999ee38e88e41409843f6d4b855e63b8de79735348b0e658b6954'); -INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987","messages_hash":"34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'fc1f72859561256646d273e853eb2283fd9c6607dd4a06ec0cc6362779b0f5b7'); -INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9af1b411ef2cf6d6503a1221602ad10f90602205ae2937d726306a78e9bfd0bf'); -INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab","messages_hash":"5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'e57ccc2bf469bf83bb2ce90653872ae47fee64d6b53415c0ec5cd324c3d27e35'); -INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d64d79a4120dd5c0f161080349f23fb82b1be1af1f469cde3a5be464cf0cc9c2'); -INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23","messages_hash":"b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'8b6bd6b7c861c5f911d24c606d2acbd5d1b9e0a3ac400f66341fe764a33699e4'); -INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dad85d87af501e4687a82b6be71bd3dc117645e1c80831b83aab825bec3f4bd'); -INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765","messages_hash":"985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'0b11104844c833a2396b65e307f3336c7a5fc055ba028d0343320f6085c0ad7b'); -INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78a625a47c5055cc34bf1a3a3f01425fd0cb11d073267a36e6e0afbd665d6074'); -INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34","messages_hash":"3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'207fbbaf7731f7cd98aa695918c070ce1694209cf775ac297573deb8a9a2faab'); -INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0436a7e3cae912625a5f9d5cc5bffc187a8346cff0b1e68f68f26d6a23d05f50'); -INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8","messages_hash":"d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'68c4d579ea9160481649fcf13f958655f77c6f8c0c01c315166ff7ca368b067c'); -INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e6407cd5180990a594104265130f3e9d12cdb46eed20c0c0e88596a3200d4e6'); -INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc","messages_hash":"34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'7c5908836b9ddabba71d6cf48f683500e87ed3524526e9366c6108f800fb0def'); -INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5858fcad2aac5937fdb8d73a9c003e66f33f5997fbc9ad59cfc67b4138e4d295'); -INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700","messages_hash":"22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'57ffa0342378cd1eccf94e73c8798ac588954d31231b3cbf9228e76ecb280d29'); -INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce3a60eea074f9680e2d4093d263f28faab9cf8a4a4c3bae230e3f4f53640c81'); -INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28","messages_hash":"116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'aab08d582ed8b017916a635b651a9cf99676380c1e7c5a643be26f73df6e7c0a'); -INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9bd3767c3b150a8da56f16e386ff8212218d56bd6b6848555c59c8a3dfb9e4'); -INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc","messages_hash":"3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'6e06018eea45ede6cd1b7025291fa327b84b09080100ee5e2d51c32b17bda626'); -INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c11000838d0b85203b84b9761d01349008d508b68c3d3a3df915c2f2bd8dd2d'); -INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563","messages_hash":"7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'9b12098be4b66c02ce859247ce163fbf8d0862003b414f43a0b5f1b909231e10'); -INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b616840e5750db0dca6aa262b35561946ebfa681a9c10af4bd3902b333eb5ce5'); -INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8","messages_hash":"6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'880214785292c1f323da27a5b480ad7b64fb75cd5f94ff1638d329c1593d4ed3'); -INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aefc687ff40dba6ccf83d7d50ade6c04025daea6fa5c07d83518f2d047885c49'); -INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311","messages_hash":"8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'f60c822cbf705df2468a5800ffb13fcc7dfa64796307879890721b7d02efe285'); -INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64203412d84e4d618d11b6439e5c73f0dc27be53cf5a1dd51a073bad2bd99e1a'); -INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e","messages_hash":"2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'55c741e8c69638127bdae8f01a1d4b167f06e5529650725aa463fa9ab87431df'); -INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75f421d6e32031c24457d14119aad6327b29655e2f761691c86d3ab82aecc425'); -INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf","messages_hash":"25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'af6b7554fcf84b1c0c7027c543f71ec918b122b6da8955c5ab037fa18522c6c6'); -INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab354adc2f93fd174d1de93429a4f0cf7e44c3d0e38a2105e012afe1b89ec31'); -INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914","messages_hash":"bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'f7952321c89324e5848143dd7e53e5d999999be9674bf01901ebd5198896f4f6'); -INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eb73735ce1f88f73bf7ac96d0f2002c67d3c26682d790d73620eead6babbb3f'); -INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be","messages_hash":"1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'324be0a56762de0b16844dc3adfb370faf6b1dc0cf44659eb0ca77814d54b684'); -INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98c50a636fa029076a5dd306bb03e1051deb88f7b752fcc241ead7a009b6da9d'); -INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4","messages_hash":"5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'c57d569d19aad22ce1421255c54b56d81582a853d14009f69cd89f0f30790321'); -INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecf22fcf7a24eab487bbbee49316facddbdb1535279c29fd851ff2459f86aaff'); -INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f","messages_hash":"00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'690af0d9de5e2bcd3aabcc6dd7b4c05c5e5e3d3820881f8c758ec595115ef58a'); -INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af4b3a8a72648a521d8c61bdbbcb713fe728093479be08799aea01f87ae3a36'); -INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9","messages_hash":"a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'bb92564b5c77c30d2d597771a28344c093a69bbe961fd2baafbd3d569ac0b5be'); -INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9032ad61cffcc49f51b664ea8e1335876ebd15b73af513e376410126f9dafb6e'); -INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995","messages_hash":"202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'aa7afeb01329f012fe797ae137dc139b462ea852192579625bd108e0a168d887'); -INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'826013962ebd683d51454be21bab6828f8cbe4bbae344b2da614562f12de5791'); -INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8","messages_hash":"9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'08c8940fe4e0164c895d8a29f3c1247d38ebe48de5d9856788f61be8d988f8ef'); -INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6aae31f8eae1321e112afe1a09f7de7c6e6011e8fac1cdeeb1295af6b550319'); -INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d","messages_hash":"70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'18625cbd8486ba47d8c745d209ab4a570a6faaecb4710278929feb51530629e3'); -INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a78c46048151e6688133e6f17baca0085ee6dc9789d8a31dfc8dd06590cab940'); -INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7","messages_hash":"da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'3ae9271d663eb135e106779c365db6353df9014149c9992e2daa1c6756f84676'); -INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01158dcc7e8afce388415b570202973cf40f0af5a120a7b21bbfaed45e5c6ef'); -INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b","messages_hash":"fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'12020b58b5cf481508c1ee6137a5d640f18ad5957420bf7643fb468b98ea106a'); -INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d767b43743138b3fcd9eb175a7ef3a672058204654c142a358a711a0597a0878'); -INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e","messages_hash":"5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'f9b23bd613483673ed658c489fe3ad026c0f09e9c210a1400e4537c261d03fbd'); -INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7faeba2f59b83e773fca1f97b0813b03c0ea514b6feb4785e4e2adf427a8a0'); -INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595","messages_hash":"139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'c46446aa6b97f55211cb19f4a31fdce0de4dd6347e9bd82eafa6c2599c63bb7c'); -INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95d02f5c1701f251d3667f982f0955aaf39b6f3156364204d66daba5f7097dd9'); -INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e","messages_hash":"78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c09ace57b82de2deb342c6c7b456e1e432b02967294c6c3d649adabd968ea4f4'); -INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4678a42e979c5eb7553613dd48ac5793a030fd685d3a2d1c8f1519e24f1153'); -INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f","messages_hash":"aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'8cb12be266d993750615343a98af8a1baa1a5de22466eca5de86d21ec80b7030'); -INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ba1b28e6125cbe947cdbf25b55731d44d642d2b89ef487b852df3003b07b1d1'); -INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9","messages_hash":"e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'7ff05956741f352f02c264dcefd9f49374d1703cb2220125fd9290132d5c7f66'); -INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5da2460eaf85af6f5e44e13ccb1b006a31b116bb60e948825408fe3865c380fa'); -INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959","messages_hash":"fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'8de960a9eb374f17d6a0c1d5398588cd32ccfac5b051c2792695a5b03795f248'); -INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8860884f470c204c2fb0e717ac92d88dcfa1439f63dbfd04b0ee0a588ad4a9d1'); -INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd","messages_hash":"6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'53cc7af43ca7b16a6603c71b78cc3f7ab82685e49318e1b81ebdb87d736a1eb3'); -INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597b1d3b60b6dd643b0d51c0d1662bbc3ab1e994790f8b4f1ab390f863facea8'); -INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335","messages_hash":"cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'bda0c68a40b0de9cd7455ac537f5fcfbe9b6ce25f96a139c6314925e5d5b2c6f'); -INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'509b0662646181039783e6e7a460854121458d6c9b3ae880442cbf0e3947ca63'); -INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5","messages_hash":"d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'77189298cac81f7503dc5b796276a67feb6933e25216ade72ec89c5bd5986900'); -INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb5d05d52ebf5a5e55e6961fcf309255d298ccfc0f1474fed05b01cc95768520'); -INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0","messages_hash":"ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'6f6400d44daf0018805936ed798abff68386e2e1eb31b78f6f78231a102fb22f'); -INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da396731db0fef52304928d0caff44f1957674e6f58d96512e761c1e60c82507'); -INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c","messages_hash":"00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'85e0bae9cbe33ce693fad66993fe85554ce6e89cc1ce916182a87863f5c85327'); -INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'becb156d0f1e3a54fbbe7105173555879e592ad0361ddc52817670ebe22588ea'); -INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04","messages_hash":"ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'633f39c990949cb975721fbd22cace1c051eaa2d20dfe3018e800246cf17cc71'); -INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9657239b510d14e980c647c7c506d3ec8170cd604f700378b6e6050e392b963a'); -INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43","messages_hash":"f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'dccabb3321048e3b81328e83fac4808ff83cd8d48b5d3a89d5151e2ed642fc5f'); -INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e0f0eb2b48396f942933f61415d40925e7862fc4bfd93405553d94daa98557a'); -INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f","messages_hash":"4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'9d888b67325be4f5f49942e2542f8894b875a43a29b027b79e9fabede56f1b39'); -INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47fe8e26a67aab6be26d9f72925526daaabd0a4c01a2fa7f94414a025ce062de'); -INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e","messages_hash":"c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2c3ce2b9d08d2f86a1dd3166a0726374d01f39198bacf249a2ba307303ba0d36'); -INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e573c9d136639716489f7ab293aa55ea5c831b08ce9650d95d68c614fd9139'); -INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a","messages_hash":"b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'1536cd2bb34e266ba3b6e5a953e55b234545d9b7bb91d05e524731934ffa878e'); -INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d717ad1bdeb372d1dfe22201039a791de7208727625220feb0cf0355ea2a04d'); -INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21","messages_hash":"f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'ea0bac623e62cbf22b6c52a7b456efd0f18d1915f775b12802c014ea9a8092c4'); -INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2df65d9c0589d8ba1886fceb4efaaf72189fd61f3cd01a2ea8359737fccfcac4'); -INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab","messages_hash":"03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'05937308f934af2e0a3475c78ad5ded4e99d72b191c5822aaf0fe31d60d60a92'); -INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cde0b5706e8603c0e150ffea69e9bdcba5b2b720fa6cbaa0c08612497f126c81'); -INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376","messages_hash":"b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'d33400446177a9d199734f7c14f4acf86e31816778182f7da2ac53666ab8caff'); -INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b04d4aaf3d502f83b9414de6adca5dde8d990b5822377ac86c03006195e0fc63'); -INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7","messages_hash":"27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'9085a2f6f9c533918a87a6619c38eee884dec4bc9b5ec3a58cbf680fc59ea528'); -INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06dd3c65fecace80353bdbf2e1bd92889abf7e80133b6285c99fedfe7956b854'); -INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b","messages_hash":"cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'43579deccf1ffddf93072239a9e6ec5f5fe82ef788f4201fc08bb47f706c0aba'); -INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f04329835ed5f284e8c53eb9428f2012573c620cda25c6ba15102d99c8eecae'); -INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524","messages_hash":"84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'fad6a912797b4650eeecedf87eea0d4f49ec37aaf5ca071e783d88d7b0227c2f'); -INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5fe4ccaf943500caac624b7fb6c651ab50c7cd7c412daaefb61cd65dee802a5'); -INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12","messages_hash":"cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'54b290971eea5b05d3b0985adec90b777d3932dc44a648834d13fe43aff850f9'); -INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517bcf2ad0bbf64c92596858ccb7d5c4ffcea5513365f13a825fd8351d1e76d1'); -INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3","messages_hash":"4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'77c297567c4aa0432adbb22c652439e80076dc2a57a4cfd75e5ea89902986979'); -INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e44ac5a2fe122e474125f3ece46309d65bd59bd3a4c1bcef52bceb5b00335cb1'); -INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2f3e5dc5199243ca9a8298e25491966e301ff9ae2bdaa2bb1f0d4c842a20d5e4'); -INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'387736348976b67e9cdac5c3b49862e1d9f6fa8b093694b504af55d2c7eca938'); -INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'40246bb2268e5166bc0878b0c18697ba00021a5992ab91dcec523b105455d041'); -INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e","messages_hash":"b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'41737c0a8408f3a97d298a97be8cfcd41202b63aaa8f588fc07275616b1a1faa'); -INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd18a33ad4b03fa6d2197810ba62a1025e13396dbcb164f0a87fdbe99518c80d'); -INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d","messages_hash":"d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'c587af90c64684cb27673dfb100bf094a293ee00044ee89793c9c0b90001b8c0'); -INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'613043a7fed9064dd53ff61a2c60f8d2a3fcb87c4240ac768b5653282f36cbd8'); -INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7","messages_hash":"9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'de3f1acee0f75e9928cdfdf98109e4932f044c6fd0336d47469184f55f77bd18'); -INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af2c2250b9c952d6885edbbac86c6e67dcd1cf0336bf379b4140d623706576df'); -INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a","messages_hash":"be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'5a5761a971097817fa4fc90924a17343102c4450fa3296904e079300e40fcf7e'); -INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22aa929c2ed55161203dd9c4c5680fa7e3e8c33b87eaf8d1bbeef70e945d1e9c'); -INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34","messages_hash":"1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'e5a1b128b3651793685d1c54310eff64dcd26328c5d893ac36e988b085ea866e'); -INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dd565c78bf8458f95d97ab99043f8a98c94823a6796b06f2e8ca1b522aa4519'); -INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d","messages_hash":"72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'204ef167a933eb64c131e24aea8637c9582709a973add95cd140add82e844305'); -INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbd4e351cbc1a498f2371b930004795e12546c33a0c090eeb6ebe6295c064aa5'); -INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841","messages_hash":"332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'49f0b99f8b4e4b4d8348cb76a3babbdb0ad4654f3a3356b3e86a15e25a17a4cd'); -INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9634f4f755cf9293feaf01262f32ca53570e4c3d02a4ff6289b77e3c373eb50c'); -INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4","messages_hash":"084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'5def3988c11e5841b59aa1551a745f035e47313af2b6b92c281a11ab435ed4e4'); -INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'184dce262ea76e559528e70c41d8d97f99dfea63f23367fb9239964e710239d8'); -INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec","messages_hash":"d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'a30b925e4652a811758a566e086f556af09d0a224cfa4a581bf4699b6d8e8689'); -INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'405fa81e50f086b531b69ffd31f604f81c3f8e9f58238ce987505ad253e4b05d'); -INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8","messages_hash":"48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'ca5658aaf0acf069e2a6af4f0cfbd19a12a9519f809808d98968188f4730c47e'); -INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e1667eee13667ac7e82694cdf36970ef6ecd213ef9fbe27b69c4854a9e410d'); -INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222","messages_hash":"b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'706b846d485c3a2923261f4521f777ab7bf58352206ba5cd54aca2c83ec55969'); -INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aac85213b57d04b2da7a31246d81a871b66834a2f7ebb09e856113e637bf93c7'); -INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c","messages_hash":"c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'22361ff3ef3f4c7faa150e1220ccfebac245bed479b572bb97bfa29ef46dc0ae'); -INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'215edb5cf42fe7cc11bfb57064f92186566f0481756eb42600f23fe52c5ce7be'); -INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab","messages_hash":"0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'7cb5ccf924c7ec6739f8e700b4dfd7911492db3aef2d9664171eddf2005fe09b'); -INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b29bd905cff6298c52f64de24e26adc8e5178c54ce5128361291a0b11454997'); -INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab","messages_hash":"71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'ffb27b2eefc1f85ae234a029fbd9450b79c09ec1951e37abfc0c2b3e28222896'); -INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f983fc8ce7e2ed393a6d140c74c903dfa7323b625fcb6f7d0d872d2ad8cb3820'); -INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8","messages_hash":"3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'c357d6305dfbc8dff126880b2ed394ba45bb1bddaada208f9ef84d71286797cf'); -INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fc17a93669999193beef72a8f3e9777c917703311ce353a7eca3a3925d77f51'); -INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae","messages_hash":"09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'4ebe7346bed736aa2cd8e0d4edb1e6b1ca0a21444f4e83af62dd49814e854af4'); -INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef1d2d4820a402534fcf59a7a1842f8e4525065fa79a19c1e672a143536390c'); -INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3","messages_hash":"d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'b8cb9b4450a5847e4fc8c20c91319200dc345f134c52b66ee4e755050fcc31fc'); -INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d41a18f709317a314d73afad424cba8f8c5c37c47549041293677ad0fe3ada6'); -INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c","messages_hash":"f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'ef37b7b2d9449ef7898f05f039cd1467746e4fb7b55e4c79a2d8c653a48f7a0b'); -INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0129fe0f4a4d6442aadf6a8c46262253d262239f299752ba67b0371ab880f8ce'); -INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7","messages_hash":"d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'14759dd69df8d6070c897b93dd14298627401dff90fed6db119818eacd1b9da1'); -INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9f9a9c62f2d2e5aaa497419ed8e78ba7dd023df1871d919ade00bbc4694f9c'); -INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60","messages_hash":"5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5a9382ee7a0d60ca604abcab1bb06ab7c9039c75ec4f8beab5c0c2bff41831cd'); -INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5c0432816bd0b755e18030b773e6a3a0c305ae2bc8d3adc6b2f101061b590fc'); -INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28","messages_hash":"3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'694bf69012c42d6caf72d12c4b151a3f4bcce5a5631a9814b9b93d353695d2ca'); -INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51fbeb50f80600913d0125eb670c725ffbccf972b01f38e7f88376de7fe10987'); -INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9","messages_hash":"cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'111cb18282d81246d634b89fe72536e4108b8a5bc29195e4e5d483286c036164'); -INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583bf73ffb2783ff2b1f7b3a58ce9566e7bbe7cc1522c33f056787420e48d628'); -INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396","messages_hash":"b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'1092c9dce156f69565d41624c6602b39971996b46f07802236591b1863960cbd'); -INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4045bb786b661ee80b56c3e5080973aa92ecf6660bba222d4d07b6df6b929a87'); -INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562","messages_hash":"85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'3be5dd55a0df300b0864ab090694d6c59a06f13e90d02c0c1cebda16458771ec'); -INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b131d206d49d89e8b886c19ae7d18ee20b5ed4be64dd167a24e131dcb8138eee'); -INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d","messages_hash":"08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'ce9e54857a0c5f046aad095ddc57aab1aaa1a8113d9e03ca6d647564a258bb4b'); -INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'188f30e75e2bda92516514e5b17e4e6210052fac83334d235cf61386bcebcb27'); -INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426","messages_hash":"40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'76e4a447ca9d2b74aa7f7188a73101d129deb1becd4050f51681537240bf7951'); -INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36e39754890667784911ec6e2ca362a4a73a98de205c6bc8d5ece6bf81bfe51e'); -INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c","messages_hash":"eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'5ea6f896ea8be94e4cbda1c9b4ff1518e93279d73eceb6ad12eb5ea56f31d55a'); -INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd4f6549093a5f1642388bbbe5d4f3e94afd2f8c8e3ab2794297478b1b856a1f'); -INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346","messages_hash":"b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'b788fa4ff3bde4114cd889c20ad8d24342b49903cf708fb8670f11c048687745'); -INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d2ddeed60607602ed74ef4d4ad2c59bc434fa148409f1f5472f4a951e4c6424'); -INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335","messages_hash":"e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'d300692dc3a55bae3e924a7b98a3cc6240eedb919087a85a7cdc6eb07c3c1fe4'); -INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca64c5271630a33fc826783947d372ceef8a3194e9e422316828dff27bb716e5'); -INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc","messages_hash":"b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'108a9695eb0b45e0baae7825d04f000fa85416c9cee42e185ec902438cb379f1'); -INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'017ddb54b0d14cf2025a62cf526bdfc1d222011952e1854751486337902bde96'); -INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c","messages_hash":"b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'996b8a660604e3f9b6151be89df66f9fc2c56f8ec249b9c1721e6264f29b52bd'); -INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6001cd3adccd1a1ac86d506e0f4de9648b40a715e2d4f686fdbeaaa2fa23ad7'); -INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83","messages_hash":"5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'b412bbd2ef3552a4c181d97fe545464b70e19950f3e96a585ac7101636b63896'); -INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a75c0899728f1f6153a17c8fa49de46bf134e2a779d5b0dcef37be2fe2e89c1'); -INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157","messages_hash":"d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'f1e66b185ce188620965cba4274541c623258117d043c77abf40310aba4e14cc'); -INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'662b66b1981ecbfa2aad52a2ae77779a8b150f46d4e1477afc674113d0bb556e'); -INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1","messages_hash":"0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'b3198a85a379379e83a9ccf5b32af301b092d028effbb96f5d8d27cb4d5bf29b'); -INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b975a1115afbafe4ae082f622865551c11406da5760f605eb5a08f5e563ac3'); -INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1","messages_hash":"473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'de2bac8c44ff6df19691c481bd7ac38dc731e24e2d6154f01ab2b6d2883eca78'); -INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe70ffa9f5f89f73ed41dfa1470dbfe3d1b4caef1c963b241345441e052f178b'); -INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b","messages_hash":"d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'c7ef8c9d483d44ac997a7bb13817a93e0d92689209208f46e1d3536a522064d6'); -INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2abd796c87f86bdfb6e103d23ec1389113d47ab0cc336664386cf775181c42d0'); -INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88","messages_hash":"a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'f9117614165c9050eb4f229989d5b428b470b1ac9f117ace9605f265439ae6a4'); -INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2f85ff6ceef93b8e31cb2c7c6943877b9b31b4dd77d8d7ca1f4fe9244862b2'); -INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8","messages_hash":"291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'0d7ab385d790812f2e1e32ddcc774fae5510c44af08180f11ab4686c29adc750'); -INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b62f127f05d29e0fbbd897a156d3ebb6e2ebad05e7e235f16961957d0d5711fe'); -INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1","messages_hash":"01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0ec90282ffd6131cb9e63c0d0776f78f7a19ca16a9526225914abd6e6cdb596b'); -INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'372a60762834e9bee181f4034b78d20541e315ea5bad5846f31d7a8d714bf710'); -INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521","messages_hash":"1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'445697f033a16c5b6bfc82cb9adc8e0ed88493f25f7d852d016fddd8ffb6961d'); -INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09c0247e64acdf1f0ee2c85f2ac93e6a5161fcd6c76d8f420aaf19014a676a5d'); -INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade","messages_hash":"93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'84b2474da6d35955b5186fab134df170971259ead384062f06b1e1ef8ab93071'); -INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7b332d949bcfdc5dc0cfdaa1b55f6c279add4565cf82cbb9fb37fde0d63a1c0'); -INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3","messages_hash":"dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'202e2477c97756dcc7883361540fca389f720d9c1a1e57362359bf9f6df8e54a'); -INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2698cca55b9cc31f590f98d4ac4a6af0c41e459fb8c961151a3a889757db4d'); -INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b","messages_hash":"8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'a7c7af1ca268ed5b092d518840d6cc28e8126fa7f2d1c92bd3d17673cf3b511a'); -INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bef2b6887c13b9ade440560aa5d917fc1f5dbd11abc03e924b5a284e3677fa2'); -INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7","messages_hash":"b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'d8d7e3a46a6cb37e383fe76b725dcb625391d04f7df5e84f12e5be0d676b23bf'); -INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62b736719bc303c32eb49e4d58908f9db5fcf89f6e43332ee8e1b146c998d1c6'); -INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a","messages_hash":"ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'9ead95d0db457a3494f2bac0135c6b5bf45b5df4aea2f998799c6d0c000eb76b'); -INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64287e18c5eb8e0b15e9aecdd488f8f218439219edea0fbeeba10fe00968d379'); -INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c","messages_hash":"e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'683d2acec515c1903d7929e24110574ceca1ac922a42a25d6c577b7a5f9c9cbb'); -INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aab3717052ff4dac3776794bf94ac3cbb07104baaac2c031288be5d8e8b7485'); -INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197","messages_hash":"ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'167d8cdd1bd57396fa2edea160219ff8299619ff3ac05f344b32fd70f16c338f'); -INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad615f4c284e4790e006e81970704ec5f659554ae5ba5ab484f68f96e9bc1031'); -INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e","messages_hash":"db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'d9de3b021de4237bbcbecf37ec405e87fef1b811e10f00851b0c3557b1ab8394'); -INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa3e7600cc05d70da40352babbe30fd49fed84e7de024f86a4ccc242fbacf84'); -INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988","messages_hash":"71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'16a990d1a234278eefc99eea448e41907bf2bf767d35fb15b17c7adb75d2a6ff'); -INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9b2eb0f2fe907c280b3cb93a781fcf3433ab9c5fc890edb3a3cc18146695bb'); -INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9","messages_hash":"2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'10adfbaf602ceffd1fd14e915fe8a9f78a3e1bd5a4f5854434de6cb631fb328a'); -INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fd24bc738ce8665657a69647aea63c39bd9aa7d0dc1020722507f5e0e054f30'); -INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9","messages_hash":"57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'c5a84ffdb89731f4197c1689f63d93289f0cb97129c16a17ff0f700189df4144'); -INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a29c0b685272d7a2aff1b643fa69e8427d713130cfc61da60ea35699b8a8cf39'); -INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad","messages_hash":"fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'626b43f67e44360bfb073b91280e80af68ee5c519033d3914cd591b115af7728'); -INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b183a0bb9565ed680a6d746251e06811e53da1552ab7cc6caecfd39104891c37'); -INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b","messages_hash":"24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'e483af697633ee460462b9e42bb6c96ee90a78486e8f5b6965a436f55dc2c772'); -INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecd4dcab71260ca92d524f20906c062f3e9135c12a0489808548d4619c27f497'); -INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37","messages_hash":"061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'1795c0bdec11af30a3792883c6d3be0d374435aff3f3e1e541b8a7f9e628b03c'); -INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8de49e297899ce0e3366e35e881ca85ffa0f6487e3dd75e7d21801e5d4c7c45c'); -INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a","messages_hash":"90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'1f1032fb9ee179093ee9ca0c6d887729e1cd2416f704b66adf900c2b67cb67f2'); -INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e970e4ba33179c01410f01f0ab8320043ee66ff360319237efbdcf6376f461d0'); -INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a","messages_hash":"e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'5a575353b57d7daff09963f5b82002212afc32aed0ce15de493931057f347e97'); -INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'817b0ebb6c87eef9d1ad61fa95c75b70a591146186386fe511c5a3fe05321cb8'); -INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200","messages_hash":"429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'cd4cce3d75c635d6a02ae384a2364db73ebd35403747b88d6c18aba557d5dcb8'); -INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'222d301bc40557334a8cfe805be2a302807a02b672b3e08096cfaea229f13e3b'); -INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0","messages_hash":"41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'a4b51595f94c9b888706ce425113ac376106bc8741b067065abdd7d0ea461959'); -INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7bcdf8b57283ecd71e053341e0b7c7fc845adaadc7cf9bedb219316e76bc76b'); -INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d","messages_hash":"70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'a508cc42c95ee5b2efd5aa9ad254d4e7f2b62fb47f8c89f5a82df017ca62ff3b'); -INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e9db64c6e3d2396a71b5f07f7044332159315a259d8cc8799d4c381a3546ea'); -INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd","messages_hash":"e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'c4ac4123fc0bd2afd6613579154322adb08b951d714f17e8747e1e2e57a1cc4f'); -INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0c426b3f37d127aebd5a7e498b48ed975d783a1137c9983a1bd58332916064a'); -INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a","messages_hash":"a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'c86268cb016c7664a9cc2875a26db52bd5874a7cce5310b6970ff501dfbbdbdd'); -INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f332136c25af9b522ad40d9b96c3826382f37538656d9910ff22e4630dc190b6'); -INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac","messages_hash":"b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'36dbf2ebc40df8cad6101a5340b446eafea1a7dc39e4afc0a91e887a93aac800'); -INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef982cce4008e345d5acff80ddc0bd957d942145dd8bb455367356f7c7ea7134'); -INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038","messages_hash":"5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'5aff51c37d52ab5aa17ab9c9734f901d2ac8bf89188c74cf7d052665cb78dd62'); -INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0370c0364fd34f4e24eee38a034a3375a5f80467effecf36993113d88d153f33'); -INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017","messages_hash":"b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'cd856a886d1f632d3e66eac07b01bbec9445ce395d3cacb895d436634e78c71c'); -INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d420e18416663997825a173c8dd1cbe9cb8f015e3b1a004cbc7718f3e093ee10'); -INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194","messages_hash":"5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'e53586f229fb0cf1bb3ced1158705f1da5b8bb1ed457611a951bf463d297240b'); -INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'950de20726ec5a376f0f14b1b0fab77c6ef916b4e2e815aaeb69ab014bb89186'); -INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577","messages_hash":"8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'d88631ed054c5b06c69ec9a97a7f4e187c3468de557208244576980d21fe3a6d'); -INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5692c02681c7afcf08558728fe9e531953fe561f7ad2801546f805e2ebc33026'); -INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691","messages_hash":"5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'b28e86ec6d514252ca17869a171f866feac183cbeda1cb3b5eaa9f7efd273320'); -INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952c7c9872ebb4f31704d486a7c3b4b1bfa17d7bff0f6611fd947a2740718ef4'); -INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff","messages_hash":"3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'4c94c417beeb79921cab0471420d6a5bfaf15012add29f329afd4ab98124a998'); -INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c64651b0f2de2ca41596e9d3aa98542793e1b80b7fa6d5339ebdcdd6618f3fab'); -INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a","messages_hash":"67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e16be21b8acfebe9cfa9c537210b7dcbda8f8fb8272fa95e3c5eaec00280ac0f'); -INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1be15a98fba27c254d024934d6f0512e69fcfebdf501fb1d1cf16990dff4343'); -INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7","messages_hash":"67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'88e4621228890bb2294d50a20cd68261a4a4c198700ad4017c1d700aa86f1b0e'); -INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e276160a28b350428b1cb01e16b1e36dc430c6a157b01ba9bf5abc9f2279fb1'); -INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f","messages_hash":"8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'355a2cb850ee7d921a132d49af5ae65aafd5a045bbb8e79bfa97a47fd2f8bfde'); -INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06259f6aa2c8af767448068cdeb5da2608843ba21b945fd53eb9706c0a363d66'); -INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654","messages_hash":"0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'3e6c300f7160b62b6707482279eb510334b43cf4d0b6eab1fa2d2c8673f13789'); -INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'478ed82b37cb4f76d5b1a2bcab480a23de7bc1929a055deb151ebc6d0ac68d79'); -INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e","messages_hash":"91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b61e771e9c9108e9dd55752d8a7a3d4a0f5c0b3a3d6e95e7aac64f287093cb5c'); -INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea70bf0cea18c3597f41c408b77413aa66d8167bb639d699b86fa246d78b7bf8'); -INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68","messages_hash":"e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'1e264eddc6408294262e4b14802d31f232e00fcbc305b423a939beb2e1f589f4'); -INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'132a946aa3e8485cef7173a52c1240a3b0b4a2ec1338408fbed0863baffe02b9'); -INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe","messages_hash":"0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'7e0d13d5c5a2b5ea70894fce721f09fc6603d5ab9d91b809106b3a45fc1ff368'); -INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3353b048b62c95de22255293aa23d28ae60da4af72ead47c6946ab7b5461df3f'); -INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c","messages_hash":"b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'0a6d68106b95fe75413aa77ebe58dd97f0f0d87529faeffb3577cf1ac040390e'); -INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6f8c683befc8bb778a6ff70a1c6c4d7cd7ae8391b33f616080f4f3da24edc19'); -INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b","messages_hash":"432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'9e48b1a4d509d61c2e86a45fa1d3ca78c24522355ccdaad4cf8897417a944e13'); -INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'118c84f148d4e4fed2ae954cded5ba8594d4f2bb7692c2601bf1b2d52af136ad'); -INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a","messages_hash":"cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'57def8e387221b04d62d9bb9c4abee4b79db74eef35f59ed08317660f52c1003'); -INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e629b43abb61eb58c991d7b2b45ab91f62adfa4442fd39ef82cdbcf5cf32498'); -INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc","messages_hash":"4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'931d0e816cc4231043126395778ddad88bafefbe973f73519f0259a6403b3717'); -INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb83d95915a55325d7e1a8bbeb97f8ee073bf121fae59ccf20590007dbedcbd4'); -INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a","messages_hash":"2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d3f9749a6053f6e0520d83083ea520217764e791d7b33ce4c250e0578cc4858c'); -INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1df8f1e40369702eabbec71df6d4a3bc33edb9f36d90992de49498bad367b7ea'); -INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b","messages_hash":"e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'ea681c0dcf3c2e3c3e7670f40b9f8de4049d1b5618be78204d8c60bfe8e1ac42'); -INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'519d175aa9edd6cbbf9ab850faedd26ee66a5bed08c94f36f7c1247cbe120025'); -INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca","messages_hash":"7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'89ac515e1f974c4c3f39deb4b1d097789349d9bdf9671b08c421dc67f74fd7be'); -INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e63279103557116d8387c26121fb1fcb198529170d02c9bb9fce3380b9899f5'); -INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9","messages_hash":"a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'666eb9f873cda9efc8e8732a152c0009772e240bc6ca3236dd4441a1812d1d12'); -INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1f507874b2c61283e40da56846fc83355befc7c59b97eab1a2e3e8f8fdf689c'); -INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d","messages_hash":"b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'e9b9bb3782009d86025d4dff05dcae4a02a452abed7d9342de407c5091021b47'); -INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1427316f764e88a7a089addef9e223be1d7f4833305c46d329884c61d2866df'); -INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375","messages_hash":"2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'e4760c483088c656ddf264d6cc9fb6fddb83069d6c2912ebfdb9a48864cc009b'); -INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e4f51f351c4582cb03b661d8266c766047d25735b8db2cc57d466a429b5786c'); -INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68","messages_hash":"032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ddd09a5440c181708dbfa5ab4e28a6e19436161b32be0579ada2d02c8ddc7daf'); -INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9b46d9ed6dfa4fca112ff87dfe924536171c13d2f4b6bc927e74fee25eef594'); -INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384","messages_hash":"4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'59464bc118cf34aee73d6005d6bd1cc644bbaa5e8e5447a5ed8b837faf74b382'); -INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1ba4937818e8cb5ad0c02c86b3b5b498c73e19d4f53cc3b4f348531e773445b'); -INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a","messages_hash":"9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'d58f9ea2899da88eb9eab157b926b54bb7babb86ecb025f79130c7207dc798d4'); -INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fed2fe1008c7a34ba733980db7c807c45b3fcf8432011bca59a5111eae41a47'); -INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea","messages_hash":"5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'8c39418b083f3582d3cd13c5b464f9adfaf9c0930b3bad2a13480c1a8b4ad439'); -INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24c0780a45a570b9fad90df58b6137e2126a2a76f6a2f55008ad05438df2eaac'); -INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087","messages_hash":"8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'0a4078b38c09dd6dd041b5fe6e0b77c92b0a92de286f60c229182869b7aa1cd1'); -INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37ce400d14f4ef3d2c1594b349c2c71ffc8cf74b7d8cf5bfe52cff492c366494'); -INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3","messages_hash":"71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'e52358cad6ec248b95888485e405b020b76d7127f3fbe42cc738253b31604fb1'); -INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cc10c336d5acc6383459c2822dc7e0bc60994c1c17cec8bf63722f879d341b'); -INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737","messages_hash":"de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'375746c4494cb7c73a543643b51e84e688b4db404fab382e59cc5f7dd9ca5f08'); -INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0e536402e71670037a0c2f7693ac9f6b524b81c336e41e3f7ae1c3189a1e3f1'); -INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962","messages_hash":"1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'8cf36dead5a061b843d47227ef1b1d77d8222a8fa61eb78cbf47f726974d341b'); -INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3299a61cc0339d7cf533a2c7b92accf3aa468668605414862b01c5d86037a68b'); -INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875","messages_hash":"2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'f4993217aa15337ca41ad884d99ed5dd4ccc62410033a3d3c54b89d61625a66c'); -INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bd96b166808697265c89975ce33e6cf5aed45fdcd5dd51ebea226e3ec7ea8eb'); -INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9","messages_hash":"04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'c71919001acb896be8c0ef2d10779596f0f503451e9012d1957b812b20872575'); -INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8b3f2950d68a363b4f251a9ef08338c4bef871920fc772b67607385f8b58605'); -INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555","messages_hash":"0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'6dcf595297f7543fdf279c68a8f6158209bda76d0cab56d337175747b683e3dd'); -INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11978d808f0f86f284a7b9ef5f5a31372cef8d745bff8e9bdefdafde4937f98d'); -INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c","messages_hash":"e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'ae35f3fc6526c8b9201e02e9e42c5f07bcd9c559b1aee28d53b02ce59d892198'); -INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'570599e8cff5be22d74ae80dc4a894ce65266922829ec2548835b56450b17611'); -INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f","messages_hash":"f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'884ee050893f771e2ab8171ed1b9bef10071ff02a21859ddc5f9116a72f3d4f8'); -INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7f140d8bcce82d2d3791779c51b81dd0cb4da953c39d9d7d9d37ada50e6889'); -INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce","messages_hash":"775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'af5438893a884a96e0dcaa7cd28e21d9d318feef14c4cd5a19098c7c6691b76c'); -INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e394cfcf8041304ffdabe732ccacf31d0a6ab4a2ce0cf2d47fa9fd7f50b7f3ff'); -INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592","messages_hash":"e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'aff87327c2dc50f2e068eb40a85aa0c3b0445f5df42fa7d4ff48540697799743'); -INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bfc25d2069cc3df6cafd6821e9efc31ccad439b4f425e7159ef56b86026d5b0'); -INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472","messages_hash":"7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'5c36d51d4432badebb205194e03930633327454148be26a3c4cf2180607c00d4'); -INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa323b026571a02673f80fc6f329c677ec886accfb7402e6df7791605407963'); -INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34","messages_hash":"31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'e409cdc8d45913b73999413860ec212f6b88c593c9bff35e72b6373c610a1fa7'); -INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5f4b3ad489407fc5b270518cb57e450c306a430ed9cb883896ce5590325a38e'); -INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f","messages_hash":"891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'08f6cbf421e45c17988ddf1ae48edbfed00b6fd98b3ae2c397efd2eb4442fbf7'); -INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ca74cb9554f057b45021ec12415e58999846f4bf094afbd240d15fec0e7467d'); -INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a","messages_hash":"c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'ad341e6285b38e423cab2a587f9f18113ab1b5b919b31de13d40f026c0f99d55'); -INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e946e5b1414b12dbc980742e823cfbcab61b835731a486e3039bdfaf5941ad32'); -INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3","messages_hash":"d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'b423d04bdd25d14bc80608d0a4bed5607b1ff4efd93ca91d4983636f3f559924'); -INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a6fc423885d3ad5182e23e1499cc5b86a3d5e83f1081802d6519f7ee79e123a'); -INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa","messages_hash":"a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'af041db9cf85811b54e98c267e64c2c7695efeada4e676ea83c4889fa9353106'); -INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'485ee641d2e380495869a947d2cc33b66cf86eb59ee1c09a012847390dbf7fcd'); -INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8","messages_hash":"e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'35ebc398c3e129c1995594f28d38d913781552ff95f56d668e94caedc38ea73b'); -INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1669673a5b93c6fce85bef41cc8796ac9b7a3e37be8f2737f37e074c2759d4b2'); -INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516","messages_hash":"e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'84c9c3c820ead2dc63ad1ac79d92d81265685bf973d8111e59519fcfab479572'); -INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8680a4b6afce64bb8f69ac7b3c678146877a5bd5faf7129baa57b4a6b17586e'); -INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52","messages_hash":"7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb2ed6c24c7e8cabac83108f016701f63e85142c36bb642e13413bd2b0bdd8e'); -INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7c9ac7adb6b3f8e967861500de50b20676bf1f6367ce2e833f416b4afb147b9'); -INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737","messages_hash":"25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'d37bc5033de69b81ec98e3efce5efba37e1b09aa0b4b000741b468799399b08e'); -INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1437345d30a80c61da2eaacc3242745332f339753bbbf6bbeb39e4cda7218726'); -INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96","messages_hash":"18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'2eeb7269ba3b87d9bebf0436ccd58356ce90df5e66d9fa370566594ab79f80a7'); -INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b2d26055f70e0891b490c50fe3b225041370f1d48ac9a152216e5aabb96d4'); -INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54","messages_hash":"9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'ad8348090c4977771cabf0be6aea102878b385644d6b22028bb5432929d5218d'); -INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29744c82886875ebc4d20604e84e1755750d2fc09c4b804f1d969e3a5eeaf8bd'); -INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753","messages_hash":"c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'572614f4437802b5578d52897e07b143ec4f83736db82432482f3fa264532612'); -INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a76ec172abfe7896edfaa6fa36361cc318f693c65a08b2df197151297b5128f'); -INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5","messages_hash":"923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'46497010293ec1f195b396441c3c70fba3c707f12970c77d35f8db09f3cc1990'); -INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b3faafcee1252e532da4f2a65605cdac0c34f24c4b0ec1413903c15e7373990'); -INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638","messages_hash":"a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'b3d5a94902e1186fc12278dbdd1f932c1e4e327e32d8c93264523ad31e34c535'); -INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31742b197f42de272421c351e356d94f6699bb0d5bad00e9142c9fc2df3e72cf'); -INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2","messages_hash":"70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'d44081ef15bc4521ac345a6b37bba2287c806862180e65fa3096c09019ae6b77'); -INSERT INTO messages VALUES(1740,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65810325d87cbdf9a50f55506865a3b940312c639cd8b15ab0072019799f4e85'); +INSERT INTO messages VALUES(1315,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','b576246254fac8c77cac415b921cbea78b6161a6b6aac803f3ccd7d6369c8d71'); +INSERT INTO messages VALUES(1316,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','df492fa192d77c2751978883ae36e4f18527620275eff5f72917bed83c137299'); +INSERT INTO messages VALUES(1317,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','322fc0f7ed3d25cdbb1e9dd4c94f24dc661594e986a00348a4533a6d634d6dc5'); +INSERT INTO messages VALUES(1318,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":0,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','593b5b43be5cf26d0c01fd30af68cdf3881e757d38b329e4319497c18b761c56'); +INSERT INTO messages VALUES(1319,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','5502f184b2c142e030fe0b17f8671be76112224c8e47a4aa5e759ae06c9d6346'); +INSERT INTO messages VALUES(1320,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"2da66508b6fcc29c1dbcfaa1d547e2e7fcd32632cdf98f995d161075ab06c3a2","messages_hash":"542b45c877e2d74120d67e6bab78b783515661bb13ba9bfd72512d07deddc0d2","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'a566829a232e303909b3c7a4e43c1cc7514b937a967479e688adf19734fca675'); +INSERT INTO messages VALUES(1321,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2ae15eba4259898549f636f17e0f95b8cb64328704f67652212f7cdea05df88'); +INSERT INTO messages VALUES(1322,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'67185b9d2c1d577ef76539a18f2b555d6b1468b2e097c104955981af8189b29b'); +INSERT INTO messages VALUES(1323,310508,'insert','transaction_count','{"block_index":310508,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','eb9338289d05d606d9c99e8d7fef8b7c2d8d2432d664715788ea3a854cc99a06'); +INSERT INTO messages VALUES(1324,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','94f4634f09af08cbcf9ad79745003b8e4cb5bcebb5e18ddc062728b2414a90a9'); +INSERT INTO messages VALUES(1325,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','6026d45ebe929653605c20306d252e12b66466719848232422c99769507e6aa4'); +INSERT INTO messages VALUES(1326,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":0,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','832a65a67ef972e20f2216e15e3f8b117b28a36b7aec9806c2b368c035c6174a'); +INSERT INTO messages VALUES(1327,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','f198d94cc25c3c9f75c99134daf53f02aa0ff7a550a96c3360768064f9e1be6c'); +INSERT INTO messages VALUES(1328,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"783827f1e82edaf42d45619e7b18e20d544f5d8475f3815a61f1f7de9190aa75","messages_hash":"81929f0d58e45cf9dd08d4f4b6ec6a133bccff47940383c44adda8a047d94290","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'14c4a470f867c2b398c6af2af0f3849f76d002371c3da85ebaa1a601f80f7e14'); +INSERT INTO messages VALUES(1329,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29c989d94839fbe7d4657e2a6237638a7082ccf401cba2d0741dafa2fbc2b5f3'); +INSERT INTO messages VALUES(1330,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'282b792b40d36844204e1b81b19a9556b9ee0efcf35cb80ab59c4d42ca52b39a'); +INSERT INTO messages VALUES(1331,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','63a6b6ca3786692f695e8c0d34ab3f16602ba9207d894cfb3dfbe57028e0ac9e'); +INSERT INTO messages VALUES(1332,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','1f1bed0403862fd37e1b5bdac5c6f62b611bfa0631eea771c550eff568cfd4df'); +INSERT INTO messages VALUES(1333,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','d48acd9e24d3399bbc5efec70023b24985042ec852a4928186d38a61625ddf0d'); +INSERT INTO messages VALUES(1334,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','15d2be78e4bd0757d5530642e2c15feca5209dbcd547c65b24a4bd666461a1d3'); +INSERT INTO messages VALUES(1335,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','fa080a20ea7143c429b5a4fd79f3f18f93be2617e933634280b332627b18b623'); +INSERT INTO messages VALUES(1336,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"6d4cd7106c8334cf9ba41c687ca3bf911cea24d66d750e7155ac016ce2315e90","messages_hash":"757fb88511765ac409322f00f6090a339b6f0087618057aa8756d850d511b0bd","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'09c01cd02806770878dd86ca180d61e82865cb39884e3ecf760ee6b0a7b7d93a'); +INSERT INTO messages VALUES(1337,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'822d7f5b10c206cf7a0c02d70e3f5d3f02ebb5c24e074ea6ec20d8ca21e44105'); +INSERT INTO messages VALUES(1338,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'87cae7a7ed0c252c4160653f3f27b025683746a4382bc49145474df6e2112d32'); +INSERT INTO messages VALUES(1339,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','629bcf43c576827dd83ad89a32ebb7ff465ada5c570aafc5a34c4319954706b2'); +INSERT INTO messages VALUES(1340,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','54c6e52549ff2e5b9fbc6c29ba364a743ce0e840edd8fbd2b131602a95fdb49d'); +INSERT INTO messages VALUES(1341,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','7ddaf5e560be1c3c3defa297025d2c8ddf044f9d2f826a74f2be18d760e965cc'); +INSERT INTO messages VALUES(1342,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"d8e13aeca99805e15eb437805f303dde5ab0cb44a0499d7d776f31ee476281bb","messages_hash":"47785c8e33288cec85899bc3b1c039f35f79df372f5dfe9f327640d1200031fb","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'37497a15ee5da15b628e0c9262c0761fa9b08981e3d77de66e0bdb305f3d4c75'); +INSERT INTO messages VALUES(1343,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'537117456789dc5524dfe951009eaaf2ceceb7a2b04a0bab1315d96c69d7d543'); +INSERT INTO messages VALUES(1344,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"284e7317e2f651316fc66a70bdf993a6eb03030cde24b2829c8dc1fb3083cb65","messages_hash":"5a1169dd2825de1dcf0f9bcdf9983a3951bc21fdc2f032c638131317a4d6cd76","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'22cb1c11d7ab1ef51fd80ceb9a80b6657487e368dcd56bdca0aa47bdfb272f0d'); +INSERT INTO messages VALUES(1345,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ce03d8ef7164e4b4a61e0137e4e0674179d891608fe9faa7fa7b174307bb816'); +INSERT INTO messages VALUES(1346,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"6700fd71b01d55ffb9abff46f33404f8afdaa244c34d79d1a5597f0a2c925988","messages_hash":"4f61732e6c4e60802436a1ac7920c368b7e2a96fd8e7f658d26cb22acccaf63d","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'000c2c29bc70e2ee1ab2c55d492f109d27ab365a648d32a6ce3fd300fbe87f4d'); +INSERT INTO messages VALUES(1347,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8ff135b4319a92c481d88113ccf4d6e95f9c8dfb6dc3d3a8953973de6e231a7'); +INSERT INTO messages VALUES(1348,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'a7198fe851c7f0d26cf84762cb0fdf75d25a3d6b1aecafc0c88dc18079fb51bc'); +INSERT INTO messages VALUES(1349,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'70e2551a307398bceae51bfef71431304911a6cb4b82b3a8637c37503bdb3d13'); +INSERT INTO messages VALUES(1350,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'b3e2697ea91dfe8a05eeab6244b36372caab587b75eb9b962a9f05ceb1319395'); +INSERT INTO messages VALUES(1351,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'8e3f21075409a5c60d5e11108d42961c1ceb0027ab0cecb5e24b249a44488f7e'); +INSERT INTO messages VALUES(1352,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"f3ca04116717e4ff65dd65a9ddc1fcba48c77f3576cc7c293a1fefa62d628fbf","messages_hash":"50fa01c8c581bddeda73dfb82950d3fd6e00dab4cb26bc309607906b2a85050d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'919602792ae5a020d1ac15ce9bedfe58a71fee136af7f34d597025fd5f1d3055'); +INSERT INTO messages VALUES(1353,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56ba7d83c7778595a1e015be9ff26d239b3c29a8cb258e5bb8d98cbe51b1d2a8'); +INSERT INTO messages VALUES(1354,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0a526a36041076d11076786adcb2768eeb214b4aaf61a2370f0f44f1e7fcc15a","messages_hash":"4b832eebd8655179ccc68b48ff05a7e341fbc93d0f88f04423e21a6df1328504","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'e822861b3dc632c88c7a0e3f5c343effaf6d01bcd1f0e5df5a0880a2efa5c2f9'); +INSERT INTO messages VALUES(1355,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6ef7414c434ec9506a1d98be8a732060722c06b1a2a32530c7847f87f02088f'); +INSERT INTO messages VALUES(1356,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"e0997c5e3f5e58120aa263056f9db2671b5ffaaee0eaab92785a3978fa90ba5e","messages_hash":"4cd488735f3051bec72af179515a2a1dc19842f1bf0b46290e203e8ae0afdbd2","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'61419b4150bab82b67c373b60580cdda8f71ff0ec501e687aced40f1f2cc17a3'); +INSERT INTO messages VALUES(1357,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb06762b949804d3881e85a64c11b3b9d7d0223d22d648c15ce7a3a0ae062a48'); +INSERT INTO messages VALUES(1358,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"3beeb284fed1fe729ba2b994a41e8d7a4da00afbce5cc95fd84b985faa54fd47","messages_hash":"80cd0467b0d6c1b42efe35523f9de28e11d2adb38c40ccb935275f41f6b3ffca","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'f7a606c0717e88489002da9582423cb8e087c5df447caa750041c1b24cf0d0b3'); +INSERT INTO messages VALUES(1359,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ade47286eda58e758324b738aeb5c32582b16e85f14ed3265ecf2ea7154006a2'); +INSERT INTO messages VALUES(1360,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"185ec7bd7c0cf4d0a380f0926a1e1dfe0e2d4c9fa572bc4d3a05fc0b2698e584","messages_hash":"96859ba232437a3c37a8331de1a779fc77eccfdd173372cce8778bbc7e30d88c","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'fc24d5ebb4abfa977a864cb3cab406aceafddc8c3a336d1d05229f3c6c2ff655'); +INSERT INTO messages VALUES(1361,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c27b336df659aa9c1107dacacc587b288babfde9c268c500dbd927801025a5d8'); +INSERT INTO messages VALUES(1362,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"094da03cdfcd515f0d40be96ea486e97133b0eaeed8e4fb459dc0dc9b3778508","messages_hash":"21ac12260d40a0931b36ca0b212b5762132e373c3f89091287894248799426e5","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'95dfcb57ed02086ca565814036da26279440662023d95478a60924db0532b3c2'); +INSERT INTO messages VALUES(1363,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a936f2a370f47e4cdfc4d11917c304794582b76f8b785c4335013206e124b9b'); +INSERT INTO messages VALUES(1364,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"e1b1593e442ca354f28f9e22510475d6064e973705bc8a17873af3726650a26b","messages_hash":"774048e2980123c239ce09d67d7fe5d50df6237e257ee7e4fee96fbc7de03296","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'13dc88e6114f0d73c71d8aa85d39879b03c0d383e04d0aee9ffcb444b35cfaf3'); +INSERT INTO messages VALUES(1365,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb985d6f1f2493135e65e3a4244fff6f6d10338e99fe7236740a8a97ed46a439'); +INSERT INTO messages VALUES(1366,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"5c975744cf660ca6b01b7bd60efdc3cb42242f7eecc76a450f2a2e4b41d89b06","messages_hash":"f88c606f8c001c912fe58f170c8df49989dcf5baaee42a2b835ada70f29abfa1","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'a6316eced854182393ded0db75de171076bc3c0abb036a2478b7e0cfe66d9e67'); +INSERT INTO messages VALUES(1367,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a45cfb48b704829f8f2ade80d18687df331d770ae96f729b970dc30a66e8bbe2'); +INSERT INTO messages VALUES(1368,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"b5422d0d0f304eb2cc6c8c4c8c6770b627c6a8865778a802f4039aeafd808329","messages_hash":"c27d6ac0cbf2755ede3ceb8a3b278c34c66e337500472552371fec3aaead38ae","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'168350cf2c48180c011eb201c2b784e242a25e8f40f1741899f5b92229d25903'); +INSERT INTO messages VALUES(1369,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63adcff9208cea286015a8a311db086e1f723844e30cafe8841f85c879b0a324'); +INSERT INTO messages VALUES(1370,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"964ccaaf5d261642ca22d826323c7229854e706b5854851521fc54ae29bafafc","messages_hash":"ad9c3cc561c0c7627764d9bb03321400e688dd4990366a3547a72d8d6eac2ef6","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'0b568e6e3fcc17ac17359e9350e84a50f2cd76080b54ffd5c11becca9d2f523d'); +INSERT INTO messages VALUES(1371,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ce974ed8549cb7046d8dc3e8bcdfd23900b8c62e70d69956bcd5a809cb395e0'); +INSERT INTO messages VALUES(1372,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"28d40f6211e8881b294e4b934f38c5273b5719b016735950babaeceb6d0e3b8f","messages_hash":"44df28540641a120fe2702b63a22e57f3f67a3d4bedd6e0e52a5aa6a7148dccd","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'685334f5a3668443a5a97997ae591bd1bbac9fbbe49a78997919713161c607b8'); +INSERT INTO messages VALUES(1373,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98b555de9d3a708f8f4fce0d027593ae648872e85781608ed3d0ea025b627894'); +INSERT INTO messages VALUES(1374,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"5b6332f599e3dcd85cf2870da51446ceaf39471a995abcc9331790e435bf3b8a","messages_hash":"4aa60fb5e6797bb907f5c9bcfca19303ac2abf6b46baeaaa542fa233769e4b04","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'9c55fb8f387ca8cd3afd1b8952c04c87c8db409a0df51b222a1ba4533ae89b2f'); +INSERT INTO messages VALUES(1375,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eba2f8234f107e31af4558bea4a671f5d49cae04ea15acb88f4f0dfe13ab94'); +INSERT INTO messages VALUES(1376,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"41a093d957164251e64603595e5eacbef44ebb1f836606c3034b01ab852bf3ec","messages_hash":"ddcd10a4a204232c04d62063374e2be4d7deb2a36809a6a8c360fda5bdd184d5","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'1a09dba8f61d045cca4c29b1b13748df97c0a3654379521012f1346b3921558e'); +INSERT INTO messages VALUES(1377,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db5ec5839ef3d3fa3bb36227851e7dda3daec40fcc6ffbd8ab61a7dfeb3e3750'); +INSERT INTO messages VALUES(1378,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"93940adc92c042ca2678fb879fe731f82cb6ab2359a5876d4e38c8326a2b95a7","messages_hash":"3aadc79a191bb2ea2969254095ae5cc27424756c50beb924fa0bf858f8dba575","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'378224d765f83e398eb51c3a8328c062ca42ae283882bc582d08bd9fb19d4e89'); +INSERT INTO messages VALUES(1379,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5488400fb6c324782b0f8446818ec62730ee33910475234af0f2d4d52026fdde'); +INSERT INTO messages VALUES(1380,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"85c39fccdc3c9229858110f0ee92869349fc8d2c7d07c2cd98778831aca8ac26","messages_hash":"bfa3707bfc5027103e7fbb6c0bca30dc3889102b6ea70402114ea864b06b6336","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'92fc5e0b7ea7ab2d56d6de22e4ee7ec2cd2584a343675ffd4a24066e5d1bd237'); +INSERT INTO messages VALUES(1381,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0bd6f5cbd636be700e83485c22f6e8bbf9730cfb6ac1fa785b64dedd1553089'); +INSERT INTO messages VALUES(1382,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"a07248b82f0a37126fc9e5978ec482c9b4e4e657652b7428870fc302abd50b59","messages_hash":"c289915af496f6d7f21c7d72d3f062a130b9a0e9e6b96ab6b50fbaeb03eff252","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'d7e40d6d73bb68a33cc9f960ec2ca0d57982fcb91308e860cc0d656bf9f66417'); +INSERT INTO messages VALUES(1383,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ef9f74589f0a8b77dc55bd14f5d2043ea59ae9c4ab0c4e757417cfcd60202e8'); +INSERT INTO messages VALUES(1384,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"d5e23e5eee8e31887b0f92f84e309115e1bd4fdeb4630982b9fd0822bafb8d08","messages_hash":"4bf82547d08049e18a9e66400b62eb0decfc7132a66c2ebd5e36411e1fce68fe","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'142dffb22c8927520e9a38de9cd08bb8e9d330427a983febdceda2b306ab21e9'); +INSERT INTO messages VALUES(1385,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8184b9da955124ee05e2424ca3c38dd6ee21a150d602b8338054684a9c1d946a'); +INSERT INTO messages VALUES(1386,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"45b1d42d6184fc6ff41a0c6744198e9ada178a97205dd457c18068d6916f44b0","messages_hash":"7566d946acb598b3335f18e317e041b05aa07705c796db39f29ec924c003d814","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'7c4d176e26278ee69eeb6a713b60101d5c3c58702df824cdc9ecd85f95ea31cf'); +INSERT INTO messages VALUES(1387,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a2ccc55653a93059f3428ceef3ea58b81f9d35c0c98a8b83d5413abb0d2bd70'); +INSERT INTO messages VALUES(1388,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"9a581ce76795e586d5f691857551aa85593ff647a5a904daedade3406fb188bc","messages_hash":"eae7370fde489df4ef8c9e16da991c1a2fa60b4cd3c92cd37608a0e6807d5745","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'bc186b6457863b8a43187746741819a2fd9ddc6ceaf657a16b34502c4a6d9641'); +INSERT INTO messages VALUES(1389,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab84ed66d71d8654c6d8212a406ffdd18a3f70d4f9493094121b0ebdd9978b0f'); +INSERT INTO messages VALUES(1390,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"eabac8937919ff8e56b84ee156fe44bd2d3709b2b6b32d7b06a324d26743d88d","messages_hash":"48deb40d3714e0efb7f28dfbc9bb8cc9229ebaa602e54c40f6cc6930a1786d84","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'c46ae485bc829d2b6ceb2099b4f01591f528fa7d005cbb01dada906b768e78f9'); +INSERT INTO messages VALUES(1391,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fb3c9823d82f76d5d84a2027a091cf9ee6dd6c55dc34a058a7365e4b12c25c8'); +INSERT INTO messages VALUES(1392,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"d0c7697fde7509deca83f1811b2ed8e7d08b1a4b44eff65d17631ef81b1e8f5f","messages_hash":"55f8621a6005016df54522ea56b3c95a916000b144a0bedc502ec3a386b0220b","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'ac050eed703cc62136ece34b9111375ca5d12df090089b143a48d80caf90f4c8'); +INSERT INTO messages VALUES(1393,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'338d0ec8b1c27e94dd76c9280210808c2c8932526ca282945d8f5899b51a8606'); +INSERT INTO messages VALUES(1394,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"bd0ef7113457907b081d21fee7c3c937e93d1381e33341e87beec52618a92d9d","messages_hash":"1632445bceab41182eeacb4ad6326dc1534abe20ae1ee97f7eb7a824618b4b9e","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'cb898e347c3d894390eec99420dc5f0bc3bff75a1cf4a3c3115a1f895056d628'); +INSERT INTO messages VALUES(1395,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e6fa2250dc349d495371841b94796e592b42170aded40a80485b8e652782db6'); +INSERT INTO messages VALUES(1396,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"ecbe27e682c5f7d728a5f8658175c85c78d1a8c5ca859feec9b49e078b82117d","messages_hash":"5802a8d9a466cf44d31125813c3a23a4a79cf367bf23c02dbc5f950da273132f","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'0ff7e6f91ebd66e431b24da9b55ffcad5ecbb165d13664e00ba773b73f7c0237'); +INSERT INTO messages VALUES(1397,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cb8e9d74a87c5daf5d6382e098a164b06b146b1be942d1db02b5680bd2c3597'); +INSERT INTO messages VALUES(1398,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"4a257c3e8a9210069816ebe982e40d7c4e08a791a81dc6acbde99a04201db04e","messages_hash":"fe58961eda1ef42c57b2467b543c185c010dd183935f3689f04f3a5414dbf21b","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'9a96c37821e6ce4095afac575e4ed341780050d7f73bd66358bd40e798afe105'); +INSERT INTO messages VALUES(1399,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcacd2449c89f77bb6f6ee49ecdb231ea0fd626c0f151e168c8a09b818bf936a'); +INSERT INTO messages VALUES(1400,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"790fafd9544969763c9f6e3c0c83944d2953be8a981a260c63e223a83464d04f","messages_hash":"447daf32944871005cc2b7394dc99764ffdf90260154e356dd51cae795cac368","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'6053314ef0ac91a6bc7c94dda33dbf1c1b398c03fe2aac72db5606583e92d7f2'); +INSERT INTO messages VALUES(1401,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c51ac7d5e18dd7a28eab6bd46117fa217249861cf6d03602b7cb57c6491612f0'); +INSERT INTO messages VALUES(1402,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"f55360b861c665536eae661cef294934020cb8a06ac4808a7181794901355803","messages_hash":"cd50ef38b2a3b2a2b098cd73e98689e6188f6bb76fc23078a3ec36ffbc7284be","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'ca60317deb0d3b285a13afff6244d06d6ba188bd8917199ed4905fdc7bf8f92b'); +INSERT INTO messages VALUES(1403,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'715d7d27e38de019d88a9069ad6ec81c5a5c6df68cecca6883f7a13a7631273e'); +INSERT INTO messages VALUES(1404,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"b2539364321f94dd2b9d1aca0dacd1148d8e0213b966d8feca03222d3bce16fd","messages_hash":"4fcc618697344dd2eabf342a4077ebab493be32dac8ca10ed8811b60f54d97ae","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'16ca64248921d12a9afb7d952c9337c5585124b7c7f16c7530a66884bfa11d3d'); +INSERT INTO messages VALUES(1405,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a266627b6730ef7c4a183151f2e6aa91b53b3c7d584e2ecdd2ed35e281a5dde'); +INSERT INTO messages VALUES(1406,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"9922f3174986b70fcc9823a55ad4b84ad31a1c6aa4149e273c8e6c4eec6e5683","messages_hash":"12f49f9dcc05ced302302960da83b0ccd5a00f1d3d3796f845e05d507f8bf1ac","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'e382c6fd6ce95cfafabe08ed96b92fde195cf17c4e059477720918b0b76fe3c7'); +INSERT INTO messages VALUES(1407,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25c74b70cb52d2d2407331db2b1dfe954afea7d6da47eaa05fece5d6bcaad2c2'); +INSERT INTO messages VALUES(1408,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"45e6a6a29ac4d1a7ec55a6d857be0f15a7913a8a7abe49a33c4001ccd43f58c5","messages_hash":"b27378abdc89008ae5d9100e7f9cd5ef4e48ce664d8a8bd7d1c20bbe02f9221b","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'502f238dd1a78f0d12ea5f5a2a5a76ed7baf3164891653cabce050c050e4518c'); +INSERT INTO messages VALUES(1409,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ca4ba3c2878ea75c1a5cb3cef89e77f8fd6826635fd5de3d53961c7444f67f3'); +INSERT INTO messages VALUES(1410,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"3d699a1ec41c18dfdc59e74e793107a25d4237443d7e401919aac171dd5d0fad","messages_hash":"1eb4148bf7ffbeb7bf665a358f5777b73924900b810ec9b029b7d55b601b68b6","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'68902b929e1ac97ac0513e81a2d4b61f7d8e8e2a42bd52b541bb223ce23db922'); +INSERT INTO messages VALUES(1411,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32891da71316768d6ee577bc1fee4885f5f1692854454995953eb7fdaf458627'); +INSERT INTO messages VALUES(1412,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"eb2b3a6022accd97e8e50fefa6653996002c19959f9057f5f8ed4f3182130f73","messages_hash":"63e03ac65fc2b4c8d586fec055106c3f1ca1b20bb6391b83b55948912ef32dce","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'467c5d3e4b57ddf2f0f4947e449474f6eab6ae76426178374899557799e67401'); +INSERT INTO messages VALUES(1413,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'969c5b4495c5086177c547bfbbf1c35ec0d512b484a339412f66a19009bfdbcb'); +INSERT INTO messages VALUES(1414,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"f6f5e8c13f86e75d8f6816b79313a1f36a6f8b2cf31695ecd540f71e4d9d5aef","messages_hash":"984bf8318534b47144cec9c165149a75ea64370a1ccabe1f707956103cff349b","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'d182ce6a1602f40cfed95d6bb45dbd9a3a1ab48319d00fe2e734d50e809742f2'); +INSERT INTO messages VALUES(1415,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f5ceafdf9381279eaabb20aad12435f1fe0b721ab8e789220f1ddc52521755e'); +INSERT INTO messages VALUES(1416,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"1f20e98bea45b652cdcdce91a8e647eb8d683d4f974d052e0fe1eae55ecf43ec","messages_hash":"7b924e1283a8444e4a945410be4b50b6f7b13220a8e505e43ca6d7810a141858","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'14e2162a8f4af633a2b407e4ec5330b6ce871f9458d7b1736a49b94a2859de3b'); +INSERT INTO messages VALUES(1417,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af17ff22b705e0b979d6a76d1134c4f9c3874f0c1baa3fb13fc827a4e9c017b1'); +INSERT INTO messages VALUES(1418,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"cd5d82fd6290fa9ede4d05f6e6fa3d73acaca08f8cf75247a9a04635b3f3387a","messages_hash":"c7872c14dbe1bc8baadc23eaa6513f5f13e92b4163d813f537a67c5ff1ab2f56","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'8c4a1e5b9ead1894d2686cdb133473040c6f4ac37357b614e1b5f4348f3b7783'); +INSERT INTO messages VALUES(1419,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41c9a7eb5fc02ad35d9b090e2e6d95abc8f245218c5e63b1895e1ec736a30305'); +INSERT INTO messages VALUES(1420,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"5f01b4e547ae1e28d4e9bd84608d447949269f20a0fb9fcfb63966a9a34567e6","messages_hash":"679526fe452c665f90d5d28d0ddf6541139c5169468961404d9436252c0cb111","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'c89008ef772052316cbf94d4a3ef95b4250704e60c92d0cf66022ecb2a6252f9'); +INSERT INTO messages VALUES(1421,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f094ea8cf33112758f0325dedf643214c9a44adacc2c704ca86916ee6970ee6'); +INSERT INTO messages VALUES(1422,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"7585ef9b77c458c97116c7ebeb6c5cc3980a3305fc9524902b05179ddca85fe5","messages_hash":"d664fdd24ff6ce0e912a11366d4eeeb5bf82ff259322a2cac4439e0afda087c5","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'3c8eba95ac0b0d03e43dc60c53078e2a57bc52a30ff167714a45b9ff2c277419'); +INSERT INTO messages VALUES(1423,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98119be597debb40e506d3a60ae74fa26b97de4eac1ab051f00b875e79681242'); +INSERT INTO messages VALUES(1424,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"ce6e70206104dfaba538c59ea43ecb0fea0cc8f8f43d7993448354fefc6e11e9","messages_hash":"5c48e908ea9c068fa579aa64fb10248320681dcda7dd6e52e4d4cc34236bbacd","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'83e9cd2737fb4c1a050e7863fa233ee71a788f9341dd37c21622a741d36f3884'); +INSERT INTO messages VALUES(1425,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b3722d0c06d2bedb98e74979870d3139a438a83d8bf973e9eeaea89b2c0847'); +INSERT INTO messages VALUES(1426,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"13c0fe98ed1251f6d2c3d698971687a910c28031e3125d14d6ac66d0e997b049","messages_hash":"024f02371f0f10f2e926bfb4e0eec4550ef6679aed1dfb8237f11236f37b7bff","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'452b9168cf598f63202105783922c9ddad8baca75094b36f33dc9485c4bb255e'); +INSERT INTO messages VALUES(1427,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90bd099732fcb3bae528b7395e7209176ab6d6a9608e7451f15b80f67b3e2645'); +INSERT INTO messages VALUES(1428,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"c1f45c29b8be539a34c198c2277eed443959ab93e12bc09b8c56cb1bdd71ecca","messages_hash":"94a2aed3cd5157e8fadc9138740d37720bb2069ddd2c05c640d0c9bb9b626557","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'e7b165f9db681045b238dee26baeba8969f0e2997232849bb434f0ee68a3b646'); +INSERT INTO messages VALUES(1429,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a29cab9a8d3cff699a875a3295eed858fb8755f5f648f0cb7f6645197d93e19'); +INSERT INTO messages VALUES(1430,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"ffbaa155370f8c509f36e6a90d1fa69dda6a4a49c5fb700b98e0dcbec5b98602","messages_hash":"69bc5f9bcdab0eda2f1e42ea431b0b7591805c2c659cbb2134770aed49e65d6b","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'d5237ba6b392467cae4d09c7330325c32d646de01fe1cee4ec48623a723bdc8e'); +INSERT INTO messages VALUES(1431,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf1fc9a6ee811f2ad8c7a3360129844e755da3232fa72741861ca6c6366057fe'); +INSERT INTO messages VALUES(1432,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"28df597bdadd29569b927c2fcd267114d443d2e00c6f3e174280720917c205bb","messages_hash":"71cdffccd5f496d320881eb9f9bfe001fa7246cc1297f176fc58ec78ddc6ce53","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'05bd6351fcc1040cb1202dc730afcdecbd9d64573fccd5138d365316b0847455'); +INSERT INTO messages VALUES(1433,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e64993149e750ff38ac5503e1abb65d15f6ca88609655993eff35a23848740c'); +INSERT INTO messages VALUES(1434,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"0e14ff0544d352db226ce1e08033791decf38429dd7a04c1688593a8ae82b4f0","messages_hash":"4b2be584916f400c716ba2c5b2b712439b04b25a0c4c606fa5c8631093fc6735","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'f8b2a154939e9debc48053e830e4a3840830caa26dd3d46c666c2a1635e6c01f'); +INSERT INTO messages VALUES(1435,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6bc9219aafe1c1e94f9b5fc39b843277e00d533bd93c1489c47f68388a6c0c5'); +INSERT INTO messages VALUES(1436,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"fcc02e52ce569822cac46b16b925c92c80ecd1694b7af067dcb87d7f45c3653d","messages_hash":"f5785823cf9a5086cea7f49370832159a867f906386a211fd257885f78bf61fc","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'784dd95f37c61d1e0d2dd52ce86fe676c3cc7392dfa64e2df4fdea96a64f8e16'); +INSERT INTO messages VALUES(1437,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cb8af6048b9b8c3c20a2e55e727b4cbf3cf8d4bb29bb25b9c9aa5d743717b8f'); +INSERT INTO messages VALUES(1438,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"cbdcecaae6abc7a4baa4a2de6e8bb5bc47b8d3454e2a3dfe89ae1035de48f3a3","messages_hash":"87dac23f8af9f53902b74ba449ad588315b516173beae3815f7ab475d5bd1c07","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'56537db4ddd9391c2530c4927b45366320bd0321262dc590e91ea8d50d101336'); +INSERT INTO messages VALUES(1439,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4016228526e6f17a448bef4fd245549a066f936a57ce020d08360d82995bff6'); +INSERT INTO messages VALUES(1440,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"2b72a76f9e07c760ef0b04355b25a35f0f41d033bc2334c8556c256fdffe4051","messages_hash":"5f32cab9f6e38ac11c4b0edda776d5a7257ea76c984780d2a3e27483ca4c7da3","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'36f280b864c70a37de309b88f0c1587a4a41537a1ec25a5f1d22e3a87d59a90c'); +INSERT INTO messages VALUES(1441,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8664d1ab01147f885b78e6bc6baf796eaab256ac648d853a1767094a1fa9c70'); +INSERT INTO messages VALUES(1442,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"bb5c9651a1f7327013069007703d9d27c611becb2fba6660cae8a1dc304d1d5c","messages_hash":"f6412347e9dcb49b8bb45f2cae9930b4fd56a520d82262cc2c7bdc9ff1c14067","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'e887a6bf5b3b39ee38db0d548074cf17087f8c24db3255a7c65017f11539ab09'); +INSERT INTO messages VALUES(1443,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f6053ac073539fe060170b51a82c753c0a3ed03a1b56ded139e71fcb682735c'); +INSERT INTO messages VALUES(1444,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"6231eee95e4d73b5a27b07ec5c6d13bfa0e8854044d1aacd921eefbe9e48b0a3","messages_hash":"4ec6988fe13ba0e35b3a9f5f2dddf48852098c5b5cbce8bcd5404ecb04e78bca","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'0bb5b402f658d3f680d9f01e4211b561f20e089cbc0152ef4db23cdb8bd36151'); +INSERT INTO messages VALUES(1445,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95ed26dd4b22ee1dceb69872a023b0a95982e7ff31b92c98d2dc69008a946f80'); +INSERT INTO messages VALUES(1446,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"d73018e8fb5f195d7db4776a55d4de0b92a4a436ea2dade3815d760376faa4a7","messages_hash":"f7b42726cc54e43c9bd6219b7eedf45dce64df9cf39b6d47e18fe9ac55957f74","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'a3dfb133d05d184a93cb30556dc57a388050c098b43ad4af107082683294df45'); +INSERT INTO messages VALUES(1447,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceafe9035f9d3513c0696459760a2d369635624564ac8783d0a5b29ef1bf7d1f'); +INSERT INTO messages VALUES(1448,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"1a8b92da71abd620911af23b9d9617687da9f4c6167ddbc5af9ef6fd994deb9e","messages_hash":"d6a06c109fca4ea3bb68be753254f2afb36ef8812ca808f8e284a42c9634b6a3","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'6e0132c4b04da34b2bea51be1cf86abce835fff6199f4594c62e8548038eb638'); +INSERT INTO messages VALUES(1449,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a4efe401a75e97deb15f25ba9167792a659923b16deb99fef4b5e32d9102ce7'); +INSERT INTO messages VALUES(1450,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"d6a38edb3a3dba9e97711ebc6001e76f7554f144eebbd592fc7fad5b3cb183af","messages_hash":"f7a20018bcb43f84229f02dec5d4e5be146655518ab749ce1b3bcc4e8693e6bd","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'1f8945bfbd2f4114b23ef3b1a5891e95013d87307c73c1fe6399442b2330030b'); +INSERT INTO messages VALUES(1451,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6ef259ad17e699e60f844a63d759aafed0ffdffc2e97359805fcd4e7ba82422'); +INSERT INTO messages VALUES(1452,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"c763cd35dbaf2c85a287d500fc7077c2d3faad163c40c9a5d6295be67460e74c","messages_hash":"a254b93e080b0d034d3029b9e556a14932f89b1ef7962e8418d6f8a1d225df9b","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'d69dc75cc01748cf3fcd995296422ad4e456f43f1bfe2d30b0bc59a370c62167'); +INSERT INTO messages VALUES(1453,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb0bc9d57ba3f765d00ec83cb697fff3a8b91741618e9a21a20bd8ee068d6e20'); +INSERT INTO messages VALUES(1454,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"93923152ff82ff4a5ffac3fd2dc78ad8e39b6a353c82fb9004c32a950cd5ad70","messages_hash":"3fea1a8d2044e283ba385e06fe3e5f1bd77084497845d3fe1835268aa954b43d","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'68a20e75764ad267f68aa91c8cb875c352ced9593cf464db8855ab53126b40e8'); +INSERT INTO messages VALUES(1455,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fedb9d5c7d679f066cebdb04946c4c190cd9058594283a26c172178989825e0'); +INSERT INTO messages VALUES(1456,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"c79ac64f3c933540c042d595154c2fa49b52a2f3beff8f1a1b8d899233fd7eca","messages_hash":"77192376cec16efe7bc960d08a3e8e5269d3fa93f6d2d4979660ae713773434a","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'3650e0734d85f17d1bed872c402f61074d023738e6f53931e245d213d6463b2a'); +INSERT INTO messages VALUES(1457,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fb571e5ae1c1b7e0b5f423144b60f6da2c2342c51fd5de9fdccce16efe6226e'); +INSERT INTO messages VALUES(1458,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"508d4ca4bb45221a6b5dfcdba9c4399a13e85ede4dc0d55f41d0a34d89e9bd22","messages_hash":"86fd54f92c5863dfe2661e1019e335cb4e40a445aba5ebf2c3c9cf97e06d1340","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'133b1147ef54ab6a7452eedae82e96bf29507551755d64ab650d049dc4d0bc6c'); +INSERT INTO messages VALUES(1459,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8b247999dfdc75216de255baacf31c72a6b675dbbe6ebfceaf4c603e5f8b35d'); +INSERT INTO messages VALUES(1460,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"91eb06b8caa32d73b764fcba9995d63fff5ea4e9773b37d498d645fb8c081ad8","messages_hash":"6fb2d02924ce14417fe3be64ee2fa98118424d05479249a0147ea19da3eeb4fb","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'d7942bd140daebcbedd83d4c881e50459a7632a4504b7f37dd984394d48f83e0'); +INSERT INTO messages VALUES(1461,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea30716d4559854b711ee8e2386562db1d7ab4ff89a29323c589453d950873b6'); +INSERT INTO messages VALUES(1462,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"f4bfc8b88de2b62f253dede4f6fa4ef3d0c931ddf688beaa3e7de6e30674622f","messages_hash":"edb229c5de321a385085ac964b0d1ff0d6e6ac56b2d1d1e4efdb9e3e3107cc06","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'7a04596b7203e6e821168e936ccefdfe3879a2effec152e9382a0edeb86ab25d'); +INSERT INTO messages VALUES(1463,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d46beca663b0f3c46b9846e7cec441894e1995db495dcf6933b2a1b13650e5c'); +INSERT INTO messages VALUES(1464,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"34b0e4aecad9b1a4aaca83ab99f47ee37648763618646756f14cf593d99d00f8","messages_hash":"d11a6dba16d70359340bfb5c6785daa668f8a44092de5f5651ea1d595b6646fc","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'92112edc157e9313a63459681826c732e7a7c4a523e972babb88704ab57639bd'); +INSERT INTO messages VALUES(1465,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6ef5cf401589c1f0e840e602b5801f526bc4461329559fe839bd09a5ee63b7b'); +INSERT INTO messages VALUES(1466,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"5cd904e3cd1d9d87ac4e5a9ed4288906690b2945f9f7d70fb264f039987545e9","messages_hash":"f24ebd297778b77fcd1945048e4155426085d60216e0124067b1514f0b592bce","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'34fcb76b5e6996e4be16f805662087327b1eb4288de0adc00b09d2e6e340e8fc'); +INSERT INTO messages VALUES(1467,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fd5761fc345d41f53804b298277c159dbcf36b9cc4760348146202ddc2754df'); +INSERT INTO messages VALUES(1468,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"794fe432083e3ed9db5154ed1230b42437a44d012206a769a036f05d227134c8","messages_hash":"210d93121b06402ab2a9d812e5ab973e9b45d543f643a7f2c9829d14490e264a","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'5c5369ee902c38443f3098971db4b57b5f8ef5ff482697a83f36ae84417228ef'); +INSERT INTO messages VALUES(1469,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bf700f71b7bf9c1480f6e142a898752a114c9a9497fef6d6820e6516d9e8dd0'); +INSERT INTO messages VALUES(1470,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"fdf11aabce275549558778a8c7f4693da40ace20a4409a9d163ce2edd349a713","messages_hash":"8e068b79955287d1636b7d76e13a2e2008d73e815edb80692cdf1b3a3fa8dc95","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'613e3bf58b4c5a390c0ed5fd85b0f638411f8f37c790df21fa772e129b535a76'); +INSERT INTO messages VALUES(1471,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13ce6f8daa8609e95152a3fa843ff80b9436b3fd0fd27388373eb15dc6c350b9'); +INSERT INTO messages VALUES(1472,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"4ec879ccd015d0b5dd8d2ddf8afb025cd8559effdf45d2984cea2f8e23d80dd2","messages_hash":"6f1a1909b94951ad828d993c17824bef7b4a88576e5a71e4d2dd13afbc552d20","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'86da1776f8fd906edcacd6fc06ff9e4c4d32d2b99a70602da554ef85de074691'); +INSERT INTO messages VALUES(1473,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c52e00c7b1ecb4be063f74a4dfde9e8c1f7f4903de6c6b38c6e4f913ad5f8804'); +INSERT INTO messages VALUES(1474,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"2e78c0a28df27f81257091154d3e6992382bb271372ce59b7209a7419cc9d5f4","messages_hash":"b24cd35c242657d210ab6c6e25b412b841f710ee17df1683f749af67ac46ff5b","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'a3cb34d92cc7bc2e04e198f7b241a04b0267bdcd56186f9e8cdcaf1b389cba2f'); +INSERT INTO messages VALUES(1475,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60d1c813d4f8c15ba9ee2d251e9a0d2e29d6db67ad1581ae12fab2fe0d2304e5'); +INSERT INTO messages VALUES(1476,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"7d2ba3c2c0455d45d11b580bb46d3aca197d69d349553f57f930f85e6b217533","messages_hash":"6696a560434aa16e68b869cee8651701c59e787817ff7e69edf1e74bddaad664","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'3d847dc062ee08221b05b3f27f11f176bf33265258751430950342d9e8aaea58'); +INSERT INTO messages VALUES(1477,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b52a4ce2365bfd2fcde7eb496f9d0668e0a6b13b06dd237bc0eae34f96154384'); +INSERT INTO messages VALUES(1478,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"45fe61d07f3565131673018efda70cbce07795e4b969bc400b65a435ce500677","messages_hash":"5a6c091f753a6c08757b6e01004f578c22de0f86ade021b3b2b7d2e201d4d623","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'f7a1fd9f262926445a2cca07e88e88f201ef8c7790e5bd66dd835c971143d207'); +INSERT INTO messages VALUES(1479,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b654555eee4ca750e207911355d48cdc0533f52f5f170be82d0f9454b87e120'); +INSERT INTO messages VALUES(1480,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"cda4977de49bc1abafae2ae4b0ff55eae727e46ca159aab519d1e2318f643ce3","messages_hash":"c9afe6f4874da8dd0059b2f412adb48bf64ac54489b56b2bb2ae3b04fabd3543","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'1f634d51495579d60143cc6ac6dec06da02d9a1443230bc161f088be5c658d2c'); +INSERT INTO messages VALUES(1481,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49f037d4d1fcc5326f5a29eb10aa6b2fe004f512e3585d63077b91ce9f1799b0'); +INSERT INTO messages VALUES(1482,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"931abe28def24b00c8bafbca2e28d15fdd2e28e38d2d2771c64d3c78dd12a52c","messages_hash":"18cd56c3f23e8315c7757462fb49a27ec3e9f3eb69933fed4bdc92b004b29b29","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'9bc708950a7bf3fe07201ce3fb8bbaccb38034f4888a21b98fd4ec0c04f573b6'); +INSERT INTO messages VALUES(1483,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90bd90965cb29d952653d9a407c7c109cbac0d17881f1add968754d965a906da'); +INSERT INTO messages VALUES(1484,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"6f110331a1dbad0d121974ed59614c93809bd8faf1fff8931e7c75c19208d794","messages_hash":"66680cbb67209a95dcf731f1d6243bd323de23df41414bf98e206d99a19da246","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'63f0c91ef601021f331366c8831e004a278d055343beccb4003143c119583720'); +INSERT INTO messages VALUES(1485,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a844d57e913195516ecabdb439ae656dd44837d7c771e522ed150a983ab582e'); +INSERT INTO messages VALUES(1486,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"87b5eb8fd683a52c3811dbd35e1d89bfbd7b5a9f39094115d0d4de712b119787","messages_hash":"5ab71d4c1c0157c630aae7ce080816aae80c526192c18bfd777c7f9ae8b3c6ca","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'c2e96806d2708f04cf503d3a5371ea08ba6147976db219032e9017448248539e'); +INSERT INTO messages VALUES(1487,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ddaf3c788cf32128ffa1dda23c522784f842a5e343e855d39ec1add433c12d6'); +INSERT INTO messages VALUES(1488,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"f57ae22e4221e2aa755d86c98ce87022bdcad81b342c6d865f90ba781bb8e183","messages_hash":"7b00bfea70117b2a1fd80d34b7eb5affb9aa446c7c78882921699a9ab6c64494","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'51c670d814953f663a1e5d49bd9454f79848c5598948925849df7cf76ebd830d'); +INSERT INTO messages VALUES(1489,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'807f596c615fc3fecfd56f1c3261c1e8be8e604b5fd91c217eddd9658d4403df'); +INSERT INTO messages VALUES(1490,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"61fb2f7cfb691f5b459bb69f3b01f87f938cef952d77e05aca35388618a5b1fb","messages_hash":"f1080961c399ee81d01f0d4994a2bc9b7f2bf2a884f2103c99ac9f6a45ffc970","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'2a8f248a18073b7519c452ba39559ea703acda705cc8aa252283d24e14477fec'); +INSERT INTO messages VALUES(1491,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d11ff196da239ad15b07830841cb68ccc1dd00ba57929e36faa607ce9587c8f'); +INSERT INTO messages VALUES(1492,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"af52fc8612e37b23eac85a42a0c1508066ccd927ffa32871bcfb1d59d0311d44","messages_hash":"0240c274863c5c0e6d04c148215a6c49e8b6b92897389d88a77daca6a7017c66","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'bc71df454960cb655a96fcfa46666c047bb8c5c07e7ddbec31266beff5867d73'); +INSERT INTO messages VALUES(1493,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2586ba9ef6a61214e9e91fc1132ff378c803829b8ab00d0581707d10b058a724'); +INSERT INTO messages VALUES(1494,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"9088575009ada38214936dbcca419b2c644273aac1e6a6b6189952f82fc57461","messages_hash":"2e53f65466ec59be2fadb2a001da6bb9e3b0575e99f204732b34d5e84524b74d","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'e445e7ef0aee813006cb77925cd74095435415d30709db710097a75a7c06b6c4'); +INSERT INTO messages VALUES(1495,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83a16e58f0c968c9f94a914e959cbdc71983fb71f5752c11e1efac510203e1ad'); +INSERT INTO messages VALUES(1496,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"2fa81bfb5b7e85a127bb660c07e7a77a5e57aea68b1bcafea4a78dc9cccb2444","messages_hash":"271e4d154428b420d839feb1b9af6fa7d9a19bba35e88990b49bb57a9355ca9d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'22940e0ac0c99e53e5296040dc8d23d7e56c1bdb3d248ae558b3aa12f8833b9d'); +INSERT INTO messages VALUES(1497,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de0881c09aaed016ff33463791b4fa12018d0a6674bca4dc26802453eef6bf4f'); +INSERT INTO messages VALUES(1498,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"b14d57fd49c1359f5ef030984e9738053a71fc08c2fd2f7de57f1af4f2333da1","messages_hash":"77c0e25f4d5ea3ea1f672eece81dc4c76aacf658d60458b2125bd3390e1dd775","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'89c0b204df0633a377dad5842ebd7b4796aed4f705bc7018cde866971a35253b'); +INSERT INTO messages VALUES(1499,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ae3e910b2b26aebb5e27b89b1022ca5c1ed7d74e871deaab7c0ed3050e7cd67'); +INSERT INTO messages VALUES(1500,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"d64d843bd0e217075889567e81a8c5a423ec0157c5bc299255949950a4fc867b","messages_hash":"ec313bc2d5aa411da861230c6427a67cf01f28cfff5120a4eaa8f737f9825c64","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'7fca0897ed945d7b6e25baec854836048b9480b5f4c9d4e3e1b338ce89ece1f2'); +INSERT INTO messages VALUES(1501,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0ea67f1d7800441ab85d6838e0161e5e00de140512370a95481921b806a2bf'); +INSERT INTO messages VALUES(1502,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'fe0ca535da69f73f076e66e582c03c68081f142044416168b838edc446cb93f7'); +INSERT INTO messages VALUES(1503,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'dfe3ec0129fe69d30b85edbbf3f09355b7b7e0f6b83bee2b1c5e760b96a7ab55'); +INSERT INTO messages VALUES(1504,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'e00cac1bad04b66f575afb901d41009b48c9930495d396243e067171660027c0'); +INSERT INTO messages VALUES(1505,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"9d542339dd7f803151e0956197a706624f5e5ba938ac1ba1d365fd632b72c0d4","messages_hash":"3917bf0deb4f8e581203de5bcf24f2ec23d84d7172757621759830042e99a279","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'567c68573e1737bc25ab29ce1e3ac6f9258d6fd222c0ddd4b02343e99916fe84'); +INSERT INTO messages VALUES(1506,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05773e0d6c345a579bd3135788d1a51e37ab8c8ea6831e9b6870bf0a1d345a7b'); +INSERT INTO messages VALUES(1507,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"431a454660cdbcb14f4d2b3401f13b2cdfd85bf6bbd9f6da5a6910b43be20cd0","messages_hash":"74764cd42f4801c7dae33e523e91db2a2087797c295547a4eef0c9743e19a774","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'ec869e0c6752f8251eba3a279f832fe304a8fbe7db59da791bd42645f11c010e'); +INSERT INTO messages VALUES(1508,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'651a59373b624fa22ade154cfa265d7aeeb619f708073f5673fc21bfe4bd0d53'); +INSERT INTO messages VALUES(1509,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"ad2df931a1c3076b4a385d0e4c0b678ca226ad8a483376d45f333e08c375b08d","messages_hash":"215873234ca21873b29cdb3db9fc295de5146f6e844317094faf4d87a541455a","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'61ef9f00083fc7e9270200c54d32665279d3a3767e74ab233d982f93b651a6fb'); +INSERT INTO messages VALUES(1510,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2843c5d805757c27d39597cee0ec5ed536c024b2ae6accaa860ae0d5dca01d3'); +INSERT INTO messages VALUES(1511,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"f404486079e47c058d151bbd246c2bdfd939bde0918b8d542407ee0f2b6d0b0f","messages_hash":"6550b5b918f15552d0081dbc14079ea1d9dcef4986724a76b3822d64b59bd84f","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'668e53a7f2e9b0ffd647c8dd49491cf7554a856117a62e0288945c1014878d3c'); +INSERT INTO messages VALUES(1512,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6e1ae2bd5bf9b4eeeb659e7113e22dc348169358caf76af8664bb31c023dc64'); +INSERT INTO messages VALUES(1513,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"cc47d87f2ee4d9e38d6fe9144815a9457e815cddb62e15432e69d4c6a61d64a8","messages_hash":"77a665e998cf4fde27d412dea745d697b96a67be6c1df619ec8786b2899c8b15","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'4a3fea42ccf0648b060d210739975eb76dfefbb0937e1dd93a20835a061fdbd9'); +INSERT INTO messages VALUES(1514,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d19f045fec1467c2c44e12fd910704f69312dde31eea3b40a5064668cc1fcbc'); +INSERT INTO messages VALUES(1515,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"281d55efd1d17a0ea8e61f6e71b4e5e03589c56950bf22ee05f34ccea47efeac","messages_hash":"b799599306e188b6432f73f51253a6549091281c680175e2c284991c2ee42c93","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'ca74352192cec35a8f4ad913cd02b06fdecb563ae4b2e52501308b00ffefccd7'); +INSERT INTO messages VALUES(1516,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bd7765ff285c7a38fd07faf421a2daf48b3acf86253fb4057fd6f761122efa9'); +INSERT INTO messages VALUES(1517,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"456576f4773f5dbfbe9026e46a631282fe2b3a9721545f8999a572e8e03460c7","messages_hash":"2145ae04a209733fd7066e847ad67ea7ed6cc55eebd07187d8e5034451e233b5","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'740f25f42f8dc3682fed0c01cdd0520dd0744e69623cca98d305d453d5d98e56'); +INSERT INTO messages VALUES(1518,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71a326de93dd98df2a01e92b44221eae419796a99e8f1ebc3cd3be572c18ca99'); +INSERT INTO messages VALUES(1519,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"d8e86913b170d3397d1a43e74480259a4e0bd15166fb775c10784df3e9306fd6","messages_hash":"16887a8e36af78e12b3d9fd749ad2934cb98c4df89d25dcd69be7e92ec05a918","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'0ba7a5743cb55114961c44ee03a46b95db601f1bbcfa06ce4cf37c83f2616bf5'); +INSERT INTO messages VALUES(1520,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14ddd23bc24a80577a5fceca26bf7a0a8903e991742b0bb7298a0a8496175087'); +INSERT INTO messages VALUES(1521,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"6a844171ef147e80140a7536dd6172744173a3a6b57dbe04ea53f8a1830088af","messages_hash":"02a4b58ec409c6c9dc7e3a9d97505458aaf762b1dbd6d5701c96d6762bcbfb15","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'3d5fa16427a0718481b6196f12dc34d14107a2ee2c68bf7f5602e6aa41c54386'); +INSERT INTO messages VALUES(1522,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c88f3e3388d9a9839521e0e16496cf4568cbafbc19c09dea4d6e6cc4b4d46a3a'); +INSERT INTO messages VALUES(1523,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"86cd60817de901fae021ea2e21f197c27f482eb9cf022ada75e56831002df9dd","messages_hash":"4061105783c705bd5a5f3a29a83131e589f6954c0d455342e859888af3f08214","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'247a1391133b371080a7365ffb2340d3ebc35a60d76ba7a8a801e18c12109808'); +INSERT INTO messages VALUES(1524,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'457d74999574085eb86d347b9ecf66b4d80e0f0371c33489d339d74e223775fb'); +INSERT INTO messages VALUES(1525,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"df2f6f05d8c697050096e9e9b17d2c3710da246b9d659f96af6d47cf940442a9","messages_hash":"1a4a5d26e574705fe16bfe26f34bbffe21c38e0842211d78fa5459852eec274a","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'8656d67377c49f7b80e9968d5178a2f1c1c4e44243a6edac4368360e703c07bb'); +INSERT INTO messages VALUES(1526,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47d23c87a9da1bd54639105391e79ba7623682493e31d41e7559b880a02a9b3'); +INSERT INTO messages VALUES(1527,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"690a98a9c3a835f7383124a4a171e58b7a1f17332b5b66d7be095dfb99636e84","messages_hash":"12e0aaa0a96fad4d154f9531170f2e996620f27c76f63eb4ae18c48779859bb9","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'95bde2f131ca22d75d6ad35c782bb433fc52fc6aaad3ac0638e1ef17725299b4'); +INSERT INTO messages VALUES(1528,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eadb74737932a8a2988ce60397750c78c1c75229e13b4b5fade23f0809d4ec8f'); +INSERT INTO messages VALUES(1529,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"9067cce032c8e080df48be0a1489479c346d7968f46250619ca64387dfd87001","messages_hash":"d27caaf2a42242ac5113b6b77c5bdf520d4ffb6d81d78d724b2dfd23f4a29dd8","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'7f51bc0b18408ce1644abfdbd9c6062e2b3a94c6cb2992812ef651c8b3a9ecd8'); +INSERT INTO messages VALUES(1530,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89375eb1dd381faa479cb089279a5749a86a152526dea8948f4632b95da521e2'); +INSERT INTO messages VALUES(1531,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"25d922d16e782dac0326e5b15f266eff4ccfa34a8778d1293e25db4e67feb516","messages_hash":"fc74adb84baac2e99a023df0d4417087c3f806739ddb7df96349fa61606ff5b5","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'faafd5c5ff80babb3abd29a5fe7c6d5289eee5c52f04ac3567386818e80844a5'); +INSERT INTO messages VALUES(1532,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40568bd7af073009bd4e2e407ef2931fd868bf580de87b29bcb4d396acd76c0e'); +INSERT INTO messages VALUES(1533,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"be5e3139d8586e393873fdd17b014929f3916d8a50c959bb75b6aea4db3b6f53","messages_hash":"4b53b10b901a0f65f43ac18f7ffd99389d66220f01177cb43094ea3d25de0451","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'088469c83e4d826a48b4c388460b06ecd778011b37c52d3aad1d8572cf8c402e'); +INSERT INTO messages VALUES(1534,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a63b7e8166d255ae72883bd3a2e82a6d9518acb2ac12be7d6b8a7ebc7bfd767'); +INSERT INTO messages VALUES(1535,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"2353cf09fe846b4166544cf95863258c5f89b432480f71ed08980c08511ce2c7","messages_hash":"cee3b17bd16807ae4f543daa5a7e78da25cde21d5d0ba2de48766542c2c066fd","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'e6f3ef95ff1408593a88b012146ed4a395a92aa7935d63381bb38e033e87202e'); +INSERT INTO messages VALUES(1536,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ee7d5a43bb1dfc7d04516bec6defb22170d47510b473319a3fad47c58c0ce3c'); +INSERT INTO messages VALUES(1537,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a9ba0c79327a97a9598073003ae66fc9a472ebedf31a5d4d3512629c59f6f952","messages_hash":"d787aceb17f32d17854fcf023799effd5d3b9141b4fb00f65b37331c9a8bd141","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'1a84fd9f12e6afb5f76b6cbb126f9726ef7de6eb274a07a84f6c43ec3e7b4b66'); +INSERT INTO messages VALUES(1538,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7669b5a749ebfb398a911c2b8c4e0434a9a5284c37e70ab410c17c5e7459174'); +INSERT INTO messages VALUES(1539,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"24939be5e74e777849d5ee446483c3667bb9762a2e6b04ccc32f46a13c0625d2","messages_hash":"f6348e78af0c7bd894ccca2c71d53665b0aebfdd5da3463158af8d2bb08b2cf0","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'6f3eb846c1fdddff34a59c5f5657f41d9ea04ce66f177653248c301703d59df5'); +INSERT INTO messages VALUES(1540,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5357eec38969213d30375e82a3adbd69af8bcd7c56da8c60278cc5554956e03a'); +INSERT INTO messages VALUES(1541,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"77d7cd9e661d7b06c940254fdccef8ba463ec9e4bf07e1a47288aefb10862b62","messages_hash":"b3b6a9f322d46e0c28a9f600c964a360afc9b31ab1aa5b4152e0c9e4aa23ec91","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'7fd9c2908bff128d407f41449483a6800af99bf9b559cd7710be93f997ddb4cc'); +INSERT INTO messages VALUES(1542,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c93dde5b6e00edf3b15b75f98828470f875943fc4d2416071ebafc41a3e8d3f6'); +INSERT INTO messages VALUES(1543,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"b9b9190c1f33d9ec9d3ef5ab16ab5ae3df37a10aacf44fa36d7d706c6a2dcf92","messages_hash":"f49d0d7e5d8f32d07706b4053517228ccc41c2e8a0a0ac0f63fdcdd8b8f2a968","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'6f1dc20560a212ab189614c098dd532cec5dc8f481194374e881d5e4b23822e9'); +INSERT INTO messages VALUES(1544,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d325ffe15c1a21d4a66e06cd12d4440644b77d6a9303028ed4f376ecb11e9a9a'); +INSERT INTO messages VALUES(1545,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"6106df15c5efce0d238b69286531168e5fd935ec66efe5d99d7024f9a15f2612","messages_hash":"8963294497e6038f0b0dc8713518dddc34262d48663c5465b2994d7aaa9c521b","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'0fd4ddec7a3ddbc361843fc2785f9e05758e1c6a1779fb87bf5e35b3071cc4a4'); +INSERT INTO messages VALUES(1546,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'212f07ad51504cb030fddf64a06e7891d0b2afcb32da7a769e14f7d065c4742c'); +INSERT INTO messages VALUES(1547,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"4cf1aca34358bd858420fddfa75964c6b8400b849d3a0b637baeb902e3d143f8","messages_hash":"1f517b822b687c346e65a6baf2d46ddf9040c51c4f8455db96ae458c21cf28aa","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'536ce56de5f9f97e6b327e4dc04f4cc4e51342b3c7d64c5e1c5116ac9e5c3497'); +INSERT INTO messages VALUES(1548,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f0770dd247fb99dd0b81e96d719d18aab210e239e6da41a3ebc7c349f0948f4'); +INSERT INTO messages VALUES(1549,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"75380e5aec9bb02a0fe134b9ac364bb3217d2faeb8f9ca8d3d045e145a8db004","messages_hash":"6c8b8da8e04c7f32f126fdbd8dbc42ed7a057a4bc4c5bd4a00dcb16606d144e6","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'b3c8acb77dc125f14acfffd7d492941fedffca24c2ae259ae77bc30fc8198506'); +INSERT INTO messages VALUES(1550,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f549bb7f8f86faaae030e92f7c07908f70f50e0212b0ad10f418b88a15ffdf7d'); +INSERT INTO messages VALUES(1551,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"61c6bf541cef555b6e807fefd0c1c4aecf62e35692ece1946effc8d0f0c5e4e7","messages_hash":"db015975835ff9380fbc479552bee7b5d010b91388224f050d5172dea1ffc83d","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'4f8ba432dad35261d5a4c83d5d314c92d3abedce0f51565f70c3c18ff4ae44bd'); +INSERT INTO messages VALUES(1552,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d3173ed1208954548adb0b5a9de5845fcdb2ac699582d125df2d8a35ca3e538'); +INSERT INTO messages VALUES(1553,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"a9c53f23b3766b394aca7fa4e0e2f4d7bc231f58acca5ec294f1100e51a07609","messages_hash":"dce089b96049caa2a627a362caf6792f70bdcea48f310ea71e2d088536818350","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'8dd41dd46219c36ce155b579ab1dd3c5d0bd492dc464beae2fd5b02164348a97'); +INSERT INTO messages VALUES(1554,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dc61efa21cd64df3833ff4403be528d741c95ef0c29f049ff2af37fb8a26b8e'); +INSERT INTO messages VALUES(1555,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"81f9a537145fb937f08947176a73d4655e4bfbc3b0a0c3d16584c9fe31864e93","messages_hash":"addbdd3d5ee13cabe2310162bb4fc5614fe856007a34314af4bb975c28f1496f","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'de5063967fa65a312e11c90d7f6368c807c2b90b461ff947cdfc11a0e7b7cd65'); +INSERT INTO messages VALUES(1556,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f12fd97096467ecc75b48dc9241bf79afcb7fd7c26f45a65ff5cb3481ec51d'); +INSERT INTO messages VALUES(1557,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"f3f90352f7d1b5e8d8301eb351ae038e27e3d8210a9a544d42c67147328532c0","messages_hash":"09dd2b7628975503f55a34fd0caa19e94e5452728e6f985920fdd14c94af9ca7","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'3c53d106dccdfb9f0eedcc832a9dfa1c6406dc428b8d3474e7818bb2f89c840b'); +INSERT INTO messages VALUES(1558,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c2cd9cc81016b2ce0bfdd7a12e3a3b9f576b0db1402c12c38f634b40ee8b67a'); +INSERT INTO messages VALUES(1559,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"88d0ebfa193bccacd5a6198fdb5544f7bcbae34d1c6a0b48415f481facfc2227","messages_hash":"dfaad15d429e7bd317458db76fa63e0520615f5268918d49545b08b278e2e3c5","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'4406d343e3a27f62346ce3bb5d53e25215f0dcac22e8a7a02e126101fd44dc73'); +INSERT INTO messages VALUES(1560,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'205b56427f11d3a5c9bf40deb08bb077eeae9d2cdb6d1c75cc5f2cacaa92c13d'); +INSERT INTO messages VALUES(1561,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"78dc24332463f1a27e7849813451835eaef944276f5bdec1838c30a3dee453b5","messages_hash":"b906b21b11cb03e49af9b351312a6807cb39435675e30475dfa60df0d0224bca","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'4ab79f8b99cb9d9ffe6d3f222552c5410085252c6afba38440051a0ab8c0b611'); +INSERT INTO messages VALUES(1562,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a8ab08743780895743c25ffdfdc065f59302307a2065f299f06ed0fd81a794a'); +INSERT INTO messages VALUES(1563,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"6f8ce24bb75ab6ffdaefdec9123489c2a7efc94a7e1733637fa668ed5f7aa740","messages_hash":"c782719a0e23751e1b696dde07c606533eb94d7c1406f170883f75d2ae414078","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'7fe194082c47bc35fdfc3febe69699bddd07db698dfacd537361c41d94de79b6'); +INSERT INTO messages VALUES(1564,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff0665c562973236c8114a671cd222814be9dd26b8e0c88e8e6fb8bf1c333b53'); +INSERT INTO messages VALUES(1565,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"2e0c8075d1d0248881c14b9c3f69ea7f011b6db18c84711bb07b7f68d0099a36","messages_hash":"045307065bc964157ae784b39e5a0e813918db3848a8c4fc93dff115a61425ed","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'6ccdd1aadb8cd4b7e3b69d7d9a6545ea136d00190f2b9d7c46d6f5c90120a636'); +INSERT INTO messages VALUES(1566,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fe096fd73e34328e2868e66bc11b14bacab8bfa2effc5ec0ec34f34320e0c33'); +INSERT INTO messages VALUES(1567,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"13e04c93557b86a637a5b7edee007fd30ff4f813d9a3b4299d503383daa94d4c","messages_hash":"b41cb4556f2dd8fc9a92f531a8666c751cf2650acfb1499ffa0c8de30548015f","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'a263f26a5d45ae371c10434f9348d5fc3967add86a5ab0ec0f3eebd20ba02ebf'); +INSERT INTO messages VALUES(1568,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2829754ed6692f5ea5b64458026496a93bf6908b80ed67568e4e4681e0c60d3'); +INSERT INTO messages VALUES(1569,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"4a60f0fbbf4d6c5bc0d8ad98cd3f2ec3212d6bb606bd98d1dce345288275c3f6","messages_hash":"caa7fd46dc35c36837f7a4b7d068e43aa2c6df335aa437c3f4cc3c6caa09af2f","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'8b0ec23818d9903f67e10789da0e57d4c892fe6f1973c5f6f6c57a4428e3b9bd'); +INSERT INTO messages VALUES(1570,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'440cfa865fa9e4f173f86769383227c20920f033d4ba6c1cab795f171c71c4e6'); +INSERT INTO messages VALUES(1571,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"785d1a4f88ab690182405388c765098212f522432e69a68ee5b7f471a8164d7e","messages_hash":"b664efe566c4b69b06f8f491308e904f2ed046ea488b467166826a55040874b3","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'d7a1409e412d487fb09172066eb17c5f90786b5faea58e26e0df01a442bcafb6'); +INSERT INTO messages VALUES(1572,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dbce64594694ac732ab65fac2eba727099bc3d3d9469ce21a2d3dd8ed4548ce'); +INSERT INTO messages VALUES(1573,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"ea74bf89453deec1c8d391185c8cdbfed0064a9e9b09948eed408d7b560b1982","messages_hash":"12bf2a6fb2579f8d83cd4ec9d7ed69563b0ac0a46995b4c9a8dc8bc04c5bb887","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'bad2d40224c1ba2e24ce5f366d5500c27dfce5991a8da5ad11cc55b76a611d0e'); +INSERT INTO messages VALUES(1574,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55bca303bc3807e6bd87016de2a12d3bebecdd01582ba086d3a703c4e1b4193d'); +INSERT INTO messages VALUES(1575,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"c969c1ab67b3b338989e35568c4fba6bee0278a6fb1fefd9995fe55d316e6843","messages_hash":"39f903a0642daf5a10df2d143004693602c91ec8ba3a982a8172e85e71ccee30","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'34bc281b7f28a166601c81af8aed346a9dc5294be73e9673134f16b42e08f1eb'); +INSERT INTO messages VALUES(1576,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4d2ed7310f67a7f27566105ba2d722ce93ec3bd5cec90e550268cdc82081bfe'); +INSERT INTO messages VALUES(1577,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"4b3014e7daf07e12ce4f59d0136f75425cf81c46d68c224edee560bdf32c4413","messages_hash":"ef419ae862ddd4bb6538c0cb81c39185abfca556ba858167498513bc1c42f81b","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'c95986fc3b9add402f225c959da9ead9a766d356492d4408b9ca08d9b6f885a9'); +INSERT INTO messages VALUES(1578,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfdef0e1809aab3e56533a58cc86e54872083255773401379caf78d15707be9a'); +INSERT INTO messages VALUES(1579,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"c29903b73d4ce5fae6c20af6dac989ee532d57945f4d286c1552ebbe4829e514","messages_hash":"98001a57a78b1cfc91b4538c3c622eb215d44f7b8ed349ec874f46760251a234","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'e155b82a9b6c9f69bdbf454041b1189d4848b2ef621e5b11778a490a61ce1b2f'); +INSERT INTO messages VALUES(1580,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a76becccb90b06d295bab789a1532fc965fb3253e6a3cdade3a5b65eba361a61'); +INSERT INTO messages VALUES(1581,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"be056a10dfbaac7a217e7f30c5e60f5bac78aea92a16417ca2921d7f3b41e97f","messages_hash":"7e140144911238d1d8b1dc703ebb84974e67eabf965736e0f26af3885a109245","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'875049981ef13e74062f0b159e4daee2bd9425a18c9e7ed935b7c03abf68f5c0'); +INSERT INTO messages VALUES(1582,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2919b2c52803bfb84849d2473ebacd2b6130ed3c61fb1d84a5a52501592ce89b'); +INSERT INTO messages VALUES(1583,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"b410bb813654419d23348e4bfcf5ddf41a673358a6a973fc57e3816347bccc8a","messages_hash":"804fa5a9891318aec6c515d26047d62997195480b8ee44bc0a86b807099062e3","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'06429049ccc4d6d5c22f8b764c35ffa7348e548b9cce53d2e7117bf787ad9316'); +INSERT INTO messages VALUES(1584,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'967ae4170c87765977d3c039d00c332109a4bc02aa1ab4d889f4970faee3d5b9'); +INSERT INTO messages VALUES(1585,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"5ad3e05ff5f93a90818ff1d4ffb39b8476e2e8c6ca60e88c27f92319d41d8725","messages_hash":"33813dbe8b795d039ca4625f0b200c6202c5ad0fb3848842185ca616813cbe7f","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'1595444d46d5cc707b5ad2cc51160971f61317657cb5281549e09380fa881560'); +INSERT INTO messages VALUES(1586,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'622c09215a9049ef767620dd5f6b2e519fc32b49facf6bfe3852a53b52fbd61e'); +INSERT INTO messages VALUES(1587,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"9c5a977c46b99326a92caa9d112b871dcb7160e2c73abfd4a8ed015330a2d032","messages_hash":"1dcede5740d6e21b72ead44fcad640460fea3432fd36bafe313f3fb4b22ecb63","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'7c0dac3b98faebbbf454f0ea5db32a3f989be693a4e4191aad4bb3b531e29e83'); +INSERT INTO messages VALUES(1588,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bbf5d3aa79f6ebac3c6e23ebd8e02421a469a976e35c4740310d0567c7e89c'); +INSERT INTO messages VALUES(1589,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"d8fc4c7024781f7f0e4925c28c2eba5c12917e3c69375b286148993c7bc3bbcd","messages_hash":"5b4519e34fcc185589f2cca0a176b7b058423ef4f2c9d7de130561b5a712bac0","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'19594d39d7ab5bc406c8a13cb64be045b73b4d4021707274e1586c13bd1c026a'); +INSERT INTO messages VALUES(1590,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68e1b60aae3d0caf9543a6808ee40ccda6c70860615d46415603b675398b141d'); +INSERT INTO messages VALUES(1591,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"c12ab1abd6ade6e559de7801c009ee5862e04e5a84b4b28f012b167a4d70c68b","messages_hash":"715509548f6641c632ac3cdbbedb92652262ec001dbd23807b8909b994116990","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'8e597bb2e37dd6357ae9628608c3d8b9c373c9e35e84abb6210d4173ecd0fe45'); +INSERT INTO messages VALUES(1592,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c0f780076832959d803e64c4f6e3aadc054be9fc809f7cf3b38a680fc70c4ad'); +INSERT INTO messages VALUES(1593,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"03170891d13e894608eb5d74f6134253b910605d4f763807e538bf1817cdb232","messages_hash":"8da02af404a3f9df6789f40bdac9a5b685e305621fcd55fe4ac81ca5c2e24109","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'495396b0e5761c891624d408cb2655e6f31ad5b6eff0bff4ccdcd027a8e45acd'); +INSERT INTO messages VALUES(1594,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0957f8f89abf89459f541d07622671476bb280f2421602a2177b317f609e1172'); +INSERT INTO messages VALUES(1595,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"77f4e7710ac39bb4686c59eea34ceb696079acb46a8620544e427e2e814949b8","messages_hash":"b96a33a699a40b2d3fcdfb2afeaace5b2c07b31ea30a7aac1aa8fadceff8799e","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'89512ebecc14313113cb406deda977bab5fce2de57c9c470860baec0df987798'); +INSERT INTO messages VALUES(1596,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827f6d85a4746d3aed5db65115760ed5dbf20123f75299306987eb52439615a2'); +INSERT INTO messages VALUES(1597,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"a31473dfec4fb8d1659024b3b627715c68e7635396dd90c184f66debdff35ed9","messages_hash":"98381d91331e0c6a0a22041b9809a23a19d548ff437030ce8d5886ce089ec813","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'8bfbea2eda443ca6b23c6b95a406d2a13c2c7cab0a13c8fbb0c172b636d36af4'); +INSERT INTO messages VALUES(1598,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0ef624c639540e0304cef7263aabe76a8e895e515c9eb20dda05dcff321b039'); +INSERT INTO messages VALUES(1599,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"7f80269260ab4371585202d03b9c56bde5ab731e731a4f5c58f453f3057f637e","messages_hash":"cb8392e6b0757701ae33cf721c256b67e832f3602477331ad6f53c6d31e52443","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'ff1f146522763c87dfa16953a5b6e0c5b91f5ef9ad4178607344b11aaff3e737'); +INSERT INTO messages VALUES(1600,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92e0c998d1bb870cfbcfcc55432ff5f8e943872d6e28a9f45224c86433572048'); +INSERT INTO messages VALUES(1601,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"b6bc49e7852f6017b024ca0bdac9257e0f63109216cf00cfaf7110ca1891f5f6","messages_hash":"9df15b1a6db5cda5ca7cecd419e75adb97d62d33cd6bd787a51c7bc2b7d64a2d","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'52200bbfd063e3b49cf05cc6300a4b61392bb6f0657fe81df77b6d7088b820b0'); +INSERT INTO messages VALUES(1602,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ae8ec28099086810812837d2146ba659ecb9a6fc00df21eeb74f3323ed0ae8'); +INSERT INTO messages VALUES(1603,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"fb9be635d233ed088a81f6312d9650a8659b5c0d52a815b0f0585293092a14fb","messages_hash":"3f545a43c629e0a59c99136dccfbb4c04b545935abd71fa9b4c99b63fcd2d825","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'7956392181cbfdecd26588a7cf491626075c8782c34687dd255eb0c78ba3b913'); +INSERT INTO messages VALUES(1604,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0d16261630a06d9713edad3180f2d5267e8ab274a0a7456697c12460732590f'); +INSERT INTO messages VALUES(1605,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"3ac47fe08bcd6b16eed00fe5ed2facd3eaecf50f36d33688f197c5c301eee30c","messages_hash":"9b3f4c70c7ad4cfc3b25873071b89f7b671815ce46e20cf1de283c917361f1fe","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'e81f2d101e5b36facb1f34713840eef8fabb5782c44a750041fe998c6d896bd8'); +INSERT INTO messages VALUES(1606,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d13fa2fd04484d839a723dd3a1efdd22b163ecedf0e091a442c7ffb5d16c8960'); +INSERT INTO messages VALUES(1607,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"b9dc4ba1d33b9e158c6b82f825748d28403f4c8c01f1362e859b7f2f696f586c","messages_hash":"561a4780b4f9ce506e5f28bb1183d20a3238b97c88369aea2bbb3b48db8f1068","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'77c602f25c58d284ba889520ea253e52d70c567e306783297fc515edad3c62f9'); +INSERT INTO messages VALUES(1608,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a78ac1c2e44138727df0516e1db887ee009f3c8bad90faddf60cc05a42a7973'); +INSERT INTO messages VALUES(1609,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"be8b3bcb08364da2ab39827a0d02173c8a6a46da9480b2736d992e90008b8d9c","messages_hash":"eb7711c83c4077da0326240e4dcc737e0cceaa382be924f30e1599acd902c123","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'5f69c4dbe16ef7b33b9b68acd7572701fa776e93d98292d8cb53a96854c70293'); +INSERT INTO messages VALUES(1610,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'095c36f064dfccd6df89f2c714783b6248ef6aedc57007834bd9155a83f9bfd6'); +INSERT INTO messages VALUES(1611,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"8e3e879044b5ad0ee409dd84ca9c07ea523484a3074822396bafbf449580c2d8","messages_hash":"d0eb6325e6daaacadad4286d7b6ad3bc7fd5c5cebaba2b3269c68448b2447b63","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'8a30ff9f94ae8c827c8011268ba12eb949bb392d835ca9f29a5b0df87ba9e02b'); +INSERT INTO messages VALUES(1612,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cefd77fda541a5a4e68e8137518acc8e7036f60f9e5995cb973ec5ff6665db97'); +INSERT INTO messages VALUES(1613,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"04e2dd3cbd7fa5aa973db5a1caa536ae26b385b236f71b4aaf59f230cf0b9d44","messages_hash":"b72158646ca70e7d58d877da861f61e4913da014e9670d4067323effd75905ed","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'c903f1e422fdd79aa439717471d1d9e776b01f4a08f6b2722147517712ef9f09'); +INSERT INTO messages VALUES(1614,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f076bb96afcd98180c60c64081af2c23642cec4d66c55907b24d372da4bc0b55'); +INSERT INTO messages VALUES(1615,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"b7e53c4f80c0e70a0804a9e1ab3649929e914ed111c0998010e78f97adb8b740","messages_hash":"b3ccce9d8cf5efa252e859aa8f600290666a443c0d8969a4dfd9ad8775124f36","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'f0ef35552e48fab223e7852a47500d5a866378e43c44d5d7f208742bf9cac301'); +INSERT INTO messages VALUES(1616,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d88c3c40ca8a7a5f76b5374b69579afb93fb3926117c26b8e25308bf4ceea280'); +INSERT INTO messages VALUES(1617,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"f1a26ebe4528f04820f98944a5f54cf0211f3a450358e1a4574903bcb104536c","messages_hash":"8f1b5f06966712ae1f433a4aa22e56b5e83f1c22d0b8c3ad22125f76235fcd32","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'38f5ffb024f8fca348c4bc333a90d006d1037eb579f1932b73bd91b69be37dd8'); +INSERT INTO messages VALUES(1618,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b590ef543f7502adc0d31290d86db32a13607c3c681d1d7d42e0c0654f9791c'); +INSERT INTO messages VALUES(1619,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"8ee7cd3754ba2f85467916a695eb2823a89c17bd36707b2f74d5fe489ec39d35","messages_hash":"389374c7c645ea784e72715749d51e793770d0af6754ce79bc221747be3f441c","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'8c0e71b2362bb9a8d385fb948d1e395517cfa9787cf9fecd30da99d3fc15f309'); +INSERT INTO messages VALUES(1620,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45b48aca9a240e9c84f9fdf2e1ec5cec9404fac17f748d838859b317bac88d67'); +INSERT INTO messages VALUES(1621,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"a93684aea4d0b8177a008a7530f1c5a76aa3a6e0cd5f426fd04562eeed18edfb","messages_hash":"9097efc88a94df5ba7b671a10f5bf11d9af538e705265dfb55eae51cfb416f10","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'60b6e39d73a90beeb5101f4b1459816889c535fc1c08199287ca3e5ec8b3b3ce'); +INSERT INTO messages VALUES(1622,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23862a652c997e57f77ace72a6764bb65b6aa075e264bdd12d6de9ac0dfabf37'); +INSERT INTO messages VALUES(1623,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"f78e363f21bd326d12513b86ca5bf45412f33a70b140447da87787be0a39c898","messages_hash":"53feede3e02574d4f4f5729ad8fd69317d2f292c61d9e036f1dea72344a31a81","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'c2323a88a3873c779d8a976027e92db788a06b457996779c02705599230c7468'); +INSERT INTO messages VALUES(1624,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4977c4a34625e021eb1d6ad8f309feac0e820374d18d560bd3dad283d69c034a'); +INSERT INTO messages VALUES(1625,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"94d14b919e8df7f7a2503baa1ccce1ee54a3f2629288f7e2a54ff23055622eca","messages_hash":"fa57dacea2480c1df77352e2ccdbace19b0370f6c0d8a5d6eb5315103ff4001b","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'00cc4c54c0ee9949c93f2fd7c4062f1ade66ae90d0d122675d69f0668e0ac32f'); +INSERT INTO messages VALUES(1626,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb9c95aa5c62457145c9f709d2784857544b57145bdbba05494b298dc4fb1ce1'); +INSERT INTO messages VALUES(1627,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"c95bed50e39dc26ec619b22ffcbd6d169f12c46cb58249f5609c200c49584575","messages_hash":"b08652535254d2e85e77a54c647eba2c1d9b452a7c768908297c014ca3e80d47","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'6a4985ef3658dcae8a144e8e353e829648487504c81b9938f1d58d7126617646'); +INSERT INTO messages VALUES(1628,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'064d616c717d6d1a8c9a493465038a85ccb6cb18ed9a48102d79fa41b7986f93'); +INSERT INTO messages VALUES(1629,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"60a763c963d90886938a2bc1a9e16a8a5fdaae245ca16bedab36852134ccbd1c","messages_hash":"6db17ecb0f8a8726ba8cfdf12e175befb63ffa0800069e9e7728c173dde8ea38","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'883b90734a6fba4ab28fca5d6acbd0c203b8084fa1aac4700e953e678b21a412'); +INSERT INTO messages VALUES(1630,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4ac18d2a3af245c7bfe631b7f7fd38860936a8f5413b79b5761bb59492f655c'); +INSERT INTO messages VALUES(1631,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"75150fbe2fec5eced262f6f6f049ea1056e2e7fe783d8c16d1147d19135c385d","messages_hash":"a8084987a147b5898473419bc8eb23214794bd8203f749dbf7bf5137b18ca634","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'fe7e11cd387e8df8cc56d333bda5097ddc91684493bbbd77ec86fe987d4010ff'); +INSERT INTO messages VALUES(1632,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fc4101e30cbf972191739119d6ae23c8c3cb028d298b69eff7389a367bd3088'); +INSERT INTO messages VALUES(1633,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"bfa94e7f142250e47a9fcc8378b50d857fe8bb5730a456f2030322df7eb343da","messages_hash":"e2fb6392d52dfdddba1dcea25a8e48e223fba00d9753784d23166eb658b29d7b","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'8d129e8718ef85ef4ead603419e339f1fe747eedc122b9e5dbce810e4b725fa4'); +INSERT INTO messages VALUES(1634,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38e945d3cafa5cfc01686006595bfee0aceb59d864a9097084ac33570ba57353'); +INSERT INTO messages VALUES(1635,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"10fae07894dc8ca060b7a424ed07e1d6b82feba8ac401fcaa441b36114ff3a3d","messages_hash":"5e72c19ee4de0c6126706e9aee6cd789d6e9656e033d49a25e905e2a716a3448","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'341dd373ef56c1c6433977bb6f719c7e37c2726256ae4b5c61679d89759b21d0'); +INSERT INTO messages VALUES(1636,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b391c531ccd409d5fb92e678584e4a189e2c119e731f4dc9cc435a6e345cda'); +INSERT INTO messages VALUES(1637,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"0fbf0b9dae7a4e5ebce6ae53e143ea82acf9063bac539eea2164661066465055","messages_hash":"1daf00fabead340b654409dcde8dc4f1be575689b53ff2e42b875f630d693edb","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'36fe8dfca1ad6df3a9812af740a8feced69f372e744e29bb17d1a02a0369a41a'); +INSERT INTO messages VALUES(1638,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27f1717dcc34548d4188f06737a5bdf83540868deafb291d45aaa3894ff1f9bb'); +INSERT INTO messages VALUES(1639,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"d0cfe76a174a3e51cb71c8fcd7e24a5fd82a5b5ec90ea2323805cf203eb8bc09","messages_hash":"5f7326953b5e053be96fb6810d483b11160456bc5e33a9705bd35295335fb677","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'46229994c5e2178dd58565175f38c1f5403a045a562936368da2320952f921e7'); +INSERT INTO messages VALUES(1640,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37037fb6749f72da5788649bbce101d919b3ebe1195bb1df0166c7df2baa2f5d'); +INSERT INTO messages VALUES(1641,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"370d05d099f60864284c17b0ec4ce4cad792a564ca17730b788182cc1657d299","messages_hash":"e82f77b1c2afaa2530de704413a2b8f01fc6e087c8c5dfe29e57e46d04fdc5f0","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'2cd99eaa42c5ce7e774713dda82c0705ef0117bea2c95cda3ed6aa1845cf9546'); +INSERT INTO messages VALUES(1642,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e28c6b2134acd117953854cc711669577414b262f878506e74b5a05fe191b72'); +INSERT INTO messages VALUES(1643,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"b5ea3b5825c6ca6f1da1700405ac18f400aeb2381c5b61703a80627411884f30","messages_hash":"42055e3bc4335246175ee54060a2869f05a2428b4ae5f49ff00408c3dbdd91ef","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'c206768f1b2408bc319630f375151c4b491bc8542357d29face39b0ffed925e2'); +INSERT INTO messages VALUES(1644,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82bbbc5bef17bf27b6aed890a1333ab4e7c030df0415ba81ec3f420114cac8aa'); +INSERT INTO messages VALUES(1645,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"b21e5eadb3c00cc0413da1c9b272fbbcae96a271598852148968f900c4fd4f51","messages_hash":"9cb15ebdbf9a835e6006ee61c2cd4f6ac6f1be5c69a0c3c376c98a7c53095f70","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'7908d779bfd2521e34310c2031d2979ff4a54b632dff1cf5fc1ac1d3b10d70dc'); +INSERT INTO messages VALUES(1646,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'770bedf437e42cac4daf3060595fa8d62df523744abbb9822bfcb027173860e6'); +INSERT INTO messages VALUES(1647,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"4d65eaebd925803121e3381c9b6b5f358fa14f036707c310614f92df3071183a","messages_hash":"9eb5c3cbe3e4e8b6f3d29bd139318408eb8691b4954eb4ce406ccfc4165c67c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'161c2a10a765d5bb85e2ef99bd12f760b51ebc6e790e7e8de5d945fa740958b8'); +INSERT INTO messages VALUES(1648,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3b7b7a351dc83da45ad4613c3cc747d5350ad62fd65ffe0a9cf17ecdadee21'); +INSERT INTO messages VALUES(1649,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"8c0fec6c31820e12e92a9be814a0864530ffc01caaa72cd15536d70d0f8225db","messages_hash":"6c1d217e0f17672670d1b45f608f1e08eb155736348647738db16a459ddb6d77","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'cd2577914a57894c356ee4845e8f4c500c2e1e041b1aefcc4b879eb7cc789982'); +INSERT INTO messages VALUES(1650,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba38f68884fad04a0e97b483eb4678379f869c75de0f33a8c138e68cbc5cb8ca'); +INSERT INTO messages VALUES(1651,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"bfc63682a5acbae95d8c8c8af56cdc80f7ac4252be8117df4457fdce678f9d94","messages_hash":"b70fda191eb7001801346517f7ba1a68619e0ffa4158a7bf0fcf938dbd680b53","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'8612da08dd18931787c2bc7f259fdcee89f9aeee7ad2259f687c44ac546bd072'); +INSERT INTO messages VALUES(1652,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1f41a902affbc514975118c91b8bfd66e45b976bdd4179eb52b448982267bf4'); +INSERT INTO messages VALUES(1653,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"d995b825b3095462095aa07f204ee8bd02bee7f0021757e0b9acba0aa89a37e7","messages_hash":"627059029e19496999943d7af5691568eaa4cfd4f22338c3ddede3f4500cd210","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'5b35147a56517b286130bfa5ac69982b82376986cefbb5d2f6559840628c7958'); +INSERT INTO messages VALUES(1654,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d369ae06acfd1055f78387c8dddbc8700503f348e6266f5ab6a408304de5536d'); +INSERT INTO messages VALUES(1655,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"40a21d7a31b702854f3830189ac21f31659f4ffc4665532113a3864caf6ac548","messages_hash":"fd658b7d5933180c3de12b5b60f869883f1a6a024c811c15d2e22820d92e1c26","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'2a963be61ce0746d245f2a995b875a464378c69efb1582343c2f70d0716344e8'); +INSERT INTO messages VALUES(1656,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15dcdf04f1b450036d47a446ec84298e2c0507eb90f3ba587e07a547f9c72e9a'); +INSERT INTO messages VALUES(1657,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"75641c467acddfebc824a0313b0cb20fe75ae44babc63c684559b72365c80ce9","messages_hash":"5de3159ec5887c890d1b130372cc1246b0e6741578f2cafa537aa31f647f1e3c","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'211ed0281a7271fa7232618801fed6ce5a53f4f9f21ac092e3c5cb8877ca9d05'); +INSERT INTO messages VALUES(1658,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'426e12a4805a7f97c1163ea09a38154d8d3517a069c7b1e3e93f1553bac09f89'); +INSERT INTO messages VALUES(1659,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"19125e78aedfeeab7cec8532795eaca3219d631cad43b474451faea61a262d02","messages_hash":"0316003aaf3a993d1284e8d6b1503ceae638c5c726dd5acd3d56e78d02d9ac59","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'f36a59e93ea19b5100dda70242f2b378da01b1269aaff2a11ce04888e1e9c842'); +INSERT INTO messages VALUES(1660,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30ccd854d3ea55df87af3d0074d79a6a247e04040ac889538eb798232f7ed837'); +INSERT INTO messages VALUES(1661,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"b4086ebbbb1ad338c2d41a4f515acdd6991b9128936b170a6c7cfd1c199200cf","messages_hash":"cad3961ab4e4fcff002a4c5fa70d08420c1bd12ffd006676dd5110262423c0e1","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'84bfdaa91f2f249ca6db3261ebe0e2e4699a318bcdb626594382eee5e7df9150'); +INSERT INTO messages VALUES(1662,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39c5e392af70e08204606ab781bcd7f7e0237f265fe32c33fe0723f193e28493'); +INSERT INTO messages VALUES(1663,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"002ea3e07d91ba9fd59edccd6ce543ac0c80f3eade4fd9ac6ffe5c470b32ca35","messages_hash":"c3730a5a4a5661ad447bac2663bac29b8b879e0f881ebd02f2af051ca1f5b749","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'3e55b12178bb5c31d5fb59c8e31641ff935ed38e4b401c0dbedd742b8519a31d'); +INSERT INTO messages VALUES(1664,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dca1091088c62f97a4389ef808298cf010d382b7ce5cda3f78c0688c0f535ec'); +INSERT INTO messages VALUES(1665,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"8a7951661175cabfc9c5ec98c84398c69a18b0cc90dc2eadbb4a47217f204d17","messages_hash":"ee6ed8fa6b995be14d299b4724d00d4b4c95027bf7b699c736fd7432ad81afb7","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'97af12e09f3610959f19735fbaa9e4d07d5c2d16eed3332f0252afdec545dd5d'); +INSERT INTO messages VALUES(1666,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd5a7c2764451345d535345ca7abd660979428dd370e34d83f1a01da316829de'); +INSERT INTO messages VALUES(1667,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"dfda3ea8a3f6b347fa5aaa711facf53d66f4b59b34fe8310d52511b06c5aa90a","messages_hash":"048090da7c741f830fac5580197c15dfd9069e5b8f6aa250d4bb3d92d13eec29","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'8690807e8e6e6321ae82e0e45ec4f6ed11b61937d30a422d5f35a45cfcd19ca2'); +INSERT INTO messages VALUES(1668,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fae394cb56fb780e8c58f9e49db983856fe3b6507e8b9bed1f08ff42bb11666a'); +INSERT INTO messages VALUES(1669,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"1ab7c81c38eb3bc2f757e232d9235ba8f3b3c775249a31f81b64ea5b744bc446","messages_hash":"10cf5fb665d0b30d5848f4ac110c65749c611e74a4d65c73ea93614b59fa9f87","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'0c268393b51b006ea39d6079e285356db5773041864267205401601e8ab3f887'); +INSERT INTO messages VALUES(1670,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5994c91639a7b54dc2f55c843e9ad8643e81208b99b2a441712e39e66c1f32fd'); +INSERT INTO messages VALUES(1671,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"df56206da793ee3d5a62d8b8204f19b58bd571defa817c5a755942d23984406d","messages_hash":"07cb16ff67be391fc5442cb46749ad503db59f2a8e656be5801cad9a637a4435","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'104fa9146779a4b58f05cfe338a0f4669f1715a71092dffb0bbe5a799958a864'); +INSERT INTO messages VALUES(1672,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c74ec1d09e4cbc67d5a674e7d3745049e5bcfbd17ce32297bbf84b8375100d89'); +INSERT INTO messages VALUES(1673,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"1300e495aa348e8955ebc0d1060fcb0fea24197d400304aed07ebbb37f3fff0d","messages_hash":"7b09e6ed38eae5b767c30ed38ea9ad5bd63cc2b1f9c02d12e0a1f27ff7dcd347","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'5bac90cfbc34139292205c7b657f8ef46042abe81951c3c545ebc5ba551cd816'); +INSERT INTO messages VALUES(1674,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e60f6bff5deb234722d41f7e2db8102b8261bcc7b8d277794a17a425925605'); +INSERT INTO messages VALUES(1675,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"80afea7b225a6056f9e93264a4b60bff6150aa41fb06dbdd127834fe7c41e5fa","messages_hash":"ec916fd31b7fd812e5d8aedae7bb9da7f404374f64c46f9674d4edc697aaf3ff","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'089326f519699174e2c2cfbcff707a9b204ddd83f7586af7524b99d4f1d2b8d6'); +INSERT INTO messages VALUES(1676,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a891d6cf6d8767bbe8a19065ac2b972407503f262408b1be57b946802e9efbf'); +INSERT INTO messages VALUES(1677,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"7a904b662a12891224a26684d2374306a17d12948494cfc2833979083484a9f8","messages_hash":"69a3fc27bf61f998d9cd94cb8194122bba07ea28ddd22c58ecf4ffc6a9bcff1d","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'a2720895d4b0aaae5350bd1d937157668156d841e8ffc7ef0ef513c1ceeefa97'); +INSERT INTO messages VALUES(1678,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b6acb17fc1053b4b894c597b857e06355064441fb16814ca1dcdc565c846cc1'); +INSERT INTO messages VALUES(1679,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"73f475db79e082ad33f59135260a81af04c66b1afa05d5faff982edc5c833e62","messages_hash":"0ba7059cacf287f1535ee1f9c89540d4e70030ae066daa1b1ffda116a7fc1472","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'3bca3179cd3a27756289e6cb9dbfbc9fd0fcfb95075fc0982fd33e0d760cc323'); +INSERT INTO messages VALUES(1680,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b264c36c3a3a5f8804897a92ea017e3e21255582fb38b523f30ef8f6b32c72d9'); +INSERT INTO messages VALUES(1681,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"fe609333c29d872aeb9a2b7a30b02cfc5ad47f581f360e385926e62ed5e35c7a","messages_hash":"6da370f16f81f88a16e6c5b8479b6f7918ca06b796193eb4029bd1b07c70ac17","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'73fa2ab2150bce62a405105724539570fb9909c952a6965848d9d7d36d8d9edf'); +INSERT INTO messages VALUES(1682,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a729a2b2d3b48c0f82f77684427e1f26986a05531d23f9a5a2cd583cc8c36abd'); +INSERT INTO messages VALUES(1683,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"37c0e6f0723cf44303736e01242f5e98acac4d49c3804957a060710b2304a7b8","messages_hash":"fc30285d912a0653481bb75ed90c7533885781615af0a385d5e90afd4abe05ce","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'3c38b93246d4adbf2cc2d264bb59306f827e6ff91435270bb2b2e4a2b7434f0e'); +INSERT INTO messages VALUES(1684,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5934e33283a14537dc0cf6fda7d28504923eb314c53550fe110ecc177fc6bb33'); +INSERT INTO messages VALUES(1685,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"e3121b1b293875664571808b4157d6a25753a9009ac3fd6ae115a641d535f141","messages_hash":"007bf07fac63f08f5fa4b284ee8604f63226f03cd117b1f1c54a6b7f79cd4f16","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'e89f794e57318d8aab4c2c799e6f8798ef731594f8b5a5576f760d310b4e6c8e'); +INSERT INTO messages VALUES(1686,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'841465a6e67a8b816850dd2944076f091b93b05c1f16881745f86c294546acc1'); +INSERT INTO messages VALUES(1687,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"31e3ed8ed6830e198c02873357b1b86a5f7d034710d6d67121246b354ce01c0f","messages_hash":"4f535b3b29ab5d7f508b90aeaf8e0306b306995fb1f42b4f20c209abbb52a29f","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'3add7b1caa38b1187951d46f996457768c298ae8d8037392ccd63f0c59dd1884'); +INSERT INTO messages VALUES(1688,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ee07627c11bb06d8face06c884f00c77f66369865cf441044f94d940a130c2a'); +INSERT INTO messages VALUES(1689,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"babdd735e0b8176a2fd4b30c00f207e072beee68acb33f382d7be7ca49ddf01b","messages_hash":"78a8533f1b71600d395568cf68bd0fc235df43b0b32d9bf950a77c1d9bbf7858","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'1d5c4b3b8bc76ca53d656eb8a890ab199ba02755c90200355ade4475e1961bfb'); +INSERT INTO messages VALUES(1690,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a67ec5411e8a5a97d45e3c3cf49aa1f52e8374e756b34928d406ab6c94577a6'); +INSERT INTO messages VALUES(1691,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"691591b6f8fb8011eb76f503445c146f91f9a767895af28fbb6b8f371128c331","messages_hash":"bd57d6e8c212f29dcfc8e4785222ecb0b0c3beeb7416a0421291e2850d1a553a","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'8e5c8d16b2f328d6ebdac31736e99790893f3d64bee0b0b774fd2c327d18ea45'); +INSERT INTO messages VALUES(1692,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9beded1f17177e9b52c795de133d599cbae93edd371545c4786b79aec683f2b'); +INSERT INTO messages VALUES(1693,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"b5a75f28f1675c1d65e5c2eda601b00be193046f8d5455280ce7ce67f590d461","messages_hash":"d1fd09c87b81c1701f2dfce552a05596b4890e443fd9455861aa20bbaa2dad89","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'721c5ce4d3dbc255a1054cd9c0d1211b9e7d4484874595fd5364059e12b23769'); +INSERT INTO messages VALUES(1694,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fcabe93168fd7ed7d2e5dfb20f22a026b3757ec8c2c0c9ce89f08798982ee99'); +INSERT INTO messages VALUES(1695,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"96b5e331cbeba83e0959fa7387125e9bda307b2b4d77519efe8fddd8a468a2d0","messages_hash":"135d6b4dab60c1e4ade976a98ad2932f74ed30607e6b72e00f58f7c272fc5823","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'a8ebabb53e1fdef95694c39af494b540a3572ddb73192012f0d57cc52cdcaa12'); +INSERT INTO messages VALUES(1696,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c5bf43c15d4449760a923ce2c637e8281bc8fa4a4d24aed9d8be8a2849089a'); +INSERT INTO messages VALUES(1697,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"6d95a405af7dcdfb540e163761b56a827cebde6f067ab7a409b362aa17f86d4d","messages_hash":"ef464e083b2343511f1168fe17ee6050befcc06d5b505b0544d09285938761bc","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'daf3a7d0aa334b904c9a5b26e2d1e79bffd036f430c7ea263b5981cbd93d186d'); +INSERT INTO messages VALUES(1698,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cd07e9100421e0cf2ebffcf234790494ad2a9e20969c84ba5128b341232edd2'); +INSERT INTO messages VALUES(1699,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"399273d936cfd79a23f2ca90a707f66910d34764c05d8bfb868cbb31334d8db1","messages_hash":"d73c2fae7bbf17a3a0fc9c199d9686a780a3634231cddfe3754e0d4123a612a5","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'e2ffe2dcb3f84e0127bc084ebfc1c167db1035a8880d22e1a021c8b527c7e3a4'); +INSERT INTO messages VALUES(1700,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7937bf80c188460138e8e269c0b54e7a5f27261723d59c7649d44fcfcf805cc2'); +INSERT INTO messages VALUES(1701,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"9b574b61cf3db517bf6c64d6c9f70006de362f2d4de76734f5ae936482b63374","messages_hash":"06b7afb139b3e77c96079bf0e786344122cd8b2f02aeed40f2a0b59252a7edbc","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'7045665e57df918f76f998d12b4e23cc5ce94f43da13393b2f2809b36e5bc551'); +INSERT INTO messages VALUES(1702,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29c9a9590c060feac27c4a3b027d25763b9771f79c1ab6336315173dc4888f43'); +INSERT INTO messages VALUES(1703,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"22f1766a7dbeac8e8cdbc00bef46542b40fbb6984ddcd926eb06d76ba0839e04","messages_hash":"7b8ce38ac6220a606c4c864af17542b8119eb33a0128d76f78c7d4a2cb04838c","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'23e8e90b1e22ee341f51030cfcb96689357981cabceb5c0353db13d72a9cad0a'); +INSERT INTO messages VALUES(1704,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ab589e2ed8c8d2aacb6310e3eb23b117ab2c381ffba87feb1518aca6e7e224'); +INSERT INTO messages VALUES(1705,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"baa4ac53fa5848e8cf27695658da8401e616ada94975d73f9f1bbbacec77e18b","messages_hash":"4799ca6602af5423d8420529299e3124b673fa1b3dbccb8ff6f7d1cf1e2326e8","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'abcb2f89a2f1f194a0068b1f178333be1283308a15284273617e17a346d3463c'); +INSERT INTO messages VALUES(1706,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31fe81da1f2b07fbf991fdf7a0108f84e7ca3cadc52329ccc3bcddd3e78a8a09'); +INSERT INTO messages VALUES(1707,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"e4791b468628263032d6604e89142b4611d37af0da10f5cea13d77549304f40f","messages_hash":"f848f8af51c820f2043a9c7106b195861198a9436ccd7498a914fb27c801c399","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'6f344f713c84a1c75bee4a543f4376d066f3ce5ad550ab2f4c7b1c45888475ed'); +INSERT INTO messages VALUES(1708,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a63f9783a546373dca97c4ea6e86c9cb35e7714426d77ad105177da83e071b1'); +INSERT INTO messages VALUES(1709,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"41054373d4269eacc2ca673d8db0daaee399b27fe59286d8a097d542e3f14279","messages_hash":"c7199fb078bdf61ca0291402a4ddf584d725ab8dfe290278992d1fcee3209c97","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'fd0c06fe7690257cbf514d8236e7e67bd349a2ca26e9779156d7d10ba0b530d4'); +INSERT INTO messages VALUES(1710,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbc7e3b339302c2b6a55796d4fac4fa9393cb20ef99b28a1d9f0178a8aa1187a'); +INSERT INTO messages VALUES(1711,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"0e8477a68905ba7a91a17f4067c061d340844a7f9554d01ebd932219e19dc5df","messages_hash":"d070f453b86791a5470c00c0f66a1f688cbca9146b09ee7b316f1239e101bb75","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'5a32d9a1280641939c6d9cd0ded1bad0e1cc466745e49cbd2be50ac39e82bc88'); +INSERT INTO messages VALUES(1712,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b926b038aeda5512a0d03aeacf34aadd2bb39cf0e7af28a100de708a1abc834b'); +INSERT INTO messages VALUES(1713,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"abd4a4de8d76df306fe91202471f04327dfff7330bdf86637732a895f3806b76","messages_hash":"9671d888ae163b77c30eb288684b2760d15e555bd8d6c6aeafc8815c3521b1df","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'9f0e1d1a97cb50706c42d8dc1a77eeb6f8ccd89cebedc6a14bd6d17e39af032c'); +INSERT INTO messages VALUES(1714,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09fe91951c57bd5ed578c30f328f3b0f72899afceef92fbc90a1c54b5a76b081'); +INSERT INTO messages VALUES(1715,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"98e8ce36ac3c00bafdd83f5acfdcb6a86865609e322e4c8404bafb7f4efeda21","messages_hash":"01dac6be9cb9a262bf06738280d85b3ac04fe25949ff17936bb1e458badf0ad2","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'7f255b0ce696d550dde06eb7e7562df560662ff3b132bf67d3c3141b7b3f87b1'); +INSERT INTO messages VALUES(1716,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'638ded26c203b5125dc55d78137720930f5cd648ca3e22d7bf0f1e4c1e0abb18'); +INSERT INTO messages VALUES(1717,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"5b2559a37945f4174c2f651c9315ca9b9c274b40baf87a0e0890615459f7f437","messages_hash":"263bcb74757322f36cc19e8d722bfcf1c0c045ff6ae40b1ee071f9de4f6a1218","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'ff34508a2c0328bf701b4979361078660028396921d1fe06e4b0af21e508b8e9'); +INSERT INTO messages VALUES(1718,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70aaa0fda8019df8863d1c3b8717140fcf17218a64cd79f6c345af0459b6e633'); +INSERT INTO messages VALUES(1719,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"819360045a5f9ee7b2696a8b1cd2579371b25a43076e1f4731d948dcb7b14202","messages_hash":"05967636ad202a361deee96e758fd75be0c2a1b07817c215db206c187125f34b","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'67f99d0a261681b35bba62390a2eb7150dcc0abab49fdcbea340d1c456f4ab39'); +INSERT INTO messages VALUES(1720,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba3e0968379182d7e79e1080b379b75226ac2a750ad831d50664cc5ee4c1ddb0'); +INSERT INTO messages VALUES(1721,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"d0a47afe3a6d2d2bf01e56643798c4a653d827046991571026345f44b34bac6f","messages_hash":"f5227bdae94c5ae394110e0690a013955d1e76379ba151b0fa209da444d9781c","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'93cfc5b2d9135fb70bc6ed898468307920ba532b338a2bb578c32dfb9381f156'); +INSERT INTO messages VALUES(1722,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62d7875fbd231065479c1159115046ff195df62ec77f4a3214d4d13a9d8e404d'); +INSERT INTO messages VALUES(1723,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"995f4b278c55bf41f128a3dcc39a0389d4856e4aafab042c915eaaae536e40e2","messages_hash":"08c75385b4290db3fc39fb503a2a0f3ab7631db44d7ad0eb3d2db9ade975b6a9","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'43556bfb92381222d795ba7d498349ce5d7cc564fdd15c3427f6c25b84edc050'); +INSERT INTO messages VALUES(1724,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63e90a55adc21ca7c0feb67b0516397d108c0122357bb54236829f55cfc3ac4e'); +INSERT INTO messages VALUES(1725,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"f4f83f7b347792bb4c1336c694a08b2642717ebca900d9a0489bce1a2d994418","messages_hash":"3a31ecc1c0af51adc95b88dd15ef06b7cd49f90977c3f8bc0931163c77be9218","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'1ec0a62b2ff961216336927e25e28049d3a097968e8ae58cb3cf91926c75134b'); +INSERT INTO messages VALUES(1726,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb02f834200c16ec690a66e5665d2d80fe74c4f34f197cdb00a58ea99fa8e663'); +INSERT INTO messages VALUES(1727,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"5d0fa0f5c261642712f86c72055a7f19afe078a6c34e5538d77d85bb1b799a94","messages_hash":"c14011ca0548cc6aa347ebe1fb5249b938a40f7552924230ac9bd0456b173d84","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'0c4fb6242c68e9d7f6bef15d85a6db1f725211b36f6d37ab11155e2c59c4dda5'); +INSERT INTO messages VALUES(1728,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b339beaf1bd7ebd5e5c13befbc731ba422bf20964c3fb0ccb88c6c858a0caab6'); +INSERT INTO messages VALUES(1729,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"439c74d2a465996838179517ff57b2cc558d66848b857580be65319363846033","messages_hash":"3060f01ecd3a6fccc1bd7b34efaee852a4b7d232a8d861626968e4690c5c4e6d","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'67d620e443c65355179b0ad31bbbefa09e4d6bfbb360c39c95452ec11ec6946e'); +INSERT INTO messages VALUES(1730,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e446f21935d80b2085a844faacd0e3629a024446fbf4ce6c7670a664abd5f2d'); +INSERT INTO messages VALUES(1731,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"8bc0f9cfc1b75cdfd6e59f1d41c6b67b790a25a98b6240f7ff5df617f256cb00","messages_hash":"5397b96551c0a64ab068399907d75384be4291c1cf18cc3abe34cd1ae3c8482d","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'3bcca258c9104cd44555732479471464735bd888a9f32d16d018593389e83d0a'); +INSERT INTO messages VALUES(1732,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3d981e47f17998e631fb51acee6092f313e3349cf1e8971d6e31b95ff761bdb'); +INSERT INTO messages VALUES(1733,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"572bb86d600d33ec82edac9b1077ec7700d526cb25a69bc2bf2e10953f403e01","messages_hash":"6ea4ac41326e29e0232ae9d494849ea2b825116e5ff8b76cffe56ea9dfa09997","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'43d10c02c47918f3dfcfe05fdefcafdfa987b560857d430fa007b418aefd9892'); +INSERT INTO messages VALUES(1734,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cca0f78c94caf297109fda8a37a0a562ce7f8ccaa200d7c0b4cf890d3f5bb5'); +INSERT INTO messages VALUES(1735,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a","messages_hash":"5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'ed17a78d1950320b3daa1988427288bd90e23d9b4b46b87378fdd10376a5aaa3'); +INSERT INTO messages VALUES(1736,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6699d57760a0b217d2285e839d80d40767143d002896040249311dfb4b0d45d4'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3740,8 +3730,8 @@ INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383 INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0); INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0); INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0); -INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','XCP',100,'valid',0,NULL,10); -INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,10); +INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','XCP',100,'valid',0,NULL,0); +INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends BEFORE UPDATE ON sends BEGIN @@ -3950,8 +3940,6 @@ CREATE TABLE destructions( tag TEXT, status TEXT ); -INSERT INTO destructions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -INSERT INTO destructions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions BEFORE UPDATE ON destructions BEGIN @@ -4322,7 +4310,7 @@ CREATE TABLE transaction_count( transaction_id INTEGER, count INTEGER); INSERT INTO transaction_count VALUES(310507,101,1); -INSERT INTO transaction_count VALUES(310508,101,2); +INSERT INTO transaction_count VALUES(310508,101,1); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count BEFORE UPDATE ON transaction_count BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index 41a3d19a25..d2442a914e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -526,203 +526,203 @@ INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825 INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618',NULL,NULL,0); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'2da66508b6fcc29c1dbcfaa1d547e2e7fcd32632cdf98f995d161075ab06c3a2','cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2','542b45c877e2d74120d67e6bab78b783515661bb13ba9bfd72512d07deddc0d2',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'783827f1e82edaf42d45619e7b18e20d544f5d8475f3815a61f1f7de9190aa75','8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d','81929f0d58e45cf9dd08d4f4b6ec6a133bccff47940383c44adda8a047d94290',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'6d4cd7106c8334cf9ba41c687ca3bf911cea24d66d750e7155ac016ce2315e90','ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce','757fb88511765ac409322f00f6090a339b6f0087618057aa8756d850d511b0bd',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'d8e13aeca99805e15eb437805f303dde5ab0cb44a0499d7d776f31ee476281bb','ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300','47785c8e33288cec85899bc3b1c039f35f79df372f5dfe9f327640d1200031fb',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'284e7317e2f651316fc66a70bdf993a6eb03030cde24b2829c8dc1fb3083cb65','9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8','5a1169dd2825de1dcf0f9bcdf9983a3951bc21fdc2f032c638131317a4d6cd76',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'6700fd71b01d55ffb9abff46f33404f8afdaa244c34d79d1a5597f0a2c925988','c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa','4f61732e6c4e60802436a1ac7920c368b7e2a96fd8e7f658d26cb22acccaf63d',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'f3ca04116717e4ff65dd65a9ddc1fcba48c77f3576cc7c293a1fefa62d628fbf','0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7','50fa01c8c581bddeda73dfb82950d3fd6e00dab4cb26bc309607906b2a85050d',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'0a526a36041076d11076786adcb2768eeb214b4aaf61a2370f0f44f1e7fcc15a','c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d','4b832eebd8655179ccc68b48ff05a7e341fbc93d0f88f04423e21a6df1328504',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'e0997c5e3f5e58120aa263056f9db2671b5ffaaee0eaab92785a3978fa90ba5e','afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb','4cd488735f3051bec72af179515a2a1dc19842f1bf0b46290e203e8ae0afdbd2',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'3beeb284fed1fe729ba2b994a41e8d7a4da00afbce5cc95fd84b985faa54fd47','0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10','80cd0467b0d6c1b42efe35523f9de28e11d2adb38c40ccb935275f41f6b3ffca',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'185ec7bd7c0cf4d0a380f0926a1e1dfe0e2d4c9fa572bc4d3a05fc0b2698e584','086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b','96859ba232437a3c37a8331de1a779fc77eccfdd173372cce8778bbc7e30d88c',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'094da03cdfcd515f0d40be96ea486e97133b0eaeed8e4fb459dc0dc9b3778508','d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067','21ac12260d40a0931b36ca0b212b5762132e373c3f89091287894248799426e5',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'e1b1593e442ca354f28f9e22510475d6064e973705bc8a17873af3726650a26b','eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da','774048e2980123c239ce09d67d7fe5d50df6237e257ee7e4fee96fbc7de03296',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'5c975744cf660ca6b01b7bd60efdc3cb42242f7eecc76a450f2a2e4b41d89b06','5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592','f88c606f8c001c912fe58f170c8df49989dcf5baaee42a2b835ada70f29abfa1',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'b5422d0d0f304eb2cc6c8c4c8c6770b627c6a8865778a802f4039aeafd808329','e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e','c27d6ac0cbf2755ede3ceb8a3b278c34c66e337500472552371fec3aaead38ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'964ccaaf5d261642ca22d826323c7229854e706b5854851521fc54ae29bafafc','1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3','ad9c3cc561c0c7627764d9bb03321400e688dd4990366a3547a72d8d6eac2ef6',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'28d40f6211e8881b294e4b934f38c5273b5719b016735950babaeceb6d0e3b8f','725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a','44df28540641a120fe2702b63a22e57f3f67a3d4bedd6e0e52a5aa6a7148dccd',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'5b6332f599e3dcd85cf2870da51446ceaf39471a995abcc9331790e435bf3b8a','125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06','4aa60fb5e6797bb907f5c9bcfca19303ac2abf6b46baeaaa542fa233769e4b04',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'41a093d957164251e64603595e5eacbef44ebb1f836606c3034b01ab852bf3ec','83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8','ddcd10a4a204232c04d62063374e2be4d7deb2a36809a6a8c360fda5bdd184d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'93940adc92c042ca2678fb879fe731f82cb6ab2359a5876d4e38c8326a2b95a7','0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c','3aadc79a191bb2ea2969254095ae5cc27424756c50beb924fa0bf858f8dba575',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'85c39fccdc3c9229858110f0ee92869349fc8d2c7d07c2cd98778831aca8ac26','1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a','bfa3707bfc5027103e7fbb6c0bca30dc3889102b6ea70402114ea864b06b6336',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'a07248b82f0a37126fc9e5978ec482c9b4e4e657652b7428870fc302abd50b59','93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575','c289915af496f6d7f21c7d72d3f062a130b9a0e9e6b96ab6b50fbaeb03eff252',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'d5e23e5eee8e31887b0f92f84e309115e1bd4fdeb4630982b9fd0822bafb8d08','077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853','4bf82547d08049e18a9e66400b62eb0decfc7132a66c2ebd5e36411e1fce68fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'45b1d42d6184fc6ff41a0c6744198e9ada178a97205dd457c18068d6916f44b0','e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86','7566d946acb598b3335f18e317e041b05aa07705c796db39f29ec924c003d814',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'9a581ce76795e586d5f691857551aa85593ff647a5a904daedade3406fb188bc','441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2','eae7370fde489df4ef8c9e16da991c1a2fa60b4cd3c92cd37608a0e6807d5745',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'eabac8937919ff8e56b84ee156fe44bd2d3709b2b6b32d7b06a324d26743d88d','72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806','48deb40d3714e0efb7f28dfbc9bb8cc9229ebaa602e54c40f6cc6930a1786d84',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'d0c7697fde7509deca83f1811b2ed8e7d08b1a4b44eff65d17631ef81b1e8f5f','ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45','55f8621a6005016df54522ea56b3c95a916000b144a0bedc502ec3a386b0220b',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'bd0ef7113457907b081d21fee7c3c937e93d1381e33341e87beec52618a92d9d','f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7','1632445bceab41182eeacb4ad6326dc1534abe20ae1ee97f7eb7a824618b4b9e',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'ecbe27e682c5f7d728a5f8658175c85c78d1a8c5ca859feec9b49e078b82117d','22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119','5802a8d9a466cf44d31125813c3a23a4a79cf367bf23c02dbc5f950da273132f',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'4a257c3e8a9210069816ebe982e40d7c4e08a791a81dc6acbde99a04201db04e','2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6','fe58961eda1ef42c57b2467b543c185c010dd183935f3689f04f3a5414dbf21b',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'790fafd9544969763c9f6e3c0c83944d2953be8a981a260c63e223a83464d04f','0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559','447daf32944871005cc2b7394dc99764ffdf90260154e356dd51cae795cac368',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'f55360b861c665536eae661cef294934020cb8a06ac4808a7181794901355803','4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b','cd50ef38b2a3b2a2b098cd73e98689e6188f6bb76fc23078a3ec36ffbc7284be',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'b2539364321f94dd2b9d1aca0dacd1148d8e0213b966d8feca03222d3bce16fd','332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7','4fcc618697344dd2eabf342a4077ebab493be32dac8ca10ed8811b60f54d97ae',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'9922f3174986b70fcc9823a55ad4b84ad31a1c6aa4149e273c8e6c4eec6e5683','5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91','12f49f9dcc05ced302302960da83b0ccd5a00f1d3d3796f845e05d507f8bf1ac',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'45e6a6a29ac4d1a7ec55a6d857be0f15a7913a8a7abe49a33c4001ccd43f58c5','8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c','b27378abdc89008ae5d9100e7f9cd5ef4e48ce664d8a8bd7d1c20bbe02f9221b',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'3d699a1ec41c18dfdc59e74e793107a25d4237443d7e401919aac171dd5d0fad','40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9','1eb4148bf7ffbeb7bf665a358f5777b73924900b810ec9b029b7d55b601b68b6',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'eb2b3a6022accd97e8e50fefa6653996002c19959f9057f5f8ed4f3182130f73','f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3','63e03ac65fc2b4c8d586fec055106c3f1ca1b20bb6391b83b55948912ef32dce',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'f6f5e8c13f86e75d8f6816b79313a1f36a6f8b2cf31695ecd540f71e4d9d5aef','5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577','984bf8318534b47144cec9c165149a75ea64370a1ccabe1f707956103cff349b',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'1f20e98bea45b652cdcdce91a8e647eb8d683d4f974d052e0fe1eae55ecf43ec','e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15','7b924e1283a8444e4a945410be4b50b6f7b13220a8e505e43ca6d7810a141858',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'cd5d82fd6290fa9ede4d05f6e6fa3d73acaca08f8cf75247a9a04635b3f3387a','94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3','c7872c14dbe1bc8baadc23eaa6513f5f13e92b4163d813f537a67c5ff1ab2f56',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'5f01b4e547ae1e28d4e9bd84608d447949269f20a0fb9fcfb63966a9a34567e6','1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c','679526fe452c665f90d5d28d0ddf6541139c5169468961404d9436252c0cb111',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'7585ef9b77c458c97116c7ebeb6c5cc3980a3305fc9524902b05179ddca85fe5','228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2','d664fdd24ff6ce0e912a11366d4eeeb5bf82ff259322a2cac4439e0afda087c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'ce6e70206104dfaba538c59ea43ecb0fea0cc8f8f43d7993448354fefc6e11e9','241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e','5c48e908ea9c068fa579aa64fb10248320681dcda7dd6e52e4d4cc34236bbacd',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'13c0fe98ed1251f6d2c3d698971687a910c28031e3125d14d6ac66d0e997b049','349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25','024f02371f0f10f2e926bfb4e0eec4550ef6679aed1dfb8237f11236f37b7bff',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'c1f45c29b8be539a34c198c2277eed443959ab93e12bc09b8c56cb1bdd71ecca','e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01','94a2aed3cd5157e8fadc9138740d37720bb2069ddd2c05c640d0c9bb9b626557',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'ffbaa155370f8c509f36e6a90d1fa69dda6a4a49c5fb700b98e0dcbec5b98602','439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d','69bc5f9bcdab0eda2f1e42ea431b0b7591805c2c659cbb2134770aed49e65d6b',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'28df597bdadd29569b927c2fcd267114d443d2e00c6f3e174280720917c205bb','5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286','71cdffccd5f496d320881eb9f9bfe001fa7246cc1297f176fc58ec78ddc6ce53',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'0e14ff0544d352db226ce1e08033791decf38429dd7a04c1688593a8ae82b4f0','2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30','4b2be584916f400c716ba2c5b2b712439b04b25a0c4c606fa5c8631093fc6735',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'fcc02e52ce569822cac46b16b925c92c80ecd1694b7af067dcb87d7f45c3653d','513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2','f5785823cf9a5086cea7f49370832159a867f906386a211fd257885f78bf61fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'cbdcecaae6abc7a4baa4a2de6e8bb5bc47b8d3454e2a3dfe89ae1035de48f3a3','3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac','87dac23f8af9f53902b74ba449ad588315b516173beae3815f7ab475d5bd1c07',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'2b72a76f9e07c760ef0b04355b25a35f0f41d033bc2334c8556c256fdffe4051','d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd','5f32cab9f6e38ac11c4b0edda776d5a7257ea76c984780d2a3e27483ca4c7da3',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'bb5c9651a1f7327013069007703d9d27c611becb2fba6660cae8a1dc304d1d5c','f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a','f6412347e9dcb49b8bb45f2cae9930b4fd56a520d82262cc2c7bdc9ff1c14067',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'6231eee95e4d73b5a27b07ec5c6d13bfa0e8854044d1aacd921eefbe9e48b0a3','08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b','4ec6988fe13ba0e35b3a9f5f2dddf48852098c5b5cbce8bcd5404ecb04e78bca',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'d73018e8fb5f195d7db4776a55d4de0b92a4a436ea2dade3815d760376faa4a7','4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42','f7b42726cc54e43c9bd6219b7eedf45dce64df9cf39b6d47e18fe9ac55957f74',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'1a8b92da71abd620911af23b9d9617687da9f4c6167ddbc5af9ef6fd994deb9e','bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2','d6a06c109fca4ea3bb68be753254f2afb36ef8812ca808f8e284a42c9634b6a3',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'d6a38edb3a3dba9e97711ebc6001e76f7554f144eebbd592fc7fad5b3cb183af','c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a','f7a20018bcb43f84229f02dec5d4e5be146655518ab749ce1b3bcc4e8693e6bd',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'c763cd35dbaf2c85a287d500fc7077c2d3faad163c40c9a5d6295be67460e74c','2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b','a254b93e080b0d034d3029b9e556a14932f89b1ef7962e8418d6f8a1d225df9b',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'93923152ff82ff4a5ffac3fd2dc78ad8e39b6a353c82fb9004c32a950cd5ad70','79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71','3fea1a8d2044e283ba385e06fe3e5f1bd77084497845d3fe1835268aa954b43d',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'c79ac64f3c933540c042d595154c2fa49b52a2f3beff8f1a1b8d899233fd7eca','6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c','77192376cec16efe7bc960d08a3e8e5269d3fa93f6d2d4979660ae713773434a',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'508d4ca4bb45221a6b5dfcdba9c4399a13e85ede4dc0d55f41d0a34d89e9bd22','29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88','86fd54f92c5863dfe2661e1019e335cb4e40a445aba5ebf2c3c9cf97e06d1340',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'91eb06b8caa32d73b764fcba9995d63fff5ea4e9773b37d498d645fb8c081ad8','c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c','6fb2d02924ce14417fe3be64ee2fa98118424d05479249a0147ea19da3eeb4fb',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'f4bfc8b88de2b62f253dede4f6fa4ef3d0c931ddf688beaa3e7de6e30674622f','f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee','edb229c5de321a385085ac964b0d1ff0d6e6ac56b2d1d1e4efdb9e3e3107cc06',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'34b0e4aecad9b1a4aaca83ab99f47ee37648763618646756f14cf593d99d00f8','477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6','d11a6dba16d70359340bfb5c6785daa668f8a44092de5f5651ea1d595b6646fc',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'5cd904e3cd1d9d87ac4e5a9ed4288906690b2945f9f7d70fb264f039987545e9','1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a','f24ebd297778b77fcd1945048e4155426085d60216e0124067b1514f0b592bce',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'794fe432083e3ed9db5154ed1230b42437a44d012206a769a036f05d227134c8','911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09','210d93121b06402ab2a9d812e5ab973e9b45d543f643a7f2c9829d14490e264a',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'fdf11aabce275549558778a8c7f4693da40ace20a4409a9d163ce2edd349a713','8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829','8e068b79955287d1636b7d76e13a2e2008d73e815edb80692cdf1b3a3fa8dc95',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'4ec879ccd015d0b5dd8d2ddf8afb025cd8559effdf45d2984cea2f8e23d80dd2','089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544','6f1a1909b94951ad828d993c17824bef7b4a88576e5a71e4d2dd13afbc552d20',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'2e78c0a28df27f81257091154d3e6992382bb271372ce59b7209a7419cc9d5f4','e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851','b24cd35c242657d210ab6c6e25b412b841f710ee17df1683f749af67ac46ff5b',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'7d2ba3c2c0455d45d11b580bb46d3aca197d69d349553f57f930f85e6b217533','82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e','6696a560434aa16e68b869cee8651701c59e787817ff7e69edf1e74bddaad664',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'45fe61d07f3565131673018efda70cbce07795e4b969bc400b65a435ce500677','5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7','5a6c091f753a6c08757b6e01004f578c22de0f86ade021b3b2b7d2e201d4d623',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'cda4977de49bc1abafae2ae4b0ff55eae727e46ca159aab519d1e2318f643ce3','3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514','c9afe6f4874da8dd0059b2f412adb48bf64ac54489b56b2bb2ae3b04fabd3543',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'931abe28def24b00c8bafbca2e28d15fdd2e28e38d2d2771c64d3c78dd12a52c','0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c','18cd56c3f23e8315c7757462fb49a27ec3e9f3eb69933fed4bdc92b004b29b29',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'6f110331a1dbad0d121974ed59614c93809bd8faf1fff8931e7c75c19208d794','3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4','66680cbb67209a95dcf731f1d6243bd323de23df41414bf98e206d99a19da246',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'87b5eb8fd683a52c3811dbd35e1d89bfbd7b5a9f39094115d0d4de712b119787','0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562','5ab71d4c1c0157c630aae7ce080816aae80c526192c18bfd777c7f9ae8b3c6ca',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'f57ae22e4221e2aa755d86c98ce87022bdcad81b342c6d865f90ba781bb8e183','c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e','7b00bfea70117b2a1fd80d34b7eb5affb9aa446c7c78882921699a9ab6c64494',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'61fb2f7cfb691f5b459bb69f3b01f87f938cef952d77e05aca35388618a5b1fb','bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1','f1080961c399ee81d01f0d4994a2bc9b7f2bf2a884f2103c99ac9f6a45ffc970',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'af52fc8612e37b23eac85a42a0c1508066ccd927ffa32871bcfb1d59d0311d44','c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5','0240c274863c5c0e6d04c148215a6c49e8b6b92897389d88a77daca6a7017c66',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'9088575009ada38214936dbcca419b2c644273aac1e6a6b6189952f82fc57461','fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4','2e53f65466ec59be2fadb2a001da6bb9e3b0575e99f204732b34d5e84524b74d',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'2fa81bfb5b7e85a127bb660c07e7a77a5e57aea68b1bcafea4a78dc9cccb2444','c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af','271e4d154428b420d839feb1b9af6fa7d9a19bba35e88990b49bb57a9355ca9d',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'b14d57fd49c1359f5ef030984e9738053a71fc08c2fd2f7de57f1af4f2333da1','0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920','77c0e25f4d5ea3ea1f672eece81dc4c76aacf658d60458b2125bd3390e1dd775',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'d64d843bd0e217075889567e81a8c5a423ec0157c5bc299255949950a4fc867b','2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1','ec313bc2d5aa411da861230c6427a67cf01f28cfff5120a4eaa8f737f9825c64',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'9d542339dd7f803151e0956197a706624f5e5ba938ac1ba1d365fd632b72c0d4','4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b','3917bf0deb4f8e581203de5bcf24f2ec23d84d7172757621759830042e99a279',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'431a454660cdbcb14f4d2b3401f13b2cdfd85bf6bbd9f6da5a6910b43be20cd0','003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1','74764cd42f4801c7dae33e523e91db2a2087797c295547a4eef0c9743e19a774',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'ad2df931a1c3076b4a385d0e4c0b678ca226ad8a483376d45f333e08c375b08d','b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc','215873234ca21873b29cdb3db9fc295de5146f6e844317094faf4d87a541455a',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'f404486079e47c058d151bbd246c2bdfd939bde0918b8d542407ee0f2b6d0b0f','6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650','6550b5b918f15552d0081dbc14079ea1d9dcef4986724a76b3822d64b59bd84f',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'cc47d87f2ee4d9e38d6fe9144815a9457e815cddb62e15432e69d4c6a61d64a8','c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da','77a665e998cf4fde27d412dea745d697b96a67be6c1df619ec8786b2899c8b15',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'281d55efd1d17a0ea8e61f6e71b4e5e03589c56950bf22ee05f34ccea47efeac','134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6','b799599306e188b6432f73f51253a6549091281c680175e2c284991c2ee42c93',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'456576f4773f5dbfbe9026e46a631282fe2b3a9721545f8999a572e8e03460c7','952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6','2145ae04a209733fd7066e847ad67ea7ed6cc55eebd07187d8e5034451e233b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'d8e86913b170d3397d1a43e74480259a4e0bd15166fb775c10784df3e9306fd6','7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805','16887a8e36af78e12b3d9fd749ad2934cb98c4df89d25dcd69be7e92ec05a918',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'6a844171ef147e80140a7536dd6172744173a3a6b57dbe04ea53f8a1830088af','8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406','02a4b58ec409c6c9dc7e3a9d97505458aaf762b1dbd6d5701c96d6762bcbfb15',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'86cd60817de901fae021ea2e21f197c27f482eb9cf022ada75e56831002df9dd','64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50','4061105783c705bd5a5f3a29a83131e589f6954c0d455342e859888af3f08214',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'df2f6f05d8c697050096e9e9b17d2c3710da246b9d659f96af6d47cf940442a9','4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a','1a4a5d26e574705fe16bfe26f34bbffe21c38e0842211d78fa5459852eec274a',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'690a98a9c3a835f7383124a4a171e58b7a1f17332b5b66d7be095dfb99636e84','99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429','12e0aaa0a96fad4d154f9531170f2e996620f27c76f63eb4ae18c48779859bb9',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'9067cce032c8e080df48be0a1489479c346d7968f46250619ca64387dfd87001','7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796','d27caaf2a42242ac5113b6b77c5bdf520d4ffb6d81d78d724b2dfd23f4a29dd8',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'25d922d16e782dac0326e5b15f266eff4ccfa34a8778d1293e25db4e67feb516','7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82','fc74adb84baac2e99a023df0d4417087c3f806739ddb7df96349fa61606ff5b5',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'be5e3139d8586e393873fdd17b014929f3916d8a50c959bb75b6aea4db3b6f53','6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c','4b53b10b901a0f65f43ac18f7ffd99389d66220f01177cb43094ea3d25de0451',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'2353cf09fe846b4166544cf95863258c5f89b432480f71ed08980c08511ce2c7','2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714','cee3b17bd16807ae4f543daa5a7e78da25cde21d5d0ba2de48766542c2c066fd',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'a9ba0c79327a97a9598073003ae66fc9a472ebedf31a5d4d3512629c59f6f952','d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc','d787aceb17f32d17854fcf023799effd5d3b9141b4fb00f65b37331c9a8bd141',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'24939be5e74e777849d5ee446483c3667bb9762a2e6b04ccc32f46a13c0625d2','72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464','f6348e78af0c7bd894ccca2c71d53665b0aebfdd5da3463158af8d2bb08b2cf0',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'77d7cd9e661d7b06c940254fdccef8ba463ec9e4bf07e1a47288aefb10862b62','c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b','b3b6a9f322d46e0c28a9f600c964a360afc9b31ab1aa5b4152e0c9e4aa23ec91',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'b9b9190c1f33d9ec9d3ef5ab16ab5ae3df37a10aacf44fa36d7d706c6a2dcf92','d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab','f49d0d7e5d8f32d07706b4053517228ccc41c2e8a0a0ac0f63fdcdd8b8f2a968',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'6106df15c5efce0d238b69286531168e5fd935ec66efe5d99d7024f9a15f2612','325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621','8963294497e6038f0b0dc8713518dddc34262d48663c5465b2994d7aaa9c521b',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'4cf1aca34358bd858420fddfa75964c6b8400b849d3a0b637baeb902e3d143f8','53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2','1f517b822b687c346e65a6baf2d46ddf9040c51c4f8455db96ae458c21cf28aa',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'75380e5aec9bb02a0fe134b9ac364bb3217d2faeb8f9ca8d3d045e145a8db004','d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb','6c8b8da8e04c7f32f126fdbd8dbc42ed7a057a4bc4c5bd4a00dcb16606d144e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'61c6bf541cef555b6e807fefd0c1c4aecf62e35692ece1946effc8d0f0c5e4e7','a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0','db015975835ff9380fbc479552bee7b5d010b91388224f050d5172dea1ffc83d',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'a9c53f23b3766b394aca7fa4e0e2f4d7bc231f58acca5ec294f1100e51a07609','192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec','dce089b96049caa2a627a362caf6792f70bdcea48f310ea71e2d088536818350',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'81f9a537145fb937f08947176a73d4655e4bfbc3b0a0c3d16584c9fe31864e93','2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4','addbdd3d5ee13cabe2310162bb4fc5614fe856007a34314af4bb975c28f1496f',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'f3f90352f7d1b5e8d8301eb351ae038e27e3d8210a9a544d42c67147328532c0','7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4','09dd2b7628975503f55a34fd0caa19e94e5452728e6f985920fdd14c94af9ca7',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'88d0ebfa193bccacd5a6198fdb5544f7bcbae34d1c6a0b48415f481facfc2227','a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4','dfaad15d429e7bd317458db76fa63e0520615f5268918d49545b08b278e2e3c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'78dc24332463f1a27e7849813451835eaef944276f5bdec1838c30a3dee453b5','2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9','b906b21b11cb03e49af9b351312a6807cb39435675e30475dfa60df0d0224bca',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'6f8ce24bb75ab6ffdaefdec9123489c2a7efc94a7e1733637fa668ed5f7aa740','4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1','c782719a0e23751e1b696dde07c606533eb94d7c1406f170883f75d2ae414078',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'2e0c8075d1d0248881c14b9c3f69ea7f011b6db18c84711bb07b7f68d0099a36','78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432','045307065bc964157ae784b39e5a0e813918db3848a8c4fc93dff115a61425ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'13e04c93557b86a637a5b7edee007fd30ff4f813d9a3b4299d503383daa94d4c','07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf','b41cb4556f2dd8fc9a92f531a8666c751cf2650acfb1499ffa0c8de30548015f',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'4a60f0fbbf4d6c5bc0d8ad98cd3f2ec3212d6bb606bd98d1dce345288275c3f6','f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68','caa7fd46dc35c36837f7a4b7d068e43aa2c6df335aa437c3f4cc3c6caa09af2f',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'785d1a4f88ab690182405388c765098212f522432e69a68ee5b7f471a8164d7e','61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf','b664efe566c4b69b06f8f491308e904f2ed046ea488b467166826a55040874b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'ea74bf89453deec1c8d391185c8cdbfed0064a9e9b09948eed408d7b560b1982','b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524','12bf2a6fb2579f8d83cd4ec9d7ed69563b0ac0a46995b4c9a8dc8bc04c5bb887',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'c969c1ab67b3b338989e35568c4fba6bee0278a6fb1fefd9995fe55d316e6843','2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7','39f903a0642daf5a10df2d143004693602c91ec8ba3a982a8172e85e71ccee30',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'4b3014e7daf07e12ce4f59d0136f75425cf81c46d68c224edee560bdf32c4413','55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505','ef419ae862ddd4bb6538c0cb81c39185abfca556ba858167498513bc1c42f81b',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'c29903b73d4ce5fae6c20af6dac989ee532d57945f4d286c1552ebbe4829e514','3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1','98001a57a78b1cfc91b4538c3c622eb215d44f7b8ed349ec874f46760251a234',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'be056a10dfbaac7a217e7f30c5e60f5bac78aea92a16417ca2921d7f3b41e97f','9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02','7e140144911238d1d8b1dc703ebb84974e67eabf965736e0f26af3885a109245',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'b410bb813654419d23348e4bfcf5ddf41a673358a6a973fc57e3816347bccc8a','3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746','804fa5a9891318aec6c515d26047d62997195480b8ee44bc0a86b807099062e3',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'5ad3e05ff5f93a90818ff1d4ffb39b8476e2e8c6ca60e88c27f92319d41d8725','87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145','33813dbe8b795d039ca4625f0b200c6202c5ad0fb3848842185ca616813cbe7f',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'9c5a977c46b99326a92caa9d112b871dcb7160e2c73abfd4a8ed015330a2d032','ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95','1dcede5740d6e21b72ead44fcad640460fea3432fd36bafe313f3fb4b22ecb63',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'d8fc4c7024781f7f0e4925c28c2eba5c12917e3c69375b286148993c7bc3bbcd','d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38','5b4519e34fcc185589f2cca0a176b7b058423ef4f2c9d7de130561b5a712bac0',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'c12ab1abd6ade6e559de7801c009ee5862e04e5a84b4b28f012b167a4d70c68b','4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2','715509548f6641c632ac3cdbbedb92652262ec001dbd23807b8909b994116990',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'03170891d13e894608eb5d74f6134253b910605d4f763807e538bf1817cdb232','3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040','8da02af404a3f9df6789f40bdac9a5b685e305621fcd55fe4ac81ca5c2e24109',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'77f4e7710ac39bb4686c59eea34ceb696079acb46a8620544e427e2e814949b8','b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda','b96a33a699a40b2d3fcdfb2afeaace5b2c07b31ea30a7aac1aa8fadceff8799e',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'a31473dfec4fb8d1659024b3b627715c68e7635396dd90c184f66debdff35ed9','a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a','98381d91331e0c6a0a22041b9809a23a19d548ff437030ce8d5886ce089ec813',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'7f80269260ab4371585202d03b9c56bde5ab731e731a4f5c58f453f3057f637e','df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102','cb8392e6b0757701ae33cf721c256b67e832f3602477331ad6f53c6d31e52443',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'b6bc49e7852f6017b024ca0bdac9257e0f63109216cf00cfaf7110ca1891f5f6','b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd','9df15b1a6db5cda5ca7cecd419e75adb97d62d33cd6bd787a51c7bc2b7d64a2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'fb9be635d233ed088a81f6312d9650a8659b5c0d52a815b0f0585293092a14fb','866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009','3f545a43c629e0a59c99136dccfbb4c04b545935abd71fa9b4c99b63fcd2d825',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'3ac47fe08bcd6b16eed00fe5ed2facd3eaecf50f36d33688f197c5c301eee30c','94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba','9b3f4c70c7ad4cfc3b25873071b89f7b671815ce46e20cf1de283c917361f1fe',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'b9dc4ba1d33b9e158c6b82f825748d28403f4c8c01f1362e859b7f2f696f586c','535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5','561a4780b4f9ce506e5f28bb1183d20a3238b97c88369aea2bbb3b48db8f1068',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'be8b3bcb08364da2ab39827a0d02173c8a6a46da9480b2736d992e90008b8d9c','9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c','eb7711c83c4077da0326240e4dcc737e0cceaa382be924f30e1599acd902c123',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'8e3e879044b5ad0ee409dd84ca9c07ea523484a3074822396bafbf449580c2d8','bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75','d0eb6325e6daaacadad4286d7b6ad3bc7fd5c5cebaba2b3269c68448b2447b63',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'04e2dd3cbd7fa5aa973db5a1caa536ae26b385b236f71b4aaf59f230cf0b9d44','24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c','b72158646ca70e7d58d877da861f61e4913da014e9670d4067323effd75905ed',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'b7e53c4f80c0e70a0804a9e1ab3649929e914ed111c0998010e78f97adb8b740','f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002','b3ccce9d8cf5efa252e859aa8f600290666a443c0d8969a4dfd9ad8775124f36',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'f1a26ebe4528f04820f98944a5f54cf0211f3a450358e1a4574903bcb104536c','4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295','8f1b5f06966712ae1f433a4aa22e56b5e83f1c22d0b8c3ad22125f76235fcd32',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'8ee7cd3754ba2f85467916a695eb2823a89c17bd36707b2f74d5fe489ec39d35','2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40','389374c7c645ea784e72715749d51e793770d0af6754ce79bc221747be3f441c',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'a93684aea4d0b8177a008a7530f1c5a76aa3a6e0cd5f426fd04562eeed18edfb','fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b','9097efc88a94df5ba7b671a10f5bf11d9af538e705265dfb55eae51cfb416f10',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'f78e363f21bd326d12513b86ca5bf45412f33a70b140447da87787be0a39c898','1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f','53feede3e02574d4f4f5729ad8fd69317d2f292c61d9e036f1dea72344a31a81',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'94d14b919e8df7f7a2503baa1ccce1ee54a3f2629288f7e2a54ff23055622eca','b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf','fa57dacea2480c1df77352e2ccdbace19b0370f6c0d8a5d6eb5315103ff4001b',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'c95bed50e39dc26ec619b22ffcbd6d169f12c46cb58249f5609c200c49584575','7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492','b08652535254d2e85e77a54c647eba2c1d9b452a7c768908297c014ca3e80d47',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'60a763c963d90886938a2bc1a9e16a8a5fdaae245ca16bedab36852134ccbd1c','22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43','6db17ecb0f8a8726ba8cfdf12e175befb63ffa0800069e9e7728c173dde8ea38',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'75150fbe2fec5eced262f6f6f049ea1056e2e7fe783d8c16d1147d19135c385d','4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7','a8084987a147b5898473419bc8eb23214794bd8203f749dbf7bf5137b18ca634',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'bfa94e7f142250e47a9fcc8378b50d857fe8bb5730a456f2030322df7eb343da','8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2','e2fb6392d52dfdddba1dcea25a8e48e223fba00d9753784d23166eb658b29d7b',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'10fae07894dc8ca060b7a424ed07e1d6b82feba8ac401fcaa441b36114ff3a3d','cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570','5e72c19ee4de0c6126706e9aee6cd789d6e9656e033d49a25e905e2a716a3448',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'0fbf0b9dae7a4e5ebce6ae53e143ea82acf9063bac539eea2164661066465055','680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08','1daf00fabead340b654409dcde8dc4f1be575689b53ff2e42b875f630d693edb',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'d0cfe76a174a3e51cb71c8fcd7e24a5fd82a5b5ec90ea2323805cf203eb8bc09','6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280','5f7326953b5e053be96fb6810d483b11160456bc5e33a9705bd35295335fb677',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'370d05d099f60864284c17b0ec4ce4cad792a564ca17730b788182cc1657d299','c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a','e82f77b1c2afaa2530de704413a2b8f01fc6e087c8c5dfe29e57e46d04fdc5f0',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'b5ea3b5825c6ca6f1da1700405ac18f400aeb2381c5b61703a80627411884f30','619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6','42055e3bc4335246175ee54060a2869f05a2428b4ae5f49ff00408c3dbdd91ef',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'b21e5eadb3c00cc0413da1c9b272fbbcae96a271598852148968f900c4fd4f51','d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007','9cb15ebdbf9a835e6006ee61c2cd4f6ac6f1be5c69a0c3c376c98a7c53095f70',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'4d65eaebd925803121e3381c9b6b5f358fa14f036707c310614f92df3071183a','2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039','9eb5c3cbe3e4e8b6f3d29bd139318408eb8691b4954eb4ce406ccfc4165c67c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'8c0fec6c31820e12e92a9be814a0864530ffc01caaa72cd15536d70d0f8225db','5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd','6c1d217e0f17672670d1b45f608f1e08eb155736348647738db16a459ddb6d77',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'bfc63682a5acbae95d8c8c8af56cdc80f7ac4252be8117df4457fdce678f9d94','12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac','b70fda191eb7001801346517f7ba1a68619e0ffa4158a7bf0fcf938dbd680b53',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'d995b825b3095462095aa07f204ee8bd02bee7f0021757e0b9acba0aa89a37e7','d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773','627059029e19496999943d7af5691568eaa4cfd4f22338c3ddede3f4500cd210',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'40a21d7a31b702854f3830189ac21f31659f4ffc4665532113a3864caf6ac548','058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d','fd658b7d5933180c3de12b5b60f869883f1a6a024c811c15d2e22820d92e1c26',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'75641c467acddfebc824a0313b0cb20fe75ae44babc63c684559b72365c80ce9','d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19','5de3159ec5887c890d1b130372cc1246b0e6741578f2cafa537aa31f647f1e3c',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'19125e78aedfeeab7cec8532795eaca3219d631cad43b474451faea61a262d02','b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df','0316003aaf3a993d1284e8d6b1503ceae638c5c726dd5acd3d56e78d02d9ac59',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'b4086ebbbb1ad338c2d41a4f515acdd6991b9128936b170a6c7cfd1c199200cf','4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313','cad3961ab4e4fcff002a4c5fa70d08420c1bd12ffd006676dd5110262423c0e1',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'002ea3e07d91ba9fd59edccd6ce543ac0c80f3eade4fd9ac6ffe5c470b32ca35','8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875','c3730a5a4a5661ad447bac2663bac29b8b879e0f881ebd02f2af051ca1f5b749',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'8a7951661175cabfc9c5ec98c84398c69a18b0cc90dc2eadbb4a47217f204d17','d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee','ee6ed8fa6b995be14d299b4724d00d4b4c95027bf7b699c736fd7432ad81afb7',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'dfda3ea8a3f6b347fa5aaa711facf53d66f4b59b34fe8310d52511b06c5aa90a','ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126','048090da7c741f830fac5580197c15dfd9069e5b8f6aa250d4bb3d92d13eec29',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'1ab7c81c38eb3bc2f757e232d9235ba8f3b3c775249a31f81b64ea5b744bc446','35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03','10cf5fb665d0b30d5848f4ac110c65749c611e74a4d65c73ea93614b59fa9f87',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'df56206da793ee3d5a62d8b8204f19b58bd571defa817c5a755942d23984406d','3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0','07cb16ff67be391fc5442cb46749ad503db59f2a8e656be5801cad9a637a4435',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'1300e495aa348e8955ebc0d1060fcb0fea24197d400304aed07ebbb37f3fff0d','897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9','7b09e6ed38eae5b767c30ed38ea9ad5bd63cc2b1f9c02d12e0a1f27ff7dcd347',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'80afea7b225a6056f9e93264a4b60bff6150aa41fb06dbdd127834fe7c41e5fa','5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555','ec916fd31b7fd812e5d8aedae7bb9da7f404374f64c46f9674d4edc697aaf3ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'7a904b662a12891224a26684d2374306a17d12948494cfc2833979083484a9f8','d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8','69a3fc27bf61f998d9cd94cb8194122bba07ea28ddd22c58ecf4ffc6a9bcff1d',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'73f475db79e082ad33f59135260a81af04c66b1afa05d5faff982edc5c833e62','c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26','0ba7059cacf287f1535ee1f9c89540d4e70030ae066daa1b1ffda116a7fc1472',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'fe609333c29d872aeb9a2b7a30b02cfc5ad47f581f360e385926e62ed5e35c7a','1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac','6da370f16f81f88a16e6c5b8479b6f7918ca06b796193eb4029bd1b07c70ac17',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'37c0e6f0723cf44303736e01242f5e98acac4d49c3804957a060710b2304a7b8','2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf','fc30285d912a0653481bb75ed90c7533885781615af0a385d5e90afd4abe05ce',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'e3121b1b293875664571808b4157d6a25753a9009ac3fd6ae115a641d535f141','09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f','007bf07fac63f08f5fa4b284ee8604f63226f03cd117b1f1c54a6b7f79cd4f16',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'31e3ed8ed6830e198c02873357b1b86a5f7d034710d6d67121246b354ce01c0f','5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc','4f535b3b29ab5d7f508b90aeaf8e0306b306995fb1f42b4f20c209abbb52a29f',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'babdd735e0b8176a2fd4b30c00f207e072beee68acb33f382d7be7ca49ddf01b','da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501','78a8533f1b71600d395568cf68bd0fc235df43b0b32d9bf950a77c1d9bbf7858',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'691591b6f8fb8011eb76f503445c146f91f9a767895af28fbb6b8f371128c331','7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019','bd57d6e8c212f29dcfc8e4785222ecb0b0c3beeb7416a0421291e2850d1a553a',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'b5a75f28f1675c1d65e5c2eda601b00be193046f8d5455280ce7ce67f590d461','8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d','d1fd09c87b81c1701f2dfce552a05596b4890e443fd9455861aa20bbaa2dad89',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'96b5e331cbeba83e0959fa7387125e9bda307b2b4d77519efe8fddd8a468a2d0','717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f','135d6b4dab60c1e4ade976a98ad2932f74ed30607e6b72e00f58f7c272fc5823',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'6d95a405af7dcdfb540e163761b56a827cebde6f067ab7a409b362aa17f86d4d','532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563','ef464e083b2343511f1168fe17ee6050befcc06d5b505b0544d09285938761bc',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'399273d936cfd79a23f2ca90a707f66910d34764c05d8bfb868cbb31334d8db1','209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7','d73c2fae7bbf17a3a0fc9c199d9686a780a3634231cddfe3754e0d4123a612a5',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'9b574b61cf3db517bf6c64d6c9f70006de362f2d4de76734f5ae936482b63374','4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f','06b7afb139b3e77c96079bf0e786344122cd8b2f02aeed40f2a0b59252a7edbc',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'22f1766a7dbeac8e8cdbc00bef46542b40fbb6984ddcd926eb06d76ba0839e04','62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005','7b8ce38ac6220a606c4c864af17542b8119eb33a0128d76f78c7d4a2cb04838c',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'baa4ac53fa5848e8cf27695658da8401e616ada94975d73f9f1bbbacec77e18b','16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e','4799ca6602af5423d8420529299e3124b673fa1b3dbccb8ff6f7d1cf1e2326e8',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'e4791b468628263032d6604e89142b4611d37af0da10f5cea13d77549304f40f','6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb','f848f8af51c820f2043a9c7106b195861198a9436ccd7498a914fb27c801c399',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'41054373d4269eacc2ca673d8db0daaee399b27fe59286d8a097d542e3f14279','c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704','c7199fb078bdf61ca0291402a4ddf584d725ab8dfe290278992d1fcee3209c97',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'0e8477a68905ba7a91a17f4067c061d340844a7f9554d01ebd932219e19dc5df','7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484','d070f453b86791a5470c00c0f66a1f688cbca9146b09ee7b316f1239e101bb75',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'abd4a4de8d76df306fe91202471f04327dfff7330bdf86637732a895f3806b76','f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6','9671d888ae163b77c30eb288684b2760d15e555bd8d6c6aeafc8815c3521b1df',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'98e8ce36ac3c00bafdd83f5acfdcb6a86865609e322e4c8404bafb7f4efeda21','17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b','01dac6be9cb9a262bf06738280d85b3ac04fe25949ff17936bb1e458badf0ad2',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'5b2559a37945f4174c2f651c9315ca9b9c274b40baf87a0e0890615459f7f437','cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10','263bcb74757322f36cc19e8d722bfcf1c0c045ff6ae40b1ee071f9de4f6a1218',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'819360045a5f9ee7b2696a8b1cd2579371b25a43076e1f4731d948dcb7b14202','cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb','05967636ad202a361deee96e758fd75be0c2a1b07817c215db206c187125f34b',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'d0a47afe3a6d2d2bf01e56643798c4a653d827046991571026345f44b34bac6f','1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376','f5227bdae94c5ae394110e0690a013955d1e76379ba151b0fa209da444d9781c',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'995f4b278c55bf41f128a3dcc39a0389d4856e4aafab042c915eaaae536e40e2','88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7','08c75385b4290db3fc39fb503a2a0f3ab7631db44d7ad0eb3d2db9ade975b6a9',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'f4f83f7b347792bb4c1336c694a08b2642717ebca900d9a0489bce1a2d994418','4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13','3a31ecc1c0af51adc95b88dd15ef06b7cd49f90977c3f8bc0931163c77be9218',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'5d0fa0f5c261642712f86c72055a7f19afe078a6c34e5538d77d85bb1b799a94','699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b','c14011ca0548cc6aa347ebe1fb5249b938a40f7552924230ac9bd0456b173d84',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'439c74d2a465996838179517ff57b2cc558d66848b857580be65319363846033','64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6','3060f01ecd3a6fccc1bd7b34efaee852a4b7d232a8d861626968e4690c5c4e6d',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'8bc0f9cfc1b75cdfd6e59f1d41c6b67b790a25a98b6240f7ff5df617f256cb00','c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107','5397b96551c0a64ab068399907d75384be4291c1cf18cc3abe34cd1ae3c8482d',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'572bb86d600d33ec82edac9b1077ec7700d526cb25a69bc2bf2e10953f403e01','0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f','6ea4ac41326e29e0232ae9d494849ea2b825116e5ff8b76cffe56ea9dfa09997',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a','75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1','5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785',NULL,NULL,0); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) ; @@ -957,10 +957,8 @@ INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990, INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); +INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999900,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); @@ -1092,10 +1090,8 @@ INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990, INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); +INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999900,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); -INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL); INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); @@ -1275,9 +1271,7 @@ INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100, INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',508,NULL,NULL); -INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); @@ -2638,431 +2632,427 @@ INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":tru INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'f26f1da057cb3e28c2590257094e6bcaf8a5de01d97c9a4f13353c677db8ee0b'); INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134dacc503bf7814f9632f55a3acb7225d960280985078a7278332f26277f93f'); INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":5430,"data":"655843507c3130307c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508,"utxos_info":" e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0 3 "}',0,'NEW_TRANSACTION',NULL,'212762325df6d1d3d4cb71b3623ed1505879983d7d83fc55b956c9f7738e91f3'); -INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','d8052b147da603a857298b7d6b47c548aa554131dab7dc244fb792295b207c8e'); -INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ASSET_DESTRUCTION','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','957b9966112007eb63549a762c0bf5876bdcb9335ee126fad415b6d8afb26b4c'); -INSERT INTO messages VALUES(1317,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','15be13c64653eb934d8cff43a9b03c1723c5566b43025c0109e63048afc5d62b'); -INSERT INTO messages VALUES(1318,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','f621d331a0dcd3034d1b1970ad81c8506f13fa3225cbe1c75975ad0c0232ba30'); -INSERT INTO messages VALUES(1319,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','b2117013e345a8ca76387ced8a000862fb30e101c0e921d051c5751c2d7521f7'); -INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','a170114679dfc3eca504fc693de892e593b53673f319fbc509c9eaa27df2fb31'); -INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','3e4f8153ac5cee861b39bceda2b3e30e26fd818a20d08aff126a669b4f82a125'); -INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"fd9dd6c4166f4ba398ed82eb3b394b7e9ad88b33981c46a305bf622f37e4e535","messages_hash":"5b3d65e9a69422262e58956064666de0f43437cac8ceb2e903b125c588db5f4d","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'44398f07803cf5c8bbd59137e78ea605848eae4bf9db4356d576aa8ddd1c1631'); -INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1717e252c4e0ae0f63516c7980a9bc122761e84b4d19a518d03a8d031233c6b'); -INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'bfca5bb1330c50e22562eb2e8ac8216c15f196e848c10d2ac10021b597e56116'); -INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3044ebaf54a6326c423a330fbe46f53121a89b4f2d46d5a26e907021359b01b3'); -INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ASSET_DESTRUCTION','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','cdc62485e579c6d13dc3b9eb9d3c9f313b4d6366ac1c4601aa4dfe4c1c561480'); -INSERT INTO messages VALUES(1327,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','3af5388dcc8723f94add83f0bf7d0078281a68ada5586c3f4916b74eed7e28e2'); -INSERT INTO messages VALUES(1328,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','5f4c00fcc42daa377260dbeedbb292ad86ba923857740c2ff43774c4b41a836e'); -INSERT INTO messages VALUES(1329,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','7173216f194afa8889814cdd4ba67529a76fb9d00642c4ef96ef4023d72914d5'); -INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','da8697494088b4f1c3ce4a95866173aab6981c83d792a7681206aa3f74bb9ad5'); -INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','0a5be2a2331bfb0008a1ed52fef5eb60236c6720eca2eaf91a8e323d8b0b67e6'); -INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"e1de3b2ae9d189a7491690eb401b39e751c9ab300553c988759d6ca85e930d41","messages_hash":"b9899dff7d14faea8162325de4b4461d6feb8a123297c9e3722fb162178a2cc3","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'370af4a7cdb7d2e57eb794125afa08eb125b0e646ba7a37eb67574a1f4cab6a4'); -INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80c8e1bb286d53d08a26ea0fec92800f3c9e41150a737f30af9e59ea6968b9f0'); -INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'40f109b5a4abb9e31d2f0082692ed9403815f45b5d14d93f924683a81497cb55'); -INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','27b628d4a2c638e0fb1c24fe2d01ddc45b2e7be5d00525525e20131480073f02'); -INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','26cc8ec52979861196ce043e4c95b2cdb3f65a5800e40407c28a8bd530ad0d5b'); -INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e49b55bc8408995bdd65976ed0f35e6e9ea06a36f71a92982b000d987cc204f8'); -INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','dfca9a2c5ce6fb504766824e79788a141e893ee4bc4a261235782e1436abe3fb'); -INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','55066b8b200ca4f3f769783c130db29f9c1ec24798dd6925371682cc1eddcd25'); -INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"4fad56074b55d2bb347a79da983fa02461bf6b7a8a43d0b33f7ffb9168decd91","messages_hash":"d74b77fcee5d893b5f4765cb0d17b49e7f2a06c6035285eb977bbcb70612fbde","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'da61e65c73bb53f0df000380ae74683457e46bf1c3ede603ee11307f5ef3257b'); -INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a46607ed609244c08418c7eaef58249015f8b5c07507bf2301ed1229dd27eed'); -INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'95ae2ba0a6f446296a561ffbf4e8f3d0d5c0185cff16458d3a9ce17fb2e49f3b'); -INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','b49f7ccc51ad61ee0c25d063336d1e2636822a1f45e8661fc66a2de983ab52c1'); -INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','49589e67a96ffb7c226798947aa141e252710bcb7ada1c7d5321db5d45139272'); -INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','898aca0ce974e21b33e47b0e8a70f5401d9cb0643b16bdbbb7f056c8f1191ffb'); -INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"1ef91a61292f236a1f3703d2c9a15b21b2c2f4e689282c941cd1fbf3db3399ce","messages_hash":"b8f69934ca4096d4e6ee1fdd66f59faf686b9c34ee3364769d7e40c9c166b58a","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'ced947da162e64803474541613fe18188c2f89f73293f02f9f66043eb899086b'); -INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90c7513cc1353612c2688014ac170b149b9ac7ee8b1931733d7dbc4b6b1fd5a9'); -INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"ed13c0563b90e2d1be8826fa0f0be35d049b293f5c57780c4f7eaa9f666e8ed0","messages_hash":"ff505263772db00b9fc269a065cc878f6a044c39673f30e6f460d319e21824a1","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'41d930c97019fe00cb671ac618679b6c0793aefa20f817d7357c91e9b4b9dd52'); -INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00526a6416cf1e416137f4ce04def1025d0cf3023f5b1a30a5dfaa70ebc95ece'); -INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"63e016c514589c9005860c2ae47e641e60f70adf004d15b8e0e6c4e5dd0dbb70","messages_hash":"4ace9fae05bc7c0f87ed86a6d5e54c67619909668dcde5f8fcfa03901c2bd097","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'08cca90db509e3545850343122cd6f0a968377eb844fc21e449e663346e4f2d5'); -INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccc80cde2c6ce5acfdc4a30aa15c6fe6366961b2b26d38d1ee87d04b9570bad4'); -INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'7a3199f94eb3df9b3ed89b7a5f5de87365a9d4b8d7c938471fde7505f45cd7ee'); -INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'3c1bed39eb008bf2b2626d2c7d4817ef6a79eade4baa1f6f7dee4d986335435e'); -INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'35db31b51a73627c48a11fa9e778aea18fb194b49c869bba26d272e1d1b74b9a'); -INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'13226f8cca228b1894117239b91e28341730d7e44cc072dd0747c5161762eb73'); -INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"90a50496c5b03a20aacb50ad3f79b3e0df4717c243202cc5cc0cfd36dc5e70a4","messages_hash":"1b568d09ad617d325d001ab247c9c3d6795089930b9e9c04a1a31146c08f39db","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'adff0dbdfad9f26587f9796b096c36ef120421f6c6ac697bcb6c85dafb37e1c9'); -INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd42e18a47568ef328092b6f0b9edfc93d560694cd56cc7f93d42079a8c577ff'); -INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"dd220219bc9a976af4a30b216f883da99ed1ab7062924b1048d0b32bcf69dc5f","messages_hash":"eff56512712a48799e8c80d635f482ac95c5d38f187b5d040d96988d290a7e28","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'73ab1cf7651d16d4871a2455474e3b73ad88b9fd7b992586d154f4277d3d20b4'); -INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0a15a475b92a2b31416e57c793b677351e7b76e4d912f478b41f0c7bbd9ab2'); -INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"ee2a4af304a924a5e56624ab0bdcf396ef17f8eec5344da9368e4fc05087f4b5","messages_hash":"9e809eac5602123001bf1af50dfcfa02d7f1d18841c22e0077306f5dae0841c6","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'015e16bcab036bd7a8d4cf050603dd2be3325e3712dc494b95ad21ebd72c46a2'); -INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3643a42680c6806305eb7b44685a6f410997b7bd657d9db5d7047b22af266acd'); -INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"f6c7055ea7d18d325dc1426983c0ff88592be2fc5ab1cafb390a92531d6d7c9a","messages_hash":"7b4b7990f6aa5dc297e7fe660a5b4d3240783c7d059400ccdd9b268dadcd738a","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'656558841eedae1e0457397487c8f6754e95d377107c57609a9ef5e81462e9a2'); -INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0035b1f778a4aacaa0b491e08b71dc179fb0790819d15c1111e6b96ae386e2f6'); -INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"c4899aa359bc036f87f1c94e2ab90f2ca190cd8cb986187e6b4dae7dcdc79c32","messages_hash":"c275e1dcaf93c8322b341057706714c01fa4ea025149a549b4a7b5f1e3715691","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'de949371b8947022b5b0fdb28d65b0e44a7bec76db0eb758b12c69eed2aadbc8'); -INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14ba58e791d2ead803f0583026a4ae6d258e141b5dc701dfe4709502a6a04632'); -INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"c768e9da69d97cc1c45a4facaf2c775aa5b60def4be66d08becd6efb240f502b","messages_hash":"5dc0b3c5af7d36885e23caa5c770425e392abf921423b78b938e46ab287c033b","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'c60245be093865d95a02ba6c196b916a32c50711351fc9c1309b0d9a0bc6ccf2'); -INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'631e432c89f5aac6ce33e9df38fbea8d4a7ea5b91d62cd937f111955ba76b49b'); -INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"08d6aa9d0d08239a4e8faca072abdac90d1646f4333bfbb43a55db0569c86369","messages_hash":"4af4c1700cffbaa6fe13ede1504b0f76e003643a19db7220e85a830f941164be","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'a6b36a9612ce29aae2026fc6508d8a07233b334bd07b62b16fa5c4eac023ee7f'); -INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ecd32182c772bd62e8a97b5979df146a78dcf0d51d67aefdd01c228fd1ae953'); -INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"446225b1567d14e2bdc5fc49e2b3c2e360bcd43ff7e53bca4a1e3f015c588225","messages_hash":"ba645acfdc6dcdef7cf60b549fc2b2004283fdf0bd890ec0bbe2568a0f97b297","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'4789577d16ff45616db17a2bbdac2492d833afeaa6f9e1ef9d586faa8937d6a3'); -INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8bdf4234327b9b798eab5d6f345bf30272c70622babae2655b2d94a0f6ccdd9'); -INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"b493dc7f137f4571ac4d5d60079d43d75d930394e8e4a71470aa35188bc56c13","messages_hash":"71f316e38784c242e9281621edad2e577eecd82215ba968f226f1a54229a1261","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'ff2dd1625d92d5ee1032c9c7c626f7b9362352280c5854f12ba3a2a41fc631bd'); -INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b757165cdbb5f6eba00097c4e1f0fa96faec5734da4fc64d9533cfe70420fc9'); -INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"1610dd09c43dec0546c577887a33f3f78f14e927f8cb27b1729bd9926406e8f4","messages_hash":"bd19737881b1f396d0d2a4e832d5867e40f4120365bd0bf8501774c7f9199db4","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'6e7c7fe808fae8cc3594cdda800da8a8583020f1c13fa0c80a9ed8fa595692fd'); -INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16234a308f94b8eb7bd603daf528733ec3f9740d87d739db62e909221c343e2e'); -INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"98889a1a820abc72bc9c652eae437e214f4baeebd7781b54ed181cb36620b1f0","messages_hash":"ea230c25f1d748fba5c9b056fac00c5a253c71b622e89b74fb89f3f8f98f9019","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'ae6758534bace298dc45bde39417a331f498d179694322bc21206fbfdb3448a3'); -INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a6e3d545ffff83c6e3b3bb53665cfad94c2196b29f2b8924ff01b05c097719'); -INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"2b8be722ba8ca9606d899f37377f6def66e20c9d9296f39bc6752c85a2e5ec14","messages_hash":"908361d87809606671390f53fbd3c0af0e3df48bbb51c720813135e81dd4e72f","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'7121a2466a07b5db523ed44dd138a947044e971fa27fa650928d2a46db034ea9'); -INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1949891cd22cb25a12101f549b3896695d547cd6fd51ff0393978f7a4de600bf'); -INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"82ab62f1f357974b3ad7c6ec8fe4b014ec954abca2cdc52c742b5c009d0182f5","messages_hash":"8d3a17f56ea2566a50e37e6ecbc6971671f412da83d4b312106220706933e765","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'79b4473e384434e79bb85c8f4d6bb2181d9b4f2c7037a16cdca9e6c8d722f7b3'); -INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64a81ca0c39a9e94a6fa9105600dd0f6f7b660c8f3d2a8c46f70a2f25ec20b69'); -INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"dbc23937e1943b357bf9e20fb689a0ec796e6b7acc9f4af5510a28ddc6ba7453","messages_hash":"482bc54630100bd18924a9a506f32b9439e2b3b85ad2999eec3e8644a31450ef","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'c0ed454600a29ee59929955c88b8f5f9d8976d6a6eb289f7d34fd4af65793aeb'); -INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df3782186d95631204510b0ad9550b9eeefa3de537c7312777eaf5589ec25c48'); -INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"d15f90d9b41b8ac518415953f59f2296a4021316423167ea2ab54ff89399ea6c","messages_hash":"81a02de60d59fdc47c1f916b04bf0c076a2c9e29577664911abe32eabb675883","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'c4bf82b5524d5c6f792186310f1c98510e5f437701190352cdba234c577ceb76'); -INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b81c68659a0e0ca6da284b55a21e7bb4844847b8cf8b67f6347e0abc238c4303'); -INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"18571713c1f1ab374182d500a6eca9900385e412e597c3536320526a772d6505","messages_hash":"1b60c82ca79b8fcaac3c3b108f713eb1158c76c5f06a16f4283eaa5eb59765b0","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'3f9d7b3e81331b10af06ba39ff688ddbcc6fb9a1278f106da99f9f6c0cdc65b9'); -INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5052184df5f346d2f4268aad151ca2941ee4f65951cf17147e0cf92187841962'); -INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"591d9cac024599b19a68fb6576eb11feb2275ebe091eebd78209465473f1d8fd","messages_hash":"13665473096a3d1801dbdfd5d9c6161e20b15703b14c4bce3d47edb3d4885047","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'f626f017328b0ef054774c88f6b48116141d39d3d86602a7d1118dbcea3643ae'); -INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a080d99b9e345091527194d022b742a2d165b3dd1bc3e6e24f3cab2a4f08f193'); -INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"22b77c30ead63fd084ac73842da5b88089b4932254ed20f23d4649f3200be7ae","messages_hash":"04e25b87dd5ecd4a5496d521553e7266ace14e0ffdb005fedc0b997acf51f500","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'a55f1c589166d49e320b6b72bdf3c261044357d0df83c847913217b3125752ce'); -INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0387cc93ba9cb165ad97f92cf81b0515481e6b7bceb4c222e1a8ddb27763d600'); -INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"bce7643af39523767585a24c0d17f131eaa6ccf3dd095a1c9f3c16d26153969e","messages_hash":"5d30262a1eca803e775a4661956b4e04c54764fc1d861b30fbe4fc0c9f4a4feb","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'409496e3df0b7d76f8a09ecd41a454d29d3daa3313859bef2e079d22039504fe'); -INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f97ffaecee0165be64f32940c0c95b2ffd3a1cbcb149136745d9643da54c1c6'); -INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"bc836cf0f18070f714ee114b31532f8903638a42fb739c9758694da3f216fda8","messages_hash":"8de60d05e03650f953081e1b6866fd4e3de136ac8cac458113ade59a7660184a","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'acb7e9b0e09a6c214db673001dedcb87a1e95c2a6c6c0117b39d0494c7c562f6'); -INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aa5d615a47cc866952f62b0124da64974c3b68c2dcafe6e89e6e9d61e80b43c'); -INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"bd7bef2679382d3105eb1decacb73ec898e6db4eb9e30eb11eaa8d85d8a242ab","messages_hash":"a009a2654402048d6b2c833eb979166b16d8910de42aa94fe6ef73e67182cc1f","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'265f2c90f0d5c91ea72ce3cd56949fc882dce6133d8d90ef9d2d4748f63ef8ee'); -INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d944e2ece54058bccfe228773faa278e06be7d2d9447513e121fdbe0670712'); -INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"14a2f8fdb539ef115649b504e04c1b14e1fa40a8fc6ec74b0ec5e31a4e845bae","messages_hash":"8e0e9482a94cab5e4db0d1e71402af5d40a60ed5f7a31a83dafe331988aad78e","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'92be58162c1858350835e59de76b94389837623cdc321073bdaaa52fe10eddf1'); -INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8708f2d8553a04a190f6bae3b4926bf146a6fe1beda98dada3cc9ed09b280a5'); -INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"e78282bfde34a0c6904e186c9ecce017923969cf917ee127b7d3df211806d53c","messages_hash":"e24a845754dbe07db52a3aa2921681a8f7bb1c1e8e9087aadd2b539734e9fd39","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'fd6b1ccc6813970c90c23183c855bc07fba9791fa1b4b42a3995fe6f57b571e0'); -INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8e1dbe6dbb2546feffa405c96f0191978772e3de8dbe8c931e15cec1e71a28'); -INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"b1df150c15eb1b0bbbb9f2eff879e1de8dae33356f6c4abaca82844f7385fd02","messages_hash":"944e29d6be7244a01ef01b04e2b1006ae0a7ff18049d4d42f0f7d3739fe0ec4e","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'31b9edee24d74ba1b20809f1e5c0122e5a0d0fbd6e8555d2311ea5b6931c2bbe'); -INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfe1863976ece1b0772e9e707d2911d9a67264e762c0f1752e3366183cdc0de7'); -INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"b556d7efefe3baffc1fc80bfa6797332623f71301246e8a2e8f87cf6abf60d5f","messages_hash":"53158f79c523e10e418107b165d7e891f8b18746ad98b0a5a78344097931b826","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'e6cdf724e258dd3b368a1abbdf37da6f72d6b72cd47409a5cfa33420def4f280'); -INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f64ef5388e0b7907402f72f03e6b1af142f39c1cea9893b4782749ef8b19582e'); -INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"46d9815e68a52a2d64231c69be76c9051bb9217dde7ede8ad0587948174c4352","messages_hash":"a0a22173bbe1001fe2025d18f2972f21b1263bf879c11c90b9cd3eddbfcd71bb","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'5d30fec452a8d7a6c30e0fabc9470468dbb30189b7dad9634d63206b3958d7fc'); -INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'747096fb7d4999ee38e88e41409843f6d4b855e63b8de79735348b0e658b6954'); -INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"5ebf8fc3d93320d9baccd7df1c5dfded5ec079c24c234b5f7d92575877deb987","messages_hash":"34e9a6ab4200eca6bfec88efb61760faa66e97ded3a3e64964c1ca063d91e171","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'fc1f72859561256646d273e853eb2283fd9c6607dd4a06ec0cc6362779b0f5b7'); -INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9af1b411ef2cf6d6503a1221602ad10f90602205ae2937d726306a78e9bfd0bf'); -INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"dc1ecd1724326cbe3e795d130bd59a348bd8704aa72720bfb45f006e02e837ab","messages_hash":"5771633ec4d21e4e3468e0c72c09fd4fc89d7048d84929540f099f8528c7fc48","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'e57ccc2bf469bf83bb2ce90653872ae47fee64d6b53415c0ec5cd324c3d27e35'); -INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d64d79a4120dd5c0f161080349f23fb82b1be1af1f469cde3a5be464cf0cc9c2'); -INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"11cadaa860581d09325d11a683c516716503338966cd4231df29719d81930c23","messages_hash":"b6acc29f78e3afd2ce0cd946159442c706d0141dc19167f6fd9c1ad7006e352b","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'8b6bd6b7c861c5f911d24c606d2acbd5d1b9e0a3ac400f66341fe764a33699e4'); -INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dad85d87af501e4687a82b6be71bd3dc117645e1c80831b83aab825bec3f4bd'); -INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"3c54eef2f5a2b5654584d50ef70ffd960e868840e682070e61cc7468d37ba765","messages_hash":"985118c936729819760106d92dd07a3877f4ac4b754a538fafbd1231f8220e6f","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'0b11104844c833a2396b65e307f3336c7a5fc055ba028d0343320f6085c0ad7b'); -INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78a625a47c5055cc34bf1a3a3f01425fd0cb11d073267a36e6e0afbd665d6074'); -INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"e48b285ba8b99c6bebd961a9b97c3b28ddaabf6ca65bb6944e5ac38e8b97ed34","messages_hash":"3a596fab3de03bef51c69f96c7c8a31421aa2ce010606e2463a2806eb073a5b5","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'207fbbaf7731f7cd98aa695918c070ce1694209cf775ac297573deb8a9a2faab'); -INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0436a7e3cae912625a5f9d5cc5bffc187a8346cff0b1e68f68f26d6a23d05f50'); -INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"5c71d413d7783e7d104edef2c2107486a44c9f98833e72954517bcd81a26c3a8","messages_hash":"d25e364acba24fd28aa58ce6273b498024a5612b97bdbddb56368728fff83575","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'68c4d579ea9160481649fcf13f958655f77c6f8c0c01c315166ff7ca368b067c'); -INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e6407cd5180990a594104265130f3e9d12cdb46eed20c0c0e88596a3200d4e6'); -INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"52fba42a8819d830719a6b8e3fb4c54f721892eebf6b5606370c7488fc8d99cc","messages_hash":"34453279a8f3c934dd1a7a9cd2ad30ffa05bf04ccdcab05cbf0495977167a38a","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'7c5908836b9ddabba71d6cf48f683500e87ed3524526e9366c6108f800fb0def'); -INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5858fcad2aac5937fdb8d73a9c003e66f33f5997fbc9ad59cfc67b4138e4d295'); -INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"0930159760fc696aaf3a50e8c3fd9c482d63d4e9c4528c4b3aa0e5793c1ed700","messages_hash":"22027eaa643f0edb3ca8a2c73249887c48c00dad4394be2dc3989ce7e889f20e","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'57ffa0342378cd1eccf94e73c8798ac588954d31231b3cbf9228e76ecb280d29'); -INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce3a60eea074f9680e2d4093d263f28faab9cf8a4a4c3bae230e3f4f53640c81'); -INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"242f52f096fb1b7b2ff62656f73b2a2b4b07048537e422554b26c33cf9f4dc28","messages_hash":"116fbdb1ec8665e990d6751138fa7e92c512cb2937e29f7c6d48ee2d2cea1d24","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'aab08d582ed8b017916a635b651a9cf99676380c1e7c5a643be26f73df6e7c0a'); -INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9bd3767c3b150a8da56f16e386ff8212218d56bd6b6848555c59c8a3dfb9e4'); -INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"0d09a0327ec283b657164cef271306d618bd89308d86e9bbdb96c5ea69ea07fc","messages_hash":"3a84a86256c53ccc906f6ab94bde96ea8490e6e4700672871cb50afd05f5a62b","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'6e06018eea45ede6cd1b7025291fa327b84b09080100ee5e2d51c32b17bda626'); -INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c11000838d0b85203b84b9761d01349008d508b68c3d3a3df915c2f2bd8dd2d'); -INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"ec38ad7125a862563851f4e5a2026d6636cb6d13dea6eeb70be041fb2b6d9563","messages_hash":"7aa84b2e8dc22c8d0c88731d1ed1ba7b9a95c9bd512c9064d24be0dec778b336","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'9b12098be4b66c02ce859247ce163fbf8d0862003b414f43a0b5f1b909231e10'); -INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b616840e5750db0dca6aa262b35561946ebfa681a9c10af4bd3902b333eb5ce5'); -INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"1c08ddd48f21cc037653c7cb4ec12a06eb3e1deafbad4628f4db9611a12682b8","messages_hash":"6a8f4e2a1baf750a7dc67155d633b4168acdd61094cdef024558f0a5d208edf2","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'880214785292c1f323da27a5b480ad7b64fb75cd5f94ff1638d329c1593d4ed3'); -INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aefc687ff40dba6ccf83d7d50ade6c04025daea6fa5c07d83518f2d047885c49'); -INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"e18ab9846e699122fa1b70a33d339833a03a72074aef067fcde604df4a6df311","messages_hash":"8b7668a9ce0987f1dfb58e9c79c12f23afad8d421dd014b7fb1617cb5c309ad5","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'f60c822cbf705df2468a5800ffb13fcc7dfa64796307879890721b7d02efe285'); -INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64203412d84e4d618d11b6439e5c73f0dc27be53cf5a1dd51a073bad2bd99e1a'); -INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"410074fc3d812856c6f7ddaea55e05bc5246293b2b8a3610134cd75e4ac87c7e","messages_hash":"2a640f8c26213c36d00ff9025d7c429e7b3c354b98b2603bd633e722ebc86d10","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'55c741e8c69638127bdae8f01a1d4b167f06e5529650725aa463fa9ab87431df'); -INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75f421d6e32031c24457d14119aad6327b29655e2f761691c86d3ab82aecc425'); -INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"3f48340be39f2e91d7598ebc7588765b2042de048d0315eb177369215dc17ccf","messages_hash":"25a5183d2e31de447a0affa481c932f6cb005bdf1d11635254ca2b0c9a85e0f1","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'af6b7554fcf84b1c0c7027c543f71ec918b122b6da8955c5ab037fa18522c6c6'); -INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab354adc2f93fd174d1de93429a4f0cf7e44c3d0e38a2105e012afe1b89ec31'); -INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"fadb924f3dbe632c85242c70ddf096a356d6c468c0499c6c30deef1bca2bd914","messages_hash":"bbef31317952a396d63920cefb15614c7977ce34fed50f34932410e6db009f52","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'f7952321c89324e5848143dd7e53e5d999999be9674bf01901ebd5198896f4f6'); -INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eb73735ce1f88f73bf7ac96d0f2002c67d3c26682d790d73620eead6babbb3f'); -INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"de40de1dca8301f867250eab31f04036ee16aafe0a0c513df3089b891a3e88be","messages_hash":"1df17473e37d35c5c236d2d0cf37d0caeba14dddb9966f92043f54b1cbdab3f3","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'324be0a56762de0b16844dc3adfb370faf6b1dc0cf44659eb0ca77814d54b684'); -INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98c50a636fa029076a5dd306bb03e1051deb88f7b752fcc241ead7a009b6da9d'); -INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c7865729373447b378fc903ff42594919a363b6ad3d41a3ae76665fd7c4a17a4","messages_hash":"5a9e6f7006bfcc208324a5e327c1b5aa855a6cd2360e72ded7ab4190a60e2786","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'c57d569d19aad22ce1421255c54b56d81582a853d14009f69cd89f0f30790321'); -INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecf22fcf7a24eab487bbbee49316facddbdb1535279c29fd851ff2459f86aaff'); -INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3f35e85fa25434c0c2651686580647ce5afd3b084eeb8e32779013fb6dcaa71f","messages_hash":"00327571da0bcc686a077d66cafc2824ece29b014535a53d727eee8605ef29af","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'690af0d9de5e2bcd3aabcc6dd7b4c05c5e5e3d3820881f8c758ec595115ef58a'); -INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af4b3a8a72648a521d8c61bdbbcb713fe728093479be08799aea01f87ae3a36'); -INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"1b70d1bbffc20b21f1c806fc72e7f226750352e3cd2b204d6911e85b1bd164d9","messages_hash":"a0d938945b052e309f4bcc717fcea94065065fd14d70d2298797b0af76f9669a","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'bb92564b5c77c30d2d597771a28344c093a69bbe961fd2baafbd3d569ac0b5be'); -INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9032ad61cffcc49f51b664ea8e1335876ebd15b73af513e376410126f9dafb6e'); -INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"5416248c4e07f9c58ac5d111ce42c24ec4368a4a3273768afa59cb82c017e995","messages_hash":"202268602d5c63f8f25ac2770baa7740838960e99fc359180f89af19046cb8b7","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'aa7afeb01329f012fe797ae137dc139b462ea852192579625bd108e0a168d887'); -INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'826013962ebd683d51454be21bab6828f8cbe4bbae344b2da614562f12de5791'); -INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"ceea5eed4ff122bddefb06bcab54f30cf804f8270950df6b93bf0dd5de595ad8","messages_hash":"9f425024c40e31bf95effcd79f083a0e2d75de01c66149166838854b82545ab7","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'08c8940fe4e0164c895d8a29f3c1247d38ebe48de5d9856788f61be8d988f8ef'); -INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6aae31f8eae1321e112afe1a09f7de7c6e6011e8fac1cdeeb1295af6b550319'); -INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"51af7f3c26c80e22d4528d21dca8bf16706f8988dfee04f914e46222a267604d","messages_hash":"70c683fe67efd7000812fa6024812fa8f53a34f823ff4e120acb8797f323adc4","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'18625cbd8486ba47d8c745d209ab4a570a6faaecb4710278929feb51530629e3'); -INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a78c46048151e6688133e6f17baca0085ee6dc9789d8a31dfc8dd06590cab940'); -INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"60d71c72f9b055cd795f94d939694b7e20aba71ffda8998ec5796eec3c6de2f7","messages_hash":"da8bdbcdd5712dd2eb4c4034a7e5b8a8a92847e4b6d3adbf7914a529eedcb0c9","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'3ae9271d663eb135e106779c365db6353df9014149c9992e2daa1c6756f84676'); -INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c01158dcc7e8afce388415b570202973cf40f0af5a120a7b21bbfaed45e5c6ef'); -INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"14edc869fa9bb8889b56894576ccedcd6f4594238f360d9722a66d19046c6e8b","messages_hash":"fd07764428152935555098d27d4851205f06bec1b4547c80d147e57f5062dddd","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'12020b58b5cf481508c1ee6137a5d640f18ad5957420bf7643fb468b98ea106a'); -INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d767b43743138b3fcd9eb175a7ef3a672058204654c142a358a711a0597a0878'); -INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"fafabc42d4eac2d60aa7dd21ad959ed3021bf71a39f4b1f4274db39932a26e8e","messages_hash":"5bec5ae8ccf2c605ad89c463447aa277036e290f4565739453a8b219178a29ee","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'f9b23bd613483673ed658c489fe3ad026c0f09e9c210a1400e4537c261d03fbd'); -INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7faeba2f59b83e773fca1f97b0813b03c0ea514b6feb4785e4e2adf427a8a0'); -INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"1bb2967cf1c96c2c6924fd17b62936bb3ad8e06486314d91ca0d70223ef40595","messages_hash":"139dc596f1778cf7421eba16eb9a32ad8491e0bf14efdc33e097a7a0da7a861b","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'c46446aa6b97f55211cb19f4a31fdce0de4dd6347e9bd82eafa6c2599c63bb7c'); -INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95d02f5c1701f251d3667f982f0955aaf39b6f3156364204d66daba5f7097dd9'); -INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"4b37b62efa4456f4ba03266c10d10d71d3e7f1d7a81d99c098ac82c82b62422e","messages_hash":"78e31000ad502303ba8145f6004103fce7fdcf28dba4fc492399bc33605ac271","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'c09ace57b82de2deb342c6c7b456e1e432b02967294c6c3d649adabd968ea4f4'); -INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4678a42e979c5eb7553613dd48ac5793a030fd685d3a2d1c8f1519e24f1153'); -INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"56132c87e81bc6cc0c0dad24dc1f3ef6fb676a177a0ef5df4cf94fab69335d6f","messages_hash":"aad4f76bae47a8117b40d818689a3006d50957d4637a580b9cde5c40408a62a2","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'8cb12be266d993750615343a98af8a1baa1a5de22466eca5de86d21ec80b7030'); -INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ba1b28e6125cbe947cdbf25b55731d44d642d2b89ef487b852df3003b07b1d1'); -INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"25398917b00705360064e860b377822e12b34d26f07dd609e6b0ca91969fdfd9","messages_hash":"e1a643718b372d2882862cb731bafe3dcb7bf1d559c8b9dbc1c759e6c07a9b6d","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'7ff05956741f352f02c264dcefd9f49374d1703cb2220125fd9290132d5c7f66'); -INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5da2460eaf85af6f5e44e13ccb1b006a31b116bb60e948825408fe3865c380fa'); -INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"5e2fb1f7c707808a7ea83360337d2eb9c341501840a05b4ae716d3fa83b39959","messages_hash":"fa97be388bbdba703495a7df4ee800297cf2d1d3c964165bac3217748d034759","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'8de960a9eb374f17d6a0c1d5398588cd32ccfac5b051c2792695a5b03795f248'); -INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8860884f470c204c2fb0e717ac92d88dcfa1439f63dbfd04b0ee0a588ad4a9d1'); -INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"1b6ee9bc468108d395abd772e4cd7bf7e8ef5c9b0f0067fe7186212a3a448ffd","messages_hash":"6f486d33bb5ed34b12674e620fd86b3f77dcf5505b163f96e24bae76b274e1ba","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'53cc7af43ca7b16a6603c71b78cc3f7ab82685e49318e1b81ebdb87d736a1eb3'); -INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597b1d3b60b6dd643b0d51c0d1662bbc3ab1e994790f8b4f1ab390f863facea8'); -INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"08216834058da4d49434a221d9de000e6c6d43230f0bedaf883e96a6c16e6335","messages_hash":"cb6ae6969a0455ba69049e93e793dafae77ac5fe26801e6ab0fda78ea96844e2","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'bda0c68a40b0de9cd7455ac537f5fcfbe9b6ce25f96a139c6314925e5d5b2c6f'); -INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'509b0662646181039783e6e7a460854121458d6c9b3ae880442cbf0e3947ca63'); -INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"8476c3a970726bda200dedd08238a2719295cefb0b017dce027c0470233605b5","messages_hash":"d05ff6a8dff46baa279bf6274792bcc5de290ecd75d9480826644c6033490a77","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'77189298cac81f7503dc5b796276a67feb6933e25216ade72ec89c5bd5986900'); -INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb5d05d52ebf5a5e55e6961fcf309255d298ccfc0f1474fed05b01cc95768520'); -INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"90274021e2f35997dbcc62ca7b5cf4e232e9fb656e13bf18a2eeb7f555a1e8a0","messages_hash":"ba7ac48699da11a4b49bf43239e544510e6d7f3f135e0d7d13c327caa40ed5ad","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'6f6400d44daf0018805936ed798abff68386e2e1eb31b78f6f78231a102fb22f'); -INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da396731db0fef52304928d0caff44f1957674e6f58d96512e761c1e60c82507'); -INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"30a9867a59c86b8538bc2e0634f3a8df1af7b88e44032cecc5cdab5eb4874f8c","messages_hash":"00f0a46744edd49e525e277f2970a02e01ad3da3ef6ba24195f68b2baf17548d","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'85e0bae9cbe33ce693fad66993fe85554ce6e89cc1ce916182a87863f5c85327'); -INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'becb156d0f1e3a54fbbe7105173555879e592ad0361ddc52817670ebe22588ea'); -INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"3507e01a9e18757a91cde653aa0d0c0bbfee6f6dbfc9e982615cf1675fbbbf04","messages_hash":"ac96cfdd085e2a0ae9d65303d98c82cc95946284c02a2140531753dced0c9a32","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'633f39c990949cb975721fbd22cace1c051eaa2d20dfe3018e800246cf17cc71'); -INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9657239b510d14e980c647c7c506d3ec8170cd604f700378b6e6050e392b963a'); -INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"818e31f294b86fc9e26568924919c02571bb3e07e67a39a3a27e2668664a3a43","messages_hash":"f892f2d68072cab4f8fea224972e9435265795a24a66ae7a601221f4d911e687","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'dccabb3321048e3b81328e83fac4808ff83cd8d48b5d3a89d5151e2ed642fc5f'); -INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e0f0eb2b48396f942933f61415d40925e7862fc4bfd93405553d94daa98557a'); -INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"92627a5fc5f62298079483150c025cc6b68aacc617449451131e9a161728554f","messages_hash":"4d60ce2f570c704d2defaa7d0fb48dd77886ba8a4dc808304ef6490196a2d3cc","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'9d888b67325be4f5f49942e2542f8894b875a43a29b027b79e9fabede56f1b39'); -INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47fe8e26a67aab6be26d9f72925526daaabd0a4c01a2fa7f94414a025ce062de'); -INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"ed09b88cf813690a2cbafe94641d9104e2e19b3d1ab1ce45b40611739908696e","messages_hash":"c85f5cf28490897a4ae7da560b7ebe17a4a82bb4ea9620334a73b7c961fd8972","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'2c3ce2b9d08d2f86a1dd3166a0726374d01f39198bacf249a2ba307303ba0d36'); -INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86e573c9d136639716489f7ab293aa55ea5c831b08ce9650d95d68c614fd9139'); -INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"4e81351db98af869b4da208aee967b613f1c1c15525d25d4366221cac679756a","messages_hash":"b33df03d2eb0393bc7982af4e3d403756eae02b09d723a3eea1a11c6e835e37c","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'1536cd2bb34e266ba3b6e5a953e55b234545d9b7bb91d05e524731934ffa878e'); -INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d717ad1bdeb372d1dfe22201039a791de7208727625220feb0cf0355ea2a04d'); -INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"b5895a643ce7d93da81d85a19628154328d75ef7a999ef17a6e20201bf48ae21","messages_hash":"f69075a0d31425b1f8a8105c0f2441668af00ec805984558ac5374a5ff029792","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'ea0bac623e62cbf22b6c52a7b456efd0f18d1915f775b12802c014ea9a8092c4'); -INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2df65d9c0589d8ba1886fceb4efaaf72189fd61f3cd01a2ea8359737fccfcac4'); -INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"bef5eb59e7031a91a43831ff72e6f36029a552f56f53aeb1d28ba2eef28b23ab","messages_hash":"03c13a57460469e97a78635132a49d6c6bba91297f88d88e7a67cca7ddebc4b1","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'05937308f934af2e0a3475c78ad5ded4e99d72b191c5822aaf0fe31d60d60a92'); -INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cde0b5706e8603c0e150ffea69e9bdcba5b2b720fa6cbaa0c08612497f126c81'); -INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"caa92634593e633692c97a4e14e04b135ee62d5fff69e8815ef0326b58fd4376","messages_hash":"b325df499e5339385fb21c18fa7a75faca2fa6e05482dfa404600afe30e8d16a","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'d33400446177a9d199734f7c14f4acf86e31816778182f7da2ac53666ab8caff'); -INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b04d4aaf3d502f83b9414de6adca5dde8d990b5822377ac86c03006195e0fc63'); -INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"f9e3a9ea50a29c53c35e14c8707e22d9063955262a28429c0561eadc1a06b5f7","messages_hash":"27c8db0c419ad60f4471ca134d8cf1cc83f2cb822c3f7b9be971db4c593ae883","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'9085a2f6f9c533918a87a6619c38eee884dec4bc9b5ec3a58cbf680fc59ea528'); -INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06dd3c65fecace80353bdbf2e1bd92889abf7e80133b6285c99fedfe7956b854'); -INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"67c1639839364cffab404f97b9a1bb2c3d269de2ca5998ffd2553633a959a48b","messages_hash":"cecee4347beeccc7791b708ef1ee994d5e02da108a225a026a46fc3ced625bed","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'43579deccf1ffddf93072239a9e6ec5f5fe82ef788f4201fc08bb47f706c0aba'); -INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f04329835ed5f284e8c53eb9428f2012573c620cda25c6ba15102d99c8eecae'); -INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"8b65a39556a7e9db9d8deac76a40f5d3688d18415987a15e6a85591cecc94524","messages_hash":"84d263a7f96152b20118674475bc6aa055e4b9473a8516cdbda39c7240ca3a1f","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'fad6a912797b4650eeecedf87eea0d4f49ec37aaf5ca071e783d88d7b0227c2f'); -INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5fe4ccaf943500caac624b7fb6c651ab50c7cd7c412daaefb61cd65dee802a5'); -INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"52665696548cc272a24af0f83c3e440a029ebca215a78aecbe42cb3d3d964a12","messages_hash":"cf3a2b94bd30c9bf5cb5083de77c93538bf245f1ca1328a57b914dba3b486e09","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'54b290971eea5b05d3b0985adec90b777d3932dc44a648834d13fe43aff850f9'); -INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'517bcf2ad0bbf64c92596858ccb7d5c4ffcea5513365f13a825fd8351d1e76d1'); -INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"2a5fe63306134013f85ee6083a49c1d2635d22dd89fcc23771069b7a6e88c2c3","messages_hash":"4d83772e80b7b464ffab716f1369ebd0291e4519eb8583c3e294df0265177cdb","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'77c297567c4aa0432adbb22c652439e80076dc2a57a4cfd75e5ea89902986979'); -INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e44ac5a2fe122e474125f3ece46309d65bd59bd3a4c1bcef52bceb5b00335cb1'); -INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'2f3e5dc5199243ca9a8298e25491966e301ff9ae2bdaa2bb1f0d4c842a20d5e4'); -INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'387736348976b67e9cdac5c3b49862e1d9f6fa8b093694b504af55d2c7eca938'); -INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'40246bb2268e5166bc0878b0c18697ba00021a5992ab91dcec523b105455d041'); -INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"2b6ed5891fa8a311baabd2434d58b20b9b99b1907629a9c3125e6a46bd93945e","messages_hash":"b748d88bc13e31df2ddbc44ddbcd043b77dd2ee577615600cb3f75dde9c3b4ba","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'41737c0a8408f3a97d298a97be8cfcd41202b63aaa8f588fc07275616b1a1faa'); -INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd18a33ad4b03fa6d2197810ba62a1025e13396dbcb164f0a87fdbe99518c80d'); -INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"fa0ea07ab4ad0e8546f3089c07ce4a506f523d5aab8b882e1ac397b5ddfdaf2d","messages_hash":"d037ff49858171263b82fcd3f2a0a1a9b86042a5c059d63381142310e2fe584f","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'c587af90c64684cb27673dfb100bf094a293ee00044ee89793c9c0b90001b8c0'); -INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'613043a7fed9064dd53ff61a2c60f8d2a3fcb87c4240ac768b5653282f36cbd8'); -INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"82f62cd9d2db4b7ffa1b2ffe26b02e2b785caf461e10d2ae52e45f3028f9e0c7","messages_hash":"9d5be11242b69cd69ee0aef0f4a57e6ce5d7959170675534e358a880bf8686b9","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'de3f1acee0f75e9928cdfdf98109e4932f044c6fd0336d47469184f55f77bd18'); -INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af2c2250b9c952d6885edbbac86c6e67dcd1cf0336bf379b4140d623706576df'); -INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"3eefc46175c9b49ffb040e6d45243838f5c1d0c1942b3992a7332bc88289501a","messages_hash":"be6a10c2c3b9d86f2471d79a832d50d8183ba148fec91757cb1e59557c552b30","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'5a5761a971097817fa4fc90924a17343102c4450fa3296904e079300e40fcf7e'); -INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22aa929c2ed55161203dd9c4c5680fa7e3e8c33b87eaf8d1bbeef70e945d1e9c'); -INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"28486725d46e0199ce88bba420be4ffab884d7a7b2e2ba0678f8581230e77e34","messages_hash":"1ec90f2d52bd0279cf180777b24171f3068fcbc21444c96e7e9ac0390013367a","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'e5a1b128b3651793685d1c54310eff64dcd26328c5d893ac36e988b085ea866e'); -INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dd565c78bf8458f95d97ab99043f8a98c94823a6796b06f2e8ca1b522aa4519'); -INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"1f400be9fbf2e7c67b01dbc0403bd6e491a6b04c17828b5b302935bb5641ef4d","messages_hash":"72504f1412ed10d62d1553272b1d82767e50433c99200620599d8fb8025a8732","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'204ef167a933eb64c131e24aea8637c9582709a973add95cd140add82e844305'); -INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbd4e351cbc1a498f2371b930004795e12546c33a0c090eeb6ebe6295c064aa5'); -INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"94dc958d7b19a69224c9d12dd835317ea5636dc60188ef074aba1e933612b841","messages_hash":"332bac5b9ee8d5e2bf5843968bc445e34fa08de59b476c13b8fc6a766b01ab41","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'49f0b99f8b4e4b4d8348cb76a3babbdb0ad4654f3a3356b3e86a15e25a17a4cd'); -INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9634f4f755cf9293feaf01262f32ca53570e4c3d02a4ff6289b77e3c373eb50c'); -INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"2a01afce6c893311f8929739572ba51a26bc3487bb5d3a86b3d527255043edb4","messages_hash":"084a5f4659a00fe29f5bd59512f954788c8b8e4bed61caea04652d271ba1bd5e","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'5def3988c11e5841b59aa1551a745f035e47313af2b6b92c281a11ab435ed4e4'); -INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'184dce262ea76e559528e70c41d8d97f99dfea63f23367fb9239964e710239d8'); -INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"7ce80381143338f7fe295577f99588c0a7498080b6081f2074cbecf7e4e00cec","messages_hash":"d4d0ce37dfaec976af690473cc2cced701c0bb915c9ea54055f07ae0cb2deaaa","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'a30b925e4652a811758a566e086f556af09d0a224cfa4a581bf4699b6d8e8689'); -INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'405fa81e50f086b531b69ffd31f604f81c3f8e9f58238ce987505ad253e4b05d'); -INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"633d30d3cf5ae719b59d52db9f1bb2c86a0f36f18bf1542c5dc1bdbcc57d24f8","messages_hash":"48bed44968fa117765ac4844272daa6eba4395c5f9f215707a3bf5755944306f","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'ca5658aaf0acf069e2a6af4f0cfbd19a12a9519f809808d98968188f4730c47e'); -INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e1667eee13667ac7e82694cdf36970ef6ecd213ef9fbe27b69c4854a9e410d'); -INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"448a8d6547a75b5320567e88a1e7bdb269c0bc89bea6b2dcc889cd7cdd1c8222","messages_hash":"b36e4bbb8204d818b99f6dd88f1d74d9113f7bb85b3a0ae4c32b19eeaa30abff","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'706b846d485c3a2923261f4521f777ab7bf58352206ba5cd54aca2c83ec55969'); -INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aac85213b57d04b2da7a31246d81a871b66834a2f7ebb09e856113e637bf93c7'); -INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"863149921a20a46d29574d976651d4215cab0458f2125967e4ca3dd33c9b2b3c","messages_hash":"c80e36615d90e735354ad72779162ca9b815c3ca17b8ef91ede33efbfe4f1c25","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'22361ff3ef3f4c7faa150e1220ccfebac245bed479b572bb97bfa29ef46dc0ae'); -INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'215edb5cf42fe7cc11bfb57064f92186566f0481756eb42600f23fe52c5ce7be'); -INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"3cc1c0828c80f8ac7edc04211c0666a04e5b9a1a4ec92bfb1b787136193244ab","messages_hash":"0220aa3746e9b125ecc52e115bf2b84027205f1c706009315884f813edcc840b","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'7cb5ccf924c7ec6739f8e700b4dfd7911492db3aef2d9664171eddf2005fe09b'); -INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b29bd905cff6298c52f64de24e26adc8e5178c54ce5128361291a0b11454997'); -INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"6ac1d3037b61c6002a60ec5e7dca6a1baac97f7d2f5c74838f84b25b159dcaab","messages_hash":"71d9c0e242c76ad8d568075f96c8c351936c8a16a12b60ba6ecc7ec5c8aaff2a","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'ffb27b2eefc1f85ae234a029fbd9450b79c09ec1951e37abfc0c2b3e28222896'); -INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f983fc8ce7e2ed393a6d140c74c903dfa7323b625fcb6f7d0d872d2ad8cb3820'); -INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"57aec827cebc32cdb89a44f3347e3ef84aea4309249ef56ee89e88c342b3f5c8","messages_hash":"3e92ba3715d61b892b953445647022b2d23e75f8c8e082ae42d9fd12203f2026","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'c357d6305dfbc8dff126880b2ed394ba45bb1bddaada208f9ef84d71286797cf'); -INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fc17a93669999193beef72a8f3e9777c917703311ce353a7eca3a3925d77f51'); -INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"620894a6e9f5d7340ac54de5e4045ee75a3f9f0e72466dfdb1fe3a535178e3ae","messages_hash":"09e0123b2e1670a721ee0dcb866985172f08c96c4b459fc228cbbc59baeb12e8","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'4ebe7346bed736aa2cd8e0d4edb1e6b1ca0a21444f4e83af62dd49814e854af4'); -INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef1d2d4820a402534fcf59a7a1842f8e4525065fa79a19c1e672a143536390c'); -INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"07e2563ff6954c9779f4e913d47776fb37383cc52aab657816a641ee319fd0f3","messages_hash":"d05b7aca92e5f621cd4a19edfa5451857e32b407d7a31577a51b8e8149433e87","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'b8cb9b4450a5847e4fc8c20c91319200dc345f134c52b66ee4e755050fcc31fc'); -INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d41a18f709317a314d73afad424cba8f8c5c37c47549041293677ad0fe3ada6'); -INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"1c4cf0891ca3839a30b3eb0907e12f2b6d25294343bc5fafb6b35e6cb1b2db1c","messages_hash":"f562eddd6af80ae6307092f8916699ccc8302552190974937f17074cd5f548c7","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'ef37b7b2d9449ef7898f05f039cd1467746e4fb7b55e4c79a2d8c653a48f7a0b'); -INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0129fe0f4a4d6442aadf6a8c46262253d262239f299752ba67b0371ab880f8ce'); -INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"b33ad1bd548b7d8ea9ec9e335767cac4155e5bc4058ae9240010a4d1bbc65ba7","messages_hash":"d56ebfed3296c08e6572c82302051fad96da990fe6cf02a0ad3e1d5b9f496671","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'14759dd69df8d6070c897b93dd14298627401dff90fed6db119818eacd1b9da1'); -INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa9f9a9c62f2d2e5aaa497419ed8e78ba7dd023df1871d919ade00bbc4694f9c'); -INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"d60c7218cb18695ab31cf0daa15e57b773fa047e889eb2f25f58f190b6b7ee60","messages_hash":"5e3e504ecaebd8cd2bf141dd74bcf00a8bb85d17cb86305dd5108dbf52d76107","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'5a9382ee7a0d60ca604abcab1bb06ab7c9039c75ec4f8beab5c0c2bff41831cd'); -INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5c0432816bd0b755e18030b773e6a3a0c305ae2bc8d3adc6b2f101061b590fc'); -INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"c6e6c6f41c5e3788c8bd63b864dc07aac381940631fbb41ef663b7f035df4a28","messages_hash":"3b8dbd2e11dbacb997e537a41de901e0aeb0a43c48f737569270a7435353a42e","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'694bf69012c42d6caf72d12c4b151a3f4bcce5a5631a9814b9b93d353695d2ca'); -INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51fbeb50f80600913d0125eb670c725ffbccf972b01f38e7f88376de7fe10987'); -INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"7a79997809ff3baac95b6c63289c640d1c2212759122e08a386af5ccb14537e9","messages_hash":"cf714cc99bf82edfe1881b2f126f38e657acf41ae069ccee21f7b88322af5250","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'111cb18282d81246d634b89fe72536e4108b8a5bc29195e4e5d483286c036164'); -INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583bf73ffb2783ff2b1f7b3a58ce9566e7bbe7cc1522c33f056787420e48d628'); -INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"fd61799953bd878d4532b4958ce0167786e5312bcc4e44d4e40e6ca4360c2396","messages_hash":"b028f356c77edd65e5d99ffab4d6e541fa02f87ec6e34a23ad6572f284164f79","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'1092c9dce156f69565d41624c6602b39971996b46f07802236591b1863960cbd'); -INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4045bb786b661ee80b56c3e5080973aa92ecf6660bba222d4d07b6df6b929a87'); -INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"ac7e6cc96c5f0b29755b2d712e9a6e0e2c7fd423c808fbaf4c0c5540a4169562","messages_hash":"85a0916a852de8540d34fee04da85100785592282b74766e7a3b340655a7e9f8","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'3be5dd55a0df300b0864ab090694d6c59a06f13e90d02c0c1cebda16458771ec'); -INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b131d206d49d89e8b886c19ae7d18ee20b5ed4be64dd167a24e131dcb8138eee'); -INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"b5d2e4883917d88b374ff9865a1ae0aab77e632fdb71c0d479b359c6a0d9b04d","messages_hash":"08712b6ef35f7bfdc1ad21fb727fb9c90044175e9b2af232c27a47fcd84368c6","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'ce9e54857a0c5f046aad095ddc57aab1aaa1a8113d9e03ca6d647564a258bb4b'); -INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'188f30e75e2bda92516514e5b17e4e6210052fac83334d235cf61386bcebcb27'); -INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"ddde4211a1352a2afb2f8f07e776223abe27727207f0d4be7aed4a5d82858426","messages_hash":"40dc84a4b4dfc20e528dd20d253922713f6cba058f5b7a61a4f438a3be7a04dd","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'76e4a447ca9d2b74aa7f7188a73101d129deb1becd4050f51681537240bf7951'); -INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36e39754890667784911ec6e2ca362a4a73a98de205c6bc8d5ece6bf81bfe51e'); -INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"c88511f48f31394b83f02299cd4c7912b53b2ed4c4e25b393bf2ebb9f6603f5c","messages_hash":"eeff879fbb7360c949427fabbc558bcec3eb8c876bad7a3c31ce023a00facdb1","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'5ea6f896ea8be94e4cbda1c9b4ff1518e93279d73eceb6ad12eb5ea56f31d55a'); -INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd4f6549093a5f1642388bbbe5d4f3e94afd2f8c8e3ab2794297478b1b856a1f'); -INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"50a113369c1c5f4ad0c625f9d32e0eef767784b50633fff084ba6976f971b346","messages_hash":"b825df7d0c8005424b45cff1db3b8d45ca27db0d318df525ce7a7539ffdcb0fb","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'b788fa4ff3bde4114cd889c20ad8d24342b49903cf708fb8670f11c048687745'); -INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d2ddeed60607602ed74ef4d4ad2c59bc434fa148409f1f5472f4a951e4c6424'); -INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"92b805a5e08419ecc2ac524f7f1c4a4935f4075d5191b50b0ff9b3638a940335","messages_hash":"e172788616969c3623a7b8bdf3084edff999e07df8244ea87733643f700fbc94","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'d300692dc3a55bae3e924a7b98a3cc6240eedb919087a85a7cdc6eb07c3c1fe4'); -INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca64c5271630a33fc826783947d372ceef8a3194e9e422316828dff27bb716e5'); -INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"02e3b420a711514de72f6ac73247d01657c0a52b8703e8759be3f209be90c9bc","messages_hash":"b847760bef80f328cdc5d722f35ac93085693fd838a7f9764b442f060a978d03","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'108a9695eb0b45e0baae7825d04f000fa85416c9cee42e185ec902438cb379f1'); -INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'017ddb54b0d14cf2025a62cf526bdfc1d222011952e1854751486337902bde96'); -INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"39958381fc2e082769d57007101420afa773c9579cbd7b76e1bed001490a412c","messages_hash":"b05dd11d86622f5d67142fab420db830c3a9be7cd6ee27c21ec7055b5de04338","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'996b8a660604e3f9b6151be89df66f9fc2c56f8ec249b9c1721e6264f29b52bd'); -INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6001cd3adccd1a1ac86d506e0f4de9648b40a715e2d4f686fdbeaaa2fa23ad7'); -INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"e93ef45af14e6ee0f0b9506f08069507519add8356765d3c8f5c5caa0d04ed83","messages_hash":"5981f0f33d18c031e037d13060be7921b4edbd606f7cf5141014aaa5cb028681","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'b412bbd2ef3552a4c181d97fe545464b70e19950f3e96a585ac7101636b63896'); -INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a75c0899728f1f6153a17c8fa49de46bf134e2a779d5b0dcef37be2fe2e89c1'); -INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"493093962065478fb01aff143977941a24c60d3613b8a1581ae1af2f140c1157","messages_hash":"d19713b01d2853f442b7a4de6360eee20ff6e9904c47532bce192b16d8a7b616","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'f1e66b185ce188620965cba4274541c623258117d043c77abf40310aba4e14cc'); -INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'662b66b1981ecbfa2aad52a2ae77779a8b150f46d4e1477afc674113d0bb556e'); -INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"a4c8d6dc735fc32ed063a3496f5ca4fb132571b2b085a23360a115586b4239d1","messages_hash":"0f30161575f62de9788cac007abd5355fd4d8eac664093972f14494aaf4524b8","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'b3198a85a379379e83a9ccf5b32af301b092d028effbb96f5d8d27cb4d5bf29b'); -INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b975a1115afbafe4ae082f622865551c11406da5760f605eb5a08f5e563ac3'); -INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"d4655c48666d1d4fc06c788b519742a4c19dc353866b0a2ff1e182b71c154ca1","messages_hash":"473ae6cde9207412c50f5f7bfb822c007f383c4dc861080b71f8d1ca29acb329","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'de2bac8c44ff6df19691c481bd7ac38dc731e24e2d6154f01ab2b6d2883eca78'); -INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe70ffa9f5f89f73ed41dfa1470dbfe3d1b4caef1c963b241345441e052f178b'); -INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"1f5ede836680debc2ff19698efb63b4cc37ed95a2a9460b5209f12dd236dd71b","messages_hash":"d175f6b45f37316b94a2357612d16fbabb00097545ffb29f5d15bddb994f5827","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'c7ef8c9d483d44ac997a7bb13817a93e0d92689209208f46e1d3536a522064d6'); -INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2abd796c87f86bdfb6e103d23ec1389113d47ab0cc336664386cf775181c42d0'); -INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"b01bcc4e0b528f7eef091396a0bab1219a9c39f465bfa06216cd58d2af104f88","messages_hash":"a6a3c982e38a1244703cf0b6ae3ecb225a9a1976631a63d705f5694954046b83","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'f9117614165c9050eb4f229989d5b428b470b1ac9f117ace9605f265439ae6a4'); -INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2f85ff6ceef93b8e31cb2c7c6943877b9b31b4dd77d8d7ca1f4fe9244862b2'); -INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"e0fb1b97fc499c10da0c31ede538220f0b1827306ecaf6ac5295e385b822a4f8","messages_hash":"291f08f20d78c550fbb7c00125b28c45e7c7cfdc9029dff7b55ac44ceec529a1","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'0d7ab385d790812f2e1e32ddcc774fae5510c44af08180f11ab4686c29adc750'); -INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b62f127f05d29e0fbbd897a156d3ebb6e2ebad05e7e235f16961957d0d5711fe'); -INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7860bff97baa8a06ec63984facbb4111152056dee7b866eac48798c2b2d7ade1","messages_hash":"01710befe053acf8b4e47331a5269ae4d2bbca7d57553b2b51c1b509c388f17e","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'0ec90282ffd6131cb9e63c0d0776f78f7a19ca16a9526225914abd6e6cdb596b'); -INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'372a60762834e9bee181f4034b78d20541e315ea5bad5846f31d7a8d714bf710'); -INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"cfdb901a4a4001c616f74e82a69eaa85265dbd75d7ebef23132da0223477a521","messages_hash":"1496ef4148447fbb65c238f7d9e8f37033550367b6050d082ae00a966f7f591f","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'445697f033a16c5b6bfc82cb9adc8e0ed88493f25f7d852d016fddd8ffb6961d'); -INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09c0247e64acdf1f0ee2c85f2ac93e6a5161fcd6c76d8f420aaf19014a676a5d'); -INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"fe6029c6a31f8f6b887874e32f47b24e2ead712f5bf2143c51a610ff5774fade","messages_hash":"93032eba309dfe27a9fe6f02b7a4e0b338db4d25f0fbf2d556f3ed8c150a7eeb","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'84b2474da6d35955b5186fab134df170971259ead384062f06b1e1ef8ab93071'); -INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7b332d949bcfdc5dc0cfdaa1b55f6c279add4565cf82cbb9fb37fde0d63a1c0'); -INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"1aea599636c06048232ae30cd5306e8501fa7c8a1c7fda1c64e91e916b6a18f3","messages_hash":"dafc93e63748801e23b38bbc998b79818128175ffe36d28b5791427b11dd8daf","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'202e2477c97756dcc7883361540fca389f720d9c1a1e57362359bf9f6df8e54a'); -INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b2698cca55b9cc31f590f98d4ac4a6af0c41e459fb8c961151a3a889757db4d'); -INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"6dbf610c6e9f6df39fb0d6278a94479efc8054f972b5b12a27c6b69e5ba33a0b","messages_hash":"8efddc8780fc53657b041400d9211af3a714665bb2de78f15d286aae1ca44fde","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'a7c7af1ca268ed5b092d518840d6cc28e8126fa7f2d1c92bd3d17673cf3b511a'); -INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bef2b6887c13b9ade440560aa5d917fc1f5dbd11abc03e924b5a284e3677fa2'); -INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"a8ac00e96ef557defc8166a57b353f3c560518a6f64ddfc40ee9857527d923e7","messages_hash":"b38a1352c57452d8b4dfafe3b011e481d09a6bfc50a36f7a03974bfd28cd6ffa","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'d8d7e3a46a6cb37e383fe76b725dcb625391d04f7df5e84f12e5be0d676b23bf'); -INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62b736719bc303c32eb49e4d58908f9db5fcf89f6e43332ee8e1b146c998d1c6'); -INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"6b121406d709c80d6c480d7465cef458289c6418e60d2abef7373e535f01da5a","messages_hash":"ecd232604a280342a3d9fe70b9bc4dc025d105a06d53c24c50485a81a6dc8300","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'9ead95d0db457a3494f2bac0135c6b5bf45b5df4aea2f998799c6d0c000eb76b'); -INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64287e18c5eb8e0b15e9aecdd488f8f218439219edea0fbeeba10fe00968d379'); -INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"aec338811e77782a36b61489c6201e4087c459f97081b52b27c61fd46154744c","messages_hash":"e467ff9b0ad6d2618a5d5a8fd028192a02e04a3f036e17faa677be14a2afacc5","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'683d2acec515c1903d7929e24110574ceca1ac922a42a25d6c577b7a5f9c9cbb'); -INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aab3717052ff4dac3776794bf94ac3cbb07104baaac2c031288be5d8e8b7485'); -INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"6698e342fdf23ec07cfed9f818932939b250f4633bad94130bda3b38892a2197","messages_hash":"ff53d70faf14f236164d83f9bec84767bb26eda6b7cc32659be878547c567a00","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'167d8cdd1bd57396fa2edea160219ff8299619ff3ac05f344b32fd70f16c338f'); -INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad615f4c284e4790e006e81970704ec5f659554ae5ba5ab484f68f96e9bc1031'); -INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"cb2ed29ccbb251fe49ec6446d9ada777adc65d13d43b1a0fc85d7d42a4e6897e","messages_hash":"db5cd54bc42535433ceb6307ccf1a8f4ed08b85f7ba26873909886f32e0b3964","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'d9de3b021de4237bbcbecf37ec405e87fef1b811e10f00851b0c3557b1ab8394'); -INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fa3e7600cc05d70da40352babbe30fd49fed84e7de024f86a4ccc242fbacf84'); -INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"aad0dc00f24fcc0fca1f5d20634603a27dbd3c4799439eb72d4d545cafd1d988","messages_hash":"71152b055e993a676f4cd9d26e422c202598753073e15c73ae2b9ba8a2db0ba5","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'16a990d1a234278eefc99eea448e41907bf2bf767d35fb15b17c7adb75d2a6ff'); -INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9b2eb0f2fe907c280b3cb93a781fcf3433ab9c5fc890edb3a3cc18146695bb'); -INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"b3ebce8ee51daa7c82de9e4a6981d8c329ccb36683e640ba57971a3e505772f9","messages_hash":"2feb4a00cea66a75d558b61bdd1339514b0bc55cbf6a7ed58024e556b767a5c3","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'10adfbaf602ceffd1fd14e915fe8a9f78a3e1bd5a4f5854434de6cb631fb328a'); -INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fd24bc738ce8665657a69647aea63c39bd9aa7d0dc1020722507f5e0e054f30'); -INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"e01e928a82806efbbd3d333e40d87ec96e73aca4b370066ba0829ec26c79a6f9","messages_hash":"57b9da1beaafa59f7b76172e285dda9575e70bdfa5d68897a1867647acde5c95","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'c5a84ffdb89731f4197c1689f63d93289f0cb97129c16a17ff0f700189df4144'); -INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a29c0b685272d7a2aff1b643fa69e8427d713130cfc61da60ea35699b8a8cf39'); -INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"31a11dc90bc8f0ed38e5e1ff602f4ddf916affb57f49f64abcfe8935ce499fad","messages_hash":"fdaac717cab654c16452e561801a0bdc33e536576452ef79d77eb1b2c69b0b24","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'626b43f67e44360bfb073b91280e80af68ee5c519033d3914cd591b115af7728'); -INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b183a0bb9565ed680a6d746251e06811e53da1552ab7cc6caecfd39104891c37'); -INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a47e815af91e9d9a9eb0e047bed344a5dcef635728c60e04976b63470538813b","messages_hash":"24b9982ae9235a0d98120d2f34132f1cc0937b17854ed0909ac924a47c084e75","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'e483af697633ee460462b9e42bb6c96ee90a78486e8f5b6965a436f55dc2c772'); -INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecd4dcab71260ca92d524f20906c062f3e9135c12a0489808548d4619c27f497'); -INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"e7b767e7b1f96c00ded9dffe2d34651a0c566a1a1113a41a61c7796326958b37","messages_hash":"061c39175caa1f453d5964cd0a64780176492fc118f7c93da9b0ab45456d8cf0","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'1795c0bdec11af30a3792883c6d3be0d374435aff3f3e1e541b8a7f9e628b03c'); -INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8de49e297899ce0e3366e35e881ca85ffa0f6487e3dd75e7d21801e5d4c7c45c'); -INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"cc9ce7b97387ad0ea1ae41874b14da4af1f760e23268050f8dc24fbfb612ec9a","messages_hash":"90c94dabc56e356831d6039f8a5cfebefb25dd90adec5371f30b0ee35664b800","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'1f1032fb9ee179093ee9ca0c6d887729e1cd2416f704b66adf900c2b67cb67f2'); -INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e970e4ba33179c01410f01f0ab8320043ee66ff360319237efbdcf6376f461d0'); -INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"1ac4609986618debd4584744e965a8c451c7f384c6db65b0d45ca18b2ba4c81a","messages_hash":"e774bba1a81b1902bb119c276039fa25b646952603a3c3bd6c286a64d268ea62","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'5a575353b57d7daff09963f5b82002212afc32aed0ce15de493931057f347e97'); -INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'817b0ebb6c87eef9d1ad61fa95c75b70a591146186386fe511c5a3fe05321cb8'); -INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"22aa951c38587557bc58d417333ebd017b9c716ea84da048b918e68199976200","messages_hash":"429bcba6ab5e6016321c048700e8a1051f0f5df8c42dddd1c3676dcdbef8c793","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'cd4cce3d75c635d6a02ae384a2364db73ebd35403747b88d6c18aba557d5dcb8'); -INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'222d301bc40557334a8cfe805be2a302807a02b672b3e08096cfaea229f13e3b'); -INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"56f2319d3afc338f4a3e0cb34396ade34fa130a82cfd2a263f76aab501c064a0","messages_hash":"41c15c8cae6e4f81eed814be06429bbc0df80712f5084feb094e97c3cfbe6e9f","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'a4b51595f94c9b888706ce425113ac376106bc8741b067065abdd7d0ea461959'); -INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7bcdf8b57283ecd71e053341e0b7c7fc845adaadc7cf9bedb219316e76bc76b'); -INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"afa093533d1a4d85423ba2fa1c5e5fda4ce8a10a913e1d60b9c59642bcdd5e3d","messages_hash":"70a453fbac9612acef1acff540757bf9013ba0a818f717072526d393c272404b","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'a508cc42c95ee5b2efd5aa9ad254d4e7f2b62fb47f8c89f5a82df017ca62ff3b'); -INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e9db64c6e3d2396a71b5f07f7044332159315a259d8cc8799d4c381a3546ea'); -INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"9876cf04f294b2414421a174442a0f756d34c45b737078b5cce997802b8439dd","messages_hash":"e5dbe3fb0035723726af411ef3ad0cfd124d070a47707c9e0c1b8c4e4dd946fc","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'c4ac4123fc0bd2afd6613579154322adb08b951d714f17e8747e1e2e57a1cc4f'); -INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0c426b3f37d127aebd5a7e498b48ed975d783a1137c9983a1bd58332916064a'); -INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"f4c84e207b9c20a467a3948d931d81f27d720bec23079908a54cc79d6a8dca7a","messages_hash":"a2dcd7d03b836e03a9ceb70285b06e33da9f3a18cdf4640d33b484c9ce88bc45","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'c86268cb016c7664a9cc2875a26db52bd5874a7cce5310b6970ff501dfbbdbdd'); -INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f332136c25af9b522ad40d9b96c3826382f37538656d9910ff22e4630dc190b6'); -INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"b0508e9d7203a85bbf8a933fdb032f9a690e5c679e1497c1c26ca2c98dae4dac","messages_hash":"b6e649e548b1e84cfd99ae143c1a8a908ca0dff3bd55a799cacbe9e5ff47e4a0","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'36dbf2ebc40df8cad6101a5340b446eafea1a7dc39e4afc0a91e887a93aac800'); -INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef982cce4008e345d5acff80ddc0bd957d942145dd8bb455367356f7c7ea7134'); -INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"84fe96577194b80245513a6501d88fdbcc0a2280e1d65f65c91cd37ad9320038","messages_hash":"5c638831fd75fbf72292ea0eb6d2fe5baf19960e4d333c0d3d9eb605e8ef6709","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'5aff51c37d52ab5aa17ab9c9734f901d2ac8bf89188c74cf7d052665cb78dd62'); -INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0370c0364fd34f4e24eee38a034a3375a5f80467effecf36993113d88d153f33'); -INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"21220b602145aa4cba41465e8efe437ec78a114b42993448a8eca6a92cd5a017","messages_hash":"b03be8869da6e22b23f0cf52d80de93dc6d18fe66972f34f9c65aa6189eec85c","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'cd856a886d1f632d3e66eac07b01bbec9445ce395d3cacb895d436634e78c71c'); -INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d420e18416663997825a173c8dd1cbe9cb8f015e3b1a004cbc7718f3e093ee10'); -INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"706e5156f2f64f5945001565624646289f86b47ee82208952c1bbdaaa83d1194","messages_hash":"5f299f97a12884c443200adb30f83fba959673602f1e955c206da76eaafca727","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'e53586f229fb0cf1bb3ced1158705f1da5b8bb1ed457611a951bf463d297240b'); -INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'950de20726ec5a376f0f14b1b0fab77c6ef916b4e2e815aaeb69ab014bb89186'); -INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"70f025864111af0911d2b99587ff6a2966e979b82308c040071c3810b6baf577","messages_hash":"8dfc72f80d2649bffaccde833549038ce7f7de61abad7ead87097c6ecdc17ccd","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'d88631ed054c5b06c69ec9a97a7f4e187c3468de557208244576980d21fe3a6d'); -INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5692c02681c7afcf08558728fe9e531953fe561f7ad2801546f805e2ebc33026'); -INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"394a945efbf934add6e4399111dfc5fc60f04d78d35db2d8785b84bf4ac57691","messages_hash":"5a2101bdf085de75649e23581c6dceb0ea41f5c919575efda7682f0ef64037fe","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'b28e86ec6d514252ca17869a171f866feac183cbeda1cb3b5eaa9f7efd273320'); -INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952c7c9872ebb4f31704d486a7c3b4b1bfa17d7bff0f6611fd947a2740718ef4'); -INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"2f84734689305b834584658cc148588cb21b7cdc86f901925d861a1a151cdcff","messages_hash":"3b37c33df02a274a41011b240d80cf9ecf3a3dd244d60c30b6fb7ec305f83d9c","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'4c94c417beeb79921cab0471420d6a5bfaf15012add29f329afd4ab98124a998'); -INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c64651b0f2de2ca41596e9d3aa98542793e1b80b7fa6d5339ebdcdd6618f3fab'); -INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"a76f17434077d40809e76cf4c14a5fbe0f1da2b70eb7c9b38f7b2c3a53bb529a","messages_hash":"67e9d66090ad41768f2d0d5a69e6426fc991d415704dbacfd4ada609c5b36941","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'e16be21b8acfebe9cfa9c537210b7dcbda8f8fb8272fa95e3c5eaec00280ac0f'); -INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1be15a98fba27c254d024934d6f0512e69fcfebdf501fb1d1cf16990dff4343'); -INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"eb2ef4b28ea39c2f426aa04dfcc0facb900dbe86ef4a3ca2bb689c091d9b7bf7","messages_hash":"67a04741bf174591a358366100b6f70cccfa964686ac3618c5cad48fb6b456a4","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'88e4621228890bb2294d50a20cd68261a4a4c198700ad4017c1d700aa86f1b0e'); -INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e276160a28b350428b1cb01e16b1e36dc430c6a157b01ba9bf5abc9f2279fb1'); -INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"e6da0c620ad44c424d9c11ee1ff58ff77c4326cfd9802fc6dbac0a09daa0669f","messages_hash":"8e7d7f660f87b673c208de300dd7f5fdb5b5e0a33cb525567729aa5308eb0b33","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'355a2cb850ee7d921a132d49af5ae65aafd5a045bbb8e79bfa97a47fd2f8bfde'); -INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06259f6aa2c8af767448068cdeb5da2608843ba21b945fd53eb9706c0a363d66'); -INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"866b97fb8826abbeca407e63ce8d29408f32378c84188e87c4f6f77eb9ea6654","messages_hash":"0c2f760a17836413340468758ba1ab606a9aaca9d64752641eb9829a5a1e24d0","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'3e6c300f7160b62b6707482279eb510334b43cf4d0b6eab1fa2d2c8673f13789'); -INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'478ed82b37cb4f76d5b1a2bcab480a23de7bc1929a055deb151ebc6d0ac68d79'); -INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"3a67d3f0a3a6ad1a8862a034010bc34f516ff0ba608652b62d5e6ec252fb1d8e","messages_hash":"91e1908d557ccb8d0a35b17fb47876255af745f7f3248f227fa7a26e208b99d3","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'b61e771e9c9108e9dd55752d8a7a3d4a0f5c0b3a3d6e95e7aac64f287093cb5c'); -INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea70bf0cea18c3597f41c408b77413aa66d8167bb639d699b86fa246d78b7bf8'); -INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"ea20581165838ae30fe2c3e7f6bf0408268e5c7843fc215aa64d63e17a999e68","messages_hash":"e27d992c66db3aabdb819c8a97fd9f6cfd8bfcbb3363ffe5a53d9f6dd9a92bf4","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'1e264eddc6408294262e4b14802d31f232e00fcbc305b423a939beb2e1f589f4'); -INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'132a946aa3e8485cef7173a52c1240a3b0b4a2ec1338408fbed0863baffe02b9'); -INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"cf5843676cdda05a1f54ea987a631aa426d50d261396feacaa39074215093efe","messages_hash":"0c2006402effb775ed28c6cd33ebeaa90833c52db1df279a73813bdc9ae41205","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'7e0d13d5c5a2b5ea70894fce721f09fc6603d5ab9d91b809106b3a45fc1ff368'); -INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3353b048b62c95de22255293aa23d28ae60da4af72ead47c6946ab7b5461df3f'); -INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"672aa0fa9f24ffb0cdb5b46c21d62253c312cc6f03f5f9b74fffab3da2f1078c","messages_hash":"b07da90695ac840f93274b530cb15697aa28a2c81acaf4a9cc257f52dcdabc24","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'0a6d68106b95fe75413aa77ebe58dd97f0f0d87529faeffb3577cf1ac040390e'); -INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6f8c683befc8bb778a6ff70a1c6c4d7cd7ae8391b33f616080f4f3da24edc19'); -INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"4762f2539e3727aba69f4cc096451b87dddd2939ed83abe442b900095acb380b","messages_hash":"432c12eb049145f96e21c148fc4b6a6fd76c8f4c586aa096382700b6e4831659","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'9e48b1a4d509d61c2e86a45fa1d3ca78c24522355ccdaad4cf8897417a944e13'); -INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'118c84f148d4e4fed2ae954cded5ba8594d4f2bb7692c2601bf1b2d52af136ad'); -INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"dd3c13732c5f8cf9e2094c3347938b0b39951760b24abe65e19704c00f14219a","messages_hash":"cc050a0a1fa6d179e13d3b1f47dfaa50629b799dff2aee069b306839ff8196ec","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'57def8e387221b04d62d9bb9c4abee4b79db74eef35f59ed08317660f52c1003'); -INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e629b43abb61eb58c991d7b2b45ab91f62adfa4442fd39ef82cdbcf5cf32498'); -INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f453f8cb0adbcc65dcb73df8b6f1b9016f51087ac3635fd57114180d3a8bf2bc","messages_hash":"4e37c80658809d066e68f1edc9c1cf9ee832a82306f86b8357f7334aba3a317f","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'931d0e816cc4231043126395778ddad88bafefbe973f73519f0259a6403b3717'); -INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb83d95915a55325d7e1a8bbeb97f8ee073bf121fae59ccf20590007dbedcbd4'); -INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"590a254f28da3273e3515ce9f31946f91fb68c998b54e8634297b2432265269a","messages_hash":"2e56480ac073d73d54f6bb6180ba85d62a1bf57b1328e059512aff1357bfaf4c","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'d3f9749a6053f6e0520d83083ea520217764e791d7b33ce4c250e0578cc4858c'); -INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1df8f1e40369702eabbec71df6d4a3bc33edb9f36d90992de49498bad367b7ea'); -INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"ee45b6bce536bfd059cd52ee6805fa974c5efa54b68ffab511d0c48b2ea8c03b","messages_hash":"e24dc0221a783d8246a289272f0fc7baed8426b589adf5ae7347144c789ef483","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'ea681c0dcf3c2e3c3e7670f40b9f8de4049d1b5618be78204d8c60bfe8e1ac42'); -INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'519d175aa9edd6cbbf9ab850faedd26ee66a5bed08c94f36f7c1247cbe120025'); -INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"3ee155c31b9896a3653a671b7e43c7929c256ec526ee596be3b76a28c89671ca","messages_hash":"7dc00340db7b3ef17ad094c67462108f842a4448c1da29429521121ce075db1c","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'89ac515e1f974c4c3f39deb4b1d097789349d9bdf9671b08c421dc67f74fd7be'); -INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e63279103557116d8387c26121fb1fcb198529170d02c9bb9fce3380b9899f5'); -INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"b224a97b6919f264232f47bdf321774bb75e86e7615dd222afb09f99fbdf28c9","messages_hash":"a156056d91cf4f928b8cf114003677f899c444357e93f3573ef58fcf34d31103","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'666eb9f873cda9efc8e8732a152c0009772e240bc6ca3236dd4441a1812d1d12'); -INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1f507874b2c61283e40da56846fc83355befc7c59b97eab1a2e3e8f8fdf689c'); -INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"70e1e62cf4063068cb4512a212cd459dc6c050dad992f673e420ac5050a1910d","messages_hash":"b52d9db5669f0d75b9f1ad92252146c19b99bf2bf4fb478efc393ec907d46db1","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'e9b9bb3782009d86025d4dff05dcae4a02a452abed7d9342de407c5091021b47'); -INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1427316f764e88a7a089addef9e223be1d7f4833305c46d329884c61d2866df'); -INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"75fa6b988f49350e6175d159e6868c55e8197b4442f466517c637baebf3a7375","messages_hash":"2a4b20492bd8b38a76bb7f1cd10d64794afc07e45fbf5d35fb95ff27a44d9a59","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'e4760c483088c656ddf264d6cc9fb6fddb83069d6c2912ebfdb9a48864cc009b'); -INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e4f51f351c4582cb03b661d8266c766047d25735b8db2cc57d466a429b5786c'); -INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"63f1406c16d7b17c7e0db1ebb967b67afa182c86941f2730df9dde34b2946a68","messages_hash":"032aacee592caf6cd9bdee1227826e4912242f1c168e21a6c6e542ed98739775","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'ddd09a5440c181708dbfa5ab4e28a6e19436161b32be0579ada2d02c8ddc7daf'); -INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a9b46d9ed6dfa4fca112ff87dfe924536171c13d2f4b6bc927e74fee25eef594'); -INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"72c2aea4881fd2b794193c91b22c4770f9a63b2243021d92d407860cf7da1384","messages_hash":"4d286f0b2a31fcadbecd8c3e04d64d951c2b7655c5fe3dc53649d2d5b46c1f5b","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'59464bc118cf34aee73d6005d6bd1cc644bbaa5e8e5447a5ed8b837faf74b382'); -INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1ba4937818e8cb5ad0c02c86b3b5b498c73e19d4f53cc3b4f348531e773445b'); -INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"fb5b9a78a571cdf1a0ce99191decf8e8dae0c16bf7e7e082e9eeae78a322338a","messages_hash":"9223bd2cc761be3dd84d746510373d0e18908aa12104da39c0cadfe219fbf726","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'d58f9ea2899da88eb9eab157b926b54bb7babb86ecb025f79130c7207dc798d4'); -INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fed2fe1008c7a34ba733980db7c807c45b3fcf8432011bca59a5111eae41a47'); -INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"8a80c9b2c5b1d0f8fae66531775ffb6ca9d6fc7841946b1998da5666361cf9ea","messages_hash":"5e1996831c063567ac096823adc780205104089c1ec0f657340a360d9ca9cc5b","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'8c39418b083f3582d3cd13c5b464f9adfaf9c0930b3bad2a13480c1a8b4ad439'); -INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24c0780a45a570b9fad90df58b6137e2126a2a76f6a2f55008ad05438df2eaac'); -INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"3da03aec78d0f8b57561d472231b7a82967d0eca4f002a07020565b98abea087","messages_hash":"8e71f82f7db8f7a9ec0fe04ebecd047ffd8ef8d7902ba111ec816504591caa82","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'0a4078b38c09dd6dd041b5fe6e0b77c92b0a92de286f60c229182869b7aa1cd1'); -INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37ce400d14f4ef3d2c1594b349c2c71ffc8cf74b7d8cf5bfe52cff492c366494'); -INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"169ccf0398c4e78790c160933f234a2f30c1a48817607aaaebd60faeb121c6f3","messages_hash":"71f5f9ae4a4307c3ed89ad1a4f879218328cc29e1214b233afd733767d439cbc","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'e52358cad6ec248b95888485e405b020b76d7127f3fbe42cc738253b31604fb1'); -INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cc10c336d5acc6383459c2822dc7e0bc60994c1c17cec8bf63722f879d341b'); -INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"704f7bef0c489b656f4f8d3cac1c92131513dd6e871accfe54054a59b88ec737","messages_hash":"de221f5252f16405c77a7a3cff2dc89a82e8cde2df4851aff992cccaab1a8fcd","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'375746c4494cb7c73a543643b51e84e688b4db404fab382e59cc5f7dd9ca5f08'); -INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0e536402e71670037a0c2f7693ac9f6b524b81c336e41e3f7ae1c3189a1e3f1'); -INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"0554c3da68288166d4997aaa030591c40992eb1fc36aeb1c199c729dfe14b962","messages_hash":"1af17918444877448c5b8073f31e6937c3a40940e8bc1ab879c3ab49b984df59","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'8cf36dead5a061b843d47227ef1b1d77d8222a8fa61eb78cbf47f726974d341b'); -INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3299a61cc0339d7cf533a2c7b92accf3aa468668605414862b01c5d86037a68b'); -INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"f46e3334c4d5470580689247d816752537a8db9bbae983b3a7a90c51fd37a875","messages_hash":"2cedfe7a2f1fb9ca7056f06bfb6959c2246775b43c5a4717b9be6965f9b39185","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'f4993217aa15337ca41ad884d99ed5dd4ccc62410033a3d3c54b89d61625a66c'); -INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bd96b166808697265c89975ce33e6cf5aed45fdcd5dd51ebea226e3ec7ea8eb'); -INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"befd6c426ac3790c7c9e57d19457140c04b05b84d447fd3f1e01d985151b3bd9","messages_hash":"04512b402ee91dc67024ae45db66ab9c6e3823e9f47d074b3b3b745914649dcc","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'c71919001acb896be8c0ef2d10779596f0f503451e9012d1957b812b20872575'); -INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8b3f2950d68a363b4f251a9ef08338c4bef871920fc772b67607385f8b58605'); -INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"fc876b1bf1f6c24ebeea0c09263ed4836688e02c2638db2a6d3642fdaa76a555","messages_hash":"0323b89215f900fbed1bafadef49f025549f6d175b6010019a59583e66cfcacf","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'6dcf595297f7543fdf279c68a8f6158209bda76d0cab56d337175747b683e3dd'); -INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11978d808f0f86f284a7b9ef5f5a31372cef8d745bff8e9bdefdafde4937f98d'); -INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"a0d1bed84591d00e0c0edf14cc2a1d4499479a029989dd74bdd2b08a4e747f7c","messages_hash":"e1a0e72d15f4bcbdbcdd31f5e19597d0933c9ae4af8aa278a02e5aa0f7d27993","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'ae35f3fc6526c8b9201e02e9e42c5f07bcd9c559b1aee28d53b02ce59d892198'); -INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'570599e8cff5be22d74ae80dc4a894ce65266922829ec2548835b56450b17611'); -INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"0c9715707116e33ab4cb4c18488d981157498b2ef510f99442c1bca842af971f","messages_hash":"f6cefae9196281789d6b36e6a87037d4aaaec443cda3e2179ae0cee14a7edda7","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'884ee050893f771e2ab8171ed1b9bef10071ff02a21859ddc5f9116a72f3d4f8'); -INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a7f140d8bcce82d2d3791779c51b81dd0cb4da953c39d9d7d9d37ada50e6889'); -INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"d6da1e6d3b1639bc8aa69a03fb9c207e06fe6fdda1c59aaf6c0d40aa7ac8cbce","messages_hash":"775c252e3b01a9929b8a80a2fa9691045c55acc618984d731ebb82d54809f796","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'af5438893a884a96e0dcaa7cd28e21d9d318feef14c4cd5a19098c7c6691b76c'); -INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e394cfcf8041304ffdabe732ccacf31d0a6ab4a2ce0cf2d47fa9fd7f50b7f3ff'); -INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"2fee1895591829f5a9bb2b1a8857d619f4934d176121ffd7ef79868996e69592","messages_hash":"e9eccfe2c1b596774f8474ce14e27468ce1a0f617370e372573e71de898a3599","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'aff87327c2dc50f2e068eb40a85aa0c3b0445f5df42fa7d4ff48540697799743'); -INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bfc25d2069cc3df6cafd6821e9efc31ccad439b4f425e7159ef56b86026d5b0'); -INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"8688762ca2430a1b773dd7ba19788e9540cd4f3ecc723de81bbe2e5157d78472","messages_hash":"7e37a38ca6aa5c3b4f5326d2edbf178b920be0415b1c3f3824fa50d6edee179c","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'5c36d51d4432badebb205194e03930633327454148be26a3c4cf2180607c00d4'); -INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aa323b026571a02673f80fc6f329c677ec886accfb7402e6df7791605407963'); -INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"63c8d65ba7ff7ee68a1f3e9407c268e71b8c6a8850031e64e898e2f5eebf3d34","messages_hash":"31fba2e1a2db987d6b603fcad02320bb8c33005295392bf5713df7e9c356ba3e","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'e409cdc8d45913b73999413860ec212f6b88c593c9bff35e72b6373c610a1fa7'); -INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5f4b3ad489407fc5b270518cb57e450c306a430ed9cb883896ce5590325a38e'); -INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"67016dd178fc017dbab48c4733c2c73034f3157e50646a4b2a4ca9c400f88c1f","messages_hash":"891aacc2f7c5dd5b5eefb14123f8049205b3e1b7c77ed8e2335735afa3459b3a","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'08f6cbf421e45c17988ddf1ae48edbfed00b6fd98b3ae2c397efd2eb4442fbf7'); -INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ca74cb9554f057b45021ec12415e58999846f4bf094afbd240d15fec0e7467d'); -INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"c773dd8577dabf8f3c0b78d72d2a58adefad8a0b4468a4fd9ed4b4b6b9489d5a","messages_hash":"c915a0f8d58fa855a6ff791d60766f0980e11e4a7ef7890191fdf3dedc7b3a65","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'ad341e6285b38e423cab2a587f9f18113ab1b5b919b31de13d40f026c0f99d55'); -INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e946e5b1414b12dbc980742e823cfbcab61b835731a486e3039bdfaf5941ad32'); -INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f559bfb934b8b96b9b42ddab04a2fd493c12c90376ed963858c519e72c82e3b3","messages_hash":"d1bd413613de0cf7318e2293f04a32e35f9a6e95355c63c913c9b80973fc3bcf","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'b423d04bdd25d14bc80608d0a4bed5607b1ff4efd93ca91d4983636f3f559924'); -INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a6fc423885d3ad5182e23e1499cc5b86a3d5e83f1081802d6519f7ee79e123a'); -INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"89c5e345f197e6bd8c32ba5153f0c31bbac2fc2652afe412e757a272685c33aa","messages_hash":"a43aa01ca53c415b801acf1fbe83ed36a49981ad5432fbc84a0f0b28c9d08981","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'af041db9cf85811b54e98c267e64c2c7695efeada4e676ea83c4889fa9353106'); -INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'485ee641d2e380495869a947d2cc33b66cf86eb59ee1c09a012847390dbf7fcd'); -INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"f3b637761d009580ce940759910ef3385b4780f2ea57f674a3912e5144b496d8","messages_hash":"e289f15ac993a195f32d0ef472ac1e84a36b57613c4ef6089488b5f0440082eb","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'35ebc398c3e129c1995594f28d38d913781552ff95f56d668e94caedc38ea73b'); -INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1669673a5b93c6fce85bef41cc8796ac9b7a3e37be8f2737f37e074c2759d4b2'); -INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"ef6655c27691018871b6dc327c9fb7f81e9b12967b2efa575fe4f24727a12516","messages_hash":"e2a732abd38072847b2cdb383913525995dfbbbbc0972946ba05c2d440862192","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'84c9c3c820ead2dc63ad1ac79d92d81265685bf973d8111e59519fcfab479572'); -INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8680a4b6afce64bb8f69ac7b3c678146877a5bd5faf7129baa57b4a6b17586e'); -INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"aa2cca3045564aaee758d8893db396bd4c9451f1f86d8170de3d3509dc1bec52","messages_hash":"7c4a8f574231ee50d02e48738b105a103ef9aed940eb5e0ecfa6be8244200adf","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'3cb2ed6c24c7e8cabac83108f016701f63e85142c36bb642e13413bd2b0bdd8e'); -INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7c9ac7adb6b3f8e967861500de50b20676bf1f6367ce2e833f416b4afb147b9'); -INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"a57998dffd0c335680929446d6ac02a35de9cd18f393894beadfd12e6ed8f737","messages_hash":"25e3090bb024a94d566bd22fabf17ae5179afa76e5302f94c46e2d08888985c0","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'d37bc5033de69b81ec98e3efce5efba37e1b09aa0b4b000741b468799399b08e'); -INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1437345d30a80c61da2eaacc3242745332f339753bbbf6bbeb39e4cda7218726'); -INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"6fce1756267d81b45a7b01c65960c116569755f0881f9a23c9b07061ffdfbc96","messages_hash":"18987e8acd6141f2c85842316aa96c9f4f947d526de1a19c10a1c7ba18cccacf","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'2eeb7269ba3b87d9bebf0436ccd58356ce90df5e66d9fa370566594ab79f80a7'); -INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'226b2d26055f70e0891b490c50fe3b225041370f1d48ac9a152216e5aabb96d4'); -INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"47730696e0c76e9f462e37b882b6e38712ef0d5241dc24e6ff169aa785d24d54","messages_hash":"9ae47b7ef3de1e6a88d34e4c3ec15dd4bdd8170e4a2436dcb762b02f11f553a1","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'ad8348090c4977771cabf0be6aea102878b385644d6b22028bb5432929d5218d'); -INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29744c82886875ebc4d20604e84e1755750d2fc09c4b804f1d969e3a5eeaf8bd'); -INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"33aa36aec707bf3d53a40cf0d53a6683e13f5ddcf28d18bf8e4ee3dd7157a753","messages_hash":"c2bcfc3a80630a5292e71f1b2e5d46a88439f12fb3c435b7eb76419842f88a07","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'572614f4437802b5578d52897e07b143ec4f83736db82432482f3fa264532612'); -INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a76ec172abfe7896edfaa6fa36361cc318f693c65a08b2df197151297b5128f'); -INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"61a7cc0ba60304365f584c2536a178d79d5f7abfc4382a575b5711f69f90c9d5","messages_hash":"923ef81789199a0802e87d8583516d6abb456ef83a2069a158c956f8e722ffbb","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'46497010293ec1f195b396441c3c70fba3c707f12970c77d35f8db09f3cc1990'); -INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b3faafcee1252e532da4f2a65605cdac0c34f24c4b0ec1413903c15e7373990'); -INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"854d3384203cf0dd5f8dc03dc5dbbe05545f4cfc1ca1cda40ee68723f78e5638","messages_hash":"a05d54ddbe77016e18af508cebea1ca4afcaf5f79b6dfaa0c4b9fe6b53c72b2e","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'b3d5a94902e1186fc12278dbdd1f932c1e4e327e32d8c93264523ad31e34c535'); -INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31742b197f42de272421c351e356d94f6699bb0d5bad00e9142c9fc2df3e72cf'); -INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2","messages_hash":"70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'d44081ef15bc4521ac345a6b37bba2287c806862180e65fa3096c09019ae6b77'); +INSERT INTO messages VALUES(1315,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','b576246254fac8c77cac415b921cbea78b6161a6b6aac803f3ccd7d6369c8d71'); +INSERT INTO messages VALUES(1316,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','df492fa192d77c2751978883ae36e4f18527620275eff5f72917bed83c137299'); +INSERT INTO messages VALUES(1317,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","quantity":100,"tx_index":508,"utxo":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','322fc0f7ed3d25cdbb1e9dd4c94f24dc661594e986a00348a4533a6d634d6dc5'); +INSERT INTO messages VALUES(1318,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0","fee_paid":0,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'ATTACH_TO_UTXO','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','593b5b43be5cf26d0c01fd30af68cdf3881e757d38b329e4319497c18b761c56'); +INSERT INTO messages VALUES(1319,310507,'parse','transactions','{"supported":true,"tx_hash":"c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02","tx_index":508}',0,'TRANSACTION_PARSED','c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02','5502f184b2c142e030fe0b17f8671be76112224c8e47a4aa5e759ae06c9d6346'); +INSERT INTO messages VALUES(1320,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"2da66508b6fcc29c1dbcfaa1d547e2e7fcd32632cdf98f995d161075ab06c3a2","messages_hash":"542b45c877e2d74120d67e6bab78b783515661bb13ba9bfd72512d07deddc0d2","transaction_count":1,"txlist_hash":"cda25cfb83124a67f209107884fa55ff7b1a2d5de0847cfa3f5e0011643f8ae2"}',0,'BLOCK_PARSED',NULL,'a566829a232e303909b3c7a4e43c1cc7514b937a967479e688adf19734fca675'); +INSERT INTO messages VALUES(1321,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2ae15eba4259898549f636f17e0f95b8cb64328704f67652212f7cdea05df88'); +INSERT INTO messages VALUES(1322,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":5430,"data":"65444956495349424c457c317c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509,"utxos_info":" 74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0 3 "}',0,'NEW_TRANSACTION',NULL,'67185b9d2c1d577ef76539a18f2b555d6b1468b2e097c104955981af8189b29b'); +INSERT INTO messages VALUES(1323,310508,'insert','transaction_count','{"block_index":310508,"count":1,"transaction_id":101}',0,'INCREMENT_TRANSACTION_COUNT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','eb9338289d05d606d9c99e8d7fef8b7c2d8d2432d664715788ea3a854cc99a06'); +INSERT INTO messages VALUES(1324,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','94f4634f09af08cbcf9ad79745003b8e4cb5bcebb5e18ddc062728b2414a90a9'); +INSERT INTO messages VALUES(1325,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","quantity":1,"tx_index":509,"utxo":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','6026d45ebe929653605c20306d252e12b66466719848232422c99769507e6aa4'); +INSERT INTO messages VALUES(1326,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0","fee_paid":0,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'ATTACH_TO_UTXO','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','832a65a67ef972e20f2216e15e3f8b117b28a36b7aec9806c2b368c035c6174a'); +INSERT INTO messages VALUES(1327,310508,'parse','transactions','{"supported":true,"tx_hash":"a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726","tx_index":509}',0,'TRANSACTION_PARSED','a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726','f198d94cc25c3c9f75c99134daf53f02aa0ff7a550a96c3360768064f9e1be6c'); +INSERT INTO messages VALUES(1328,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"783827f1e82edaf42d45619e7b18e20d544f5d8475f3815a61f1f7de9190aa75","messages_hash":"81929f0d58e45cf9dd08d4f4b6ec6a133bccff47940383c44adda8a047d94290","transaction_count":1,"txlist_hash":"8a2b9076d8d408be2eab4e83a13657acf6e7397479e4b0677c88308c2ca0a23d"}',0,'BLOCK_PARSED',NULL,'14c4a470f867c2b398c6af2af0f3849f76d002371c3da85ebaa1a601f80f7e14'); +INSERT INTO messages VALUES(1329,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29c989d94839fbe7d4657e2a6237638a7082ccf401cba2d0741dafa2fbc2b5f3'); +INSERT INTO messages VALUES(1330,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":" 5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0 2 "}',0,'NEW_TRANSACTION',NULL,'282b792b40d36844204e1b81b19a9556b9ee0efcf35cb80ab59c4d42ca52b39a'); +INSERT INTO messages VALUES(1331,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','63a6b6ca3786692f695e8c0d34ab3f16602ba9207d894cfb3dfbe57028e0ac9e'); +INSERT INTO messages VALUES(1332,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','1f1bed0403862fd37e1b5bdac5c6f62b611bfa0631eea771c550eff568cfd4df'); +INSERT INTO messages VALUES(1333,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','d48acd9e24d3399bbc5efec70023b24985042ec852a4928186d38a61625ddf0d'); +INSERT INTO messages VALUES(1334,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','15d2be78e4bd0757d5530642e2c15feca5209dbcd547c65b24a4bd666461a1d3'); +INSERT INTO messages VALUES(1335,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','fa080a20ea7143c429b5a4fd79f3f18f93be2617e933634280b332627b18b623'); +INSERT INTO messages VALUES(1336,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"6d4cd7106c8334cf9ba41c687ca3bf911cea24d66d750e7155ac016ce2315e90","messages_hash":"757fb88511765ac409322f00f6090a339b6f0087618057aa8756d850d511b0bd","transaction_count":1,"txlist_hash":"ec1fa99ec4e6319ce76ad3152562abc450134b8fe7437621a18c0b34e4580cce"}',0,'BLOCK_PARSED',NULL,'09c01cd02806770878dd86ca180d61e82865cb39884e3ecf760ee6b0a7b7d93a'); +INSERT INTO messages VALUES(1337,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'822d7f5b10c206cf7a0c02d70e3f5d3f02ebb5c24e074ea6ec20d8ca21e44105'); +INSERT INTO messages VALUES(1338,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":" b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1 2 "}',0,'NEW_TRANSACTION',NULL,'87cae7a7ed0c252c4160653f3f27b025683746a4382bc49145474df6e2112d32'); +INSERT INTO messages VALUES(1339,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','629bcf43c576827dd83ad89a32ebb7ff465ada5c570aafc5a34c4319954706b2'); +INSERT INTO messages VALUES(1340,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','54c6e52549ff2e5b9fbc6c29ba364a743ce0e840edd8fbd2b131602a95fdb49d'); +INSERT INTO messages VALUES(1341,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','7ddaf5e560be1c3c3defa297025d2c8ddf044f9d2f826a74f2be18d760e965cc'); +INSERT INTO messages VALUES(1342,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"d8e13aeca99805e15eb437805f303dde5ab0cb44a0499d7d776f31ee476281bb","messages_hash":"47785c8e33288cec85899bc3b1c039f35f79df372f5dfe9f327640d1200031fb","transaction_count":1,"txlist_hash":"ca286403db8ab3171b4049648c52b72df9c439ef3b75f54b7f40612edd05b300"}',0,'BLOCK_PARSED',NULL,'37497a15ee5da15b628e0c9262c0761fa9b08981e3d77de66e0bdb305f3d4c75'); +INSERT INTO messages VALUES(1343,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'537117456789dc5524dfe951009eaaf2ceceb7a2b04a0bab1315d96c69d7d543'); +INSERT INTO messages VALUES(1344,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"284e7317e2f651316fc66a70bdf993a6eb03030cde24b2829c8dc1fb3083cb65","messages_hash":"5a1169dd2825de1dcf0f9bcdf9983a3951bc21fdc2f032c638131317a4d6cd76","transaction_count":0,"txlist_hash":"9257b3fddd563d279d6ceee72a11ffda6de34c29f16205e6fa50e27e63a519f8"}',0,'BLOCK_PARSED',NULL,'22cb1c11d7ab1ef51fd80ceb9a80b6657487e368dcd56bdca0aa47bdfb272f0d'); +INSERT INTO messages VALUES(1345,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ce03d8ef7164e4b4a61e0137e4e0674179d891608fe9faa7fa7b174307bb816'); +INSERT INTO messages VALUES(1346,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"6700fd71b01d55ffb9abff46f33404f8afdaa244c34d79d1a5597f0a2c925988","messages_hash":"4f61732e6c4e60802436a1ac7920c368b7e2a96fd8e7f658d26cb22acccaf63d","transaction_count":0,"txlist_hash":"c80f3057e03faf75e1be097759a6d133d7c482d0c352a8ef05915a8d20ba72aa"}',0,'BLOCK_PARSED',NULL,'000c2c29bc70e2ee1ab2c55d492f109d27ab365a648d32a6ce3fd300fbe87f4d'); +INSERT INTO messages VALUES(1347,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8ff135b4319a92c481d88113ccf4d6e95f9c8dfb6dc3d3a8953973de6e231a7'); +INSERT INTO messages VALUES(1348,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'a7198fe851c7f0d26cf84762cb0fdf75d25a3d6b1aecafc0c88dc18079fb51bc'); +INSERT INTO messages VALUES(1349,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'70e2551a307398bceae51bfef71431304911a6cb4b82b3a8637c37503bdb3d13'); +INSERT INTO messages VALUES(1350,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'b3e2697ea91dfe8a05eeab6244b36372caab587b75eb9b962a9f05ceb1319395'); +INSERT INTO messages VALUES(1351,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'8e3f21075409a5c60d5e11108d42961c1ceb0027ab0cecb5e24b249a44488f7e'); +INSERT INTO messages VALUES(1352,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"f3ca04116717e4ff65dd65a9ddc1fcba48c77f3576cc7c293a1fefa62d628fbf","messages_hash":"50fa01c8c581bddeda73dfb82950d3fd6e00dab4cb26bc309607906b2a85050d","transaction_count":0,"txlist_hash":"0c8ea72bb32c6c6a989f8d418be18e345e115e77426375a227b2f50487b57bc7"}',0,'BLOCK_PARSED',NULL,'919602792ae5a020d1ac15ce9bedfe58a71fee136af7f34d597025fd5f1d3055'); +INSERT INTO messages VALUES(1353,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56ba7d83c7778595a1e015be9ff26d239b3c29a8cb258e5bb8d98cbe51b1d2a8'); +INSERT INTO messages VALUES(1354,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"0a526a36041076d11076786adcb2768eeb214b4aaf61a2370f0f44f1e7fcc15a","messages_hash":"4b832eebd8655179ccc68b48ff05a7e341fbc93d0f88f04423e21a6df1328504","transaction_count":0,"txlist_hash":"c8093008c0d6d9aab461228f58b1d2f8a7d09373ad1aa89a4fb739cf7cf73b5d"}',0,'BLOCK_PARSED',NULL,'e822861b3dc632c88c7a0e3f5c343effaf6d01bcd1f0e5df5a0880a2efa5c2f9'); +INSERT INTO messages VALUES(1355,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6ef7414c434ec9506a1d98be8a732060722c06b1a2a32530c7847f87f02088f'); +INSERT INTO messages VALUES(1356,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"e0997c5e3f5e58120aa263056f9db2671b5ffaaee0eaab92785a3978fa90ba5e","messages_hash":"4cd488735f3051bec72af179515a2a1dc19842f1bf0b46290e203e8ae0afdbd2","transaction_count":0,"txlist_hash":"afd1a4546e9aa5b32a6bacfe161e0e9ab283047623a5c34c1ae45739d1ac53fb"}',0,'BLOCK_PARSED',NULL,'61419b4150bab82b67c373b60580cdda8f71ff0ec501e687aced40f1f2cc17a3'); +INSERT INTO messages VALUES(1357,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb06762b949804d3881e85a64c11b3b9d7d0223d22d648c15ce7a3a0ae062a48'); +INSERT INTO messages VALUES(1358,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"3beeb284fed1fe729ba2b994a41e8d7a4da00afbce5cc95fd84b985faa54fd47","messages_hash":"80cd0467b0d6c1b42efe35523f9de28e11d2adb38c40ccb935275f41f6b3ffca","transaction_count":0,"txlist_hash":"0be8a6436def38423258e0d38ae1bd2e4b69109e16b308a7a95170312789cb10"}',0,'BLOCK_PARSED',NULL,'f7a606c0717e88489002da9582423cb8e087c5df447caa750041c1b24cf0d0b3'); +INSERT INTO messages VALUES(1359,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ade47286eda58e758324b738aeb5c32582b16e85f14ed3265ecf2ea7154006a2'); +INSERT INTO messages VALUES(1360,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"185ec7bd7c0cf4d0a380f0926a1e1dfe0e2d4c9fa572bc4d3a05fc0b2698e584","messages_hash":"96859ba232437a3c37a8331de1a779fc77eccfdd173372cce8778bbc7e30d88c","transaction_count":0,"txlist_hash":"086875900131220008c87033e2bc928abd52723b006f403dabe8aa0ee17eb56b"}',0,'BLOCK_PARSED',NULL,'fc24d5ebb4abfa977a864cb3cab406aceafddc8c3a336d1d05229f3c6c2ff655'); +INSERT INTO messages VALUES(1361,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c27b336df659aa9c1107dacacc587b288babfde9c268c500dbd927801025a5d8'); +INSERT INTO messages VALUES(1362,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"094da03cdfcd515f0d40be96ea486e97133b0eaeed8e4fb459dc0dc9b3778508","messages_hash":"21ac12260d40a0931b36ca0b212b5762132e373c3f89091287894248799426e5","transaction_count":0,"txlist_hash":"d3f0aaa879f34ed4cff11d5067cb16e0e5bda96944ac3fac8404190fa8080067"}',0,'BLOCK_PARSED',NULL,'95dfcb57ed02086ca565814036da26279440662023d95478a60924db0532b3c2'); +INSERT INTO messages VALUES(1363,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a936f2a370f47e4cdfc4d11917c304794582b76f8b785c4335013206e124b9b'); +INSERT INTO messages VALUES(1364,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"e1b1593e442ca354f28f9e22510475d6064e973705bc8a17873af3726650a26b","messages_hash":"774048e2980123c239ce09d67d7fe5d50df6237e257ee7e4fee96fbc7de03296","transaction_count":0,"txlist_hash":"eac52f8eef74ff4ef2133c4fbda1ddf219fc594a9cea88bfbbd0bce9fde9f3da"}',0,'BLOCK_PARSED',NULL,'13dc88e6114f0d73c71d8aa85d39879b03c0d383e04d0aee9ffcb444b35cfaf3'); +INSERT INTO messages VALUES(1365,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb985d6f1f2493135e65e3a4244fff6f6d10338e99fe7236740a8a97ed46a439'); +INSERT INTO messages VALUES(1366,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"5c975744cf660ca6b01b7bd60efdc3cb42242f7eecc76a450f2a2e4b41d89b06","messages_hash":"f88c606f8c001c912fe58f170c8df49989dcf5baaee42a2b835ada70f29abfa1","transaction_count":0,"txlist_hash":"5a0e02f49a1241455e0eea879f6a1a69af36f1a7a1336b7724852d01fe4c5592"}',0,'BLOCK_PARSED',NULL,'a6316eced854182393ded0db75de171076bc3c0abb036a2478b7e0cfe66d9e67'); +INSERT INTO messages VALUES(1367,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a45cfb48b704829f8f2ade80d18687df331d770ae96f729b970dc30a66e8bbe2'); +INSERT INTO messages VALUES(1368,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"b5422d0d0f304eb2cc6c8c4c8c6770b627c6a8865778a802f4039aeafd808329","messages_hash":"c27d6ac0cbf2755ede3ceb8a3b278c34c66e337500472552371fec3aaead38ae","transaction_count":0,"txlist_hash":"e7a230aea5dcaf31261c3b1a8c4b2ec76d211e1c57b9e19f117417f9a103054e"}',0,'BLOCK_PARSED',NULL,'168350cf2c48180c011eb201c2b784e242a25e8f40f1741899f5b92229d25903'); +INSERT INTO messages VALUES(1369,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63adcff9208cea286015a8a311db086e1f723844e30cafe8841f85c879b0a324'); +INSERT INTO messages VALUES(1370,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"964ccaaf5d261642ca22d826323c7229854e706b5854851521fc54ae29bafafc","messages_hash":"ad9c3cc561c0c7627764d9bb03321400e688dd4990366a3547a72d8d6eac2ef6","transaction_count":0,"txlist_hash":"1ed9606b2918534842b07cc6c87660e9e242bc5afacdeee033e3115457f234c3"}',0,'BLOCK_PARSED',NULL,'0b568e6e3fcc17ac17359e9350e84a50f2cd76080b54ffd5c11becca9d2f523d'); +INSERT INTO messages VALUES(1371,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ce974ed8549cb7046d8dc3e8bcdfd23900b8c62e70d69956bcd5a809cb395e0'); +INSERT INTO messages VALUES(1372,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"28d40f6211e8881b294e4b934f38c5273b5719b016735950babaeceb6d0e3b8f","messages_hash":"44df28540641a120fe2702b63a22e57f3f67a3d4bedd6e0e52a5aa6a7148dccd","transaction_count":0,"txlist_hash":"725cd10529cde9634052acc36d353b56cd5071a5e9132d83e1677c147504361a"}',0,'BLOCK_PARSED',NULL,'685334f5a3668443a5a97997ae591bd1bbac9fbbe49a78997919713161c607b8'); +INSERT INTO messages VALUES(1373,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98b555de9d3a708f8f4fce0d027593ae648872e85781608ed3d0ea025b627894'); +INSERT INTO messages VALUES(1374,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"5b6332f599e3dcd85cf2870da51446ceaf39471a995abcc9331790e435bf3b8a","messages_hash":"4aa60fb5e6797bb907f5c9bcfca19303ac2abf6b46baeaaa542fa233769e4b04","transaction_count":0,"txlist_hash":"125a0a93e721b8122f146cde14663b70c11d4060455242b2f10cbddd9a2c8a06"}',0,'BLOCK_PARSED',NULL,'9c55fb8f387ca8cd3afd1b8952c04c87c8db409a0df51b222a1ba4533ae89b2f'); +INSERT INTO messages VALUES(1375,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eba2f8234f107e31af4558bea4a671f5d49cae04ea15acb88f4f0dfe13ab94'); +INSERT INTO messages VALUES(1376,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"41a093d957164251e64603595e5eacbef44ebb1f836606c3034b01ab852bf3ec","messages_hash":"ddcd10a4a204232c04d62063374e2be4d7deb2a36809a6a8c360fda5bdd184d5","transaction_count":0,"txlist_hash":"83a91866538cdac9672e8578c27628bfb8ff13e4617d03fd5d1a024b1ee2b7d8"}',0,'BLOCK_PARSED',NULL,'1a09dba8f61d045cca4c29b1b13748df97c0a3654379521012f1346b3921558e'); +INSERT INTO messages VALUES(1377,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db5ec5839ef3d3fa3bb36227851e7dda3daec40fcc6ffbd8ab61a7dfeb3e3750'); +INSERT INTO messages VALUES(1378,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"93940adc92c042ca2678fb879fe731f82cb6ab2359a5876d4e38c8326a2b95a7","messages_hash":"3aadc79a191bb2ea2969254095ae5cc27424756c50beb924fa0bf858f8dba575","transaction_count":0,"txlist_hash":"0f2b4ed4d8a40f1524374d38fc9666d9ed9ffeca3464f45ea9de77843812c62c"}',0,'BLOCK_PARSED',NULL,'378224d765f83e398eb51c3a8328c062ca42ae283882bc582d08bd9fb19d4e89'); +INSERT INTO messages VALUES(1379,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5488400fb6c324782b0f8446818ec62730ee33910475234af0f2d4d52026fdde'); +INSERT INTO messages VALUES(1380,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"85c39fccdc3c9229858110f0ee92869349fc8d2c7d07c2cd98778831aca8ac26","messages_hash":"bfa3707bfc5027103e7fbb6c0bca30dc3889102b6ea70402114ea864b06b6336","transaction_count":0,"txlist_hash":"1ee7f7e284564b49610351fa13fab4fdd42a057530238db1d2212f22c548929a"}',0,'BLOCK_PARSED',NULL,'92fc5e0b7ea7ab2d56d6de22e4ee7ec2cd2584a343675ffd4a24066e5d1bd237'); +INSERT INTO messages VALUES(1381,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0bd6f5cbd636be700e83485c22f6e8bbf9730cfb6ac1fa785b64dedd1553089'); +INSERT INTO messages VALUES(1382,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"a07248b82f0a37126fc9e5978ec482c9b4e4e657652b7428870fc302abd50b59","messages_hash":"c289915af496f6d7f21c7d72d3f062a130b9a0e9e6b96ab6b50fbaeb03eff252","transaction_count":0,"txlist_hash":"93a6fd1bff0d1ab7ee1fb57f915a1c3c315f656fc3e72630a4ded588c629b575"}',0,'BLOCK_PARSED',NULL,'d7e40d6d73bb68a33cc9f960ec2ca0d57982fcb91308e860cc0d656bf9f66417'); +INSERT INTO messages VALUES(1383,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ef9f74589f0a8b77dc55bd14f5d2043ea59ae9c4ab0c4e757417cfcd60202e8'); +INSERT INTO messages VALUES(1384,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"d5e23e5eee8e31887b0f92f84e309115e1bd4fdeb4630982b9fd0822bafb8d08","messages_hash":"4bf82547d08049e18a9e66400b62eb0decfc7132a66c2ebd5e36411e1fce68fe","transaction_count":0,"txlist_hash":"077457a3c6606ff73bdae5d6236f0c8f4bb2fbae58665a0ae829bee518380853"}',0,'BLOCK_PARSED',NULL,'142dffb22c8927520e9a38de9cd08bb8e9d330427a983febdceda2b306ab21e9'); +INSERT INTO messages VALUES(1385,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8184b9da955124ee05e2424ca3c38dd6ee21a150d602b8338054684a9c1d946a'); +INSERT INTO messages VALUES(1386,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"45b1d42d6184fc6ff41a0c6744198e9ada178a97205dd457c18068d6916f44b0","messages_hash":"7566d946acb598b3335f18e317e041b05aa07705c796db39f29ec924c003d814","transaction_count":0,"txlist_hash":"e27dc3f739d2f39e98e2483a21bcf491e59e7094632bdd97fd47fe0e518b4a86"}',0,'BLOCK_PARSED',NULL,'7c4d176e26278ee69eeb6a713b60101d5c3c58702df824cdc9ecd85f95ea31cf'); +INSERT INTO messages VALUES(1387,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a2ccc55653a93059f3428ceef3ea58b81f9d35c0c98a8b83d5413abb0d2bd70'); +INSERT INTO messages VALUES(1388,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"9a581ce76795e586d5f691857551aa85593ff647a5a904daedade3406fb188bc","messages_hash":"eae7370fde489df4ef8c9e16da991c1a2fa60b4cd3c92cd37608a0e6807d5745","transaction_count":0,"txlist_hash":"441e94515d566be4c4905886024701d732935129d03b828a66ae7d913e7ae8a2"}',0,'BLOCK_PARSED',NULL,'bc186b6457863b8a43187746741819a2fd9ddc6ceaf657a16b34502c4a6d9641'); +INSERT INTO messages VALUES(1389,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab84ed66d71d8654c6d8212a406ffdd18a3f70d4f9493094121b0ebdd9978b0f'); +INSERT INTO messages VALUES(1390,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"eabac8937919ff8e56b84ee156fe44bd2d3709b2b6b32d7b06a324d26743d88d","messages_hash":"48deb40d3714e0efb7f28dfbc9bb8cc9229ebaa602e54c40f6cc6930a1786d84","transaction_count":0,"txlist_hash":"72a8b2ad31db53b39e64edd9ea1aa10f36be4385fe7eb360ade039e1be8b9806"}',0,'BLOCK_PARSED',NULL,'c46ae485bc829d2b6ceb2099b4f01591f528fa7d005cbb01dada906b768e78f9'); +INSERT INTO messages VALUES(1391,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fb3c9823d82f76d5d84a2027a091cf9ee6dd6c55dc34a058a7365e4b12c25c8'); +INSERT INTO messages VALUES(1392,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"d0c7697fde7509deca83f1811b2ed8e7d08b1a4b44eff65d17631ef81b1e8f5f","messages_hash":"55f8621a6005016df54522ea56b3c95a916000b144a0bedc502ec3a386b0220b","transaction_count":0,"txlist_hash":"ca9720beebdaa6b2c28bb3764a042060f91f68f0406452229bd9ef1958fbdb45"}',0,'BLOCK_PARSED',NULL,'ac050eed703cc62136ece34b9111375ca5d12df090089b143a48d80caf90f4c8'); +INSERT INTO messages VALUES(1393,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'338d0ec8b1c27e94dd76c9280210808c2c8932526ca282945d8f5899b51a8606'); +INSERT INTO messages VALUES(1394,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"bd0ef7113457907b081d21fee7c3c937e93d1381e33341e87beec52618a92d9d","messages_hash":"1632445bceab41182eeacb4ad6326dc1534abe20ae1ee97f7eb7a824618b4b9e","transaction_count":0,"txlist_hash":"f353b436e3acd80d08bb2ddcad441e5db505942f27dc4933d9e432fe5bfaecf7"}',0,'BLOCK_PARSED',NULL,'cb898e347c3d894390eec99420dc5f0bc3bff75a1cf4a3c3115a1f895056d628'); +INSERT INTO messages VALUES(1395,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e6fa2250dc349d495371841b94796e592b42170aded40a80485b8e652782db6'); +INSERT INTO messages VALUES(1396,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"ecbe27e682c5f7d728a5f8658175c85c78d1a8c5ca859feec9b49e078b82117d","messages_hash":"5802a8d9a466cf44d31125813c3a23a4a79cf367bf23c02dbc5f950da273132f","transaction_count":0,"txlist_hash":"22427ac6145e8c5ba270f2a04c1968a7c02a6e3a616efc2e030adad4a985b119"}',0,'BLOCK_PARSED',NULL,'0ff7e6f91ebd66e431b24da9b55ffcad5ecbb165d13664e00ba773b73f7c0237'); +INSERT INTO messages VALUES(1397,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cb8e9d74a87c5daf5d6382e098a164b06b146b1be942d1db02b5680bd2c3597'); +INSERT INTO messages VALUES(1398,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"4a257c3e8a9210069816ebe982e40d7c4e08a791a81dc6acbde99a04201db04e","messages_hash":"fe58961eda1ef42c57b2467b543c185c010dd183935f3689f04f3a5414dbf21b","transaction_count":0,"txlist_hash":"2078c1501c6ab6aa606add557e2e18b54a4e9cf0bd8d6ae8429808b546deb9e6"}',0,'BLOCK_PARSED',NULL,'9a96c37821e6ce4095afac575e4ed341780050d7f73bd66358bd40e798afe105'); +INSERT INTO messages VALUES(1399,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcacd2449c89f77bb6f6ee49ecdb231ea0fd626c0f151e168c8a09b818bf936a'); +INSERT INTO messages VALUES(1400,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"790fafd9544969763c9f6e3c0c83944d2953be8a981a260c63e223a83464d04f","messages_hash":"447daf32944871005cc2b7394dc99764ffdf90260154e356dd51cae795cac368","transaction_count":0,"txlist_hash":"0ca22af59eef116fd71e8228b50218bf493e6750ed97328ec3bd6d4065dfe559"}',0,'BLOCK_PARSED',NULL,'6053314ef0ac91a6bc7c94dda33dbf1c1b398c03fe2aac72db5606583e92d7f2'); +INSERT INTO messages VALUES(1401,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c51ac7d5e18dd7a28eab6bd46117fa217249861cf6d03602b7cb57c6491612f0'); +INSERT INTO messages VALUES(1402,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"f55360b861c665536eae661cef294934020cb8a06ac4808a7181794901355803","messages_hash":"cd50ef38b2a3b2a2b098cd73e98689e6188f6bb76fc23078a3ec36ffbc7284be","transaction_count":0,"txlist_hash":"4d54137258383ba61b25f7c68b9b1a3ff7d58ad918faf5462c5c8f6babfdf04b"}',0,'BLOCK_PARSED',NULL,'ca60317deb0d3b285a13afff6244d06d6ba188bd8917199ed4905fdc7bf8f92b'); +INSERT INTO messages VALUES(1403,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'715d7d27e38de019d88a9069ad6ec81c5a5c6df68cecca6883f7a13a7631273e'); +INSERT INTO messages VALUES(1404,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"b2539364321f94dd2b9d1aca0dacd1148d8e0213b966d8feca03222d3bce16fd","messages_hash":"4fcc618697344dd2eabf342a4077ebab493be32dac8ca10ed8811b60f54d97ae","transaction_count":0,"txlist_hash":"332ad7bcfdfec831e1f8b9795cc5e0ca8e6675e8eb55aaad99123659cfa98bf7"}',0,'BLOCK_PARSED',NULL,'16ca64248921d12a9afb7d952c9337c5585124b7c7f16c7530a66884bfa11d3d'); +INSERT INTO messages VALUES(1405,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a266627b6730ef7c4a183151f2e6aa91b53b3c7d584e2ecdd2ed35e281a5dde'); +INSERT INTO messages VALUES(1406,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"9922f3174986b70fcc9823a55ad4b84ad31a1c6aa4149e273c8e6c4eec6e5683","messages_hash":"12f49f9dcc05ced302302960da83b0ccd5a00f1d3d3796f845e05d507f8bf1ac","transaction_count":0,"txlist_hash":"5c9eeb43fabd9bda4c4edf8703cc13ae51ec625c1f99e8396e36e30f0ebaeb91"}',0,'BLOCK_PARSED',NULL,'e382c6fd6ce95cfafabe08ed96b92fde195cf17c4e059477720918b0b76fe3c7'); +INSERT INTO messages VALUES(1407,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25c74b70cb52d2d2407331db2b1dfe954afea7d6da47eaa05fece5d6bcaad2c2'); +INSERT INTO messages VALUES(1408,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"45e6a6a29ac4d1a7ec55a6d857be0f15a7913a8a7abe49a33c4001ccd43f58c5","messages_hash":"b27378abdc89008ae5d9100e7f9cd5ef4e48ce664d8a8bd7d1c20bbe02f9221b","transaction_count":0,"txlist_hash":"8dfb73eadd56b7480232b479d84aa43a381f2bdf53c1dbe2ec6319623267271c"}',0,'BLOCK_PARSED',NULL,'502f238dd1a78f0d12ea5f5a2a5a76ed7baf3164891653cabce050c050e4518c'); +INSERT INTO messages VALUES(1409,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ca4ba3c2878ea75c1a5cb3cef89e77f8fd6826635fd5de3d53961c7444f67f3'); +INSERT INTO messages VALUES(1410,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"3d699a1ec41c18dfdc59e74e793107a25d4237443d7e401919aac171dd5d0fad","messages_hash":"1eb4148bf7ffbeb7bf665a358f5777b73924900b810ec9b029b7d55b601b68b6","transaction_count":0,"txlist_hash":"40d686c4d90aab58f2326e996374cd9ced6f36c99cb74ae8397f4682716ad4a9"}',0,'BLOCK_PARSED',NULL,'68902b929e1ac97ac0513e81a2d4b61f7d8e8e2a42bd52b541bb223ce23db922'); +INSERT INTO messages VALUES(1411,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32891da71316768d6ee577bc1fee4885f5f1692854454995953eb7fdaf458627'); +INSERT INTO messages VALUES(1412,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"eb2b3a6022accd97e8e50fefa6653996002c19959f9057f5f8ed4f3182130f73","messages_hash":"63e03ac65fc2b4c8d586fec055106c3f1ca1b20bb6391b83b55948912ef32dce","transaction_count":0,"txlist_hash":"f5cf96df9e885d0af00477f26c98376e67e3b52e1324e489d7668cdb472a89b3"}',0,'BLOCK_PARSED',NULL,'467c5d3e4b57ddf2f0f4947e449474f6eab6ae76426178374899557799e67401'); +INSERT INTO messages VALUES(1413,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'969c5b4495c5086177c547bfbbf1c35ec0d512b484a339412f66a19009bfdbcb'); +INSERT INTO messages VALUES(1414,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"f6f5e8c13f86e75d8f6816b79313a1f36a6f8b2cf31695ecd540f71e4d9d5aef","messages_hash":"984bf8318534b47144cec9c165149a75ea64370a1ccabe1f707956103cff349b","transaction_count":0,"txlist_hash":"5288c8378be3bd829dc8cff27892bb0fef5c5751760ae85116bcd5ed2363f577"}',0,'BLOCK_PARSED',NULL,'d182ce6a1602f40cfed95d6bb45dbd9a3a1ab48319d00fe2e734d50e809742f2'); +INSERT INTO messages VALUES(1415,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f5ceafdf9381279eaabb20aad12435f1fe0b721ab8e789220f1ddc52521755e'); +INSERT INTO messages VALUES(1416,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"1f20e98bea45b652cdcdce91a8e647eb8d683d4f974d052e0fe1eae55ecf43ec","messages_hash":"7b924e1283a8444e4a945410be4b50b6f7b13220a8e505e43ca6d7810a141858","transaction_count":0,"txlist_hash":"e6511d3f3b558a64ba83d3b670b87c43c15f4d2f4c7937c7046fb3bae082af15"}',0,'BLOCK_PARSED',NULL,'14e2162a8f4af633a2b407e4ec5330b6ce871f9458d7b1736a49b94a2859de3b'); +INSERT INTO messages VALUES(1417,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af17ff22b705e0b979d6a76d1134c4f9c3874f0c1baa3fb13fc827a4e9c017b1'); +INSERT INTO messages VALUES(1418,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"cd5d82fd6290fa9ede4d05f6e6fa3d73acaca08f8cf75247a9a04635b3f3387a","messages_hash":"c7872c14dbe1bc8baadc23eaa6513f5f13e92b4163d813f537a67c5ff1ab2f56","transaction_count":0,"txlist_hash":"94ed158a6bcaf8d2721fcf02f88c9a4b41f9e0e1707ca8e6cfc07fd153795db3"}',0,'BLOCK_PARSED',NULL,'8c4a1e5b9ead1894d2686cdb133473040c6f4ac37357b614e1b5f4348f3b7783'); +INSERT INTO messages VALUES(1419,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41c9a7eb5fc02ad35d9b090e2e6d95abc8f245218c5e63b1895e1ec736a30305'); +INSERT INTO messages VALUES(1420,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"5f01b4e547ae1e28d4e9bd84608d447949269f20a0fb9fcfb63966a9a34567e6","messages_hash":"679526fe452c665f90d5d28d0ddf6541139c5169468961404d9436252c0cb111","transaction_count":0,"txlist_hash":"1bbaacf2316a2766efd4930f0ca674e4bcea4ff70134f84a2cf7023940d4a09c"}',0,'BLOCK_PARSED',NULL,'c89008ef772052316cbf94d4a3ef95b4250704e60c92d0cf66022ecb2a6252f9'); +INSERT INTO messages VALUES(1421,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f094ea8cf33112758f0325dedf643214c9a44adacc2c704ca86916ee6970ee6'); +INSERT INTO messages VALUES(1422,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"7585ef9b77c458c97116c7ebeb6c5cc3980a3305fc9524902b05179ddca85fe5","messages_hash":"d664fdd24ff6ce0e912a11366d4eeeb5bf82ff259322a2cac4439e0afda087c5","transaction_count":0,"txlist_hash":"228d924eb6079f41f70ddaf94323615327adc726e8a8315e68b3606f25ad28b2"}',0,'BLOCK_PARSED',NULL,'3c8eba95ac0b0d03e43dc60c53078e2a57bc52a30ff167714a45b9ff2c277419'); +INSERT INTO messages VALUES(1423,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98119be597debb40e506d3a60ae74fa26b97de4eac1ab051f00b875e79681242'); +INSERT INTO messages VALUES(1424,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"ce6e70206104dfaba538c59ea43ecb0fea0cc8f8f43d7993448354fefc6e11e9","messages_hash":"5c48e908ea9c068fa579aa64fb10248320681dcda7dd6e52e4d4cc34236bbacd","transaction_count":0,"txlist_hash":"241fa82ad15e159181486967d64ceec300773f9f1b5ed5728913cad33232ed4e"}',0,'BLOCK_PARSED',NULL,'83e9cd2737fb4c1a050e7863fa233ee71a788f9341dd37c21622a741d36f3884'); +INSERT INTO messages VALUES(1425,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b3722d0c06d2bedb98e74979870d3139a438a83d8bf973e9eeaea89b2c0847'); +INSERT INTO messages VALUES(1426,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"13c0fe98ed1251f6d2c3d698971687a910c28031e3125d14d6ac66d0e997b049","messages_hash":"024f02371f0f10f2e926bfb4e0eec4550ef6679aed1dfb8237f11236f37b7bff","transaction_count":0,"txlist_hash":"349eb659d60399d8e52f1c8a112d692d4dd3c049bf6ad2554c86d1d15756dc25"}',0,'BLOCK_PARSED',NULL,'452b9168cf598f63202105783922c9ddad8baca75094b36f33dc9485c4bb255e'); +INSERT INTO messages VALUES(1427,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90bd099732fcb3bae528b7395e7209176ab6d6a9608e7451f15b80f67b3e2645'); +INSERT INTO messages VALUES(1428,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"c1f45c29b8be539a34c198c2277eed443959ab93e12bc09b8c56cb1bdd71ecca","messages_hash":"94a2aed3cd5157e8fadc9138740d37720bb2069ddd2c05c640d0c9bb9b626557","transaction_count":0,"txlist_hash":"e4a7874b25742458925ceecbb6bca70412fe4f45f40f186d17239b583b945a01"}',0,'BLOCK_PARSED',NULL,'e7b165f9db681045b238dee26baeba8969f0e2997232849bb434f0ee68a3b646'); +INSERT INTO messages VALUES(1429,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a29cab9a8d3cff699a875a3295eed858fb8755f5f648f0cb7f6645197d93e19'); +INSERT INTO messages VALUES(1430,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"ffbaa155370f8c509f36e6a90d1fa69dda6a4a49c5fb700b98e0dcbec5b98602","messages_hash":"69bc5f9bcdab0eda2f1e42ea431b0b7591805c2c659cbb2134770aed49e65d6b","transaction_count":0,"txlist_hash":"439f0d19f4a3ae29e5cdce2f0e1241fd9ff2e59d6be7b893cf9086913532d44d"}',0,'BLOCK_PARSED',NULL,'d5237ba6b392467cae4d09c7330325c32d646de01fe1cee4ec48623a723bdc8e'); +INSERT INTO messages VALUES(1431,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf1fc9a6ee811f2ad8c7a3360129844e755da3232fa72741861ca6c6366057fe'); +INSERT INTO messages VALUES(1432,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"28df597bdadd29569b927c2fcd267114d443d2e00c6f3e174280720917c205bb","messages_hash":"71cdffccd5f496d320881eb9f9bfe001fa7246cc1297f176fc58ec78ddc6ce53","transaction_count":0,"txlist_hash":"5919cd4540963146d3a2c97cfb9a4b887147b1e9a4e50be469ef94e4ca446286"}',0,'BLOCK_PARSED',NULL,'05bd6351fcc1040cb1202dc730afcdecbd9d64573fccd5138d365316b0847455'); +INSERT INTO messages VALUES(1433,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e64993149e750ff38ac5503e1abb65d15f6ca88609655993eff35a23848740c'); +INSERT INTO messages VALUES(1434,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"0e14ff0544d352db226ce1e08033791decf38429dd7a04c1688593a8ae82b4f0","messages_hash":"4b2be584916f400c716ba2c5b2b712439b04b25a0c4c606fa5c8631093fc6735","transaction_count":0,"txlist_hash":"2262738b6e658eab4c4e9f19f0be95cdcaaddce5de6d73ae722611ff7005fe30"}',0,'BLOCK_PARSED',NULL,'f8b2a154939e9debc48053e830e4a3840830caa26dd3d46c666c2a1635e6c01f'); +INSERT INTO messages VALUES(1435,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6bc9219aafe1c1e94f9b5fc39b843277e00d533bd93c1489c47f68388a6c0c5'); +INSERT INTO messages VALUES(1436,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"fcc02e52ce569822cac46b16b925c92c80ecd1694b7af067dcb87d7f45c3653d","messages_hash":"f5785823cf9a5086cea7f49370832159a867f906386a211fd257885f78bf61fc","transaction_count":0,"txlist_hash":"513e232ca082908b7b752fd8f91a8157a8697743c35ba5d8f5cd7ab90a180be2"}',0,'BLOCK_PARSED',NULL,'784dd95f37c61d1e0d2dd52ce86fe676c3cc7392dfa64e2df4fdea96a64f8e16'); +INSERT INTO messages VALUES(1437,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cb8af6048b9b8c3c20a2e55e727b4cbf3cf8d4bb29bb25b9c9aa5d743717b8f'); +INSERT INTO messages VALUES(1438,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"cbdcecaae6abc7a4baa4a2de6e8bb5bc47b8d3454e2a3dfe89ae1035de48f3a3","messages_hash":"87dac23f8af9f53902b74ba449ad588315b516173beae3815f7ab475d5bd1c07","transaction_count":0,"txlist_hash":"3637410d8665bedcea8bcb5d1490260695fdf9bba7c05f6ed787ec4c663534ac"}',0,'BLOCK_PARSED',NULL,'56537db4ddd9391c2530c4927b45366320bd0321262dc590e91ea8d50d101336'); +INSERT INTO messages VALUES(1439,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4016228526e6f17a448bef4fd245549a066f936a57ce020d08360d82995bff6'); +INSERT INTO messages VALUES(1440,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"2b72a76f9e07c760ef0b04355b25a35f0f41d033bc2334c8556c256fdffe4051","messages_hash":"5f32cab9f6e38ac11c4b0edda776d5a7257ea76c984780d2a3e27483ca4c7da3","transaction_count":0,"txlist_hash":"d9d7dec02250c15d27f66e1ff473429b3e1aaf2b8a6694dca2729d8ef20241dd"}',0,'BLOCK_PARSED',NULL,'36f280b864c70a37de309b88f0c1587a4a41537a1ec25a5f1d22e3a87d59a90c'); +INSERT INTO messages VALUES(1441,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8664d1ab01147f885b78e6bc6baf796eaab256ac648d853a1767094a1fa9c70'); +INSERT INTO messages VALUES(1442,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"bb5c9651a1f7327013069007703d9d27c611becb2fba6660cae8a1dc304d1d5c","messages_hash":"f6412347e9dcb49b8bb45f2cae9930b4fd56a520d82262cc2c7bdc9ff1c14067","transaction_count":0,"txlist_hash":"f414f8a2434d99a148486f8a23107ac1632c6a481476245888cb2ce91ea4240a"}',0,'BLOCK_PARSED',NULL,'e887a6bf5b3b39ee38db0d548074cf17087f8c24db3255a7c65017f11539ab09'); +INSERT INTO messages VALUES(1443,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f6053ac073539fe060170b51a82c753c0a3ed03a1b56ded139e71fcb682735c'); +INSERT INTO messages VALUES(1444,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"6231eee95e4d73b5a27b07ec5c6d13bfa0e8854044d1aacd921eefbe9e48b0a3","messages_hash":"4ec6988fe13ba0e35b3a9f5f2dddf48852098c5b5cbce8bcd5404ecb04e78bca","transaction_count":0,"txlist_hash":"08e292391f5e5112c35c43978d69e12fafa1017741e0719983fa99e5b130d78b"}',0,'BLOCK_PARSED',NULL,'0bb5b402f658d3f680d9f01e4211b561f20e089cbc0152ef4db23cdb8bd36151'); +INSERT INTO messages VALUES(1445,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95ed26dd4b22ee1dceb69872a023b0a95982e7ff31b92c98d2dc69008a946f80'); +INSERT INTO messages VALUES(1446,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"d73018e8fb5f195d7db4776a55d4de0b92a4a436ea2dade3815d760376faa4a7","messages_hash":"f7b42726cc54e43c9bd6219b7eedf45dce64df9cf39b6d47e18fe9ac55957f74","transaction_count":0,"txlist_hash":"4bb274f3ffa77ac027a53e1edfad2d95748c40285ee3418e07e19ab04b612a42"}',0,'BLOCK_PARSED',NULL,'a3dfb133d05d184a93cb30556dc57a388050c098b43ad4af107082683294df45'); +INSERT INTO messages VALUES(1447,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceafe9035f9d3513c0696459760a2d369635624564ac8783d0a5b29ef1bf7d1f'); +INSERT INTO messages VALUES(1448,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"1a8b92da71abd620911af23b9d9617687da9f4c6167ddbc5af9ef6fd994deb9e","messages_hash":"d6a06c109fca4ea3bb68be753254f2afb36ef8812ca808f8e284a42c9634b6a3","transaction_count":0,"txlist_hash":"bf6eae71a2ccac46ffe8e01a3eab233ad058e9bccd7e3f26027f8b80c761bca2"}',0,'BLOCK_PARSED',NULL,'6e0132c4b04da34b2bea51be1cf86abce835fff6199f4594c62e8548038eb638'); +INSERT INTO messages VALUES(1449,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a4efe401a75e97deb15f25ba9167792a659923b16deb99fef4b5e32d9102ce7'); +INSERT INTO messages VALUES(1450,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"d6a38edb3a3dba9e97711ebc6001e76f7554f144eebbd592fc7fad5b3cb183af","messages_hash":"f7a20018bcb43f84229f02dec5d4e5be146655518ab749ce1b3bcc4e8693e6bd","transaction_count":0,"txlist_hash":"c21b0c1e6cf9dedc25dffaf10900b2c6e5abb87cc0a6b31a2185940646546f2a"}',0,'BLOCK_PARSED',NULL,'1f8945bfbd2f4114b23ef3b1a5891e95013d87307c73c1fe6399442b2330030b'); +INSERT INTO messages VALUES(1451,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6ef259ad17e699e60f844a63d759aafed0ffdffc2e97359805fcd4e7ba82422'); +INSERT INTO messages VALUES(1452,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"c763cd35dbaf2c85a287d500fc7077c2d3faad163c40c9a5d6295be67460e74c","messages_hash":"a254b93e080b0d034d3029b9e556a14932f89b1ef7962e8418d6f8a1d225df9b","transaction_count":0,"txlist_hash":"2160bdc17f755ede6b800cfab8ba4364f76b1db66cbc431d2dcef669f886816b"}',0,'BLOCK_PARSED',NULL,'d69dc75cc01748cf3fcd995296422ad4e456f43f1bfe2d30b0bc59a370c62167'); +INSERT INTO messages VALUES(1453,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb0bc9d57ba3f765d00ec83cb697fff3a8b91741618e9a21a20bd8ee068d6e20'); +INSERT INTO messages VALUES(1454,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"93923152ff82ff4a5ffac3fd2dc78ad8e39b6a353c82fb9004c32a950cd5ad70","messages_hash":"3fea1a8d2044e283ba385e06fe3e5f1bd77084497845d3fe1835268aa954b43d","transaction_count":0,"txlist_hash":"79fc4e5c8d71b25432df01113e8cc8bcb440e33617454395c281f1f711e23a71"}',0,'BLOCK_PARSED',NULL,'68a20e75764ad267f68aa91c8cb875c352ced9593cf464db8855ab53126b40e8'); +INSERT INTO messages VALUES(1455,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fedb9d5c7d679f066cebdb04946c4c190cd9058594283a26c172178989825e0'); +INSERT INTO messages VALUES(1456,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"c79ac64f3c933540c042d595154c2fa49b52a2f3beff8f1a1b8d899233fd7eca","messages_hash":"77192376cec16efe7bc960d08a3e8e5269d3fa93f6d2d4979660ae713773434a","transaction_count":0,"txlist_hash":"6a752db551f2675e8b370300535245e09281e50548141cd55a347880dc4cf54c"}',0,'BLOCK_PARSED',NULL,'3650e0734d85f17d1bed872c402f61074d023738e6f53931e245d213d6463b2a'); +INSERT INTO messages VALUES(1457,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fb571e5ae1c1b7e0b5f423144b60f6da2c2342c51fd5de9fdccce16efe6226e'); +INSERT INTO messages VALUES(1458,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"508d4ca4bb45221a6b5dfcdba9c4399a13e85ede4dc0d55f41d0a34d89e9bd22","messages_hash":"86fd54f92c5863dfe2661e1019e335cb4e40a445aba5ebf2c3c9cf97e06d1340","transaction_count":0,"txlist_hash":"29d631649df7b979a354de43ea7d0a203aa97abbc16eb41c0bb5b23d272e3b88"}',0,'BLOCK_PARSED',NULL,'133b1147ef54ab6a7452eedae82e96bf29507551755d64ab650d049dc4d0bc6c'); +INSERT INTO messages VALUES(1459,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8b247999dfdc75216de255baacf31c72a6b675dbbe6ebfceaf4c603e5f8b35d'); +INSERT INTO messages VALUES(1460,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"91eb06b8caa32d73b764fcba9995d63fff5ea4e9773b37d498d645fb8c081ad8","messages_hash":"6fb2d02924ce14417fe3be64ee2fa98118424d05479249a0147ea19da3eeb4fb","transaction_count":0,"txlist_hash":"c9912528aa6cb1e3d000ee3c04786c17c6e4f34c8fc98211848a83efd275c73c"}',0,'BLOCK_PARSED',NULL,'d7942bd140daebcbedd83d4c881e50459a7632a4504b7f37dd984394d48f83e0'); +INSERT INTO messages VALUES(1461,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea30716d4559854b711ee8e2386562db1d7ab4ff89a29323c589453d950873b6'); +INSERT INTO messages VALUES(1462,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"f4bfc8b88de2b62f253dede4f6fa4ef3d0c931ddf688beaa3e7de6e30674622f","messages_hash":"edb229c5de321a385085ac964b0d1ff0d6e6ac56b2d1d1e4efdb9e3e3107cc06","transaction_count":0,"txlist_hash":"f6b3c6241c9239a06bc7ffb831be46ad4a85b4dc7ecc09bf4da48de7c2c833ee"}',0,'BLOCK_PARSED',NULL,'7a04596b7203e6e821168e936ccefdfe3879a2effec152e9382a0edeb86ab25d'); +INSERT INTO messages VALUES(1463,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d46beca663b0f3c46b9846e7cec441894e1995db495dcf6933b2a1b13650e5c'); +INSERT INTO messages VALUES(1464,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"34b0e4aecad9b1a4aaca83ab99f47ee37648763618646756f14cf593d99d00f8","messages_hash":"d11a6dba16d70359340bfb5c6785daa668f8a44092de5f5651ea1d595b6646fc","transaction_count":0,"txlist_hash":"477506b2acad369e04dbd4874d1615b33edbc2cf22b39f8b402fd8a71a50a2b6"}',0,'BLOCK_PARSED',NULL,'92112edc157e9313a63459681826c732e7a7c4a523e972babb88704ab57639bd'); +INSERT INTO messages VALUES(1465,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6ef5cf401589c1f0e840e602b5801f526bc4461329559fe839bd09a5ee63b7b'); +INSERT INTO messages VALUES(1466,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"5cd904e3cd1d9d87ac4e5a9ed4288906690b2945f9f7d70fb264f039987545e9","messages_hash":"f24ebd297778b77fcd1945048e4155426085d60216e0124067b1514f0b592bce","transaction_count":0,"txlist_hash":"1e1ed17d45a0de7352db383e2a4fd610f541c1491a601791bc97482cef55940a"}',0,'BLOCK_PARSED',NULL,'34fcb76b5e6996e4be16f805662087327b1eb4288de0adc00b09d2e6e340e8fc'); +INSERT INTO messages VALUES(1467,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fd5761fc345d41f53804b298277c159dbcf36b9cc4760348146202ddc2754df'); +INSERT INTO messages VALUES(1468,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"794fe432083e3ed9db5154ed1230b42437a44d012206a769a036f05d227134c8","messages_hash":"210d93121b06402ab2a9d812e5ab973e9b45d543f643a7f2c9829d14490e264a","transaction_count":0,"txlist_hash":"911960980d89ac93116118b944e1c230f5b2de5fabb1fe064f5dfbe1c052ff09"}',0,'BLOCK_PARSED',NULL,'5c5369ee902c38443f3098971db4b57b5f8ef5ff482697a83f36ae84417228ef'); +INSERT INTO messages VALUES(1469,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bf700f71b7bf9c1480f6e142a898752a114c9a9497fef6d6820e6516d9e8dd0'); +INSERT INTO messages VALUES(1470,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"fdf11aabce275549558778a8c7f4693da40ace20a4409a9d163ce2edd349a713","messages_hash":"8e068b79955287d1636b7d76e13a2e2008d73e815edb80692cdf1b3a3fa8dc95","transaction_count":0,"txlist_hash":"8bb3b6fa0314460411082f0bc6fa7a2fd9b4042f610af998dc30fd099c3ba829"}',0,'BLOCK_PARSED',NULL,'613e3bf58b4c5a390c0ed5fd85b0f638411f8f37c790df21fa772e129b535a76'); +INSERT INTO messages VALUES(1471,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13ce6f8daa8609e95152a3fa843ff80b9436b3fd0fd27388373eb15dc6c350b9'); +INSERT INTO messages VALUES(1472,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"4ec879ccd015d0b5dd8d2ddf8afb025cd8559effdf45d2984cea2f8e23d80dd2","messages_hash":"6f1a1909b94951ad828d993c17824bef7b4a88576e5a71e4d2dd13afbc552d20","transaction_count":0,"txlist_hash":"089e292daf5b28888559628d21a8d07fd511514dc3f36edabb57aeed58f9b544"}',0,'BLOCK_PARSED',NULL,'86da1776f8fd906edcacd6fc06ff9e4c4d32d2b99a70602da554ef85de074691'); +INSERT INTO messages VALUES(1473,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c52e00c7b1ecb4be063f74a4dfde9e8c1f7f4903de6c6b38c6e4f913ad5f8804'); +INSERT INTO messages VALUES(1474,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"2e78c0a28df27f81257091154d3e6992382bb271372ce59b7209a7419cc9d5f4","messages_hash":"b24cd35c242657d210ab6c6e25b412b841f710ee17df1683f749af67ac46ff5b","transaction_count":0,"txlist_hash":"e21566901ce5a555dd72c878590709210c5e93f397219408573edda2c691f851"}',0,'BLOCK_PARSED',NULL,'a3cb34d92cc7bc2e04e198f7b241a04b0267bdcd56186f9e8cdcaf1b389cba2f'); +INSERT INTO messages VALUES(1475,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60d1c813d4f8c15ba9ee2d251e9a0d2e29d6db67ad1581ae12fab2fe0d2304e5'); +INSERT INTO messages VALUES(1476,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"7d2ba3c2c0455d45d11b580bb46d3aca197d69d349553f57f930f85e6b217533","messages_hash":"6696a560434aa16e68b869cee8651701c59e787817ff7e69edf1e74bddaad664","transaction_count":0,"txlist_hash":"82a61e7a23d8a40ff22fa40c622bfdb7eb6b8d62494f988b920182d50d09de5e"}',0,'BLOCK_PARSED',NULL,'3d847dc062ee08221b05b3f27f11f176bf33265258751430950342d9e8aaea58'); +INSERT INTO messages VALUES(1477,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b52a4ce2365bfd2fcde7eb496f9d0668e0a6b13b06dd237bc0eae34f96154384'); +INSERT INTO messages VALUES(1478,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"45fe61d07f3565131673018efda70cbce07795e4b969bc400b65a435ce500677","messages_hash":"5a6c091f753a6c08757b6e01004f578c22de0f86ade021b3b2b7d2e201d4d623","transaction_count":0,"txlist_hash":"5c4a6b221a2d92bb2f836f0f27c636b4d663cc82b87340aeca7c378a5cb4b7d7"}',0,'BLOCK_PARSED',NULL,'f7a1fd9f262926445a2cca07e88e88f201ef8c7790e5bd66dd835c971143d207'); +INSERT INTO messages VALUES(1479,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b654555eee4ca750e207911355d48cdc0533f52f5f170be82d0f9454b87e120'); +INSERT INTO messages VALUES(1480,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"cda4977de49bc1abafae2ae4b0ff55eae727e46ca159aab519d1e2318f643ce3","messages_hash":"c9afe6f4874da8dd0059b2f412adb48bf64ac54489b56b2bb2ae3b04fabd3543","transaction_count":0,"txlist_hash":"3a4b16e76df97ca2e9b49288156df35dba1db68543482e213389383df9f82514"}',0,'BLOCK_PARSED',NULL,'1f634d51495579d60143cc6ac6dec06da02d9a1443230bc161f088be5c658d2c'); +INSERT INTO messages VALUES(1481,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49f037d4d1fcc5326f5a29eb10aa6b2fe004f512e3585d63077b91ce9f1799b0'); +INSERT INTO messages VALUES(1482,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"931abe28def24b00c8bafbca2e28d15fdd2e28e38d2d2771c64d3c78dd12a52c","messages_hash":"18cd56c3f23e8315c7757462fb49a27ec3e9f3eb69933fed4bdc92b004b29b29","transaction_count":0,"txlist_hash":"0e59aef6450912294072b45b03fc1ffe75d731ec347e2098b9f116a65991177c"}',0,'BLOCK_PARSED',NULL,'9bc708950a7bf3fe07201ce3fb8bbaccb38034f4888a21b98fd4ec0c04f573b6'); +INSERT INTO messages VALUES(1483,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90bd90965cb29d952653d9a407c7c109cbac0d17881f1add968754d965a906da'); +INSERT INTO messages VALUES(1484,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"6f110331a1dbad0d121974ed59614c93809bd8faf1fff8931e7c75c19208d794","messages_hash":"66680cbb67209a95dcf731f1d6243bd323de23df41414bf98e206d99a19da246","transaction_count":0,"txlist_hash":"3b1504c970eea61ef41278d85452af79352d77ac2196eb47c14b9c0b85a8a1b4"}',0,'BLOCK_PARSED',NULL,'63f0c91ef601021f331366c8831e004a278d055343beccb4003143c119583720'); +INSERT INTO messages VALUES(1485,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a844d57e913195516ecabdb439ae656dd44837d7c771e522ed150a983ab582e'); +INSERT INTO messages VALUES(1486,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"87b5eb8fd683a52c3811dbd35e1d89bfbd7b5a9f39094115d0d4de712b119787","messages_hash":"5ab71d4c1c0157c630aae7ce080816aae80c526192c18bfd777c7f9ae8b3c6ca","transaction_count":0,"txlist_hash":"0597ac9fee2f987817963a434b2cf2929521bc747e1dcdd2487c2241aae63562"}',0,'BLOCK_PARSED',NULL,'c2e96806d2708f04cf503d3a5371ea08ba6147976db219032e9017448248539e'); +INSERT INTO messages VALUES(1487,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ddaf3c788cf32128ffa1dda23c522784f842a5e343e855d39ec1add433c12d6'); +INSERT INTO messages VALUES(1488,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"f57ae22e4221e2aa755d86c98ce87022bdcad81b342c6d865f90ba781bb8e183","messages_hash":"7b00bfea70117b2a1fd80d34b7eb5affb9aa446c7c78882921699a9ab6c64494","transaction_count":0,"txlist_hash":"c4897ad0aca28e45b98f5e0d7806ef36d931db6636b6bc736da788b2b7c62a3e"}',0,'BLOCK_PARSED',NULL,'51c670d814953f663a1e5d49bd9454f79848c5598948925849df7cf76ebd830d'); +INSERT INTO messages VALUES(1489,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'807f596c615fc3fecfd56f1c3261c1e8be8e604b5fd91c217eddd9658d4403df'); +INSERT INTO messages VALUES(1490,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"61fb2f7cfb691f5b459bb69f3b01f87f938cef952d77e05aca35388618a5b1fb","messages_hash":"f1080961c399ee81d01f0d4994a2bc9b7f2bf2a884f2103c99ac9f6a45ffc970","transaction_count":0,"txlist_hash":"bc99285058ba57cd25a51d9b758b78dc9bfd97e70ed8cd0ab460c364a1d894e1"}',0,'BLOCK_PARSED',NULL,'2a8f248a18073b7519c452ba39559ea703acda705cc8aa252283d24e14477fec'); +INSERT INTO messages VALUES(1491,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d11ff196da239ad15b07830841cb68ccc1dd00ba57929e36faa607ce9587c8f'); +INSERT INTO messages VALUES(1492,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"af52fc8612e37b23eac85a42a0c1508066ccd927ffa32871bcfb1d59d0311d44","messages_hash":"0240c274863c5c0e6d04c148215a6c49e8b6b92897389d88a77daca6a7017c66","transaction_count":0,"txlist_hash":"c07efc82f3890eb10421486a79d3698866e4fc22375df956767881f4128976f5"}',0,'BLOCK_PARSED',NULL,'bc71df454960cb655a96fcfa46666c047bb8c5c07e7ddbec31266beff5867d73'); +INSERT INTO messages VALUES(1493,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2586ba9ef6a61214e9e91fc1132ff378c803829b8ab00d0581707d10b058a724'); +INSERT INTO messages VALUES(1494,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"9088575009ada38214936dbcca419b2c644273aac1e6a6b6189952f82fc57461","messages_hash":"2e53f65466ec59be2fadb2a001da6bb9e3b0575e99f204732b34d5e84524b74d","transaction_count":0,"txlist_hash":"fc155b8240f28eaf96d18cf2ae0da22b8543f81b4363fadc59916967a61a1be4"}',0,'BLOCK_PARSED',NULL,'e445e7ef0aee813006cb77925cd74095435415d30709db710097a75a7c06b6c4'); +INSERT INTO messages VALUES(1495,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83a16e58f0c968c9f94a914e959cbdc71983fb71f5752c11e1efac510203e1ad'); +INSERT INTO messages VALUES(1496,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"2fa81bfb5b7e85a127bb660c07e7a77a5e57aea68b1bcafea4a78dc9cccb2444","messages_hash":"271e4d154428b420d839feb1b9af6fa7d9a19bba35e88990b49bb57a9355ca9d","transaction_count":0,"txlist_hash":"c73dba4bc721da9830c1752db030d4d5cdd46b292de8bf5ac8153a6c262b32af"}',0,'BLOCK_PARSED',NULL,'22940e0ac0c99e53e5296040dc8d23d7e56c1bdb3d248ae558b3aa12f8833b9d'); +INSERT INTO messages VALUES(1497,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de0881c09aaed016ff33463791b4fa12018d0a6674bca4dc26802453eef6bf4f'); +INSERT INTO messages VALUES(1498,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"b14d57fd49c1359f5ef030984e9738053a71fc08c2fd2f7de57f1af4f2333da1","messages_hash":"77c0e25f4d5ea3ea1f672eece81dc4c76aacf658d60458b2125bd3390e1dd775","transaction_count":0,"txlist_hash":"0bb7cada28ac0b3f3d242ba476fda3302d54840e171d7171e1583f2d0f77c920"}',0,'BLOCK_PARSED',NULL,'89c0b204df0633a377dad5842ebd7b4796aed4f705bc7018cde866971a35253b'); +INSERT INTO messages VALUES(1499,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ae3e910b2b26aebb5e27b89b1022ca5c1ed7d74e871deaab7c0ed3050e7cd67'); +INSERT INTO messages VALUES(1500,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"d64d843bd0e217075889567e81a8c5a423ec0157c5bc299255949950a4fc867b","messages_hash":"ec313bc2d5aa411da861230c6427a67cf01f28cfff5120a4eaa8f737f9825c64","transaction_count":0,"txlist_hash":"2ea4466644758b85c64c348342e5d13b29c3f09fa75ab4490c5a00cc4fd05fd1"}',0,'BLOCK_PARSED',NULL,'7fca0897ed945d7b6e25baec854836048b9480b5f4c9d4e3e1b338ce89ece1f2'); +INSERT INTO messages VALUES(1501,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0ea67f1d7800441ab85d6838e0161e5e00de140512370a95481921b806a2bf'); +INSERT INTO messages VALUES(1502,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'fe0ca535da69f73f076e66e582c03c68081f142044416168b838edc446cb93f7'); +INSERT INTO messages VALUES(1503,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'dfe3ec0129fe69d30b85edbbf3f09355b7b7e0f6b83bee2b1c5e760b96a7ab55'); +INSERT INTO messages VALUES(1504,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'e00cac1bad04b66f575afb901d41009b48c9930495d396243e067171660027c0'); +INSERT INTO messages VALUES(1505,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"9d542339dd7f803151e0956197a706624f5e5ba938ac1ba1d365fd632b72c0d4","messages_hash":"3917bf0deb4f8e581203de5bcf24f2ec23d84d7172757621759830042e99a279","transaction_count":0,"txlist_hash":"4e11b30214f2ef62c8e2f39610d578f88a6bf30eb21164588b1400d080bf6d5b"}',0,'BLOCK_PARSED',NULL,'567c68573e1737bc25ab29ce1e3ac6f9258d6fd222c0ddd4b02343e99916fe84'); +INSERT INTO messages VALUES(1506,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05773e0d6c345a579bd3135788d1a51e37ab8c8ea6831e9b6870bf0a1d345a7b'); +INSERT INTO messages VALUES(1507,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"431a454660cdbcb14f4d2b3401f13b2cdfd85bf6bbd9f6da5a6910b43be20cd0","messages_hash":"74764cd42f4801c7dae33e523e91db2a2087797c295547a4eef0c9743e19a774","transaction_count":0,"txlist_hash":"003c8bec2cf1521811b5f908126e1ef8c5a8ae4591a41d1185ca036fee8ecdf1"}',0,'BLOCK_PARSED',NULL,'ec869e0c6752f8251eba3a279f832fe304a8fbe7db59da791bd42645f11c010e'); +INSERT INTO messages VALUES(1508,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'651a59373b624fa22ade154cfa265d7aeeb619f708073f5673fc21bfe4bd0d53'); +INSERT INTO messages VALUES(1509,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"ad2df931a1c3076b4a385d0e4c0b678ca226ad8a483376d45f333e08c375b08d","messages_hash":"215873234ca21873b29cdb3db9fc295de5146f6e844317094faf4d87a541455a","transaction_count":0,"txlist_hash":"b1f46ab3d045770a71269e5b1f8bbb42c88cadac72a1d60cdfc2f4943e7faddc"}',0,'BLOCK_PARSED',NULL,'61ef9f00083fc7e9270200c54d32665279d3a3767e74ab233d982f93b651a6fb'); +INSERT INTO messages VALUES(1510,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2843c5d805757c27d39597cee0ec5ed536c024b2ae6accaa860ae0d5dca01d3'); +INSERT INTO messages VALUES(1511,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"f404486079e47c058d151bbd246c2bdfd939bde0918b8d542407ee0f2b6d0b0f","messages_hash":"6550b5b918f15552d0081dbc14079ea1d9dcef4986724a76b3822d64b59bd84f","transaction_count":0,"txlist_hash":"6a5a6daf8eed8aacd68dd39976bbd44a93af5e5d0d76d97f5d098ce9ae6ee650"}',0,'BLOCK_PARSED',NULL,'668e53a7f2e9b0ffd647c8dd49491cf7554a856117a62e0288945c1014878d3c'); +INSERT INTO messages VALUES(1512,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6e1ae2bd5bf9b4eeeb659e7113e22dc348169358caf76af8664bb31c023dc64'); +INSERT INTO messages VALUES(1513,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"cc47d87f2ee4d9e38d6fe9144815a9457e815cddb62e15432e69d4c6a61d64a8","messages_hash":"77a665e998cf4fde27d412dea745d697b96a67be6c1df619ec8786b2899c8b15","transaction_count":0,"txlist_hash":"c952759d8f6616bf1ddb1f987f34743f6b09f2f9ad8e8d8efe4ae9c9a32be1da"}',0,'BLOCK_PARSED',NULL,'4a3fea42ccf0648b060d210739975eb76dfefbb0937e1dd93a20835a061fdbd9'); +INSERT INTO messages VALUES(1514,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d19f045fec1467c2c44e12fd910704f69312dde31eea3b40a5064668cc1fcbc'); +INSERT INTO messages VALUES(1515,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"281d55efd1d17a0ea8e61f6e71b4e5e03589c56950bf22ee05f34ccea47efeac","messages_hash":"b799599306e188b6432f73f51253a6549091281c680175e2c284991c2ee42c93","transaction_count":0,"txlist_hash":"134263a2ae2b80bb58e325f7fb84751c3224a9b4b44b3007b97db02f71b806e6"}',0,'BLOCK_PARSED',NULL,'ca74352192cec35a8f4ad913cd02b06fdecb563ae4b2e52501308b00ffefccd7'); +INSERT INTO messages VALUES(1516,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bd7765ff285c7a38fd07faf421a2daf48b3acf86253fb4057fd6f761122efa9'); +INSERT INTO messages VALUES(1517,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"456576f4773f5dbfbe9026e46a631282fe2b3a9721545f8999a572e8e03460c7","messages_hash":"2145ae04a209733fd7066e847ad67ea7ed6cc55eebd07187d8e5034451e233b5","transaction_count":0,"txlist_hash":"952ebb2b0c23ab41dc801ee9c905e108008fa446d32406d2859ef9842d5f33c6"}',0,'BLOCK_PARSED',NULL,'740f25f42f8dc3682fed0c01cdd0520dd0744e69623cca98d305d453d5d98e56'); +INSERT INTO messages VALUES(1518,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71a326de93dd98df2a01e92b44221eae419796a99e8f1ebc3cd3be572c18ca99'); +INSERT INTO messages VALUES(1519,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"d8e86913b170d3397d1a43e74480259a4e0bd15166fb775c10784df3e9306fd6","messages_hash":"16887a8e36af78e12b3d9fd749ad2934cb98c4df89d25dcd69be7e92ec05a918","transaction_count":0,"txlist_hash":"7146b6d06361698454b348babb549f0dfad68d854bcdb36497364c46c9f38805"}',0,'BLOCK_PARSED',NULL,'0ba7a5743cb55114961c44ee03a46b95db601f1bbcfa06ce4cf37c83f2616bf5'); +INSERT INTO messages VALUES(1520,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14ddd23bc24a80577a5fceca26bf7a0a8903e991742b0bb7298a0a8496175087'); +INSERT INTO messages VALUES(1521,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"6a844171ef147e80140a7536dd6172744173a3a6b57dbe04ea53f8a1830088af","messages_hash":"02a4b58ec409c6c9dc7e3a9d97505458aaf762b1dbd6d5701c96d6762bcbfb15","transaction_count":0,"txlist_hash":"8ca4c177876d7993ff29d824f884dfe9fe185912b53a52f21b38c696b9974406"}',0,'BLOCK_PARSED',NULL,'3d5fa16427a0718481b6196f12dc34d14107a2ee2c68bf7f5602e6aa41c54386'); +INSERT INTO messages VALUES(1522,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c88f3e3388d9a9839521e0e16496cf4568cbafbc19c09dea4d6e6cc4b4d46a3a'); +INSERT INTO messages VALUES(1523,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"86cd60817de901fae021ea2e21f197c27f482eb9cf022ada75e56831002df9dd","messages_hash":"4061105783c705bd5a5f3a29a83131e589f6954c0d455342e859888af3f08214","transaction_count":0,"txlist_hash":"64a95a28ef3a0104b4ce8f8aea21ab1168114bf95ea720dba97c8933c4c68c50"}',0,'BLOCK_PARSED',NULL,'247a1391133b371080a7365ffb2340d3ebc35a60d76ba7a8a801e18c12109808'); +INSERT INTO messages VALUES(1524,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'457d74999574085eb86d347b9ecf66b4d80e0f0371c33489d339d74e223775fb'); +INSERT INTO messages VALUES(1525,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"df2f6f05d8c697050096e9e9b17d2c3710da246b9d659f96af6d47cf940442a9","messages_hash":"1a4a5d26e574705fe16bfe26f34bbffe21c38e0842211d78fa5459852eec274a","transaction_count":0,"txlist_hash":"4fbd933528819ab3c7788ae7292184e8f756d17660baff7785301defc6c20d6a"}',0,'BLOCK_PARSED',NULL,'8656d67377c49f7b80e9968d5178a2f1c1c4e44243a6edac4368360e703c07bb'); +INSERT INTO messages VALUES(1526,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c47d23c87a9da1bd54639105391e79ba7623682493e31d41e7559b880a02a9b3'); +INSERT INTO messages VALUES(1527,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"690a98a9c3a835f7383124a4a171e58b7a1f17332b5b66d7be095dfb99636e84","messages_hash":"12e0aaa0a96fad4d154f9531170f2e996620f27c76f63eb4ae18c48779859bb9","transaction_count":0,"txlist_hash":"99351227ea2c5e09019fa29e9282ee8e03cd01d1752755c36919dd5b9f92c429"}',0,'BLOCK_PARSED',NULL,'95bde2f131ca22d75d6ad35c782bb433fc52fc6aaad3ac0638e1ef17725299b4'); +INSERT INTO messages VALUES(1528,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eadb74737932a8a2988ce60397750c78c1c75229e13b4b5fade23f0809d4ec8f'); +INSERT INTO messages VALUES(1529,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"9067cce032c8e080df48be0a1489479c346d7968f46250619ca64387dfd87001","messages_hash":"d27caaf2a42242ac5113b6b77c5bdf520d4ffb6d81d78d724b2dfd23f4a29dd8","transaction_count":0,"txlist_hash":"7f0dbd6689ccc0894130428fce9bb17cd3efeae2e38893b721ab3d2a5724a796"}',0,'BLOCK_PARSED',NULL,'7f51bc0b18408ce1644abfdbd9c6062e2b3a94c6cb2992812ef651c8b3a9ecd8'); +INSERT INTO messages VALUES(1530,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89375eb1dd381faa479cb089279a5749a86a152526dea8948f4632b95da521e2'); +INSERT INTO messages VALUES(1531,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"25d922d16e782dac0326e5b15f266eff4ccfa34a8778d1293e25db4e67feb516","messages_hash":"fc74adb84baac2e99a023df0d4417087c3f806739ddb7df96349fa61606ff5b5","transaction_count":0,"txlist_hash":"7b7989d4fa031daf27bd9f46e349fa664449becbff534661fa5e7bfed1e93c82"}',0,'BLOCK_PARSED',NULL,'faafd5c5ff80babb3abd29a5fe7c6d5289eee5c52f04ac3567386818e80844a5'); +INSERT INTO messages VALUES(1532,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40568bd7af073009bd4e2e407ef2931fd868bf580de87b29bcb4d396acd76c0e'); +INSERT INTO messages VALUES(1533,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"be5e3139d8586e393873fdd17b014929f3916d8a50c959bb75b6aea4db3b6f53","messages_hash":"4b53b10b901a0f65f43ac18f7ffd99389d66220f01177cb43094ea3d25de0451","transaction_count":0,"txlist_hash":"6f46558ca2023cf78c2a461f486d74e112fd2ec64c692516b5f5bf9d1a33b49c"}',0,'BLOCK_PARSED',NULL,'088469c83e4d826a48b4c388460b06ecd778011b37c52d3aad1d8572cf8c402e'); +INSERT INTO messages VALUES(1534,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a63b7e8166d255ae72883bd3a2e82a6d9518acb2ac12be7d6b8a7ebc7bfd767'); +INSERT INTO messages VALUES(1535,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"2353cf09fe846b4166544cf95863258c5f89b432480f71ed08980c08511ce2c7","messages_hash":"cee3b17bd16807ae4f543daa5a7e78da25cde21d5d0ba2de48766542c2c066fd","transaction_count":0,"txlist_hash":"2873ba053ead1a405f94a9aadb0c7a8b3f6f2aea88b71095ff6b4f8a9e672714"}',0,'BLOCK_PARSED',NULL,'e6f3ef95ff1408593a88b012146ed4a395a92aa7935d63381bb38e033e87202e'); +INSERT INTO messages VALUES(1536,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ee7d5a43bb1dfc7d04516bec6defb22170d47510b473319a3fad47c58c0ce3c'); +INSERT INTO messages VALUES(1537,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"a9ba0c79327a97a9598073003ae66fc9a472ebedf31a5d4d3512629c59f6f952","messages_hash":"d787aceb17f32d17854fcf023799effd5d3b9141b4fb00f65b37331c9a8bd141","transaction_count":0,"txlist_hash":"d1baf5e62e3120e51633d9cf2e24a641912351a39ea588258ffcb9d43cd90ddc"}',0,'BLOCK_PARSED',NULL,'1a84fd9f12e6afb5f76b6cbb126f9726ef7de6eb274a07a84f6c43ec3e7b4b66'); +INSERT INTO messages VALUES(1538,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7669b5a749ebfb398a911c2b8c4e0434a9a5284c37e70ab410c17c5e7459174'); +INSERT INTO messages VALUES(1539,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"24939be5e74e777849d5ee446483c3667bb9762a2e6b04ccc32f46a13c0625d2","messages_hash":"f6348e78af0c7bd894ccca2c71d53665b0aebfdd5da3463158af8d2bb08b2cf0","transaction_count":0,"txlist_hash":"72c828430e880b7eac34b1e7616375a892d8d924bc2d447984b094091b810464"}',0,'BLOCK_PARSED',NULL,'6f3eb846c1fdddff34a59c5f5657f41d9ea04ce66f177653248c301703d59df5'); +INSERT INTO messages VALUES(1540,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5357eec38969213d30375e82a3adbd69af8bcd7c56da8c60278cc5554956e03a'); +INSERT INTO messages VALUES(1541,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"77d7cd9e661d7b06c940254fdccef8ba463ec9e4bf07e1a47288aefb10862b62","messages_hash":"b3b6a9f322d46e0c28a9f600c964a360afc9b31ab1aa5b4152e0c9e4aa23ec91","transaction_count":0,"txlist_hash":"c0727f185c8d3f39fd2d29829bde1f10a938bcd035906b7a6f9a58fbc125da7b"}',0,'BLOCK_PARSED',NULL,'7fd9c2908bff128d407f41449483a6800af99bf9b559cd7710be93f997ddb4cc'); +INSERT INTO messages VALUES(1542,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c93dde5b6e00edf3b15b75f98828470f875943fc4d2416071ebafc41a3e8d3f6'); +INSERT INTO messages VALUES(1543,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"b9b9190c1f33d9ec9d3ef5ab16ab5ae3df37a10aacf44fa36d7d706c6a2dcf92","messages_hash":"f49d0d7e5d8f32d07706b4053517228ccc41c2e8a0a0ac0f63fdcdd8b8f2a968","transaction_count":0,"txlist_hash":"d9a6511fd4f1524b13ef62b6565099c0120a5a78e30d233e782e8ccaa59dadab"}',0,'BLOCK_PARSED',NULL,'6f1dc20560a212ab189614c098dd532cec5dc8f481194374e881d5e4b23822e9'); +INSERT INTO messages VALUES(1544,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d325ffe15c1a21d4a66e06cd12d4440644b77d6a9303028ed4f376ecb11e9a9a'); +INSERT INTO messages VALUES(1545,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"6106df15c5efce0d238b69286531168e5fd935ec66efe5d99d7024f9a15f2612","messages_hash":"8963294497e6038f0b0dc8713518dddc34262d48663c5465b2994d7aaa9c521b","transaction_count":0,"txlist_hash":"325c7d3f52b8a41b966a74f9590ec180f0604c0bc1aed8c1d4d7b60f97955621"}',0,'BLOCK_PARSED',NULL,'0fd4ddec7a3ddbc361843fc2785f9e05758e1c6a1779fb87bf5e35b3071cc4a4'); +INSERT INTO messages VALUES(1546,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'212f07ad51504cb030fddf64a06e7891d0b2afcb32da7a769e14f7d065c4742c'); +INSERT INTO messages VALUES(1547,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"4cf1aca34358bd858420fddfa75964c6b8400b849d3a0b637baeb902e3d143f8","messages_hash":"1f517b822b687c346e65a6baf2d46ddf9040c51c4f8455db96ae458c21cf28aa","transaction_count":0,"txlist_hash":"53e05d1f8de2051b590249c449c02881d8f98a4fef4c8cebc7f058766907d1d2"}',0,'BLOCK_PARSED',NULL,'536ce56de5f9f97e6b327e4dc04f4cc4e51342b3c7d64c5e1c5116ac9e5c3497'); +INSERT INTO messages VALUES(1548,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f0770dd247fb99dd0b81e96d719d18aab210e239e6da41a3ebc7c349f0948f4'); +INSERT INTO messages VALUES(1549,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"75380e5aec9bb02a0fe134b9ac364bb3217d2faeb8f9ca8d3d045e145a8db004","messages_hash":"6c8b8da8e04c7f32f126fdbd8dbc42ed7a057a4bc4c5bd4a00dcb16606d144e6","transaction_count":0,"txlist_hash":"d42cd49ba8d422666f6a837facdb242d45580b7a040f480e2d02b552a9cc4acb"}',0,'BLOCK_PARSED',NULL,'b3c8acb77dc125f14acfffd7d492941fedffca24c2ae259ae77bc30fc8198506'); +INSERT INTO messages VALUES(1550,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f549bb7f8f86faaae030e92f7c07908f70f50e0212b0ad10f418b88a15ffdf7d'); +INSERT INTO messages VALUES(1551,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"61c6bf541cef555b6e807fefd0c1c4aecf62e35692ece1946effc8d0f0c5e4e7","messages_hash":"db015975835ff9380fbc479552bee7b5d010b91388224f050d5172dea1ffc83d","transaction_count":0,"txlist_hash":"a2264393db78be837babeb4cfad0892bb56aa969e753a26f5c7f171f7dcc58a0"}',0,'BLOCK_PARSED',NULL,'4f8ba432dad35261d5a4c83d5d314c92d3abedce0f51565f70c3c18ff4ae44bd'); +INSERT INTO messages VALUES(1552,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d3173ed1208954548adb0b5a9de5845fcdb2ac699582d125df2d8a35ca3e538'); +INSERT INTO messages VALUES(1553,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"a9c53f23b3766b394aca7fa4e0e2f4d7bc231f58acca5ec294f1100e51a07609","messages_hash":"dce089b96049caa2a627a362caf6792f70bdcea48f310ea71e2d088536818350","transaction_count":0,"txlist_hash":"192dd744f9a0ae97790e6703435dc8e0b2c494253b086de0568836ae20532bec"}',0,'BLOCK_PARSED',NULL,'8dd41dd46219c36ce155b579ab1dd3c5d0bd492dc464beae2fd5b02164348a97'); +INSERT INTO messages VALUES(1554,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7dc61efa21cd64df3833ff4403be528d741c95ef0c29f049ff2af37fb8a26b8e'); +INSERT INTO messages VALUES(1555,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"81f9a537145fb937f08947176a73d4655e4bfbc3b0a0c3d16584c9fe31864e93","messages_hash":"addbdd3d5ee13cabe2310162bb4fc5614fe856007a34314af4bb975c28f1496f","transaction_count":0,"txlist_hash":"2565e5c8c1b506aceedee56e7b5f9f75c41f343d380a89126b0a2c31f5c86fd4"}',0,'BLOCK_PARSED',NULL,'de5063967fa65a312e11c90d7f6368c807c2b90b461ff947cdfc11a0e7b7cd65'); +INSERT INTO messages VALUES(1556,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f12fd97096467ecc75b48dc9241bf79afcb7fd7c26f45a65ff5cb3481ec51d'); +INSERT INTO messages VALUES(1557,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"f3f90352f7d1b5e8d8301eb351ae038e27e3d8210a9a544d42c67147328532c0","messages_hash":"09dd2b7628975503f55a34fd0caa19e94e5452728e6f985920fdd14c94af9ca7","transaction_count":0,"txlist_hash":"7b230e7ff6d8ac1f26ab75056143a3d4304378270d31881b7557ae70a6c754e4"}',0,'BLOCK_PARSED',NULL,'3c53d106dccdfb9f0eedcc832a9dfa1c6406dc428b8d3474e7818bb2f89c840b'); +INSERT INTO messages VALUES(1558,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c2cd9cc81016b2ce0bfdd7a12e3a3b9f576b0db1402c12c38f634b40ee8b67a'); +INSERT INTO messages VALUES(1559,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"88d0ebfa193bccacd5a6198fdb5544f7bcbae34d1c6a0b48415f481facfc2227","messages_hash":"dfaad15d429e7bd317458db76fa63e0520615f5268918d49545b08b278e2e3c5","transaction_count":0,"txlist_hash":"a03b1fb8d09d83f038680b716056361805ce89b7a7a9e6cefc4bddf07063b1a4"}',0,'BLOCK_PARSED',NULL,'4406d343e3a27f62346ce3bb5d53e25215f0dcac22e8a7a02e126101fd44dc73'); +INSERT INTO messages VALUES(1560,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'205b56427f11d3a5c9bf40deb08bb077eeae9d2cdb6d1c75cc5f2cacaa92c13d'); +INSERT INTO messages VALUES(1561,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"78dc24332463f1a27e7849813451835eaef944276f5bdec1838c30a3dee453b5","messages_hash":"b906b21b11cb03e49af9b351312a6807cb39435675e30475dfa60df0d0224bca","transaction_count":0,"txlist_hash":"2b151ee345b1de7bfe92981498405abb9db50907f5525df1cc3030d982baf2e9"}',0,'BLOCK_PARSED',NULL,'4ab79f8b99cb9d9ffe6d3f222552c5410085252c6afba38440051a0ab8c0b611'); +INSERT INTO messages VALUES(1562,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a8ab08743780895743c25ffdfdc065f59302307a2065f299f06ed0fd81a794a'); +INSERT INTO messages VALUES(1563,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"6f8ce24bb75ab6ffdaefdec9123489c2a7efc94a7e1733637fa668ed5f7aa740","messages_hash":"c782719a0e23751e1b696dde07c606533eb94d7c1406f170883f75d2ae414078","transaction_count":0,"txlist_hash":"4e2b72d4459ee3673fdc855bff9efe0c95de337ec77780c6ce84142895d40fe1"}',0,'BLOCK_PARSED',NULL,'7fe194082c47bc35fdfc3febe69699bddd07db698dfacd537361c41d94de79b6'); +INSERT INTO messages VALUES(1564,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff0665c562973236c8114a671cd222814be9dd26b8e0c88e8e6fb8bf1c333b53'); +INSERT INTO messages VALUES(1565,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"2e0c8075d1d0248881c14b9c3f69ea7f011b6db18c84711bb07b7f68d0099a36","messages_hash":"045307065bc964157ae784b39e5a0e813918db3848a8c4fc93dff115a61425ed","transaction_count":0,"txlist_hash":"78f186296b451b2aa2be1ae39e87df9bd8eb11dcbde06ac9b6b5b3bba38c4432"}',0,'BLOCK_PARSED',NULL,'6ccdd1aadb8cd4b7e3b69d7d9a6545ea136d00190f2b9d7c46d6f5c90120a636'); +INSERT INTO messages VALUES(1566,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fe096fd73e34328e2868e66bc11b14bacab8bfa2effc5ec0ec34f34320e0c33'); +INSERT INTO messages VALUES(1567,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"13e04c93557b86a637a5b7edee007fd30ff4f813d9a3b4299d503383daa94d4c","messages_hash":"b41cb4556f2dd8fc9a92f531a8666c751cf2650acfb1499ffa0c8de30548015f","transaction_count":0,"txlist_hash":"07be379248f9d4f83fecdae175a1e530110ef7f02b9a0656dc6772f3bf212bbf"}',0,'BLOCK_PARSED',NULL,'a263f26a5d45ae371c10434f9348d5fc3967add86a5ab0ec0f3eebd20ba02ebf'); +INSERT INTO messages VALUES(1568,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2829754ed6692f5ea5b64458026496a93bf6908b80ed67568e4e4681e0c60d3'); +INSERT INTO messages VALUES(1569,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"4a60f0fbbf4d6c5bc0d8ad98cd3f2ec3212d6bb606bd98d1dce345288275c3f6","messages_hash":"caa7fd46dc35c36837f7a4b7d068e43aa2c6df335aa437c3f4cc3c6caa09af2f","transaction_count":0,"txlist_hash":"f32d375eab7ab8e9c45f431aab01be2439bf2df00a627db39c2c11c2865e6c68"}',0,'BLOCK_PARSED',NULL,'8b0ec23818d9903f67e10789da0e57d4c892fe6f1973c5f6f6c57a4428e3b9bd'); +INSERT INTO messages VALUES(1570,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'440cfa865fa9e4f173f86769383227c20920f033d4ba6c1cab795f171c71c4e6'); +INSERT INTO messages VALUES(1571,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"785d1a4f88ab690182405388c765098212f522432e69a68ee5b7f471a8164d7e","messages_hash":"b664efe566c4b69b06f8f491308e904f2ed046ea488b467166826a55040874b3","transaction_count":0,"txlist_hash":"61f152136a55a1c8c000d536f50b4c53fd0996e1794a80e9c1b40147069a9caf"}',0,'BLOCK_PARSED',NULL,'d7a1409e412d487fb09172066eb17c5f90786b5faea58e26e0df01a442bcafb6'); +INSERT INTO messages VALUES(1572,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dbce64594694ac732ab65fac2eba727099bc3d3d9469ce21a2d3dd8ed4548ce'); +INSERT INTO messages VALUES(1573,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"ea74bf89453deec1c8d391185c8cdbfed0064a9e9b09948eed408d7b560b1982","messages_hash":"12bf2a6fb2579f8d83cd4ec9d7ed69563b0ac0a46995b4c9a8dc8bc04c5bb887","transaction_count":0,"txlist_hash":"b09eab6d5f874d31ae759122dad38111111d00f670e668828274286d10f85524"}',0,'BLOCK_PARSED',NULL,'bad2d40224c1ba2e24ce5f366d5500c27dfce5991a8da5ad11cc55b76a611d0e'); +INSERT INTO messages VALUES(1574,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55bca303bc3807e6bd87016de2a12d3bebecdd01582ba086d3a703c4e1b4193d'); +INSERT INTO messages VALUES(1575,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"c969c1ab67b3b338989e35568c4fba6bee0278a6fb1fefd9995fe55d316e6843","messages_hash":"39f903a0642daf5a10df2d143004693602c91ec8ba3a982a8172e85e71ccee30","transaction_count":0,"txlist_hash":"2e9aa32554fc9ba2813195a611ff2a1ae9464f8225931412ec9db770a54bf9b7"}',0,'BLOCK_PARSED',NULL,'34bc281b7f28a166601c81af8aed346a9dc5294be73e9673134f16b42e08f1eb'); +INSERT INTO messages VALUES(1576,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4d2ed7310f67a7f27566105ba2d722ce93ec3bd5cec90e550268cdc82081bfe'); +INSERT INTO messages VALUES(1577,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"4b3014e7daf07e12ce4f59d0136f75425cf81c46d68c224edee560bdf32c4413","messages_hash":"ef419ae862ddd4bb6538c0cb81c39185abfca556ba858167498513bc1c42f81b","transaction_count":0,"txlist_hash":"55f617732b7b76a0635e7d1975881afaa314d0aed2a3f335a79775a4076a5505"}',0,'BLOCK_PARSED',NULL,'c95986fc3b9add402f225c959da9ead9a766d356492d4408b9ca08d9b6f885a9'); +INSERT INTO messages VALUES(1578,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfdef0e1809aab3e56533a58cc86e54872083255773401379caf78d15707be9a'); +INSERT INTO messages VALUES(1579,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"c29903b73d4ce5fae6c20af6dac989ee532d57945f4d286c1552ebbe4829e514","messages_hash":"98001a57a78b1cfc91b4538c3c622eb215d44f7b8ed349ec874f46760251a234","transaction_count":0,"txlist_hash":"3bb99f09fff4af95e566a3ac3373287b056ea5b545d9e166e46f335ea0c5c6e1"}',0,'BLOCK_PARSED',NULL,'e155b82a9b6c9f69bdbf454041b1189d4848b2ef621e5b11778a490a61ce1b2f'); +INSERT INTO messages VALUES(1580,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a76becccb90b06d295bab789a1532fc965fb3253e6a3cdade3a5b65eba361a61'); +INSERT INTO messages VALUES(1581,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"be056a10dfbaac7a217e7f30c5e60f5bac78aea92a16417ca2921d7f3b41e97f","messages_hash":"7e140144911238d1d8b1dc703ebb84974e67eabf965736e0f26af3885a109245","transaction_count":0,"txlist_hash":"9a1652a5d4724e13e989ddaf79321c684d8f965611ec1f9647f778514f070c02"}',0,'BLOCK_PARSED',NULL,'875049981ef13e74062f0b159e4daee2bd9425a18c9e7ed935b7c03abf68f5c0'); +INSERT INTO messages VALUES(1582,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2919b2c52803bfb84849d2473ebacd2b6130ed3c61fb1d84a5a52501592ce89b'); +INSERT INTO messages VALUES(1583,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"b410bb813654419d23348e4bfcf5ddf41a673358a6a973fc57e3816347bccc8a","messages_hash":"804fa5a9891318aec6c515d26047d62997195480b8ee44bc0a86b807099062e3","transaction_count":0,"txlist_hash":"3972379962afb9662ba4575c95a5199e86c0c0bc2dbe22e6eb085bf7ba3fc746"}',0,'BLOCK_PARSED',NULL,'06429049ccc4d6d5c22f8b764c35ffa7348e548b9cce53d2e7117bf787ad9316'); +INSERT INTO messages VALUES(1584,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'967ae4170c87765977d3c039d00c332109a4bc02aa1ab4d889f4970faee3d5b9'); +INSERT INTO messages VALUES(1585,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"5ad3e05ff5f93a90818ff1d4ffb39b8476e2e8c6ca60e88c27f92319d41d8725","messages_hash":"33813dbe8b795d039ca4625f0b200c6202c5ad0fb3848842185ca616813cbe7f","transaction_count":0,"txlist_hash":"87da2abc9c597cb51b2aa237eafb6bc103f9ace5c9a4d96c4018ce8d68881145"}',0,'BLOCK_PARSED',NULL,'1595444d46d5cc707b5ad2cc51160971f61317657cb5281549e09380fa881560'); +INSERT INTO messages VALUES(1586,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'622c09215a9049ef767620dd5f6b2e519fc32b49facf6bfe3852a53b52fbd61e'); +INSERT INTO messages VALUES(1587,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"9c5a977c46b99326a92caa9d112b871dcb7160e2c73abfd4a8ed015330a2d032","messages_hash":"1dcede5740d6e21b72ead44fcad640460fea3432fd36bafe313f3fb4b22ecb63","transaction_count":0,"txlist_hash":"ca03c36b8dd4b0efdbcac4cec78f0d5ddd939e4cb357c31bde355b87dfbb4b95"}',0,'BLOCK_PARSED',NULL,'7c0dac3b98faebbbf454f0ea5db32a3f989be693a4e4191aad4bb3b531e29e83'); +INSERT INTO messages VALUES(1588,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59bbf5d3aa79f6ebac3c6e23ebd8e02421a469a976e35c4740310d0567c7e89c'); +INSERT INTO messages VALUES(1589,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"d8fc4c7024781f7f0e4925c28c2eba5c12917e3c69375b286148993c7bc3bbcd","messages_hash":"5b4519e34fcc185589f2cca0a176b7b058423ef4f2c9d7de130561b5a712bac0","transaction_count":0,"txlist_hash":"d50d9f93174debc774a0a966a63099af1c515ffc31d992a18c0aa39a9a698f38"}',0,'BLOCK_PARSED',NULL,'19594d39d7ab5bc406c8a13cb64be045b73b4d4021707274e1586c13bd1c026a'); +INSERT INTO messages VALUES(1590,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68e1b60aae3d0caf9543a6808ee40ccda6c70860615d46415603b675398b141d'); +INSERT INTO messages VALUES(1591,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"c12ab1abd6ade6e559de7801c009ee5862e04e5a84b4b28f012b167a4d70c68b","messages_hash":"715509548f6641c632ac3cdbbedb92652262ec001dbd23807b8909b994116990","transaction_count":0,"txlist_hash":"4009c2ae7bf5f5415e72bee5c99644e7d4dc760d020929544e71d96ae4c949c2"}',0,'BLOCK_PARSED',NULL,'8e597bb2e37dd6357ae9628608c3d8b9c373c9e35e84abb6210d4173ecd0fe45'); +INSERT INTO messages VALUES(1592,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c0f780076832959d803e64c4f6e3aadc054be9fc809f7cf3b38a680fc70c4ad'); +INSERT INTO messages VALUES(1593,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"03170891d13e894608eb5d74f6134253b910605d4f763807e538bf1817cdb232","messages_hash":"8da02af404a3f9df6789f40bdac9a5b685e305621fcd55fe4ac81ca5c2e24109","transaction_count":0,"txlist_hash":"3e14c67f6b7cb1004e55353c86ce60b2817646465f0815b5f2f93a75a426d040"}',0,'BLOCK_PARSED',NULL,'495396b0e5761c891624d408cb2655e6f31ad5b6eff0bff4ccdcd027a8e45acd'); +INSERT INTO messages VALUES(1594,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0957f8f89abf89459f541d07622671476bb280f2421602a2177b317f609e1172'); +INSERT INTO messages VALUES(1595,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"77f4e7710ac39bb4686c59eea34ceb696079acb46a8620544e427e2e814949b8","messages_hash":"b96a33a699a40b2d3fcdfb2afeaace5b2c07b31ea30a7aac1aa8fadceff8799e","transaction_count":0,"txlist_hash":"b4ff44ae5da9ab8269472175d3f9d735eb6a7e7a6bfe67e198b50d955b603fda"}',0,'BLOCK_PARSED',NULL,'89512ebecc14313113cb406deda977bab5fce2de57c9c470860baec0df987798'); +INSERT INTO messages VALUES(1596,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827f6d85a4746d3aed5db65115760ed5dbf20123f75299306987eb52439615a2'); +INSERT INTO messages VALUES(1597,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"a31473dfec4fb8d1659024b3b627715c68e7635396dd90c184f66debdff35ed9","messages_hash":"98381d91331e0c6a0a22041b9809a23a19d548ff437030ce8d5886ce089ec813","transaction_count":0,"txlist_hash":"a9be49ffad351ffd51bd7a3c11be9596f69919dc206a2957a5e8209163b1344a"}',0,'BLOCK_PARSED',NULL,'8bfbea2eda443ca6b23c6b95a406d2a13c2c7cab0a13c8fbb0c172b636d36af4'); +INSERT INTO messages VALUES(1598,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0ef624c639540e0304cef7263aabe76a8e895e515c9eb20dda05dcff321b039'); +INSERT INTO messages VALUES(1599,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"7f80269260ab4371585202d03b9c56bde5ab731e731a4f5c58f453f3057f637e","messages_hash":"cb8392e6b0757701ae33cf721c256b67e832f3602477331ad6f53c6d31e52443","transaction_count":0,"txlist_hash":"df288e295dfc5fdff7119b42a62eec5ff4f0576bbc1b3a4c6624de59a755f102"}',0,'BLOCK_PARSED',NULL,'ff1f146522763c87dfa16953a5b6e0c5b91f5ef9ad4178607344b11aaff3e737'); +INSERT INTO messages VALUES(1600,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92e0c998d1bb870cfbcfcc55432ff5f8e943872d6e28a9f45224c86433572048'); +INSERT INTO messages VALUES(1601,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"b6bc49e7852f6017b024ca0bdac9257e0f63109216cf00cfaf7110ca1891f5f6","messages_hash":"9df15b1a6db5cda5ca7cecd419e75adb97d62d33cd6bd787a51c7bc2b7d64a2d","transaction_count":0,"txlist_hash":"b984adbd3d608c92dbd931c9fb3da5f33f2322ce78a810ec2e278c45f62a46dd"}',0,'BLOCK_PARSED',NULL,'52200bbfd063e3b49cf05cc6300a4b61392bb6f0657fe81df77b6d7088b820b0'); +INSERT INTO messages VALUES(1602,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ae8ec28099086810812837d2146ba659ecb9a6fc00df21eeb74f3323ed0ae8'); +INSERT INTO messages VALUES(1603,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"fb9be635d233ed088a81f6312d9650a8659b5c0d52a815b0f0585293092a14fb","messages_hash":"3f545a43c629e0a59c99136dccfbb4c04b545935abd71fa9b4c99b63fcd2d825","transaction_count":0,"txlist_hash":"866504bc7ebf4a3fa68a8f94dff240d27d27462f2c10db6938877ae9b7fb5009"}',0,'BLOCK_PARSED',NULL,'7956392181cbfdecd26588a7cf491626075c8782c34687dd255eb0c78ba3b913'); +INSERT INTO messages VALUES(1604,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0d16261630a06d9713edad3180f2d5267e8ab274a0a7456697c12460732590f'); +INSERT INTO messages VALUES(1605,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"3ac47fe08bcd6b16eed00fe5ed2facd3eaecf50f36d33688f197c5c301eee30c","messages_hash":"9b3f4c70c7ad4cfc3b25873071b89f7b671815ce46e20cf1de283c917361f1fe","transaction_count":0,"txlist_hash":"94ecdc4de9361563c25d6d0faa000607c33e65efe2e98c1b8e0acbb27bae21ba"}',0,'BLOCK_PARSED',NULL,'e81f2d101e5b36facb1f34713840eef8fabb5782c44a750041fe998c6d896bd8'); +INSERT INTO messages VALUES(1606,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d13fa2fd04484d839a723dd3a1efdd22b163ecedf0e091a442c7ffb5d16c8960'); +INSERT INTO messages VALUES(1607,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"b9dc4ba1d33b9e158c6b82f825748d28403f4c8c01f1362e859b7f2f696f586c","messages_hash":"561a4780b4f9ce506e5f28bb1183d20a3238b97c88369aea2bbb3b48db8f1068","transaction_count":0,"txlist_hash":"535730de468af921ec665b48aac918582ca4b84cf2a4daca0f56392793c4c3b5"}',0,'BLOCK_PARSED',NULL,'77c602f25c58d284ba889520ea253e52d70c567e306783297fc515edad3c62f9'); +INSERT INTO messages VALUES(1608,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a78ac1c2e44138727df0516e1db887ee009f3c8bad90faddf60cc05a42a7973'); +INSERT INTO messages VALUES(1609,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"be8b3bcb08364da2ab39827a0d02173c8a6a46da9480b2736d992e90008b8d9c","messages_hash":"eb7711c83c4077da0326240e4dcc737e0cceaa382be924f30e1599acd902c123","transaction_count":0,"txlist_hash":"9cf03f02670340fc980745fbbf4f1e8fc0737a9bf4c771ed43014a1a06909e7c"}',0,'BLOCK_PARSED',NULL,'5f69c4dbe16ef7b33b9b68acd7572701fa776e93d98292d8cb53a96854c70293'); +INSERT INTO messages VALUES(1610,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'095c36f064dfccd6df89f2c714783b6248ef6aedc57007834bd9155a83f9bfd6'); +INSERT INTO messages VALUES(1611,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"8e3e879044b5ad0ee409dd84ca9c07ea523484a3074822396bafbf449580c2d8","messages_hash":"d0eb6325e6daaacadad4286d7b6ad3bc7fd5c5cebaba2b3269c68448b2447b63","transaction_count":0,"txlist_hash":"bc0c21aaa488ed44b152205d533dd519f13ccaf45b924acb3b6943057bcc1c75"}',0,'BLOCK_PARSED',NULL,'8a30ff9f94ae8c827c8011268ba12eb949bb392d835ca9f29a5b0df87ba9e02b'); +INSERT INTO messages VALUES(1612,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cefd77fda541a5a4e68e8137518acc8e7036f60f9e5995cb973ec5ff6665db97'); +INSERT INTO messages VALUES(1613,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"04e2dd3cbd7fa5aa973db5a1caa536ae26b385b236f71b4aaf59f230cf0b9d44","messages_hash":"b72158646ca70e7d58d877da861f61e4913da014e9670d4067323effd75905ed","transaction_count":0,"txlist_hash":"24d2eebe72806bdccaa30e2a4f30e477011d2a9066a71f6965391f96c4e6b63c"}',0,'BLOCK_PARSED',NULL,'c903f1e422fdd79aa439717471d1d9e776b01f4a08f6b2722147517712ef9f09'); +INSERT INTO messages VALUES(1614,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f076bb96afcd98180c60c64081af2c23642cec4d66c55907b24d372da4bc0b55'); +INSERT INTO messages VALUES(1615,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"b7e53c4f80c0e70a0804a9e1ab3649929e914ed111c0998010e78f97adb8b740","messages_hash":"b3ccce9d8cf5efa252e859aa8f600290666a443c0d8969a4dfd9ad8775124f36","transaction_count":0,"txlist_hash":"f2e7d9870f3172cda01305c9179874ec4a74d1cf36bdb51f1895baaf6448d002"}',0,'BLOCK_PARSED',NULL,'f0ef35552e48fab223e7852a47500d5a866378e43c44d5d7f208742bf9cac301'); +INSERT INTO messages VALUES(1616,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d88c3c40ca8a7a5f76b5374b69579afb93fb3926117c26b8e25308bf4ceea280'); +INSERT INTO messages VALUES(1617,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"f1a26ebe4528f04820f98944a5f54cf0211f3a450358e1a4574903bcb104536c","messages_hash":"8f1b5f06966712ae1f433a4aa22e56b5e83f1c22d0b8c3ad22125f76235fcd32","transaction_count":0,"txlist_hash":"4da5bc21245c5556b392c79e7e42e3af86d21ff33a06d44f2b16e97c52e51295"}',0,'BLOCK_PARSED',NULL,'38f5ffb024f8fca348c4bc333a90d006d1037eb579f1932b73bd91b69be37dd8'); +INSERT INTO messages VALUES(1618,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b590ef543f7502adc0d31290d86db32a13607c3c681d1d7d42e0c0654f9791c'); +INSERT INTO messages VALUES(1619,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"8ee7cd3754ba2f85467916a695eb2823a89c17bd36707b2f74d5fe489ec39d35","messages_hash":"389374c7c645ea784e72715749d51e793770d0af6754ce79bc221747be3f441c","transaction_count":0,"txlist_hash":"2d81253d8673ddeebeb48c42b400007c090a6ba5f6f71ca5dd0b2d8299026a40"}',0,'BLOCK_PARSED',NULL,'8c0e71b2362bb9a8d385fb948d1e395517cfa9787cf9fecd30da99d3fc15f309'); +INSERT INTO messages VALUES(1620,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45b48aca9a240e9c84f9fdf2e1ec5cec9404fac17f748d838859b317bac88d67'); +INSERT INTO messages VALUES(1621,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"a93684aea4d0b8177a008a7530f1c5a76aa3a6e0cd5f426fd04562eeed18edfb","messages_hash":"9097efc88a94df5ba7b671a10f5bf11d9af538e705265dfb55eae51cfb416f10","transaction_count":0,"txlist_hash":"fa576ee3aed499d0a1bb3a5aec51f5bb08223d3d2e03bf3043ed5a667b103a3b"}',0,'BLOCK_PARSED',NULL,'60b6e39d73a90beeb5101f4b1459816889c535fc1c08199287ca3e5ec8b3b3ce'); +INSERT INTO messages VALUES(1622,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23862a652c997e57f77ace72a6764bb65b6aa075e264bdd12d6de9ac0dfabf37'); +INSERT INTO messages VALUES(1623,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"f78e363f21bd326d12513b86ca5bf45412f33a70b140447da87787be0a39c898","messages_hash":"53feede3e02574d4f4f5729ad8fd69317d2f292c61d9e036f1dea72344a31a81","transaction_count":0,"txlist_hash":"1e37b3970e04cdf0abd2871cfb6ba80960263c90c16b9dd588a3a8cb02feed8f"}',0,'BLOCK_PARSED',NULL,'c2323a88a3873c779d8a976027e92db788a06b457996779c02705599230c7468'); +INSERT INTO messages VALUES(1624,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4977c4a34625e021eb1d6ad8f309feac0e820374d18d560bd3dad283d69c034a'); +INSERT INTO messages VALUES(1625,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"94d14b919e8df7f7a2503baa1ccce1ee54a3f2629288f7e2a54ff23055622eca","messages_hash":"fa57dacea2480c1df77352e2ccdbace19b0370f6c0d8a5d6eb5315103ff4001b","transaction_count":0,"txlist_hash":"b1d9ceb672cb247fdc2309432c4c12d318b5a26ff2229f5fe2597748db1a06cf"}',0,'BLOCK_PARSED',NULL,'00cc4c54c0ee9949c93f2fd7c4062f1ade66ae90d0d122675d69f0668e0ac32f'); +INSERT INTO messages VALUES(1626,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb9c95aa5c62457145c9f709d2784857544b57145bdbba05494b298dc4fb1ce1'); +INSERT INTO messages VALUES(1627,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"c95bed50e39dc26ec619b22ffcbd6d169f12c46cb58249f5609c200c49584575","messages_hash":"b08652535254d2e85e77a54c647eba2c1d9b452a7c768908297c014ca3e80d47","transaction_count":0,"txlist_hash":"7779a8f0008ffa9ee4eb279b471d63bc4d84fcbb86a438a008db27323a210492"}',0,'BLOCK_PARSED',NULL,'6a4985ef3658dcae8a144e8e353e829648487504c81b9938f1d58d7126617646'); +INSERT INTO messages VALUES(1628,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'064d616c717d6d1a8c9a493465038a85ccb6cb18ed9a48102d79fa41b7986f93'); +INSERT INTO messages VALUES(1629,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"60a763c963d90886938a2bc1a9e16a8a5fdaae245ca16bedab36852134ccbd1c","messages_hash":"6db17ecb0f8a8726ba8cfdf12e175befb63ffa0800069e9e7728c173dde8ea38","transaction_count":0,"txlist_hash":"22d7c9472d4e38d4981457a81ba077a99946dda33c8ae49909197ac6d68d5a43"}',0,'BLOCK_PARSED',NULL,'883b90734a6fba4ab28fca5d6acbd0c203b8084fa1aac4700e953e678b21a412'); +INSERT INTO messages VALUES(1630,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4ac18d2a3af245c7bfe631b7f7fd38860936a8f5413b79b5761bb59492f655c'); +INSERT INTO messages VALUES(1631,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"75150fbe2fec5eced262f6f6f049ea1056e2e7fe783d8c16d1147d19135c385d","messages_hash":"a8084987a147b5898473419bc8eb23214794bd8203f749dbf7bf5137b18ca634","transaction_count":0,"txlist_hash":"4aa6dc80d2afc9595f628c59697d4d590b2feb7b0a80bf6d55ccf73cfd6a8fb7"}',0,'BLOCK_PARSED',NULL,'fe7e11cd387e8df8cc56d333bda5097ddc91684493bbbd77ec86fe987d4010ff'); +INSERT INTO messages VALUES(1632,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fc4101e30cbf972191739119d6ae23c8c3cb028d298b69eff7389a367bd3088'); +INSERT INTO messages VALUES(1633,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"bfa94e7f142250e47a9fcc8378b50d857fe8bb5730a456f2030322df7eb343da","messages_hash":"e2fb6392d52dfdddba1dcea25a8e48e223fba00d9753784d23166eb658b29d7b","transaction_count":0,"txlist_hash":"8c0f93d5adcb5ae68c9ddf7142bd06df5dc2f6eab08c73d377f0388edcb20aa2"}',0,'BLOCK_PARSED',NULL,'8d129e8718ef85ef4ead603419e339f1fe747eedc122b9e5dbce810e4b725fa4'); +INSERT INTO messages VALUES(1634,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38e945d3cafa5cfc01686006595bfee0aceb59d864a9097084ac33570ba57353'); +INSERT INTO messages VALUES(1635,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"10fae07894dc8ca060b7a424ed07e1d6b82feba8ac401fcaa441b36114ff3a3d","messages_hash":"5e72c19ee4de0c6126706e9aee6cd789d6e9656e033d49a25e905e2a716a3448","transaction_count":0,"txlist_hash":"cdea255f0aa36ee6ceba5f33838a634c1ecfd1b09da9d8c02cf9661b57ced570"}',0,'BLOCK_PARSED',NULL,'341dd373ef56c1c6433977bb6f719c7e37c2726256ae4b5c61679d89759b21d0'); +INSERT INTO messages VALUES(1636,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2b391c531ccd409d5fb92e678584e4a189e2c119e731f4dc9cc435a6e345cda'); +INSERT INTO messages VALUES(1637,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"0fbf0b9dae7a4e5ebce6ae53e143ea82acf9063bac539eea2164661066465055","messages_hash":"1daf00fabead340b654409dcde8dc4f1be575689b53ff2e42b875f630d693edb","transaction_count":0,"txlist_hash":"680745239f654a45bf7f193af5c4932bdb693046f1d1578795a343ae3af87f08"}',0,'BLOCK_PARSED',NULL,'36fe8dfca1ad6df3a9812af740a8feced69f372e744e29bb17d1a02a0369a41a'); +INSERT INTO messages VALUES(1638,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27f1717dcc34548d4188f06737a5bdf83540868deafb291d45aaa3894ff1f9bb'); +INSERT INTO messages VALUES(1639,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"d0cfe76a174a3e51cb71c8fcd7e24a5fd82a5b5ec90ea2323805cf203eb8bc09","messages_hash":"5f7326953b5e053be96fb6810d483b11160456bc5e33a9705bd35295335fb677","transaction_count":0,"txlist_hash":"6c65658831a0285733e11bf6cb7c4cd7c57191ddb08f926ad89e64ed2934c280"}',0,'BLOCK_PARSED',NULL,'46229994c5e2178dd58565175f38c1f5403a045a562936368da2320952f921e7'); +INSERT INTO messages VALUES(1640,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37037fb6749f72da5788649bbce101d919b3ebe1195bb1df0166c7df2baa2f5d'); +INSERT INTO messages VALUES(1641,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"370d05d099f60864284c17b0ec4ce4cad792a564ca17730b788182cc1657d299","messages_hash":"e82f77b1c2afaa2530de704413a2b8f01fc6e087c8c5dfe29e57e46d04fdc5f0","transaction_count":0,"txlist_hash":"c9d0d0859f3187ef891643c19aa7635cb8da029d24f3b1773669919c0a160d4a"}',0,'BLOCK_PARSED',NULL,'2cd99eaa42c5ce7e774713dda82c0705ef0117bea2c95cda3ed6aa1845cf9546'); +INSERT INTO messages VALUES(1642,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e28c6b2134acd117953854cc711669577414b262f878506e74b5a05fe191b72'); +INSERT INTO messages VALUES(1643,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"b5ea3b5825c6ca6f1da1700405ac18f400aeb2381c5b61703a80627411884f30","messages_hash":"42055e3bc4335246175ee54060a2869f05a2428b4ae5f49ff00408c3dbdd91ef","transaction_count":0,"txlist_hash":"619999a441bda0cf4c20924a11a5a0cdb186a16338b4233b9eb2bd3ff701bee6"}',0,'BLOCK_PARSED',NULL,'c206768f1b2408bc319630f375151c4b491bc8542357d29face39b0ffed925e2'); +INSERT INTO messages VALUES(1644,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82bbbc5bef17bf27b6aed890a1333ab4e7c030df0415ba81ec3f420114cac8aa'); +INSERT INTO messages VALUES(1645,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"b21e5eadb3c00cc0413da1c9b272fbbcae96a271598852148968f900c4fd4f51","messages_hash":"9cb15ebdbf9a835e6006ee61c2cd4f6ac6f1be5c69a0c3c376c98a7c53095f70","transaction_count":0,"txlist_hash":"d45266037c0817e6346f37c12a246d14aa5b7821b377ce283ff69aef9e41e007"}',0,'BLOCK_PARSED',NULL,'7908d779bfd2521e34310c2031d2979ff4a54b632dff1cf5fc1ac1d3b10d70dc'); +INSERT INTO messages VALUES(1646,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'770bedf437e42cac4daf3060595fa8d62df523744abbb9822bfcb027173860e6'); +INSERT INTO messages VALUES(1647,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"4d65eaebd925803121e3381c9b6b5f358fa14f036707c310614f92df3071183a","messages_hash":"9eb5c3cbe3e4e8b6f3d29bd139318408eb8691b4954eb4ce406ccfc4165c67c7","transaction_count":0,"txlist_hash":"2eb7fbbb50bfe9bef73e1c61bf35235c2b1747d1a58f88915dfc83678a85a039"}',0,'BLOCK_PARSED',NULL,'161c2a10a765d5bb85e2ef99bd12f760b51ebc6e790e7e8de5d945fa740958b8'); +INSERT INTO messages VALUES(1648,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3b7b7a351dc83da45ad4613c3cc747d5350ad62fd65ffe0a9cf17ecdadee21'); +INSERT INTO messages VALUES(1649,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"8c0fec6c31820e12e92a9be814a0864530ffc01caaa72cd15536d70d0f8225db","messages_hash":"6c1d217e0f17672670d1b45f608f1e08eb155736348647738db16a459ddb6d77","transaction_count":0,"txlist_hash":"5aa16b7a4be1b2a22ac6fc9a84cd8a009ca1f5f13c41ab627fc51e828a190bbd"}',0,'BLOCK_PARSED',NULL,'cd2577914a57894c356ee4845e8f4c500c2e1e041b1aefcc4b879eb7cc789982'); +INSERT INTO messages VALUES(1650,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba38f68884fad04a0e97b483eb4678379f869c75de0f33a8c138e68cbc5cb8ca'); +INSERT INTO messages VALUES(1651,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"bfc63682a5acbae95d8c8c8af56cdc80f7ac4252be8117df4457fdce678f9d94","messages_hash":"b70fda191eb7001801346517f7ba1a68619e0ffa4158a7bf0fcf938dbd680b53","transaction_count":0,"txlist_hash":"12f7058df0095fec74c4e2a93c07cd18c79a1c4367d036e24d69c4321fba42ac"}',0,'BLOCK_PARSED',NULL,'8612da08dd18931787c2bc7f259fdcee89f9aeee7ad2259f687c44ac546bd072'); +INSERT INTO messages VALUES(1652,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1f41a902affbc514975118c91b8bfd66e45b976bdd4179eb52b448982267bf4'); +INSERT INTO messages VALUES(1653,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"d995b825b3095462095aa07f204ee8bd02bee7f0021757e0b9acba0aa89a37e7","messages_hash":"627059029e19496999943d7af5691568eaa4cfd4f22338c3ddede3f4500cd210","transaction_count":0,"txlist_hash":"d5e5ed306ce5d49d1ac97966dcf12a60c475f0957039b782476e871bcab34773"}',0,'BLOCK_PARSED',NULL,'5b35147a56517b286130bfa5ac69982b82376986cefbb5d2f6559840628c7958'); +INSERT INTO messages VALUES(1654,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d369ae06acfd1055f78387c8dddbc8700503f348e6266f5ab6a408304de5536d'); +INSERT INTO messages VALUES(1655,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"40a21d7a31b702854f3830189ac21f31659f4ffc4665532113a3864caf6ac548","messages_hash":"fd658b7d5933180c3de12b5b60f869883f1a6a024c811c15d2e22820d92e1c26","transaction_count":0,"txlist_hash":"058d50396591b87dfcaaaa45d96eafb04a51bd1d70ee0811f4e3b0d83744479d"}',0,'BLOCK_PARSED',NULL,'2a963be61ce0746d245f2a995b875a464378c69efb1582343c2f70d0716344e8'); +INSERT INTO messages VALUES(1656,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15dcdf04f1b450036d47a446ec84298e2c0507eb90f3ba587e07a547f9c72e9a'); +INSERT INTO messages VALUES(1657,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"75641c467acddfebc824a0313b0cb20fe75ae44babc63c684559b72365c80ce9","messages_hash":"5de3159ec5887c890d1b130372cc1246b0e6741578f2cafa537aa31f647f1e3c","transaction_count":0,"txlist_hash":"d36ec4418127c7ec49587e4450816eb1bb4de701c021d94b18a9969fea596b19"}',0,'BLOCK_PARSED',NULL,'211ed0281a7271fa7232618801fed6ce5a53f4f9f21ac092e3c5cb8877ca9d05'); +INSERT INTO messages VALUES(1658,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'426e12a4805a7f97c1163ea09a38154d8d3517a069c7b1e3e93f1553bac09f89'); +INSERT INTO messages VALUES(1659,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"19125e78aedfeeab7cec8532795eaca3219d631cad43b474451faea61a262d02","messages_hash":"0316003aaf3a993d1284e8d6b1503ceae638c5c726dd5acd3d56e78d02d9ac59","transaction_count":0,"txlist_hash":"b8e4a903768e6b9ec05a7e22543eceda9d1e558c9619646d7dab94b9261e17df"}',0,'BLOCK_PARSED',NULL,'f36a59e93ea19b5100dda70242f2b378da01b1269aaff2a11ce04888e1e9c842'); +INSERT INTO messages VALUES(1660,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30ccd854d3ea55df87af3d0074d79a6a247e04040ac889538eb798232f7ed837'); +INSERT INTO messages VALUES(1661,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"b4086ebbbb1ad338c2d41a4f515acdd6991b9128936b170a6c7cfd1c199200cf","messages_hash":"cad3961ab4e4fcff002a4c5fa70d08420c1bd12ffd006676dd5110262423c0e1","transaction_count":0,"txlist_hash":"4695fdf48da4917fbea7bf400cb1dfd3a7d9aba4b411aa6a28b5052527510313"}',0,'BLOCK_PARSED',NULL,'84bfdaa91f2f249ca6db3261ebe0e2e4699a318bcdb626594382eee5e7df9150'); +INSERT INTO messages VALUES(1662,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39c5e392af70e08204606ab781bcd7f7e0237f265fe32c33fe0723f193e28493'); +INSERT INTO messages VALUES(1663,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"002ea3e07d91ba9fd59edccd6ce543ac0c80f3eade4fd9ac6ffe5c470b32ca35","messages_hash":"c3730a5a4a5661ad447bac2663bac29b8b879e0f881ebd02f2af051ca1f5b749","transaction_count":0,"txlist_hash":"8dc78eef0652f4f3c51281c8ee97b097f9317b7e34370eb630955a83d54b7875"}',0,'BLOCK_PARSED',NULL,'3e55b12178bb5c31d5fb59c8e31641ff935ed38e4b401c0dbedd742b8519a31d'); +INSERT INTO messages VALUES(1664,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dca1091088c62f97a4389ef808298cf010d382b7ce5cda3f78c0688c0f535ec'); +INSERT INTO messages VALUES(1665,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"8a7951661175cabfc9c5ec98c84398c69a18b0cc90dc2eadbb4a47217f204d17","messages_hash":"ee6ed8fa6b995be14d299b4724d00d4b4c95027bf7b699c736fd7432ad81afb7","transaction_count":0,"txlist_hash":"d43c3172d1665f58f17630519f9a72aa3eed1915be5f002e7ae80c02a2f10eee"}',0,'BLOCK_PARSED',NULL,'97af12e09f3610959f19735fbaa9e4d07d5c2d16eed3332f0252afdec545dd5d'); +INSERT INTO messages VALUES(1666,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd5a7c2764451345d535345ca7abd660979428dd370e34d83f1a01da316829de'); +INSERT INTO messages VALUES(1667,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"dfda3ea8a3f6b347fa5aaa711facf53d66f4b59b34fe8310d52511b06c5aa90a","messages_hash":"048090da7c741f830fac5580197c15dfd9069e5b8f6aa250d4bb3d92d13eec29","transaction_count":0,"txlist_hash":"ce33926f42490f8f818b92dc62637ac54bcbececa5a11a990796b90771644126"}',0,'BLOCK_PARSED',NULL,'8690807e8e6e6321ae82e0e45ec4f6ed11b61937d30a422d5f35a45cfcd19ca2'); +INSERT INTO messages VALUES(1668,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fae394cb56fb780e8c58f9e49db983856fe3b6507e8b9bed1f08ff42bb11666a'); +INSERT INTO messages VALUES(1669,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"1ab7c81c38eb3bc2f757e232d9235ba8f3b3c775249a31f81b64ea5b744bc446","messages_hash":"10cf5fb665d0b30d5848f4ac110c65749c611e74a4d65c73ea93614b59fa9f87","transaction_count":0,"txlist_hash":"35c12d3cdfb2f7d3c2f86cef5d1f2218245ee737649c1f1f055de7ff579c5a03"}',0,'BLOCK_PARSED',NULL,'0c268393b51b006ea39d6079e285356db5773041864267205401601e8ab3f887'); +INSERT INTO messages VALUES(1670,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5994c91639a7b54dc2f55c843e9ad8643e81208b99b2a441712e39e66c1f32fd'); +INSERT INTO messages VALUES(1671,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"df56206da793ee3d5a62d8b8204f19b58bd571defa817c5a755942d23984406d","messages_hash":"07cb16ff67be391fc5442cb46749ad503db59f2a8e656be5801cad9a637a4435","transaction_count":0,"txlist_hash":"3d3cebb865c78d28f9a5dbc8d972bf3e4dee3957f4b1eacd6830747bd3ea8cf0"}',0,'BLOCK_PARSED',NULL,'104fa9146779a4b58f05cfe338a0f4669f1715a71092dffb0bbe5a799958a864'); +INSERT INTO messages VALUES(1672,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c74ec1d09e4cbc67d5a674e7d3745049e5bcfbd17ce32297bbf84b8375100d89'); +INSERT INTO messages VALUES(1673,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"1300e495aa348e8955ebc0d1060fcb0fea24197d400304aed07ebbb37f3fff0d","messages_hash":"7b09e6ed38eae5b767c30ed38ea9ad5bd63cc2b1f9c02d12e0a1f27ff7dcd347","transaction_count":0,"txlist_hash":"897158d5c9c816a35219345773f476879b3b840ac8e95306d37ee7b3f9b62fa9"}',0,'BLOCK_PARSED',NULL,'5bac90cfbc34139292205c7b657f8ef46042abe81951c3c545ebc5ba551cd816'); +INSERT INTO messages VALUES(1674,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e60f6bff5deb234722d41f7e2db8102b8261bcc7b8d277794a17a425925605'); +INSERT INTO messages VALUES(1675,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"80afea7b225a6056f9e93264a4b60bff6150aa41fb06dbdd127834fe7c41e5fa","messages_hash":"ec916fd31b7fd812e5d8aedae7bb9da7f404374f64c46f9674d4edc697aaf3ff","transaction_count":0,"txlist_hash":"5b957e21e55a45ba8824e43d814efe3d98e3bbcf5a5ea27085782101c0c51555"}',0,'BLOCK_PARSED',NULL,'089326f519699174e2c2cfbcff707a9b204ddd83f7586af7524b99d4f1d2b8d6'); +INSERT INTO messages VALUES(1676,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a891d6cf6d8767bbe8a19065ac2b972407503f262408b1be57b946802e9efbf'); +INSERT INTO messages VALUES(1677,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"7a904b662a12891224a26684d2374306a17d12948494cfc2833979083484a9f8","messages_hash":"69a3fc27bf61f998d9cd94cb8194122bba07ea28ddd22c58ecf4ffc6a9bcff1d","transaction_count":0,"txlist_hash":"d5f84d36c3d5ede129a9456688157edbe3d323d0c332ec962db5b7a736ba61e8"}',0,'BLOCK_PARSED',NULL,'a2720895d4b0aaae5350bd1d937157668156d841e8ffc7ef0ef513c1ceeefa97'); +INSERT INTO messages VALUES(1678,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b6acb17fc1053b4b894c597b857e06355064441fb16814ca1dcdc565c846cc1'); +INSERT INTO messages VALUES(1679,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"73f475db79e082ad33f59135260a81af04c66b1afa05d5faff982edc5c833e62","messages_hash":"0ba7059cacf287f1535ee1f9c89540d4e70030ae066daa1b1ffda116a7fc1472","transaction_count":0,"txlist_hash":"c69ab7da8f6ed61d342c31ca7e50fdc09d9d89f19e1e27676601dce3e312eb26"}',0,'BLOCK_PARSED',NULL,'3bca3179cd3a27756289e6cb9dbfbc9fd0fcfb95075fc0982fd33e0d760cc323'); +INSERT INTO messages VALUES(1680,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b264c36c3a3a5f8804897a92ea017e3e21255582fb38b523f30ef8f6b32c72d9'); +INSERT INTO messages VALUES(1681,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"fe609333c29d872aeb9a2b7a30b02cfc5ad47f581f360e385926e62ed5e35c7a","messages_hash":"6da370f16f81f88a16e6c5b8479b6f7918ca06b796193eb4029bd1b07c70ac17","transaction_count":0,"txlist_hash":"1fb2979c0514308f0e907fa6588e905449eb740c853fd8d0be5bacc93782dbac"}',0,'BLOCK_PARSED',NULL,'73fa2ab2150bce62a405105724539570fb9909c952a6965848d9d7d36d8d9edf'); +INSERT INTO messages VALUES(1682,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a729a2b2d3b48c0f82f77684427e1f26986a05531d23f9a5a2cd583cc8c36abd'); +INSERT INTO messages VALUES(1683,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"37c0e6f0723cf44303736e01242f5e98acac4d49c3804957a060710b2304a7b8","messages_hash":"fc30285d912a0653481bb75ed90c7533885781615af0a385d5e90afd4abe05ce","transaction_count":0,"txlist_hash":"2600501783ec4a8999a8a177f2675fa0b639ecd04003f4f629252145b47905cf"}',0,'BLOCK_PARSED',NULL,'3c38b93246d4adbf2cc2d264bb59306f827e6ff91435270bb2b2e4a2b7434f0e'); +INSERT INTO messages VALUES(1684,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5934e33283a14537dc0cf6fda7d28504923eb314c53550fe110ecc177fc6bb33'); +INSERT INTO messages VALUES(1685,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"e3121b1b293875664571808b4157d6a25753a9009ac3fd6ae115a641d535f141","messages_hash":"007bf07fac63f08f5fa4b284ee8604f63226f03cd117b1f1c54a6b7f79cd4f16","transaction_count":0,"txlist_hash":"09ce0b5a21363cb3d8d862e0610b481dfe4ec61e4fdcb6d45a9879e687f9ad6f"}',0,'BLOCK_PARSED',NULL,'e89f794e57318d8aab4c2c799e6f8798ef731594f8b5a5576f760d310b4e6c8e'); +INSERT INTO messages VALUES(1686,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'841465a6e67a8b816850dd2944076f091b93b05c1f16881745f86c294546acc1'); +INSERT INTO messages VALUES(1687,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"31e3ed8ed6830e198c02873357b1b86a5f7d034710d6d67121246b354ce01c0f","messages_hash":"4f535b3b29ab5d7f508b90aeaf8e0306b306995fb1f42b4f20c209abbb52a29f","transaction_count":0,"txlist_hash":"5348277e5bf4da81114fe113360bcf8f078d8501ea27fb0e9424e056e42092bc"}',0,'BLOCK_PARSED',NULL,'3add7b1caa38b1187951d46f996457768c298ae8d8037392ccd63f0c59dd1884'); +INSERT INTO messages VALUES(1688,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ee07627c11bb06d8face06c884f00c77f66369865cf441044f94d940a130c2a'); +INSERT INTO messages VALUES(1689,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"babdd735e0b8176a2fd4b30c00f207e072beee68acb33f382d7be7ca49ddf01b","messages_hash":"78a8533f1b71600d395568cf68bd0fc235df43b0b32d9bf950a77c1d9bbf7858","transaction_count":0,"txlist_hash":"da8cf9523e0b98162d494aed02e2b6864aae2f7a2fba8fca63cc61c531a6a501"}',0,'BLOCK_PARSED',NULL,'1d5c4b3b8bc76ca53d656eb8a890ab199ba02755c90200355ade4475e1961bfb'); +INSERT INTO messages VALUES(1690,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a67ec5411e8a5a97d45e3c3cf49aa1f52e8374e756b34928d406ab6c94577a6'); +INSERT INTO messages VALUES(1691,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"691591b6f8fb8011eb76f503445c146f91f9a767895af28fbb6b8f371128c331","messages_hash":"bd57d6e8c212f29dcfc8e4785222ecb0b0c3beeb7416a0421291e2850d1a553a","transaction_count":0,"txlist_hash":"7c6b4c26e232185c3e32e0ab40195273d19160aaaaebccdbe53a3b6d653f9019"}',0,'BLOCK_PARSED',NULL,'8e5c8d16b2f328d6ebdac31736e99790893f3d64bee0b0b774fd2c327d18ea45'); +INSERT INTO messages VALUES(1692,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9beded1f17177e9b52c795de133d599cbae93edd371545c4786b79aec683f2b'); +INSERT INTO messages VALUES(1693,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"b5a75f28f1675c1d65e5c2eda601b00be193046f8d5455280ce7ce67f590d461","messages_hash":"d1fd09c87b81c1701f2dfce552a05596b4890e443fd9455861aa20bbaa2dad89","transaction_count":0,"txlist_hash":"8f12bf46313d1ae3a20c0949de32984b5b652dfe4a9a0d0caa9ba63f137c698d"}',0,'BLOCK_PARSED',NULL,'721c5ce4d3dbc255a1054cd9c0d1211b9e7d4484874595fd5364059e12b23769'); +INSERT INTO messages VALUES(1694,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fcabe93168fd7ed7d2e5dfb20f22a026b3757ec8c2c0c9ce89f08798982ee99'); +INSERT INTO messages VALUES(1695,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"96b5e331cbeba83e0959fa7387125e9bda307b2b4d77519efe8fddd8a468a2d0","messages_hash":"135d6b4dab60c1e4ade976a98ad2932f74ed30607e6b72e00f58f7c272fc5823","transaction_count":0,"txlist_hash":"717f89b40f1b3d78ed147f5fda231c9184746ea64ddf1843d8703b8e161ac59f"}',0,'BLOCK_PARSED',NULL,'a8ebabb53e1fdef95694c39af494b540a3572ddb73192012f0d57cc52cdcaa12'); +INSERT INTO messages VALUES(1696,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02c5bf43c15d4449760a923ce2c637e8281bc8fa4a4d24aed9d8be8a2849089a'); +INSERT INTO messages VALUES(1697,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"6d95a405af7dcdfb540e163761b56a827cebde6f067ab7a409b362aa17f86d4d","messages_hash":"ef464e083b2343511f1168fe17ee6050befcc06d5b505b0544d09285938761bc","transaction_count":0,"txlist_hash":"532a9c06e4da0b39f80ea32942414d4f46aa3c90846fec6ebce1e2ace5335563"}',0,'BLOCK_PARSED',NULL,'daf3a7d0aa334b904c9a5b26e2d1e79bffd036f430c7ea263b5981cbd93d186d'); +INSERT INTO messages VALUES(1698,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cd07e9100421e0cf2ebffcf234790494ad2a9e20969c84ba5128b341232edd2'); +INSERT INTO messages VALUES(1699,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"399273d936cfd79a23f2ca90a707f66910d34764c05d8bfb868cbb31334d8db1","messages_hash":"d73c2fae7bbf17a3a0fc9c199d9686a780a3634231cddfe3754e0d4123a612a5","transaction_count":0,"txlist_hash":"209467a70e04929cd829a58797eba565cb6dfd14b5eb640dcf7b0dc84da71bc7"}',0,'BLOCK_PARSED',NULL,'e2ffe2dcb3f84e0127bc084ebfc1c167db1035a8880d22e1a021c8b527c7e3a4'); +INSERT INTO messages VALUES(1700,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7937bf80c188460138e8e269c0b54e7a5f27261723d59c7649d44fcfcf805cc2'); +INSERT INTO messages VALUES(1701,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"9b574b61cf3db517bf6c64d6c9f70006de362f2d4de76734f5ae936482b63374","messages_hash":"06b7afb139b3e77c96079bf0e786344122cd8b2f02aeed40f2a0b59252a7edbc","transaction_count":0,"txlist_hash":"4bfa5b1191cdfaf786e94d815cfa0baebf4b7129ab07f86ee9c3144779cf8f5f"}',0,'BLOCK_PARSED',NULL,'7045665e57df918f76f998d12b4e23cc5ce94f43da13393b2f2809b36e5bc551'); +INSERT INTO messages VALUES(1702,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29c9a9590c060feac27c4a3b027d25763b9771f79c1ab6336315173dc4888f43'); +INSERT INTO messages VALUES(1703,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"22f1766a7dbeac8e8cdbc00bef46542b40fbb6984ddcd926eb06d76ba0839e04","messages_hash":"7b8ce38ac6220a606c4c864af17542b8119eb33a0128d76f78c7d4a2cb04838c","transaction_count":0,"txlist_hash":"62685228935b4818574c22e9175d6deab071b99573502c2dc592b075cd5b7005"}',0,'BLOCK_PARSED',NULL,'23e8e90b1e22ee341f51030cfcb96689357981cabceb5c0353db13d72a9cad0a'); +INSERT INTO messages VALUES(1704,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11ab589e2ed8c8d2aacb6310e3eb23b117ab2c381ffba87feb1518aca6e7e224'); +INSERT INTO messages VALUES(1705,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"baa4ac53fa5848e8cf27695658da8401e616ada94975d73f9f1bbbacec77e18b","messages_hash":"4799ca6602af5423d8420529299e3124b673fa1b3dbccb8ff6f7d1cf1e2326e8","transaction_count":0,"txlist_hash":"16150b356af1864f141b8a9018f18cc01dfba4342eb8569e7d6cc813f247ff2e"}',0,'BLOCK_PARSED',NULL,'abcb2f89a2f1f194a0068b1f178333be1283308a15284273617e17a346d3463c'); +INSERT INTO messages VALUES(1706,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31fe81da1f2b07fbf991fdf7a0108f84e7ca3cadc52329ccc3bcddd3e78a8a09'); +INSERT INTO messages VALUES(1707,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"e4791b468628263032d6604e89142b4611d37af0da10f5cea13d77549304f40f","messages_hash":"f848f8af51c820f2043a9c7106b195861198a9436ccd7498a914fb27c801c399","transaction_count":0,"txlist_hash":"6ddb7cfe4bf54eb87a12ef90c2cc6f83fee273dec525fd71d2046362740968cb"}',0,'BLOCK_PARSED',NULL,'6f344f713c84a1c75bee4a543f4376d066f3ce5ad550ab2f4c7b1c45888475ed'); +INSERT INTO messages VALUES(1708,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a63f9783a546373dca97c4ea6e86c9cb35e7714426d77ad105177da83e071b1'); +INSERT INTO messages VALUES(1709,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"41054373d4269eacc2ca673d8db0daaee399b27fe59286d8a097d542e3f14279","messages_hash":"c7199fb078bdf61ca0291402a4ddf584d725ab8dfe290278992d1fcee3209c97","transaction_count":0,"txlist_hash":"c1477e7ebd99e38cb90902d6853e0196b1b0dee65a789e96028bd19ff3b3b704"}',0,'BLOCK_PARSED',NULL,'fd0c06fe7690257cbf514d8236e7e67bd349a2ca26e9779156d7d10ba0b530d4'); +INSERT INTO messages VALUES(1710,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbc7e3b339302c2b6a55796d4fac4fa9393cb20ef99b28a1d9f0178a8aa1187a'); +INSERT INTO messages VALUES(1711,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"0e8477a68905ba7a91a17f4067c061d340844a7f9554d01ebd932219e19dc5df","messages_hash":"d070f453b86791a5470c00c0f66a1f688cbca9146b09ee7b316f1239e101bb75","transaction_count":0,"txlist_hash":"7b63154e2aa85ae70edac802299cc3b303a59e5d9d98c1a60f98e157d6deb484"}',0,'BLOCK_PARSED',NULL,'5a32d9a1280641939c6d9cd0ded1bad0e1cc466745e49cbd2be50ac39e82bc88'); +INSERT INTO messages VALUES(1712,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b926b038aeda5512a0d03aeacf34aadd2bb39cf0e7af28a100de708a1abc834b'); +INSERT INTO messages VALUES(1713,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"abd4a4de8d76df306fe91202471f04327dfff7330bdf86637732a895f3806b76","messages_hash":"9671d888ae163b77c30eb288684b2760d15e555bd8d6c6aeafc8815c3521b1df","transaction_count":0,"txlist_hash":"f1e1e7574fd7c15f59dba0bea95e871400653e9fc54d883efbcf310fb87036d6"}',0,'BLOCK_PARSED',NULL,'9f0e1d1a97cb50706c42d8dc1a77eeb6f8ccd89cebedc6a14bd6d17e39af032c'); +INSERT INTO messages VALUES(1714,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09fe91951c57bd5ed578c30f328f3b0f72899afceef92fbc90a1c54b5a76b081'); +INSERT INTO messages VALUES(1715,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"98e8ce36ac3c00bafdd83f5acfdcb6a86865609e322e4c8404bafb7f4efeda21","messages_hash":"01dac6be9cb9a262bf06738280d85b3ac04fe25949ff17936bb1e458badf0ad2","transaction_count":0,"txlist_hash":"17117cc4ed5853c20be0e97a264a94385bc20e4e19365d34c7d5ebe9a746ae5b"}',0,'BLOCK_PARSED',NULL,'7f255b0ce696d550dde06eb7e7562df560662ff3b132bf67d3c3141b7b3f87b1'); +INSERT INTO messages VALUES(1716,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'638ded26c203b5125dc55d78137720930f5cd648ca3e22d7bf0f1e4c1e0abb18'); +INSERT INTO messages VALUES(1717,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"5b2559a37945f4174c2f651c9315ca9b9c274b40baf87a0e0890615459f7f437","messages_hash":"263bcb74757322f36cc19e8d722bfcf1c0c045ff6ae40b1ee071f9de4f6a1218","transaction_count":0,"txlist_hash":"cc78db8ff880deb043ca80285a482d558c829579b198fbb4ec33d35499c89f10"}',0,'BLOCK_PARSED',NULL,'ff34508a2c0328bf701b4979361078660028396921d1fe06e4b0af21e508b8e9'); +INSERT INTO messages VALUES(1718,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70aaa0fda8019df8863d1c3b8717140fcf17218a64cd79f6c345af0459b6e633'); +INSERT INTO messages VALUES(1719,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"819360045a5f9ee7b2696a8b1cd2579371b25a43076e1f4731d948dcb7b14202","messages_hash":"05967636ad202a361deee96e758fd75be0c2a1b07817c215db206c187125f34b","transaction_count":0,"txlist_hash":"cc4e8152565916228bebeb034d239a8d7a921420a20403b98b8c9cfbae646beb"}',0,'BLOCK_PARSED',NULL,'67f99d0a261681b35bba62390a2eb7150dcc0abab49fdcbea340d1c456f4ab39'); +INSERT INTO messages VALUES(1720,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba3e0968379182d7e79e1080b379b75226ac2a750ad831d50664cc5ee4c1ddb0'); +INSERT INTO messages VALUES(1721,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"d0a47afe3a6d2d2bf01e56643798c4a653d827046991571026345f44b34bac6f","messages_hash":"f5227bdae94c5ae394110e0690a013955d1e76379ba151b0fa209da444d9781c","transaction_count":0,"txlist_hash":"1510f38f77e3400993a985c5b0e348cb9068c0ded5eeb2c4dc9ff0b6b5e50376"}',0,'BLOCK_PARSED',NULL,'93cfc5b2d9135fb70bc6ed898468307920ba532b338a2bb578c32dfb9381f156'); +INSERT INTO messages VALUES(1722,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62d7875fbd231065479c1159115046ff195df62ec77f4a3214d4d13a9d8e404d'); +INSERT INTO messages VALUES(1723,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"995f4b278c55bf41f128a3dcc39a0389d4856e4aafab042c915eaaae536e40e2","messages_hash":"08c75385b4290db3fc39fb503a2a0f3ab7631db44d7ad0eb3d2db9ade975b6a9","transaction_count":0,"txlist_hash":"88060fae502e50aee9fea21032e5655a6e77e65d289ba32302c70652400024c7"}',0,'BLOCK_PARSED',NULL,'43556bfb92381222d795ba7d498349ce5d7cc564fdd15c3427f6c25b84edc050'); +INSERT INTO messages VALUES(1724,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63e90a55adc21ca7c0feb67b0516397d108c0122357bb54236829f55cfc3ac4e'); +INSERT INTO messages VALUES(1725,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"f4f83f7b347792bb4c1336c694a08b2642717ebca900d9a0489bce1a2d994418","messages_hash":"3a31ecc1c0af51adc95b88dd15ef06b7cd49f90977c3f8bc0931163c77be9218","transaction_count":0,"txlist_hash":"4512e4d49797db1713dd41784b0a38ef95c0a37386b2f1dfddffd16652ab1f13"}',0,'BLOCK_PARSED',NULL,'1ec0a62b2ff961216336927e25e28049d3a097968e8ae58cb3cf91926c75134b'); +INSERT INTO messages VALUES(1726,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb02f834200c16ec690a66e5665d2d80fe74c4f34f197cdb00a58ea99fa8e663'); +INSERT INTO messages VALUES(1727,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"5d0fa0f5c261642712f86c72055a7f19afe078a6c34e5538d77d85bb1b799a94","messages_hash":"c14011ca0548cc6aa347ebe1fb5249b938a40f7552924230ac9bd0456b173d84","transaction_count":0,"txlist_hash":"699935da2beafe8a13d0b6bafb2b7a9a57ca7a47c4cd352af9231b9c1313ff6b"}',0,'BLOCK_PARSED',NULL,'0c4fb6242c68e9d7f6bef15d85a6db1f725211b36f6d37ab11155e2c59c4dda5'); +INSERT INTO messages VALUES(1728,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b339beaf1bd7ebd5e5c13befbc731ba422bf20964c3fb0ccb88c6c858a0caab6'); +INSERT INTO messages VALUES(1729,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"439c74d2a465996838179517ff57b2cc558d66848b857580be65319363846033","messages_hash":"3060f01ecd3a6fccc1bd7b34efaee852a4b7d232a8d861626968e4690c5c4e6d","transaction_count":0,"txlist_hash":"64d3d4ce91107031774de492adb7afb6b3d1e9e55fbc587c205a3fa0a36b6be6"}',0,'BLOCK_PARSED',NULL,'67d620e443c65355179b0ad31bbbefa09e4d6bfbb360c39c95452ec11ec6946e'); +INSERT INTO messages VALUES(1730,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e446f21935d80b2085a844faacd0e3629a024446fbf4ce6c7670a664abd5f2d'); +INSERT INTO messages VALUES(1731,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"8bc0f9cfc1b75cdfd6e59f1d41c6b67b790a25a98b6240f7ff5df617f256cb00","messages_hash":"5397b96551c0a64ab068399907d75384be4291c1cf18cc3abe34cd1ae3c8482d","transaction_count":0,"txlist_hash":"c66db074cb4446477ac875d007c8a2145f4a95430cc144a305ee3e71fcdbd107"}',0,'BLOCK_PARSED',NULL,'3bcca258c9104cd44555732479471464735bd888a9f32d16d018593389e83d0a'); +INSERT INTO messages VALUES(1732,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3d981e47f17998e631fb51acee6092f313e3349cf1e8971d6e31b95ff761bdb'); +INSERT INTO messages VALUES(1733,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"572bb86d600d33ec82edac9b1077ec7700d526cb25a69bc2bf2e10953f403e01","messages_hash":"6ea4ac41326e29e0232ae9d494849ea2b825116e5ff8b76cffe56ea9dfa09997","transaction_count":0,"txlist_hash":"0ffd42fa9627a38e66bde8b0dc265ec25a6b44db75dbd5f05cb20d93fbbcb67f"}',0,'BLOCK_PARSED',NULL,'43d10c02c47918f3dfcfe05fdefcafdfa987b560857d430fa007b418aefd9892'); +INSERT INTO messages VALUES(1734,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cca0f78c94caf297109fda8a37a0a562ce7f8ccaa200d7c0b4cf890d3f5bb5'); +INSERT INTO messages VALUES(1735,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a","messages_hash":"5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}',0,'BLOCK_PARSED',NULL,'ed17a78d1950320b3daa1988427288bd90e23d9b4b46b87378fdd10376a5aaa3'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3738,8 +3728,8 @@ INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383 INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0); INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0); INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0); -INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','XCP',100,'valid',0,NULL,10); -INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,10); +INSERT INTO sends VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','e219be68972de7df99122a0213d7be2f597c14fa48b55457a81641583099fea4:0','XCP',100,'valid',0,NULL,0); +INSERT INTO sends VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','74501a157028760383ae4a8f79f6bce9ef64e60e883ac3285bc239a907c2b42c:0','DIVISIBLE',1,'valid',0,NULL,0); -- Triggers and indices on sends CREATE TRIGGER block_update_sends BEFORE UPDATE ON sends BEGIN @@ -3948,8 +3938,6 @@ CREATE TABLE destructions( tag TEXT, status TEXT ); -INSERT INTO destructions VALUES(508,'c1a3885eac5247f363f6adcc0fbd6576b8b98f928065185074fe75d01c91af02',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -INSERT INTO destructions VALUES(509,'a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid'); -- Triggers and indices on destructions CREATE TRIGGER block_update_destructions BEFORE UPDATE ON destructions BEGIN @@ -4320,7 +4308,7 @@ CREATE TABLE transaction_count( transaction_id INTEGER, count INTEGER); INSERT INTO transaction_count VALUES(310507,101,1); -INSERT INTO transaction_count VALUES(310508,101,2); +INSERT INTO transaction_count VALUES(310508,101,1); -- Triggers and indices on transaction_count CREATE TRIGGER block_update_transaction_count BEFORE UPDATE ON transaction_count BEGIN diff --git a/counterparty-core/counterpartycore/test/gas_test.py b/counterparty-core/counterpartycore/test/gas_test.py index 5bbe7cfcf4..32ef654029 100644 --- a/counterparty-core/counterpartycore/test/gas_test.py +++ b/counterparty-core/counterpartycore/test/gas_test.py @@ -135,6 +135,7 @@ def test_calculate_fee(server_db): # test five random tx count per period between 2 and 40 for _ in range(5): + # for tx_count_per_period in range(2, 41): tx_count_per_period = random.randint(2, 40) # noqa: S311 block_index = generate_gas_counter(server_db, block_index, tx_count_per_period) fee = gas.get_transaction_fee(server_db, TRANSACTION_ID, block_index) diff --git a/counterparty-core/counterpartycore/test/parse_block_test.py b/counterparty-core/counterpartycore/test/parse_block_test.py index 7b30a8f18f..9cea887d24 100644 --- a/counterparty-core/counterpartycore/test/parse_block_test.py +++ b/counterparty-core/counterpartycore/test/parse_block_test.py @@ -18,9 +18,9 @@ def test_parse_block(server_db): test_outputs = blocks.parse_block(server_db, DP["default_block_index"], 1420914478) outputs = ( - "cb23f8da1133df452987ffae9aecbdf89f4ce7a94aa333a96af866135b86cdda", + "4fa9d8eaf061321605ac35517ff77329ea6df26cc6b00a5ad9922f4fa8e47669", "37cc718b2f137ebf253df3fda8b687f5d62d7ed14a2e12397792eb0db24f220b", - "113eb9a87efe0e54e97a4eeec1bbd3a17e14f8f25ac97d9daf435f2b6f30372c", + "300fbab84610e10459a80a540d19ba7fcdcf44d5a09027410db1dc8540158a5d", ) try: assert outputs == test_outputs diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index be2312de8c..816e33276c 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -156,7 +156,7 @@ "event_index": "$EVENT_INDEX_3", "params": { "block_index": "$BLOCK_INDEX", - "count": 4, + "count": 1, "transaction_id": 101, }, "tx_hash": "$TX_HASH", 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 a829c74771..21c8796762 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -414,7 +414,7 @@ "event_index": "$EVENT_INDEX_3", "params": { "block_index": "$BLOCK_INDEX", - "count": 2, + "count": 1, "transaction_id": 101, }, "tx_hash": "$TX_HASH", @@ -492,7 +492,7 @@ "event_index": "$EVENT_INDEX_3", "params": { "block_index": "$BLOCK_INDEX", - "count": 3, + "count": 1, "transaction_id": 101, }, "tx_hash": "$TX_HASH", From effc1796ffaa438d6d935569d0bdec47b1680db8 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 15:58:43 +0000 Subject: [PATCH 114/138] fix pytest --- .../test/fixtures/contract_vectors/attach.py | 18 +++--------------- .../fixtures/contract_vectors/dispenser.py | 2 +- .../test/fixtures/contract_vectors/gas.py | 6 +++--- .../test/fixtures/contract_vectors/ledger.py | 18 +++++++++--------- .../test/fixtures/contract_vectors/utxo.py | 16 ++-------------- 5 files changed, 18 insertions(+), 42 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py index fe7abfa061..dd9928d8f3 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/attach.py @@ -168,18 +168,6 @@ "action": "attach to utxo", }, }, - { - "table": "debits", - "values": { - "address": ADDR[0], - "asset": "XCP", - "quantity": 10, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "tx_index": DP["default_tx_index"], - "action": "attach to utxo fee", - }, - }, { "table": "credits", "values": { @@ -204,7 +192,7 @@ "destination": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0", "asset": "XCP", "quantity": 100, - "fee_paid": 10, + "fee_paid": 0, }, }, { @@ -213,7 +201,7 @@ "block_index": DP["default_block_index"], "command": "insert", "category": "sends", - "bindings": '{"asset":"XCP","block_index":310704,"destination":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "bindings": '{"asset":"XCP","block_index":310704,"destination":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:0","fee_paid":0,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', "event": "ATTACH_TO_UTXO", }, }, @@ -243,7 +231,7 @@ "block_index": DP["default_block_index"], "command": "insert", "category": "sends", - "bindings": '{"asset":"XCP","block_index":310704,"destination":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "bindings": '{"asset":"XCP","block_index":310704,"destination":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f:1","fee_paid":0,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', "event": "ATTACH_TO_UTXO", }, }, diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py index ac372beb80..f13f0896d5 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py @@ -88,7 +88,7 @@ "out": ( None, [ - "address doesn't has enough balance of XCP (91674999880 < 9223372036854775808)", + "address doesn't has enough balance of XCP (91674999900 < 9223372036854775808)", "integer overflow", ], ), diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py index 54f33c7ddf..502f6ee7f1 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py @@ -2,8 +2,8 @@ "gas": { "get_transaction_count_for_last_period": [ { - "in": (101, 154), # attach.ID, 310507 // 2016 - "out": 2, + "in": (101, 310507), + "out": 0, } ], "increment_counter": [ @@ -15,7 +15,7 @@ "values": { "block_index": 310507, "transaction_id": 101, - "count": 3, + "count": 1, }, } ], diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py index 90327767a6..43920cd2fc 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py @@ -55,15 +55,15 @@ { "in": (), "out": { - "message_index": 1739, + "message_index": 1735, "block_index": 310703, "command": "parse", "category": "blocks", - "bindings": '{"block_index":310703,"ledger_hash":"641f62150677acca17d2666cbc25cb407932f96a4f25e6fe86e05cf57dee10e2","messages_hash":"70fa6703ec74f168c5690eee6dd7539ebd625288d03ff45daf27615fa7948618","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}', + "bindings": '{"block_index":310703,"ledger_hash":"94a62752f851c8ec439fbbd46fbd0bd0d75987fb22416187a48a70e6e9af308a","messages_hash":"5475e9c758035995f06c179546cf91e9cd4b1e35cdd7132362eca6ecc8e9d785","transaction_count":0,"txlist_hash":"75ba50d1c638cfdfbbf050abe6646376e9a65e13bd56dce814de9959d6ba3ac1"}', "timestamp": 0, "event": "BLOCK_PARSED", "tx_hash": None, - "event_hash": "d44081ef15bc4521ac345a6b37bba2287c806862180e65fa3096c09019ae6b77", + "event_hash": "ed17a78d1950320b3daa1988427288bd90e23d9b4b46b87378fdd10376a5aaa3", }, } ], @@ -191,11 +191,11 @@ }, ], "xcp_created": [{"in": (), "out": 604506847920}], - "xcp_destroyed": [{"in": (), "out": 725000020}], + "xcp_destroyed": [{"in": (), "out": 725000000}], "xcp_supply": [ { "in": (), - "out": 603781847900, + "out": 603781847920, } ], "creations": [ @@ -222,7 +222,7 @@ }, } ], - "destructions": [{"in": (), "out": {"XCP": 725000020}}], + "destructions": [{"in": (), "out": {"XCP": 725000000}}], "asset_supply": [ { "in": ("DIVISIBLE",), @@ -233,7 +233,7 @@ { "in": (), "out": { - "XCP": 603781847900, + "XCP": 603781847920, "A95428956661682277": 100000000, "CALLABLE": 1000, "DIVIDEND": 100, @@ -254,7 +254,7 @@ } ], "get_balance": [ - {"in": (ADDR[0], "XCP"), "out": 91674999880}, + {"in": (ADDR[0], "XCP"), "out": 91674999900}, {"in": (ADDR[0], "foobar"), "out": 0}, ], "get_asset_name": [ @@ -268,7 +268,7 @@ "out": [ { "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "address_quantity": 91674999880, + "address_quantity": 91674999900, "escrow": None, }, { diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py index e59f62d73b..6862a8c565 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py @@ -113,18 +113,6 @@ "action": "attach to utxo", }, }, - { - "table": "debits", - "values": { - "address": ADDR[0], - "asset": "XCP", - "quantity": 10, - "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f", - "block_index": DP["default_block_index"], - "tx_index": DP["default_tx_index"], - "action": "attach to utxo fee", - }, - }, { "table": "credits", "values": { @@ -149,7 +137,7 @@ "destination": UTXO_1, "asset": "XCP", "quantity": 100, - "fee_paid": 10, + "fee_paid": 0, }, }, { @@ -158,7 +146,7 @@ "block_index": DP["default_block_index"], "command": "insert", "category": "sends", - "bindings": '{"asset":"XCP","block_index":310704,"destination":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', + "bindings": '{"asset":"XCP","block_index":310704,"destination":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1","fee_paid":0,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}', "event": "ATTACH_TO_UTXO", }, }, From 08e74c31c66019ec0ad4c3cf80c524b563d0364d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 16:44:28 +0000 Subject: [PATCH 115/138] Migration to clean transaction_count table --- apiary.apib | 3788 +++++++++-------- counterparty-core/counterpartycore/lib/gas.py | 20 + .../counterpartycore/protocol_changes.json | 7 + .../fixtures/scenarios/multisig_1_of_2.log | 8 + .../fixtures/scenarios/multisig_1_of_3.log | 8 + .../fixtures/scenarios/multisig_2_of_2.log | 8 + .../fixtures/scenarios/multisig_2_of_3.log | 8 + .../fixtures/scenarios/multisig_3_of_3.log | 8 + .../scenarios/parseblock_unittest_fixture.log | 8 + .../test/fixtures/scenarios/simplesig.log | 8 + .../fixtures/scenarios/unittest_fixture.log | 8 + .../test/regtest/apidoc/apicache.json | 3434 +++++++-------- release-notes/release-notes-v10.6.2.md | 1 + 13 files changed, 3781 insertions(+), 3533 deletions(-) diff --git a/apiary.apib b/apiary.apib index 746d06c6d9..3b70098bb7 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-09 21:01:55.886643. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-10 16:08:53.459688. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 894, "event": "NEW_BLOCK", "params": { - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", "block_index": 232, - "block_time": 1731186098, + "block_time": 1731254916, "difficulty": 545259519, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2" + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23" }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 886, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 895, "event": "NEW_TRANSACTION", "params": { - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", "block_index": 232, - "block_time": 1731186098, + "block_time": 1731254916, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "fee": 0, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 887, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "out_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 579, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 893, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 892, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 232, - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "block_time": 1731186098, + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 897, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 901, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "quantity": 1000, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": "valid", - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "tx_index": 77, - "block_time": 1731185930, + "block_time": 1731254759, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_time": 1731185930 + "block_time": 1731254759 } ], "next_cursor": 515, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "status": "valid", - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "tx_index": 81, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_time": 1731185957 + "block_time": 1731254774 } ], "next_cursor": 697, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "status": "valid", - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "tx_index": 65, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "block_time": 1731185862 + "block_time": 1731254711 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": "valid", - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "tx_index": 42, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "block_time": 1731185665 + "block_time": 1731254539 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 }, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 } ], "next_cursor": 860, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "valid", "transfer": false, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 } ], "next_cursor": 869, @@ -657,16 +657,16 @@ Here is a list of events classified by theme and for each an example response: "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "tx_index": 101, - "block_time": 1731186075, + "block_time": 1731254880, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false }, @@ -674,7 +674,7 @@ Here is a list of events classified by theme and for each an example response: }, "tx_hash": null, "block_index": 228, - "block_time": 1731186075 + "block_time": 1731254880 } ], "next_cursor": 817, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "open", - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx_index": 103, - "block_time": 1731186081, + "block_time": 1731254888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -721,7 +721,7 @@ Here is a list of events classified by theme and for each an example response: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -734,9 +734,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": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_time": 1731186081 + "block_time": 1731254888 } ], "next_cursor": 875, @@ -759,24 +759,24 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "match_expire_index": 250, "status": "pending", - "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "tx0_block_index": 229, "tx0_expiration": 21, - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", "tx0_index": 102, - "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "tx1_block_index": 230, "tx1_expiration": 21, - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx1_index": 103, - "block_time": 1731186081, + "block_time": 1731254888, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_time": 1731186081 + "block_time": 1731254888 } ], "next_cursor": 676, @@ -815,13 +815,13 @@ Here is a list of events classified by theme and for each an example response: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_time": 1731186081 + "block_time": 1731254888 } ], "next_cursor": 881, @@ -839,11 +839,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305" + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71" }, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "block_time": 1731185822 + "block_time": 1731254669 } ], "next_cursor": null, @@ -860,13 +860,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "status": "expired" }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 } ], "next_cursor": 670, @@ -885,18 +885,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "status": "valid", - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "tx_index": 57, - "block_time": 1731185822, + "block_time": 1731254669, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "block_time": 1731185822 + "block_time": 1731254669 } ], "next_cursor": null, @@ -914,16 +914,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": "valid", - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "tx_index": 63, - "block_time": 1731185845 + "block_time": 1731254702 }, - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "block_index": 188, - "block_time": 1731185845 + "block_time": 1731254702 } ], "next_cursor": null, @@ -941,13 +941,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "block_time": 1731185989 + "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_time": 1731254816 }, - "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", + "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", "block_index": 211, - "block_time": 1731185989 + "block_time": 1731254816 } ], "next_cursor": 690, @@ -965,14 +965,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "block_time": 1731186064 + "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "block_time": 1731254870 }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 } ], "next_cursor": 673, @@ -998,17 +998,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "satoshirate": 1, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": 0, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "tx_index": 68, - "block_time": 1731185882, + "block_time": 1731254722, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1017,9 +1017,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": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 193, - "block_time": 1731185882 + "block_time": 1731254722 } ], "next_cursor": 254, @@ -1039,9 +1039,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1051,9 +1051,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 581, @@ -1072,13 +1072,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", + "destination": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", "dispense_quantity": 10, - "dispenser_tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", + "dispenser_tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", "tx_index": 31, - "block_time": 1731185614, + "block_time": 1731254489, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1088,9 +1088,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", + "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", "block_index": 135, - "block_time": 1731185614 + "block_time": 1731254489 } ], "next_cursor": null, @@ -1110,14 +1110,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1128,9 +1128,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 582, @@ -1152,19 +1152,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "tx_index": 25, "value": 66600.0, - "block_time": 1731185592, + "block_time": 1731254457, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "block_time": 1731185592 + "block_time": 1731254457 } ], "next_cursor": 195, @@ -1202,12 +1202,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "start_block": 0, "status": "open", - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, - "block_time": 1731186084, + "block_time": 1731254901, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1215,9 +1215,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 } ], "next_cursor": 859, @@ -1235,11 +1235,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350" + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309" }, "tx_hash": null, "block_index": 228, - "block_time": 1731186075 + "block_time": 1731254880 } ], "next_cursor": 854, @@ -1260,17 +1260,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "paid_quantity": 100000000, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "valid", - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -1278,9 +1278,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "block_index": 221, - "block_time": 1731186048 + "block_time": 1731254855 } ], "next_cursor": 801, @@ -1301,28 +1301,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4:0", + "destination": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "status": "valid", - "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", "tx_index": 75, - "block_time": 1731185922, + "block_time": 1731254752, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", "block_index": 199, - "block_time": 1731185922 + "block_time": 1731254752 } ], "next_cursor": 598, @@ -1341,28 +1341,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "82f7606f9c431d1baa013271caddcf151b1e273357d4df7bd454f771ffd351e9:0", + "source": "4a8a1927a65a596d764c467182f8ed57e7c72df15b5ad2e32aee41fe0def907f:0", "status": "valid", - "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", "tx_index": 74, - "block_time": 1731185919, + "block_time": 1731254747, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", "block_index": 198, - "block_time": 1731185919 + "block_time": 1731254747 } ], "next_cursor": 293, @@ -1381,14 +1381,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 232, - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "msg_index": 1, "quantity": 2000000000, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", "status": "valid", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1398,9 +1398,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 899, @@ -1422,17 +1422,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "status": "valid", - "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", + "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", "tx_index": 9, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", + "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", "block_index": 112, - "block_time": 1731185512 + "block_time": 1731254380 } ], "next_cursor": 50, @@ -1489,61 +1489,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", "difficulty": 545259519, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, "confirmed": true }, { "block_index": 231, - "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", - "block_time": 1731186084, - "previous_block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", + "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_time": 1731254901, + "previous_block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", "difficulty": 545259519, - "ledger_hash": "ca3c4f7089c52fd9a659c33a8fded7797b922145a91020e5fbfadcdde341890b", - "txlist_hash": "01b00b213394a9828ec789110dea92e962e65602a186d2875b275fa8afae841d", - "messages_hash": "3930ccb9531dc440bf85362b938651073436e07b4e305acc7c3d5b5a40f1963b", + "ledger_hash": "180850ce0b31e4fd127682e0e1afded59ea1e11398637439bc37ca50f04b5191", + "txlist_hash": "3ec05057b4ab4a5f152cca04fcfe30123787f9510f1a0eea7d72553adac94dc0", + "messages_hash": "d4c83f158437ba9f21c62daac94d303681f811523d2d54a7defc454d6c38b770", "transaction_count": 1, "confirmed": true }, { "block_index": 230, - "block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", - "block_time": 1731186081, - "previous_block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", + "block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", + "block_time": 1731254888, + "previous_block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", "difficulty": 545259519, - "ledger_hash": "e0bb06557b7720f51532f4e83296ae9c1b8162bc033a2420abad8c7008b9a669", - "txlist_hash": "05061ecef04b7fd693f304243f2efc869585b039461313635eb71aa5ecc15643", - "messages_hash": "396d19e50661f5ef2c4d7e23afbcb72bf20a4331929dface107a43c8ea475e40", + "ledger_hash": "0222e83fa9903b5404178a0f4ee1bbd92e97efab2939359a81cf0b834f10034c", + "txlist_hash": "318d085bbb981ac740abeaf46025a94ebded272068646111c57e73f9d3fca44d", + "messages_hash": "d08241c8f2e3d34a4a707168cd53052fed26353d1a0887817db4947737416b57", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", - "block_time": 1731186078, - "previous_block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", + "block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", + "block_time": 1731254884, + "previous_block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", "difficulty": 545259519, - "ledger_hash": "53704ce85f4da6f74f6dc3d98cf0dc80108e3c5b58a160639742ae6cdafa7477", - "txlist_hash": "d5c28112d85d5dff5d4eaf60427db655207c4ad750e2afe35a07ed13e4df5908", - "messages_hash": "87238fd182eb7c10d2aa871ea400fc6ef01e665a8893cc01bf3aec59fd5b3f81", + "ledger_hash": "9f9ba7dcd29310997d22a3c8446a8e6f706c1d4f1593255d015735667813225d", + "txlist_hash": "e93494f6fba71e024561c3e6fc71302abb98aa6dd990d700e091d1e231594ead", + "messages_hash": "dc0196cb5ee35636618c782a58ba3dd86514cf921c24f0f5022b1db280fb5d99", "transaction_count": 1, "confirmed": true }, { "block_index": 228, - "block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", - "block_time": 1731186075, - "previous_block_hash": "7e2b281286b3cff670b7fe275673eefd7a0f2f70388387221c63f80886b531d0", + "block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", + "block_time": 1731254880, + "previous_block_hash": "66883236cb1a0b159e370a27d3bbc346d6b7c19a0240e511006224cf04a073eb", "difficulty": 545259519, - "ledger_hash": "8ffc99e81909e542bb7b9c974b7eed20fbb2def0e480172186434b2e7f97a0c8", - "txlist_hash": "556668e36b9bd20c541cb93cf0c5f747f7a930674bd28c6c07010b19d56f15b0", - "messages_hash": "2492823aeb0c9fa0b1712cd80029a14e32c8f3d108a72ce2877e1c7570746de7", + "ledger_hash": "7d839fed1f121f13e251282c6c447c32a94fd4ccb27318af957d622bb6f7f762", + "txlist_hash": "6da25e260b5c39bfeabb4f28cc61cf91d6535b6be2c366e460bd6bf611a06513", + "messages_hash": "a8d1c8354711b9f6064172c3f132ec6084b05fc1f45a23f7fdab9bc139cdff9d", "transaction_count": 0, "confirmed": true } @@ -1580,13 +1580,13 @@ Return the information of a block { "result": { "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", "difficulty": 545259519, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, "confirmed": true } @@ -1598,7 +1598,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413` (str, required) - The index of the block to return + + block_hash: `3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5` (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. @@ -1610,13 +1610,13 @@ Return the information of a block { "result": { "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", "difficulty": 545259519, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, "confirmed": true } @@ -1647,17 +1647,17 @@ Returns the transactions of a block "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1703,11 +1703,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null }, @@ -1716,10 +1716,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 905, @@ -1728,14 +1728,14 @@ Returns the events of a block "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1746,7 +1746,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 904, @@ -1755,9 +1755,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1767,22 +1767,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1792,7 +1792,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" } ], "next_cursor": 902, @@ -1875,16 +1875,16 @@ Returns the events of a block filtered by event "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1894,7 +1894,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 901, @@ -1904,12 +1904,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1919,7 +1919,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 898, @@ -1929,22 +1929,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" } ], "next_cursor": null, @@ -2007,16 +2007,16 @@ Returns the credits of a block "result": [ { "block_index": 232, - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2032,12 +2032,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2053,16 +2053,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2122,12 +2122,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2143,16 +2143,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2188,10 +2188,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "object_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "block_index": 211, "confirmed": true, - "block_time": 1731185989 + "block_time": 1731254816 } ], "next_cursor": null, @@ -2223,13 +2223,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "status": "valid", "confirmed": true, - "block_time": 1731185845 + "block_time": 1731254702 } ], "next_cursor": null, @@ -2261,19 +2261,19 @@ Returns the destructions of a block "result": [ { "tx_index": 101, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "block_index": 228, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731186075, + "block_time": 1731254880, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false }, @@ -2322,14 +2322,14 @@ Returns the issuances of a block "result": [ { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "transfer": false, "callable": false, "call_date": 0, @@ -2344,7 +2344,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2378,10 +2378,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2389,7 +2389,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2402,10 +2402,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2413,11 +2413,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2455,27 +2455,27 @@ Returns the dispenses of a block { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2490,7 +2490,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2531,16 +2531,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -2579,10 +2579,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, "block_index": 231, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -2607,7 +2607,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2644,22 +2644,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -2700,17 +2700,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "block_hash": "667e94f14974a787dabac291bffd945e5aad9800808a585828341d9fb75748fb", - "block_time": 1731185592, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "7ca9d867bdd74bbc5c21fff6522f31ffe7de8ba54ac404f356a9e65b2bb1ab79", + "block_time": 1731254457, + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460:1 2 ", + "utxos_info": " f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2735,25 +2735,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "block_hash": "1cf0bb1f8b53898267b9f39756a384506a0b8ab5b8a0f85079c585c2052c2abb", - "block_time": 1731185822, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "5d124113e78e3719c4f045167457d6086ae58ba673a7c5f682092c42e71d03ba", + "block_time": 1731254669, + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "btc_amount": 2000, "fee": 10000, - "data": "0bfbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "data": "0bde99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd04234b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "supported": true, - "utxos_info": " 9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1:0 3 1", + "utxos_info": " baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "status": "valid" } }, @@ -2768,23 +2768,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "block_index": 188, - "block_hash": "1b3a5656677394842e155e11f3c8348ce1cfa32fca7e57ea9bf4f44df3fde723", - "block_time": 1731185845, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6405dbf405d6db9c5a2e64b1dd015437e543724c9c34100f0772e2a41c93b02d", + "block_time": 1731254702, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "data": "46991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "supported": true, - "utxos_info": " 51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5:1 2 ", + "utxos_info": " 867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "status": "valid" } }, @@ -2807,17 +2807,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 193, - "block_hash": "34f8199af68420a203f2efb930c4d7b5bdbbb6f7f5704a7dadb1691f4002eae5", - "block_time": 1731185882, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "7665d200076034c09c4354a6d3c396d6c7dae5aae7112b0e1994697cd30ff4c3", + "block_time": 1731254722, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24:1 2 ", + "utxos_info": " e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2834,7 +2834,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2853,17 +2853,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2883,17 +2883,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "block_hash": "287593f337bb0710d6f273783a30e6c5bea7813bf39c35bb7652a966d8ab8da8", - "block_time": 1731185665, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "7cd1025f62923efb32c1aa4035f2fdbd10e13fe2b9ea36b1a9696b1efd05d311", + "block_time": 1731254539, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c:1 2 ", + "utxos_info": " 1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2906,7 +2906,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2931,17 +2931,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", - "block_time": 1731186084, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_time": 1731254901, + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011:1 2 ", + "utxos_info": " 758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -2983,17 +2983,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 103, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", - "block_time": 1731186081, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", + "block_time": 1731254888, + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb:1 2 ", + "utxos_info": " e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3016,7 +3016,7 @@ Here is sample API output for each of these transactions: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -3036,17 +3036,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", - "block_time": 1731185930, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", + "block_time": 1731254759, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "supported": true, - "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", + "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3054,12 +3054,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3077,17 +3077,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_hash": "0c303fcd060ff510ebae178fd2bce46d747b73a2f7994ed0b4bfb34a8005c4ec", - "block_time": 1731185957, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "block_hash": "7aafa1c8c0631b0be1c2ac6752e383f8738db022352447eff9b7be7125a347e4", + "block_time": 1731254774, + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889:0 4 ", + "utxos_info": " c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3095,14 +3095,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3110,7 +3110,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3136,23 +3136,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "block_hash": "3fe8efb98ff8e56a4ca3b48ee4c24af9c6541464a13378cfbf81f6b33f0ca5fd", - "block_time": 1731185862, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "block_hash": "2aeea7bc54a9b1caa7d0eb427eb2654ad16013ea97519542491f6392e131ef6b", + "block_time": 1731254711, + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804acd4545d8daf86927d7f9b0476f3136db640f72017377656570206d7920617373657473", + "data": "0480a5550669d96f10679dc14b28f8b86abf99f322c9017377656570206d7920617373657473", "supported": true, - "utxos_info": " e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0:1 2 ", + "utxos_info": " 1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "memo": "sweep my assets" } @@ -3168,17 +3168,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", "block_index": 199, - "block_hash": "595cfe64299da0832259b6a97322cd2f40d50b253af77bdf4091a75a098f5a62", - "block_time": 1731185922, - "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "block_hash": "7c6061013d2cebdff5c39aa2dcd09574713a0bed9fa4e57c2ff7d1bac22943c6", + "block_time": 1731254752, + "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "btc_amount": 546, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4:0 3 1", + "utxos_info": " c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3190,7 +3190,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -3208,17 +3208,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", "block_index": 198, - "block_hash": "17788cf8e5724259085012003cc0ada5631f12df8d4241185ffffae18df713c1", - "block_time": 1731185919, - "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "block_hash": "353209bc1a1c709cb8adaa864c0040d1294715f2c065fb8644a5b155df9146ca", + "block_time": 1731254747, + "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "82f7606f9c431d1baa013271caddcf151b1e273357d4df7bd454f771ffd351e9:0 2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d:1 2 ", + "utxos_info": "4a8a1927a65a596d764c467182f8ed57e7c72df15b5ad2e32aee41fe0def907f:0 e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3255,17 +3255,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3278,17 +3278,17 @@ Returns the list of the last ten transactions }, { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", - "block_time": 1731186084, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_time": 1731254901, + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011:1 2 ", + "utxos_info": " 758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -3332,7 +3332,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101e18b61bacd0649e2505d8b70080199051499127a6fbffd0dae0826a3ffe386930200000000ffffffff03a00f0000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef80800000000000000000c6a0ac6554c8d67f4f43cacdb1079082701000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c0525180247304402203e35c7eaf7728c3986228ba393a4cbc5b70acbe85d7faff2c5d2e5c1352424dc02202cd25cac7de59449c0ed1b15324b802e71bb8c29709d12bf176c785660b0341901210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505500000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010606991a9ab0278631c053df141fb4533394db53965f8ee43a0d7c6bb651cfd6000000000000ffffffffc44c85a5421a4defe39d56ac66af08173a836cc613238415b77215ed8d1d331d0000000000ffffffffaeaa8b96057a5383a7277fabbd68e1a0ac3aff4e5b698f82287c7118705866860000000000ffffffffbfe4c05f1bd874a0e89d006d84ffe98293a63b1a64925ee199c67b460a03466e0000000000ffffffffb5d0e877b2918cfc3f6bc168f10e1e147b969c122db50d301338bec7bf1c017a0000000000ffffffff8b6026dca74b1abc7b94a9f587188e8e882d0ba176a72ef5e16d2a5759bd16530000000000ffffffff04e80300000000000069512102ecddb20e5c8640d4817e9a3782a3a332d15d0fda3ab771212beba56e64f18ea22102cefd60911961ab06708a88ea13ede051724a0b3097bbc179c1c7aa16d963b57821025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53aee80300000000000069512102ecddb20e5c8640d4811a07f5492510f8a4ce2f75521a29a20d3beb7ff27bb94521038205e033f168340d2faf59579c3111724ccdf55732403ff96ed2ac7f000ca5a221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53aee80300000000000069512102c2ddb20e5c8640d4817d9a74020de840ce71b6ae70d3a1d6655ecb129716d65321020205e03837a9258487af59579c3111721ecdf55732403ff96492ac7f000ca54221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae387923fc060000001600147dfc55f48da0262381a8abd3c21e984b925dce6802473044022008303650bba19119e84d8ae1d93425364969ac01ba81dbbd601b7bc6f81ea207022032c65a7361de568ae4a3989215a23a2dd2e123ff8cd2b89611ed451a15fde04e0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a024730440220632c5f0c97c8509288c2b9a94abf5ba2771223a4e9bac6e6aca11e57e1f311e202202205465611af3dd6cb4a73f47631db3704819b654758b3112abe0ede1baeddf60121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207ddc605727d370813844994471fa50cd27deb4c22ec4c89af22029e7e7760fa80220411fc6d125f4fe78a8f1633dbb9e4db905f8ccead0a8cc10358c20476d191aa90121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207f35e425e4408e3af324628a27fa75fe4b46d9eded31a4df467a8308896d5c8702205917c50b1ae17fd1c31e8234c92326d6b17911aa09cddb11c6c2e9c9d26cc35a0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207250497805c66f8abf9bbfe740ba66013527d5329d21b10c78ca65eb66973c06022062be84a7be99f871adea78e1e0420f48de41e89270d8c1cbd90b002ab11c82dc0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207dcb62f6d0eedddf2468cf88570476f694309528ac3b093eecf60f0a26cc159a02207ccb59568361d4f9d1af252cd27bf26cde9b0671f9b397670ea75f526e0b310c0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a00000000` (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. @@ -3345,19 +3345,54 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "e18b61bacd0649e2505d8b70080199051499127a6fbffd0dae0826a3ffe38693", - "n": 2, + "hash": "06991a9ab0278631c053df141fb4533394db53965f8ee43a0d7c6bb651cfd600", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c44c85a5421a4defe39d56ac66af08173a836cc613238415b77215ed8d1d331d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "aeaa8b96057a5383a7277fabbd68e1a0ac3aff4e5b698f82287c711870586686", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "bfe4c05f1bd874a0e89d006d84ffe98293a63b1a64925ee199c67b460a03466e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "b5d0e877b2918cfc3f6bc168f10e1e147b969c122db50d301338bec7bf1c017a", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "8b6026dca74b1abc7b94a9f587188e8e882d0ba176a72ef5e16d2a5759bd1653", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false @@ -3365,34 +3400,77 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 4000, - "script_pub_key": "00147c2eff327169216a21c7c6d128cf4a981d0ef808" + "value": 1000, + "script_pub_key": "512102ecddb20e5c8640d4817e9a3782a3a332d15d0fda3ab771212beba56e64f18ea22102cefd60911961ab06708a88ea13ede051724a0b3097bbc179c1c7aa16d963b57821025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" }, { - "value": 0, - "script_pub_key": "6a0ac6554c8d67f4f43cacdb" + "value": 1000, + "script_pub_key": "512102ecddb20e5c8640d4811a07f5492510f8a4ce2f75521a29a20d3beb7ff27bb94521038205e033f168340d2faf59579c3111724ccdf55732403ff96ed2ac7f000ca5a221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" }, { - "value": 4949834000, - "script_pub_key": "0014d1d6cb957f70d439e67ab9c0f75ca54e4c052518" + "value": 1000, + "script_pub_key": "512102c2ddb20e5c8640d4817d9a74020de840ce71b6ae70d3a1d6655ecb129716d65321020205e03837a9258487af59579c3111721ecdf55732403ff96492ac7f000ca54221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + }, + { + "value": 29999987000, + "script_pub_key": "00147dfc55f48da0262381a8abd3c21e984b925dce68" } ], "vtxinwit": [ - "304402203e35c7eaf7728c3986228ba393a4cbc5b70acbe85d7faff2c5d2e5c1352424dc02202cd25cac7de59449c0ed1b15324b802e71bb8c29709d12bf176c785660b0341901", - "0249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc5055" + "3044022008303650bba19119e84d8ae1d93425364969ac01ba81dbbd601b7bc6f81ea207022032c65a7361de568ae4a3989215a23a2dd2e123ff8cd2b89611ed451a15fde04e01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "30440220632c5f0c97c8509288c2b9a94abf5ba2771223a4e9bac6e6aca11e57e1f311e202202205465611af3dd6cb4a73f47631db3704819b654758b3112abe0ede1baeddf601", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207ddc605727d370813844994471fa50cd27deb4c22ec4c89af22029e7e7760fa80220411fc6d125f4fe78a8f1633dbb9e4db905f8ccead0a8cc10358c20476d191aa901", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207f35e425e4408e3af324628a27fa75fe4b46d9eded31a4df467a8308896d5c8702205917c50b1ae17fd1c31e8234c92326d6b17911aa09cddb11c6c2e9c9d26cc35a01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207250497805c66f8abf9bbfe740ba66013527d5329d21b10c78ca65eb66973c06022062be84a7be99f871adea78e1e0420f48de41e89270d8c1cbd90b002ab11c82dc01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207dcb62f6d0eedddf2468cf88570476f694309528ac3b093eecf60f0a26cc159a02207ccb59568361d4f9d1af252cd27bf26cde9b0671f9b397670ea75f526e0b310c01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" ], "lock_time": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", - "tx_id": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019" + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_id": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3" }, "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] }, - "btc_amount_normalized": "0.00004000" + "btc_amount_normalized": "0.00000000" } } ``` @@ -3402,7 +3480,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927` (str, required) - Transaction hash + + tx_hash: `b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d` (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. @@ -3413,18 +3491,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3ad0b9a2684bc6b78db99630427a5bfd239d43dae592bc3a03a6dd8206afb71b", + "hash": "87da076fec5031c75ca96944f79c5cfce9c91aff9a625b6e86584b11eabc2b25", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3434,20 +3512,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e37300bb519db38b5a92c905ea5156c711b102011d3ab46997e45c53303c290c7f3401218925ac84764dc2b1c7f3a" + "script_pub_key": "6a2e5b2b3a8ce9ef04719a1e5173cde08413a27f1b71fedd6e7add951c68bb503f8fb72233099f2397955b2e882da38b" }, { "value": 4949930546, - "script_pub_key": "00144acd4545d8daf86927d7f9b0476f3136db640f72" + "script_pub_key": "0014a5550669d96f10679dc14b28f8b86abf99f322c9" } ], "vtxinwit": [ - "3044022051791c0420151a1f74fdede830ff3d0b5452406ab52010fec3fdb13f3822f771022057cb135e77dd0de1fce640c8743d6c3992e6f9ef8ae54d294c54040960ff5dd501", - "03c097cd32001edf5502b0ef55a1a28c617bd229d511e563b2309e36eac1e9213a" + "3044022071914c8262f021a4b2ff134a6804455a224b8eedf98901e6b762e3babe2ba387022002da22c688796de57c5c40aebb8db1088711128cd3a056c142335c6fe4f7082a01", + "03dbfda71e1e6c7861bc1e67e4d8364d7da406d541a6c70a4f073087807d2c4088" ], "lock_time": 0, - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", - "tx_id": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927" + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_id": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3455,7 +3533,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -3516,17 +3594,17 @@ Returns a transaction by its index. { "result": { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3545,7 +3623,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction + + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (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. @@ -3557,17 +3635,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3610,12 +3688,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 905, @@ -3624,14 +3702,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3642,9 +3720,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 904, @@ -3653,9 +3731,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3665,24 +3743,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3692,9 +3770,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 902, @@ -3702,14 +3780,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 232, - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "msg_index": 1, "quantity": 2000000000, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", "status": "valid", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3719,9 +3797,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 901, @@ -3734,7 +3812,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction to return + + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `907` (str, optional) - The last event index to return @@ -3758,12 +3836,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 905, @@ -3772,14 +3850,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3790,9 +3868,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 904, @@ -3801,9 +3879,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3813,24 +3891,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3840,9 +3918,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 902, @@ -3850,14 +3928,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 232, - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "msg_index": 1, "quantity": 2000000000, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", "status": "valid", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3867,9 +3945,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 901, @@ -3882,7 +3960,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction to return + + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (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 @@ -3901,10 +3979,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3912,7 +3990,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3925,10 +4003,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -3936,11 +4014,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3958,7 +4036,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction to return + + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (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 @@ -3978,27 +4056,27 @@ Returns the dispenses of a block { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4013,7 +4091,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4057,16 +4135,16 @@ Returns the events of a transaction "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4076,9 +4154,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 901, @@ -4088,12 +4166,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4103,9 +4181,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 898, @@ -4115,24 +4193,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": null, @@ -4145,7 +4223,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The hash of the transaction to return + + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `907` (str, optional) - The last event index to return + Default: `None` @@ -4167,16 +4245,16 @@ Returns the events of a transaction "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4186,9 +4264,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 901, @@ -4198,12 +4276,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4213,9 +4291,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 898, @@ -4225,24 +4303,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": null, @@ -4257,7 +4335,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (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 @@ -4281,7 +4359,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4291,7 +4369,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4302,7 +4380,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4312,7 +4390,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4323,7 +4401,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4333,7 +4411,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4344,7 +4422,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4354,7 +4432,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4365,7 +4443,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4375,7 +4453,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4392,7 +4470,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - Comma separated list of addresses to return + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4411,17 +4489,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_hash": "0c303fcd060ff510ebae178fd2bce46d747b73a2f7994ed0b4bfb34a8005c4ec", - "block_time": 1731185957, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "block_hash": "7aafa1c8c0631b0be1c2ac6752e383f8738db022352447eff9b7be7125a347e4", + "block_time": 1731254774, + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889:0 4 ", + "utxos_info": " c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4429,14 +4507,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4444,7 +4522,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4463,17 +4541,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", + "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", "block_index": 204, - "block_hash": "2e6cd1b41572df6efd98a88f5c70314eb0d987ec4b2d763806788f4ade34bca4", - "block_time": 1731185953, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "block_hash": "454db558177ebd44fffd199336a1838eed9583efd438a8569a3e715fc3275db8", + "block_time": 1731254770, + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f72c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf:0 4 ", + "utxos_info": " 085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4481,14 +4559,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4496,7 +4574,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4515,17 +4593,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", - "block_time": 1731185949, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", + "block_time": 1731254767, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", + "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4533,14 +4611,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4548,7 +4626,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4567,17 +4645,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", - "block_time": 1731185934, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", + "block_time": 1731254762, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", + "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4585,14 +4663,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4600,7 +4678,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4619,17 +4697,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", - "block_time": 1731185930, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", + "block_time": 1731254759, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "supported": true, - "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", + "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4637,12 +4715,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4662,7 +4740,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `907` (str, optional) - The last event index to return @@ -4686,29 +4764,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "block_time": 1731186064 + "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "block_time": 1731254870 }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4718,37 +4796,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "block_time": 1731185989 + "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_time": 1731254816 }, - "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", + "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", "block_index": 211, - "block_time": 1731185989 + "block_time": 1731254816 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731185989, + "block_time": 1731254816, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4758,9 +4836,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", + "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", "block_index": 211, - "block_time": 1731185989 + "block_time": 1731254816 }, { "event_index": 698, @@ -4768,15 +4846,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "status": "valid", - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "tx_index": 81, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4786,9 +4864,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_time": 1731185957 + "block_time": 1731254774 } ], "next_cursor": 698, @@ -4801,7 +4879,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een,bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837,bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej` (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 @@ -4817,17 +4895,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "quantity": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "status": "valid", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -4838,22 +4916,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4863,22 +4941,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "block_index": 232, - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4888,30 +4966,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731186102.4815562, + "block_time": 1731254920.2141104, "btc_amount": 0, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "destination": "", "fee": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, - "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", + "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -4925,7 +5003,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -4938,7 +5016,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -4958,7 +5036,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4966,14 +5044,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -4981,14 +5059,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4996,14 +5074,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5018,7 +5096,7 @@ Returns the balances of an address "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5026,7 +5104,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5043,7 +5121,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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` @@ -5056,7 +5134,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5081,7 +5159,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5131,16 +5209,16 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5152,16 +5230,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "event": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5173,16 +5251,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", + "event": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5194,16 +5272,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5215,16 +5293,16 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5245,7 +5323,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5284,16 +5362,16 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5305,20 +5383,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5326,16 +5404,16 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5347,20 +5425,20 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5368,20 +5446,20 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "event": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185930, + "block_time": 1731254759, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5398,7 +5476,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address of the feed + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5433,7 +5511,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -5452,9 +5530,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", + "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", "block_index": 128, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5462,7 +5540,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185588, + "block_time": 1731254453, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5476,7 +5554,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -5494,15 +5572,15 @@ Returns the burns of an address { "result": [ { - "tx_index": 8, - "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", + "tx_index": 3, + "tx_hash": "abd596953bb4268a1f68698acfba6f154c46ef6300d90825a905f29e304c5796", "block_index": 112, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5517,7 +5595,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -5536,10 +5614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5547,7 +5625,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5560,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5571,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5584,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5595,11 +5673,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5608,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5619,7 +5697,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5632,10 +5710,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5643,11 +5721,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5665,7 +5743,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5` (str, required) - The address to return + + address: `bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva` (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 @@ -5684,10 +5762,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "d716473e904fa7dff860001bfc889a533c80bc9cd4a9613c4072acee63c491ef", + "tx_hash": "98528967e6e9f43e74383b573458cc1247d78ce15db78cfa1a69e34ad0e75d40", "block_index": 142, - "source": "c32e3600404ad843d8cbb61a672536529a761e48a9601c3d2a0a2e33755bc398:0", - "destination": "bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5", + "source": "2806c521e06299cd664aeba227bd9b0428cc98aa42ce5233e4cfc144e46f91ff:0", + "destination": "bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5695,11 +5773,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731185648, + "block_time": 1731254522, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5717,7 +5795,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5745,7 +5823,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5` (str, required) - The address to return + + address: `bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5773,7 +5851,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5802,9 +5880,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5813,7 +5891,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5824,7 +5902,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5841,9 +5919,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5852,7 +5930,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5863,11 +5941,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -5889,7 +5967,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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` @@ -5902,9 +5980,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5913,7 +5991,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5924,7 +6002,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5947,7 +6025,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -5967,19 +6045,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5987,7 +6065,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6002,11 +6080,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -6016,19 +6094,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6036,7 +6114,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6051,7 +6129,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6065,19 +6143,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6085,7 +6163,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6100,7 +6178,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6122,7 +6200,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address to return + + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (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 @@ -6142,19 +6220,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6162,7 +6240,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6177,11 +6255,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -6191,19 +6269,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6211,7 +6289,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6226,7 +6304,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6240,19 +6318,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6260,7 +6338,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6275,7 +6353,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6297,7 +6375,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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` @@ -6318,19 +6396,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6338,7 +6416,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6353,7 +6431,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6367,19 +6445,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6387,7 +6465,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6402,7 +6480,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6424,7 +6502,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address to return + + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (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` @@ -6445,19 +6523,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6465,7 +6543,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6480,7 +6558,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6494,19 +6572,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6514,7 +6592,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6529,7 +6607,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6551,7 +6629,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een` (str, required) - The address to return + + address: `bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837` (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 @@ -6570,16 +6648,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -6593,7 +6671,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6625,14 +6703,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", + "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -6647,20 +6725,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185927, + "block_time": 1731254756, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "942ff026a95e1761a6f0dada7624e857874fa8de566a675304f81c8148898c00", + "tx_hash": "fbe7c7b2601b5e45c7a465623ce2ec1813ff7d21e64af6ad3aa4fe12f080978e", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -6675,20 +6753,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185723, + "block_time": 1731254577, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "5d8559b8ea714872fec166bc290d687ddb2c145b1e3b8e47524942db750f1610", + "tx_hash": "2f2a90b36ea6a737b704690e85dca46764a4630daf9b65a724706cd4726be4e5", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -6703,20 +6781,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731185709, + "block_time": 1731254572, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "ce8ad8a3f3d13aaedf8cbe83bcdea291421aa6877ed5631f19948f42c5de6a87", + "tx_hash": "02c4a1217b737f89b976fd0543f63425b3c16be45fa1d89db326c0164fdfca11", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -6731,20 +6809,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185704, + "block_time": 1731254568, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "483971048fdc90f87cc37efcd8ac84bee20a87cd418b69d5a3edc61861d290e7", + "tx_hash": "d13655dbff39da617986c7f2a4f0fd17a34f40880b107514372f1c7f3703a9d7", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -6759,7 +6837,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185700, + "block_time": 1731254564, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6774,7 +6852,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The issuer or owner to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6797,8 +6875,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6806,16 +6884,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731185927, - "last_issuance_block_time": 1731185927, + "first_issuance_block_time": 1731254756, + "last_issuance_block_time": 1731254756, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 10000000000, @@ -6823,16 +6901,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731185700, - "last_issuance_block_time": 1731185709, + "first_issuance_block_time": 1731254564, + "last_issuance_block_time": 1731254572, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 180, @@ -6840,16 +6918,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731185681, - "last_issuance_block_time": 1731185690, + "first_issuance_block_time": 1731254546, + "last_issuance_block_time": 1731254553, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6857,16 +6935,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731185637, - "last_issuance_block_time": 1731185637, + "first_issuance_block_time": 1731254502, + "last_issuance_block_time": 1731254502, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 40, @@ -6874,8 +6952,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731185580, - "last_issuance_block_time": 1731185585, + "first_issuance_block_time": 1731254446, + "last_issuance_block_time": 1731254450, "supply_normalized": "0.00000040" } ], @@ -6889,7 +6967,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The issuer to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -6912,8 +6990,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6921,16 +6999,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731185927, - "last_issuance_block_time": 1731185927, + "first_issuance_block_time": 1731254756, + "last_issuance_block_time": 1731254756, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 10000000000, @@ -6938,16 +7016,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731185700, - "last_issuance_block_time": 1731185709, + "first_issuance_block_time": 1731254564, + "last_issuance_block_time": 1731254572, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 180, @@ -6955,16 +7033,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731185681, - "last_issuance_block_time": 1731185690, + "first_issuance_block_time": 1731254546, + "last_issuance_block_time": 1731254553, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6972,16 +7050,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731185637, - "last_issuance_block_time": 1731185637, + "first_issuance_block_time": 1731254502, + "last_issuance_block_time": 1731254502, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 40, @@ -6989,8 +7067,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731185580, - "last_issuance_block_time": 1731185585, + "first_issuance_block_time": 1731254446, + "last_issuance_block_time": 1731254450, "supply_normalized": "0.00000040" } ], @@ -7004,7 +7082,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The owner to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7027,8 +7105,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -7036,16 +7114,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731185927, - "last_issuance_block_time": 1731185927, + "first_issuance_block_time": 1731254756, + "last_issuance_block_time": 1731254756, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 10000000000, @@ -7053,16 +7131,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731185700, - "last_issuance_block_time": 1731185709, + "first_issuance_block_time": 1731254564, + "last_issuance_block_time": 1731254572, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 180, @@ -7070,16 +7148,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731185681, - "last_issuance_block_time": 1731185690, + "first_issuance_block_time": 1731254546, + "last_issuance_block_time": 1731254553, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -7087,16 +7165,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731185637, - "last_issuance_block_time": 1731185637, + "first_issuance_block_time": 1731254502, + "last_issuance_block_time": 1731254502, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 40, @@ -7104,8 +7182,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731185580, - "last_issuance_block_time": 1731185585, + "first_issuance_block_time": 1731254446, + "last_issuance_block_time": 1731254450, "supply_normalized": "0.00000040" } ], @@ -7119,7 +7197,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + cursor: `105` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7138,17 +7216,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", - "block_time": 1731185949, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", + "block_time": 1731254767, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", + "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7156,14 +7234,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7171,7 +7249,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7190,17 +7268,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", - "block_time": 1731185934, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", + "block_time": 1731254762, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", + "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7208,14 +7286,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7223,7 +7301,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7242,17 +7320,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", - "block_time": 1731185930, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", + "block_time": 1731254759, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "supported": true, - "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", + "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7260,12 +7338,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7276,17 +7354,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", + "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", "block_index": 200, - "block_hash": "325d74a8f97d29fefe1a1abf7b4a614ba04371cf048cd84ec08c61beace74c16", - "block_time": 1731185927, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "5a4217f64ff8c0213a6329804fafb8da23ed2f3fce016f17eea71e0300a82d2d", + "block_time": 1731254756, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85:1 2 ", + "utxos_info": " f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7311,17 +7389,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 193, - "block_hash": "34f8199af68420a203f2efb930c4d7b5bdbbb6f7f5704a7dadb1691f4002eae5", - "block_time": 1731185882, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "7665d200076034c09c4354a6d3c396d6c7dae5aae7112b0e1994697cd30ff4c3", + "block_time": 1731254722, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24:1 2 ", + "utxos_info": " e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7338,7 +7416,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7359,7 +7437,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -7378,20 +7456,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7416,7 +7494,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7445,9 +7523,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7464,7 +7542,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7492,9 +7570,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7511,7 +7589,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7539,9 +7617,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7558,7 +7636,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7586,9 +7664,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "block_index": 211, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7605,7 +7683,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185989, + "block_time": 1731254816, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7642,7 +7720,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The source of the fairminter to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7667,10 +7745,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7695,7 +7773,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731185690, + "block_time": 1731254553, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7707,10 +7785,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "09ad63ca98e5eff8a4621ae896e87fb4242738f8b76f8b52ff6a05d8e37c9585", + "tx_hash": "1d297909de3cc27ea67c071294f01caa884fcd458d56f96fe2d7c1c29c533bad", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7735,7 +7813,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731185668, + "block_time": 1731254542, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7744,10 +7822,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", + "tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7772,7 +7850,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731185580, + "block_time": 1731254446, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7784,10 +7862,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7812,7 +7890,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731185554, + "block_time": 1731254421, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7824,10 +7902,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", + "tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7852,7 +7930,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731185550, + "block_time": 1731254417, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7864,10 +7942,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", + "tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7892,7 +7970,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731185529, + "block_time": 1731254395, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7914,7 +7992,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address of the mints to return + + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7932,22 +8010,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", + "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", "tx_index": 46, "block_index": 150, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185690, + "block_time": 1731254553, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7956,22 +8034,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", + "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", "tx_index": 45, "block_index": 149, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185686, + "block_time": 1731254549, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7980,22 +8058,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "7ba9bbc46e8ae51d75ea8d784d22dddc742cb09b89f195bf458d501508025a2c", + "tx_hash": "a37a7f152ec02b8726f12eaea05c7093256d374427dad2f82b674661455c237d", "tx_index": 23, "block_index": 127, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185585, + "block_time": 1731254450, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8004,22 +8082,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1acb763593931ac1b9f83e08bfb8078cab3803743069f1466e30eb84ea9ef7f9", + "tx_hash": "97af3e0b31ccceb37f482dee260d70f8dfeb452b2f1dc92b67216d0291f8c050", "tx_index": 21, "block_index": 125, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185576, + "block_time": 1731254442, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8028,22 +8106,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "a1ccc4bd919c2c6c97243d1b065f15e5621ce400cfb4c08b9c7c87fc13dc4d22", + "tx_hash": "80aaf1187fc14153a37b61308bf05bc30f7bcc8f3b67d50c52858c8f0373c07e", "tx_index": 20, "block_index": 124, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185563, + "block_time": 1731254439, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8052,22 +8130,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "16fed96a5dbbb814d4dfc3fc2b131de506089cbd085880fe059048d6aa63f335", + "tx_hash": "6ea5d77ed565f9380bb48986cccf228f915e71a2b4efce8b3468d5152bec97cb", "tx_index": 19, "block_index": 123, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185559, + "block_time": 1731254425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8076,22 +8154,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "730ffaa535f45046390c9bfe6d6218cfe7c1536ed7a0814d2520f1cdd9871205", + "tx_hash": "99f1ad8c0775bc098acb32b44ea8cea14b6f1f0023ce066c5f5a236ff77b7198", "tx_index": 15, "block_index": 118, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185537, + "block_time": 1731254404, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8100,22 +8178,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bd2af388db19f0a79f476e3e2961b323cd09f6e425639b755bff532cc92e8bcf", + "tx_hash": "bb7b58324e702a6dedbb9687ace58eface705a181c5e0d3dac12411de5003dc6", "tx_index": 11, "block_index": 114, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185521, + "block_time": 1731254389, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8134,7 +8212,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address of the mints to return + + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8164,7 +8242,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0` (str, required) - The utxo to return + + utxo: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8184,8 +8262,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8198,12 +8276,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8243,8 +8321,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will make the bet - + feed_address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will make the bet + + feed_address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (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) @@ -8318,7 +8396,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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) @@ -8380,7 +8458,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8393,7 +8471,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985834, "btc_fee": 14166, - "rawtransaction": "0200000000010161db2110e7ed9439b882cca495f4a087f6c49d3eea58d53e1916a5dc46d8663d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0200000000000000002b6a292c0ec151f56e2ae4f7a55dadfe85f55b09ad626591a4a3d882d662cca5ebbc345c7f7f50122b918f65aaba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001013c57738121e96c94e73650bb611f87908b5cc5e5912b69af60ceb57d2dde3ffd000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0200000000000000002b6a29685a41129d4cb2f1bb6bf4a4a8b1eefbe92bfd8bd589b94e43f055a53cb75fa5cc8e47347f7e0eae03aaba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8415,8 +8493,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending the payment - + order_match_id: `ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb` (str, required) - The ID of the order match to pay for + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending the payment + + order_match_id: `c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31` (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) @@ -8474,24 +8552,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "data": "434e5452505254590bc1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134ee9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980970, "btc_fee": 18030, - "rawtransaction": "0200000000010149c3fc2308c1146b0de3469f574cbc8181ba42d12bf9cefca63746a7e9b917c5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600141d5098fbebdfcd42a99dfb2faa4254d26def3cc800000000000000004b6a49ed49ccdc3a30ed21b7e58a3d22d81237e76a1030d4f4af56c2e5550d4949bc90e647832e4723ecc8a9f30d77c9494923fe82c9367f89cc08fe00814d577a4e6e683251fac3b855fc44aaa7052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101faf837ac3d9a4debd1f0d0e97c35c640349b253900b98f8721ba04d2e3429075000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e80300000000000016001441da0a7652ef5a0bcf38ad343736042c8000db6000000000000000004b6a4961a6404d9c97cd92239cf806d911286d1b962983e49633f44014b93a53d9c19358a44e69e85d2314e13661a3644eee43fd13cee24e854fbdda61653714eec4a999da58ad2d304c9d53aaa7052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", - "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "status": "valid" } } @@ -8504,7 +8582,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address with the BTC to burn + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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` @@ -8565,7 +8643,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8576,7 +8654,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985829, "btc_fee": 13171, - "rawtransaction": "0200000000010131b8fb279149cf786245701df6bcce3acce76a38d404563fee047efd2e3a2842000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000" + "rawtransaction": "0200000000010148ab7971342b9d3d52e82c68dd5244d2bfc92e3f84a9e4fe956fade546ddee7e000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000" } } ``` @@ -8586,8 +8664,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: `bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31` (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) @@ -8645,22 +8723,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459469ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "data": "434e54525052545946e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "btc_in": 90000, "btc_out": 0, "btc_change": 75834, "btc_fee": 14166, - "rawtransaction": "02000000000101cb7cb115b8772e5a127442097f3be2f91f7cdcdeed68908fbfa65c98ba45c09a010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff0200000000000000002b6a298cd0e081b22b4258b97f9c061fea37a8008f1c535b4b6b995aeba4df9b34239649bbd600a2e0ab0a1a3a280100000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000000000000", + "rawtransaction": "02000000000101315af430627f89d3d439def1e65c592e9ff0c89b1542cee5b625c73292a5abe901000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff0200000000000000002b6a29436d82e6dc30922fc7c418915aa02e676f9f94f64e347ac1c7d24da0a7f4227647b6713dd9a08925c33a28010000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "status": "valid" } } @@ -8673,7 +8751,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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 @@ -8734,7 +8812,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8754,7 +8832,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986361, "btc_fee": 13639, - "rawtransaction": "0200000000010167c68ed4b96cf794d9489a97a8448e15f57e8eecfbe1022c362743482a7fcb62000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000226a20cd079f16be64b4955ae914b0158fa8c7765b4c32d6988f3f74eea0b072168805b9bc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "0200000000010106cde379e95dd36b3ea209fad57609b44b869b6e732e62f852b2f1e088259876000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000226a20779ac4ada98d0b4fe4bf9082434711ce07843531a9811570d30ea7ea5fd995e5b9bc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8774,7 +8852,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: `bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs` (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) @@ -8841,7 +8919,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8866,7 +8944,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949859575, "btc_fee": 14224, - "rawtransaction": "02000000000101a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d01502000000160014658b9c2487762c4260cf1ff801a6531c160b0c94ffffffff0200000000000000002c6a2a44920b2ac26fa90b6c93c5d96492139d676e2009feca4b33ea1ffda3092ff4d32a8df7e73f350b696830f7dc082701000000160014658b9c2487762c4260cf1ff801a6531c160b0c9402000000000000", + "rawtransaction": "02000000000101ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab180200000016001477f035f8932bfb0cd735529ec106b2de87f6bb58ffffffff0200000000000000002c6a2ae43a4014264e42e5f579da24489611fa7a122a056812981d2c2f1a3397e1a5d2c1f4faf3aef27bbc7ee8f7dc08270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb5802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8892,7 +8970,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8953,7 +9031,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -8961,7 +9039,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8980,7 +9058,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001010e79dd2c22e58474c75b096ac328af25edc0b0f1fd8df88d036b7af47da5e58d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a2182d70eccff8bb21f00cae24466a6463db9711d47cd4dfc9c5a03d2bef8ba536bf77ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101533538ba2b88f3ff364dff39681971ce22b2ba3c3260c196474112caf5195a88000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a2109b489672478c741c1c7240ac504f485c12542a9f85533273e80166051bfdfb9987ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9001,10 +9079,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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` @@ -9071,10 +9149,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "transfer_destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "lock": false, "reset": false, @@ -9088,7 +9166,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983766, "btc_fee": 15688, - "rawtransaction": "02000000000101a4f30ddb6a622b9825c06da68e210300ca06be1e81242dfc88526cf061591a4a000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000236a21e7049a4b3204d6dee973b2d15f1d7a3d89cc53d77ec84c49f61ffacddb32d3930c96b2052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001019646cee2788ef1976dee63e7791cb16f7a6ef4afaf57ee103ad2da959214bee8000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000236a2197b310cd5531b936aed9a1c78b9844da8b820a05f50f1d58db3a8f713b05fd77ae96b2052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9117,9 +9195,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: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l,bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9186,16 +9264,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", 1 ], [ "FAIRMINTC", - "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", 2 ] ], @@ -9204,26 +9282,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807c2eff327169216a21c7c6d128cf4a981d0ef80880d1d6cb957f70d439e67ab9c0f75ca54e4c0525184000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807dfc55f48da0262381a8abd3c21e984b925dce6880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf84000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949785336, "btc_fee": 20664, - "rawtransaction": "0200000000010189e8cd58809250035f8327b3a866d39d5bd42d10d860178c509b1f2752afd71103000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c052518ffffffff03e80300000000000069512102395dacbf610baff9e75e24b53a0d19b84710ea311e2b3145a74a3fb440906a4b21031d2f25a43873b9c734791011939b0ec2442757f967ed701515c40c5bc46abcfd210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aee80300000000000069512103265dacbf610baff9e74d24b7ba71374775458310740af6837666f0fed88d647b2102e527a475eeb82cb844ad29f7e922ce35188219b562c8685515c430b57bee0504210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aef8ba072701000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c05251802000000000000", + "rawtransaction": "020000000001016664cdd117e2c8cf8dd22ee57388dca6dbfa4d3d0c762f409fe639b1071d3cc403000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8ffffffff03e8030000000000006951210232d85426dfdffc5373c2d4d2716428d9f744e7ab31ca3fa063e9773e823001142102704d43b1b10cf97327c9e0e70afe77b0ab4b63202788f4b4a95f2eb3d1b12d792102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aee803000000000000695121022dd85426dfdffc5373d1d4d0f119d48c03ed478d124b970bb02f69a6c9a25c582103be25c21ffa7ee65f9e95aa83da093905c53790c77f440cf4a95f125d6e35945f2102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aef8ba072701000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf802000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9239,7 +9317,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `BURNER` (str, required) - The asset that will be received in the trade @@ -9303,7 +9381,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -9321,7 +9399,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -9335,7 +9413,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985249, "btc_fee": 14751, - "rawtransaction": "02000000000101b6643e2d1dd1b7356e9e47b783a012886a1cc0aeb96e69bce7b54e6b8675fdff000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000356a333f5590cc500874de862e7599577aeb4498fecd9b8f851e95c4bb83e3c87ffac00493e33ccb2b4bc39c4f51f90eda349ca8cd2061b8052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001014bbba36e158071fb7490d52a69d97f4bd5bafff57b54c57cabb1d38d07ddd099000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000356a3367946e68a5faf452d5d2720d177dd8174966c633ee143caf5fce4d934b9a2dc38a3d9709ae4e8982034f3ad4069ed9f5ccaedc61b8052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9361,8 +9439,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address that will be receiving the asset + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (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 @@ -9428,8 +9506,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9446,19 +9524,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "434e54525052545902000000000000000100000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985541, "btc_fee": 14459, - "rawtransaction": "020000000001010b664dc457fe5c77dc89496b233a04040505960a1ee866dec8e1af7ac6d113f2000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000306a2e29bf9d1bda0eff3398687aa065d742479b426ec608d8ee3653c8f966953198a7cc1ee90656ad86270497144ab9c985b9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101e1bd477e1e91e443d26218ea8f689f757d7aad9491dd35a5b41d432c8bdae532000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000306a2ec01fe1437f92616218f60ffa67740368895662d907a5ceae51543b0b6514b517f889450afc64bde6517b43bbc85285b9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "quantity_normalized": "0.00001000" } @@ -9472,8 +9550,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending - + destination: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending + + destination: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (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 @@ -9533,24 +9611,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d1d6cb957f70d439e67ab9c0f75ca54e4c05251807ffff", + "data": "434e5452505254590480ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf807ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001019fa6891009e280950fd417390ddbc6609285c1b9cef2ae4e9f70d8b54cb5c88c000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a21a5ba66383c964e21b9c396deaab731fe491546ebb4341084c7ada0fb8387b733047ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "0200000000010152f183611295b2b57f46093df0b0557f9e6e8f17e1edb0a45e6852e78a51c84c000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a215dab6383d68496fd2d5d5abdae2f008bd1526673ac1b76de9c72f2963b66de52ab7ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "flags": 7, "memo": "ffff" } @@ -9564,8 +9642,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej` (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` @@ -9624,8 +9702,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "quantity": 1000, "skip_validation": false }, @@ -9635,7 +9713,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4999984658, "btc_fee": 14342, - "rawtransaction": "0200000000010192845753da8fde465954e2e1ab267ce7d80b3016257d611766db8ec5279cdba5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600144acd4545d8daf86927d7f9b0476f3136db640f7200000000000000000c6a0a79856f6ea0a09e53222a12b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101993fdd439d2f898b5ef1a10728d58f682e9b976ed60c2960fa55aa929961d389000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e803000000000000160014a5550669d96f10679dc14b28f8b86abf99f322c900000000000000000c6a0aacfdb48c0cff85ea275a12b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9652,7 +9730,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be issuing the asset + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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: `` @@ -9743,7 +9821,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9775,7 +9853,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985483, "btc_fee": 14517, - "rawtransaction": "0200000000010138729dc318569217e89e403da643e9bb4e6116c925addd90b42dfa2fd1c42eca000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000316a2f052fbd739e6623e0a4bb7130f4e260d3da7dde56003aa6bfa0b73e75f3c24f75d552331c757eec594137e2b4e2d54c4bb9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101dc0f9bd95afe52cee0f69978192f31caf87d8d17388398d558977898e07dcec5000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000316a2f19f727556cc7c396ac0d4055cf95a190fda442ed6797decd7d3ed3022eea5251e1119136bddfe50dd0449ba14b116b4bb9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9814,7 +9892,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: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address that will be minting the asset + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be minting the asset + asset: `OPENFAIR` (str, required) - The asset to mint + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9875,14 +9953,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "divisible": true, "locked": false }, @@ -9894,7 +9972,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987122, "btc_fee": 12878, - "rawtransaction": "0200000000010121f896fa46d9867c0a3882e05f4169502dcb272f6d367c38aa4e4f9238d5cb5e000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000156a13d89edbe4f154db05ae377762f77439ad805793b2bf052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001017c850c46a2ea3ed5aa631290bbc4425e27e89edbcaf9ad25ae6186039ee18465000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000156a1340a778c237af9223c67a8e7391dbcf290378a3b2bf052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9913,7 +9991,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address from which the assets are attached + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -9977,7 +10055,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -9997,7 +10075,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 546, "btc_change": 4999984644, "btc_fee": 14810, - "rawtransaction": "02000000000101ef7a12e93dfe55916f6628a871d043e089a251b93dbf12a50399d40cf465618d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000146a12da287c2bf0ed0c35a8a9cfd82e028c551a3204b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001010d2729602840994f39281fc445a0fb6e03413b4e6269aa9a7e3dfe868f28e549000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000146a1200f941c4f9d9a0790a285a0744c2c090320704b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10017,8 +10095,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: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + Default: `None` @@ -10081,22 +10159,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713073683037766e336479736b35677738636d676a336e36326e7177736137716735377472336c", + "data": "434e54525052545966626372743171306837397461796435716e7a387164673430667579383563667766396d6e6e677261716d6372", "btc_in": 4949951000, "btc_out": 0, "btc_change": 4949925536, "btc_fee": 25464, - "rawtransaction": "02000000000102a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d015000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff1190fe3945d54c388191ed0db2cd98889549f0bc1ff14705fecffee8eef00e5d010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff020000000000000000376a3544920b2ac26fa90b06f1a6ab10a362ad1506103e88a478547b6c96966e58ccb3afea9dd4510339077d47ea4870258ea9c557c20f10a0de0927010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000002000000000000", + "rawtransaction": "02000000000102ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab1800000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff7ee612532cb7059b554038a43917ffe301f36100116c05026d0725e4b84d8c7501000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff020000000000000000376a35e43a4014264e42e59f1bb9563ca760ca13251371096bfc2bb541600be685c2e519928f8a96c718da6d8e5d9054cfb45df3803ddfbca0de092701000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l" + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr" } } } @@ -10200,8 +10278,8 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "owner": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "owner": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "divisible": true, "locked": false, "supply": 0, @@ -10209,16 +10287,16 @@ Returns the valid assets "first_issuance_block_index": 231, "last_issuance_block_index": 231, "confirmed": true, - "first_issuance_block_time": 1731186084, - "last_issuance_block_time": 1731186084, + "first_issuance_block_time": 1731254901, + "last_issuance_block_time": 1731254901, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false, "supply": 0, @@ -10226,16 +10304,16 @@ Returns the valid assets "first_issuance_block_index": 227, "last_issuance_block_index": 228, "confirmed": true, - "first_issuance_block_time": 1731186072, - "last_issuance_block_time": 1731186075, + "first_issuance_block_time": 1731254877, + "last_issuance_block_time": 1731254880, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false, "supply": 0, @@ -10243,16 +10321,16 @@ Returns the valid assets "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731186064, - "last_issuance_block_time": 1731186068, + "first_issuance_block_time": 1731254870, + "last_issuance_block_time": 1731254873, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false, "supply": 0, @@ -10260,16 +10338,16 @@ Returns the valid assets "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731186052, - "last_issuance_block_time": 1731186056, + "first_issuance_block_time": 1731254859, + "last_issuance_block_time": 1731254862, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true, "supply": 100000000, @@ -10277,8 +10355,8 @@ Returns the valid assets "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731186045, - "last_issuance_block_time": 1731186048, + "first_issuance_block_time": 1731254852, + "last_issuance_block_time": 1731254855, "supply_normalized": "1.00000000" } ], @@ -10306,8 +10384,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true, "supply": 100000000, @@ -10315,8 +10393,8 @@ Returns an asset by its name "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731186045, - "last_issuance_block_time": 1731186048, + "first_issuance_block_time": 1731254852, + "last_issuance_block_time": 1731254855, "supply_normalized": "1.00000000" } } @@ -10347,7 +10425,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10355,14 +10433,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10370,7 +10448,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -10388,7 +10466,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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. @@ -10400,7 +10478,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -10454,9 +10532,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10473,7 +10551,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10501,9 +10579,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10520,7 +10598,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10548,9 +10626,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10567,7 +10645,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10595,9 +10673,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "block_index": 211, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10614,7 +10692,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185989, + "block_time": 1731254816, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10642,9 +10720,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10661,7 +10739,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10725,13 +10803,13 @@ Returns the orders of an asset { "result": [ { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10745,7 +10823,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10765,13 +10843,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 56, - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10785,7 +10863,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10805,13 +10883,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", "tx0_index": 53, - "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 54, - "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10825,7 +10903,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10845,13 +10923,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 64, - "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10865,7 +10943,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10945,20 +11023,20 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -10966,20 +11044,20 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -11039,12 +11117,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11056,16 +11134,16 @@ Returns the debits of an asset }, { "block_index": 231, - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "event": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11077,16 +11155,16 @@ Returns the debits of an asset }, { "block_index": 227, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186072, + "block_time": 1731254877, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11098,16 +11176,16 @@ Returns the debits of an asset }, { "block_index": 225, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "event": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11119,16 +11197,16 @@ Returns the debits of an asset }, { "block_index": 222, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", + "event": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186052, + "block_time": 1731254859, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11208,14 +11286,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -11230,20 +11308,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -11258,7 +11336,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186045, + "block_time": 1731254852, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11292,10 +11370,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11303,7 +11381,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11316,10 +11394,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11327,7 +11405,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11340,10 +11418,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", + "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", "block_index": 204, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11351,7 +11429,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11364,10 +11442,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11375,7 +11453,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11388,10 +11466,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11399,7 +11477,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11450,9 +11528,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11461,7 +11539,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11472,7 +11550,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11489,9 +11567,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", + "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", "block_index": 133, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11500,7 +11578,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11511,7 +11589,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185606, + "block_time": 1731254472, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11528,9 +11606,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", + "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", "block_index": 141, - "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", + "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11538,10 +11616,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -11550,7 +11628,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185645, + "block_time": 1731254519, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11567,18 +11645,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11589,7 +11667,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11615,7 +11693,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - The address to return + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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` @@ -11628,9 +11706,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11639,7 +11717,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11650,7 +11728,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11692,7 +11770,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -11701,7 +11779,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -11709,7 +11787,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -11718,7 +11796,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -11755,27 +11833,27 @@ Returns the dispenses of an asset { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11790,7 +11868,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11804,27 +11882,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", + "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", "block_index": 138, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11839,7 +11917,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731185634, + "block_time": 1731254499, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11853,19 +11931,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11873,7 +11951,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11888,7 +11966,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11902,19 +11980,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11922,7 +12000,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11937,7 +12015,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12011,10 +12089,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "tx_index": 96, "block_index": 221, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -12039,7 +12117,7 @@ Returns the fairminter by its asset "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -12079,22 +12157,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -12113,7 +12191,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut` (str, required) - The address of the mints to return + + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12175,9 +12253,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12194,7 +12272,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12222,9 +12300,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12241,7 +12319,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12269,9 +12347,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12288,7 +12366,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12316,9 +12394,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12335,7 +12413,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12363,9 +12441,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "block_index": 205, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12382,7 +12460,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12419,7 +12497,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb` (str, required) - The hash of the transaction that created the order + + order_hash: `e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31` (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. @@ -12431,9 +12509,9 @@ Returns the information of an order { "result": { "tx_index": 103, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -12450,7 +12528,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731186081, + "block_time": 1731254888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12461,7 +12539,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -12484,7 +12562,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec` (str, required) - The hash of the transaction that created the order + + order_hash: `c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e` (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 @@ -12511,13 +12589,13 @@ Returns the order matches of an order { "result": [ { - "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx0_index": 102, - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "tx1_index": 103, - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", - "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12531,11 +12609,11 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731186081, + "block_time": 1731254888, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -12561,7 +12639,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7` (str, required) - The hash of the transaction that created the order + + order_hash: `de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042` (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 @@ -12580,15 +12658,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "btc_amount": 2000, - "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "status": "valid", "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "btc_amount_normalized": "0.00002000" } ], @@ -12632,9 +12710,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12652,7 +12730,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731185822, + "block_time": 1731254669, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12678,9 +12756,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "block_index": 205, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12698,7 +12776,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731185957, + "block_time": 1731254774, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12724,9 +12802,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12744,7 +12822,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12770,9 +12848,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12790,7 +12868,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12816,9 +12894,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12836,7 +12914,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12899,13 +12977,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12922,7 +13000,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185953, + "block_time": 1731254770, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12942,13 +13020,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 56, - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12965,7 +13043,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185822, + "block_time": 1731254669, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12985,13 +13063,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", "tx0_index": 53, - "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 54, - "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13008,7 +13086,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185748, + "block_time": 1731254592, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13028,13 +13106,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 64, - "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13051,7 +13129,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731186064, + "block_time": 1731254870, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13109,13 +13187,13 @@ Returns all the order matches { "result": [ { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13129,7 +13207,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13149,13 +13227,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 56, - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13169,7 +13247,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13189,13 +13267,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", "tx0_index": 53, - "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 54, - "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13209,7 +13287,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13229,13 +13307,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 64, - "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13249,7 +13327,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13269,13 +13347,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx0_index": 102, - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "tx1_index": 103, - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", - "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13289,11 +13367,11 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731186081, + "block_time": 1731254888, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -13457,66 +13535,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", + "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", "block_index": 112, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", + "tx_hash": "f057e728263dcd95f79ed359aad4ead52077fedd3dac46899b1b14ea4e1758e9", "block_index": 112, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "314ef7d935d922c69d9ebdf4aa8cb37d35b27cbe96f65b2fa09ffe679183a5b5", + "tx_hash": "9ab75d2a2e8bac2541af80cdc7973b81b6464841d3b70fe3101aecd9b91eb7c1", "block_index": 112, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5", + "tx_hash": "0e994e56ceee5273e4a1fa6d2a93ae5a16505151fb63c49dc7a7d640800a5cb9", "block_index": 112, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "b16c489137d7b0cbd7a281bdadba870a9d1043835d650547980fb339d4f48272", + "tx_hash": "f2e59e2c1fcafe2177fff3fce6fed1926d7371e388af4715f63417c5756f50b1", "block_index": 112, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -13561,9 +13639,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13572,7 +13650,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13583,7 +13661,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13600,9 +13678,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", + "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", "block_index": 133, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13611,7 +13689,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13622,7 +13700,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185606, + "block_time": 1731254472, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13639,9 +13717,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", + "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", "block_index": 141, - "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", + "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13649,10 +13727,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -13661,7 +13739,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185645, + "block_time": 1731254519, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13678,9 +13756,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13689,7 +13767,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13700,11 +13778,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -13717,18 +13795,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13739,7 +13817,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13765,7 +13843,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02` (str, required) - The hash of the dispenser to return + + dispenser_hash: `02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e` (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. @@ -13777,9 +13855,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13788,7 +13866,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13799,7 +13877,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13822,7 +13900,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02` (str, required) - The hash of the dispenser to return + + dispenser_hash: `02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e` (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 @@ -13842,19 +13920,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13862,7 +13940,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13877,7 +13955,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13891,19 +13969,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13911,7 +13989,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13926,7 +14004,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13968,20 +14046,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -14006,7 +14084,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c` (str, required) - The hash of the dividend to return + + dividend_hash: `1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297` (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. @@ -14018,20 +14096,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -14053,7 +14131,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297` (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 @@ -14076,12 +14154,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "event": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "tx_index": 42, - "utxo": "426d796d06af893564296fd9d35d79cc3b7cf1b026ab15e76478d5067b410568:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "c7ae48041c2647ba8bb21829e463c2c431e9e953c08b58a2ab683a94c4d0f186:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14127,27 +14205,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 905, @@ -14156,14 +14234,14 @@ Returns all events "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14174,9 +14252,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 904, @@ -14185,9 +14263,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14197,24 +14275,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14224,9 +14302,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 902, @@ -14254,15 +14332,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } } ``` @@ -14340,16 +14418,16 @@ Returns the events filtered by event name "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14359,9 +14437,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 901, @@ -14371,12 +14449,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14386,9 +14464,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 898, @@ -14398,24 +14476,24 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 862, @@ -14425,39 +14503,39 @@ Returns the events filtered by event name "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731186072, + "block_time": 1731254877, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "block_index": 227, - "block_time": 1731186072 + "block_time": 1731254877 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14467,9 +14545,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 } ], "next_cursor": 819, @@ -14525,27 +14603,27 @@ Returns all the dispenses { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14560,7 +14638,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14574,19 +14652,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14594,7 +14672,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14609,11 +14687,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -14623,27 +14701,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", + "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", "block_index": 138, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14658,7 +14736,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731185634, + "block_time": 1731254499, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14672,19 +14750,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14692,7 +14770,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14707,7 +14785,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14721,19 +14799,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14741,7 +14819,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14756,7 +14834,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14798,10 +14876,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14809,7 +14887,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14822,10 +14900,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14833,11 +14911,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -14846,10 +14924,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14857,7 +14935,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14870,10 +14948,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14881,11 +14959,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -14894,10 +14972,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14905,11 +14983,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -14960,14 +15038,14 @@ Returns all the issuances "result": [ { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "transfer": false, "callable": false, "call_date": 0, @@ -14982,20 +15060,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 101, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -15010,20 +15088,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731186075, + "block_time": 1731254880, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -15038,20 +15116,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186072, + "block_time": 1731254877, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -15066,20 +15144,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731186068, + "block_time": 1731254873, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 100, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "msg_index": 0, "block_index": 225, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -15094,7 +15172,7 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15109,7 +15187,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011` (str, required) - The hash of the transaction to return + + tx_hash: `758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e` (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. @@ -15121,14 +15199,14 @@ Returns the issuances of a block { "result": { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "transfer": false, "callable": false, "call_date": 0, @@ -15143,7 +15221,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15175,16 +15253,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -15198,7 +15276,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0` (str, required) - The hash of the transaction to return + + tx_hash: `1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a` (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. @@ -15211,16 +15289,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -15254,9 +15332,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15264,14 +15342,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185592, + "block_time": 1731254457, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", + "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", "block_index": 128, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15279,7 +15357,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185588, + "block_time": 1731254453, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15293,7 +15371,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460` (str, required) - The hash of the transaction to return + + tx_hash: `f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f` (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. @@ -15305,9 +15383,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15315,7 +15393,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185592, + "block_time": 1731254457, "fee_fraction_int_normalized": "0.00000000" } } @@ -15352,10 +15430,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, "block_index": 231, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -15380,7 +15458,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15389,10 +15467,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "tx_index": 101, "block_index": 228, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "PREMINT", "asset_parent": "", "asset_longname": "", @@ -15417,7 +15495,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186075, + "block_time": 1731254880, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15426,10 +15504,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "tx_index": 100, "block_index": 226, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -15454,7 +15532,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186068, + "block_time": 1731254873, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15463,10 +15541,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dbc22e66b838256fa269e76efa1d0c806401f7401effa7a3531dffedf84cb420", + "tx_hash": "ef4643f3991e759ab553ffe8360a89ffc3cfad184f146fc8d2e87ca8897bcf3f", "tx_index": 99, "block_index": 224, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": null, "asset_parent": null, "asset_longname": null, @@ -15491,13 +15569,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186060 + "block_time": 1731254866 }, { - "tx_hash": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", + "tx_hash": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", "tx_index": 98, "block_index": 223, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -15522,7 +15600,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186056, + "block_time": 1731254862, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15588,22 +15666,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -15612,22 +15690,22 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "573b30e5f5323e21a609b153fd2a297016c92522eba2169970a44457a8f1fe30", + "tx_hash": "8f5288cbc52cee0ba0c858a631fdb4ec475ca494ce1250d1bb167821cce03357", "tx_index": 95, "block_index": 219, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "92b08136345613ac4da682987e36d5061ca068fa866c0dec1847c03b6dd1becd", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "8a25a3de871ffc28fd0f770d34f08cc4554a98097f99d02253bc3eaa3ff8b44c", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731186040, + "block_time": 1731254848, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -15636,22 +15714,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4bc584e5451063581fdf0a07219795565623d1d6f0afa8dc5ba1748dace2c01c", + "tx_hash": "32c562b0c3f018f94006ceeb831751be04a4e4d1e5c888acc6903d426c0b4eff", "tx_index": 91, "block_index": 215, - "source": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", - "fairminter_tx_hash": "b6f9dc28111884d1395173cf1096b1cb068b4585f3d72b1bc3cefbe5c5d4bc09", + "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", + "fairminter_tx_hash": "252832839c72492900101a52c957e169e303f24883676826c6106459088eeb7e", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731186016, + "block_time": 1731254832, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", + "issuer": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", "divisible": true, "locked": false }, @@ -15660,22 +15738,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", + "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", "tx_index": 46, "block_index": 150, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185690, + "block_time": 1731254553, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -15684,22 +15762,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", + "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", "tx_index": 45, "block_index": 149, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185686, + "block_time": 1731254549, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -15718,7 +15796,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265` (str, required) - The hash of the fairmint to return + + tx_hash: `41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15729,22 +15807,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -15762,7 +15840,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx,bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze` (str, required) - The addresses to search for + + addresses: `bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl,bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98` (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. @@ -15775,14 +15853,23 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ + { + "vout": 1, + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" + }, { "vout": 0, "height": 199, "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", - "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" + "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" }, { "vout": 1, @@ -15790,17 +15877,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", - "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" - }, - { - "vout": 1, - "height": 229, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" + "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" } ], "next_cursor": null, @@ -15813,7 +15891,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een` (str, required) - The address to search for + + address: `bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837` (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 @@ -15829,28 +15907,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "dc3a19065a16bdf04e853baf2dcc42967de399e651c76419d82e5c9236122125" + "tx_hash": "430f2f6af5d086de0957173ccd23c8921ae83d44e96a92931206439fc46fc016" }, { - "tx_hash": "7e3f595b0a596ecc6c5bd6815c0047a491d29f48bc55a1b1c0367c993bd3df6b" + "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20" }, { - "tx_hash": "dfe5a22d561329b5ec3e3953035f902f787570d95d1d0a59ff108e105d9df16d" + "tx_hash": "154b8bb5390b38ff4a6ae1c88c16728d97602c216e7d19084feb7ebd17579624" }, { - "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5" + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a" }, { - "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9" + "tx_hash": "5542f81df41a2cb680ba432837f02ae087b79c179d89e41855c99742be8e3cc1" }, { - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0" + "tx_hash": "3413248ef32c2e10be0c01ccf7140560bceb838a2e720672fad7272378df44c1" }, { - "tx_hash": "88f6928bbf1a3de0cfc385f1478b1a84b8ee8bf69b2240e5d50fb5c890bb70c3" + "tx_hash": "8ab1d9a99539d27dccee83a8d5583c6bc701b6104d3190a48de6b425d914f5c6" }, { - "tx_hash": "806db2023f958400084669709d71d3d173b678dbe82d6893f66057e311bd46ed" + "tx_hash": "4514303fcf21a4dc904cc3f1e01bdb4bca8c6ea71258f554f767c5f8893b69f7" } ], "next_cursor": null, @@ -15863,7 +15941,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md` (str, required) - The address to search for. + + address: `bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs` (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. @@ -15876,8 +15954,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 7, - "tx_hash": "052bfcfbf21111eef048884927e94e3374ff6ad6755d0f5ee7c27b950cc1c027" + "block_index": 10, + "tx_hash": "df8ddf7dbccfa0a5aafe89c20466139a881a9798cb8266f65f9a33d30e4c60fe" } } ``` @@ -15887,7 +15965,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx` (str, required) - The address to search for + + address: `bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl` (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 @@ -15904,11 +15982,11 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 1, - "height": 198, - "value": 546, - "confirmations": 35, - "amount": 5.46e-06, - "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d" + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e" }, { "vout": 0, @@ -15916,15 +15994,15 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4" + "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af" }, { "vout": 1, - "height": 229, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec" + "height": 198, + "value": 546, + "confirmations": 35, + "amount": 5.46e-06, + "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822" } ], "next_cursor": null, @@ -15937,7 +16015,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l` (str, required) - Address to get pubkey for. + + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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. @@ -15949,7 +16027,7 @@ Get pubkey for an address. ``` { - "result": "021b19ecc304833d6c1c20bf7dc2385ab0350240f412348c84f16df9b80414e12c" + "result": "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" } ``` @@ -15958,7 +16036,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4` (str, required) - The transaction hash + + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (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. @@ -15970,7 +16048,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101c11e86910529d8b13915600046d2a87392727fafa718131f198c21050dd1f0700100000000ffffffff03e8030000000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc800000000000000000c6a0a3a8932c5dd4735c525878714092701000000160014658b9c2487762c4260cf1ff801a6531c160b0c940247304402205ac6ce23fecf5d812567a7f0d10e826169d427fe12ddb36dcf9a1cf306b7deff02204992ba92b06c06b88c52f544884bc10e59ce920fe87e1ff2eebc3ae0375bf83801210276c5d73b938ceca6b7f198066f6465e5da5da0dd580b2acf2de04b195be400a900000000" + "result": "02000000000101e021aa8b812474351cc907ac9581598526da5eda468c7f9af0aac20ace443d7f0100000000ffffffff03e803000000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b00000000000000000c6a0a270c9fc71aeffa30274c871409270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb580247304402204d56aaeba7e38fd6703356f532a1b9ad579d1795df91db36495b7dca9e86411102203f224f83eb954a17591c6ac59dad86dcf6a862ea615b3aaaa77b29eb7025c051012102ad382333ae5b64be8589009507065e7b987bacf9af495c36bbdc4e9e3cd7fab900000000" } ``` @@ -16131,27 +16209,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106 }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "quantity": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "status": "valid", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -16162,22 +16240,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16187,22 +16265,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "block_index": 232, - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16212,30 +16290,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731186102.4815562, + "block_time": 1731254920.2141104, "btc_amount": 0, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "destination": "", "fee": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, - "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", + "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -16249,7 +16327,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -16280,19 +16358,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16302,7 +16380,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -16315,7 +16393,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927` (str, required) - The hash of the transaction to return + + tx_hash: `b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d` (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 @@ -16335,27 +16413,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106 }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "quantity": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "status": "valid", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -16366,22 +16444,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16391,22 +16469,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "block_index": 232, - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16416,30 +16494,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731186102.4815562, + "block_time": 1731254920.2141104, "btc_amount": 0, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "destination": "", "fee": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, - "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", + "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -16453,7 +16531,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py index d7be5af7bf..0eda808f17 100644 --- a/counterparty-core/counterpartycore/lib/gas.py +++ b/counterparty-core/counterpartycore/lib/gas.py @@ -1,8 +1,11 @@ +import logging import math from decimal import Decimal as D from counterpartycore.lib import config, database, ledger, util +logger = logging.getLogger(config.LOGGER_NAME) + PERIOD_DURATION = 2016 # blocks, around 2 weeks @@ -24,6 +27,23 @@ def initialise(db): ], ) + if database.get_config_value(db, "CLEAN_TRANSACTION_COUNT_1") is None: + logger.debug("Cleaning `transaction_count` table") + database.unlock_update(db, "transaction_count") + cursor.execute("DELETE FROM transaction_count") + cursor.execute(""" + SELECT block_index, count(*) AS count FROM credits + WHERE calling_function='attach to utxo' + GROUP BY block_index + """) + for row in cursor.fetchall(): + cursor.execute( + "INSERT INTO transaction_count (block_index, transaction_id, count) VALUES (?, ?, ?)", + (row["block_index"], 101, row["count"]), + ) + database.lock_update(db, "transaction_count") + database.set_config_value(db, "CLEAN_TRANSACTION_COUNT_1", True) + def get_transaction_count_by_block(db, transaction_id, block_index): cursor = db.cursor() diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 5743bae7c5..b8befe3477 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -670,5 +670,12 @@ "minimum_version_revision": 2, "block_index": 870000, "testnet_block_index": 3195137 + }, + "new_gas_system": { + "minimum_version_major": 10, + "minimum_version_minor": 6, + "minimum_version_revision": 2, + "block_index": 870000, + "testnet_block_index": 3195137 } } 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 d073d85d03..9c6c9e8034 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,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 cd1ea3ee28..321315459e 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,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 7e7d413903..cbacfb99f3 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,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 f00a21fbcd..ce2c241c08 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,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 2dabe7a315..e5f4bcc93c 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,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 f1b7763e9b..e86910b324 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -1,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log index a77f1bd177..e99232745c 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log @@ -1,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index 63e8985451..f0246b5e98 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -1,5 +1,13 @@ Initializing database... Fixing issuances `asset_longname` field +Cleaning `transaction_count` table +SQLITE_LOG: statement aborts at 3: [ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + ] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds Initialising asset cache... diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index a2b5d46a4a..db686eba73 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": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", "difficulty": 545259519, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, "confirmed": true }, { "block_index": 231, - "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", - "block_time": 1731186084, - "previous_block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", + "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_time": 1731254901, + "previous_block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", "difficulty": 545259519, - "ledger_hash": "ca3c4f7089c52fd9a659c33a8fded7797b922145a91020e5fbfadcdde341890b", - "txlist_hash": "01b00b213394a9828ec789110dea92e962e65602a186d2875b275fa8afae841d", - "messages_hash": "3930ccb9531dc440bf85362b938651073436e07b4e305acc7c3d5b5a40f1963b", + "ledger_hash": "180850ce0b31e4fd127682e0e1afded59ea1e11398637439bc37ca50f04b5191", + "txlist_hash": "3ec05057b4ab4a5f152cca04fcfe30123787f9510f1a0eea7d72553adac94dc0", + "messages_hash": "d4c83f158437ba9f21c62daac94d303681f811523d2d54a7defc454d6c38b770", "transaction_count": 1, "confirmed": true }, { "block_index": 230, - "block_hash": "2f13c308dd8ea16816c4495a03b7e281ef4db154518f0066262a6d7e63b55e7c", - "block_time": 1731186081, - "previous_block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", + "block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", + "block_time": 1731254888, + "previous_block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", "difficulty": 545259519, - "ledger_hash": "e0bb06557b7720f51532f4e83296ae9c1b8162bc033a2420abad8c7008b9a669", - "txlist_hash": "05061ecef04b7fd693f304243f2efc869585b039461313635eb71aa5ecc15643", - "messages_hash": "396d19e50661f5ef2c4d7e23afbcb72bf20a4331929dface107a43c8ea475e40", + "ledger_hash": "0222e83fa9903b5404178a0f4ee1bbd92e97efab2939359a81cf0b834f10034c", + "txlist_hash": "318d085bbb981ac740abeaf46025a94ebded272068646111c57e73f9d3fca44d", + "messages_hash": "d08241c8f2e3d34a4a707168cd53052fed26353d1a0887817db4947737416b57", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "0afaad797e2950c0b9749d696215c5a3b8157be00f62b34e46fb1fb49b02e3e5", - "block_time": 1731186078, - "previous_block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", + "block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", + "block_time": 1731254884, + "previous_block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", "difficulty": 545259519, - "ledger_hash": "53704ce85f4da6f74f6dc3d98cf0dc80108e3c5b58a160639742ae6cdafa7477", - "txlist_hash": "d5c28112d85d5dff5d4eaf60427db655207c4ad750e2afe35a07ed13e4df5908", - "messages_hash": "87238fd182eb7c10d2aa871ea400fc6ef01e665a8893cc01bf3aec59fd5b3f81", + "ledger_hash": "9f9ba7dcd29310997d22a3c8446a8e6f706c1d4f1593255d015735667813225d", + "txlist_hash": "e93494f6fba71e024561c3e6fc71302abb98aa6dd990d700e091d1e231594ead", + "messages_hash": "dc0196cb5ee35636618c782a58ba3dd86514cf921c24f0f5022b1db280fb5d99", "transaction_count": 1, "confirmed": true }, { "block_index": 228, - "block_hash": "2e999f11de24efebb2d647f0b8fc6592460927bc85639f837a61ed2c4c26fe55", - "block_time": 1731186075, - "previous_block_hash": "7e2b281286b3cff670b7fe275673eefd7a0f2f70388387221c63f80886b531d0", + "block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", + "block_time": 1731254880, + "previous_block_hash": "66883236cb1a0b159e370a27d3bbc346d6b7c19a0240e511006224cf04a073eb", "difficulty": 545259519, - "ledger_hash": "8ffc99e81909e542bb7b9c974b7eed20fbb2def0e480172186434b2e7f97a0c8", - "txlist_hash": "556668e36b9bd20c541cb93cf0c5f747f7a930674bd28c6c07010b19d56f15b0", - "messages_hash": "2492823aeb0c9fa0b1712cd80029a14e32c8f3d108a72ce2877e1c7570746de7", + "ledger_hash": "7d839fed1f121f13e251282c6c447c32a94fd4ccb27318af957d622bb6f7f762", + "txlist_hash": "6da25e260b5c39bfeabb4f28cc61cf91d6535b6be2c366e460bd6bf611a06513", + "messages_hash": "a8d1c8354711b9f6064172c3f132ec6084b05fc1f45a23f7fdab9bc139cdff9d", "transaction_count": 0, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", "difficulty": 545259519, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", "difficulty": 545259519, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 905, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 904, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" } ], "next_cursor": 902, @@ -256,16 +256,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 901, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" }, { "event_index": 898, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4" + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 232, - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "object_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "block_index": 211, "confirmed": true, - "block_time": 1731185989 + "block_time": 1731254816 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "status": "valid", "confirmed": true, - "block_time": 1731185845 + "block_time": 1731254702 } ], "next_cursor": null, @@ -481,19 +481,19 @@ "result": [ { "tx_index": 101, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "block_index": 228, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731186075, + "block_time": 1731254880, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false }, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -565,10 +565,10 @@ }, { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, "block_index": 231, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2", - "block_time": 1731186084, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_time": 1731254901, + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011:1 2 ", + "utxos_info": " 758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -815,19 +815,54 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "e18b61bacd0649e2505d8b70080199051499127a6fbffd0dae0826a3ffe38693", - "n": 2, + "hash": "06991a9ab0278631c053df141fb4533394db53965f8ee43a0d7c6bb651cfd600", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c44c85a5421a4defe39d56ac66af08173a836cc613238415b77215ed8d1d331d", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "aeaa8b96057a5383a7277fabbd68e1a0ac3aff4e5b698f82287c711870586686", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "bfe4c05f1bd874a0e89d006d84ffe98293a63b1a64925ee199c67b460a03466e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "b5d0e877b2918cfc3f6bc168f10e1e147b969c122db50d301338bec7bf1c017a", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "8b6026dca74b1abc7b94a9f587188e8e882d0ba176a72ef5e16d2a5759bd1653", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false @@ -835,50 +870,93 @@ ], "vout": [ { - "value": 4000, - "script_pub_key": "00147c2eff327169216a21c7c6d128cf4a981d0ef808" + "value": 1000, + "script_pub_key": "512102ecddb20e5c8640d4817e9a3782a3a332d15d0fda3ab771212beba56e64f18ea22102cefd60911961ab06708a88ea13ede051724a0b3097bbc179c1c7aa16d963b57821025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" }, { - "value": 0, - "script_pub_key": "6a0ac6554c8d67f4f43cacdb" + "value": 1000, + "script_pub_key": "512102ecddb20e5c8640d4811a07f5492510f8a4ce2f75521a29a20d3beb7ff27bb94521038205e033f168340d2faf59579c3111724ccdf55732403ff96ed2ac7f000ca5a221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" }, { - "value": 4949834000, - "script_pub_key": "0014d1d6cb957f70d439e67ab9c0f75ca54e4c052518" + "value": 1000, + "script_pub_key": "512102c2ddb20e5c8640d4817d9a74020de840ce71b6ae70d3a1d6655ecb129716d65321020205e03837a9258487af59579c3111721ecdf55732403ff96492ac7f000ca54221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + }, + { + "value": 29999987000, + "script_pub_key": "00147dfc55f48da0262381a8abd3c21e984b925dce68" } ], "vtxinwit": [ - "304402203e35c7eaf7728c3986228ba393a4cbc5b70acbe85d7faff2c5d2e5c1352424dc02202cd25cac7de59449c0ed1b15324b802e71bb8c29709d12bf176c785660b0341901", - "0249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc5055" + "3044022008303650bba19119e84d8ae1d93425364969ac01ba81dbbd601b7bc6f81ea207022032c65a7361de568ae4a3989215a23a2dd2e123ff8cd2b89611ed451a15fde04e01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "30440220632c5f0c97c8509288c2b9a94abf5ba2771223a4e9bac6e6aca11e57e1f311e202202205465611af3dd6cb4a73f47631db3704819b654758b3112abe0ede1baeddf601", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207ddc605727d370813844994471fa50cd27deb4c22ec4c89af22029e7e7760fa80220411fc6d125f4fe78a8f1633dbb9e4db905f8ccead0a8cc10358c20476d191aa901", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207f35e425e4408e3af324628a27fa75fe4b46d9eded31a4df467a8308896d5c8702205917c50b1ae17fd1c31e8234c92326d6b17911aa09cddb11c6c2e9c9d26cc35a01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207250497805c66f8abf9bbfe740ba66013527d5329d21b10c78ca65eb66973c06022062be84a7be99f871adea78e1e0420f48de41e89270d8c1cbd90b002ab11c82dc01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", + "304402207dcb62f6d0eedddf2468cf88570476f694309528ac3b093eecf60f0a26cc159a02207ccb59568361d4f9d1af252cd27bf26cde9b0671f9b397670ea75f526e0b310c01", + "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" ], "lock_time": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", - "tx_id": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019" + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_id": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3" }, "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "issuer": null, + "divisible": true, + "locked": true + }, + "quantity_normalized": "0.00000010" + } + ] }, - "btc_amount_normalized": "0.00004000" + "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3ad0b9a2684bc6b78db99630427a5bfd239d43dae592bc3a03a6dd8206afb71b", + "hash": "87da076fec5031c75ca96944f79c5cfce9c91aff9a625b6e86584b11eabc2b25", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -888,20 +966,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e37300bb519db38b5a92c905ea5156c711b102011d3ab46997e45c53303c290c7f3401218925ac84764dc2b1c7f3a" + "script_pub_key": "6a2e5b2b3a8ce9ef04719a1e5173cde08413a27f1b71fedd6e7add951c68bb503f8fb72233099f2397955b2e882da38b" }, { "value": 4949930546, - "script_pub_key": "00144acd4545d8daf86927d7f9b0476f3136db640f72" + "script_pub_key": "0014a5550669d96f10679dc14b28f8b86abf99f322c9" } ], "vtxinwit": [ - "3044022051791c0420151a1f74fdede830ff3d0b5452406ab52010fec3fdb13f3822f771022057cb135e77dd0de1fce640c8743d6c3992e6f9ef8ae54d294c54040960ff5dd501", - "03c097cd32001edf5502b0ef55a1a28c617bd229d511e563b2309e36eac1e9213a" + "3044022071914c8262f021a4b2ff134a6804455a224b8eedf98901e6b762e3babe2ba387022002da22c688796de57c5c40aebb8db1088711128cd3a056c142335c6fe4f7082a01", + "03dbfda71e1e6c7861bc1e67e4d8364d7da406d541a6c70a4f073087807d2c4088" ], "lock_time": 0, - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", - "tx_id": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927" + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_id": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d" }, "unpacked_data": { "message_type": "enhanced_send", @@ -909,7 +987,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -936,17 +1014,17 @@ "/v2/transactions/": { "result": { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -961,17 +1039,17 @@ "/v2/transactions/": { "result": { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", - "block_time": 1731186098, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", + "block_time": 1731254916, + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -990,12 +1068,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 905, @@ -1004,14 +1082,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1022,9 +1100,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 904, @@ -1033,9 +1111,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1045,24 +1123,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1072,9 +1150,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 902, @@ -1082,14 +1160,14 @@ "params": { "asset": "XCP", "block_index": 232, - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "msg_index": 1, "quantity": 2000000000, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", "status": "valid", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1099,9 +1177,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 901, @@ -1114,12 +1192,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 905, @@ -1128,14 +1206,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1146,9 +1224,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 904, @@ -1157,9 +1235,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1169,24 +1247,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1196,9 +1274,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 902, @@ -1206,14 +1284,14 @@ "params": { "asset": "XCP", "block_index": 232, - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "msg_index": 1, "quantity": 2000000000, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", "status": "valid", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1223,9 +1301,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 901, @@ -1235,10 +1313,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1246,7 +1324,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1259,10 +1337,10 @@ }, { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1270,11 +1348,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1290,27 +1368,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1325,7 +1403,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1346,16 +1424,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1365,9 +1443,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 901, @@ -1377,12 +1455,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1392,9 +1470,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 898, @@ -1404,24 +1482,24 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": null, @@ -1433,16 +1511,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1452,9 +1530,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 901, @@ -1464,12 +1542,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1479,9 +1557,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 898, @@ -1491,24 +1569,24 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": null, @@ -1521,7 +1599,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1531,7 +1609,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1542,7 +1620,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1552,7 +1630,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1563,7 +1641,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1573,7 +1651,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1584,7 +1662,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1594,7 +1672,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1605,7 +1683,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1615,7 +1693,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1629,17 +1707,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_hash": "0c303fcd060ff510ebae178fd2bce46d747b73a2f7994ed0b4bfb34a8005c4ec", - "block_time": 1731185957, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "block_hash": "7aafa1c8c0631b0be1c2ac6752e383f8738db022352447eff9b7be7125a347e4", + "block_time": 1731254774, + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889:0 4 ", + "utxos_info": " c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1647,14 +1725,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1662,7 +1740,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1681,17 +1759,17 @@ }, { "tx_index": 80, - "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", + "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", "block_index": 204, - "block_hash": "2e6cd1b41572df6efd98a88f5c70314eb0d987ec4b2d763806788f4ade34bca4", - "block_time": 1731185953, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "block_hash": "454db558177ebd44fffd199336a1838eed9583efd438a8569a3e715fc3275db8", + "block_time": 1731254770, + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807c2eff327169216a21c7c6d128cf4a981d0ef8088048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f72c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf:0 4 ", + "utxos_info": " 085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1699,14 +1777,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1714,7 +1792,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1733,17 +1811,17 @@ }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", - "block_time": 1731185949, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", + "block_time": 1731254767, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", + "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1751,14 +1829,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1766,7 +1844,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1785,17 +1863,17 @@ }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", - "block_time": 1731185934, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", + "block_time": 1731254762, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", + "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1803,14 +1881,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1818,7 +1896,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1837,17 +1915,17 @@ }, { "tx_index": 77, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", - "block_time": 1731185930, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", + "block_time": 1731254759, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "supported": true, - "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", + "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1855,12 +1933,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -1880,29 +1958,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "block_time": 1731186064 + "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "block_time": 1731254870 }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1912,37 +1990,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "block_time": 1731185989 + "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_time": 1731254816 }, - "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", + "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", "block_index": 211, - "block_time": 1731185989 + "block_time": 1731254816 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731185989, + "block_time": 1731254816, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1952,9 +2030,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", + "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", "block_index": 211, - "block_time": 1731185989 + "block_time": 1731254816 }, { "event_index": 698, @@ -1962,15 +2040,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "status": "valid", - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "tx_index": 81, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1980,9 +2058,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_time": 1731185957 + "block_time": 1731254774 } ], "next_cursor": 698, @@ -1991,17 +2069,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "quantity": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "status": "valid", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -2012,22 +2090,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2037,22 +2115,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "block_index": 232, - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2062,30 +2140,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731186102.4815562, + "block_time": 1731254920.2141104, "btc_amount": 0, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "destination": "", "fee": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, - "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", + "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -2099,7 +2177,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -2108,7 +2186,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2116,14 +2194,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2131,14 +2209,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2146,14 +2224,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2168,7 +2246,7 @@ "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2176,7 +2254,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2189,7 +2267,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2211,16 +2289,16 @@ "result": [ { "block_index": 225, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2232,16 +2310,16 @@ }, { "block_index": 205, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "event": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2253,16 +2331,16 @@ }, { "block_index": 204, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", + "event": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2274,16 +2352,16 @@ }, { "block_index": 204, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2295,16 +2373,16 @@ }, { "block_index": 202, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2322,16 +2400,16 @@ "result": [ { "block_index": 203, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2343,20 +2421,20 @@ }, { "block_index": 203, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2364,16 +2442,16 @@ }, { "block_index": 202, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2385,20 +2463,20 @@ }, { "block_index": 202, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2406,20 +2484,20 @@ }, { "block_index": 201, - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "event": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731185930, + "block_time": 1731254759, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2438,9 +2516,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", + "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", "block_index": 128, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2448,7 +2526,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185588, + "block_time": 1731254453, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2458,15 +2536,15 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 8, - "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", + "tx_index": 3, + "tx_hash": "abd596953bb4268a1f68698acfba6f154c46ef6300d90825a905f29e304c5796", "block_index": 112, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2478,10 +2556,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2489,7 +2567,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2502,10 +2580,10 @@ }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2513,11 +2591,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2526,10 +2604,10 @@ }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2537,11 +2615,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2550,10 +2628,10 @@ }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2561,7 +2639,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2574,10 +2652,10 @@ }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2585,11 +2663,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2604,10 +2682,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "d716473e904fa7dff860001bfc889a533c80bc9cd4a9613c4072acee63c491ef", + "tx_hash": "98528967e6e9f43e74383b573458cc1247d78ce15db78cfa1a69e34ad0e75d40", "block_index": 142, - "source": "c32e3600404ad843d8cbb61a672536529a761e48a9601c3d2a0a2e33755bc398:0", - "destination": "bcrt1qln0a8fdfd503sma0uw0ef5ynstvwn570s6z2l5", + "source": "2806c521e06299cd664aeba227bd9b0428cc98aa42ce5233e4cfc144e46f91ff:0", + "destination": "bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2615,11 +2693,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731185648, + "block_time": 1731254522, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2644,9 +2722,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2655,7 +2733,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2666,7 +2744,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2683,9 +2761,9 @@ }, { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2694,7 +2772,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2705,11 +2783,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2727,9 +2805,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2738,7 +2816,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2749,7 +2827,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2770,19 +2848,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2790,7 +2868,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2805,11 +2883,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2819,19 +2897,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2839,7 +2917,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2854,7 +2932,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2868,19 +2946,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2888,7 +2966,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2903,7 +2981,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2923,19 +3001,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2943,7 +3021,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2958,11 +3036,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -2972,19 +3050,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2992,7 +3070,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3007,7 +3085,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3021,19 +3099,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3041,7 +3119,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3056,7 +3134,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3076,19 +3154,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3096,7 +3174,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3111,7 +3189,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3125,19 +3203,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3145,7 +3223,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3160,7 +3238,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3180,19 +3258,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3200,7 +3278,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3215,7 +3293,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3229,19 +3307,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3249,7 +3327,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3264,7 +3342,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3283,16 +3361,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -3303,14 +3381,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", + "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -3325,20 +3403,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185927, + "block_time": 1731254756, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "942ff026a95e1761a6f0dada7624e857874fa8de566a675304f81c8148898c00", + "tx_hash": "fbe7c7b2601b5e45c7a465623ce2ec1813ff7d21e64af6ad3aa4fe12f080978e", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -3353,20 +3431,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185723, + "block_time": 1731254577, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "5d8559b8ea714872fec166bc290d687ddb2c145b1e3b8e47524942db750f1610", + "tx_hash": "2f2a90b36ea6a737b704690e85dca46764a4630daf9b65a724706cd4726be4e5", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -3381,20 +3459,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731185709, + "block_time": 1731254572, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "ce8ad8a3f3d13aaedf8cbe83bcdea291421aa6877ed5631f19948f42c5de6a87", + "tx_hash": "02c4a1217b737f89b976fd0543f63425b3c16be45fa1d89db326c0164fdfca11", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -3409,20 +3487,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185704, + "block_time": 1731254568, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "483971048fdc90f87cc37efcd8ac84bee20a87cd418b69d5a3edc61861d290e7", + "tx_hash": "d13655dbff39da617986c7f2a4f0fd17a34f40880b107514372f1c7f3703a9d7", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "transfer": false, "callable": false, "call_date": 0, @@ -3437,7 +3515,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731185700, + "block_time": 1731254564, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3451,8 +3529,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3460,16 +3538,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731185927, - "last_issuance_block_time": 1731185927, + "first_issuance_block_time": 1731254756, + "last_issuance_block_time": 1731254756, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 10000000000, @@ -3477,16 +3555,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731185700, - "last_issuance_block_time": 1731185709, + "first_issuance_block_time": 1731254564, + "last_issuance_block_time": 1731254572, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 180, @@ -3494,16 +3572,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731185681, - "last_issuance_block_time": 1731185690, + "first_issuance_block_time": 1731254546, + "last_issuance_block_time": 1731254553, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3511,16 +3589,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731185637, - "last_issuance_block_time": 1731185637, + "first_issuance_block_time": 1731254502, + "last_issuance_block_time": 1731254502, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 40, @@ -3528,8 +3606,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731185580, - "last_issuance_block_time": 1731185585, + "first_issuance_block_time": 1731254446, + "last_issuance_block_time": 1731254450, "supply_normalized": "0.00000040" } ], @@ -3542,8 +3620,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3551,16 +3629,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731185927, - "last_issuance_block_time": 1731185927, + "first_issuance_block_time": 1731254756, + "last_issuance_block_time": 1731254756, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 10000000000, @@ -3568,16 +3646,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731185700, - "last_issuance_block_time": 1731185709, + "first_issuance_block_time": 1731254564, + "last_issuance_block_time": 1731254572, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 180, @@ -3585,16 +3663,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731185681, - "last_issuance_block_time": 1731185690, + "first_issuance_block_time": 1731254546, + "last_issuance_block_time": 1731254553, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3602,16 +3680,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731185637, - "last_issuance_block_time": 1731185637, + "first_issuance_block_time": 1731254502, + "last_issuance_block_time": 1731254502, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 40, @@ -3619,8 +3697,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731185580, - "last_issuance_block_time": 1731185585, + "first_issuance_block_time": 1731254446, + "last_issuance_block_time": 1731254450, "supply_normalized": "0.00000040" } ], @@ -3633,8 +3711,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3642,16 +3720,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731185927, - "last_issuance_block_time": 1731185927, + "first_issuance_block_time": 1731254756, + "last_issuance_block_time": 1731254756, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 10000000000, @@ -3659,16 +3737,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731185700, - "last_issuance_block_time": 1731185709, + "first_issuance_block_time": 1731254564, + "last_issuance_block_time": 1731254572, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 180, @@ -3676,16 +3754,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731185681, - "last_issuance_block_time": 1731185690, + "first_issuance_block_time": 1731254546, + "last_issuance_block_time": 1731254553, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 100000000000, @@ -3693,16 +3771,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731185637, - "last_issuance_block_time": 1731185637, + "first_issuance_block_time": 1731254502, + "last_issuance_block_time": 1731254502, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "owner": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false, "supply": 40, @@ -3710,8 +3788,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731185580, - "last_issuance_block_time": 1731185585, + "first_issuance_block_time": 1731254446, + "last_issuance_block_time": 1731254450, "supply_normalized": "0.00000040" } ], @@ -3722,17 +3800,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "block_hash": "0be89736dca3875164663b2e5cb709ea33d253fd4f683f55e4ed2e4c346851d4", - "block_time": 1731185949, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", + "block_time": 1731254767, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905:0 4 ", + "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3740,14 +3818,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3755,7 +3833,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3774,17 +3852,17 @@ }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "block_hash": "6afdea6cf8989d1b6d724f41374b0022f66a0a69a50a8bb11f9c0b706a1b7a98", - "block_time": 1731185934, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", + "block_time": 1731254762, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d1d6cb957f70d439e67ab9c0f75ca54e4c0525188048077c18158a283027a74f022b6cd93719ad25bf804acd4545d8daf86927d7f9b0476f3136db640f7288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3:0 4 ", + "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3792,14 +3870,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3807,7 +3885,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3826,17 +3904,17 @@ }, { "tx_index": 77, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_hash": "4cced15bf8359da2c712037ed9fdf5b63fe8b38be7e58d9a2dc2e3a50aae3426", - "block_time": 1731185930, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", + "block_time": 1731254759, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "supported": true, - "utxos_info": " 9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754:1 2 ", + "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3844,12 +3922,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3860,17 +3938,17 @@ }, { "tx_index": 76, - "tx_hash": "b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85", + "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", "block_index": 200, - "block_hash": "325d74a8f97d29fefe1a1abf7b4a614ba04371cf048cd84ec08c61beace74c16", - "block_time": 1731185927, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "5a4217f64ff8c0213a6329804fafb8da23ed2f3fce016f17eea71e0300a82d2d", + "block_time": 1731254756, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " b462fe827bb95eaf433ee05bc20f1ba76338823ed23513cb1dd9652302985c85:1 2 ", + "utxos_info": " f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3895,17 +3973,17 @@ }, { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 193, - "block_hash": "34f8199af68420a203f2efb930c4d7b5bdbbb6f7f5704a7dadb1691f4002eae5", - "block_time": 1731185882, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "block_hash": "7665d200076034c09c4354a6d3c396d6c7dae5aae7112b0e1994697cd30ff4c3", + "block_time": 1731254722, + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24:1 2 ", + "utxos_info": " e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3922,7 +4000,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3940,20 +4018,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -3975,9 +4053,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3994,7 +4072,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4022,9 +4100,9 @@ }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4041,7 +4119,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4069,9 +4147,9 @@ }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4088,7 +4166,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4116,9 +4194,9 @@ }, { "tx_index": 64, - "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "block_index": 211, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4135,7 +4213,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185989, + "block_time": 1731254816, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4168,10 +4246,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4196,7 +4274,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731185690, + "block_time": 1731254553, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4208,10 +4286,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "09ad63ca98e5eff8a4621ae896e87fb4242738f8b76f8b52ff6a05d8e37c9585", + "tx_hash": "1d297909de3cc27ea67c071294f01caa884fcd458d56f96fe2d7c1c29c533bad", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4236,7 +4314,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731185668, + "block_time": 1731254542, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4245,10 +4323,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", + "tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4273,7 +4351,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731185580, + "block_time": 1731254446, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4285,10 +4363,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4313,7 +4391,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731185554, + "block_time": 1731254421, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4325,10 +4403,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", + "tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4353,7 +4431,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731185550, + "block_time": 1731254417, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4365,10 +4443,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", + "tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4393,7 +4471,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731185529, + "block_time": 1731254395, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4411,22 +4489,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", + "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", "tx_index": 46, "block_index": 150, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185690, + "block_time": 1731254553, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4435,22 +4513,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", + "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", "tx_index": 45, "block_index": 149, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185686, + "block_time": 1731254549, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4459,22 +4537,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "7ba9bbc46e8ae51d75ea8d784d22dddc742cb09b89f195bf458d501508025a2c", + "tx_hash": "a37a7f152ec02b8726f12eaea05c7093256d374427dad2f82b674661455c237d", "tx_index": 23, "block_index": 127, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "22edc5778e566004948b0bd0b32fc1982869ab9842d163b40358dde47edd2853", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185585, + "block_time": 1731254450, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4483,22 +4561,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "1acb763593931ac1b9f83e08bfb8078cab3803743069f1466e30eb84ea9ef7f9", + "tx_hash": "97af3e0b31ccceb37f482dee260d70f8dfeb452b2f1dc92b67216d0291f8c050", "tx_index": 21, "block_index": 125, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185576, + "block_time": 1731254442, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4507,22 +4585,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "a1ccc4bd919c2c6c97243d1b065f15e5621ce400cfb4c08b9c7c87fc13dc4d22", + "tx_hash": "80aaf1187fc14153a37b61308bf05bc30f7bcc8f3b67d50c52858c8f0373c07e", "tx_index": 20, "block_index": 124, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185563, + "block_time": 1731254439, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4531,22 +4609,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "16fed96a5dbbb814d4dfc3fc2b131de506089cbd085880fe059048d6aa63f335", + "tx_hash": "6ea5d77ed565f9380bb48986cccf228f915e71a2b4efce8b3468d5152bec97cb", "tx_index": 19, "block_index": 123, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "394ce9242df7db01a226c12fe63d8f7c8390ebb2e8081a0144b68d2bc2cc8fed", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185559, + "block_time": 1731254425, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4555,22 +4633,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "730ffaa535f45046390c9bfe6d6218cfe7c1536ed7a0814d2520f1cdd9871205", + "tx_hash": "99f1ad8c0775bc098acb32b44ea8cea14b6f1f0023ce066c5f5a236ff77b7198", "tx_index": 15, "block_index": 118, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "534dff2eb0106d9d07417fad2fc3561dc5287568bc7eb71f84d61fc079e94083", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185537, + "block_time": 1731254404, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4579,22 +4657,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bd2af388db19f0a79f476e3e2961b323cd09f6e425639b755bff532cc92e8bcf", + "tx_hash": "bb7b58324e702a6dedbb9687ace58eface705a181c5e0d3dac12411de5003dc6", "tx_index": 11, "block_index": 114, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "c869bd509520bfe301fbe7d18ede26487beecaa8b41ac266b9375c6ef3ac7602", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185521, + "block_time": 1731254389, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4616,8 +4694,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4630,12 +4708,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4651,7 +4729,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4664,7 +4742,7 @@ "btc_out": 0, "btc_change": 4999985834, "btc_fee": 14166, - "rawtransaction": "0200000000010161db2110e7ed9439b882cca495f4a087f6c49d3eea58d53e1916a5dc46d8663d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0200000000000000002b6a292c0ec151f56e2ae4f7a55dadfe85f55b09ad626591a4a3d882d662cca5ebbc345c7f7f50122b918f65aaba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001013c57738121e96c94e73650bb611f87908b5cc5e5912b69af60ceb57d2dde3ffd000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0200000000000000002b6a29685a41129d4cb2f1bb6bf4a4a8b1eefbe92bfd8bd589b94e43f055a53cb75fa5cc8e47347f7e0eae03aaba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4682,24 +4760,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "data": "434e5452505254590bc1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134ee9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999980970, "btc_fee": 18030, - "rawtransaction": "0200000000010149c3fc2308c1146b0de3469f574cbc8181ba42d12bf9cefca63746a7e9b917c5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600141d5098fbebdfcd42a99dfb2faa4254d26def3cc800000000000000004b6a49ed49ccdc3a30ed21b7e58a3d22d81237e76a1030d4f4af56c2e5550d4949bc90e647832e4723ecc8a9f30d77c9494923fe82c9367f89cc08fe00814d577a4e6e683251fac3b855fc44aaa7052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101faf837ac3d9a4debd1f0d0e97c35c640349b253900b98f8721ba04d2e3429075000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e80300000000000016001441da0a7652ef5a0bcf38ad343736042c8000db6000000000000000004b6a4961a6404d9c97cd92239cf806d911286d1b962983e49633f44014b93a53d9c19358a44e69e85d2314e13661a3644eee43fd13cee24e854fbdda61653714eec4a999da58ad2d304c9d53aaa7052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", - "order_match_id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "status": "valid" } } @@ -4708,7 +4786,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4719,28 +4797,28 @@ "btc_out": 1000, "btc_change": 4999985829, "btc_fee": 13171, - "rawtransaction": "0200000000010131b8fb279149cf786245701df6bcce3acce76a38d404563fee047efd2e3a2842000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000" + "rawtransaction": "0200000000010148ab7971342b9d3d52e82c68dd5244d2bfc92e3f84a9e4fe956fade546ddee7e000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "skip_validation": false }, "name": "cancel", - "data": "434e545250525459469ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "data": "434e54525052545946e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "btc_in": 90000, "btc_out": 0, "btc_change": 75834, "btc_fee": 14166, - "rawtransaction": "02000000000101cb7cb115b8772e5a127442097f3be2f91f7cdcdeed68908fbfa65c98ba45c09a010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff0200000000000000002b6a298cd0e081b22b4258b97f9c061fea37a8008f1c535b4b6b995aeba4df9b34239649bbd600a2e0ab0a1a3a280100000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000000000000", + "rawtransaction": "02000000000101315af430627f89d3d439def1e65c592e9ff0c89b1542cee5b625c73292a5abe901000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff0200000000000000002b6a29436d82e6dc30922fc7c418915aa02e676f9f94f64e347ac1c7d24da0a7f4227647b6713dd9a08925c33a28010000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "status": "valid" } } @@ -4749,7 +4827,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4769,7 +4847,7 @@ "btc_out": 0, "btc_change": 4999986361, "btc_fee": 13639, - "rawtransaction": "0200000000010167c68ed4b96cf794d9489a97a8448e15f57e8eecfbe1022c362743482a7fcb62000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000226a20cd079f16be64b4955ae914b0158fa8c7765b4c32d6988f3f74eea0b072168805b9bc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "0200000000010106cde379e95dd36b3ea209fad57609b44b869b6e732e62f852b2f1e088259876000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000226a20779ac4ada98d0b4fe4bf9082434711ce07843531a9811570d30ea7ea5fd995e5b9bc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4785,7 +4863,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4810,7 +4888,7 @@ "btc_out": 0, "btc_change": 4949859575, "btc_fee": 14224, - "rawtransaction": "02000000000101a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d01502000000160014658b9c2487762c4260cf1ff801a6531c160b0c94ffffffff0200000000000000002c6a2a44920b2ac26fa90b6c93c5d96492139d676e2009feca4b33ea1ffda3092ff4d32a8df7e73f350b696830f7dc082701000000160014658b9c2487762c4260cf1ff801a6531c160b0c9402000000000000", + "rawtransaction": "02000000000101ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab180200000016001477f035f8932bfb0cd735529ec106b2de87f6bb58ffffffff0200000000000000002c6a2ae43a4014264e42e5f579da24489611fa7a122a056812981d2c2f1a3397e1a5d2c1f4faf3aef27bbc7ee8f7dc08270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb5802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4832,7 +4910,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -4840,7 +4918,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -4859,7 +4937,7 @@ "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001010e79dd2c22e58474c75b096ac328af25edc0b0f1fd8df88d036b7af47da5e58d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a2182d70eccff8bb21f00cae24466a6463db9711d47cd4dfc9c5a03d2bef8ba536bf77ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101533538ba2b88f3ff364dff39681971ce22b2ba3c3260c196474112caf5195a88000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a2109b489672478c741c1c7240ac504f485c12542a9f85533273e80166051bfdfb9987ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4876,10 +4954,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "transfer_destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "lock": false, "reset": false, @@ -4893,7 +4971,7 @@ "btc_out": 546, "btc_change": 4999983766, "btc_fee": 15688, - "rawtransaction": "02000000000101a4f30ddb6a622b9825c06da68e210300ca06be1e81242dfc88526cf061591a4a000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000236a21e7049a4b3204d6dee973b2d15f1d7a3d89cc53d77ec84c49f61ffacddb32d3930c96b2052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001019646cee2788ef1976dee63e7791cb16f7a6ef4afaf57ee103ad2da959214bee8000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000236a2197b310cd5531b936aed9a1c78b9844da8b820a05f50f1d58db3a8f713b05fd77ae96b2052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4918,16 +4996,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", 1 ], [ "FAIRMINTC", - "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", 2 ] ], @@ -4936,26 +5014,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807c2eff327169216a21c7c6d128cf4a981d0ef80880d1d6cb957f70d439e67ab9c0f75ca54e4c0525184000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807dfc55f48da0262381a8abd3c21e984b925dce6880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf84000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949785336, "btc_fee": 20664, - "rawtransaction": "0200000000010189e8cd58809250035f8327b3a866d39d5bd42d10d860178c509b1f2752afd71103000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c052518ffffffff03e80300000000000069512102395dacbf610baff9e75e24b53a0d19b84710ea311e2b3145a74a3fb440906a4b21031d2f25a43873b9c734791011939b0ec2442757f967ed701515c40c5bc46abcfd210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aee80300000000000069512103265dacbf610baff9e74d24b7ba71374775458310740af6837666f0fed88d647b2102e527a475eeb82cb844ad29f7e922ce35188219b562c8685515c430b57bee0504210249c31aca75b63ffa5c2d1d8b9d36a8d33ec21a1dcda66fca38f077267abc505553aef8ba072701000000160014d1d6cb957f70d439e67ab9c0f75ca54e4c05251802000000000000", + "rawtransaction": "020000000001016664cdd117e2c8cf8dd22ee57388dca6dbfa4d3d0c762f409fe639b1071d3cc403000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8ffffffff03e8030000000000006951210232d85426dfdffc5373c2d4d2716428d9f744e7ab31ca3fa063e9773e823001142102704d43b1b10cf97327c9e0e70afe77b0ab4b63202788f4b4a95f2eb3d1b12d792102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aee803000000000000695121022dd85426dfdffc5373d1d4d0f119d48c03ed478d124b970bb02f69a6c9a25c582103be25c21ffa7ee65f9e95aa83da093905c53790c77f440cf4a95f125d6e35945f2102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aef8ba072701000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf802000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "quantity": 1, "memo": null, "memo_is_hex": null @@ -4967,7 +5045,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -4985,7 +5063,7 @@ "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -4999,7 +5077,7 @@ "btc_out": 0, "btc_change": 4999985249, "btc_fee": 14751, - "rawtransaction": "02000000000101b6643e2d1dd1b7356e9e47b783a012886a1cc0aeb96e69bce7b54e6b8675fdff000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000356a333f5590cc500874de862e7599577aeb4498fecd9b8f851e95c4bb83e3c87ffac00493e33ccb2b4bc39c4f51f90eda349ca8cd2061b8052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001014bbba36e158071fb7490d52a69d97f4bd5bafff57b54c57cabb1d38d07ddd099000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000356a3367946e68a5faf452d5d2720d177dd8174966c633ee143caf5fce4d934b9a2dc38a3d9709ae4e8982034f3ad4069ed9f5ccaedc61b8052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5021,8 +5099,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5039,19 +5117,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d1d6cb957f70d439e67ab9c0f75ca54e4c052518", + "data": "434e54525052545902000000000000000100000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985541, "btc_fee": 14459, - "rawtransaction": "020000000001010b664dc457fe5c77dc89496b233a04040505960a1ee866dec8e1af7ac6d113f2000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000306a2e29bf9d1bda0eff3398687aa065d742479b426ec608d8ee3653c8f966953198a7cc1ee90656ad86270497144ab9c985b9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101e1bd477e1e91e443d26218ea8f689f757d7aad9491dd35a5b41d432c8bdae532000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000306a2ec01fe1437f92616218f60ffa67740368895662d907a5ceae51543b0b6514b517f889450afc64bde6517b43bbc85285b9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "quantity_normalized": "0.00001000" } @@ -5061,24 +5139,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d1d6cb957f70d439e67ab9c0f75ca54e4c05251807ffff", + "data": "434e5452505254590480ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf807ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986302, "btc_fee": 13698, - "rawtransaction": "020000000001019fa6891009e280950fd417390ddbc6609285c1b9cef2ae4e9f70d8b54cb5c88c000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000236a21a5ba66383c964e21b9c396deaab731fe491546ebb4341084c7ada0fb8387b733047ebc052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "0200000000010152f183611295b2b57f46093df0b0557f9e6e8f17e1edb0a45e6852e78a51c84c000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a215dab6383d68496fd2d5d5abdae2f008bd1526673ac1b76de9c72f2963b66de52ab7ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "flags": 7, "memo": "ffff" } @@ -5088,8 +5166,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "quantity": 1000, "skip_validation": false }, @@ -5099,7 +5177,7 @@ "btc_out": 1000, "btc_change": 4999984658, "btc_fee": 14342, - "rawtransaction": "0200000000010192845753da8fde465954e2e1ab267ce7d80b3016257d611766db8ec5279cdba5000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff03e8030000000000001600144acd4545d8daf86927d7f9b0476f3136db640f7200000000000000000c6a0a79856f6ea0a09e53222a12b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101993fdd439d2f898b5ef1a10728d58f682e9b976ed60c2960fa55aa929961d389000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e803000000000000160014a5550669d96f10679dc14b28f8b86abf99f322c900000000000000000c6a0aacfdb48c0cff85ea275a12b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5112,7 +5190,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5144,7 +5222,7 @@ "btc_out": 0, "btc_change": 4999985483, "btc_fee": 14517, - "rawtransaction": "0200000000010138729dc318569217e89e403da643e9bb4e6116c925addd90b42dfa2fd1c42eca000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000316a2f052fbd739e6623e0a4bb7130f4e260d3da7dde56003aa6bfa0b73e75f3c24f75d552331c757eec594137e2b4e2d54c4bb9052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "02000000000101dc0f9bd95afe52cee0f69978192f31caf87d8d17388398d558977898e07dcec5000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000316a2f19f727556cc7c396ac0d4055cf95a190fda442ed6797decd7d3ed3022eea5251e1119136bddfe50dd0449ba14b116b4bb9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5179,14 +5257,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "divisible": true, "locked": false }, @@ -5198,7 +5276,7 @@ "btc_out": 0, "btc_change": 4999987122, "btc_fee": 12878, - "rawtransaction": "0200000000010121f896fa46d9867c0a3882e05f4169502dcb272f6d367c38aa4e4f9238d5cb5e000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff020000000000000000156a13d89edbe4f154db05ae377762f77439ad805793b2bf052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001017c850c46a2ea3ed5aa631290bbc4425e27e89edbcaf9ad25ae6186039ee18465000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000156a1340a778c237af9223c67a8e7391dbcf290378a3b2bf052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5213,7 +5291,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5233,7 +5311,7 @@ "btc_out": 546, "btc_change": 4999984644, "btc_fee": 14810, - "rawtransaction": "02000000000101ef7a12e93dfe55916f6628a871d043e089a251b93dbf12a50399d40cf465618d000000001600147c2eff327169216a21c7c6d128cf4a981d0ef808ffffffff0322020000000000001600147c2eff327169216a21c7c6d128cf4a981d0ef8080000000000000000146a12da287c2bf0ed0c35a8a9cfd82e028c551a3204b6052a010000001600147c2eff327169216a21c7c6d128cf4a981d0ef80802000000000000", + "rawtransaction": "020000000001010d2729602840994f39281fc445a0fb6e03413b4e6269aa9a7e3dfe868f28e549000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000146a1200f941c4f9d9a0790a285a0744c2c090320704b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5249,22 +5327,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "skip_validation": false }, "name": "detach", - "data": "434e545250525459666263727431713073683037766e336479736b35677738636d676a336e36326e7177736137716735377472336c", + "data": "434e54525052545966626372743171306837397461796435716e7a387164673430667579383563667766396d6e6e677261716d6372", "btc_in": 4949951000, "btc_out": 0, "btc_change": 4949925536, "btc_fee": 25464, - "rawtransaction": "02000000000102a401356744d1e8998da4bd66dc4658180993e9d050763bf962dd2e882f96d015000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff1190fe3945d54c388191ed0db2cd98889549f0bc1ff14705fecffee8eef00e5d010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc8ffffffff020000000000000000376a3544920b2ac26fa90b06f1a6ab10a362ad1506103e88a478547b6c96966e58ccb3afea9dd4510339077d47ea4870258ea9c557c20f10a0de0927010000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc802000002000000000000", + "rawtransaction": "02000000000102ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab1800000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff7ee612532cb7059b554038a43917ffe301f36100116c05026d0725e4b84d8c7501000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff020000000000000000376a35e43a4014264e42e59f1bb9563ca760ca13251371096bfc2bb541600be685c2e519928f8a96c718da6d8e5d9054cfb45df3803ddfbca0de092701000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l" + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr" } } } @@ -5275,8 +5353,8 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "owner": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "owner": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "divisible": true, "locked": false, "supply": 0, @@ -5284,16 +5362,16 @@ "first_issuance_block_index": 231, "last_issuance_block_index": 231, "confirmed": true, - "first_issuance_block_time": 1731186084, - "last_issuance_block_time": 1731186084, + "first_issuance_block_time": 1731254901, + "last_issuance_block_time": 1731254901, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false, "supply": 0, @@ -5301,16 +5379,16 @@ "first_issuance_block_index": 227, "last_issuance_block_index": 228, "confirmed": true, - "first_issuance_block_time": 1731186072, - "last_issuance_block_time": 1731186075, + "first_issuance_block_time": 1731254877, + "last_issuance_block_time": 1731254880, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false, "supply": 0, @@ -5318,16 +5396,16 @@ "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731186064, - "last_issuance_block_time": 1731186068, + "first_issuance_block_time": 1731254870, + "last_issuance_block_time": 1731254873, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false, "supply": 0, @@ -5335,16 +5413,16 @@ "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731186052, - "last_issuance_block_time": 1731186056, + "first_issuance_block_time": 1731254859, + "last_issuance_block_time": 1731254862, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true, "supply": 100000000, @@ -5352,8 +5430,8 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731186045, - "last_issuance_block_time": 1731186048, + "first_issuance_block_time": 1731254852, + "last_issuance_block_time": 1731254855, "supply_normalized": "1.00000000" } ], @@ -5365,8 +5443,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "owner": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true, "supply": 100000000, @@ -5374,15 +5452,15 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731186045, - "last_issuance_block_time": 1731186048, + "first_issuance_block_time": 1731254852, + "last_issuance_block_time": 1731254855, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5390,14 +5468,14 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5405,7 +5483,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -5418,7 +5496,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5440,9 +5518,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5459,7 +5537,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5487,9 +5565,9 @@ }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5506,7 +5584,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5534,9 +5612,9 @@ }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5553,7 +5631,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5581,9 +5659,9 @@ }, { "tx_index": 64, - "tx_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", + "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", "block_index": 211, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5600,7 +5678,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185989, + "block_time": 1731254816, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5628,9 +5706,9 @@ }, { "tx_index": 56, - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5647,7 +5725,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5680,13 +5758,13 @@ "/v2/assets//matches": { "result": [ { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5700,7 +5778,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5720,13 +5798,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 56, - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5740,7 +5818,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5760,13 +5838,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", "tx0_index": 53, - "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 54, - "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5780,7 +5858,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5800,13 +5878,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 64, - "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5820,7 +5898,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5847,20 +5925,20 @@ "result": [ { "block_index": 221, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -5868,20 +5946,20 @@ }, { "block_index": 221, - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -5899,12 +5977,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5916,16 +5994,16 @@ }, { "block_index": 231, - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "event": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5937,16 +6015,16 @@ }, { "block_index": 227, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186072, + "block_time": 1731254877, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5958,16 +6036,16 @@ }, { "block_index": 225, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "event": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5979,16 +6057,16 @@ }, { "block_index": 222, - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", + "event": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731186052, + "block_time": 1731254859, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6011,14 +6089,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -6033,20 +6111,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -6061,7 +6139,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186045, + "block_time": 1731254852, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6073,10 +6151,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6084,7 +6162,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6097,10 +6175,10 @@ }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6108,7 +6186,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6121,10 +6199,10 @@ }, { "tx_index": 80, - "tx_hash": "582707f7b956060a90095b84ccd0787a9f4df7172fc7b3e7bd89d4f280852fbf", + "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", "block_index": 204, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6132,7 +6210,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6145,10 +6223,10 @@ }, { "tx_index": 79, - "tx_hash": "690ba341dd7ff0f90f661a8dd79c64aefdd5709d9c774d885fe9c2bd85b8b905", + "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", "block_index": 203, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6156,7 +6234,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185949, + "block_time": 1731254767, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6169,10 +6247,10 @@ }, { "tx_index": 78, - "tx_hash": "24ac219e1432d978bec43e2a1f1395a8e1ebad4756ea7f32e4771aa0a3f5a5d3", + "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6180,7 +6258,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6199,9 +6277,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6210,7 +6288,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6221,7 +6299,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6238,9 +6316,9 @@ }, { "tx_index": 29, - "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", + "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", "block_index": 133, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6249,7 +6327,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6260,7 +6338,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185606, + "block_time": 1731254472, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6277,9 +6355,9 @@ }, { "tx_index": 30, - "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", + "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", "block_index": 141, - "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", + "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6287,10 +6365,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -6299,7 +6377,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185645, + "block_time": 1731254519, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6316,18 +6394,18 @@ }, { "tx_index": 33, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6338,7 +6416,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6360,9 +6438,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6371,7 +6449,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6382,7 +6460,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6402,7 +6480,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -6411,7 +6489,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -6419,7 +6497,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -6428,7 +6506,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -6443,27 +6521,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6478,7 +6556,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6492,27 +6570,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", + "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", "block_index": 138, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6527,7 +6605,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731185634, + "block_time": 1731254499, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6541,19 +6619,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6561,7 +6639,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6576,7 +6654,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6590,19 +6668,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6610,7 +6688,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6625,7 +6703,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6648,10 +6726,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "tx_index": 96, "block_index": 221, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -6676,7 +6754,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -6694,22 +6772,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -6730,9 +6808,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6749,7 +6827,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6777,9 +6855,9 @@ }, { "tx_index": 56, - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6796,7 +6874,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6824,9 +6902,9 @@ }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6843,7 +6921,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6871,9 +6949,9 @@ }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6890,7 +6968,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6918,9 +6996,9 @@ }, { "tx_index": 58, - "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "block_index": 205, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -6937,7 +7015,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6970,9 +7048,9 @@ "/v2/orders/": { "result": { "tx_index": 103, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -6989,7 +7067,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731186081, + "block_time": 1731254888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7000,7 +7078,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -7019,13 +7097,13 @@ "/v2/orders//matches": { "result": [ { - "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx0_index": 102, - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "tx1_index": 103, - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", - "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7039,11 +7117,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731186081, + "block_time": 1731254888, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -7066,15 +7144,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "btc_amount": 2000, - "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "status": "valid", "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "btc_amount_normalized": "0.00002000" } ], @@ -7085,9 +7163,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "block_index": 182, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7105,7 +7183,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731185822, + "block_time": 1731254669, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7131,9 +7209,9 @@ }, { "tx_index": 58, - "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "block_index": 205, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7151,7 +7229,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731185957, + "block_time": 1731254774, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7177,9 +7255,9 @@ }, { "tx_index": 53, - "tx_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", + "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", "block_index": 179, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7197,7 +7275,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185748, + "block_time": 1731254592, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7223,9 +7301,9 @@ }, { "tx_index": 55, - "tx_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", + "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", "block_index": 202, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7243,7 +7321,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185934, + "block_time": 1731254762, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7269,9 +7347,9 @@ }, { "tx_index": 62, - "tx_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", + "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", "block_index": 188, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7289,7 +7367,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185845, + "block_time": 1731254702, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7320,13 +7398,13 @@ "/v2/orders///matches": { "result": [ { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7343,7 +7421,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185953, + "block_time": 1731254770, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7363,13 +7441,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 56, - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7386,7 +7464,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185822, + "block_time": 1731254669, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7406,13 +7484,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", "tx0_index": 53, - "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 54, - "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7429,7 +7507,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731185748, + "block_time": 1731254592, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7449,13 +7527,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 64, - "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7472,7 +7550,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731186064, + "block_time": 1731254870, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7498,13 +7576,13 @@ "/v2/order_matches": { "result": [ { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7518,7 +7596,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185953, + "block_time": 1731254770, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7538,13 +7616,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", + "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", "tx0_index": 55, - "tx0_hash": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 56, - "tx1_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7558,7 +7636,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731185822, + "block_time": 1731254669, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7578,13 +7656,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c_75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", + "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", "tx0_index": 53, - "tx0_hash": "890e71edb9d15eacec6604d123d6f58516f170ee69e2a9caf631c900cd3d122c", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 54, - "tx1_hash": "75889f0980284d5df8e03ff267a1424c290c2da4f6af46ddab4b1ad9127b43e0", - "tx1_address": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7598,7 +7676,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731185748, + "block_time": 1731254592, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7618,13 +7696,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "tx0_index": 64, - "tx0_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "tx1_index": 58, - "tx1_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7638,7 +7716,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7658,13 +7736,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx0_index": 102, - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "tx1_index": 103, - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", - "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7678,11 +7756,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731186081, + "block_time": 1731254888, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -7723,66 +7801,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", + "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", "block_index": 112, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "22aeedc21b53f747827477c902757b9aa4d264ed8f860d4d5d1b2452adfaebbf", + "tx_hash": "f057e728263dcd95f79ed359aad4ead52077fedd3dac46899b1b14ea4e1758e9", "block_index": 112, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "314ef7d935d922c69d9ebdf4aa8cb37d35b27cbe96f65b2fa09ffe679183a5b5", + "tx_hash": "9ab75d2a2e8bac2541af80cdc7973b81b6464841d3b70fe3101aecd9b91eb7c1", "block_index": 112, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5", + "tx_hash": "0e994e56ceee5273e4a1fa6d2a93ae5a16505151fb63c49dc7a7d640800a5cb9", "block_index": 112, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "b16c489137d7b0cbd7a281bdadba870a9d1043835d650547980fb339d4f48272", + "tx_hash": "f2e59e2c1fcafe2177fff3fce6fed1926d7371e388af4715f63417c5756f50b1", "block_index": 112, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -7794,9 +7872,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7805,7 +7883,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7816,7 +7894,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7833,9 +7911,9 @@ }, { "tx_index": 29, - "tx_hash": "b6fff9b828459947bc8dc3c44a5b07ec0940299e91624bfee20b0cae3d314aa2", + "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", "block_index": 133, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7844,7 +7922,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7855,7 +7933,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185606, + "block_time": 1731254472, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7872,9 +7950,9 @@ }, { "tx_index": 30, - "tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", + "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", "block_index": 141, - "source": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", + "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7882,10 +7960,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a278394d4f418457d6cdf83ac0a4c62b2b37345e007c69656e18bbe4324f5c9", - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -7894,7 +7972,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185645, + "block_time": 1731254519, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7911,9 +7989,9 @@ }, { "tx_index": 68, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7922,7 +8000,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7933,11 +8011,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -7950,18 +8028,18 @@ }, { "tx_index": 33, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7972,7 +8050,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7994,9 +8072,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8005,7 +8083,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8016,7 +8094,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8037,19 +8115,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8057,7 +8135,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8072,7 +8150,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8086,19 +8164,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8106,7 +8184,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8121,7 +8199,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8140,20 +8218,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8174,20 +8252,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8210,12 +8288,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "event": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "tx_index": 42, - "utxo": "426d796d06af893564296fd9d35d79cc3b7cf1b026ab15e76478d5067b410568:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "utxo": "c7ae48041c2647ba8bb21829e463c2c431e9e953c08b58a2ab683a94c4d0f186:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "confirmed": true, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8236,27 +8314,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 906, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 905, @@ -8265,14 +8343,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8283,9 +8361,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 904, @@ -8294,9 +8372,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8306,24 +8384,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8333,9 +8411,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 902, @@ -8347,15 +8425,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } }, "/v2/events/counts": { @@ -8390,16 +8468,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8409,9 +8487,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 901, @@ -8421,12 +8499,12 @@ "asset": "XCP", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8436,9 +8514,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 898, @@ -8448,24 +8526,24 @@ "asset": "MYASSETA", "block_index": 232, "calling_function": "utxo move", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", - "utxo_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "block_time": 1731186098, + "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 }, { "event_index": 862, @@ -8475,39 +8553,39 @@ "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731186072, + "block_time": 1731254877, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "block_index": 227, - "block_time": 1731186072 + "block_time": 1731254877 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731186064, + "block_time": 1731254870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8517,9 +8595,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 } ], "next_cursor": 819, @@ -8536,27 +8614,27 @@ { "tx_index": 105, "dispense_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8571,7 +8649,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8585,19 +8663,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "a8c17dc5579aae630b9213cd71e936f1387a0c2bb30d90fac137d18318ac6019", + "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8605,7 +8683,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8620,11 +8698,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185886, + "block_time": 1731254726, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8634,27 +8712,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "cc6f04bb421a4d9063a1c7406a9e9381dfa224fbacf0a2f3055cf3e68aa34674", + "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", "block_index": 138, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 232, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "last_status_tx_hash": null, - "origin": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8669,7 +8747,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731185634, + "block_time": 1731254499, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8683,19 +8761,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "03be4292369a419eef7fcf6c0749b5f24a138de39862a2103c0705765605b2ff", + "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8703,7 +8781,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8718,7 +8796,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185603, + "block_time": 1731254468, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8732,19 +8810,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ff08c24857800946f33fcf3a4df153272da0ca46320d03551b4d9f52e2107f81", + "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", "block_index": 131, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7c0274113900b8b246655a7e23685180f0466355ad09e4897da08660f9c44f02", + "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8752,7 +8830,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8767,7 +8845,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731185600, + "block_time": 1731254465, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8786,10 +8864,10 @@ "result": [ { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8797,7 +8875,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8810,10 +8888,10 @@ }, { "tx_index": 105, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8821,11 +8899,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8834,10 +8912,10 @@ }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8845,7 +8923,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8858,10 +8936,10 @@ }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8869,11 +8947,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8882,10 +8960,10 @@ }, { "tx_index": 81, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8893,11 +8971,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -8912,14 +8990,14 @@ "result": [ { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "transfer": false, "callable": false, "call_date": 0, @@ -8934,20 +9012,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 101, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -8962,20 +9040,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731186075, + "block_time": 1731254880, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -8990,20 +9068,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186072, + "block_time": 1731254877, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -9018,20 +9096,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731186068, + "block_time": 1731254873, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 100, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "msg_index": 0, "block_index": 225, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "transfer": false, "callable": false, "call_date": 0, @@ -9046,7 +9124,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186064, + "block_time": 1731254870, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9057,14 +9135,14 @@ "/v2/issuances/": { "result": { "tx_index": 104, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "msg_index": 0, "block_index": 231, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "transfer": false, "callable": false, "call_date": 0, @@ -9079,7 +9157,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9088,16 +9166,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -9108,16 +9186,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" } ], @@ -9128,9 +9206,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9138,14 +9216,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185592, + "block_time": 1731254457, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c07d3d6589b1ef91b1f646c044cee6e80e6d935a1be94623fc9fa395daaf7b4c", + "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", "block_index": 128, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9153,7 +9231,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185588, + "block_time": 1731254453, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9163,9 +9241,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9173,17 +9251,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731185592, + "block_time": 1731254457, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, "block_index": 231, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -9208,7 +9286,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186084, + "block_time": 1731254901, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9217,10 +9295,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "tx_index": 101, "block_index": 228, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "PREMINT", "asset_parent": "", "asset_longname": "", @@ -9245,7 +9323,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186075, + "block_time": 1731254880, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9254,10 +9332,10 @@ "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "tx_index": 100, "block_index": 226, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -9282,7 +9360,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186068, + "block_time": 1731254873, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9291,10 +9369,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dbc22e66b838256fa269e76efa1d0c806401f7401effa7a3531dffedf84cb420", + "tx_hash": "ef4643f3991e759ab553ffe8360a89ffc3cfad184f146fc8d2e87ca8897bcf3f", "tx_index": 99, "block_index": 224, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": null, "asset_parent": null, "asset_longname": null, @@ -9319,13 +9397,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186060 + "block_time": 1731254866 }, { - "tx_hash": "5b7188716145e5ecc6e0c73af8cde3a4b7f407bcc52f7163f38ff790ce521855", + "tx_hash": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", "tx_index": 98, "block_index": 223, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -9350,7 +9428,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731186056, + "block_time": 1731254862, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9365,22 +9443,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -9389,22 +9467,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "573b30e5f5323e21a609b153fd2a297016c92522eba2169970a44457a8f1fe30", + "tx_hash": "8f5288cbc52cee0ba0c858a631fdb4ec475ca494ce1250d1bb167821cce03357", "tx_index": 95, "block_index": 219, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "92b08136345613ac4da682987e36d5061ca068fa866c0dec1847c03b6dd1becd", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "8a25a3de871ffc28fd0f770d34f08cc4554a98097f99d02253bc3eaa3ff8b44c", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731186040, + "block_time": 1731254848, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -9413,22 +9491,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "4bc584e5451063581fdf0a07219795565623d1d6f0afa8dc5ba1748dace2c01c", + "tx_hash": "32c562b0c3f018f94006ceeb831751be04a4e4d1e5c888acc6903d426c0b4eff", "tx_index": 91, "block_index": 215, - "source": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", - "fairminter_tx_hash": "b6f9dc28111884d1395173cf1096b1cb068b4585f3d72b1bc3cefbe5c5d4bc09", + "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", + "fairminter_tx_hash": "252832839c72492900101a52c957e169e303f24883676826c6106459088eeb7e", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731186016, + "block_time": 1731254832, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qv30wmsy6ac3cqgnhy9vv0ugl4v2l0yuzqztmze", + "issuer": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", "divisible": true, "locked": false }, @@ -9437,22 +9515,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "1fa2dfcf1699022592ed7f647a968342ff920d7efd84fa619bfd8d3a7aa91b82", + "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", "tx_index": 46, "block_index": 150, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185690, + "block_time": 1731254553, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -9461,22 +9539,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "963050757810f2c089bfc8b6065794d3644bc4a8044cc9fdc4a4da9c85dc6ce1", + "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", "tx_index": 45, "block_index": 149, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", - "fairminter_tx_hash": "814d78237ea844e46328c46b846c9645c4b2aca4550f1dc6a6db2264c2bb8ab0", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731185686, + "block_time": 1731254549, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -9490,22 +9568,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -9516,14 +9594,23 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ + { + "vout": 1, + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", + "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" + }, { "vout": 0, "height": 199, "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", - "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" + "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" }, { "vout": 1, @@ -9531,17 +9618,8 @@ "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", - "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" - }, - { - "vout": 1, - "height": 229, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", - "address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx" + "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" } ], "next_cursor": null, @@ -9550,28 +9628,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "dc3a19065a16bdf04e853baf2dcc42967de399e651c76419d82e5c9236122125" + "tx_hash": "430f2f6af5d086de0957173ccd23c8921ae83d44e96a92931206439fc46fc016" }, { - "tx_hash": "7e3f595b0a596ecc6c5bd6815c0047a491d29f48bc55a1b1c0367c993bd3df6b" + "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20" }, { - "tx_hash": "dfe5a22d561329b5ec3e3953035f902f787570d95d1d0a59ff108e105d9df16d" + "tx_hash": "154b8bb5390b38ff4a6ae1c88c16728d97602c216e7d19084feb7ebd17579624" }, { - "tx_hash": "4497238419b18f01275d4a9c43421cd25a734f5a41433803218ba97ea7a5aba5" + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a" }, { - "tx_hash": "96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9" + "tx_hash": "5542f81df41a2cb680ba432837f02ae087b79c179d89e41855c99742be8e3cc1" }, { - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0" + "tx_hash": "3413248ef32c2e10be0c01ccf7140560bceb838a2e720672fad7272378df44c1" }, { - "tx_hash": "88f6928bbf1a3de0cfc385f1478b1a84b8ee8bf69b2240e5d50fb5c890bb70c3" + "tx_hash": "8ab1d9a99539d27dccee83a8d5583c6bc701b6104d3190a48de6b425d914f5c6" }, { - "tx_hash": "806db2023f958400084669709d71d3d173b678dbe82d6893f66057e311bd46ed" + "tx_hash": "4514303fcf21a4dc904cc3f1e01bdb4bca8c6ea71258f554f767c5f8893b69f7" } ], "next_cursor": null, @@ -9579,19 +9657,19 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 7, - "tx_hash": "052bfcfbf21111eef048884927e94e3374ff6ad6755d0f5ee7c27b950cc1c027" + "block_index": 10, + "tx_hash": "df8ddf7dbccfa0a5aafe89c20466139a881a9798cb8266f65f9a33d30e4c60fe" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 1, - "height": 198, - "value": 546, - "confirmations": 35, - "amount": 5.46e-06, - "txid": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d" + "height": 229, + "value": 4949928908, + "confirmations": 4, + "amount": 49.49928908, + "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e" }, { "vout": 0, @@ -9599,25 +9677,25 @@ "value": 546, "confirmations": 34, "amount": 5.46e-06, - "txid": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4" + "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af" }, { "vout": 1, - "height": 229, - "value": 4949928908, - "confirmations": 4, - "amount": 49.49928908, - "txid": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec" + "height": 198, + "value": 546, + "confirmations": 35, + "amount": 5.46e-06, + "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "021b19ecc304833d6c1c20bf7dc2385ab0350240f412348c84f16df9b80414e12c" + "result": "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101c11e86910529d8b13915600046d2a87392727fafa718131f198c21050dd1f0700100000000ffffffff03e8030000000000001600149993e90fb59e1eed66e8de94c58a3aa3e4946bc800000000000000000c6a0a3a8932c5dd4735c525878714092701000000160014658b9c2487762c4260cf1ff801a6531c160b0c940247304402205ac6ce23fecf5d812567a7f0d10e826169d427fe12ddb36dcf9a1cf306b7deff02204992ba92b06c06b88c52f544884bc10e59ce920fe87e1ff2eebc3ae0375bf83801210276c5d73b938ceca6b7f198066f6465e5da5da0dd580b2acf2de04b195be400a900000000" + "result": "02000000000101e021aa8b812474351cc907ac9581598526da5eda468c7f9af0aac20ace443d7f0100000000ffffffff03e803000000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b00000000000000000c6a0a270c9fc71aeffa30274c871409270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb580247304402204d56aaeba7e38fd6703356f532a1b9ad579d1795df91db36495b7dca9e86411102203f224f83eb954a17591c6ac59dad86dcf6a862ea615b3aaaa77b29eb7025c051012102ad382333ae5b64be8589009507065e7b987bacf9af495c36bbdc4e9e3cd7fab900000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58539 @@ -9690,27 +9768,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106 }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "quantity": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "status": "valid", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -9721,22 +9799,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9746,22 +9824,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "block_index": 232, - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9771,30 +9849,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731186102.4815562, + "block_time": 1731254920.2141104, "btc_amount": 0, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "destination": "", "fee": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, - "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", + "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -9808,7 +9886,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -9817,19 +9895,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9839,7 +9917,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -9848,27 +9926,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106 }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "quantity": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "status": "valid", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, "asset_info": { "asset_longname": null, @@ -9879,22 +9957,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "CREDIT", "params": { - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "asset": "XCP", "block_index": 232, "calling_function": "send", - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9904,22 +9982,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "asset": "XCP", "block_index": 232, - "event": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "quantity": 10000, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9929,30 +10007,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 }, { - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731186102.4815562, + "block_time": 1731254920.2141104, "btc_amount": 0, - "data": "02000000000000000100000000000027108048077c18158a283027a74f022b6cd93719ad25bf", + "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", "destination": "", "fee": 10000, - "source": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", - "tx_hash": "0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927", + "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", "tx_index": 106, - "utxos_info": "1bb7af0682dda6033abc92e5da439d23fd5b7a423096b98db7c64b68a2b9d03a:1 0f98e8e03fb348a2e283a4d5b9b080f342f275c131b67c4226ff57a782900927:1 2 ", + "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "memo": null, "asset_info": { "asset_longname": null, @@ -9966,7 +10044,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731186102.4815562 + "timestamp": 1731254920.2141104 } ], "next_cursor": null, @@ -9988,15 +10066,15 @@ "event_index": 894, "event": "NEW_BLOCK", "params": { - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", "block_index": 232, - "block_time": 1731186098, + "block_time": 1731254916, "difficulty": 545259519, - "previous_block_hash": "7ea9987ea6e87d0d7aa97fc3e0fe7f0e80279825f637c52792c4ae6f2a3366e2" + "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23" }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 886, @@ -10008,17 +10086,17 @@ "event_index": 895, "event": "NEW_TRANSACTION", "params": { - "block_hash": "777e378c801bac87959b0499c340eb1ab4df18c751d7e0491d27f4a2394ed413", + "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", "block_index": 232, - "block_time": 1731186098, + "block_time": 1731254916, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "fee": 0, - "source": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "utxos_info": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1 15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0 3 1", + "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10028,9 +10106,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 887, @@ -10044,16 +10122,16 @@ "params": { "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "out_index": 0, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 579, @@ -10066,15 +10144,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 232, - "ledger_hash": "11d28fbbf5c9873fe427d4dced3f9e12992bc2e79e77661a8b89e11f4e946406", - "messages_hash": "c3295c9300f1a7749b19553a78d6094b8cb27c71697ed100f31a733a5258d5a7", + "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", + "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", "transaction_count": 1, - "txlist_hash": "afd7b173f8158e81b34c69f901d8e206f4de70a48ceb849b7f237565762d2abd", - "block_time": 1731186098 + "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", + "block_time": 1731254916 }, "tx_hash": null, "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 893, @@ -10087,12 +10165,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105 }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 892, @@ -10108,12 +10186,12 @@ "address": null, "asset": "XCP", "block_index": 232, - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 2000000000, "tx_index": 105, - "utxo": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", - "utxo_address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", - "block_time": 1731186098, + "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10123,9 +10201,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 897, @@ -10137,16 +10215,16 @@ "event_index": 903, "event": "CREDIT", "params": { - "address": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "asset": "XCP", "block_index": 232, "calling_function": "dispense", - "event": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "quantity": 66, "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10156,9 +10234,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 901, @@ -10172,26 +10250,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "memo": null, "quantity": 1000, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": "valid", - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "tx_index": 77, - "block_time": 1731185930, + "block_time": 1731254759, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9c7dfb1195707e84bafeb661d3194d509cb423b371f3c0320b851bf9b4ddc754", + "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", "block_index": 201, - "block_time": 1731185930 + "block_time": 1731254759 } ], "next_cursor": 515, @@ -10205,15 +10283,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "status": "valid", - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "tx_index": 81, - "block_time": 1731185957, + "block_time": 1731254774, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10223,9 +10301,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "11d7af52271f9b508c1760d8102dd45b9dd366a8b327835f0350928058cde889", + "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", "block_index": 205, - "block_time": 1731185957 + "block_time": 1731254774 } ], "next_cursor": 697, @@ -10248,20 +10326,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qftx523wcmtuxjf7hlxcywme3xmdkgrmjcc45qe", + "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", + "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", "status": "valid", - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "tx_index": 65, - "block_time": 1731185862, + "block_time": 1731254711, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e9898ae380f9cbcadb48244259085773568a618bc1d21d087a69af5a389b17b0", + "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", "block_index": 190, - "block_time": 1731185862 + "block_time": 1731254711 } ], "next_cursor": null, @@ -10278,15 +10356,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": "valid", - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "tx_index": 42, - "block_time": 1731185665, + "block_time": 1731254539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -10300,9 +10378,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "2466aea74f68e6f5b2af409de6adc723d698d50e0dbde0915532dae151fc788c", + "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", "block_index": 146, - "block_time": 1731185665 + "block_time": 1731254539 } ], "next_cursor": null, @@ -10323,11 +10401,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 }, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 } ], "next_cursor": 860, @@ -10350,22 +10428,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "valid", "transfer": false, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, - "block_time": 1731186084, + "block_time": 1731254901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 } ], "next_cursor": 869, @@ -10380,16 +10458,16 @@ "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350", + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", "tx_index": 101, - "block_time": 1731186075, + "block_time": 1731254880, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": false }, @@ -10397,7 +10475,7 @@ }, "tx_hash": null, "block_index": 228, - "block_time": 1731186075 + "block_time": 1731254880 } ], "next_cursor": 817, @@ -10422,11 +10500,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "open", - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx_index": 103, - "block_time": 1731186081, + "block_time": 1731254888, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10437,7 +10515,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -10450,9 +10528,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_time": 1731186081 + "block_time": 1731254888 } ], "next_cursor": 875, @@ -10470,24 +10548,24 @@ "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec_9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "match_expire_index": 250, "status": "pending", - "tx0_address": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "tx0_block_index": 229, "tx0_expiration": 21, - "tx0_hash": "ed434b12ee78681af4741b24609bbb1853495cf0e9dc069bc1efad9e63ae4fec", + "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", "tx0_index": 102, - "tx1_address": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "tx1_block_index": 230, "tx1_expiration": 21, - "tx1_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "tx1_index": 103, - "block_time": 1731186081, + "block_time": 1731254888, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, @@ -10502,9 +10580,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_time": 1731186081 + "block_time": 1731254888 } ], "next_cursor": 676, @@ -10521,13 +10599,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "9ac045ba985ca6bf8f9068eddedc7c1ff9e23b7f094274125a2e77b815b17ccb", + "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", "block_index": 230, - "block_time": 1731186081 + "block_time": 1731254888 } ], "next_cursor": 881, @@ -10540,11 +10618,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305" + "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71" }, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "block_time": 1731185822 + "block_time": 1731254669 } ], "next_cursor": null, @@ -10556,13 +10634,13 @@ "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", + "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", "status": "expired" }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 } ], "next_cursor": 670, @@ -10576,18 +10654,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "order_match_id": "fbb5938f99cefd6eb0db6bcc8568b1240848a2fbd15268b3e0ec8fe0e41fa4b7_d78110db56dd138fb95af7fcb4228ca37208000717b53ffe7c2c8645c2b30305", - "source": "bcrt1q68tvh9tlwr2rnen6h8q0wh99fexq2fgcza7yut", + "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", "status": "valid", - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "tx_index": 57, - "block_time": 1731185822, + "block_time": 1731254669, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "9386e3ffa32608ae0dfdbf6f7a12991405990108708b5d50e24906cdba618be1", + "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", "block_index": 182, - "block_time": 1731185822 + "block_time": 1731254669 } ], "next_cursor": null, @@ -10600,16 +10678,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "d1c9a87ea9f18e6b7e369d41ac77cec28e8b8467038c59a22efa2e335cd48fee", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": "valid", - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "tx_index": 63, - "block_time": 1731185845 + "block_time": 1731254702 }, - "tx_hash": "51744403ecf985d8dfbeeb06f0078641bd3c783d34d54e8d4547c05d066236c5", + "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", "block_index": 188, - "block_time": 1731185845 + "block_time": 1731254702 } ], "next_cursor": null, @@ -10622,13 +10700,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "block_time": 1731185989 + "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_time": 1731254816 }, - "tx_hash": "52479a53ecbc1805b1a5d650c2d80e0c38155eef1329572610eac62b579a5354", + "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", "block_index": 211, - "block_time": 1731185989 + "block_time": 1731254816 } ], "next_cursor": 690, @@ -10641,14 +10719,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "feb6a56129fe73430da2f73b18ce40845a255a6982793209fa7a8b290eb34254_96f2541e329cc9d7d9aaec212688bc144de352b30ef1ae4abf7fe997f6396ca9", - "tx0_address": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "tx1_address": "bcrt1qfqrhcxq43g5rqfa8fupzkmxexuv66fdlqs4een", - "block_time": 1731186064 + "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "block_time": 1731254870 }, - "tx_hash": "db6aa0e01c1b094133d3ada703760ce912c396b21735d4825156d49fa344645b", + "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", "block_index": 225, - "block_time": 1731186064 + "block_time": 1731254870 } ], "next_cursor": 673, @@ -10667,17 +10745,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "satoshirate": 1, - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "status": 0, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "tx_index": 68, - "block_time": 1731185882, + "block_time": 1731254722, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", + "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", "divisible": true, "locked": false }, @@ -10686,9 +10764,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "78fe35910c1724c1fbe11431516ae6638e9df035e0796316ccf1dd388ea37a24", + "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", "block_index": 193, - "block_time": 1731185882 + "block_time": 1731254722 } ], "next_cursor": 254, @@ -10703,9 +10781,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": 0, - "tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", + "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10715,9 +10793,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 581, @@ -10731,13 +10809,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mvho1eFZ6YNYEs2SaFqNFNjfdRbu4zWNjv", + "destination": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", "dispense_quantity": 10, - "dispenser_tx_hash": "f427cfb31409653d5eeb271abbd310fcc618aee24a0a2a2166fddaebaac8c806", - "source": "bcrt1q0sh07vn3dysk5gw8cmgj3n62nqwsa7qg57tr3l", - "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", + "dispenser_tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", + "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", "tx_index": 31, - "block_time": 1731185614, + "block_time": 1731254489, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10747,9 +10825,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "ff20fd37b915b64ae372f452256b7483dc2df0090aa0614a41c854416830d2ba", + "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", "block_index": 135, - "block_time": 1731185614 + "block_time": 1731254489 } ], "next_cursor": null, @@ -10764,14 +10842,14 @@ "asset": "XCP", "block_index": 232, "btc_amount": 1000, - "destination": "bcrt1qvk9ecfy8wckyycx0rluqrfjnrstqkry5xnx4md", + "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2505cc58d4414348d3ea899db5485d58307c1c75b8c1aefe354a90a3dbbc55bd", - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10782,9 +10860,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 582, @@ -10799,19 +10877,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "tx_index": 25, "value": 66600.0, - "block_time": 1731185592, + "block_time": 1731254457, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "48aa8d2cf2dfb5d0df9c2bcb3bacffde2e63b9f2b140ffd1b326b2f5a87c0460", + "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", "block_index": 129, - "block_time": 1731185592 + "block_time": 1731254457 } ], "next_cursor": 195, @@ -10842,12 +10920,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "start_block": 0, "status": "open", - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "tx_index": 104, - "block_time": 1731186084, + "block_time": 1731254901, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10855,9 +10933,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "5d0ef0eee8fecffe0547f11fbcf049958898cdb20ded9181384cd54539fe9011", + "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", "block_index": 231, - "block_time": 1731186084 + "block_time": 1731254901 } ], "next_cursor": 859, @@ -10870,11 +10948,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "875e8c6528cb3408643b82795af56b425936fd1390d0044f6ad0fe373e693350" + "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309" }, "tx_hash": null, "block_index": 228, - "block_time": 1731186075 + "block_time": 1731254880 } ], "next_cursor": 854, @@ -10890,17 +10968,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "9b036540a3bc54226e14d964ef1b6879463b838719fcba4f150d589616d1e432", + "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", "paid_quantity": 100000000, - "source": "bcrt1qnxf7jra4nc0w6ehgm62vtz3650jfg67gmyucwq", + "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", "status": "valid", - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "tx_index": 97, - "block_time": 1731186048, + "block_time": 1731254855, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", "divisible": true, "locked": true }, @@ -10908,9 +10986,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "10d1a9ff717696cc1938d514d9e9dd64251be1fb50e798d3124093ef08cd1265", + "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", "block_index": 221, - "block_time": 1731186048 + "block_time": 1731254855 } ], "next_cursor": 801, @@ -10924,28 +11002,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4:0", + "destination": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "status": "valid", - "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", "tx_index": 75, - "block_time": 1731185922, + "block_time": 1731254752, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "70a9a86f33cdfeb232a8e900bb169375ecf78973a61bac01ac6612be5caa6ec4", + "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", "block_index": 199, - "block_time": 1731185922 + "block_time": 1731254752 } ], "next_cursor": 598, @@ -10959,28 +11037,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "82f7606f9c431d1baa013271caddcf151b1e273357d4df7bd454f771ffd351e9:0", + "source": "4a8a1927a65a596d764c467182f8ed57e7c72df15b5ad2e32aee41fe0def907f:0", "status": "valid", - "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", "tx_index": 74, - "block_time": 1731185919, + "block_time": 1731254747, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qr4gf37ltmlx592valvh65sj56fk770xg3zlhhx", + "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2a2324710f5f5390aafab635074f0e52e9b731defa79ffb0d4594f0e5a20663d", + "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", "block_index": 198, - "block_time": 1731185919 + "block_time": 1731254747 } ], "next_cursor": 293, @@ -10994,14 +11072,14 @@ "params": { "asset": "XCP", "block_index": 232, - "destination": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4:0", + "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", "msg_index": 1, "quantity": 2000000000, - "source": "70f0d10d05218c191f1318a7af7f729273a8d24600601539b1d8290591861ec1:1", + "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", "status": "valid", - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "tx_index": 105, - "block_time": 1731186098, + "block_time": 1731254916, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11011,9 +11089,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "15d0962f882edd62f93b7650d0e99309185846dc66bda48d99e8d144673501a4", + "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", "block_index": 232, - "block_time": 1731186098 + "block_time": 1731254916 } ], "next_cursor": 899, @@ -11028,17 +11106,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qzm9vaj5jq2g8umaxjfefedmhnhpyu5wy6gh6n3", + "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", "status": "valid", - "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", + "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", "tx_index": 9, - "block_time": 1731185512, + "block_time": 1731254380, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "36c9f09588d2d471ed83dca98a55fd43b401d7ced175ae162c18284bf19175c9", + "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", "block_index": 112, - "block_time": 1731185512 + "block_time": 1731254380 } ], "next_cursor": 50, diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 20b11a2b0a..50d15b30e7 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -33,6 +33,7 @@ When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminte - Rust fetcher "reporter" worker now takes `rollback_height` into account in its block height ordering check. - Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified and `asset_parent` is not specified. - Fix `disable_utxo_locks` parameter in compose API +- Fix `gas.get_transaction_count_for_last_period()` ## Codebase From 51379c0e8c7665bb68f1713e4d272784dcdfeb73 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 19:32:38 +0000 Subject: [PATCH 116/138] cleaning --- counterparty-core/counterpartycore/protocol_changes.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index b8befe3477..5743bae7c5 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -670,12 +670,5 @@ "minimum_version_revision": 2, "block_index": 870000, "testnet_block_index": 3195137 - }, - "new_gas_system": { - "minimum_version_major": 10, - "minimum_version_minor": 6, - "minimum_version_revision": 2, - "block_index": 870000, - "testnet_block_index": 3195137 } } From 4ea08a358bc3fa5a4e428254eb12ccc067b8facb Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 20:46:39 +0000 Subject: [PATCH 117/138] Fix ledger.get_issuances() function --- apiary.apib | 4542 ++++++++--------- .../counterpartycore/lib/api/compose.py | 10 +- .../counterpartycore/lib/database.py | 7 +- .../counterpartycore/lib/ledger.py | 17 +- .../counterpartycore/lib/messages/issuance.py | 23 +- .../counterpartycore/lib/messages/order.py | 4 +- .../counterpartycore/lib/messages/sweep.py | 6 +- .../counterpartycore/protocol_changes.json | 11 +- .../test/regtest/apidoc/apicache.json | 4116 +++++++-------- .../scenarios/scenario_21_fairminter.py | 60 + release-notes/release-notes-v10.6.2.md | 4 +- 11 files changed, 4449 insertions(+), 4351 deletions(-) diff --git a/apiary.apib b/apiary.apib index 3b70098bb7..1ac194c1c2 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-10 16:08:53.459688. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-10 20:45:43.138380. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -178,22 +178,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 894, + "event_index": 900, "event": "NEW_BLOCK", "params": { - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_index": 232, - "block_time": 1731254916, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_index": 233, + "block_time": 1731271525, "difficulty": 545259519, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23" + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc" }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 886, - "result_count": 132 + "next_cursor": 892, + "result_count": 133 } ``` @@ -203,20 +203,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 895, + "event_index": 901, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_index": 232, - "block_time": 1731254916, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_index": 233, + "block_time": 1731271525, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "fee": 0, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,13 +226,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 887, - "result_count": 106 + "next_cursor": 893, + "result_count": 107 } ``` @@ -242,21 +242,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 896, + "event_index": 902, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "out_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": 579, @@ -270,23 +270,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 893, - "result_count": 132 + "next_cursor": 899, + "result_count": 133 } ``` @@ -296,20 +296,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 892, - "result_count": 91 + "next_cursor": 898, + "result_count": 92 } ``` @@ -321,19 +321,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 900, + "event_index": 906, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 232, - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "block_index": 233, + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -343,13 +343,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 897, - "result_count": 89 + "next_cursor": 903, + "result_count": 90 } ``` @@ -359,19 +359,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,12 +381,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 901, + "next_cursor": 907, "result_count": 110 } ``` @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "quantity": 1000, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": "valid", - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "tx_index": 77, - "block_time": 1731254759, + "block_time": 1731271351, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_time": 1731254759 + "block_time": 1731271351 } ], "next_cursor": 515, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "status": "valid", - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "tx_index": 81, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_time": 1731254774 + "block_time": 1731271367 } ], "next_cursor": 697, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "status": "valid", - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "tx_index": 65, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "block_time": 1731254711 + "block_time": 1731271274 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": "valid", - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "tx_index": 42, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "block_time": 1731254539 + "block_time": 1731271087 } ], "next_cursor": null, @@ -583,18 +583,18 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 889, + "event_index": 895, "event": "ASSET_CREATION", "params": { "asset_id": "117132633401", "asset_longname": null, "asset_name": "OPENFAIR", - "block_index": 231, - "block_time": 1731254901 + "block_index": 232, + "block_time": 1731271517 }, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_time": 1731254901 + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_time": 1731271517 } ], "next_cursor": 860, @@ -608,13 +608,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 890, + "event_index": 896, "event": "ASSET_ISSUANCE", "params": { "asset": "OPENFAIR", "asset_events": "open_fairminter", "asset_longname": "", - "block_index": 231, + "block_index": 232, "call_date": 0, "call_price": 0, "callable": false, @@ -622,26 +622,26 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", "transfer": false, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_time": 1731254901, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_time": 1731254901 + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_time": 1731271517 } ], - "next_cursor": 869, - "result_count": 50 + "next_cursor": 875, + "result_count": 51 } ``` @@ -657,16 +657,16 @@ Here is a list of events classified by theme and for each an example response: "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "tx_index": 101, - "block_time": 1731254880, + "block_time": 1731271493, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "description": "My super description", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false }, @@ -674,7 +674,7 @@ Here is a list of events classified by theme and for each an example response: }, "tx_hash": null, "block_index": 228, - "block_time": 1731254880 + "block_time": 1731271493 } ], "next_cursor": 817, @@ -690,12 +690,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 880, + "event_index": 886, "event": "OPEN_ORDER", "params": { - "block_index": 230, + "block_index": 231, "expiration": 21, - "expire_index": 251, + "expire_index": 252, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "open", - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx_index": 103, - "block_time": 1731254888, + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx_index": 104, + "block_time": 1731271504, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -721,7 +721,7 @@ Here is a list of events classified by theme and for each an example response: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -734,12 +734,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": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_time": 1731254888 + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_time": 1731271504 } ], - "next_cursor": 875, + "next_cursor": 881, "result_count": 9 } ``` @@ -750,33 +750,33 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 883, + "event_index": 889, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 230, + "block_index": 231, "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "match_expire_index": 250, + "id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "tx0_block_index": 229, + "tx0_address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx0_index": 102, - "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx1_block_index": 230, + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx0_index": 103, + "tx1_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx1_index": 103, - "block_time": 1731254888, + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx1_index": 104, + "block_time": 1731271504, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_time": 1731254888 + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_time": 1731271504 } ], "next_cursor": 676, @@ -807,7 +807,7 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 882, + "event_index": 888, "event": "ORDER_UPDATE", "params": { "fee_provided_remaining": 10000, @@ -815,16 +815,16 @@ Here is a list of events classified by theme and for each an example response: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_time": 1731254888 + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_time": 1731271504 } ], - "next_cursor": 881, + "next_cursor": 887, "result_count": 19 } ``` @@ -839,11 +839,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71" + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad" }, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "block_time": 1731254669 + "block_time": 1731271224 } ], "next_cursor": null, @@ -860,13 +860,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "order_match_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "status": "expired" }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 } ], "next_cursor": 670, @@ -885,18 +885,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "order_match_id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "status": "valid", - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "tx_index": 57, - "block_time": 1731254669, + "block_time": 1731271224, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "block_time": 1731254669 + "block_time": 1731271224 } ], "next_cursor": null, @@ -914,16 +914,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "offer_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": "valid", - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "tx_index": 63, - "block_time": 1731254702 + "block_time": 1731271257 }, - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "block_index": 188, - "block_time": 1731254702 + "block_time": 1731271257 } ], "next_cursor": null, @@ -941,13 +941,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "block_time": 1731254816 + "order_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "block_time": 1731271400 }, - "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", + "tx_hash": "38376655951f2f17adb5fd7cb1f6d4f4ac80c6c8d64e7b2e3dc45cd112ffc86d", "block_index": 211, - "block_time": 1731254816 + "block_time": 1731271400 } ], "next_cursor": 690, @@ -965,14 +965,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "block_time": 1731254870 + "order_match_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "block_time": 1731271482 }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 } ], "next_cursor": 673, @@ -998,17 +998,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "satoshirate": 1, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": 0, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "tx_index": 68, - "block_time": 1731254722, + "block_time": 1731271295, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1017,9 +1017,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": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 193, - "block_time": 1731254722 + "block_time": 1731271295 } ], "next_cursor": 254, @@ -1033,15 +1033,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1051,9 +1051,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": 581, @@ -1072,13 +1072,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", + "destination": "mpZ4yvyqMAQpbfAieAGK3FoTZW2incZad3", "dispense_quantity": 10, - "dispenser_tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", + "dispenser_tx_hash": "4541ad8106750f9e71a0a6e7bb2e09f31dc36422db1d6f325992454e6cbe1f27", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "tx_hash": "b012564b661087dd3d0706f0d1acd67a40f00ad8e2ea840814c6b3df2b39519a", "tx_index": 31, - "block_time": 1731254489, + "block_time": 1731271043, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1088,9 +1088,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", + "tx_hash": "b012564b661087dd3d0706f0d1acd67a40f00ad8e2ea840814c6b3df2b39519a", "block_index": 135, - "block_time": 1731254489 + "block_time": 1731271043 } ], "next_cursor": null, @@ -1104,20 +1104,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1128,9 +1128,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": 582, @@ -1152,19 +1152,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "tx_index": 25, "value": 66600.0, - "block_time": 1731254457, + "block_time": 1731271021, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "block_time": 1731254457 + "block_time": 1731271021 } ], "next_cursor": 195, @@ -1180,13 +1180,13 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 888, + "event_index": 894, "event": "NEW_FAIRMINTER", "params": { "asset": "OPENFAIR", "asset_longname": "", "asset_parent": "", - "block_index": 231, + "block_index": 232, "burn_payment": false, "description": "", "divisible": true, @@ -1202,12 +1202,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "start_block": 0, "status": "open", - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_time": 1731254901, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_time": 1731271517, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1215,9 +1215,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_time": 1731254901 + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_time": 1731271517 } ], "next_cursor": 859, @@ -1235,11 +1235,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309" + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9" }, "tx_hash": null, "block_index": 228, - "block_time": 1731254880 + "block_time": 1731271493 } ], "next_cursor": 854, @@ -1260,17 +1260,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "paid_quantity": 100000000, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -1278,9 +1278,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "block_index": 221, - "block_time": 1731254855 + "block_time": 1731271456 } ], "next_cursor": 801, @@ -1301,28 +1301,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af:0", + "destination": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "status": "valid", - "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "tx_hash": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", "tx_index": 75, - "block_time": 1731254752, + "block_time": 1731271333, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "tx_hash": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", "block_index": 199, - "block_time": 1731254752 + "block_time": 1731271333 } ], "next_cursor": 598, @@ -1341,28 +1341,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "4a8a1927a65a596d764c467182f8ed57e7c72df15b5ad2e32aee41fe0def907f:0", + "source": "9f6bef112b77f21303dc838462bf8972219dab16729ddf116cba62815df8cc74:0", "status": "valid", - "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "tx_hash": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", "tx_index": 74, - "block_time": 1731254747, + "block_time": 1731271329, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "tx_hash": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", "block_index": 198, - "block_time": 1731254747 + "block_time": 1731271329 } ], "next_cursor": 293, @@ -1376,19 +1376,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 902, + "event_index": 908, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 232, - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "block_index": 233, + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "msg_index": 1, "quantity": 2000000000, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", "status": "valid", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1398,12 +1398,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 899, + "next_cursor": 905, "result_count": 11 } ``` @@ -1422,17 +1422,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", - "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", + "tx_hash": "92dedcf8e195e2fceed307c34f2e5c36970740ad85fddd8aafb06a1f95e766fb", "tx_index": 9, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", + "tx_hash": "92dedcf8e195e2fceed307c34f2e5c36970740ad85fddd8aafb06a1f95e766fb", "block_index": 112, - "block_time": 1731254380 + "block_time": 1731270941 } ], "next_cursor": 50, @@ -1471,7 +1471,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `232` (str, optional) - The index of the most recent block to return + + cursor: `233` (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` @@ -1488,68 +1488,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", "difficulty": 545259519, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, "confirmed": true }, { - "block_index": 231, - "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", - "block_time": 1731254901, - "previous_block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", + "block_index": 232, + "block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", + "block_time": 1731271517, + "previous_block_hash": "538283ef7192084d4a8bceeff14979b8629f7e182f8d15d7957141165b72df4e", "difficulty": 545259519, - "ledger_hash": "180850ce0b31e4fd127682e0e1afded59ea1e11398637439bc37ca50f04b5191", - "txlist_hash": "3ec05057b4ab4a5f152cca04fcfe30123787f9510f1a0eea7d72553adac94dc0", - "messages_hash": "d4c83f158437ba9f21c62daac94d303681f811523d2d54a7defc454d6c38b770", + "ledger_hash": "2fba4d621ea089de66062c4314450044de076db6e58cb20e3cd26cf7b01991f6", + "txlist_hash": "7a9d01fa9670f33ef60c643b6235a55b07af98a85b5a626713e69dc12492dc7e", + "messages_hash": "2f882c062ef7e00d0e8cbba5d5c5b6c9a417a976846d794c47a011c32fc3f242", "transaction_count": 1, "confirmed": true }, { - "block_index": 230, - "block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", - "block_time": 1731254888, - "previous_block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", + "block_index": 231, + "block_hash": "538283ef7192084d4a8bceeff14979b8629f7e182f8d15d7957141165b72df4e", + "block_time": 1731271504, + "previous_block_hash": "64da2574b01e59c7586eeb89b106141a063a85f013b5392d2fe4dd58f644df3b", "difficulty": 545259519, - "ledger_hash": "0222e83fa9903b5404178a0f4ee1bbd92e97efab2939359a81cf0b834f10034c", - "txlist_hash": "318d085bbb981ac740abeaf46025a94ebded272068646111c57e73f9d3fca44d", - "messages_hash": "d08241c8f2e3d34a4a707168cd53052fed26353d1a0887817db4947737416b57", + "ledger_hash": "a264e9fb02554219399ceb897d3184bf06fa4ddc9c318f6768a59b000339bea5", + "txlist_hash": "88013a9036b1147734dc4a51fa5b3e0d1dcc38c755e0beb5098f17c0f2c1e84b", + "messages_hash": "cf282b58b8ca94ad1cd81d022cfc67c5fdd26e4d0459de50748b0a9a75757e0d", "transaction_count": 1, "confirmed": true }, { - "block_index": 229, - "block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", - "block_time": 1731254884, - "previous_block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", + "block_index": 230, + "block_hash": "64da2574b01e59c7586eeb89b106141a063a85f013b5392d2fe4dd58f644df3b", + "block_time": 1731271499, + "previous_block_hash": "674ff53694e4f82ee6600f905ab945c951ccdc21dab59014a8a07bfd9f3c56e6", "difficulty": 545259519, - "ledger_hash": "9f9ba7dcd29310997d22a3c8446a8e6f706c1d4f1593255d015735667813225d", - "txlist_hash": "e93494f6fba71e024561c3e6fc71302abb98aa6dd990d700e091d1e231594ead", - "messages_hash": "dc0196cb5ee35636618c782a58ba3dd86514cf921c24f0f5022b1db280fb5d99", + "ledger_hash": "43d79b782b895b2ffe72f1497202a2fd827e63fa5f1fa8924e27650609f05504", + "txlist_hash": "bbaff2629915fc3a621fd2e070d9ee2449ee517172da014e19ae45d0d39ed041", + "messages_hash": "2df42dae5b5e379854425aba5f3c5af3f408bc8d5a44f50c82c5810a35e8f3ae", "transaction_count": 1, "confirmed": true }, { - "block_index": 228, - "block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", - "block_time": 1731254880, - "previous_block_hash": "66883236cb1a0b159e370a27d3bbc346d6b7c19a0240e511006224cf04a073eb", + "block_index": 229, + "block_hash": "674ff53694e4f82ee6600f905ab945c951ccdc21dab59014a8a07bfd9f3c56e6", + "block_time": 1731271496, + "previous_block_hash": "2d62a566f978fbb4512f702cf811f22d3fc9a0710848614b4871cd93dfb0f1b4", "difficulty": 545259519, - "ledger_hash": "7d839fed1f121f13e251282c6c447c32a94fd4ccb27318af957d622bb6f7f762", - "txlist_hash": "6da25e260b5c39bfeabb4f28cc61cf91d6535b6be2c366e460bd6bf611a06513", - "messages_hash": "a8d1c8354711b9f6064172c3f132ec6084b05fc1f45a23f7fdab9bc139cdff9d", - "transaction_count": 0, + "ledger_hash": "59025e76c386e0c29c9a1bb2a9060f6af755903aa5c8683d8294fc276e7533b6", + "txlist_hash": "fb237efe34b1b25ed0a32a8f383754e37f00af9c23a72dc1af52e7c62d32256b", + "messages_hash": "3d8bfb85af1033891453b96f3594e67fbaf28a2c84119a10a63875b4926557df", + "transaction_count": 1, "confirmed": true } ], - "next_cursor": 227, - "result_count": 132 + "next_cursor": 228, + "result_count": 133 } ``` @@ -1568,7 +1568,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (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. @@ -1579,14 +1579,14 @@ Return the information of a block ``` { "result": { - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", "difficulty": 545259519, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, "confirmed": true } @@ -1598,7 +1598,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5` (str, required) - The index of the block to return + + block_hash: `063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4` (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. @@ -1609,14 +1609,14 @@ Return the information of a block ``` { "result": { - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", "difficulty": 545259519, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, "confirmed": true } @@ -1628,8 +1628,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return - + cursor: `105` (str, optional) - The last transaction index to return + + block_index: `233` (int, required) - The index of the block to return + + cursor: `106` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1646,18 +1646,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1679,10 +1679,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1699,43 +1699,43 @@ Returns the events of a block { "result": [ { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null }, { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1746,18 +1746,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1767,22 +1767,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1792,10 +1792,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" } ], - "next_cursor": 902, + "next_cursor": 908, "result_count": 14 } ``` @@ -1805,7 +1805,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (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 @@ -1853,7 +1853,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (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` @@ -1872,19 +1872,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1894,22 +1894,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1919,32 +1919,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" } ], "next_cursor": null, @@ -1957,7 +1957,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2006,17 +2006,17 @@ Returns the credits of a block { "result": [ { - "block_index": 232, - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "block_index": 233, + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2027,17 +2027,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 232, + "block_index": 233, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2048,21 +2048,21 @@ Returns the credits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 232, + "block_index": 233, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2079,7 +2079,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2117,17 +2117,17 @@ Returns the debits of a block { "result": [ { - "block_index": 232, + "block_index": 233, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2138,21 +2138,21 @@ Returns the debits of a block "quantity_normalized": "20.00000000" }, { - "block_index": 232, + "block_index": 233, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2188,10 +2188,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "object_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "block_index": 211, "confirmed": true, - "block_time": 1731254816 + "block_time": 1731271400 } ], "next_cursor": null, @@ -2223,13 +2223,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "offer_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "status": "valid", "confirmed": true, - "block_time": 1731254702 + "block_time": 1731271257 } ], "next_cursor": null, @@ -2261,19 +2261,19 @@ Returns the destructions of a block "result": [ { "tx_index": 101, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "block_index": 228, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731254880, + "block_time": 1731271493, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "description": "My super description", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false }, @@ -2290,7 +2290,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `231` (int, required) - The index of the block to return + + block_index: `232` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2321,15 +2321,15 @@ Returns the issuances of a block { "result": [ { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", "msg_index": 0, - "block_index": 231, + "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "transfer": false, "callable": false, "call_date": 0, @@ -2344,7 +2344,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2359,7 +2359,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (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 @@ -2377,11 +2377,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2389,7 +2389,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2401,11 +2401,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2413,11 +2413,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2435,7 +2435,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `232` (int, required) - The index of the block to return + + block_index: `233` (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 @@ -2453,29 +2453,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2490,7 +2490,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2531,16 +2531,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -2554,7 +2554,7 @@ Returns the sweeps of a block Returns the fairminters by its block index + Parameters - + block_index: `231` (int, required) - The block index of the fairminter to return + + block_index: `232` (int, required) - The block index of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -2579,10 +2579,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_index": 231, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_index": 232, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -2607,7 +2607,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2644,22 +2644,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -2700,17 +2700,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "block_hash": "7ca9d867bdd74bbc5c21fff6522f31ffe7de8ba54ac404f356a9e65b2bb1ab79", - "block_time": 1731254457, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_hash": "1e818ad4a7cc8197034ce463d7475b3ecfccab589e1e906fe013851a6f7ffd31", + "block_time": 1731271021, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f:1 2 ", + "utxos_info": " 5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2735,25 +2735,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "block_hash": "5d124113e78e3719c4f045167457d6086ae58ba673a7c5f682092c42e71d03ba", - "block_time": 1731254669, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "332b1b75b825be062ec90444795eb9c3da31426ef7cf729a73e2112fc75df1fa", + "block_time": 1731271224, + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "btc_amount": 2000, "fee": 10000, - "data": "0bde99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd04234b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "data": "0b35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "supported": true, - "utxos_info": " baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d:0 3 1", + "utxos_info": " dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "order_match_id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "status": "valid" } }, @@ -2768,23 +2768,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "block_index": 188, - "block_hash": "6405dbf405d6db9c5a2e64b1dd015437e543724c9c34100f0772e2a41c93b02d", - "block_time": 1731254702, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "270df8deb747366d9701968c6d35742adc946363a2a4dc1548703f7909632777", + "block_time": 1731271257, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "data": "46877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "supported": true, - "utxos_info": " 867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1:1 2 ", + "utxos_info": " db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "offer_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "status": "valid" } }, @@ -2807,17 +2807,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 193, - "block_hash": "7665d200076034c09c4354a6d3c396d6c7dae5aae7112b0e1994697cd30ff4c3", - "block_time": 1731254722, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "5f6cc6436eb47bafd8cf778490dcf45a52a11275fd91dd508eb36d7188ef32f3", + "block_time": 1731271295, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730:1 2 ", + "utxos_info": " bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2834,7 +2834,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2852,18 +2852,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2883,17 +2883,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "block_hash": "7cd1025f62923efb32c1aa4035f2fdbd10e13fe2b9ea36b1a9696b1efd05d311", - "block_time": 1731254539, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "12bd06fe9208ba1c4f372421c0345b914e11076206cf055fd1f3810df2138682", + "block_time": 1731271087, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297:1 2 ", + "utxos_info": " 05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2906,7 +2906,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2930,18 +2930,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", - "block_time": 1731254901, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", + "block_time": 1731271517, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e:1 2 ", + "utxos_info": " 9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -2982,18 +2982,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 103, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", - "block_time": 1731254888, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 104, + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_hash": "538283ef7192084d4a8bceeff14979b8629f7e182f8d15d7957141165b72df4e", + "block_time": 1731271504, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31:1 2 ", + "utxos_info": " af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3016,7 +3016,7 @@ Here is sample API output for each of these transactions: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -3036,17 +3036,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", - "block_time": 1731254759, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "55551e392bd68d3f668a59c30b82d78ea2fe836bc931e35a9041caac13c3812f", + "block_time": 1731271351, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "02000000178d82231300000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "supported": true, - "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", + "utxos_info": " 21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3054,12 +3054,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3077,17 +3077,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_hash": "7aafa1c8c0631b0be1c2ac6752e383f8738db022352447eff9b7be7125a347e4", - "block_time": 1731254774, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "block_hash": "3b01bf4f31970d0e8cc12de39b9e723f73bc5ed723ef4e028d34bc03702aa205", + "block_time": 1731271367, + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466:0 4 ", + "utxos_info": " b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3095,14 +3095,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3110,7 +3110,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3136,23 +3136,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "block_hash": "2aeea7bc54a9b1caa7d0eb427eb2654ad16013ea97519542491f6392e131ef6b", - "block_time": 1731254711, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "block_hash": "6f129b1c7104e531021b96b60071b1d90ca21e3e8fd3164559e7d331715d44bc", + "block_time": 1731271274, + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480a5550669d96f10679dc14b28f8b86abf99f322c9017377656570206d7920617373657473", + "data": "0480eee171e19e2f9d4872e38379b1b07a43ec55dd2a017377656570206d7920617373657473", "supported": true, - "utxos_info": " 1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a:1 2 ", + "utxos_info": " 9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "memo": "sweep my assets" } @@ -3168,17 +3168,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "tx_hash": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", "block_index": 199, - "block_hash": "7c6061013d2cebdff5c39aa2dcd09574713a0bed9fa4e57c2ff7d1bac22943c6", - "block_time": 1731254752, - "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "block_hash": "1cf7d405bcf4d4fc406c8d5cd2948f05f0eaef959f0695f38f879ce59cddffd4", + "block_time": 1731271333, + "source": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "btc_amount": 546, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af:0 3 1", + "utxos_info": " 0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "attach", @@ -3190,7 +3190,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -3208,17 +3208,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "tx_hash": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", "block_index": 198, - "block_hash": "353209bc1a1c709cb8adaa864c0040d1294715f2c065fb8644a5b155df9146ca", - "block_time": 1731254747, - "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "block_hash": "2abb5c2b0f5a4bca2be1119c9d3fe30a46c23f03e06aa1d8627bf334e947e442", + "block_time": 1731271329, + "source": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "4a8a1927a65a596d764c467182f8ed57e7c72df15b5ad2e32aee41fe0def907f:0 e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822:1 2 ", + "utxos_info": "9f6bef112b77f21303dc838462bf8972219dab16729ddf116cba62815df8cc74:0 8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3237,7 +3237,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `105` (str, optional) - The index of the most recent transactions to return + + cursor: `106` (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` @@ -3254,18 +3254,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3277,18 +3277,18 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", - "block_time": 1731254901, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", + "block_time": 1731271517, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e:1 2 ", + "utxos_info": " 9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -3322,8 +3322,8 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 103, - "result_count": 106 + "next_cursor": 104, + "result_count": 107 } ``` @@ -3332,7 +3332,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010606991a9ab0278631c053df141fb4533394db53965f8ee43a0d7c6bb651cfd6000000000000ffffffffc44c85a5421a4defe39d56ac66af08173a836cc613238415b77215ed8d1d331d0000000000ffffffffaeaa8b96057a5383a7277fabbd68e1a0ac3aff4e5b698f82287c7118705866860000000000ffffffffbfe4c05f1bd874a0e89d006d84ffe98293a63b1a64925ee199c67b460a03466e0000000000ffffffffb5d0e877b2918cfc3f6bc168f10e1e147b969c122db50d301338bec7bf1c017a0000000000ffffffff8b6026dca74b1abc7b94a9f587188e8e882d0ba176a72ef5e16d2a5759bd16530000000000ffffffff04e80300000000000069512102ecddb20e5c8640d4817e9a3782a3a332d15d0fda3ab771212beba56e64f18ea22102cefd60911961ab06708a88ea13ede051724a0b3097bbc179c1c7aa16d963b57821025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53aee80300000000000069512102ecddb20e5c8640d4811a07f5492510f8a4ce2f75521a29a20d3beb7ff27bb94521038205e033f168340d2faf59579c3111724ccdf55732403ff96ed2ac7f000ca5a221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53aee80300000000000069512102c2ddb20e5c8640d4817d9a74020de840ce71b6ae70d3a1d6655ecb129716d65321020205e03837a9258487af59579c3111721ecdf55732403ff96492ac7f000ca54221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae387923fc060000001600147dfc55f48da0262381a8abd3c21e984b925dce6802473044022008303650bba19119e84d8ae1d93425364969ac01ba81dbbd601b7bc6f81ea207022032c65a7361de568ae4a3989215a23a2dd2e123ff8cd2b89611ed451a15fde04e0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a024730440220632c5f0c97c8509288c2b9a94abf5ba2771223a4e9bac6e6aca11e57e1f311e202202205465611af3dd6cb4a73f47631db3704819b654758b3112abe0ede1baeddf60121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207ddc605727d370813844994471fa50cd27deb4c22ec4c89af22029e7e7760fa80220411fc6d125f4fe78a8f1633dbb9e4db905f8ccead0a8cc10358c20476d191aa90121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207f35e425e4408e3af324628a27fa75fe4b46d9eded31a4df467a8308896d5c8702205917c50b1ae17fd1c31e8234c92326d6b17911aa09cddb11c6c2e9c9d26cc35a0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207250497805c66f8abf9bbfe740ba66013527d5329d21b10c78ca65eb66973c06022062be84a7be99f871adea78e1e0420f48de41e89270d8c1cbd90b002ab11c82dc0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a0247304402207dcb62f6d0eedddf2468cf88570476f694309528ac3b093eecf60f0a26cc159a02207ccb59568361d4f9d1af252cd27bf26cde9b0671f9b397670ea75f526e0b310c0121025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106249d2087e38d115e640482ee9150dca0cd19f3ac54579c433f7c55848f3e66c60000000000ffffffffc8aa90c7ebf0425dcad6a735affcd9b10322b175cac5af1ab80ddeb63f28c33c0000000000ffffffffb2ee965c73342fc45ad120655a615d13a3a6c04ff3558adf560719c5542b6a910000000000ffffffff4b350f6f0f4ac3f9f2c037554143e13ea31f4a5e83d4fb707a80b4d7a5155ddb0000000000ffffffffe8445674f80854458388741f892c714fc93b2a233ba1c4e787b4f71811bd5dab0000000000ffffffffbd184f203eed07a512e87457a2ea75082c48c080cd0e611d3f675e719aa9a19a0000000000ffffffff04e80300000000000069512103384f004d2eeae033788f9bb130036f11086142b1fae570a6ca22508f0a4304e621029227cd8fd8526a61cad82f0285d09dc9b32dc52e808b34aa6d8b14a2bf7762812103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353aee80300000000000069512103384f004d2eeae03378c4e95133d83b51ff83fc5ed6e85e7365628274cf237cc6210216814d5cdd7df0acf3e750d24f77d354e333f026a8fd4147e6070a70a158ffee2103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353aee80300000000000069512103194f004d2eeae033788c9bb2b0a10ae185c0100b0bc24a580e4c0a6dcfe7a8ef210216814d5cdd7df086e652c567f3bdd354e333f026a8f7c42a836a65432158ff1c2103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae387923fc060000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02473044022012227e00cbfd214b918d5295305e7dcce6fab3b55a68bb6955a35882f591a222022043400981cf0e2d91906441cba25cc9cf7be86161950dac3dacffaa6234830ae2012103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a30247304402205a5d696e7b7c9ccc2e8c077ea244a4d413e599358acf87c1f2c589900b955fe402203f9936d83d735f8fad5257f34a7a850844a126bec51706bd8fa3beae7ee5f8d1012103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a302473044022036f9ca3663558c48c9b996d79e17a8b67947fe94cf52fc72ab4452fa1aadb1df0220514d5acd670b3a386b3ec3be4627781e70d9059914cb3e495db2d4ba7fea398a012103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a302473044022034d2fde2bc8e6c23475c86d764e73abdf53baeda66d0aede642d04648da2f7600220347ffee01c3202cdb427861c8d3ae7535c98db673512e2cef6e8698b253d2270012103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a302473044022008e3c4bf5e79a2509952e74acad4d0969f2e7cd8fb71a117d89a61cd668c198202207092ec6519fe3847033e1abd98c4a355b79b40ead0561ca3d992df74ad63d05c012103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3024730440220713e47f851d469945d38339137ce358af7631508554bdd838736c774ddcca150022043fae0d24f983de9e4b7840bc66dbe0015b784599e4c8b4512874d65b9e1a9df012103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a300000000` (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. @@ -3345,53 +3345,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "06991a9ab0278631c053df141fb4533394db53965f8ee43a0d7c6bb651cfd600", + "hash": "249d2087e38d115e640482ee9150dca0cd19f3ac54579c433f7c55848f3e66c6", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c44c85a5421a4defe39d56ac66af08173a836cc613238415b77215ed8d1d331d", + "hash": "c8aa90c7ebf0425dcad6a735affcd9b10322b175cac5af1ab80ddeb63f28c33c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "aeaa8b96057a5383a7277fabbd68e1a0ac3aff4e5b698f82287c711870586686", + "hash": "b2ee965c73342fc45ad120655a615d13a3a6c04ff3558adf560719c5542b6a91", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bfe4c05f1bd874a0e89d006d84ffe98293a63b1a64925ee199c67b460a03466e", + "hash": "4b350f6f0f4ac3f9f2c037554143e13ea31f4a5e83d4fb707a80b4d7a5155ddb", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "b5d0e877b2918cfc3f6bc168f10e1e147b969c122db50d301338bec7bf1c017a", + "hash": "e8445674f80854458388741f892c714fc93b2a233ba1c4e787b4f71811bd5dab", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "8b6026dca74b1abc7b94a9f587188e8e882d0ba176a72ef5e16d2a5759bd1653", + "hash": "bd184f203eed07a512e87457a2ea75082c48c080cd0e611d3f675e719aa9a19a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3401,38 +3401,38 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "512102ecddb20e5c8640d4817e9a3782a3a332d15d0fda3ab771212beba56e64f18ea22102cefd60911961ab06708a88ea13ede051724a0b3097bbc179c1c7aa16d963b57821025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + "script_pub_key": "512103384f004d2eeae033788f9bb130036f11086142b1fae570a6ca22508f0a4304e621029227cd8fd8526a61cad82f0285d09dc9b32dc52e808b34aa6d8b14a2bf7762812103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae" }, { "value": 1000, - "script_pub_key": "512102ecddb20e5c8640d4811a07f5492510f8a4ce2f75521a29a20d3beb7ff27bb94521038205e033f168340d2faf59579c3111724ccdf55732403ff96ed2ac7f000ca5a221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + "script_pub_key": "512103384f004d2eeae03378c4e95133d83b51ff83fc5ed6e85e7365628274cf237cc6210216814d5cdd7df0acf3e750d24f77d354e333f026a8fd4147e6070a70a158ffee2103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae" }, { "value": 1000, - "script_pub_key": "512102c2ddb20e5c8640d4817d9a74020de840ce71b6ae70d3a1d6655ecb129716d65321020205e03837a9258487af59579c3111721ecdf55732403ff96492ac7f000ca54221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + "script_pub_key": "512103194f004d2eeae033788c9bb2b0a10ae185c0100b0bc24a580e4c0a6dcfe7a8ef210216814d5cdd7df086e652c567f3bdd354e333f026a8f7c42a836a65432158ff1c2103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae" }, { "value": 29999987000, - "script_pub_key": "00147dfc55f48da0262381a8abd3c21e984b925dce68" + "script_pub_key": "00145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d" } ], "vtxinwit": [ - "3044022008303650bba19119e84d8ae1d93425364969ac01ba81dbbd601b7bc6f81ea207022032c65a7361de568ae4a3989215a23a2dd2e123ff8cd2b89611ed451a15fde04e01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "30440220632c5f0c97c8509288c2b9a94abf5ba2771223a4e9bac6e6aca11e57e1f311e202202205465611af3dd6cb4a73f47631db3704819b654758b3112abe0ede1baeddf601", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207ddc605727d370813844994471fa50cd27deb4c22ec4c89af22029e7e7760fa80220411fc6d125f4fe78a8f1633dbb9e4db905f8ccead0a8cc10358c20476d191aa901", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207f35e425e4408e3af324628a27fa75fe4b46d9eded31a4df467a8308896d5c8702205917c50b1ae17fd1c31e8234c92326d6b17911aa09cddb11c6c2e9c9d26cc35a01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207250497805c66f8abf9bbfe740ba66013527d5329d21b10c78ca65eb66973c06022062be84a7be99f871adea78e1e0420f48de41e89270d8c1cbd90b002ab11c82dc01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207dcb62f6d0eedddf2468cf88570476f694309528ac3b093eecf60f0a26cc159a02207ccb59568361d4f9d1af252cd27bf26cde9b0671f9b397670ea75f526e0b310c01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" + "3044022012227e00cbfd214b918d5295305e7dcce6fab3b55a68bb6955a35882f591a222022043400981cf0e2d91906441cba25cc9cf7be86161950dac3dacffaa6234830ae201", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "304402205a5d696e7b7c9ccc2e8c077ea244a4d413e599358acf87c1f2c589900b955fe402203f9936d83d735f8fad5257f34a7a850844a126bec51706bd8fa3beae7ee5f8d101", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "3044022036f9ca3663558c48c9b996d79e17a8b67947fe94cf52fc72ab4452fa1aadb1df0220514d5acd670b3a386b3ec3be4627781e70d9059914cb3e495db2d4ba7fea398a01", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "3044022034d2fde2bc8e6c23475c86d764e73abdf53baeda66d0aede642d04648da2f7600220347ffee01c3202cdb427861c8d3ae7535c98db673512e2cef6e8698b253d227001", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "3044022008e3c4bf5e79a2509952e74acad4d0969f2e7cd8fb71a117d89a61cd668c198202207092ec6519fe3847033e1abd98c4a355b79b40ead0561ca3d992df74ad63d05c01", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "30440220713e47f851d469945d38339137ce358af7631508554bdd838736c774ddcca150022043fae0d24f983de9e4b7840bc66dbe0015b784599e4c8b4512874d65b9e1a9df01", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3" ], "lock_time": 0, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", - "tx_id": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3" + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", + "tx_id": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c" }, "unpacked_data": { "message_type": "mpma_send", @@ -3440,14 +3440,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, - "memo": "the memo", + "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3455,9 +3455,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, - "memo": "the memo", + "memo": "memo1", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -3480,7 +3480,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d` (str, required) - Transaction hash + + tx_hash: `2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803` (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. @@ -3491,18 +3491,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "87da076fec5031c75ca96944f79c5cfce9c91aff9a625b6e86584b11eabc2b25", + "hash": "3503d69dd5bea9efc035f894873896aff1b0779281aac1a4557db7d43df9eb0f", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3512,20 +3512,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e5b2b3a8ce9ef04719a1e5173cde08413a27f1b71fedd6e7add951c68bb503f8fb72233099f2397955b2e882da38b" + "script_pub_key": "6a2eedb1b0dd1c724a21530decfc0a15d56ded35fcbea80894d58b2aab1f4a5150205c8d27f1a8c0e7ec76eeeac277b8" }, { "value": 4949930546, - "script_pub_key": "0014a5550669d96f10679dc14b28f8b86abf99f322c9" + "script_pub_key": "0014eee171e19e2f9d4872e38379b1b07a43ec55dd2a" } ], "vtxinwit": [ - "3044022071914c8262f021a4b2ff134a6804455a224b8eedf98901e6b762e3babe2ba387022002da22c688796de57c5c40aebb8db1088711128cd3a056c142335c6fe4f7082a01", - "03dbfda71e1e6c7861bc1e67e4d8364d7da406d541a6c70a4f073087807d2c4088" + "30440220549a1647850708aaad212e7d90014b61e06ace18e1649a0b81b31991998c707c0220522af885d0c2209e4d690b5c4b815591f4f937962a1c29ad2e06ef54a4fa998a01", + "0399d65cb1b554434fbd6fe34f2e80bdf378cc9266e7b860890956985ec44d7541" ], "lock_time": 0, - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_id": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d" + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_id": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3533,7 +3533,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -3582,7 +3582,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `105` (int, required) - The index of the transaction + + tx_index: `106` (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. @@ -3593,18 +3593,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3623,7 +3623,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction + + tx_hash: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8` (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. @@ -3634,18 +3634,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3664,7 +3664,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `105` (int, required) - The index of the transaction to return + + tx_index: `106` (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 @@ -3684,32 +3684,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3720,20 +3720,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3743,24 +3743,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3770,24 +3770,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 902, + "event_index": 908, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 232, - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "block_index": 233, + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "msg_index": 1, "quantity": 2000000000, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", "status": "valid", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3797,12 +3797,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 901, + "next_cursor": 907, "result_count": 12 } ``` @@ -3812,10 +3812,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction to return + + tx_hash: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3832,32 +3832,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3868,20 +3868,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3891,24 +3891,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3918,24 +3918,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 902, + "event_index": 908, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 232, - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "block_index": 233, + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "msg_index": 1, "quantity": 2000000000, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", "status": "valid", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3945,12 +3945,12 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 901, + "next_cursor": 907, "result_count": 12 } ``` @@ -3960,7 +3960,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction to return + + tx_hash: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8` (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 @@ -3978,11 +3978,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -3990,7 +3990,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4002,11 +4002,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4014,11 +4014,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4036,7 +4036,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction to return + + tx_hash: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8` (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 @@ -4054,29 +4054,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4091,7 +4091,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4113,9 +4113,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `105` (int, required) - The index of the transaction to return + + tx_index: `106` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4132,19 +4132,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4154,24 +4154,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4181,36 +4181,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": null, @@ -4223,9 +4223,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The hash of the transaction to return + + tx_hash: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4242,19 +4242,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4264,24 +4264,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4291,36 +4291,36 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": null, @@ -4335,7 +4335,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw,bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (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 @@ -4359,7 +4359,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4369,7 +4369,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4380,7 +4380,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4390,7 +4390,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4401,7 +4401,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4411,7 +4411,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4422,7 +4422,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4432,7 +4432,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4443,7 +4443,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4453,7 +4453,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4470,8 +4470,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - Comma separated list of addresses to return - + cursor: `105` (str, optional) - The last transaction index to return + + addresses: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw,bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - Comma separated list of addresses to return + + cursor: `106` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4489,17 +4489,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_hash": "7aafa1c8c0631b0be1c2ac6752e383f8738db022352447eff9b7be7125a347e4", - "block_time": 1731254774, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "block_hash": "3b01bf4f31970d0e8cc12de39b9e723f73bc5ed723ef4e028d34bc03702aa205", + "block_time": 1731271367, + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466:0 4 ", + "utxos_info": " b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4507,14 +4507,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4522,7 +4522,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4541,17 +4541,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", + "tx_hash": "f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca", "block_index": 204, - "block_hash": "454db558177ebd44fffd199336a1838eed9583efd438a8569a3e715fc3275db8", - "block_time": 1731254770, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "block_hash": "1ae3975df3240f80ec980c457abf2ae6b335b0e15947e5fe5f0e2006b6a2a4fb", + "block_time": 1731271363, + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2ac8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314:0 4 ", + "utxos_info": " f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4559,14 +4559,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4574,7 +4574,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4593,17 +4593,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", - "block_time": 1731254767, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "1edfa4f3a93aef75a78faa216cde2314fcd5db174dd2d8cab43273d50edaf64c", + "block_time": 1731271359, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", + "utxos_info": " 165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4611,14 +4611,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4626,7 +4626,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4645,17 +4645,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", - "block_time": 1731254762, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "60eadb889fc1111a432d22c3949a2303e4f2ef1ab1e09dda5212a84a94070b67", + "block_time": 1731271355, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", + "utxos_info": " 22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4663,14 +4663,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4678,7 +4678,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4697,17 +4697,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", - "block_time": 1731254759, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "55551e392bd68d3f668a59c30b82d78ea2fe836bc931e35a9041caac13c3812f", + "block_time": 1731271351, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "02000000178d82231300000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "supported": true, - "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", + "utxos_info": " 21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4715,12 +4715,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4740,10 +4740,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw,bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4764,29 +4764,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "block_time": 1731254870 + "order_match_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "block_time": 1731271482 }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4796,37 +4796,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "block_time": 1731254816 + "order_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "block_time": 1731271400 }, - "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", + "tx_hash": "38376655951f2f17adb5fd7cb1f6d4f4ac80c6c8d64e7b2e3dc45cd112ffc86d", "block_index": 211, - "block_time": 1731254816 + "block_time": 1731271400 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731254816, + "block_time": 1731271400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4836,9 +4836,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", + "tx_hash": "38376655951f2f17adb5fd7cb1f6d4f4ac80c6c8d64e7b2e3dc45cd112ffc86d", "block_index": 211, - "block_time": 1731254816 + "block_time": 1731271400 }, { "event_index": 698, @@ -4846,15 +4846,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "status": "valid", - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "tx_index": 81, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4864,9 +4864,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_time": 1731254774 + "block_time": 1731271367 } ], "next_cursor": 698, @@ -4879,7 +4879,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837,bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d,bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4` (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 @@ -4895,18 +4895,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "quantity": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "status": "valid", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4916,22 +4916,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4941,22 +4941,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "address": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", - "block_index": 232, - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "block_index": 233, + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4966,30 +4966,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731254920.2141104, + "block_time": 1731271529.8946035, "btc_amount": 0, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "destination": "", "fee": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, - "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, + "utxos_info": "0febf93dd4b77d55a4c1aa819277b0f1af96388794f835c0efa9bed59dd60335:1 2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -5003,7 +5003,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -5016,7 +5016,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -5036,7 +5036,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5044,14 +5044,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5059,14 +5059,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5074,14 +5074,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5096,7 +5096,7 @@ Returns the balances of an address "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5104,7 +5104,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5121,7 +5121,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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` @@ -5134,7 +5134,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5159,7 +5159,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5209,16 +5209,16 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5230,16 +5230,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "event": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5251,16 +5251,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", + "event": "f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5272,16 +5272,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5293,16 +5293,16 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "event": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5323,7 +5323,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5362,16 +5362,16 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "event": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5383,20 +5383,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "event": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5404,16 +5404,16 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "event": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5425,20 +5425,20 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "event": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5446,20 +5446,20 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "event": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254759, + "block_time": 1731271351, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5476,7 +5476,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address of the feed + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5511,7 +5511,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -5530,9 +5530,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", + "tx_hash": "344537a26f8c69054312506b9b1252f202af4e5028bc4e3071cf7b31754c0e10", "block_index": 128, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5540,7 +5540,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254453, + "block_time": 1731271016, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5554,7 +5554,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -5572,15 +5572,15 @@ Returns the burns of an address { "result": [ { - "tx_index": 3, - "tx_hash": "abd596953bb4268a1f68698acfba6f154c46ef6300d90825a905f29e304c5796", + "tx_index": 0, + "tx_hash": "f8253a7e9085cffe84980c0f47a2c0a051376f796729ca9c0a9bdad44f10bb03", "block_index": 112, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5595,7 +5595,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -5614,10 +5614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5625,7 +5625,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5638,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5662,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5673,11 +5673,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5686,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5697,7 +5697,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5710,10 +5710,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5721,11 +5721,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5743,7 +5743,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva` (str, required) - The address to return + + address: `bcrt1qex6nkyqpgxe5eh8v5cjj2rsprpahljqh9qgqyd` (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 @@ -5762,10 +5762,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "98528967e6e9f43e74383b573458cc1247d78ce15db78cfa1a69e34ad0e75d40", + "tx_hash": "18f32b6f9f5c51dc06b5aa57f9b62c50a4d5eba38c0d56e67c71d66629ae4e98", "block_index": 142, - "source": "2806c521e06299cd664aeba227bd9b0428cc98aa42ce5233e4cfc144e46f91ff:0", - "destination": "bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva", + "source": "57ebf27703a13d23dc4bd494eed117326f76049cfdabc984d694e8a8406fcac2:0", + "destination": "bcrt1qex6nkyqpgxe5eh8v5cjj2rsprpahljqh9qgqyd", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5773,11 +5773,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254522, + "block_time": 1731271069, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5795,7 +5795,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5823,7 +5823,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva` (str, required) - The address to return + + address: `bcrt1qex6nkyqpgxe5eh8v5cjj2rsprpahljqh9qgqyd` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5851,7 +5851,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5880,9 +5880,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5891,7 +5891,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5902,7 +5902,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5919,9 +5919,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5930,7 +5930,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5941,11 +5941,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -5967,7 +5967,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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` @@ -5980,9 +5980,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5991,7 +5991,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6002,7 +6002,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6025,7 +6025,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", + "tx_hash": "e2a64b24613a23b21d22cba2f920079264624492d777728988eab84cb6fa169f", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "dispenser_tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6065,7 +6065,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6080,11 +6080,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -6094,19 +6094,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6114,7 +6114,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6129,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6143,19 +6143,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6163,7 +6163,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6178,7 +6178,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6200,7 +6200,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address to return + + address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (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 @@ -6220,19 +6220,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", + "tx_hash": "e2a64b24613a23b21d22cba2f920079264624492d777728988eab84cb6fa169f", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "dispenser_tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6240,7 +6240,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6255,11 +6255,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -6269,19 +6269,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6289,7 +6289,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6304,7 +6304,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6318,19 +6318,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6338,7 +6338,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6353,7 +6353,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6375,7 +6375,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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` @@ -6396,19 +6396,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6416,7 +6416,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6431,7 +6431,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6445,19 +6445,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6465,7 +6465,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6480,7 +6480,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6502,7 +6502,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address to return + + address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (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` @@ -6523,19 +6523,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6543,7 +6543,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6558,7 +6558,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6572,19 +6572,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6592,7 +6592,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6607,7 +6607,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6629,7 +6629,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837` (str, required) - The address to return + + address: `bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d` (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 @@ -6648,16 +6648,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -6671,7 +6671,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6703,14 +6703,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", + "tx_hash": "8abebb03d132f5adb6e50fe6bafadb9cd285c6a248c4f889a0e29053ac46edee", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -6725,20 +6725,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254756, + "block_time": 1731271338, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "fbe7c7b2601b5e45c7a465623ce2ec1813ff7d21e64af6ad3aa4fe12f080978e", + "tx_hash": "1b7bf2bbc881a2519d87d9d00bb2a4f73edee4553773127878016f703bef1160", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -6753,20 +6753,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254577, + "block_time": 1731271143, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "2f2a90b36ea6a737b704690e85dca46764a4630daf9b65a724706cd4726be4e5", + "tx_hash": "2a6128e030e6631c34dc6912ca11a0992a3f42c65257837c08227b57ec38fc81", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -6781,20 +6781,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731254572, + "block_time": 1731271140, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "02c4a1217b737f89b976fd0543f63425b3c16be45fa1d89db326c0164fdfca11", + "tx_hash": "86b7e43b1444fb3bc88e13abcf15c936ecb5fa9e2a3770b4df73fafbbe6e2783", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -6809,20 +6809,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254568, + "block_time": 1731271126, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "d13655dbff39da617986c7f2a4f0fd17a34f40880b107514372f1c7f3703a9d7", + "tx_hash": "53acd4d44793e487aa50fbdca1da16e4725deee4ff18461efc4c19d3b8a07c1d", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -6837,7 +6837,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254564, + "block_time": 1731271123, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6852,7 +6852,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The issuer or owner to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6875,8 +6875,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -6884,16 +6884,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731254756, - "last_issuance_block_time": 1731254756, + "first_issuance_block_time": 1731271338, + "last_issuance_block_time": 1731271338, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 10000000000, @@ -6901,16 +6901,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731254564, - "last_issuance_block_time": 1731254572, + "first_issuance_block_time": 1731271123, + "last_issuance_block_time": 1731271140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 180, @@ -6918,16 +6918,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731254546, - "last_issuance_block_time": 1731254553, + "first_issuance_block_time": 1731271104, + "last_issuance_block_time": 1731271112, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -6935,16 +6935,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731254502, - "last_issuance_block_time": 1731254502, + "first_issuance_block_time": 1731271058, + "last_issuance_block_time": 1731271058, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 40, @@ -6952,8 +6952,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731254446, - "last_issuance_block_time": 1731254450, + "first_issuance_block_time": 1731271009, + "last_issuance_block_time": 1731271013, "supply_normalized": "0.00000040" } ], @@ -6967,7 +6967,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The issuer to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -6990,8 +6990,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -6999,16 +6999,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731254756, - "last_issuance_block_time": 1731254756, + "first_issuance_block_time": 1731271338, + "last_issuance_block_time": 1731271338, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 10000000000, @@ -7016,16 +7016,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731254564, - "last_issuance_block_time": 1731254572, + "first_issuance_block_time": 1731271123, + "last_issuance_block_time": 1731271140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 180, @@ -7033,16 +7033,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731254546, - "last_issuance_block_time": 1731254553, + "first_issuance_block_time": 1731271104, + "last_issuance_block_time": 1731271112, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -7050,16 +7050,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731254502, - "last_issuance_block_time": 1731254502, + "first_issuance_block_time": 1731271058, + "last_issuance_block_time": 1731271058, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 40, @@ -7067,8 +7067,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731254446, - "last_issuance_block_time": 1731254450, + "first_issuance_block_time": 1731271009, + "last_issuance_block_time": 1731271013, "supply_normalized": "0.00000040" } ], @@ -7082,7 +7082,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The owner to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7105,8 +7105,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -7114,16 +7114,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731254756, - "last_issuance_block_time": 1731254756, + "first_issuance_block_time": 1731271338, + "last_issuance_block_time": 1731271338, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 10000000000, @@ -7131,16 +7131,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731254564, - "last_issuance_block_time": 1731254572, + "first_issuance_block_time": 1731271123, + "last_issuance_block_time": 1731271140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 180, @@ -7148,16 +7148,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731254546, - "last_issuance_block_time": 1731254553, + "first_issuance_block_time": 1731271104, + "last_issuance_block_time": 1731271112, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -7165,16 +7165,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731254502, - "last_issuance_block_time": 1731254502, + "first_issuance_block_time": 1731271058, + "last_issuance_block_time": 1731271058, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 40, @@ -7182,8 +7182,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731254446, - "last_issuance_block_time": 1731254450, + "first_issuance_block_time": 1731271009, + "last_issuance_block_time": 1731271013, "supply_normalized": "0.00000040" } ], @@ -7197,8 +7197,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return - + cursor: `105` (str, optional) - The last transaction index to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + + cursor: `106` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7216,17 +7216,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", - "block_time": 1731254767, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "1edfa4f3a93aef75a78faa216cde2314fcd5db174dd2d8cab43273d50edaf64c", + "block_time": 1731271359, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", + "utxos_info": " 165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7234,14 +7234,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -7249,7 +7249,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7268,17 +7268,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", - "block_time": 1731254762, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "60eadb889fc1111a432d22c3949a2303e4f2ef1ab1e09dda5212a84a94070b67", + "block_time": 1731271355, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", + "utxos_info": " 22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7286,14 +7286,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -7301,7 +7301,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7320,17 +7320,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", - "block_time": 1731254759, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "55551e392bd68d3f668a59c30b82d78ea2fe836bc931e35a9041caac13c3812f", + "block_time": 1731271351, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "02000000178d82231300000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "supported": true, - "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", + "utxos_info": " 21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7338,12 +7338,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -7354,17 +7354,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", + "tx_hash": "8abebb03d132f5adb6e50fe6bafadb9cd285c6a248c4f889a0e29053ac46edee", "block_index": 200, - "block_hash": "5a4217f64ff8c0213a6329804fafb8da23ed2f3fce016f17eea71e0300a82d2d", - "block_time": 1731254756, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "0e74b4a40072932a9690d216987d44a64693de7fbd3ccc975dbae29cbe714160", + "block_time": 1731271338, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44:1 2 ", + "utxos_info": " 8abebb03d132f5adb6e50fe6bafadb9cd285c6a248c4f889a0e29053ac46edee:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7389,17 +7389,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 193, - "block_hash": "7665d200076034c09c4354a6d3c396d6c7dae5aae7112b0e1994697cd30ff4c3", - "block_time": 1731254722, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "5f6cc6436eb47bafd8cf778490dcf45a52a11275fd91dd508eb36d7188ef32f3", + "block_time": 1731271295, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730:1 2 ", + "utxos_info": " bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7416,7 +7416,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -7437,7 +7437,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -7456,20 +7456,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -7494,7 +7494,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7523,9 +7523,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7542,7 +7542,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7570,9 +7570,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7589,7 +7589,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7617,9 +7617,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7636,7 +7636,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7664,9 +7664,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "block_index": 211, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7683,7 +7683,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254816, + "block_time": 1731271400, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7720,7 +7720,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The source of the fairminter to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7745,10 +7745,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -7773,7 +7773,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731254553, + "block_time": 1731271112, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7785,10 +7785,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "1d297909de3cc27ea67c071294f01caa884fcd458d56f96fe2d7c1c29c533bad", + "tx_hash": "011eac9554732bf992e6d36808d55cddd07fb3b322a72a3643a2063504034ade", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7813,7 +7813,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254542, + "block_time": 1731271100, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7822,10 +7822,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", + "tx_hash": "4448177c3ac5078408cffcf18154adbd2618810957b5244d40bad24093d39969", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7850,7 +7850,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731254446, + "block_time": 1731271009, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7862,10 +7862,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7890,7 +7890,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731254421, + "block_time": 1731270982, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7902,10 +7902,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", + "tx_hash": "faca2aa49cbd27e969ec5d38423ed408c839a8beeef16a8146b889288253b00d", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7930,7 +7930,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731254417, + "block_time": 1731270977, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7942,10 +7942,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", + "tx_hash": "06eb5d29f351ae40aedf7a1014376b3ff77cdac231242aedf9e995af74a71b88", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7970,7 +7970,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731254395, + "block_time": 1731270957, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7992,7 +7992,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address of the mints to return + + address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8010,22 +8010,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", + "tx_hash": "0ad86cb8a8cf78d1be3fcc4c5146bdc2351f1d2847c20fccb70f17eb65d7af37", "tx_index": 46, "block_index": 150, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254553, + "block_time": 1731271112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8034,22 +8034,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", + "tx_hash": "7a31f06df89dfbc062b8e508509939b5952952617ad94aa3a5741fffac762f1a", "tx_index": 45, "block_index": 149, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254549, + "block_time": 1731271109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8058,22 +8058,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "a37a7f152ec02b8726f12eaea05c7093256d374427dad2f82b674661455c237d", + "tx_hash": "f516c8140815d4c356e7fb47dff67a78ae802806904c3f91f3deac5f21c5b50d", "tx_index": 23, "block_index": 127, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "4448177c3ac5078408cffcf18154adbd2618810957b5244d40bad24093d39969", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254450, + "block_time": 1731271013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8082,22 +8082,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "97af3e0b31ccceb37f482dee260d70f8dfeb452b2f1dc92b67216d0291f8c050", + "tx_hash": "1e26d2385cac293da33e13f01dcf28ea8c5939dfd5ca0d8c9ad2287a1d783535", "tx_index": 21, "block_index": 125, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254442, + "block_time": 1731271005, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8106,22 +8106,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "80aaf1187fc14153a37b61308bf05bc30f7bcc8f3b67d50c52858c8f0373c07e", + "tx_hash": "a8a2a161319d12b6cc1a93924c01c34748cdf4b3a2d883ec56d5825508529d00", "tx_index": 20, "block_index": 124, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254439, + "block_time": 1731271000, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8130,22 +8130,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6ea5d77ed565f9380bb48986cccf228f915e71a2b4efce8b3468d5152bec97cb", + "tx_hash": "c22a5ad5cb87a77c4518fde7fd174c6d24999149e371fc07fabef6c16f8bcb41", "tx_index": 19, "block_index": 123, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254425, + "block_time": 1731270986, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8154,22 +8154,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "99f1ad8c0775bc098acb32b44ea8cea14b6f1f0023ce066c5f5a236ff77b7198", + "tx_hash": "39b2d2eda54d05790cd226263cbba93d0478ac507df929d506092241b6e9ff41", "tx_index": 15, "block_index": 118, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "faca2aa49cbd27e969ec5d38423ed408c839a8beeef16a8146b889288253b00d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254404, + "block_time": 1731270965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8178,22 +8178,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bb7b58324e702a6dedbb9687ace58eface705a181c5e0d3dac12411de5003dc6", + "tx_hash": "31de1556b839f8ae154b58e7f16d5bd908cfc3bff26c555a84de993d13760505", "tx_index": 11, "block_index": 114, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06eb5d29f351ae40aedf7a1014376b3ff77cdac231242aedf9e995af74a71b88", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254389, + "block_time": 1731270949, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8212,7 +8212,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address of the mints to return + + address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8242,7 +8242,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0` (str, required) - The utxo to return + + utxo: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8262,8 +8262,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8276,12 +8276,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8321,8 +8321,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will make the bet - + feed_address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (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) @@ -8396,7 +8396,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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) @@ -8458,7 +8458,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8469,9 +8469,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985834, - "btc_fee": 14166, - "rawtransaction": "020000000001013c57738121e96c94e73650bb611f87908b5cc5e5912b69af60ceb57d2dde3ffd000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0200000000000000002b6a29685a41129d4cb2f1bb6bf4a4a8b1eefbe92bfd8bd589b94e43f055a53cb75fa5cc8e47347f7e0eae03aaba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985817, + "btc_fee": 14183, + "rawtransaction": "02000000000101605fda5a74afe08643cf3d04217611df795aabeff6598c8b6a5c3985f7ef6cc2000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff0200000000000000002b6a29000935376cdea2f601134c37891ad675f5ca8c9c3ff40bea60ace2a74499d07d5c13d022735ae23cd899ba052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8493,8 +8493,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending the payment - + order_match_id: `c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31` (str, required) - The ID of the order match to pay for + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be sending the payment + + order_match_id: `72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466` (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) @@ -8552,24 +8552,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "order_match_id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134ee9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "data": "434e5452505254590b72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308eccedaf64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980970, - "btc_fee": 18030, - "rawtransaction": "02000000000101faf837ac3d9a4debd1f0d0e97c35c640349b253900b98f8721ba04d2e3429075000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e80300000000000016001441da0a7652ef5a0bcf38ad343736042c8000db6000000000000000004b6a4961a6404d9c97cd92239cf806d911286d1b962983e49633f44014b93a53d9c19358a44e69e85d2314e13661a3644eee43fd13cee24e854fbdda61653714eec4a999da58ad2d304c9d53aaa7052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999980948, + "btc_fee": 18052, + "rawtransaction": "02000000000101c08e7355107a6404a8c0995badfa7171f23fdfd30c901858685164f7fca603a0000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff03e80300000000000016001405a49f0ed848ca6c382776fb6b979bae618ce3a500000000000000004b6a497fbb44d344d4839ea6178a63a634a92ff79e01120d87dbc2c9968ae88f63cec72e86392c3f217f29992870e65053a789902d5180c3a4d20dc9c5f202ac304b560cc8f31dbfd7a32b8894a7052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "order_match_id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "status": "valid" } } @@ -8582,7 +8582,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address with the BTC to burn + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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` @@ -8643,7 +8643,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8652,9 +8652,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": 4999985829, - "btc_fee": 13171, - "rawtransaction": "0200000000010148ab7971342b9d3d52e82c68dd5244d2bfc92e3f84a9e4fe956fade546ddee7e000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000" + "btc_change": 4999985813, + "btc_fee": 13187, + "rawtransaction": "02000000000101f63aac0605999653aed3aa632f3fc3b9b078ce62957f8ed49945e932b780ab6e000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac95ba052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000" } } ``` @@ -8664,8 +8664,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: `bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466` (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) @@ -8723,22 +8723,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "offer_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "data": "434e54525052545946af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "btc_in": 90000, "btc_out": 0, - "btc_change": 75834, - "btc_fee": 14166, - "rawtransaction": "02000000000101315af430627f89d3d439def1e65c592e9ff0c89b1542cee5b625c73292a5abe901000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff0200000000000000002b6a29436d82e6dc30922fc7c418915aa02e676f9f94f64e347ac1c7d24da0a7f4227647b6713dd9a08925c33a28010000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000000000000", + "btc_change": 75817, + "btc_fee": 14183, + "rawtransaction": "0200000000010166a4821454a0dff5a0a15520e0ec27ddd190d3563850ed68a46566e425fc64af01000000160014b4de0585da1d359bb0642317a560707be6d2c0c1ffffffff0200000000000000002b6a29351c8d7cdd5c88018c6f293ef1927c9dc48cfb0b932de25a4dfc2b0ebef941cd94db31a6ea16359dbd2928010000000000160014b4de0585da1d359bb0642317a560707be6d2c0c102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "offer_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "status": "valid" } } @@ -8751,7 +8751,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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 @@ -8812,7 +8812,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8830,9 +8830,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986361, - "btc_fee": 13639, - "rawtransaction": "0200000000010106cde379e95dd36b3ea209fad57609b44b869b6e732e62f852b2f1e088259876000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000226a20779ac4ada98d0b4fe4bf9082434711ce07843531a9811570d30ea7ea5fd995e5b9bc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999986344, + "btc_fee": 13656, + "rawtransaction": "020000000001013431570bcd987a89144d580de5bc96565cb511cb9a9645feae6a11e923bf11bd000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000226a20cf0750c56200dc33b7fa7d6ebb6a056d8d1e17ffbf2754562e097b2adb0c8238a8bc052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8852,7 +8852,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: `bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa` (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) @@ -8919,7 +8919,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8942,9 +8942,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859575, - "btc_fee": 14224, - "rawtransaction": "02000000000101ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab180200000016001477f035f8932bfb0cd735529ec106b2de87f6bb58ffffffff0200000000000000002c6a2ae43a4014264e42e5f579da24489611fa7a122a056812981d2c2f1a3397e1a5d2c1f4faf3aef27bbc7ee8f7dc08270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb5802000000000000", + "btc_change": 4949859557, + "btc_fee": 14242, + "rawtransaction": "02000000000101b87d1384291a97f1c5dbfc91cd220e7cddb1b4c4e7bf9bc935d426c75233fca30200000016001463cf563b400248c227b82d8915cbe0712c9fcba8ffffffff0200000000000000002c6a2acce15ed1cdf0af6d69fc2dfe473ccda2e29c7454934941c7283b92966506f90f7daef9ddba177aa4bab9e5dc08270100000016001463cf563b400248c227b82d8915cbe0712c9fcba802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8970,7 +8970,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (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: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -9031,7 +9031,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -9039,7 +9039,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -9056,9 +9056,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986302, - "btc_fee": 13698, - "rawtransaction": "02000000000101533538ba2b88f3ff364dff39681971ce22b2ba3c3260c196474112caf5195a88000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a2109b489672478c741c1c7240ac504f485c12542a9f85533273e80166051bfdfb9987ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999986286, + "btc_fee": 13714, + "rawtransaction": "020000000001010ffc2572972050896d2cf0bc4430331df794f999332ddf333c7ef1e5c0cf99d5000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000236a213d6c605f3d358972909ed22b9b646f3a131d240d8928f370818b5834d62c9c51f36ebc052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9079,10 +9079,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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` @@ -9149,10 +9149,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "transfer_destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "lock": false, "reset": false, @@ -9164,9 +9164,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": 4999983766, - "btc_fee": 15688, - "rawtransaction": "020000000001019646cee2788ef1976dee63e7791cb16f7a6ef4afaf57ee103ad2da959214bee8000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000236a2197b310cd5531b936aed9a1c78b9844da8b820a05f50f1d58db3a8f713b05fd77ae96b2052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999983747, + "btc_fee": 15707, + "rawtransaction": "020000000001017635131f76ef45c08420d5c35d9d248f4dfe2124e230e5b7b98d3d7808ac932c000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff0322020000000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d0000000000000000236a21b3877981b9c024b173fc3c36241c74ed49b724c757a68a3732499b1204ae05b6e583b2052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9195,9 +9195,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: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr,bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw,bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9264,16 +9264,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", 1 ], [ "FAIRMINTC", - "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", 2 ] ], @@ -9282,26 +9282,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807dfc55f48da0262381a8abd3c21e984b925dce6880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf84000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80a2e5f08da152baf1276ed5af45319b4da4ac84a64000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785336, - "btc_fee": 20664, - "rawtransaction": "020000000001016664cdd117e2c8cf8dd22ee57388dca6dbfa4d3d0c762f409fe639b1071d3cc403000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8ffffffff03e8030000000000006951210232d85426dfdffc5373c2d4d2716428d9f744e7ab31ca3fa063e9773e823001142102704d43b1b10cf97327c9e0e70afe77b0ab4b63202788f4b4a95f2eb3d1b12d792102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aee803000000000000695121022dd85426dfdffc5373d1d4d0f119d48c03ed478d124b970bb02f69a6c9a25c582103be25c21ffa7ee65f9e95aa83da093905c53790c77f440cf4a95f125d6e35945f2102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aef8ba072701000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf802000000000000", + "btc_change": 4949785311, + "btc_fee": 20689, + "rawtransaction": "020000000001015a0739fac3401699c65849a2a89571376aaa618b7b96e38da52fb8d34e6803b403000000160014a2e5f08da152baf1276ed5af45319b4da4ac84a6ffffffff03e80300000000000069512102d3f7ed1c0cbcfe428737910cd40caa8ccbba1d44e90f897441a03d5fb6129d012102ca138ffaf3f5c0989b1c94536ddcaee8f3ffae9fafbb4bcf67d4015ef2d0b8f6210226f93dd4495d496f057e352392697f8710d1d73b4735135b211904f01c34056653aee80300000000000069512102ccf7ed1c0cbcfe428724910e545a2f50c24887da280423496b88d3c23c5cb9682102c63e0e5816054d39c9a66574030901adc264e33b033fed8f67d43db04d54012d210226f93dd4495d496f057e352392697f8710d1d73b4735135b211904f01c34056653aedfba072701000000160014a2e5f08da152baf1276ed5af45319b4da4ac84a602000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9317,7 +9317,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `BURNER` (str, required) - The asset that will be received in the trade @@ -9381,7 +9381,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -9399,7 +9399,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -9411,9 +9411,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985249, - "btc_fee": 14751, - "rawtransaction": "020000000001014bbba36e158071fb7490d52a69d97f4bd5bafff57b54c57cabb1d38d07ddd099000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000356a3367946e68a5faf452d5d2720d177dd8174966c633ee143caf5fce4d934b9a2dc38a3d9709ae4e8982034f3ad4069ed9f5ccaedc61b8052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985231, + "btc_fee": 14769, + "rawtransaction": "020000000001015481cc3863b9dcc165d2501311b5cadb10508285bbbd43c4e7dbff7a9f388ece000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000356a336730e1c8821b6221a9ab7b15f6b6ec8c5a8ce259ec95175ff0f3e78631fce3a0fc31cc374c7c505e50accd09abc457eb97bb1a4fb8052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9439,8 +9439,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address that will be receiving the asset + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (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 @@ -9506,8 +9506,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9524,19 +9524,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "434e54525052545902000000000000000100000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985541, - "btc_fee": 14459, - "rawtransaction": "02000000000101e1bd477e1e91e443d26218ea8f689f757d7aad9491dd35a5b41d432c8bdae532000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000306a2ec01fe1437f92616218f60ffa67740368895662d907a5ceae51543b0b6514b517f889450afc64bde6517b43bbc85285b9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985524, + "btc_fee": 14476, + "rawtransaction": "020000000001015a82de0c33ff19b6fe1b28ad730daca719474c1afcf2042e0fd586e5d82cd6a8000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000306a2e5de81d84eeb4327123ae2f8cdc98a87a3346bf9783c91247b81798f792fb9163d13784634177d7110d7bb6e3354d74b9052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "quantity_normalized": "0.00001000" } @@ -9550,8 +9550,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending - + destination: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be sending + + destination: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (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 @@ -9611,24 +9611,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf807ffff", + "data": "434e5452505254590480a2e5f08da152baf1276ed5af45319b4da4ac84a607ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986302, - "btc_fee": 13698, - "rawtransaction": "0200000000010152f183611295b2b57f46093df0b0557f9e6e8f17e1edb0a45e6852e78a51c84c000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a215dab6383d68496fd2d5d5abdae2f008bd1526673ac1b76de9c72f2963b66de52ab7ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999986286, + "btc_fee": 13714, + "rawtransaction": "02000000000101ac3fa4889e544f5fc2c9806120d08313bd488868b0d03f645619a87e426d811f000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000236a213d8e7f5cd22b2c7d75de63176883466b6c882e5fc7a8088f127cf4ab6426858fdc6ebc052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "flags": 7, "memo": "ffff" } @@ -9642,8 +9642,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4` (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` @@ -9702,8 +9702,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "quantity": 1000, "skip_validation": false }, @@ -9711,9 +9711,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984658, - "btc_fee": 14342, - "rawtransaction": "02000000000101993fdd439d2f898b5ef1a10728d58f682e9b976ed60c2960fa55aa929961d389000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e803000000000000160014a5550669d96f10679dc14b28f8b86abf99f322c900000000000000000c6a0aacfdb48c0cff85ea275a12b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999984641, + "btc_fee": 14359, + "rawtransaction": "020000000001011d04d506c9c425d95fb71a42905fe8917c20839f234a58158348fa88f720ffad000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff03e803000000000000160014eee171e19e2f9d4872e38379b1b07a43ec55dd2a00000000000000000c6a0a01bd60b397897ee60bf701b6052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9730,7 +9730,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be issuing the asset + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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: `` @@ -9821,7 +9821,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9851,9 +9851,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985483, - "btc_fee": 14517, - "rawtransaction": "02000000000101dc0f9bd95afe52cee0f69978192f31caf87d8d17388398d558977898e07dcec5000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000316a2f19f727556cc7c396ac0d4055cf95a190fda442ed6797decd7d3ed3022eea5251e1119136bddfe50dd0449ba14b116b4bb9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985465, + "btc_fee": 14535, + "rawtransaction": "02000000000101f1e785fd2c8247bace02fede2ace76e1cda3cbdabe73c0f031670f15d3528273000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000316a2f2ce3d96ebe0d7b851d0267a1b2e145483c9bf6a3f9e7179e886a395156b9bcf9f3b465919c1e09e6361c8d0494564b39b9052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9892,7 +9892,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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address that will be minting the asset + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address that will be minting the asset + asset: `OPENFAIR` (str, required) - The asset to mint + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9953,14 +9953,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "divisible": true, "locked": false }, @@ -9970,9 +9970,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "data": "434e5452505254595b4f50454e464149527c30", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987122, - "btc_fee": 12878, - "rawtransaction": "020000000001017c850c46a2ea3ed5aa631290bbc4425e27e89edbcaf9ad25ae6186039ee18465000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000156a1340a778c237af9223c67a8e7391dbcf290378a3b2bf052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999987106, + "btc_fee": 12894, + "rawtransaction": "020000000001016b85a56ce008f063448c83bd408f1228d489cd7f8315517aca4a08695be053f8000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000156a13c073aebf10c1519d1fa868fd0d8006d95e86b9a2bf052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9991,12 +9991,12 @@ 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: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address from which the assets are attached + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output + Default: `None` - + destination (str, optional) - [Disabled after block 870000] The utxo to attach the assets to + + destination (str, optional) - [Disabled after block 872000] The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10055,7 +10055,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10073,9 +10073,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984644, - "btc_fee": 14810, - "rawtransaction": "020000000001010d2729602840994f39281fc445a0fb6e03413b4e6269aa9a7e3dfe868f28e549000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000146a1200f941c4f9d9a0790a285a0744c2c090320704b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999984626, + "btc_fee": 14828, + "rawtransaction": "020000000001013dc80da59004277970fa9e192856e0e883104cb9321a00b91e4e544b68f16e36000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff0322020000000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d0000000000000000146a12b3e452486e7347ef130da3cb51d7673598aef2b5052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10095,12 +10095,12 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` - + asset (str, optional) - [Disabled after block 870000] The asset or subasset to detach + + asset (str, optional) - [Disabled after block 872000] The asset or subasset to detach + Default: `None` - + quantity (int, optional) - [Disabled after block 870000] The quantity of the asset to detach (in satoshis, hence integer) + + quantity (int, optional) - [Disabled after block 872000] The quantity of the asset to detach (in satoshis, hence integer) + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10159,22 +10159,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171306837397461796435716e7a387164673430667579383563667766396d6e6e677261716d6372", + "data": "434e5452505254596662637274317132367a61637a776b6e3230767a7a61323835347a656d35613366387a67727064646467656b77", "btc_in": 4949951000, "btc_out": 0, - "btc_change": 4949925536, - "btc_fee": 25464, - "rawtransaction": "02000000000102ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab1800000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff7ee612532cb7059b554038a43917ffe301f36100116c05026d0725e4b84d8c7501000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff020000000000000000376a35e43a4014264e42e59f1bb9563ca760ca13251371096bfc2bb541600be685c2e519928f8a96c718da6d8e5d9054cfb45df3803ddfbca0de092701000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000002000000000000", + "btc_change": 4949925505, + "btc_fee": 25495, + "rawtransaction": "02000000000102b87d1384291a97f1c5dbfc91cd220e7cddb1b4c4e7bf9bc935d426c75233fca300000000160014b4de0585da1d359bb0642317a560707be6d2c0c1ffffffff5d8d3c2a4e8d1246975c144b3f519f8d0c5c1aca3a3c66ed73f3d5b535f63e9c01000000160014b4de0585da1d359bb0642317a560707be6d2c0c1ffffffff020000000000000000376a35cce15ed1cdf0af6d039e4e8c330dbc90d5e61537e93e2aaaf20be4ec1f67cb34a09a83b8d7221b97b8812dc512e84a573cd43b04e881de092701000000160014b4de0585da1d359bb0642317a560707be6d2c0c102000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr" + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw" } } } @@ -10278,42 +10278,42 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "owner": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "owner": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "divisible": true, "locked": false, "supply": 0, "description": "", - "first_issuance_block_index": 231, - "last_issuance_block_index": 231, + "first_issuance_block_index": 232, + "last_issuance_block_index": 232, "confirmed": true, - "first_issuance_block_time": 1731254901, - "last_issuance_block_time": 1731254901, + "first_issuance_block_time": 1731271517, + "last_issuance_block_time": 1731271517, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false, "supply": 0, - "description": "", + "description": "My super description", "first_issuance_block_index": 227, - "last_issuance_block_index": 228, + "last_issuance_block_index": 229, "confirmed": true, - "first_issuance_block_time": 1731254877, - "last_issuance_block_time": 1731254880, + "first_issuance_block_time": 1731271490, + "last_issuance_block_time": 1731271496, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false, "supply": 0, @@ -10321,16 +10321,16 @@ Returns the valid assets "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731254870, - "last_issuance_block_time": 1731254873, + "first_issuance_block_time": 1731271482, + "last_issuance_block_time": 1731271485, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false, "supply": 0, @@ -10338,16 +10338,16 @@ Returns the valid assets "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731254859, - "last_issuance_block_time": 1731254862, + "first_issuance_block_time": 1731271460, + "last_issuance_block_time": 1731271464, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true, "supply": 100000000, @@ -10355,8 +10355,8 @@ Returns the valid assets "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731254852, - "last_issuance_block_time": 1731254855, + "first_issuance_block_time": 1731271453, + "last_issuance_block_time": 1731271456, "supply_normalized": "1.00000000" } ], @@ -10384,8 +10384,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true, "supply": 100000000, @@ -10393,8 +10393,8 @@ Returns an asset by its name "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731254852, - "last_issuance_block_time": 1731254855, + "first_issuance_block_time": 1731271453, + "last_issuance_block_time": 1731271456, "supply_normalized": "1.00000000" } } @@ -10425,7 +10425,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10433,14 +10433,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10448,7 +10448,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -10466,7 +10466,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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. @@ -10478,7 +10478,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -10532,9 +10532,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10551,7 +10551,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10579,9 +10579,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10598,7 +10598,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10626,9 +10626,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10645,7 +10645,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10673,9 +10673,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "block_index": 211, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10692,7 +10692,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254816, + "block_time": 1731271400, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10720,9 +10720,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10739,7 +10739,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10803,13 +10803,13 @@ Returns the orders of an asset { "result": [ { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10823,7 +10823,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10843,13 +10843,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 56, - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10863,7 +10863,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10883,13 +10883,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "id": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d_13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", "tx0_index": 53, - "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 54, - "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10903,7 +10903,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10923,13 +10923,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 64, - "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10943,7 +10943,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11023,20 +11023,20 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "event": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -11044,20 +11044,20 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "event": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -11112,17 +11112,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 232, + "block_index": 233, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11133,17 +11133,17 @@ Returns the debits of an asset "quantity_normalized": "20.00000000" }, { - "block_index": 231, - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 232, + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, + "event": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11155,16 +11155,16 @@ Returns the debits of an asset }, { "block_index": 227, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "event": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254877, + "block_time": 1731271490, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11176,16 +11176,16 @@ Returns the debits of an asset }, { "block_index": 225, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "event": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11197,16 +11197,16 @@ Returns the debits of an asset }, { "block_index": 222, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", + "event": "f7066b7ca1331586047e7fad2120f43a59214f2ed219fc45b3fdaa77e9482bdc", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254859, + "block_time": 1731271460, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11286,14 +11286,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -11308,20 +11308,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -11336,7 +11336,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254852, + "block_time": 1731271453, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11369,11 +11369,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11381,7 +11381,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11394,10 +11394,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11405,7 +11405,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11418,10 +11418,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", + "tx_hash": "f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca", "block_index": 204, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11429,7 +11429,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11442,10 +11442,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11453,7 +11453,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11466,10 +11466,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11477,7 +11477,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11528,9 +11528,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11539,7 +11539,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11550,7 +11550,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11567,9 +11567,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", + "tx_hash": "9b2dfba91c2fcc8e62cad3a8e22c61d09d53da87ad78c945f36b5439623ae02b", "block_index": 133, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11578,7 +11578,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "origin": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11589,7 +11589,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254472, + "block_time": 1731271037, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11606,9 +11606,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", + "tx_hash": "4541ad8106750f9e71a0a6e7bb2e09f31dc36422db1d6f325992454e6cbe1f27", "block_index": 141, - "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", + "source": "mpZ4yvyqMAQpbfAieAGK3FoTZW2incZad3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11616,10 +11616,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_hash": "735868c1db1bf723b34b0fb02d2eb35dce22b28cfec6ef549f47c93f8bf159b1", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -11628,7 +11628,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254519, + "block_time": 1731271066, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11645,18 +11645,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11667,7 +11667,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11693,7 +11693,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - The address to return + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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` @@ -11706,9 +11706,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11717,7 +11717,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11728,7 +11728,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11770,7 +11770,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -11779,7 +11779,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -11787,7 +11787,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -11796,7 +11796,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -11831,29 +11831,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11868,7 +11868,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11882,27 +11882,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", + "tx_hash": "61aa8d76312206796e24c2b70c4e0545725d844a41192c1f545c67237b022071", "block_index": 138, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11917,7 +11917,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254499, + "block_time": 1731271054, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11931,19 +11931,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11951,7 +11951,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11966,7 +11966,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11980,19 +11980,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12000,7 +12000,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12015,7 +12015,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12089,10 +12089,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "tx_index": 96, "block_index": 221, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -12117,7 +12117,7 @@ Returns the fairminter by its asset "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -12157,22 +12157,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -12191,7 +12191,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc` (str, required) - The address of the mints to return + + address: `bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12253,9 +12253,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12272,7 +12272,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12300,9 +12300,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12319,7 +12319,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12347,9 +12347,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12366,7 +12366,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12394,9 +12394,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12413,7 +12413,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12441,9 +12441,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "block_index": 205, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12460,7 +12460,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12497,7 +12497,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31` (str, required) - The hash of the transaction that created the order + + order_hash: `af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466` (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. @@ -12508,10 +12508,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 103, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 104, + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -12519,7 +12519,7 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 251, + "expire_index": 252, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -12528,7 +12528,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254888, + "block_time": 1731271504, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12539,7 +12539,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -12562,7 +12562,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e` (str, required) - The hash of the transaction that created the order + + order_hash: `72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced` (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 @@ -12589,31 +12589,31 @@ Returns the order matches of an order { "result": [ { - "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx0_index": 102, - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "tx1_index": 103, - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx0_index": 103, + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx0_address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "tx1_index": 104, + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx1_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 229, - "tx1_block_index": 230, - "block_index": 230, + "tx0_block_index": 230, + "tx1_block_index": 231, + "block_index": 231, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 250, + "match_expire_index": 251, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731254888, + "block_time": 1731271504, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -12639,7 +12639,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042` (str, required) - The hash of the transaction that created the order + + order_hash: `35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a` (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 @@ -12658,15 +12658,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "btc_amount": 2000, - "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "order_match_id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "status": "valid", "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "btc_amount_normalized": "0.00002000" } ], @@ -12710,9 +12710,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12730,7 +12730,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731254669, + "block_time": 1731271224, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12756,9 +12756,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "block_index": 205, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12776,7 +12776,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731254774, + "block_time": 1731271367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12802,9 +12802,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12822,7 +12822,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12848,9 +12848,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12868,7 +12868,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12894,9 +12894,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12914,7 +12914,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12977,13 +12977,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13000,7 +13000,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254770, + "block_time": 1731271363, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13020,13 +13020,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 56, - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13043,7 +13043,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254669, + "block_time": 1731271224, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13063,13 +13063,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "id": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d_13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", "tx0_index": 53, - "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 54, - "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13086,7 +13086,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254592, + "block_time": 1731271157, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13106,13 +13106,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 64, - "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13129,7 +13129,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254870, + "block_time": 1731271482, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13187,13 +13187,13 @@ Returns all the order matches { "result": [ { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13207,7 +13207,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13227,13 +13227,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 56, - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13247,7 +13247,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13267,13 +13267,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "id": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d_13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", "tx0_index": 53, - "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 54, - "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13287,7 +13287,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13307,13 +13307,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 64, - "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13327,7 +13327,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13347,31 +13347,31 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx0_index": 102, - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "tx1_index": 103, - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx0_index": 103, + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx0_address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "tx1_index": 104, + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx1_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 229, - "tx1_block_index": 230, - "block_index": 230, + "tx0_block_index": 230, + "tx1_block_index": 231, + "block_index": 231, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 250, + "match_expire_index": 251, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731254888, + "block_time": 1731271504, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -13535,66 +13535,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", + "tx_hash": "92dedcf8e195e2fceed307c34f2e5c36970740ad85fddd8aafb06a1f95e766fb", "block_index": 112, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "f057e728263dcd95f79ed359aad4ead52077fedd3dac46899b1b14ea4e1758e9", + "tx_hash": "befdca6ee41685d5f54a3e6efcd60de37818502ff7a2180cec784dfe583892e3", "block_index": 112, - "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "9ab75d2a2e8bac2541af80cdc7973b81b6464841d3b70fe3101aecd9b91eb7c1", + "tx_hash": "1f78a1b0cd0970e4a0f2c2f31205dd61593b482174466a7719dca9ec2952b7de", "block_index": 112, - "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "0e994e56ceee5273e4a1fa6d2a93ae5a16505151fb63c49dc7a7d640800a5cb9", + "tx_hash": "f650077ed48b6b9edc26bdca84852403eb507bae4af560cb6c747a8c611689b3", "block_index": 112, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "f2e59e2c1fcafe2177fff3fce6fed1926d7371e388af4715f63417c5756f50b1", + "tx_hash": "0ed9505edcd7a2789db31b7378548125e91dfd2204615cd0fb063df41926b994", "block_index": 112, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qex6nkyqpgxe5eh8v5cjj2rsprpahljqh9qgqyd", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -13639,9 +13639,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13650,7 +13650,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13661,7 +13661,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13678,9 +13678,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", + "tx_hash": "9b2dfba91c2fcc8e62cad3a8e22c61d09d53da87ad78c945f36b5439623ae02b", "block_index": 133, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13689,7 +13689,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "origin": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13700,7 +13700,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254472, + "block_time": 1731271037, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13717,9 +13717,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", + "tx_hash": "4541ad8106750f9e71a0a6e7bb2e09f31dc36422db1d6f325992454e6cbe1f27", "block_index": 141, - "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", + "source": "mpZ4yvyqMAQpbfAieAGK3FoTZW2incZad3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13727,10 +13727,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_hash": "735868c1db1bf723b34b0fb02d2eb35dce22b28cfec6ef549f47c93f8bf159b1", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -13739,7 +13739,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254519, + "block_time": 1731271066, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13756,9 +13756,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13767,7 +13767,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13778,11 +13778,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -13795,18 +13795,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13817,7 +13817,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13843,7 +13843,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716` (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. @@ -13855,9 +13855,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13866,7 +13866,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13877,7 +13877,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13900,7 +13900,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716` (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 @@ -13920,19 +13920,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13940,7 +13940,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13955,7 +13955,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13969,19 +13969,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13989,7 +13989,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14004,7 +14004,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14046,20 +14046,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -14084,7 +14084,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297` (str, required) - The hash of the dividend to return + + dividend_hash: `05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d` (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. @@ -14096,20 +14096,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -14131,7 +14131,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d` (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 @@ -14154,12 +14154,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "event": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "tx_index": 42, - "utxo": "c7ae48041c2647ba8bb21829e463c2c431e9e953c08b58a2ab683a94c4d0f186:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "utxo": "4017fe8ac5770e8bbf8d097bf660a5006c72a8f067a766e19ddfd7792b89fb8f:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14184,7 +14184,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14201,47 +14201,47 @@ Returns all events { "result": [ { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14252,20 +14252,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14275,24 +14275,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14302,13 +14302,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 902, - "result_count": 908 + "next_cursor": 908, + "result_count": 914 } ``` @@ -14317,7 +14317,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `907` (int, required) - The index of the event to return + + event_index: `913` (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. @@ -14328,19 +14328,19 @@ Returns the event of an index ``` { "result": { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 } } ``` @@ -14372,7 +14372,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 91 + "event_count": 92 }, { "event": "SWEEP", @@ -14398,7 +14398,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `907` (str, optional) - The last event index to return + + cursor: `913` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14415,19 +14415,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14437,24 +14437,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14464,36 +14464,36 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { "event_index": 862, @@ -14503,39 +14503,39 @@ Returns the events filtered by event name "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "event": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731254877, + "block_time": 1731271490, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "description": "My super description", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "block_index": 227, - "block_time": 1731254877 + "block_time": 1731271490 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14545,9 +14545,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 } ], "next_cursor": 819, @@ -14601,29 +14601,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14638,7 +14638,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14652,19 +14652,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", + "tx_hash": "e2a64b24613a23b21d22cba2f920079264624492d777728988eab84cb6fa169f", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "dispenser_tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14672,7 +14672,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14687,11 +14687,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -14701,27 +14701,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", + "tx_hash": "61aa8d76312206796e24c2b70c4e0545725d844a41192c1f545c67237b022071", "block_index": 138, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14736,7 +14736,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254499, + "block_time": 1731271054, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14750,19 +14750,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14770,7 +14770,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14785,7 +14785,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14799,19 +14799,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14819,7 +14819,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14834,7 +14834,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14875,11 +14875,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14887,7 +14887,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14899,11 +14899,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14911,11 +14911,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -14924,10 +14924,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14935,7 +14935,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14948,10 +14948,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14959,11 +14959,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -14972,10 +14972,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14983,11 +14983,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -15037,15 +15037,15 @@ Returns all the issuances { "result": [ { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", "msg_index": 0, - "block_index": 231, + "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "transfer": false, "callable": false, "call_date": 0, @@ -15060,20 +15060,48 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, + { + "tx_index": 102, + "tx_hash": "546a00d5b7d90d08a93e90c60db337844aa0f4226cad247115847f1ce66af8c4", + "msg_index": 0, + "block_index": 229, + "asset": "PREMINT", + "quantity": 0, + "divisible": true, + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "change_description", + "confirmed": true, + "block_time": 1731271496, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, { "tx_index": 101, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -15088,20 +15116,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731254880, + "block_time": 1731271493, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -15116,20 +15144,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254877, + "block_time": 1731271490, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -15144,41 +15172,13 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731254873, + "block_time": 1731271485, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 100, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", - "msg_index": 0, - "block_index": 225, - "asset": "STARTNOW", - "quantity": 0, - "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "let's start now", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731254870, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 45, - "result_count": 50 + "next_cursor": 46, + "result_count": 51 } ``` @@ -15187,7 +15187,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e` (str, required) - The hash of the transaction to return + + tx_hash: `9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d` (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. @@ -15198,15 +15198,15 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", "msg_index": 0, - "block_index": 231, + "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "transfer": false, "callable": false, "call_date": 0, @@ -15221,7 +15221,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15253,16 +15253,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -15276,7 +15276,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a` (str, required) - The hash of the transaction to return + + tx_hash: `9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788` (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. @@ -15289,16 +15289,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -15332,9 +15332,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15342,14 +15342,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254457, + "block_time": 1731271021, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", + "tx_hash": "344537a26f8c69054312506b9b1252f202af4e5028bc4e3071cf7b31754c0e10", "block_index": 128, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15357,7 +15357,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254453, + "block_time": 1731271016, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15371,7 +15371,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f` (str, required) - The hash of the transaction to return + + tx_hash: `5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06` (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. @@ -15383,9 +15383,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15393,7 +15393,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254457, + "block_time": 1731271021, "fee_fraction_int_normalized": "0.00000000" } } @@ -15430,10 +15430,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_index": 231, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_index": 232, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -15458,7 +15458,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15467,10 +15467,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "tx_index": 101, "block_index": 228, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "PREMINT", "asset_parent": "", "asset_longname": "", @@ -15495,7 +15495,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254880, + "block_time": 1731271493, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15504,10 +15504,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "tx_index": 100, "block_index": 226, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -15532,7 +15532,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254873, + "block_time": 1731271485, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15541,10 +15541,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ef4643f3991e759ab553ffe8360a89ffc3cfad184f146fc8d2e87ca8897bcf3f", + "tx_hash": "ce2680f7255a82fe6cd025e4ca729d472a618ab498d52a9b739732fb7611780e", "tx_index": 99, "block_index": 224, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": null, "asset_parent": null, "asset_longname": null, @@ -15569,13 +15569,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254866 + "block_time": 1731271468 }, { - "tx_hash": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", + "tx_hash": "f7066b7ca1331586047e7fad2120f43a59214f2ed219fc45b3fdaa77e9482bdc", "tx_index": 98, "block_index": 223, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -15600,7 +15600,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254862, + "block_time": 1731271464, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15666,22 +15666,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -15690,22 +15690,22 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "8f5288cbc52cee0ba0c858a631fdb4ec475ca494ce1250d1bb167821cce03357", + "tx_hash": "0a3e395b083e1148c968d1c001e677e1c5f6bead3d667b648091e68378553db3", "tx_index": 95, "block_index": 219, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "8a25a3de871ffc28fd0f770d34f08cc4554a98097f99d02253bc3eaa3ff8b44c", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "acb771945f5a2cf1f0d1aef28b332d7c455f17d833870d333917c47c654b4e51", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731254848, + "block_time": 1731271449, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -15714,22 +15714,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "32c562b0c3f018f94006ceeb831751be04a4e4d1e5c888acc6903d426c0b4eff", + "tx_hash": "18f8f52500d475dcb4901ac5b1903b3f4cc28cd48f242ed141ad3bbe2175fbe2", "tx_index": 91, "block_index": 215, - "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", - "fairminter_tx_hash": "252832839c72492900101a52c957e169e303f24883676826c6106459088eeb7e", + "source": "bcrt1quzt5hsp3nfd3gp6z2m0uuaxm4eg5szs57df782", + "fairminter_tx_hash": "d1bad7b1c9b5636d5fae17d7cc122a2bff89bb0b0d85c50482d5c5d7e19d8393", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254832, + "block_time": 1731271424, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", + "issuer": "bcrt1quzt5hsp3nfd3gp6z2m0uuaxm4eg5szs57df782", "divisible": true, "locked": false }, @@ -15738,22 +15738,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", + "tx_hash": "0ad86cb8a8cf78d1be3fcc4c5146bdc2351f1d2847c20fccb70f17eb65d7af37", "tx_index": 46, "block_index": 150, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254553, + "block_time": 1731271112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -15762,22 +15762,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", + "tx_hash": "7a31f06df89dfbc062b8e508509939b5952952617ad94aa3a5741fffac762f1a", "tx_index": 45, "block_index": 149, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254549, + "block_time": 1731271109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -15796,7 +15796,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2` (str, required) - The hash of the fairmint to return + + tx_hash: `db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15807,22 +15807,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -15840,7 +15840,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl,bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98` (str, required) - The addresses to search for + + addresses: `bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9,bcrt1quzt5hsp3nfd3gp6z2m0uuaxm4eg5szs57df782` (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. @@ -15855,30 +15855,30 @@ Returns a list of unspent outputs for a list of addresses "result": [ { "vout": 1, - "height": 229, + "height": 198, + "value": 546, + "confirmations": 36, + "amount": 5.46e-06, + "txid": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", + "address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9" + }, + { + "vout": 1, + "height": 230, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" + "txid": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9" }, { "vout": 0, "height": 199, "value": 546, - "confirmations": 34, - "amount": 5.46e-06, - "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", - "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" - }, - { - "vout": 1, - "height": 198, - "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", - "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" + "txid": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", + "address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9" } ], "next_cursor": null, @@ -15891,7 +15891,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837` (str, required) - The address to search for + + address: `bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d` (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 @@ -15907,28 +15907,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "430f2f6af5d086de0957173ccd23c8921ae83d44e96a92931206439fc46fc016" + "tx_hash": "bee1b0fc99c70e99f8c41ceed8cb610c849a5439f9a654baad8eddce31e0b66c" }, { - "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20" + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788" }, { - "tx_hash": "154b8bb5390b38ff4a6ae1c88c16728d97602c216e7d19084feb7ebd17579624" + "tx_hash": "c1635582d64e4c888f89e4cf95d832bcb00f05dacf45eaaef84ec8bd0dc6e889" }, { - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a" + "tx_hash": "a257805ebba8b3532e568a0e5a85c584259488c3d84a4ed3cedff14efa3abaa1" }, { - "tx_hash": "5542f81df41a2cb680ba432837f02ae087b79c179d89e41855c99742be8e3cc1" + "tx_hash": "1e2210fcc64ecea176a51c6b31d011f4c3da6fb1222929cf789cff5b0a45b3a2" }, { - "tx_hash": "3413248ef32c2e10be0c01ccf7140560bceb838a2e720672fad7272378df44c1" + "tx_hash": "9a851eee9cbd9fc676f74f9c91aa294c274fbac2361a01ce5e437c5a0ea87dc1" }, { - "tx_hash": "8ab1d9a99539d27dccee83a8d5583c6bc701b6104d3190a48de6b425d914f5c6" + "tx_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1" }, { - "tx_hash": "4514303fcf21a4dc904cc3f1e01bdb4bca8c6ea71258f554f767c5f8893b69f7" + "tx_hash": "befdca6ee41685d5f54a3e6efcd60de37818502ff7a2180cec784dfe583892e3" } ], "next_cursor": null, @@ -15941,7 +15941,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs` (str, required) - The address to search for. + + address: `bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa` (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. @@ -15954,8 +15954,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "df8ddf7dbccfa0a5aafe89c20466139a881a9798cb8266f65f9a33d30e4c60fe" + "block_index": 5, + "tx_hash": "c8571e763223b68810f6f6b29518b9ff31410c43d449ae41b43aa44806c8df82" } } ``` @@ -15965,7 +15965,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl` (str, required) - The address to search for + + address: `bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9` (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 @@ -15982,27 +15982,27 @@ Returns a list of unspent outputs for a specific address "result": [ { "vout": 1, - "height": 229, + "height": 230, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e" + "txid": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced" }, { - "vout": 0, - "height": 199, + "vout": 1, + "height": 198, "value": 546, - "confirmations": 34, + "confirmations": 36, "amount": 5.46e-06, - "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af" + "txid": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79" }, { - "vout": 1, - "height": 198, + "vout": 0, + "height": 199, "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822" + "txid": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476" } ], "next_cursor": null, @@ -16015,7 +16015,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr` (str, required) - Address to get pubkey for. + + address: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (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. @@ -16027,7 +16027,7 @@ Get pubkey for an address. ``` { - "result": "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" + "result": "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3" } ``` @@ -16036,7 +16036,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca` (str, required) - The transaction hash + + tx_hash: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8` (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. @@ -16048,7 +16048,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101e021aa8b812474351cc907ac9581598526da5eda468c7f9af0aac20ace443d7f0100000000ffffffff03e803000000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b00000000000000000c6a0a270c9fc71aeffa30274c871409270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb580247304402204d56aaeba7e38fd6703356f532a1b9ad579d1795df91db36495b7dca9e86411102203f224f83eb954a17591c6ac59dad86dcf6a862ea615b3aaaa77b29eb7025c051012102ad382333ae5b64be8589009507065e7b987bacf9af495c36bbdc4e9e3cd7fab900000000" + "result": "020000000001019a7cb884d187c5de8fca7bd7ce9fd3260d1e5cb9dcdc65e8ad984b787228c1f10100000000ffffffff03e803000000000000160014b4de0585da1d359bb0642317a560707be6d2c0c100000000000000000c6a0aa960f39e6ffbccb6d6ee871409270100000016001463cf563b400248c227b82d8915cbe0712c9fcba802473044022026a55be7a017543f5f1d6d2a384a7030e4b496fa964572fba6e456ee0f89cc6802205d204a01ce6d12dd7b5f6c4bd9304a26e462e926d37bc2080c062ee56e7a31a0012103573ac30b9212be71aa8f86f6a4288ffd240e422557746a940b9fdfdc0f60beb200000000" } ``` @@ -16070,7 +16070,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58539 + "result": 58611 } ``` @@ -16209,28 +16209,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106 + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107 }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "quantity": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "status": "valid", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16240,22 +16240,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16265,22 +16265,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "address": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", - "block_index": 232, - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "block_index": 233, + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16290,30 +16290,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731254920.2141104, + "block_time": 1731271529.8946035, "btc_amount": 0, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "destination": "", "fee": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, - "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, + "utxos_info": "0febf93dd4b77d55a4c1aa819277b0f1af96388794f835c0efa9bed59dd60335:1 2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -16327,7 +16327,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -16358,19 +16358,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16380,7 +16380,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -16393,7 +16393,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d` (str, required) - The hash of the transaction to return + + tx_hash: `2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803` (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 @@ -16413,28 +16413,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106 + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107 }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "quantity": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "status": "valid", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16444,22 +16444,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16469,22 +16469,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "address": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", - "block_index": 232, - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "block_index": 233, + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16494,30 +16494,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731254920.2141104, + "block_time": 1731271529.8946035, "btc_amount": 0, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "destination": "", "fee": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, - "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, + "utxos_info": "0febf93dd4b77d55a4c1aa819277b0f1af96388794f835c0efa9bed59dd60335:1 2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -16531,7 +16531,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 6ffb4fa048..da4d368715 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -667,7 +667,7 @@ def compose_attach( :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) :param destination_vout: The vout of the destination output - :param destination: [Disabled after block 870000] The utxo to attach the assets to + :param destination: [Disabled after block 872000] The utxo to attach the assets to """ if util.enabled("spend_utxo_to_detach"): params = { @@ -680,7 +680,7 @@ def compose_attach( if util.CURRENT_BLOCK_INDEX > util.get_change_block_index("spend_utxo_to_detach") - 12: raise exceptions.ComposeError( - "Attach is disabled from 12 blocks before block 870000 and the activation of the new attach/detach messages types" + "Attach is disabled from 12 blocks before block 872000 and the activation of the new attach/detach messages types" ) return compose_utxo( @@ -705,8 +705,8 @@ def compose_detach( 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, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1) - :param asset: [Disabled after block 870000] The asset or subasset to detach - :param quantity: [Disabled after block 870000] The quantity of the asset to detach (in satoshis, hence integer) + :param asset: [Disabled after block 872000] The asset or subasset to detach + :param quantity: [Disabled after block 872000] The quantity of the asset to detach (in satoshis, hence integer) """ if util.enabled("spend_utxo_to_detach"): params = { @@ -717,7 +717,7 @@ def compose_detach( if util.CURRENT_BLOCK_INDEX > util.get_change_block_index("spend_utxo_to_detach") - 12: raise exceptions.ComposeError( - "Attach is disabled from 12 blocks before block 870000 and the activation of the new attach/detach messages types" + "Attach is disabled from 12 blocks before block 872000 and the activation of the new attach/detach messages types" ) return compose_utxo( diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index c30c835ff5..5e8b6ee471 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -215,13 +215,18 @@ def version(db): def init_config_table(db): + cursor = db.cursor() + + query = "SELECT name FROM sqlite_master WHERE type='table' AND name='config'" + if len(list(cursor.execute(query))) == 1: + return + sql = """ CREATE TABLE IF NOT EXISTS config ( name TEXT PRIMARY KEY, value TEXT ) """ - cursor = db.cursor() cursor.execute(sql) cursor.execute("CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)") diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index 519490c287..1e2642ebde 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -955,7 +955,14 @@ def get_assets_last_issuance(db, asset_list): def get_issuances( - db, asset=None, status=None, locked=None, block_index=None, first=False, last=False + db, + asset=None, + status=None, + locked=None, + block_index=None, + first=False, + last=False, + current_block_index=None, ): cursor = db.cursor() cursor = db.cursor() @@ -975,10 +982,14 @@ def get_issuances( bindings.append(block_index) # no sql injection here query = f"""SELECT * FROM issuances WHERE ({" AND ".join(where)})""" # nosec B608 # noqa: S608 + if util.enabled("fix_get_issuances", current_block_index): + order_fields = "rowid, tx_index" + else: + order_fields = "tx_index" if first: - query += f""" ORDER BY tx_index ASC""" # noqa: F541 + query += f""" ORDER BY {order_fields} ASC""" # noqa: F541 elif last: - query += f""" ORDER BY tx_index DESC""" # noqa: F541 + query += f""" ORDER BY {order_fields} DESC""" # noqa: F541 cursor.execute(query, tuple(bindings)) return cursor.fetchall() diff --git a/counterparty-core/counterpartycore/lib/messages/issuance.py b/counterparty-core/counterpartycore/lib/messages/issuance.py index d5a1443c6b..4d8e48238d 100644 --- a/counterparty-core/counterpartycore/lib/messages/issuance.py +++ b/counterparty-core/counterpartycore/lib/messages/issuance.py @@ -239,7 +239,10 @@ def validate( problems.append("call price for non‐callable asset") # Valid re-issuance? - issuances = ledger.get_issuances(db, asset=asset, status="valid", first=True) + issuances = ledger.get_issuances( + db, asset=asset, status="valid", first=True, current_block_index=block_index + ) + print(issuances) reissued_asset_longname = None if issuances: reissuance = True @@ -298,7 +301,7 @@ def validate( # validate parent ownership for subasset if subasset_longname is not None and not reissuance: parent_issuances = ledger.get_issuances( - db, asset=subasset_parent, status="valid", first=True + db, asset=subasset_parent, status="valid", first=True, current_block_index=block_index ) if parent_issuances: last_parent_issuance = parent_issuances[-1] @@ -410,7 +413,9 @@ def compose( ): # Callability is deprecated, so for re‐issuances set relevant parameters # to old values; for first issuances, make uncallable. - issuances = ledger.get_issuances(db, asset=asset, status="valid", first=True) + issuances = ledger.get_issuances( + db, asset=asset, status="valid", first=True, current_block_index=util.CURRENT_BLOCK_INDEX + ) if issuances: last_issuance = issuances[-1] callable_ = last_issuance["callable"] @@ -825,8 +830,10 @@ def unpack(db, message, message_type_id, block_index, return_dict=False): ) -def _get_last_description(db, asset, default): - issuances = ledger.get_issuances(db, asset=asset, status="valid", first=True) +def _get_last_description(db, asset, default, block_index): + issuances = ledger.get_issuances( + db, asset=asset, status="valid", first=True, current_block_index=block_index + ) if len(issuances) > 0: return issuances[-1]["description"] # Use last description @@ -907,7 +914,9 @@ def parse(db, tx, message, message_type_id): if len(balances_result) <= 1: if len(balances_result) == 0: - issuances_result = ledger.get_issuances(db, asset=asset, last=True) + issuances_result = ledger.get_issuances( + db, asset=asset, last=True, current_block_index=tx["block_index"] + ) owner_balance = 0 owner_address = issuances_result[0]["issuer"] @@ -1008,7 +1017,7 @@ def parse(db, tx, message, message_type_id): description_locked = False if status == "valid" and description: - last_description = _get_last_description(db, asset, description) + last_description = _get_last_description(db, asset, description, tx["block_index"]) if description.lower() == "lock": lock = True description = last_description diff --git a/counterparty-core/counterpartycore/lib/messages/order.py b/counterparty-core/counterpartycore/lib/messages/order.py index a21e765cf7..35c267cade 100644 --- a/counterparty-core/counterpartycore/lib/messages/order.py +++ b/counterparty-core/counterpartycore/lib/messages/order.py @@ -436,11 +436,11 @@ def validate( if not give_quantity or not get_quantity: problems.append("zero give or zero get") if give_asset not in (config.BTC, config.XCP) and not ledger.get_issuances( - db, status="valid", asset=give_asset + db, status="valid", asset=give_asset, current_block_index=block_index ): problems.append(f"no such asset to give ({give_asset})") if get_asset not in (config.BTC, config.XCP) and not ledger.get_issuances( - db, status="valid", asset=get_asset + db, status="valid", asset=get_asset, current_block_index=block_index ): problems.append(f"no such asset to get ({get_asset})") if expiration > config.MAX_EXPIRATION: diff --git a/counterparty-core/counterpartycore/lib/messages/sweep.py b/counterparty-core/counterpartycore/lib/messages/sweep.py index 0418da66a7..4d82f55b9a 100644 --- a/counterparty-core/counterpartycore/lib/messages/sweep.py +++ b/counterparty-core/counterpartycore/lib/messages/sweep.py @@ -260,7 +260,11 @@ def parse(db, tx, message): for next_asset_issued in assets_issued: issuances = ledger.get_issuances( - db, asset=next_asset_issued["asset"], status="valid", first=True + db, + asset=next_asset_issued["asset"], + status="valid", + first=True, + current_block_index=tx["block_index"], ) if len(issuances) > 0: last_issuance = issuances[-1] diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 5743bae7c5..075b872f51 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -661,14 +661,21 @@ "minimum_version_major": 10, "minimum_version_minor": 6, "minimum_version_revision": 2, - "block_index": 870000, + "block_index": 872000, "testnet_block_index": 3195137 }, "partial_mint_to_reach_hard_cap": { "minimum_version_major": 10, "minimum_version_minor": 6, "minimum_version_revision": 2, - "block_index": 870000, + "block_index": 872000, + "testnet_block_index": 3195137 + }, + "fix_get_issuances": { + "minimum_version_major": 10, + "minimum_version_minor": 6, + "minimum_version_revision": 2, + "block_index": 872000, "testnet_block_index": 3195137 } } diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index db686eba73..ce0a3a318e 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": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", "difficulty": 545259519, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, "confirmed": true }, { - "block_index": 231, - "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", - "block_time": 1731254901, - "previous_block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", + "block_index": 232, + "block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", + "block_time": 1731271517, + "previous_block_hash": "538283ef7192084d4a8bceeff14979b8629f7e182f8d15d7957141165b72df4e", "difficulty": 545259519, - "ledger_hash": "180850ce0b31e4fd127682e0e1afded59ea1e11398637439bc37ca50f04b5191", - "txlist_hash": "3ec05057b4ab4a5f152cca04fcfe30123787f9510f1a0eea7d72553adac94dc0", - "messages_hash": "d4c83f158437ba9f21c62daac94d303681f811523d2d54a7defc454d6c38b770", + "ledger_hash": "2fba4d621ea089de66062c4314450044de076db6e58cb20e3cd26cf7b01991f6", + "txlist_hash": "7a9d01fa9670f33ef60c643b6235a55b07af98a85b5a626713e69dc12492dc7e", + "messages_hash": "2f882c062ef7e00d0e8cbba5d5c5b6c9a417a976846d794c47a011c32fc3f242", "transaction_count": 1, "confirmed": true }, { - "block_index": 230, - "block_hash": "103d6ac79171ea895955557fc9b8b71063bc1c46ad6769941f45d558a2c25c7d", - "block_time": 1731254888, - "previous_block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", + "block_index": 231, + "block_hash": "538283ef7192084d4a8bceeff14979b8629f7e182f8d15d7957141165b72df4e", + "block_time": 1731271504, + "previous_block_hash": "64da2574b01e59c7586eeb89b106141a063a85f013b5392d2fe4dd58f644df3b", "difficulty": 545259519, - "ledger_hash": "0222e83fa9903b5404178a0f4ee1bbd92e97efab2939359a81cf0b834f10034c", - "txlist_hash": "318d085bbb981ac740abeaf46025a94ebded272068646111c57e73f9d3fca44d", - "messages_hash": "d08241c8f2e3d34a4a707168cd53052fed26353d1a0887817db4947737416b57", + "ledger_hash": "a264e9fb02554219399ceb897d3184bf06fa4ddc9c318f6768a59b000339bea5", + "txlist_hash": "88013a9036b1147734dc4a51fa5b3e0d1dcc38c755e0beb5098f17c0f2c1e84b", + "messages_hash": "cf282b58b8ca94ad1cd81d022cfc67c5fdd26e4d0459de50748b0a9a75757e0d", "transaction_count": 1, "confirmed": true }, { - "block_index": 229, - "block_hash": "4c928759469991f1f7d1f9d0c84eee6470b5616541f843c85e0ec323cb4e2155", - "block_time": 1731254884, - "previous_block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", + "block_index": 230, + "block_hash": "64da2574b01e59c7586eeb89b106141a063a85f013b5392d2fe4dd58f644df3b", + "block_time": 1731271499, + "previous_block_hash": "674ff53694e4f82ee6600f905ab945c951ccdc21dab59014a8a07bfd9f3c56e6", "difficulty": 545259519, - "ledger_hash": "9f9ba7dcd29310997d22a3c8446a8e6f706c1d4f1593255d015735667813225d", - "txlist_hash": "e93494f6fba71e024561c3e6fc71302abb98aa6dd990d700e091d1e231594ead", - "messages_hash": "dc0196cb5ee35636618c782a58ba3dd86514cf921c24f0f5022b1db280fb5d99", + "ledger_hash": "43d79b782b895b2ffe72f1497202a2fd827e63fa5f1fa8924e27650609f05504", + "txlist_hash": "bbaff2629915fc3a621fd2e070d9ee2449ee517172da014e19ae45d0d39ed041", + "messages_hash": "2df42dae5b5e379854425aba5f3c5af3f408bc8d5a44f50c82c5810a35e8f3ae", "transaction_count": 1, "confirmed": true }, { - "block_index": 228, - "block_hash": "54719a4834fd91604991acbccfcfab220d6f4f55a21d1867981a146d24af4fb2", - "block_time": 1731254880, - "previous_block_hash": "66883236cb1a0b159e370a27d3bbc346d6b7c19a0240e511006224cf04a073eb", + "block_index": 229, + "block_hash": "674ff53694e4f82ee6600f905ab945c951ccdc21dab59014a8a07bfd9f3c56e6", + "block_time": 1731271496, + "previous_block_hash": "2d62a566f978fbb4512f702cf811f22d3fc9a0710848614b4871cd93dfb0f1b4", "difficulty": 545259519, - "ledger_hash": "7d839fed1f121f13e251282c6c447c32a94fd4ccb27318af957d622bb6f7f762", - "txlist_hash": "6da25e260b5c39bfeabb4f28cc61cf91d6535b6be2c366e460bd6bf611a06513", - "messages_hash": "a8d1c8354711b9f6064172c3f132ec6084b05fc1f45a23f7fdab9bc139cdff9d", - "transaction_count": 0, + "ledger_hash": "59025e76c386e0c29c9a1bb2a9060f6af755903aa5c8683d8294fc276e7533b6", + "txlist_hash": "fb237efe34b1b25ed0a32a8f383754e37f00af9c23a72dc1af52e7c62d32256b", + "messages_hash": "3d8bfb85af1033891453b96f3594e67fbaf28a2c84119a10a63875b4926557df", + "transaction_count": 1, "confirmed": true } ], - "next_cursor": 227, - "result_count": 132 + "next_cursor": 228, + "result_count": 133 }, "/v2/blocks/": { "result": { - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", "difficulty": 545259519, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", "difficulty": 545259519, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null }, { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" } ], - "next_cursor": 902, + "next_cursor": 908, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,32 +300,32 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca" + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 232, - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "block_index": 233, + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 232, + "block_index": 233, "address": null, "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -376,21 +376,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 232, + "block_index": 233, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 232, + "block_index": 233, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -424,21 +424,21 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 232, + "block_index": 233, "address": null, "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "object_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "block_index": 211, "confirmed": true, - "block_time": 1731254816 + "block_time": 1731271400 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "offer_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "status": "valid", "confirmed": true, - "block_time": 1731254702 + "block_time": 1731271257 } ], "next_cursor": null, @@ -481,19 +481,19 @@ "result": [ { "tx_index": 101, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "block_index": 228, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731254880, + "block_time": 1731271493, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "description": "My super description", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false }, @@ -506,15 +506,15 @@ "/v2/blocks//issuances": { "result": [ { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", "msg_index": 0, - "block_index": 231, + "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -540,11 +540,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -564,11 +564,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -594,29 +594,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_index": 231, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_index": 232, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -742,18 +742,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -765,18 +765,18 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23", - "block_time": 1731254901, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc", + "block_time": 1731271517, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e:1 2 ", + "utxos_info": " 9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -810,58 +810,58 @@ "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 103, - "result_count": 106 + "next_cursor": 104, + "result_count": 107 }, "/v2/transactions/info": { "result": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "06991a9ab0278631c053df141fb4533394db53965f8ee43a0d7c6bb651cfd600", + "hash": "249d2087e38d115e640482ee9150dca0cd19f3ac54579c433f7c55848f3e66c6", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c44c85a5421a4defe39d56ac66af08173a836cc613238415b77215ed8d1d331d", + "hash": "c8aa90c7ebf0425dcad6a735affcd9b10322b175cac5af1ab80ddeb63f28c33c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "aeaa8b96057a5383a7277fabbd68e1a0ac3aff4e5b698f82287c711870586686", + "hash": "b2ee965c73342fc45ad120655a615d13a3a6c04ff3558adf560719c5542b6a91", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bfe4c05f1bd874a0e89d006d84ffe98293a63b1a64925ee199c67b460a03466e", + "hash": "4b350f6f0f4ac3f9f2c037554143e13ea31f4a5e83d4fb707a80b4d7a5155ddb", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "b5d0e877b2918cfc3f6bc168f10e1e147b969c122db50d301338bec7bf1c017a", + "hash": "e8445674f80854458388741f892c714fc93b2a233ba1c4e787b4f71811bd5dab", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "8b6026dca74b1abc7b94a9f587188e8e882d0ba176a72ef5e16d2a5759bd1653", + "hash": "bd184f203eed07a512e87457a2ea75082c48c080cd0e611d3f675e719aa9a19a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -871,38 +871,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512102ecddb20e5c8640d4817e9a3782a3a332d15d0fda3ab771212beba56e64f18ea22102cefd60911961ab06708a88ea13ede051724a0b3097bbc179c1c7aa16d963b57821025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + "script_pub_key": "512103384f004d2eeae033788f9bb130036f11086142b1fae570a6ca22508f0a4304e621029227cd8fd8526a61cad82f0285d09dc9b32dc52e808b34aa6d8b14a2bf7762812103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae" }, { "value": 1000, - "script_pub_key": "512102ecddb20e5c8640d4811a07f5492510f8a4ce2f75521a29a20d3beb7ff27bb94521038205e033f168340d2faf59579c3111724ccdf55732403ff96ed2ac7f000ca5a221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + "script_pub_key": "512103384f004d2eeae03378c4e95133d83b51ff83fc5ed6e85e7365628274cf237cc6210216814d5cdd7df0acf3e750d24f77d354e333f026a8fd4147e6070a70a158ffee2103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae" }, { "value": 1000, - "script_pub_key": "512102c2ddb20e5c8640d4817d9a74020de840ce71b6ae70d3a1d6655ecb129716d65321020205e03837a9258487af59579c3111721ecdf55732403ff96492ac7f000ca54221025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a53ae" + "script_pub_key": "512103194f004d2eeae033788c9bb2b0a10ae185c0100b0bc24a580e4c0a6dcfe7a8ef210216814d5cdd7df086e652c567f3bdd354e333f026a8f7c42a836a65432158ff1c2103d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a353ae" }, { "value": 29999987000, - "script_pub_key": "00147dfc55f48da0262381a8abd3c21e984b925dce68" + "script_pub_key": "00145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d" } ], "vtxinwit": [ - "3044022008303650bba19119e84d8ae1d93425364969ac01ba81dbbd601b7bc6f81ea207022032c65a7361de568ae4a3989215a23a2dd2e123ff8cd2b89611ed451a15fde04e01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "30440220632c5f0c97c8509288c2b9a94abf5ba2771223a4e9bac6e6aca11e57e1f311e202202205465611af3dd6cb4a73f47631db3704819b654758b3112abe0ede1baeddf601", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207ddc605727d370813844994471fa50cd27deb4c22ec4c89af22029e7e7760fa80220411fc6d125f4fe78a8f1633dbb9e4db905f8ccead0a8cc10358c20476d191aa901", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207f35e425e4408e3af324628a27fa75fe4b46d9eded31a4df467a8308896d5c8702205917c50b1ae17fd1c31e8234c92326d6b17911aa09cddb11c6c2e9c9d26cc35a01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207250497805c66f8abf9bbfe740ba66013527d5329d21b10c78ca65eb66973c06022062be84a7be99f871adea78e1e0420f48de41e89270d8c1cbd90b002ab11c82dc01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a", - "304402207dcb62f6d0eedddf2468cf88570476f694309528ac3b093eecf60f0a26cc159a02207ccb59568361d4f9d1af252cd27bf26cde9b0671f9b397670ea75f526e0b310c01", - "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" + "3044022012227e00cbfd214b918d5295305e7dcce6fab3b55a68bb6955a35882f591a222022043400981cf0e2d91906441cba25cc9cf7be86161950dac3dacffaa6234830ae201", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "304402205a5d696e7b7c9ccc2e8c077ea244a4d413e599358acf87c1f2c589900b955fe402203f9936d83d735f8fad5257f34a7a850844a126bec51706bd8fa3beae7ee5f8d101", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "3044022036f9ca3663558c48c9b996d79e17a8b67947fe94cf52fc72ab4452fa1aadb1df0220514d5acd670b3a386b3ec3be4627781e70d9059914cb3e495db2d4ba7fea398a01", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "3044022034d2fde2bc8e6c23475c86d764e73abdf53baeda66d0aede642d04648da2f7600220347ffee01c3202cdb427861c8d3ae7535c98db673512e2cef6e8698b253d227001", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "3044022008e3c4bf5e79a2509952e74acad4d0969f2e7cd8fb71a117d89a61cd668c198202207092ec6519fe3847033e1abd98c4a355b79b40ead0561ca3d992df74ad63d05c01", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3", + "30440220713e47f851d469945d38339137ce358af7631508554bdd838736c774ddcca150022043fae0d24f983de9e4b7840bc66dbe0015b784599e4c8b4512874d65b9e1a9df01", + "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3" ], "lock_time": 0, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", - "tx_id": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3" + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", + "tx_id": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c" }, "unpacked_data": { "message_type": "mpma_send", @@ -910,14 +910,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, - "memo": "the memo", + "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -925,9 +925,9 @@ }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, - "memo": "the memo", + "memo": "memo1", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -945,18 +945,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "87da076fec5031c75ca96944f79c5cfce9c91aff9a625b6e86584b11eabc2b25", + "hash": "3503d69dd5bea9efc035f894873896aff1b0779281aac1a4557db7d43df9eb0f", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -966,20 +966,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e5b2b3a8ce9ef04719a1e5173cde08413a27f1b71fedd6e7add951c68bb503f8fb72233099f2397955b2e882da38b" + "script_pub_key": "6a2eedb1b0dd1c724a21530decfc0a15d56ded35fcbea80894d58b2aab1f4a5150205c8d27f1a8c0e7ec76eeeac277b8" }, { "value": 4949930546, - "script_pub_key": "0014a5550669d96f10679dc14b28f8b86abf99f322c9" + "script_pub_key": "0014eee171e19e2f9d4872e38379b1b07a43ec55dd2a" } ], "vtxinwit": [ - "3044022071914c8262f021a4b2ff134a6804455a224b8eedf98901e6b762e3babe2ba387022002da22c688796de57c5c40aebb8db1088711128cd3a056c142335c6fe4f7082a01", - "03dbfda71e1e6c7861bc1e67e4d8364d7da406d541a6c70a4f073087807d2c4088" + "30440220549a1647850708aaad212e7d90014b61e06ace18e1649a0b81b31991998c707c0220522af885d0c2209e4d690b5c4b815591f4f937962a1c29ad2e06ef54a4fa998a01", + "0399d65cb1b554434fbd6fe34f2e80bdf378cc9266e7b860890956985ec44d7541" ], "lock_time": 0, - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_id": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d" + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_id": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803" }, "unpacked_data": { "message_type": "enhanced_send", @@ -987,7 +987,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -1013,18 +1013,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1038,18 +1038,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_time": 1731254916, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_time": 1731271525, + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1064,32 +1064,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1100,20 +1100,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1123,24 +1123,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1150,24 +1150,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 902, + "event_index": 908, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 232, - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "block_index": 233, + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "msg_index": 1, "quantity": 2000000000, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", "status": "valid", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1177,43 +1177,43 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 901, + "next_cursor": 907, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1224,20 +1224,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1247,24 +1247,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1274,24 +1274,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 902, + "event_index": 908, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 232, - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "block_index": 233, + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "msg_index": 1, "quantity": 2000000000, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", "status": "valid", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1301,22 +1301,22 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 901, + "next_cursor": 907, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1324,7 +1324,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1336,11 +1336,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1348,11 +1348,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1366,29 +1366,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1403,7 +1403,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1421,19 +1421,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1443,24 +1443,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1470,36 +1470,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": null, @@ -1508,19 +1508,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1530,24 +1530,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1557,36 +1557,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": null, @@ -1599,7 +1599,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1609,7 +1609,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1620,7 +1620,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1630,7 +1630,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1641,7 +1641,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1651,7 +1651,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1662,7 +1662,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1672,7 +1672,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1683,7 +1683,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1693,7 +1693,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1707,17 +1707,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_hash": "7aafa1c8c0631b0be1c2ac6752e383f8738db022352447eff9b7be7125a347e4", - "block_time": 1731254774, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "block_hash": "3b01bf4f31970d0e8cc12de39b9e723f73bc5ed723ef4e028d34bc03702aa205", + "block_time": 1731271367, + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466:0 4 ", + "utxos_info": " b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1725,14 +1725,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1740,7 +1740,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1759,17 +1759,17 @@ }, { "tx_index": 80, - "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", + "tx_hash": "f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca", "block_index": 204, - "block_hash": "454db558177ebd44fffd199336a1838eed9583efd438a8569a3e715fc3275db8", - "block_time": 1731254770, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "block_hash": "1ae3975df3240f80ec980c457abf2ae6b335b0e15947e5fe5f0e2006b6a2a4fb", + "block_time": 1731271363, + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807dfc55f48da0262381a8abd3c21e984b925dce6880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c9c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2ac8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314:0 4 ", + "utxos_info": " f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1777,14 +1777,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1792,7 +1792,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1811,17 +1811,17 @@ }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", - "block_time": 1731254767, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "1edfa4f3a93aef75a78faa216cde2314fcd5db174dd2d8cab43273d50edaf64c", + "block_time": 1731271359, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", + "utxos_info": " 165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1829,14 +1829,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1844,7 +1844,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1863,17 +1863,17 @@ }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", - "block_time": 1731254762, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "60eadb889fc1111a432d22c3949a2303e4f2ef1ab1e09dda5212a84a94070b67", + "block_time": 1731271355, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", + "utxos_info": " 22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1881,14 +1881,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1896,7 +1896,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1915,17 +1915,17 @@ }, { "tx_index": 77, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", - "block_time": 1731254759, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "55551e392bd68d3f668a59c30b82d78ea2fe836bc931e35a9041caac13c3812f", + "block_time": 1731271351, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "02000000178d82231300000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "supported": true, - "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", + "utxos_info": " 21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1933,12 +1933,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -1958,29 +1958,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "block_time": 1731254870 + "order_match_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "block_time": 1731271482 }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1990,37 +1990,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "block_time": 1731254816 + "order_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "block_time": 1731271400 }, - "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", + "tx_hash": "38376655951f2f17adb5fd7cb1f6d4f4ac80c6c8d64e7b2e3dc45cd112ffc86d", "block_index": 211, - "block_time": 1731254816 + "block_time": 1731271400 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731254816, + "block_time": 1731271400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2030,9 +2030,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", + "tx_hash": "38376655951f2f17adb5fd7cb1f6d4f4ac80c6c8d64e7b2e3dc45cd112ffc86d", "block_index": 211, - "block_time": 1731254816 + "block_time": 1731271400 }, { "event_index": 698, @@ -2040,15 +2040,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "status": "valid", - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "tx_index": 81, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2058,9 +2058,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_time": 1731254774 + "block_time": 1731271367 } ], "next_cursor": 698, @@ -2069,18 +2069,18 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "quantity": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "status": "valid", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2090,22 +2090,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2115,22 +2115,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "address": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", - "block_index": 232, - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "block_index": 233, + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2140,30 +2140,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731254920.2141104, + "block_time": 1731271529.8946035, "btc_amount": 0, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "destination": "", "fee": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, - "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, + "utxos_info": "0febf93dd4b77d55a4c1aa819277b0f1af96388794f835c0efa9bed59dd60335:1 2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -2177,7 +2177,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -2186,7 +2186,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2194,14 +2194,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2209,14 +2209,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2224,14 +2224,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2246,7 +2246,7 @@ "quantity_normalized": "825.99966000" }, { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2254,7 +2254,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2267,7 +2267,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2289,16 +2289,16 @@ "result": [ { "block_index": 225, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2310,16 +2310,16 @@ }, { "block_index": 205, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "event": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2331,16 +2331,16 @@ }, { "block_index": 204, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", + "event": "f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2352,16 +2352,16 @@ }, { "block_index": 204, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2373,16 +2373,16 @@ }, { "block_index": 202, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "event": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2400,16 +2400,16 @@ "result": [ { "block_index": 203, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "event": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2421,20 +2421,20 @@ }, { "block_index": 203, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "event": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2442,16 +2442,16 @@ }, { "block_index": 202, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "event": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2463,20 +2463,20 @@ }, { "block_index": 202, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "event": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2484,20 +2484,20 @@ }, { "block_index": 201, - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "event": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254759, + "block_time": 1731271351, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2516,9 +2516,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", + "tx_hash": "344537a26f8c69054312506b9b1252f202af4e5028bc4e3071cf7b31754c0e10", "block_index": 128, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2526,7 +2526,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254453, + "block_time": 1731271016, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2536,15 +2536,15 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 3, - "tx_hash": "abd596953bb4268a1f68698acfba6f154c46ef6300d90825a905f29e304c5796", + "tx_index": 0, + "tx_hash": "f8253a7e9085cffe84980c0f47a2c0a051376f796729ca9c0a9bdad44f10bb03", "block_index": 112, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2556,10 +2556,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2567,7 +2567,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2580,10 +2580,10 @@ }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2591,11 +2591,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2604,10 +2604,10 @@ }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2615,11 +2615,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2628,10 +2628,10 @@ }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2639,7 +2639,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2652,10 +2652,10 @@ }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2663,11 +2663,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2682,10 +2682,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "98528967e6e9f43e74383b573458cc1247d78ce15db78cfa1a69e34ad0e75d40", + "tx_hash": "18f32b6f9f5c51dc06b5aa57f9b62c50a4d5eba38c0d56e67c71d66629ae4e98", "block_index": 142, - "source": "2806c521e06299cd664aeba227bd9b0428cc98aa42ce5233e4cfc144e46f91ff:0", - "destination": "bcrt1qakuwz8ue7xlmjra8wmg3a0csaxr4najwazxsva", + "source": "57ebf27703a13d23dc4bd494eed117326f76049cfdabc984d694e8a8406fcac2:0", + "destination": "bcrt1qex6nkyqpgxe5eh8v5cjj2rsprpahljqh9qgqyd", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2693,11 +2693,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254522, + "block_time": 1731271069, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2722,9 +2722,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2733,7 +2733,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2744,7 +2744,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2761,9 +2761,9 @@ }, { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2772,7 +2772,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2783,11 +2783,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2805,9 +2805,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2816,7 +2816,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "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": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2848,19 +2848,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", + "tx_hash": "e2a64b24613a23b21d22cba2f920079264624492d777728988eab84cb6fa169f", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "dispenser_tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2868,7 +2868,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2883,11 +2883,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -2897,19 +2897,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2917,7 +2917,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2932,7 +2932,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2946,19 +2946,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2966,7 +2966,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2981,7 +2981,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3001,19 +3001,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", + "tx_hash": "e2a64b24613a23b21d22cba2f920079264624492d777728988eab84cb6fa169f", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "dispenser_tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3021,7 +3021,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3036,11 +3036,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3050,19 +3050,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3070,7 +3070,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3085,7 +3085,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3099,19 +3099,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3119,7 +3119,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3134,7 +3134,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3154,19 +3154,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3174,7 +3174,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3189,7 +3189,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3203,19 +3203,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3223,7 +3223,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3238,7 +3238,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3258,19 +3258,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3278,7 +3278,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3293,7 +3293,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3307,19 +3307,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3327,7 +3327,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3342,7 +3342,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3361,16 +3361,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -3381,14 +3381,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", + "tx_hash": "8abebb03d132f5adb6e50fe6bafadb9cd285c6a248c4f889a0e29053ac46edee", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -3403,20 +3403,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254756, + "block_time": 1731271338, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "fbe7c7b2601b5e45c7a465623ce2ec1813ff7d21e64af6ad3aa4fe12f080978e", + "tx_hash": "1b7bf2bbc881a2519d87d9d00bb2a4f73edee4553773127878016f703bef1160", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -3431,20 +3431,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254577, + "block_time": 1731271143, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "2f2a90b36ea6a737b704690e85dca46764a4630daf9b65a724706cd4726be4e5", + "tx_hash": "2a6128e030e6631c34dc6912ca11a0992a3f42c65257837c08227b57ec38fc81", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -3459,20 +3459,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731254572, + "block_time": 1731271140, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "02c4a1217b737f89b976fd0543f63425b3c16be45fa1d89db326c0164fdfca11", + "tx_hash": "86b7e43b1444fb3bc88e13abcf15c936ecb5fa9e2a3770b4df73fafbbe6e2783", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -3487,20 +3487,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254568, + "block_time": 1731271126, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "d13655dbff39da617986c7f2a4f0fd17a34f40880b107514372f1c7f3703a9d7", + "tx_hash": "53acd4d44793e487aa50fbdca1da16e4725deee4ff18461efc4c19d3b8a07c1d", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "transfer": false, "callable": false, "call_date": 0, @@ -3515,7 +3515,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731254564, + "block_time": 1731271123, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3529,8 +3529,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -3538,16 +3538,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731254756, - "last_issuance_block_time": 1731254756, + "first_issuance_block_time": 1731271338, + "last_issuance_block_time": 1731271338, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 10000000000, @@ -3555,16 +3555,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731254564, - "last_issuance_block_time": 1731254572, + "first_issuance_block_time": 1731271123, + "last_issuance_block_time": 1731271140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 180, @@ -3572,16 +3572,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731254546, - "last_issuance_block_time": 1731254553, + "first_issuance_block_time": 1731271104, + "last_issuance_block_time": 1731271112, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -3589,16 +3589,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731254502, - "last_issuance_block_time": 1731254502, + "first_issuance_block_time": 1731271058, + "last_issuance_block_time": 1731271058, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 40, @@ -3606,8 +3606,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731254446, - "last_issuance_block_time": 1731254450, + "first_issuance_block_time": 1731271009, + "last_issuance_block_time": 1731271013, "supply_normalized": "0.00000040" } ], @@ -3620,8 +3620,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -3629,16 +3629,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731254756, - "last_issuance_block_time": 1731254756, + "first_issuance_block_time": 1731271338, + "last_issuance_block_time": 1731271338, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 10000000000, @@ -3646,16 +3646,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731254564, - "last_issuance_block_time": 1731254572, + "first_issuance_block_time": 1731271123, + "last_issuance_block_time": 1731271140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 180, @@ -3663,16 +3663,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731254546, - "last_issuance_block_time": 1731254553, + "first_issuance_block_time": 1731271104, + "last_issuance_block_time": 1731271112, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -3680,16 +3680,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731254502, - "last_issuance_block_time": 1731254502, + "first_issuance_block_time": 1731271058, + "last_issuance_block_time": 1731271058, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 40, @@ -3697,8 +3697,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731254446, - "last_issuance_block_time": 1731254450, + "first_issuance_block_time": 1731271009, + "last_issuance_block_time": 1731271013, "supply_normalized": "0.00000040" } ], @@ -3711,8 +3711,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -3720,16 +3720,16 @@ "first_issuance_block_index": 200, "last_issuance_block_index": 200, "confirmed": true, - "first_issuance_block_time": 1731254756, - "last_issuance_block_time": 1731254756, + "first_issuance_block_time": 1731271338, + "last_issuance_block_time": 1731271338, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 10000000000, @@ -3737,16 +3737,16 @@ "first_issuance_block_index": 153, "last_issuance_block_index": 155, "confirmed": true, - "first_issuance_block_time": 1731254564, - "last_issuance_block_time": 1731254572, + "first_issuance_block_time": 1731271123, + "last_issuance_block_time": 1731271140, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 180, @@ -3754,16 +3754,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 150, "confirmed": true, - "first_issuance_block_time": 1731254546, - "last_issuance_block_time": 1731254553, + "first_issuance_block_time": 1731271104, + "last_issuance_block_time": 1731271112, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 100000000000, @@ -3771,16 +3771,16 @@ "first_issuance_block_index": 139, "last_issuance_block_index": 139, "confirmed": true, - "first_issuance_block_time": 1731254502, - "last_issuance_block_time": 1731254502, + "first_issuance_block_time": 1731271058, + "last_issuance_block_time": 1731271058, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "owner": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "owner": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false, "supply": 40, @@ -3788,8 +3788,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 127, "confirmed": true, - "first_issuance_block_time": 1731254446, - "last_issuance_block_time": 1731254450, + "first_issuance_block_time": 1731271009, + "last_issuance_block_time": 1731271013, "supply_normalized": "0.00000040" } ], @@ -3800,17 +3800,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "block_hash": "6443404a1763aa31a6c486fb2cc15d906f178ef76e2c15070de28375ddf9f1b5", - "block_time": 1731254767, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "1edfa4f3a93aef75a78faa216cde2314fcd5db174dd2d8cab43273d50edaf64c", + "block_time": 1731271359, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c940000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486:0 4 ", + "utxos_info": " 165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3818,14 +3818,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3833,7 +3833,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3852,17 +3852,17 @@ }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "block_hash": "6ad73276dcdbf8f1dd61ed544189ecf92ac80c32f479d886d5c1a0e3650149c8", - "block_time": 1731254762, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "60eadb889fc1111a432d22c3949a2303e4f2ef1ab1e09dda5212a84a94070b67", + "block_time": 1731271355, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf880a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe80a5550669d96f10679dc14b28f8b86abf99f322c988746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a2e5f08da152baf1276ed5af45319b4da4ac84a680d3052f9ae72c8aea65766d4e9d501e3508287cf080eee171e19e2f9d4872e38379b1b07a43ec55dd2a88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3:0 4 ", + "utxos_info": " 22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3870,14 +3870,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3885,7 +3885,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3904,17 +3904,17 @@ }, { "tx_index": 77, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_hash": "04014ef77cbe0f86cdd0915e916142bcc737dbf8295550d0f8ddb4e96035d3fd", - "block_time": 1731254759, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "55551e392bd68d3f668a59c30b82d78ea2fe836bc931e35a9041caac13c3812f", + "block_time": 1731271351, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "02000000178d82231300000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "supported": true, - "utxos_info": " 1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb:1 2 ", + "utxos_info": " 21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3922,12 +3922,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -3938,17 +3938,17 @@ }, { "tx_index": 76, - "tx_hash": "f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44", + "tx_hash": "8abebb03d132f5adb6e50fe6bafadb9cd285c6a248c4f889a0e29053ac46edee", "block_index": 200, - "block_hash": "5a4217f64ff8c0213a6329804fafb8da23ed2f3fce016f17eea71e0300a82d2d", - "block_time": 1731254756, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "0e74b4a40072932a9690d216987d44a64693de7fbd3ccc975dbae29cbe714160", + "block_time": 1731271338, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " f7eb4326da040308f5fdcc38fe8155d9146f1d5cdc6eb8f69c349f12cf932e44:1 2 ", + "utxos_info": " 8abebb03d132f5adb6e50fe6bafadb9cd285c6a248c4f889a0e29053ac46edee:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3973,17 +3973,17 @@ }, { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 193, - "block_hash": "7665d200076034c09c4354a6d3c396d6c7dae5aae7112b0e1994697cd30ff4c3", - "block_time": 1731254722, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "block_hash": "5f6cc6436eb47bafd8cf778490dcf45a52a11275fd91dd508eb36d7188ef32f3", + "block_time": 1731271295, + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730:1 2 ", + "utxos_info": " bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4000,7 +4000,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4018,20 +4018,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4053,9 +4053,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4072,7 +4072,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4100,9 +4100,9 @@ }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4119,7 +4119,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4147,9 +4147,9 @@ }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4166,7 +4166,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4194,9 +4194,9 @@ }, { "tx_index": 64, - "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "block_index": 211, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -4213,7 +4213,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254816, + "block_time": 1731271400, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4246,10 +4246,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FREEFAIRMINT", "asset_parent": "", "asset_longname": "", @@ -4274,7 +4274,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731254553, + "block_time": 1731271112, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -4286,10 +4286,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "1d297909de3cc27ea67c071294f01caa884fcd458d56f96fe2d7c1c29c533bad", + "tx_hash": "011eac9554732bf992e6d36808d55cddd07fb3b322a72a3643a2063504034ade", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4314,7 +4314,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254542, + "block_time": 1731271100, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4323,10 +4323,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", + "tx_hash": "4448177c3ac5078408cffcf18154adbd2618810957b5244d40bad24093d39969", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4351,7 +4351,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731254446, + "block_time": 1731271009, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4363,10 +4363,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4391,7 +4391,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731254421, + "block_time": 1731270982, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4403,10 +4403,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", + "tx_hash": "faca2aa49cbd27e969ec5d38423ed408c839a8beeef16a8146b889288253b00d", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4431,7 +4431,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731254417, + "block_time": 1731270977, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4443,10 +4443,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", + "tx_hash": "06eb5d29f351ae40aedf7a1014376b3ff77cdac231242aedf9e995af74a71b88", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4471,7 +4471,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731254395, + "block_time": 1731270957, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4489,22 +4489,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", + "tx_hash": "0ad86cb8a8cf78d1be3fcc4c5146bdc2351f1d2847c20fccb70f17eb65d7af37", "tx_index": 46, "block_index": 150, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254553, + "block_time": 1731271112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4513,22 +4513,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", + "tx_hash": "7a31f06df89dfbc062b8e508509939b5952952617ad94aa3a5741fffac762f1a", "tx_index": 45, "block_index": 149, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254549, + "block_time": 1731271109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4537,22 +4537,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "a37a7f152ec02b8726f12eaea05c7093256d374427dad2f82b674661455c237d", + "tx_hash": "f516c8140815d4c356e7fb47dff67a78ae802806904c3f91f3deac5f21c5b50d", "tx_index": 23, "block_index": 127, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "8a27ccdfe7390d65ab7af03bc85225fecde471e4c95df5cbdc1116b84649b8d9", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "4448177c3ac5078408cffcf18154adbd2618810957b5244d40bad24093d39969", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254450, + "block_time": 1731271013, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4561,22 +4561,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "97af3e0b31ccceb37f482dee260d70f8dfeb452b2f1dc92b67216d0291f8c050", + "tx_hash": "1e26d2385cac293da33e13f01dcf28ea8c5939dfd5ca0d8c9ad2287a1d783535", "tx_index": 21, "block_index": 125, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254442, + "block_time": 1731271005, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4585,22 +4585,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "80aaf1187fc14153a37b61308bf05bc30f7bcc8f3b67d50c52858c8f0373c07e", + "tx_hash": "a8a2a161319d12b6cc1a93924c01c34748cdf4b3a2d883ec56d5825508529d00", "tx_index": 20, "block_index": 124, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254439, + "block_time": 1731271000, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4609,22 +4609,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "6ea5d77ed565f9380bb48986cccf228f915e71a2b4efce8b3468d5152bec97cb", + "tx_hash": "c22a5ad5cb87a77c4518fde7fd174c6d24999149e371fc07fabef6c16f8bcb41", "tx_index": 19, "block_index": 123, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "da8f58765537ef1d955ea5e7d170887e2e497d297bc0942a232d406c3285bf7d", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "0400078678bc36944a69181e818e5bb4a70f32fce6d1455b051e7c762e356f23", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254425, + "block_time": 1731270986, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4633,22 +4633,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "99f1ad8c0775bc098acb32b44ea8cea14b6f1f0023ce066c5f5a236ff77b7198", + "tx_hash": "39b2d2eda54d05790cd226263cbba93d0478ac507df929d506092241b6e9ff41", "tx_index": 15, "block_index": 118, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "8c2ebb1f7c4b9e51353d33b2cc428ef2632a2ba70ffae3df9ce0251769be1199", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "faca2aa49cbd27e969ec5d38423ed408c839a8beeef16a8146b889288253b00d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254404, + "block_time": 1731270965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4657,22 +4657,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bb7b58324e702a6dedbb9687ace58eface705a181c5e0d3dac12411de5003dc6", + "tx_hash": "31de1556b839f8ae154b58e7f16d5bd908cfc3bff26c555a84de993d13760505", "tx_index": 11, "block_index": 114, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "7aaceae18051a0c44d158e7287cb27504e385c856ee18bd4941aa86a03c57495", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06eb5d29f351ae40aedf7a1014376b3ff77cdac231242aedf9e995af74a71b88", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254389, + "block_time": 1731270949, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4694,8 +4694,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4708,12 +4708,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4729,7 +4729,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4740,9 +4740,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985834, - "btc_fee": 14166, - "rawtransaction": "020000000001013c57738121e96c94e73650bb611f87908b5cc5e5912b69af60ceb57d2dde3ffd000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0200000000000000002b6a29685a41129d4cb2f1bb6bf4a4a8b1eefbe92bfd8bd589b94e43f055a53cb75fa5cc8e47347f7e0eae03aaba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985817, + "btc_fee": 14183, + "rawtransaction": "02000000000101605fda5a74afe08643cf3d04217611df795aabeff6598c8b6a5c3985f7ef6cc2000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff0200000000000000002b6a29000935376cdea2f601134c37891ad675f5ca8c9c3ff40bea60ace2a74499d07d5c13d022735ae23cd899ba052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4760,24 +4760,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "order_match_id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134ee9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "data": "434e5452505254590b72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308eccedaf64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980970, - "btc_fee": 18030, - "rawtransaction": "02000000000101faf837ac3d9a4debd1f0d0e97c35c640349b253900b98f8721ba04d2e3429075000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e80300000000000016001441da0a7652ef5a0bcf38ad343736042c8000db6000000000000000004b6a4961a6404d9c97cd92239cf806d911286d1b962983e49633f44014b93a53d9c19358a44e69e85d2314e13661a3644eee43fd13cee24e854fbdda61653714eec4a999da58ad2d304c9d53aaa7052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999980948, + "btc_fee": 18052, + "rawtransaction": "02000000000101c08e7355107a6404a8c0995badfa7171f23fdfd30c901858685164f7fca603a0000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff03e80300000000000016001405a49f0ed848ca6c382776fb6b979bae618ce3a500000000000000004b6a497fbb44d344d4839ea6178a63a634a92ff79e01120d87dbc2c9968ae88f63cec72e86392c3f217f29992870e65053a789902d5180c3a4d20dc9c5f202ac304b560cc8f31dbfd7a32b8894a7052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "order_match_id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "order_match_id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "status": "valid" } } @@ -4786,7 +4786,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4795,30 +4795,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985829, - "btc_fee": 13171, - "rawtransaction": "0200000000010148ab7971342b9d3d52e82c68dd5244d2bfc92e3f84a9e4fe956fade546ddee7e000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88aca5ba052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000" + "btc_change": 4999985813, + "btc_fee": 13187, + "rawtransaction": "02000000000101f63aac0605999653aed3aa632f3fc3b9b078ce62957f8ed49945e932b780ab6e000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac95ba052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "offer_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "data": "434e54525052545946af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "btc_in": 90000, "btc_out": 0, - "btc_change": 75834, - "btc_fee": 14166, - "rawtransaction": "02000000000101315af430627f89d3d439def1e65c592e9ff0c89b1542cee5b625c73292a5abe901000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff0200000000000000002b6a29436d82e6dc30922fc7c418915aa02e676f9f94f64e347ac1c7d24da0a7f4227647b6713dd9a08925c33a28010000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000000000000", + "btc_change": 75817, + "btc_fee": 14183, + "rawtransaction": "0200000000010166a4821454a0dff5a0a15520e0ec27ddd190d3563850ed68a46566e425fc64af01000000160014b4de0585da1d359bb0642317a560707be6d2c0c1ffffffff0200000000000000002b6a29351c8d7cdd5c88018c6f293ef1927c9dc48cfb0b932de25a4dfc2b0ebef941cd94db31a6ea16359dbd2928010000000000160014b4de0585da1d359bb0642317a560707be6d2c0c102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "offer_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "status": "valid" } } @@ -4827,7 +4827,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4845,9 +4845,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986361, - "btc_fee": 13639, - "rawtransaction": "0200000000010106cde379e95dd36b3ea209fad57609b44b869b6e732e62f852b2f1e088259876000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000226a20779ac4ada98d0b4fe4bf9082434711ce07843531a9811570d30ea7ea5fd995e5b9bc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999986344, + "btc_fee": 13656, + "rawtransaction": "020000000001013431570bcd987a89144d580de5bc96565cb511cb9a9645feae6a11e923bf11bd000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000226a20cf0750c56200dc33b7fa7d6ebb6a056d8d1e17ffbf2754562e097b2adb0c8238a8bc052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4863,7 +4863,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4886,9 +4886,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859575, - "btc_fee": 14224, - "rawtransaction": "02000000000101ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab180200000016001477f035f8932bfb0cd735529ec106b2de87f6bb58ffffffff0200000000000000002c6a2ae43a4014264e42e5f579da24489611fa7a122a056812981d2c2f1a3397e1a5d2c1f4faf3aef27bbc7ee8f7dc08270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb5802000000000000", + "btc_change": 4949859557, + "btc_fee": 14242, + "rawtransaction": "02000000000101b87d1384291a97f1c5dbfc91cd220e7cddb1b4c4e7bf9bc935d426c75233fca30200000016001463cf563b400248c227b82d8915cbe0712c9fcba8ffffffff0200000000000000002c6a2acce15ed1cdf0af6d69fc2dfe473ccda2e29c7454934941c7283b92966506f90f7daef9ddba177aa4bab9e5dc08270100000016001463cf563b400248c227b82d8915cbe0712c9fcba802000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4910,7 +4910,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -4918,7 +4918,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -4935,9 +4935,9 @@ "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986302, - "btc_fee": 13698, - "rawtransaction": "02000000000101533538ba2b88f3ff364dff39681971ce22b2ba3c3260c196474112caf5195a88000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a2109b489672478c741c1c7240ac504f485c12542a9f85533273e80166051bfdfb9987ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999986286, + "btc_fee": 13714, + "rawtransaction": "020000000001010ffc2572972050896d2cf0bc4430331df794f999332ddf333c7ef1e5c0cf99d5000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000236a213d6c605f3d358972909ed22b9b646f3a131d240d8928f370818b5834d62c9c51f36ebc052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4954,10 +4954,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "transfer_destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "lock": false, "reset": false, @@ -4969,9 +4969,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983766, - "btc_fee": 15688, - "rawtransaction": "020000000001019646cee2788ef1976dee63e7791cb16f7a6ef4afaf57ee103ad2da959214bee8000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000236a2197b310cd5531b936aed9a1c78b9844da8b820a05f50f1d58db3a8f713b05fd77ae96b2052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999983747, + "btc_fee": 15707, + "rawtransaction": "020000000001017635131f76ef45c08420d5c35d9d248f4dfe2124e230e5b7b98d3d7808ac932c000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff0322020000000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d0000000000000000236a21b3877981b9c024b173fc3c36241c74ed49b724c757a68a3732499b1204ae05b6e583b2052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4996,16 +4996,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", 1 ], [ "FAIRMINTC", - "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", 2 ] ], @@ -5014,26 +5014,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e545250525459030002807dfc55f48da0262381a8abd3c21e984b925dce6880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf84000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002805685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d80a2e5f08da152baf1276ed5af45319b4da4ac84a64000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785336, - "btc_fee": 20664, - "rawtransaction": "020000000001016664cdd117e2c8cf8dd22ee57388dca6dbfa4d3d0c762f409fe639b1071d3cc403000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8ffffffff03e8030000000000006951210232d85426dfdffc5373c2d4d2716428d9f744e7ab31ca3fa063e9773e823001142102704d43b1b10cf97327c9e0e70afe77b0ab4b63202788f4b4a95f2eb3d1b12d792102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aee803000000000000695121022dd85426dfdffc5373d1d4d0f119d48c03ed478d124b970bb02f69a6c9a25c582103be25c21ffa7ee65f9e95aa83da093905c53790c77f440cf4a95f125d6e35945f2102d348a4416fa1a3be13eea94869de6fd83990e38dfa2ea5881b09e792e341989453aef8ba072701000000160014ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf802000000000000", + "btc_change": 4949785311, + "btc_fee": 20689, + "rawtransaction": "020000000001015a0739fac3401699c65849a2a89571376aaa618b7b96e38da52fb8d34e6803b403000000160014a2e5f08da152baf1276ed5af45319b4da4ac84a6ffffffff03e80300000000000069512102d3f7ed1c0cbcfe428737910cd40caa8ccbba1d44e90f897441a03d5fb6129d012102ca138ffaf3f5c0989b1c94536ddcaee8f3ffae9fafbb4bcf67d4015ef2d0b8f6210226f93dd4495d496f057e352392697f8710d1d73b4735135b211904f01c34056653aee80300000000000069512102ccf7ed1c0cbcfe428724910e545a2f50c24887da280423496b88d3c23c5cb9682102c63e0e5816054d39c9a66574030901adc264e33b033fed8f67d43db04d54012d210226f93dd4495d496f057e352392697f8710d1d73b4735135b211904f01c34056653aedfba072701000000160014a2e5f08da152baf1276ed5af45319b4da4ac84a602000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5045,7 +5045,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -5063,7 +5063,7 @@ "get_asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -5075,9 +5075,9 @@ "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985249, - "btc_fee": 14751, - "rawtransaction": "020000000001014bbba36e158071fb7490d52a69d97f4bd5bafff57b54c57cabb1d38d07ddd099000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000356a3367946e68a5faf452d5d2720d177dd8174966c633ee143caf5fce4d934b9a2dc38a3d9709ae4e8982034f3ad4069ed9f5ccaedc61b8052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985231, + "btc_fee": 14769, + "rawtransaction": "020000000001015481cc3863b9dcc165d2501311b5cadb10508285bbbd43c4e7dbff7a9f388ece000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000356a336730e1c8821b6221a9ab7b15f6b6ec8c5a8ce259ec95175ff0f3e78631fce3a0fc31cc374c7c505e50accd09abc457eb97bb1a4fb8052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5099,8 +5099,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5117,19 +5117,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf8", + "data": "434e54525052545902000000000000000100000000000003e880a2e5f08da152baf1276ed5af45319b4da4ac84a6", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985541, - "btc_fee": 14459, - "rawtransaction": "02000000000101e1bd477e1e91e443d26218ea8f689f757d7aad9491dd35a5b41d432c8bdae532000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000306a2ec01fe1437f92616218f60ffa67740368895662d907a5ceae51543b0b6514b517f889450afc64bde6517b43bbc85285b9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985524, + "btc_fee": 14476, + "rawtransaction": "020000000001015a82de0c33ff19b6fe1b28ad730daca719474c1afcf2042e0fd586e5d82cd6a8000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000306a2e5de81d84eeb4327123ae2f8cdc98a87a3346bf9783c91247b81798f792fb9163d13784634177d7110d7bb6e3354d74b9052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "quantity_normalized": "0.00001000" } @@ -5139,24 +5139,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480ae4b721f2cb95c4a64d0f74eb56e7cf3e758ccf807ffff", + "data": "434e5452505254590480a2e5f08da152baf1276ed5af45319b4da4ac84a607ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986302, - "btc_fee": 13698, - "rawtransaction": "0200000000010152f183611295b2b57f46093df0b0557f9e6e8f17e1edb0a45e6852e78a51c84c000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000236a215dab6383d68496fd2d5d5abdae2f008bd1526673ac1b76de9c72f2963b66de52ab7ebc052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999986286, + "btc_fee": 13714, + "rawtransaction": "02000000000101ac3fa4889e544f5fc2c9806120d08313bd488868b0d03f645619a87e426d811f000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000236a213d8e7f5cd22b2c7d75de63176883466b6c882e5fc7a8088f127cf4ab6426858fdc6ebc052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "flags": 7, "memo": "ffff" } @@ -5166,8 +5166,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "quantity": 1000, "skip_validation": false }, @@ -5175,9 +5175,9 @@ "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984658, - "btc_fee": 14342, - "rawtransaction": "02000000000101993fdd439d2f898b5ef1a10728d58f682e9b976ed60c2960fa55aa929961d389000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff03e803000000000000160014a5550669d96f10679dc14b28f8b86abf99f322c900000000000000000c6a0aacfdb48c0cff85ea275a12b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999984641, + "btc_fee": 14359, + "rawtransaction": "020000000001011d04d506c9c425d95fb71a42905fe8917c20839f234a58158348fa88f720ffad000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff03e803000000000000160014eee171e19e2f9d4872e38379b1b07a43ec55dd2a00000000000000000c6a0a01bd60b397897ee60bf701b6052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5190,7 +5190,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5220,9 +5220,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985483, - "btc_fee": 14517, - "rawtransaction": "02000000000101dc0f9bd95afe52cee0f69978192f31caf87d8d17388398d558977898e07dcec5000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000316a2f19f727556cc7c396ac0d4055cf95a190fda442ed6797decd7d3ed3022eea5251e1119136bddfe50dd0449ba14b116b4bb9052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999985465, + "btc_fee": 14535, + "rawtransaction": "02000000000101f1e785fd2c8247bace02fede2ace76e1cda3cbdabe73c0f031670f15d3528273000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000316a2f2ce3d96ebe0d7b851d0267a1b2e145483c9bf6a3f9e7179e886a395156b9bcf9f3b465919c1e09e6361c8d0494564b39b9052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5257,14 +5257,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "divisible": true, "locked": false }, @@ -5274,9 +5274,9 @@ "data": "434e5452505254595b4f50454e464149527c30", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987122, - "btc_fee": 12878, - "rawtransaction": "020000000001017c850c46a2ea3ed5aa631290bbc4425e27e89edbcaf9ad25ae6186039ee18465000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff020000000000000000156a1340a778c237af9223c67a8e7391dbcf290378a3b2bf052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999987106, + "btc_fee": 12894, + "rawtransaction": "020000000001016b85a56ce008f063448c83bd408f1228d489cd7f8315517aca4a08695be053f8000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff020000000000000000156a13c073aebf10c1519d1fa868fd0d8006d95e86b9a2bf052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5291,7 +5291,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5309,9 +5309,9 @@ "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984644, - "btc_fee": 14810, - "rawtransaction": "020000000001010d2729602840994f39281fc445a0fb6e03413b4e6269aa9a7e3dfe868f28e549000000001600147dfc55f48da0262381a8abd3c21e984b925dce68ffffffff0322020000000000001600147dfc55f48da0262381a8abd3c21e984b925dce680000000000000000146a1200f941c4f9d9a0790a285a0744c2c090320704b6052a010000001600147dfc55f48da0262381a8abd3c21e984b925dce6802000000000000", + "btc_change": 4999984626, + "btc_fee": 14828, + "rawtransaction": "020000000001013dc80da59004277970fa9e192856e0e883104cb9321a00b91e4e544b68f16e36000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2dffffffff0322020000000000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d0000000000000000146a12b3e452486e7347ef130da3cb51d7673598aef2b5052a010000001600145685dc09d69a9ec10baa3d2a2cee9d8a4e240c2d02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5327,22 +5327,22 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171306837397461796435716e7a387164673430667579383563667766396d6e6e677261716d6372", + "data": "434e5452505254596662637274317132367a61637a776b6e3230767a7a61323835347a656d35613366387a67727064646467656b77", "btc_in": 4949951000, "btc_out": 0, - "btc_change": 4949925536, - "btc_fee": 25464, - "rawtransaction": "02000000000102ca678bfe274a4614339d490bc67948530dfdd8b1ccf91e896723f51c2cf1ab1800000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff7ee612532cb7059b554038a43917ffe301f36100116c05026d0725e4b84d8c7501000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1bffffffff020000000000000000376a35e43a4014264e42e59f1bb9563ca760ca13251371096bfc2bb541600be685c2e519928f8a96c718da6d8e5d9054cfb45df3803ddfbca0de092701000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b02000002000000000000", + "btc_change": 4949925505, + "btc_fee": 25495, + "rawtransaction": "02000000000102b87d1384291a97f1c5dbfc91cd220e7cddb1b4c4e7bf9bc935d426c75233fca300000000160014b4de0585da1d359bb0642317a560707be6d2c0c1ffffffff5d8d3c2a4e8d1246975c144b3f519f8d0c5c1aca3a3c66ed73f3d5b535f63e9c01000000160014b4de0585da1d359bb0642317a560707be6d2c0c1ffffffff020000000000000000376a35cce15ed1cdf0af6d039e4e8c330dbc90d5e61537e93e2aaaf20be4ec1f67cb34a09a83b8d7221b97b8812dc512e84a573cd43b04e881de092701000000160014b4de0585da1d359bb0642317a560707be6d2c0c102000002000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr" + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw" } } } @@ -5353,42 +5353,42 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": "", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "owner": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "owner": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "divisible": true, "locked": false, "supply": 0, "description": "", - "first_issuance_block_index": 231, - "last_issuance_block_index": 231, + "first_issuance_block_index": 232, + "last_issuance_block_index": 232, "confirmed": true, - "first_issuance_block_time": 1731254901, - "last_issuance_block_time": 1731254901, + "first_issuance_block_time": 1731271517, + "last_issuance_block_time": 1731271517, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false, "supply": 0, - "description": "", + "description": "My super description", "first_issuance_block_index": 227, - "last_issuance_block_index": 228, + "last_issuance_block_index": 229, "confirmed": true, - "first_issuance_block_time": 1731254877, - "last_issuance_block_time": 1731254880, + "first_issuance_block_time": 1731271490, + "last_issuance_block_time": 1731271496, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false, "supply": 0, @@ -5396,16 +5396,16 @@ "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731254870, - "last_issuance_block_time": 1731254873, + "first_issuance_block_time": 1731271482, + "last_issuance_block_time": 1731271485, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false, "supply": 0, @@ -5413,16 +5413,16 @@ "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731254859, - "last_issuance_block_time": 1731254862, + "first_issuance_block_time": 1731271460, + "last_issuance_block_time": 1731271464, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true, "supply": 100000000, @@ -5430,8 +5430,8 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731254852, - "last_issuance_block_time": 1731254855, + "first_issuance_block_time": 1731271453, + "last_issuance_block_time": 1731271456, "supply_normalized": "1.00000000" } ], @@ -5443,8 +5443,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "owner": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "owner": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true, "supply": 100000000, @@ -5452,15 +5452,15 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731254852, - "last_issuance_block_time": 1731254855, + "first_issuance_block_time": 1731271453, + "last_issuance_block_time": 1731271456, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5468,14 +5468,14 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5483,7 +5483,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -5496,7 +5496,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5518,9 +5518,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5537,7 +5537,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5565,9 +5565,9 @@ }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5584,7 +5584,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5612,9 +5612,9 @@ }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5631,7 +5631,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5659,9 +5659,9 @@ }, { "tx_index": 64, - "tx_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", + "tx_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", "block_index": 211, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5678,7 +5678,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254816, + "block_time": 1731271400, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5706,9 +5706,9 @@ }, { "tx_index": 56, - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5725,7 +5725,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5758,13 +5758,13 @@ "/v2/assets//matches": { "result": [ { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5778,7 +5778,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5798,13 +5798,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 56, - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5818,7 +5818,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5838,13 +5838,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "id": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d_13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", "tx0_index": 53, - "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 54, - "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5858,7 +5858,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5878,13 +5878,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 64, - "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5898,7 +5898,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5925,20 +5925,20 @@ "result": [ { "block_index": 221, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "event": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -5946,20 +5946,20 @@ }, { "block_index": 221, - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "event": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -5972,17 +5972,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 232, + "block_index": 233, "address": null, "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5993,17 +5993,17 @@ "quantity_normalized": "20.00000000" }, { - "block_index": 231, - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 232, + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, + "event": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6015,16 +6015,16 @@ }, { "block_index": 227, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "event": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254877, + "block_time": 1731271490, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6036,16 +6036,16 @@ }, { "block_index": 225, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "event": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6057,16 +6057,16 @@ }, { "block_index": 222, - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", + "event": "f7066b7ca1331586047e7fad2120f43a59214f2ed219fc45b3fdaa77e9482bdc", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731254859, + "block_time": 1731271460, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6089,14 +6089,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -6111,20 +6111,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -6139,7 +6139,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254852, + "block_time": 1731271453, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6150,11 +6150,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6162,7 +6162,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6175,10 +6175,10 @@ }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6186,7 +6186,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6199,10 +6199,10 @@ }, { "tx_index": 80, - "tx_hash": "085653341d3cb40b1c557f41e6d5b7f62052de28cdb65045c45d3c92bc6c3314", + "tx_hash": "f386ffba065927a8f365bf449559d6c92ee83e15ad5ae2ced98d6f215d4085ca", "block_index": 204, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6210,7 +6210,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6223,10 +6223,10 @@ }, { "tx_index": 79, - "tx_hash": "6ffe65b02e038cce37f52578360d90ec5056517aa5b715a5dda66ac8612b0486", + "tx_hash": "165672d88de553f6ba84c9775c23643a8c3a6c2cef7c543e656831765f84760c", "block_index": 203, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6234,7 +6234,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254767, + "block_time": 1731271359, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6247,10 +6247,10 @@ }, { "tx_index": 78, - "tx_hash": "1259bd12be9db4a825354729e7ff52d1e503cc8dfd3402c7cc4e4849dd79abc3", + "tx_hash": "22da781fdff0b429b52ed6caf7b0c7032e3c6eb2c05b28558d0da335943f3cce", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6258,7 +6258,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6277,9 +6277,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6288,7 +6288,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6299,7 +6299,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6316,9 +6316,9 @@ }, { "tx_index": 29, - "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", + "tx_hash": "9b2dfba91c2fcc8e62cad3a8e22c61d09d53da87ad78c945f36b5439623ae02b", "block_index": 133, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6327,7 +6327,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "origin": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6338,7 +6338,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254472, + "block_time": 1731271037, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6355,9 +6355,9 @@ }, { "tx_index": 30, - "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", + "tx_hash": "4541ad8106750f9e71a0a6e7bb2e09f31dc36422db1d6f325992454e6cbe1f27", "block_index": 141, - "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", + "source": "mpZ4yvyqMAQpbfAieAGK3FoTZW2incZad3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6365,10 +6365,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_hash": "735868c1db1bf723b34b0fb02d2eb35dce22b28cfec6ef549f47c93f8bf159b1", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -6377,7 +6377,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254519, + "block_time": 1731271066, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6394,18 +6394,18 @@ }, { "tx_index": 33, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6416,7 +6416,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6438,9 +6438,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6449,7 +6449,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6460,7 +6460,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6480,7 +6480,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -6489,7 +6489,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -6497,7 +6497,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "address": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -6506,7 +6506,7 @@ "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -6519,29 +6519,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6556,7 +6556,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6570,27 +6570,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", + "tx_hash": "61aa8d76312206796e24c2b70c4e0545725d844a41192c1f545c67237b022071", "block_index": 138, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6605,7 +6605,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254499, + "block_time": 1731271054, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6619,19 +6619,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6639,7 +6639,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6654,7 +6654,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6668,19 +6668,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6688,7 +6688,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6703,7 +6703,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6726,10 +6726,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "tx_index": 96, "block_index": 221, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "BURNER", "asset_parent": "", "asset_longname": "", @@ -6754,7 +6754,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -6772,22 +6772,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -6808,9 +6808,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6827,7 +6827,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6855,9 +6855,9 @@ }, { "tx_index": 56, - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6874,7 +6874,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6902,9 +6902,9 @@ }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6921,7 +6921,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6949,9 +6949,9 @@ }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6968,7 +6968,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6996,9 +6996,9 @@ }, { "tx_index": 58, - "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "block_index": 205, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7015,7 +7015,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7047,10 +7047,10 @@ }, "/v2/orders/": { "result": { - "tx_index": 103, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_index": 104, + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -7058,7 +7058,7 @@ "get_quantity": 1000, "get_remaining": 0, "expiration": 21, - "expire_index": 251, + "expire_index": 252, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, @@ -7067,7 +7067,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731254888, + "block_time": 1731271504, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7078,7 +7078,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -7097,31 +7097,31 @@ "/v2/orders//matches": { "result": [ { - "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx0_index": 102, - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "tx1_index": 103, - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx0_index": 103, + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx0_address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "tx1_index": 104, + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx1_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 229, - "tx1_block_index": 230, - "block_index": 230, + "tx0_block_index": 230, + "tx1_block_index": 231, + "block_index": 231, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 250, + "match_expire_index": 251, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731254888, + "block_time": 1731271504, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -7144,15 +7144,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "btc_amount": 2000, - "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "order_match_id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "status": "valid", "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "btc_amount_normalized": "0.00002000" } ], @@ -7163,9 +7163,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "block_index": 182, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7183,7 +7183,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731254669, + "block_time": 1731271224, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7209,9 +7209,9 @@ }, { "tx_index": 58, - "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "tx_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "block_index": 205, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7229,7 +7229,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731254774, + "block_time": 1731271367, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7255,9 +7255,9 @@ }, { "tx_index": 53, - "tx_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", + "tx_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", "block_index": 179, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7275,7 +7275,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254592, + "block_time": 1731271157, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7301,9 +7301,9 @@ }, { "tx_index": 55, - "tx_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", + "tx_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", "block_index": 202, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7321,7 +7321,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254762, + "block_time": 1731271355, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7347,9 +7347,9 @@ }, { "tx_index": 62, - "tx_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", + "tx_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", "block_index": 188, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7367,7 +7367,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254702, + "block_time": 1731271257, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7398,13 +7398,13 @@ "/v2/orders///matches": { "result": [ { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7421,7 +7421,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254770, + "block_time": 1731271363, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7441,13 +7441,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 56, - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7464,7 +7464,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254669, + "block_time": 1731271224, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7484,13 +7484,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "id": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d_13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", "tx0_index": 53, - "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 54, - "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7507,7 +7507,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254592, + "block_time": 1731271157, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7527,13 +7527,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 64, - "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7550,7 +7550,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731254870, + "block_time": 1731271482, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7576,13 +7576,13 @@ "/v2/order_matches": { "result": [ { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7596,7 +7596,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254770, + "block_time": 1731271363, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7616,13 +7616,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", + "id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", "tx0_index": 55, - "tx0_hash": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 56, - "tx1_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7636,7 +7636,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731254669, + "block_time": 1731271224, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7656,13 +7656,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b_0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", + "id": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d_13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", "tx0_index": 53, - "tx0_hash": "e07afc4db441ed939b1c9c6b01ab0ca0968cdd2b0472c6442ad4b93ebe2aca1b", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "2cd8b9c24c3a29edf30e06e9a4bab34e48fffe66050ffde4f76dfc0d5a7d144d", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 54, - "tx1_hash": "0153f07b0b5e6f3dbd5c004edeaccd428fd0f299ae7437b053cb85311d6c0f99", - "tx1_address": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "tx1_hash": "13219f3ed1986c41cf1c466788f6c2913b5dc32ede4c77e9fef3031d1af547a4", + "tx1_address": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7676,7 +7676,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254592, + "block_time": 1731271157, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7696,13 +7696,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "tx0_index": 64, - "tx0_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "tx0_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "tx1_index": 58, - "tx1_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "tx1_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7716,7 +7716,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731254870, + "block_time": 1731271482, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7736,31 +7736,31 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx0_index": 102, - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "tx1_index": 103, - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx0_index": 103, + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx0_address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "tx1_index": 104, + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx1_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", "backward_quantity": 1000, - "tx0_block_index": 229, - "tx1_block_index": 230, - "block_index": 230, + "tx0_block_index": 230, + "tx1_block_index": 231, + "block_index": 231, "tx0_expiration": 21, "tx1_expiration": 21, - "match_expire_index": 250, + "match_expire_index": 251, "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731254888, + "block_time": 1731271504, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -7801,66 +7801,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", + "tx_hash": "92dedcf8e195e2fceed307c34f2e5c36970740ad85fddd8aafb06a1f95e766fb", "block_index": 112, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 8, - "tx_hash": "f057e728263dcd95f79ed359aad4ead52077fedd3dac46899b1b14ea4e1758e9", + "tx_hash": "befdca6ee41685d5f54a3e6efcd60de37818502ff7a2180cec784dfe583892e3", "block_index": 112, - "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 7, - "tx_hash": "9ab75d2a2e8bac2541af80cdc7973b81b6464841d3b70fe3101aecd9b91eb7c1", + "tx_hash": "1f78a1b0cd0970e4a0f2c2f31205dd61593b482174466a7719dca9ec2952b7de", "block_index": 112, - "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 6, - "tx_hash": "0e994e56ceee5273e4a1fa6d2a93ae5a16505151fb63c49dc7a7d640800a5cb9", + "tx_hash": "f650077ed48b6b9edc26bdca84852403eb507bae4af560cb6c747a8c611689b3", "block_index": 112, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, { "tx_index": 5, - "tx_hash": "f2e59e2c1fcafe2177fff3fce6fed1926d7371e388af4715f63417c5756f50b1", + "tx_hash": "0ed9505edcd7a2789db31b7378548125e91dfd2204615cd0fb063df41926b994", "block_index": 112, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qex6nkyqpgxe5eh8v5cjj2rsprpahljqh9qgqyd", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -7872,9 +7872,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7883,7 +7883,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7894,7 +7894,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7911,9 +7911,9 @@ }, { "tx_index": 29, - "tx_hash": "0c27bdf3554feb01320bfeb22665288202fd8d616382cf8d73e22a457d9010a5", + "tx_hash": "9b2dfba91c2fcc8e62cad3a8e22c61d09d53da87ad78c945f36b5439623ae02b", "block_index": 133, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7922,7 +7922,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "origin": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7933,7 +7933,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254472, + "block_time": 1731271037, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7950,9 +7950,9 @@ }, { "tx_index": 30, - "tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", + "tx_hash": "4541ad8106750f9e71a0a6e7bb2e09f31dc36422db1d6f325992454e6cbe1f27", "block_index": 141, - "source": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", + "source": "mpZ4yvyqMAQpbfAieAGK3FoTZW2incZad3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7960,10 +7960,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "b7ddd3a8ecec101dbbd82a0ab31a630c7489d1ee988ba8bef1e63942e301ba80", - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_hash": "735868c1db1bf723b34b0fb02d2eb35dce22b28cfec6ef549f47c93f8bf159b1", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 0, - "last_status_tx_source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "last_status_tx_source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -7972,7 +7972,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254519, + "block_time": 1731271066, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7989,9 +7989,9 @@ }, { "tx_index": 68, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8000,7 +8000,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8011,11 +8011,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8028,18 +8028,18 @@ }, { "tx_index": 33, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8050,7 +8050,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8072,9 +8072,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8083,7 +8083,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8094,7 +8094,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8115,19 +8115,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8135,7 +8135,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8150,7 +8150,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8164,19 +8164,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8184,7 +8184,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8199,7 +8199,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8218,20 +8218,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8252,20 +8252,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8288,12 +8288,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "event": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "tx_index": 42, - "utxo": "c7ae48041c2647ba8bb21829e463c2c431e9e953c08b58a2ab683a94c4d0f186:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "utxo": "4017fe8ac5770e8bbf8d097bf660a5006c72a8f067a766e19ddfd7792b89fb8f:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "confirmed": true, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8310,47 +8310,47 @@ "/v2/events": { "result": [ { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8361,20 +8361,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8384,24 +8384,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8411,29 +8411,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 902, - "result_count": 908 + "next_cursor": 908, + "result_count": 914 }, "/v2/events/": { "result": { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 } }, "/v2/events/counts": { @@ -8444,7 +8444,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 91 + "event_count": 92 }, { "event": "SWEEP", @@ -8465,19 +8465,19 @@ "/v2/events/": { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8487,24 +8487,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 901, + "event_index": 907, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8514,36 +8514,36 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { - "event_index": 898, + "event_index": 904, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 232, + "block_index": 233, "calling_function": "utxo move", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", - "utxo_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", + "utxo_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 }, { "event_index": 862, @@ -8553,39 +8553,39 @@ "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "event": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731254877, + "block_time": 1731271490, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "description": "My super description", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "block_index": 227, - "block_time": 1731254877 + "block_time": 1731271490 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "event": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731254870, + "block_time": 1731271482, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8595,9 +8595,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 } ], "next_cursor": 819, @@ -8612,29 +8612,29 @@ "/v2/dispenses": { "result": [ { - "tx_index": 105, + "tx_index": 106, "dispense_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8649,7 +8649,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8663,19 +8663,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "b296ddfa4abd31e6df1f24b6ac876be73effc4858b3caec9b979de565b718caf", + "tx_hash": "e2a64b24613a23b21d22cba2f920079264624492d777728988eab84cb6fa169f", "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "dispenser_tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8683,7 +8683,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8698,11 +8698,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254726, + "block_time": 1731271299, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8712,27 +8712,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "49e8fbc13719ba8b91a442ad9f1cd94e9508722313f09b96729807c37aa0b05e", + "tx_hash": "61aa8d76312206796e24c2b70c4e0545725d844a41192c1f545c67237b022071", "block_index": 138, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 232, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "block_index": 233, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "oracle_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "last_status_tx_hash": null, - "origin": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "origin": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8747,7 +8747,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731254499, + "block_time": 1731271054, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8761,19 +8761,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "186da1e9c1818c27c256162959f30539458fbff99f4bd5004d1e96f8067eb017", + "tx_hash": "1bdffb0fcbc1fe077a71c95c8d011b671e3cc673dfdc54d05b06c67bd24b9188", "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8781,7 +8781,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8796,7 +8796,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254468, + "block_time": 1731271033, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8810,19 +8810,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9c244940c061a61539e72deb338f9f460e98a72be79e8a8c9af3a4c27523113", + "tx_hash": "dbc78ed76bad00ce4a8de0ed0b8937948cb4e487e7bf6dd9294c404ada49d829", "block_index": 131, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "02b919bc22eaae4c2af71f8fe14a45e8c3fb44d1239833dafffc1df7a1075e0e", + "dispenser_tx_hash": "3a98de73bc000ce17751e7fc2a759b5583387ae89e9fa1d76856ab4e8bbcf716", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8830,7 +8830,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8845,7 +8845,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731254465, + "block_time": 1731271029, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8863,11 +8863,11 @@ "/v2/sends": { "result": [ { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8875,7 +8875,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8887,11 +8887,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 105, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "tx_index": 106, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8899,11 +8899,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8912,10 +8912,10 @@ }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8923,7 +8923,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8936,10 +8936,10 @@ }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8947,11 +8947,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8960,10 +8960,10 @@ }, { "tx_index": 81, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8971,11 +8971,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -8989,15 +8989,15 @@ "/v2/issuances": { "result": [ { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", "msg_index": 0, - "block_index": 231, + "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "transfer": false, "callable": false, "call_date": 0, @@ -9012,20 +9012,48 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, + { + "tx_index": 102, + "tx_hash": "546a00d5b7d90d08a93e90c60db337844aa0f4226cad247115847f1ce66af8c4", + "msg_index": 0, + "block_index": 229, + "asset": "PREMINT", + "quantity": 0, + "divisible": true, + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "change_description", + "confirmed": true, + "block_time": 1731271496, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, { "tx_index": 101, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -9040,20 +9068,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731254880, + "block_time": 1731271493, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -9068,20 +9096,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254877, + "block_time": 1731271490, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "transfer": false, "callable": false, "call_date": 0, @@ -9096,53 +9124,25 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731254873, + "block_time": 1731271485, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 100, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", - "msg_index": 0, - "block_index": 225, - "asset": "STARTNOW", - "quantity": 0, - "divisible": true, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "let's start now", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1731254870, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 45, - "result_count": 50 + "next_cursor": 46, + "result_count": 51 }, "/v2/issuances/": { "result": { - "tx_index": 104, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", + "tx_index": 105, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", "msg_index": 0, - "block_index": 231, + "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "transfer": false, "callable": false, "call_date": 0, @@ -9157,7 +9157,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9166,16 +9166,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -9186,16 +9186,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" } ], @@ -9206,9 +9206,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9216,14 +9216,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254457, + "block_time": 1731271021, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "fa83ec7f6920695521246bf88343b2db3de87cd71bbb809dd1550de07e47e380", + "tx_hash": "344537a26f8c69054312506b9b1252f202af4e5028bc4e3071cf7b31754c0e10", "block_index": 128, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9231,7 +9231,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254453, + "block_time": 1731271016, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9241,9 +9241,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9251,17 +9251,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731254457, + "block_time": 1731271021, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_index": 231, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_index": 232, + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "asset": "OPENFAIR", "asset_parent": "", "asset_longname": "", @@ -9286,7 +9286,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254901, + "block_time": 1731271517, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9295,10 +9295,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "tx_index": 101, "block_index": 228, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "PREMINT", "asset_parent": "", "asset_longname": "", @@ -9323,7 +9323,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254880, + "block_time": 1731271493, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9332,10 +9332,10 @@ "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "tx_index": 100, "block_index": 226, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "STARTNOW", "asset_parent": "", "asset_longname": "", @@ -9360,7 +9360,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254873, + "block_time": 1731271485, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9369,10 +9369,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ef4643f3991e759ab553ffe8360a89ffc3cfad184f146fc8d2e87ca8897bcf3f", + "tx_hash": "ce2680f7255a82fe6cd025e4ca729d472a618ab498d52a9b739732fb7611780e", "tx_index": 99, "block_index": 224, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": null, "asset_parent": null, "asset_longname": null, @@ -9397,13 +9397,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254866 + "block_time": 1731271468 }, { - "tx_hash": "d3dff072b638708e58bdf0b9dfda5c89bedf5628d65a6fc300e5116550545755", + "tx_hash": "f7066b7ca1331586047e7fad2120f43a59214f2ed219fc45b3fdaa77e9482bdc", "tx_index": 98, "block_index": 223, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "asset": "EXPANSIVE", "asset_parent": "", "asset_longname": "", @@ -9428,7 +9428,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731254862, + "block_time": 1731271464, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9443,22 +9443,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -9467,22 +9467,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "8f5288cbc52cee0ba0c858a631fdb4ec475ca494ce1250d1bb167821cce03357", + "tx_hash": "0a3e395b083e1148c968d1c001e677e1c5f6bead3d667b648091e68378553db3", "tx_index": 95, "block_index": 219, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "8a25a3de871ffc28fd0f770d34f08cc4554a98097f99d02253bc3eaa3ff8b44c", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "acb771945f5a2cf1f0d1aef28b332d7c455f17d833870d333917c47c654b4e51", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731254848, + "block_time": 1731271449, "asset_info": { "asset_longname": "", "description": "My super asset LOCKDESC", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -9491,22 +9491,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "32c562b0c3f018f94006ceeb831751be04a4e4d1e5c888acc6903d426c0b4eff", + "tx_hash": "18f8f52500d475dcb4901ac5b1903b3f4cc28cd48f242ed141ad3bbe2175fbe2", "tx_index": 91, "block_index": 215, - "source": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", - "fairminter_tx_hash": "252832839c72492900101a52c957e169e303f24883676826c6106459088eeb7e", + "source": "bcrt1quzt5hsp3nfd3gp6z2m0uuaxm4eg5szs57df782", + "fairminter_tx_hash": "d1bad7b1c9b5636d5fae17d7cc122a2bff89bb0b0d85c50482d5c5d7e19d8393", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254832, + "block_time": 1731271424, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qwfvzz8ck50kazm6kthytrajvj0heq69s9gym98", + "issuer": "bcrt1quzt5hsp3nfd3gp6z2m0uuaxm4eg5szs57df782", "divisible": true, "locked": false }, @@ -9515,22 +9515,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "838068c2a47e0a618ef7e576a8db3d62cb29882a53ee48f0d831abef1ee55a9d", + "tx_hash": "0ad86cb8a8cf78d1be3fcc4c5146bdc2351f1d2847c20fccb70f17eb65d7af37", "tx_index": 46, "block_index": 150, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254553, + "block_time": 1731271112, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -9539,22 +9539,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "b28c10cf29e4dc592e07da4950cd7ed9176978f06eedad4a8155fbe083488786", + "tx_hash": "7a31f06df89dfbc062b8e508509939b5952952617ad94aa3a5741fffac762f1a", "tx_index": 45, "block_index": 149, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", - "fairminter_tx_hash": "95bef2ed881abce77fbcab045c7fbac72ed9f8e9a3aa53d89ca4113adfd85da4", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", + "fairminter_tx_hash": "06699bbdebcce8b65dd30b192bca3ae7ec03e3e9b24283ad7f39cbec73f82b2a", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731254549, + "block_time": 1731271109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -9568,22 +9568,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -9596,30 +9596,30 @@ "result": [ { "vout": 1, - "height": 229, + "height": 198, + "value": 546, + "confirmations": 36, + "amount": 5.46e-06, + "txid": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", + "address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9" + }, + { + "vout": 1, + "height": 230, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" + "txid": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9" }, { "vout": 0, "height": 199, "value": 546, - "confirmations": 34, - "amount": 5.46e-06, - "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", - "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" - }, - { - "vout": 1, - "height": 198, - "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", - "address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl" + "txid": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", + "address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9" } ], "next_cursor": null, @@ -9628,28 +9628,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "430f2f6af5d086de0957173ccd23c8921ae83d44e96a92931206439fc46fc016" + "tx_hash": "bee1b0fc99c70e99f8c41ceed8cb610c849a5439f9a654baad8eddce31e0b66c" }, { - "tx_hash": "95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20" + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788" }, { - "tx_hash": "154b8bb5390b38ff4a6ae1c88c16728d97602c216e7d19084feb7ebd17579624" + "tx_hash": "c1635582d64e4c888f89e4cf95d832bcb00f05dacf45eaaef84ec8bd0dc6e889" }, { - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a" + "tx_hash": "a257805ebba8b3532e568a0e5a85c584259488c3d84a4ed3cedff14efa3abaa1" }, { - "tx_hash": "5542f81df41a2cb680ba432837f02ae087b79c179d89e41855c99742be8e3cc1" + "tx_hash": "1e2210fcc64ecea176a51c6b31d011f4c3da6fb1222929cf789cff5b0a45b3a2" }, { - "tx_hash": "3413248ef32c2e10be0c01ccf7140560bceb838a2e720672fad7272378df44c1" + "tx_hash": "9a851eee9cbd9fc676f74f9c91aa294c274fbac2361a01ce5e437c5a0ea87dc1" }, { - "tx_hash": "8ab1d9a99539d27dccee83a8d5583c6bc701b6104d3190a48de6b425d914f5c6" + "tx_hash": "d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1" }, { - "tx_hash": "4514303fcf21a4dc904cc3f1e01bdb4bca8c6ea71258f554f767c5f8893b69f7" + "tx_hash": "befdca6ee41685d5f54a3e6efcd60de37818502ff7a2180cec784dfe583892e3" } ], "next_cursor": null, @@ -9657,48 +9657,48 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "df8ddf7dbccfa0a5aafe89c20466139a881a9798cb8266f65f9a33d30e4c60fe" + "block_index": 5, + "tx_hash": "c8571e763223b68810f6f6b29518b9ff31410c43d449ae41b43aa44806c8df82" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 1, - "height": 229, + "height": 230, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e" + "txid": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced" }, { - "vout": 0, - "height": 199, + "vout": 1, + "height": 198, "value": 546, - "confirmations": 34, + "confirmations": 36, "amount": 5.46e-06, - "txid": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af" + "txid": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79" }, { - "vout": 1, - "height": 198, + "vout": 0, + "height": 199, "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822" + "txid": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "025cedb12121d387fd8fbfeb5dd0f0c1a9931c7cc0cf9aea887a84f3a02ae1b36a" + "result": "03d0d639057bf4029e7ef0a1a6a8efc1bf2be78c5cfb1c71bfd04c0e47457cf9a3" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101e021aa8b812474351cc907ac9581598526da5eda468c7f9af0aac20ace443d7f0100000000ffffffff03e803000000000000160014c4e6fc08f57bff460ba366c60d7447d4552a0b1b00000000000000000c6a0a270c9fc71aeffa30274c871409270100000016001477f035f8932bfb0cd735529ec106b2de87f6bb580247304402204d56aaeba7e38fd6703356f532a1b9ad579d1795df91db36495b7dca9e86411102203f224f83eb954a17591c6ac59dad86dcf6a862ea615b3aaaa77b29eb7025c051012102ad382333ae5b64be8589009507065e7b987bacf9af495c36bbdc4e9e3cd7fab900000000" + "result": "020000000001019a7cb884d187c5de8fca7bd7ce9fd3260d1e5cb9dcdc65e8ad984b787228c1f10100000000ffffffff03e803000000000000160014b4de0585da1d359bb0642317a560707be6d2c0c100000000000000000c6a0aa960f39e6ffbccb6d6ee871409270100000016001463cf563b400248c227b82d8915cbe0712c9fcba802473044022026a55be7a017543f5f1d6d2a384a7030e4b496fa964572fba6e456ee0f89cc6802205d204a01ce6d12dd7b5f6c4bd9304a26e462e926d37bc2080c062ee56e7a31a0012103573ac30b9212be71aa8f86f6a4288ffd240e422557746a940b9fdfdc0f60beb200000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58539 + "result": 58611 }, "/v2/bitcoin/transactions/decode": { "result": { @@ -9768,28 +9768,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106 + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107 }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "quantity": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "status": "valid", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9799,22 +9799,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9824,22 +9824,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "address": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", - "block_index": 232, - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "block_index": 233, + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9849,30 +9849,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731254920.2141104, + "block_time": 1731271529.8946035, "btc_amount": 0, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "destination": "", "fee": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, - "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, + "utxos_info": "0febf93dd4b77d55a4c1aa819277b0f1af96388794f835c0efa9bed59dd60335:1 2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -9886,7 +9886,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -9895,19 +9895,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9917,7 +9917,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -9926,28 +9926,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106 + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107 }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "destination": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "quantity": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "status": "valid", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9957,22 +9957,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "CREDIT", "params": { - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "send", - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9982,22 +9982,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "address": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "asset": "XCP", - "block_index": 232, - "event": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "block_index": 233, + "event": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "quantity": 10000, - "tx_index": 106, + "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10007,30 +10007,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 }, { - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731254920.2141104, + "block_time": 1731271529.8946035, "btc_amount": 0, - "data": "020000000000000001000000000000271080a92ec88e82f725d1bd8fdcf1236c87fe67a5fbfe", + "data": "020000000000000001000000000000271080d3052f9ae72c8aea65766d4e9d501e3508287cf0", "destination": "", "fee": 10000, - "source": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", - "tx_hash": "b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d", - "tx_index": 106, - "utxos_info": "252bbcea114b58866e5b629aff1ac9e9fc5c9cf74469a95cc73150ec6f07da87:1 b6972a519a7f49af8c142dbbeb29f38f3742ed6f4e7fd9d4717790a8f58f581d:1 2 ", + "source": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", + "tx_hash": "2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803", + "tx_index": 107, + "utxos_info": "0febf93dd4b77d55a4c1aa819277b0f1af96388794f835c0efa9bed59dd60335:1 2ff653bfaa624f6e029c33c65ba2d1438a2517af166bbe4c06c082fa7f6c4803:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "memo": null, "asset_info": { "asset_longname": null, @@ -10044,7 +10044,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731254920.2141104 + "timestamp": 1731271529.8946035 } ], "next_cursor": null, @@ -10063,40 +10063,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 894, + "event_index": 900, "event": "NEW_BLOCK", "params": { - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_index": 232, - "block_time": 1731254916, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_index": 233, + "block_time": 1731271525, "difficulty": 545259519, - "previous_block_hash": "45e753e3c48e2ee2ba50176d7100bb5e76ad7ac1337df289213e3e258ae83f23" + "previous_block_hash": "5b8621e2348b624cfd7fcd39c1e888d0417464a00efcf61a111f84a9f93986fc" }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 886, - "result_count": 132 + "next_cursor": 892, + "result_count": 133 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 895, + "event_index": 901, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3b99851048a8699d5a1f07cff6f4640bae9c3fc0404443e83e32ecb08b6485e5", - "block_index": 232, - "block_time": 1731254916, + "block_hash": "063309bb687a1505355d1d2c214614fac19c2cc63be14773679e019febc3b3e4", + "block_index": 233, + "block_time": 1731271525, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "fee": 0, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "utxos_info": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1 18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0 3 1", + "source": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "utxos_info": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1 a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10106,32 +10106,32 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 887, - "result_count": 106 + "next_cursor": 893, + "result_count": 107 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 896, + "event_index": 902, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "destination": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "out_index": 0, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": 579, @@ -10140,58 +10140,58 @@ "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 907, + "event_index": 913, "event": "BLOCK_PARSED", "params": { - "block_index": 232, - "ledger_hash": "32d77e18fda11a1cac317980b89ec1cac86a09b7efe2045b3dbac50aa17593c1", - "messages_hash": "e9203971277bff329e8ebbfdaa8694a988e69d334033d6dc3d33af34b8a79552", + "block_index": 233, + "ledger_hash": "f0918a902254d18af98654cf06468e8f591d7eb5b58326ad7dcbba4467d4227c", + "messages_hash": "8f859897e0e45fac37aab1e3065531fbb3cca3f15e9ebb3d0d436226e468dbf6", "transaction_count": 1, - "txlist_hash": "334960175af414bc31afe882ed59ed7afea0fcc88bd229c7af6b028e6e543680", - "block_time": 1731254916 + "txlist_hash": "975288b502380feed4401f13edf5d626549d45cf059b23ef07072dba0b335aae", + "block_time": 1731271525 }, "tx_hash": null, - "block_index": 232, - "block_time": 1731254916 + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 893, - "result_count": 132 + "next_cursor": 899, + "result_count": 133 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 906, + "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106 }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 892, - "result_count": 91 + "next_cursor": 898, + "result_count": 92 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 900, + "event_index": 906, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 232, - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "block_index": 233, + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 2000000000, - "tx_index": 105, - "utxo": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", - "utxo_address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", - "block_time": 1731254916, + "tx_index": 106, + "utxo": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", + "utxo_address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10201,30 +10201,30 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 897, - "result_count": 89 + "next_cursor": 903, + "result_count": 90 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 903, + "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "address": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "asset": "XCP", - "block_index": 232, + "block_index": 233, "calling_function": "dispense", - "event": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", + "event": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", "quantity": 66, - "tx_index": 105, + "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731254916, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10234,12 +10234,12 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 901, + "next_cursor": 907, "result_count": 110 }, "/v2/events/ENHANCED_SEND": { @@ -10250,26 +10250,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "memo": null, "quantity": 1000, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": "valid", - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "tx_index": 77, - "block_time": 1731254759, + "block_time": 1731271351, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1270cb3ebd4602f1a4959cebdaf25eed89d8ef602de919f6ab9d712d2a66b8fb", + "tx_hash": "21df483d78418c6176c16b0afe1b08337750e40a8aed2b7b0ad63a1a150ac94f", "block_index": 201, - "block_time": 1731254759 + "block_time": 1731271351 } ], "next_cursor": 515, @@ -10283,15 +10283,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "status": "valid", - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "tx_index": 81, - "block_time": 1731254774, + "block_time": 1731271367, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10301,9 +10301,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "c43c1d07b139e69f402f760c3d4dfadba6dc8873e52ed28dcfc8e217d1cd6466", + "tx_hash": "b403684ed3b82fa58de3967b8b61aa6a377195a8a24958c6991640c3fa39075a", "block_index": 205, - "block_time": 1731254774 + "block_time": 1731271367 } ], "next_cursor": 697, @@ -10326,20 +10326,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1q542sv6wedugx08wpfv503wr2h7vlxgkfg6u2ej", + "destination": "bcrt1qamshrcv797w5suhrsdumrvr6g0k9thf2awzkz4", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", + "source": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", "status": "valid", - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "tx_index": 65, - "block_time": 1731254711, + "block_time": 1731271274, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1e09899479a1833e3617f07a57145d1d79818f9337bc30ded73f68ce8cec699a", + "tx_hash": "9f606811aeb93ab16f1dd56ea5baa2632a2f73c81dc241e71b44d9e12f11a788", "block_index": 190, - "block_time": 1731254711 + "block_time": 1731271274 } ], "next_cursor": null, @@ -10356,15 +10356,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": "valid", - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "tx_index": 42, - "block_time": 1731254539, + "block_time": 1731271087, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -10378,9 +10378,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "1cda63af929cf29c19cab6a557043cb67b67b517da571a377d7a5cac0ff35297", + "tx_hash": "05eec898ad22b1455a030fedc622a7de6f819336eb8fc1ee2fbc9a55419e486d", "block_index": 146, - "block_time": 1731254539 + "block_time": 1731271087 } ], "next_cursor": null, @@ -10394,18 +10394,18 @@ "/v2/events/ASSET_CREATION": { "result": [ { - "event_index": 889, + "event_index": 895, "event": "ASSET_CREATION", "params": { "asset_id": "117132633401", "asset_longname": null, "asset_name": "OPENFAIR", - "block_index": 231, - "block_time": 1731254901 + "block_index": 232, + "block_time": 1731271517 }, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_time": 1731254901 + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_time": 1731271517 } ], "next_cursor": 860, @@ -10414,13 +10414,13 @@ "/v2/events/ASSET_ISSUANCE": { "result": [ { - "event_index": 890, + "event_index": 896, "event": "ASSET_ISSUANCE", "params": { "asset": "OPENFAIR", "asset_events": "open_fairminter", "asset_longname": "", - "block_index": 231, + "block_index": 232, "call_date": 0, "call_price": 0, "callable": false, @@ -10428,26 +10428,26 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "issuer": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", "transfer": false, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_time": 1731254901, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_time": 1731271517, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_time": 1731254901 + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_time": 1731271517 } ], - "next_cursor": 869, - "result_count": 50 + "next_cursor": 875, + "result_count": 51 }, "/v2/events/ASSET_DESTRUCTION": { "result": [ @@ -10458,16 +10458,16 @@ "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "source": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309", + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9", "tx_index": 101, - "block_time": 1731254880, + "block_time": 1731271493, "asset_info": { "asset_longname": "", - "description": "", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "description": "My super description", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": false }, @@ -10475,7 +10475,7 @@ }, "tx_hash": null, "block_index": 228, - "block_time": 1731254880 + "block_time": 1731271493 } ], "next_cursor": 817, @@ -10484,12 +10484,12 @@ "/v2/events/OPEN_ORDER": { "result": [ { - "event_index": 880, + "event_index": 886, "event": "OPEN_ORDER", "params": { - "block_index": 230, + "block_index": 231, "expiration": 21, - "expire_index": 251, + "expire_index": 252, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -10500,11 +10500,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "open", - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx_index": 103, - "block_time": 1731254888, + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx_index": 104, + "block_time": 1731271504, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10515,7 +10515,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -10528,44 +10528,44 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_time": 1731254888 + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_time": 1731271504 } ], - "next_cursor": 875, + "next_cursor": 881, "result_count": 9 }, "/v2/events/ORDER_MATCH": { "result": [ { - "event_index": 883, + "event_index": 889, "event": "ORDER_MATCH", "params": { "backward_asset": "BTC", "backward_quantity": 1000, - "block_index": 230, + "block_index": 231, "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e_e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "match_expire_index": 250, + "id": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced_af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", - "tx0_block_index": 229, + "tx0_address": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", + "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "c1a170191395f097440bf8e3656c38f5ffcd68f714c0093bf1dce6783b27134e", - "tx0_index": 102, - "tx1_address": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx1_block_index": 230, + "tx0_hash": "72a5c2ea5fd8bf6bf8c91ee7afdce71b269c8604d7ea87bf2cc52f26308ecced", + "tx0_index": 103, + "tx1_address": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "tx1_index": 103, - "block_time": 1731254888, + "tx1_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "tx1_index": 104, + "block_time": 1731271504, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, @@ -10580,9 +10580,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_time": 1731254888 + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_time": 1731271504 } ], "next_cursor": 676, @@ -10591,7 +10591,7 @@ "/v2/events/ORDER_UPDATE": { "result": [ { - "event_index": 882, + "event_index": 888, "event": "ORDER_UPDATE", "params": { "fee_provided_remaining": 10000, @@ -10599,16 +10599,16 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "e9aba59232c725b6e5ce42159bc8f09f2e595ce6f1de39d4d3897f6230f45a31", - "block_index": 230, - "block_time": 1731254888 + "tx_hash": "af64fc25e46665a468ed503856d390d1dd27ece02055a1a0f5dfa0541482a466", + "block_index": 231, + "block_time": 1731271504 } ], - "next_cursor": 881, + "next_cursor": 887, "result_count": 19 }, "/v2/events/ORDER_FILLED": { @@ -10618,11 +10618,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71" + "tx_hash": "6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad" }, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "block_time": 1731254669 + "block_time": 1731271224 } ], "next_cursor": null, @@ -10634,13 +10634,13 @@ "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", + "id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "order_match_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", "status": "expired" }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 } ], "next_cursor": 670, @@ -10654,18 +10654,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "order_match_id": "de99e0a3504e1216b547dfa82103173c71771c026aa94e6d1d50431acb7bd042_34b7d9d1ad6948155da0f5965752bf682f1e019b3e50e33e02e7de9eacaf9a71", - "source": "bcrt1q4e9hy8evh9wy5exs7a8t2mnu70n43n8cdu7ffc", + "destination": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "order_match_id": "35cad0dcaca05e9c38d49aea2223f964b79d8fa95c4ba71d32959019a6ed8b8a_6a374d0de2b65add28243f9f0f6696182d1899b771e00e077b5b5da743703dad", + "source": "bcrt1q5tjlprdp22a0zfmw6kh52vvmfkj2ep9xy4vrwt", "status": "valid", - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "tx_index": 57, - "block_time": 1731254669, + "block_time": 1731271224, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "baf72003d890ed39bb9aeeb6b9ac1700db211e47ad74ca6707d47cf603ea682d", + "tx_hash": "dbd09dcf0f6ca835a3428185fb5a7c181723db331c6b28908a29299f0685b81c", "block_index": 182, - "block_time": 1731254669 + "block_time": 1731271224 } ], "next_cursor": null, @@ -10678,16 +10678,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "991dcc44616edca4f4aebb2c7b85762c1c3eda80f06d0116863ee177687402a8", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "offer_hash": "877850bc36ce03d92fea8a16aff05ba3f7635ea3c5de0a0606e28e54ea7ae976", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": "valid", - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "tx_index": 63, - "block_time": 1731254702 + "block_time": 1731271257 }, - "tx_hash": "867e74dc7b779c3e28a30aba4757c5562dd2a6c25c21e9ab378885155da3a7e1", + "tx_hash": "db3a7010ed857b37c9e468f2ebbaa53117db62fcbd50444a774437a60547029d", "block_index": 188, - "block_time": 1731254702 + "block_time": 1731271257 } ], "next_cursor": null, @@ -10700,13 +10700,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "block_time": 1731254816 + "order_hash": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "block_time": 1731271400 }, - "tx_hash": "ee5fe61d4781cbc5d208a7421d595add9a2e4d75df05614250a9442de0e6132e", + "tx_hash": "38376655951f2f17adb5fd7cb1f6d4f4ac80c6c8d64e7b2e3dc45cd112ffc86d", "block_index": 211, - "block_time": 1731254816 + "block_time": 1731271400 } ], "next_cursor": 690, @@ -10719,14 +10719,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "d79240c487ebfb3452a40d9f328023fc5e962db3fed1d97b01310ecab06f59a4_95d18b102a38fae7aa303b69f7d213958b85da0bd6136eecca07bbb3c842ab20", - "tx0_address": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "tx1_address": "bcrt1q4yhv3r5z7ujar0v0mncjxmy8len6t7l7d3v837", - "block_time": 1731254870 + "order_match_id": "cc3f1e5003ed87bb1379820aa2e1ad85f59a62416a4a2d8d5b263d4fbfd38912_d65890faeb4566fd3c4fafebb6b4936ea708698b03378d5ba9375199a03346e1", + "tx0_address": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "tx1_address": "bcrt1q6vzjlxh89j9w5etkd48f65q7x5yzsl8sq06p8d", + "block_time": 1731271482 }, - "tx_hash": "f41832ea26b71b7f25fdd56279467ade5a187e13960608cdc18796d332d51bb3", + "tx_hash": "24168ecc92fdee5850f73a803d789333bd8003dc587266ebed109c7cd6dbda64", "block_index": 225, - "block_time": 1731254870 + "block_time": 1731271482 } ], "next_cursor": 673, @@ -10745,17 +10745,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "origin": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "satoshirate": 1, - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "status": 0, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "tx_index": 68, - "block_time": 1731254722, + "block_time": 1731271295, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", + "issuer": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", "divisible": true, "locked": false }, @@ -10764,9 +10764,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "e355ac485edf8ce6a878a0076c38d759fd1817ef90207b8745a675ab20d00730", + "tx_hash": "bcda12f81ad839090339263749a841273fd2c5746ad3ee8ae71e59b9faa211b5", "block_index": 193, - "block_time": 1731254722 + "block_time": 1731271295 } ], "next_cursor": 254, @@ -10775,15 +10775,15 @@ "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 904, + "event_index": 910, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": 0, - "tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", + "tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10793,9 +10793,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": 581, @@ -10809,13 +10809,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mr8oChpJzdjox1rfe4XYvuBEv1YqRytBJj", + "destination": "mpZ4yvyqMAQpbfAieAGK3FoTZW2incZad3", "dispense_quantity": 10, - "dispenser_tx_hash": "eaceb25314d43c055da2d35fdddac7a8cd1bbcc912252c5f34173f2188c30102", - "source": "bcrt1q0h79tayd5qnz8qdg40fuy85cfwf9mnngraqmcr", - "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", + "dispenser_tx_hash": "4541ad8106750f9e71a0a6e7bb2e09f31dc36422db1d6f325992454e6cbe1f27", + "source": "bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw", + "tx_hash": "b012564b661087dd3d0706f0d1acd67a40f00ad8e2ea840814c6b3df2b39519a", "tx_index": 31, - "block_time": 1731254489, + "block_time": 1731271043, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10825,9 +10825,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "08653d3d0b44468103f38946ec552c97c691d7862d654ff61f01faefe475126d", + "tx_hash": "b012564b661087dd3d0706f0d1acd67a40f00ad8e2ea840814c6b3df2b39519a", "block_index": 135, - "block_time": 1731254489 + "block_time": 1731271043 } ], "next_cursor": null, @@ -10836,20 +10836,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 905, + "event_index": 911, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 232, + "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "destination": "bcrt1qv084vw6qqfyvyfac9ky3tjlqwykfljag9l5xsa", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "518d5bf72ac7461655aa6db588cd7e134dc2d22566382eff29f39c357271a7c9", - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "dispenser_tx_hash": "913ee9cdf3aff28bc0c9be673eda7337d7d088a0f9504a2362432eb6717c5329", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10860,9 +10860,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], "next_cursor": 582, @@ -10877,19 +10877,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "tx_index": 25, "value": 66600.0, - "block_time": 1731254457, + "block_time": 1731271021, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "f4669358976232a676c78147edf0aaa1c029fb2f98a599f7ae18dc13f50c813f", + "tx_hash": "5d89171f3f1f803923078b4915309b94c6fc0609bfdb682df0439b9558afdd06", "block_index": 129, - "block_time": 1731254457 + "block_time": 1731271021 } ], "next_cursor": 195, @@ -10898,13 +10898,13 @@ "/v2/events/NEW_FAIRMINTER": { "result": [ { - "event_index": 888, + "event_index": 894, "event": "NEW_FAIRMINTER", "params": { "asset": "OPENFAIR", "asset_longname": "", "asset_parent": "", - "block_index": 231, + "block_index": 232, "burn_payment": false, "description": "", "divisible": true, @@ -10920,12 +10920,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "start_block": 0, "status": "open", - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "tx_index": 104, - "block_time": 1731254901, + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "tx_index": 105, + "block_time": 1731271517, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10933,9 +10933,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "758c4db8e425076d02056c110061f301e3ff1739a43840559b05b72c5312e67e", - "block_index": 231, - "block_time": 1731254901 + "tx_hash": "9c3ef635b5d5f373ed663c3aca1a5c0c8d9f513f4b145c9746128d4e2a3c8d5d", + "block_index": 232, + "block_time": 1731271517 } ], "next_cursor": 859, @@ -10948,11 +10948,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "4e62e9ad76eb2ddd8d13b229eb7ded0ef5efcb39a933e4fbadb5e8ef67268309" + "tx_hash": "eeb3ee730ef30b9eef124f252c927412b670ac5e5941c40c2e4f3447c14003c9" }, "tx_hash": null, "block_index": 228, - "block_time": 1731254880 + "block_time": 1731271493 } ], "next_cursor": 854, @@ -10968,17 +10968,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "9a3df8577bdde370769f821a945365aeef97a4a788f99aba825ab587a81bd3ef", + "fairminter_tx_hash": "36db944793a28748f315631631c946b24c52af74e850215861ecc8d983b625b5", "paid_quantity": 100000000, - "source": "bcrt1qcnn0cz8400l5vzarvmrq6az8632j5zcmft4jkd", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "tx_index": 97, - "block_time": 1731254855, + "block_time": 1731271456, "asset_info": { "asset_longname": "", "description": "let's burn it", - "issuer": "bcrt1qzvk3hlmu9czhz6hclcyqt36me0lhqaaz27k5qx", + "issuer": "bcrt1qvkwhmj2jtrdsagczcwljqqn38ynq52pulr0qpx", "divisible": true, "locked": true }, @@ -10986,9 +10986,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "41423815bbf0562e21c1d179836b69f3132ceb6c64526cf1733c684bf77688b2", + "tx_hash": "db20e259cd5ff8b40be4f96c255533518f374f3bec3096f97ceb6aa6f4993fc7", "block_index": 221, - "block_time": 1731254855 + "block_time": 1731271456 } ], "next_cursor": 801, @@ -11002,28 +11002,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af:0", + "destination": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "source": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "status": "valid", - "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "tx_hash": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", "tx_index": 75, - "block_time": 1731254752, + "block_time": 1731271333, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c0e8eaca10ce7254df4242194babea0edb19086438c33898b24d810ce3ea91af", + "tx_hash": "0cadc36cfa53ee27d7cce4a3bd9d2eaa9940cf664e1a2158f15eb26463c3e476", "block_index": 199, - "block_time": 1731254752 + "block_time": 1731271333 } ], "next_cursor": 598, @@ -11037,28 +11037,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "destination": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "4a8a1927a65a596d764c467182f8ed57e7c72df15b5ad2e32aee41fe0def907f:0", + "source": "9f6bef112b77f21303dc838462bf8972219dab16729ddf116cba62815df8cc74:0", "status": "valid", - "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "tx_hash": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", "tx_index": 74, - "block_time": 1731254747, + "block_time": 1731271329, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qg8dq5ajjaadqhnec456rwdsy9jqqpkmqn89csl", + "issuer": "bcrt1qqkjf7rkcfr9xcwp8wmakh9um4esceca9rgdjr9", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e1db922e3bd8140242ec01a55cafe465e2c8024b0da73638538f5a3a313c0822", + "tx_hash": "8c855e6745f4bab31ad18771a5c07b13ebbccb1902a41cbdfb934a6912780a79", "block_index": 198, - "block_time": 1731254747 + "block_time": 1731271329 } ], "next_cursor": 293, @@ -11067,19 +11067,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 902, + "event_index": 908, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 232, - "destination": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca:0", + "block_index": 233, + "destination": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0", "msg_index": 1, "quantity": 2000000000, - "source": "7f3d44ce0ac2aaf09a7f8c46da5eda2685598195ac07c91c357424818baa21e0:1", + "source": "f1c12872784b98ade865dcdcb95c1e0d26d39fced77bca8fdec587d184b87c9a:1", "status": "valid", - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "tx_index": 105, - "block_time": 1731254916, + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "tx_index": 106, + "block_time": 1731271525, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11089,12 +11089,12 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "18abf12c1cf52367891ef9ccb1d8fd0d534879c60b499d3314464a27fe8b67ca", - "block_index": 232, - "block_time": 1731254916 + "tx_hash": "a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8", + "block_index": 233, + "block_time": 1731271525 } ], - "next_cursor": 899, + "next_cursor": 905, "result_count": 11 }, "/v2/events/BURN": { @@ -11106,17 +11106,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qwlcrt7yn90ase4e4220vzp4jm6rldw6c50gvrs", + "source": "bcrt1qkn0qtpw6r56ehvryyvt62crs00nd9sxpavn4q7", "status": "valid", - "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", + "tx_hash": "92dedcf8e195e2fceed307c34f2e5c36970740ad85fddd8aafb06a1f95e766fb", "tx_index": 9, - "block_time": 1731254380, + "block_time": 1731270941, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" }, - "tx_hash": "54c59210eeeb23b069db18b642f4b9b2562edf59100a35d25373be948e20cef0", + "tx_hash": "92dedcf8e195e2fceed307c34f2e5c36970740ad85fddd8aafb06a1f95e766fb", "block_index": 112, - "block_time": 1731254380 + "block_time": 1731270941 } ], "next_cursor": 50, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py index bdf18200cb..dba377ba3c 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_21_fairminter.py @@ -1052,4 +1052,64 @@ } ], }, + { + "title": "Update description after fairminter closed", + "transaction": "issuance", + "source": "$ADDRESS_10", + "params": { + "asset": "PREMINT", + "quantity": 0, + "description": "My super description", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ASSET_ISSUANCE,DEBIT", + "result": [ + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "PREMINT", + "asset_events": "change_description", + "asset_longname": "", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "My super description", + "description_locked": False, + "divisible": True, + "fee_paid": 0, + "issuer": "$ADDRESS_10", + "locked": False, + "quantity": 0, + "reset": False, + "source": "$ADDRESS_10", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "action": "issuance fee", + "address": "$ADDRESS_10", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 0, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, ] diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index 50d15b30e7..f1c4d05b07 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -26,7 +26,9 @@ In addition to resolving the above frontrunning vulnerability, this update bring ### Fairminter -When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminter with hard cap, the last mint receives what remains instead of triggering an error. +1. When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminter with hard cap, the last mint receives what remains instead of triggering an error. + +1. Fix the bug that prevents updating an asset's description after a fairminter's automatic closure. ## Bugfixes From 155cbc84958f520fbf62ce6447618ac0e8a47f48 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 20:54:44 +0000 Subject: [PATCH 118/138] fix fixtures --- .../counterpartycore/test/fixtures/api_v2_fixtures.json | 6 +++--- .../test/fixtures/scenarios/multisig_1_of_2.log | 8 +------- .../test/fixtures/scenarios/multisig_1_of_3.log | 8 +------- .../test/fixtures/scenarios/multisig_2_of_2.log | 8 +------- .../test/fixtures/scenarios/multisig_2_of_3.log | 8 +------- .../test/fixtures/scenarios/multisig_3_of_3.log | 8 +------- .../fixtures/scenarios/parseblock_unittest_fixture.log | 8 +------- .../test/fixtures/scenarios/simplesig.log | 8 +------- .../test/fixtures/scenarios/unittest_fixture.log | 8 +------- 9 files changed, 11 insertions(+), 59 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 3708a83975..d97db55d2e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14800,7 +14800,7 @@ "default": null, "required": false, "type": "str", - "description": "[Disabled after block 870000] The utxo to attach the assets to" + "description": "[Disabled after block 872000] The utxo to attach the assets to" }, { "name": "encoding", @@ -15001,14 +15001,14 @@ "default": null, "required": false, "type": "str", - "description": "[Disabled after block 870000] The asset or subasset to detach" + "description": "[Disabled after block 872000] The asset or subasset to detach" }, { "name": "quantity", "default": null, "required": false, "type": "int", - "description": "[Disabled after block 870000] The quantity of the asset to detach (in satoshis, hence integer)" + "description": "[Disabled after block 872000] The quantity of the asset to detach (in satoshis, hence integer)" }, { "name": "encoding", 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 9c6c9e8034..b854f57256 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,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 321315459e..d29a820153 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,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 cbacfb99f3..6435fbe1aa 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,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 ce2c241c08..0396ef441c 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,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 e5f4bcc93c..7fc3d5c28d 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,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. 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 e86910b324..7d3deaffcd 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -1,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log index e99232745c..e06e7ae5db 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log @@ -1,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds TX Construct - Transaction constructed. diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index f0246b5e98..4209eecc9a 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -1,13 +1,7 @@ Initializing database... Fixing issuances `asset_longname` field Cleaning `transaction_count` table -SQLITE_LOG: statement aborts at 3: [ - CREATE TABLE IF NOT EXISTS config ( - name TEXT PRIMARY KEY, - value TEXT - ) - ] database schema has changed (17) SQLITE_SCHEMA -SQLITE_LOG: statement aborts at 3: [CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)] database schema has changed (17) SQLITE_SCHEMA +SQLITE_LOG: statement aborts at 11: [SELECT name FROM sqlite_master WHERE type='table' AND name='config'] database schema has changed (17) SQLITE_SCHEMA Initialising asset cache... Asset cache initialised in 0.00 seconds Initialising asset cache... From 5c321d5bdc364b8cd017bcce5eff4cd492b847e8 Mon Sep 17 00:00:00 2001 From: warrenpuffett Date: Sun, 10 Nov 2024 16:25:17 -0500 Subject: [PATCH 119/138] upgrade rust bitcoin deps --- counterparty-rs/Cargo.lock | 185 +++++++++--------- counterparty-rs/Cargo.toml | 12 +- counterparty-rs/src/indexer/bitcoin_client.rs | 59 +++--- counterparty-rs/src/utils.rs | 29 ++- 4 files changed, 151 insertions(+), 134 deletions(-) diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index da4d967e1a..5fc063a516 100644 --- a/counterparty-rs/Cargo.lock +++ b/counterparty-rs/Cargo.lock @@ -47,6 +47,12 @@ version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + [[package]] name = "async-trait" version = "0.1.77" @@ -55,7 +61,7 @@ checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] @@ -86,22 +92,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] -name = "base64" -version = "0.13.1" +name = "base58ck" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f" +dependencies = [ + "bitcoin-internals", + "bitcoin_hashes", +] [[package]] -name = "bech32" -version = "0.9.1" +name = "base64" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "bech32" -version = "0.10.0-beta" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98f7eed2b2781a6f0b5c903471d48e15f56fb4e1165df8a9a2337fd1a59d45ea" +checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d" [[package]] name = "bindgen" @@ -120,7 +130,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] @@ -144,61 +154,63 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.29.2" +version = "0.32.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0694ea59225b0c5f3cb405ff3f670e4828358ed26aec49dc352f730f0cb1a8a3" +checksum = "788902099d47c8682efe6a7afb01c8d58b9794ba66c06affd81c3d6b560743eb" dependencies = [ - "bech32 0.9.1", - "bitcoin_hashes 0.11.0", - "secp256k1 0.24.3", -] - -[[package]] -name = "bitcoin" -version = "0.31.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c85783c2fe40083ea54a33aa2f0ba58831d90fcd190f5bdc47e74e84d2a96ae" -dependencies = [ - "bech32 0.10.0-beta", + "base58ck", + "bech32", "bitcoin-internals", - "bitcoin_hashes 0.13.0", + "bitcoin-io", + "bitcoin-units", + "bitcoin_hashes", "hex-conservative", "hex_lit", - "secp256k1 0.28.2", + "secp256k1 0.29.1", "serde", ] [[package]] name = "bitcoin-internals" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" +checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" dependencies = [ "serde", ] [[package]] -name = "bitcoin_hashes" -version = "0.11.0" +name = "bitcoin-io" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4" +checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" [[package]] -name = "bitcoin_hashes" -version = "0.13.0" +name = "bitcoin-units" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" +checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2" dependencies = [ "bitcoin-internals", + "serde", +] + +[[package]] +name = "bitcoin_hashes" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +dependencies = [ + "bitcoin-io", "hex-conservative", "serde", ] [[package]] name = "bitcoincore-rpc" -version = "0.18.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eb70725a621848c83b3809913d5314c0d20ca84877d99dd909504b564edab00" +checksum = "aedd23ae0fd321affb4bbbc36126c6f49a32818dc6b979395d24da8c9d4e80ee" dependencies = [ "bitcoincore-rpc-json", "jsonrpc", @@ -209,11 +221,11 @@ dependencies = [ [[package]] name = "bitcoincore-rpc-json" -version = "0.18.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "856ffbee2e492c23bca715d72ea34aae80d58400f2bda26a82015d6bc2ec3662" +checksum = "d8909583c5fab98508e80ef73e5592a651c954993dc6b7739963257d19f0e71a" dependencies = [ - "bitcoin 0.31.2", + "bitcoin", "serde", "serde_json", ] @@ -385,7 +397,7 @@ name = "counterparty-rs" version = "10.6.1" dependencies = [ "bip32", - "bitcoin 0.29.2", + "bitcoin", "bitcoincore-rpc", "bs58", "colored", @@ -422,9 +434,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.12" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" +checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" dependencies = [ "crossbeam-utils", ] @@ -651,9 +663,12 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hex-conservative" -version = "0.1.1" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ed443af458ccb6d81c1e7e661545f94d3176752fb1df2f543b902a1e0f51e2" +checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" +dependencies = [ + "arrayvec", +] [[package]] name = "hex_lit" @@ -734,11 +749,12 @@ dependencies = [ [[package]] name = "jsonrpc" -version = "0.14.1" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8128f36b47411cd3f044be8c1f5cc0c9e24d1d1bfdc45f0a57897b32513053f2" +checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf" dependencies = [ "base64", + "minreq", "serde", "serde_json", ] @@ -875,6 +891,17 @@ dependencies = [ "adler", ] +[[package]] +name = "minreq" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "763d142cdff44aaadd9268bebddb156ef6c65a0e13486bb81673cf2d8739f9b0" +dependencies = [ + "log", + "serde", + "serde_json", +] + [[package]] name = "nom" version = "7.1.3" @@ -1097,7 +1124,7 @@ dependencies = [ "proc-macro2", "pyo3-macros-backend", "quote", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] @@ -1110,7 +1137,7 @@ dependencies = [ "proc-macro2", "pyo3-build-config 0.21.2", "quote", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] @@ -1374,16 +1401,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "secp256k1" -version = "0.24.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62" -dependencies = [ - "bitcoin_hashes 0.11.0", - "secp256k1-sys 0.6.1", -] - [[package]] name = "secp256k1" version = "0.27.0" @@ -1395,25 +1412,16 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.28.2" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" +checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" dependencies = [ - "bitcoin_hashes 0.13.0", + "bitcoin_hashes", "rand 0.8.5", - "secp256k1-sys 0.9.2", + "secp256k1-sys 0.10.1", "serde", ] -[[package]] -name = "secp256k1-sys" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b" -dependencies = [ - "cc", -] - [[package]] name = "secp256k1-sys" version = "0.8.1" @@ -1425,9 +1433,9 @@ dependencies = [ [[package]] name = "secp256k1-sys" -version = "0.9.2" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb" +checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" dependencies = [ "cc", ] @@ -1443,31 +1451,32 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.201" +version = "1.0.214" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c" +checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.201" +version = "1.0.214" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865" +checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766" dependencies = [ "proc-macro2", "quote", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" dependencies = [ "itoa", + "memchr", "ryu", "serde", ] @@ -1546,9 +1555,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.66" +version = "2.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" dependencies = [ "proc-macro2", "quote", @@ -1578,7 +1587,7 @@ checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" dependencies = [ "proc-macro2", "quote", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] @@ -1680,7 +1689,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.66", + "syn 2.0.87", ] [[package]] @@ -1756,9 +1765,9 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" [[package]] name = "uuid" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom", "rand 0.8.5", @@ -1830,7 +1839,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.66", + "syn 2.0.87", "wasm-bindgen-shared", ] @@ -1852,7 +1861,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.66", + "syn 2.0.87", "wasm-bindgen-backend", "wasm-bindgen-shared", ] diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 2c88e8462b..196f58c52f 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -15,11 +15,11 @@ bs58 = { version = "0.5.0", features = ["check"] } bip32 = { version = "0.5.1", features = ["secp256k1-ffi"] } ripemd = "0.1.3" sha256 = "1.5.0" -bitcoin = "0.29.2" +bitcoin = "0.32.4" par-map = "0.1.4" tracing = "0.1.40" -crossbeam-channel = "0.5.12" -bitcoincore-rpc = "0.18.0" +crossbeam-channel = "0.5.13" +bitcoincore-rpc = "0.19.0" thiserror = "1.0.58" derive_more = "0.99.17" tracing-subscriber = { version = "0.3.18", features = [ @@ -30,9 +30,9 @@ tracing-subscriber = { version = "0.3.18", features = [ ] } rocksdb = "0.22.0" rand = "0.8.5" -serde = { version = "1.0.201", features = ["derive"] } -serde_json = "1.0.117" -uuid = { version = "1.8.0", features = ["v4", "fast-rng"] } +serde = { version = "1.0.214", features = ["derive"] } +serde_json = "1.0.132" +uuid = { version = "1.11.0", features = ["v4", "fast-rng"] } colored = "2.1.0" rust-crypto = "0.2.36" time = "0.3.36" diff --git a/counterparty-rs/src/indexer/bitcoin_client.rs b/counterparty-rs/src/indexer/bitcoin_client.rs index 5a71ede05e..b651251416 100644 --- a/counterparty-rs/src/indexer/bitcoin_client.rs +++ b/counterparty-rs/src/indexer/bitcoin_client.rs @@ -4,21 +4,18 @@ use std::{collections::HashMap, sync::Arc, thread::JoinHandle}; use crate::b58::b58_encode; use crate::utils::script_to_address; -use bitcoin::hashes::hex::ToHex; -use bitcoincore_rpc::bitcoin::script::Instruction; -use bitcoincore_rpc::{ - bitcoin::{ - consensus::serialize, - hashes::{ripemd160, sha256, sha256d::Hash as Sha256dHash, Hash}, - opcodes::all::{ - OP_CHECKMULTISIG, OP_CHECKSIG, OP_EQUAL, OP_HASH160, OP_PUSHNUM_1, OP_PUSHNUM_2, - OP_PUSHNUM_3, OP_RETURN, - }, - script::Instruction::{Op, PushBytes}, - Block, BlockHash, Script, TxOut, +use bitcoin::{ + consensus::serialize, + hashes::{hex::prelude::*, ripemd160, sha256, sha256d::Hash as Sha256dHash, Hash}, + opcodes::all::{ + OP_CHECKMULTISIG, OP_CHECKSIG, OP_EQUAL, OP_HASH160, OP_PUSHNUM_1, OP_PUSHNUM_2, + OP_PUSHNUM_3, OP_RETURN, }, - Auth, Client, RpcApi, + script::Instruction::{Op, PushBytes}, + Block, BlockHash, Script, TxOut, }; +use bitcoincore_rpc::bitcoin::script::Instruction; +use bitcoincore_rpc::{Auth, Client, RpcApi}; use crossbeam_channel::{bounded, select, unbounded, Receiver, Sender}; use crypto::rc4::Rc4; use crypto::symmetriccipher::SynchronousStreamCipher; @@ -55,7 +52,7 @@ impl BlockHasEntries for Block { let mut script_hashes = HashMap::new(); for tx in self.txdata.iter() { let entry = TxInBlockAtHeight { - txid: tx.txid().to_byte_array(), + txid: tx.compute_txid().to_byte_array(), height, }; entries.push(Box::new(WritableEntry::new(entry))); @@ -390,10 +387,15 @@ impl ToBlock for Block { key = vin.previous_output.txid.to_byte_array().to_vec(); key.reverse(); } - let hash = vin.previous_output.txid.to_hex(); + let hash = vin.previous_output.txid.to_string(); if !vin.witness.is_empty() { - vtxinwit - .append(&mut vin.witness.iter().map(|w| w.to_hex()).collect::>()); + vtxinwit.append( + &mut vin + .witness + .iter() + .map(|w| w.as_hex().to_string()) + .collect::>(), + ); segwit = true } vins.push(Vin { @@ -421,7 +423,14 @@ impl ToBlock for Block { } let output_value = vout.value.to_sat() as i64; fee -= output_value; - let result = parse_vout(&config, key.clone(), height, tx.txid().to_hex(), vi, vout); + let result = parse_vout( + &config, + key.clone(), + height, + tx.compute_txid().to_string(), + vi, + vout, + ); match result { Err(e) => { err = Some(e); @@ -466,8 +475,8 @@ impl ToBlock for Block { segwit, coinbase: tx.is_coinbase(), lock_time: tx.lock_time.to_consensus_u32(), - tx_id: tx.txid().to_hex(), - tx_hash: Sha256dHash::hash(&tx_bytes).to_hex(), + tx_id: tx.compute_txid().to_string(), + tx_hash: Sha256dHash::hash(&tx_bytes).to_string(), vtxinwit, vin: vins, vout: vouts, @@ -477,12 +486,12 @@ impl ToBlock for Block { CrateBlock { height, version: self.header.version.to_consensus(), - hash_prev: self.header.prev_blockhash.to_hex(), - hash_merkle_root: self.header.merkle_root.to_hex(), + hash_prev: self.header.prev_blockhash.to_string(), + hash_merkle_root: self.header.merkle_root.to_string(), block_time: self.header.time, bits: self.header.bits.to_consensus(), nonce: self.header.nonce, - block_hash: self.block_hash().to_hex(), + block_hash: self.block_hash().to_string(), transaction_count: self.txdata.len(), transactions, } @@ -503,7 +512,7 @@ impl BlockHasOutputs for Block { if script_hash == o.script_pubkey.script_hash().as_byte_array().as_ref() { outputs.push(( TxidVoutPrefix { - txid: tx.txid().to_byte_array(), + txid: tx.compute_txid().to_byte_array(), vout: i as u32, }, o.value.to_sat(), @@ -756,7 +765,7 @@ mod tests { let entry = entries.get(1).unwrap().to_entry(); let e = TxInBlockAtHeight::from_entry(entry).unwrap(); - assert_eq!(e.txid, block.txdata[0].txid().to_byte_array()); + assert_eq!(e.txid, block.txdata[0].compute_txid().to_byte_array()); assert_eq!(e.height, height); let entry = entries.get(2).unwrap().to_entry(); diff --git a/counterparty-rs/src/utils.rs b/counterparty-rs/src/utils.rs index 08d5d0fab4..9cb03debac 100644 --- a/counterparty-rs/src/utils.rs +++ b/counterparty-rs/src/utils.rs @@ -1,8 +1,7 @@ use bitcoin::blockdata::opcodes; use bitcoin::blockdata::opcodes::all::*; -use bitcoin::blockdata::script::{Instruction, Script}; -use bitcoin::util::address::{Payload, WitnessVersion}; -use bitcoin::{Address, Network}; +use bitcoin::blockdata::script::Instruction; +use bitcoin::{Address, Network, ScriptBuf, WitnessProgram, WitnessVersion}; use pyo3::prelude::*; use pyo3::types::PyBytes; use pyo3::wrap_pyfunction; @@ -22,7 +21,7 @@ fn inverse_hash(hashstring: &str) -> String { #[pyfunction] pub fn script_to_address(script_pubkey: Vec, network: &str) -> PyResult { // Convert the script pubkey to a Script object - let script = Script::from(script_pubkey); + let script = ScriptBuf::from(script_pubkey); // Convert the network string to a Network enum value let network_enum = match network { @@ -38,7 +37,7 @@ pub fn script_to_address(script_pubkey: Vec, network: &str) -> PyResult vers, Err(_) => { return Err(PyErr::new::( @@ -53,13 +52,13 @@ pub fn script_to_address(script_pubkey: Vec, network: &str) -> PyResult(format!( + "Could not create witness program from script: {}", + e + )); + })?; + let address = Address::from_witness_program(program, network_enum); Ok(address.to_string()) } else { /* @@ -83,7 +82,7 @@ pub fn script_to_address(script_pubkey: Vec, network: &str) -> PyResult, py: Python) -> PyResult> { // Wrap the code block that may panic inside `catch_unwind()` let result = panic::catch_unwind(|| { - let script = Script::from(script_bytes); + let script = ScriptBuf::from(script_bytes); let mut asm: Vec = Vec::new(); @@ -92,7 +91,7 @@ fn script_to_asm(script_bytes: Vec, py: Python) -> PyResult> { Ok(instr) => { let py_instruction = match instr { Instruction::Op(op) => opcode_to_bytes(op), - Instruction::PushBytes(data) => data.to_vec(), + Instruction::PushBytes(data) => data.as_bytes().to_vec(), }; asm.push(PyBytes::new_bound(py, &py_instruction).into()); } @@ -117,7 +116,7 @@ fn script_to_asm(script_bytes: Vec, py: Python) -> PyResult> { } } -fn opcode_to_bytes(opcode: bitcoin::blockdata::opcodes::All) -> Vec { +fn opcode_to_bytes(opcode: bitcoin::blockdata::opcodes::Opcode) -> Vec { match opcode { OP_PUSHBYTES_0 => vec![0x00], OP_PUSHBYTES_1 => vec![0x01], From 102711b932cd738e665c70a969acbc721c926933 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 21:25:49 +0000 Subject: [PATCH 120/138] Fix utxos_info check --- counterparty-core/counterpartycore/lib/blocks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 414e9f31d4..f0580d8e1a 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -999,10 +999,11 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_ and (data or destination == config.UNSPENDABLE or dispensers_outs) # counterparty tx ) or ( - utxos_info[0] != "" + len(utxos_info) > 0 + and utxos_info[0] != "" and util.enabled("spend_utxo_to_detach") # utxo move or detach with a single OP_RETURN ) - or (utxos_info[0] != "" and utxos_info[1] != "") + or (len(utxos_info) > 1 and utxos_info[0] != "" and utxos_info[1] != "") ): transaction_bindings = { "tx_index": tx_index, From 853698ab27d9ccab29e14d4ac1243c236d76ad47 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 10 Nov 2024 21:28:30 +0000 Subject: [PATCH 121/138] clean debug --- counterparty-core/counterpartycore/lib/messages/issuance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/messages/issuance.py b/counterparty-core/counterpartycore/lib/messages/issuance.py index 4d8e48238d..718b999eae 100644 --- a/counterparty-core/counterpartycore/lib/messages/issuance.py +++ b/counterparty-core/counterpartycore/lib/messages/issuance.py @@ -242,7 +242,6 @@ def validate( issuances = ledger.get_issuances( db, asset=asset, status="valid", first=True, current_block_index=block_index ) - print(issuances) reissued_asset_longname = None if issuances: reissuance = True From 2bccf2caa8b733d47b84d68f695d7d4ed62eb8e8 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 08:59:43 +0000 Subject: [PATCH 122/138] update release notes --- release-notes/release-notes-v10.6.2.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index f262f05818..c2b8263c8c 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -42,6 +42,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring - The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. When a UTXO is used, this UTXO must be spent in the corresponding transaction. - Refactor `compose_moveutxo()` to use this new `transactions.compose()` feature. - Rust fetcher will now only store entries in its database required for Bitcoin reorganization checks. This greatly reduces the size of the database and significantly increases the speed of the catch-up process. +- Update Rust Bitcoin dependencies (bitcoin 0.32.4 and bitcoincore-rpc 0.19.0) ## API From fe0c947c58611e10a88669d31bbb6d15d5040571 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 10:55:35 +0000 Subject: [PATCH 123/138] 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 +- .../{release-notes-v10.6.2.md => release-notes-v10.7.0.md} | 3 +-- 9 files changed, 9 insertions(+), 10 deletions(-) rename release-notes/{release-notes-v10.6.2.md => release-notes-v10.7.0.md} (98%) diff --git a/apiary.apib b/apiary.apib index 1ac194c1c2..e685eeaa88 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1454,7 +1454,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.6.1", + "version": "10.7.0", "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 78d226c12e..c12ebf6196 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -5,7 +5,7 @@ # Semantic Version -__version__ = "10.6.1" # for hatch +__version__ = "10.7.0" # 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 b02a1b55c4..a53a3b0acb 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.6.1", + "version": "10.7.0", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index c2de152583..ad95823b36 100644 --- a/counterparty-core/requirements.txt +++ b/counterparty-core/requirements.txt @@ -35,4 +35,4 @@ yoyo-migrations==8.2.0 gunicorn==23.0.0 waitress==3.0.1 hypothesis==6.116.0 -counterparty-rs==10.6.1 \ No newline at end of file +counterparty-rs==10.7.0 \ No newline at end of file diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index 5fc063a516..a9ed5f7233 100644 --- a/counterparty-rs/Cargo.lock +++ b/counterparty-rs/Cargo.lock @@ -394,7 +394,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "counterparty-rs" -version = "10.6.1" +version = "10.7.0" dependencies = [ "bip32", "bitcoin", diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 196f58c52f..29cf2aeafb 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "counterparty-rs" -version = "10.6.1" +version = "10.7.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/counterparty-wallet/requirements.txt b/counterparty-wallet/requirements.txt index 0fc4ad0d31..da6e1ef623 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.6.1 +counterparty-core==10.7.0 diff --git a/docker-compose.yml b/docker-compose.yml index 8813345c8b..e687b3abd4 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.6.1 + image: counterparty/counterparty:v10.7.0 stop_grace_period: 1m volumes: - data:/root/.bitcoin diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.7.0.md similarity index 98% rename from release-notes/release-notes-v10.6.2.md rename to release-notes/release-notes-v10.7.0.md index c2b8263c8c..ed09b370d7 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.7.0.md @@ -1,5 +1,4 @@ -# Release Notes - Counterparty Core v10.6.2 (2024-11-??) - +# Release Notes - Counterparty Core v10.7.0 (2024-11-11) # Upgrading From c8b468c0eaa668105a6bb1dd278cc6b857204195 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 11:02:45 +0000 Subject: [PATCH 124/138] Add checkpoint for block 869836 --- counterparty-core/counterpartycore/lib/check.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 436ff543b9..c74f568ba6 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -667,6 +667,10 @@ "ledger_hash": "4b5c0ab384408c9e7268c24887f3d2265a0b045f5a161e3343d15cf861b7d07c", "txlist_hash": "b32df1c46cde54f9eb1075652634276d5fb997a85ca7394c6566810475b30c00", }, + 869836: { + "ledger_hash": "cffb619abf5cbf297d3bf837369cae8e80eafb047bc26db9698d2ea6fd7cb9b9", + "txlist_hash": "58786555420ed0e1aa160d572adf33bf622842069212fd3f3aaf2889ff5b968f", + }, } CONSENSUS_HASH_VERSION_TESTNET = 7 From 9fa10f853dd26c576c270a8b0c68f9c6e5f61d50 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 11:06:45 +0000 Subject: [PATCH 125/138] need reparse --- counterparty-core/counterpartycore/lib/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index c12ebf6196..2d40a877bd 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -20,8 +20,8 @@ # Fo example: # NEED_REPARSE_IF_MINOR_IS_LESS_THAN = (1, 800000) # means that we need to reparse from block 800000 if database minor version is less than 1 -NEED_REPARSE_IF_MINOR_IS_LESS_THAN = [(3, 0), (5, 865999), (6, 867000)] -NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET = [(3, 0), (5, 2925799), (6, 2925799)] +NEED_REPARSE_IF_MINOR_IS_LESS_THAN = [(3, 0), (5, 865999), (6, 867000), (7, 869900)] +NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET = [(3, 0), (5, 2925799), (6, 2925799), (7, 2925799)] # Counterparty protocol TXTYPE_FORMAT = ">I" SHORT_TXTYPE_FORMAT = "B" From 44f179fc28832057ab24436b6b5f10f93e834363 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 11:08:37 +0000 Subject: [PATCH 126/138] enable docker compose test --- .github/workflows/test_compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_compose.yml b/.github/workflows/test_compose.yml index 0db477631e..af016b5c87 100644 --- a/.github/workflows/test_compose.yml +++ b/.github/workflows/test_compose.yml @@ -2,7 +2,7 @@ name: Docker Compose on: push: - branches: ['develop', 'master', 'fixes'] + branches: ['develop', 'master', 'preprelease'] jobs: build: From 2bf0cd855cbccf8859b4c594b27d50b88125b4df Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 14:25:38 +0000 Subject: [PATCH 127/138] Fix 'update_assets_info()' function --- counterparty-core/counterpartycore/lib/api/api_watcher.py | 2 +- release-notes/release-notes-v10.6.2.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 92e88a856b..5538ea3631 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -422,7 +422,7 @@ def update_assets_info(api_db, event): set_data.append("confirmed = :confirmed") if event_bindings["locked"]: set_data.append("locked = :locked") - if not existing_asset["issuer"]: # first issuance + if existing_asset is None or not existing_asset["issuer"]: # first issuance set_data.append("issuer = :issuer") set_data = ", ".join(set_data) diff --git a/release-notes/release-notes-v10.6.2.md b/release-notes/release-notes-v10.6.2.md index c2b8263c8c..2c1979dc50 100644 --- a/release-notes/release-notes-v10.6.2.md +++ b/release-notes/release-notes-v10.6.2.md @@ -36,6 +36,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring - Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified and `asset_parent` is not specified. - Fix `disable_utxo_locks` parameter in compose API - Fix `gas.get_transaction_count_for_last_period()` +- Fix `update_assets_info()` when a fairmint is parsed into the mempool before the corresponding fairminter ## Codebase From 191c459938eb32abf89e83e7eb6c0bbc9afdc9b0 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 11 Nov 2024 10:11:13 -0500 Subject: [PATCH 128/138] Release Notes for v10.7.0 --- release-notes/release-notes-v10.7.0.md | 41 +++++++++++++++----------- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/release-notes/release-notes-v10.7.0.md b/release-notes/release-notes-v10.7.0.md index ed09b370d7..07a4d426b4 100644 --- a/release-notes/release-notes-v10.7.0.md +++ b/release-notes/release-notes-v10.7.0.md @@ -1,55 +1,60 @@ # Release Notes - Counterparty Core v10.7.0 (2024-11-11) +This is a protocol upgrade that includes a refactor of the UTXO Support feature that fixes some bugs in the original design and simplifies the implementation significantly. It also includes bugfixes for the fair minting functionality in addition to the usual set of miscellaneous improvements to the node API. # Upgrading +A reparse from block 869900 is mandatory and will be performed automatically. + + # ChangeLog ## Protocol Changes ### UTXO Support -This update includes significant changes to the UTXO Support feature, and in particular to address a vulnerability where an atomic swap could be frontrun by a `detach` transaction. Further feedback from the community, in particular the OpenStamps team and DerpHerpenstein have allowed us to simplify the implementation of this feature significantly. With the protocol change, messages with ID 100 will be disabled at the same block that messages with IDs 101 and 102 will be enabled. 12 blocks before this activation block, the functions `compose_attach` and `compose_detach` will be deactivated to avoid having transactions with ID 100 confirmed after activation. The protocol and API have changed as follows: +This update includes significant changes to the UTXO Support feature, and in particular to address a vulnerability where an atomic swap could be frontrun by a `detach` transaction. Further feedback from the community, in particular the OpenStamps team and DerpHerpenstein, have allowed us to simplify the implementation of this feature significantly. With this protocol change, messages with ID 100 will be disabled at the same block that messages with IDs 101 and 102 are enabled. 12 blocks before this activation block, the functions `compose_attach` and `compose_detach` will be deactivated to avoid having transactions with ID 100 confirmed after activation. The protocol and API have changed as follows: 1. The `attach` function no longer accepts a `destination` parameter. It now accepts an optional `destination_vout` parameter (by default the first non-`OP_RETURN` output). This parameter allows one to designate the index of the output to use as the destination. The transaction is invalid if `destination_vout` does not exist or if it is an `OP_RETURN`. 1. The `destination` parameter of the `detach` function is now optional. If not provided, the default destination is the address corresponding to the UTXO. -1. The `detach` function no longer accepts `asset` and `quantity` parameters: the UTXO is necessarily part of the transaction inputs and all assets are detached from the UTXO. -1. The `detach` function detaches all assets attached to all transaction inputs every time. +1. The `detach` function no longer accepts `asset` and `quantity` parameters. The `detach` function detaches all assets attached to all transaction inputs every time. In addition to resolving the above frontrunning vulnerability, this update brings a number of improvements: 1. It is now cheaper and easier to construct `attach` and `detach` transactions. The size of messages is always less than 80 bytes, so an `OP_RETURN` output can store all of the necessary data. 1. It is possible to execute several `detach` operations in a single transaction to save fees. 1. It is no longer possible to make a `detach` and a UTXO `move` in the same transaction. -1. A UTXO move with a transaction that contains only a single OP_RETURN output behaves like a `detach` +1. A UTXO move with a transaction that contains only a single `OP_RETURN` output behaves like a `detach` +1. Correct the gas calculation for `attach` operations ### Fairminter -1. When there are fewer tokens remaining than `max_mint_per_tx` in a free Fairminter with hard cap, the last mint receives what remains instead of triggering an error. +1. When there are fewer tokens remaining than `max_mint_per_tx` in a free Fair Minter with a hard cap, the last mint receives whatever remains instead of triggering an error. + +1. Fixed a bug that prevents updating an asset's description after a fairminter's automatic closure. -1. Fix the bug that prevents updating an asset's description after a fairminter's automatic closure. ## Bugfixes -- Rust fetcher "reporter" worker now takes `rollback_height` into account in its block height ordering check. -- Fixed subasset name handling when creating a fairminter by preserving the `asset_longname` field when `asset=` is specified and `asset_parent` is not specified. +- Take Rust fetcher's `rollback_height` into account in the block-height ordering check +- Fix subasset name handling when creating a Fair Minter by preserving the `asset_longname` field when `asset=` is specified and `asset_parent` is not specified - Fix `disable_utxo_locks` parameter in compose API - Fix `gas.get_transaction_count_for_last_period()` ## Codebase -- The `transactions.compose()` function accepts a `tx_info` that contains a source in the form of a UTXO instead of an address. When a UTXO is used, this UTXO must be spent in the corresponding transaction. -- Refactor `compose_moveutxo()` to use this new `transactions.compose()` feature. -- Rust fetcher will now only store entries in its database required for Bitcoin reorganization checks. This greatly reduces the size of the database and significantly increases the speed of the catch-up process. -- Update Rust Bitcoin dependencies (bitcoin 0.32.4 and bitcoincore-rpc 0.19.0) +- Have `transactions.compose()` accept a `tx_info` that contains a source in the form of a UTXO instead of an address. When a UTXO is used, this UTXO must be spent in the corresponding transaction. +- Refactor `compose_moveutxo()` to use this new `transactions.compose()` feature +- Have the Rust fetcher now only store entries in its database required for Bitcoin reorganization checks. This greatly reduces the size of the database and significantly increases the speed of the catch-up process. +- Support Bitcoin Core 28.0, having updated the Rust Bitcoin dependencies (bitcoin 0.32.4 and bitcoincore-rpc 0.19.0) ## API -- For the `compose_detach()` endpoint, the `destination`, `asset` and `quantity` parameters are now optional (`asset` and `quantity` will be ignored after the protocol change). -- For the `compose_attach()` endpoint, there is now a `destination_vout` parameter (and the `destination` parameter will be ignored after protocol change). -- Add `validate` argument to compose API -- Add sortable `get_price` and `give_price` fields in orders -- Add sortable `price` field in dispensers +- Make the `destination`, `asset` and `quantity` parameters to `compose_detach()` optional (`asset` and `quantity` will be ignored after the protocol change) +- Add a `destination_vout` parameter to the `compose_attach()` endpoint (the `destination` parameter will be ignored after protocol change) +- Add the `validate` argument to compose API +- Add sortable `get_price` and `give_price` fields for orders +- Add sortable `price` field for dispensers - Fix `locked` in `asset_info` field - Add `/v2/bitcoin/transaction/decode` route to proxy bitcoin `decoderawtransaction` method - `inputs_set` now supports UTXOs in the format `:::` @@ -59,7 +64,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring ## CLI -- Change verbosity of log messages related to blockchain following. +- Change verbosity of log messages related to blockchain following. (Log a `WARNING` when the node is behind Bitcoin Core.) # Credits From 76d47872635b55d6b810a870c6a9f1c3956847f7 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 11 Nov 2024 10:15:09 -0500 Subject: [PATCH 129/138] Note Protocol Upgrade --- release-notes/release-notes-v10.7.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release-notes/release-notes-v10.7.0.md b/release-notes/release-notes-v10.7.0.md index 5696799313..d9aa91c644 100644 --- a/release-notes/release-notes-v10.7.0.md +++ b/release-notes/release-notes-v10.7.0.md @@ -1,10 +1,10 @@ # Release Notes - Counterparty Core v10.7.0 (2024-11-11) -This is a protocol upgrade that includes a refactor of the UTXO Support feature that fixes some bugs in the original design and simplifies the implementation significantly. It also includes bugfixes for the fair minting functionality in addition to the usual set of miscellaneous improvements to the node API. +This is a protocol upgrade that includes a refactor of the UTXO Support feature that fixes some bugs in the original design and simplifies the implementation significantly. It also includes bugfixes for the fair minting functionality in addition to the usual set of miscellaneous improvements to the node API. # Upgrading -A reparse from block 869900 is mandatory and will be performed automatically. +**This upgrade is mandatory and must be performed before block 871,900 (around November 25th).** A reparse from this block is mandatory and will be performed automatically. # ChangeLog From d3f675a475a6f5df9eee86f818d1e1fb992d37e1 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 11 Nov 2024 10:21:10 -0500 Subject: [PATCH 130/138] Undo Warning Level for Behind Logs --- counterparty-core/counterpartycore/lib/api/wsgi.py | 4 ++-- release-notes/release-notes-v10.7.0.md | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 2287eb1e27..6590ada667 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -67,11 +67,11 @@ def refresh_backend_height(db, start=False): backend.addrindexrs.clear_raw_transactions_cache() if not is_server_ready(): if BACKEND_HEIGHT > util.CURRENT_BLOCK_INDEX: - logger.warning( + logger.debug( f"Counterparty is currently behind Bitcoin Core. ({util.CURRENT_BLOCK_INDEX} < {BACKEND_HEIGHT})" ) else: - logger.warning( + logger.debug( f"Bitcoin Core is currently behind the network. ({util.CURRENT_BLOCK_INDEX} > {BACKEND_HEIGHT})" ) else: diff --git a/release-notes/release-notes-v10.7.0.md b/release-notes/release-notes-v10.7.0.md index d9aa91c644..74bf291d3b 100644 --- a/release-notes/release-notes-v10.7.0.md +++ b/release-notes/release-notes-v10.7.0.md @@ -65,8 +65,6 @@ In addition to resolving the above frontrunning vulnerability, this update bring ## CLI -- Change verbosity of log messages related to blockchain following. (Log a `WARNING` when the node is behind Bitcoin Core.) - # Credits From 942457678164a7eddacbad923b167728e889a946 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 15:21:24 +0000 Subject: [PATCH 131/138] set activation to 871900 --- apiary.apib | 6 +++--- counterparty-core/counterpartycore/lib/api/compose.py | 10 +++++----- .../counterpartycore/protocol_changes.json | 6 +++--- .../test/fixtures/api_v2_fixtures.json | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/apiary.apib b/apiary.apib index e685eeaa88..6721fa3f02 100644 --- a/apiary.apib +++ b/apiary.apib @@ -9996,7 +9996,7 @@ Composes a transaction to attach assets from an address to UTXO. + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output + Default: `None` - + destination (str, optional) - [Disabled after block 872000] The utxo to attach the assets to + + destination (str, optional) - [Disabled after block 871900] The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10098,9 +10098,9 @@ Composes a transaction to detach assets from UTXO to an address. + utxo: `a3fc3352c726d435c99bbfe7c4b4b1dd7c0e22cd91fcdbc5f1971a2984137db8:0` (str, required) - The utxo from which the assets are detached + destination: `bcrt1q26zaczwkn20vzza2854zem5a3f8zgrpdddgekw` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` - + asset (str, optional) - [Disabled after block 872000] The asset or subasset to detach + + asset (str, optional) - [Disabled after block 871900] The asset or subasset to detach + Default: `None` - + quantity (int, optional) - [Disabled after block 872000] The quantity of the asset to detach (in satoshis, hence integer) + + quantity (int, optional) - [Disabled after block 871900] The quantity of the asset to detach (in satoshis, hence integer) + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index da4d368715..4e71e03383 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -667,7 +667,7 @@ def compose_attach( :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) :param destination_vout: The vout of the destination output - :param destination: [Disabled after block 872000] The utxo to attach the assets to + :param destination: [Disabled after block 871900] The utxo to attach the assets to """ if util.enabled("spend_utxo_to_detach"): params = { @@ -680,7 +680,7 @@ def compose_attach( if util.CURRENT_BLOCK_INDEX > util.get_change_block_index("spend_utxo_to_detach") - 12: raise exceptions.ComposeError( - "Attach is disabled from 12 blocks before block 872000 and the activation of the new attach/detach messages types" + "Attach is disabled from 12 blocks before block 871900 and the activation of the new attach/detach messages types" ) return compose_utxo( @@ -705,8 +705,8 @@ def compose_detach( 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, if not provided the addresse corresponding to the utxo is used (e.g. $ADDRESS_1) - :param asset: [Disabled after block 872000] The asset or subasset to detach - :param quantity: [Disabled after block 872000] The quantity of the asset to detach (in satoshis, hence integer) + :param asset: [Disabled after block 871900] The asset or subasset to detach + :param quantity: [Disabled after block 871900] The quantity of the asset to detach (in satoshis, hence integer) """ if util.enabled("spend_utxo_to_detach"): params = { @@ -717,7 +717,7 @@ def compose_detach( if util.CURRENT_BLOCK_INDEX > util.get_change_block_index("spend_utxo_to_detach") - 12: raise exceptions.ComposeError( - "Attach is disabled from 12 blocks before block 872000 and the activation of the new attach/detach messages types" + "Attach is disabled from 12 blocks before block 871900 and the activation of the new attach/detach messages types" ) return compose_utxo( diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 075b872f51..c24b2f4d11 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -661,21 +661,21 @@ "minimum_version_major": 10, "minimum_version_minor": 6, "minimum_version_revision": 2, - "block_index": 872000, + "block_index": 871900, "testnet_block_index": 3195137 }, "partial_mint_to_reach_hard_cap": { "minimum_version_major": 10, "minimum_version_minor": 6, "minimum_version_revision": 2, - "block_index": 872000, + "block_index": 871900, "testnet_block_index": 3195137 }, "fix_get_issuances": { "minimum_version_major": 10, "minimum_version_minor": 6, "minimum_version_revision": 2, - "block_index": 872000, + "block_index": 871900, "testnet_block_index": 3195137 } } diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index d97db55d2e..f9463dea79 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14800,7 +14800,7 @@ "default": null, "required": false, "type": "str", - "description": "[Disabled after block 872000] The utxo to attach the assets to" + "description": "[Disabled after block 871900] The utxo to attach the assets to" }, { "name": "encoding", @@ -15001,14 +15001,14 @@ "default": null, "required": false, "type": "str", - "description": "[Disabled after block 872000] The asset or subasset to detach" + "description": "[Disabled after block 871900] The asset or subasset to detach" }, { "name": "quantity", "default": null, "required": false, "type": "int", - "description": "[Disabled after block 872000] The quantity of the asset to detach (in satoshis, hence integer)" + "description": "[Disabled after block 871900] The quantity of the asset to detach (in satoshis, hence integer)" }, { "name": "encoding", From 7701ad19f3de01df65a9be90c922e3da9ec6aff6 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 16:23:04 +0000 Subject: [PATCH 132/138] Clean debug --- counterparty-core/counterpartycore/lib/api/api_server.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index d2eddc8f1a..a781e526ce 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -321,9 +321,6 @@ 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 return return_result( 503, error="Unknown error", start_time=start_time, query_args=query_args ) From 0eb062afaa814df8436e11e5f9374415ba9e6cb0 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 17:41:23 +0000 Subject: [PATCH 133/138] Update release notes --- release-notes/release-notes-v10.7.0.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.7.0.md b/release-notes/release-notes-v10.7.0.md index 74bf291d3b..98a6348b91 100644 --- a/release-notes/release-notes-v10.7.0.md +++ b/release-notes/release-notes-v10.7.0.md @@ -4,7 +4,10 @@ This is a protocol upgrade that includes a refactor of the UTXO Support feature # Upgrading -**This upgrade is mandatory and must be performed before block 871,900 (around November 25th).** A reparse from this block is mandatory and will be performed automatically. +**This upgrade is mandatory and must be performed before block 871,900 (around November 25th).** +A reparse from the block 869,900 block is mandatory and will be performed automatically. + +Composition functions for `attach` and `detach` transactions are disabled between block 871,888 and 871,900. # ChangeLog @@ -41,6 +44,14 @@ In addition to resolving the above frontrunning vulnerability, this update bring - Fix `disable_utxo_locks` parameter in compose API - Fix `gas.get_transaction_count_for_last_period()` - Fix `update_assets_info()` when a fairmint is parsed into the mempool before the corresponding fairminter +- Fix asset cache initialization +- Takes into account the commission to check if the hard cap is reached +- Soft cap deadline block must be greater than start block +- Fix `legder.get_fairmint_quantities()` function +- Fix `fee_paid`` field when closing fairminter +- Fix `premint_quantity` checking when no hardcap +- Fix `premint_quantity` destruction when soft cap is not reached + ## Codebase From e5cd259c97aa31ee782bffc7f239ae855e038ce4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 18:13:56 +0000 Subject: [PATCH 134/138] Add index in 'balances' table --- counterparty-core/counterpartycore/lib/blocks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index f0580d8e1a..194ea05a2e 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -663,6 +663,7 @@ def initialise(db): "balances", [ ["address", "asset"], + ["utxo", "asset"], ["address"], ["asset"], ["block_index"], From 7bf7883fcba75fd9b26aa0e790e146a37be1df0b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 18:31:51 +0000 Subject: [PATCH 135/138] update fixtures and release notes --- .../test/fixtures/scenarios/multisig_1_of_2.sql | 4 ++++ .../test/fixtures/scenarios/multisig_1_of_3.sql | 4 ++++ .../test/fixtures/scenarios/multisig_2_of_2.sql | 4 ++++ .../test/fixtures/scenarios/multisig_2_of_3.sql | 4 ++++ .../test/fixtures/scenarios/multisig_3_of_3.sql | 4 ++++ .../test/fixtures/scenarios/parseblock_unittest_fixture.sql | 4 ++++ .../counterpartycore/test/fixtures/scenarios/simplesig.sql | 4 ++++ .../test/fixtures/scenarios/unittest_fixture.sql | 4 ++++ release-notes/release-notes-v10.7.0.md | 2 +- 9 files changed, 33 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql index c75aad3317..b9705fddff 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql @@ -281,6 +281,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -359,6 +361,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql index 5f1a838bd6..ce7bf394df 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql @@ -281,6 +281,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -359,6 +361,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql index de46c8a4a6..e302322cd5 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql @@ -281,6 +281,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -359,6 +361,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql index ddb6a8fede..9b352e5198 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql @@ -281,6 +281,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -359,6 +361,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql index 509c224e73..ad1809c864 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql @@ -281,6 +281,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -359,6 +361,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 27fd245a2c..7d9c097000 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -979,6 +979,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -1112,6 +1114,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql index bdad051c26..44ea350ca0 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql @@ -281,6 +281,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -359,6 +361,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index d2442a914e..66cfb500d7 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -978,6 +978,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances @@ -1111,6 +1113,8 @@ CREATE INDEX balances_quantity_idx ON balances (quantity) ; CREATE INDEX balances_utxo_address_idx ON balances (utxo_address) ; +CREATE INDEX balances_utxo_asset_idx ON balances (utxo, asset) + ; CREATE INDEX balances_utxo_idx ON balances (utxo) ; CREATE TRIGGER block_update_balances diff --git a/release-notes/release-notes-v10.7.0.md b/release-notes/release-notes-v10.7.0.md index 98a6348b91..a7d71196f2 100644 --- a/release-notes/release-notes-v10.7.0.md +++ b/release-notes/release-notes-v10.7.0.md @@ -51,7 +51,7 @@ In addition to resolving the above frontrunning vulnerability, this update bring - Fix `fee_paid`` field when closing fairminter - Fix `premint_quantity` checking when no hardcap - Fix `premint_quantity` destruction when soft cap is not reached - +- Add an index on `(utxo, asset)` fields in the `balances` tables ## Codebase From f7501af1ec0faec2d8194f2c71680f676933dbe7 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 18:51:36 +0000 Subject: [PATCH 136/138] Update compare hashes test --- counterparty-core/counterpartycore/test/mainnet_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py index 2d35685f9d..ca0035bb68 100644 --- a/counterparty-core/counterpartycore/test/mainnet_test.py +++ b/counterparty-core/counterpartycore/test/mainnet_test.py @@ -14,9 +14,9 @@ # [server_url, api_version, server_version] CHECK_SERVERS = [ # ["http://rpc:rpc@api1.counterparty.io:4000", "v1", "v9.61.1"], - ["https://api.counterparty.io:4000", "v2", "v10.6.0"], - ["https://dev.counterparty.io:4000", "v2", "v10.6.0"], - ["https://api.counterparty.info", "v2", "v10.6.0"], + ["https://api.counterparty.io:4000", "v2", "v10.6.1"], + ["https://dev.counterparty.io:4000", "v2", "v10.7.0"], + ["https://api.counterparty.info", "v2", "v10.6.1"], # ["http://rpc:1234@public.coindaddy.io:4000", "v1", "v9.61.3"], # ["https://api.xcp.dev/v9_61/", "xcpdev", "v9.61.3"], # ["https://api.xcp.dev/v10_1/", "xcpdev", "v10.1.2.CNTRPRTY"], From f4f3365b93e8ec181e5e4b7a1b4c7b1fbbb483b2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 19:41:40 +0000 Subject: [PATCH 137/138] tweak test --- counterparty-core/counterpartycore/test/mainnet_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py index ca0035bb68..e74af918a0 100644 --- a/counterparty-core/counterpartycore/test/mainnet_test.py +++ b/counterparty-core/counterpartycore/test/mainnet_test.py @@ -172,7 +172,7 @@ def test_mainnet_api_db(skip): f"{MAINNET_DB_DIR}counterparty.api.db", read_only=True, check_wal=False ) - api_sql = "SELECT * FROM balances ORDER BY random() LIMIT 10000" + api_sql = "SELECT * FROM balances WHERE address IS NOT NULL ORDER BY random() LIMIT 10000" api_balances = api_db.execute(api_sql) i = 0 for api_balance in api_balances: From c8445625696f0a14d2d62f28d7e8ab556fa1fef2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 11 Nov 2024 19:59:19 +0000 Subject: [PATCH 138/138] fix servers version --- counterparty-core/counterpartycore/test/mainnet_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py index e74af918a0..95a62b8fde 100644 --- a/counterparty-core/counterpartycore/test/mainnet_test.py +++ b/counterparty-core/counterpartycore/test/mainnet_test.py @@ -16,7 +16,7 @@ # ["http://rpc:rpc@api1.counterparty.io:4000", "v1", "v9.61.1"], ["https://api.counterparty.io:4000", "v2", "v10.6.1"], ["https://dev.counterparty.io:4000", "v2", "v10.7.0"], - ["https://api.counterparty.info", "v2", "v10.6.1"], + ["https://api.counterparty.info", "v2", "v10.6.0"], # ["http://rpc:1234@public.coindaddy.io:4000", "v1", "v9.61.3"], # ["https://api.xcp.dev/v9_61/", "xcpdev", "v9.61.3"], # ["https://api.xcp.dev/v10_1/", "xcpdev", "v10.1.2.CNTRPRTY"],